SYMBOL INDEX (189966 symbols across 1613 files) FILE: common/src/stubgenlib/build.py function add_stubs_suffix (line 6) | def add_stubs_suffix(path: pathlib.Path) -> None: FILE: common/src/stubgenlib/cpptypeconvert.py class CppTypeConverter (line 9) | class CppTypeConverter: method __init__ (line 46) | def __init__( method _get_typedefs (line 60) | def _get_typedefs(self) -> list[tuple[str, str]]: method _parse_typedefs (line 74) | def _parse_typedefs(self, include_file: pathlib.Path) -> Iterator[tupl... method _replace_typedefs (line 93) | def _replace_typedefs(self, typestr: str) -> str: method cpp_arg_to_py_type (line 116) | def cpp_arg_to_py_type(self, cpp_type: str, is_result: bool) -> str: method process_ptr (line 165) | def process_ptr(self, converted_type: str, is_result: bool) -> str: method to_python_id (line 168) | def to_python_id(self, cpp_type: str) -> str: method should_strip_part (line 171) | def should_strip_part(self, x: str) -> bool: FILE: common/src/stubgenlib/moduleinspect.py class ModuleInspect (line 6) | class ModuleInspect: method get_package_properties (line 12) | def get_package_properties( method __enter__ (line 17) | def __enter__(self): method __exit__ (line 21) | def __exit__(self, exc_type, exc_val, exc_tb): function patch (line 25) | def patch(): FILE: common/src/stubgenlib/notifier.py class Notifier (line 6) | class Notifier: method __init__ (line 11) | def __init__(self) -> None: method set_modules (line 17) | def set_modules(self, modules: list[str]) -> None: method set_keys (line 20) | def set_keys(self, keys: list[str]) -> None: method warn (line 23) | def warn(self, key: str, module: str, msg: str) -> None: method accumulate (line 32) | def accumulate(self, key: str) -> None: method print_summary (line 35) | def print_summary(self) -> None: method get_key_count (line 42) | def get_key_count(self, key: str) -> int: FILE: common/src/stubgenlib/siggen/advanced.py class Optionality (line 22) | class Optionality(NamedTuple): class AdvancedSigMatcher (line 28) | class AdvancedSigMatcher(object): method __post_init__ (line 79) | def __post_init__(self) -> None: method find_func_match (line 112) | def find_func_match(self, fullname: str, items: dict[str, T]) -> T | N... method _type_match (line 119) | def _type_match( method find_arg_match (line 147) | def find_arg_match( method find_result_match (line 168) | def find_result_match( class AdvancedSignatureGenerator (line 184) | class AdvancedSignatureGenerator(SignatureGenerator): method __init__ (line 194) | def __init__( method get_signature_str (line 207) | def get_signature_str(self, ctx: FunctionContext) -> str | list[str] |... method process_arg (line 213) | def process_arg(self, ctx: FunctionContext, arg: ArgSig) -> None: method process_sig (line 238) | def process_sig(self, ctx: FunctionContext, sig: FunctionSig) -> Funct... method process_sigs (line 264) | def process_sigs( method get_overridden_signatures (line 283) | def get_overridden_signatures( method get_function_sig (line 309) | def get_function_sig( method get_property_type (line 340) | def get_property_type( FILE: common/src/stubgenlib/siggen/boost.py class BoostDocStringParser (line 29) | class BoostDocStringParser: method __init__ (line 32) | def __init__(self, function_name: str, verbose: bool = False) -> None: method debug (line 48) | def debug(self, *msg) -> None: method pop_state (line 52) | def pop_state(self, reason) -> None: method add_token (line 56) | def add_token(self, token: tokenize.TokenInfo) -> None: method reset (line 236) | def reset(self) -> None: method get_signatures (line 242) | def get_signatures(self) -> list[FunctionSig]: function infer_sig_from_boost_docstring (line 255) | def infer_sig_from_boost_docstring( class BoostDocstringSignatureGenerator (line 281) | class BoostDocstringSignatureGenerator(SignatureGenerator): method get_function_sig (line 286) | def get_function_sig( method is_default_boost_arg (line 294) | def is_default_boost_arg(cls, arg_name: str) -> bool: FILE: common/src/stubgenlib/siggen/default.py class DefaultSigGenerator (line 10) | class DefaultSigGenerator(SignatureGenerator): method get_function_sig (line 13) | def get_function_sig( FILE: common/src/stubgenlib/siggen/docstring.py class DocstringSignatureGenerator (line 11) | class DocstringSignatureGenerator(SignatureGenerator): method prepare_docstring (line 20) | def prepare_docstring(self, docstr: str) -> str: method get_function_sig (line 23) | def get_function_sig( FILE: common/src/stubgenlib/siggen/sigfixer.py class SignatureFixer (line 17) | class SignatureFixer(SignatureGenerator): method __init__ (line 28) | def __init__( method is_valid (line 44) | def is_valid(type_name: str) -> bool: method cleanup_type (line 52) | def cleanup_type( method cleanup_sigs_types (line 62) | def cleanup_sigs_types( method cleanup_sig_types (line 70) | def cleanup_sig_types( method get_function_sig (line 122) | def get_function_sig( class DocstringTypeFixer (line 143) | class DocstringTypeFixer(SignatureFixer): method get_replacements (line 178) | def get_replacements(self, is_result: bool) -> list[tuple[str, str]]: method get_full_name (line 184) | def get_full_name(self, obj_name: str) -> str: method cleanup_type (line 187) | def cleanup_type( FILE: common/src/stubgenlib/stubgen/delegate.py class GeneratorDelegate (line 9) | class GeneratorDelegate(Generic[T]): method __init__ (line 12) | def __init__(self, rules: dict[str, type[T]], fallback: type[T]): method __call__ (line 21) | def __call__(self, module_name: str, *args: Any, **kwargs: Any) -> T: FILE: common/src/stubgenlib/test_helpers.py function assert_type (line 12) | def assert_type(val, typ, /): FILE: common/src/stubgenlib/utils.py class ArgGroups (line 17) | class ArgGroups: method all_args (line 24) | def all_args(self) -> list[ArgSig]: function insert_typevars (line 37) | def insert_typevars(import_lines: str, typevars: list[str]) -> str: function merge_args_by_name (line 44) | def merge_args_by_name( function merge_signatures (line 68) | def merge_signatures( function is_star_arg (line 107) | def is_star_arg(arg_name): function get_arg_groups (line 113) | def get_arg_groups(sig: FunctionSig) -> ArgGroups: function merge_signature_kwargs (line 140) | def merge_signature_kwargs( class CFunctionStub (line 180) | class CFunctionStub: method __init__ (line 185) | def __init__(self, name: str, doc: str, is_abstract=False) -> None: method _from_sig (line 192) | def _from_sig(cls, sig: FunctionSig, is_abstract=False) -> CFunctionStub: method _from_sigs (line 198) | def _from_sigs(cls, sigs: list[FunctionSig], is_abstract=False) -> CFu... method __get__ (line 205) | def __get__(self) -> None: function sig_sort_key (line 213) | def sig_sort_key(py_sig: FunctionSig) -> tuple[int, tuple[str, ...]]: function remove_overlapping_overloads (line 217) | def remove_overlapping_overloads( function remove_unhashable_duplicates (line 252) | def remove_unhashable_duplicates(objects: Iterable[T]) -> list[T]: function reduce_overloads (line 261) | def reduce_overloads( function contains_other_overload (line 291) | def contains_other_overload(sig: FunctionSig, other: FunctionSig) -> bool: function add_positional_only_args (line 310) | def add_positional_only_args(ctx: FunctionContext, py_sig: FunctionSig) ... function get_mypy_ignore_directive (line 360) | def get_mypy_ignore_directive(codes: list[str]) -> str: FILE: common/tests/test_stubgenlib.py function test_boost_docstring_overloads (line 38) | def test_boost_docstring_overloads(): function test_boost_docstring_multiline_sig (line 80) | def test_boost_docstring_multiline_sig(): function test_boost_docstring_existing_description (line 93) | def test_boost_docstring_existing_description(): FILE: common/tests/test_utils.py function test_basic_merge (line 8) | def test_basic_merge(): function test_special_merge (line 62) | def test_special_merge(): function test_kwarg_merge (line 122) | def test_kwarg_merge(): FILE: houdini/hou_cleanup_config.py function get_type_aliases (line 55) | def get_type_aliases() -> dict[str, str]: FILE: houdini/stubgen_houdini.py class IsResult (line 36) | class IsResult: function is_std (line 46) | def is_std(node: ast.AST, attr: str) -> bool: class AnnotationFixer (line 57) | class AnnotationFixer(ast.NodeTransformer): method transform (line 64) | def transform(self, type_str: str) -> str: method visit_Tuple (line 71) | def visit_Tuple(self, node: ast.Tuple) -> ast.AST: method visit_Subscript (line 87) | def visit_Subscript(self, node: ast.Subscript) -> ast.AST: class HoudiniCppTypeConverter (line 117) | class HoudiniCppTypeConverter(CppTypeConverter): method to_python_id (line 165) | def to_python_id(self, cpp_type): method cpp_arg_to_py_type (line 178) | def cpp_arg_to_py_type( method process_ptr (line 224) | def process_ptr( class HoudiniTypeFixer (line 241) | class HoudiniTypeFixer(SignatureFixer): method maybe_add_optional (line 245) | def maybe_add_optional(self, type_name: str, default_value: str | None... method cleanup_type (line 254) | def cleanup_type( function get_signature_overrides (line 293) | def get_signature_overrides() -> dict[str, str]: class HoudiniSignatureGenerator (line 312) | class HoudiniSignatureGenerator(AdvancedSignatureGenerator): class ASTStubGenerator (line 316) | class ASTStubGenerator(mypy.stubgen.ASTStubGenerator): method visit_class_def (line 317) | def visit_class_def(self, o) -> None: method get_sig_generators (line 328) | def get_sig_generators(self) -> list[SignatureGenerator]: method get_signatures (line 337) | def get_signatures( method get_imports (line 353) | def get_imports(self) -> str: method get_enums_from_docstring (line 391) | def get_enums_from_docstring(docstring: str | None) -> set[str]: method dedent (line 437) | def dedent(self) -> None: method output (line 495) | def output(self) -> str: function enableHouModule (line 532) | def enableHouModule(): function main (line 567) | def main(outdir: str): FILE: houdini/stubs/hou-stubs/__init__.pyi class _SwigNonDynamicMeta (line 31) | class _SwigNonDynamicMeta(type): class _NodeConnectionTupleOfTuplesGenerator (line 35) | class _NodeConnectionTupleOfTuplesGenerator: method __init__ (line 37) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 39) | def __getitem__(self, key: int) -> Any: ... method __len__ (line 40) | def __len__(self) -> int: ... class EnumValue (line 42) | class EnumValue: method __init__ (line 56) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 57) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 58) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 59) | def __hash__(self) -> int: ... method name (line 60) | def name(self) -> str: method __lt__ (line 69) | def __lt__(self, other: object) -> bool: ... class numericData (line 71) | class numericData: method __init__ (line 93) | def __init__(self, *args, **kwargs) -> None: ... class attribData (line 106) | class attribData: method __init__ (line 124) | def __init__(self, *args, **kwargs) -> None: ... class attribType (line 131) | class attribType: method __init__ (line 156) | def __init__(self, *args, **kwargs) -> None: ... class attribScope (line 163) | class attribScope: method __init__ (line 184) | def __init__(self, *args, **kwargs) -> None: ... class groupScope (line 189) | class groupScope: method __init__ (line 210) | def __init__(self, *args, **kwargs) -> None: ... class primType (line 215) | class primType: method __init__ (line 274) | def __init__(self, *args, **kwargs) -> None: ... class parmData (line 305) | class parmData: method __init__ (line 323) | def __init__(self, *args, **kwargs) -> None: ... class parmTemplateType (line 330) | class parmTemplateType: method __init__ (line 356) | def __init__(self, *args, **kwargs) -> None: ... class parmLook (line 371) | class parmLook: method __init__ (line 423) | def __init__(self, *args, **kwargs) -> None: ... class parmNamingScheme (line 433) | class parmNamingScheme: method __init__ (line 503) | def __init__(self, *args, **kwargs) -> None: ... class parmCondType (line 515) | class parmCondType: method __init__ (line 532) | def __init__(self, *args, **kwargs) -> None: ... class parmExtrapolate (line 538) | class parmExtrapolate: method __init__ (line 560) | def __init__(self, *args, **kwargs) -> None: ... class parmBakeChop (line 570) | class parmBakeChop: method __init__ (line 590) | def __init__(self, *args, **kwargs) -> None: ... class segmentType (line 597) | class segmentType: method __init__ (line 619) | def __init__(self, *args, **kwargs) -> None: ... class animBarToolSize (line 630) | class animBarToolSize: method __init__ (line 648) | def __init__(self, *args, **kwargs) -> None: ... class slopeMode (line 655) | class slopeMode: method __init__ (line 672) | def __init__(self, *args, **kwargs) -> None: ... class stringParmType (line 677) | class stringParmType: method __init__ (line 699) | def __init__(self, *args, **kwargs) -> None: ... class labelParmType (line 706) | class labelParmType: method __init__ (line 727) | def __init__(self, *args, **kwargs) -> None: ... class dataParmType (line 733) | class dataParmType: method __init__ (line 753) | def __init__(self, *args, **kwargs) -> None: ... class exprLanguage (line 758) | class exprLanguage: method __init__ (line 774) | def __init__(self, *args, **kwargs) -> None: ... class scriptLanguage (line 779) | class scriptLanguage: method __init__ (line 795) | def __init__(self, *args, **kwargs) -> None: ... class keyHalf (line 800) | class keyHalf: method __init__ (line 825) | def __init__(self, *args, **kwargs) -> None: ... class fileType (line 831) | class fileType: method __init__ (line 873) | def __init__(self, *args, **kwargs) -> None: ... class fileChooserMode (line 904) | class fileChooserMode: method __init__ (line 923) | def __init__(self, *args, **kwargs) -> None: ... class folderType (line 929) | class folderType: method __init__ (line 973) | def __init__(self, *args, **kwargs) -> None: ... class menuType (line 984) | class menuType: method __init__ (line 1026) | def __init__(self, *args, **kwargs) -> None: ... class paneTabType (line 1034) | class paneTabType: method __init__ (line 1077) | def __init__(self, *args, **kwargs) -> None: ... class stateViewerType (line 1109) | class stateViewerType: method __init__ (line 1125) | def __init__(self, *args, **kwargs) -> None: ... class paneLinkType (line 1130) | class paneLinkType: method __init__ (line 1154) | def __init__(self, *args, **kwargs) -> None: ... class networkItemType (line 1167) | class networkItemType: method __init__ (line 1189) | def __init__(self, *args, **kwargs) -> None: ... class colorItemType (line 1198) | class colorItemType: method __init__ (line 1217) | def __init__(self, *args, **kwargs) -> None: ... class geometryViewportType (line 1223) | class geometryViewportType: method __init__ (line 1245) | def __init__(self, *args, **kwargs) -> None: ... class glShadingType (line 1256) | class glShadingType: method __init__ (line 1309) | def __init__(self, *args, **kwargs) -> None: ... class viewportStereoMode (line 1324) | class viewportStereoMode: method __init__ (line 1355) | def __init__(self, *args, **kwargs) -> None: ... class viewportHomeClipMode (line 1362) | class viewportHomeClipMode: method __init__ (line 1391) | def __init__(self, *args, **kwargs) -> None: ... class geometryViewportLayout (line 1398) | class geometryViewportLayout: method __init__ (line 1438) | def __init__(self, *args, **kwargs) -> None: ... class geometryViewportBackgroundImageFitMode (line 1449) | class geometryViewportBackgroundImageFitMode: method __init__ (line 1467) | def __init__(self, *args, **kwargs) -> None: ... class snappingMode (line 1474) | class snappingMode: method __init__ (line 1495) | def __init__(self, *args, **kwargs) -> None: ... class snapSelectionMode (line 1503) | class snapSelectionMode: method __init__ (line 1532) | def __init__(self, *args, **kwargs) -> None: ... class selectionMode (line 1538) | class selectionMode: method __init__ (line 1557) | def __init__(self, *args, **kwargs) -> None: ... class pickStyle (line 1563) | class pickStyle: method __init__ (line 1581) | def __init__(self, *args, **kwargs) -> None: ... class pickModifier (line 1588) | class pickModifier: method __init__ (line 1607) | def __init__(self, *args, **kwargs) -> None: ... class pickFacing (line 1615) | class pickFacing: method __init__ (line 1632) | def __init__(self, *args, **kwargs) -> None: ... class displaySetType (line 1638) | class displaySetType: method __init__ (line 1679) | def __init__(self, *args, **kwargs) -> None: ... class topCookState (line 1688) | class topCookState: method __init__ (line 1726) | def __init__(self, *args, **kwargs) -> None: ... class markerVisibility (line 1736) | class markerVisibility: method __init__ (line 1761) | def __init__(self, *args, **kwargs) -> None: ... class viewportGuide (line 1768) | class viewportGuide: method __init__ (line 1858) | def __init__(self, *args, **kwargs) -> None: ... class viewportGeometryInfo (line 1885) | class viewportGeometryInfo: method __init__ (line 1911) | def __init__(self, *args, **kwargs) -> None: ... class viewportDefaultMaterial (line 1917) | class viewportDefaultMaterial: method __init__ (line 1948) | def __init__(self, *args, **kwargs) -> None: ... class viewportHandleHighlight (line 1953) | class viewportHandleHighlight: method __init__ (line 1977) | def __init__(self, *args, **kwargs) -> None: ... class viewportClosureSelection (line 1983) | class viewportClosureSelection: method __init__ (line 2012) | def __init__(self, *args, **kwargs) -> None: ... class viewportGuideFont (line 2018) | class viewportGuideFont: method __init__ (line 2045) | def __init__(self, *args, **kwargs) -> None: ... class viewportVolumeQuality (line 2052) | class viewportVolumeQuality: method __init__ (line 2081) | def __init__(self, *args, **kwargs) -> None: ... class viewportVolumeBSplines (line 2088) | class viewportVolumeBSplines: method __init__ (line 2126) | def __init__(self, *args, **kwargs) -> None: ... class viewportBGImageView (line 2132) | class viewportBGImageView: method __init__ (line 2175) | def __init__(self, *args, **kwargs) -> None: ... class viewportColorScheme (line 2187) | class viewportColorScheme: method __init__ (line 2214) | def __init__(self, *args, **kwargs) -> None: ... class viewportParticleDisplay (line 2221) | class viewportParticleDisplay: method __init__ (line 2252) | def __init__(self, *args, **kwargs) -> None: ... class viewportStandInGeometry (line 2260) | class viewportStandInGeometry: method __init__ (line 2287) | def __init__(self, *args, **kwargs) -> None: ... class viewportLighting (line 2293) | class viewportLighting: method __init__ (line 2327) | def __init__(self, *args, **kwargs) -> None: ... class viewportWorkLight (line 2335) | class viewportWorkLight: method __init__ (line 2365) | def __init__(self, *args, **kwargs) -> None: ... class viewportTransparency (line 2372) | class viewportTransparency: method __init__ (line 2409) | def __init__(self, *args, **kwargs) -> None: ... class viewportShadowQuality (line 2416) | class viewportShadowQuality: method __init__ (line 2449) | def __init__(self, *args, **kwargs) -> None: ... class viewportDOFBokeh (line 2456) | class viewportDOFBokeh: method __init__ (line 2480) | def __init__(self, *args, **kwargs) -> None: ... class viewportFogHeightMode (line 2486) | class viewportFogHeightMode: method __init__ (line 2510) | def __init__(self, *args, **kwargs) -> None: ... class viewportFogQuality (line 2516) | class viewportFogQuality: method __init__ (line 2544) | def __init__(self, *args, **kwargs) -> None: ... class viewportMaterialUpdate (line 2551) | class viewportMaterialUpdate: method __init__ (line 2575) | def __init__(self, *args, **kwargs) -> None: ... class viewportAgentBoneDeform (line 2581) | class viewportAgentBoneDeform: method __init__ (line 2608) | def __init__(self, *args, **kwargs) -> None: ... class viewportAgentWireframe (line 2614) | class viewportAgentWireframe: method __init__ (line 2635) | def __init__(self, *args, **kwargs) -> None: ... class viewportPackedBoxMode (line 2640) | class viewportPackedBoxMode: method __init__ (line 2668) | def __init__(self, *args, **kwargs) -> None: ... class viewportGridRuler (line 2675) | class viewportGridRuler: method __init__ (line 2699) | def __init__(self, *args, **kwargs) -> None: ... class viewportTextureDepth (line 2705) | class viewportTextureDepth: method __init__ (line 2735) | def __init__(self, *args, **kwargs) -> None: ... class boundaryDisplay (line 2742) | class boundaryDisplay: method __init__ (line 2770) | def __init__(self, *args, **kwargs) -> None: ... class flipbookObjectType (line 2777) | class flipbookObjectType: method __init__ (line 2808) | def __init__(self, *args, **kwargs) -> None: ... class groupListType (line 2815) | class groupListType: method __init__ (line 2835) | def __init__(self, *args, **kwargs) -> None: ... class geometryType (line 2844) | class geometryType: method __init__ (line 2863) | def __init__(self, *args, **kwargs) -> None: ... class connectivityType (line 2871) | class connectivityType: method __init__ (line 2888) | def __init__(self, *args, **kwargs) -> None: ... class severityType (line 2894) | class severityType: method __init__ (line 2913) | def __init__(self, *args, **kwargs) -> None: ... class confirmType (line 2921) | class confirmType: method __init__ (line 2957) | def __init__(self, *args, **kwargs) -> None: ... class positionType (line 2982) | class positionType: method __init__ (line 2999) | def __init__(self, *args, **kwargs) -> None: ... class componentLoopType (line 3005) | class componentLoopType: method __init__ (line 3041) | def __init__(self, *args, **kwargs) -> None: ... class flipbookAntialias (line 3047) | class flipbookAntialias: method __init__ (line 3077) | def __init__(self, *args, **kwargs) -> None: ... class flipbookMotionBlurBias (line 3085) | class flipbookMotionBlurBias: method __init__ (line 3109) | def __init__(self, *args, **kwargs) -> None: ... class parameterInterfaceTabType (line 3115) | class parameterInterfaceTabType: method __init__ (line 3152) | def __init__(self, *args, **kwargs) -> None: ... class shaderType (line 3160) | class shaderType: method __init__ (line 3202) | def __init__(self, *args, **kwargs) -> None: ... class rampBasis (line 3226) | class rampBasis: method __init__ (line 3272) | def __init__(self, *args, **kwargs) -> None: ... class rampParmType (line 3282) | class rampParmType: method __init__ (line 3302) | def __init__(self, *args, **kwargs) -> None: ... class colorType (line 3307) | class colorType: method __init__ (line 3335) | def __init__(self, *args, **kwargs) -> None: ... class nodeTypeSource (line 3343) | class nodeTypeSource: method __init__ (line 3362) | def __init__(self, *args, **kwargs) -> None: ... class fieldType (line 3370) | class fieldType: method __init__ (line 3401) | def __init__(self, *args, **kwargs) -> None: ... class renderMethod (line 3421) | class renderMethod: method __init__ (line 3437) | def __init__(self, *args, **kwargs) -> None: ... class updateMode (line 3442) | class updateMode: method __init__ (line 3461) | def __init__(self, *args, **kwargs) -> None: ... class licenseCategoryType (line 3467) | class licenseCategoryType: method __init__ (line 3486) | def __init__(self, *args, **kwargs) -> None: ... class hdaLicenseType (line 3494) | class hdaLicenseType: method __init__ (line 3511) | def __init__(self, *args, **kwargs) -> None: ... class orientUpAxis (line 3517) | class orientUpAxis: method __init__ (line 3535) | def __init__(self, *args, **kwargs) -> None: ... class handleOrientToNormalAxis (line 3540) | class handleOrientToNormalAxis: method __init__ (line 3558) | def __init__(self, *args, **kwargs) -> None: ... class nodeEventType (line 3563) | class nodeEventType: method __init__ (line 3788) | def __init__(self, *args, **kwargs) -> None: ... class hdaEventType (line 3822) | class hdaEventType: method __init__ (line 3950) | def __init__(self, *args, **kwargs) -> None: ... class hipFileEventType (line 3961) | class hipFileEventType: method __init__ (line 4011) | def __init__(self, *args, **kwargs) -> None: ... class appearanceChangeType (line 4022) | class appearanceChangeType: method __init__ (line 4055) | def __init__(self, *args, **kwargs) -> None: ... class ropRenderEventType (line 4074) | class ropRenderEventType: method __init__ (line 4113) | def __init__(self, *args, **kwargs) -> None: ... class imageDepth (line 4121) | class imageDepth: method __init__ (line 4143) | def __init__(self, *args, **kwargs) -> None: ... class imageLayerTypeInfo (line 4151) | class imageLayerTypeInfo: method __init__ (line 4211) | def __init__(self, *args, **kwargs) -> None: ... class imageLayerBorder (line 4225) | class imageLayerBorder: method __init__ (line 4257) | def __init__(self, *args, **kwargs) -> None: ... class imageLayerStorageType (line 4264) | class imageLayerStorageType: method __init__ (line 4302) | def __init__(self, *args, **kwargs) -> None: ... class imageLayerProjection (line 4312) | class imageLayerProjection: method __init__ (line 4335) | def __init__(self, *args, **kwargs) -> None: ... class vdbType (line 4340) | class vdbType: method __init__ (line 4367) | def __init__(self, *args, **kwargs) -> None: ... class volumeStorageType (line 4381) | class volumeStorageType: method __init__ (line 4402) | def __init__(self, *args, **kwargs) -> None: ... class volumeVisualization (line 4407) | class volumeVisualization: method __init__ (line 4444) | def __init__(self, *args, **kwargs) -> None: ... class playMode (line 4453) | class playMode: method __init__ (line 4484) | def __init__(self, *args, **kwargs) -> None: ... class playbarEvent (line 4491) | class playbarEvent: method __init__ (line 4536) | def __init__(self, *args, **kwargs) -> None: ... class channelListChangedReason (line 4547) | class channelListChangedReason: method __init__ (line 4569) | def __init__(self, *args, **kwargs) -> None: ... class bookmarkEvent (line 4574) | class bookmarkEvent: method __init__ (line 4612) | def __init__(self, *args, **kwargs) -> None: ... class perfMonTimeFormat (line 4621) | class perfMonTimeFormat: method __init__ (line 4638) | def __init__(self, *args, **kwargs) -> None: ... class perfMonTimeUnit (line 4643) | class perfMonTimeUnit: method __init__ (line 4663) | def __init__(self, *args, **kwargs) -> None: ... class perfMonObjectView (line 4668) | class perfMonObjectView: method __init__ (line 4686) | def __init__(self, *args, **kwargs) -> None: ... class compressionType (line 4692) | class compressionType: method __init__ (line 4714) | def __init__(self, *args, **kwargs) -> None: ... class nodeTypeFilter (line 4720) | class nodeTypeFilter: method __init__ (line 4844) | def __init__(self, *args, **kwargs) -> None: ... class vdbData (line 4883) | class vdbData: method __init__ (line 4903) | def __init__(self, *args, **kwargs) -> None: ... class lopViewportOverridesLayer (line 4910) | class lopViewportOverridesLayer: method __init__ (line 4932) | def __init__(self, *args, **kwargs) -> None: ... class channelEditorMode (line 4942) | class channelEditorMode: method __init__ (line 4944) | def __init__(self, *args, **kwargs) -> None: ... class vopParmGenType (line 4947) | class vopParmGenType: method __init__ (line 4978) | def __init__(self, *args, **kwargs) -> None: ... class stateGenerateMode (line 4984) | class stateGenerateMode: method __init__ (line 5003) | def __init__(self, *args, **kwargs) -> None: ... class scenePrimMask (line 5009) | class scenePrimMask: method __init__ (line 5045) | def __init__(self, *args, **kwargs) -> None: ... class viewportVisualizerCategory (line 5054) | class viewportVisualizerCategory: method __init__ (line 5080) | def __init__(self, *args, **kwargs) -> None: ... class viewportVisualizerScope (line 5086) | class viewportVisualizerScope: method __init__ (line 5122) | def __init__(self, *args, **kwargs) -> None: ... class viewportVisualizerEventType (line 5129) | class viewportVisualizerEventType: method __init__ (line 5199) | def __init__(self, *args, **kwargs) -> None: ... class nodeFlag (line 5210) | class nodeFlag: method __init__ (line 5252) | def __init__(self, *args, **kwargs) -> None: ... class nodeFootprint (line 5283) | class nodeFootprint: method __init__ (line 5305) | def __init__(self, *args, **kwargs) -> None: ... class fbxCompatibilityMode (line 5309) | class fbxCompatibilityMode: method __init__ (line 5311) | def __init__(self, *args, **kwargs) -> None: ... class fbxMaterialMode (line 5316) | class fbxMaterialMode: method __init__ (line 5318) | def __init__(self, *args, **kwargs) -> None: ... class saveMode (line 5324) | class saveMode: method __init__ (line 5347) | def __init__(self, *args, **kwargs) -> None: ... class radialItemType (line 5352) | class radialItemType: method __init__ (line 5371) | def __init__(self, *args, **kwargs) -> None: ... class radialItemLocation (line 5376) | class radialItemLocation: method __init__ (line 5413) | def __init__(self, *args, **kwargs) -> None: ... class valueLadderType (line 5424) | class valueLadderType: method __init__ (line 5448) | def __init__(self, *args, **kwargs) -> None: ... class valueLadderDataType (line 5453) | class valueLadderDataType: method __init__ (line 5484) | def __init__(self, *args, **kwargs) -> None: ... class promptMessageType (line 5491) | class promptMessageType: method __init__ (line 5519) | def __init__(self, *args, **kwargs) -> None: ... class drawableDisplayMode (line 5526) | class drawableDisplayMode: method __init__ (line 5545) | def __init__(self, *args, **kwargs) -> None: ... class scaleInheritanceMode (line 5550) | class scaleInheritanceMode: method __init__ (line 5587) | def __init__(self, *args, **kwargs) -> None: ... class uiEventValueType (line 5595) | class uiEventValueType: method __init__ (line 5635) | def __init__(self, *args, **kwargs) -> None: ... class uiEventReason (line 5645) | class uiEventReason: method __init__ (line 5693) | def __init__(self, *args, **kwargs) -> None: ... class drawablePrimitive (line 5705) | class drawablePrimitive: method __init__ (line 5722) | def __init__(self, *args, **kwargs) -> None: ... class resourceEventMessage (line 5728) | class resourceEventMessage: method __init__ (line 5803) | def __init__(self, *args, **kwargs) -> None: ... class snappingPriority (line 5823) | class snappingPriority: method __init__ (line 5867) | def __init__(self, *args, **kwargs) -> None: ... class triggerSelectorAction (line 5879) | class triggerSelectorAction: method __init__ (line 5904) | def __init__(self, *args, **kwargs) -> None: ... class drawableGeometryType (line 5910) | class drawableGeometryType: method __init__ (line 5942) | def __init__(self, *args, **kwargs) -> None: ... class drawableTextOrigin (line 5949) | class drawableTextOrigin: method __init__ (line 5995) | def __init__(self, *args, **kwargs) -> None: ... class drawableGeometryFaceStyle (line 6006) | class drawableGeometryFaceStyle: method __init__ (line 6035) | def __init__(self, *args, **kwargs) -> None: ... class drawableGeometryLineStyle (line 6043) | class drawableGeometryLineStyle: method __init__ (line 6081) | def __init__(self, *args, **kwargs) -> None: ... class drawableGeometryPointStyle (line 6092) | class drawableGeometryPointStyle: method __init__ (line 6205) | def __init__(self, *args, **kwargs) -> None: ... class drawableRampClamp (line 6241) | class drawableRampClamp: method __init__ (line 6268) | def __init__(self, *args, **kwargs) -> None: ... class drawableHighlightMode (line 6275) | class drawableHighlightMode: method __init__ (line 6306) | def __init__(self, *args, **kwargs) -> None: ... class secureSelectionOption (line 6314) | class secureSelectionOption: method __init__ (line 6356) | def __init__(self, *args, **kwargs) -> None: ... class resourceType (line 6363) | class resourceType: method __init__ (line 6390) | def __init__(self, *args, **kwargs) -> None: ... class geometryViewportEvent (line 6397) | class geometryViewportEvent: method __init__ (line 6417) | def __init__(self, *args, **kwargs) -> None: ... class sceneViewerEvent (line 6421) | class sceneViewerEvent: method __init__ (line 6490) | def __init__(self, *args, **kwargs) -> None: ... class hudInfoState (line 6508) | class hudInfoState: method __init__ (line 6535) | def __init__(self, *args, **kwargs) -> None: ... class hudPanel (line 6542) | class hudPanel: method __init__ (line 6568) | def __init__(self, *args, **kwargs) -> None: ... class drawable2DType (line 6574) | class drawable2DType: method __init__ (line 6613) | def __init__(self, *args, **kwargs) -> None: ... class drawable2DCapStyle (line 6624) | class drawable2DCapStyle: method __init__ (line 6675) | def __init__(self, *args, **kwargs) -> None: ... class drawable2DLineStyle (line 6690) | class drawable2DLineStyle: method __init__ (line 6711) | def __init__(self, *args, **kwargs) -> None: ... class drawable2DMarkerSize (line 6716) | class drawable2DMarkerSize: method __init__ (line 6743) | def __init__(self, *args, **kwargs) -> None: ... class drawable2DMarkerStyle (line 6750) | class drawable2DMarkerStyle: method __init__ (line 6792) | def __init__(self, *args, **kwargs) -> None: ... class scrollPosition (line 6804) | class scrollPosition: method __init__ (line 6837) | def __init__(self, *args, **kwargs) -> None: ... class parmFilterMode (line 6844) | class parmFilterMode: method __init__ (line 6875) | def __init__(self, *args, **kwargs) -> None: ... class parmFilterCriteria (line 6890) | class parmFilterCriteria: method __init__ (line 6915) | def __init__(self, *args, **kwargs) -> None: ... class _ik_targetType (line 6923) | class _ik_targetType: method __init__ (line 6925) | def __init__(self, *args, **kwargs) -> None: ... class agentShapeDeformerType (line 6931) | class agentShapeDeformerType: method __init__ (line 6955) | def __init__(self, *args, **kwargs) -> None: ... class optionalBool (line 6965) | class optionalBool: method __init__ (line 6992) | def __init__(self, *args, **kwargs) -> None: ... class videoDriver (line 6998) | class videoDriver: method __init__ (line 7024) | def __init__(self, *args, **kwargs) -> None: ... class trackExtend (line 7027) | class trackExtend: method __init__ (line 7047) | def __init__(self, *args, **kwargs) -> None: ... class clipMode (line 7056) | class clipMode: method __init__ (line 7073) | def __init__(self, *args, **kwargs) -> None: ... class SystemExit (line 7079) | class SystemExit(Exception): method __init__ (line 7091) | def __init__(self, exit_code: int) -> None: method code (line 7102) | def code(self) -> int: class Error (line 7113) | class Error(Exception): method __init__ (line 7129) | def __init__(self, *args) -> None: method exceptionTypeName (line 7145) | def exceptionTypeName(self) -> str: method description (line 7158) | def description(self) -> str: method instanceMessage (line 7168) | def instanceMessage(self) -> str: class NotAvailable (line 7178) | class NotAvailable(Error): method __init__ (line 7192) | def __init__(self, *args) -> None: method exceptionTypeName (line 7205) | def exceptionTypeName(self) -> str: method description (line 7218) | def description(self) -> str: class ObjectWasDeleted (line 7230) | class ObjectWasDeleted(Error): method __init__ (line 7265) | def __init__(self, *args) -> None: method exceptionTypeName (line 7299) | def exceptionTypeName(self) -> str: method description (line 7312) | def description(self) -> str: class InvalidInput (line 7324) | class InvalidInput(Error): method __init__ (line 7343) | def __init__(self, *args) -> None: method exceptionTypeName (line 7361) | def exceptionTypeName(self) -> str: method description (line 7374) | def description(self) -> str: class InvalidOutput (line 7386) | class InvalidOutput(Error): method __init__ (line 7405) | def __init__(self, *args) -> None: method exceptionTypeName (line 7423) | def exceptionTypeName(self) -> str: method description (line 7436) | def description(self) -> str: class InvalidSize (line 7448) | class InvalidSize(Error): method __init__ (line 7463) | def __init__(self, *args) -> None: method exceptionTypeName (line 7477) | def exceptionTypeName(self) -> str: method description (line 7490) | def description(self) -> str: class OperationFailed (line 7502) | class OperationFailed(Error): method __init__ (line 7518) | def __init__(self, message: str|None = ...) -> None: method exceptionTypeName (line 7533) | def exceptionTypeName(self) -> str: method description (line 7546) | def description(self) -> str: class InvalidNodeType (line 7558) | class InvalidNodeType(Error): method __init__ (line 7573) | def __init__(self, *args) -> None: method exceptionTypeName (line 7587) | def exceptionTypeName(self) -> str: method description (line 7600) | def description(self) -> str: class InitScriptFailed (line 7612) | class InitScriptFailed(Error): method __init__ (line 7619) | def __init__(self, *args) -> None: method exceptionTypeName (line 7625) | def exceptionTypeName(self) -> str: method description (line 7638) | def description(self) -> str: class MatchDefinitionError (line 7650) | class MatchDefinitionError(Error): method __init__ (line 7657) | def __init__(self, *args) -> None: method exceptionTypeName (line 7663) | def exceptionTypeName(self) -> str: method description (line 7676) | def description(self) -> str: class PermissionError (line 7688) | class PermissionError(Error): method __init__ (line 7695) | def __init__(self, *args) -> None: method exceptionTypeName (line 7701) | def exceptionTypeName(self) -> str: method description (line 7714) | def description(self) -> str: method instanceMessage (line 7724) | def instanceMessage(self) -> str: class GeometryPermissionError (line 7735) | class GeometryPermissionError(Error): method __init__ (line 7759) | def __init__(self, *args) -> None: method exceptionTypeName (line 7782) | def exceptionTypeName(self) -> str: method description (line 7795) | def description(self) -> str: class KeyframeValueNotSet (line 7807) | class KeyframeValueNotSet(Error): method __init__ (line 7814) | def __init__(self, *args) -> None: method exceptionTypeName (line 7820) | def exceptionTypeName(self) -> str: method description (line 7833) | def description(self) -> str: class OperationInterrupted (line 7845) | class OperationInterrupted(Error): method __init__ (line 7852) | def __init__(self, *args) -> None: method exceptionTypeName (line 7858) | def exceptionTypeName(self) -> str: method description (line 7871) | def description(self) -> str: class LoadWarning (line 7883) | class LoadWarning(Error): method __init__ (line 7894) | def __init__(self, *args) -> None: method exceptionTypeName (line 7904) | def exceptionTypeName(self) -> str: method description (line 7917) | def description(self) -> str: class NodeError (line 7929) | class NodeError(Error): method __init__ (line 7995) | def __init__(self, *args) -> None: method exceptionTypeName (line 8060) | def exceptionTypeName(self) -> str: method description (line 8073) | def description(self) -> str: class NodeWarning (line 8085) | class NodeWarning(Error): method __init__ (line 8154) | def __init__(self, *args) -> None: method exceptionTypeName (line 8222) | def exceptionTypeName(self) -> str: method description (line 8235) | def description(self) -> str: class NameConflict (line 8247) | class NameConflict(Error): method __init__ (line 8265) | def __init__(self, *args) -> None: method exceptionTypeName (line 8282) | def exceptionTypeName(self) -> str: method description (line 8295) | def description(self) -> str: class TypeConflict (line 8307) | class TypeConflict(Error): method __init__ (line 8321) | def __init__(self, *args) -> None: method exceptionTypeName (line 8334) | def exceptionTypeName(self) -> str: method description (line 8347) | def description(self) -> str: class StateNotRegistered (line 8359) | class StateNotRegistered(Error): method __init__ (line 8372) | def __init__(self, *args) -> None: method exceptionTypeName (line 8384) | def exceptionTypeName(self) -> str: method description (line 8397) | def description(self) -> str: class HandleNotRegistered (line 8409) | class HandleNotRegistered(Error): method __init__ (line 8422) | def __init__(self, *args) -> None: method exceptionTypeName (line 8434) | def exceptionTypeName(self) -> str: method description (line 8447) | def description(self) -> str: class LicenseError (line 8459) | class LicenseError(Error): method __init__ (line 8482) | def __init__(self, *args) -> None: method exceptionTypeName (line 8504) | def exceptionTypeName(self) -> str: method description (line 8517) | def description(self) -> str: class InvalidGeometry (line 8529) | class InvalidGeometry(OperationFailed): method __init__ (line 8568) | def __init__(self, *args) -> None: method exceptionTypeName (line 8606) | def exceptionTypeName(self) -> str: method description (line 8619) | def description(self) -> str: class NetworkItem (line 8631) | class NetworkItem: method __init__ (line 8647) | def __init__(self, *args) -> None: method networkItemType (line 8663) | def networkItemType(self) -> EnumValue: method __lt__ (line 8678) | def __lt__(self, other: object) -> bool: ... method __le__ (line 8679) | def __le__(self, other: object) -> bool: ... method __gt__ (line 8680) | def __gt__(self, other: object) -> bool: ... method __ge__ (line 8681) | def __ge__(self, other: object) -> bool: ... method __eq__ (line 8682) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 8683) | def __ne__(self, other: object) -> bool: ... class NetworkMovableItem (line 8685) | class NetworkMovableItem(NetworkItem): method __init__ (line 8703) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 8705) | def __hash__(self) -> int: ... method name (line 8706) | def name(self) -> str: method setName (line 8715) | def setName(self, name: str, unique_name: bool = False) -> None: method digitsInName (line 8731) | def digitsInName(self) -> int: method path (line 8744) | def path(self) -> str: method relativePathTo (line 8754) | def relativePathTo(self, base_item: NetworkMovableItem) -> str: method isSelected (line 8771) | def isSelected(self) -> bool: method setSelected (line 8782) | def setSelected(self, on: bool, clear_all_selected: bool = False, show... method color (line 8795) | def color(self) -> Color: method setColor (line 8804) | def setColor(self, color: Color) -> None: method size (line 8814) | def size(self) -> Vector2: method position (line 8824) | def position(self) -> Vector2: method setPosition (line 8834) | def setPosition(self, position: Sequence[float]|Vector2) -> None: method move (line 8844) | def move(self, amount: Sequence[float]|Vector2) -> None: method parent (line 8861) | def parent(self) -> Optional[Node]: method parentNetworkBox (line 8877) | def parentNetworkBox(self) -> Optional[NetworkBox]: method sessionId (line 8887) | def sessionId(self) -> int: class NetworkBox (line 8908) | class NetworkBox(NetworkMovableItem): method __init__ (line 8924) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 8926) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 8927) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 8928) | def __hash__(self) -> int: ... method comment (line 8929) | def comment(self) -> str: method setComment (line 8938) | def setComment(self, comment: str) -> None: method autoFit (line 8949) | def autoFit(self) -> bool: method setAutoFit (line 8958) | def setAutoFit(self, auto_fit: bool) -> None: method setBounds (line 8974) | def setBounds(self, bounds: BoundingRect) -> None: method setSize (line 8985) | def setSize(self, size: Sequence[float]) -> None: method resize (line 8996) | def resize(self, amount: Sequence[float]) -> None: method fitAroundContents (line 9006) | def fitAroundContents(self) -> None: method minimizedSize (line 9015) | def minimizedSize(self) -> Vector2: method restoredSize (line 9025) | def restoredSize(self) -> Vector2: method isMinimized (line 9035) | def isMinimized(self) -> bool: method setMinimized (line 9044) | def setMinimized(self, on: bool) -> None: method alpha (line 9053) | def alpha(self) -> float: method setAlpha (line 9064) | def setAlpha(self, alpha: float) -> None: method nodes (line 9075) | def nodes(self, recurse: bool = True) -> Tuple[Node, ...]: method addNode (line 9088) | def addNode(self, node: Node) -> None: method removeNode (line 9098) | def removeNode(self, node: Node) -> None: method removeAllNodes (line 9108) | def removeAllNodes(self) -> None: method networkBoxes (line 9119) | def networkBoxes(self, recurse: bool = True) -> Tuple[NetworkBox, ...]: method addNetworkBox (line 9132) | def addNetworkBox(self, networkbox: NetworkBox) -> None: method removeNetworkBox (line 9142) | def removeNetworkBox(self, networkbox: NetworkBox) -> None: method stickyNotes (line 9152) | def stickyNotes(self, recurse: bool = True) -> Tuple[StickyNote, ...]: method addStickyNote (line 9165) | def addStickyNote(self, stickynote: StickyNote) -> None: method removeStickyNote (line 9175) | def removeStickyNote(self, stickynote: StickyNote) -> None: method subnetIndirectInputs (line 9185) | def subnetIndirectInputs(self, recurse: bool = True) -> Tuple[SubnetIn... method addSubnetIndirectInput (line 9199) | def addSubnetIndirectInput(self, indirect: SubnetIndirectInput) -> None: method removeSubnetIndirectInput (line 9209) | def removeSubnetIndirectInput(self, indirect: SubnetIndirectInput) -> ... method items (line 9219) | def items(self, recurse: bool = True) -> Tuple[NetworkMovableItem, ...]: method addItem (line 9232) | def addItem(self, item: NetworkMovableItem) -> None: method removeItem (line 9241) | def removeItem(self, item: NetworkMovableItem) -> None: method removeAllItems (line 9250) | def removeAllItems(self) -> None: method destroy (line 9259) | def destroy(self, destroy_contents: bool = False) -> None: method asCode (line 9269) | def asCode(self, brief: bool = False, recurse: bool = False, save_box_... class OpNetworkBox (line 9285) | class OpNetworkBox(NetworkBox): method __init__ (line 9295) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 9297) | def __hash__(self) -> int: ... class StickyNote (line 9299) | class StickyNote(NetworkMovableItem): method __init__ (line 9315) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 9317) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 9318) | def __ne__(self, other: object) -> bool: ... method text (line 9319) | def text(self) -> str: method setText (line 9328) | def setText(self, new_text: str) -> None: method textSize (line 9337) | def textSize(self) -> float: method setTextSize (line 9347) | def setTextSize(self, size: float) -> None: method textColor (line 9357) | def textColor(self) -> Color: method setTextColor (line 9366) | def setTextColor(self, color: Color) -> None: method drawBackground (line 9376) | def drawBackground(self) -> bool: method setDrawBackground (line 9386) | def setDrawBackground(self, on: bool) -> None: method setBounds (line 9398) | def setBounds(self, bounds: BoundingRect) -> None: ... method setSize (line 9399) | def setSize(self, size: Sequence[float]|Vector2) -> None: method resize (line 9410) | def resize(self, amount: Sequence[float]) -> None: method minimizedSize (line 9420) | def minimizedSize(self) -> Vector2: method restoredSize (line 9430) | def restoredSize(self) -> Vector2: method isMinimized (line 9440) | def isMinimized(self) -> bool: method setMinimized (line 9449) | def setMinimized(self, on: bool) -> None: method destroy (line 9458) | def destroy(self) -> None: class ApexStickyNote (line 9468) | class ApexStickyNote(StickyNote): method __init__ (line 9478) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 9480) | def __hash__(self) -> int: ... class OpStickyNote (line 9482) | class OpStickyNote(StickyNote): method __init__ (line 9502) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 9504) | def __hash__(self) -> int: ... method asCode (line 9505) | def asCode(self, brief: bool = False, recurse: bool = False, save_box_... class Node (line 9507) | class Node(NetworkMovableItem): method __init__ (line 9528) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 9530) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 9531) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 9532) | def __hash__(self) -> int: ... method isNetwork (line 9533) | def isNetwork(self) -> bool: method isEditable (line 9545) | def isEditable(self) -> bool: ... method type (line 9546) | def type(self) -> NodeType: method childTypeCategory (line 9557) | def childTypeCategory(self) -> NodeTypeCategory: method isFlagReadable (line 9569) | def isFlagReadable(self, flag: EnumValue) -> bool: method isFlagWritable (line 9580) | def isFlagWritable(self, flag: EnumValue) -> bool: method isGenericFlagSet (line 9591) | def isGenericFlagSet(self, flag: EnumValue) -> bool: method setGenericFlag (line 9602) | def setGenericFlag(self, flag: EnumValue, value: bool) -> None: method isDisplayDescriptiveNameFlagSet (line 9614) | def isDisplayDescriptiveNameFlagSet(self) -> bool: method setDisplayDescriptiveNameFlag (line 9624) | def setDisplayDescriptiveNameFlag(self, on: bool) -> None: ... method errors (line 9625) | def errors(self) -> Tuple[str, ...]: method warnings (line 9635) | def warnings(self) -> Tuple[str, ...]: method messages (line 9645) | def messages(self) -> Tuple[str, ...]: method node (line 9655) | def node(self, node_path: str) -> Optional[Node]: method nodes (line 9678) | def nodes(self, node_paths: Sequence[str]) -> Tuple[Node, ...]: method item (line 9689) | def item(self, item_path: str) -> Optional[NetworkMovableItem]: method items (line 9710) | def items(self, item_paths: Sequence[str]) -> Tuple[NetworkMovableItem... method glob (line 9721) | def glob(self, pattern: str, ignore_case: bool = False) -> Tuple[Node,... method recursiveGlob (line 9767) | def recursiveGlob(self, pattern: str, filter: EnumValue = ..., include... method createNode (line 9807) | def createNode(self, node_type_name: str, node_name: Optional[str] = N... method inputIndex (line 9877) | def inputIndex(self, input_name: str) -> int: method outputIndex (line 9890) | def outputIndex(self, output_name: str) -> int: method setInput (line 9902) | def setInput(self, input_index: int, item_to_become_input: NetworkMova... method setNamedInput (line 9930) | def setNamedInput(self, input_name: str, item_to_become_input: Network... method setFirstInput (line 9942) | def setFirstInput(self, item_to_become_input: NetworkMovableItem|None,... method setNextInput (line 9952) | def setNextInput(self, item_to_become_input: NetworkMovableItem, outpu... method insertInput (line 9977) | def insertInput(self, input_index: int, item_to_become_input: NetworkM... method numOrderedInputs (line 9989) | def numOrderedInputs(self) -> int: method inputs (line 10006) | def inputs(self) -> Tuple[Self|None,...]: method inputsFollowingOutputs (line 10023) | def inputsFollowingOutputs(self) -> Tuple[Node, ...]: method input (line 10052) | def input(self, input_index: int) -> Self|None: method inputFollowingOutputs (line 10069) | def inputFollowingOutputs(self, input_index: int) -> Self|None: method inputConnections (line 10092) | def inputConnections(self) -> Tuple[NodeConnection, ...]: method inputConnectors (line 10118) | def inputConnectors(self) -> Iterator[Tuple[NodeConnection, ...]]: method inputAncestors (line 10133) | def inputAncestors(self, include_ref_inputs: bool = True, follow_subne... method inputNames (line 10150) | def inputNames(self) -> Tuple[str, ...]: method inputLabels (line 10160) | def inputLabels(self) -> Tuple[str, ...]: method editableInputStrings (line 10170) | def editableInputStrings(self, input_index: int) -> dict[str, str]: ... method editableInputString (line 10171) | def editableInputString(self, input_index: int, key: str) -> str: ... method setEditableInputString (line 10172) | def setEditableInputString(self, input_index: int, key: str, value: st... method outputNames (line 10173) | def outputNames(self) -> Tuple[str, ...]: method outputLabels (line 10182) | def outputLabels(self) -> Tuple[str, ...]: method outputs (line 10191) | def outputs(self) -> Tuple[Self,...]: method outputConnections (line 10203) | def outputConnections(self) -> Tuple[NodeConnection, ...]: method outputConnectors (line 10230) | def outputConnectors(self) -> Iterator[Tuple[NodeConnection, ...]]: method children (line 10251) | def children(self) -> Tuple[Node, ...]: method allSubChildren (line 10283) | def allSubChildren(self, top_down: bool = True, recurse_in_locked_node... method selectedChildren (line 10346) | def selectedChildren(self, include_hidden: bool = False, include_hidde... method allItems (line 10378) | def allItems(self) -> Tuple[NetworkMovableItem, ...]: method allSubItems (line 10389) | def allSubItems(self, top_down: bool = True, recurse_in_locked_nodes: ... method selectedItems (line 10404) | def selectedItems(self, include_hidden: bool = False, include_hidden_s... method numItems (line 10434) | def numItems(self, item_type: Optional[EnumValue] = None, selected_onl... method deleteItems (line 10435) | def deleteItems(self, items: Iterable[NetworkMovableItem], disable_saf... method copyItemsToClipboard (line 10456) | def copyItemsToClipboard(self, items: Iterable[NetworkMovableItem]) ->... method pasteItemsFromClipboard (line 10476) | def pasteItemsFromClipboard(self, position: Optional[Vector2] = None) ... method copyItems (line 10494) | def copyItems(self, items: Sequence[NetworkMovableItem], channel_refer... method creator (line 10526) | def creator(self) -> Node: method network (line 10541) | def network(self) -> Optional[Node]: ... method moveToGoodPosition (line 10542) | def moveToGoodPosition(self, relative_to_inputs: bool = True, move_inp... method layoutChildren (line 10553) | def layoutChildren(self, items: Sequence[NetworkMovableItem] = ..., ho... method isCurrent (line 10581) | def isCurrent(self) -> bool: method setCurrent (line 10600) | def setCurrent(self, on: bool, clear_all_selected: bool = False) -> None: method isHidden (line 10623) | def isHidden(self) -> bool: method hide (line 10640) | def hide(self, on: bool) -> None: method comment (line 10650) | def comment(self) -> str: method setComment (line 10659) | def setComment(self, comment: str) -> None: method appendComment (line 10669) | def appendComment(self, comment: str) -> None: method destroy (line 10678) | def destroy(self, disable_safety_checks: bool = False) -> None: method networkBoxes (line 10697) | def networkBoxes(self) -> Tuple[NetworkBox, ...]: method iterNetworkBoxes (line 10707) | def iterNetworkBoxes(self) -> Iterator[NetworkBox]: ... method createNetworkBox (line 10708) | def createNetworkBox(self, name: Optional[str] = None) -> NetworkBox: method copyNetworkBox (line 10725) | def copyNetworkBox(self, network_box_to_copy: NetworkBox, new_name: Op... method findNetworkBox (line 10746) | def findNetworkBox(self, name: str) -> Optional[NetworkBox]: method findNetworkBoxes (line 10756) | def findNetworkBoxes(self, pattern: str) -> Tuple[NetworkBox, ...]: method networkDots (line 10766) | def networkDots(self) -> Tuple[NetworkDot, ...]: method createNetworkDot (line 10775) | def createNetworkDot(self) -> NetworkDot: method canCreateDigitalAsset (line 10785) | def canCreateDigitalAsset(self) -> bool: method collapseIntoSubnet (line 10795) | def collapseIntoSubnet(self, child_items: Sequence[NetworkMovableItem]... method extractAndDelete (line 10829) | def extractAndDelete(self) -> Tuple[NetworkMovableItem, ...]: method indirectInputs (line 10843) | def indirectInputs(self) -> Tuple[SubnetIndirectInput, ...]: method subnetOutputs (line 10854) | def subnetOutputs(self) -> Tuple[Node, ...]: method isSubNetwork (line 10871) | def isSubNetwork(self) -> bool: method setUserData (line 10880) | def setUserData(self, name: str, value: str) -> None: method destroyUserData (line 10924) | def destroyUserData(self, name: str, must_exist: bool = True) -> None: method clearUserDataDict (line 10938) | def clearUserDataDict(self) -> None: method userDataDict (line 10949) | def userDataDict(self) -> dict[str, str]: method userData (line 10961) | def userData(self, name: str) -> str|None: method createStickyNote (line 10977) | def createStickyNote(self, name: Optional[str] = None) -> StickyNote: method stickyNotes (line 10989) | def stickyNotes(self) -> Tuple[StickyNote, ...]: method iterStickyNotes (line 10999) | def iterStickyNotes(self) -> Iterator[StickyNote]: ... method copyStickyNote (line 11000) | def copyStickyNote(self, sticky_note_to_copy: StickyNote, new_name: Op... method findStickyNote (line 11017) | def findStickyNote(self, name: str) -> Optional[StickyNote]: method findStickyNotes (line 11027) | def findStickyNotes(self, pattern: str) -> Tuple[StickyNote, ...]: method createOutputNode (line 11039) | def createOutputNode(self, node_type_name: str, node_name: str | None ... method createInputNode (line 11040) | def createInputNode(self, input_index: int, node_type_name: str, node_... method creationTime (line 11041) | def creationTime(self) -> datetime.datetime: ... method modificationTime (line 11042) | def modificationTime(self) -> datetime.datetime: ... method outputsWithIndices (line 11043) | def outputsWithIndices(self, ignore_network_dots: bool = False, use_na... class ApexNode (line 11045) | class ApexNode(Node): method __init__ (line 11063) | def __init__(self, *args, **kwargs) -> None: ... method inputName (line 11065) | def inputName(self, input_index: int) -> str: method setInputName (line 11074) | def setInputName(self, input_index: int, name: str) -> None: method canRenameInput (line 11083) | def canRenameInput(self, input_index: int) -> bool: method outputName (line 11093) | def outputName(self, output_index: int) -> str: method setOutputName (line 11102) | def setOutputName(self, output_index: int, name: str) -> None: method canRenameOutput (line 11111) | def canRenameOutput(self, output_index: int) -> bool: method convertSubgraphToSubnet (line 11121) | def convertSubgraphToSubnet(self) -> None: method inputDataTypes (line 11131) | def inputDataTypes(self) -> Tuple[str, ...]: method outputDataTypes (line 11140) | def outputDataTypes(self) -> Tuple[str, ...]: method tags (line 11149) | def tags(self) -> Tuple[str, ...]: method setTags (line 11158) | def setTags(self, tags: Sequence[str]) -> None: method isSubgraphAsset (line 11167) | def isSubgraphAsset(self) -> bool: class OpNode (line 11179) | class OpNode(Node): method __init__ (line 11225) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 11227) | def __hash__(self) -> int: ... method creatorState (line 11228) | def creatorState(self) -> str: method setCreatorState (line 11239) | def setCreatorState(self, state: str) -> None: method isBuiltExplicitly (line 11250) | def isBuiltExplicitly(self) -> bool: ... method setBuiltExplicitly (line 11251) | def setBuiltExplicitly(self, built_explicitly: bool) -> None: ... method expressionLanguage (line 11252) | def expressionLanguage(self) -> EnumValue: method setExpressionLanguage (line 11277) | def setExpressionLanguage(self, language: EnumValue) -> None: method parm (line 11287) | def parm(self, parm_path: str) -> Optional[Parm]: method parmTuple (line 11297) | def parmTuple(self, parm_path: str) -> Optional[ParmTuple]: method globParms (line 11310) | def globParms(self, pattern: str, ignore_case: bool = False, search_la... method parms (line 11341) | def parms(self) -> Tuple[Parm, ...]: method parmsReferencingThis (line 11350) | def parmsReferencingThis(self) -> Tuple[Parm, ...]: method parmTuples (line 11359) | def parmTuples(self) -> Tuple[ParmTuple, ...]: method spareParms (line 11371) | def spareParms(self) -> Tuple[Parm, ...]: method removeSpareParms (line 11380) | def removeSpareParms(self) -> None: method syncNodeVersionIfNeeded (line 11389) | def syncNodeVersionIfNeeded(self, from_version: str) -> None: method setParmTemplateGroup (line 11399) | def setParmTemplateGroup(self, parm_template_group: ParmTemplateGroup,... method parmTuplesInFolder (line 11400) | def parmTuplesInFolder(self, folder_names: Sequence[str]) -> Tuple[Par... method parmsInFolder (line 11415) | def parmsInFolder(self, folder_names: Sequence[str]) -> Tuple[Parm, ...]: method parmTemplateGroup (line 11460) | def parmTemplateGroup(self) -> ParmTemplateGroup: ... method localVariables (line 11461) | def localVariables(self) -> Tuple[str, ...]: method localAttributes (line 11471) | def localAttributes(self) -> Tuple[str, ...]: method reorderChild (line 11483) | def reorderChild(self, src: int, dest: int) -> None: method references (line 11501) | def references(self, include_children: bool = True) -> Tuple[Node, ...]: method dependents (line 11517) | def dependents(self, include_children: bool = True) -> Tuple[Node, ...]: method fileReferences (line 11532) | def fileReferences(self, recurse: bool = ..., project_dir_variable: st... method isTimeDependent (line 11561) | def isTimeDependent(self, for_last_cook: bool = False) -> bool: method allowEditingOfContents (line 11575) | def allowEditingOfContents(self, propagate: bool = False) -> None: method matchCurrentDefinition (line 11586) | def matchCurrentDefinition(self) -> None: method matchesCurrentDefinition (line 11602) | def matchesCurrentDefinition(self) -> bool: method syncDelayedDefinition (line 11612) | def syncDelayedDefinition(self) -> None: method isDelayedDefinition (line 11623) | def isDelayedDefinition(self) -> bool: method parmAliases (line 11634) | def parmAliases(self, recurse: bool = False) -> dict[Parm, str]: method clearParmAliases (line 11649) | def clearParmAliases(self) -> None: method createCompiledDigitalAsset (line 11658) | def createCompiledDigitalAsset(self, name: Optional[str] = None, hda_f... method isInsideLockedHDA (line 11691) | def isInsideLockedHDA(self) -> bool: method isEditableInsideLockedHDA (line 11702) | def isEditableInsideLockedHDA(self) -> bool: method isLockedHDA (line 11714) | def isLockedHDA(self) -> bool: method isCompiled (line 11734) | def isCompiled(self) -> bool: ... method isMaterialManager (line 11735) | def isMaterialManager(self) -> bool: ... method outputLabel (line 11736) | def outputLabel(self, output_index: int) -> str: method outputForViewFlag (line 11747) | def outputForViewFlag(self) -> int: method setOutputForViewFlag (line 11766) | def setOutputForViewFlag(self, output: int) -> None: method hdaModule (line 11775) | def hdaModule(self) -> HDAModule: method hdaViewerStateModule (line 11786) | def hdaViewerStateModule(self) -> Optional[HDAViewerStateModule]: method hdaViewerHandleModule (line 11798) | def hdaViewerHandleModule(self) -> Optional[HDAViewerHandleModule]: method hm (line 11810) | def hm(self) -> HDAModule: ... method createDigitalAsset (line 11811) | def createDigitalAsset(self, name: Optional[str] = None, hda_file_name... method changeNodeType (line 11886) | def changeNodeType(self, new_node_type: str, keep_name: bool = True, k... method selectNextVisibleWorkItem (line 11905) | def selectNextVisibleWorkItem(self) -> None: method selectPreviousVisibleWorkItem (line 11914) | def selectPreviousVisibleWorkItem(self) -> None: method deselectWorkItem (line 11923) | def deselectWorkItem(self) -> None: method setCurrentTOPPage (line 11933) | def setCurrentTOPPage(self, page: int) -> None: method canGenerateCookCode (line 11943) | def canGenerateCookCode(self, check_parent: bool = False, check_auto_s... method cookCodeGeneratorNode (line 11966) | def cookCodeGeneratorNode(self, check_parent: bool = ...) -> Node: method cookCodeLanguage (line 11981) | def cookCodeLanguage(self) -> str: method supportsMultiCookCodeContexts (line 11993) | def supportsMultiCookCodeContexts(self) -> bool: method saveCookCodeToFile (line 12007) | def saveCookCodeToFile(self, file_name: str, skip_header: bool = False... method saveCodeToFile (line 12046) | def saveCodeToFile(self, file_name: str, skip_header: bool = False, co... method saveCompiledCookCodeToFile (line 12047) | def saveCompiledCookCodeToFile(self, file_name: str, context_name: Opt... method saveToCompiledVexFile (line 12058) | def saveToCompiledVexFile(self, file_name: str, context_name: Optional... method cook (line 12059) | def cook(self, force: bool = ..., frame_range: Sequence[float] = ...) ... method needsToCook (line 12075) | def needsToCook(self, time: float = ...) -> bool: method invalidateOutput (line 12084) | def invalidateOutput(self) -> None: method cookCount (line 12101) | def cookCount(self) -> int: method cookPathNodes (line 12111) | def cookPathNodes(self) -> Tuple[Node, ...]: method infoTree (line 12121) | def infoTree(self, verbose: bool = False, debug: bool = False, output_... method infoData (line 12157) | def infoData(self) -> dict[str, Any]: method updateParmStates (line 12173) | def updateParmStates(self) -> None: method runInitScripts (line 12193) | def runInitScripts(self) -> None: method deleteScript (line 12202) | def deleteScript(self) -> str: method setDeleteScript (line 12211) | def setDeleteScript(self, script_text: str, language: EnumValue = ...)... method addNodeGroup (line 12220) | def addNodeGroup(self, name: Optional[str] = None) -> NodeGroup: method nodeGroups (line 12240) | def nodeGroups(self) -> Tuple[NodeGroup, ...]: method nodeGroup (line 12249) | def nodeGroup(self, name: str) -> Optional[NodeGroup]: method motionEffectsNetworkPath (line 12259) | def motionEffectsNetworkPath(self) -> str: method findOrCreateMotionEffectsNetwork (line 12270) | def findOrCreateMotionEffectsNetwork(self, create: bool = True) -> OpN... method createOrMoveVisualizer (line 12283) | def createOrMoveVisualizer(self, output_index: int) -> None: method saveItemsToFile (line 12296) | def saveItemsToFile(self, items: Sequence[NetworkMovableItem], file_na... method loadItemsFromFile (line 12330) | def loadItemsFromFile(self, file_name: str, ignore_load_warnings: bool... method removeAllEventCallbacks (line 12345) | def removeAllEventCallbacks(self) -> None: method stampValue (line 12362) | def stampValue(self, parm_name: str, default_value: float|str) -> str: method asCode (line 12385) | def asCode(self, brief: bool = False, recurse: bool = False, save_chan... method dataBlockKeys (line 12444) | def dataBlockKeys(self, blocktype: Optional[str] = None) -> Tuple[str,... method dataBlockType (line 12461) | def dataBlockType(self, key: str) -> str: method dataBlock (line 12473) | def dataBlock(self, key: str) -> bytes: method setDataBlock (line 12500) | def setDataBlock(self, key: str, data: bytes, block_type: Optional[str... method removeDataBlock (line 12526) | def removeDataBlock(self, key: str) -> None: method destroyCachedUserData (line 12536) | def destroyCachedUserData(self, name: str, must_exist: bool = True) ->... method clearCachedUserDataDict (line 12550) | def clearCachedUserDataDict(self) -> None: method cachedUserDataDict (line 12561) | def cachedUserDataDict(self) -> dict[str, Any]: method setCachedUserData (line 12573) | def setCachedUserData(self, name: str, value: Any) -> None: method cachedUserData (line 12609) | def cachedUserData(self, name: str) -> Any: method simulation (line 12644) | def simulation(self) -> DopSimulation: ... method findNodesThatProcessedObject (line 12645) | def findNodesThatProcessedObject(self, dop_object: DopObject) -> Tuple... method addError (line 12646) | def addError(self, message: str, severity: EnumValue = ...) -> None: method addWarning (line 12667) | def addWarning(self, message: Optional[str] = None) -> None: method addMessage (line 12685) | def addMessage(self, message: Optional[str] = None) -> None: method lastCookTime (line 12703) | def lastCookTime(self) -> float: method lastCookContextOptions (line 12712) | def lastCookContextOptions(self, only_used_options: bool = ...) -> dic... method evalParm (line 12725) | def evalParm(self, parm_path: str) -> ParmArgType: method evalParmTuple (line 12734) | def evalParmTuple(self, parm_path: str) -> ParmTupleReturnType: method addEventCallback (line 12743) | def addEventCallback(self, event_types: Sequence[EnumValue], callback:... method addParmCallback (line 12810) | def addParmCallback(self, callback: Callable[[OpNode, ParmTuple], None... method removeEventCallback (line 12834) | def removeEventCallback(self, event_types: Sequence[EnumValue], callba... method eventCallbacks (line 12852) | def eventCallbacks(self) -> Tuple[Tuple[Tuple[EnumValue,...], Callable... method appendParmTemplatesFromData (line 12855) | def appendParmTemplatesFromData(self, data: dict[str, Any], rename_con... method appendParmTemplatesToFolderFromData (line 12856) | def appendParmTemplatesToFolderFromData(self, data: dict[str, Any], pa... method asData (line 12857) | def asData(self, nodes_only: bool = False, children: bool = False, edi... method children (line 12858) | def children(self) -> Tuple[OpNode, ...]: ... method childrenAsData (line 12859) | def childrenAsData(self, nodes_only: bool = False, children: bool = Tr... method createDecorationItemsFromData (line 12860) | def createDecorationItemsFromData(self, items: Sequence[NetworkMovable... method createNode (line 12861) | def createNode(self, node_type_name: str, node_name: str | None = None... method editablesAsData (line 12862) | def editablesAsData(self, nodes_only: bool = False, children: bool = T... method inputConnections (line 12863) | def inputConnections(self) -> Tuple[OpNodeConnection, ...]: ... method inputsAsData (line 12864) | def inputsAsData(self, ignore_network_dots: bool = False, ignore_subne... method insertParmTemplatesAfterFromData (line 12865) | def insertParmTemplatesAfterFromData(self, data: dict[str, Any], parm_... method insertParmTemplatesBeforeFromData (line 12866) | def insertParmTemplatesBeforeFromData(self, data: dict[str, Any], parm... method node (line 12867) | def node(self, node_path: str) -> OpNode | None: ... method outputConnections (line 12868) | def outputConnections(self) -> Tuple[OpNodeConnection, ...]: ... method outputsAsData (line 12869) | def outputsAsData(self, ignore_network_dots: bool = False, ignore_subn... method parmTemplateChildrenAsData (line 12870) | def parmTemplateChildrenAsData(self, name: str= '', parmtemplate_order... method parmTemplatesAsData (line 12871) | def parmTemplatesAsData(self, name: str= '', children: bool = True, pa... method parmsAsData (line 12872) | def parmsAsData(self, values: bool = True, parms: bool = True, default... method prependParmTemplatesToFolderFromData (line 12873) | def prependParmTemplatesToFolderFromData(self, data: dict[str, Any], p... method replaceParmTemplatesFromData (line 12874) | def replaceParmTemplatesFromData(self, data: dict[str, Any]) -> dict[s... method setChildrenFromData (line 12875) | def setChildrenFromData(self, clear_content: bool = True, force_item_c... method setEditablesFromData (line 12876) | def setEditablesFromData(self, clear_content: bool = True, force_item_... method setFromData (line 12877) | def setFromData(self, data: dict[str, Any], clear_content: bool = Fals... method setInputsFromData (line 12878) | def setInputsFromData(self, data: dict[str, Any]) -> None: ... method setOutputsFromData (line 12879) | def setOutputsFromData(self, data: dict[str, Any]) -> None: ... method setParmExpressions (line 12880) | def setParmExpressions(self, parm_dict: Mapping[str, str | Sequence[st... method setParms (line 12881) | def setParms(self, parm_dict: Mapping[str, ParmArgType | ParmTupleArgT... method setParmsFromData (line 12882) | def setParmsFromData(self, data: dict[str, Any]) -> None: ... method type (line 12883) | def type(self) -> OpNodeType: ... class OpVerb (line 12885) | class OpVerb: method __init__ (line 12897) | def __init__(self, *args, **kwargs) -> None: ... method loadParmsFromNode (line 12899) | def loadParmsFromNode(self, opnode: OpNode) -> None: method loadParmsFromNodeAtTime (line 12910) | def loadParmsFromNodeAtTime(self, opnode: OpNode, time: float) -> None... method parms (line 12911) | def parms(self) -> dict[str, OptionType]: method setParms (line 12924) | def setParms(self, p: Mapping[str, OptionMultiArgType|Sequence[Mapping... method minNumInputs (line 12938) | def minNumInputs(self) -> int: class NodeGroup (line 12949) | class NodeGroup: method __init__ (line 12968) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 12970) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 12971) | def __ne__(self, other: object) -> bool: ... method name (line 12972) | def name(self) -> str: method nodes (line 12981) | def nodes(self) -> Tuple[Node, ...]: method parent (line 12990) | def parent(self) -> Node: method addNode (line 12999) | def addNode(self, node: Node) -> None: method removeNode (line 13012) | def removeNode(self, node: Node) -> None: method clear (line 13023) | def clear(self) -> None: method destroy (line 13032) | def destroy(self) -> None: method asCode (line 13042) | def asCode(self, save_creation_commands: bool = True, save_node_member... class ObjNode (line 13063) | class ObjNode(OpNode): method __init__ (line 13094) | def __init__(self, *args, **kwargs) -> None: ... method origin (line 13096) | def origin(self) -> Vector3: method localTransform (line 13126) | def localTransform(self) -> Matrix4: method localTransformAtTime (line 13153) | def localTransformAtTime(self, time: float) -> Matrix4: method worldTransform (line 13168) | def worldTransform(self) -> Matrix4: method worldTransformAtTime (line 13194) | def worldTransformAtTime(self, time: float) -> Matrix4: method setWorldTransform (line 13209) | def setWorldTransform(self, matrix: Matrix4, fail_on_locked_parms: boo... method setCookTransform (line 13283) | def setCookTransform(self, matrix: Matrix4) -> None: method parmTransform (line 13305) | def parmTransform(self) -> Matrix4: method setParmTransform (line 13342) | def setParmTransform(self, matrix: Matrix4, fail_on_locked_parms: bool... method parmPivotTransform (line 13383) | def parmPivotTransform(self) -> Matrix4: method setParmPivotTransform (line 13405) | def setParmPivotTransform(self, matrix: Matrix4, fail_on_locked_parms:... method preTransform (line 13442) | def preTransform(self) -> Matrix4: method setPreTransform (line 13460) | def setPreTransform(self, matrix: Matrix4) -> None: method movePreTransformIntoParmTransform (line 13470) | def movePreTransformIntoParmTransform(self) -> None: method moveParmTransformIntoPreTransform (line 13488) | def moveParmTransformIntoPreTransform(self) -> None: method moveParmTranslateIntoPreTransform (line 13509) | def moveParmTranslateIntoPreTransform(self) -> None: method moveParmRotateIntoPreTransform (line 13521) | def moveParmRotateIntoPreTransform(self) -> None: method moveParmScaleIntoPreTransform (line 13562) | def moveParmScaleIntoPreTransform(self) -> None: method parentAndSubnetTransform (line 13574) | def parentAndSubnetTransform(self) -> Matrix4: method getTransformToNode (line 13597) | def getTransformToNode(self, obj_node: ObjNode) -> Matrix4: method getTransformFromPointToPoint (line 13622) | def getTransformFromPointToPoint(self, pos3: Vector3, other_node: ObjN... method buildLookatRotation (line 13647) | def buildLookatRotation(self, to_node: ObjNode, up_vector: Optional[Ve... method isObjectDisplayed (line 13675) | def isObjectDisplayed(self) -> bool: method isObjectDisplayedAtFrame (line 13690) | def isObjectDisplayedAtFrame(self, frame: float) -> bool: method isDisplayFlagSet (line 13705) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 13719) | def setDisplayFlag(self, on: bool) -> None: method isSelectableInViewport (line 13729) | def isSelectableInViewport(self) -> bool: method setSelectableInViewport (line 13740) | def setSelectableInViewport(self, on: bool) -> None: method isShowingOrigin (line 13750) | def isShowingOrigin(self) -> bool: method showOrigin (line 13762) | def showOrigin(self, on: bool) -> None: method isUsingXray (line 13772) | def isUsingXray(self) -> bool: method useXray (line 13785) | def useXray(self, on: bool) -> None: method displayNode (line 13795) | def displayNode(self) -> Optional[Node]: method renderNode (line 13805) | def renderNode(self) -> Optional[Node]: method combine (line 13815) | def combine(self, nodes: Sequence[Node]) -> None: method material (line 13830) | def material(self, operation: Literal['override','select','remove','rm... class Prim (line 13886) | class Prim: method __init__ (line 13902) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 13904) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 13905) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 13906) | def __hash__(self) -> int: ... method geometry (line 13907) | def geometry(self) -> Geometry: method number (line 13916) | def number(self) -> int: method type (line 13927) | def type(self) -> EnumValue: method attribType (line 13937) | def attribType(self) -> EnumValue: method vertices (line 13958) | def vertices(self) -> Iterator[Vertex]: method numVertices (line 13977) | def numVertices(self) -> int: method edges (line 13987) | def edges(self) -> Tuple[Edge, ...]: ... method numEdges (line 13988) | def numEdges(self) -> int: ... method floatAttribValue (line 13989) | def floatAttribValue(self, attrib: Attrib|str) -> float: method floatListAttribValue (line 14007) | def floatListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[fl... method intAttribValue (line 14023) | def intAttribValue(self, attrib: Attrib|str) -> int: method intListAttribValue (line 14035) | def intListAttribValue(self, name_or_attrib: Attrib|str) -> Tuple[int,... method stringAttribValue (line 14047) | def stringAttribValue(self, attrib: Attrib|str) -> str: method stringListAttribValue (line 14058) | def stringListAttribValue(self, name_or_attrib: Attrib|str) -> Tuple[s... method dictAttribValue (line 14074) | def dictAttribValue(self, attrib: Attrib|str) -> AttribDictReturnType: method dictListAttribValue (line 14085) | def dictListAttribValue(self, name_or_attrib: Attrib|str) -> Sequence[... method setAttribValue (line 14100) | def setAttribValue(self, name_or_attrib: Attrib|str, attrib_value: Att... method intrinsicNames (line 14138) | def intrinsicNames(self) -> Tuple[str, ...]: method intrinsicValue (line 14151) | def intrinsicValue(self, intrinsic_name: str) -> AttribReturnType: method intrinsicSize (line 14177) | def intrinsicSize(self, intrinsic_name: str) -> int: method intrinsicReadOnly (line 14186) | def intrinsicReadOnly(self, intrinsic_name: str) -> bool: method setIntrinsicValue (line 14196) | def setIntrinsicValue(self, intrinsic_name: str, value: AttribArgType)... method attribValue (line 14210) | def attribValue(self, attrib: Attrib|str) -> AttribReturnType|AttribDi... method positionAtInterior (line 14233) | def positionAtInterior(self, u: float, v: float, w: float = 0.0) -> Ve... method attribValueAtInterior (line 14245) | def attribValueAtInterior(self, attrib: Attrib|str, u: float, v: float... method boundingBox (line 14266) | def boundingBox(self) -> BoundingBox: method nearestToPosition (line 14276) | def nearestToPosition(self, position: Sequence[float]) -> Tuple[float,... method groups (line 14291) | def groups(self) -> Tuple[PrimGroup, ...]: method primuvConvert (line 14300) | def primuvConvert(self, uv: Sequence[float]|Vector2, mode: int, tol: f... method primuConvert (line 14311) | def primuConvert(self, u: float, mode: int, tol: float|None = ...) -> ... method voxelRangeAsBool (line 14314) | def voxelRangeAsBool(self, range: BoundingBox) -> Tuple[bool, ...]: ... method voxelRangeAsInt (line 14315) | def voxelRangeAsInt(self, range: BoundingBox) -> Tuple[int, ...]: ... method voxelRangeAsFloat (line 14316) | def voxelRangeAsFloat(self, range: BoundingBox) -> Tuple[float, ...]: ... method voxelRangeAsVector3 (line 14317) | def voxelRangeAsVector3(self, range: BoundingBox) -> Sequence[Vector3]... class Face (line 14319) | class Face(Prim): method __init__ (line 14337) | def __init__(self, *args, **kwargs) -> None: ... method isClosed (line 14339) | def isClosed(self) -> bool: method closed (line 14352) | def closed(self) -> bool: method setIsClosed (line 14361) | def setIsClosed(self, on: bool) -> None: method normal (line 14378) | def normal(self) -> Vector3: method positionAt (line 14387) | def positionAt(self, u: float) -> Vector3: method attribValueAt (line 14397) | def attribValueAt(self, attrib_or_name: Attrib|str, u: float, du: floa... method vertex (line 14412) | def vertex(self, index: int) -> Vertex: method addVertex (line 14426) | def addVertex(self, point: Point) -> Vertex: method arcLength (line 14470) | def arcLength(self, u_start: float, u_stop: float, divs: int = 10) -> ... class PackedPrim (line 14483) | class PackedPrim(Prim): method __init__ (line 14511) | def __init__(self, *args, **kwargs) -> None: ... method transform (line 14513) | def transform(self) -> Matrix3: method fullTransform (line 14525) | def fullTransform(self) -> Matrix4: method setTransform (line 14536) | def setTransform(self, transform: Matrix4) -> None: method vertex (line 14555) | def vertex(self, index: int) -> Vertex: class BaseKeyframe (line 14570) | class BaseKeyframe: method __init__ (line 14580) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 14582) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 14583) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 14584) | def __hash__(self) -> int: ... method evaluatedType (line 14585) | def evaluatedType(self) -> EnumValue: method setExpression (line 14594) | def setExpression(self, expression: str, language: Optional[EnumValue]... method expression (line 14609) | def expression(self) -> str: method isExpressionSet (line 14625) | def isExpressionSet(self) -> bool: method expressionLanguage (line 14636) | def expressionLanguage(self) -> EnumValue: method isExpressionLanguageSet (line 14650) | def isExpressionLanguageSet(self) -> bool: method setTime (line 14661) | def setTime(self, time: float) -> None: method isTimeSet (line 14675) | def isTimeSet(self) -> bool: method time (line 14686) | def time(self) -> float: method setFrame (line 14700) | def setFrame(self, frame: float) -> None: method frame (line 14714) | def frame(self) -> float: method asCode (line 14728) | def asCode(self, brief: bool = False, save_keys_in_frames: bool = Fals... class ChannelGraphSelection (line 14803) | class ChannelGraphSelection: method __init__ (line 14813) | def __init__(self, path: str|None = ..., flags: Sequence[int] = ...) -... method __eq__ (line 14823) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 14824) | def __ne__(self, other: object) -> bool: ... method parm (line 14825) | def parm(self) -> Parm: method path (line 14835) | def path(self) -> str: ... method keyframes (line 14836) | def keyframes(self) -> Tuple[BaseKeyframe, ...]: method flags (line 14846) | def flags(self) -> Tuple[int, ...]: method setFlags (line 14855) | def setFlags(self, flags: Sequence[int]) -> None: ... method values (line 14856) | def values(self) -> Tuple[int, ...]: method timeMarks (line 14865) | def timeMarks(self) -> Tuple[int, ...]: method slopes (line 14875) | def slopes(self) -> Tuple[int, ...]: method accelerations (line 14884) | def accelerations(self) -> Tuple[int, ...]: method segments (line 14894) | def segments(self) -> Tuple[int, ...]: method inValues (line 14904) | def inValues(self) -> Tuple[int, ...]: method inSlopes (line 14914) | def inSlopes(self) -> Tuple[int, ...]: method inAccelerations (line 14924) | def inAccelerations(self) -> Tuple[int, ...]: method outValues (line 14934) | def outValues(self) -> Tuple[int, ...]: method outSlopes (line 14944) | def outSlopes(self) -> Tuple[int, ...]: method outAccelerations (line 14954) | def outAccelerations(self) -> Tuple[int, ...]: method selectValues (line 14964) | def selectValues(self, sel: Sequence[int], _in: bool = True, out: bool... method selectTimeMarks (line 14973) | def selectTimeMarks(self, sel: Sequence[int]) -> None: method selectSlopes (line 14982) | def selectSlopes(self, sel: Sequence[int], _in: bool = True, out: bool... method selectAccelerations (line 14991) | def selectAccelerations(self, sel: Sequence[int], _in: bool = True, ou... method selectSegments (line 15000) | def selectSegments(self, sel: Sequence[int]) -> None: method deselectValues (line 15009) | def deselectValues(self, sel: Sequence[int], _in: bool = True, out: bo... method deselectTimeMarks (line 15018) | def deselectTimeMarks(self, sel: Sequence[int]) -> None: method deselectSlopes (line 15027) | def deselectSlopes(self, sel: Sequence[int], _in: bool = True, out: bo... method deselectAccelerations (line 15036) | def deselectAccelerations(self, sel: Sequence[int], _in: bool = True, ... method deselectSegments (line 15045) | def deselectSegments(self, sel: Sequence[int]) -> None: class NodeType (line 15055) | class NodeType: method __init__ (line 15083) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 15085) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 15086) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 15087) | def __hash__(self) -> int: ... method category (line 15088) | def category(self) -> NodeTypeCategory: method name (line 15099) | def name(self) -> str: method nameComponents (line 15110) | def nameComponents(self) -> Tuple[str, ...]: method description (line 15126) | def description(self) -> str: method nameWithCategory (line 15138) | def nameWithCategory(self) -> str: method namespaceOrder (line 15152) | def namespaceOrder(self) -> Tuple[str, ...]: method versionNamespaceOrder (line 15179) | def versionNamespaceOrder(self) -> Tuple[str, ...]: method icon (line 15202) | def icon(self) -> str: method resolvedIcon (line 15213) | def resolvedIcon(self) -> str: method minNumInputs (line 15224) | def minNumInputs(self) -> int: method maxNumInputs (line 15235) | def maxNumInputs(self) -> int: method maxNumOutputs (line 15246) | def maxNumOutputs(self) -> int: method isGenerator (line 15257) | def isGenerator(self) -> bool: method isManager (line 15269) | def isManager(self, include_management_types: bool = True) -> bool: method hasUnorderedInputs (line 15283) | def hasUnorderedInputs(self) -> bool: method hasEditableInputData (line 15299) | def hasEditableInputData(self) -> bool: method parmTemplates (line 15312) | def parmTemplates(self) -> Tuple[ParmTemplate, ...]: method parmTemplateGroup (line 15324) | def parmTemplateGroup(self) -> ParmTemplateGroup: method hasPermanentUserDefaults (line 15338) | def hasPermanentUserDefaults(self) -> bool: method isReadable (line 15350) | def isReadable(self) -> bool: method isWritable (line 15360) | def isWritable(self) -> bool: method areContentsViewable (line 15370) | def areContentsViewable(self) -> bool: ... method containedNodeTypes (line 15371) | def containedNodeTypes(self) -> Tuple[str, ...]: method childTypeCategory (line 15380) | def childTypeCategory(self) -> Optional[NodeTypeCategory]: ... method helpUrl (line 15381) | def helpUrl(self) -> str: method defaultHelpUrl (line 15392) | def defaultHelpUrl(self) -> str: method embeddedHelp (line 15404) | def embeddedHelp(self) -> str: method defaultShape (line 15423) | def defaultShape(self) -> str: method setDefaultShape (line 15433) | def setDefaultShape(self, shape: str) -> None: method defaultColor (line 15444) | def defaultColor(self) -> Color: method setDefaultColor (line 15454) | def setDefaultColor(self, color: Color) -> None: class ApexNodeType (line 15466) | class ApexNodeType(NodeType): method __init__ (line 15479) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 15481) | def __hash__(self) -> int: ... method hidden (line 15482) | def hidden(self) -> bool: method deprecated (line 15491) | def deprecated(self) -> bool: method definition (line 15500) | def definition(self) -> Optional[HDADefinition]: class OpNodeType (line 15511) | class OpNodeType(NodeType): method __init__ (line 15531) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 15533) | def __hash__(self) -> int: ... method sectionData (line 15534) | def sectionData(self, name: str) -> str: method binarySectionData (line 15546) | def binarySectionData(self, name: str) -> bytes: method hasSectionData (line 15561) | def hasSectionData(self, name: str) -> bool: method source (line 15571) | def source(self) -> EnumValue: method sourcePath (line 15588) | def sourcePath(self) -> str: method sourceNetwork (line 15604) | def sourceNetwork(self) -> Optional[Node]: method definition (line 15614) | def definition(self) -> Optional[HDADefinition]: method allInstalledDefinitions (line 15624) | def allInstalledDefinitions(self) -> Tuple[HDADefinition, ...]: method uninstallFromPath (line 15640) | def uninstallFromPath(self, path: str) -> None: ... method hdaModule (line 15641) | def hdaModule(self) -> Optional[HDAModule]: method hdaViewerStateModule (line 15658) | def hdaViewerStateModule(self) -> Optional[HDAViewerStateModule]: method hdaViewerHandleModule (line 15671) | def hdaViewerHandleModule(self) -> Optional[HDAViewerHandleModule]: method aliases (line 15684) | def aliases(self) -> Tuple[str, ...]: method addAlias (line 15694) | def addAlias(self, alias: str) -> None: method removeAlias (line 15710) | def removeAlias(self, alias: str) -> None: method hidden (line 15719) | def hidden(self) -> bool: method setHidden (line 15729) | def setHidden(self, hidden: bool) -> None: method deprecated (line 15739) | def deprecated(self) -> bool: method deprecationInfo (line 15749) | def deprecationInfo(self) -> dict[str, str|Self]: method instances (line 15775) | def instances(self) -> Tuple[OpNode, ...]: method defaultState (line 15784) | def defaultState(self) -> str: method boundHandles (line 15795) | def boundHandles(self) -> dict[str, str]: method handleBindings (line 15806) | def handleBindings(self, bound_handle: str) -> dict[str, str]: method generatorFlag (line 15819) | def generatorFlag(self) -> bool: ... method managerFlag (line 15820) | def managerFlag(self) -> bool: ... method unorderedInputsFlag (line 15821) | def unorderedInputsFlag(self) -> bool: ... method category (line 15824) | def category(self) -> OpNodeTypeCategory: ... class NodeTypeCategory (line 15826) | class NodeTypeCategory: method __init__ (line 15881) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 15883) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 15884) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 15885) | def __hash__(self) -> int: ... method name (line 15886) | def name(self) -> str: method typeName (line 15895) | def typeName(self) -> str: ... method label (line 15896) | def label(self) -> str: method nodeTypes (line 15906) | def nodeTypes(self) -> dict[str, NodeType]: method nodeType (line 15937) | def nodeType(self, type_name: str) -> Optional[NodeType]: method hasSubNetworkType (line 15948) | def hasSubNetworkType(self) -> bool: method subNetworkType (line 15962) | def subNetworkType(self) -> Optional[NodeType]: method defaultShape (line 15972) | def defaultShape(self) -> str: ... method clearDefaultShapes (line 15973) | def clearDefaultShapes(self) -> None: ... method setDefaultShape (line 15974) | def setDefaultShape(self, shape: str) -> None: ... method defaultColor (line 15975) | def defaultColor(self) -> Color: ... method clearDefaultColors (line 15976) | def clearDefaultColors(self) -> None: ... method setDefaultColor (line 15977) | def setDefaultColor(self, color: Color) -> None: ... method defaultWireStyle (line 15978) | def defaultWireStyle(self) -> str: ... method setDefaultWireStyle (line 15979) | def setDefaultWireStyle(self, wirestyle: str) -> None: ... class ApexNodeTypeCategory (line 15981) | class ApexNodeTypeCategory(NodeTypeCategory): method __init__ (line 15997) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 15999) | def __hash__(self) -> int: ... class OpNodeTypeCategory (line 16001) | class OpNodeTypeCategory(NodeTypeCategory): method __init__ (line 16051) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 16053) | def __hash__(self) -> int: ... method __eq__ (line 16054) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 16055) | def __ne__(self, other: object) -> bool: ... method createDigitalAsset (line 16056) | def createDigitalAsset(self, name: Optional[str] = None, hda_file_name... method nodeVerbs (line 16082) | def nodeVerbs(self) -> dict[str, OpVerb]: method nodeVerb (line 16095) | def nodeVerb(self, verb_name: str) -> Optional[OpVerb]: method viewerStates (line 16105) | def viewerStates(self, viewer_type: EnumValue) -> Tuple[ViewerState, .... method loadDSO (line 16112) | def loadDSO(self, dso_path: str) -> None: method nodeTypes (line 16125) | def nodeTypes(self) -> dict[str, OpNodeType]: ... # type: ignore[over... method nodeType (line 16126) | def nodeType(self, type_name: str) -> Optional[OpNodeType]: ... class ParmTemplate (line 16128) | class ParmTemplate: method __init__ (line 16180) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 16182) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 16183) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 16184) | def __hash__(self) -> int: ... method clone (line 16185) | def clone(self) -> ParmTemplate: method name (line 16197) | def name(self) -> str: method setName (line 16217) | def setName(self, name: str) -> None: method label (line 16233) | def label(self) -> str: method setLabel (line 16243) | def setLabel(self, label: str) -> None: method type (line 16253) | def type(self) -> EnumValue: method dataType (line 16304) | def dataType(self) -> EnumValue: method look (line 16319) | def look(self) -> EnumValue: method setLook (line 16332) | def setLook(self, look: EnumValue) -> None: method namingScheme (line 16343) | def namingScheme(self) -> EnumValue: method setNamingScheme (line 16364) | def setNamingScheme(self, naming_scheme: EnumValue) -> None: method numComponents (line 16376) | def numComponents(self) -> int: method setNumComponents (line 16391) | def setNumComponents(self, num_components: int) -> None: method disableWhen (line 16407) | def disableWhen(self) -> str: method setDisableWhen (line 16416) | def setDisableWhen(self, disable_when: str) -> None: method conditionals (line 16425) | def conditionals(self) -> dict[EnumValue, str]: method setConditional (line 16437) | def setConditional(self, cond_type: EnumValue, conditional: str) -> None: method isHidden (line 16451) | def isHidden(self) -> bool: method hide (line 16460) | def hide(self, on: bool) -> None: method isLabelHidden (line 16473) | def isLabelHidden(self) -> bool: method hideLabel (line 16483) | def hideLabel(self, on: bool) -> None: method joinsWithNext (line 16492) | def joinsWithNext(self) -> bool: method setJoinWithNext (line 16502) | def setJoinWithNext(self, on: bool) -> None: method joinWithNext (line 16512) | def joinWithNext(self) -> bool: method help (line 16521) | def help(self) -> str: method setHelp (line 16531) | def setHelp(self, help: str) -> None: method scriptCallback (line 16541) | def scriptCallback(self) -> str: method setScriptCallback (line 16556) | def setScriptCallback(self, script_callback: str) -> None: method scriptCallbackLanguage (line 16568) | def scriptCallbackLanguage(self) -> EnumValue: method setScriptCallbackLanguage (line 16583) | def setScriptCallbackLanguage(self, script_callback_language: EnumValu... method tags (line 16594) | def tags(self) -> dict[str, str]: method setTags (line 16607) | def setTags(self, tags: Mapping[str, str]) -> None: method asCode (line 16618) | def asCode(self, function_name: Optional[str] = None, variable_name: O... class ParmTemplateGroup (line 16686) | class ParmTemplateGroup: method __init__ (line 16770) | def __init__(self, parm_templates: Sequence[ParmTemplate] = ...) -> None: method __eq__ (line 16810) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 16811) | def __ne__(self, other: object) -> bool: ... method find (line 16812) | def find(self, name: str) -> Optional[ParmTemplate]: method findIndices (line 16846) | def findIndices(self, name_or_parm_template: ParmTemplate|str) -> Tupl... method findFolder (line 16871) | def findFolder(self, label_or_labels: str|Sequence[str]) -> ParmTempla... method findIndicesForFolder (line 16894) | def findIndicesForFolder(self, name_or_parm_template: ParmTemplate|str... method entryAtIndices (line 16911) | def entryAtIndices(self, indices: Sequence[int]) -> ParmTemplate: method containingFolderIndices (line 16942) | def containingFolderIndices(self, name_or_parm_template_or_indices: st... method containingFolder (line 16959) | def containingFolder(self, name_or_parm_template: str|ParmTemplate) ->... method entries (line 16977) | def entries(self) -> Tuple[ParmTemplate, ...]: method parmTemplates (line 17010) | def parmTemplates(self) -> Tuple[ParmTemplate, ...]: method entriesWithoutFolders (line 17031) | def entriesWithoutFolders(self) -> Tuple[ParmTemplate, ...]: method replace (line 17051) | def replace(self, name_or_parm_template_or_indices: str|ParmTemplate|S... method insertBefore (line 17082) | def insertBefore(self, name_or_parm_template_or_indices: str|ParmTempl... method insertAfter (line 17098) | def insertAfter(self, name_or_parm_template_or_indices: str|ParmTempla... method append (line 17114) | def append(self, parm_template: ParmTemplate) -> None: method appendToFolder (line 17126) | def appendToFolder(self, label_or_labels_or_parm_template_or_indices: ... method addParmTemplate (line 17151) | def addParmTemplate(self, parm_template: ParmTemplate) -> None: method remove (line 17164) | def remove(self, name_or_parm_template_or_indices: str|ParmTemplate|Se... method hide (line 17179) | def hide(self, name_or_parm_template_or_indices: str|ParmTemplate|Sequ... method hideFolder (line 17201) | def hideFolder(self, label_or_labels: str|Sequence[str], on: bool) -> ... method isHidden (line 17237) | def isHidden(self, name_or_parm_template_or_indices: str|ParmTemplate|... method isFolderHidden (line 17255) | def isFolderHidden(self, label_or_labels: str|Sequence[str]) -> bool: method clear (line 17275) | def clear(self) -> None: method asDialogScript (line 17284) | def asDialogScript(self, rename_conflicting_parms: bool = ..., full_in... method setToDialogScript (line 17315) | def setToDialogScript(self, dialog_script: str) -> None: method asCode (line 17328) | def asCode(self, function_name: Optional[str] = None, variable_name: O... method sourceNode (line 17345) | def sourceNode(self) -> Optional[Node]: method sourceNodeType (line 17357) | def sourceNodeType(self) -> Optional[NodeType]: method name (line 17371) | def name(self) -> str: method setName (line 17382) | def setName(self, name: str) -> None: method label (line 17393) | def label(self) -> str: method setLabel (line 17404) | def setLabel(self, label: str) -> None: class Pane (line 17417) | class Pane: method __init__ (line 17434) | def __init__(self, *args, **kwargs) -> None: ... method desktop (line 17436) | def desktop(self) -> Optional[Desktop]: method id (line 17446) | def id(self) -> int: ... method isMaximized (line 17447) | def isMaximized(self) -> bool: method floatingPanel (line 17456) | def floatingPanel(self) -> Optional[FloatingPanel]: ... method setIsMaximized (line 17457) | def setIsMaximized(self, on: bool) -> None: method tabs (line 17466) | def tabs(self) -> Tuple[PaneTab, ...]: method createTab (line 17475) | def createTab(self, type: EnumValue, python_panel_interface: Optional[... method currentTab (line 17499) | def currentTab(self) -> PaneTab: method tabOfType (line 17510) | def tabOfType(self, type: EnumValue, index: int = 0) -> Optional[PaneT... method splitHorizontally (line 17527) | def splitHorizontally(self) -> Pane: method splitVertically (line 17540) | def splitVertically(self) -> Pane: method getSplitParent (line 17553) | def getSplitParent(self) -> Optional[Pane]: method getSplitChild (line 17562) | def getSplitChild(self, child: int) -> Optional[Pane]: method splitSwap (line 17571) | def splitSwap(self) -> None: method splitRotate (line 17581) | def splitRotate(self) -> None: method isSplitMaximized (line 17590) | def isSplitMaximized(self) -> bool: method isSplitMinimized (line 17601) | def isSplitMinimized(self) -> bool: method setIsSplitMaximized (line 17612) | def setIsSplitMaximized(self, on: bool) -> None: method isSplit (line 17621) | def isSplit(self) -> bool: method setSplitFraction (line 17630) | def setSplitFraction(self, value: float) -> None: method getSplitFraction (line 17639) | def getSplitFraction(self) -> float: method setSplitDirection (line 17648) | def setSplitDirection(self, dir: int) -> None: method getSplitDirection (line 17657) | def getSplitDirection(self) -> int: method setShowPaneTabs (line 17666) | def setShowPaneTabs(self, value: bool) -> None: method showPaneTabs (line 17677) | def showPaneTabs(self, value: bool) -> None: method isShowingPaneTabs (line 17686) | def isShowingPaneTabs(self) -> bool: method showPaneTabsStow (line 17695) | def showPaneTabsStow(self, value: bool) -> None: method isShowingPaneTabsStow (line 17705) | def isShowingPaneTabsStow(self) -> bool: class PaneTab (line 17716) | class PaneTab: method __init__ (line 17732) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 17734) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 17735) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 17736) | def __hash__(self) -> int: ... method pane (line 17737) | def pane(self) -> Optional[Pane]: method floatingPanel (line 17753) | def floatingPanel(self) -> Optional[FloatingPanel]: method name (line 17763) | def name(self) -> str: method setName (line 17772) | def setName(self, name: str) -> None: method isCurrentTab (line 17784) | def isCurrentTab(self) -> bool: method setIsCurrentTab (line 17793) | def setIsCurrentTab(self) -> None: method isFloating (line 17802) | def isFloating(self) -> bool: method clone (line 17815) | def clone(self) -> PaneTab: method close (line 17825) | def close(self) -> None: method type (line 17834) | def type(self) -> EnumValue: method setType (line 17844) | def setType(self, type: EnumValue) -> PaneTab: method linkGroup (line 17855) | def linkGroup(self) -> EnumValue: method setLinkGroup (line 17866) | def setLinkGroup(self, group: EnumValue) -> None: method isPin (line 17875) | def isPin(self) -> bool: method setPin (line 17887) | def setPin(self, pin: bool) -> None: method tools (line 17907) | def tools(self) -> Tuple[Tool, ...]: method size (line 17917) | def size(self) -> Tuple[int, ...]: method contentSize (line 17930) | def contentSize(self) -> Tuple[int, ...]: ... method hasNetworkControls (line 17931) | def hasNetworkControls(self) -> bool: method isShowingNetworkControls (line 17940) | def isShowingNetworkControls(self) -> bool: method setShowNetworkControls (line 17951) | def setShowNetworkControls(self, value: bool) -> None: method showNetworkControls (line 17964) | def showNetworkControls(self, value: bool) -> None: method displayRadialMenu (line 17975) | def displayRadialMenu(self, menu: str|RadialScriptItem) -> None: class PathBasedPaneTab (line 17991) | class PathBasedPaneTab(PaneTab): method __init__ (line 17998) | def __init__(self, *args, **kwargs) -> None: ... method pwd (line 18000) | def pwd(self) -> Node: method setPwd (line 18007) | def setPwd(self, node: Node) -> None: method cd (line 18014) | def cd(self, path: str) -> None: method currentNode (line 18021) | def currentNode(self) -> Node: method setCurrentNode (line 18028) | def setCurrentNode(self, node: Node, pick_node: bool = True) -> None: class DopData (line 18036) | class DopData: method __init__ (line 18077) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 18079) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 18080) | def __ne__(self, other: object) -> bool: ... method freeze (line 18081) | def freeze(self) -> DopData: method isFrozen (line 18095) | def isFrozen(self) -> bool: method path (line 18106) | def path(self) -> str: method selectionPath (line 18126) | def selectionPath(self) -> str: method __hash__ (line 18141) | def __hash__(self) -> int: ... method dopNetNode (line 18142) | def dopNetNode(self) -> OpNode: method simulation (line 18151) | def simulation(self) -> DopSimulation: method creator (line 18161) | def creator(self) -> OpNode: method id (line 18171) | def id(self) -> str: method dataType (line 18188) | def dataType(self) -> str: method recordTypes (line 18203) | def recordTypes(self) -> Tuple[str, ...]: method record (line 18214) | def record(self, record_type: str, record_index: int = 0) -> Optional[... method records (line 18232) | def records(self, record_type: str) -> Iterator[DopRecord]: method options (line 18252) | def options(self) -> DopRecord: method subData (line 18262) | def subData(self) -> dict[str, DopData]: method findSubData (line 18291) | def findSubData(self, data_spec: str) -> Optional[DopData]: method findAllSubData (line 18313) | def findAllSubData(self, data_spec: str, recurse: bool = False) -> dic... method createSubData (line 18335) | def createSubData(self, data_name: str, data_type: str = ..., avoid_na... method attachSubData (line 18372) | def attachSubData(self, hom_new_subdata: DopData, new_data_name: str, ... method removeSubData (line 18406) | def removeSubData(self, data_spec: str) -> None: method copyContentsFrom (line 18418) | def copyContentsFrom(self, hom_data: DopData) -> None: method fieldGeometry (line 18440) | def fieldGeometry(self, data_name: str) -> Optional[Geometry]: ... method geometry (line 18441) | def geometry(self, data_name: Optional[str] = None) -> Optional[Geomet... method editableGeometry (line 18442) | def editableGeometry(self, data_name: Optional[str] = None) -> Optiona... class ShelfElement (line 18444) | class ShelfElement: method __init__ (line 18454) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 18456) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 18457) | def __ne__(self, other: object) -> bool: ... method filePath (line 18458) | def filePath(self) -> str: method setFilePath (line 18467) | def setFilePath(self, file_path: str|None) -> None: method name (line 18476) | def name(self) -> str: method setName (line 18489) | def setName(self, name: str) -> None: method label (line 18507) | def label(self) -> str: method setLabel (line 18516) | def setLabel(self, label: str) -> None: method fileLocation (line 18526) | def fileLocation(self) -> str: method isReadOnly (line 18537) | def isReadOnly(self) -> bool: method setReadOnly (line 18546) | def setReadOnly(self, on: bool) -> None: class _logging_Sink (line 18560) | class _logging_Sink: method __init__ (line 18573) | def __init__(self, *args, **kwargs) -> None: ... method connectedSources (line 18575) | def connectedSources(self) -> Tuple[str, ...]: method connect (line 18584) | def connect(self, source_name: str) -> None: method disconnect (line 18594) | def disconnect(self, source_name: str) -> None: method setFilterCallback (line 18604) | def setFilterCallback(self, callback: Callable[[_logging_LogEntry], No... class Agent (line 18618) | class Agent(PackedPrim): method __init__ (line 18630) | def __init__(self, *args, **kwargs) -> None: ... method definition (line 18632) | def definition(self) -> AgentDefinition: method setDefinition (line 18641) | def setDefinition(self, definition: AgentDefinition) -> None: method currentLayer (line 18660) | def currentLayer(self) -> AgentLayer: method setCurrentLayer (line 18673) | def setCurrentLayer(self, layer: AgentLayer) -> None: method collisionLayer (line 18691) | def collisionLayer(self) -> AgentLayer: method setCollisionLayer (line 18704) | def setCollisionLayer(self, layer: AgentLayer) -> None: method currentLayers (line 18722) | def currentLayers(self) -> Tuple[AgentLayer, ...]: method setCurrentLayers (line 18731) | def setCurrentLayers(self, layers: Sequence[AgentLayer]) -> None: method collisionLayers (line 18747) | def collisionLayers(self) -> Tuple[AgentLayer, ...]: method setCollisionLayers (line 18756) | def setCollisionLayers(self, layers: Sequence[AgentLayer]) -> None: method clips (line 18772) | def clips(self) -> Tuple[AgentClip, ...]: method setClips (line 18781) | def setClips(self, clips: Sequence[AgentClip]) -> None: method clipTimes (line 18797) | def clipTimes(self) -> Tuple[float, ...]: method setClipTimes (line 18806) | def setClipTimes(self, times: Sequence[float]) -> None: method clipWeights (line 18822) | def clipWeights(self) -> Tuple[float, ...]: ... method setClipWeights (line 18823) | def setClipWeights(self, weights: Sequence[float]) -> None: method localTransform (line 18839) | def localTransform(self, i: int) -> Matrix4: method setLocalTransform (line 18853) | def setLocalTransform(self, xform: Matrix4, i: int) -> None: method worldTransform (line 18872) | def worldTransform(self, i: int) -> Matrix4: method setWorldTransform (line 18886) | def setWorldTransform(self, xform: Matrix4, i: int) -> None: method channelValue (line 18905) | def channelValue(self, i: int) -> float: method setChannelValue (line 18918) | def setChannelValue(self, value: float, i: int) -> None: method clipCatalog (line 18936) | def clipCatalog(self) -> AgentClip: ... method layers (line 18937) | def layers(self) -> AgentLayer: ... method rig (line 18938) | def rig(self) -> AgentRig: ... method shapeLibrary (line 18939) | def shapeLibrary(self) -> AgentShapeLibrary: ... class AgentClip (line 18941) | class AgentClip: method __init__ (line 18953) | def __init__(self, name: str, stage: pxr.Usd.Stage, prim_path: str, ri... method __eq__ (line 18981) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 18982) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 18983) | def __hash__(self) -> int: ... method freeze (line 18984) | def freeze(self) -> AgentClip: method name (line 18994) | def name(self) -> str: method fileName (line 19003) | def fileName(self, expanded: bool = False) -> str: method isLoaded (line 19018) | def isLoaded(self) -> bool: method loadFromFile (line 19028) | def loadFromFile(self) -> None: method length (line 19043) | def length(self) -> float: method startTime (line 19052) | def startTime(self) -> float: method sampleCount (line 19061) | def sampleCount(self) -> int: method sampleRate (line 19070) | def sampleRate(self) -> float: method addChannel (line 19079) | def addChannel(self, name: str, samples: Sequence[float]) -> None: method sampleLocal (line 19100) | def sampleLocal(self, time: float, transform: int) -> Matrix4: method sampleWorld (line 19117) | def sampleWorld(self, time: float, transform: int) -> Matrix4: method localTransforms (line 19134) | def localTransforms(self, sample: int) -> Tuple[Matrix4, ...]: method worldTransforms (line 19148) | def worldTransforms(self, sample: int) -> Tuple[Matrix4, ...]: method allLocalTransformValues (line 19162) | def allLocalTransformValues(self) -> Tuple[float, ...]: method setAllLocalTransformValues (line 19174) | def setAllLocalTransformValues(self, values: Sequence[float]) -> None: method setLocalTransforms (line 19193) | def setLocalTransforms(self, sample: int, xforms: typing.Iterable[Matr... method sample (line 19213) | def sample(self, time: float, channel: str) -> float: method channelNames (line 19231) | def channelNames(self) -> Tuple[str, ...]: method data (line 19241) | def data(self, binary: bool, worldspace: bool = False) -> bytes: method extractLocomotion (line 19263) | def extractLocomotion(self, cog_transform: int, cog_lookat_transform: ... class AgentDefinition (line 19298) | class AgentDefinition: method __init__ (line 19321) | def __init__(self, rig: AgentRig, shapelib: AgentShapeLibrary) -> None: method __eq__ (line 19338) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 19339) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 19340) | def __hash__(self) -> int: ... method freeze (line 19341) | def freeze(self, new_shapelib: Optional[AgentShapeLibrary] = None, new... method rig (line 19361) | def rig(self) -> AgentRig: method shapeLibrary (line 19370) | def shapeLibrary(self) -> AgentShapeLibrary: method layers (line 19379) | def layers(self) -> Iterator[AgentLayer]: method findLayer (line 19388) | def findLayer(self, name: str) -> Optional[AgentLayer]: method clips (line 19398) | def clips(self) -> Iterator[AgentClip]: method findClip (line 19407) | def findClip(self, name: str) -> Optional[AgentClip]: method transformGroups (line 19417) | def transformGroups(self) -> Iterator[AgentTransformGroup]: method findTransformGroup (line 19426) | def findTransformGroup(self, name: str) -> Optional[AgentTransformGroup]: method addClip (line 19436) | def addClip(self, clip: AgentClip) -> None: method removeClip (line 19455) | def removeClip(self, name: str) -> None: method addLayer (line 19471) | def addLayer(self, layer: AgentLayer) -> None: method removeLayer (line 19490) | def removeLayer(self, name: str) -> None: method addTransformGroup (line 19506) | def addTransformGroup(self, group: AgentTransformGroup) -> None: method removeTransformGroup (line 19525) | def removeTransformGroup(self, name: str) -> None: method metadata (line 19541) | def metadata(self) -> AgentMetadata: method setMetadata (line 19556) | def setMetadata(self, metadata: AgentMetadata) -> None: ... class AgentLayer (line 19558) | class AgentLayer: method __init__ (line 19570) | def __init__(self, name: str, rig: AgentRig, shapelib: AgentShapeLibra... method __eq__ (line 19598) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 19599) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 19600) | def __hash__(self) -> int: ... method asJSON (line 19601) | def asJSON(self) -> str: method name (line 19610) | def name(self) -> str: method fileName (line 19619) | def fileName(self, expanded: bool = False) -> str: method bindings (line 19634) | def bindings(self, transform: int|None = ...) -> Tuple[AgentShapeBindi... method staticBindings (line 19649) | def staticBindings(self) -> Tuple[AgentShapeBinding, ...]: method deformingBindings (line 19659) | def deformingBindings(self) -> Tuple[AgentShapeBinding, ...]: class AgentMetadata (line 19670) | class AgentMetadata: method __init__ (line 19687) | def __init__(self, data: Mapping[str, Any]) -> None: method __eq__ (line 19701) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 19702) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 19703) | def __hash__(self) -> int: ... method freeze (line 19704) | def freeze(self) -> AgentMetadata: method isReadOnly (line 19714) | def isReadOnly(self) -> bool: method asJSON (line 19723) | def asJSON(self) -> str: method fileName (line 19732) | def fileName(self, expanded: bool = False) -> str: method data (line 19747) | def data(self) -> dict[str, Any]: method setData (line 19756) | def setData(self, data: Mapping[str, Any]) -> None: class AgentRig (line 19771) | class AgentRig: method __init__ (line 19783) | def __init__(self, name: str, transform_names: Sequence[str], hierarch... method __eq__ (line 19811) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 19812) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 19813) | def __hash__(self) -> int: ... method freeze (line 19814) | def freeze(self) -> AgentRig: method asJSON (line 19824) | def asJSON(self) -> str: method name (line 19833) | def name(self) -> str: method fileName (line 19842) | def fileName(self, expanded: bool = False) -> str: method transformCount (line 19857) | def transformCount(self) -> int: method transformName (line 19866) | def transformName(self, i: int) -> str: method findTransform (line 19879) | def findTransform(self, transform_name: str) -> int: method parentIndex (line 19893) | def parentIndex(self, transform: int) -> int: method childIndices (line 19907) | def childIndices(self, transform: int) -> Tuple[int, ...]: method setRestLocalTransforms (line 19920) | def setRestLocalTransforms(self, xforms: typing.Iterable[Matrix4]) -> ... method restLocalTransform (line 19937) | def restLocalTransform(self, i: int) -> Matrix4: method restWorldTransform (line 19951) | def restWorldTransform(self, i: int) -> Matrix4: method channelCount (line 19965) | def channelCount(self) -> int: method channelName (line 19974) | def channelName(self, i: int) -> str: method channelDefaultValue (line 19987) | def channelDefaultValue(self, i: int) -> float: method channelTransform (line 20000) | def channelTransform(self, i: int) -> int: method findChannel (line 20014) | def findChannel(self, channel_name: str) -> int: method addChannel (line 20028) | def addChannel(self, name: str, default_value: float = 0.0, transform:... class AgentShape (line 20052) | class AgentShape: method __init__ (line 20076) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 20078) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 20079) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 20080) | def __hash__(self) -> int: ... method name (line 20081) | def name(self) -> str: method uniqueId (line 20090) | def uniqueId(self) -> int: method geometry (line 20099) | def geometry(self) -> Geometry: method freeze (line 20108) | def freeze(self) -> AgentShape: method setGeometry (line 20118) | def setGeometry(self, geometry: Geometry) -> None: class AgentShapeBinding (line 20133) | class AgentShapeBinding: method __init__ (line 20146) | def __init__(self, shape: AgentShape, deformer: AgentShapeDeformer, bo... method __eq__ (line 20172) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 20173) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 20174) | def __hash__(self) -> int: ... method shapeName (line 20175) | def shapeName(self) -> str: method shapeId (line 20184) | def shapeId(self) -> int: method transformId (line 20194) | def transformId(self) -> int: method isDeforming (line 20204) | def isDeforming(self) -> bool: method boundsScale (line 20213) | def boundsScale(self) -> Vector3: method shape (line 20222) | def shape(self) -> AgentShape: method deformer (line 20231) | def deformer(self) -> AgentShapeDeformer: class AgentShapeDeformer (line 20242) | class AgentShapeDeformer: method __init__ (line 20258) | def __init__(self, name: str|EnumValue) -> None: method __eq__ (line 20282) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 20283) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 20284) | def __hash__(self) -> int: ... method name (line 20285) | def name(self) -> str: class AgentShapeLibrary (line 20295) | class AgentShapeLibrary: method __init__ (line 20307) | def __init__(self, filename: str, keep_external_ref: bool = ...) -> None: method __eq__ (line 20335) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 20336) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 20337) | def __hash__(self) -> int: ... method freeze (line 20338) | def freeze(self, keep_external_ref: bool = False) -> AgentShapeLibrary: method name (line 20358) | def name(self) -> str: method fileName (line 20367) | def fileName(self, expanded: bool = False) -> str: method findShape (line 20382) | def findShape(self, name: str) -> Optional[AgentShape]: method shapes (line 20392) | def shapes(self) -> Tuple[AgentShape, ...]: method data (line 20401) | def data(self) -> Geometry: method addShape (line 20411) | def addShape(self, name: str, geometry: Geometry) -> AgentShape: class AgentTransformGroup (line 20431) | class AgentTransformGroup: method __init__ (line 20443) | def __init__(self, name: str, transforms: Sequence[int], rig: AgentRig... method __eq__ (line 20473) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 20474) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 20475) | def __hash__(self) -> int: ... method asJSON (line 20476) | def asJSON(self) -> str: method name (line 20485) | def name(self) -> str: method fileName (line 20494) | def fileName(self, expanded: bool = False) -> str: method transformIndices (line 20509) | def transformIndices(self) -> Tuple[int, ...]: method weights (line 20518) | def weights(self) -> Tuple[float, ...]: method channelIndices (line 20527) | def channelIndices(self) -> Tuple[int, ...]: class anim (line 20537) | class anim: method __init__ (line 20547) | def __init__(self, *args, **kwargs) -> None: ... method bookmarks (line 20550) | def bookmarks() -> Tuple[Bookmark, ...]: method saveBookmarks (line 20560) | def saveBookmarks(filename: str, bookmarks: Sequence[Bookmark]|None = ... method loadBookmarks (line 20587) | def loadBookmarks(filename: str, remove_existing: bool = True) -> bool: method saveBookmarksToString (line 20608) | def saveBookmarksToString(bookmarks: Sequence[Bookmark]|None = ..., in... method loadBookmarksFromString (line 20633) | def loadBookmarksFromString(data: bytes, remove_existing: bool = True)... method clearBookmarks (line 20651) | def clearBookmarks() -> None: method newBookmark (line 20662) | def newBookmark(name: str, start: float, end: float) -> Bookmark: method bookmark (line 20674) | def bookmark(bookmark_id: int) -> Optional[Bookmark]: method getBookmark (line 20685) | def getBookmark(bookmark_id: int) -> Optional[Bookmark]: method removeBookmarks (line 20698) | def removeBookmarks(bm: Sequence[Bookmark]) -> None: method mergeGeometryChannels (line 20710) | def mergeGeometryChannels(collection_name: str, geometry: Geometry, ch... method getGeometryChannels (line 20742) | def getGeometryChannels(collection_name: str, geometry: Geometry, chan... method setGeometryChannels (line 20777) | def setGeometryChannels(collection_name: str, geometry: Geometry, chan... method setGeometryChannelsFromPattern (line 20801) | def setGeometryChannelsFromPattern(collection_name: str, geometry: Geo... method setGeometryChannelPending (line 20824) | def setGeometryChannelPending(collection_name: str, channel_name: str,... method isGeometryChannelPending (line 20846) | def isGeometryChannelPending(collection_name: str, channel_name: str) ... method isGeometryChannelPinned (line 20863) | def isGeometryChannelPinned(collection_name: str, channel_names: str|N... method pinnedGeometryChannels (line 20882) | def pinnedGeometryChannels(collection_name: str) -> Tuple[str, ...]: method getPinnedGeometryChannels (line 20897) | def getPinnedGeometryChannels(collection_name: str) -> Tuple[str, ...]: method lockGeometryChannelCollection (line 20915) | def lockGeometryChannelCollection(collection_name: str, lock: bool) ->... method addBookmarksChangedCallback (line 20933) | def addBookmarksChangedCallback(callback: Callable) -> None: method removeBookmarksChangedCallback (line 20944) | def removeBookmarksChangedCallback(callback: Callable) -> None: method addGeometryChannelsChangedCallback (line 20954) | def addGeometryChannelsChangedCallback(collection_name: str, callback:... method removeGeometryChannelsChangedCallback (line 20991) | def removeGeometryChannelsChangedCallback(collection_name: str, callba... method slopeMode (line 21016) | def slopeMode() -> EnumValue: method setSlopeMode (line 21027) | def setSlopeMode(mode: EnumValue) -> None: class AnimBar (line 21043) | class AnimBar: method __init__ (line 21058) | def __init__(self, *args, **kwargs) -> None: ... method tools (line 21060) | def tools(self, shown_only: bool = True) -> Tuple[str, ...]: method hiddenTools (line 21072) | def hiddenTools(self) -> Tuple[str, ...]: method setTools (line 21082) | def setTools(self, tool_ids: Sequence[str]) -> None: method removeTool (line 21095) | def removeTool(self, id: str) -> None: method addTool (line 21104) | def addTool(self, id: str, index: int = -1) -> None: method reset (line 21120) | def reset(self) -> None: method showLabels (line 21130) | def showLabels(self, show: bool) -> None: method labelsShown (line 21139) | def labelsShown(self) -> bool: method setToolSize (line 21149) | def setToolSize(self, tool_size: EnumValue) -> None: method toolSize (line 21160) | def toolSize(self) -> EnumValue: class anonstats (line 21170) | class anonstats: method __init__ (line 21172) | def __init__(self, *args, **kwargs) -> None: ... method recordOccurrence (line 21175) | def recordOccurrence(key: str) -> None: ... method recordString (line 21177) | def recordString(key: str, value: str) -> None: ... method hasString (line 21179) | def hasString(key: str) -> bool: ... method getString (line 21181) | def getString(key: str) -> str: ... method incrementCount (line 21183) | def incrementCount(key: str, count: int = 1) -> None: ... method logEvent (line 21185) | def logEvent(key: str, message: str) -> None: ... method addSum (line 21187) | def addSum(key: str, stat_value: float, count: int = 1) -> None: ... class AssetBrowser (line 21189) | class AssetBrowser(PathBasedPaneTab): method __init__ (line 21191) | def __init__(self, *args, **kwargs) -> None: ... method reload (line 21193) | def reload(self) -> None: ... method installRequiredDefinitionsForNodeTypeName (line 21194) | def installRequiredDefinitionsForNodeTypeName(self, node_type_name: st... method storeUpdateSessionKey (line 21195) | def storeUpdateSessionKey(self, session_key: str) -> None: ... method updateAssetDownloadFraction (line 21196) | def updateAssetDownloadFraction(self, node_type_name: str, downloaded_... method storeSyncSessionKey (line 21197) | def storeSyncSessionKey(self, session_key: str) -> None: ... class AssetGalleryDataSource (line 21199) | class AssetGalleryDataSource: method __init__ (line 21247) | def __init__(self, source_identifier: str, args: Optional[str] = None)... method __hash__ (line 21259) | def __hash__(self) -> int: ... method isValid (line 21260) | def isValid(self) -> bool: method isReadOnly (line 21273) | def isReadOnly(self) -> bool: method sourceIdentifier (line 21286) | def sourceIdentifier(self) -> str: method sourceArgs (line 21296) | def sourceArgs(self) -> str: method infoHtml (line 21305) | def infoHtml(self) -> str: method startTransaction (line 21317) | def startTransaction(self) -> None: method endTransaction (line 21329) | def endTransaction(self, commit: bool = True) -> None: method itemIds (line 21344) | def itemIds(self) -> Tuple[str, ...]: method updatedItemIds (line 21356) | def updatedItemIds(self) -> Tuple[str, ...]: ... method childItemIds (line 21357) | def childItemIds(self, parent: str) -> Tuple[str, ...]: method sourceTypeName (line 21368) | def sourceTypeName(self, item_id: Optional[str] = None) -> str: method typeName (line 21382) | def typeName(self, item_id: str) -> str: method label (line 21393) | def label(self, item_id: str) -> str: method thumbnail (line 21404) | def thumbnail(self, item_id: str) -> bytes: method creationDate (line 21413) | def creationDate(self, item_id: str) -> int: method modificationDate (line 21423) | def modificationDate(self, item_id: str) -> int: method isStarred (line 21433) | def isStarred(self, item_id: str) -> bool: method colorTag (line 21442) | def colorTag(self, item_id: str) -> str: method tags (line 21454) | def tags(self, item_id: str) -> Tuple[str, ...]: method filePath (line 21464) | def filePath(self, item_id: str) -> str: method ownsFile (line 21477) | def ownsFile(self, item_id: str) -> bool: method blindData (line 21489) | def blindData(self, item_id: str) -> bytes: method status (line 21505) | def status(self, item_id: str) -> str: method parentId (line 21517) | def parentId(self, item_id: str) -> str: method prepareItemForUse (line 21528) | def prepareItemForUse(self, item_id: str) -> str: method setLabel (line 21541) | def setLabel(self, item_id: str, label: str) -> bool: method setThumbnail (line 21551) | def setThumbnail(self, item_id: str, thumbnail: bytes) -> bool: method setModificationDate (line 21561) | def setModificationDate(self, item_id: str, timestamp: int) -> bool: method setIsStarred (line 21571) | def setIsStarred(self, item_id: str, isstarred: bool) -> bool: method setColorTag (line 21581) | def setColorTag(self, item_id: str, color_tag: str) -> bool: method setMetadata (line 21591) | def setMetadata(self, item_id: str, metadata: dict[str, Any]) -> bool: method setFilePath (line 21601) | def setFilePath(self, item_id: str, file_path: str) -> bool: method setOwnsFile (line 21611) | def setOwnsFile(self, item_id: str, owns_file: bool) -> bool: method setBlindData (line 21621) | def setBlindData(self, item_id: str, data: bytes) -> bool: method setParentId (line 21631) | def setParentId(self, item_id: str, parent_item_id: str) -> bool: method createTag (line 21642) | def createTag(self, tag: str) -> bool: method deleteTag (line 21652) | def deleteTag(self, tag: str, delete_if_assigned: bool) -> bool: method addTag (line 21666) | def addTag(self, item_id: str, tag: str) -> bool: method removeTag (line 21677) | def removeTag(self, item_id: str, tag: str) -> bool: method generateItemFilePath (line 21688) | def generateItemFilePath(self, item_id: str, file_ext: str) -> str: method addItem (line 21700) | def addItem(self, label: str, file_path: str|None = ..., thumbnail: by... method markItemsForDeletion (line 21713) | def markItemsForDeletion(self, item_ids: Sequence[str]) -> bool: method unmarkItemsForDeletion (line 21731) | def unmarkItemsForDeletion(self, item_ids: Sequence[str]) -> bool: method saveAs (line 21744) | def saveAs(self, source_identifier: str) -> bool: method metadata (line 21754) | def metadata(self, item_id: str) -> Any: class Attrib (line 21766) | class Attrib: method __init__ (line 21802) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 21804) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 21805) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 21806) | def __hash__(self) -> int: ... method destroy (line 21807) | def destroy(self) -> None: method geometry (line 21823) | def geometry(self) -> Geometry: method name (line 21832) | def name(self) -> str: method dataType (line 21842) | def dataType(self) -> EnumValue: method type (line 21858) | def type(self) -> EnumValue: method isArrayType (line 21867) | def isArrayType(self) -> bool: method numericDataType (line 21877) | def numericDataType(self) -> EnumValue: method qualifier (line 21886) | def qualifier(self) -> str: method size (line 21898) | def size(self) -> int: method setSize (line 21908) | def setSize(self, size: int) -> None: method isTransformedAsVector (line 21918) | def isTransformedAsVector(self) -> bool: ... method isTransformedAsNormal (line 21919) | def isTransformedAsNormal(self) -> bool: method boostAnyDefaultValue (line 21933) | def boostAnyDefaultValue(self) -> Any: ... method stringCount (line 21934) | def stringCount(self) -> int: method strings (line 21944) | def strings(self) -> Tuple[str, ...]: method replaceString (line 21971) | def replaceString(self, before: str, after: str) -> bool: ... method dictCount (line 21972) | def dictCount(self) -> int: method dicts (line 21982) | def dicts(self) -> Tuple[dict[str, Any], ...]: method indexPairPropertyTables (line 22012) | def indexPairPropertyTables(self) -> Tuple[IndexPairPropertyTable, ...]: method optionType (line 22022) | def optionType(self, option_name: str) -> EnumValue: method setOption (line 22033) | def setOption(self, name: str, value: OptionMultiArgType, type_hint: E... method removeOption (line 22057) | def removeOption(self, name: str) -> None: method dataId (line 22070) | def dataId(self) -> AttribDataId: method incrementDataId (line 22079) | def incrementDataId(self) -> None: method defaultValue (line 22089) | def defaultValue(self) -> AttribReturnType: method options (line 22103) | def options(self) -> dict[str, OptionMultiReturnType]: method option (line 22118) | def option(self, option_name: str) -> OptionMultiReturnType: ... class AttribDataId (line 22120) | class AttribDataId: method __init__ (line 22150) | def __init__(self) -> None: method __eq__ (line 22161) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 22162) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 22163) | def __hash__(self) -> int: ... method isValid (line 22164) | def isValid(self) -> bool: method vexAttribDataId (line 22173) | def vexAttribDataId(self) -> Tuple[int, ...]: class audio (line 22185) | class audio: method __init__ (line 22195) | def __init__(self, *args, **kwargs) -> None: ... method turnOffAudio (line 22198) | def turnOffAudio() -> None: method useTimeLineMode (line 22208) | def useTimeLineMode() -> None: method useTimeSliceMode (line 22222) | def useTimeSliceMode() -> None: method useTestMode (line 22232) | def useTestMode() -> None: method setMono (line 22251) | def setMono(on: bool) -> None: method setVolumeTied (line 22261) | def setVolumeTied(on: bool) -> None: method setMeter (line 22273) | def setMeter(on: bool) -> None: method setLeftVolume (line 22284) | def setLeftVolume(volume: float) -> None: method setRightVolume (line 22294) | def setRightVolume(volume: float) -> None: method useChops (line 22304) | def useChops() -> None: method useAudioFile (line 22314) | def useAudioFile() -> None: method setChopPath (line 22324) | def setChopPath(node_path: str) -> None: method setAudioFileName (line 22340) | def setAudioFileName(file_name: str) -> None: method setAudioOffset (line 22352) | def setAudioOffset(time_offset: float) -> None: method setAudioFrame (line 22364) | def setAudioFrame(frame: float) -> None: method setScrubRepeat (line 22375) | def setScrubRepeat(on: bool) -> None: method setScrubSustain (line 22386) | def setScrubSustain(sustain: float) -> None: method setScrubRate (line 22401) | def setScrubRate(scrub_rate: float) -> None: method setScrubLength (line 22415) | def setScrubLength(scrub_length: float) -> None: method reverse (line 22427) | def reverse() -> None: method stop (line 22438) | def stop() -> None: method play (line 22449) | def play() -> None: method setLooping (line 22461) | def setLooping(on: bool) -> None: method setRewind (line 22473) | def setRewind(on: bool) -> None: class Bookmark (line 22486) | class Bookmark: method __init__ (line 22499) | def __init__(self, *args, **kwargs) -> None: ... method name (line 22501) | def name(self) -> str: method setName (line 22510) | def setName(self, name: str) -> None: method startFrame (line 22519) | def startFrame(self) -> int: method setStartFrame (line 22528) | def setStartFrame(self, start: float) -> None: method endFrame (line 22537) | def endFrame(self) -> int: method setEndFrame (line 22546) | def setEndFrame(self, end: float) -> None: method comment (line 22555) | def comment(self) -> str: method setComment (line 22564) | def setComment(self, comment: str) -> None: method color (line 22573) | def color(self) -> Color: method setColor (line 22582) | def setColor(self, color: Color) -> None: method visible (line 22593) | def visible(self) -> bool: method setVisible (line 22602) | def setVisible(self, visible: bool) -> None: method sessionId (line 22611) | def sessionId(self) -> int: method isTemporary (line 22621) | def isTemporary(self) -> bool: method setTemporary (line 22630) | def setTemporary(self, temporary: bool) -> None: method isEnabled (line 22643) | def isEnabled(self) -> bool: method enable (line 22652) | def enable(self, enabled: bool) -> None: method setMetadata (line 22662) | def setMetadata(self, key: str, value: Any, type_hint: EnumValue = ...... method metadata (line 22682) | def metadata(self, key: str, default_value: Any = ...) -> Any: class BoundingBox (line 22701) | class BoundingBox: method __init__ (line 22716) | def __init__(self, bbox_or_xmin: float|BoundingBox = ..., ymin: float ... method __eq__ (line 22729) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 22730) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 22731) | def isAlmostEqual(self, bbox: BoundingBox, tolerance: float = 1e-05) -... method almostEqual (line 22741) | def almostEqual(self, bbox: BoundingBox, tolerance: float = 1e-05) -> ... method __hash__ (line 22742) | def __hash__(self) -> int: ... method __mul__ (line 22743) | def __mul__(self, matrix4: Matrix4) -> BoundingBox: method isValid (line 22754) | def isValid(self) -> bool: method setTo (line 22763) | def setTo(self, tuple: Sequence[float]) -> None: method minvec (line 22775) | def minvec(self) -> Vector3: method maxvec (line 22785) | def maxvec(self) -> Vector3: method sizevec (line 22795) | def sizevec(self) -> Vector3: method center (line 22809) | def center(self) -> Vector3: method enlargeToContain (line 22822) | def enlargeToContain(self, point_or_bbox: Sequence[float]|Vector3, Bou... method contains (line 22835) | def contains(self, point: Sequence[float]) -> bool: class BoundingRect (line 22846) | class BoundingRect: method __init__ (line 22859) | def __init__(self, brect_or_p1_or_xmin: BoundingRect|Vector2|float, p2... method __eq__ (line 22870) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 22871) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 22872) | def isAlmostEqual(self, rect: BoundingRect, tolerance: float = 1e-05) ... method __hash__ (line 22888) | def __hash__(self) -> int: ... method isValid (line 22889) | def isValid(self) -> bool: method setTo (line 22905) | def setTo(self, tuple: Sequence[float]) -> None: method translate (line 22917) | def translate(self, tuple: Sequence[float]) -> None: method scale (line 22931) | def scale(self, tuple: Sequence[float]) -> None: method expand (line 22953) | def expand(self, tuple: Sequence[float]) -> None: method min (line 22979) | def min(self) -> Vector2: method max (line 22989) | def max(self) -> Vector2: method size (line 22999) | def size(self) -> Vector2: method center (line 23013) | def center(self) -> Vector2: method getOffsetToAvoid (line 23026) | def getOffsetToAvoid(self, bounds: BoundingRect, direction: Optional[V... method enlargeToContain (line 23047) | def enlargeToContain(self, point_or_rect: Sequence[float]|Vector2|Boun... method intersect (line 23068) | def intersect(self, rect: BoundingRect) -> None: method intersects (line 23082) | def intersects(self, rect: BoundingRect) -> bool: method contains (line 23099) | def contains(self, rect: BoundingRect) -> bool: method closestPoint (line 23114) | def closestPoint(self, point: Sequence[float]) -> Vector2: class ButtonParmTemplate (line 23133) | class ButtonParmTemplate(ParmTemplate): method __init__ (line 23143) | def __init__(self, name: str, label: str, disable_when: str|None = ...... class ChannelEditorPane (line 23191) | class ChannelEditorPane(PaneTab): method __init__ (line 23198) | def __init__(self, *args, **kwargs) -> None: ... method graph (line 23200) | def graph(self) -> Optional[ChannelGraph]: method channelListSplitFraction (line 23209) | def channelListSplitFraction(self) -> float: method setChannelListSplitFraction (line 23219) | def setChannelListSplitFraction(self, split_fraction: float) -> None: method displayFilter (line 23229) | def displayFilter(self) -> str: method setDisplayFilter (line 23238) | def setDisplayFilter(self, filter: str) -> None: method editorMode (line 23248) | def editorMode(self) -> EnumValue: method setEditorMode (line 23257) | def setEditorMode(self, mode: EnumValue) -> None: method templateFilter (line 23266) | def templateFilter(self) -> str: method setTemplateFilter (line 23275) | def setTemplateFilter(self, filter: str) -> None: method colorsCallback (line 23285) | def colorsCallback(self) -> str: method setColorsCallback (line 23294) | def setColorsCallback(self, cb: str) -> bool: method unregisterColorsCallback (line 23306) | def unregisterColorsCallback(self, cb_class: str) -> bool: method colorsCallbacks (line 23318) | def colorsCallbacks(self) -> Tuple[str, ...]: method registerColorsCallback (line 23327) | def registerColorsCallback(self, cb_class: str, callback: Any) -> bool: method channelList (line 23400) | def channelList(self) -> Optional[ChannelList]: ... method setChannelList (line 23401) | def setChannelList(self, l: ChannelList) -> None: ... method channelListPinned (line 23402) | def channelListPinned(self) -> bool: ... method setChannelListPinned (line 23403) | def setChannelListPinned(self, pinned: bool) -> None: ... method isAnimBarShown (line 23404) | def isAnimBarShown(self) -> bool: method showAnimBar (line 23413) | def showAnimBar(self, show: bool) -> None: method animBar (line 23422) | def animBar(self) -> Optional[AnimBar]: class ChannelGraph (line 23433) | class ChannelGraph: method __init__ (line 23440) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 23442) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 23443) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 23444) | def __hash__(self) -> int: ... method selectedKeyframes (line 23445) | def selectedKeyframes(self) -> dict[Parm, Tuple[BaseKeyframe,...]]: method selection (line 23462) | def selection(self) -> Tuple[ChannelGraphSelection, ...]: method setSelection (line 23471) | def setSelection(self, s: Sequence[ChannelGraphSelection]) -> None: class ChannelList (line 23482) | class ChannelList: method __init__ (line 23492) | def __init__(self) -> None: method __eq__ (line 23502) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 23503) | def __ne__(self, other: object) -> bool: ... method clear (line 23504) | def clear(self) -> None: method parms (line 23513) | def parms(self) -> Tuple[Parm, ...]: method selected (line 23523) | def selected(self) -> Tuple[Parm, ...]: method deselected (line 23533) | def deselected(self) -> Tuple[Parm, ...]: method pinned (line 23543) | def pinned(self) -> Tuple[Parm, ...]: method unpinned (line 23553) | def unpinned(self) -> Tuple[Parm, ...]: method selectedValue (line 23563) | def selectedValue(self) -> Tuple[Parm, ...]: method deselectedValue (line 23573) | def deselectedValue(self) -> Tuple[Parm, ...]: method addParm (line 23583) | def addParm(self, parm: Parm, selected: bool = True, pinned: bool = Fa... method addPath (line 23606) | def addPath(self, path: str, selected: bool = True, pinned: bool = Fal... method addParms (line 23629) | def addParms(self, parms: Sequence[Parm], selected: bool = True, pinne... method addPaths (line 23630) | def addPaths(self, paths: Sequence[str], selected: bool = True, pinned... method remove (line 23653) | def remove(self, parm: Parm|Sequence[Parm]) -> None: method select (line 23666) | def select(self, parm: Parm|Sequence[Parm]) -> None: method deselect (line 23679) | def deselect(self, parm: Parm|Sequence[Parm]) -> None: method pin (line 23692) | def pin(self, parm: Parm|Sequence[Parm]) -> None: method unpin (line 23705) | def unpin(self, parm: Parm|Sequence[Parm]) -> None: method selectValue (line 23718) | def selectValue(self, parm: Parm|Sequence[Parm]) -> None: method deselectValue (line 23732) | def deselectValue(self, parm: Parm|Sequence[Parm]) -> None: method contains (line 23746) | def contains(self, parm: Parm) -> bool: method isSelected (line 23759) | def isSelected(self, parm: Parm) -> bool: method isPinned (line 23772) | def isPinned(self, parm: Parm) -> bool: method isValueSelected (line 23785) | def isValueSelected(self, parm: Parm) -> bool: method addNodeGeometryChannels (line 23799) | def addNodeGeometryChannels(self, node: SopNode, pattern: str|None = .... method addGeometryChannels (line 23830) | def addGeometryChannels(self, geometry: Geometry, collection_name: str... method geometryChannels (line 23903) | def geometryChannels(self, collection_name: str) -> Tuple[ChannelPrim,... method geometryChannelCollectionNames (line 23913) | def geometryChannelCollectionNames(self) -> Tuple[str, ...]: method removeGeometryChannels (line 23923) | def removeGeometryChannels(self, collection_name: str) -> None: method selectGeometryChannel (line 23937) | def selectGeometryChannel(self, collection_name: str, channel: str|Non... method deselectGeometryChannel (line 23954) | def deselectGeometryChannel(self, collection_name: str, channel: str|N... method pinGeometryChannel (line 23971) | def pinGeometryChannel(self, collection_name: str, channel: str|None =... method unpinGeometryChannel (line 23988) | def unpinGeometryChannel(self, collection_name: str, channel: str|None... method selectGeometryChannelValue (line 24005) | def selectGeometryChannelValue(self, collection_name: str, channel: st... method deselectGeometryChannelValue (line 24022) | def deselectGeometryChannelValue(self, collection_name: str, channel: ... method containsGeometryChannel (line 24023) | def containsGeometryChannel(self, collection_name: str, channel: str|N... method isGeometryChannelSelected (line 24041) | def isGeometryChannelSelected(self, collection_name: str, channel: str... method isGeometryChannelPinned (line 24057) | def isGeometryChannelPinned(self, collection_name: str, channel: str) ... method isGeometryChannelValueSelected (line 24073) | def isGeometryChannelValueSelected(self, collection_name: str, channel... method filter (line 24090) | def filter(self) -> str: method keepSelection (line 24099) | def keepSelection(self) -> bool: method enableFilter (line 24108) | def enableFilter(self) -> bool: method filterTranslates (line 24117) | def filterTranslates(self) -> bool: method filterRotates (line 24126) | def filterRotates(self) -> bool: method filterScales (line 24135) | def filterScales(self) -> bool: method setFilter (line 24144) | def setFilter(self, pattern: str) -> None: method setKeepSelection (line 24157) | def setKeepSelection(self, value: bool) -> None: method setEnableFilter (line 24166) | def setEnableFilter(self, value: bool) -> None: method setFilterTranslates (line 24175) | def setFilterTranslates(self, value: bool) -> None: method setFilterRotates (line 24184) | def setFilterRotates(self, value: bool) -> None: method setFilterScales (line 24193) | def setFilterScales(self, value: bool) -> None: method asCode (line 24202) | def asCode(self, var_name: str = ...) -> str: class ChannelPrim (line 24218) | class ChannelPrim(Prim): method __init__ (line 24256) | def __init__(self, *args, **kwargs) -> None: ... method vertex (line 24258) | def vertex(self, index: int) -> Vertex: method addVertex (line 24272) | def addVertex(self, point: Point) -> Vertex: method start (line 24294) | def start(self) -> float: method end (line 24303) | def end(self) -> float: method length (line 24312) | def length(self) -> float: method setStart (line 24321) | def setStart(self, frame: float) -> None: method defaultValue (line 24330) | def defaultValue(self) -> float: method setDefaultValue (line 24340) | def setDefaultValue(self, value: float) -> None: method eval (line 24349) | def eval(self, frame: float) -> float: method hasKeyAtFrame (line 24358) | def hasKeyAtFrame(self, frame: float) -> bool: method insertKey (line 24367) | def insertKey(self, frame: float, auto_slope: bool = True) -> None: method destroyKey (line 24381) | def destroyKey(self, frame: float) -> None: method destroyKeys (line 24390) | def destroyKeys(self, frame_start: float, frame_end: float) -> None: method clear (line 24399) | def clear(self) -> None: method keyIndex (line 24408) | def keyIndex(self, frame: float) -> int: method setKeyValue (line 24418) | def setKeyValue(self, frame: float, value: float, key_half: Optional[E... method setKeySlope (line 24433) | def setKeySlope(self, frame: float, slope: float, key_half: Optional[E... method setKeyAccel (line 24449) | def setKeyAccel(self, frame: float, accel: float, key_half: Optional[E... method keyValue (line 24465) | def keyValue(self, frame: float, key_half: Optional[EnumValue] = None)... method keySlope (line 24477) | def keySlope(self, frame: float, key_half: Optional[EnumValue] = None)... method keyAccel (line 24489) | def keyAccel(self, frame: float, key_half: Optional[EnumValue] = None)... method setKeyAutoSlope (line 24502) | def setKeyAutoSlope(self, frame: float, auto_slope: bool, key_half: Op... method segmentType (line 24519) | def segmentType(self, frame: float) -> EnumValue: method setSegmentType (line 24528) | def setSegmentType(self, frame: float, type: EnumValue) -> None: method keyFrames (line 24538) | def keyFrames(self) -> Tuple[float, ...]: method keyValues (line 24548) | def keyValues(self, key_half: Optional[EnumValue] = None) -> Tuple[flo... method keySlopes (line 24560) | def keySlopes(self, key_half: Optional[EnumValue] = None) -> Tuple[flo... method keyAccels (line 24573) | def keyAccels(self, key_half: Optional[EnumValue] = None) -> Tuple[flo... method setKeyValues (line 24586) | def setKeyValues(self, values: Sequence[float], key_half: Optional[Enu... method setKeySlopes (line 24602) | def setKeySlopes(self, slopes: Sequence[float], key_half: Optional[Enu... method setKeyAccels (line 24620) | def setKeyAccels(self, accels: Sequence[float], key_half: Optional[Enu... method moveKeyframes (line 24638) | def moveKeyframes(self, key_indices: Sequence[int], frame_offsets: Seq... method smoothAutoSlopes (line 24656) | def smoothAutoSlopes(self, force: bool = False) -> None: method smoothAutoSlopesForKeys (line 24667) | def smoothAutoSlopesForKeys(self, start_index: int, end_index: int = -... class ChopNode (line 24686) | class ChopNode(OpNode): method __init__ (line 24696) | def __init__(self, *args, **kwargs) -> None: ... method isBypassed (line 24698) | def isBypassed(self) -> bool: method bypass (line 24707) | def bypass(self, on: bool) -> None: method isLocked (line 24717) | def isLocked(self) -> bool: method setLocked (line 24726) | def setLocked(self, on: bool) -> None: method isDisplayFlagSet (line 24738) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 24747) | def setDisplayFlag(self, on: bool) -> None: method isAudioFlagSet (line 24756) | def isAudioFlagSet(self) -> bool: method setAudioFlag (line 24765) | def setAudioFlag(self, on: bool) -> None: method isExportFlagSet (line 24774) | def isExportFlagSet(self) -> bool: method setExportFlag (line 24783) | def setExportFlag(self, on: bool) -> None: method isUnloadFlagSet (line 24792) | def isUnloadFlagSet(self) -> bool: method setUnloadFlag (line 24801) | def setUnloadFlag(self, on: bool) -> None: method isCurrentFlagSet (line 24810) | def isCurrentFlagSet(self) -> bool: method setCurrentFlag (line 24819) | def setCurrentFlag(self, on: bool) -> None: method tracks (line 24828) | def tracks(self, output_index: int = 0, cook: bool = True) -> Tuple[Tr... method track (line 24837) | def track(self, track_name: str, output_index: int = 0, cook: bool = T... method clip (line 24846) | def clip(self, output_index: int = 0) -> Clip: method sampleRate (line 24860) | def sampleRate(self) -> float: method sampleRange (line 24870) | def sampleRange(self) -> Tuple[float, float]: method frameToSamples (line 24881) | def frameToSamples(self, frame: float) -> float: method samplesToFrame (line 24891) | def samplesToFrame(self, samples: float) -> float: method timeToSamples (line 24901) | def timeToSamples(self, time: float) -> float: method samplesToTime (line 24911) | def samplesToTime(self, samples: float) -> float: method clipData (line 24921) | def clipData(self, binary: Any) -> bytes: method setClipData (line 24934) | def setClipData(self, source: bytes, binary: bool, offset: float = 0, ... method saveClip (line 24944) | def saveClip(self, file_name: str) -> bool: class Clip (line 24955) | class Clip: method __init__ (line 24973) | def __init__(self) -> None: method __eq__ (line 24983) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 24984) | def __ne__(self, other: object) -> bool: ... method chopNode (line 24985) | def chopNode(self) -> Optional[ChopNode]: method chopNodeOutputIndex (line 24995) | def chopNodeOutputIndex(self) -> int: method tracks (line 25005) | def tracks(self) -> Tuple[Track, ...]: method track (line 25014) | def track(self, track_name: str) -> Optional[Track]: method sampleRate (line 25023) | def sampleRate(self) -> float: method sampleRange (line 25033) | def sampleRange(self) -> Tuple[float, float]: method numSamples (line 25044) | def numSamples(self) -> int: method frameToSamples (line 25053) | def frameToSamples(self, frame: float) -> float: method samplesToFrame (line 25063) | def samplesToFrame(self, samples: float) -> float: method timeToSamples (line 25073) | def timeToSamples(self, time: float) -> float: method samplesToTime (line 25083) | def samplesToTime(self, samples: float) -> float: method loadFromFile (line 25093) | def loadFromFile(self, filename: str) -> None: method saveToFile (line 25102) | def saveToFile(self, filename: str) -> None: method mode (line 25112) | def mode(self) -> EnumValue: class clone (line 25123) | class clone: method __init__ (line 25125) | def __init__(self, *args, **kwargs) -> None: ... method runAsClone (line 25128) | def runAsClone(start_port: int = 0, end_port: int = -1, debug: bool = ... method isRunningAsClone (line 25202) | def isRunningAsClone() -> bool: method createClone (line 25218) | def createClone(id: Optional[str] = None) -> _clone_Connection: method clones (line 25246) | def clones() -> Tuple[_clone_Connection, ...]: method clone (line 25263) | def clone(id: str) -> Optional[_clone_Connection]: method deleteClone (line 25286) | def deleteClone(id: str) -> None: method deleteDisconnectedClones (line 25311) | def deleteDisconnectedClones() -> None: method removeAllConnectionChangeCallbacks (line 25328) | def removeAllConnectionChangeCallbacks() -> None: method removeAllImageChangeCallbacks (line 25346) | def removeAllImageChangeCallbacks() -> None: method addConnectionChangeCallback (line 25363) | def addConnectionChangeCallback(callback: Callable[[str], None]) -> None: method removeConnectionChangeCallback (line 25391) | def removeConnectionChangeCallback(callback: Callable[[str], None]) ->... method connectionChangeCallbacks (line 25414) | def connectionChangeCallbacks() -> Tuple[Callable[[str], None],...]: method addImageChangeCallback (line 25430) | def addImageChangeCallback(callback: Callable[[str], None]) -> None: method removeImageChangeCallback (line 25455) | def removeImageChangeCallback(callback: Callable[[str], None]) -> None: method imageChangeCallbacks (line 25478) | def imageChangeCallbacks() -> Tuple[Callable[[str], None],...]: class _clone_Connection (line 25494) | class _clone_Connection: method __init__ (line 25529) | def __init__(self, *args, **kwargs) -> None: ... method isValid (line 25531) | def isValid(self) -> bool: method sessionId (line 25544) | def sessionId(self) -> str: method name (line 25557) | def name(self) -> str: method setName (line 25566) | def setName(self, name: str) -> None: method lopNode (line 25577) | def lopNode(self) -> Node: method setLopNode (line 25587) | def setLopNode(self, lop: Node) -> None: method cameraPath (line 25598) | def cameraPath(self) -> str: method setCameraPath (line 25608) | def setCameraPath(self, camerapath: str) -> None: method renderer (line 25621) | def renderer(self) -> str: method setRenderer (line 25630) | def setRenderer(self, renderer: str) -> None: method renderSettings (line 25641) | def renderSettings(self) -> str: method setRenderSettings (line 25651) | def setRenderSettings(self, rendersettings: str) -> None: method renderPass (line 25663) | def renderPass(self) -> str: method setRenderPass (line 25673) | def setRenderPass(self, renderpass: str) -> None: method availableAovs (line 25685) | def availableAovs(self) -> Tuple[str, ...]: method displayAov (line 25696) | def displayAov(self) -> str: method setDisplayAov (line 25707) | def setDisplayAov(self, displayaov: str) -> None: method resolutionScale (line 25719) | def resolutionScale(self) -> float: method setResolutionScale (line 25732) | def setResolutionScale(self, resolution_scale: float) -> None: method resolution (line 25745) | def resolution(self) -> Tuple[int, int]: method setResolution (line 25760) | def setResolution(self, width: int, height: int) -> None: method renderRegion (line 25774) | def renderRegion(self) -> Vector4: method setRenderRegion (line 25787) | def setRenderRegion(self, render_region: Vector4) -> None: method frameExpression (line 25801) | def frameExpression(self) -> str: method setFrameExpression (line 25813) | def setFrameExpression(self, expression: str) -> None: method contextOptionExpression (line 25827) | def contextOptionExpression(self, opt: str) -> str: method setContextOptionExpression (line 25839) | def setContextOptionExpression(self, opt: str, expression: str) -> None: method contextOptionsWithExpressions (line 25854) | def contextOptionsWithExpressions(self) -> Tuple[str, ...]: method processUpdates (line 25865) | def processUpdates(self) -> bool: method setProcessUpdates (line 25875) | def setProcessUpdates(self, process_updates: bool) -> None: method launcherConfig (line 25885) | def launcherConfig(self) -> dict[str, Any]: method setLauncherConfig (line 25895) | def setLauncherConfig(self, config: dict[str, Any]) -> None: method connect (line 25909) | def connect(self, host: str, port: int) -> bool: method disconnect (line 25925) | def disconnect(self) -> None: method isConnected (line 25935) | def isConnected(self) -> bool: method isWaitingToConnect (line 25945) | def isWaitingToConnect(self) -> bool: method setWaitingToConnect (line 25955) | def setWaitingToConnect(self, waiting_to_connect: bool) -> None: method host (line 25970) | def host(self) -> str: method port (line 25981) | def port(self) -> int: method imagePath (line 25991) | def imagePath(self) -> str: method imageVersion (line 26007) | def imageVersion(self) -> int: method imageSize (line 26019) | def imageSize(self) -> Tuple[int, ...]: method percentComplete (line 26034) | def percentComplete(self) -> float: method renderGalleryDataSource (line 26044) | def renderGalleryDataSource(self) -> Optional[AssetGalleryDataSource]: method renderGalleryItemId (line 26058) | def renderGalleryItemId(self) -> str: method createSnapshot (line 26074) | def createSnapshot(self) -> str: method duplicate (line 26091) | def duplicate(self) -> _clone_Connection: class Color (line 26105) | class Color: method __init__ (line 26130) | def __init__(self, rgb_tuple: Sequence[float]|float = ..., g: float = ... method __eq__ (line 26145) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 26146) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 26147) | def __hash__(self) -> int: ... method rgb (line 26148) | def rgb(self) -> Tuple[float, float, float]: method hsv (line 26158) | def hsv(self) -> Tuple[float, float, float]: method hsl (line 26168) | def hsl(self) -> Tuple[float, float, float]: method xyz (line 26178) | def xyz(self) -> Tuple[float, float, float]: method lab (line 26189) | def lab(self) -> Tuple[float, float, float]: method tmi (line 26200) | def tmi(self) -> Tuple[float, float, float]: method setRGB (line 26210) | def setRGB(self, tuple: Sequence[float]) -> None: method setHSV (line 26220) | def setHSV(self, tuple: Sequence[float]) -> None: method setHSL (line 26230) | def setHSL(self, tuple: Sequence[float]) -> None: method setXYZ (line 26240) | def setXYZ(self, tuple: Sequence[float]) -> None: method setLAB (line 26250) | def setLAB(self, tuple: Sequence[float]) -> None: method setTMI (line 26260) | def setTMI(self, tuple: Sequence[float]) -> None: method ocio_configPath (line 26271) | def ocio_configPath() -> str: method ocio_spaces (line 26281) | def ocio_spaces() -> Tuple[str, ...]: method ocio_activeDisplays (line 26292) | def ocio_activeDisplays() -> Tuple[str, ...]: method ocio_activeViews (line 26303) | def ocio_activeViews() -> Tuple[str, ...]: method ocio_looks (line 26314) | def ocio_looks() -> Tuple[str, ...]: method ocio_roles (line 26324) | def ocio_roles() -> Tuple[str, ...]: method ocio_views (line 26334) | def ocio_views(display: str) -> Tuple[str, ...]: method ocio_defaultDisplay (line 26344) | def ocio_defaultDisplay() -> str: method ocio_defaultView (line 26356) | def ocio_defaultView() -> str: method ocio_transform (line 26367) | def ocio_transform(self, src_colorspace: str, dest_colorspace: str, lo... method ocio_viewTransform (line 26379) | def ocio_viewTransform(self, src_colorspace: str, display: str, view: ... method reloadOCIO (line 26393) | def reloadOCIO() -> None: class CompositorViewer (line 26405) | class CompositorViewer(PathBasedPaneTab): method __init__ (line 26420) | def __init__(self, *args, **kwargs) -> None: ... method currentState (line 26422) | def currentState(self) -> str: method enterViewState (line 26434) | def enterViewState(self, wait_for_exit: bool = False) -> None: method setCurrentState (line 26443) | def setCurrentState(self, state: str, wait_for_exit: bool = False) -> ... method usingOCIO (line 26454) | def usingOCIO(self) -> bool: method setUsingOCIO (line 26464) | def setUsingOCIO(self, enable: bool) -> None: method setOCIODisplayView (line 26473) | def setOCIODisplayView(self, display: Optional[str] = None, view: Opti... method getOCIODisplay (line 26485) | def getOCIODisplay(self) -> str: method getOCIOView (line 26494) | def getOCIOView(self) -> str: method curViewport (line 26503) | def curViewport(self) -> Optional[Viewport2D]: method showHandle (line 26513) | def showHandle(self, name: str, value: bool) -> None: method runStateCommand (line 26536) | def runStateCommand(self, name: str, args: Optional[Any] = None) -> None: method bindViewerHandle (line 26598) | def bindViewerHandle(self, handle_type: str, name: str, settings: str|... method bindViewerHandleStatic (line 26650) | def bindViewerHandleStatic(self, handle_type: str, name: str, bindings... method unbindViewerHandle (line 26693) | def unbindViewerHandle(self, handle_instance_name: str) -> None: class ConstructionPlane (line 26716) | class ConstructionPlane: method __init__ (line 26726) | def __init__(self, *args, **kwargs) -> None: ... method sceneViewer (line 26728) | def sceneViewer(self) -> SceneViewer: method isVisible (line 26737) | def isVisible(self) -> bool: method setIsVisible (line 26746) | def setIsVisible(self, on: bool) -> None: method transform (line 26755) | def transform(self) -> Matrix4: method setTransform (line 26785) | def setTransform(self, matrix: Matrix4) -> None: method cellSize (line 26824) | def cellSize(self) -> Tuple[float, ...]: method setCellSize (line 26834) | def setCellSize(self, size: Sequence[float]) -> None: method numberOfCells (line 26847) | def numberOfCells(self) -> Tuple[int, ...]: method setNumberOfCells (line 26857) | def setNumberOfCells(self, number: Sequence[int]) -> None: ... method numberOfCellsPerRulerLine (line 26858) | def numberOfCellsPerRulerLine(self) -> Tuple[int, ...]: method setNumberOfCellsPerRulerLine (line 26869) | def setNumberOfCellsPerRulerLine(self, number: Sequence[int]) -> None:... class ContextViewer (line 26871) | class ContextViewer(PathBasedPaneTab): method __init__ (line 26881) | def __init__(self, *args, **kwargs) -> None: ... method sceneViewer (line 26883) | def sceneViewer(self) -> Optional[SceneViewer]: method compositorViewer (line 26893) | def compositorViewer(self) -> Optional[CompositorViewer]: method findViewport (line 26903) | def findViewport(self, name: str) -> Optional[GeometryViewport]: class CopCableStructure (line 26914) | class CopCableStructure: method __init__ (line 26931) | def __init__(self, *args, **kwargs) -> None: ... method wireCount (line 26933) | def wireCount(self) -> int: method wireDataType (line 26942) | def wireDataType(self, index: int) -> str: ... method wireName (line 26943) | def wireName(self, index: int) -> str: method appearanceIndex (line 26952) | def appearanceIndex(self, index: int) -> int: class CopNode (line 26968) | class CopNode(OpNode): method __init__ (line 26978) | def __init__(self, *args, **kwargs) -> None: ... method geometry (line 26980) | def geometry(self, output_index: int = 0) -> Optional[Geometry]: method geometryAtFrame (line 26999) | def geometryAtFrame(self, frame: float, output_index: int = 0) -> Opti... method layer (line 27019) | def layer(self, output_index: int = 0) -> Optional[ImageLayer]: method layerAtFrame (line 27032) | def layerAtFrame(self, frame: float, output_index: int = 0) -> Optiona... method vdb (line 27046) | def vdb(self, output_index: int = 0) -> Optional[NanoVDB]: method vdbAtFrame (line 27059) | def vdbAtFrame(self, frame: float, output_index: int = 0) -> Optional[... method inputCableStructure (line 27073) | def inputCableStructure(self, input_index: int) -> Optional[CopCableSt... method outputCableStructure (line 27083) | def outputCableStructure(self, output_index: int) -> Optional[CopCable... method hasVerb (line 27093) | def hasVerb(self) -> bool: method verb (line 27102) | def verb(self) -> Optional[CopVerb]: method isBypassed (line 27112) | def isBypassed(self) -> bool: method bypass (line 27122) | def bypass(self, on: bool) -> None: method isDisplayFlagSet (line 27135) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 27145) | def setDisplayFlag(self, on: bool) -> None: method isTemplateFlagSet (line 27158) | def isTemplateFlagSet(self) -> bool: method setTemplateFlag (line 27168) | def setTemplateFlag(self, on: bool) -> None: method isSelectableTemplateFlagSet (line 27180) | def isSelectableTemplateFlagSet(self) -> bool: method setSelectableTemplateFlag (line 27190) | def setSelectableTemplateFlag(self, on: bool) -> None: method isCompressFlagSet (line 27201) | def isCompressFlagSet(self) -> bool: method setCompressFlag (line 27212) | def setCompressFlag(self, on: bool) -> None: method isExportFlagSet (line 27226) | def isExportFlagSet(self) -> bool: method setExportFlag (line 27236) | def setExportFlag(self, on: bool) -> None: method outputDataTypes (line 27251) | def outputDataTypes(self) -> Tuple[str, ...]: method inputDataTypes (line 27261) | def inputDataTypes(self) -> Tuple[str, ...]: method isInputCompatible (line 27271) | def isInputCompatible(self, idx: int, other: CopNode, other_idx: int, ... method displayNode (line 27285) | def displayNode(self) -> Optional[Node]: class CopVerb (line 27296) | class CopVerb(OpVerb): method __init__ (line 27308) | def __init__(self, *args, **kwargs) -> None: ... method execute (line 27310) | def execute(self, inputs: dict[str, Any]) -> dict[str, Any]: class Cop2Node (line 27333) | class Cop2Node(OpNode): method __init__ (line 27351) | def __init__(self, *args, **kwargs) -> None: ... method isBypassed (line 27353) | def isBypassed(self) -> bool: method bypass (line 27363) | def bypass(self, on: bool) -> None: method isDisplayFlagSet (line 27376) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 27386) | def setDisplayFlag(self, on: bool) -> None: method isRenderFlagSet (line 27399) | def isRenderFlagSet(self) -> bool: method setRenderFlag (line 27409) | def setRenderFlag(self, on: bool) -> None: method isTemplateFlagSet (line 27422) | def isTemplateFlagSet(self) -> bool: method setTemplateFlag (line 27432) | def setTemplateFlag(self, on: bool) -> None: method isCompressFlagSet (line 27444) | def isCompressFlagSet(self) -> bool: method setCompressFlag (line 27455) | def setCompressFlag(self, on: bool) -> None: method planes (line 27469) | def planes(self) -> Tuple[str, ...]: method components (line 27481) | def components(self, plane: str) -> Tuple[str, ...]: method depth (line 27497) | def depth(self, plane: str) -> EnumValue: method maskInputIndex (line 27514) | def maskInputIndex(self) -> int: method getPixelByUV (line 27524) | def getPixelByUV(self, plane: str, u: float, v: float, component: Opti... method getPixelHSVByUV (line 27557) | def getPixelHSVByUV(self, u: float, v: float, interpolate: bool = True... method getPixelLuminanceByUV (line 27581) | def getPixelLuminanceByUV(self, u: float, v: float, interpolate: bool ... method allPixels (line 27605) | def allPixels(self, plane: str = ..., component: str|None = ..., inter... method allPixelsAsString (line 27653) | def allPixelsAsString(self, plane: str = ..., component: str|None = ..... method setPixelsOfCookingPlane (line 27693) | def setPixelsOfCookingPlane(self, values: Sequence[float], component: ... method imageBounds (line 27748) | def imageBounds(self, plane: str = ...) -> Tuple[int, int, int]: method xRes (line 27772) | def xRes(self) -> int: method yRes (line 27784) | def yRes(self) -> int: method sequenceStartFrame (line 27796) | def sequenceStartFrame(self) -> float: method sequenceEndFrame (line 27808) | def sequenceEndFrame(self) -> float: method sequenceFrameLength (line 27820) | def sequenceFrameLength(self) -> float: method isSingleImage (line 27832) | def isSingleImage(self) -> bool: method saveImage (line 27842) | def saveImage(self, file_name: str, frame_range: Sequence[float] = ...... method hasMetaData (line 27866) | def hasMetaData(self, metadata_name: str) -> bool: method getMetaDataInt (line 27876) | def getMetaDataInt(self, metadata_name: str, index: int = 0) -> int: method getMetaDataFloat (line 27887) | def getMetaDataFloat(self, metadata_name: str, index: int = 0) -> float: method getMetaDataString (line 27898) | def getMetaDataString(self, metadata_name: str) -> str: method getMetaDataIntArray (line 27907) | def getMetaDataIntArray(self, metadata_name: str) -> Tuple[int, ...]: method getMetaDataFloatArray (line 27917) | def getMetaDataFloatArray(self, metadata_name: str) -> Tuple[float, ...]: method setPixelsOfCookingPlaneFromString (line 27926) | def setPixelsOfCookingPlaneFromString(self, values: bytes, component: ... class crowds (line 27959) | class crowds: method __init__ (line 27969) | def __init__(self, *args, **kwargs) -> None: ... method addBlendshapeInputs (line 27972) | def addBlendshapeInputs(base_shape_geo: Geometry, shapes: Sequence[Age... method addInBetweenShapes (line 28000) | def addInBetweenShapes(primary_shape_geo: Geometry, shapes: Sequence[A... method setBlendshapeDeformerParms (line 28028) | def setBlendshapeDeformerParms(base_shape_geo: Geometry, attribs: str ... method findAgentDefinitions (line 28056) | def findAgentDefinitions(geometry: Geometry, group: str = ..., group_t... method replaceAgentDefinitions (line 28091) | def replaceAgentDefinitions(geometry: Geometry, new_definition_map: Ma... method computeLocalTransforms (line 28137) | def computeLocalTransforms(rig: AgentRig, world_xforms: typing.Iterabl... method computeWorldTransforms (line 28157) | def computeWorldTransforms(rig: AgentRig, local_xforms: typing.Iterabl... method computeRotationLimits (line 28177) | def computeRotationLimits(rig: AgentRig, clips: Sequence[AgentClip], x... method shapeDeformers (line 28219) | def shapeDeformers() -> Tuple[AgentShapeDeformer, ...]: method findShapeDeformer (line 28229) | def findShapeDeformer(name: str) -> Optional[AgentShapeDeformer]: method applyUsdProcedural (line 28240) | def applyUsdProcedural(stage: pxr.Usd.Stage, selection_rule: LopSelect... class DataParmTemplate (line 28335) | class DataParmTemplate(ParmTemplate): method __init__ (line 28345) | def __init__(self, name: str, label: str, num_components: int, look: E... method dataParmType (line 28407) | def dataParmType(self) -> EnumValue: method setDataParmType (line 28419) | def setDataParmType(self, data_type: EnumValue) -> None: ... method defaultExpression (line 28420) | def defaultExpression(self) -> Tuple[str, ...]: method setDefaultExpression (line 28447) | def setDefaultExpression(self, default_expression: Sequence[str]) -> N... method defaultExpressionLanguage (line 28463) | def defaultExpressionLanguage(self) -> Tuple[EnumValue, ...]: method setDefaultExpressionLanguage (line 28477) | def setDefaultExpressionLanguage(self, default_expression_language: Se... class DataTree (line 28494) | class DataTree(PaneTab): method __init__ (line 28504) | def __init__(self, *args, **kwargs) -> None: ... method treeTypes (line 28506) | def treeTypes(self) -> Tuple[str, ...]: method treeType (line 28516) | def treeType(self) -> str: method setTreeType (line 28527) | def setTreeType(self, tree_type: str) -> bool: method currentPath (line 28538) | def currentPath(self) -> str: method clearCurrentPath (line 28547) | def clearCurrentPath(self) -> None: method setCurrentPath (line 28556) | def setCurrentPath(self, path: str, multi_select: bool = False, index:... method setCurrentPaths (line 28572) | def setCurrentPaths(self, paths: Sequence[str], expanded: bool) -> None: method setTreeExpanded (line 28583) | def setTreeExpanded(self, expanded: bool) -> None: method setCurrentNodeExpanded (line 28592) | def setCurrentNodeExpanded(self, expanded: bool) -> None: class Desktop (line 28603) | class Desktop: method __init__ (line 28631) | def __init__(self, *args, **kwargs) -> None: ... method panes (line 28633) | def panes(self) -> Tuple[Pane, ...]: method paneTabs (line 28659) | def paneTabs(self) -> Tuple[PaneTab, ...]: method currentPaneTabs (line 28673) | def currentPaneTabs(self) -> Tuple[PaneTab, ...]: method floatingPaneTabs (line 28688) | def floatingPaneTabs(self) -> Tuple[PaneTab, ...]: method paneTabOfType (line 28698) | def paneTabOfType(self, type: EnumValue, index: int = 0) -> Optional[P... method findPane (line 28731) | def findPane(self, pane_id: int) -> Optional[Pane]: method findPaneTab (line 28745) | def findPaneTab(self, name: str) -> Optional[PaneTab]: method createFloatingPaneTab (line 28762) | def createFloatingPaneTab(self, pane_tab_type: EnumValue, position: Se... method createFloatingPane (line 28822) | def createFloatingPane(self, pane_tab_type: EnumValue, position: Seque... method floatingPanels (line 28823) | def floatingPanels(self) -> Tuple[FloatingPanel, ...]: method createFloatingPanel (line 28837) | def createFloatingPanel(self, pane_tab_type: EnumValue, position: Sequ... method paneUnderCursor (line 28862) | def paneUnderCursor(self) -> Optional[Pane]: method paneTabUnderCursor (line 28876) | def paneTabUnderCursor(self) -> Optional[PaneTab]: method name (line 28892) | def name(self) -> str: method shelfDock (line 28904) | def shelfDock(self) -> ShelfDock: method displaySideHelp (line 28913) | def displaySideHelp(self, show: bool = True) -> Optional[PaneTab]: method displayHelp (line 28927) | def displayHelp(self, node_type: NodeType) -> None: method displayHelpPath (line 28938) | def displayHelpPath(self, help_path: str) -> None: method displayHelpPyPanel (line 28951) | def displayHelpPyPanel(self, interface_name: str) -> None: method setAsCurrent (line 28964) | def setAsCurrent(self) -> None: class Dialog (line 28979) | class Dialog: method __init__ (line 28996) | def __init__(self, *args, **kwargs) -> None: ... method destroy (line 28998) | def destroy(self) -> None: method setValue (line 29010) | def setValue(self, name: str, value: OptionType) -> None: method enableValue (line 29023) | def enableValue(self, name: str, onoff: bool) -> None: method waitForValueToChangeTo (line 29038) | def waitForValueToChangeTo(self, name: str, new_value: OptionType) -> ... method menuItems (line 29057) | def menuItems(self, name: str) -> Tuple[str, ...]: method setMenuItems (line 29070) | def setMenuItems(self, name: str, items: Sequence[str]) -> None: method value (line 29083) | def value(self, name: str) -> OptionType: method addCallback (line 29095) | def addCallback(self, name: str, callback: Callable[[], None]) -> None: method removeCallback (line 29110) | def removeCallback(self, name: str, callback: Callable[[], None]) -> N... method callbacks (line 29124) | def callbacks(self, name: str) -> Tuple[Callable[[], None],...]: class dop (line 29137) | class dop: method __init__ (line 29147) | def __init__(self, *args, **kwargs) -> None: ... method isScriptSolverRunning (line 29150) | def isScriptSolverRunning() -> bool: method scriptSolverData (line 29164) | def scriptSolverData() -> Optional[DopData]: method scriptSolverNetwork (line 29198) | def scriptSolverNetwork() -> OpNode | None: method scriptSolverSimulation (line 29210) | def scriptSolverSimulation() -> Optional[DopSimulation]: ... method scriptSolverObjects (line 29212) | def scriptSolverObjects() -> Tuple[DopData, ...]: method scriptSolverNewObjects (line 29223) | def scriptSolverNewObjects() -> Tuple[DopData, ...]: method scriptSolverTimestepSize (line 29235) | def scriptSolverTimestepSize() -> float: method scriptSolverTime (line 29246) | def scriptSolverTime() -> float: ... class DopNode (line 29248) | class DopNode(OpNode): method __init__ (line 29258) | def __init__(self, *args, **kwargs) -> None: ... method dopNetNode (line 29260) | def dopNetNode(self) -> OpNode: method simulation (line 29269) | def simulation(self) -> DopSimulation: method processedObjects (line 29279) | def processedObjects(self) -> Tuple[DopObject, ...]: method createdObjects (line 29288) | def createdObjects(self) -> Tuple[DopObject, ...]: method isBypassed (line 29297) | def isBypassed(self) -> bool: method bypass (line 29306) | def bypass(self, on: bool) -> None: method isDisplayFlagSet (line 29316) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 29326) | def setDisplayFlag(self, on: bool) -> None: method isTemplateFlagSet (line 29336) | def isTemplateFlagSet(self) -> bool: method setTemplateFlag (line 29346) | def setTemplateFlag(self, on: bool) -> None: method displayNode (line 29356) | def displayNode(self) -> OpNode | None: method renderNode (line 29367) | def renderNode(self) -> OpNode | None: ... method objectsToProcess (line 29368) | def objectsToProcess(self) -> Tuple[DopObject, ...]: method pythonSolverData (line 29379) | def pythonSolverData(self) -> DopData: class DopObject (line 29395) | class DopObject(DopData): method __init__ (line 29409) | def __init__(self, *args, **kwargs) -> None: ... method name (line 29411) | def name(self) -> str: method objid (line 29420) | def objid(self) -> int: method matches (line 29438) | def matches(self, pattern: str) -> bool: method transform (line 29461) | def transform(self, include_geometry_transform: bool = True) -> Matrix4: class DopRecord (line 29505) | class DopRecord: method __init__ (line 29517) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 29519) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 29520) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 29521) | def __hash__(self) -> int: ... method recordType (line 29522) | def recordType(self) -> str: method recordIndex (line 29532) | def recordIndex(self) -> int: method fieldNames (line 29542) | def fieldNames(self) -> Tuple[str, ...]: method fieldType (line 29552) | def fieldType(self, field_name: str) -> EnumValue: method field (line 29565) | def field(self, field_name: str) -> OptionType: method setFieldBool (line 29604) | def setFieldBool(self, field_name: str, value: bool) -> None: method setField (line 29619) | def setField(self, field_name: str, value: OptionType) -> None: class DopRelationship (line 29640) | class DopRelationship(DopData): method __init__ (line 29656) | def __init__(self, *args, **kwargs) -> None: ... method name (line 29658) | def name(self) -> str: method matches (line 29667) | def matches(self, pattern: str) -> bool: method setGroup (line 29677) | def setGroup(self, objects: Sequence[DopObject]) -> None: method setAffectorGroup (line 29691) | def setAffectorGroup(self, objects: Sequence[DopObject]) -> None: method relationshipTypeData (line 29705) | def relationshipTypeData(self) -> Optional[DopData]: class DopSimulation (line 29715) | class DopSimulation: method __init__ (line 29729) | def __init__(self) -> None: method __eq__ (line 29740) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 29741) | def __ne__(self, other: object) -> bool: ... method createObject (line 29742) | def createObject(self, name: str, solve_on_creation_frame: bool) -> Op... method removeObject (line 29766) | def removeObject(self, obj: DopObject) -> None: method createRelationship (line 29782) | def createRelationship(self, name: str) -> Optional[DopData]: method removeRelationship (line 29804) | def removeRelationship(self, rel: DopRelationship) -> None: method dopNetNode (line 29820) | def dopNetNode(self) -> Node: method objects (line 29829) | def objects(self) -> Tuple[DopData, ...]: method relationships (line 29843) | def relationships(self) -> Tuple[DopData, ...]: method findObject (line 29867) | def findObject(self, obj_spec: str) -> Optional[DopData]: method findRelationship (line 29878) | def findRelationship(self, rel_spec: str) -> Optional[DopData]: method findData (line 29888) | def findData(self, data_spec: str) -> Optional[DopData]: method findAllObjects (line 29908) | def findAllObjects(self, obj_spec: str) -> Tuple[DopData, ...]: method findAllRelationships (line 29923) | def findAllRelationships(self, rel_spec: str) -> Tuple[DopData, ...]: method findAllData (line 29934) | def findAllData(self, data_spec: str) -> Tuple[DopData, ...]: method time (line 29944) | def time(self) -> float: method setTime (line 29956) | def setTime(self, t: float, resim_last_timestep: bool = False, force_r... method timestep (line 29982) | def timestep(self) -> float: method setTimestep (line 29991) | def setTimestep(self, t: float) -> None: method memoryUsage (line 30004) | def memoryUsage(self) -> int: class Drawable (line 30014) | class Drawable: method __init__ (line 30083) | def __init__(self, *args, **kwargs) -> None: ... method name (line 30085) | def name(self) -> str: method label (line 30094) | def label(self) -> str: method show (line 30103) | def show(self, value: bool) -> None: method visible (line 30117) | def visible(self) -> bool: method transform (line 30126) | def transform(self) -> Matrix4: method setTransform (line 30136) | def setTransform(self, xform: Matrix4) -> None: method setLabel (line 30151) | def setLabel(self, label: str) -> None: method setIsControl (line 30160) | def setIsControl(self, is_control: bool) -> None: method isControl (line 30176) | def isControl(self) -> bool: class Drawable2D (line 30186) | class Drawable2D(Drawable): method __init__ (line 30213) | def __init__(self, scene_viewer: SceneViewer|CompositorViewer, type: E... method setParams (line 30259) | def setParams(self, params: dict[str, Any]) -> None: method params (line 30512) | def params(self) -> dict[str, Any]: method draw (line 30523) | def draw(self, handle: Handle, params: dict[str, Any]|None = ...) -> N... method type (line 30547) | def type(self) -> EnumValue: method setPickable (line 30556) | def setPickable(self, value: bool) -> None: method isPickable (line 30571) | def isPickable(self) -> bool: method mapToModel (line 30581) | def mapToModel(self, x: float, y: float, z: float = 0) -> Vector3: class AdvancedDrawable (line 30613) | class AdvancedDrawable(Drawable): method __init__ (line 30639) | def __init__(self, *args, **kwargs) -> None: ... method setParams (line 30641) | def setParams(self, params: Mapping[str, Any]|None = ...) -> None: method draw (line 30755) | def draw(self, handle: Handle, params: Mapping[str, Any]|None = ...) -... class SimpleDrawable (line 30780) | class SimpleDrawable(Drawable): method __init__ (line 30913) | def __init__(self, scene_viewer: SceneViewer, geometry: Geometry|EnumV... method enable (line 30953) | def enable(self, value: bool) -> None: method enabled (line 30967) | def enabled(self) -> bool: method setDisplayMode (line 30976) | def setDisplayMode(self, value: EnumValue) -> None: method displayMode (line 30985) | def displayMode(self) -> EnumValue: ... method setWireframeColor (line 30986) | def setWireframeColor(self, color: Color) -> None: method wireframeColor (line 31001) | def wireframeColor(self) -> Color: method setUseWireframeColor (line 31010) | def setUseWireframeColor(self, value: bool) -> None: method useWireframeColor (line 31024) | def useWireframeColor(self) -> bool: method setXray (line 31033) | def setXray(self, value: bool) -> None: method isXray (line 31046) | def isXray(self) -> bool: method setShowMaterials (line 31055) | def setShowMaterials(self, value: bool) -> None: method isShowMaterials (line 31069) | def isShowMaterials(self) -> bool: method setCastShadows (line 31078) | def setCastShadows(self, value: bool) -> None: method isCastShadows (line 31091) | def isCastShadows(self) -> bool: method setDrawOutline (line 31100) | def setDrawOutline(self, value: bool) -> None: method isDrawOutline (line 31113) | def isDrawOutline(self) -> bool: method setOutlineColor (line 31122) | def setOutlineColor(self, color: Color|Vector4) -> None: method outlineColor (line 31138) | def outlineColor(self) -> Vector4: method setSeparateOutline (line 31147) | def setSeparateOutline(self, value: bool) -> None: method isSeparateOutline (line 31164) | def isSeparateOutline(self) -> bool: method setOutlineOnly (line 31173) | def setOutlineOnly(self, value: bool) -> None: method isOutlineOnly (line 31188) | def isOutlineOnly(self) -> bool: method geometry (line 31197) | def geometry(self) -> Geometry: method setGeometry (line 31207) | def setGeometry(self, geometry: Geometry) -> None: method setVisibleInViewport (line 31221) | def setVisibleInViewport(self, viewport: GeometryViewport) -> None: method setVisibleInAllViewports (line 31232) | def setVisibleInAllViewports(self) -> None: method isVisibleInViewport (line 31242) | def isVisibleInViewport(self, viewport: GeometryViewport) -> bool: class Edge (line 31252) | class Edge: method __init__ (line 31263) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 31265) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 31266) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 31267) | def __hash__(self) -> int: ... method geometry (line 31268) | def geometry(self) -> Geometry: ... method points (line 31269) | def points(self) -> Tuple[Point, ...]: method edgeId (line 31278) | def edgeId(self) -> str: method length (line 31287) | def length(self) -> float: method prims (line 31296) | def prims(self) -> Tuple[Prim, ...]: class EdgeGroup (line 31306) | class EdgeGroup: method __init__ (line 31322) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 31324) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 31325) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 31326) | def __hash__(self) -> int: ... method geometry (line 31327) | def geometry(self) -> Geometry: method name (line 31336) | def name(self) -> str: method iterEdges (line 31345) | def iterEdges(self) -> _EdgeTupleGenerator: method edges (line 31359) | def edges(self) -> Tuple[Edge, ...]: method contains (line 31370) | def contains(self, edge: Edge) -> bool: method add (line 31382) | def add(self, edge_or_list_or_edge_group: Edge|Sequence[Edge]|EdgeGrou... method remove (line 31403) | def remove(self, edge_or_list_or_edge_group: Edge|Sequence[Edge]|EdgeG... method clear (line 31424) | def clear(self) -> None: ... method destroy (line 31425) | def destroy(self) -> None: method edgeCount (line 31438) | def edgeCount(self) -> int: method dataId (line 31447) | def dataId(self) -> AttribDataId: method incrementDataId (line 31456) | def incrementDataId(self) -> None: class EditableDopGeometryGuard (line 31467) | class EditableDopGeometryGuard: method __init__ (line 31469) | def __init__(self, *args, **kwargs) -> None: ... method __enter__ (line 31471) | def __enter__(self) -> Optional[Geometry]: ... method __exit__ (line 31472) | def __exit__(self, type: Any, value: Any, traceback: Any) -> None: ... class FlipbookSettings (line 31474) | class FlipbookSettings: method __init__ (line 31515) | def __init__(self, *args, **kwargs) -> None: ... method stash (line 31517) | def stash(self) -> FlipbookSettings: method copy (line 31528) | def copy(self, from_settings: FlipbookSettings) -> None: method outputToMPlay (line 31537) | def outputToMPlay(self, value: bool|None = ...) -> bool|None: method leaveFrameAtEnd (line 31546) | def leaveFrameAtEnd(self, value: bool|None = ...) -> bool|None: method output (line 31556) | def output(self, value: str|None = ...) -> str|None: method sessionLabel (line 31565) | def sessionLabel(self, value: str|None = ...) -> str|None: method visibleObjects (line 31574) | def visibleObjects(self, value: str|None = ...) -> str|None: method visibleTypes (line 31583) | def visibleTypes(self, value: EnumValue|None = ...) -> EnumValue|None: method frameRange (line 31592) | def frameRange(self, value: Sequence[float]|None = ...) -> Tuple[float... method frameIncrement (line 31602) | def frameIncrement(self, value: float|None = ...) -> float|None: method beautyPassOnly (line 31611) | def beautyPassOnly(self, value: bool|None = ...) -> bool|None: method renderAllViewports (line 31620) | def renderAllViewports(self, value: bool|None = ...) -> bool|None: method appendFramesToCurrent (line 31630) | def appendFramesToCurrent(self, value: bool|None = ...) -> bool|None: method scopeChannelKeyframesOnly (line 31640) | def scopeChannelKeyframesOnly(self, value: bool|None = ...) -> bool|None: method blockEditing (line 31649) | def blockEditing(self, value: bool|None = ...) -> bool|None: method initializeSimulations (line 31658) | def initializeSimulations(self, value: bool|None = ...) -> bool|None: method audioFilename (line 31669) | def audioFilename(self, audio_file: str|None = ...) -> str|None: method audioFrameStart (line 31678) | def audioFrameStart(self, audio_file: float|None = ...) -> float|None: method audioTimeOffset (line 31687) | def audioTimeOffset(self, value: float|None = ...) -> float|None: method backgroundImage (line 31696) | def backgroundImage(self, value: str|None = ...) -> str|None: method overrideGamma (line 31705) | def overrideGamma(self, value: bool|None = ...) -> bool|None: method gamma (line 31714) | def gamma(self, value: float|None = ...) -> float|None: method overrideLUT (line 31723) | def overrideLUT(self, value: bool|None = ...) -> bool|None: method LUT (line 31732) | def LUT(self, value: str|None = ...) -> str|None: method setUseFrameTimeLimit (line 31741) | def setUseFrameTimeLimit(self, limit: bool) -> None: method useFrameTimeLimit (line 31750) | def useFrameTimeLimit(self) -> bool: method setFrameTimeLimit (line 31759) | def setFrameTimeLimit(self, t: float) -> None: method frameTimeLimit (line 31770) | def frameTimeLimit(self) -> float: method setUseFrameProgressLimit (line 31780) | def setUseFrameProgressLimit(self, limit: bool) -> None: method useFrameProgressLimit (line 31789) | def useFrameProgressLimit(self) -> bool: method setFrameProgessLimit (line 31798) | def setFrameProgessLimit(self, t: float) -> None: method frameProgressLimit (line 31809) | def frameProgressLimit(self) -> float: method antialias (line 31820) | def antialias(self, value: EnumValue|None = ...) -> EnumValue|None: method useMotionBlur (line 31840) | def useMotionBlur(self, value: bool|None = ...) -> bool|None: method motionBlurSegments (line 31849) | def motionBlurSegments(self, value: int|None = ...) -> int|None: method motionBlurFrameRange (line 31858) | def motionBlurFrameRange(self, value: EnumValue|None = ...) -> EnumVal... method shutterFromCamera (line 31876) | def shutterFromCamera(self, value: bool|None = ...) -> bool|None: method shutter (line 31886) | def shutter(self, value: float|None = ...) -> float|None: method useDepthOfField (line 31895) | def useDepthOfField(self, value: bool|None = ...) -> bool|None: method depthOfFieldFromCamera (line 31904) | def depthOfFieldFromCamera(self, value: bool|None = ...) -> bool|None: method depthOfFieldQuality (line 31913) | def depthOfFieldQuality(self, value: float|None = ...) -> float|None: method focusDistance (line 31922) | def focusDistance(self, value: float|None = ...) -> float|None: method aperture (line 31931) | def aperture(self, value: float|None = ...) -> float|None: method fStop (line 31940) | def fStop(self, value: float|None = ...) -> float|None: method outputZoom (line 31949) | def outputZoom(self, value: int|None = ...) -> int|None: method useResolution (line 31958) | def useResolution(self, value: bool|None = ...) -> bool|None: method resolution (line 31968) | def resolution(self, value: Tuple[int, int]|None = ...) -> Tuple[int, ... method useSheetSize (line 31979) | def useSheetSize(self, value: bool|None = ...) -> bool|None: method sheetSize (line 31989) | def sheetSize(self, value: Sequence[int]|None = ...) -> Tuple[int, int... method cropOutMaskOverlay (line 32000) | def cropOutMaskOverlay(self, value: bool|None = ...) -> bool|None: method fromAudioPanel (line 32009) | def fromAudioPanel(self, value: bool|None = ...) -> bool|None: class FloatingPanel (line 32020) | class FloatingPanel: method __init__ (line 32049) | def __init__(self, *args, **kwargs) -> None: ... method panes (line 32051) | def panes(self) -> Tuple[Pane, ...]: method paneTabs (line 32063) | def paneTabs(self) -> Tuple[PaneTab, ...]: method paneTabOfType (line 32073) | def paneTabOfType(self, type: EnumValue, index: int = 0) -> Optional[P... method findPaneTab (line 32093) | def findPaneTab(self, name: str) -> Optional[PaneTab]: method name (line 32103) | def name(self) -> str: method setName (line 32113) | def setName(self, name: str) -> None: method containsPlaybar (line 32125) | def containsPlaybar(self) -> bool: method setContainsPlaybar (line 32136) | def setContainsPlaybar(self, on: bool) -> None: method containsShelf (line 32148) | def containsShelf(self) -> bool: method setContainsShelf (line 32159) | def setContainsShelf(self, on: bool) -> None: method containsStatusBar (line 32171) | def containsStatusBar(self) -> bool: method setContainsStatusBar (line 32183) | def setContainsStatusBar(self, on: bool) -> None: method containsMenuBar (line 32195) | def containsMenuBar(self) -> bool: method setContainsMenuBar (line 32206) | def setContainsMenuBar(self, on: bool) -> None: method isAttachedToDesktop (line 32218) | def isAttachedToDesktop(self) -> bool: method attachToDesktop (line 32231) | def attachToDesktop(self, on: bool) -> None: method isFullscreen (line 32241) | def isFullscreen(self) -> bool: method setIsFullscreen (line 32252) | def setIsFullscreen(self, on: bool) -> None: method position (line 32263) | def position(self) -> Vector2: method setPosition (line 32273) | def setPosition(self, position: Sequence[int]) -> None: method size (line 32285) | def size(self) -> Vector2: method setSize (line 32294) | def setSize(self, size: Sequence[int]) -> None: method close (line 32307) | def close(self) -> None: class FloatParmTemplate (line 32318) | class FloatParmTemplate(ParmTemplate): method __init__ (line 32328) | def __init__(self, name: str, label: str, num_components: int, default... method minValue (line 32406) | def minValue(self) -> float: method setMinValue (line 32417) | def setMinValue(self, min_value: float) -> None: method maxValue (line 32428) | def maxValue(self) -> float: method setMaxValue (line 32439) | def setMaxValue(self, max_value: float) -> None: method minIsStrict (line 32450) | def minIsStrict(self) -> bool: method setMinIsStrict (line 32470) | def setMinIsStrict(self, on: bool) -> None: method maxIsStrict (line 32481) | def maxIsStrict(self) -> bool: method setMaxIsStrict (line 32492) | def setMaxIsStrict(self, on: bool) -> None: method defaultValue (line 32503) | def defaultValue(self) -> Tuple[float, ...]: method setDefaultValue (line 32518) | def setDefaultValue(self, default_value: Sequence[float]) -> None: method defaultExpression (line 32533) | def defaultExpression(self) -> Tuple[str, ...]: method setDefaultExpression (line 32560) | def setDefaultExpression(self, default_expression: Sequence[str]) -> N... method defaultExpressionLanguage (line 32576) | def defaultExpressionLanguage(self) -> Tuple[EnumValue, ...]: method setDefaultExpressionLanguage (line 32590) | def setDefaultExpressionLanguage(self, default_expression_language: Se... class FolderParmTemplate (line 32608) | class FolderParmTemplate(ParmTemplate): method __init__ (line 32640) | def __init__(self, name: str, label: str, parm_templates: Sequence[Par... method folderStyle (line 32712) | def folderStyle(self) -> EnumValue: ... method folderType (line 32713) | def folderType(self) -> EnumValue: method setFolderType (line 32723) | def setFolderType(self, folder_type: EnumValue) -> None: method isActualFolder (line 32732) | def isActualFolder(self) -> bool: method defaultValue (line 32747) | def defaultValue(self) -> int: method setDefaultValue (line 32760) | def setDefaultValue(self, default_value: int) -> None: method tabConditionals (line 32772) | def tabConditionals(self) -> Optional[dict[EnumValue, str]]: method setTabConditional (line 32791) | def setTabConditional(self, cond_type: EnumValue, conditional: str) ->... method endsTabGroup (line 32809) | def endsTabGroup(self) -> bool: method setEndsTabGroup (line 32823) | def setEndsTabGroup(self, on: bool) -> None: method parmTemplates (line 32838) | def parmTemplates(self) -> Tuple[ParmTemplate, ...]: method setParmTemplates (line 32853) | def setParmTemplates(self, parm_templates: Sequence[ParmTemplate]) -> ... method addParmTemplate (line 32863) | def addParmTemplate(self, parm_template: ParmTemplate) -> None: class FolderSetParmTemplate (line 32878) | class FolderSetParmTemplate(ParmTemplate): method __init__ (line 32902) | def __init__(self, name: str, folder_names: Sequence[str], folder_type... method folderNames (line 32926) | def folderNames(self) -> list[str]: method setFolderNames (line 32940) | def setFolderNames(self, folder_names: Sequence[str]) -> None: ... method folderType (line 32941) | def folderType(self) -> EnumValue: method setFolderType (line 32950) | def setFolderType(self, folder_type: EnumValue) -> None: method folderStyle (line 32962) | def folderStyle(self) -> EnumValue: class GadgetContext (line 32972) | class GadgetContext: method __init__ (line 32995) | def __init__(self, *args, **kwargs) -> None: ... method gadget (line 32997) | def gadget(self) -> str: method gadgetLabel (line 33006) | def gadgetLabel(self) -> str: method name (line 33015) | def name(self) -> str: method label (line 33025) | def label(self) -> str: method component1 (line 33034) | def component1(self) -> int: method component2 (line 33049) | def component2(self) -> int: method isLocating (line 33064) | def isLocating(self) -> bool: method isPicking (line 33073) | def isPicking(self) -> bool: method isDrawing (line 33082) | def isDrawing(self) -> bool: method isLocated (line 33092) | def isLocated(self, gadget_name: str) -> bool: method isPicked (line 33105) | def isPicked(self, gadget_name: str) -> bool: class galleries (line 33119) | class galleries: method __init__ (line 33132) | def __init__(self, *args, **kwargs) -> None: ... method galleries (line 33135) | def galleries() -> Tuple[Gallery, ...]: method galleryEntries (line 33146) | def galleryEntries(name_pattern: Optional[str] = None, label_pattern: ... method installGallery (line 33208) | def installGallery(gallery_path: str) -> Optional[Gallery]: method removeGallery (line 33222) | def removeGallery(gallery_path: str) -> bool: method createGalleryEntry (line 33237) | def createGalleryEntry(gallery_path: str, entry_name: str, node: Optio... class Gallery (line 33262) | class Gallery: method __init__ (line 33278) | def __init__(self, *args, **kwargs) -> None: ... method galleryEntries (line 33280) | def galleryEntries(self, name_pattern: Optional[str] = None, label_pat... method createEntry (line 33320) | def createEntry(self, entry_name: str, node: Optional[Node] = None) ->... method deleteEntry (line 33321) | def deleteEntry(self, entry_name: str) -> None: ... class GalleryEntry (line 33323) | class GalleryEntry: method __init__ (line 33367) | def __init__(self, *args, **kwargs) -> None: ... method canApplyToNode (line 33369) | def canApplyToNode(self, node: Node) -> bool: method applyToNode (line 33383) | def applyToNode(self, node: Node) -> None: method canCreateChildNode (line 33399) | def canCreateChildNode(self, parent: Node) -> bool: method createChildNode (line 33408) | def createChildNode(self, parent: Node) -> Node: method setEqual (line 33424) | def setEqual(self, entry: GalleryEntry) -> None: method name (line 33438) | def name(self) -> str: method setName (line 33447) | def setName(self, name: str) -> None: method label (line 33460) | def label(self) -> str: method setLabel (line 33469) | def setLabel(self, label: str) -> None: method description (line 33482) | def description(self) -> str: method setDescription (line 33493) | def setDescription(self, description: str) -> None: method helpURL (line 33506) | def helpURL(self) -> str: method setHelpURL (line 33515) | def setHelpURL(self, helpurl: str) -> None: method requiredHDAFile (line 33524) | def requiredHDAFile(self) -> str: method setRequiredHDAFile (line 33535) | def setRequiredHDAFile(self, hda_file: str) -> None: method icon (line 33549) | def icon(self) -> str: method setIcon (line 33559) | def setIcon(self, icon: str) -> None: method allowIconRegeneration (line 33569) | def allowIconRegeneration(self) -> bool: method setAllowIconRegeneration (line 33580) | def setAllowIconRegeneration(self, on: bool) -> None: method isHidden (line 33589) | def isHidden(self) -> bool: method setHidden (line 33599) | def setHidden(self, hide: bool) -> None: method bestNodeType (line 33609) | def bestNodeType(self) -> Optional[NodeType]: method nodeTypeNames (line 33619) | def nodeTypeNames(self) -> Tuple[str, ...]: method setNodeTypeNames (line 33629) | def setNodeTypeNames(self, nodetypes: Sequence[str]) -> None: method categories (line 33644) | def categories(self) -> Tuple[str, ...]: method setCategories (line 33653) | def setCategories(self, categories: Sequence[str]) -> None: method keywords (line 33667) | def keywords(self) -> Tuple[str, ...]: method setKeywords (line 33676) | def setKeywords(self, keywords: Sequence[str]) -> None: method nodeTypeCategory (line 33689) | def nodeTypeCategory(self) -> NodeTypeCategory: method setNodeTypeCategory (line 33699) | def setNodeTypeCategory(self, category: NodeTypeCategory) -> None: method script (line 33713) | def script(self) -> str: method setScript (line 33723) | def setScript(self, script: str) -> None: method setScriptFromNode (line 33738) | def setScriptFromNode(self, node: Node) -> None: method setContentsFromNode (line 33754) | def setContentsFromNode(self, node: Node) -> None: class Geometry (line 33771) | class Geometry: method __init__ (line 33849) | def __init__(self, geo: Optional[Geometry] = None, clone_data_ids: boo... method sopNode (line 33866) | def sopNode(self) -> Optional[SopNode]: method sopNodeOutputIndex (line 33878) | def sopNodeOutputIndex(self) -> int: method isValid (line 33895) | def isValid(self) -> bool: ... method freeze (line 33896) | def freeze(self, read_only: bool = False, clone_data_ids: bool = False... method pointCount (line 33951) | def pointCount(self) -> int: method vertexCount (line 33960) | def vertexCount(self) -> int: method primCount (line 33969) | def primCount(self) -> int: method iterPoints (line 33978) | def iterPoints(self) -> _PointTupleGenerator: method points (line 34011) | def points(self) -> Tuple[Point, ...]: method point (line 34022) | def point(self, index: int) -> Optional[Point]: method iterPrims (line 34037) | def iterPrims(self) -> _PrimTupleGenerator: method prims (line 34074) | def prims(self) -> Tuple[Prim, ...]: method prim (line 34097) | def prim(self, index: int) -> Optional[Prim]: method primTypeNames (line 34112) | def primTypeNames(self) -> Tuple[str, ...]: method primTypeLabels (line 34126) | def primTypeLabels(self) -> Tuple[str, ...]: method primTypeIcons (line 34140) | def primTypeIcons(self) -> Tuple[str, ...]: method containsPrimType (line 34154) | def containsPrimType(self, type_or_name: EnumValue|str) -> bool: method countPrimType (line 34174) | def countPrimType(self, type_or_name: EnumValue|str) -> int: method countUnusedPoints (line 34194) | def countUnusedPoints(self) -> int: method primsOfType (line 34204) | def primsOfType(self, prim_type: EnumValue) -> Tuple[Prim, ...]: method iterPrimsOfType (line 34215) | def iterPrimsOfType(self, prim_type: EnumValue) -> Iterator[Prim]: method preferredPrecision (line 34227) | def preferredPrecision(self) -> int: method setPreferredPrecision (line 34239) | def setPreferredPrecision(self, prec: int) -> None: method averageMinDistance (line 34250) | def averageMinDistance(self, local_transform: Matrix4, geometry: Geome... method averageEdgeLength (line 34282) | def averageEdgeLength(self) -> float: method globPoints (line 34295) | def globPoints(self, pattern: str, ordered: bool = False) -> Tuple[Poi... method globPrims (line 34361) | def globPrims(self, pattern: str) -> Tuple[Prim, ...]: method globVertices (line 34375) | def globVertices(self, pattern: str) -> Tuple[Vertex, ...]: ... method globEdges (line 34376) | def globEdges(self, pattern: str) -> Tuple[Edge, ...]: ... method findPointAttrib (line 34377) | def findPointAttrib(self, name: str, scope: EnumValue = ...) -> Attrib... method findPrimAttrib (line 34402) | def findPrimAttrib(self, name: str, scope: EnumValue = ...) -> Attrib|... method findVertexAttrib (line 34421) | def findVertexAttrib(self, name: str, scope: EnumValue = ...) -> Attri... method findGlobalAttrib (line 34440) | def findGlobalAttrib(self, name: str, scope: EnumValue = ...) -> Attri... method attribType (line 34460) | def attribType(self) -> EnumValue: method floatAttribValue (line 34479) | def floatAttribValue(self, name_or_attrib: str|Attrib) -> float: method floatListAttribValue (line 34497) | def floatListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[fl... method intAttribValue (line 34515) | def intAttribValue(self, attrib: Attrib|str) -> int: method intListAttribValue (line 34527) | def intListAttribValue(self, name_or_attrib: Attrib|str) -> Tuple[int,... method stringAttribValue (line 34539) | def stringAttribValue(self, attrib: Attrib|str) -> str: method stringListAttribValue (line 34551) | def stringListAttribValue(self, name_or_attrib: Attrib|str) -> Tuple[s... method dictAttribValue (line 34563) | def dictAttribValue(self, attrib: Attrib|str) -> AttribDictReturnType: method dictListAttribValue (line 34575) | def dictListAttribValue(self, name_or_attrib: Attrib|str) -> Sequence[... method pointFloatAttribValues (line 34590) | def pointFloatAttribValues(self, name: str) -> Tuple[float, ...]: method pointFloatAttribValuesAsString (line 34618) | def pointFloatAttribValuesAsString(self, name: str, float_type: EnumVa... method primFloatAttribValues (line 34657) | def primFloatAttribValues(self, name: str) -> Tuple[float, ...]: method primFloatAttribValuesAsString (line 34685) | def primFloatAttribValuesAsString(self, name: str, float_type: EnumVal... method vertexFloatAttribValues (line 34718) | def vertexFloatAttribValues(self, name: str) -> Tuple[float, ...]: method vertexFloatAttribValuesAsString (line 34746) | def vertexFloatAttribValuesAsString(self, name: str, float_type: EnumV... method pointIntAttribValues (line 34785) | def pointIntAttribValues(self, name: str) -> Tuple[int, ...]: method pointIntAttribValuesAsString (line 34812) | def pointIntAttribValuesAsString(self, name: str, int_type: EnumValue ... method primIntAttribValues (line 34850) | def primIntAttribValues(self, name: str) -> Tuple[int, ...]: method primIntAttribValuesAsString (line 34877) | def primIntAttribValuesAsString(self, name: str, int_type: EnumValue =... method vertexIntAttribValues (line 34915) | def vertexIntAttribValues(self, name: str) -> Tuple[int, ...]: method vertexIntAttribValuesAsString (line 34942) | def vertexIntAttribValuesAsString(self, name: str, int_type: EnumValue... method pointStringAttribValues (line 34980) | def pointStringAttribValues(self, name: str) -> Tuple[str, ...]: method primStringAttribValues (line 35007) | def primStringAttribValues(self, name: str) -> Tuple[str, ...]: method vertexStringAttribValues (line 35034) | def vertexStringAttribValues(self, name: str) -> Tuple[str, ...]: method setPointFloatAttribValues (line 35061) | def setPointFloatAttribValues(self, name: str, values: Sequence[float]... method setPrimFloatAttribValues (line 35090) | def setPrimFloatAttribValues(self, name: str, values: Sequence[float])... method setVertexFloatAttribValues (line 35119) | def setVertexFloatAttribValues(self, name: str, values: Sequence[float... method setPointFloatAttribValuesFromString (line 35148) | def setPointFloatAttribValuesFromString(self, name: str, values: bytes... method setPrimFloatAttribValuesFromString (line 35149) | def setPrimFloatAttribValuesFromString(self, name: str, values: bytes,... method setVertexFloatAttribValuesFromString (line 35150) | def setVertexFloatAttribValuesFromString(self, name: str, values: byte... method setPointIntAttribValues (line 35151) | def setPointIntAttribValues(self, name: str, values: Sequence[int]) ->... method setPrimIntAttribValues (line 35180) | def setPrimIntAttribValues(self, name: str, values: Sequence[int]) -> ... method setVertexIntAttribValues (line 35209) | def setVertexIntAttribValues(self, name: str, values: Sequence[int]) -... method setPointIntAttribValuesFromString (line 35238) | def setPointIntAttribValuesFromString(self, name: str, values: bytes, ... method setPrimIntAttribValuesFromString (line 35239) | def setPrimIntAttribValuesFromString(self, name: str, values: bytes, i... method setVertexIntAttribValuesFromString (line 35240) | def setVertexIntAttribValuesFromString(self, name: str, values: bytes,... method setPointStringAttribValues (line 35241) | def setPointStringAttribValues(self, name: str, values: Sequence[str])... method setPrimStringAttribValues (line 35270) | def setPrimStringAttribValues(self, name: str, values: Sequence[str]) ... method setVertexStringAttribValues (line 35299) | def setVertexStringAttribValues(self, name: str, values: Sequence[str]... method renamePointAttrib (line 35328) | def renamePointAttrib(self, old_name: str, new_name: str) -> None: method renamePrimAttrib (line 35345) | def renamePrimAttrib(self, old_name: str, new_name: str) -> None: method renameVertexAttrib (line 35362) | def renameVertexAttrib(self, old_name: str, new_name: str) -> None: method renameGlobalAttrib (line 35379) | def renameGlobalAttrib(self, old_name: str, new_name: str) -> None: method createPoint (line 35396) | def createPoint(self) -> Point: method createPoints (line 35416) | def createPoints(self, point_positions: Sequence[Sequence[float]]) -> ... method createPolygon (line 35443) | def createPolygon(self, is_closed: bool = True) -> Polygon: method createPolygons (line 35474) | def createPolygons(self, point_positions: Sequence[Point|Sequence[int]... method createPacked (line 35520) | def createPacked(self, packed_type: str, point: Optional[Point] = None... method createTetrahedron (line 35540) | def createTetrahedron(self) -> Prim: method createTetrahedronInPlace (line 35558) | def createTetrahedronInPlace(self, p0: Point, p1: Point, p2: Point, p3... method createHexahedron (line 35575) | def createHexahedron(self) -> Prim: method createHexahedronInPlace (line 35593) | def createHexahedronInPlace(self, p0: Point, p1: Point, p2: Point, p3:... method createNURBSCurve (line 35611) | def createNURBSCurve(self, num_points: int = 4, is_closed: bool = Fals... method createBezierCurve (line 35668) | def createBezierCurve(self, num_points: int = 4, is_closed: bool = Fal... method createNURBSSurface (line 35709) | def createNURBSSurface(self, rows: int, cols: int, is_closed_in_u: boo... method createBezierSurface (line 35772) | def createBezierSurface(self, rows: int, cols: int, is_closed_in_u: bo... method createMeshSurface (line 35836) | def createMeshSurface(self, rows: int, cols: int, is_closed_in_u: bool... method createVolume (line 35853) | def createVolume(self, xres: int, yres: int, zres: int, bounding_box: ... method createChannelPrim (line 35876) | def createChannelPrim(self) -> ChannelPrim: method transform (line 35886) | def transform(self, matrix: Matrix4) -> None: method transformPrims (line 35902) | def transformPrims(self, prims: Sequence[Prim]|PrimGroup, matrix: Matr... method deletePrims (line 35953) | def deletePrims(self, prims: Sequence[Prim]|PrimGroup, keep_points: bo... method deletePrimsOutsideBoundingBox (line 35982) | def deletePrimsOutsideBoundingBox(self, bbox: BoundingBox) -> None: method deletePoints (line 35997) | def deletePoints(self, points: Iterable[Point]|PointGroup) -> None: method addAttrib (line 36024) | def addAttrib(self, type: EnumValue, name: str, default_value: AttribA... method addArrayAttrib (line 36150) | def addArrayAttrib(self, type: EnumValue, name: str, data_type: EnumVa... method setGlobalAttribValue (line 36189) | def setGlobalAttribValue(self, name_or_attrib: str|Attrib, attrib_valu... method copyAttrib (line 36246) | def copyAttrib(self, attrib: Attrib) -> None: method copyAttribs (line 36258) | def copyAttribs(self, attribs: Sequence[Attrib]) -> None: ... method copy (line 36259) | def copy(self, geometry: Geometry, clone_data_ids: bool = False, prims... method copyPoints (line 36286) | def copyPoints(self, geometry: Geometry, points: Optional[PointGroup] ... method copyPrims (line 36309) | def copyPrims(self, geometry: Geometry, prims: Optional[PrimGroup] = N... method copyEdges (line 36332) | def copyEdges(self, geometry: Geometry, edges: Optional[EdgeGroup] = N... method attribValue (line 36355) | def attribValue(self, name_or_attrib: str|Attrib) -> AttribReturnType|... method attributeCaptureRegions (line 36368) | def attributeCaptureRegions(self) -> Tuple[str, ...]: method attributeCaptureObjectPaths (line 36383) | def attributeCaptureObjectPaths(self) -> Tuple[str, ...]: method intrinsicNames (line 36405) | def intrinsicNames(self) -> Tuple[str, ...]: method intrinsicValue (line 36419) | def intrinsicValue(self, intrinsic_name: str) -> AttribReturnType: method intrinsicSize (line 36447) | def intrinsicSize(self, intrinsic_name: str) -> int: ... method intrinsicReadOnly (line 36448) | def intrinsicReadOnly(self, intrinsic_name: str) -> bool: ... method setIntrinsicValue (line 36449) | def setIntrinsicValue(self, intrinsic_name: str, value: AttribArgType)... method data (line 36470) | def data(self) -> bytes: method load (line 36484) | def load(self, data: bytes) -> None: method saveToFile (line 36500) | def saveToFile(self, file_name: str) -> None: method loadFromFile (line 36517) | def loadFromFile(self, file_name: str) -> None: method merge (line 36539) | def merge(self, geometry: Geometry, clone_data_ids: bool = False, prim... method mergePoints (line 36566) | def mergePoints(self, geometry: Geometry, points: Optional[PointGroup]... method mergePrims (line 36589) | def mergePrims(self, geometry: Geometry, prims: Optional[PrimGroup] = ... method mergeEdges (line 36613) | def mergeEdges(self, geometry: Geometry, edges: Optional[EdgeGroup] = ... method clear (line 36637) | def clear(self) -> None: method intersect (line 36650) | def intersect(self, rayorig: Vector3, dir: Vector3, p: Vector3, n: Vec... method pointGroups (line 36737) | def pointGroups(self, scope: EnumValue = ...) -> Tuple[PointGroup,...]: method findPointGroup (line 36757) | def findPointGroup(self, name: str, scope: EnumValue = ...) -> PointGr... method createPointGroup (line 36776) | def createPointGroup(self, name: str, is_ordered: bool = False, unique... method primGroups (line 36808) | def primGroups(self, scope: EnumValue = ...) -> Tuple[PrimGroup,...]: method findPrimGroup (line 36822) | def findPrimGroup(self, name: str, scope: EnumValue = ...) -> PrimGrou... method createPrimGroup (line 36841) | def createPrimGroup(self, name: str, is_ordered: bool = False, unique_... method edgeGroups (line 36873) | def edgeGroups(self, scope: EnumValue = ...) -> Tuple[EdgeGroup,...]: method findEdgeGroup (line 36887) | def findEdgeGroup(self, name: str, scope: EnumValue = ...) -> EdgeGrou... method createEdgeGroup (line 36906) | def createEdgeGroup(self, name: str) -> EdgeGroup: method vertexGroups (line 36922) | def vertexGroups(self, scope: EnumValue = ...) -> Tuple[VertexGroup,...]: method findVertexGroup (line 36942) | def findVertexGroup(self, name: str, scope: EnumValue = ...) -> Vertex... method createVertexGroup (line 36961) | def createVertexGroup(self, name: str, is_ordered: bool = False) -> Ve... method findEdge (line 36982) | def findEdge(self, p0: Point, p1: Point) -> Optional[Edge]: method boundingBox (line 37000) | def boundingBox(self, transform: Optional[Matrix4] = None) -> Bounding... method pointBoundingBox (line 37016) | def pointBoundingBox(self, ptgroup: str) -> BoundingBox: method primBoundingBox (line 37030) | def primBoundingBox(self, primgroup: str) -> BoundingBox: method orientedBoundingBox (line 37044) | def orientedBoundingBox(self) -> OrientedBoundingBox: method orientedPointBoundingBox (line 37054) | def orientedPointBoundingBox(self, ptgroup: str) -> OrientedBoundingBox: method orientedPrimBoundingBox (line 37068) | def orientedPrimBoundingBox(self, primgroup: str) -> OrientedBoundingBox: method nearestPrim (line 37082) | def nearestPrim(self, position: Sequence[float]) -> Tuple[Prim, float,... method nearestPoint (line 37101) | def nearestPoint(self, position: Sequence[float], ptgroup: Optional[st... method nearestPoints (line 37120) | def nearestPoints(self, position: Sequence[float], max_points: int, pt... method primLoop (line 37139) | def primLoop(self, prims: Sequence[Prim], loop_type: EnumValue) -> Tup... method pointLoop (line 37168) | def pointLoop(self, points: Sequence[Point], loop_type: EnumValue) -> ... method edgeLoop (line 37196) | def edgeLoop(self, edges: Sequence[Edge], loop_type: EnumValue, full_l... method pointNormals (line 37239) | def pointNormals(self, points: Sequence[Point]|PointGroup) -> Sequence... method importLop (line 37254) | def importLop(self, lopnode: LopNode, selectionrule: LopSelectionRule,... method importUsdStage (line 37308) | def importUsdStage(self, stage: pxr.Usd.Stage, selectionrule: LopSelec... method selection (line 37343) | def selection(self) -> Selection: method vexAttribDataId (line 37354) | def vexAttribDataId(self) -> Tuple[int, ...]: method modificationCounter (line 37367) | def modificationCounter(self) -> int: method incrementModificationCounter (line 37380) | def incrementModificationCounter(self) -> None: method incrementAllDataIds (line 37390) | def incrementAllDataIds(self) -> None: method incrementDataIdsForAddOrRemove (line 37402) | def incrementDataIdsForAddOrRemove(self, for_points: bool = True, for_... method primitiveIntrinsicsDataId (line 37412) | def primitiveIntrinsicsDataId(self) -> AttribDataId: method incrementPrimitiveIntrinsicsDataId (line 37423) | def incrementPrimitiveIntrinsicsDataId(self) -> None: method topologyDataId (line 37433) | def topologyDataId(self) -> AttribDataId: method incrementTopologyDataId (line 37443) | def incrementTopologyDataId(self) -> None: method generateAttribMenu (line 37453) | def generateAttribMenu(self, attrib_type: EnumValue|None = ..., data_t... method isReadOnly (line 37504) | def isReadOnly(self) -> bool: method extractPackedPaths (line 37513) | def extractPackedPaths(self, pattern: str) -> Tuple[str, ...]: method unpackFromFolder (line 37524) | def unpackFromFolder(self, path: str) -> Geometry: method packedFolderProperties (line 37534) | def packedFolderProperties(self, path: str) -> dict[str, bool]: method packToFolder (line 37548) | def packToFolder(self, path: str, geometry: Geometry, is_folder: bool ... method removeFromFolder (line 37567) | def removeFromFolder(self, path: str) -> bool: method pointAttribs (line 37582) | def pointAttribs(self, scope: EnumValue = ...) -> Tuple[Attrib, ...]: ... method primAttribs (line 37583) | def primAttribs(self, scope: EnumValue = ...) -> Tuple[Attrib, ...]: ... method vertexAttribs (line 37584) | def vertexAttribs(self, scope: EnumValue = ...) -> Tuple[Attrib, ...]:... method globalAttribs (line 37585) | def globalAttribs(self, scope: EnumValue = ...) -> Tuple[Attrib, ...]:... class GeometryDelta (line 37587) | class GeometryDelta: method __init__ (line 37604) | def __init__(self, *args, **kwargs) -> None: ... method setPointPositionsFromString (line 37606) | def setPointPositionsFromString(self, positions: bytes, float_type: En... class GeometryDrawable (line 37624) | class GeometryDrawable(AdvancedDrawable): method __init__ (line 37663) | def __init__(self, scene_viewer: SceneViewer, geo_type: EnumValue, nam... method geometry (line 37887) | def geometry(self) -> Geometry: method setGeometry (line 37897) | def setGeometry(self, geometry: Geometry) -> None: method type (line 37911) | def type(self) -> EnumValue: method useClipPlane (line 37920) | def useClipPlane(self, value: bool) -> None: class GeometryDrawableGroup (line 37935) | class GeometryDrawableGroup(AdvancedDrawable): method __init__ (line 38020) | def __init__(self, name: str, label: str|None = ...) -> None: method addDrawable (line 38039) | def addDrawable(self, drawable: GeometryDrawable) -> None: method drawable (line 38052) | def drawable(self, drawable_name: str) -> GeometryDrawable: method drawables (line 38061) | def drawables(self) -> Tuple[GeometryDrawable, ...]: method geometry (line 38070) | def geometry(self) -> Geometry: method setGeometry (line 38080) | def setGeometry(self, geometry: Geometry) -> None: method useClipPlane (line 38094) | def useClipPlane(self, value: bool) -> None: class GadgetDrawable (line 38110) | class GadgetDrawable(GeometryDrawable): method __init__ (line 38112) | def __init__(self, widget: int, gadget_context: int) -> None: ... class GeometryRayCache (line 38115) | class GeometryRayCache: method __init__ (line 38130) | def __init__(self) -> None: method intersect (line 38142) | def intersect(self, geo: Geometry, rayorig: Vector3, dir: Vector3, p: ... method findAllInTube (line 38212) | def findAllInTube(self, geo: Geometry, rayorig: Vector3, dir: Vector3,... class GeometrySelection (line 38250) | class GeometrySelection: method __init__ (line 38272) | def __init__(self) -> None: method ordered (line 38294) | def ordered(self) -> bool: method geometryType (line 38306) | def geometryType(self) -> EnumValue: method setGeometryType (line 38315) | def setGeometryType(self, type: EnumValue) -> None: method connectivity (line 38325) | def connectivity(self) -> EnumValue: method setConnectivity (line 38336) | def setConnectivity(self, connectivity: EnumValue) -> None: method primitiveTypes (line 38348) | def primitiveTypes(self) -> Tuple[EnumValue, ...]: method setPrimitiveTypes (line 38358) | def setPrimitiveTypes(self, primitive_types: Sequence[EnumValue]) -> N... method nodes (line 38369) | def nodes(self) -> Tuple[Node, ...]: method selectionStrings (line 38378) | def selectionStrings(self, empty_string_selects_all: bool = True, forc... method selections (line 38389) | def selections(self) -> Tuple[Selection, ...]: method needsMergedNode (line 38399) | def needsMergedNode(self, parent: Node) -> bool: method mergedNode (line 38409) | def mergedNode(self, parent: Node, creator_name: str, force_keep_origi... method mergedSelectionString (line 38423) | def mergedSelectionString(self, empty_string_selects_all: bool = True,... method shrinkSelection (line 38437) | def shrinkSelection(self, check_uv: bool = True) -> None: method growSelection (line 38446) | def growSelection(self) -> None: method boundingBox (line 38456) | def boundingBox(self) -> BoundingBox: method orientedBoundingBox (line 38465) | def orientedBoundingBox(self) -> OrientedBoundingBox: class GeometrySpreadsheet (line 38475) | class GeometrySpreadsheet(PathBasedPaneTab): method __init__ (line 38485) | def __init__(self, *args, **kwargs) -> None: ... method numRows (line 38487) | def numRows(self) -> int: method numColumns (line 38496) | def numColumns(self) -> int: method cellText (line 38505) | def cellText(self, row: int, col: int) -> str: method attribType (line 38514) | def attribType(self) -> EnumValue: method setAttribType (line 38524) | def setAttribType(self, attrib_type: EnumValue) -> None: method groupFilter (line 38538) | def groupFilter(self) -> str: method setGroupFilter (line 38547) | def setGroupFilter(self, group: str) -> None: method groupFilterEnabled (line 38556) | def groupFilterEnabled(self) -> bool: method setGroupFilterEnabled (line 38565) | def setGroupFilterEnabled(self, enable: bool) -> None: method attribFilter (line 38574) | def attribFilter(self) -> str: method setAttribFilter (line 38583) | def setAttribFilter(self, filter: str) -> None: method attribFilterEnabled (line 38592) | def attribFilterEnabled(self) -> bool: method setAttribFilterEnabled (line 38601) | def setAttribFilterEnabled(self, enable: bool) -> None: method viewOnlySelected (line 38610) | def viewOnlySelected(self) -> bool: method setViewOnlySelected (line 38619) | def setViewOnlySelected(self, enable: bool) -> None: method viewDecomposedMatrices (line 38628) | def viewDecomposedMatrices(self) -> bool: method setViewDecomposedMatrices (line 38638) | def setViewDecomposedMatrices(self, enable: bool) -> None: method sceneGraphTree (line 38648) | def sceneGraphTree(self) -> Optional[SceneGraphTree]: class GeometryViewport (line 38659) | class GeometryViewport: method __init__ (line 38714) | def __init__(self, *args, **kwargs) -> None: ... method type (line 38716) | def type(self) -> EnumValue: method changeType (line 38725) | def changeType(self, type: EnumValue) -> None: method settings (line 38736) | def settings(self) -> GeometryViewportSettings: method name (line 38747) | def name(self) -> str: method changeName (line 38756) | def changeName(self, name: str) -> None: method home (line 38767) | def home(self) -> None: method homeAll (line 38776) | def homeAll(self) -> None: method homeSelected (line 38786) | def homeSelected(self) -> None: method homeGrid (line 38795) | def homeGrid(self) -> None: method homeNonTemplated (line 38804) | def homeNonTemplated(self) -> None: method homeBoundingBox (line 38813) | def homeBoundingBox(self, bbox: BoundingBox, center_to_origin: bool = ... method frameAll (line 38828) | def frameAll(self) -> None: method frameBoundingBox (line 38838) | def frameBoundingBox(self, bbox: Optional[BoundingBox] = None) -> None: method frameSelected (line 38851) | def frameSelected(self) -> None: method frameGrid (line 38860) | def frameGrid(self) -> None: method frameNonTemplated (line 38869) | def frameNonTemplated(self) -> None: method draw (line 38878) | def draw(self) -> None: method viewTransform (line 38888) | def viewTransform(self) -> Matrix4: method modelToGeometryTransform (line 38899) | def modelToGeometryTransform(self) -> Matrix4: method cameraToModelTransform (line 38911) | def cameraToModelTransform(self) -> Matrix4: method ndcToCameraTransform (line 38922) | def ndcToCameraTransform(self) -> Matrix4: method viewportToNDCTransform (line 38934) | def viewportToNDCTransform(self) -> Matrix4: method windowToViewportTransform (line 38945) | def windowToViewportTransform(self) -> Matrix4: method viewPivot (line 38960) | def viewPivot(self) -> Vector3: method resolutionInPixels (line 38970) | def resolutionInPixels(self) -> Tuple[int, ...]: method camera (line 38980) | def camera(self) -> ObjNode: ... method cameraPath (line 38981) | def cameraPath(self) -> str: method setCamera (line 38993) | def setCamera(self, camera_node: ObjNode) -> None: method saveViewToCamera (line 39010) | def saveViewToCamera(self, camera_node: ObjNode) -> None: method defaultCamera (line 39024) | def defaultCamera(self) -> GeometryViewportCamera: method setDefaultCamera (line 39052) | def setDefaultCamera(self, cam_settings: GeometryViewportCamera) -> None: method useDefaultCamera (line 39068) | def useDefaultCamera(self) -> None: method isCameraLockedToView (line 39078) | def isCameraLockedToView(self) -> bool: method lockCameraToView (line 39089) | def lockCameraToView(self, arg2: bool) -> None: method isViewExportedToCameraContinuously (line 39104) | def isViewExportedToCameraContinuously(self) -> bool: method exportViewToCameraContinuously (line 39114) | def exportViewToCameraContinuously(self, arg2: bool) -> None: method isActive2D (line 39124) | def isActive2D(self) -> bool: method isActive3D (line 39134) | def isActive3D(self) -> bool: method usesConstructionPlane (line 39144) | def usesConstructionPlane(self) -> bool: method queryNodeAtPixel (line 39154) | def queryNodeAtPixel(self, x: int, y: int, pick_templates: bool = Fals... method queryPrimAtPixel (line 39169) | def queryPrimAtPixel(self, node: Node, x: int, y: int) -> Optional[Prim]: method queryInspectedGeometry (line 39183) | def queryInspectedGeometry(self) -> Optional[Geometry]: method queryInspectedPrim (line 39194) | def queryInspectedPrim(self) -> Optional[Prim]: method mapToWorld (line 39206) | def mapToWorld(self, x: float, y: float) -> Tuple[Vector3, Vector3]: method mapToScreen (line 39216) | def mapToScreen(self, pos: Vector3) -> Vector2: method mapFromMouseChop (line 39229) | def mapFromMouseChop(self, x: float, y: float) -> Tuple[int, int]: method queryWorldPositionAndNormal (line 39240) | def queryWorldPositionAndNormal(self, x: int, y: int, selectionRestric... method size (line 39255) | def size(self) -> Tuple[int, ...]: method geometry (line 39273) | def geometry(self) -> Tuple[int, ...]: method isFloating (line 39292) | def isFloating(self) -> bool: method addEventCallback (line 39302) | def addEventCallback(self, callback: Callable[[dict[str, Any]], None])... method removeEventCallback (line 39350) | def removeEventCallback(self, callback: Callable[[dict[str, Any]], Non... method clearEventCallbacks (line 39360) | def clearEventCallbacks(self) -> None: method eventCallbacks (line 39370) | def eventCallbacks(self) -> Tuple[Callable[[dict[str, Any]], None],...]: class GeometryViewportCamera (line 39381) | class GeometryViewportCamera: method __init__ (line 39388) | def __init__(self, *args, **kwargs) -> None: ... method stash (line 39390) | def stash(self) -> GeometryViewportCamera: method setPerspective (line 39403) | def setPerspective(self, perspective: bool) -> None: method isPerspective (line 39414) | def isPerspective(self) -> bool: method isOrthographic (line 39423) | def isOrthographic(self) -> bool: method setAperture (line 39432) | def setAperture(self, ap: float) -> None: method aperture (line 39443) | def aperture(self) -> float: method setFocalLength (line 39452) | def setFocalLength(self, fl: float) -> None: method focalLength (line 39463) | def focalLength(self) -> float: method focalUnitScale (line 39472) | def focalUnitScale(self) -> float: method setAspectRatio (line 39482) | def setAspectRatio(self, ar: float) -> None: method aspectRatio (line 39493) | def aspectRatio(self) -> float: method setOrthoWidth (line 39500) | def setOrthoWidth(self, ow: float) -> None: method orthoWidth (line 39511) | def orthoWidth(self) -> float: method setRotation (line 39518) | def setRotation(self, mat: Matrix3) -> None: ... method rotation (line 39519) | def rotation(self) -> Matrix3: ... method setTranslation (line 39520) | def setTranslation(self, xyz: Sequence[float]) -> None: method translation (line 39527) | def translation(self) -> Tuple[float, ...]: method setPivot (line 39536) | def setPivot(self, xyz: Sequence[float]) -> None: method pivot (line 39543) | def pivot(self) -> Tuple[float, ...]: method setClipPlanes (line 39552) | def setClipPlanes(self, near_far: Sequence[float]) -> None: method clipPlanes (line 39559) | def clipPlanes(self) -> Tuple[float, ...]: method setWindowOffset (line 39568) | def setWindowOffset(self, xy: Sequence[float]) -> None: method windowOffset (line 39575) | def windowOffset(self) -> Tuple[float, ...]: method setWindowSize (line 39584) | def setWindowSize(self, size: Sequence[float]) -> None: method windowSize (line 39591) | def windowSize(self) -> Tuple[float, ...]: class GeometryViewportDisplaySet (line 39601) | class GeometryViewportDisplaySet: method __init__ (line 39665) | def __init__(self, *args, **kwargs) -> None: ... method displaySetType (line 39667) | def displaySetType(self) -> EnumValue: method showPointMarkers (line 39695) | def showPointMarkers(self, b: bool) -> None: method isShowingPointMarkers (line 39704) | def isShowingPointMarkers(self) -> bool: method showPointNumbers (line 39713) | def showPointNumbers(self, b: bool) -> None: method isShowingPointNumbers (line 39722) | def isShowingPointNumbers(self) -> bool: method showPointNormals (line 39732) | def showPointNormals(self, b: bool) -> None: method isShowingPointNormals (line 39741) | def isShowingPointNormals(self) -> bool: method showPointPositions (line 39757) | def showPointPositions(self, b: bool) -> None: method isShowingPointPositions (line 39766) | def isShowingPointPositions(self) -> bool: method showPointUVs (line 39775) | def showPointUVs(self, b: bool) -> None: method isShowingPointUVs (line 39785) | def isShowingPointUVs(self) -> bool: method showPointTrails (line 39794) | def showPointTrails(self, b: bool) -> None: method isShowingPointTrails (line 39804) | def isShowingPointTrails(self) -> bool: method showCoincidentPoints (line 39813) | def showCoincidentPoints(self, b: bool) -> None: method isShowingCoincidentPoints (line 39835) | def isShowingCoincidentPoints(self) -> bool: method showPrimHulls (line 39845) | def showPrimHulls(self, b: bool) -> None: method isShowingPrimHulls (line 39855) | def isShowingPrimHulls(self) -> bool: method showPrimNumbers (line 39865) | def showPrimNumbers(self, b: bool) -> None: method isShowingPrimNumbers (line 39875) | def isShowingPrimNumbers(self) -> bool: method showPrimNormals (line 39886) | def showPrimNormals(self, b: bool) -> None: method isShowingPrimNormals (line 39896) | def isShowingPrimNormals(self) -> bool: method showPrimProfiles (line 39906) | def showPrimProfiles(self, b: bool) -> None: method isShowingPrimProfiles (line 39915) | def isShowingPrimProfiles(self) -> bool: method showPrimBreakpoints (line 39924) | def showPrimBreakpoints(self, b: bool) -> None: method isShowingPrimBreakpoints (line 39935) | def isShowingPrimBreakpoints(self) -> bool: method showPrimProfileNumbers (line 39945) | def showPrimProfileNumbers(self, b: bool) -> None: method isShowingPrimProfileNumbers (line 39955) | def isShowingPrimProfileNumbers(self) -> bool: method showPrimBackfaces (line 39965) | def showPrimBackfaces(self, b: bool) -> None: method isShowingPrimBackfaces (line 39975) | def isShowingPrimBackfaces(self) -> bool: method showVertexMarkers (line 39985) | def showVertexMarkers(self, b: bool) -> None: method isShowingVertexMarkers (line 39995) | def isShowingVertexMarkers(self) -> bool: method showVertexNumbers (line 40007) | def showVertexNumbers(self, b: bool) -> None: method isShowingVertexNumbers (line 40018) | def isShowingVertexNumbers(self) -> bool: method showVertexNormals (line 40028) | def showVertexNormals(self, b: bool) -> None: method isShowingVertexNormals (line 40039) | def isShowingVertexNormals(self) -> bool: method showVertexUVs (line 40051) | def showVertexUVs(self, b: bool) -> None: method isShowingVertexUVs (line 40062) | def isShowingVertexUVs(self) -> bool: ... method showUVBackfaces (line 40063) | def showUVBackfaces(self, b: bool) -> None: method isShowingUVBackfaces (line 40075) | def isShowingUVBackfaces(self) -> bool: method showUVOverlap (line 40086) | def showUVOverlap(self, b: bool) -> None: method isShowingUVOverlap (line 40096) | def isShowingUVOverlap(self) -> bool: method setPointMarkerVisibility (line 40106) | def setPointMarkerVisibility(self, v: EnumValue) -> None: method pointMarkerVisibility (line 40126) | def pointMarkerVisibility(self) -> EnumValue: method setPointNumberVisibility (line 40135) | def setPointNumberVisibility(self, v: EnumValue) -> None: method pointNumberVisibility (line 40155) | def pointNumberVisibility(self) -> EnumValue: method setPointNormalVisibility (line 40164) | def setPointNormalVisibility(self, v: EnumValue) -> None: method pointNormalVisibility (line 40184) | def pointNormalVisibility(self) -> EnumValue: method setPointPositionVisibility (line 40193) | def setPointPositionVisibility(self, v: EnumValue) -> None: method pointPositionVisibility (line 40213) | def pointPositionVisibility(self) -> EnumValue: method setPointUVVisibility (line 40222) | def setPointUVVisibility(self, v: EnumValue) -> None: method pointUVVisibility (line 40242) | def pointUVVisibility(self) -> EnumValue: method setPointTrailVisibility (line 40251) | def setPointTrailVisibility(self, v: EnumValue) -> None: method pointTrailVisibility (line 40271) | def pointTrailVisibility(self) -> EnumValue: method setPrimNumberVisibility (line 40280) | def setPrimNumberVisibility(self, v: EnumValue) -> None: method primNumberVisibility (line 40300) | def primNumberVisibility(self) -> EnumValue: method setPrimNormalVisibility (line 40309) | def setPrimNormalVisibility(self, v: EnumValue) -> None: method primNormalVisibility (line 40329) | def primNormalVisibility(self) -> EnumValue: method setPrimBreakpointVisibility (line 40338) | def setPrimBreakpointVisibility(self, v: EnumValue) -> None: method primBreakpointVisibility (line 40347) | def primBreakpointVisibility(self) -> EnumValue: method setVertexMarkerVisibility (line 40356) | def setVertexMarkerVisibility(self, v: EnumValue) -> None: method vertexMarkerVisibility (line 40365) | def vertexMarkerVisibility(self) -> EnumValue: method setVertexNormalVisibility (line 40374) | def setVertexNormalVisibility(self, v: EnumValue) -> None: method vertexNormalVisibility (line 40383) | def vertexNormalVisibility(self) -> EnumValue: method setVertexNumberVisibility (line 40392) | def setVertexNumberVisibility(self, v: EnumValue) -> None: method vertexNumberVisibility (line 40401) | def vertexNumberVisibility(self) -> EnumValue: method setVertexUVVisibility (line 40410) | def setVertexUVVisibility(self, v: EnumValue) -> None: method vertexUVVisibility (line 40419) | def vertexUVVisibility(self) -> EnumValue: method useGhostedLook (line 40428) | def useGhostedLook(self, b: bool) -> None: method isUsingGhostedLook (line 40441) | def isUsingGhostedLook(self) -> bool: method useFadedLook (line 40451) | def useFadedLook(self, b: bool) -> None: method isUsingFadedLook (line 40461) | def isUsingFadedLook(self) -> bool: method useXRay (line 40471) | def useXRay(self, b: bool) -> None: method isUsingXRay (line 40482) | def isUsingXRay(self) -> bool: method useLighting (line 40492) | def useLighting(self, b: bool) -> None: method isUsingLighting (line 40506) | def isUsingLighting(self) -> bool: method useUVMap (line 40516) | def useUVMap(self, b: bool) -> None: method isUsingUVMap (line 40526) | def isUsingUVMap(self) -> bool: method setShadingModeLocked (line 40536) | def setShadingModeLocked(self, b: bool) -> None: method isShadingModeLocked (line 40548) | def isShadingModeLocked(self) -> bool: method setToolbarLinked (line 40559) | def setToolbarLinked(self, b: bool) -> None: method isToolbarLinked (line 40571) | def isToolbarLinked(self) -> bool: method setUniqueDisplaySet (line 40582) | def setUniqueDisplaySet(self, b: bool) -> None: method isUniqueDisplaySet (line 40593) | def isUniqueDisplaySet(self) -> bool: method setShadedMode (line 40606) | def setShadedMode(self, arg2: EnumValue) -> None: method shadedMode (line 40639) | def shadedMode(self) -> EnumValue: method setBoundaryMode (line 40678) | def setBoundaryMode(self, arg2: EnumValue) -> None: method boundaryMode (line 40704) | def boundaryMode(self) -> EnumValue: method setUVBoundaryMode (line 40730) | def setUVBoundaryMode(self, arg2: EnumValue) -> None: method uvBoundaryMode (line 40756) | def uvBoundaryMode(self) -> EnumValue: method setLinkToDisplaySet (line 40782) | def setLinkToDisplaySet(self, arg2: EnumValue) -> None: method linkedToDisplaySet (line 40806) | def linkedToDisplaySet(self) -> EnumValue: class GeometryViewportSettings (line 40819) | class GeometryViewportSettings: method __init__ (line 40877) | def __init__(self, *args, **kwargs) -> None: ... method viewportType (line 40879) | def viewportType(self) -> EnumValue: method displaySet (line 40888) | def displaySet(self, settype: EnumValue) -> GeometryViewportDisplaySet: method viewAspectRatio (line 40903) | def viewAspectRatio(self, masked: bool = True) -> float: method normalScale (line 40914) | def normalScale(self) -> float: ... method setNormalScale (line 40915) | def setNormalScale(self, normal_scale: float) -> None: method vectorScale (line 40925) | def vectorScale(self) -> float: method setVectorScale (line 40934) | def setVectorScale(self, vec_scale: float) -> None: method pointMarkerSize (line 40944) | def pointMarkerSize(self) -> float: method setPointMarkerSize (line 40953) | def setPointMarkerSize(self, psize: float) -> None: method originGnomonSize (line 40962) | def originGnomonSize(self) -> float: method setOriginGnomonSize (line 40972) | def setOriginGnomonSize(self, size: float) -> None: method floatingGnomonSize (line 40982) | def floatingGnomonSize(self) -> float: method setFloatingGnomonSize (line 40992) | def setFloatingGnomonSize(self, size: float) -> None: method camera (line 41002) | def camera(self) -> Optional[ObjNode]: method setCamera (line 41013) | def setCamera(self, camera_node: ObjNode) -> None: method saveViewToCamera (line 41022) | def saveViewToCamera(self, camera_node: ObjNode) -> None: method geometryInfo (line 41033) | def geometryInfo(self, arg: EnumValue) -> EnumValue: method handleHighlight (line 41049) | def handleHighlight(self, arg: EnumValue) -> EnumValue: method closureSelection (line 41066) | def closureSelection(self, arg: EnumValue) -> EnumValue: method guideFontSize (line 41085) | def guideFontSize(self) -> EnumValue: ... method setOffsetVertexMarkers (line 41086) | def setOffsetVertexMarkers(self, enable: bool) -> None: method offsetVertexMarkers (line 41098) | def offsetVertexMarkers(self) -> bool: method enableGuide (line 41110) | def enableGuide(self, guide: EnumValue, enabled: bool) -> None: method guideEnabled (line 41120) | def guideEnabled(self, guide: EnumValue) -> bool: method levelOfDetail (line 41130) | def levelOfDetail(self) -> float: method volumeQuality (line 41139) | def volumeQuality(self) -> EnumValue: method volumeAmbientShadows (line 41157) | def volumeAmbientShadows(self) -> float: method volumeBSplines (line 41167) | def volumeBSplines(self) -> EnumValue: method volumeWireAsPoints (line 41195) | def volumeWireAsPoints(self) -> bool: method polygonConvexQuality (line 41204) | def polygonConvexQuality(self) -> bool: method subdivsionLimit (line 41214) | def subdivsionLimit(self) -> int: method wireWidth (line 41224) | def wireWidth(self) -> float: method wireBlend (line 41234) | def wireBlend(self) -> float: method interiorWireAlpha (line 41245) | def interiorWireAlpha(self) -> float: method shadeOpenCurves (line 41256) | def shadeOpenCurves(self) -> bool: method selectWireframeAsSolid (line 41265) | def selectWireframeAsSolid(self) -> bool: method setWireOverPackedGeo (line 41275) | def setWireOverPackedGeo(self, wire_over_packed: bool) -> None: method wireOverPackedGeo (line 41287) | def wireOverPackedGeo(self) -> bool: method particleDisplayType (line 41297) | def particleDisplayType(self) -> EnumValue: method allowParticleSprites (line 41318) | def allowParticleSprites(self) -> bool: method particlePointSize (line 41328) | def particlePointSize(self) -> float: method particleDiscSize (line 41337) | def particleDiscSize(self) -> float: method orientDiscToNormal (line 41348) | def orientDiscToNormal(self) -> bool: method spriteTextureLimit (line 41359) | def spriteTextureLimit(self) -> Tuple[int,...]: method pointInstancing (line 41370) | def pointInstancing(self) -> bool: method pointInstancingPercent (line 41379) | def pointInstancingPercent(self) -> float: method pointInstancingLimit (line 41389) | def pointInstancingLimit(self) -> int: method instanceStandInGeometry (line 41398) | def instanceStandInGeometry(self) -> EnumValue: method autoGenerateVertexNormals (line 41416) | def autoGenerateVertexNormals(self) -> bool: method vertexNormalCuspAngle (line 41426) | def vertexNormalCuspAngle(self) -> float: method vertexNormalLimit (line 41438) | def vertexNormalLimit(self) -> int: method setSceneAntialias (line 41448) | def setSceneAntialias(self, aa: int) -> None: method sceneAntialias (line 41462) | def sceneAntialias(self) -> int: method setHdrRendering (line 41473) | def setHdrRendering(self, hdr: bool) -> None: method hdrRendering (line 41482) | def hdrRendering(self) -> bool: ... method setXrayDrawing (line 41483) | def setXrayDrawing(self, global_enable: bool) -> None: method xrayDrawing (line 41494) | def xrayDrawing(self) -> bool: method setXrayQuality (line 41503) | def setXrayQuality(self, quality: bool) -> None: method xrayQuality (line 41516) | def xrayQuality(self) -> bool: method setXrayStrength (line 41525) | def setXrayStrength(self, strength: float) -> None: method xrayStrength (line 41535) | def xrayStrength(self) -> float: method setObjectOrigins (line 41544) | def setObjectOrigins(self, globel_enable: bool) -> None: method objectOrigins (line 41554) | def objectOrigins(self) -> bool: method setOnionSkinning (line 41563) | def setOnionSkinning(self, global_enable: bool) -> None: method onionSkinning (line 41575) | def onionSkinning(self) -> bool: method setOnionSkinFramesBeforeCount (line 41584) | def setOnionSkinFramesBeforeCount(self, num_frames: int) -> None: method onionSkinFramesBeforeCount (line 41594) | def onionSkinFramesBeforeCount(self) -> int: method setOnionSkinFramesBeforeTint (line 41603) | def setOnionSkinFramesBeforeTint(self, tint: Color) -> None: method onionSkinFramesBeforeTint (line 41613) | def onionSkinFramesBeforeTint(self) -> Color: method setOnionSkinFramesAfterCount (line 41622) | def setOnionSkinFramesAfterCount(self, num_frames: int) -> None: method onionSkinFramesAfterCount (line 41632) | def onionSkinFramesAfterCount(self) -> int: method setOnionSkinFramesAfterTint (line 41641) | def setOnionSkinFramesAfterTint(self, tint: Color) -> None: method onionSkinFramesAfterTint (line 41651) | def onionSkinFramesAfterTint(self) -> Color: method setOnionSkinFrameIncrement (line 41660) | def setOnionSkinFrameIncrement(self, frame_increment: int) -> None: method onionSkinFrameIncrement (line 41671) | def onionSkinFrameIncrement(self) -> int: method setOnionSkinOpacity (line 41680) | def setOnionSkinOpacity(self, opacity: float) -> None: method onionSkinOpacity (line 41690) | def onionSkinOpacity(self) -> float: method setSceneGamma (line 41699) | def setSceneGamma(self, gamma: float) -> None: method sceneGamma (line 41709) | def sceneGamma(self) -> float: method setUseSceneLUT (line 41718) | def setUseSceneLUT(self, enable: bool) -> None: method useSceneLUT (line 41728) | def useSceneLUT(self) -> bool: method setSceneLUT (line 41738) | def setSceneLUT(self, lut_file: str) -> None: method sceneLUT (line 41747) | def sceneLUT(self) -> str: method setBackgroundImageGammaLUT (line 41756) | def setBackgroundImageGammaLUT(self, apply_to_bg: bool) -> None: method backgroundImageGammaLUT (line 41766) | def backgroundImageGammaLUT(self) -> bool: method setDepthOfField (line 41775) | def setDepthOfField(self, enable: bool) -> None: method getDepthOfField (line 41785) | def getDepthOfField(self) -> bool: method setDepthOfFieldBokeh (line 41794) | def setDepthOfFieldBokeh(self, viewportDOFBokeh: EnumValue) -> None: method getDepthOfFieldBokeh (line 41816) | def getDepthOfFieldBokeh(self) -> EnumValue: method setDepthOfFieldBokehTexture (line 41825) | def setDepthOfFieldBokehTexture(self, file_or_node: str) -> None: method getDepthOfFieldBokehTexture (line 41835) | def getDepthOfFieldBokehTexture(self) -> str: method setDepthOfFieldBokehBoost (line 41844) | def setDepthOfFieldBokehBoost(self, boost: float) -> None: method getDepthOfFieldBokehBoost (line 41854) | def getDepthOfFieldBokehBoost(self) -> float: method setDepthOfFieldBokehAspect (line 41863) | def setDepthOfFieldBokehAspect(self, aspect: float) -> None: method getDepthOfFieldBokehAspect (line 41872) | def getDepthOfFieldBokehAspect(self) -> float: method showsName (line 41881) | def showsName(self, show: bool) -> None: method showName (line 41890) | def showName(self) -> bool: method showsCameraName (line 41899) | def showsCameraName(self, show: bool) -> None: method showCameraName (line 41908) | def showCameraName(self) -> bool: method showsStateStatus (line 41917) | def showsStateStatus(self, show: bool) -> None: method showStateStatus (line 41926) | def showStateStatus(self) -> bool: method showsBadges (line 41935) | def showsBadges(self, show: bool) -> None: method showBadges (line 41945) | def showBadges(self) -> bool: method useAspectRatio (line 41955) | def useAspectRatio(self, enable: bool) -> None: method usingAspectRatio (line 41965) | def usingAspectRatio(self) -> bool: method setAspectRatio (line 41974) | def setAspectRatio(self, aspect: float) -> None: method aspectRatio (line 41983) | def aspectRatio(self) -> float: method setViewMaskOpacity (line 41993) | def setViewMaskOpacity(self, opacity: float) -> None: method viewMaskOpacity (line 42003) | def viewMaskOpacity(self) -> float: method setStereoMode (line 42013) | def setStereoMode(self, viewportStereoMode: EnumValue) -> None: method stereoMode (line 42041) | def stereoMode(self) -> EnumValue: method setHomeAutoAdjustsClip (line 42050) | def setHomeAutoAdjustsClip(self, viewportHomeClipMode: EnumValue) -> N... method homeAutoAdjustClip (line 42076) | def homeAutoAdjustClip(self) -> EnumValue: method setClipPlanes (line 42086) | def setClipPlanes(self, clip: Sequence[float]) -> None: method clipPlanes (line 42095) | def clipPlanes(self) -> Tuple[float, ...]: method setMinHomeSize (line 42105) | def setMinHomeSize(self, min_size: float) -> None: method minHomeSize (line 42114) | def minHomeSize(self) -> float: method setUVDisplayAttribute (line 42123) | def setUVDisplayAttribute(self, uv: str) -> None: ... method uvDisplayAttribute (line 42124) | def uvDisplayAttribute(self) -> str: method setUVAutoAttribute (line 42133) | def setUVAutoAttribute(self, detect: bool) -> None: ... method uvAutoAttribute (line 42134) | def uvAutoAttribute(self) -> bool: method setUVVertexType (line 42144) | def setUVVertexType(self, is_vertex_uv: bool) -> None: ... method uvVertexType (line 42145) | def uvVertexType(self) -> bool: method setUVMapTexture (line 42158) | def setUVMapTexture(self, uv_file: str) -> None: method uvMapTexture (line 42168) | def uvMapTexture(self) -> str: method setUVMapScale (line 42178) | def setUVMapScale(self, uv_scale: float) -> None: method uvMapScale (line 42188) | def uvMapScale(self) -> float: method setLighting (line 42197) | def setLighting(self, viewportLighting: EnumValue) -> None: method lighting (line 42229) | def lighting(self) -> EnumValue: method setWorkLightType (line 42238) | def setWorkLightType(self, viewportWorkLight: EnumValue) -> None: method workLightType (line 42266) | def workLightType(self) -> EnumValue: method setWorkLightOptions (line 42275) | def setWorkLightOptions(self, p: dict[str, Any]) -> None: method workLightOptions (line 42286) | def workLightOptions(self) -> dict[str, Any]: method showDiffuse (line 42296) | def showDiffuse(self, enable: bool) -> None: method showingDiffuse (line 42307) | def showingDiffuse(self) -> bool: method showSpecular (line 42316) | def showSpecular(self, enable: bool) -> None: method showingSpecular (line 42327) | def showingSpecular(self) -> bool: method showAmbient (line 42336) | def showAmbient(self, enable: bool) -> None: method showingAmbient (line 42347) | def showingAmbient(self) -> bool: method showEmission (line 42356) | def showEmission(self, enable: bool) -> None: method showingEmission (line 42367) | def showingEmission(self) -> bool: method setLightSampling (line 42376) | def setLightSampling(self, num_samples: int) -> None: method lightSampling (line 42386) | def lightSampling(self) -> int: method setMaxLightSamples (line 42395) | def setMaxLightSamples(self, samples: int) -> None: method maxLightSamples (line 42408) | def maxLightSamples(self) -> int: method setLightLimit (line 42417) | def setLightLimit(self, limit: int) -> None: method getLightLimit (line 42428) | def getLightLimit(self) -> int: method setHeadlightIntensity (line 42438) | def setHeadlightIntensity(self, intensity: float) -> None: method headlightIntensity (line 42447) | def headlightIntensity(self) -> float: method setHeadlightDirection (line 42456) | def setHeadlightDirection(self, dir: Sequence[float]) -> None: method headlightDirection (line 42467) | def headlightDirection(self) -> Tuple[float, ...]: method setHeadlightSpecular (line 42476) | def setHeadlightSpecular(self, enable: bool) -> None: method headlightSpecular (line 42486) | def headlightSpecular(self) -> bool: method setHeadlightOcclusion (line 42495) | def setHeadlightOcclusion(self, enable: bool) -> None: method headlightOcclusion (line 42505) | def headlightOcclusion(self) -> bool: method setAmbientOcclusion (line 42514) | def setAmbientOcclusion(self, enable: bool) -> None: method ambientOcclusion (line 42524) | def ambientOcclusion(self) -> bool: method setAmbientOcclusionLevel (line 42536) | def setAmbientOcclusionLevel(self, level: int) -> None: method ambientOcclusionLevel (line 42547) | def ambientOcclusionLevel(self) -> int: method setShadowQuality (line 42556) | def setShadowQuality(self, viewportShadowQuality: EnumValue) -> None: method shadowQuality (line 42587) | def shadowQuality(self) -> EnumValue: method setShadowSensitivity (line 42596) | def setShadowSensitivity(self, offset: Sequence[int]) -> None: method shadowSensitivity (line 42610) | def shadowSensitivity(self) -> Tuple[int, ...]: method setShadowMapSize (line 42620) | def setShadowMapSize(self, size: int) -> None: method shadowMapSize (line 42631) | def shadowMapSize(self) -> int: method setShadowMapSizeFromLight (line 42641) | def setShadowMapSizeFromLight(self, enable: bool) -> None: method shadowMapSizeFromLight (line 42652) | def shadowMapSizeFromLight(self) -> bool: method setShadowMapMem (line 42661) | def setShadowMapMem(self, mem_in_mb: int) -> None: method getShadowMapMem (line 42670) | def getShadowMapMem(self) -> int: method setShadowMapTime (line 42679) | def setShadowMapTime(self, time_in_sec: float) -> None: method getShadowMapTime (line 42690) | def getShadowMapTime(self) -> float: method useReflections (line 42700) | def useReflections(self, enable: bool) -> None: method usingReflections (line 42711) | def usingReflections(self) -> bool: method setHdrReflections (line 42720) | def setHdrReflections(self, hdr_reflect: bool) -> None: method hdrReflections (line 42731) | def hdrReflections(self) -> bool: method setReflectMapSize (line 42741) | def setReflectMapSize(self, size: int) -> None: method reflectMapSize (line 42752) | def reflectMapSize(self) -> int: method setMinReflectAmount (line 42761) | def setMinReflectAmount(self, min_reflect: float) -> None: method minReflectAmount (line 42775) | def minReflectAmount(self) -> float: method setUseRayTracing (line 42785) | def setUseRayTracing(self, enable: bool) -> None: method useRayTracing (line 42796) | def useRayTracing(self) -> bool: method setUseDenoising (line 42807) | def setUseDenoising(self, enable: bool) -> None: method useDenoising (line 42817) | def useDenoising(self) -> bool: method setFastInteractiveSampling (line 42826) | def setFastInteractiveSampling(self, fast: bool) -> None: method fastInteractiveSampling (line 42838) | def fastInteractiveSampling(self) -> bool: method showMaterials (line 42849) | def showMaterials(self, enable: bool) -> None: method showingMaterials (line 42860) | def showingMaterials(self) -> bool: method showGeometryColor (line 42869) | def showGeometryColor(self, enable: bool) -> None: method showingGeometryColor (line 42880) | def showingGeometryColor(self) -> bool: method useTransparency (line 42889) | def useTransparency(self, enable: bool) -> None: method usingTransparency (line 42901) | def usingTransparency(self) -> bool: method setTransparencyQuality (line 42910) | def setTransparencyQuality(self, viewportTransparency: EnumValue) -> N... method transparencyQuality (line 42945) | def transparencyQuality(self) -> EnumValue: method useDisplacement (line 42954) | def useDisplacement(self, enable: bool) -> None: method usingDisplacement (line 42965) | def usingDisplacement(self) -> bool: method setDisplacementLevel (line 42974) | def setDisplacementLevel(self, level: float) -> None: method displacementLevel (line 42986) | def displacementLevel(self) -> float: method setDefaultMaterialDiffuse (line 42995) | def setDefaultMaterialDiffuse(self, tint: Color) -> None: method defaultMaterialDiffuse (line 43005) | def defaultMaterialDiffuse(self) -> Color: method setDefaultMaterialSpecular (line 43014) | def setDefaultMaterialSpecular(self, tint: Color) -> None: method defaultMaterialSpecular (line 43024) | def defaultMaterialSpecular(self) -> Color: method setDefaultMaterialAmbient (line 43033) | def setDefaultMaterialAmbient(self, tint: Color) -> None: method defaultMaterialAmbient (line 43042) | def defaultMaterialAmbient(self) -> Color: method setDefaultMaterialEmission (line 43052) | def setDefaultMaterialEmission(self, tint: Color) -> None: method defaultMaterialEmission (line 43061) | def defaultMaterialEmission(self) -> Color: method setDefaultMaterialMatCapFile (line 43071) | def setDefaultMaterialMatCapFile(self, filepath: str) -> None: method getDefaultMaterialMatCapFile (line 43082) | def getDefaultMaterialMatCapFile(self) -> str: method setDefaultMaterialMatCapIntensity (line 43091) | def setDefaultMaterialMatCapIntensity(self, i: float) -> None: method getDefaultMaterialMatCapIntensity (line 43102) | def getDefaultMaterialMatCapIntensity(self) -> float: method setDefaultMaterialType (line 43111) | def setDefaultMaterialType(self, viewportDefaultMaterial: EnumValue) -... method getDefaultMaterialType (line 43132) | def getDefaultMaterialType(self) -> EnumValue: method setUniformFog (line 43141) | def setUniformFog(self, enable: bool) -> None: method getUniformFog (line 43151) | def getUniformFog(self) -> bool: method setUniformFogColor (line 43160) | def setUniformFogColor(self, color: Sequence[float]) -> None: method getUniformFogColor (line 43170) | def getUniformFogColor(self) -> Tuple[float, ...]: method setUniformFogDensity (line 43179) | def setUniformFogDensity(self, density: float) -> None: method getUniformFogDensity (line 43188) | def getUniformFogDensity(self) -> float: method setUniformFogOpacity (line 43197) | def setUniformFogOpacity(self, opacity: float) -> None: method getUniformFogOpacity (line 43207) | def getUniformFogOpacity(self) -> float: method setUniformFogDepthRange (line 43216) | def setUniformFogDepthRange(self, range: Sequence[float]) -> None: method getUniformFogDepthRange (line 43229) | def getUniformFogDepthRange(self) -> Tuple[float, ...]: method setUniformFogHeightMode (line 43238) | def setUniformFogHeightMode(self, viewportFogHeightMode: EnumValue) ->... method getUniformFogHeightMode (line 43257) | def getUniformFogHeightMode(self) -> EnumValue: method setUniformFogHeight (line 43266) | def setUniformFogHeight(self, h: float) -> None: method getUniformFogHeight (line 43275) | def getUniformFogHeight(self) -> float: method setUniformFogHeightFalloff (line 43284) | def setUniformFogHeightFalloff(self, h: float) -> None: method getUniformFogHeightFalloff (line 43294) | def getUniformFogHeightFalloff(self) -> float: method setUniformFogDepthClip (line 43303) | def setUniformFogDepthClip(self, depth: float) -> None: method getUniformFogDepthClip (line 43314) | def getUniformFogDepthClip(self) -> float: method setUniformFogUseSun (line 43323) | def setUniformFogUseSun(self, enable: bool) -> None: method getUniformFogUseSun (line 43333) | def getUniformFogUseSun(self) -> bool: method setUniformFogSunBloom (line 43342) | def setUniformFogSunBloom(self, bloom: float) -> None: method getUniformFogSunBloom (line 43351) | def getUniformFogSunBloom(self) -> float: method setUniformFogSunIntensity (line 43360) | def setUniformFogSunIntensity(self, intensity: float) -> None: method getUniformFogSunIntensity (line 43370) | def getUniformFogSunIntensity(self) -> float: method setVolumeFog (line 43379) | def setVolumeFog(self, enable: bool) -> None: method getVolumeFog (line 43389) | def getVolumeFog(self) -> bool: method setVolumeFogColor (line 43398) | def setVolumeFogColor(self, color: Sequence[float]) -> None: method getVolumeFogColor (line 43408) | def getVolumeFogColor(self) -> Tuple[float, ...]: method setVolumeFogDensity (line 43417) | def setVolumeFogDensity(self, density: float) -> None: method getVolumeFogDensity (line 43426) | def getVolumeFogDensity(self) -> float: method setVolumeFogOpacity (line 43435) | def setVolumeFogOpacity(self, opacity: float) -> None: method getVolumeFogOpacity (line 43445) | def getVolumeFogOpacity(self) -> float: method setVolumeFogDepthRange (line 43454) | def setVolumeFogDepthRange(self, range: Sequence[float]) -> None: method getVolumeFogDepthRange (line 43467) | def getVolumeFogDepthRange(self) -> Tuple[float, ...]: method setVolumeFogHeightMode (line 43476) | def setVolumeFogHeightMode(self, viewportFogHeightMode: EnumValue) -> ... method getVolumeFogHeightMode (line 43495) | def getVolumeFogHeightMode(self) -> EnumValue: method setVolumeFogHeight (line 43504) | def setVolumeFogHeight(self, h: float) -> None: method getVolumeFogHeight (line 43513) | def getVolumeFogHeight(self) -> float: method setVolumeFogHeightFalloff (line 43522) | def setVolumeFogHeightFalloff(self, h: float) -> None: method getVolumeFogHeightFalloff (line 43532) | def getVolumeFogHeightFalloff(self) -> float: method setVolumeFogQuality (line 43541) | def setVolumeFogQuality(self, viewportFogQuality: EnumValue) -> None: method getVolumeFogQuality (line 43562) | def getVolumeFogQuality(self) -> EnumValue: method setVolumeFogLightIntensity (line 43571) | def setVolumeFogLightIntensity(self, h: float) -> None: method getVolumeFogLightIntensity (line 43582) | def getVolumeFogLightIntensity(self) -> float: method setVolumeFogLightScattering (line 43591) | def setVolumeFogLightScattering(self, scatter: Sequence[float]) -> None: method getVolumeFogLightScattering (line 43598) | def getVolumeFogLightScattering(self) -> Tuple[float, ...]: method setBloom (line 43607) | def setBloom(self, enable: bool) -> None: method getBloom (line 43617) | def getBloom(self) -> bool: method setBloomScale (line 43626) | def setBloomScale(self, scale: float) -> None: method getBloomScale (line 43636) | def getBloomScale(self) -> float: method setBloomIntensity (line 43645) | def setBloomIntensity(self, i: float) -> None: method getBloomIntensity (line 43655) | def getBloomIntensity(self) -> float: method setBloomThreshold (line 43664) | def setBloomThreshold(self, i: float) -> None: method getBloomThreshold (line 43675) | def getBloomThreshold(self) -> float: method setFogNode (line 43684) | def setFogNode(self, node: Node) -> None: method getFogNode (line 43696) | def getFogNode(self) -> Optional[Node]: method setDisplayOrthoGrid (line 43705) | def setDisplayOrthoGrid(self, enable: bool) -> None: method displayOrthoGrid (line 43715) | def displayOrthoGrid(self) -> bool: method setOrthoGridOffset (line 43724) | def setOrthoGridOffset(self, offset: Sequence[float]) -> None: method orthoGridOffset (line 43734) | def orthoGridOffset(self) -> Tuple[float, ...]: method setOrthoGridSpacing (line 43743) | def setOrthoGridSpacing(self, offset: Sequence[float]) -> None: method orthoGridSpacing (line 43753) | def orthoGridSpacing(self) -> Tuple[float, ...]: method setOrthoGridRuler (line 43763) | def setOrthoGridRuler(self, offset: Sequence[int]) -> None: method orthoGridRuler (line 43773) | def orthoGridRuler(self) -> Tuple[int, ...]: method setOrthoRuler (line 43783) | def setOrthoRuler(self, viewportGridRuler: EnumValue) -> None: method orthoRuler (line 43805) | def orthoRuler(self) -> EnumValue: method setUVReferenceGrid (line 43827) | def setUVReferenceGrid(self, enable: bool) -> None: method uvReferenceGrid (line 43836) | def uvReferenceGrid(self) -> bool: method setUVDisplayGridOverImage (line 43845) | def setUVDisplayGridOverImage(self, enable: bool) -> None: ... method uvReferenceGridOverImage (line 43846) | def uvReferenceGridOverImage(self) -> bool: ... method setUVGridPixelSpacing (line 43847) | def setUVGridPixelSpacing(self, offset: Sequence[int]) -> None: method uvGridPixelSpacing (line 43857) | def uvGridPixelSpacing(self) -> Tuple[int, ...]: method setUVGridPixelOffset (line 43867) | def setUVGridPixelOffset(self, offset: Sequence[float]) -> None: method uvGridPixelOffset (line 43876) | def uvGridPixelOffset(self) -> Tuple[float, ...]: method setClampUVGridToBackground (line 43885) | def setClampUVGridToBackground(self, enable: bool) -> None: method clampUVGridToBackground (line 43894) | def clampUVGridToBackground(self) -> bool: method setDisplayUVTileBoundaries (line 43903) | def setDisplayUVTileBoundaries(self, enable: bool) -> None: method displayUVTileBoundaries (line 43912) | def displayUVTileBoundaries(self) -> bool: method setColorScheme (line 43921) | def setColorScheme(self, viewportColorScheme: EnumValue) -> None: method colorScheme (line 43946) | def colorScheme(self) -> EnumValue: method colorFromName (line 43971) | def colorFromName(self, name: str) -> Color: method alphaFromName (line 43982) | def alphaFromName(self, name: str) -> float: method backgroundImage (line 43993) | def backgroundImage(self, viewportBackgroundView: EnumValue, layer: in... method setDisplayBackgroundImage (line 44040) | def setDisplayBackgroundImage(self, enable: bool) -> None: method displayBackgroundImage (line 44049) | def displayBackgroundImage(self) -> bool: method setDisplayEnvironmentBackgroundImage (line 44058) | def setDisplayEnvironmentBackgroundImage(self, enable: bool) -> None: method displayEnvironmentBackgroundImage (line 44068) | def displayEnvironmentBackgroundImage(self) -> bool: method setFilterBackgroundImage (line 44078) | def setFilterBackgroundImage(self, enable: bool) -> None: method filterBackgroundImage (line 44088) | def filterBackgroundImage(self) -> bool: method setApplyZoomToBackgroundImage (line 44097) | def setApplyZoomToBackgroundImage(self, enable: bool) -> None: method applyZoomToBackgroundImage (line 44106) | def applyZoomToBackgroundImage(self) -> bool: method setBackgroundImageQuality (line 44115) | def setBackgroundImageQuality(self, quality: int) -> None: method backgroundImageQuality (line 44125) | def backgroundImageQuality(self) -> int: method setDisplayTextures (line 44134) | def setDisplayTextures(self, enable: bool) -> None: method displayTextures (line 44143) | def displayTextures(self) -> bool: method setDisplayTextureLayers (line 44152) | def setDisplayTextureLayers(self, enable: bool) -> None: method displayTextureLayers (line 44162) | def displayTextureLayers(self) -> bool: method setDisplayProjectedTextures (line 44171) | def setDisplayProjectedTextures(self, enable: bool) -> None: method displayProjectedTextures (line 44180) | def displayProjectedTextures(self) -> bool: method setTextureMipmapping (line 44189) | def setTextureMipmapping(self, enable: bool) -> None: method textureMipmapping (line 44199) | def textureMipmapping(self) -> bool: method setTextureAnisotropicFilter (line 44208) | def setTextureAnisotropicFilter(self, num_samples: int) -> None: method textureAnisotropicFilter (line 44219) | def textureAnisotropicFilter(self) -> int: method setTextureCacheSize (line 44228) | def setTextureCacheSize(self, size_in_mb: int) -> None: method textureCacheSize (line 44240) | def textureCacheSize(self) -> int: method setTextureMaxMemory (line 44249) | def setTextureMaxMemory(self, size_in_mb: int) -> None: method textureMaxMemory (line 44260) | def textureMaxMemory(self) -> int: method setTextureAutoReduce (line 44269) | def setTextureAutoReduce(self, enable: bool) -> None: method textureAutoReduce (line 44279) | def textureAutoReduce(self) -> bool: method setTextureAutoReduce2D (line 44288) | def setTextureAutoReduce2D(self, enable: bool) -> None: method textureAutoReduce2D (line 44297) | def textureAutoReduce2D(self) -> bool: method setTextureAutoReduce3D (line 44306) | def setTextureAutoReduce3D(self, enable: bool) -> None: method textureAutoReduce3D (line 44315) | def textureAutoReduce3D(self) -> bool: method setTextureResLimit2D (line 44324) | def setTextureResLimit2D(self, enable: bool) -> None: method textureResLimit2D (line 44335) | def textureResLimit2D(self) -> bool: method setTextureMaxRes2D (line 44344) | def setTextureMaxRes2D(self, res: Sequence[int]) -> None: method textureMaxRes2D (line 44356) | def textureMaxRes2D(self) -> Tuple[int, ...]: method setTextureBitDepthLimit2D (line 44365) | def setTextureBitDepthLimit2D(self, viewportTextureDepth: EnumValue) -... method textureBitDepthLimit2D (line 44394) | def textureBitDepthLimit2D(self) -> EnumValue: method setTextureScale2D (line 44421) | def setTextureScale2D(self, scale: float) -> None: method textureScale2D (line 44431) | def textureScale2D(self) -> float: method setTextureResLimit3D (line 44440) | def setTextureResLimit3D(self, enable: bool) -> None: method textureResLimit3D (line 44452) | def textureResLimit3D(self) -> bool: method setTexture2DSettingsFor3D (line 44461) | def setTexture2DSettingsFor3D(self, enable: bool) -> None: method texture2DSettingsFor3D (line 44470) | def texture2DSettingsFor3D(self) -> bool: method setTextureMaxRes3D (line 44479) | def setTextureMaxRes3D(self, res: Sequence[int]) -> None: method textureMaxRes3D (line 44491) | def textureMaxRes3D(self) -> Tuple[int, ...]: method setTextureBitDepthLimit3D (line 44500) | def setTextureBitDepthLimit3D(self, viewportTextureDepth: EnumValue) -... method textureBitDepthLimit3D (line 44526) | def textureBitDepthLimit3D(self) -> EnumValue: method setTextureScale3D (line 44550) | def setTextureScale3D(self, scale: float) -> None: method textureScale3D (line 44560) | def textureScale3D(self) -> float: method useMaterialStylesheets (line 44569) | def useMaterialStylesheets(self, enable: bool) -> None: method usingMaterialStylesheets (line 44579) | def usingMaterialStylesheets(self) -> bool: method usePerPrimStylesheets (line 44588) | def usePerPrimStylesheets(self, enable: bool) -> None: method usingPerPrimStylesheets (line 44597) | def usingPerPrimStylesheets(self) -> bool: method usePackedStylesheets (line 44606) | def usePackedStylesheets(self, enable: bool) -> None: method usingPackedStylesheets (line 44616) | def usingPackedStylesheets(self) -> bool: method useMaterialOverrides (line 44626) | def useMaterialOverrides(self, enable: bool) -> None: method usingMaterialOverrides (line 44636) | def usingMaterialOverrides(self) -> bool: method setSingleObjectMaterialLimit (line 44646) | def setSingleObjectMaterialLimit(self, num_materials: int) -> None: method singleObjectMaterialLimit (line 44655) | def singleObjectMaterialLimit(self) -> int: method setMaterialUpdate (line 44664) | def setMaterialUpdate(self, viewportMaterialUpdate: EnumValue) -> None: method materialUpdate (line 44685) | def materialUpdate(self) -> EnumValue: method setInteractiveMaterialUpdate (line 44706) | def setInteractiveMaterialUpdate(self, enable: bool) -> None: method interactiveMaterialUpdate (line 44717) | def interactiveMaterialUpdate(self) -> bool: method updateMaterials (line 44726) | def updateMaterials(self) -> None: method setVisibleObjects (line 44735) | def setVisibleObjects(self, uv: str) -> None: method visibleObjects (line 44745) | def visibleObjects(self) -> str: method setRemoveBackfaces (line 44754) | def setRemoveBackfaces(self, enable: bool) -> None: method removeBackfaces (line 44763) | def removeBackfaces(self) -> bool: method setHullsOnly (line 44772) | def setHullsOnly(self, enable: bool) -> None: method hullsOnly (line 44782) | def hullsOnly(self) -> bool: method setDistanceBasedPackedCulling (line 44791) | def setDistanceBasedPackedCulling(self, enable: bool) -> None: method distanceBasedPackedCulling (line 44802) | def distanceBasedPackedCulling(self) -> bool: method setScenePolygonLimit (line 44811) | def setScenePolygonLimit(self, millions_of_polygons: int) -> None: method scenePolygonLimit (line 44821) | def scenePolygonLimit(self) -> int: method setPackedBoundingBoxMode (line 44831) | def setPackedBoundingBoxMode(self, viewportPackedBoxMode: EnumValue) -... method packedBoundingBoxMode (line 44857) | def packedBoundingBoxMode(self) -> EnumValue: method setOptimizeGeometry (line 44883) | def setOptimizeGeometry(self, enable: bool) -> None: method optimizeGeometry (line 44893) | def optimizeGeometry(self) -> bool: method setAgentLODReduction (line 44902) | def setAgentLODReduction(self, enable: bool) -> None: method agentLODReduction (line 44912) | def agentLODReduction(self) -> bool: method setAgentLODReductionBias (line 44922) | def setAgentLODReductionBias(self, reduce_bias: int) -> None: method agentLODReductionBias (line 44932) | def agentLODReductionBias(self) -> int: method setAgentShapePointCutoff (line 44941) | def setAgentShapePointCutoff(self, num_points: int) -> None: method agentShapePointCutoff (line 44951) | def agentShapePointCutoff(self) -> int: method setMaxLODLevels (line 44960) | def setMaxLODLevels(self, num_levels: int) -> None: method maxLODLevels (line 44970) | def maxLODLevels(self) -> int: method setBaseLODLevel (line 44979) | def setBaseLODLevel(self, base_level: int) -> None: method baseLODLevel (line 44991) | def baseLODLevel(self) -> int: method setSingleBoneDeform (line 45000) | def setSingleBoneDeform(self, viewportAgentBoneDeform: EnumValue) -> N... method singleBoneDeform (line 45023) | def singleBoneDeform(self) -> EnumValue: method setAgentWireframe (line 45046) | def setAgentWireframe(self, viewportAgentWireframe: EnumValue) -> None: method agentWireframe (line 45063) | def agentWireframe(self) -> EnumValue: method setAgentBlendShapes (line 45080) | def setAgentBlendShapes(self, enable: bool) -> None: method agentBlendShapes (line 45089) | def agentBlendShapes(self) -> bool: class GeometryViewportBackground (line 45099) | class GeometryViewportBackground: method __init__ (line 45106) | def __init__(self, *args, **kwargs) -> None: ... method setImageFile (line 45108) | def setImageFile(self, file_path: str) -> None: method imageFile (line 45118) | def imageFile(self) -> str: method setImageCOP (line 45127) | def setImageCOP(self, op_path: str) -> None: method imageCOP (line 45137) | def imageCOP(self) -> str: method sourceFromCOP (line 45146) | def sourceFromCOP(self, use_cop: bool) -> None: method isCOPSource (line 45156) | def isCOPSource(self) -> bool: method isFileSource (line 45165) | def isFileSource(self) -> bool: method setImageSource (line 45174) | def setImageSource(self, file_or_op_path: str) -> None: method imageSource (line 45184) | def imageSource(self) -> str: method setEnvironmentMap (line 45194) | def setEnvironmentMap(self, enable: bool) -> None: method isEnvironmentMap (line 45204) | def isEnvironmentMap(self) -> bool: method setAutoPlace (line 45214) | def setAutoPlace(self, enable: bool) -> None: method autoPlace (line 45224) | def autoPlace(self) -> bool: method setImageFitMode (line 45233) | def setImageFitMode(self, mode: EnumValue) -> None: method imageFitMode (line 45242) | def imageFitMode(self) -> EnumValue: method setImageOffset (line 45251) | def setImageOffset(self, offset: Sequence[float]) -> None: method imageOffset (line 45262) | def imageOffset(self) -> Tuple[float, ...]: method setImageScale (line 45271) | def setImageScale(self, scale: Sequence[float]) -> None: method imageScale (line 45282) | def imageScale(self) -> Tuple[float, ...]: method setOpacity (line 45291) | def setOpacity(self, opacity: float) -> None: method opacity (line 45301) | def opacity(self) -> float: method setBrightness (line 45310) | def setBrightness(self, intensity: float) -> None: method brightness (line 45321) | def brightness(self) -> float: class _GUDetailHandle (line 45331) | class _GUDetailHandle: method __init__ (line 45333) | def __init__(self, *args, **kwargs) -> None: ... method isFrozen (line 45335) | def isFrozen(self) -> bool: ... method isReadOnly (line 45336) | def isReadOnly(self) -> bool: ... method destroy (line 45337) | def destroy(self) -> None: ... class Handle (line 45339) | class Handle: method __init__ (line 45353) | def __init__(self, scene_viewer: PaneTab, name: str) -> None: method name (line 45393) | def name(self) -> str: method label (line 45402) | def label(self) -> str: method type (line 45411) | def type(self) -> str: method show (line 45423) | def show(self, value: bool) -> None: method update (line 45436) | def update(self, immediate: bool = False, node_update: bool = False, f... method visible (line 45473) | def visible(self) -> bool: method enableParms (line 45482) | def enableParms(self, parm_names: Sequence[str]) -> None: method disableParms (line 45514) | def disableParms(self, parm_names: Sequence[str]) -> None: method applySettings (line 45534) | def applySettings(self, settings: str) -> None: method settingValue (line 45548) | def settingValue(self, setting_name: str) -> Any: method makePersistent (line 45561) | def makePersistent(self, value: bool) -> None: method isPersistent (line 45582) | def isPersistent(self) -> bool: method isValid (line 45591) | def isValid(self) -> bool: method isActive (line 45601) | def isActive(self) -> bool: method parmPaths (line 45612) | def parmPaths(self) -> Tuple[str, ...]: method isDynamic (line 45622) | def isDynamic(self) -> bool: method info (line 45631) | def info(self) -> str: method nodePath (line 45644) | def nodePath(self, index: int = 0) -> str: method makeAsDefault (line 45657) | def makeAsDefault(self) -> None: method revertToDefault (line 45667) | def revertToDefault(self) -> None: method revertToFactoryDefault (line 45676) | def revertToFactoryDefault(self) -> None: method exportToHDA (line 45689) | def exportToHDA(self) -> None: method exportParmsToHDA (line 45699) | def exportParmsToHDA(self) -> None: method beginUndo (line 45708) | def beginUndo(self) -> None: method endUndo (line 45718) | def endUndo(self) -> None: method detach (line 45727) | def detach(self) -> None: method attach (line 45745) | def attach(self) -> None: method isDetached (line 45754) | def isDetached(self) -> bool: method isDetachable (line 45764) | def isDetachable(self) -> bool: class hda (line 45775) | class hda: method __init__ (line 45785) | def __init__(self, *args, **kwargs) -> None: ... method installFile (line 45788) | def installFile(file_path: str, oplibraries_file: Optional[str] = None... method uninstallFile (line 45846) | def uninstallFile(file_path: str, oplibraries_file: Optional[str] = No... method installFiles (line 45879) | def installFiles(file_paths: Sequence[str], oplibraries_file: Optional... method uninstallFiles (line 45898) | def uninstallFiles(file_paths: Sequence[str], oplibraries_file: Option... method reloadFiles (line 45920) | def reloadFiles(file_paths: Sequence[str]) -> None: method reloadFile (line 45940) | def reloadFile(file_path: str) -> None: method reloadAllFiles (line 45954) | def reloadAllFiles(rescan: bool = True) -> None: method reloadNamespaceOrder (line 45970) | def reloadNamespaceOrder() -> None: method expandToDirectory (line 45984) | def expandToDirectory(file_path: str, directory_path: str) -> None: method collapseFromDirectory (line 46007) | def collapseFromDirectory(file_path: str, directory_path: str) -> None: method loadedFiles (line 46020) | def loadedFiles() -> Tuple[str, ...]: method renameSource (line 46049) | def renameSource(oplibraries_file: str, source_name: Optional[str] = N... method definitionsInFile (line 46066) | def definitionsInFile(file_path: str) -> Tuple[HDADefinition, ...]: method componentsFromFullNodeTypeName (line 46090) | def componentsFromFullNodeTypeName(node_type_name: str) -> Tuple[str, ... method fullNodeTypeNameFromComponents (line 46108) | def fullNodeTypeNameFromComponents(scope_node_type: str, name_space: s... method changeCurrentStoreUser (line 46128) | def changeCurrentStoreUser(new_user: str) -> None: ... method safeguardHDAs (line 46130) | def safeguardHDAs() -> bool: method setSafeguardHDAs (line 46142) | def setSafeguardHDAs(on: bool) -> None: method removeAllEventCallbacks (line 46154) | def removeAllEventCallbacks() -> None: method defaultFileExtension (line 46166) | def defaultFileExtension() -> str: method addEventCallback (line 46177) | def addEventCallback(event_types: Sequence[EnumValue], callback: Calla... method removeEventCallback (line 46246) | def removeEventCallback(event_types: Sequence[EnumValue], callback: Ca... method eventCallbacks (line 46267) | def eventCallbacks() -> Tuple[Tuple[Tuple[EnumValue, ...], Any], ...]:... method reloadHDAModule (line 46271) | def reloadHDAModule(hda_module: HDAModule) -> None: ... class HDADefinition (line 46273) | class HDADefinition: method __init__ (line 46312) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 46314) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 46315) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 46316) | def __hash__(self) -> int: ... method nodeType (line 46317) | def nodeType(self) -> OpNodeType: method nodeTypeCategory (line 46327) | def nodeTypeCategory(self) -> OpNodeTypeCategory: method nodeTypeName (line 46342) | def nodeTypeName(self) -> str: method libraryFilePath (line 46355) | def libraryFilePath(self) -> str: method embeddedHelp (line 46369) | def embeddedHelp(self) -> str: method isInstalled (line 46382) | def isInstalled(self) -> bool: method installed (line 46396) | def installed(self) -> bool: ... method isCurrent (line 46397) | def isCurrent(self) -> bool: method current (line 46430) | def current(self) -> bool: ... method isPreferred (line 46431) | def isPreferred(self) -> bool: method preferred (line 46450) | def preferred(self) -> bool: ... method setIsPreferred (line 46451) | def setIsPreferred(self, preferred: bool) -> None: method setPreferred (line 46461) | def setPreferred(self, preferred: bool) -> None: ... method enableCreateBackups (line 46462) | def enableCreateBackups(self, create_backups: bool) -> None: method isCreateBackupsEnabled (line 46473) | def isCreateBackupsEnabled(self) -> bool: method sections (line 46483) | def sections(self) -> dict[str, HDASection]: method hasSection (line 46493) | def hasSection(self, name: str) -> bool: method addSection (line 46505) | def addSection(self, name: str, contents: str = ..., compression_type:... method removeSection (line 46537) | def removeSection(self, name: str) -> None: method description (line 46555) | def description(self) -> str: method setDescription (line 46568) | def setDescription(self, label: str) -> None: method icon (line 46581) | def icon(self) -> str: method setIcon (line 46594) | def setIcon(self, icon: str) -> None: method minNumInputs (line 46604) | def minNumInputs(self) -> int: method setMinNumInputs (line 46617) | def setMinNumInputs(self, min_num_inputs: int) -> None: method maxNumInputs (line 46629) | def maxNumInputs(self) -> int: method setMaxNumInputs (line 46642) | def setMaxNumInputs(self, max_num_inputs: int) -> None: method maxNumOutputs (line 46660) | def maxNumOutputs(self) -> int: method setMaxNumOutputs (line 46672) | def setMaxNumOutputs(self, max_num_outputs: int) -> None: method extraInfo (line 46682) | def extraInfo(self) -> str: method setExtraInfo (line 46694) | def setExtraInfo(self, extra_info: str) -> None: method extraInfoValue (line 46707) | def extraInfoValue(self, key: str) -> str: ... method userInfo (line 46708) | def userInfo(self) -> str: method setUserInfo (line 46718) | def setUserInfo(self, extra_info: str) -> None: method hideDefaultParameters (line 46728) | def hideDefaultParameters(self) -> bool: method representativeNodePath (line 46745) | def representativeNodePath(self) -> str: method comment (line 46765) | def comment(self) -> str: ... method setComment (line 46766) | def setComment(self, comment: str) -> None: ... method version (line 46767) | def version(self) -> str: ... method setVersion (line 46768) | def setVersion(self, version: str) -> None: ... method modificationTime (line 46769) | def modificationTime(self) -> int: method setModificationTime (line 46783) | def setModificationTime(self, time: int = -1) -> None: method options (line 46795) | def options(self) -> HDAOptions: method setOptions (line 46805) | def setOptions(self, options: HDAOptions) -> None: method updateFromNode (line 46815) | def updateFromNode(self, node: Node) -> None: method save (line 46835) | def save(self, file_name: str, template_node: Optional[Node] = None, o... method copyToHDAFile (line 46876) | def copyToHDAFile(self, file_name: str, new_name: Optional[str] = None... method destroy (line 46906) | def destroy(self) -> None: method parmTemplateGroup (line 46919) | def parmTemplateGroup(self) -> ParmTemplateGroup: method setParmTemplateGroup (line 46949) | def setParmTemplateGroup(self, parm_template_group: ParmTemplateGroup,... method setExtraFileOption (line 46985) | def setExtraFileOption(self, name, value: OptionType, type_hint: EnumV... method removeExtraFileOption (line 47015) | def removeExtraFileOption(self, name: str) -> None: method compileCodeSection (line 47028) | def compileCodeSection(self, source_section: str, destination_section:... method tools (line 47038) | def tools(self) -> dict[str, Tool]: method extraFileOptions (line 47056) | def extraFileOptions(self) -> dict[str, OptionType]: class HDAModule (line 47081) | class HDAModule: method __init__ (line 47197) | def __init__(self, *args, **kwargs) -> None: ... method __getattr__ (line 47199) | def __getattr__(self, name: str) -> Any: ... class HDAOptions (line 47201) | class HDAOptions: method __init__ (line 47254) | def __init__(self) -> None: method __eq__ (line 47265) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 47266) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 47267) | def __hash__(self) -> int: ... method checkForExternalLinks (line 47268) | def checkForExternalLinks(self) -> bool: method setCheckForExternalLinks (line 47280) | def setCheckForExternalLinks(self, on: bool) -> None: method compressContents (line 47290) | def compressContents(self) -> bool: method setCompressContents (line 47304) | def setCompressContents(self, on: bool) -> None: method compressionType (line 47314) | def compressionType(self) -> int: ... method setCompressionType (line 47315) | def setCompressionType(self, type: int) -> None: ... method forbidOutsideParms (line 47316) | def forbidOutsideParms(self) -> bool: method setForbidOutsideParms (line 47329) | def setForbidOutsideParms(self, on: bool) -> None: method lockContents (line 47339) | def lockContents(self) -> bool: method setLockContents (line 47359) | def setLockContents(self, on: bool) -> None: method makeInitialParmsDefaults (line 47369) | def makeInitialParmsDefaults(self) -> bool: method setMakeInitialParmsDefaults (line 47382) | def setMakeInitialParmsDefaults(self, on: bool) -> None: method parametersFromVexCode (line 47392) | def parametersFromVexCode(self) -> bool: method setParametersFromVexCode (line 47404) | def setParametersFromVexCode(self, on: bool) -> None: method prefixDroppedParmLabels (line 47414) | def prefixDroppedParmLabels(self) -> bool: ... method setPrefixDroppedParmLabels (line 47415) | def setPrefixDroppedParmLabels(self, on: bool) -> None: method prefixDroppedParmNames (line 47425) | def prefixDroppedParmNames(self) -> bool: method setPrefixDroppedParmNames (line 47441) | def setPrefixDroppedParmNames(self, on: bool) -> None: method saveInitialParmsAndContents (line 47451) | def saveInitialParmsAndContents(self) -> bool: method setSaveInitialParmsAndContents (line 47465) | def setSaveInitialParmsAndContents(self, on: bool) -> None: method unlockNewInstances (line 47475) | def unlockNewInstances(self) -> bool: method setUnlockNewInstances (line 47488) | def setUnlockNewInstances(self, on: bool) -> None: method saveSpareParms (line 47498) | def saveSpareParms(self) -> bool: method setSaveSpareParms (line 47512) | def setSaveSpareParms(self, on: bool) -> None: method saveCachedCode (line 47522) | def saveCachedCode(self) -> bool: method setSaveCachedCode (line 47538) | def setSaveCachedCode(self, on: bool) -> None: class HDASection (line 47550) | class HDASection: method __init__ (line 47578) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 47580) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 47581) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 47582) | def __hash__(self) -> int: ... method definition (line 47583) | def definition(self) -> HDADefinition: method name (line 47592) | def name(self) -> str: method contents (line 47609) | def contents(self, compressionType: EnumValue = ...) -> str: method binaryContents (line 47629) | def binaryContents(self, compressionType: EnumValue = ...) -> bytes: method setContents (line 47647) | def setContents(self, contents: str, compressionType: EnumValue = ...)... method size (line 47668) | def size(self) -> int: method modificationTime (line 47678) | def modificationTime(self) -> int: method destroy (line 47701) | def destroy(self) -> None: class HDAViewerHandleModule (line 47720) | class HDAViewerHandleModule: method __init__ (line 47747) | def __init__(self, *args, **kwargs) -> None: ... method __getattr__ (line 47749) | def __getattr__(self, name: str) -> Any: ... class HDAViewerStateModule (line 47751) | class HDAViewerStateModule: method __init__ (line 47778) | def __init__(self, *args, **kwargs) -> None: ... method __getattr__ (line 47780) | def __getattr__(self, name: str) -> Any: ... class HelpBrowser (line 47782) | class HelpBrowser(PaneTab): method __init__ (line 47793) | def __init__(self, *args, **kwargs) -> None: ... method displayHelp (line 47795) | def displayHelp(self, node_type: NodeType) -> None: method displayHelpPath (line 47807) | def displayHelpPath(self, help_path: str) -> None: method displayHelpPyPanel (line 47818) | def displayHelpPyPanel(self, interface_name: str) -> None: method homePage (line 47829) | def homePage(self) -> str: method setHomePage (line 47841) | def setHomePage(self, home_page: str) -> None: method url (line 47853) | def url(self) -> str: method setUrl (line 47865) | def setUrl(self, url: str) -> None: method showUI (line 47877) | def showUI(self, show: bool) -> None: class hipFile (line 47890) | class hipFile: method __init__ (line 47908) | def __init__(self, *args, **kwargs) -> None: ... method save (line 47911) | def save(file_name: Optional[str] = None, save_to_recent_files: bool =... method saveAndIncrementFileName (line 47950) | def saveAndIncrementFileName() -> None: method saveAndBackup (line 47970) | def saveAndBackup() -> str: method saveAsBackup (line 47995) | def saveAsBackup() -> str: method basename (line 48019) | def basename() -> str: method name (line 48030) | def name() -> str: method path (line 48051) | def path() -> str: method setName (line 48063) | def setName(file_name: str) -> None: method saveMode (line 48084) | def saveMode() -> EnumValue: method setSaveMode (line 48095) | def setSaveMode(savemode: EnumValue) -> None: method clear (line 48106) | def clear(suppress_save_prompt: bool = False) -> bool: method load (line 48130) | def load(file_name: str, suppress_save_prompt: bool = False, ignore_lo... method merge (line 48170) | def merge(file_name: str, node_pattern: str = ..., overwrite_on_confli... method collisionNodesIfMerged (line 48212) | def collisionNodesIfMerged(file_name: str, node_pattern: str = ...) ->... method isLoadingHipFile (line 48237) | def isLoadingHipFile() -> bool: method isShuttingDown (line 48247) | def isShuttingDown() -> bool: method isNewFile (line 48257) | def isNewFile() -> bool: method hasUnsavedChanges (line 48272) | def hasUnsavedChanges() -> bool: method groupColorTable (line 48287) | def groupColorTable() -> dict[str, Color]: method setGroupColorTable (line 48303) | def setGroupColorTable(color_table: dict[str, Color]) -> None: method importFBX (line 48325) | def importFBX(file_name: str, suppress_save_prompt: bool = ..., merge_... method clearEventCallbacks (line 48377) | def clearEventCallbacks() -> None: method addEventCallback (line 48393) | def addEventCallback(callback: Callable[[EnumValue], None]) -> None: ... method removeEventCallback (line 48395) | def removeEventCallback(callback: Callable[[EnumValue], None]) -> None... method eventCallbacks (line 48397) | def eventCallbacks() -> Tuple[Callable[[EnumValue], None], ...]: ... class hmath (line 48399) | class hmath: method __init__ (line 48412) | def __init__(self, *args, **kwargs) -> None: ... method identityTransform (line 48415) | def identityTransform() -> Matrix4: method buildTranslate (line 48431) | def buildTranslate(tx: float|Vector3, ty: float = ..., tz: float = ...... method buildScale (line 48448) | def buildScale(sx: float|Vector3, sy: float = ..., sz: float = ...) ->... method buildShear (line 48469) | def buildShear(shearx: float|Vector3, sheary: float = ..., shearz: flo... method buildRotate (line 48486) | def buildRotate(rx: float|Vector3, ry: float = ..., rz: float = ..., o... method buildRotateAboutAxis (line 48510) | def buildRotateAboutAxis(axis: Sequence[float], angle_in_deg: float) -... method buildRotateZToAxis (line 48568) | def buildRotateZToAxis(axis: Sequence[float]) -> Matrix4: method buildRotateLookAt (line 48590) | def buildRotateLookAt(_from: Vector3, to: Vector3, up: Vector3) -> Mat... method buildTransform (line 48623) | def buildTransform(values_dict: Mapping[str, Vector3|Sequence[float]],... method degToRad (line 48674) | def degToRad(degrees: float) -> float: method radToDeg (line 48686) | def radToDeg(radians: float) -> float: method noise1d (line 48698) | def noise1d(pos: Sequence[float]) -> float: method noise3d (line 48712) | def noise3d(pos: Sequence[float]) -> Vector3: method fit (line 48726) | def fit(value: float, oldmin: float, oldmax: float, newmin: float, new... method fit01 (line 48740) | def fit01(value: float, newmin: float, newmax: float) -> float: method fit10 (line 48755) | def fit10(value: float, newmin: float, newmax: float) -> float: method fit11 (line 48770) | def fit11(value: float, newmin: float, newmax: float) -> float: method sign (line 48785) | def sign(value: float) -> float: method clamp (line 48799) | def clamp(value: float, min: float, max: float) -> float: method smooth (line 48811) | def smooth(value: float, min: float, max: float) -> float: method wrap (line 48843) | def wrap(value: float, min: float, max: float) -> float: method rand (line 48856) | def rand(seed: float) -> float: method orient2d (line 48867) | def orient2d(pa: Sequence[float], pb: Sequence[float], point: Sequence... method orient3d (line 48881) | def orient3d(pa: Sequence[float], pb: Sequence[float], pc: Sequence[fl... method inCircle (line 48895) | def inCircle(pa: Sequence[float], pb: Sequence[float], pc: Sequence[fl... method inSphere (line 48910) | def inSphere(pa: Sequence[float], pb: Sequence[float], pc: Sequence[fl... method intersectPlane (line 48926) | def intersectPlane(plane_point: Vector3, plane_dir: Vector3, line_orig... method combineLocalTransform (line 48960) | def combineLocalTransform(local: Matrix4, world: Matrix4, parent_local... method extractLocalTransform (line 48972) | def extractLocalTransform(local: Matrix4, world: Matrix4, parent_local... method slerpTransforms (line 48987) | def slerpTransforms(xforms: typing.Iterable[Matrix4], input_weights: S... class hotkeys (line 49007) | class hotkeys: method __init__ (line 49019) | def __init__(self, *args, **kwargs) -> None: ... method assignments (line 49022) | def assignments(hotkey_symbol: str) -> Tuple[str,...]: ... method assignmentsAsTuples (line 49024) | def assignmentsAsTuples(context: str, command: str, resolve_refs: bool... method hotkeyDescription (line 49026) | def hotkeyDescription(hotkey_symbol: str) -> str: method hotkeyLabel (line 49038) | def hotkeyLabel(hotkey_symbol: str) -> str: method isKeyMatch (line 49054) | def isKeyMatch(key: str, hotkey_symbol: str) -> bool: method isKeycodeMatch (line 49077) | def isKeycodeMatch(key_code: int, hotkey_symbol: str) -> bool: method findConflicts (line 49094) | def findConflicts(context: str, hotkey_symbol: str, key: str|None = ..... method resolveAssignments (line 49133) | def resolveAssignments(contexts: Sequence[str], hotkey_symbols: Sequen... method changeIndex (line 49149) | def changeIndex() -> int: method commandsInContext (line 49163) | def commandsInContext(context: str) -> Tuple[dict[str, str], ...]: method contextsInContext (line 49184) | def contextsInContext(context: str) -> Tuple[dict[str, str], ...]: method commandCategoriesInCategory (line 49201) | def commandCategoriesInCategory(category: str) -> Tuple[dict[str, str]... method commandsInCategory (line 49219) | def commandsInCategory(category: str) -> Tuple[dict[str, str], ...]: method commandBindingsInContext (line 49236) | def commandBindingsInContext(context: str) -> Tuple[dict[str, str], ...]: method addCommand (line 49253) | def addCommand(hotkey_symbol: str, label: str, description: str, assig... method addContext (line 49316) | def addContext(hotkey_symbol: str, label: str, description: str) -> bool: method installDefinitions (line 49347) | def installDefinitions(definitions: PluginHotkeyDefinitions) -> None: method uninstallDefinitions (line 49364) | def uninstallDefinitions(definitions: PluginHotkeyDefinitions) -> None... method addCommandBinding (line 49366) | def addCommandBinding(context: str, command: str) -> bool: method removeCommandBinding (line 49388) | def removeCommandBinding(context: str, command: str) -> bool: method removeHotkeySymbol (line 49408) | def removeHotkeySymbol(hotkey_symbol: str) -> None: method hotkeySymbol (line 49431) | def hotkeySymbol(english_context: str, english_command: Optional[str] ... method clearAssignments (line 49456) | def clearAssignments(context: str, hotkey_symbol: str = ...) -> bool: method addAssignment (line 49483) | def addAssignment(context: str, hotkey_symbol: str, key: str = ...) ->... method removeAssignment (line 49515) | def removeAssignment(context: str, hotkey_symbol: str, key: str = ...)... method availableKeycodes (line 49541) | def availableKeycodes(context: str, hotkey_symbol: str, layout_keys: S... method keycodeToString (line 49574) | def keycodeToString(keycode: int, modifiers: int = 0) -> str: method stringToKeycode (line 49588) | def stringToKeycode(key: str, modifiers: int = 0) -> int: method splitKeySequenceString (line 49602) | def splitKeySequenceString(key: str) -> Tuple[str, ...]: method revertToDefaults (line 49619) | def revertToDefaults(context: str, hotkey_symbol: str, one_level_only:... method saveOverrides (line 49645) | def saveOverrides() -> bool: method saveAsKeymap (line 49659) | def saveAsKeymap(name: str, path: Optional[str] = None) -> bool: method loadKeymap (line 49680) | def loadKeymap(name: str, path: Optional[str] = None) -> bool: method importKeymap (line 49700) | def importKeymap(name: str, path: str) -> bool: method keymaps (line 49719) | def keymaps() -> Tuple[Tuple[str, str], ...]: method currentKeymap (line 49730) | def currentKeymap() -> str: class ik (line 49740) | class ik: method __init__ (line 49753) | def __init__(self, *args, **kwargs) -> None: ... method solveFBIK (line 49756) | def solveFBIK(skeleton: Sequence[_ik_Skeleton], targets: Sequence[_ik_... method solvePhysFBIK (line 49795) | def solvePhysFBIK(skeleton: Sequence[_ik_Skeleton], targets: Sequence[... class _ik_Joint (line 49843) | class _ik_Joint: method __init__ (line 49861) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 49863) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 49864) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 49865) | def __hash__(self) -> int: ... method worldTransform (line 49866) | def worldTransform(self) -> Matrix4: method setWorldTransform (line 49875) | def setWorldTransform(self, xform: Matrix4) -> None: method parent (line 49884) | def parent(self) -> Optional[_ik_Joint]: method setParent (line 49893) | def setParent(self, parent: _ik_Joint) -> None: ... method rotationOrder (line 49894) | def rotationOrder(self) -> str: method setRotationOrder (line 49904) | def setRotationOrder(self, rotate_order: str) -> None: method rotationWeights (line 49919) | def rotationWeights(self) -> Vector3: method setRotationWeights (line 49929) | def setRotationWeights(self, weights: Vector3) -> None: method translationWeights (line 49941) | def translationWeights(self) -> Vector3: method setTranslationWeights (line 49951) | def setTranslationWeights(self, weights: Vector3) -> None: method mass (line 49965) | def mass(self) -> float: method setMass (line 49975) | def setMass(self, mass: float) -> None: method localCenterOfMass (line 49986) | def localCenterOfMass(self) -> Vector3: method setLocalCenterOfMass (line 49996) | def setLocalCenterOfMass(self, com: Vector3) -> None: method rotationLimits (line 50008) | def rotationLimits(self) -> Tuple[Vector3, Vector3]: method setRotationLimits (line 50019) | def setRotationLimits(self, lower: Vector3, upper: Vector3) -> None: method translationLimits (line 50029) | def translationLimits(self) -> Tuple[Vector3, Vector3]: method setTranslationLimits (line 50039) | def setTranslationLimits(self, lower: Vector3, upper: Vector3) -> None: method restTransform (line 50048) | def restTransform(self) -> Matrix4: method setRestTransform (line 50057) | def setRestTransform(self, xform: Matrix4) -> None: method restRotationWeights (line 50074) | def restRotationWeights(self) -> Vector3: method setRestRotationWeights (line 50084) | def setRestRotationWeights(self, weights: Vector3) -> None: method restTranslationWeights (line 50096) | def restTranslationWeights(self) -> Vector3: method setRestTranslationWeights (line 50106) | def setRestTranslationWeights(self, weights: Vector3) -> None: class _ik_Skeleton (line 50119) | class _ik_Skeleton: method __init__ (line 50133) | def __init__(self) -> None: method __eq__ (line 50147) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 50148) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 50149) | def __hash__(self) -> int: ... method addJoint (line 50150) | def addJoint(self, world_transform: Matrix4 = ..., parent: _ik_Joint|N... method joints (line 50181) | def joints(self) -> Iterator[_ik_Joint]: method centerOfMass (line 50191) | def centerOfMass(self) -> Vector3: class _ik_Target (line 50203) | class _ik_Target: method __init__ (line 50220) | def __init__(self, joint: _ik_Joint|None = ..., goal_transform: Matrix... method __eq__ (line 50254) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 50255) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 50256) | def __hash__(self) -> int: ... method joint (line 50257) | def joint(self) -> _ik_Joint: method setJoint (line 50266) | def setJoint(self, joint: _ik_Joint) -> None: method goalTransform (line 50277) | def goalTransform(self) -> Matrix4: method setGoalTransform (line 50286) | def setGoalTransform(self, xform: Matrix4) -> None: method jointOffset (line 50295) | def jointOffset(self) -> Matrix4: method setJointOffset (line 50305) | def setJointOffset(self, offset: Matrix4) -> None: method targetType (line 50318) | def targetType(self) -> EnumValue: method setTargetType (line 50327) | def setTargetType(self, target_type: EnumValue) -> None: method weight (line 50337) | def weight(self) -> float: method setWeight (line 50346) | def setWeight(self, weight: float) -> None: method priority (line 50357) | def priority(self) -> int: method setPriority (line 50366) | def setPriority(self, level: int) -> None: method depth (line 50379) | def depth(self) -> int: method setDepth (line 50388) | def setDepth(self, depth: int) -> None: class ImageLayer (line 50400) | class ImageLayer: method __init__ (line 50421) | def __init__(self, layer: Optional[ImageLayer] = None) -> None: method __enter__ (line 50442) | def __enter__(self) -> Optional[ImageLayer]: ... method __exit__ (line 50443) | def __exit__(self, type: Any, value: Any, traceback: Any) -> None: ... method close (line 50444) | def close(self) -> None: method storageType (line 50459) | def storageType(self) -> EnumValue: method border (line 50469) | def border(self) -> EnumValue: method typeInfo (line 50478) | def typeInfo(self) -> EnumValue: method setStorageType (line 50488) | def setStorageType(self, storagetype: EnumValue) -> None: method setBorder (line 50499) | def setBorder(self, storagetype: EnumValue) -> None: method setTypeInfo (line 50510) | def setTypeInfo(self, storagetype: EnumValue) -> None: method channelCount (line 50521) | def channelCount(self) -> int: method setChannelCount (line 50530) | def setChannelCount(self, chan: int) -> None: method bufferResolution (line 50542) | def bufferResolution(self) -> Tuple[int, ...]: method onCPU (line 50553) | def onCPU(self) -> bool: method onGPU (line 50563) | def onGPU(self) -> bool: method isConstant (line 50573) | def isConstant(self) -> bool: method storesIntegers (line 50585) | def storesIntegers(self) -> bool: method makeConstant (line 50594) | def makeConstant(self, val: Sequence[float]) -> None: method dataWindow (line 50607) | def dataWindow(self) -> BoundingRect: method displayWindow (line 50617) | def displayWindow(self) -> BoundingRect: method pixelAspectRatio (line 50627) | def pixelAspectRatio(self) -> float: method pixelScale (line 50636) | def pixelScale(self) -> Tuple[float, ...]: method setDataWindow (line 50648) | def setDataWindow(self, x: int, y: int, w: int, h: int) -> None: method setDisplayWindow (line 50661) | def setDisplayWindow(self, x: float, y: float, w: float, h: float) -> ... method setPixelAspectRatio (line 50672) | def setPixelAspectRatio(self, aspect: float) -> None: method setPixelScale (line 50683) | def setPixelScale(self, scale: Sequence[float]) -> None: method projection (line 50694) | def projection(self) -> EnumValue: method aperture (line 50704) | def aperture(self) -> float: method focalLength (line 50714) | def focalLength(self) -> float: method cameraPosition (line 50724) | def cameraPosition(self) -> Tuple[float, ...]: method fStop (line 50734) | def fStop(self) -> float: method clippingRange (line 50743) | def clippingRange(self) -> Tuple[float, ...]: method focusDistance (line 50752) | def focusDistance(self) -> float: method shutter (line 50761) | def shutter(self) -> Tuple[float, ...]: method setProjection (line 50771) | def setProjection(self, projection: EnumValue) -> None: method setAperture (line 50780) | def setAperture(self, aperture: float) -> None: method setFocalLength (line 50789) | def setFocalLength(self, focal: float) -> None: method setCameraPosition (line 50798) | def setCameraPosition(self, pos: Sequence[float]) -> None: method setFStop (line 50808) | def setFStop(self, fstop: float) -> None: method setClippingRange (line 50817) | def setClippingRange(self, range: Sequence[float]) -> None: method setFocusDistance (line 50826) | def setFocusDistance(self, focus: float) -> None: method setShutter (line 50835) | def setShutter(self, shutter: Sequence[float]) -> None: method projectionTransform (line 50844) | def projectionTransform(self) -> Matrix4: method imageToWorldTransform (line 50854) | def imageToWorldTransform(self) -> Matrix4: method imageToPixelScale (line 50864) | def imageToPixelScale(self) -> Tuple[float, ...]: method imageToPixelTranslate (line 50873) | def imageToPixelTranslate(self) -> Tuple[float, ...]: method imageToBufferScale (line 50882) | def imageToBufferScale(self) -> Tuple[float, ...]: method imageToBufferTranslate (line 50891) | def imageToBufferTranslate(self) -> Tuple[float, ...]: method bufferToPixelScale (line 50900) | def bufferToPixelScale(self) -> Tuple[float, ...]: method bufferToPixelTranslate (line 50909) | def bufferToPixelTranslate(self) -> Tuple[float, ...]: method textureToBufferScale (line 50918) | def textureToBufferScale(self) -> Tuple[float, ...]: method imageToPixel (line 50927) | def imageToPixel(self, p: Sequence[float]) -> Tuple[float, ...]: method imageToBuffer (line 50936) | def imageToBuffer(self, p: Sequence[float]) -> Tuple[float, ...]: method imageToTexture (line 50945) | def imageToTexture(self, p: Sequence[float]) -> Tuple[float, ...]: method pixelToImage (line 50954) | def pixelToImage(self, p: Sequence[float]) -> Tuple[float, ...]: method pixelToBuffer (line 50963) | def pixelToBuffer(self, p: Sequence[float]) -> Tuple[float, ...]: method pixelToTexture (line 50972) | def pixelToTexture(self, p: Sequence[float]) -> Tuple[float, ...]: method bufferToPixel (line 50981) | def bufferToPixel(self, p: Sequence[float]) -> Tuple[float, ...]: method bufferToImage (line 50990) | def bufferToImage(self, p: Sequence[float]) -> Tuple[float, ...]: method bufferToTexture (line 50999) | def bufferToTexture(self, p: Sequence[float]) -> Tuple[float, ...]: method textureToPixel (line 51008) | def textureToPixel(self, p: Sequence[float]) -> Tuple[float, ...]: method textureToImage (line 51017) | def textureToImage(self, p: Sequence[float]) -> Tuple[float, ...]: method textureToBuffer (line 51026) | def textureToBuffer(self, p: Sequence[float]) -> Tuple[float, ...]: method worldToBuffer (line 51035) | def worldToBuffer(self, p: Sequence[float]) -> Tuple[float, ...]: method bufferIndexV4 (line 51044) | def bufferIndexV4(self, x: int, y: int) -> Tuple[float, ...]: method bufferIndexI (line 51053) | def bufferIndexI(self, x: int, y: int) -> int: method bufferIndex (line 51062) | def bufferIndex(self, x: int, y: int) -> Any: method bufferIndexRaw (line 51073) | def bufferIndexRaw(self, x: int, y: int) -> bytes: method freeze (line 51082) | def freeze(self) -> Optional[ImageLayer]: method isFrozen (line 51096) | def isFrozen(self) -> bool: method attributes (line 51105) | def attributes(self) -> dict[str, Any]: method setAttributes (line 51114) | def setAttributes(self, p: dict[str, Any]) -> None: method updateAttributes (line 51123) | def updateAttributes(self, p: dict[str, Any]) -> None: method allBufferElements (line 51133) | def allBufferElements(self, *args) -> bytes: method setAllBufferElements (line 51147) | def setAllBufferElements(self, *args) -> None: class IndexPairPropertyTable (line 51160) | class IndexPairPropertyTable: method __init__ (line 51170) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 51172) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 51173) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 51174) | def __hash__(self) -> int: ... method attrib (line 51175) | def attrib(self) -> Attrib: method numIndices (line 51184) | def numIndices(self) -> int: ... method propertyNames (line 51185) | def propertyNames(self) -> Tuple[str, ...]: method propertyDataType (line 51194) | def propertyDataType(self, prop_name: str) -> EnumValue: method propertySize (line 51203) | def propertySize(self, prop_name: str) -> int: method floatPropertyValueAtIndex (line 51212) | def floatPropertyValueAtIndex(self, prop_name: str, idx: int) -> float: method floatListPropertyValueAtIndex (line 51224) | def floatListPropertyValueAtIndex(self, prop_name: str, idx: int) -> T... method intPropertyValueAtIndex (line 51237) | def intPropertyValueAtIndex(self, prop_name: str, idx: int) -> int: method intListPropertyValueAtIndex (line 51249) | def intListPropertyValueAtIndex(self, prop_name: str, idx: int) -> Tup... method stringPropertyValueAtIndex (line 51260) | def stringPropertyValueAtIndex(self, prop_name: str, idx: int) -> str: method stringListPropertyValueAtIndex (line 51272) | def stringListPropertyValueAtIndex(self, prop_name: str, idx: int) -> ... class IndirectInput (line 51285) | class IndirectInput(NetworkMovableItem): method __init__ (line 51301) | def __init__(self, *args, **kwargs) -> None: ... method outputs (line 51303) | def outputs(self) -> Tuple[Node, ...]: method outputConnections (line 51315) | def outputConnections(self) -> Tuple[NodeConnection, ...]: ... method input (line 51316) | def input(self) -> Optional[Node]: ... method inputOutputIndex (line 51317) | def inputOutputIndex(self) -> int: ... method inputItem (line 51318) | def inputItem(self) -> Optional[NetworkMovableItem]: method inputItemOutputIndex (line 51331) | def inputItemOutputIndex(self) -> int: method setColorDefault (line 51344) | def setColorDefault(self) -> None: method setUseColorFromOutput (line 51357) | def setUseColorFromOutput(self, use_output_color: bool) -> None: method useColorFromOutput (line 51370) | def useColorFromOutput(self) -> bool: method setSymbolicColorName (line 51382) | def setSymbolicColorName(self, name: str) -> None: method symbolicColorName (line 51396) | def symbolicColorName(self) -> str: class OpIndirectInput (line 51410) | class OpIndirectInput(IndirectInput): method __init__ (line 51420) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 51422) | def __hash__(self) -> int: ... class InterruptableOperation (line 51424) | class InterruptableOperation: method __init__ (line 51580) | def __init__(self, operation_name: str, long_operation_name: Optional[... method updateLongProgress (line 51619) | def updateLongProgress(self, percentage: float = -1.0, long_op_status:... method updateProgress (line 51641) | def updateProgress(self, percentage: float = -1.0) -> None: method __enter__ (line 51657) | def __enter__(self) -> InterruptableOperation: ... method __exit__ (line 51658) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class IntParmTemplate (line 51660) | class IntParmTemplate(ParmTemplate): method __init__ (line 51674) | def __init__(self, name: str, label: str, num_components: int, default... method minValue (line 51783) | def minValue(self) -> int: method setMinValue (line 51794) | def setMinValue(self, min_value: int) -> None: method maxValue (line 51805) | def maxValue(self) -> int: method setMaxValue (line 51816) | def setMaxValue(self, max_value: int) -> None: method minIsStrict (line 51827) | def minIsStrict(self) -> bool: method setMinIsStrict (line 51847) | def setMinIsStrict(self, on: bool) -> None: method maxIsStrict (line 51858) | def maxIsStrict(self) -> bool: method setMaxIsStrict (line 51869) | def setMaxIsStrict(self, on: bool) -> None: method defaultValue (line 51880) | def defaultValue(self) -> Tuple[int, ...]: method setDefaultValue (line 51896) | def setDefaultValue(self, default_value: Sequence[int]) -> None: method defaultExpression (line 51911) | def defaultExpression(self) -> Tuple[str, ...]: method setDefaultExpression (line 51938) | def setDefaultExpression(self, default_expression: Sequence[str]) -> N... method defaultExpressionLanguage (line 51954) | def defaultExpressionLanguage(self) -> Tuple[EnumValue, ...]: method setDefaultExpressionLanguage (line 51968) | def setDefaultExpressionLanguage(self, default_expression_language: Se... method menuItems (line 51985) | def menuItems(self) -> Tuple[str, ...]: method setMenuItems (line 51998) | def setMenuItems(self, menu_items: Sequence[str]) -> None: method menuLabels (line 52013) | def menuLabels(self) -> Tuple[str, ...]: method setMenuLabels (line 52023) | def setMenuLabels(self, menu_labels: Sequence[str]) -> None: method iconNames (line 52041) | def iconNames(self) -> Tuple[str, ...]: method setIconNames (line 52053) | def setIconNames(self, icon_names: Sequence[str]) -> None: method itemGeneratorScript (line 52062) | def itemGeneratorScript(self) -> str: method setItemGeneratorScript (line 52072) | def setItemGeneratorScript(self, item_generator_script: str) -> None: method itemGeneratorScriptLanguage (line 52083) | def itemGeneratorScriptLanguage(self) -> EnumValue: ... method setItemGeneratorScriptLanguage (line 52084) | def setItemGeneratorScriptLanguage(self, language: EnumValue) -> None: method menuType (line 52096) | def menuType(self) -> EnumValue: method setMenuType (line 52105) | def setMenuType(self, menu_type: EnumValue) -> None: method menuUseToken (line 52116) | def menuUseToken(self) -> bool: method setMenuUseToken (line 52128) | def setMenuUseToken(self, menuusetoken: bool) -> None: class IPRViewer (line 52141) | class IPRViewer(PaneTab): method __init__ (line 52171) | def __init__(self, *args, **kwargs) -> None: ... method isPaused (line 52173) | def isPaused(self) -> bool: method isRendering (line 52183) | def isRendering(self) -> bool: method isActive (line 52193) | def isActive(self) -> bool: method killRender (line 52202) | def killRender(self) -> None: method pauseRender (line 52211) | def pauseRender(self) -> None: method resumeRender (line 52220) | def resumeRender(self) -> None: method startRender (line 52229) | def startRender(self) -> None: method isPreviewOn (line 52239) | def isPreviewOn(self) -> bool: method setPreview (line 52253) | def setPreview(self, on: bool) -> None: method isAutoSaveOn (line 52264) | def isAutoSaveOn(self) -> bool: method setAutoSave (line 52278) | def setAutoSave(self, on: bool) -> None: method autoSavePath (line 52289) | def autoSavePath(self) -> str: method setAutoSavePath (line 52301) | def setAutoSavePath(self, path: str) -> None: method isAutoUpdateOn (line 52312) | def isAutoUpdateOn(self) -> bool: method setAutoUpdate (line 52326) | def setAutoUpdate(self, on: bool) -> None: method autoSaveTime (line 52337) | def autoSaveTime(self) -> float: method setAutoSaveTime (line 52349) | def setAutoSaveTime(self, time: float) -> None: method delay (line 52360) | def delay(self) -> float: method setDelay (line 52373) | def setDelay(self, time: float) -> None: method updateTime (line 52384) | def updateTime(self) -> float: method setUpdateTime (line 52398) | def setUpdateTime(self, time: float) -> None: method lastClickLocation (line 52409) | def lastClickLocation(self) -> Tuple[int, ...]: method ropNode (line 52455) | def ropNode(self) -> Optional[Node]: method setRopNode (line 52465) | def setRopNode(self, rop_node: Node) -> None: method imageResolution (line 52474) | def imageResolution(self) -> Tuple[int, ...]: method cropRegion (line 52485) | def cropRegion(self) -> Tuple[float, ...]: method planes (line 52504) | def planes(self) -> Tuple[str, ...]: method displayedPlane (line 52525) | def displayedPlane(self) -> str: method pixel (line 52547) | def pixel(self, plane_name: str, x: int, y: int) -> Tuple[float, ...]: method pixels (line 52569) | def pixels(self, plane_name: str) -> Tuple[Tuple[float, ...], ...]: method evaluatedStyleSheetJSON (line 52590) | def evaluatedStyleSheetJSON(self, x: int, y: int) -> str: method evaluatedStyleSheetPaths (line 52600) | def evaluatedStyleSheetPaths(self, x: int, y: int) -> Tuple[Tuple[str,... method saveFrame (line 52610) | def saveFrame(self, file_path: str, snapshot: int = ..., xres: int = .... method objectNode (line 52632) | def objectNode(self, x: int, y: int) -> Optional[Node]: method prim (line 52652) | def prim(self, x: int, y: int) -> Optional[Prim]: method materialNode (line 52665) | def materialNode(self, x: int, y: int) -> Optional[Node]: method usingOCIO (line 52685) | def usingOCIO(self) -> bool: method setUsingOCIO (line 52695) | def setUsingOCIO(self, enable: bool) -> None: method setOCIODisplayView (line 52704) | def setOCIODisplayView(self, display: Optional[str] = None, view: Opti... method getOCIODisplay (line 52716) | def getOCIODisplay(self) -> str: method getOCIOView (line 52725) | def getOCIOView(self) -> str: class Keyframe (line 52735) | class Keyframe(BaseKeyframe): method __init__ (line 52745) | def __init__(self, value: float|None = ..., time: float|None = ...) ->... method __eq__ (line 52757) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 52758) | def __hash__(self) -> int: ... method evaluatedType (line 52759) | def evaluatedType(self) -> EnumValue: method setValue (line 52770) | def setValue(self, value: float) -> None: method value (line 52779) | def value(self) -> float: method isValueSet (line 52791) | def isValueSet(self) -> bool: method setInValue (line 52801) | def setInValue(self, in_value: float) -> None: method unsetInValue (line 52811) | def unsetInValue(self) -> None: method inValue (line 52820) | def inValue(self) -> float: method isValueTied (line 52832) | def isValueTied(self) -> bool: method isValueUsed (line 52841) | def isValueUsed(self) -> bool: method useValue (line 52851) | def useValue(self, use: bool) -> None: method setSlope (line 52860) | def setSlope(self, slope: float) -> None: method slope (line 52869) | def slope(self) -> float: method isSlopeSet (line 52881) | def isSlopeSet(self) -> bool: method isSlopeUsed (line 52891) | def isSlopeUsed(self) -> bool: method useSlope (line 52901) | def useSlope(self, use: bool) -> None: method isSlopeAuto (line 52910) | def isSlopeAuto(self) -> bool: method setSlopeAuto (line 52919) | def setSlopeAuto(self, on: bool) -> None: method setInSlope (line 52928) | def setInSlope(self, in_slope: float) -> None: method unsetInSlope (line 52938) | def unsetInSlope(self) -> None: method inSlope (line 52947) | def inSlope(self) -> float: method isSlopeTied (line 52959) | def isSlopeTied(self) -> bool: method isInSlopeAuto (line 52968) | def isInSlopeAuto(self) -> bool: method setInSlopeAuto (line 52977) | def setInSlopeAuto(self, on: bool) -> None: method setAccel (line 52986) | def setAccel(self, accel: float) -> None: method accel (line 52995) | def accel(self) -> float: method isAccelSet (line 53007) | def isAccelSet(self) -> bool: method isAccelUsed (line 53017) | def isAccelUsed(self) -> bool: method useAccel (line 53027) | def useAccel(self, use: bool) -> None: method setInAccel (line 53036) | def setInAccel(self, in_accel: float) -> None: method unsetInAccel (line 53046) | def unsetInAccel(self) -> None: method inAccel (line 53056) | def inAccel(self) -> float: method isAccelTied (line 53068) | def isAccelTied(self) -> bool: method interpretAccelAsRatio (line 53078) | def interpretAccelAsRatio(self, on: bool) -> None: method isAccelInterpretedAsRatio (line 53093) | def isAccelInterpretedAsRatio(self) -> bool: class LabelParmTemplate (line 53104) | class LabelParmTemplate(ParmTemplate): method __init__ (line 53115) | def __init__(self, name: str, label: str, column_labels: Sequence[str]... method labelParmType (line 53154) | def labelParmType(self) -> EnumValue: method setLabelParmType (line 53163) | def setLabelParmType(self, label_parm_type: EnumValue) -> None: method columnLabels (line 53172) | def columnLabels(self) -> Tuple[str, ...]: method setColumnLabels (line 53186) | def setColumnLabels(self, column_labels: Sequence[str]) -> None: class logging (line 53202) | class logging: method __init__ (line 53229) | def __init__(self, *args, **kwargs) -> None: ... method sources (line 53232) | def sources() -> Tuple[str, ...]: method setRenderLogVerbosity (line 53272) | def setRenderLogVerbosity(verbosity: int) -> None: method renderLogVerbosity (line 53291) | def renderLogVerbosity() -> int: method saveLogsToFile (line 53310) | def saveLogsToFile(logs: typing.Iterable[_logging_LogEntry], filepath:... method loadLogsFromFile (line 53337) | def loadLogsFromFile(filepath: str) -> Tuple[_logging_LogEntry, ...]: method createSource (line 53358) | def createSource(source_name: str) -> None: method log (line 53384) | def log(entry: _logging_LogEntry, source_name: Optional[str] = None) -... method defaultSink (line 53418) | def defaultSink(force_create: bool = False) -> Optional[_logging_Memor... method defaultFileSink (line 53443) | def defaultFileSink() -> Optional['_logging_FileSink']: class _logging_FileSink (line 53463) | class _logging_FileSink(_logging_Sink): method __init__ (line 53489) | def __init__(self, filepath: str) -> None: method filePath (line 53500) | def filePath(self) -> str: class _logging_LogEntry (line 53510) | class _logging_LogEntry: method __init__ (line 53520) | def __init__(self, message: Optional[str] = None, source: Optional[str... method __hash__ (line 53534) | def __hash__(self) -> int: ... method source (line 53535) | def source(self) -> str: method sourceContext (line 53544) | def sourceContext(self) -> str: method message (line 53556) | def message(self) -> str: method severity (line 53565) | def severity(self) -> EnumValue: method verbosity (line 53576) | def verbosity(self) -> int: method time (line 53588) | def time(self) -> float: method threadId (line 53604) | def threadId(self) -> int: method hasExternalInfo (line 53616) | def hasExternalInfo(self) -> bool: method externalHostName (line 53629) | def externalHostName(self) -> str: method externalIdentifier (line 53640) | def externalIdentifier(self) -> str: method externalCommandLine (line 53651) | def externalCommandLine(self) -> str: method externalProcessId (line 53661) | def externalProcessId(self) -> int: class _logging_MemorySink (line 53672) | class _logging_MemorySink(_logging_Sink): method __init__ (line 53688) | def __init__(self) -> None: method logEntries (line 53704) | def logEntries(self) -> Iterator[_logging_LogEntry]: method stealLogEntries (line 53714) | def stealLogEntries(self) -> Tuple[_logging_LogEntry, ...]: class LopLockedStage (line 53727) | class LopLockedStage: method __init__ (line 53743) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 53745) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 53746) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 53747) | def __hash__(self) -> int: ... method rootLayerIdentifier (line 53748) | def rootLayerIdentifier(self) -> str: class LopNetwork (line 53759) | class LopNetwork(OpNode): method __init__ (line 53769) | def __init__(self, *args, **kwargs) -> None: ... method isDebugFlagSet (line 53771) | def isDebugFlagSet(self) -> bool: method setDebugFlag (line 53781) | def setDebugFlag(self, on: bool) -> None: method displayNode (line 53797) | def displayNode(self) -> Optional[Node]: method viewerNode (line 53807) | def viewerNode(self) -> Optional[Node]: method viewportOverrides (line 53821) | def viewportOverrides(self, lop: LopNode, output_index: int = 0) -> Lo... method saveNamedViewportOverrides (line 53842) | def saveNamedViewportOverrides(self, name: str, overrides: Optional[Lo... method loadNamedViewportOverrides (line 53854) | def loadNamedViewportOverrides(self, name: str) -> None: method namedViewportOverrides (line 53866) | def namedViewportOverrides(self) -> Tuple[str, ...]: method viewportOverridesLayer (line 53878) | def viewportOverridesLayer(self, layer_id: EnumValue) -> pxr.Sdf.Layer: method copyViewportOverrides (line 53916) | def copyViewportOverrides(self, saved_name: Optional[str] = None) -> O... method setViewportOverrides (line 53923) | def setViewportOverrides(self, overrides: LopViewportOverrides) -> None: method viewportLoadMasks (line 53930) | def viewportLoadMasks(self) -> LopViewportLoadMasks: method setViewportLoadMasks (line 53942) | def setViewportLoadMasks(self, load_masks: LopViewportLoadMasks) -> None: method saveNamedViewportLoadMasks (line 53951) | def saveNamedViewportLoadMasks(self, name: str, load_masks: LopViewpor... method loadNamedViewportLoadMasks (line 53963) | def loadNamedViewportLoadMasks(self, name: str) -> LopViewportLoadMasks: method namedViewportLoadMasks (line 53975) | def namedViewportLoadMasks(self) -> Tuple[str, ...]: method editablePostLayer (line 53988) | def editablePostLayer(self, name: str, lop: LopNode, output_index: int... method postLayerNames (line 54019) | def postLayerNames(self) -> Tuple[str, ...]: method postLayer (line 54032) | def postLayer(self, name: str) -> pxr.Sdf.Layer|None: method removePostLayer (line 54045) | def removePostLayer(self, name: str) -> None: method selection (line 54055) | def selection(self) -> Tuple[str, ...]: method selectionCurrentPrim (line 54066) | def selectionCurrentPrim(self) -> str: method selectionWithInstanceIds (line 54077) | def selectionWithInstanceIds(self) -> Tuple[str, ...]: ... method setSelection (line 54078) | def setSelection(self, selection: Sequence[str], currentprim: Optional... method selectionRules (line 54096) | def selectionRules(self) -> dict[str, LopSelectionRule]: method clearSelectionRules (line 54107) | def clearSelectionRules(self) -> None: method setSelectionRule (line 54117) | def setSelectionRule(self, name: str, rule: LopSelectionRule) -> None: method expansionState (line 54133) | def expansionState(self) -> Optional[LopExpansionState]: method setExpansionState (line 54140) | def setExpansionState(self, expansion_state: LopExpansionState) -> None: method saveNamedExpansionState (line 54147) | def saveNamedExpansionState(self, name: str, expansion_state: LopExpan... method loadNamedExpansionState (line 54154) | def loadNamedExpansionState(self, name: str) -> Optional[LopExpansionS... method namedExpansionStates (line 54161) | def namedExpansionStates(self) -> Tuple[str, ...]: method setPrimitiveExpansionUnlocked (line 54168) | def setPrimitiveExpansionUnlocked(self, path: str, preserve_descendant... method setPrimitiveExpansionLocked (line 54192) | def setPrimitiveExpansionLocked(self, path: str, expanded_subpaths: Op... class LopNode (line 54225) | class LopNode(OpNode): method __init__ (line 54235) | def __init__(self, *args, **kwargs) -> None: ... method isBypassed (line 54237) | def isBypassed(self) -> bool: method bypass (line 54246) | def bypass(self, on: bool) -> None: method isDisplayFlagSet (line 54256) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 54265) | def setDisplayFlag(self, on: bool) -> None: method isDebugFlagSet (line 54274) | def isDebugFlagSet(self) -> bool: method setDebugFlag (line 54284) | def setDebugFlag(self, on: bool) -> None: method displayNode (line 54300) | def displayNode(self) -> LopNode: method viewerNode (line 54310) | def viewerNode(self) -> Node: method editableLayer (line 54326) | def editableLayer(self) -> pxr.Sdf.Layer | None: method activeLayer (line 54338) | def activeLayer(self, output_index: int = ..., ignore_errors: bool = .... method editableStage (line 54379) | def editableStage(self) -> pxr.Usd.Stage | None: method uneditableStage (line 54389) | def uneditableStage(self) -> pxr.Usd.Stage | None: method stage (line 54412) | def stage(self, output_index: int = ..., apply_viewport_overrides: boo... method sourceLayer (line 54467) | def sourceLayer(self, layer_index: int = ..., output_index: int = ...,... method stagePrimStats (line 54504) | def stagePrimStats(self, primpath: str|None = ..., output_index: int =... method lastModifiedPrims (line 54582) | def lastModifiedPrims(self) -> Tuple[pxr.Sdf.Path, ...]: method inputPrims (line 54592) | def inputPrims(self, inputidx: int) -> Tuple[pxr.Sdf.Path, ...]: method setLastModifiedPrims (line 54604) | def setLastModifiedPrims(self, primPaths: Sequence[str]) -> None: method loadMasks (line 54616) | def loadMasks(self, output_index: int = ..., force_cook: bool = ..., u... method sourceLayerCount (line 54658) | def sourceLayerCount(self, output_index: int = ..., use_last_cook_cont... method layersAboveLayerBreak (line 54695) | def layersAboveLayerBreak(self, output_index: int = ..., use_last_cook... method isMostRecentStageLock (line 54733) | def isMostRecentStageLock(self) -> bool: method inEditLayerBlock (line 54751) | def inEditLayerBlock(self) -> bool: method selectionRule (line 54762) | def selectionRule(self, inputidx: int = -1, pattern: Optional[str] = N... method addLockedGeometry (line 54781) | def addLockedGeometry(self, identifier: str, geo: Geometry, args: Mapp... method addHeldLayer (line 54815) | def addHeldLayer(self, identifier: str) -> None: method addSubLayer (line 54843) | def addSubLayer(self, identifier: str) -> None: method savePaths (line 54871) | def savePaths(self) -> Tuple[str, ...]: class lop (line 54882) | class lop: method __init__ (line 54892) | def __init__(self, *args, **kwargs) -> None: ... method defaultNewPrimPath (line 54895) | def defaultNewPrimPath() -> str: method setDefaultNewPrimPath (line 54906) | def setDefaultNewPrimPath(path: str) -> None: method defaultCollectionsPrimPath (line 54920) | def defaultCollectionsPrimPath() -> str: method setDefaultCollectionsPrimPath (line 54932) | def setDefaultCollectionsPrimPath(path: str) -> None: method defaultCollectionsPrimType (line 54945) | def defaultCollectionsPrimType() -> str: method setDefaultCollectionsPrimType (line 54958) | def setDefaultCollectionsPrimType(primtype: str) -> None: method defaultLightsPrimPath (line 54971) | def defaultLightsPrimPath() -> str: method setDefaultLightsPrimPath (line 54983) | def setDefaultLightsPrimPath(path: str) -> None: method defaultCamerasPrimPath (line 54996) | def defaultCamerasPrimPath() -> str: method setDefaultCamerasPrimPath (line 55008) | def setDefaultCamerasPrimPath(path: str) -> None: method defaultTransformSuffix (line 55021) | def defaultTransformSuffix() -> str: method setDefaultTransformSuffix (line 55032) | def setDefaultTransformSuffix(suffix: str) -> None: method showResolvedPaths (line 55048) | def showResolvedPaths() -> bool: method setShowResolvedPaths (line 55059) | def setShowResolvedPaths(show_resolved_paths: bool) -> None: method panesFollowCurrentNode (line 55074) | def panesFollowCurrentNode() -> bool: method setPanesFollowCurrentNode (line 55086) | def setPanesFollowCurrentNode(follow_current_node: bool) -> None: method panesShowViewportStage (line 55099) | def panesShowViewportStage() -> bool: method setPanesShowViewportStage (line 55111) | def setPanesShowViewportStage(show_viewport_stage: bool) -> None: method panesShowPostLayers (line 55131) | def panesShowPostLayers() -> bool: method setPanesShowPostLayers (line 55143) | def setPanesShowPostLayers(show_post_layers: bool) -> None: method autoSetAssetResolverContext (line 55155) | def autoSetAssetResolverContext() -> bool: method setAutoSetAssetResolverContext (line 55168) | def setAutoSetAssetResolverContext(auto_set_context: bool) -> None: method updateRendererInBackground (line 55191) | def updateRendererInBackground() -> bool: method setUpdateRendererInBackground (line 55202) | def setUpdateRendererInBackground(update_in_background: bool) -> None: method loadPayloadsByDefault (line 55215) | def loadPayloadsByDefault() -> bool: method setLoadPayloadsByDefault (line 55226) | def setLoadPayloadsByDefault(load_payloads: bool) -> None: method allowViewportOnlyPayloads (line 55240) | def allowViewportOnlyPayloads() -> bool: method setAllowViewportOnlyPayloads (line 55258) | def setAllowViewportOnlyPayloads(allow_viewport_only_payloads: bool) -... method pathParameterCompletion (line 55270) | def pathParameterCompletion() -> bool: method setPathParameterCompletion (line 55283) | def setPathParameterCompletion(path_parameter_completion: bool) -> None: method defaultMetersPerUnit (line 55294) | def defaultMetersPerUnit() -> float: method setDefaultMetersPerUnit (line 55307) | def setDefaultMetersPerUnit(meters_per_unit: float) -> None: method defaultUpAxis (line 55320) | def defaultUpAxis() -> str: method setDefaultUpAxis (line 55333) | def setDefaultUpAxis(up_axis: str) -> None: method savePreferences (line 55347) | def savePreferences() -> bool: method reloadLayer (line 55362) | def reloadLayer(layer_path: str, recursive: bool = False) -> None: method mutingIdentifier (line 55380) | def mutingIdentifier(identifier: str) -> str: method makeValidPrimName (line 55401) | def makeValidPrimName(name: str) -> str: method makeValidPrimPath (line 55416) | def makeValidPrimPath(path: str, allow_relative: bool = False) -> str: method createParmsForProperty (line 55437) | def createParmsForProperty(source: LopNode|str, primpath: str, propert... method createParmsForParameter (line 55491) | def createParmsForParameter(source: ParmTemplate, parametername: Optio... method createConnectionParmsForProperty (line 55534) | def createConnectionParmsForProperty(source: LopNode|str, primpath: st... method setParmTupleFromProperty (line 55574) | def setParmTupleFromProperty(parmtuple: ParmTuple, source: LopNode|str... method shaderTranslatorID (line 55609) | def shaderTranslatorID(node: Node) -> int: method shaderRenderContextName (line 55620) | def shaderRenderContextName(node: Node, node_output_name: str) -> str: method translateShader (line 55640) | def translateShader(node: Node, node_output_name: str, material_prim_p... method reportShaderTranslation (line 55679) | def reportShaderTranslation(node: Node, usd_shader_path: str) -> None: method shaderNodeType (line 55698) | def shaderNodeType(shader_name: str) -> NodeType: method availableRendererNames (line 55715) | def availableRendererNames() -> Tuple[str, ...]: method availableRendererLabels (line 55726) | def availableRendererLabels() -> Tuple[str, ...]: method outputProcessors (line 55737) | def outputProcessors() -> Tuple[Tuple[str, str], ...]: method outputProcessorParms (line 55749) | def outputProcessorParms(name: str) -> ParmTemplateGroup: method usdVersionInfo (line 55761) | def usdVersionInfo() -> dict[str, str]: method usdOutputMinimumSeverity (line 55790) | def usdOutputMinimumSeverity() -> EnumValue: method setUsdOutputMinimumSeverity (line 55804) | def setUsdOutputMinimumSeverity(severity: EnumValue) -> None: method addLockedGeometry (line 55816) | def addLockedGeometry(identifier: str, geo: Geometry, args: Mapping[st... method removeLockedGeometry (line 55850) | def removeLockedGeometry(identifier: str) -> bool: method forceReloadAllFilesFromDisk (line 55872) | def forceReloadAllFilesFromDisk(reload_viewports: bool = False) -> None: method availableRendererInfo (line 55889) | def availableRendererInfo() -> list[dict[str, Any]]: method addPreferenceChangeCallback (line 55900) | def addPreferenceChangeCallback(callback: Callable) -> None: method removePreferenceChangeCallback (line 55911) | def removePreferenceChangeCallback(callback: Callable) -> None: class LopExpansionState (line 55922) | class LopExpansionState: method __init__ (line 55933) | def __init__(self) -> None: method setPinnedPathExpanded (line 55942) | def setPinnedPathExpanded(self, path: str, expanded: bool) -> bool: method setPathExpanded (line 55953) | def setPathExpanded(self, path: str, expanded: bool) -> bool: method setPrimitiveExpansionUnlocked (line 55964) | def setPrimitiveExpansionUnlocked(self, path: str, preserve_descendant... method dumps (line 55981) | def dumps(self) -> bytes: method loads (line 55991) | def loads(self, expansion_str: bytes) -> None: method expandedPinnedPaths (line 56001) | def expandedPinnedPaths(self) -> Any: method setExpandedPinnedPaths (line 56011) | def setExpandedPinnedPaths(self, expanded_paths: Any) -> None: method expandedPaths (line 56022) | def expandedPaths(self) -> Any: method setExpandedPaths (line 56031) | def setExpandedPaths(self, expanded_paths: Any) -> None: method expansionLockedPrimitives (line 56042) | def expansionLockedPrimitives(self) -> Any: method expansionLockedExpandedPrimitives (line 56054) | def expansionLockedExpandedPrimitives(self) -> Any: method setPrimitiveExpansionLocked (line 56068) | def setPrimitiveExpansionLocked(self, path: str, expanded_subpaths: Op... class LopInstanceIdRule (line 56095) | class LopInstanceIdRule: method __init__ (line 56106) | def __init__(self) -> None: method __eq__ (line 56115) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 56116) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 56117) | def __hash__(self) -> int: ... method instanceIds (line 56118) | def instanceIds(self, lopnode: LopNode, use_last_cook_context_options:... method primPath (line 56142) | def primPath(self) -> str: method setPrimPath (line 56152) | def setPrimPath(self, primpath: str) -> None: method instanceIdPattern (line 56162) | def instanceIdPattern(self) -> str: method setInstanceIdPattern (line 56174) | def setInstanceIdPattern(self, pattern: str) -> None: class LopPostLayer (line 56189) | class LopPostLayer: method __init__ (line 56234) | def __init__(self, *args, **kwargs) -> None: ... method __enter__ (line 56236) | def __enter__(self) -> LopPostLayer: ... method layer (line 56237) | def layer(self) -> pxr.Sdf.Layer: ... method stage (line 56238) | def stage(self) -> pxr.Usd.Stage: ... method __exit__ (line 56239) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class LopSelectionRule (line 56241) | class LopSelectionRule: method __init__ (line 56254) | def __init__(self, pattern: Optional[str] = None) -> None: method expandedPaths (line 56267) | def expandedPaths(self, lopnode: LopNode|None = ..., return_ancestors:... method firstPath (line 56322) | def firstPath(self, lopnode: LopNode|None = ..., return_ancestors: boo... method collectionAwarePaths (line 56353) | def collectionAwarePaths(self, lopnode: LopNode|None = ..., fallback_t... method newPaths (line 56406) | def newPaths(self, lopnode: LopNode|None = ..., stage: pxr.Usd.Stage|N... method __eq__ (line 56443) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 56444) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 56445) | def __hash__(self) -> int: ... method lastError (line 56446) | def lastError(self) -> str: method lastErrorSeverity (line 56457) | def lastErrorSeverity(self) -> EnumValue: method lastMayBeTimeVarying (line 56469) | def lastMayBeTimeVarying(self) -> bool: method pathPattern (line 56481) | def pathPattern(self) -> str: method setPathPattern (line 56490) | def setPathPattern(self, pattern: str) -> None: method traversalDemands (line 56501) | def traversalDemands(self) -> int: method setTraversalDemands (line 56511) | def setTraversalDemands(self, demands: int) -> None: method icon (line 56528) | def icon(self) -> str: method setIcon (line 56538) | def setIcon(self, icon: str) -> None: method sourceNode (line 56550) | def sourceNode(self) -> LopNode | None: method sourceNodeInputIndex (line 56560) | def sourceNodeInputIndex(self) -> int: class LopViewportLoadMasks (line 56572) | class LopViewportLoadMasks: method __init__ (line 56583) | def __init__(self) -> None: method __eq__ (line 56598) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 56599) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 56600) | def __hash__(self) -> int: ... method setPopulateAll (line 56601) | def setPopulateAll(self, populate_all: bool = True) -> None: method populateAll (line 56617) | def populateAll(self) -> bool: method populatePaths (line 56627) | def populatePaths(self) -> Tuple[str, ...]: method isPathPopulated (line 56638) | def isPathPopulated(self, path: str, exact_match: bool = True) -> bool: method setPopulatePaths (line 56650) | def setPopulatePaths(self, paths: Sequence[str]) -> None: method addPopulatePath (line 56659) | def addPopulatePath(self, path: str) -> None: method removePopulatePath (line 56669) | def removePopulatePath(self, path: str, remove_children: bool = False)... method muteLayers (line 56682) | def muteLayers(self) -> Tuple[str, ...]: method isLayerMuted (line 56691) | def isLayerMuted(self, identifier: str) -> bool: method setMuteLayers (line 56701) | def setMuteLayers(self, identifiers: Sequence[str]) -> None: method addMuteLayer (line 56710) | def addMuteLayer(self, identifier: str) -> None: method removeMuteLayer (line 56721) | def removeMuteLayer(self, identifier: str) -> None: method setLoadAll (line 56732) | def setLoadAll(self, load_all: bool = True) -> None: method loadAll (line 56747) | def loadAll(self) -> bool: ... method loadPaths (line 56748) | def loadPaths(self) -> Tuple[str, ...]: method isPathLoaded (line 56759) | def isPathLoaded(self, path: str, exact_match: bool = True) -> bool: method isAnyChildPathLoaded (line 56771) | def isAnyChildPathLoaded(self, path: str) -> bool: method setLoadPaths (line 56781) | def setLoadPaths(self, paths: Sequence[str]) -> None: method addLoadPath (line 56791) | def addLoadPath(self, path: str) -> None: method removeLoadPath (line 56802) | def removeLoadPath(self, path: str, remove_children: bool = False) -> ... method setVariantSelectionFallbacks (line 56816) | def setVariantSelectionFallbacks(self, fallbacks: dict[str, typing.Ite... method variantSelectionFallbacks (line 56817) | def variantSelectionFallbacks(self) -> dict[str, Tuple[str, ...]]: ... method dumps (line 56818) | def dumps(self) -> str: ... method loads (line 56819) | def loads(self, masks_str: str) -> bool: ... class LopViewportOverrides (line 56822) | class LopViewportOverrides: method __init__ (line 56844) | def __init__(self) -> None: method __enter__ (line 56855) | def __enter__(self) -> LopViewportOverrides: ... method setDrawMode (line 56856) | def setDrawMode(self, prims: LopSelectionRule, drawmode: str) -> None: method setActive (line 56884) | def setActive(self, prims: LopSelectionRule, active: bool) -> None: method setVisible (line 56906) | def setVisible(self, prims: LopSelectionRule, visible: bool) -> None: method setSelectable (line 56928) | def setSelectable(self, prims: LopSelectionRule, active: bool, solo: b... method setSoloLights (line 56960) | def setSoloLights(self, prims: Optional[LopSelectionRule] = None) -> N... method addSoloLights (line 56975) | def addSoloLights(self, prims: LopSelectionRule) -> None: method removeSoloLights (line 56989) | def removeSoloLights(self, prims: LopSelectionRule) -> None: method setSoloGeometry (line 57005) | def setSoloGeometry(self, prims: Optional[LopSelectionRule] = None) ->... method addSoloGeometry (line 57023) | def addSoloGeometry(self, prims: LopSelectionRule) -> None: method removeSoloGeometry (line 57038) | def removeSoloGeometry(self, prims: LopSelectionRule) -> None: method showPurpose (line 57055) | def showPurpose(self, prims: LopSelectionRule, purpose: str) -> None: method setDisplayOpacity (line 57074) | def setDisplayOpacity(self, prims: LopSelectionRule, opacity: float) -... method clear (line 57094) | def clear(self, layer_id: Optional[EnumValue] = None, from_prim: Optio... method dumps (line 57113) | def dumps(self) -> bytes: method loads (line 57125) | def loads(self, overrides_str: bytes) -> None: method layer (line 57138) | def layer(self) -> pxr.Sdf.Layer: method stage (line 57153) | def stage(self) -> pxr.Usd.Stage: method soloLights (line 57165) | def soloLights(self) -> pxr.Sdf.Path: method soloGeometry (line 57175) | def soloGeometry(self) -> pxr.Sdf.Path: method __exit__ (line 57185) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class Matrix2 (line 57188) | class Matrix2: method __init__ (line 57198) | def __init__(self, values: int|float|Sequence[int]|Sequence[float]|Seq... method __eq__ (line 57226) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 57227) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 57228) | def isAlmostEqual(self, matrix2: Matrix2, tolerance: float = 1e-05) ->... method __hash__ (line 57237) | def __hash__(self) -> int: ... method at (line 57238) | def at(self, row: int, col: int) -> float: method asTuple (line 57250) | def asTuple(self) -> Tuple[float, ...]: method asTupleOfTuples (line 57259) | def asTupleOfTuples(self) -> Tuple[Tuple[float, ...], ...]: method setAt (line 57268) | def setAt(self, row: int, col: int, value: float) -> None: method setTo (line 57280) | def setTo(self, value: Sequence[float]) -> None: method setToIdentity (line 57292) | def setToIdentity(self) -> None: method setToZero (line 57305) | def setToZero(self) -> None: method __add__ (line 57317) | def __add__(self, matrix2: Matrix2) -> Matrix2: method __sub__ (line 57328) | def __sub__(self, matrix2: Matrix2) -> Matrix2: method __mul__ (line 57339) | def __mul__(self, matrix2_or_scalar: Matrix2|float) -> Matrix2: method preMult (line 57353) | def preMult(self, matrix2: Matrix2) -> Matrix2: method transposed (line 57364) | def transposed(self) -> Matrix2: method inverted (line 57376) | def inverted(self) -> Matrix2: method determinant (line 57391) | def determinant(self) -> float: class Matrix3 (line 57403) | class Matrix3: method __init__ (line 57420) | def __init__(self, values: int|float|Sequence[int]|Sequence[float]|Seq... method __eq__ (line 57454) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 57455) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 57456) | def isAlmostEqual(self, matrix3: Matrix3, tolerance: float = 1e-05) ->... method __hash__ (line 57465) | def __hash__(self) -> int: ... method at (line 57466) | def at(self, row: int, col: int) -> float: method asTuple (line 57478) | def asTuple(self) -> Tuple[float, ...]: method asTupleOfTuples (line 57487) | def asTupleOfTuples(self) -> Tuple[Tuple[float, ...], ...]: method setAt (line 57496) | def setAt(self, row: int, col: int, value: float) -> None: method setTo (line 57508) | def setTo(self, value: Sequence[float]) -> None: method setToIdentity (line 57520) | def setToIdentity(self) -> None: method setToZero (line 57534) | def setToZero(self) -> None: method __add__ (line 57546) | def __add__(self, matrix3: Matrix3) -> Matrix3: method __sub__ (line 57557) | def __sub__(self, matrix3: Matrix3) -> Matrix3: method __mul__ (line 57568) | def __mul__(self, matrix3_or_scalar: Matrix3|float) -> Matrix4: method preMult (line 57582) | def preMult(self, matrix3: Matrix3) -> Matrix3: method transposed (line 57593) | def transposed(self) -> Matrix3: method inverted (line 57605) | def inverted(self) -> Matrix3: method determinant (line 57620) | def determinant(self) -> float: method extractRotates (line 57631) | def extractRotates(self, rotate_order: Literal['xyz','xzy','yxz','yzx'... method removeScalesAndShears (line 57663) | def removeScalesAndShears(self, transform_order: Literal['srt','str','... class Matrix4 (line 57687) | class Matrix4: method __init__ (line 57773) | def __init__(self, values: int|float|Sequence[int]|Sequence[float]|Seq... method __eq__ (line 57807) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 57808) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 57809) | def isAlmostEqual(self, matrix4: Matrix4, tolerance: float = 1e-05) ->... method __hash__ (line 57818) | def __hash__(self) -> int: ... method at (line 57819) | def at(self, row: int, col: int) -> float: method asTuple (line 57831) | def asTuple(self) -> Tuple[float, ...]: method asTupleOfTuples (line 57840) | def asTupleOfTuples(self) -> Tuple[Tuple[float, ...], ...]: method setAt (line 57849) | def setAt(self, row: int, col: int, value: float) -> None: method setTo (line 57861) | def setTo(self, value: Sequence[float]) -> None: method setToIdentity (line 57873) | def setToIdentity(self) -> None: method setToZero (line 57888) | def setToZero(self) -> None: method __add__ (line 57900) | def __add__(self, matrix4: Matrix4) -> Matrix4: method __sub__ (line 57911) | def __sub__(self, matrix4: Matrix4) -> Matrix4: method __mul__ (line 57922) | def __mul__(self, matrix4_or_scalar: Matrix4|float) -> Matrix4: method preMult (line 57944) | def preMult(self, matrix4: Matrix4) -> Matrix4: method transposed (line 57955) | def transposed(self) -> Matrix4: method inverted (line 57967) | def inverted(self) -> Matrix4: method determinant (line 57983) | def determinant(self) -> float: method explode (line 57994) | def explode(self, transform_order: Literal['srt','str','rst','rts','ts... method extractTranslates (line 58053) | def extractTranslates(self, transform_order: Literal['srt','str','rst'... method extractRotates (line 58070) | def extractRotates(self, transform_order: Literal['srt','str','rst','r... method extractScales (line 58082) | def extractScales(self, transform_order: Literal['srt','str','rst','rt... method extractShears (line 58094) | def extractShears(self, transform_order: Literal['srt','str','rst','rt... method extractRotationMatrix3 (line 58106) | def extractRotationMatrix3(self) -> Matrix3: method setToPerspective (line 58118) | def setToPerspective(self, zoom: float, image_aspect: float = 1, pixel... method setToOrthographic (line 58135) | def setToOrthographic(self, zoom: float, orthowidth: float = 1, image_... class MenuParmTemplate (line 58137) | class MenuParmTemplate(ParmTemplate): method __init__ (line 58148) | def __init__(self, name: str, label: str, menu_items: Sequence[str], m... method defaultValue (line 58246) | def defaultValue(self) -> int: method defaultValueAsString (line 58257) | def defaultValueAsString(self) -> str: ... method setDefaultValue (line 58258) | def setDefaultValue(self, default_value: int) -> None: method defaultExpression (line 58272) | def defaultExpression(self) -> str: method setDefaultExpression (line 58289) | def setDefaultExpression(self, default_expression: str) -> None: method defaultExpressionLanguage (line 58302) | def defaultExpressionLanguage(self) -> EnumValue: method setDefaultExpressionLanguage (line 58315) | def setDefaultExpressionLanguage(self, default_expression_language: En... method menuItems (line 58326) | def menuItems(self) -> Tuple[str, ...]: method setMenuItems (line 58339) | def setMenuItems(self, menu_items: Sequence[str]) -> None: method menuLabels (line 58354) | def menuLabels(self) -> Tuple[str, ...]: method setMenuLabels (line 58363) | def setMenuLabels(self, menu_labels: Sequence[str]) -> None: method iconNames (line 58381) | def iconNames(self) -> Tuple[str, ...]: method setIconNames (line 58391) | def setIconNames(self, icon_names: Sequence[str]) -> None: method itemGeneratorScript (line 58400) | def itemGeneratorScript(self) -> str: method setItemGeneratorScript (line 58410) | def setItemGeneratorScript(self, item_generator_script: str) -> None: method itemGeneratorScriptLanguage (line 58421) | def itemGeneratorScriptLanguage(self) -> EnumValue: ... method setItemGeneratorScriptLanguage (line 58422) | def setItemGeneratorScriptLanguage(self, language: EnumValue) -> None: method menuType (line 58434) | def menuType(self) -> EnumValue: method setMenuType (line 58447) | def setMenuType(self, menu_type: EnumValue) -> None: method menuUseToken (line 58458) | def menuUseToken(self) -> bool: method setMenuUseToken (line 58470) | def setMenuUseToken(self, menuusetoken: bool) -> None: method isButtonStrip (line 58482) | def isButtonStrip(self) -> bool: method isIconStrip (line 58491) | def isIconStrip(self) -> bool: method isMenu (line 58500) | def isMenu(self) -> bool: method setAsButtonStrip (line 58510) | def setAsButtonStrip(self) -> None: method setAsIconStrip (line 58521) | def setAsIconStrip(self) -> None: method setAsMenu (line 58532) | def setAsMenu(self) -> None: class NanoVDB (line 58544) | class NanoVDB: method __init__ (line 58565) | def __init__(self, layer: Optional[NanoVDB] = None) -> None: method __enter__ (line 58586) | def __enter__(self) -> Optional[NanoVDB]: ... method __exit__ (line 58587) | def __exit__(self, type: Any, value: Any, traceback: Any) -> None: ... method close (line 58588) | def close(self) -> None: method vdbType (line 58603) | def vdbType(self) -> EnumValue: method typeInfo (line 58613) | def typeInfo(self) -> EnumValue: method setTypeInfo (line 58623) | def setTypeInfo(self, storagetype: EnumValue) -> None: method leafCount (line 58634) | def leafCount(self) -> int: method onCPU (line 58644) | def onCPU(self) -> bool: method onGPU (line 58654) | def onGPU(self) -> bool: method voxelSize (line 58664) | def voxelSize(self) -> Vector3: method indexToWorldTransform (line 58673) | def indexToWorldTransform(self) -> Matrix4: method worldToIndexTransform (line 58683) | def worldToIndexTransform(self) -> Matrix4: method freeze (line 58693) | def freeze(self) -> Optional[NanoVDB]: method isFrozen (line 58707) | def isFrozen(self) -> bool: method attributes (line 58716) | def attributes(self) -> dict[str, Any]: method setAttributes (line 58725) | def setAttributes(self, p: dict[str, Any]) -> None: method updateAttributes (line 58734) | def updateAttributes(self, p: dict[str, Any]) -> None: method rawNanoVDB (line 58744) | def rawNanoVDB(self) -> bytes: method setFromRawNanoVDB (line 58759) | def setFromRawNanoVDB(self, values: Any) -> None: class NetworkDot (line 58770) | class NetworkDot(IndirectInput): method __init__ (line 58791) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 58793) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 58794) | def __ne__(self, other: object) -> bool: ... method isPinned (line 58795) | def isPinned(self) -> bool: method setPinned (line 58805) | def setPinned(self, pinned: bool) -> None: method setInput (line 58835) | def setInput(self, input_index: int, item_to_become_input: NetworkMova... method inputConnections (line 58850) | def inputConnections(self) -> Tuple[NodeConnection, ...]: method destroy (line 58862) | def destroy(self) -> None: class OpNetworkDot (line 58874) | class OpNetworkDot(OpIndirectInput, NetworkDot): method __init__ (line 58885) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 58887) | def __hash__(self) -> int: ... class NetworkEditor (line 58889) | class NetworkEditor(PathBasedPaneTab): method __init__ (line 58899) | def __init__(self, *args, **kwargs) -> None: ... method isShowingConnectors (line 58901) | def isShowingConnectors(self) -> bool: method isUnderCursor (line 58914) | def isUnderCursor(self) -> bool: ... method isPosInside (line 58915) | def isPosInside(self, pos: Vector2, ignore_floating_windows: bool = Tr... method setCursorPosition (line 58936) | def setCursorPosition(self, pos: Vector2) -> None: method cursorPosition (line 58946) | def cursorPosition(self, confine_to_view: bool = True) -> Vector2: method screenBounds (line 58968) | def screenBounds(self) -> BoundingRect: method visibleBounds (line 58981) | def visibleBounds(self) -> BoundingRect: method setVisibleBounds (line 58990) | def setVisibleBounds(self, bounds: BoundingRect, transition_time: floa... method requestZoomReset (line 59027) | def requestZoomReset(self) -> None: method isZoomResetRequested (line 59037) | def isZoomResetRequested(self) -> bool: method setLocatingEnabled (line 59048) | def setLocatingEnabled(self, enabled: bool) -> None: method locatingEnabled (line 59062) | def locatingEnabled(self) -> bool: method lengthToScreen (line 59072) | def lengthToScreen(self, len: float) -> float: method lengthFromScreen (line 59083) | def lengthFromScreen(self, len: float) -> float: method sizeToScreen (line 59094) | def sizeToScreen(self, size: Vector2) -> Vector2: method sizeFromScreen (line 59107) | def sizeFromScreen(self, size: Vector2) -> Vector2: method posToScreen (line 59120) | def posToScreen(self, pos: Vector2) -> Vector2: method posFromScreen (line 59141) | def posFromScreen(self, pos: Vector2) -> Vector2: method overviewPosToScreen (line 59156) | def overviewPosToScreen(self, pos: Vector2) -> Vector2: method overviewPosFromScreen (line 59169) | def overviewPosFromScreen(self, pos: Vector2) -> Vector2: method overviewVisible (line 59184) | def overviewVisible(self) -> bool: method overviewVisibleIfAutomatic (line 59196) | def overviewVisibleIfAutomatic(self) -> bool: method networkItemsInBox (line 59208) | def networkItemsInBox(self, pos1: Vector2, pos2: Vector2, for_drop: bo... method setDropTargetItem (line 59242) | def setDropTargetItem(self, item: NetworkItem, name: str, index: int) ... method dropTargetItem (line 59258) | def dropTargetItem(self) -> Tuple[NetworkItem, str, int]: method setDecoratedItem (line 59268) | def setDecoratedItem(self, item: NetworkItem, interactive: bool) -> None: method decoratedItem (line 59287) | def decoratedItem(self) -> Optional[NetworkItem]: method decorationInteractive (line 59297) | def decorationInteractive(self) -> bool: method setPreSelectedItems (line 59308) | def setPreSelectedItems(self, items: Sequence[NetworkItem]) -> None: method preSelectedItems (line 59322) | def preSelectedItems(self) -> Tuple[NetworkItem, ...]: method selectedConnections (line 59331) | def selectedConnections(self) -> Tuple[NodeConnection, ...]: ... method clearAllSelected (line 59332) | def clearAllSelected(self) -> None: method setNetworkBoxPendingRemovals (line 59344) | def setNetworkBoxPendingRemovals(self, items: Sequence[NetworkMovableI... method networkBoxPendingRemovals (line 59357) | def networkBoxPendingRemovals(self) -> Tuple[NetworkMovableItem, ...]: method setFootprints (line 59368) | def setFootprints(self, footprints: typing.Iterable[NetworkFootprint])... method footprints (line 59379) | def footprints(self) -> Tuple[NetworkFootprint, ...]: method setCursorMap (line 59390) | def setCursorMap(self, cursors: dict[Tuple[str, int], str]) -> None: method cursorMap (line 59430) | def cursorMap(self) -> dict[Tuple[str, int], str]: method setDefaultCursor (line 59440) | def setDefaultCursor(self, cursor_name: str) -> None: method defaultCursor (line 59451) | def defaultCursor(self) -> str: method setBackgroundImages (line 59461) | def setBackgroundImages(self, images: typing.Iterable[NetworkImage]) -... method backgroundImages (line 59475) | def backgroundImages(self) -> Tuple[NetworkImage, ...]: method itemRect (line 59486) | def itemRect(self, item: NetworkMovableItem, adjusted: bool = True) ->... method itemInputPos (line 59501) | def itemInputPos(self, item: NetworkMovableItem, input_index: int, adj... method itemInputDir (line 59516) | def itemInputDir(self, item: NetworkMovableItem, input_index: int) -> ... method itemOutputPos (line 59529) | def itemOutputPos(self, item: NetworkMovableItem, output_index: int, a... method itemOutputDir (line 59545) | def itemOutputDir(self, item: NetworkMovableItem, output_index: int) -... method allVisibleRects (line 59559) | def allVisibleRects(self, ignore_items: Sequence[NetworkMovableItem], ... method setAdjustments (line 59575) | def setAdjustments(self, items: Sequence[NetworkItem], adjustments: ty... method setShapes (line 59597) | def setShapes(self, shapes: Sequence[NetworkShape]) -> None: method setOverlayShapes (line 59608) | def setOverlayShapes(self, shapes: Sequence[NetworkShape]) -> None: method setTooltip (line 59620) | def setTooltip(self, tooltip: str) -> None: method tooltip (line 59633) | def tooltip(self) -> str: method setPrompt (line 59643) | def setPrompt(self, prompt: str) -> None: method prompt (line 59656) | def prompt(self) -> str: method flashMessage (line 59666) | def flashMessage(self, image: str|None, message: str|None, duration: f... method openTabMenu (line 59681) | def openTabMenu(self, key: str|None = ..., auto_place: bool = ..., bra... method openNodeMenu (line 59751) | def openNodeMenu(self, node: Node|None = ..., items: Sequence[NetworkM... method openVopEffectsMenu (line 59775) | def openVopEffectsMenu(self, node: VopNode, input_index: int) -> None: method openVopOutputInfoMenu (line 59786) | def openVopOutputInfoMenu(self, node: VopNode, output_index: int) -> N... method openFloatingParameterEditor (line 59798) | def openFloatingParameterEditor(self, node: Node) -> None: method openNameEditor (line 59807) | def openNameEditor(self, item: NetworkMovableItem, select_all: bool = ... method openCommentEditor (line 59822) | def openCommentEditor(self, item: NetworkMovableItem, select_all: bool... method openNoteEditor (line 59837) | def openNoteEditor(self, stickynote: StickyNote, select_all: bool = Fa... method closeTextEditor (line 59852) | def closeTextEditor(self, id: int, apply_changes: bool = True) -> None: method runShelfTool (line 59866) | def runShelfTool(self, tool_name: str) -> None: method scheduleTimerEvent (line 59875) | def scheduleTimerEvent(self, seconds: float) -> int: method handleCurrentKeyboardEvent (line 59887) | def handleCurrentKeyboardEvent(self, resend: bool = False) -> None: method setVolatileHotkeys (line 59912) | def setVolatileHotkeys(self, hotkey_symbols: Sequence[str]) -> None: method isVolatileHotkeyDown (line 59926) | def isVolatileHotkeyDown(self, hotkey_symbol: str) -> bool: method hotkeyAssignments (line 59941) | def hotkeyAssignments(self, hotkey_symbols: Sequence[str]) -> Tuple[Tu... method setPref (line 59954) | def setPref(self, pref: str, value: str) -> None: method getPref (line 59968) | def getPref(self, pref: str) -> str: method setPrefs (line 59980) | def setPrefs(self, prefs: dict[str, str]) -> None: method getPrefs (line 59993) | def getPrefs(self) -> dict[str, str]: method registerPref (line 60003) | def registerPref(self, pref: str, value: str, _global: bool) -> None: method badges (line 60026) | def badges(self) -> Tuple[Tuple[str, ...], ...]: method textBadges (line 60042) | def textBadges(self) -> Tuple[Tuple[str, ...], ...]: method nodeShapes (line 60058) | def nodeShapes(self) -> Tuple[str, ...]: method reloadNodeShapes (line 60076) | def reloadNodeShapes(self) -> Tuple[str, ...]: method redraw (line 60090) | def redraw(self) -> None: method setDragSourceData (line 60106) | def setDragSourceData(self, items: Sequence[NetworkMovableItem]) -> None: method setDragSourceWorkItem (line 60118) | def setDragSourceWorkItem(self, item_id: int) -> None: method popEventContext (line 60129) | def popEventContext(self) -> None: ... method parmScrollPosition (line 60130) | def parmScrollPosition(self) -> Vector2: method setParmScrollPosition (line 60139) | def setParmScrollPosition(self, position: Vector2) -> None: method setParmFilterEnabled (line 60149) | def setParmFilterEnabled(self, on: bool, keyboard_lock: bool = False) ... method parmFilterEnabled (line 60161) | def parmFilterEnabled(self) -> bool: method setParmFilterExactMatch (line 60170) | def setParmFilterExactMatch(self, on: bool) -> None: method parmFilterExactMatch (line 60179) | def parmFilterExactMatch(self) -> bool: method setParmFilterPattern (line 60189) | def setParmFilterPattern(self, filter: str) -> None: method parmFilterPattern (line 60203) | def parmFilterPattern(self) -> str: method setParmFilterMode (line 60212) | def setParmFilterMode(self, mode: EnumValue) -> None: method parmFilterMode (line 60222) | def parmFilterMode(self) -> EnumValue: method setParmFilterCriteria (line 60231) | def setParmFilterCriteria(self, mode: EnumValue) -> None: method parmFilterCriteria (line 60241) | def parmFilterCriteria(self) -> EnumValue: method setMultiParmTab (line 60250) | def setMultiParmTab(self, parm: str, index: int) -> None: method multiParmTab (line 60259) | def multiParmTab(self, parm: str) -> int: method pushEventContext (line 60268) | def pushEventContext(self, module: str, data: Any) -> bool: method eventContextData (line 60283) | def eventContextData(self) -> Any: ... class NetworkAnimValue (line 60285) | class NetworkAnimValue: method __init__ (line 60330) | def __init__(self, duration: float|Vector2|Vector3|Vector4|NetworkAnim... method __eq__ (line 60349) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 60350) | def __ne__(self, other: object) -> bool: ... class NetworkFootprint (line 60352) | class NetworkFootprint: method __init__ (line 60399) | def __init__(self, condition: EnumValue|str, color: Color, ring: int, ... class NetworkImage (line 60436) | class NetworkImage: method __init__ (line 60466) | def __init__(self, path: str, rect: BoundingRect) -> None: method __eq__ (line 60479) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 60480) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 60481) | def __hash__(self) -> int: ... method setPath (line 60482) | def setPath(self, path: str) -> None: method path (line 60491) | def path(self) -> str: method setRelativeToPath (line 60500) | def setRelativeToPath(self, path: str) -> None: method relativeToPath (line 60512) | def relativeToPath(self) -> str: method setRect (line 60524) | def setRect(self, rect: BoundingRect) -> None: method rect (line 60536) | def rect(self) -> BoundingRect: method setBrightness (line 60548) | def setBrightness(self, brightness: float) -> None: method brightness (line 60562) | def brightness(self) -> float: class NetworkShape (line 60577) | class NetworkShape: method __init__ (line 60594) | def __init__(self, *args, **kwargs) -> None: ... class NetworkShapeLine (line 60597) | class NetworkShapeLine(NetworkShape): method __init__ (line 60610) | def __init__(self, start: Vector2, end: Vector2, color: Color = ..., a... class NetworkShapeBox (line 60662) | class NetworkShapeBox(NetworkShape): method __init__ (line 60675) | def __init__(self, rect: BoundingRect, color: Color = ..., alpha: floa... class NetworkShapeNodeShape (line 60719) | class NetworkShapeNodeShape(NetworkShape): method __init__ (line 60733) | def __init__(self, rect: BoundingRect, shape: str, color: Color = ...,... class NetworkShapeConnection (line 60782) | class NetworkShapeConnection(NetworkShape): method __init__ (line 60796) | def __init__(self, input_pos: Vector2, input_dir: Vector2, output_pos:... class Bundle (line 60849) | class Bundle: method __init__ (line 60902) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 60904) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 60905) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 60906) | def __hash__(self) -> int: ... method destroy (line 60907) | def destroy(self) -> None: method name (line 60916) | def name(self) -> str: method setName (line 60925) | def setName(self, name: str) -> None: method findBestFilter (line 60938) | def findBestFilter(self) -> EnumValue: method filter (line 60952) | def filter(self) -> EnumValue: method setFilter (line 60969) | def setFilter(self, filter: EnumValue) -> None: method pattern (line 60982) | def pattern(self) -> str | None: method setPattern (line 60998) | def setPattern(self, pattern_or_none: str) -> None: method nodes (line 61019) | def nodes(self) -> Tuple[Node, ...]: method containsNode (line 61028) | def containsNode(self, node: Node) -> bool: method addNode (line 61041) | def addNode(self, node: Node) -> None: method removeNode (line 61054) | def removeNode(self, base_node: Node) -> None: method clear (line 61067) | def clear(self) -> None: method isSelected (line 61080) | def isSelected(self) -> bool: method setSelected (line 61090) | def setSelected(self, on: bool, clear_all_selected: bool = False) -> N... method convertToNormalBundle (line 61101) | def convertToNormalBundle(self) -> None: method convertToSmartBundle (line 61113) | def convertToSmartBundle(self) -> None: class NodeConnection (line 61127) | class NodeConnection(NetworkItem): method __init__ (line 61170) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 61172) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 61173) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 61174) | def __hash__(self) -> int: ... method outputNode (line 61175) | def outputNode(self) -> Optional[Node]: method inputIndex (line 61187) | def inputIndex(self) -> int: method outputItem (line 61197) | def outputItem(self) -> NetworkMovableItem: method inputNode (line 61208) | def inputNode(self) -> Optional[Node]: method outputIndex (line 61221) | def outputIndex(self) -> int: method subnetIndirectInput (line 61233) | def subnetIndirectInput(self) -> Optional[SubnetIndirectInput]: method inputItem (line 61245) | def inputItem(self) -> Optional[NetworkMovableItem]: method inputItemOutputIndex (line 61262) | def inputItemOutputIndex(self) -> int: method isSelected (line 61276) | def isSelected(self) -> bool: method setSelected (line 61285) | def setSelected(self, selected: bool, clear_all_selected: bool = False... method inputName (line 61297) | def inputName(self) -> str: method inputLabel (line 61307) | def inputLabel(self) -> str: method inputDataType (line 61317) | def inputDataType(self) -> str: ... method outputName (line 61318) | def outputName(self) -> str: method outputLabel (line 61328) | def outputLabel(self) -> str: method outputDataType (line 61338) | def outputDataType(self) -> str: ... class ApexNodeConnection (line 61340) | class ApexNodeConnection(NodeConnection): method __init__ (line 61357) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 61359) | def __hash__(self) -> int: ... method sessionId (line 61360) | def sessionId(self) -> int: class OpNodeConnection (line 61372) | class OpNodeConnection(NodeConnection): method __init__ (line 61382) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 61384) | def __hash__(self) -> int: ... class NodeInfoTree (line 61386) | class NodeInfoTree: method __init__ (line 61404) | def __init__(self, tree_root: Any, tree: Any) -> None: method name (line 61422) | def name(self) -> str: method infoType (line 61431) | def infoType(self) -> str: method branchOrder (line 61443) | def branchOrder(self) -> Tuple[str, ...]: method branches (line 61471) | def branches(self) -> dict[str, NodeInfoTree]: method headings (line 61481) | def headings(self) -> Tuple[str, ...]: method rows (line 61493) | def rows(self) -> Tuple[Tuple[str, ...], ...]: class OrboltURLHandler (line 61506) | class OrboltURLHandler: method __init__ (line 61508) | def __init__(self, *args, **kwargs) -> None: ... method updateProgressBar (line 61510) | def updateProgressBar(self, percentage: float) -> None: ... method closeSplashScreen (line 61511) | def closeSplashScreen(self, immediate: bool = False) -> None: ... class OrientedBoundingBox (line 61513) | class OrientedBoundingBox: method __init__ (line 61525) | def __init__(self, oriented_bbox: OrientedBoundingBox = ...) -> None: method __eq__ (line 61535) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 61536) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 61537) | def isAlmostEqual(self, other: OrientedBoundingBox, tol: float = 1e-05... method __hash__ (line 61547) | def __hash__(self) -> int: ... method __mul__ (line 61548) | def __mul__(self, matrix4: Matrix4) -> OrientedBoundingBox: method center (line 61557) | def center(self) -> Vector3: method rotation (line 61566) | def rotation(self) -> Matrix3: ... method sizevec (line 61567) | def sizevec(self) -> Vector3: method contains (line 61578) | def contains(self, point: Sequence[float]) -> bool: method isValid (line 61588) | def isValid(self) -> bool: class OrientedBoundingRect (line 61598) | class OrientedBoundingRect: method __init__ (line 61610) | def __init__(self, points: typing.Iterable[Vector2]) -> None: method __eq__ (line 61621) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 61622) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 61623) | def isAlmostEqual(self, brect: OrientedBoundingRect, tolerance: float ... method __hash__ (line 61633) | def __hash__(self) -> int: ... method sizevec (line 61634) | def sizevec(self) -> Vector2: method center (line 61643) | def center(self) -> Vector2: method orientation (line 61652) | def orientation(self) -> Matrix2: class PackedFragment (line 61663) | class PackedFragment(PackedPrim): method __init__ (line 61675) | def __init__(self, *args, **kwargs) -> None: ... method setEmbeddedGeometry (line 61677) | def setEmbeddedGeometry(self, geometry: Geometry, attrib: str, name: s... class PackedGeometry (line 61690) | class PackedGeometry(PackedPrim): method __init__ (line 61702) | def __init__(self, *args, **kwargs) -> None: ... method getEmbeddedGeometry (line 61704) | def getEmbeddedGeometry(self) -> Geometry: method setEmbeddedGeometry (line 61713) | def setEmbeddedGeometry(self, geometry: Geometry) -> None: class Parm (line 61725) | class Parm: method __init__ (line 61736) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 61738) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 61739) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 61740) | def __hash__(self) -> int: ... method node (line 61741) | def node(self) -> OpNode: method tuple (line 61750) | def tuple(self) -> ParmTuple: method parmTemplate (line 61765) | def parmTemplate(self) -> ParmTemplate: method name (line 61774) | def name(self) -> str: method path (line 61783) | def path(self) -> str: method description (line 61792) | def description(self) -> str: method componentIndex (line 61801) | def componentIndex(self) -> int: method menuContents (line 61814) | def menuContents(self) -> Tuple[str, ...]: method menuLabels (line 61826) | def menuLabels(self) -> Tuple[str, ...]: method menuItems (line 61837) | def menuItems(self) -> Tuple[str, ...]: method isDynamicMenu (line 61847) | def isDynamicMenu(self) -> bool: method pressButton (line 61859) | def pressButton(self, arguments: Mapping[str, int|bool|float|str] = ..... method referenceExpression (line 61883) | def referenceExpression(self, to_base_parm: Parm, language: Optional[E... method setFromParm (line 61894) | def setFromParm(self, src: Parm) -> None: method setFromParmDefaults (line 61904) | def setFromParmDefaults(self, src: Parm) -> None: ... method overwriteDefaults (line 61905) | def overwriteDefaults(self) -> None: method revertToDefaults (line 61915) | def revertToDefaults(self) -> None: method revertToAndRestorePermanentDefaults (line 61925) | def revertToAndRestorePermanentDefaults(self) -> None: method revertToRampDefaults (line 61938) | def revertToRampDefaults(self) -> None: method hasTemporaryDefaults (line 61950) | def hasTemporaryDefaults(self) -> bool: method isAtDefault (line 61962) | def isAtDefault(self, compare_temporary_defaults: bool = True, compare... method isAtRampDefault (line 61981) | def isAtRampDefault(self) -> bool: method setExpression (line 61994) | def setExpression(self, expression: str, language: Optional[EnumValue]... method expression (line 62054) | def expression(self) -> str: method expressionLanguage (line 62079) | def expressionLanguage(self) -> EnumValue: method rawValue (line 62104) | def rawValue(self) -> str: method isShowingExpression (line 62115) | def isShowingExpression(self) -> bool: method showExpression (line 62126) | def showExpression(self, value: bool) -> None: ... method setKeyframe (line 62127) | def setKeyframe(self, keyframe: BaseKeyframe) -> None: method setKeyframes (line 62139) | def setKeyframes(self, keyframes: Sequence[BaseKeyframe]) -> None: method keyframes (line 62155) | def keyframes(self) -> Tuple[BaseKeyframe, ...]: method keyframesInRange (line 62164) | def keyframesInRange(self, start_frame: float, end_frame: float) -> Tu... method keyframesBefore (line 62176) | def keyframesBefore(self, frame: float) -> Tuple[BaseKeyframe, ...]: method keyframesAfter (line 62186) | def keyframesAfter(self, frame: float) -> Tuple[BaseKeyframe, ...]: ... method evalAsFloat (line 62187) | def evalAsFloat(self) -> float: method evalAsFloatAtFrame (line 62199) | def evalAsFloatAtFrame(self, frame: float) -> float: method evalAsInt (line 62211) | def evalAsInt(self) -> int: method evalAsIntAtFrame (line 62223) | def evalAsIntAtFrame(self, frame: float) -> int: method evalAsString (line 62235) | def evalAsString(self) -> str: method evalAsStringAtFrame (line 62251) | def evalAsStringAtFrame(self, frame: float) -> str: method evalAsGeometry (line 62267) | def evalAsGeometry(self) -> Optional[Geometry]: method evalAsGeometryAtFrame (line 62279) | def evalAsGeometryAtFrame(self, frame: float) -> Optional[Geometry]: method evalAsImageLayer (line 62291) | def evalAsImageLayer(self) -> Optional[ImageLayer]: method evalAsImageLayerAtFrame (line 62303) | def evalAsImageLayerAtFrame(self, frame: float) -> Optional[ImageLayer]: method evalAsNanoVDB (line 62315) | def evalAsNanoVDB(self) -> Optional[NanoVDB]: method evalAsNanoVDBAtFrame (line 62327) | def evalAsNanoVDBAtFrame(self, frame: float) -> Optional[NanoVDB]: method evalAsJSONMap (line 62339) | def evalAsJSONMap(self) -> dict[str, str]: method evalAsJSONMapAtFrame (line 62352) | def evalAsJSONMapAtFrame(self, frame: float) -> dict[str, str]: method evalAsRamp (line 62365) | def evalAsRamp(self) -> Ramp: method evalAsRampAtFrame (line 62377) | def evalAsRampAtFrame(self, frame: float) -> Ramp: method evalAsNode (line 62389) | def evalAsNode(self) -> OpNode | None: method evalAsNodeAtFrame (line 62404) | def evalAsNodeAtFrame(self, frame: float) -> OpNode | None: method evalAsNodes (line 62419) | def evalAsNodes(self) -> Tuple[Node, ...]: method evalAsNodesAtFrame (line 62431) | def evalAsNodesAtFrame(self, frame: float) -> Tuple[Node, ...]: method evalAsNodePath (line 62443) | def evalAsNodePath(self) -> str: method evalAsNodePathAtFrame (line 62456) | def evalAsNodePathAtFrame(self, frame: float) -> str: method evalAsNodePaths (line 62469) | def evalAsNodePaths(self) -> Tuple[str, ...]: method evalAsNodePathsAtFrame (line 62479) | def evalAsNodePathsAtFrame(self, frame: float) -> Tuple[str, ...]: method unexpandedString (line 62489) | def unexpandedString(self) -> str: method deleteKeyframeAtFrame (line 62517) | def deleteKeyframeAtFrame(self, frame: float) -> None: method deleteAllKeyframes (line 62537) | def deleteAllKeyframes(self) -> None: method getReferencedParm (line 62559) | def getReferencedParm(self) -> Parm: method parmsReferencingThis (line 62569) | def parmsReferencingThis(self) -> Tuple[Parm, ...]: method isLocked (line 62579) | def isLocked(self) -> bool: method lock (line 62588) | def lock(self, on: bool) -> None: method isAutoscoped (line 62601) | def isAutoscoped(self) -> bool: method setAutoscope (line 62610) | def setAutoscope(self, on: bool) -> None: method isScoped (line 62621) | def isScoped(self) -> bool: method setScope (line 62631) | def setScope(self, on: bool) -> None: method isAutoSelected (line 62641) | def isAutoSelected(self) -> bool: method setAutoSelect (line 62650) | def setAutoSelect(self, on: bool) -> None: method isSelected (line 62661) | def isSelected(self) -> bool: method setSelect (line 62671) | def setSelect(self, on: bool) -> None: method alias (line 62681) | def alias(self) -> str: method setAlias (line 62691) | def setAlias(self, alias_name: str) -> None: method isSpare (line 62702) | def isSpare(self) -> bool: method isTimeDependent (line 62711) | def isTimeDependent(self) -> bool: method isMultiParmInstance (line 62723) | def isMultiParmInstance(self) -> bool: method isMultiParmParent (line 62734) | def isMultiParmParent(self) -> bool: method parentMultiParm (line 62744) | def parentMultiParm(self) -> Optional[Parm]: method multiParmInstanceIndices (line 62754) | def multiParmInstanceIndices(self) -> Tuple[int, ...]: method multiParmInstancesPerItem (line 62774) | def multiParmInstancesPerItem(self) -> int: method multiParmInstancesCount (line 62786) | def multiParmInstancesCount(self) -> int: method multiParmStartOffset (line 62798) | def multiParmStartOffset(self) -> int: method multiParmInstances (line 62811) | def multiParmInstances(self) -> Tuple[Parm, ...]: method insertMultiParmInstance (line 62824) | def insertMultiParmInstance(self, inst_index: int) -> None: method removeMultiParmInstance (line 62836) | def removeMultiParmInstance(self, inst_index: int) -> None: method moveMultiParmInstances (line 62845) | def moveMultiParmInstances(self, moves: Sequence[int]) -> None: method moveUpMultiParmInstance (line 62877) | def moveUpMultiParmInstance(self, inst_index: int) -> None: method moveDownMultiParmInstance (line 62893) | def moveDownMultiParmInstance(self, inst_index: int) -> None: method containingFolders (line 62909) | def containingFolders(self) -> Tuple[str, ...]: method containingFolderIndices (line 62932) | def containingFolderIndices(self) -> Tuple[int, ...]: method containingFolderSetParmTuples (line 62960) | def containingFolderSetParmTuples(self) -> Tuple[ParmTuple, ...]: method asCode (line 62981) | def asCode(self, brief: bool = False, save_values: bool = True, save_k... method createClip (line 63071) | def createClip(self, parent_node: Node, name: str, create_new: bool, a... method appendClip (line 63103) | def appendClip(self, chop_node: Node, apply_immediately: bool, current... method overrideTrack (line 63125) | def overrideTrack(self) -> Optional[Track]: method isOverrideTrackActive (line 63134) | def isOverrideTrackActive(self) -> bool: method copyToParmClipboard (line 63143) | def copyToParmClipboard(self) -> None: method isDisabled (line 63153) | def isDisabled(self) -> bool: method disable (line 63167) | def disable(self, on: bool) -> None: method isHidden (line 63179) | def isHidden(self) -> bool: method hide (line 63193) | def hide(self, on: bool) -> None: method isVisible (line 63218) | def isVisible(self) -> bool: method isConstrained (line 63234) | def isConstrained(self) -> bool: method isPending (line 63244) | def isPending(self) -> bool: method keyframeExtrapolation (line 63254) | def keyframeExtrapolation(self, before: bool) -> EnumValue: ... method setKeyframeExtrapolation (line 63255) | def setKeyframeExtrapolation(self, before: bool, e: EnumValue) -> None: method keyframesRefit (line 63284) | def keyframesRefit(self, refit: bool, refit_tol: float, refit_preserve... method uiBackgroundColor (line 63344) | def uiBackgroundColor(self) -> Color: method eval (line 63354) | def eval(self) -> int|float|str: method evalAtFrame (line 63364) | def evalAtFrame(self, frame: float) -> int|float|str: method evalAtTime (line 63376) | def evalAtTime(self, frame: float) -> int|float|str: method appendMultiParmInstancesFromData (line 63390) | def appendMultiParmInstancesFromData(self, data: Sequence[dict[str, An... method asData (line 63391) | def asData(self, value: bool=True, evaluate_value=False, locked: bool=... method clipData (line 63392) | def clipData(self, start:float|None=None, end:float|None=None, binary:... method insertMultiParmInstancesFromData (line 63393) | def insertMultiParmInstancesFromData(self, data: Sequence[dict[str, An... method insertTemplatesFromData (line 63394) | def insertTemplatesFromData(self, data: dict[str, Any], operation: str... method multiParmInstancesAsData (line 63395) | def multiParmInstancesAsData(self, start_index: int=0, end_index: int=... method rampPointsAsData (line 63396) | def rampPointsAsData(self, evaluate: bool = True, metadata: bool = Fal... method saveClip (line 63397) | def saveClip(self, file_name:str, start:float|None=None, end:float|Non... method set (line 63398) | def set(self, value: int | float | str | dict[str, str] | Parm | Ramp ... method setFromData (line 63399) | def setFromData(self, data: dict[str, Any]) -> None: ... method setMultiParmInstancesFromData (line 63400) | def setMultiParmInstancesFromData(self, data: Sequence[dict[str, Any]]... method setRampPointsFromData (line 63401) | def setRampPointsFromData(self, data: Sequence[dict[str, Any]]) -> Non... method setValueFromData (line 63402) | def setValueFromData(self, data: int | str | float | dict[str, Any] | ... method templateAsData (line 63403) | def templateAsData(self, children: bool = True) -> dict[str, Any]: ... method templateChildrenAsData (line 63404) | def templateChildrenAsData(self, parmtemplate_order: bool = False) -> ... method valueAsData (line 63405) | def valueAsData(self, evaluate: bool = True, verbose: bool = True) -> ... class ParameterEditor (line 63407) | class ParameterEditor(PathBasedPaneTab): method __init__ (line 63417) | def __init__(self, *args, **kwargs) -> None: ... method scrollPosition (line 63419) | def scrollPosition(self) -> Vector2: method setScrollPosition (line 63428) | def setScrollPosition(self, position: Vector2) -> None: method setFilterEnabled (line 63438) | def setFilterEnabled(self, on: bool, keyboard_lock: bool = False) -> N... method filterEnabled (line 63450) | def filterEnabled(self) -> bool: method setFilterPattern (line 63459) | def setFilterPattern(self, filter: str) -> None: method filterPattern (line 63473) | def filterPattern(self) -> str: method setFilterExactMatch (line 63482) | def setFilterExactMatch(self, on: bool) -> None: method filterExactMatch (line 63491) | def filterExactMatch(self) -> bool: method setFilterMode (line 63501) | def setFilterMode(self, mode: EnumValue) -> None: method filterMode (line 63511) | def filterMode(self) -> EnumValue: method setFilterCriteria (line 63520) | def setFilterCriteria(self, criteria: EnumValue) -> None: method filterCriteria (line 63530) | def filterCriteria(self) -> EnumValue: method isShowingParmDialog (line 63539) | def isShowingParmDialog(self) -> bool: method setShowParmDialog (line 63549) | def setShowParmDialog(self, show: bool) -> None: method setMultiParmTab (line 63562) | def setMultiParmTab(self, parm: str, index: int) -> None: method multiParmTab (line 63571) | def multiParmTab(self, parm: str) -> int: method visibleParms (line 63580) | def visibleParms(self) -> Tuple[ParmTuple, ...]: class ParmTuple (line 63590) | class ParmTuple: method __init__ (line 63635) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 63637) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 63638) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 63639) | def __hash__(self) -> int: ... method node (line 63640) | def node(self) -> OpNode: method parmTemplate (line 63649) | def parmTemplate(self) -> ParmTemplate: method name (line 63662) | def name(self) -> str: method description (line 63684) | def description(self) -> str: method setPending (line 63694) | def setPending(self, values: Sequence[float|str]) -> None: method overwriteDefaults (line 63719) | def overwriteDefaults(self) -> None: ... method revertToDefaults (line 63720) | def revertToDefaults(self) -> None: method revertToAndRestorePermanentDefaults (line 63730) | def revertToAndRestorePermanentDefaults(self) -> None: method isAtDefault (line 63742) | def isAtDefault(self, compare_temporary_defaults: bool = True, compare... method isAtRampDefault (line 63761) | def isAtRampDefault(self) -> bool: method evalAsFloats (line 63774) | def evalAsFloats(self) -> Tuple[float, ...]: method evalAsFloatsAtFrame (line 63786) | def evalAsFloatsAtFrame(self, frame: float) -> Tuple[float, ...]: method evalAsInts (line 63798) | def evalAsInts(self) -> Tuple[int, ...]: method evalAsIntsAtFrame (line 63810) | def evalAsIntsAtFrame(self, frame: float) -> Tuple[int, ...]: method evalAsStrings (line 63822) | def evalAsStrings(self) -> Tuple[str, ...]: method evalAsStringsAtFrame (line 63834) | def evalAsStringsAtFrame(self, frame: float) -> Tuple[str, ...]: method evalAsRamps (line 63846) | def evalAsRamps(self) -> Tuple[Ramp, ...]: method evalAsRampsAtFrame (line 63858) | def evalAsRampsAtFrame(self, frame: float) -> Tuple[Ramp, ...]: method evalAsGeometries (line 63870) | def evalAsGeometries(self) -> Tuple[Geometry, ...]: method evalAsGeometriesAtFrame (line 63882) | def evalAsGeometriesAtFrame(self, frame: float) -> Tuple[Geometry, ...]: method evalAsImageLayers (line 63894) | def evalAsImageLayers(self) -> Tuple[ImageLayer, ...]: method evalAsImageLayersAtFrame (line 63906) | def evalAsImageLayersAtFrame(self, frame: float) -> Tuple[ImageLayer, ... method evalAsNanoVDBs (line 63918) | def evalAsNanoVDBs(self) -> Tuple[NanoVDB, ...]: method evalAsNanoVDBsAtFrame (line 63930) | def evalAsNanoVDBsAtFrame(self, frame: float) -> Tuple[NanoVDB, ...]: method evalAsJSONMaps (line 63942) | def evalAsJSONMaps(self) -> Tuple[dict[str, str], ...]: method evalAsJSONMapsAtFrame (line 63956) | def evalAsJSONMapsAtFrame(self, frame: float) -> Tuple[dict[str, str],... method lock (line 63970) | def lock(self, bool_values: bool|Sequence[bool]) -> None: method setAutoscope (line 64000) | def setAutoscope(self, bool_values: Sequence[bool]) -> None: method isSpare (line 64026) | def isSpare(self) -> bool: method isTimeDependent (line 64035) | def isTimeDependent(self) -> bool: method isMultiParmInstance (line 64048) | def isMultiParmInstance(self) -> bool: method isMultiParmParent (line 64059) | def isMultiParmParent(self) -> bool: method parentMultiParm (line 64069) | def parentMultiParm(self) -> Optional[Parm]: method multiParmInstanceIndices (line 64079) | def multiParmInstanceIndices(self) -> Tuple[int, ...]: method multiParmInstancesPerItem (line 64099) | def multiParmInstancesPerItem(self) -> int: method multiParmInstancesCount (line 64111) | def multiParmInstancesCount(self) -> int: method multiParmStartOffset (line 64123) | def multiParmStartOffset(self) -> int: method multiParmInstances (line 64136) | def multiParmInstances(self) -> Tuple[ParmTuple, ...]: method containingFolders (line 64149) | def containingFolders(self) -> Tuple[str, ...]: ... method containingFolderIndices (line 64150) | def containingFolderIndices(self) -> Tuple[int, ...]: ... method containingFolderSetParmTuples (line 64151) | def containingFolderSetParmTuples(self) -> Tuple[ParmTuple, ...]: ... method setKeyframe (line 64152) | def setKeyframe(self, keyframes: Sequence[BaseKeyframe]) -> None: method deleteKeyframeAtFrame (line 64171) | def deleteKeyframeAtFrame(self, frame: float) -> None: method deleteAllKeyframes (line 64191) | def deleteAllKeyframes(self) -> None: method __getitem__ (line 64208) | def __getitem__(self, index: int) -> Parm: method __len__ (line 64229) | def __len__(self) -> int: method __bool__ (line 64238) | def __bool__(self) -> bool: ... method createClip (line 64239) | def createClip(self, parent_node: Node, name: str, create_new: bool, a... method appendClip (line 64271) | def appendClip(self, chop_node: Node, apply_immediately: bool, current... method copyToParmClipboard (line 64293) | def copyToParmClipboard(self) -> None: method asCode (line 64303) | def asCode(self, brief: bool = False, save_values: bool = True, save_k... method help (line 64304) | def help(self) -> str: ... method helpUrl (line 64305) | def helpUrl(self) -> str: ... method isDisabled (line 64306) | def isDisabled(self) -> bool: method disable (line 64321) | def disable(self, on: bool) -> None: method isHidden (line 64333) | def isHidden(self) -> bool: method hide (line 64347) | def hide(self, on: bool) -> None: method isConstrained (line 64375) | def isConstrained(self) -> bool: ... method isShowingExpression (line 64376) | def isShowingExpression(self) -> bool: ... method showExpression (line 64377) | def showExpression(self, value: bool) -> None: ... method eval (line 64378) | def eval(self) -> Tuple[int,...]|Tuple[float,...]|Tuple[str,...]|Ramp: method evalAtFrame (line 64391) | def evalAtFrame(self, frame: float) -> Tuple[int,...]|Tuple[float,...]... method evalAtTime (line 64404) | def evalAtTime(self, frame: float) -> Tuple[int,...]|Tuple[float,...]|... method __iter__ (line 64419) | def __iter__(self) -> Iterator[Parm]: ... method asData (line 64420) | def asData(self, value: bool=True, evaluate_value=False, locked: bool=... method clipData (line 64421) | def clipData(self, start:float|None=None, end:float|None=None, binary:... method insertMultiParmInstancesFromData (line 64422) | def insertMultiParmInstancesFromData(self, data: Sequence[dict[str, An... method insertTemplatesFromData (line 64423) | def insertTemplatesFromData(self, data: dict[str, Any], operation: str... method multiParmInstancesAsData (line 64424) | def multiParmInstancesAsData(self, start_index: int=0, end_index: int=... method rampPointsAsData (line 64425) | def rampPointsAsData(self, evaluate: bool = True, metadata: bool = Fal... method saveClip (line 64426) | def saveClip(self, file_name:str, start:float|None=None, end:float|Non... method set (line 64427) | def set(self, value: Sequence[int] | Sequence[float] | Sequence[str] |... method setFromData (line 64428) | def setFromData(self, data: dict[str, Any]) -> None: ... method setMultiParmInstancesFromData (line 64429) | def setMultiParmInstancesFromData(self, data: Sequence[dict[str, Any]]... method setRampPointsFromData (line 64430) | def setRampPointsFromData(self, data: Sequence[dict[str, Any]]) -> Non... method setValueFromData (line 64431) | def setValueFromData(self, data: int | str | float | dict[str, Any] | ... method templateAsData (line 64432) | def templateAsData(self, children: bool = True, parmtemplate_order: bo... method templateChildrenAsData (line 64433) | def templateChildrenAsData(self, parmtemplate_order: bool = False) -> ... method valueAsData (line 64434) | def valueAsData(self, evaluate: bool = True, verbose: bool = True) -> ... class perfMon (line 64436) | class perfMon: method __init__ (line 64461) | def __init__(self, *args, **kwargs) -> None: ... method startProfile (line 64464) | def startProfile(title: str, options: Optional[PerfMonRecordOptions] =... method loadProfile (line 64483) | def loadProfile(file_path: str) -> PerfMonProfile: method saveProfile (line 64497) | def saveProfile(profile: PerfMonProfile, file_path: str) -> None: method activeProfile (line 64510) | def activeProfile() -> Optional[PerfMonProfile]: method startTimedEvent (line 64521) | def startTimedEvent(description: str, auto_nest_events: bool = True) -... method startEvent (line 64531) | def startEvent(description: str, auto_nest_events: bool = True) -> Per... method startTimedCookEvent (line 64564) | def startTimedCookEvent(description: str, node: Node) -> PerfMonEvent: method startCookEvent (line 64574) | def startCookEvent(description: str, node: Node) -> PerfMonEvent: method startPaneEvent (line 64606) | def startPaneEvent(panetype: str, operation: str) -> PerfMonEvent: method isRecording (line 64634) | def isRecording() -> bool: class PerfMonEvent (line 64644) | class PerfMonEvent: method __init__ (line 64680) | def __init__(self, *args, **kwargs) -> None: ... method id (line 64682) | def id(self) -> int: method name (line 64694) | def name(self) -> str: method object (line 64705) | def object(self) -> str: method isAutoNestEnabled (line 64715) | def isAutoNestEnabled(self) -> bool: method stop (line 64729) | def stop(self) -> Tuple[float, ...]: method isTiming (line 64749) | def isTiming(self) -> bool: method isRunning (line 64758) | def isRunning(self) -> bool: method startTime (line 64768) | def startTime(self) -> float: method __enter__ (line 64782) | def __enter__(self) -> PerfMonEvent: ... method __exit__ (line 64783) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class PerfMonProfile (line 64785) | class PerfMonProfile: method __init__ (line 64810) | def __init__(self, *args, **kwargs) -> None: ... method id (line 64812) | def id(self) -> int: method title (line 64822) | def title(self) -> str: method isActive (line 64831) | def isActive(self) -> bool: method isPaused (line 64840) | def isPaused(self) -> bool: method isRecordingCookStats (line 64849) | def isRecordingCookStats(self) -> bool: method isRecordingPDGCookStats (line 64858) | def isRecordingPDGCookStats(self) -> bool: method isRecordingSolveStats (line 64868) | def isRecordingSolveStats(self) -> bool: method isRecordingDrawStats (line 64878) | def isRecordingDrawStats(self) -> bool: method isRecordingGPUDrawStats (line 64887) | def isRecordingGPUDrawStats(self) -> bool: method isRecordingViewportStats (line 64897) | def isRecordingViewportStats(self) -> bool: method isRecordingScriptStats (line 64907) | def isRecordingScriptStats(self) -> bool: method isRecordingRenderStats (line 64917) | def isRecordingRenderStats(self) -> bool: method isRecordingThreadStats (line 64927) | def isRecordingThreadStats(self) -> bool: method isRecordingFrameStats (line 64936) | def isRecordingFrameStats(self) -> bool: method isRecordingMemoryStats (line 64945) | def isRecordingMemoryStats(self) -> bool: ... method isRecordingErrors (line 64946) | def isRecordingErrors(self) -> bool: method stop (line 64955) | def stop(self) -> None: method cancel (line 64967) | def cancel(self) -> None: method pause (line 64980) | def pause(self) -> None: method resume (line 64992) | def resume(self) -> None: method exportAsCSV (line 65004) | def exportAsCSV(self, file_path: str) -> None: class PerfMonRecordOptions (line 65019) | class PerfMonRecordOptions: method __init__ (line 65038) | def __init__(self, cook_stats: bool = True, pdg_cook_stats: bool = Tru... method recordCookStats (line 65057) | def recordCookStats(self) -> bool: method recordPDGCookStats (line 65066) | def recordPDGCookStats(self) -> bool: method recordSolveStats (line 65076) | def recordSolveStats(self) -> bool: method recordDrawStats (line 65085) | def recordDrawStats(self) -> bool: method recordGPUDrawStats (line 65094) | def recordGPUDrawStats(self) -> bool: method recordViewportStats (line 65103) | def recordViewportStats(self) -> bool: method recordPaneStats (line 65112) | def recordPaneStats(self) -> bool: method recordScriptStats (line 65121) | def recordScriptStats(self) -> bool: method recordRenderStats (line 65131) | def recordRenderStats(self) -> bool: method recordThreadStats (line 65140) | def recordThreadStats(self) -> bool: method recordFrameStats (line 65149) | def recordFrameStats(self) -> bool: method recordMemoryStats (line 65158) | def recordMemoryStats(self) -> bool: method recordErrors (line 65167) | def recordErrors(self) -> bool: method setRecordCookStats (line 65176) | def setRecordCookStats(self, record: bool) -> None: method setRecordPDGCookStats (line 65185) | def setRecordPDGCookStats(self, record: bool) -> None: method setRecordSolveStats (line 65194) | def setRecordSolveStats(self, record: bool) -> None: method setRecordDrawStats (line 65203) | def setRecordDrawStats(self, record: bool) -> None: method setRecordGPUDrawStats (line 65212) | def setRecordGPUDrawStats(self, record: bool) -> None: method setRecordViewportStats (line 65221) | def setRecordViewportStats(self, record: bool) -> None: method setRecordPaneStats (line 65230) | def setRecordPaneStats(self, record: bool) -> None: method setRecordScriptStats (line 65239) | def setRecordScriptStats(self, record: bool) -> None: method setRecordRenderStats (line 65248) | def setRecordRenderStats(self, record: bool) -> None: method setRecordThreadStats (line 65257) | def setRecordThreadStats(self, record: bool) -> None: method setRecordFrameStats (line 65266) | def setRecordFrameStats(self, record: bool) -> None: method setRecordMemoryStats (line 65275) | def setRecordMemoryStats(self, record: bool) -> None: method setRecordErrors (line 65284) | def setRecordErrors(self, record: bool) -> None: class PerformanceMonitor (line 65294) | class PerformanceMonitor(PaneTab): method __init__ (line 65304) | def __init__(self, *args, **kwargs) -> None: ... method isLiveUpdatesEnabled (line 65306) | def isLiveUpdatesEnabled(self) -> bool: method enableLiveUpdates (line 65315) | def enableLiveUpdates(self, on: bool) -> None: method isRecording (line 65326) | def isRecording(self) -> bool: method startRecording (line 65335) | def startRecording(self) -> None: method stopRecording (line 65347) | def stopRecording(self) -> None: method isSamplingCookStats (line 65359) | def isSamplingCookStats(self) -> bool: method isSamplingPDGCookStats (line 65368) | def isSamplingPDGCookStats(self) -> bool: method isSamplingErrors (line 65378) | def isSamplingErrors(self) -> bool: method isSamplingFrameStats (line 65387) | def isSamplingFrameStats(self) -> bool: method isSamplingMemoryStats (line 65396) | def isSamplingMemoryStats(self) -> bool: ... method isSamplingObjectDrawStats (line 65397) | def isSamplingObjectDrawStats(self) -> bool: method isSamplingObjectGPUDrawStats (line 65407) | def isSamplingObjectGPUDrawStats(self) -> bool: method isSamplingScriptStats (line 65417) | def isSamplingScriptStats(self) -> bool: method isSamplingSolveStats (line 65426) | def isSamplingSolveStats(self) -> bool: method isSamplingThreadStats (line 65435) | def isSamplingThreadStats(self) -> bool: method isSamplingViewportStats (line 65444) | def isSamplingViewportStats(self) -> bool: method sampleCookStats (line 65453) | def sampleCookStats(self, on: bool) -> None: method samplePDGCookStats (line 65462) | def samplePDGCookStats(self, on: bool) -> None: method sampleErrors (line 65471) | def sampleErrors(self, on: bool) -> None: method sampleFrameStats (line 65480) | def sampleFrameStats(self, on: bool) -> None: method sampleMemoryStats (line 65489) | def sampleMemoryStats(self, on: bool) -> None: ... method sampleObjectDrawStats (line 65490) | def sampleObjectDrawStats(self, on: bool) -> None: method sampleObjectGPUDrawStats (line 65499) | def sampleObjectGPUDrawStats(self, on: bool) -> None: method sampleScriptStats (line 65508) | def sampleScriptStats(self, on: bool) -> None: method sampleSolveStats (line 65517) | def sampleSolveStats(self, on: bool) -> None: method sampleThreadStats (line 65526) | def sampleThreadStats(self, on: bool) -> None: method sampleViewportStats (line 65537) | def sampleViewportStats(self, on: bool) -> None: method showProfile (line 65546) | def showProfile(self, profile: PerfMonProfile) -> None: method objectView (line 65555) | def objectView(self) -> EnumValue: method setObjectView (line 65565) | def setObjectView(self, structure: EnumValue) -> None: method timeFormat (line 65575) | def timeFormat(self) -> EnumValue: method setTimeFormat (line 65585) | def setTimeFormat(self, format: EnumValue) -> None: method timeUnit (line 65594) | def timeUnit(self) -> EnumValue: method setTimeUnit (line 65603) | def setTimeUnit(self, unit: EnumValue) -> None: class playbar (line 65613) | class playbar: method __init__ (line 65623) | def __init__(self, *args, **kwargs) -> None: ... method isPlaying (line 65626) | def isPlaying() -> bool: method play (line 65636) | def play() -> None: method stop (line 65648) | def stop() -> None: method reverse (line 65660) | def reverse() -> None: method jumpToNextKeyframe (line 65672) | def jumpToNextKeyframe() -> None: ... method jumpToPreviousKeyframe (line 65674) | def jumpToPreviousKeyframe() -> None: ... method playMode (line 65676) | def playMode() -> EnumValue: method setPlayMode (line 65688) | def setPlayMode(mode: EnumValue) -> None: method frameIncrement (line 65705) | def frameIncrement() -> float: method setFrameIncrement (line 65715) | def setFrameIncrement(increment: float) -> None: method playbackRange (line 65728) | def playbackRange() -> Vector2: method setPlaybackRange (line 65739) | def setPlaybackRange(start: float, end: float) -> None: method isRangeRestricted (line 65751) | def isRangeRestricted() -> bool: method setRestrictRange (line 65762) | def setRestrictRange(on: bool) -> None: method usesIntegerFrames (line 65776) | def usesIntegerFrames() -> bool: method setUseIntegerFrames (line 65787) | def setUseIntegerFrames(on: bool) -> None: method isRealTime (line 65799) | def isRealTime() -> bool: method setRealTime (line 65810) | def setRealTime(on: bool) -> None: method realTimeFactor (line 65822) | def realTimeFactor() -> float: method setRealTimeFactor (line 65833) | def setRealTimeFactor(factor: float) -> None: method isRealTimeSkipping (line 65849) | def isRealTimeSkipping() -> bool: method setRealTimeSkipping (line 65860) | def setRealTimeSkipping(on: bool) -> None: method isAudioShown (line 65872) | def isAudioShown() -> bool: method showAudio (line 65883) | def showAudio(on: bool) -> None: method areKeysShown (line 65895) | def areKeysShown() -> bool: method showKeys (line 65906) | def showKeys(on: bool) -> None: method isSimCacheShown (line 65918) | def isSimCacheShown() -> bool: ... method showSimCache (line 65920) | def showSimCache(on: bool) -> None: ... method isRangeSliderShown (line 65922) | def isRangeSliderShown() -> bool: method showRangeSlider (line 65933) | def showRangeSlider(on: bool) -> None: method areTicksShown (line 65945) | def areTicksShown() -> bool: method showTicks (line 65956) | def showTicks(on: bool) -> None: method moveToBottom (line 65968) | def moveToBottom() -> None: method moveToPane (line 65980) | def moveToPane(pane: Pane) -> None: method isContinuousCook (line 65993) | def isContinuousCook() -> bool: method setContinuousCook (line 66003) | def setContinuousCook(on: bool) -> None: method addEventCallback (line 66015) | def addEventCallback(callback: Callable[[EnumValue, float], None]) -> ... method removeEventCallback (line 66037) | def removeEventCallback(callback: Callable[[EnumValue, float], None]) ... method clearEventCallbacks (line 66052) | def clearEventCallbacks() -> None: method eventCallbacks (line 66063) | def eventCallbacks() -> Tuple[Callable[[EnumValue, float], None],...]: method selectedKeyframes (line 66074) | def selectedKeyframes() -> dict[Parm, Tuple[BaseKeyframe, ...]]: ... method selectionRange (line 66076) | def selectionRange() -> Vector2: method selectionRanges (line 66092) | def selectionRanges() -> Tuple[Vector2, ...]: method timelineRange (line 66103) | def timelineRange() -> Vector2: method timeRange (line 66114) | def timeRange() -> Vector2: method setTimeRange (line 66125) | def setTimeRange(start: float, end: float) -> None: method frameRange (line 66135) | def frameRange() -> Vector2: method setFrameRange (line 66146) | def setFrameRange(start: float, end: float) -> None: method frameBookmark (line 66156) | def frameBookmark(bookmark: Bookmark) -> None: method channelList (line 66167) | def channelList() -> ChannelList: method setChannelList (line 66177) | def setChannelList(arg: ChannelList) -> None: method channelListFromSelection (line 66187) | def channelListFromSelection() -> ChannelList: method channelListFromNodes (line 66198) | def channelListFromNodes(nodes: Sequence[Node]) -> ChannelList: method channelListFromParms (line 66209) | def channelListFromParms(parms: Sequence[Parm]) -> ChannelList: method channelListFromParmTuples (line 66220) | def channelListFromParmTuples(parms: Sequence[ParmTuple]) -> ChannelList: method isAnimBarShown (line 66231) | def isAnimBarShown() -> bool: method showAnimBar (line 66241) | def showAnimBar(show: bool) -> None: method animBar (line 66251) | def animBar() -> AnimBar: class PluginHotkeyDefinitions (line 66262) | class PluginHotkeyDefinitions: method __init__ (line 66278) | def __init__(self) -> None: method addCommandCategory (line 66289) | def addCommandCategory(self, symbol: str, label: str, description: str... method addCommand (line 66317) | def addCommand(self, symbol: str, label: str, description: str) -> None: method addContext (line 66338) | def addContext(self, symbol: str, label: str, description: str) -> None: method addDefaultBinding (line 66365) | def addDefaultBinding(self, context: str, command: str, assignments: S... method containsCommandCategory (line 66401) | def containsCommandCategory(self, symbol: str) -> bool: method containsCommand (line 66417) | def containsCommand(self, symbol: str) -> bool: method containsContext (line 66433) | def containsContext(self, symbol: str) -> bool: method containsDefaultBinding (line 66449) | def containsDefaultBinding(self, context: str, command: str) -> bool: class Point (line 66472) | class Point: method __init__ (line 66489) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 66491) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 66492) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 66493) | def __hash__(self) -> int: ... method geometry (line 66494) | def geometry(self) -> Geometry: method number (line 66503) | def number(self) -> int: method position (line 66514) | def position(self) -> Vector3: method setPosition (line 66536) | def setPosition(self, position: Sequence[float]) -> None: method weight (line 66563) | def weight(self) -> float: method setWeight (line 66591) | def setWeight(self, weight: float) -> None: method attribType (line 66607) | def attribType(self) -> EnumValue: method floatAttribValue (line 66621) | def floatAttribValue(self, name_or_attrib: str|Attrib) -> float: method floatListAttribValue (line 66639) | def floatListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[fl... method intAttribValue (line 66655) | def intAttribValue(self, name_or_attrib: str|Attrib) -> int: method intListAttribValue (line 66666) | def intListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[int,... method stringAttribValue (line 66678) | def stringAttribValue(self, name_or_attrib: str|Attrib) -> str: method stringListAttribValue (line 66689) | def stringListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[s... method dictAttribValue (line 66704) | def dictAttribValue(self, name_or_attrib: str|Attrib) -> AttribDictRet... method dictListAttribValue (line 66715) | def dictListAttribValue(self, name_or_attrib: str|Attrib) -> Sequence[... method setAttribValue (line 66730) | def setAttribValue(self, name_or_attrib: str|Attrib, attrib_value: Att... method attribValue (line 66765) | def attribValue(self, attrib: Attrib|str) -> AttribReturnType|AttribDi... method vertices (line 66806) | def vertices(self) -> Tuple[Vertex, ...]: method prims (line 66819) | def prims(self) -> Tuple[Prim, ...]: class PointGroup (line 66829) | class PointGroup: method __init__ (line 66854) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 66856) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 66857) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 66858) | def __hash__(self) -> int: ... method geometry (line 66859) | def geometry(self) -> Optional[Geometry]: method name (line 66868) | def name(self) -> str: method iterPoints (line 66877) | def iterPoints(self) -> _PointTupleGenerator: method points (line 66891) | def points(self) -> Tuple[Point, ...]: method contains (line 66902) | def contains(self, point: Point) -> bool: method isOrdered (line 66914) | def isOrdered(self) -> bool: method add (line 66923) | def add(self, point_or_list_or_point_group: Point|Sequence[Point]|Poin... method remove (line 66944) | def remove(self, point_or_list_or_point_group: Point|Sequence[Point]|P... method clear (line 66965) | def clear(self) -> None: method destroy (line 66980) | def destroy(self) -> None: method pointCount (line 66993) | def pointCount(self) -> int: method optionType (line 67002) | def optionType(self, option_name: str) -> EnumValue: method setOption (line 67013) | def setOption(self, name: str, value: OptionMultiArgType, type_hint: E... method removeOption (line 67037) | def removeOption(self, name: str) -> None: method dataId (line 67050) | def dataId(self) -> AttribDataId: method incrementDataId (line 67059) | def incrementDataId(self) -> None: method options (line 67069) | def options(self) -> dict[str, OptionMultiReturnType]: method option (line 67084) | def option(self, option_name: str) -> OptionMultiReturnType: ... class Polygon (line 67086) | class Polygon(Face): method __init__ (line 67100) | def __init__(self, *args, **kwargs) -> None: ... class PrimGroup (line 67103) | class PrimGroup: method __init__ (line 67128) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 67130) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 67131) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 67132) | def __hash__(self) -> int: ... method geometry (line 67133) | def geometry(self) -> Optional[Geometry]: method name (line 67142) | def name(self) -> str: method iterPrims (line 67152) | def iterPrims(self) -> _PrimTupleGenerator: method prims (line 67166) | def prims(self) -> Tuple[Prim, ...]: method contains (line 67177) | def contains(self, prim: Prim) -> bool: method isOrdered (line 67189) | def isOrdered(self) -> bool: method add (line 67198) | def add(self, prim_or_list_or_prim_group: Prim|Sequence[Prim]|PrimGrou... method remove (line 67220) | def remove(self, prim_or_list_or_prim_group: Prim|Sequence[Prim]|PrimG... method clear (line 67242) | def clear(self) -> None: method destroy (line 67257) | def destroy(self) -> None: method primCount (line 67270) | def primCount(self) -> int: method optionType (line 67279) | def optionType(self, option_name: str) -> EnumValue: method setOption (line 67290) | def setOption(self, name: str, value: OptionMultiArgType, type_hint: E... method removeOption (line 67314) | def removeOption(self, name: str) -> None: method dataId (line 67327) | def dataId(self) -> AttribDataId: method incrementDataId (line 67336) | def incrementDataId(self) -> None: method options (line 67346) | def options(self) -> dict[str, OptionMultiReturnType]: method option (line 67361) | def option(self, option_name: str) -> OptionMultiReturnType: ... class properties (line 67363) | class properties: method __init__ (line 67378) | def __init__(self, *args, **kwargs) -> None: ... method classes (line 67381) | def classes(tags: Sequence[str]|None = ...) -> Tuple[str,...]: method classLabel (line 67393) | def classLabel(class_name: str) -> str: method categories (line 67404) | def categories(class_name: str) -> Tuple[str, ...]: method parameters (line 67415) | def parameters(class_name: str, category_name: str) -> Tuple[str, ...]: method parmTemplate (line 67426) | def parmTemplate(class_name: str, parm_name: str) -> ParmTemplate: class PythonPanel (line 67438) | class PythonPanel(PathBasedPaneTab): method __init__ (line 67457) | def __init__(self, *args, **kwargs) -> None: ... method activeInterface (line 67459) | def activeInterface(self) -> Optional[PythonPanelInterface]: method setActiveInterface (line 67469) | def setActiveInterface(self, interface: PythonPanelInterface) -> None: method reloadActiveInterface (line 67482) | def reloadActiveInterface(self) -> None: method showToolbar (line 67495) | def showToolbar(self, show: bool) -> None: method isToolbarShown (line 67504) | def isToolbarShown(self) -> bool: method expandToolbar (line 67513) | def expandToolbar(self, expand: bool) -> None: ... method isToolbarExpanded (line 67514) | def isToolbarExpanded(self) -> bool: method label (line 67523) | def label(self) -> str: method setLabel (line 67535) | def setLabel(self, label: str) -> None: method activeInterfaceScriptErrors (line 67558) | def activeInterfaceScriptErrors(self) -> str: method activeInterfaceRootWidget (line 67568) | def activeInterfaceRootWidget(self) -> QtWidgets.QWidget: class pypanel (line 67582) | class pypanel: method __init__ (line 67592) | def __init__(self, *args, **kwargs) -> None: ... method installFile (line 67595) | def installFile(file_path: str) -> None: method interfacesInFile (line 67610) | def interfacesInFile(file_path: str) -> Tuple[PythonPanelInterface, ...]: method interfaces (line 67624) | def interfaces() -> dict[str, PythonPanelInterface]: method interfaceByName (line 67638) | def interfaceByName(name: str) -> Optional[PythonPanelInterface]: method setMenuInterfaces (line 67651) | def setMenuInterfaces(names: Sequence[str]) -> None: method menuInterfaces (line 67666) | def menuInterfaces() -> Tuple[str, ...]: class PythonPanelInterface (line 67677) | class PythonPanelInterface: method __init__ (line 67693) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 67695) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 67696) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 67697) | def __hash__(self) -> int: ... method id (line 67698) | def id(self) -> int: method name (line 67707) | def name(self) -> str: method setName (line 67716) | def setName(self, name: str) -> None: method label (line 67725) | def label(self) -> str: method setLabel (line 67734) | def setLabel(self, label: str) -> None: method icon (line 67743) | def icon(self) -> str: method setIcon (line 67752) | def setIcon(self, icon: str) -> None: method script (line 67761) | def script(self) -> str: method setScript (line 67770) | def setScript(self, script: str) -> None: method help (line 67779) | def help(self) -> str: ... method setHelp (line 67780) | def setHelp(self, script: str) -> None: ... method helpURL (line 67781) | def helpURL(self) -> str: ... method setHelpURL (line 67782) | def setHelpURL(self, script: str) -> None: ... method filePath (line 67783) | def filePath(self) -> str: method setFilePath (line 67792) | def setFilePath(self, filePath: str) -> None: class Quadric (line 67802) | class Quadric(Prim): method __init__ (line 67814) | def __init__(self, *args, **kwargs) -> None: ... method transform (line 67816) | def transform(self) -> Matrix3: method getTransform (line 67828) | def getTransform(self) -> Matrix3: ... method vertex (line 67829) | def vertex(self, index: int) -> Vertex: class Quaternion (line 67844) | class Quaternion: method __init__ (line 67870) | def __init__(self, x: Sequence[float]|float|'Quaternion'|Matrix3|Matri... method __eq__ (line 67911) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 67912) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 67913) | def isAlmostEqual(self, quaternion: Quaternion, tolerance: float = 1e-... method almostEqual (line 67923) | def almostEqual(self, quaternion: Quaternion, tolerance: float = 1e-05... method __hash__ (line 67932) | def __hash__(self) -> int: ... method __getitem__ (line 67933) | def __getitem__(self, index: int) -> float: method __setitem__ (line 67957) | def __setitem__(self, index: int, value: float) -> None: method __len__ (line 67967) | def __len__(self) -> int: method setTo (line 67977) | def setTo(self, tuple: Sequence[float]) -> None: method setToRotationMatrix (line 67993) | def setToRotationMatrix(self, matrix3_or_matrix4: Matrix3|Matrix4) -> ... method setToAngleAxis (line 68005) | def setToAngleAxis(self, angle_in_deg: float, axis: Sequence[float]) -... method setToVectors (line 68024) | def setToVectors(self, v1: Vector3, v2: Vector3) -> None: method setToEulerRotates (line 68034) | def setToEulerRotates(self, angles_in_deg: float, rotate_order: Litera... method conjugate (line 68053) | def conjugate(self) -> Quaternion: method inverse (line 68065) | def inverse(self) -> Quaternion: method dot (line 68078) | def dot(self, quaternion: Quaternion) -> float: method __add__ (line 68087) | def __add__(self, quaternion: Quaternion) -> Quaternion: method __sub__ (line 68100) | def __sub__(self, quaternion: Quaternion) -> Quaternion: method __mul__ (line 68111) | def __mul__(self, quaternion_or_scalar: Quaternion|float) -> Quaternion: method slerp (line 68128) | def slerp(self, other: Quaternion, fraction: float) -> Quaternion: method normalized (line 68153) | def normalized(self) -> Quaternion: method length (line 68172) | def length(self) -> float: method extractRotationMatrix3 (line 68185) | def extractRotationMatrix3(self) -> Matrix3: method extractAngleAxis (line 68205) | def extractAngleAxis(self) -> Tuple[float, Vector3]: method extractEulerRotates (line 68223) | def extractEulerRotates(self, rotate_order: Literal['xyz','xzy','yxz',... method rotate (line 68241) | def rotate(self, v: Vector3) -> Vector3: class qt (line 68252) | class qt: method __init__ (line 68265) | def __init__(self, *args, **kwargs) -> None: ... method canCreateIcon (line 68268) | def canCreateIcon(icon_name: str) -> bool: method styleSheet (line 68286) | def styleSheet(file_path: Optional[str] = None) -> str: method inchesToPixels (line 68324) | def inchesToPixels(inches: float) -> float: method pixelsToInches (line 68338) | def pixelsToInches(pixels: float) -> float: method skipClosingMenusForCurrentButtonPress (line 68352) | def skipClosingMenusForCurrentButtonPress() -> None: method mainWindow (line 68376) | def mainWindow() -> QtWidgets.QMainWindow: ... class ColorField (line 68380) | class ColorField(QtWidgets.QWidget): method __init__ (line 68382) | def __init__(self, label: str ='', include_alpha: bool = False) -> N... method color (line 68383) | def color(self) -> QtGui.QColor: ... method setColor (line 68384) | def setColor(self, color: QtGui.QColor) -> None: ... class ColorPalette (line 68386) | class ColorPalette(QtWidgets.QFrame): method __init__ (line 68393) | def __init__(self, colors: Sequence[QtGui.QColor] | None =None, size... method color (line 68394) | def color(self, index: int) -> None: ... method colorCount (line 68395) | def colorCount(self) -> int: ... method colorList (line 68396) | def colorList(self) -> list[QtGui.QColor]: ... method isEditingAllowed (line 68397) | def isEditingAllowed(self) -> bool: ... method selectedColor (line 68398) | def selectedColor(self) -> QtGui.QColor: ... method selectedIndex (line 68399) | def selectedIndex(self) -> int: ... method setColor (line 68400) | def setColor(self, index: int, color: QtGui.QColor) -> None: ... method setColorList (line 68401) | def setColorList(self, colors: Sequence[QtGui.QColor]) -> None: ... method setEditingAllowed (line 68402) | def setEditingAllowed(self, allowed: bool) -> None: ... method setSelectedIndex (line 68403) | def setSelectedIndex(self, index: int) -> None: ... method setSwatchSize (line 68404) | def setSwatchSize(self, size: int) -> None: ... method swatchSize (line 68405) | def swatchSize(self) -> int: ... class ColorSwatchButton (line 68407) | class ColorSwatchButton(QtWidgets.QPushButton): method __init__ (line 68416) | def __init__(self, include_alpha: bool=False) -> None: ... method color (line 68417) | def color(self) -> QtGui.QColor: ... method hasAlpha (line 68418) | def hasAlpha(self) -> bool: ... method secondaryColor (line 68419) | def secondaryColor(self) -> QtGui.QColor: ... method secondaryColorPosition (line 68420) | def secondaryColorPosition(self) -> int: ... method setColor (line 68421) | def setColor(self, color: QtGui.QColor) -> None: ... method setSecondaryColor (line 68422) | def setSecondaryColor(self, color: QtGui.QColor) -> None: ... method setSecondaryColorPosition (line 68423) | def setSecondaryColorPosition(self, position: int) -> None: ... class ComboBox (line 68425) | class ComboBox(QtWidgets.QComboBox): method __init__ (line 68427) | def __init__(self) -> None: ... class Dialog (line 68429) | class Dialog(QtWidgets.QDialog): method __init__ (line 68431) | def __init__(self) -> None: ... class FieldLabel (line 68433) | class FieldLabel(QtWidgets.QLabel): method __init__ (line 68435) | def __init__(self, label: str) -> None: ... class FileChooserButton (line 68437) | class FileChooserButton(QtWidgets.QToolButton): method __init__ (line 68440) | def __init__(self) -> None: ... method setFileChooserDefaultValue (line 68441) | def setFileChooserDefaultValue(self, default_value: str) -> None: ... method setFileChooserFilter (line 68442) | def setFileChooserFilter(self, file_filter: EnumValue) -> None: ... method setFileChooserIsImageChooser (line 68443) | def setFileChooserIsImageChooser(self, is_image_chooser: bool) -> No... method setFileChooserMode (line 68444) | def setFileChooserMode(self, chooser_mode: EnumValue) -> None: ... method setFileChooserMultipleSelect (line 68445) | def setFileChooserMultipleSelect(self, multiple_select: bool) -> Non... method setFileChooserPattern (line 68446) | def setFileChooserPattern(self, file_pattern: str) -> None: ... method setFileChooserStartDirectory (line 68447) | def setFileChooserStartDirectory(self, start_dir: str) -> None: ... method setFileChooserTitle (line 68448) | def setFileChooserTitle(self, title: str) -> None: ... class FileLineEdit (line 68450) | class FileLineEdit(QtWidgets.QLineEdit): method __init__ (line 68452) | def __init__(self, icon: QtGui.QIcon | str | None = None, parent: Qt... class GridLayout (line 68454) | class GridLayout(QtWidgets.QGridLayout): method __init__ (line 68456) | def __init__(self) -> None: ... class HelpButton (line 68458) | class HelpButton(QtWidgets.QToolButton): method __init__ (line 68460) | def __init__(self, help_path: str, tooltip: str = ...) -> None: ... class Icon (line 68462) | class Icon(QtGui.QIcon): method __init__ (line 68464) | def __init__(self, icon_name: str, width: int | None = None, height:... class InputField (line 68466) | class InputField(QtWidgets.QWidget): method __init__ (line 68475) | def __init__(self, data_type: int, num_components: int, label: str |... method menu (line 68476) | def menu(self) -> QtWidgets.QMenu: ... method onContextMenuEvent (line 68477) | def onContextMenuEvent(self, event: QtGui.QContextMenuEvent, context... method onMousePressEvent (line 68478) | def onMousePressEvent(self, event: QtGui.QMouseEvent) -> None: ... method onMouseWheelEvent (line 68479) | def onMouseWheelEvent(self, event: QtGui.QWheelEvent) -> None: ... method setAlignment (line 68480) | def setAlignment(self, a: QtCore.Qt.Alignment | QtCore.Qt.AlignmentF... method setMenu (line 68481) | def setMenu(self, menu: QtWidgets.QMenu) -> None: ... method setState (line 68482) | def setState(self, state_name: str, state_value: bool, index: int = ... method setValidator (line 68483) | def setValidator(self, validator: QtGui.QValidator) -> None: ... method setValue (line 68484) | def setValue(self, value: int | float | str | None, index: int = 0) ... method setValues (line 68485) | def setValues(self, values: Sequence[int] | Sequence[float] | Sequen... method setWidth (line 68486) | def setWidth(self, width: float) -> None: ... method state (line 68487) | def state(self, state_name: str, index: int = 0) -> bool: ... method value (line 68488) | def value(self, index: int = 0) -> int | float | str: ... method values (line 68489) | def values(self) -> list[int] | list[float] | list[str]: ... class ListEditor (line 68491) | class ListEditor(QtWidgets.QFrame): method __init__ (line 68496) | def __init__(self, strings: Sequence[str]=..., top_message: str | No... method addListItem (line 68497) | def addListItem(self, text: str, checked: bool | None=None, insert_a... method bottomMessage (line 68498) | def bottomMessage(self) -> str: ... method checkedRow (line 68499) | def checkedRow(self) -> int | None: ... method checkedRows (line 68500) | def checkedRows(self) -> list[int]: ... method checkedString (line 68501) | def checkedString(self) -> str | None: ... method checkedStrings (line 68502) | def checkedStrings(self) -> list[str]: ... method clear (line 68503) | def clear(self) -> None: ... method initialCheck (line 68504) | def initialCheck(self) -> bool: ... method initialString (line 68505) | def initialString(self) -> str: ... method isAddRemoveAllowed (line 68506) | def isAddRemoveAllowed(self) -> bool: ... method isEditingAllowed (line 68507) | def isEditingAllowed(self) -> bool: ... method isEmptyListAllowed (line 68508) | def isEmptyListAllowed(self) -> bool: ... method isEmptyStringAllowed (line 68509) | def isEmptyStringAllowed(self) -> bool: ... method isReorderAllowed (line 68510) | def isReorderAllowed(self) -> bool: ... method itemCount (line 68511) | def itemCount(self) -> int: ... method keepSorted (line 68512) | def keepSorted(self) -> bool: ... method removeRow (line 68513) | def removeRow(self, row_num: int) -> None: ... method rowIsChecked (line 68514) | def rowIsChecked(self, row_num: int) -> bool: ... method rowString (line 68515) | def rowString(self, row_num: int) -> str: ... method setAllowAddRemove (line 68516) | def setAllowAddRemove(self, allow: bool) -> None: ... method setAllowEditing (line 68517) | def setAllowEditing(self, allow: bool) -> None: ... method setAllowEmptyList (line 68518) | def setAllowEmptyList(self, allow: bool) -> None: ... method setAllowEmptyString (line 68519) | def setAllowEmptyString(self, allow: bool) -> None: ... method setAllowReorder (line 68520) | def setAllowReorder(self, allow: bool) -> None: ... method setBottomMessage (line 68521) | def setBottomMessage(self, text: str) -> None: ... method setInitialCheck (line 68522) | def setInitialCheck(self, checked: bool) -> None: ... method setInitialString (line 68523) | def setInitialString(self, text: str) -> None: ... method setKeepSorted (line 68524) | def setKeepSorted(self, keep_sorted: bool) -> None: ... method setRowChecked (line 68525) | def setRowChecked(self, row_num: int, checked: bool) -> None: ... method setShowCheckboxes (line 68526) | def setShowCheckboxes(self, show: bool) -> None: ... method setStrings (line 68527) | def setStrings(self, strings: Sequence[str]) -> None: ... method setStringsAndChecks (line 68528) | def setStringsAndChecks(self, strings_and_checks: Sequence[tuple[str... method setTopMessage (line 68529) | def setTopMessage(self, text: str) -> None: ... method showCheckboxes (line 68530) | def showCheckboxes(self) -> bool: ... method strings (line 68531) | def strings(self) -> list[str]: ... method stringsAndChecks (line 68532) | def stringsAndChecks(self) -> list[tuple[str, bool]]: ... method topMessage (line 68533) | def topMessage(self) -> str: ... class ListEditorDialog (line 68535) | class ListEditorDialog(QtWidgets.QDialog): method __init__ (line 68537) | def __init__(self, parent: QtWidgets.QWidget | None = None, window_t... method editor (line 68538) | def editor(self) -> qt.ListEditor: ... class Menu (line 68540) | class Menu(QtWidgets.QMenu): method __init__ (line 68542) | def __init__(self) -> None: ... class MenuBar (line 68544) | class MenuBar(QtWidgets.QMenuBar): method __init__ (line 68546) | def __init__(self, parent: QtWidgets.QWidget | None=None) -> None: ... class MenuButton (line 68548) | class MenuButton(QtWidgets.QPushButton): method __init__ (line 68550) | def __init__(self, menu: QtWidgets.QMenu) -> None: ... class MixerFilterProxyModel (line 68552) | class MixerFilterProxyModel(QtCore.QSortFilterProxyModel): class NodeChooserButton (line 68555) | class NodeChooserButton(QtWidgets.QToolButton): method __init__ (line 68560) | def __init__(self) -> None: ... method setNodeChooserFilter (line 68561) | def setNodeChooserFilter(self, node_filter: EnumValue) -> None: ... method setNodeChooserInitialNode (line 68562) | def setNodeChooserInitialNode(self, initial_node: OpNode) -> None: ... method setNodeChooserRelativeToNode (line 68563) | def setNodeChooserRelativeToNode(self, relative_to_node: OpNode) -> ... method setSelectMultiple (line 68564) | def setSelectMultiple(self, value: bool) -> None: ... class ParmChooserButton (line 68566) | class ParmChooserButton(QtWidgets.QToolButton): method __init__ (line 68569) | def __init__(self) -> None: ... method setCategoryFilter (line 68570) | def setCategoryFilter(self, category_filter: EnumValue) -> None: ... method setInitialSelection (line 68571) | def setInitialSelection(self, initial_selection: OpNode) -> None: ... method setRelativeToNode (line 68572) | def setRelativeToNode(self, relative_to_node: OpNode) -> None: ... method setSelectMultiple (line 68573) | def setSelectMultiple(self, value: bool) -> None: ... class ParmDialog (line 68575) | class ParmDialog(QtWidgets.QWidget): method __init__ (line 68577) | def __init__(self, node: OpNode | None, showTitleBar: bool = False, ... method multiParmTab (line 68578) | def multiParmTab(self, parm: str) -> None: ... method node (line 68579) | def node(self) -> OpNode: ... method scrollPosition (line 68580) | def scrollPosition(self) -> Vector2: ... method setMultiParmTab (line 68581) | def setMultiParmTab(self, parm: str, index) -> None: ... method setNode (line 68582) | def setNode(self, node: OpNode | None) -> None: ... method setScrollPosition (line 68583) | def setScrollPosition(self, pos: Vector2) -> None: ... method visibleParms (line 68584) | def visibleParms(self) -> tuple[ParmTuple, ...]: ... class ParmTupleChooserButton (line 68586) | class ParmTupleChooserButton(QtWidgets.QToolButton): method __init__ (line 68589) | def __init__(self) -> None: ... method setCategoryFilter (line 68590) | def setCategoryFilter(self, category_filter: EnumValue) -> None: ... method setInitialSelection (line 68591) | def setInitialSelection(self, initial_selection: OpNode) -> None: ... method setRelativeToNode (line 68592) | def setRelativeToNode(self, relative_to_node: OpNode) -> None: ... method setSelectMultiple (line 68593) | def setSelectMultiple(self, value: bool) -> None: ... class SearchLineEdit (line 68595) | class SearchLineEdit(QtWidgets.QLineEdit): method __init__ (line 68598) | def __init__(self, icon: QtGui.QIcon | str | None = None, parent: Qt... method allowSearchBackward (line 68599) | def allowSearchBackward(self) -> bool: ... method setAllowSearchBackward (line 68600) | def setAllowSearchBackward(self, on: bool) -> None: ... class Separator (line 68602) | class Separator(QtWidgets.QFrame): method __init__ (line 68604) | def __init__(self) -> None: ... class ToolTip (line 68606) | class ToolTip(QtWidgets.QWidget): method __init__ (line 68608) | def __init__(self) -> None: ... method setHelpUrl (line 68609) | def setHelpUrl(self, help_url: str) -> None: ... method setHotkey (line 68610) | def setHotkey(self, hotkey: str) -> None: ... method setTargetWidget (line 68611) | def setTargetWidget(self, widget: QtWidgets.QWidget) -> None: ... method setText (line 68612) | def setText(self, text: str) -> None: ... method setTitle (line 68613) | def setTitle(self, title: str) -> None: ... class TrackChooserButton (line 68615) | class TrackChooserButton(QtWidgets.QToolButton): method __init__ (line 68618) | def __init__(self) -> None: ... method setInitialSelection (line 68619) | def setInitialSelection(self, initial_track: Track) -> None: ... method setNodeChooserFilter (line 68620) | def setNodeChooserFilter(self, node_filter: EnumValue) -> None: ... method setSelectMultiple (line 68621) | def setSelectMultiple(self, value: bool) -> None: ... class WindowOverlay (line 68623) | class WindowOverlay(QtWidgets.QWidget): method __init__ (line 68625) | def __init__(self, parent: qt.Window, win_floating_panel: QtWidgets.... method onContainerWindowEvent (line 68626) | def onContainerWindowEvent(self, event: QtCore.QEvent) -> None: ... method onInitWindow (line 68627) | def onInitWindow(self) -> None: ... method onParentWindowEvent (line 68628) | def onParentWindowEvent(self, event: QtCore.QEvent) -> None: ... method windowContainer (line 68629) | def windowContainer(self) -> QtWidgets.QWidget: ... class Window (line 68631) | class Window(QtWidgets.QWidget): method __init__ (line 68633) | def __init__(self) -> None: ... class ViewerOverlay (line 68635) | class ViewerOverlay(WindowOverlay): method __init__ (line 68637) | def __init__(self, scene_viewer: SceneViewer) -> None: ... method moveBy (line 68638) | def moveBy(self, delta: QtCore.QPoint) -> None: ... method moveTo (line 68639) | def moveTo(self, pos: QtCore.QPoint) -> None: ... method onBeginResize (line 68640) | def onBeginResize(self) -> None: ... method onColorSchemeChanged (line 68641) | def onColorSchemeChanged(self) -> None: ... method onEndResize (line 68642) | def onEndResize(self) -> None: ... method onInitWindow (line 68643) | def onInitWindow(self) -> None: ... method onLayoutChanged (line 68644) | def onLayoutChanged(self) -> None: ... method onMoveContainerWindow (line 68645) | def onMoveContainerWindow(self, new_pos: QtCore.QPoint, old_pos: QtC... method onResizing (line 68646) | def onResizing(self) -> None: ... method onSizeChanged (line 68647) | def onSizeChanged(self) -> None: ... method onViewerActivated (line 68648) | def onViewerActivated(self) -> None: ... method onViewerDeactivated (line 68649) | def onViewerDeactivated(self) -> None: ... method onWindowPlacement (line 68650) | def onWindowPlacement(self) -> None: ... method sceneViewer (line 68651) | def sceneViewer(self) -> SceneViewer: ... class XMLMenuParser (line 68653) | class XMLMenuParser(object): method __init__ (line 68655) | def __init__(self, context: str ='', kwargs: dict[str, Any] | None=N... method generateMenu (line 68656) | def generateMenu(self, kwargs: dict[str, Any], menu:qt.Menu | None=N... method handleKeyPress (line 68657) | def handleKeyPress(self, keystring: str, kwargs: dict[str, Any], act... method hotkeyContext (line 68658) | def hotkeyContext(self) -> str: ... method parseFile (line 68659) | def parseFile(self, xmlfile: Path | str) -> None: ... method parseFiles (line 68660) | def parseFiles(self, xmlfilename: str) -> None: ... method parseString (line 68661) | def parseString(self, xmlstring: str) -> None: ... method setHotkeyContext (line 68662) | def setHotkeyContext(self, hotkey_context) -> None: ... class RadialItem (line 68664) | class RadialItem: method __init__ (line 68680) | def __init__(self, *args, **kwargs) -> None: ... method destroy (line 68682) | def destroy(self) -> None: method type (line 68693) | def type(self) -> EnumValue: class RadialScriptItem (line 68703) | class RadialScriptItem(RadialItem): method __init__ (line 68710) | def __init__(self, *args, **kwargs) -> None: ... method isSubmenu (line 68712) | def isSubmenu(self) -> bool: method label (line 68721) | def label(self) -> str: method setLabel (line 68730) | def setLabel(self, s: str) -> None: method icon (line 68739) | def icon(self) -> str: method setIcon (line 68748) | def setIcon(self, s: str) -> None: method check (line 68757) | def check(self) -> str: method setCheck (line 68767) | def setCheck(self, s: str) -> None: method script (line 68777) | def script(self) -> str: method setScript (line 68787) | def setScript(self, s: str) -> None: method shortcut (line 68797) | def shortcut(self) -> str: method setShortcut (line 68807) | def setShortcut(self, s: str) -> None: method setActionCallback (line 68816) | def setActionCallback(self, callback: Callable) -> None: method setCheckCallback (line 68835) | def setCheckCallback(self, callback: Callable) -> None: class RadialSubmenu (line 68851) | class RadialSubmenu(RadialItem): method __init__ (line 68858) | def __init__(self, *args, **kwargs) -> None: ... method label (line 68860) | def label(self) -> str: method setLabel (line 68869) | def setLabel(self, s: str) -> None: method shortcut (line 68878) | def shortcut(self) -> str: method setShortcut (line 68888) | def setShortcut(self, s: str) -> None: method remove (line 68897) | def remove(self, location: EnumValue) -> None: ... method item (line 68898) | def item(self, location: EnumValue) -> Optional[RadialItem]: method items (line 68908) | def items(self) -> dict[EnumValue, RadialItem]: method createSubmenu (line 68917) | def createSubmenu(self, location: EnumValue, label: Optional[str] = No... method createScriptItem (line 68929) | def createScriptItem(self, location: EnumValue, label: Optional[str] =... class RadialMenu (line 68943) | class RadialMenu: method __init__ (line 68969) | def __init__(self, *args, **kwargs) -> None: ... method destroy (line 68971) | def destroy(self) -> None: method name (line 68980) | def name(self) -> str: method categories (line 68989) | def categories(self) -> str: method setCategories (line 68998) | def setCategories(self, s: str) -> None: method sourceFile (line 69008) | def sourceFile(self) -> str: method save (line 69018) | def save(self, s: str) -> None: method root (line 69027) | def root(self) -> RadialItem: method label (line 69038) | def label(self) -> str: method setLabel (line 69047) | def setLabel(self, s: str) -> None: method shortcut (line 69056) | def shortcut(self) -> str: method setShortcut (line 69065) | def setShortcut(self, s: str) -> None: method item (line 69074) | def item(self, location: EnumValue) -> RadialItem: method items (line 69084) | def items(self) -> dict[EnumValue, RadialItem]: method createSubmenu (line 69094) | def createSubmenu(self, location: EnumValue, label: Optional[str] = No... method createScriptItem (line 69105) | def createScriptItem(self, location: EnumValue, label: Optional[str] =... class Ramp (line 69117) | class Ramp: method __init__ (line 69146) | def __init__(self, basis: Sequence[EnumValue], keys: Sequence[float], ... method isColor (line 69198) | def isColor(self) -> bool: method colorType (line 69208) | def colorType(self) -> EnumValue: method setColorType (line 69220) | def setColorType(self, enum_value: EnumValue) -> None: method basis (line 69236) | def basis(self) -> Tuple[EnumValue, ...]: method keys (line 69247) | def keys(self) -> Tuple[float, ...]: method lookup (line 69257) | def lookup(self, pos: float) -> float|Tuple[float, float, float]: method values (line 69270) | def values(self) -> Tuple[float|Tuple[float, float, float],...]: class RampParmTemplate (line 69282) | class RampParmTemplate(ParmTemplate): method __init__ (line 69292) | def __init__(self, name: str, label: str, ramp_parm_type: EnumValue, d... method defaultValue (line 69368) | def defaultValue(self) -> int: method setDefaultValue (line 69378) | def setDefaultValue(self, default_value: int) -> None: method defaultExpression (line 69388) | def defaultExpression(self) -> str: method setDefaultExpression (line 69405) | def setDefaultExpression(self, default_expression: str) -> None: method defaultExpressionLanguage (line 69418) | def defaultExpressionLanguage(self) -> EnumValue: method setDefaultExpressionLanguage (line 69431) | def setDefaultExpressionLanguage(self, default_expression_language: En... method parmType (line 69442) | def parmType(self) -> EnumValue: ... method setParmType (line 69443) | def setParmType(self, ramp_parm_type: EnumValue) -> None: method defaultBasis (line 69452) | def defaultBasis(self) -> EnumValue: method setDefaultBasis (line 69467) | def setDefaultBasis(self, default_basis: EnumValue) -> None: method colorType (line 69478) | def colorType(self) -> EnumValue: method setColorType (line 69489) | def setColorType(self, color_type: EnumValue) -> None: method showsControls (line 69499) | def showsControls(self) -> bool: method setShowsControls (line 69510) | def setShowsControls(self, on: bool) -> None: method parmTemplates (line 69520) | def parmTemplates(self) -> Tuple[ParmTemplate, ...]: class RedrawBlock (line 69530) | class RedrawBlock: method __init__ (line 69541) | def __init__(self) -> None: method __enter__ (line 69573) | def __enter__(self) -> RedrawBlock: ... method __exit__ (line 69574) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class ReferencePlane (line 69576) | class ReferencePlane: method __init__ (line 69587) | def __init__(self, *args, **kwargs) -> None: ... method sceneViewer (line 69589) | def sceneViewer(self) -> SceneViewer: method isVisible (line 69598) | def isVisible(self) -> bool: method setIsVisible (line 69607) | def setIsVisible(self, on: bool) -> None: method transform (line 69616) | def transform(self) -> Matrix4: method setTransform (line 69639) | def setTransform(self, matrix: Matrix4) -> None: method cellSize (line 69677) | def cellSize(self) -> Tuple[float, ...]: method setCellSize (line 69687) | def setCellSize(self, size: Sequence[float]) -> None: method numberOfCellsPerRulerLine (line 69700) | def numberOfCellsPerRulerLine(self) -> Tuple[int, ...]: method setNumberOfCellsPerRulerLine (line 69711) | def setNumberOfCellsPerRulerLine(self, number: Sequence[int]) -> None:... class RenderGallery (line 69713) | class RenderGallery(PathBasedPaneTab): method __init__ (line 69723) | def __init__(self, *args, **kwargs) -> None: ... class RopNode (line 69726) | class RopNode(OpNode): method __init__ (line 69740) | def __init__(self, *args, **kwargs) -> None: ... method isBypassed (line 69742) | def isBypassed(self) -> bool: method bypass (line 69751) | def bypass(self, on: bool) -> None: method isLocked (line 69761) | def isLocked(self) -> bool: method setLocked (line 69770) | def setLocked(self, on: bool) -> None: method inputDependencies (line 69781) | def inputDependencies(self) -> Tuple[Tuple[Node, Tuple[float, ...]], .... method render (line 69803) | def render(self, frame_range: Sequence[float]|None = ..., res: Sequenc... method removeAllRenderEventCallbacks (line 69877) | def removeAllRenderEventCallbacks(self) -> None: method addRenderEventCallback (line 69888) | def addRenderEventCallback(self, callback: Callable[[RopNode, EnumValu... method removeRenderEventCallback (line 69940) | def removeRenderEventCallback(self, callback: Callable[[RopNode, EnumV... class SceneGraphTree (line 69956) | class SceneGraphTree(PathBasedPaneTab): method __init__ (line 69963) | def __init__(self, *args, **kwargs) -> None: ... method showInactivePrimitives (line 69965) | def showInactivePrimitives(self) -> bool: method setShowInactivePrimitives (line 69975) | def setShowInactivePrimitives(self, show: bool) -> None: method showInvisiblePrimitives (line 69985) | def showInvisiblePrimitives(self) -> bool: method setShowInvisiblePrimitives (line 69995) | def setShowInvisiblePrimitives(self, show: bool) -> None: method showOverPrimitives (line 70005) | def showOverPrimitives(self) -> bool: method setShowOverPrimitives (line 70015) | def setShowOverPrimitives(self, show: bool) -> None: method showClassPrimitives (line 70025) | def showClassPrimitives(self) -> bool: method setShowClassPrimitives (line 70035) | def setShowClassPrimitives(self, show: bool) -> None: method showPrototypePrimitives (line 70045) | def showPrototypePrimitives(self) -> bool: method setShowPrototypePrimitives (line 70055) | def setShowPrototypePrimitives(self, show: bool) -> None: method showLayerInfoPrimitives (line 70065) | def showLayerInfoPrimitives(self) -> bool: method setShowLayerInfoPrimitives (line 70075) | def setShowLayerInfoPrimitives(self, show: bool) -> None: method showHiddenInUiPrimitives (line 70085) | def showHiddenInUiPrimitives(self) -> bool: method setShowHiddenInUiPrimitives (line 70096) | def setShowHiddenInUiPrimitives(self, show: bool) -> None: method allColumns (line 70107) | def allColumns(self) -> Tuple[str, ...]: method visibleColumns (line 70118) | def visibleColumns(self) -> Tuple[str, ...]: method setVisibleColumns (line 70130) | def setVisibleColumns(self, columns: Sequence[str]) -> None: method filterPattern (line 70142) | def filterPattern(self) -> str: method setFilterPattern (line 70155) | def setFilterPattern(self, pattern: str) -> None: method splitPosition (line 70164) | def splitPosition(self) -> float: method setSplitPosition (line 70189) | def setSplitPosition(self, position: float) -> None: method collectionPrimitives (line 70201) | def collectionPrimitives(self) -> str: method setCollectionPrimitives (line 70212) | def setCollectionPrimitives(self, pattern: str) -> None: method collectionFilterPattern (line 70223) | def collectionFilterPattern(self) -> str: method setCollectionFilterPattern (line 70236) | def setCollectionFilterPattern(self, pattern: str) -> None: method collapsePrimitives (line 70245) | def collapsePrimitives(self, prims: Sequence[str|pxr.Sdf.Path]) -> None: method expandPrimitives (line 70258) | def expandPrimitives(self, prims: Sequence[str|pxr.Sdf.Path], collapse... method expandedPrimitives (line 70276) | def expandedPrimitives(self, include_leaf_primitives: bool = ...) -> T... class SceneViewer (line 70293) | class SceneViewer(PathBasedPaneTab): method __init__ (line 70328) | def __init__(self, *args, **kwargs) -> None: ... method viewerType (line 70330) | def viewerType(self) -> EnumValue: method viewports (line 70340) | def viewports(self) -> Tuple[GeometryViewport, ...]: method findViewport (line 70347) | def findViewport(self, name: str) -> Optional[GeometryViewport]: method curViewport (line 70354) | def curViewport(self) -> GeometryViewport: method selectedViewport (line 70365) | def selectedViewport(self) -> GeometryViewport: method currentState (line 70375) | def currentState(self) -> str: method enterViewState (line 70384) | def enterViewState(self, wait_for_exit: bool = False) -> None: method enterCurrentNodeState (line 70394) | def enterCurrentNodeState(self, wait_for_exit: bool = False) -> None: method enterTranslateToolState (line 70405) | def enterTranslateToolState(self, wait_for_exit: bool = False) -> None: method enterRotateToolState (line 70417) | def enterRotateToolState(self, wait_for_exit: bool = False) -> None: method enterScaleToolState (line 70429) | def enterScaleToolState(self, wait_for_exit: bool = False) -> None: method setCurrentState (line 70441) | def setCurrentState(self, state: EnumValue, wait_for_exit: bool = ...,... method isCreateInContext (line 70487) | def isCreateInContext(self) -> bool: method isWorldSpaceLocal (line 70494) | def isWorldSpaceLocal(self) -> bool: method viewportLayout (line 70508) | def viewportLayout(self) -> EnumValue: method setViewportLayout (line 70518) | def setViewportLayout(self, layout: EnumValue, single: int = -1) -> None: method selectObjects (line 70562) | def selectObjects(self, prompt: str = ..., sel_index: int = ..., allow... method selectGeometry (line 70574) | def selectGeometry(self, prompt: str = ..., sel_index: int = ..., allo... method selectDynamics (line 70589) | def selectDynamics(self, prompt: str = ..., sel_index: int = ..., allo... method selectDynamicsPoints (line 70601) | def selectDynamicsPoints(self, prompt: str = ..., sel_index: int = ...... method selectDynamicsPolygons (line 70614) | def selectDynamicsPolygons(self, prompt: str = ..., sel_index: int = .... method selectSceneGraph (line 70627) | def selectSceneGraph(self, prompt: str = ..., preselection: Sequence[s... method selectSceneGraphInstances (line 70641) | def selectSceneGraphInstances(self, prompt: str = ..., preselection: S... method selectPositions (line 70652) | def selectPositions(self, prompt: str = ..., number_of_positions: int ... method selectOrientedPositions (line 70664) | def selectOrientedPositions(self, prompt: str = ..., number_of_positio... method selectDrawableGeometry (line 70684) | def selectDrawableGeometry(self, drawable_selection: Mapping[str, Inco... method currentGeometrySelection (line 70710) | def currentGeometrySelection(self) -> Optional[GeometrySelection]: method currentGeometrySelectionParm (line 70720) | def currentGeometrySelectionParm(self) -> str: method setCurrentGeometrySelection (line 70731) | def setCurrentGeometrySelection(self, geometry_type: EnumValue, nodes:... method currentSceneGraphSelection (line 70743) | def currentSceneGraphSelection(self) -> Tuple[str, ...]: method setCurrentSceneGraphSelection (line 70753) | def setCurrentSceneGraphSelection(self, selection: Sequence[str], fix_... method sceneGraphHighlight (line 70765) | def sceneGraphHighlight(self) -> Tuple[str, ...]: method setSceneGraphHighlight (line 70774) | def setSceneGraphHighlight(self, highlight: Sequence[str]) -> None: method locateSceneGraphPrim (line 70784) | def locateSceneGraphPrim(self, x: int, y: int) -> Tuple[float, str]: method sceneGraphStageLocked (line 70795) | def sceneGraphStageLocked(self) -> bool: method setSceneGraphStageLocked (line 70809) | def setSceneGraphStageLocked(self, locked: bool) -> None: method snappingMode (line 70819) | def snappingMode(self) -> EnumValue: method setSnappingMode (line 70826) | def setSnappingMode(self, snapping_mode: EnumValue) -> None: method isSnappingToCurrentGeometry (line 70833) | def isSnappingToCurrentGeometry(self) -> bool: method setSnapToCurrentGeometry (line 70843) | def setSnapToCurrentGeometry(self, on: bool) -> None: method isSnappingToTemplates (line 70853) | def isSnappingToTemplates(self) -> bool: method setSnapToTemplates (line 70860) | def setSnapToTemplates(self, on: bool) -> None: method isSnappingToOtherObjects (line 70867) | def isSnappingToOtherObjects(self) -> bool: method setSnapToOtherObjects (line 70874) | def setSnapToOtherObjects(self, on: bool) -> None: method isSnappingToGuides (line 70881) | def isSnappingToGuides(self) -> bool: method setSnapToGuides (line 70891) | def setSnapToGuides(self, on: bool) -> None: method isDepthSnapping (line 70901) | def isDepthSnapping(self) -> bool: method setDepthSnapping (line 70908) | def setDepthSnapping(self, on: bool) -> None: method isOrientingOnSnap (line 70915) | def isOrientingOnSnap(self) -> bool: method setOrientOnSnap (line 70922) | def setOrientOnSnap(self, on: bool) -> None: method snappingGravity (line 70929) | def snappingGravity(self) -> float: method snappingPriorities (line 70938) | def snappingPriorities(self) -> Tuple[EnumValue, ...]: method isPickingVisibleGeometry (line 70950) | def isPickingVisibleGeometry(self) -> bool: method setPickingVisibleGeometry (line 70962) | def setPickingVisibleGeometry(self, on: bool) -> None: method isPickingContainedGeometry (line 70972) | def isPickingContainedGeometry(self) -> bool: method setPickingContainedGeometry (line 70984) | def setPickingContainedGeometry(self, on: bool) -> None: method isGroupPicking (line 70994) | def isGroupPicking(self) -> bool: method setGroupPicking (line 71006) | def setGroupPicking(self, on: bool) -> None: method isWholeGeometryPicking (line 71016) | def isWholeGeometryPicking(self) -> bool: method setWholeGeometryPicking (line 71027) | def setWholeGeometryPicking(self, on: bool) -> None: method isSecureSelection (line 71037) | def isSecureSelection(self) -> bool: method setSecureSelection (line 71048) | def setSecureSelection(self, on: bool) -> None: method isPickingCurrentNode (line 71057) | def isPickingCurrentNode(self) -> bool: method setPickingCurrentNode (line 71069) | def setPickingCurrentNode(self, on: bool) -> None: method pickGeometryType (line 71079) | def pickGeometryType(self) -> EnumValue: method setPickGeometryType (line 71090) | def setPickGeometryType(self, geometry_type: EnumValue) -> None: method selectionMode (line 71101) | def selectionMode(self) -> EnumValue: method setSelectionMode (line 71110) | def setSelectionMode(self, style: EnumValue) -> None: method pickStyle (line 71120) | def pickStyle(self) -> EnumValue: method setPickStyle (line 71131) | def setPickStyle(self, style: EnumValue) -> None: method pickModifier (line 71140) | def pickModifier(self) -> EnumValue: method setPickModifier (line 71152) | def setPickModifier(self, modifier: EnumValue) -> None: method defaultPickModifier (line 71167) | def defaultPickModifier(self) -> EnumValue: method setDefaultPickModifier (line 71177) | def setDefaultPickModifier(self, modifier: EnumValue) -> None: method pickFacing (line 71187) | def pickFacing(self) -> EnumValue: method setPickFacing (line 71199) | def setPickFacing(self, facing: EnumValue) -> None: method activePickModifier (line 71209) | def activePickModifier(self) -> EnumValue: method isGroupListVisible (line 71219) | def isGroupListVisible(self) -> bool: method setGroupListVisible (line 71231) | def setGroupListVisible(self, on: bool) -> None: method isGroupListColoringGeometry (line 71240) | def isGroupListColoringGeometry(self) -> bool: method setGroupListColoringGeometry (line 71250) | def setGroupListColoringGeometry(self, on: bool) -> None: method isGroupListShowingEmptyGroups (line 71260) | def isGroupListShowingEmptyGroups(self) -> bool: method setGroupListShowingEmptyGroups (line 71270) | def setGroupListShowingEmptyGroups(self, on: bool) -> None: method isGroupListShowingOnlyPreSelectedGroups (line 71280) | def isGroupListShowingOnlyPreSelectedGroups(self) -> bool: method setGroupListShowingOnlyPreSelectedGroups (line 71290) | def setGroupListShowingOnlyPreSelectedGroups(self, on: bool) -> None: method isGroupListCondensingPathHierarchies (line 71300) | def isGroupListCondensingPathHierarchies(self) -> bool: method setGroupListCondensingPathHierarchies (line 71310) | def setGroupListCondensingPathHierarchies(self, on: bool) -> None: method groupListSize (line 71322) | def groupListSize(self) -> Vector2: method setGroupListSize (line 71331) | def setGroupListSize(self, width: float, height: float) -> None: method groupListType (line 71340) | def groupListType(self) -> EnumValue: method setGroupListType (line 71349) | def setGroupListType(self, group_list_type: EnumValue) -> None: method groupListMask (line 71360) | def groupListMask(self) -> str: method setGroupListMask (line 71370) | def setGroupListMask(self, mask: str) -> None: method constructionPlane (line 71381) | def constructionPlane(self) -> ConstructionPlane: method referencePlane (line 71393) | def referencePlane(self) -> ReferencePlane: method flipbookSettings (line 71405) | def flipbookSettings(self) -> FlipbookSettings: method flipbook (line 71415) | def flipbook(self, viewport: Optional[GeometryViewport] = None, settin... method runShelfTool (line 71432) | def runShelfTool(self, tool_name: str) -> None: method beginStateUndo (line 71441) | def beginStateUndo(self, label: str) -> None: method endStateUndo (line 71508) | def endStateUndo(self) -> None: method setPromptMessage (line 71521) | def setPromptMessage(self, msg: str, msg_type: EnumValue = ...) -> None: method clearPromptMessage (line 71538) | def clearPromptMessage(self) -> None: method flashMessage (line 71548) | def flashMessage(self, image: str, msg: str, duration: float = 1.0, vi... method hotkeyAssignments (line 71549) | def hotkeyAssignments(self, hotkey_symbols: Sequence[str]) -> Tuple[Tu... method showHandle (line 71562) | def showHandle(self, name: str, value: bool) -> None: method openVisualizerEditor (line 71585) | def openVisualizerEditor(self, vis: ViewportVisualizer) -> None: method openOptionDialog (line 71595) | def openOptionDialog(self, path: str, label: str) -> None: method triggerStateSelector (line 71612) | def triggerStateSelector(self, action: EnumValue, name: str|None = ...... method currentStateSelector (line 71637) | def currentStateSelector(self) -> str: method showCurrentSopGeometry (line 71648) | def showCurrentSopGeometry(self, value: bool) -> None: method isShowingCurrentSopGeometry (line 71677) | def isShowingCurrentSopGeometry(self) -> bool: method showOperationBar (line 71687) | def showOperationBar(self, on: bool) -> None: method isShowingOperationBar (line 71697) | def isShowingOperationBar(self) -> bool: ... method showColorCorrectionBar (line 71698) | def showColorCorrectionBar(self, on: bool) -> None: method isShowingColorCorrectionBar (line 71708) | def isShowingColorCorrectionBar(self) -> bool: method showMemoryBar (line 71718) | def showMemoryBar(self, on: bool) -> None: method isShowingMemoryBar (line 71727) | def isShowingMemoryBar(self) -> bool: method showDisplayOptionsBar (line 71737) | def showDisplayOptionsBar(self, on: bool) -> None: method isShowingDisplayOptionsBar (line 71747) | def isShowingDisplayOptionsBar(self) -> bool: method showSelectionBar (line 71757) | def showSelectionBar(self, on: bool) -> None: method isShowingSelectionBar (line 71766) | def isShowingSelectionBar(self) -> bool: method setIncludeColorCorrectionBar (line 71776) | def setIncludeColorCorrectionBar(self, on: bool) -> None: method includeColorCorrectionBar (line 71786) | def includeColorCorrectionBar(self) -> bool: method setIncludeMemoryBar (line 71796) | def setIncludeMemoryBar(self, on: bool) -> None: method includeMemoryBar (line 71805) | def includeMemoryBar(self) -> bool: method setGeometryVisibility (line 71815) | def setGeometryVisibility(self, sop: SopNode, on: bool) -> None: method geometryVisibility (line 71830) | def geometryVisibility(self, sop: SopNode) -> bool: method usingOCIO (line 71841) | def usingOCIO(self) -> bool: method setUsingOCIO (line 71851) | def setUsingOCIO(self, enable: bool) -> None: method setOCIODisplayView (line 71860) | def setOCIODisplayView(self, display: Optional[str] = None, view: Opti... method getOCIODisplay (line 71872) | def getOCIODisplay(self) -> str: method getOCIOView (line 71881) | def getOCIOView(self) -> str: method geometry (line 71890) | def geometry(self) -> Tuple[int, ...]: method createFloatingViewport (line 71909) | def createFloatingViewport(self, size: Sequence[int], pos: Sequence[in... method runStateCommand (line 71922) | def runStateCommand(self, name: str, args: Mapping[str, Any]|None = ..... method isViewingSceneGraph (line 72021) | def isViewingSceneGraph(self) -> bool: method stage (line 72030) | def stage(self) -> pxr.Usd.Stage: method stageSerial (line 72040) | def stageSerial(self) -> int: method setShowGeometry (line 72051) | def setShowGeometry(self, show: bool) -> None: method showGeometry (line 72060) | def showGeometry(self) -> bool: method setShowCameras (line 72069) | def setShowCameras(self, show: bool) -> None: method showCameras (line 72078) | def showCameras(self) -> bool: method setShowLights (line 72087) | def setShowLights(self, show: bool) -> None: method showLights (line 72096) | def showLights(self) -> bool: method setShowSelection (line 72105) | def setShowSelection(self, show: bool) -> None: method showSelection (line 72114) | def showSelection(self) -> bool: method setShowRenderTime (line 72123) | def setShowRenderTime(self, show: bool) -> None: ... method showRenderTime (line 72124) | def showRenderTime(self) -> bool: method setShowRenderStats (line 72134) | def setShowRenderStats(self, show: bool) -> None: ... method showRenderStats (line 72135) | def showRenderStats(self) -> bool: method setSelectionKind (line 72144) | def setSelectionKind(self, kind: str) -> None: method setSelectionPointInstances (line 72158) | def setSelectionPointInstances(self, topmost: bool) -> None: method selectionKind (line 72171) | def selectionKind(self) -> str: method isSelectingPointInstances (line 72182) | def isSelectingPointInstances(self) -> bool: method isSelectingTopmostInstance (line 72192) | def isSelectingTopmostInstance(self) -> bool: method setSelectionAllowKindMismatch (line 72202) | def setSelectionAllowKindMismatch(self, allow: bool) -> None: method selectionAllowKindMismatch (line 72226) | def selectionAllowKindMismatch(self) -> bool: method setSelectionAllowInstanceProxies (line 72237) | def setSelectionAllowInstanceProxies(self, allow: bool) -> None: method selectionAllowInstanceProxies (line 72258) | def selectionAllowInstanceProxies(self) -> bool: method setSelectionAllowHiddenPrims (line 72268) | def setSelectionAllowHiddenPrims(self, allow: bool) -> None: method selectionAllowHiddenPrims (line 72292) | def selectionAllowHiddenPrims(self) -> bool: method setStageControlsPlaybar (line 72302) | def setStageControlsPlaybar(self, controls_playbar: bool) -> None: method stageControlsPlaybar (line 72324) | def stageControlsPlaybar(self) -> bool: method hydraRenderers (line 72335) | def hydraRenderers(self) -> Tuple[str, ...]: method setHydraRenderer (line 72344) | def setHydraRenderer(self, ren_name: str) -> None: method currentHydraRenderer (line 72353) | def currentHydraRenderer(self) -> str: method isRendererPaused (line 72362) | def isRendererPaused(self) -> bool: method setRendererPaused (line 72371) | def setRendererPaused(self, paused: bool) -> None: method restartRenderer (line 72382) | def restartRenderer(self) -> None: method resetViewportCamera (line 72392) | def resetViewportCamera(self) -> None: method showProxyPurpose (line 72405) | def showProxyPurpose(self, enable: bool, renderer: Optional[str] = Non... method showGuidePurpose (line 72418) | def showGuidePurpose(self, enable: bool, renderer: Optional[str] = Non... method showRenderPurpose (line 72431) | def showRenderPurpose(self, enable: bool, renderer: Optional[str] = No... method useViewportOverrides (line 72444) | def useViewportOverrides(self, enable: bool, renderer: Optional[str] =... method useViewportLoadMasks (line 72458) | def useViewportLoadMasks(self, enable: bool, renderer: Optional[str] =... method usePostLayers (line 72472) | def usePostLayers(self, enable: bool, renderer: Optional[str] = None) ... method showMaterials (line 72486) | def showMaterials(self, enable: bool, renderer: Optional[str] = None) ... method showingProxyPurpose (line 72499) | def showingProxyPurpose(self, renderer: Optional[str] = None) -> bool: method showingGuidePurpose (line 72512) | def showingGuidePurpose(self, renderer: Optional[str] = None) -> bool: method showingRenderPurpose (line 72525) | def showingRenderPurpose(self, renderer: Optional[str] = None) -> bool: method usingViewportOverrides (line 72539) | def usingViewportOverrides(self, renderer: Optional[str] = None) -> bool: method usingViewportLoadMasks (line 72553) | def usingViewportLoadMasks(self, renderer: Optional[str] = None) -> bool: method usingPostLayers (line 72567) | def usingPostLayers(self, renderer: Optional[str] = None) -> bool: method showingMaterials (line 72581) | def showingMaterials(self, renderer: Optional[str] = None) -> bool: method addEventCallback (line 72594) | def addEventCallback(self, callback: Callable) -> None: method removeEventCallback (line 72667) | def removeEventCallback(self, callback: Callable) -> None: method clearEventCallbacks (line 72677) | def clearEventCallbacks(self) -> None: method eventCallbacks (line 72687) | def eventCallbacks(self) -> Tuple[Callable,...]: method qtWindow (line 72697) | def qtWindow(self) -> QtWidgets.QWidget: method bindViewerHandle (line 72710) | def bindViewerHandle(self, handle_type: str, name: str, settings: str|... method bindViewerHandleStatic (line 72761) | def bindViewerHandleStatic(self, handle_type: str, name: str, bindings... method unbindViewerHandle (line 72804) | def unbindViewerHandle(self, handle_instance_name: str) -> None: method fullName (line 72826) | def fullName(self) -> str: class ScriptEvalContext (line 72842) | class ScriptEvalContext: method __init__ (line 72853) | def __init__(self, node_or_parm: OpNode|Parm) -> None: method node (line 72893) | def node(self) -> OpNode | None: method parm (line 72902) | def parm(self) -> Optional[Parm]: method __enter__ (line 72916) | def __enter__(self) -> ScriptEvalContext: ... method __exit__ (line 72917) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class Selection (line 72919) | class Selection: method __init__ (line 72965) | def __init__(self, selection: EnumValue|Geometry|Sequence[Prim]|Sequen... method freeze (line 72976) | def freeze(self) -> Selection: method invert (line 72986) | def invert(self, geo: Geometry) -> None: method convert (line 72997) | def convert(self, geo: Geometry, selection_type: EnumValue, select_onl... method boundary (line 73009) | def boundary(self, geo: Geometry, uv_connectivity: bool = False) -> None: method grow (line 73022) | def grow(self, geo: Geometry, uv_connectivity: bool = False) -> None: method shrink (line 73034) | def shrink(self, geo: Geometry, uv_connectivity: bool = False) -> None: method combine (line 73047) | def combine(self, geo: Geometry, selection: Selection, modifier: EnumV... method clear (line 73074) | def clear(self) -> None: method selectionType (line 73083) | def selectionType(self) -> EnumValue: method numSelected (line 73093) | def numSelected(self) -> int: method prims (line 73102) | def prims(self, geo: Geometry) -> Tuple[Prim, ...]: method points (line 73113) | def points(self, geo: Geometry) -> Tuple[Point, ...]: method vertices (line 73124) | def vertices(self, geo: Geometry) -> Tuple[Vertex, ...]: method edges (line 73135) | def edges(self, geo: Geometry) -> Tuple[Edge, ...]: method selectionString (line 73146) | def selectionString(self, geo: Geometry, force_numeric: bool = False, ... class Selector (line 73182) | class Selector: method __init__ (line 73201) | def __init__(self, *args, **kwargs) -> None: ... method name (line 73203) | def name(self) -> str: method nodeType (line 73213) | def nodeType(self) -> NodeType: method selectorType (line 73222) | def selectorType(self) -> str: method geometryTypes (line 73239) | def geometryTypes(self) -> Tuple[EnumValue, ...]: method groupTypeParmValues (line 73272) | def groupTypeParmValues(self) -> Tuple[int, ...]: method ordered (line 73301) | def ordered(self) -> bool: method prompt (line 73326) | def prompt(self) -> str: method primitiveTypes (line 73336) | def primitiveTypes(self) -> Tuple[EnumValue, ...]: method groupParmName (line 73351) | def groupParmName(self) -> str: method groupTypeParmName (line 73363) | def groupTypeParmName(self) -> str: method inputIndex (line 73379) | def inputIndex(self) -> int: method inputRequired (line 73390) | def inputRequired(self) -> bool: method allowDragging (line 73401) | def allowDragging(self) -> bool: method emptyStringSelectsAll (line 73416) | def emptyStringSelectsAll(self) -> bool: method extraInfo (line 73428) | def extraInfo(self) -> str: method destroy (line 73438) | def destroy(self) -> None: class SeparatorParmTemplate (line 73450) | class SeparatorParmTemplate(ParmTemplate): method __init__ (line 73461) | def __init__(self, name: str, is_hidden: bool = ..., tags: Mapping[str... class Shelf (line 73482) | class Shelf(ShelfElement): method __init__ (line 73495) | def __init__(self, *args, **kwargs) -> None: ... method tools (line 73497) | def tools(self) -> Tuple[Tool, ...]: method setTools (line 73506) | def setTools(self, tools: Sequence[Tool]) -> None: method destroy (line 73516) | def destroy(self) -> None: class ShelfDock (line 73527) | class ShelfDock: method __init__ (line 73545) | def __init__(self, *args, **kwargs) -> None: ... method shelfSets (line 73547) | def shelfSets(self) -> Tuple[ShelfSet, ...]: method iconsize (line 73556) | def iconsize(self) -> Tuple[int, ...]: method show (line 73566) | def show(self, on: bool) -> None: class ShelfSet (line 73577) | class ShelfSet(ShelfElement): method __init__ (line 73590) | def __init__(self, *args, **kwargs) -> None: ... method shelves (line 73592) | def shelves(self) -> Tuple[Shelf, ...]: method setShelves (line 73601) | def setShelves(self, shelves: Sequence[Shelf]) -> None: method destroy (line 73611) | def destroy(self) -> None: class ShellIO (line 73622) | class ShellIO: method __init__ (line 73646) | def __init__(self, *args, **kwargs) -> None: ... method readline (line 73648) | def readline(self, size: int = ...) -> str: method addCloseCallback (line 73657) | def addCloseCallback(self, callback: Callable[[], None]) -> None: method removeCloseCallback (line 73681) | def removeCloseCallback(self, callback: Callable[[], None]) -> None: method closeCallbacks (line 73695) | def closeCallbacks(self) -> Tuple[Callable[[], None],...]: method CloseCallbacks (line 73705) | def CloseCallbacks(self) -> Tuple[Callable[[], None],...]: ... method addExitCallback (line 73706) | def addExitCallback(self, callback: Callable[[], None]) -> None: ... method removeExitCallback (line 73707) | def removeExitCallback(self, callback: Callable[[], None]) -> None: ... method exitCallbacks (line 73708) | def exitCallbacks(self) -> Tuple[Callable[[], None],...]: ... method write (line 73709) | def write(self, data: str) -> None: method getAndClearWrittenData (line 73718) | def getAndClearWrittenData(self) -> str: method addDataForReading (line 73725) | def addDataForReading(self, data: str) -> None: method addEOFForReading (line 73732) | def addEOFForReading(self) -> None: method interruptShellThread (line 73739) | def interruptShellThread(self) -> None: method isWaitingForCommand (line 73746) | def isWaitingForCommand(self) -> bool: method setIsWaitingForCommand (line 73753) | def setIsWaitingForCommand(self, on: bool) -> None: method isatty (line 73760) | def isatty(self) -> bool: method flush (line 73769) | def flush(self) -> None: ... class shelves (line 73771) | class shelves: method __init__ (line 73781) | def __init__(self, *args, **kwargs) -> None: ... method shelfSets (line 73784) | def shelfSets() -> dict[str, ShelfSet]: method shelves (line 73795) | def shelves() -> dict[str, Shelf]: method tools (line 73806) | def tools() -> dict[str, Tool]: method tool (line 73824) | def tool(tool_name: str) -> Optional[Tool]: method isToolDeleted (line 73836) | def isToolDeleted(tool_name: str) -> bool: ... method loadFile (line 73838) | def loadFile(file_path: str) -> None: method reloadShelfFiles (line 73849) | def reloadShelfFiles() -> None: method runningTool (line 73860) | def runningTool() -> Optional[Tool]: method beginChangeBlock (line 73868) | def beginChangeBlock() -> None: method endChangeBlock (line 73912) | def endChangeBlock() -> None: method newShelfSet (line 73922) | def newShelfSet(file_path: Optional[str] = None, name: Optional[str] =... method newShelf (line 73934) | def newShelf(file_path: Optional[str] = None, name: Optional[str] = No... method newTool (line 73946) | def newTool(file_path: str|None = ..., name: str|None = ..., label: st... method defaultFilePath (line 73962) | def defaultFilePath() -> str: method defaultToolName (line 73970) | def defaultToolName(nodetype_category_name: str, nodetype_name: str) -... class ShopNode (line 73972) | class ShopNode(OpNode): method __init__ (line 73985) | def __init__(self, *args, **kwargs) -> None: ... method shaderString (line 73987) | def shaderString(self, render_type: str|None = ...) -> str: method shaderCode (line 74038) | def shaderCode(self, shader_type: EnumValue|None = ...) -> str: ... method shaderName (line 74039) | def shaderName(self, as_otl_path: bool = True, shader_type_name: Optio... method supportedRenderers (line 74053) | def supportedRenderers(self) -> Tuple[str, ...]: method definingVopNetNode (line 74063) | def definingVopNetNode(self) -> Optional[Node]: method shaderType (line 74073) | def shaderType(self) -> EnumValue: method coshaderNodes (line 74085) | def coshaderNodes(self, parm_name: str) -> Tuple[Node, ...]: class ShopNodeType (line 74108) | class ShopNodeType(OpNodeType): method __init__ (line 74118) | def __init__(self, *args, **kwargs) -> None: ... method shaderType (line 74120) | def shaderType(self) -> EnumValue: method renderMask (line 74133) | def renderMask(self) -> str: class SopNode (line 74147) | class SopNode(OpNode): method __init__ (line 74157) | def __init__(self, *args, **kwargs) -> None: ... method geometry (line 74159) | def geometry(self, output_index: int = 0) -> Optional[Geometry]: method geometryNoDep (line 74177) | def geometryNoDep(self, output_index: int = 0) -> Optional[Geometry]: method geometryDep (line 74198) | def geometryDep(self, output_index: int = 0) -> None: method geometryAtFrame (line 74209) | def geometryAtFrame(self, frame: float, output_index: int = 0) -> Opti... method inputGeometry (line 74228) | def inputGeometry(self, index: int) -> Optional[Geometry]: method inputGeometryAtFrame (line 74242) | def inputGeometryAtFrame(self, frame: float, index: int) -> Optional[G... method geometryDelta (line 74256) | def geometryDelta(self) -> Optional[GeometryDelta]: method hasVerb (line 74271) | def hasVerb(self) -> bool: method verb (line 74280) | def verb(self) -> Optional[SopVerb]: method selection (line 74291) | def selection(self, selection_type: EnumValue) -> Optional[Selection]: method setSelection (line 74305) | def setSelection(self, selection: Selection) -> None: method curPoint (line 74321) | def curPoint(self) -> Point: method setCurPoint (line 74378) | def setCurPoint(self, point_or_none: Point) -> None: method curPrim (line 74402) | def curPrim(self) -> Prim: method setCurPrim (line 74431) | def setCurPrim(self, prim_or_none: Prim) -> None: method curVertex (line 74442) | def curVertex(self) -> Vertex: method setCurVertex (line 74467) | def setCurVertex(self, vertex_or_none: Vertex) -> None: method managesAttribDataIds (line 74481) | def managesAttribDataIds(self) -> bool: method setManagesAttribDataIds (line 74493) | def setManagesAttribDataIds(self, on: bool) -> None: method isBypassed (line 74529) | def isBypassed(self) -> bool: method bypass (line 74538) | def bypass(self, on: bool) -> None: method isDisplayFlagSet (line 74548) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 74557) | def setDisplayFlag(self, on: bool) -> None: method isRenderFlagSet (line 74566) | def isRenderFlagSet(self) -> bool: method setRenderFlag (line 74575) | def setRenderFlag(self, on: bool) -> None: method isTemplateFlagSet (line 74584) | def isTemplateFlagSet(self) -> bool: method setTemplateFlag (line 74595) | def setTemplateFlag(self, on: bool) -> None: method isSelectableTemplateFlagSet (line 74604) | def isSelectableTemplateFlagSet(self) -> bool: method setSelectableTemplateFlag (line 74618) | def setSelectableTemplateFlag(self, on: bool) -> None: method isHighlightFlagSet (line 74627) | def isHighlightFlagSet(self) -> bool: method setHighlightFlag (line 74638) | def setHighlightFlag(self, on: bool) -> None: method isSoftLocked (line 74647) | def isSoftLocked(self) -> bool: method setSoftLocked (line 74658) | def setSoftLocked(self, on: bool) -> None: method isHardLocked (line 74668) | def isHardLocked(self) -> bool: method setHardLocked (line 74679) | def setHardLocked(self, on: bool) -> None: method isUnloadFlagSet (line 74691) | def isUnloadFlagSet(self) -> bool: method setUnloadFlag (line 74700) | def setUnloadFlag(self, on: bool) -> None: method copyNodeSelectionToUserSelection (line 74709) | def copyNodeSelectionToUserSelection(self, force_cook: bool = False) -... method displayNode (line 74710) | def displayNode(self) -> Optional[Node]: method renderNode (line 74720) | def renderNode(self) -> Optional[Node]: class SopNodeType (line 74731) | class SopNodeType(OpNodeType): method __init__ (line 74741) | def __init__(self, *args, **kwargs) -> None: ... method selectors (line 74743) | def selectors(self, selector_indices: Sequence[int] = ...) -> Tuple[Se... method addSelector (line 74783) | def addSelector(self, name: str, selector_type: str, prompt: str = ...... class SopVerb (line 74882) | class SopVerb(OpVerb): method __init__ (line 74894) | def __init__(self, *args, **kwargs) -> None: ... method execute (line 74896) | def execute(self, dest: Geometry, inputs: Sequence[Geometry]) -> None: method executeAtTime (line 74911) | def executeAtTime(self, dest: Geometry, inputs: Sequence[Geometry], ti... class StringKeyframe (line 74927) | class StringKeyframe(BaseKeyframe): method __init__ (line 74934) | def __init__(self, expression: str|None = ..., time: float|None = ...,... method evaluatedType (line 74941) | def evaluatedType(self) -> EnumValue: class StringParmTemplate (line 74952) | class StringParmTemplate(ParmTemplate): method __init__ (line 74967) | def __init__(self, name: str, label: str, num_components: int, default... method stringType (line 75075) | def stringType(self) -> EnumValue: method setStringType (line 75088) | def setStringType(self, string_type: EnumValue) -> None: method fileType (line 75100) | def fileType(self) -> EnumValue: method setFileType (line 75114) | def setFileType(self, file_type: EnumValue) -> None: method defaultValue (line 75125) | def defaultValue(self) -> Tuple[str, ...]: method setDefaultValue (line 75137) | def setDefaultValue(self, default_value: Sequence[str]) -> None: method defaultExpression (line 75153) | def defaultExpression(self) -> Tuple[str, ...]: method setDefaultExpression (line 75169) | def setDefaultExpression(self, default_expression: Sequence[str]) -> N... method defaultExpressionLanguage (line 75185) | def defaultExpressionLanguage(self) -> Tuple[EnumValue, ...]: method setDefaultExpressionLanguage (line 75199) | def setDefaultExpressionLanguage(self, default_expression_language: Se... method menuItems (line 75216) | def menuItems(self) -> Tuple[str, ...]: method setMenuItems (line 75230) | def setMenuItems(self, menu_items: Sequence[str]) -> None: method menuLabels (line 75245) | def menuLabels(self) -> Tuple[str, ...]: method setMenuLabels (line 75255) | def setMenuLabels(self, menu_labels: Sequence[str]) -> None: method iconNames (line 75273) | def iconNames(self) -> Tuple[str, ...]: method setIconNames (line 75285) | def setIconNames(self, icon_names: Sequence[str]) -> None: method itemGeneratorScript (line 75294) | def itemGeneratorScript(self) -> str: method setItemGeneratorScript (line 75304) | def setItemGeneratorScript(self, item_generator_script: str) -> None: method itemGeneratorScriptLanguage (line 75315) | def itemGeneratorScriptLanguage(self) -> EnumValue: ... method setItemGeneratorScriptLanguage (line 75316) | def setItemGeneratorScriptLanguage(self, language: EnumValue) -> None: method menuType (line 75328) | def menuType(self) -> EnumValue: method setMenuType (line 75337) | def setMenuType(self, menu_type: EnumValue) -> None: class styles (line 75349) | class styles: method __init__ (line 75363) | def __init__(self, *args, **kwargs) -> None: ... method hasStyle (line 75366) | def hasStyle(name: str) -> bool: method styles (line 75376) | def styles(pattern: Optional[str] = None) -> Tuple[str, ...]: method description (line 75387) | def description(style: str) -> str: method stylesheet (line 75398) | def stylesheet(style: str) -> str: method errors (line 75410) | def errors(style: str) -> str: method addStyle (line 75422) | def addStyle(name: str, description: str, stylesheet: str) -> None: method renameStyle (line 75446) | def renameStyle(old_name: str, new_name: str) -> None: method reorderStyles (line 75460) | def reorderStyles(names: Sequence[str]) -> None: method removeStyle (line 75481) | def removeStyle(name: str) -> None: method removeAll (line 75491) | def removeAll() -> None: class StyleSheet (line 75501) | class StyleSheet: method __init__ (line 75519) | def __init__(self, json_text: str = ...) -> None: method __eq__ (line 75529) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 75530) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 75531) | def __hash__(self) -> int: ... method clone (line 75532) | def clone(self) -> StyleSheet: method cloneWithObject (line 75541) | def cloneWithObject(self, obj: Node) -> StyleSheet: method cloneWithPrim (line 75551) | def cloneWithPrim(self, prim: Prim) -> StyleSheet: method cloneWithShape (line 75561) | def cloneWithShape(self, shape_name: str, agent_prim: Prim) -> StyleSh... method cloneWithAddedStyleSheet (line 75572) | def cloneWithAddedStyleSheet(self, stylesheet: StyleSheet, target: str... method errors (line 75588) | def errors(self) -> str: method asJSON (line 75600) | def asJSON(self) -> str: class SubnetIndirectInput (line 75615) | class SubnetIndirectInput(IndirectInput): method __init__ (line 75640) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 75642) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 75643) | def __ne__(self, other: object) -> bool: ... method inputConnections (line 75644) | def inputConnections(self) -> Tuple[NodeConnection, ...]: method number (line 75655) | def number(self) -> int: class OpSubnetIndirectInput (line 75667) | class OpSubnetIndirectInput(OpIndirectInput, SubnetIndirectInput): method __init__ (line 75678) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 75680) | def __hash__(self) -> int: ... class Surface (line 75682) | class Surface(Prim): method __init__ (line 75699) | def __init__(self, *args, **kwargs) -> None: ... method numRows (line 75701) | def numRows(self) -> int: method numCols (line 75710) | def numCols(self) -> int: method vertex (line 75719) | def vertex(self, u_index: int, v_index: int) -> Vertex: method verticesInRow (line 75761) | def verticesInRow(self, v_index: int) -> Tuple[Vertex, ...]: method verticesInCol (line 75773) | def verticesInCol(self, u_index: int) -> Tuple[Vertex, ...]: ... method isClosedInU (line 75774) | def isClosedInU(self) -> bool: method isClosedInV (line 75787) | def isClosedInV(self) -> bool: method positionAt (line 75798) | def positionAt(self, u: float, v: float) -> Vector3: method normalAt (line 75810) | def normalAt(self, u: float, v: float) -> Vector3: method attribValueAt (line 75826) | def attribValueAt(self, attrib_or_name: Attrib|str, u: float, v: float... method addRow (line 75843) | def addRow(self, after: int = -1) -> None: method addCol (line 75856) | def addCol(self, after: int = -1) -> None: class Take (line 75894) | class Take: method __init__ (line 75906) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 75908) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 75909) | def __ne__(self, other: object) -> bool: ... method isCurrent (line 75910) | def isCurrent(self) -> bool: method name (line 75919) | def name(self) -> str: method setName (line 75928) | def setName(self, name: str) -> None: method parent (line 75937) | def parent(self) -> Optional[Take]: method path (line 75947) | def path(self) -> str: method addChildTake (line 75957) | def addChildTake(self, name: Optional[str] = None) -> Take: method insertTakeAbove (line 75970) | def insertTakeAbove(self, name: Optional[str] = None) -> Take: method addNodeDisplayFlag (line 75983) | def addNodeDisplayFlag(self, node: Node) -> None: method removeNodeDisplayFlag (line 75999) | def removeNodeDisplayFlag(self, node: Node) -> None: ... method addNodeBypassFlag (line 76000) | def addNodeBypassFlag(self, node: Node) -> None: method removeNodeBypassFlag (line 76016) | def removeNodeBypassFlag(self, node: Node) -> None: ... method addNodeRenderFlag (line 76017) | def addNodeRenderFlag(self, node: Node) -> None: method removeNodeRenderFlag (line 76033) | def removeNodeRenderFlag(self, node: Node) -> None: ... method hasParmTuple (line 76034) | def hasParmTuple(self, parm_tuple: ParmTuple) -> bool: method parmTuples (line 76046) | def parmTuples(self) -> Tuple[ParmTuple, ...]: method addParmTuple (line 76056) | def addParmTuple(self, parm_tuple: ParmTuple) -> None: method removeParmTuple (line 76072) | def removeParmTuple(self, parm_tuple: ParmTuple) -> None: method addParmTuplesFromTake (line 76088) | def addParmTuplesFromTake(self, take: Take, overwrite_existing: bool =... method addParmTuplesFromNode (line 76107) | def addParmTuplesFromNode(self, node: Node) -> None: ... method removeParmTuplesFromNode (line 76108) | def removeParmTuplesFromNode(self, node: Node) -> None: method children (line 76121) | def children(self) -> Tuple[Take, ...]: method saveToFile (line 76130) | def saveToFile(self, filename: str, recurse: bool = False) -> None: method loadChildTakeFromFile (line 76149) | def loadChildTakeFromFile(self, filename: str) -> Tuple[Take,...]: method moveUnderTake (line 76175) | def moveUnderTake(self, take: Take) -> None: method destroy (line 76187) | def destroy(self, recurse: bool = False) -> None: class takes (line 76200) | class takes: method __init__ (line 76212) | def __init__(self, *args, **kwargs) -> None: ... method takes (line 76215) | def takes() -> Tuple[Take, ...]: method currentTake (line 76225) | def currentTake() -> Take: method setCurrentTake (line 76235) | def setCurrentTake(take: Take) -> None: method rootTake (line 76247) | def rootTake() -> Take: method findTake (line 76257) | def findTake(take_name: str) -> Optional[Take]: method defaultTakeName (line 76268) | def defaultTakeName() -> str: method setDefaultTakeName (line 76280) | def setDefaultTakeName(default_name: str) -> None: class text (line 76291) | class text: method __init__ (line 76301) | def __init__(self, *args, **kwargs) -> None: ... method expandString (line 76304) | def expandString(str: str, expand_tilde: bool = True) -> str: method expandStringAtFrame (line 76337) | def expandStringAtFrame(str: str, frame: float, expand_tilde: bool = T... method expandHuskFilePath (line 76365) | def expandHuskFilePath(str: str, frame_start: float = 1.0, frame_inc: ... method incrementNumberedString (line 76388) | def incrementNumberedString(str: str) -> str: method encode (line 76410) | def encode(varname: str) -> str: method decode (line 76437) | def decode(varname: str) -> str: method encodeAttrib (line 76456) | def encodeAttrib(attribname: str) -> str: method decodeAttrib (line 76483) | def decodeAttrib(attribname: str) -> str: method encodeParm (line 76503) | def encodeParm(parmname: str) -> str: method decodeParm (line 76530) | def decodeParm(parmname: str) -> str: method alphaNumeric (line 76550) | def alphaNumeric(str: str) -> str: method variableName (line 76571) | def variableName(str: str, safe_chars: Optional[str] = None) -> str: method compareVersionString (line 76591) | def compareVersionString(str1: str, str2: str) -> int: method abspath (line 76613) | def abspath(path: str, anchor_path: Optional[str] = None) -> str: method relpath (line 76628) | def relpath(path: str, anchor_path: Optional[str] = None, allow_relati... method normpath (line 76658) | def normpath(path: str) -> str: method collapseCommonVars (line 76678) | def collapseCommonVars(path: str, vars: Sequence[str] = ...) -> str: method oclExtractBindings (line 76692) | def oclExtractBindings(code: str) -> Tuple[dict[str, Any], ...]: method oclExtractRunOver (line 76703) | def oclExtractRunOver(code: str) -> str: method patternRename (line 76714) | def patternRename(str: str, find: str, replace: str) -> str: method patternMatch (line 76730) | def patternMatch(pattern: str, str: str, ignore_case: bool = False, pa... class TextDrawable (line 76788) | class TextDrawable(AdvancedDrawable): method __init__ (line 76880) | def __init__(self, scene_viewer: SceneViewer, name: str, label: str|No... method size (line 76953) | def size(self, text: str) -> Tuple[float, ...]: class ToggleParmTemplate (line 76968) | class ToggleParmTemplate(ParmTemplate): method __init__ (line 76978) | def __init__(self, name: str, label: str, default_value: bool = ..., d... method defaultValue (line 77036) | def defaultValue(self) -> bool: method setDefaultValue (line 77049) | def setDefaultValue(self, default_value: bool) -> None: method defaultExpression (line 77059) | def defaultExpression(self) -> str: method setDefaultExpression (line 77076) | def setDefaultExpression(self, default_expression: str) -> None: method defaultExpressionLanguage (line 77089) | def defaultExpressionLanguage(self) -> EnumValue: method setDefaultExpressionLanguage (line 77102) | def setDefaultExpressionLanguage(self, default_expression_language: En... class Tool (line 77114) | class Tool(ShelfElement): method __init__ (line 77128) | def __init__(self, *args, **kwargs) -> None: ... method __lt__ (line 77130) | def __lt__(self, other: object) -> bool: ... method __hash__ (line 77131) | def __hash__(self) -> int: ... method script (line 77132) | def script(self) -> str: method setScript (line 77142) | def setScript(self, script: str) -> None: method language (line 77153) | def language(self) -> EnumValue: method setLanguage (line 77166) | def setLanguage(self, language: EnumValue) -> None: method icon (line 77184) | def icon(self) -> str: method setIcon (line 77193) | def setIcon(self, icon: str) -> None: method help (line 77205) | def help(self) -> str: method setHelp (line 77214) | def setHelp(self, help: str) -> None: method helpURL (line 77225) | def helpURL(self) -> str: method setHelpURL (line 77234) | def setHelpURL(self, help_url: str) -> None: method toolMenuCategories (line 77246) | def toolMenuCategories(self, pane_type: EnumValue) -> Tuple[NodeTypeCa... method setToolMenuCategories (line 77255) | def setToolMenuCategories(self, pane_type: EnumValue, categories: Sequ... method toolMenuOpType (line 77268) | def toolMenuOpType(self, pane_type: EnumValue) -> str: method setToolMenuOpType (line 77277) | def setToolMenuOpType(self, pane_type: EnumValue, op_type: str) -> None: method toolMenuLocations (line 77290) | def toolMenuLocations(self) -> Tuple[str, ...]: method setToolLocations (line 77299) | def setToolLocations(self, locations: Sequence[str]) -> None: method keywords (line 77310) | def keywords(self) -> Tuple[str, ...]: method setKeywords (line 77322) | def setKeywords(self, keywords: Sequence[str]) -> None: method setData (line 77343) | def setData(self, script: str = ..., language: EnumValue = ..., icon: ... method destroy (line 77361) | def destroy(self) -> None: class TopNode (line 77372) | class TopNode(OpNode): method __init__ (line 77382) | def __init__(self, *args, **kwargs) -> None: ... method isBypassed (line 77384) | def isBypassed(self) -> bool: method bypass (line 77393) | def bypass(self, on: bool) -> None: method isDisplayFlagSet (line 77403) | def isDisplayFlagSet(self) -> bool: method setDisplayFlag (line 77412) | def setDisplayFlag(self, on: bool) -> None: method isRenderFlagSet (line 77421) | def isRenderFlagSet(self) -> bool: method setRenderFlag (line 77430) | def setRenderFlag(self, on: bool) -> None: method displayNode (line 77439) | def displayNode(self) -> Optional[Node]: method renderNode (line 77449) | def renderNode(self) -> Optional[Node]: method outputNode (line 77459) | def outputNode(self) -> Optional[Node]: method topParent (line 77470) | def topParent(self) -> Optional[Node]: ... method cookWorkItems (line 77471) | def cookWorkItems(self, block: bool = ..., generate_only: bool = ..., ... method cookOutputWorkItems (line 77510) | def cookOutputWorkItems(self, block: bool = False, generate_only: bool... method cookAllOutputWorkItems (line 77523) | def cookAllOutputWorkItems(self, include_display_node: bool, block: bo... method generateStaticWorkItems (line 77524) | def generateStaticWorkItems(self, block: bool = ..., nodes: Sequence[T... method dirtyAllWorkItems (line 77541) | def dirtyAllWorkItems(self, remove_outputs: bool) -> None: method dirtyWorkItems (line 77555) | def dirtyWorkItems(self, remove_outputs: bool) -> None: method generateStaticItems (line 77569) | def generateStaticItems(self, block: bool = False) -> None: method dirtyAllTasks (line 77579) | def dirtyAllTasks(self, remove_outputs: bool) -> None: method dirtyTasks (line 77588) | def dirtyTasks(self, remove_outputs: bool) -> None: method executeGraph (line 77597) | def executeGraph(self, filter_static: bool = False, block: bool = Fals... method graphCommands (line 77608) | def graphCommands(self) -> str: method taskGraphCommands (line 77618) | def taskGraphCommands(self) -> str: method setSelectedWorkItem (line 77628) | def setSelectedWorkItem(self, idx: int) -> bool: method getSelectedWorkItem (line 77639) | def getSelectedWorkItem(self) -> int: method getWorkItemName (line 77649) | def getWorkItemName(self, idx: int) -> str: method getPDGGraphContextName (line 77658) | def getPDGGraphContextName(self) -> str: method getPDGNodeName (line 77671) | def getPDGNodeName(self) -> str: method getPDGNodeId (line 77683) | def getPDGNodeId(self) -> int: method cancelCook (line 77695) | def cancelCook(self) -> None: method pauseCook (line 77704) | def pauseCook(self) -> None: method addPDGFilter (line 77717) | def addPDGFilter(self, idx: int) -> None: method removePDGFilter (line 77727) | def removePDGFilter(self, idx: int) -> None: ... method isPDGFilter (line 77728) | def isPDGFilter(self, idx: int) -> bool: ... method enablePDGFilter (line 77729) | def enablePDGFilter(self, filter_on: bool) -> None: method workItemStates (line 77738) | def workItemStates(self) -> Tuple[int, ...]: method collapsedItems (line 77750) | def collapsedItems(self) -> Tuple[int, ...]: method collapsedItem (line 77759) | def collapsedItem(self, idx: int) -> int: method workItemsInCollapsedItemIds (line 77772) | def workItemsInCollapsedItemIds(self, id: int) -> Tuple[int, ...]: method isProcessor (line 77785) | def isProcessor(self) -> bool: method isPartitioner (line 77794) | def isPartitioner(self) -> bool: method isMapper (line 77803) | def isMapper(self) -> bool: method isScheduler (line 77812) | def isScheduler(self) -> bool: method isServiceCompatible (line 77821) | def isServiceCompatible(self, service_name: str) -> bool: ... method isFilterOn (line 77822) | def isFilterOn(self) -> bool: method getFilterNodes (line 77832) | def getFilterNodes(self) -> Tuple[Node, ...]: method outputDataTypes (line 77841) | def outputDataTypes(self) -> Tuple[str, ...]: method inputDataTypes (line 77850) | def inputDataTypes(self) -> Tuple[str, ...]: method getCookState (line 77859) | def getCookState(self, force: bool) -> EnumValue: ... method getDataLayerInterfaceId (line 77860) | def getDataLayerInterfaceId(self) -> int: ... class Track (line 77862) | class Track: method __init__ (line 77874) | def __init__(self, *args, **kwargs) -> None: ... method chopNode (line 77876) | def chopNode(self) -> Optional[ChopNode]: method clip (line 77886) | def clip(self) -> Clip: method name (line 77895) | def name(self) -> str: method eval (line 77905) | def eval(self) -> float: method evalAtTime (line 77914) | def evalAtTime(self, time: float) -> float: method evalAtFrame (line 77923) | def evalAtFrame(self, frame: float) -> float: method evalAtSample (line 77932) | def evalAtSample(self, sample: float) -> float: method evalAtTimeRange (line 77941) | def evalAtTimeRange(self, start: float, end: float) -> Tuple[float, ...]: method evalAtFrameRange (line 77951) | def evalAtFrameRange(self, start: float, end: float) -> Tuple[float, .... method evalAtSampleRange (line 77961) | def evalAtSampleRange(self, start: float, end: float) -> Tuple[float, ... method numSamples (line 77971) | def numSamples(self) -> int: method allSamples (line 77980) | def allSamples(self) -> Tuple[float, ...]: method evalAtSampleIndex (line 77989) | def evalAtSampleIndex(self, index: int) -> float: method extendLeft (line 77998) | def extendLeft(self) -> EnumValue: method extendRight (line 78007) | def extendRight(self) -> EnumValue: method overrideParm (line 78016) | def overrideParm(self) -> Optional[Parm]: method isOverrideActive (line 78027) | def isOverrideActive(self) -> bool: method color (line 78037) | def color(self) -> Color: class ui (line 78047) | class ui: method __init__ (line 78057) | def __init__(self, *args, **kwargs) -> None: ... method shellIO (line 78060) | def shellIO() -> ShellIO: method curDesktop (line 78072) | def curDesktop() -> Desktop: method desktop (line 78082) | def desktop(name: str) -> Optional[Desktop]: method desktops (line 78093) | def desktops() -> Tuple[Desktop, ...]: method radialMenu (line 78105) | def radialMenu(name: str) -> Optional[RadialMenu]: method radialMenus (line 78116) | def radialMenus() -> Tuple[RadialMenu, ...]: method createRadialMenu (line 78127) | def createRadialMenu(name: str, label: str) -> RadialMenu: method createRadialItem (line 78137) | def createRadialItem(submenu: bool = False, callback: bool = False) ->... method injectRadialItem (line 78154) | def injectRadialItem(location: int, item: RadialItem) -> None: method injectRadialMenu (line 78168) | def injectRadialMenu(name: str) -> None: ... method setDefaultRadialSubmenu (line 78170) | def setDefaultRadialSubmenu(location: int) -> None: method updateMainMenuBar (line 78185) | def updateMainMenuBar() -> None: method panes (line 78199) | def panes() -> Tuple[Pane, ...]: method paneTabs (line 78212) | def paneTabs() -> Tuple[PaneTab, ...]: method currentPaneTabs (line 78225) | def currentPaneTabs() -> Tuple[PaneTab, ...]: method paneTabOfType (line 78238) | def paneTabOfType(type: EnumValue, index: int = 0) -> Optional[PaneTab]: method findPane (line 78261) | def findPane(pane_id: int) -> Optional[Pane]: method findPaneTab (line 78274) | def findPaneTab(name: str) -> Optional[PaneTab]: method floatingPaneTabs (line 78290) | def floatingPaneTabs() -> Tuple[PaneTab, ...]: method floatingPanels (line 78302) | def floatingPanels() -> Tuple[FloatingPanel, ...]: method paneUnderCursor (line 78314) | def paneUnderCursor() -> Optional[Pane]: method paneTabUnderCursor (line 78328) | def paneTabUnderCursor() -> Optional[PaneTab]: method isUserInteracting (line 78343) | def isUserInteracting() -> bool: method setUserInteracting (line 78358) | def setUserInteracting(interacting: bool) -> None: method orientationUpAxis (line 78377) | def orientationUpAxis() -> EnumValue: method handleOrientToNormalAxis (line 78388) | def handleOrientToNormalAxis() -> EnumValue: method displayConfirmation (line 78400) | def displayConfirmation(text: str, severity: EnumValue = ..., help: st... method displayCustomConfirmation (line 78402) | def displayCustomConfirmation(text: str, buttons: Sequence[str] = ...,... method displayMessage (line 78476) | def displayMessage(text: str, buttons: Sequence[str] = ..., severity: ... method readInput (line 78542) | def readInput(text: str, buttons: Sequence[str] = ..., severity_type: ... method readMultiInput (line 78597) | def readMultiInput(text: str, input_labels: Sequence[str], password_in... method selectFromList (line 78683) | def selectFromList(choices: Sequence[str], default_choices: Sequence[i... method selectFromTree (line 78752) | def selectFromTree(choices: Sequence[str], picked: Sequence[int] = ...... method selectParmTag (line 78810) | def selectParmTag(width: int = 0, height: int = 0) -> Tuple[str, ...]: method selectParm (line 78841) | def selectParm(category: NodeTypeCategory = ..., bound_parms_only: boo... method selectParmTuple (line 78879) | def selectParmTuple(category: NodeTypeCategory = ..., bound_parms_only... method selectColor (line 78895) | def selectColor(initial_color: Color|None = ..., options: dict[str, An... method selectRawColor (line 78916) | def selectRawColor(initial_color: Optional[Color] = None) -> Optional[... method setColorEditorOptions (line 78933) | def setColorEditorOptions(options: dict[str, Any]) -> None: method colorEditorOptions (line 78952) | def colorEditorOptions() -> dict[str, Any]: method loadPaletteFile (line 79001) | def loadPaletteFile(file: str) -> Tuple[Color, ...]: method savePaletteFile (line 79014) | def savePaletteFile(file: str, colors: typing.Iterable[Color]) -> None: method updateValueLadder (line 79028) | def updateValueLadder(cursor_x: int, cursor_y: int, alt_key: bool, shi... method closeValueLadder (line 79060) | def closeValueLadder() -> None: method displayFileDependencyDialog (line 79075) | def displayFileDependencyDialog(rop_node: RopNode|None = ..., uploaded... method displayNodeHelp (line 79104) | def displayNodeHelp(node_type: NodeType) -> None: method openRenderDialog (line 79122) | def openRenderDialog(rop: RopNode) -> None: method openRenameSelectedDialog (line 79134) | def openRenameSelectedDialog(network: Node) -> None: method openParameterInterfaceDialog (line 79146) | def openParameterInterfaceDialog(node: Node, open_tab: Optional[EnumVa... method updateMode (line 79171) | def updateMode() -> EnumValue: method setUpdateMode (line 79181) | def setUpdateMode(mode: EnumValue) -> None: method triggerUpdate (line 79191) | def triggerUpdate() -> None: method reloadViewportColorSchemes (line 79203) | def reloadViewportColorSchemes() -> None: method reloadColorScheme (line 79219) | def reloadColorScheme() -> None: method currentColorScheme (line 79235) | def currentColorScheme() -> str: method isAutoKey (line 79245) | def isAutoKey() -> bool: method removeAllSelectionCallbacks (line 79257) | def removeAllSelectionCallbacks() -> None: method postRedrawFence (line 79269) | def postRedrawFence() -> None: method createDialog (line 79281) | def createDialog(ui_file_name: str) -> Dialog: method findDialog (line 79305) | def findDialog(ui_file_name: str) -> Optional[Dialog]: method dialogs (line 79321) | def dialogs() -> Tuple[Dialog, ...]: method writePythonShellHistoryFile (line 79331) | def writePythonShellHistoryFile(filename: Optional[str] = None) -> None: method readPythonShellHistoryFile (line 79349) | def readPythonShellHistoryFile(filename: Optional[str] = None) -> None: method setStatusMessage (line 79368) | def setStatusMessage(message: str, severity: EnumValue = ...) -> None: method statusMessage (line 79385) | def statusMessage() -> Tuple[str, EnumValue]: method openAssetUploadDialog (line 79397) | def openAssetUploadDialog(uploading_node: Node, session_key: str, cont... method openAssetDependenciesDialog (line 79399) | def openAssetDependenciesDialog(uploading_nodes: Sequence[Node], uploa... method hasDragSourceData (line 79401) | def hasDragSourceData(label: str, index: int) -> bool: method getDragSourceData (line 79422) | def getDragSourceData(label: str, index: int = ...) -> Any: ... method resourceValueFromName (line 79424) | def resourceValueFromName(name: str) -> str: method colorFromName (line 79438) | def colorFromName(name: str) -> Color: method globalScaleFactor (line 79461) | def globalScaleFactor() -> float: method scaledSize (line 79480) | def scaledSize(size: int) -> int: method inchesToPixels (line 79504) | def inchesToPixels(inches: float) -> float: method pixelsToInches (line 79521) | def pixelsToInches(pixels: float) -> float: method copyTextToClipboard (line 79538) | def copyTextToClipboard(text: str) -> None: method getTextFromClipboard (line 79548) | def getTextFromClipboard() -> str: method hotkeys (line 79560) | def hotkeys(hotkey_symbol: str) -> Tuple[str, ...]: method hotkeyDescription (line 79580) | def hotkeyDescription(hotkey_symbol: str) -> str: method isKeyMatch (line 79598) | def isKeyMatch(key: str, hotkey_symbol: str) -> bool: method openCaptureWeightSpreadsheet (line 79619) | def openCaptureWeightSpreadsheet(node: Node, pattern: Optional[str] = ... method registerViewerState (line 79633) | def registerViewerState(vs_templ: ViewerStateTemplate) -> None: method registerViewerStateFile (line 79654) | def registerViewerStateFile(state_file: str) -> None: method registerViewerStates (line 79676) | def registerViewerStates() -> None: method unregisterViewerState (line 79689) | def unregisterViewerState(state_typename: str) -> None: method unregisterViewerStateFile (line 79708) | def unregisterViewerStateFile(state_file: str) -> None: method isRegisteredViewerState (line 79727) | def isRegisteredViewerState(state_name: str) -> bool: method reloadViewerState (line 79742) | def reloadViewerState(state_typename: str) -> None: method reloadViewerStates (line 79762) | def reloadViewerStates(state_names: Sequence[str]|None = ...) -> None:... method viewerStateInfo (line 79764) | def viewerStateInfo(state_names: Sequence[str] = ...) -> str: method viewerStateInfoFromFile (line 79884) | def viewerStateInfoFromFile(state_file: str) -> Tuple[str, str]: method viewerHandleInfo (line 80026) | def viewerHandleInfo(handle_names: Sequence[str] = ...) -> str: method printResourceMessage (line 80359) | def printResourceMessage(resource_type: EnumValue, message: str, messa... method fireResourceCustomEvent (line 80387) | def fireResourceCustomEvent(resource_type: EnumValue, user_data: Mappi... method showInFileBrowser (line 80446) | def showInFileBrowser(file_path: str) -> None: method showFloatingParameterEditor (line 80477) | def showFloatingParameterEditor(node: Node, reuse: bool = True) -> Par... method openParameterExpressionEditor (line 80487) | def openParameterExpressionEditor(parm: Parm) -> None: method openPreferences (line 80502) | def openPreferences(page: str, label: str) -> None: method hideAllMinimizedStowbars (line 80655) | def hideAllMinimizedStowbars() -> bool: method setHideAllMinimizedStowbars (line 80666) | def setHideAllMinimizedStowbars(hide: bool) -> None: method registerViewerHandle (line 80680) | def registerViewerHandle(tmpl: ViewerHandleTemplate) -> None: method registerViewerHandles (line 80704) | def registerViewerHandles() -> None: method registerViewerHandleFile (line 80717) | def registerViewerHandleFile(handle_file: str) -> None: method unregisterViewerHandle (line 80740) | def unregisterViewerHandle(handle_name: str) -> None: method unregisterViewerHandleFile (line 80759) | def unregisterViewerHandleFile(handle_file: str) -> None: method isRegisteredViewerHandle (line 80778) | def isRegisteredViewerHandle(handle_name: str) -> bool: method reloadViewerHandle (line 80793) | def reloadViewerHandle(handle_name: str) -> None: method loadPackage (line 80824) | def loadPackage(package_filepath: str) -> None: method loadPackageArchive (line 80856) | def loadPackageArchive(file_path: str, extract_path: str|None = ...) -... method unloadPackage (line 80881) | def unloadPackage(package_filepath: str, force_unload: bool = False) -... method reloadPackage (line 80896) | def reloadPackage(package_filepath: str) -> None: method activatePackage (line 80911) | def activatePackage(package_filepath: str) -> None: method deactivatePackage (line 80928) | def deactivatePackage(package_filepath: str) -> None: method packageInfo (line 80944) | def packageInfo(file_paths: Sequence[str]) -> str: method sharedAssetGalleryDataSource (line 80984) | def sharedAssetGalleryDataSource(gallery_name: str) -> AssetGalleryDat... method setSharedAssetGalleryDataSource (line 80998) | def setSharedAssetGalleryDataSource(data_source: AssetGalleryDataSourc... method reloadSharedAssetGalleryDataSource (line 81011) | def reloadSharedAssetGalleryDataSource(gallery_name: str) -> None: method selectMultipleNodes (line 81024) | def selectMultipleNodes(relative_to_node: Node|None = ..., initial_nod... method openBookmarkEditor (line 81038) | def openBookmarkEditor(bookmark: Optional[Bookmark] = None) -> None: method openColorEditor (line 81051) | def openColorEditor(color_changed_callback: Callable[[Color, float], N... method openRawColorEditor (line 81095) | def openRawColorEditor(color_changed_callback: Any, include_alpha: boo... method openValueLadder (line 81132) | def openValueLadder(initial_value: float, value_changed_callback: Call... method addEventLoopCallback (line 81231) | def addEventLoopCallback(callback: Callable[[], None]) -> None: method removeEventLoopCallback (line 81259) | def removeEventLoopCallback(callback: Callable[[], None]) -> None: method postEventCallback (line 81274) | def postEventCallback(callback: Callable[[], None]) -> None: method removePostedEventCallback (line 81291) | def removePostedEventCallback(callback: Callable[[], None]) -> None: method eventLoopCallbacks (line 81303) | def eventLoopCallbacks() -> Tuple[Callable[[], None],...]: method waitUntil (line 81314) | def waitUntil(callback: Callable[[], bool]) -> None: method addTriggerUpdateCallback (line 81369) | def addTriggerUpdateCallback(callback: Callable) -> None: method removeTriggerUpdateCallback (line 81380) | def removeTriggerUpdateCallback(callback: Callable) -> None: ... method addSelectionCallback (line 81382) | def addSelectionCallback(callback: Callable[[Sequence[NetworkMovableIt... method removeSelectionCallback (line 81404) | def removeSelectionCallback(callback: Callable[[Sequence[NetworkMovabl... method selectionCallbacks (line 81416) | def selectionCallbacks() -> Tuple[Callable[[Sequence[NetworkMovableIte... method addResourceEventCallback (line 81427) | def addResourceEventCallback(callback: Callable[[EnumValue, Any, str],... method removeResourceEventCallback (line 81454) | def removeResourceEventCallback(callback: Callable[[EnumValue, Any, st... method openFileEditor (line 81465) | def openFileEditor(title: str, file_path: str, action_callback: Callab... method openViewerStateCodeGenDialog (line 81544) | def openViewerStateCodeGenDialog(category: NodeTypeCategory, action_ca... method openViewerHandleCodeGenDialog (line 81625) | def openViewerHandleCodeGenDialog(category: NodeTypeCategory, action_c... method selectFile (line 81694) | def selectFile(start_directory: str | None = None, title: str | None =... method selectNode (line 81696) | def selectNode(relative_to_node: Node | None = None, initial_node: Nod... method openTypePropertiesDialog (line 81698) | def openTypePropertiesDialog(node_or_node_type: OpNode | OpNodeType, p... class UIEvent (line 81700) | class UIEvent: method __init__ (line 81718) | def __init__(self, val: int, val2: int) -> None: method device (line 81736) | def device(self) -> Optional[UIEventDevice]: method hasQueuedEvents (line 81751) | def hasQueuedEvents(self) -> bool: method queuedEvents (line 81760) | def queuedEvents(self) -> Tuple[UIEventDevice, ...]: method value (line 81770) | def value(self) -> Any: method reason (line 81780) | def reason(self) -> EnumValue: method valueType (line 81790) | def valueType(self) -> EnumValue: ... class UIEventDevice (line 81792) | class UIEventDevice: method __init__ (line 81807) | def __init__(self, val: int, val2: int, val3: int) -> None: method isAltKey (line 81822) | def isAltKey(self) -> bool: method isAutoRepeat (line 81831) | def isAutoRepeat(self) -> bool: method isCapsLock (line 81840) | def isCapsLock(self) -> bool: method isCtrlKey (line 81849) | def isCtrlKey(self) -> bool: method isKeyPad (line 81858) | def isKeyPad(self) -> bool: method isShiftKey (line 81867) | def isShiftKey(self) -> bool: method isArrowDown (line 81876) | def isArrowDown(self) -> bool: method isArrowLeft (line 81885) | def isArrowLeft(self) -> bool: method isArrowRight (line 81894) | def isArrowRight(self) -> bool: method isArrowUp (line 81903) | def isArrowUp(self) -> bool: method isKeyPressed (line 81912) | def isKeyPressed(self) -> bool: method isFunctionKey (line 81921) | def isFunctionKey(self) -> bool: method keyValue (line 81930) | def keyValue(self) -> int: method keyString (line 81942) | def keyString(self) -> str: method modifierString (line 81991) | def modifierString(self) -> str: method isKeyUp (line 82018) | def isKeyUp(self) -> bool: method isKeyDown (line 82029) | def isKeyDown(self) -> bool: method isLeftButton (line 82040) | def isLeftButton(self) -> bool: method isMiddleButton (line 82049) | def isMiddleButton(self) -> bool: method isRightButton (line 82058) | def isRightButton(self) -> bool: method isLeftButtonReleased (line 82067) | def isLeftButtonReleased(self) -> bool: method isMiddleButtonReleased (line 82076) | def isMiddleButtonReleased(self) -> bool: method isRightButtonReleased (line 82085) | def isRightButtonReleased(self) -> bool: method mouseWheel (line 82099) | def mouseWheel(self) -> float: method mouseX (line 82121) | def mouseX(self) -> float: method mouseY (line 82132) | def mouseY(self) -> float: method isTablet (line 82143) | def isTablet(self) -> bool: method tabletAngle (line 82154) | def tabletAngle(self) -> float: method tabletPressure (line 82163) | def tabletPressure(self) -> float: method tabletRoll (line 82172) | def tabletRoll(self) -> float: method tabletTilt (line 82181) | def tabletTilt(self) -> float: method time (line 82190) | def time(self) -> float: class undos (line 82200) | class undos: method __init__ (line 82207) | def __init__(self, *args, **kwargs) -> None: ... method areEnabled (line 82210) | def areEnabled() -> bool: method disabler (line 82220) | def disabler() -> UndosDisabler: method group (line 82238) | def group(label: str, editor: Optional[NetworkEditor] = None) -> Undos... method removeUndos (line 82267) | def removeUndos(tag: str) -> None: method clear (line 82280) | def clear() -> None: method memoryUsage (line 82290) | def memoryUsage() -> int: method memoryUsageLimit (line 82300) | def memoryUsageLimit() -> int: method performUndo (line 82310) | def performUndo() -> bool: method performRedo (line 82320) | def performRedo() -> bool: method undoLabels (line 82330) | def undoLabels() -> Tuple[str, ...]: method redoLabels (line 82342) | def redoLabels() -> Tuple[str, ...]: method add (line 82354) | def add(undo: Any, label: str, tag: Optional[str] = None) -> None: class UndosDisabler (line 82401) | class UndosDisabler: method __init__ (line 82417) | def __init__(self, *args, **kwargs) -> None: ... method __enter__ (line 82419) | def __enter__(self) -> UndosDisabler: ... method __exit__ (line 82420) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class UndosGroup (line 82422) | class UndosGroup: method __init__ (line 82436) | def __init__(self, *args, **kwargs) -> None: ... method label (line 82438) | def label(self) -> str: method __enter__ (line 82447) | def __enter__(self) -> UndosGroup: ... method __exit__ (line 82448) | def __exit__(self, type: type[BaseException], value: BaseException, tr... class VDB (line 82450) | class VDB(Prim): method __init__ (line 82461) | def __init__(self, *args, **kwargs) -> None: ... method sample (line 82463) | def sample(self, position: Sequence[float]) -> float: method samplev (line 82477) | def samplev(self, position: Sequence[float]) -> Vector3: method gradient (line 82491) | def gradient(self, position: Sequence[float]) -> Vector3: method voxel (line 82504) | def voxel(self, index: Sequence[int]) -> float: method resolution (line 82514) | def resolution(self) -> Tuple[int, ...]: method indexToPos (line 82525) | def indexToPos(self, index: Sequence[int]) -> Vector3: method posToIndex (line 82536) | def posToIndex(self, position: Sequence[float]) -> Tuple[int, ...]: method isSDF (line 82547) | def isSDF(self) -> bool: method isHeightField (line 82563) | def isHeightField(self) -> bool: method volumeMax (line 82574) | def volumeMax(self) -> float: method volumeMin (line 82583) | def volumeMin(self) -> float: method volumeAverage (line 82592) | def volumeAverage(self) -> float: method transform (line 82601) | def transform(self) -> Matrix3: method taper (line 82625) | def taper(self) -> float: method vertex (line 82635) | def vertex(self, index: int) -> Vertex: method isEmpty (line 82649) | def isEmpty(self) -> bool: method activeVoxelCount (line 82658) | def activeVoxelCount(self) -> int: method activeVoxelBoundingBox (line 82667) | def activeVoxelBoundingBox(self) -> BoundingBox: method voxelSize (line 82677) | def voxelSize(self) -> Vector3: method dataType (line 82688) | def dataType(self) -> EnumValue: method vdbType (line 82697) | def vdbType(self) -> EnumValue: method visualization (line 82707) | def visualization(self) -> EnumValue: method voxelRangeAsBool (line 82717) | def voxelRangeAsBool(self, range: BoundingBox) -> Tuple[bool, ...]: ... method voxelRangeAsFloat (line 82718) | def voxelRangeAsFloat(self, range: BoundingBox) -> Tuple[float, ...]: ... method voxelRangeAsInt (line 82719) | def voxelRangeAsInt(self, range: BoundingBox) -> Tuple[int, ...]: ... method voxelRangeAsVector3 (line 82720) | def voxelRangeAsVector3(self, range: BoundingBox) -> Tuple[Vector3, ..... method voxelRange (line 82721) | def voxelRange(self, range: BoundingBox) -> Tuple[bool, ...] | Tuple[i... class Vector2 (line 82735) | class Vector2: method __init__ (line 82753) | def __init__(self, x: Sequence[float]|'Vector2'|float = ..., y: float ... method __eq__ (line 82768) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 82769) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 82770) | def isAlmostEqual(self, vector2: Vector2, tolerance: float = 1e-05) ->... method almostEqual (line 82782) | def almostEqual(self, vector2: Vector2, tolerance: float = 1e-05) -> b... method __hash__ (line 82791) | def __hash__(self) -> int: ... method __getitem__ (line 82792) | def __getitem__(self, index: int) -> float: method __setitem__ (line 82807) | def __setitem__(self, index: int, value: float) -> None: method __len__ (line 82820) | def __len__(self) -> int: method setTo (line 82829) | def setTo(self, sequence: Sequence[float]) -> None: method __add__ (line 82841) | def __add__(self, vector2: Vector2) -> Vector2: method __sub__ (line 82855) | def __sub__(self, vector2: Vector2) -> Vector2: method __neg__ (line 82870) | def __neg__(self) -> Vector2: method __rmul__ (line 82883) | def __rmul__(self, scalar: float) -> Vector2: method __mul__ (line 82896) | def __mul__(self, scalar_or_matrix2: float|Matrix2) -> Vector2: method __div__ (line 82911) | def __div__(self, scalar: float) -> Vector2: method __truediv__ (line 82924) | def __truediv__(self, scalar: float) -> Vector2: ... method normalized (line 82925) | def normalized(self) -> Vector2: method length (line 82941) | def length(self) -> float: method lengthSquared (line 82951) | def lengthSquared(self) -> float: method distanceTo (line 82961) | def distanceTo(self, vector2: Vector2) -> float: method dot (line 82972) | def dot(self, vector2: Vector2) -> float: method x (line 82984) | def x(self) -> float: method y (line 82993) | def y(self) -> float: method __contains__ (line 83004) | def __contains__(self, other: float) -> bool: ... method __iter__ (line 83005) | def __iter__(self) -> Iterator[float]: ... method __reversed__ (line 83006) | def __reversed__(self) -> Iterator[float]: ... class Vector3 (line 83008) | class Vector3: method __init__ (line 83024) | def __init__(self, x: Sequence[float]|'Vector3'|float = ..., y: float ... method __eq__ (line 83042) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 83043) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 83044) | def isAlmostEqual(self, vector3: Vector3, tolerance: float = 1e-05) ->... method almostEqual (line 83056) | def almostEqual(self, vector3: Vector3, tolerance: float = 1e-05) -> b... method __hash__ (line 83065) | def __hash__(self) -> int: ... method __getitem__ (line 83066) | def __getitem__(self, index: int) -> float: method __setitem__ (line 83081) | def __setitem__(self, index: int, value: float) -> None: method __len__ (line 83094) | def __len__(self) -> int: method setTo (line 83103) | def setTo(self, sequence: Sequence[float]) -> None: method __add__ (line 83115) | def __add__(self, vector3: Vector3) -> Vector3: method __sub__ (line 83129) | def __sub__(self, vector3: Vector3) -> Vector3: method __neg__ (line 83144) | def __neg__(self) -> Vector3: method __rmul__ (line 83158) | def __rmul__(self, scalar: float) -> Vector3: method __mul__ (line 83174) | def __mul__(self, scalar_or_matrix3_or_matrix4: float|Matrix3|Matrix4)... method __div__ (line 83230) | def __div__(self, scalar: float) -> Vector3: method __truediv__ (line 83243) | def __truediv__(self, scalar: float) -> Vector3: ... method normalized (line 83244) | def normalized(self) -> Vector3: method multiplyAsDir (line 83260) | def multiplyAsDir(self, matrix4: Matrix4) -> Vector3: method length (line 83271) | def length(self) -> float: method lengthSquared (line 83282) | def lengthSquared(self) -> float: method matrixToRotateTo (line 83293) | def matrixToRotateTo(self, vector3: Vector3) -> Matrix4: method smoothRotation (line 83304) | def smoothRotation(self, reference: Vector3, rotate_order: Literal['xy... method distanceTo (line 83325) | def distanceTo(self, vector3: Vector3) -> float: method angleTo (line 83336) | def angleTo(self, vector3: Vector3) -> float: method dot (line 83347) | def dot(self, vector3: Vector3) -> float: method cross (line 83362) | def cross(self, vector3: Vector3) -> Vector3: method ocio_transform (line 83377) | def ocio_transform(self, src_space: str, dest_space: str) -> Vector3: method x (line 83387) | def x(self) -> float: method y (line 83396) | def y(self) -> float: method z (line 83405) | def z(self) -> float: method distanceToSegment (line 83414) | def distanceToSegment(self, point1: Vector3, point2: Vector3) -> float: method distance2ToSegment (line 83431) | def distance2ToSegment(self, point1: Vector3, point2: Vector3) -> floa... method pointOnSegment (line 83432) | def pointOnSegment(self, point1: Vector3, point2: Vector3) -> Vector3:... method __contains__ (line 83435) | def __contains__(self, other: float) -> bool: ... method __iter__ (line 83436) | def __iter__(self) -> Iterator[float]: ... method __reversed__ (line 83437) | def __reversed__(self) -> Iterator[float]: ... class Vector4 (line 83439) | class Vector4: method __init__ (line 83465) | def __init__(self, x: Sequence[float]|'Vector4'|float = ..., y: float ... method __eq__ (line 83483) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 83484) | def __ne__(self, other: object) -> bool: ... method isAlmostEqual (line 83485) | def isAlmostEqual(self, vector4: Vector4, tolerance: float = 1e-05) ->... method almostEqual (line 83497) | def almostEqual(self, vector4: Vector4, tolerance: float = 1e-05) -> b... method __hash__ (line 83506) | def __hash__(self) -> int: ... method __getitem__ (line 83507) | def __getitem__(self, index: int) -> float: method __setitem__ (line 83519) | def __setitem__(self, index: int, value: float) -> None: method __len__ (line 83528) | def __len__(self) -> int: method setTo (line 83537) | def setTo(self, sequence: Sequence[float]) -> None: method __add__ (line 83549) | def __add__(self, vector4: Vector4) -> Vector4: method __sub__ (line 83564) | def __sub__(self, vector4: Vector4) -> Vector4: method __rmul__ (line 83579) | def __rmul__(self, scalar: float) -> Vector4: method __mul__ (line 83595) | def __mul__(self, scalar_or_matrix4: float|Matrix4) -> Vector4: method __div__ (line 83608) | def __div__(self, scalar: float) -> Vector4: method __truediv__ (line 83621) | def __truediv__(self, scalar: float) -> Vector4: ... method normalized (line 83622) | def normalized(self) -> Vector4: method length (line 83640) | def length(self) -> float: method lengthSquared (line 83654) | def lengthSquared(self) -> float: method dot (line 83664) | def dot(self, vector4: Vector4) -> float: method ocio_transform (line 83675) | def ocio_transform(self, src_space: str, dest_space: str) -> Vector4: method x (line 83685) | def x(self) -> float: method y (line 83694) | def y(self) -> float: method z (line 83703) | def z(self) -> float: method w (line 83712) | def w(self) -> float: method __contains__ (line 83723) | def __contains__(self, other: float) -> bool: ... method __iter__ (line 83724) | def __iter__(self) -> Iterator[float]: ... method __reversed__ (line 83725) | def __reversed__(self) -> Iterator[float]: ... class Vertex (line 83727) | class Vertex: method __init__ (line 83751) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 83753) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 83754) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 83755) | def __hash__(self) -> int: ... method geometry (line 83756) | def geometry(self) -> Geometry: method prim (line 83765) | def prim(self) -> Prim: method point (line 83778) | def point(self) -> Point: method number (line 83788) | def number(self) -> int: method linearNumber (line 83800) | def linearNumber(self) -> int: method attribType (line 83816) | def attribType(self) -> EnumValue: method floatAttribValue (line 83837) | def floatAttribValue(self, name_or_attrib: str|Attrib) -> float: method floatListAttribValue (line 83855) | def floatListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[fl... method intAttribValue (line 83871) | def intAttribValue(self, name_or_attrib: str|Attrib) -> int: method intListAttribValue (line 83882) | def intListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[int,... method stringAttribValue (line 83894) | def stringAttribValue(self, name_or_attrib: str|Attrib) -> str: method stringListAttribValue (line 83905) | def stringListAttribValue(self, name_or_attrib: str|Attrib) -> Tuple[s... method dictAttribValue (line 83921) | def dictAttribValue(self, name_or_attrib: str|Attrib) -> AttribDictRet... method dictListAttribValue (line 83932) | def dictListAttribValue(self, name_or_attrib: str|Attrib) -> Sequence[... method setAttribValue (line 83947) | def setAttribValue(self, name_or_attrib: str|Attrib, attrib_value: Att... method attribValue (line 83972) | def attribValue(self, attrib: Attrib|str) -> AttribReturnType|AttribDi... class VertexGroup (line 83990) | class VertexGroup: method __init__ (line 84015) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 84017) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 84018) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 84019) | def __hash__(self) -> int: ... method geometry (line 84020) | def geometry(self) -> Geometry: method name (line 84029) | def name(self) -> str: method iterVertices (line 84038) | def iterVertices(self) -> _VertexTupleGenerator: method vertices (line 84052) | def vertices(self) -> Tuple[Vertex, ...]: method contains (line 84063) | def contains(self, vertex: Vertex) -> bool: method isOrdered (line 84075) | def isOrdered(self) -> bool: method add (line 84084) | def add(self, vertex_or_list_or_vertex_group: Vertex|Sequence[Vertex]|... method remove (line 84106) | def remove(self, vertex_or_list_or_vertex_group: Vertex|Sequence[Verte... method clear (line 84128) | def clear(self) -> None: method destroy (line 84143) | def destroy(self) -> None: method vertexCount (line 84156) | def vertexCount(self) -> int: method optionType (line 84165) | def optionType(self, option_name: str) -> EnumValue: method setOption (line 84176) | def setOption(self, name: str, value: OptionMultiArgType, type_hint: E... method removeOption (line 84200) | def removeOption(self, name: str) -> None: method dataId (line 84213) | def dataId(self) -> AttribDataId: method incrementDataId (line 84222) | def incrementDataId(self) -> None: method options (line 84232) | def options(self) -> dict[str, OptionMultiReturnType]: method option (line 84247) | def option(self, option_name: str) -> OptionMultiReturnType: ... class VexContext (line 84249) | class VexContext: method __init__ (line 84269) | def __init__(self, *args, **kwargs) -> None: ... method name (line 84271) | def name(self) -> str: method nodeTypeCategory (line 84281) | def nodeTypeCategory(self) -> NodeTypeCategory: method shaderType (line 84300) | def shaderType(self) -> EnumValue: method pathsToLoadedVexFunctions (line 84310) | def pathsToLoadedVexFunctions(self) -> dict[str, str]: class ViewerDragger (line 84318) | class ViewerDragger: method __init__ (line 84355) | def __init__(self, *args, **kwargs) -> None: ... method name (line 84357) | def name(self) -> str: method valid (line 84366) | def valid(self) -> bool: method startDrag (line 84377) | def startDrag(self, event: ViewerEvent, start_pos: Vector3) -> None: method startDragAcrossFloor (line 84402) | def startDragAcrossFloor(self, event: ViewerEvent, start_pos: Vector3)... method startDragAlongLine (line 84422) | def startDragAlongLine(self, event: ViewerEvent, line_start: Vector3, ... method startDragAlongPlane (line 84447) | def startDragAlongPlane(self, event: ViewerEvent, plane_point: Vector3... method startDragRotate (line 84471) | def startDragRotate(self, event: ViewerEvent, center_pos: Vector3, rad... method drag (line 84500) | def drag(self, event: ViewerEvent) -> dict[str, Any]: method endDrag (line 84551) | def endDrag(self) -> None: method position (line 84561) | def position(self) -> Vector3: method startPosition (line 84572) | def startPosition(self) -> Vector3: method startDirection (line 84583) | def startDirection(self) -> Vector3: method startRotatePosition (line 84597) | def startRotatePosition(self) -> Vector3: method viewport (line 84607) | def viewport(self) -> GeometryViewport: method enableModifierKeys (line 84616) | def enableModifierKeys(self, allow: bool) -> None: method setSnapToCookSelection (line 84629) | def setSnapToCookSelection(self, on: bool) -> None: class ViewerEvent (line 84641) | class ViewerEvent(UIEvent): method __init__ (line 84665) | def __init__(self, sceneViewer: SceneViewer, val: int, val2: int) -> N... method ray (line 84689) | def ray(self) -> Tuple[Vector3, Vector3]: method snappingRay (line 84708) | def snappingRay(self) -> dict[str, Any]: method screenToRay (line 84832) | def screenToRay(self, scrx: float, scry: float) -> Tuple[Vector3, Vect... method curViewport (line 84851) | def curViewport(self) -> Optional[GeometryViewport]: method mousePos (line 84860) | def mousePos(self, relative_to_viewport: bool = False) -> Vector2: class ViewerStateContext (line 84877) | class ViewerStateContext(GadgetContext): method __init__ (line 84896) | def __init__(self, val: int) -> None: class ViewerHandleDragger (line 84916) | class ViewerHandleDragger(ViewerDragger): method __init__ (line 84997) | def __init__(self, name: str) -> None: class ViewerHandleContext (line 85012) | class ViewerHandleContext(GadgetContext): method __init__ (line 85039) | def __init__(self, val: int) -> None: method isParameterEnabled (line 85066) | def isParameterEnabled(self, parm_name: str) -> bool: method scaleFactor (line 85079) | def scaleFactor(self, ref_position: Sequence[float]|Vector3 = ...) -> ... method scaleValue (line 85097) | def scaleValue(self) -> float: method handleScaleValue (line 85109) | def handleScaleValue(self, *args) -> float: method objectWorldTransform (line 85201) | def objectWorldTransform(self) -> Matrix4: method objectLocalTransform (line 85210) | def objectLocalTransform(self) -> Matrix4: method setDrawOrder (line 85219) | def setDrawOrder(self, drawable_names: Sequence[str]) -> None: method draw (line 85243) | def draw(self, handle: Handle) -> None: class ViewerHandleTemplate (line 85265) | class ViewerHandleTemplate: method __init__ (line 85288) | def __init__(self, name: str, label: str, categories: Sequence[EnumVal... method typeName (line 85349) | def typeName(self) -> str: method categories (line 85358) | def categories(self) -> Tuple[NodeTypeCategory, ...]: method bindMenu (line 85367) | def bindMenu(self, menu: ViewerStateMenu) -> None: method bindIcon (line 85381) | def bindIcon(self, name: str) -> None: method bindGadget (line 85403) | def bindGadget(self, drawable_type: EnumValue, gadget_name: str, gadge... method bindParameter (line 85452) | def bindParameter(self, param_type: EnumValue, name: str, label: str|N... method exportParameters (line 85532) | def exportParameters(self, params: Sequence[str]) -> None: method bindSetting (line 85548) | def bindSetting(self, param_type: EnumValue, name: str, label: str|Non... method bindHotkeyDefinitions (line 85671) | def bindHotkeyDefinitions(self, definitions: PluginHotkeyDefinitions) ... method bindFactory (line 85686) | def bindFactory(self, callback: Callable[[SceneViewer, str], Handle]) ... class ViewerState (line 85697) | class ViewerState: method __init__ (line 85724) | def __init__(self, *args, **kwargs) -> None: ... method name (line 85726) | def name(self) -> str: method description (line 85737) | def description(self) -> str: method icon (line 85747) | def icon(self) -> str: method categories (line 85757) | def categories(self) -> Tuple[NodeTypeCategory, ...]: method nodeType (line 85767) | def nodeType(self) -> NodeType: method isHidden (line 85779) | def isHidden(self) -> bool: ... method hotkey (line 85780) | def hotkey(self) -> str: method parmTemplates (line 85789) | def parmTemplates(self) -> ParmTemplateGroup: class ViewerStateDragger (line 85799) | class ViewerStateDragger(ViewerDragger): method __init__ (line 85813) | def __init__(self, name: str, xform: Matrix4 = ..., inv_xform: Matrix4... method setTransform (line 85837) | def setTransform(self, xform: Matrix4) -> None: method setInverseTransform (line 85850) | def setInverseTransform(self, inv_xform: Matrix4) -> None: method transform (line 85863) | def transform(self) -> Matrix4: method inverseTransform (line 85872) | def inverseTransform(self) -> Matrix4: class ViewerStateMenu (line 85882) | class ViewerStateMenu: method __init__ (line 86002) | def __init__(self, handle: str, label: str) -> None: method addToggleItem (line 86024) | def addToggleItem(self, id, default: bool, hotkey: str = ...) -> None: method addActionItem (line 86051) | def addActionItem(self, id, hotkey: str = ...) -> None: method addSeparator (line 86075) | def addSeparator(self) -> None: method addRadioStrip (line 86089) | def addRadioStrip(self, handle: str, label: str, default_value: str) -... method addRadioStripItem (line 86117) | def addRadioStripItem(self, strip_id: str, id, hotkey: str = ...) -> N... method addMenu (line 86145) | def addMenu(self, sub_menu: ViewerStateMenu) -> None: class ViewerStateTemplate (line 86162) | class ViewerStateTemplate: method __init__ (line 86208) | def __init__(self, state_name: str, state_label: str, node_type_catego... method typeName (line 86300) | def typeName(self) -> str: method categoryName (line 86309) | def categoryName(self) -> str: method contexts (line 86319) | def contexts(self) -> Tuple[NodeTypeCategory, ...]: method bindParameter (line 86328) | def bindParameter(self, param_type: EnumValue, name: str|None = ..., l... method bindHandle (line 86464) | def bindHandle(self, handle_type: str, name: str, settings: str|None =... method bindHandleStatic (line 86508) | def bindHandleStatic(self, handle_type: str, name: str, bindings: Sequ... method bindGadget (line 86509) | def bindGadget(self, drawable_type: EnumValue, gadget_name: str, gadge... method bindGeometrySelector (line 86629) | def bindGeometrySelector(self, prompt: str, allow_drag: bool = ..., qu... method bindObjectSelector (line 86783) | def bindObjectSelector(self, prompt: str, quick_select: bool = ..., au... method bindSceneGraphSelector (line 86863) | def bindSceneGraphSelector(self, prompt: str, allow_drag: bool = ..., ... method bindDynamicsSelector (line 86958) | def bindDynamicsSelector(self, prompt: str, allow_objects: bool = ...,... method bindDynamicsPointSelector (line 87042) | def bindDynamicsPointSelector(self, prompt: str, allow_objects: bool =... method bindDynamicsPolygonSelector (line 87138) | def bindDynamicsPolygonSelector(self, prompt: str, quick_select: bool ... method bindDrawableSelector (line 87220) | def bindDrawableSelector(self, prompt: str, auto_start: bool = ..., to... method bindSelector (line 87276) | def bindSelector(self, name, selector_type, prompt: str, primitive_typ... method bindMenu (line 87359) | def bindMenu(self, menu: ViewerStateMenu) -> None: ... method bindIcon (line 87360) | def bindIcon(self, name: str) -> None: method bindSupportsSelectionChange (line 87389) | def bindSupportsSelectionChange(self, supports_change: bool) -> None: method bindSupportsMoveTool (line 87403) | def bindSupportsMoveTool(self, supports_movetool: bool) -> None: method bindPlaybackChangeEvent (line 87412) | def bindPlaybackChangeEvent(self) -> None: method bindNodeChangeEvent (line 87427) | def bindNodeChangeEvent(self, event_types: Sequence[EnumValue]) -> None: method bindNodeParmChangeEvent (line 87449) | def bindNodeParmChangeEvent(self, parm_names: Sequence[str]) -> None: method bindHotkeyDefinitions (line 87472) | def bindHotkeyDefinitions(self, definitions: PluginHotkeyDefinitions) ... method serializeParameters (line 87487) | def serializeParameters(self, value: bool) -> None: method bindFactory (line 87515) | def bindFactory(self, callback: Callable[[str, SceneViewer], Any]) -> ... class Viewport2D (line 87543) | class Viewport2D: method __init__ (line 87557) | def __init__(self, *args, **kwargs) -> None: ... method name (line 87559) | def name(self) -> str: method draw (line 87568) | def draw(self) -> None: method cameraToModelTransform (line 87579) | def cameraToModelTransform(self) -> Matrix4: method mapToScreen (line 87590) | def mapToScreen(self, pos: Vector3) -> Vector2: method mapToBuffer (line 87604) | def mapToBuffer(self, pos: Vector2, clamp: bool = True) -> Vector2: method mapToWorld (line 87618) | def mapToWorld(self, x: float, y: float) -> Tuple[Vector3, Vector3]: method geometry (line 87636) | def geometry(self) -> Tuple[int, ...]: class ViewportVisualizer (line 87658) | class ViewportVisualizer: method __init__ (line 87672) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 87674) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 87675) | def __ne__(self, other: object) -> bool: ... method name (line 87676) | def name(self) -> str: method setName (line 87685) | def setName(self, name: str) -> None: method label (line 87694) | def label(self) -> str: method setLabel (line 87703) | def setLabel(self, label: str) -> None: method icon (line 87712) | def icon(self) -> str: method setIcon (line 87721) | def setIcon(self, icon: str) -> None: method isActive (line 87730) | def isActive(self, viewport: Optional[GeometryViewport] = None) -> bool: method setIsActive (line 87752) | def setIsActive(self, on: bool, viewport: Optional[GeometryViewport] =... method type (line 87774) | def type(self) -> ViewportVisualizerType: method setType (line 87783) | def setType(self, type: ViewportVisualizerType) -> None: method category (line 87794) | def category(self) -> EnumValue: method categoryNode (line 87803) | def categoryNode(self) -> Optional[Node]: method scope (line 87816) | def scope(self) -> EnumValue: method setScope (line 87825) | def setScope(self, scope: EnumValue) -> None: method isShownInToolbar (line 87837) | def isShownInToolbar(self) -> bool: method showInToolbar (line 87847) | def showInToolbar(self, on: bool) -> None: method isActiveWhenUnselected (line 87856) | def isActiveWhenUnselected(self) -> bool: method setIsActiveWhenUnselected (line 87866) | def setIsActiveWhenUnselected(self, on: bool) -> None: method isActiveWhenSelected (line 87876) | def isActiveWhenSelected(self) -> bool: method setIsActiveWhenSelected (line 87886) | def setIsActiveWhenSelected(self, on: bool) -> None: method isActiveWhenGhosted (line 87895) | def isActiveWhenGhosted(self) -> bool: method setIsActiveWhenGhosted (line 87905) | def setIsActiveWhenGhosted(self, on: bool) -> None: method isActiveWhenDisplayed (line 87914) | def isActiveWhenDisplayed(self) -> bool: method setIsActiveWhenDisplayed (line 87924) | def setIsActiveWhenDisplayed(self, on: bool) -> None: method isActiveWhenCurrent (line 87934) | def isActiveWhenCurrent(self) -> bool: method setIsActiveWhenCurrent (line 87944) | def setIsActiveWhenCurrent(self, on: bool) -> None: method isActiveWhenTemplated (line 87954) | def isActiveWhenTemplated(self) -> bool: method setIsActiveWhenTemplated (line 87964) | def setIsActiveWhenTemplated(self, on: bool) -> None: method parmNames (line 87974) | def parmNames(self) -> Tuple[str, ...]: method evalParmAsFloat (line 87986) | def evalParmAsFloat(self, parm_name: str) -> float: method evalParmAsInt (line 87997) | def evalParmAsInt(self, parm_name: str) -> int: method evalParmAsString (line 88009) | def evalParmAsString(self, parm_name: str) -> str: method evalParmAsRamp (line 88020) | def evalParmAsRamp(self, parm_name: str) -> Ramp: method evalParm (line 88031) | def evalParm(self, parm_name: str) -> int | float | str: method setParm (line 88040) | def setParm(self, parm_name: str, value: int|float|str) -> None: method destroy (line 88056) | def destroy(self) -> None: class viewportVisualizers (line 88069) | class viewportVisualizers: method __init__ (line 88079) | def __init__(self, *args, **kwargs) -> None: ... method visualizers (line 88082) | def visualizers(category: EnumValue = ..., node: Node|None = ...) -> T... method createVisualizer (line 88102) | def createVisualizer(type: EnumValue, category: EnumValue = ..., node:... method copyVisualizer (line 88125) | def copyVisualizer(source: ViewportVisualizer) -> Optional[ViewportVis... method types (line 88135) | def types() -> Tuple[ViewportVisualizerType, ...]: method type (line 88145) | def type(name: str) -> Optional[ViewportVisualizerType]: method isCategoryActive (line 88156) | def isCategoryActive(category: EnumValue, node: Optional[Node] = None,... method setIsCategoryActive (line 88176) | def setIsCategoryActive(on: bool, category: EnumValue, node: Optional[... method visualizerBySessionId (line 88196) | def visualizerBySessionId(session_id: int) -> Optional[ViewportVisuali... method removeAllEventCallbacks (line 88212) | def removeAllEventCallbacks(self, category: EnumValue = ..., node: Nod... method addEventCallback (line 88225) | def addEventCallback(self, event_types: EnumValue, callback: Callable,... method removeEventCallback (line 88290) | def removeEventCallback(self, event_types: Sequence[EnumValue], callba... method eventCallbacks (line 88310) | def eventCallbacks(category: EnumValue = ..., node: Node|None = ...) -... class ViewportVisualizerType (line 88323) | class ViewportVisualizerType: method __init__ (line 88333) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 88335) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 88336) | def __ne__(self, other: object) -> bool: ... method name (line 88337) | def name(self) -> str: method description (line 88346) | def description(self) -> str: method icon (line 88355) | def icon(self) -> str: class Volume (line 88365) | class Volume(Prim): method __init__ (line 88376) | def __init__(self, *args, **kwargs) -> None: ... method storageType (line 88378) | def storageType(self) -> EnumValue: method channelCount (line 88388) | def channelCount(self) -> int: method visualization (line 88397) | def visualization(self) -> EnumValue: method sample (line 88407) | def sample(self, position: Sequence[float]) -> float: method gradient (line 88421) | def gradient(self, position: Sequence[float]) -> Vector3: method voxel (line 88434) | def voxel(self, index: Sequence[int]) -> float: method setVoxel (line 88451) | def setVoxel(self, index: Sequence[int], value: float) -> None: method allVoxels (line 88473) | def allVoxels(self) -> Tuple[float, ...]: method allVoxelsAsString (line 88506) | def allVoxelsAsString(self) -> bytes: method setAllVoxels (line 88542) | def setAllVoxels(self, values: Sequence[float]) -> None: method setAllVoxelsFromString (line 88561) | def setAllVoxelsFromString(self, values: bytes) -> None: method voxelSlice (line 88596) | def voxelSlice(self, plane: str, index: int) -> Tuple[float, ...]: method voxelSliceAsString (line 88638) | def voxelSliceAsString(self, plane: str, index: int) -> bytes: method setVoxelSlice (line 88654) | def setVoxelSlice(self, values: Sequence[float], plane: str, index: in... method setVoxelSliceFromString (line 88702) | def setVoxelSliceFromString(self, values: bytes, plane: str, index: in... method resolution (line 88703) | def resolution(self) -> Tuple[int, ...]: method indexToPos (line 88714) | def indexToPos(self, index: Sequence[int]) -> Vector3: method posToIndex (line 88725) | def posToIndex(self, position: Sequence[float]) -> Tuple[int, ...]: method isValidIndex (line 88740) | def isValidIndex(self, index: Sequence[int]) -> bool: method isSDF (line 88757) | def isSDF(self) -> bool: method isHeightField (line 88770) | def isHeightField(self) -> bool: method volumeMax (line 88781) | def volumeMax(self) -> float: method volumeMin (line 88790) | def volumeMin(self) -> float: method volumeAverage (line 88799) | def volumeAverage(self) -> float: method transform (line 88808) | def transform(self) -> Matrix3: method setTransform (line 88831) | def setTransform(self, transform: Matrix4) -> None: method taperX (line 88845) | def taperX(self) -> float: ... method taperY (line 88846) | def taperY(self) -> float: ... method vertex (line 88847) | def vertex(self, index: int) -> Vertex: method voxelSize (line 88861) | def voxelSize(self) -> Vector3: class VopNetNode (line 88872) | class VopNetNode(OpNode): method __init__ (line 88879) | def __init__(self, *args, **kwargs) -> None: ... method definedType (line 88881) | def definedType(self) -> NodeType: method vexContext (line 88888) | def vexContext(self) -> VexContext: method shaderType (line 88895) | def shaderType(self) -> EnumValue: class VopNode (line 88903) | class VopNode(OpNode): method __init__ (line 88913) | def __init__(self, *args, **kwargs) -> None: ... method insertParmGenerator (line 88915) | def insertParmGenerator(self, input_name: str, parm_gen_type: EnumValu... method insertParmGeneratorsForAllInputs (line 88930) | def insertParmGeneratorsForAllInputs(self, parm_gen_type: EnumValue, r... method parmDefinerNode (line 88946) | def parmDefinerNode(self) -> Optional[VopNode]: method deleteIndependentInputNodes (line 88959) | def deleteIndependentInputNodes(self, input_index: int) -> bool: method dependsOnlyOn (line 88971) | def dependsOnlyOn(self, other_node: VopNode, max_connections: int, rec... method setIsInputVisible (line 88972) | def setIsInputVisible(self, input_name: str, is_visible: bool) -> None: method isInputVisible (line 88983) | def isInputVisible(self, input_name: str) -> bool: method inputDataTypes (line 88993) | def inputDataTypes(self) -> Tuple[str, ...]: method outputDataTypes (line 89006) | def outputDataTypes(self) -> Tuple[str, ...]: method inputParmTypes (line 89019) | def inputParmTypes(self) -> Tuple[str, ...]: ... method isInputCompatible (line 89020) | def isInputCompatible(self, idx: int, other: VopNode, other_idx: int, ... method code (line 89036) | def code(self) -> str: method outerCode (line 89045) | def outerCode(self) -> str: method isBypassed (line 89054) | def isBypassed(self) -> bool: method bypass (line 89064) | def bypass(self, on: bool) -> None: method isDebugFlagSet (line 89077) | def isDebugFlagSet(self) -> bool: method setDebugFlag (line 89087) | def setDebugFlag(self, on: bool) -> None: method isDetailLowFlagSet (line 89099) | def isDetailLowFlagSet(self) -> bool: method setDetailLowFlag (line 89109) | def setDetailLowFlag(self, on: bool) -> None: method isDetailMediumFlagSet (line 89125) | def isDetailMediumFlagSet(self) -> bool: method setDetailMediumFlag (line 89135) | def setDetailMediumFlag(self, on: bool) -> None: method isDetailHighFlagSet (line 89150) | def isDetailHighFlagSet(self) -> bool: method setDetailHighFlag (line 89160) | def setDetailHighFlag(self, on: bool) -> None: method isCompressFlagSet (line 89176) | def isCompressFlagSet(self) -> bool: method setCompressFlag (line 89187) | def setCompressFlag(self, on: bool) -> None: method isMaterialFlagSet (line 89201) | def isMaterialFlagSet(self) -> bool: method setMaterialFlag (line 89212) | def setMaterialFlag(self, on: bool) -> None: method setInputGroupExpanded (line 89227) | def setInputGroupExpanded(self, group: str, expanded: bool) -> None: method isInputGroupExpanded (line 89239) | def isInputGroupExpanded(self, group: str) -> bool: method inputsInGroup (line 89253) | def inputsInGroup(self, group: str) -> Tuple[int, ...]: method inputGroupNames (line 89267) | def inputGroupNames(self) -> Tuple[str, ...]: method inputIndexOrder (line 89279) | def inputIndexOrder(self) -> Tuple[int, ...]: method findBypassInputName (line 89293) | def findBypassInputName(self, output_name: str) -> str: method renderMask (line 89303) | def renderMask(self) -> str: method shaderString (line 89313) | def shaderString(self, render_type: str|None = ..., shader_type: EnumV... method shaderCode (line 89330) | def shaderCode(self, shader_type: EnumValue|None = ...) -> str: method shaderName (line 89343) | def shaderName(self, as_otl_path: bool = True, shader_type_name: Optio... method shaderNameForSignature (line 89358) | def shaderNameForSignature(self, signature: Optional[str] = None) -> str: method shaderType (line 89372) | def shaderType(self) -> EnumValue: ... method shaderLanguageName (line 89373) | def shaderLanguageName(self) -> str: method setShaderLanguageName (line 89382) | def setShaderLanguageName(self, language_name: str) -> bool: method currentSignatureName (line 89399) | def currentSignatureName(self) -> str: method coshaderNodes (line 89411) | def coshaderNodes(self, parm_name: str) -> Tuple[Node, ...]: ... method coshaderNodesOutputNames (line 89412) | def coshaderNodesOutputNames(self, parm_name: str) -> Tuple[str, ...]:... method subnetTerminalChild (line 89413) | def subnetTerminalChild(self, subnet_output_name: str) -> Tuple[Node, ... method extraBindings (line 89423) | def extraBindings(self) -> Tuple[str, ...]: method usdShaderParms (line 89435) | def usdShaderParms(self, force_parms_at_default: bool = False) -> Tupl... method usdPreviewShaderParms (line 89452) | def usdPreviewShaderParms(self) -> Tuple[str, ...]: class VopNodeType (line 89464) | class VopNodeType(OpNodeType): method __init__ (line 89474) | def __init__(self, *args, **kwargs) -> None: ... method shaderType (line 89476) | def shaderType(self) -> EnumValue: method renderMask (line 89489) | def renderMask(self) -> str: method vopnetMask (line 89503) | def vopnetMask(self) -> str: method inputTags (line 89515) | def inputTags(self, input_name: str) -> dict[str, str]: method outputTags (line 89526) | def outputTags(self, output_name: str) -> dict[str, str]: class CompositorViewerEvent (line 89538) | class CompositorViewerEvent(UIEvent): method __init__ (line 89563) | def __init__(self, viewer: CompositorViewer, val: int, val2: int) -> N... method curViewport (line 89588) | def curViewport(self) -> Optional[Viewport2D]: method mousePos (line 89597) | def mousePos(self, relative_to_viewport: bool = False) -> Vector2: function isUIAvailable (line 89614) | def isUIAvailable() -> bool: function exit (line 89634) | def exit(exit_code: int = 0, suppress_save_prompt: bool = False) -> None: function applicationName (line 89674) | def applicationName() -> str: function applicationVersion (line 89700) | def applicationVersion(include_patch: bool = ...) -> Tuple[int, int, int]: function applicationVersionString (line 89738) | def applicationVersionString() -> str: function applicationCompilationDate (line 89768) | def applicationCompilationDate() -> str: function applicationPlatformInfo (line 89797) | def applicationPlatformInfo() -> str: function vdbVersionInfo (line 89832) | def vdbVersionInfo() -> dict[str, str]: ... function hdkAPIVersion (line 89833) | def hdkAPIVersion() -> int: function licenseCategory (line 89867) | def licenseCategory() -> EnumValue: function isApprentice (line 89894) | def isApprentice() -> bool: function releaseLicense (line 89922) | def releaseLicense() -> None: function maxThreads (line 89943) | def maxThreads() -> int: function setMaxThreads (line 89966) | def setMaxThreads(max_threads: int) -> None: function root (line 90002) | def root() -> Node: function pwd (line 90022) | def pwd() -> Node: function parent (line 90057) | def parent() -> Optional[Node]: function setPwd (line 90078) | def setPwd(node: Node) -> None: function cd (line 90104) | def cd(path: str) -> None: function phm (line 90132) | def phm() -> HDAModule: function currentDopNet (line 90150) | def currentDopNet() -> Node: function setCurrentDopNet (line 90180) | def setCurrentDopNet(dopnet: Node) -> None: function simulationEnabled (line 90207) | def simulationEnabled() -> bool: function setSimulationEnabled (line 90227) | def setSimulationEnabled(enabled: bool) -> None: function node (line 90249) | def node(path: str) -> Optional[Node]: function item (line 90303) | def item(path: str) -> Optional[NetworkMovableItem]: function nodes (line 90355) | def nodes(paths: Sequence[str]) -> Tuple[Node, ...]: function items (line 90392) | def items(paths: Sequence[str]) -> Tuple[NetworkMovableItem, ...]: function nodeBySessionId (line 90431) | def nodeBySessionId(session_id: int) -> Optional[Node]: function networkBoxBySessionId (line 90456) | def networkBoxBySessionId(session_id: int) -> Optional[NetworkBox]: function stickyNoteBySessionId (line 90479) | def stickyNoteBySessionId(session_id: int) -> Optional[StickyNote]: function subnetIndirectInputBySessionId (line 90502) | def subnetIndirectInputBySessionId(session_id: int) -> Optional[SubnetIn... function networkDotBySessionId (line 90527) | def networkDotBySessionId(session_id: int) -> Optional[NetworkDot]: function itemBySessionId (line 90550) | def itemBySessionId(item_type: EnumValue, session_id: int) -> Optional[N... function nodeConnectionBySessionId (line 90594) | def nodeConnectionBySessionId(session_id: int, input_index: int) -> Opti... function createApexRootNode (line 90617) | def createApexRootNode() -> ApexNode: function apexNodeBySessionId (line 90635) | def apexNodeBySessionId(session_id: int) -> Optional[ApexNode]: function apexNodeConnectionBySessionId (line 90663) | def apexNodeConnectionBySessionId(session_id: int) -> Optional[ApexNodeC... function apexStickyNoteBySessionId (line 90690) | def apexStickyNoteBySessionId(session_id: int) -> Optional[ApexStickyNote]: function defaultColor (line 90716) | def defaultColor(color_item: EnumValue) -> Color: function setDefaultColor (line 90740) | def setDefaultColor(color_item: EnumValue, color: Color) -> None: function selectedNodes (line 90767) | def selectedNodes(include_hidden: bool = False) -> Tuple[Node, ...]: function selectedItems (line 90799) | def selectedItems(include_hidden: bool = False) -> Tuple[NetworkMovableI... function selectedConnections (line 90821) | def selectedConnections() -> Tuple[NodeConnection, ...]: function clearAllSelected (line 90838) | def clearAllSelected() -> None: function copyNodesToClipboard (line 90863) | def copyNodesToClipboard(nodes: Sequence[Node]) -> None: function pasteNodesFromClipboard (line 90894) | def pasteNodesFromClipboard(destination_node: Node) -> None: function parm (line 90915) | def parm(path: str) -> Optional[Parm]: function parmTuple (line 90956) | def parmTuple(path: str) -> Optional[ParmTuple]: function evaluatingParm (line 90997) | def evaluatingParm() -> Optional[Parm]: function parmClipboardContents (line 91017) | def parmClipboardContents() -> Tuple[dict[str, str], ...]: function evalParm (line 91054) | def evalParm(path: str) -> ParmReturnType: function evalParmTuple (line 91085) | def evalParmTuple(path: str) -> ParmTupleReturnType: function ch (line 91116) | def ch(path: str) -> ParmArgType: function hscriptExpression (line 91142) | def hscriptExpression(expression: str) -> float|str|Tuple[float,...]|Tup... function expressionGlobals (line 91235) | def expressionGlobals() -> Any: function lvar (line 91282) | def lvar(name: str) -> float|str: function contextOption (line 91341) | def contextOption(opt: str) -> float|str: function loadCPIODataFromString (line 91372) | def loadCPIODataFromString(data: bytes) -> Tuple[Tuple[str, bytes],...]: function loadIndexDataFromString (line 91406) | def loadIndexDataFromString(data: bytes) -> dict[str, bytes]: function addContextOptionChangeCallback (line 91444) | def addContextOptionChangeCallback(callback: Callable[[str], None]) -> N... function removeContextOptionChangeCallback (line 91477) | def removeContextOptionChangeCallback(callback: Callable[[str], None]) -... function contextOptionChangeCallbacks (line 91506) | def contextOptionChangeCallbacks() -> Tuple[Callable[[str], None],...]: function hscriptFloatExpression (line 91534) | def hscriptFloatExpression(expression: str) -> float: function hscriptStringExpression (line 91610) | def hscriptStringExpression(expression: str) -> str: function hscriptVectorExpression (line 91651) | def hscriptVectorExpression(expression: str) -> Tuple[float, ...]: function hscriptMatrixExpression (line 91694) | def hscriptMatrixExpression(expression: str) -> Tuple[Tuple[float, ...],... function getEnvConfigValue (line 91734) | def getEnvConfigValue(name: str, default_value: Optional[str] = None) ->... function getenv (line 91767) | def getenv(name: str, default_value: Optional[str] = None) -> Optional[s... function putenv (line 91793) | def putenv(name: str, value: str) -> None: function unsetenv (line 91813) | def unsetenv(name: str) -> None: function allowEnvironmentToOverwriteVariable (line 91833) | def allowEnvironmentToOverwriteVariable(name: str, onoff: bool) -> None: function updateProgressAndCheckForInterrupt (line 91862) | def updateProgressAndCheckForInterrupt(percentage: int = -1) -> bool: function runVex (line 91894) | def runVex(vex_file: str, inputs: Mapping[str, OptionType|OptionSequence... function saveImageDataToFile (line 92033) | def saveImageDataToFile(color_and_alpha_data: Sequence[float]|bytes, wid... function loadImageDataFromFile (line 92103) | def loadImageDataFromFile(file_name: str, arg: EnumValue = ...) -> bytes... function imageResolution (line 92104) | def imageResolution(image_file_name: str) -> Tuple[int, ...]: function runCallbackAndCatchCrashes (line 92149) | def runCallbackAndCatchCrashes(callback: Callable) -> Optional[Any]: ... function updateModeSetting (line 92150) | def updateModeSetting() -> EnumValue: function setUpdateMode (line 92186) | def setUpdateMode(mode: EnumValue) -> None: function orboltURLHandler (line 92202) | def orboltURLHandler() -> Optional[OrboltURLHandler]: ... function chsop (line 92203) | def chsop(path: str) -> str: function chsoplist (line 92222) | def chsoplist(path: str) -> str: function sortedNodePaths (line 92241) | def sortedNodePaths(paths: Sequence[str]) -> Tuple[str, ...]: function sortedNodes (line 92275) | def sortedNodes(nodes: Sequence[Node]) -> Tuple[Node, ...]: function patternMatch (line 92308) | def patternMatch(pattern: str, str: str, ignore_case: bool = False, path... function chopExportConflictResolutionPattern (line 92317) | def chopExportConflictResolutionPattern() -> str: function setChopExportConflictResolutionPattern (line 92334) | def setChopExportConflictResolutionPattern(pattern: str) -> None: function nodeType (line 92351) | def nodeType(category_or_name: NodeTypeCategory|str, internal_name: str|... function preferredNodeType (line 92440) | def preferredNodeType(name: str, parent_node: Optional[Node] = None) -> ... function objNodeTypeCategory (line 92481) | def objNodeTypeCategory() -> OpNodeTypeCategory: function sopNodeTypeCategory (line 92495) | def sopNodeTypeCategory() -> OpNodeTypeCategory: function dopNodeTypeCategory (line 92507) | def dopNodeTypeCategory() -> OpNodeTypeCategory: function cop2NodeTypeCategory (line 92519) | def cop2NodeTypeCategory() -> OpNodeTypeCategory: function copNodeTypeCategory (line 92539) | def copNodeTypeCategory() -> OpNodeTypeCategory: function shopNodeTypeCategory (line 92551) | def shopNodeTypeCategory() -> OpNodeTypeCategory: function vopNodeTypeCategory (line 92566) | def vopNodeTypeCategory() -> OpNodeTypeCategory: function ropNodeTypeCategory (line 92579) | def ropNodeTypeCategory() -> OpNodeTypeCategory: function chopNodeTypeCategory (line 92591) | def chopNodeTypeCategory() -> OpNodeTypeCategory: function cop2NetNodeTypeCategory (line 92603) | def cop2NetNodeTypeCategory() -> OpNodeTypeCategory: function vopNetNodeTypeCategory (line 92624) | def vopNetNodeTypeCategory() -> OpNodeTypeCategory: function chopNetNodeTypeCategory (line 92637) | def chopNetNodeTypeCategory() -> OpNodeTypeCategory: function topNodeTypeCategory (line 92650) | def topNodeTypeCategory() -> OpNodeTypeCategory: function lopNodeTypeCategory (line 92662) | def lopNodeTypeCategory() -> OpNodeTypeCategory: function managerNodeTypeCategory (line 92674) | def managerNodeTypeCategory() -> OpNodeTypeCategory: function rootNodeTypeCategory (line 92694) | def rootNodeTypeCategory() -> OpNodeTypeCategory: function dataNodeTypeCategory (line 92708) | def dataNodeTypeCategory() -> OpNodeTypeCategory: function nodeTypeCategories (line 92722) | def nodeTypeCategories() -> dict[str, NodeTypeCategory]: function apexNodeTypeCategory (line 92735) | def apexNodeTypeCategory() -> ApexNodeTypeCategory: function copyNodesTo (line 92747) | def copyNodesTo(nodes: Sequence[Node], destination_node: Node) -> Tuple[... function moveNodesTo (line 92791) | def moveNodesTo(nodes: Sequence[Node], destination_node: Node) -> Tuple[... function addNodeBundle (line 92829) | def addNodeBundle(name: Optional[str] = None) -> Bundle: function nodeBundles (line 92848) | def nodeBundles() -> Tuple[Bundle, ...]: function selectedNodeBundles (line 92862) | def selectedNodeBundles() -> Tuple[Bundle, ...]: function nodeBundle (line 92880) | def nodeBundle(name: str) -> Optional[Bundle]: function hdaDefinition (line 92895) | def hdaDefinition(category: NodeTypeCategory, name: str, file_path: str)... function time (line 92923) | def time() -> float: function setTime (line 92945) | def setTime(time: float) -> None: function frame (line 92963) | def frame(full_precision: bool = False) -> float: function intFrame (line 93025) | def intFrame() -> int: function setFrame (line 93056) | def setFrame(frame: float) -> None: function fps (line 93075) | def fps() -> float: function setFps (line 93097) | def setFps(fps: float, modify_frame_count: bool = True, preserve_keyfram... function timeToFrame (line 93131) | def timeToFrame(time: float, full_precision: bool = False) -> float: function frameToTime (line 93156) | def frameToTime(frame: float) -> float: function scaleToMKS (line 93179) | def scaleToMKS(units: str) -> float: function scaleFromMKS (line 93200) | def scaleFromMKS(units: str) -> float: function bezier (line 93221) | def bezier() -> float: function constant (line 93290) | def constant() -> float: function cubic (line 93358) | def cubic() -> float: function cycle (line 93426) | def cycle(start_frame: float, end_frame: float) -> float: function cyclet (line 93500) | def cyclet(start_time: float, end_time: float) -> float: function cycleoffset (line 93574) | def cycleoffset(start_time: float, end_time: float) -> float: function cycleoffsett (line 93651) | def cycleoffsett(start_time: float, end_time: float) -> float: function ease (line 93728) | def ease() -> float: function easein (line 93800) | def easein() -> float: function easeinp (line 93871) | def easeinp(ease_speed: float) -> float: function easeout (line 93941) | def easeout() -> float: function easeoutp (line 94012) | def easeoutp(ease_speed: float) -> float: function easep (line 94082) | def easep(ease_bias: float) -> float: function linear (line 94152) | def linear() -> float: function match (line 94220) | def match() -> float: function matchin (line 94288) | def matchin() -> float: function matchout (line 94356) | def matchout() -> float: function qlinear (line 94424) | def qlinear() -> float: function quintic (line 94504) | def quintic() -> float: function repeat (line 94574) | def repeat(start_frame: float, end_frame: float) -> float: function repeatt (line 94647) | def repeatt(start_time: float, end_time: float) -> float: function spline (line 94721) | def spline() -> float: function vmatch (line 94791) | def vmatch() -> float: function vmatchin (line 94862) | def vmatchin() -> float: function vmatchout (line 94936) | def vmatchout() -> float: function helpServerUrl (line 95010) | def helpServerUrl() -> str: function hscriptCommandHelp (line 95022) | def hscriptCommandHelp(command_name: str) -> str: function hscript (line 95035) | def hscript(command: str) -> Tuple[str, ...]: function almostEqual (line 95053) | def almostEqual(x: float, y: float) -> bool: function fileReferences (line 95066) | def fileReferences(project_dir_variable: str = ..., include_all_refs: bo... function findFile (line 95118) | def findFile(file_name: str) -> str: function findFiles (line 95136) | def findFiles(file_name: str) -> Tuple[str, ...]: function findFilesWithExtension (line 95164) | def findFilesWithExtension(file_extension: str, subdirectory: Optional[s... function findDirectory (line 95192) | def findDirectory(directory_name: str) -> str: function findDirectories (line 95219) | def findDirectories(directory_name: str) -> Tuple[str, ...]: function houdiniPath (line 95246) | def houdiniPath(pathvar: Optional[str] = None) -> Tuple[str, ...]: function homeHoudiniDirectory (line 95282) | def homeHoudiniDirectory() -> str: function readFile (line 95317) | def readFile(file_path: str) -> str: function readBinaryFile (line 95337) | def readBinaryFile(file_path: str) -> bytes: function saveCPIODataToString (line 95359) | def saveCPIODataToString(data: typing.Iterable[Tuple[str, bytes]]) -> by... function loadIndexDataFromFile (line 95379) | def loadIndexDataFromFile(file_path: str) -> dict[str, bytes]: function saveIndexDataToString (line 95407) | def saveIndexDataToString(index_data: dict[str, bytes]) -> bytes: function saveIndexDataToFile (line 95431) | def saveIndexDataToFile(file_path: str, index_data: dict[str, bytes]) ->... function vexContexts (line 95460) | def vexContexts() -> Tuple[VexContext, ...]: function vexContextForShaderType (line 95470) | def vexContextForShaderType(shader_type: EnumValue) -> Optional[VexConte... function vexContextForNodeTypeCategory (line 95490) | def vexContextForNodeTypeCategory(node_type_category: NodeTypeCategory) ... function convertClipData (line 95526) | def convertClipData(data: bytes, from_binary: bool, from_blosc_compressi... function convertKeyframesToClipData (line 95570) | def convertKeyframesToClipData(keyframe_map: dict[str, Sequence[Keyframe... function setSessionModuleSource (line 95604) | def setSessionModuleSource(source: str) -> None: function appendSessionModuleSource (line 95629) | def appendSessionModuleSource(source: str) -> None: function sessionModuleSource (line 95656) | def sessionModuleSource() -> str: function compareNode (line 95676) | def compareNode(path: str, dest: Optional[str] = None) -> bool: ... function compareNodeBackup (line 95677) | def compareNodeBackup(path: str, index: int, dest: Optional[str] = None)... function compareHDA (line 95678) | def compareHDA(path_left: str, path_right: str, dest: Optional[str] = No... function compareHDABackup (line 95679) | def compareHDABackup(path: str, index: int, dest: Optional[str] = None) ... function compareHip (line 95680) | def compareHip(dest: Optional[str] = None) -> bool: ... function compareHipBackup (line 95681) | def compareHipBackup(index: int, dest: Optional[str] = None) -> bool: ... function hasContextOption (line 95682) | def hasContextOption(opt: str) -> bool: function contextOptionNames (line 95706) | def contextOptionNames() -> Tuple[str, ...]: function setContextOption (line 95731) | def setContextOption(option: str, value: str|float|None) -> None: function removeContextOption (line 95762) | def removeContextOption(opt: str) -> None: function contextOptionConfig (line 95791) | def contextOptionConfig(opt: str) -> str: function setContextOptionConfig (line 95817) | def setContextOptionConfig(opt: str, config: str) -> None: function isAutoContextOption (line 95965) | def isAutoContextOption(opt: str) -> bool: function isAutoContextOptionOverridden (line 96043) | def isAutoContextOptionOverridden(opt: str) -> bool: function removeAllContextOptionChangeCallbacks (line 96070) | def removeAllContextOptionChangeCallbacks() -> None: function getPreferenceNames (line 96098) | def getPreferenceNames() -> Tuple[str, ...]: function getPreference (line 96122) | def getPreference(name: str, registry_name: Optional[str] = None) -> str: function setPreference (line 96161) | def setPreference(name: str, value: str, registry_name: Optional[str] = ... function addPreference (line 96202) | def addPreference(name: str, value: str) -> bool: function removePreference (line 96238) | def removePreference(name: str) -> bool: function refreshPreferences (line 96271) | def refreshPreferences() -> None: function savePreferences (line 96298) | def savePreferences(registry_name: str) -> None: function loadPreferences (line 96328) | def loadPreferences(registry_name: str) -> None: function createPreferenceRegistry (line 96362) | def createPreferenceRegistry(registry_name: str, file_name: str, prefs: ... function refreshPreferenceRegistry (line 96416) | def refreshPreferenceRegistry(registry_name: str, prefs: dict[str, Any],... function startHoudiniEngineDebugger (line 96460) | def startHoudiniEngineDebugger(portOrPipeName: int|str) -> None: function userName (line 96485) | def userName(alpha: bool = True) -> str: function machineName (line 96511) | def machineName(alpha: bool = True) -> str: function createAnimationLayers (line 96537) | def createAnimationLayers(path: str = ...) -> ChopNode: function addAnimationLayer (line 96566) | def addAnimationLayer(layermixer: ChopNode, layername: str = ...) -> Cho... function removeAnimationLayer (line 96596) | def removeAnimationLayer(layermixer: ChopNode, layername: str, merge_dow... function createAnimationClip (line 96625) | def createAnimationClip(path: str = ..., set_export: bool = ...) -> Chop... function registerOpdefPath (line 96655) | def registerOpdefPath(path: str, server_name: str, port: str = ...) -> N... function videoEncoders (line 96707) | def videoEncoders(driver: EnumValue, available: bool = False) -> Tuple[s... function refreshStartupPathCacheDirectory (line 96734) | def refreshStartupPathCacheDirectory(dir_path: str) -> None: class _PointTupleGenerator (line 96773) | class _PointTupleGenerator: method __getitem__ (line 96775) | def __getitem__(self, key: int) -> Point: ... method __len__ (line 96776) | def __len__(self) -> int: ... method __repr__ (line 96777) | def __repr__(self) -> str: ... class _PrimTupleGenerator (line 96779) | class _PrimTupleGenerator: method __getitem__ (line 96781) | def __getitem__(self, key: int) -> Prim: ... method __len__ (line 96782) | def __len__(self) -> int: ... method __repr__ (line 96783) | def __repr__(self) -> str: ... class _EdgeTupleGenerator (line 96785) | class _EdgeTupleGenerator: method __getitem__ (line 96787) | def __getitem__(self, key: int) -> Edge: ... method __len__ (line 96788) | def __len__(self) -> int: ... method __repr__ (line 96789) | def __repr__(self) -> str: ... class _VertexTupleGenerator (line 96791) | class _VertexTupleGenerator: method __getitem__ (line 96793) | def __getitem__(self, key: int) -> Vertex: ... method __len__ (line 96794) | def __len__(self) -> int: ... method __repr__ (line 96795) | def __repr__(self) -> str: ... class data (line 96797) | class data: method clusterItemsAsData (line 96800) | def clusterItemsAsData(items: Sequence[NetworkMovableItem], target_nod... method createClusterItemsFromData (line 96802) | def createClusterItemsFromData(parent: OpNode, data: dict[str, Any], t... method createItemsFromData (line 96804) | def createItemsFromData(parent: OpNode, data: dict[str, Any], clear_co... method dataFromParms (line 96806) | def dataFromParms(parms: Sequence[ParmTuple], values: bool=True, evalu... method itemsAsData (line 96808) | def itemsAsData(items: Sequence[NetworkMovableItem], nodes_only: bool=... method selectedItemsAsData (line 96810) | def selectedItemsAsData(nodes_only: bool=False, children: bool=True, e... FILE: houdini/test_stubs.py class SizedItems (line 6) | class SizedItems(object): method __init__ (line 13) | def __init__(self, data): method __len__ (line 16) | def __len__(self): method __getitem__ (line 19) | def __getitem__(self, item): function test_matrix2 (line 26) | def test_matrix2(): function test_matrix3 (line 39) | def test_matrix3(): function test_matrix4 (line 52) | def test_matrix4(): FILE: katana/stubgen_katana.py class KatanaDocstringTypeFixer (line 32) | class KatanaDocstringTypeFixer(DocstringTypeFixer): method get_replacements (line 46) | def get_replacements(self, is_return: bool) -> list[tuple[str, str]]: method get_full_name (line 49) | def get_full_name(self, type_name: str) -> str: class KatanaDocstringSignatureGenerator (line 81) | class KatanaDocstringSignatureGenerator(DocstringSignatureGenerator): method get_property_type (line 83) | def get_property_type( class KatanaSignatureGenerator (line 89) | class KatanaSignatureGenerator(AdvancedSignatureGenerator): class InspectionStubGenerator (line 196) | class InspectionStubGenerator(mypy.stubgenc.InspectionStubGenerator): method __init__ (line 205) | def __init__(self, *args, **kwargs): method get_sig_generators (line 211) | def get_sig_generators(self) -> list[SignatureGenerator]: method should_reexport (line 229) | def should_reexport(self, name: str, full_module: str, name_is_alias: ... method is_defined_in_module (line 233) | def is_defined_in_module(self, obj: object) -> bool: method set_defined_names (line 239) | def set_defined_names(self, defined_names: set[str]) -> None: method strip_or_import (line 244) | def strip_or_import(self, type_name: str) -> str: method get_imports (line 260) | def get_imports(self) -> str: method get_members (line 275) | def get_members(self, obj: object) -> list[tuple[str, Any]]: method get_base_types (line 341) | def get_base_types(self, obj: type) -> list[str]: function main (line 359) | def main(outdir: str, katana_site_dir: str) -> None: FILE: katana/stubs/AssetAPI/__init__.pyi function ResolvePath (line 44) | def ResolvePath(assetPath, frameTime): ... FILE: katana/stubs/AssetAPI_cmodule/__init__.pyi class AssetPlugin (line 40) | class AssetPlugin: method __init__ (line 41) | def __init__(self, *args, **kwargs) -> None: ... method buildAssetId (line 42) | def buildAssetId(self, fields: dict[str, str], throwOnError: bool = ..... method checkPermissions (line 43) | def checkPermissions(self, assetId: str, context: dict[str, str], thro... method containsAssetId (line 44) | def containsAssetId(self, str: str, throwOnError: bool = ...) -> bool:... method createAssetAndPath (line 45) | def createAssetAndPath(self, txn: AssetTransaction, assetType: str, as... method createTransaction (line 46) | def createTransaction(self, throwOnError: bool = ...) -> AssetTransact... method getAssetAttributes (line 47) | def getAssetAttributes(self, assetId: str, scope: str, throwOnError: b... method getAssetDisplayName (line 48) | def getAssetDisplayName(self, assetId: str, throwOnError: bool = ...) ... method getAssetFields (line 49) | def getAssetFields(self, assetId: str, includeDefaults: bool, throwOnE... method getAssetIdForScope (line 50) | def getAssetIdForScope(self, assetId: str, scope: str, throwOnError: b... method getAssetVersions (line 51) | def getAssetVersions(self, assetId: str, throwOnError: bool = ...) -> ... method getRelatedAssetId (line 52) | def getRelatedAssetId(self, assetId: str, relation: str, throwOnError:... method getUniqueScenegraphLocationFromAssetId (line 53) | def getUniqueScenegraphLocationFromAssetId(self, assetId: str, include... method isAssetId (line 54) | def isAssetId(self, assetStr: str, throwOnError: bool = ...) -> bool: ... method postCreateAsset (line 55) | def postCreateAsset(self, txn: AssetTransaction, assetType: str, asset... method reset (line 56) | def reset(self, throwOnError: bool = ...) -> None: ... method resolveAllAssets (line 57) | def resolveAllAssets(self, str: str, throwOnError: bool = ...) -> str:... method resolveAsset (line 58) | def resolveAsset(self, assetId: str, throwOnError: bool = ...) -> str:... method resolveAssetVersion (line 59) | def resolveAssetVersion(self, assetId: str, versionStr: str = ..., thr... method resolvePath (line 60) | def resolvePath(self, assetId: str, frame: int, throwOnError: bool = .... method runAssetPluginCommand (line 61) | def runAssetPluginCommand(self, assetId: str, command: str, commandArg... method setAssetAttributes (line 62) | def setAssetAttributes(self, assetId: str, scope: str, attrs: dict[str... method __hash__ (line 63) | def __hash__(self) -> int: ... class AssetTransaction (line 65) | class AssetTransaction: method __init__ (line 66) | def __init__(self, *args, **kwargs) -> None: ... method commit (line 67) | def commit(self, throwOnError: bool = ...) -> bool: ... method __hash__ (line 68) | def __hash__(self) -> int: ... class FileSequence (line 70) | class FileSequence: method __init__ (line 71) | def __init__(self, *args, **kwargs) -> None: ... method getAsString (line 72) | def getAsString(self, throwOnError: bool = ...) -> str: ... method getDirectory (line 73) | def getDirectory(self, throwOnError: bool = ...) -> str: ... method getFirstFrame (line 74) | def getFirstFrame(self, throwOnError: bool = ...) -> int: ... method getFrameList (line 75) | def getFrameList(self, throwOnError: bool = ...) -> list[int]: ... method getLastFrame (line 76) | def getLastFrame(self, throwOnError: bool = ...) -> int: ... method getNearestFrames (line 77) | def getNearestFrames(self, frame: int, throwOnError: bool = ...) -> tu... method getPadding (line 78) | def getPadding(self, throwOnError: bool = ...) -> int: ... method getPrefix (line 79) | def getPrefix(self, throwOnError: bool = ...) -> str: ... method getResolvedPath (line 80) | def getResolvedPath(self, frame: int, throwOnError: bool = ...) -> str... method getSuffix (line 81) | def getSuffix(self, throwOnError: bool = ...) -> str: ... method hasFrame (line 82) | def hasFrame(self, frame: int, throwOnError: bool = ...) -> bool: ... method hasFrameSet (line 83) | def hasFrameSet(self, throwOnError: bool = ...) -> bool: ... method __hash__ (line 84) | def __hash__(self) -> int: ... class FileSequencePlugin (line 86) | class FileSequencePlugin: method __init__ (line 87) | def __init__(self, *args, **kwargs) -> None: ... method buildFileSequenceString (line 88) | def buildFileSequenceString(self, prefix: str, suffix: str, padding: i... method findSequence (line 89) | def findSequence(self, fileListObj: list[str], throwOnError: bool = ..... method findSequenceOnDisk (line 90) | def findSequenceOnDisk(self, path: str, recursive: bool, includeHidden... method getFileSequence (line 91) | def getFileSequence(self, fileSequenceStr: str, throwOnError: bool = .... method isFileSequence (line 92) | def isFileSequence(self, fileSequenceStr: str, throwOnError: bool = ..... method __hash__ (line 93) | def __hash__(self) -> int: ... function GetAssetPlugin (line 95) | def GetAssetPlugin(pluginName: str) -> Any: ... function GetAssetPluginNames (line 96) | def GetAssetPluginNames() -> list[str]: ... function GetDefaultAssetPlugin (line 97) | def GetDefaultAssetPlugin() -> Any: ... function GetDefaultAssetPluginName (line 98) | def GetDefaultAssetPluginName() -> str: ... function GetDefaultFileSequencePlugin (line 99) | def GetDefaultFileSequencePlugin() -> Any: ... function GetDefaultFileSequencePluginName (line 100) | def GetDefaultFileSequencePluginName() -> str: ... function GetFileSequencePlugin (line 101) | def GetFileSequencePlugin(pluginName: str) -> Any: ... function GetFileSequencePluginNames (line 102) | def GetFileSequencePluginNames() -> list[str]: ... function ResetAllAssetAPIPlugins (line 103) | def ResetAllAssetAPIPlugins() -> None: ... function SetDefaultAssetPluginName (line 104) | def SetDefaultAssetPluginName(pluginName: str) -> None: ... function SetDefaultFileSequencePluginName (line 105) | def SetDefaultFileSequencePluginName(pluginName: str) -> None: ... FILE: katana/stubs/AssetBrowser/Browser.pyi class BrowserDialog (line 9) | class BrowserDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 11) | def __init__(self) -> None: ... method _BrowserDialog__currentTabIndexChanged (line 12) | def _BrowserDialog__currentTabIndexChanged(self, index): ... method _BrowserDialog__selectionValidChange (line 13) | def _BrowserDialog__selectionValidChange(self, valid): ... method _BrowserDialog__wrapAndPad (line 14) | def _BrowserDialog__wrapAndPad(self, constructor): ... method addBrowserTab (line 15) | def addBrowserTab(self, browserClass, tabName): ... method addFileBrowserTab (line 16) | def addFileBrowserTab(self): ... method getBrowser (line 17) | def getBrowser(self, index): ... method getCurrentBrowser (line 18) | def getCurrentBrowser(self): ... method getCurrentIndex (line 19) | def getCurrentIndex(self): ... method getCustomWidgetFrame (line 20) | def getCustomWidgetFrame(self): ... method getExtraOptions (line 21) | def getExtraOptions(self): ... method getResult (line 22) | def getResult(self): ... method readSettings (line 23) | def readSettings(self, settings): ... method setCurrentIndex (line 24) | def setCurrentIndex(self, index): ... method setSaveMode (line 25) | def setSaveMode(self, saveMode): ... method writeSettings (line 26) | def writeSettings(self, settings): ... FILE: katana/stubs/AssetBrowser/BrowserColumn.pyi class BrowserColumn (line 13) | class BrowserColumn(PyQt5.QtWidgets.QFrame): method __init__ (line 16) | def __init__(self, parent) -> None: ... method _BrowserColumn__doubleClick (line 17) | def _BrowserColumn__doubleClick(self, index): ... method _BrowserColumn__treeMousePress (line 18) | def _BrowserColumn__treeMousePress(self, event): ... method _BrowserColumn__updateSelectNoneState (line 19) | def _BrowserColumn__updateSelectNoneState(self): ... method filterItem (line 20) | def filterItem(self, item, text, filterType): ... method getFilterField (line 21) | def getFilterField(self): ... method getFooter (line 22) | def getFooter(self): ... method getHeader (line 23) | def getHeader(self): ... method getSelectedItem (line 24) | def getSelectedItem(self): ... method getStatusLabel (line 25) | def getStatusLabel(self): ... method getTree (line 26) | def getTree(self): ... method selectItemByName (line 27) | def selectItemByName(self, name): ... method singleVisibleItem (line 28) | def singleVisibleItem(self): ... method updateFilter (line 29) | def updateFilter(self, text: Incomplete | None = ..., filterType: Inco... FILE: katana/stubs/AssetBrowser/BrowserSettings.pyi function GetBrowserSettings (line 6) | def GetBrowserSettings(): ... function LoadFrameGeometry (line 7) | def LoadFrameGeometry(widget, group): ... function SaveFrameGeometry (line 8) | def SaveFrameGeometry(widget, group): ... FILE: katana/stubs/AssetBrowser/FileBrowser.pyi class Browser (line 17) | class Browser(PyQt5.QtWidgets.QFrame): method __init__ (line 28) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None) -> None: ... method AddQuickLinkPath (line 30) | def AddQuickLinkPath(cls, quickLinkPath: str): ... method ClearQuickLinks (line 32) | def ClearQuickLinks(cls): ... method InitializeFileBrowser (line 34) | def InitializeFileBrowser(cls): ... method _Browser__addGlobalQuickLinks (line 35) | def _Browser__addGlobalQuickLinks(self): ... method _Browser__isFileSequence (line 36) | def _Browser__isFileSequence(self, filePath: str) -> bool: ... method _Browser__isValidPath (line 37) | def _Browser__isValidPath(self, filePath: str) -> bool: ... method _Browser__removeTrailingFrameRange (line 38) | def _Browser__removeTrailingFrameRange(self, filePath: str) -> str: ... method _Browser__setSelectionValid (line 39) | def _Browser__setSelectionValid(self, selectionValid: bool): ... method _Browser__splitFilePath (line 40) | def _Browser__splitFilePath(self, filePath: str) -> Tuple[str, str]: ... method addQuickLinkPaths (line 41) | def addQuickLinkPaths(self, quickLinkPaths: list[str]): ... method beginUpdate (line 42) | def beginUpdate(self): ... method endUpdate (line 43) | def endUpdate(self): ... method getResult (line 44) | def getResult(self) -> str: ... method on_fileDoubleClick (line 45) | def on_fileDoubleClick(self): ... method on_filenameTextChanged (line 46) | def on_filenameTextChanged(self, filename: str): ... method selectionValid (line 47) | def selectionValid(self) -> bool: ... method setFileSequencePlugin (line 48) | def setFileSequencePlugin(self, fileSequencePlugin: AssetAPI.FileSeque... method setFindSequenceFunc (line 49) | def setFindSequenceFunc(self, findSequenceFunc): ... method setLocation (line 50) | def setLocation(self, location: str): ... method setQuickLinkPaths (line 51) | def setQuickLinkPaths(self, quickLinkPaths): ... method setSaveMode (line 52) | def setSaveMode(self, saveModeEnabled: bool): ... method setSequenceListing (line 53) | def setSequenceListing(self, isSequenceListingEnabled: bool): ... method setTypes (line 54) | def setTypes(self, types: list[str]): ... method setValidSelectionTypes (line 55) | def setValidSelectionTypes(self, validSelectionTypes: list[int]): ... class FileSequenceEvaluator (line 57) | class FileSequenceEvaluator(_FnKatanaCoreUI.Foundry.UI.FileSequenceEvalu... method __init__ (line 58) | def __init__(self) -> None: ... method _buildFileSequences (line 59) | def _buildFileSequences(self, sequences: list[FileSequence], allFileIn... method _getFrameFileInfo (line 60) | def _getFrameFileInfo(self, sequence: FileSequence, frameNumber: int, ... method evaluateFiles (line 61) | def evaluateFiles(self, allFileInfos: list[FileInfo]) -> tuple[FileInf... method setFileSequencePlugin (line 62) | def setFileSequencePlugin(self, fileSequencePlugin: FileSequencePlugin... FILE: katana/stubs/AssetBrowser/FileInfo.pyi class DirectoryInfo (line 7) | class DirectoryInfo: method __init__ (line 8) | def __init__(self, directoryPath, findSequenceFunc: Incomplete | None ... method _DirectoryInfo__prepareSequences (line 9) | def _DirectoryInfo__prepareSequences(self): ... method getDirectoryMTime (line 10) | def getDirectoryMTime(self): ... method getFileList (line 11) | def getFileList(self): ... method getNonSequences (line 12) | def getNonSequences(self): ... method getSequences (line 13) | def getSequences(self): ... class FileInfo (line 15) | class FileInfo: method __init__ (line 22) | def __init__(self, directoryPath, fileName: Incomplete | None = ..., s... method _FileInfo__stat (line 23) | def _FileInfo__stat(self, path): ... method ext (line 24) | def ext(self): ... method mtime (line 25) | def mtime(self): ... method mtimeString (line 26) | def mtimeString(self): ... method name (line 27) | def name(self): ... method owner (line 28) | def owner(self): ... method readDirectory (line 30) | def readDirectory(cls, path, sequenceListing: bool = ..., findSequence... method type (line 31) | def type(self): ... FILE: katana/stubs/AssetBrowser/NonexclusiveCheckboxPopup.pyi class NonexclusiveCheckboxPopup (line 13) | class NonexclusiveCheckboxPopup(FilterablePopupButton): method __init__ (line 15) | def __init__(self, parent, emptyLabel: str = ...) -> None: ... method _NonexclusiveCheckboxPopup__itemChosen (line 16) | def _NonexclusiveCheckboxPopup__itemChosen(self, name, meta): ... method _NonexclusiveCheckboxPopup__popupClosed (line 17) | def _NonexclusiveCheckboxPopup__popupClosed(self): ... method _NonexclusiveCheckboxPopup__setItemCheck (line 18) | def _NonexclusiveCheckboxPopup__setItemCheck(self, item): ... method _NonexclusiveCheckboxPopup__treeCheckboxItem (line 19) | def _NonexclusiveCheckboxPopup__treeCheckboxItem(self, event): ... method _NonexclusiveCheckboxPopup__treeMouseMoveEvent (line 20) | def _NonexclusiveCheckboxPopup__treeMouseMoveEvent(self, event): ... method _NonexclusiveCheckboxPopup__treeMousePressEvent (line 21) | def _NonexclusiveCheckboxPopup__treeMousePressEvent(self, event): ... method _NonexclusiveCheckboxPopup__treeMouseReleaseEvent (line 22) | def _NonexclusiveCheckboxPopup__treeMouseReleaseEvent(self, event): ... method addItem (line 23) | def addItem(self, *args, **kwds): ... method clear (line 24) | def clear(self): ... method getValues (line 25) | def getValues(self): ... method setValues (line 26) | def setValues(self, values, updateItems: bool = ..., sendSignal: bool ... FILE: katana/stubs/CacheManager/__init__.pyi function flush (line 6) | def flush(isNodeGraphLoading: bool = ...): ... function registerFlushCallback (line 7) | def registerFlushCallback(fnc, post: bool = ...): ... function setDirty (line 8) | def setDirty(): ... FILE: katana/stubs/Callbacks/Callbacks.pyi class CallbacksManager (line 9) | class CallbacksManager: class Type (line 10) | class Type: method __init__ (line 43) | def __init__(self) -> None: ... method addCallback (line 44) | def addCallback(self, callbackType, callbackFcn, callbackObjectHash: I... method delCallback (line 45) | def delCallback(self, callbackType, callbackFcn, callbackObjectHash: I... method setCallbackTypeDeprecated (line 46) | def setCallbackTypeDeprecated(self, callbackTypeName: str, newCallback... class _TypeEnum (line 48) | class _TypeEnum: method __init__ (line 50) | def __init__(self, name) -> None: ... method get (line 51) | def get(self): ... method name (line 52) | def name(self): ... class _TypeEnumList (line 54) | class _TypeEnumList: ... function DeclareCallbackType (line 56) | def DeclareCallbackType(callbackName): ... function ExecuteCallbacksForType (line 57) | def ExecuteCallbacksForType(callbackType, callbackObjectHash: Incomplete... FILE: katana/stubs/CatalogAPI/Catalog.pyi function CreateCatalogItem (line 19) | def CreateCatalogItem(itemXML: str = ...): ... function DeleteCatalogItems (line 20) | def DeleteCatalogItems(items): ... function DuplicateCatalogItem (line 21) | def DuplicateCatalogItem(item): ... function FillDragDataFromItem (line 22) | def FillDragDataFromItem(mimeData, catalogItem): ... function FindCatalogItemBySequenceID (line 23) | def FindCatalogItemBySequenceID(sequenceID): ... function FindUnlockedCatalogItemBySlot (line 24) | def FindUnlockedCatalogItemBySlot(slot: Incomplete | None = ...): ... function GetCatalogItems (line 25) | def GetCatalogItems(slot: Incomplete | None = ...): ... function GetCatalogThumbnailWidth (line 26) | def GetCatalogThumbnailWidth() -> int: ... function GetFirstCatalogItem (line 27) | def GetFirstCatalogItem(slot: Incomplete | None = ...): ... function GetItemFromDragData (line 28) | def GetItemFromDragData(dragData): ... function GetLastCatalogItem (line 29) | def GetLastCatalogItem(slot: Incomplete | None = ...): ... function GetNextCatalogItem (line 30) | def GetNextCatalogItem(item, slot: Incomplete | None = ...): ... function GetNumCatalogItems (line 31) | def GetNumCatalogItems(slot): ... function GetPreviousCatalogItem (line 32) | def GetPreviousCatalogItem(item, slot: Incomplete | None = ...): ... function MoveCatalogItem (line 33) | def MoveCatalogItem(catalogItem, newIndex, slot: Incomplete | None = ...... function MoveCatalogItemToTop (line 34) | def MoveCatalogItemToTop(catalogItem): ... function SetCatalogThumbnailWidth (line 35) | def SetCatalogThumbnailWidth(width: int): ... FILE: katana/stubs/CatalogAPI/CatalogItem.pyi class CatalogItem (line 18) | class CatalogItem: method __init__ (line 20) | def __init__(self, catalogItemID) -> None: ... method _CatalogItem__getBufferInfoIndex (line 21) | def _CatalogItem__getBufferInfoIndex(self, layerview): ... method _CatalogItem__parseFrameRange (line 23) | def _CatalogItem__parseFrameRange(cls, frameRange: str) -> tuple[int, ... method _CatalogItem__setSimpleValue (line 24) | def _CatalogItem__setSimpleValue(self, name, value): ... method _CatalogItem__setSimpleValues (line 25) | def _CatalogItem__setSimpleValues(self, namesValues): ... method _CatalogItem__setStringArrayValue (line 26) | def _CatalogItem__setStringArrayValue(self, paramName, values): ... method _saveImagesToDisk (line 27) | def _saveImagesToDisk(self): ... method _saveThumbnailToDisk (line 28) | def _saveThumbnailToDisk(self): ... method appendToRenderLog (line 29) | def appendToRenderLog(self, message): ... method getBuffer (line 30) | def getBuffer(self, layerview, loadIfNeeded: bool = ..., strict: bool ... method getBufferInfo (line 31) | def getBufferInfo(self) -> typing.Optional[list[d]]: ... method getCatalogItemID (line 32) | def getCatalogItemID(self) -> str: ... method getCatalogItemIDAsLabel (line 33) | def getCatalogItemIDAsLabel(self) -> str: ... method getChannels (line 34) | def getChannels(self, layerview, loadIfNeeded: bool = ...): ... method getDataWindow (line 35) | def getDataWindow(self, layerview, loadIfNeeded: bool = ...): ... method getDiskImageLocation (line 36) | def getDiskImageLocation(self, layerview): ... method getDiskImageSequence (line 37) | def getDiskImageSequence(self, layerview): ... method getDiskThumbnailLocation (line 38) | def getDiskThumbnailLocation(self): ... method getDisplayWindow (line 39) | def getDisplayWindow(self, layerview, loadIfNeeded: bool = ...): ... method getDisplayWindowAsText (line 40) | def getDisplayWindowAsText(self, layerview, loadIfNeeded: bool = ...):... method getEndFrame (line 41) | def getEndFrame(self) -> int: ... method getFrameRange (line 42) | def getFrameRange(self): ... method getIndex (line 43) | def getIndex(self): ... method getLayerRenderCameraPath (line 44) | def getLayerRenderCameraPath(self, layer) -> str: ... method getLayerViewForSequenceID (line 45) | def getLayerViewForSequenceID(self, sequenceID): ... method getLayerViews (line 46) | def getLayerViews(self): ... method getLayerViewsAsText (line 47) | def getLayerViewsAsText(self, abbreviate: bool = ...): ... method getLayerViewsWithBuffers (line 48) | def getLayerViewsWithBuffers(self): ... method getMainSequenceID (line 49) | def getMainSequenceID(self) -> int | None: ... method getMemoryUsage (line 50) | def getMemoryUsage(self): ... method getNodeName (line 51) | def getNodeName(self): ... method getParam (line 52) | def getParam(self): ... method getPrimaryLayerView (line 53) | def getPrimaryLayerView(self): ... method getProjectSnapshot (line 54) | def getProjectSnapshot(self) -> ProjectSnapshot: ... method getRenderCamera (line 55) | def getRenderCamera(self) -> tuple[int, str]: ... method getRenderElapsedTime (line 56) | def getRenderElapsedTime(self): ... method getRenderElapsedTimeAsText (line 57) | def getRenderElapsedTimeAsText(self): ... method getRenderEndTime (line 58) | def getRenderEndTime(self): ... method getRenderError (line 59) | def getRenderError(self): ... method getRenderLog (line 60) | def getRenderLog(self): ... method getRenderMethodType (line 61) | def getRenderMethodType(self) -> str | None: ... method getRenderProgress (line 62) | def getRenderProgress(self): ... method getRenderStartTime (line 63) | def getRenderStartTime(self): ... method getRenderStartTimeAsText (line 64) | def getRenderStartTimeAsText(self): ... method getRenderState (line 65) | def getRenderState(self): ... method getRenderStats (line 66) | def getRenderStats(self): ... method getResolutionName (line 67) | def getResolutionName(self, layerview, loadIfNeeded: bool = ..., useMi... method getSampleRate (line 68) | def getSampleRate(self, layerview, loadIfNeeded: bool = ...): ... method getSequenceIDs (line 69) | def getSequenceIDs(self) -> list[int]: ... method getShortDescription (line 70) | def getShortDescription(self) -> str: ... method getSlot (line 71) | def getSlot(self): ... method getStartFrame (line 72) | def getStartFrame(self) -> int: ... method getThumbnailPixmap (line 73) | def getThumbnailPixmap(self): ... method getTileOrdering (line 74) | def getTileOrdering(self): ... method getUserComment (line 75) | def getUserComment(self): ... method hasOverscan (line 76) | def hasOverscan(self, layerview, loadIfNeeded: bool = ...): ... method is2D (line 77) | def is2D(self): ... method isDiskImageLocationLocal (line 78) | def isDiskImageLocationLocal(self, layerview): ... method isFramePinned (line 79) | def isFramePinned(self) -> bool: ... method isGSVPinned (line 80) | def isGSVPinned(self, gsvName: str) -> bool: ... method isInProgress (line 81) | def isInProgress(self) -> bool: ... method isLayerAdaptative (line 82) | def isLayerAdaptative(self) -> bool: ... method isLiveRender (line 83) | def isLiveRender(self) -> bool: ... method isLocked (line 84) | def isLocked(self): ... method isPersistant (line 85) | def isPersistant(self): ... method isStaticScene (line 86) | def isStaticScene(self) -> bool: ... method isValid (line 87) | def isValid(self): ... method queryRegionStats (line 88) | def queryRegionStats(self, layerview, region, ignoreNanInfValues: bool... method releaseBuffer (line 89) | def releaseBuffer(self, layerview: None): ... method releaseBuffers (line 90) | def releaseBuffers(self): ... method renameLayerView (line 91) | def renameLayerView(self, oldLayerView: None, newLayerView: None): ... method resetRenderLog (line 92) | def resetRenderLog(self): ... method set2D (line 93) | def set2D(self, is2D): ... method setBufferDict (line 94) | def setBufferDict(self, bufferDict): ... method setBufferInfo (line 95) | def setBufferInfo(self, bufferInfo): ... method setDiskImageLocation (line 96) | def setDiskImageLocation(self, filename, layerview): ... method setDiskThumbnailLocation (line 97) | def setDiskThumbnailLocation(self, filename): ... method setFramePinned (line 98) | def setFramePinned(self, isPinned: bool): ... method setFrameRange (line 99) | def setFrameRange(self, frameRange): ... method setGSVPinned (line 100) | def setGSVPinned(self, gsvName: str, isPinned: bool): ... method setLayerAdaptative (line 101) | def setLayerAdaptative(self, value: bool): ... method setLayerRenderCameraPath (line 102) | def setLayerRenderCameraPath(self, layer: str, renderCameraPath: str):... method setLock (line 103) | def setLock(self, isLocked): ... method setNodeName (line 104) | def setNodeName(self, name): ... method setPersistant (line 105) | def setPersistant(self, isPersistant): ... method setProjectSnapshot (line 106) | def setProjectSnapshot(self, projectSnapshot: ProjectSnapshot): ... method setRenderCamera (line 107) | def setRenderCamera(self, renderCameraType: int, renderCameraPath: str... method setRenderEndTime (line 108) | def setRenderEndTime(self, t): ... method setRenderError (line 109) | def setRenderError(self, errorCode, nodeName, message): ... method setRenderMethodType (line 110) | def setRenderMethodType(self, renderMethodType: str | None): ... method setRenderProgress (line 111) | def setRenderProgress(self, tasksCompleted, totalTasks): ... method setRenderStartTime (line 112) | def setRenderStartTime(self, t): ... method setRenderState (line 113) | def setRenderState(self, state): ... method setRenderStats (line 114) | def setRenderStats(self, stats): ... method setSampleRate (line 115) | def setSampleRate(self, sampleRate): ... method setSlot (line 116) | def setSlot(self, value): ... method setStaticScene (line 117) | def setStaticScene(self, value: bool): ... method setThumbnailPixmap (line 118) | def setThumbnailPixmap(self, value): ... method setTileOrdering (line 119) | def setTileOrdering(self, value): ... method setUserComment (line 120) | def setUserComment(self, value: str, final: bool = ...): ... method syncProjectSettings (line 121) | def syncProjectSettings(self, makeActive: bool = ...): ... method toggleLock (line 122) | def toggleLock(self): ... method __eq__ (line 123) | def __eq__(self, other) -> bool: ... method __hash__ (line 124) | def __hash__(self) -> int: ... method __lt__ (line 125) | def __lt__(self, other) -> bool: ... function CreateCatalogItemFromID (line 127) | def CreateCatalogItemFromID(catalogItemID): ... function _ClearItemAttrs (line 128) | def _ClearItemAttrs(catalogItemIDs: Incomplete | None = ...): ... function _GetItemAttr (line 129) | def _GetItemAttr(catalogItemID, name, default: Incomplete | None = ...):... function _SetItemAttr (line 130) | def _SetItemAttr(catalogItemID, name, value): ... FILE: katana/stubs/CatalogAPI/CatalogUtils.pyi function ExportCatalogToDisk (line 11) | def ExportCatalogToDisk(items, filePath, imageFormat, imageOptions): ... function GetCommonResolutionNameFromItems (line 12) | def GetCommonResolutionNameFromItems(items): ... function GetFirstFrame (line 13) | def GetFirstFrame(resolvedLocation): ... function GetMemoryUsageMB (line 14) | def GetMemoryUsageMB(): ... function GetNearestTimeInSequence (line 15) | def GetNearestTimeInSequence(sequence, time): ... function GetSequenceCreationTime (line 16) | def GetSequenceCreationTime(resolvedLocation): ... function GetSequenceObj (line 17) | def GetSequenceObj(resolvedLocation: str) -> FileSequence | None: ... function GetUniqueImageNumberInDirectory (line 18) | def GetUniqueImageNumberInDirectory(directory): ... function ImportImageSequence (line 19) | def ImportImageSequence(assetId, nodeName: str = ..., setPersistant: boo... function IsPersistantCatalogAllowed (line 20) | def IsPersistantCatalogAllowed(): ... function ValidatePersistantDirectory (line 21) | def ValidatePersistantDirectory(onlyTestExistance: bool = ...): ... FILE: katana/stubs/CatalogAPI/Client.pyi class _CatalogItemProjectSettings (line 14) | class _CatalogItemProjectSettings: class _GSV (line 15) | class _GSV(tuple): method __init__ (line 19) | def __init__(self, _cls, name, value, enabled) -> None: ... method _asdict (line 20) | def _asdict(self): ... method _make (line 22) | def _make(cls, iterable): ... method _replace (line 23) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 24) | def __getnewargs__(self): ... method enabled (line 26) | def enabled(self): ... method name (line 28) | def name(self): ... method value (line 30) | def value(self): ... method __init__ (line 31) | def __init__(self, catalogItem: CatalogItem) -> None: ... method gsvsToString (line 33) | def gsvsToString(gsvs: list[_CatalogItemProjectSettings._GSV]) -> str:... method gsvs (line 35) | def gsvs(self): ... method startFrame (line 37) | def startFrame(self): ... class _ClientSlotUpdateUndoEntry (line 39) | class _ClientSlotUpdateUndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 40) | def __init__(self, clientKey: int, view: int, prevCatalogItem: Catalog... method _ClientSlotUpdateUndoEntry__setClientCatalogItem (line 41) | def _ClientSlotUpdateUndoEntry__setClientCatalogItem(self, catalogItem... method redo (line 42) | def redo(self): ... method undo (line 43) | def undo(self): ... class _RootNodeProjectSettings (line 45) | class _RootNodeProjectSettings: method __init__ (line 46) | def __init__(self, rootNode: NodegraphAPI.GroupNode) -> None: ... method _RootNodeProjectSettings__canMatchGSV (line 48) | def _RootNodeProjectSettings__canMatchGSV(param: NodegraphAPI.Paramete... method applyCatalogItemFrameTime (line 49) | def applyCatalogItemFrameTime(self, catalogItemProjectSettings: _Catal... method applyCatalogItemGSVs (line 50) | def applyCatalogItemGSVs(self, catalogItemProjectSettings: _CatalogIte... function ApplyCatalogItemProjectSettings (line 52) | def ApplyCatalogItemProjectSettings(catalogItem: CatalogItem): ... function AutoViewCatalogItem (line 53) | def AutoViewCatalogItem(catalogItem): ... function CreateCatalogClientKey (line 54) | def CreateCatalogClientKey(): ... function DeleteCatalogClientKey (line 55) | def DeleteCatalogClientKey(clientKey): ... function GetAllowedViewSlots (line 56) | def GetAllowedViewSlots(): ... function GetClientCatalogItems (line 57) | def GetClientCatalogItems(clientKey): ... function GetClientKeys (line 58) | def GetClientKeys(): ... function GetClientViewSlots (line 59) | def GetClientViewSlots(clientKey): ... function GetCurrentlyViewedSlots (line 60) | def GetCurrentlyViewedSlots(): ... function GetPrimaryClientKey (line 61) | def GetPrimaryClientKey(): ... function GetRecommendedRenderSlots (line 62) | def GetRecommendedRenderSlots(nodeNames): ... function GetUnassignedSlot (line 63) | def GetUnassignedSlot(): ... function IsClientPinned (line 64) | def IsClientPinned(clientKey: int) -> bool: ... function SetClientCatalogItem (line 65) | def SetClientCatalogItem(clientKey: int, view: int, catalogItem: Catalog... function SetClientPinned (line 66) | def SetClientPinned(clientKey: int, isPinned: bool): ... function SetClientViewSlot (line 67) | def SetClientViewSlot(clientKey, view, slot): ... function SwapClientViewSlots (line 68) | def SwapClientViewSlots(clientKey): ... FILE: katana/stubs/ConditionalStateGrammar/Parser.pyi function GetParser (line 6) | def GetParser(): ... function ParseAndBuildHintDict (line 7) | def ParseAndBuildHintDict(inputString, prefix: str = ..., secondaryPrefi... FILE: katana/stubs/ConfigurationAPI_cmodule/__init__.pyi function exportConfiguration (line 5) | def exportConfiguration() -> dict[str, str]: ... function get (line 6) | def get(key: str) -> str: ... function has (line 7) | def has(key: str) -> bool: ... function set (line 8) | def set(key: str, value: str) -> None: ... FILE: katana/stubs/DrawingModule/AutoPosition.pyi function AutoPositionNodes (line 11) | def AutoPositionNodes(nodes, oldStyle: bool = ...): ... function FitBackdropNodeAroundNodes (line 12) | def FitBackdropNodeAroundNodes(nodes: list, backdropNode: Incomplete | N... function FitStickyAroundNodes (line 13) | def FitStickyAroundNodes(nodes, sticky: Incomplete | None = ..., padding... FILE: katana/stubs/DrawingModule/CustomColors.pyi function CopyNodeColorToLinkColor (line 9) | def CopyNodeColorToLinkColor(node: NodegraphAPI.Node): ... function GetCustomNodeColor (line 10) | def GetCustomNodeColor(node: NodegraphAPI.Node): ... function HasCustomNodeColor (line 11) | def HasCustomNodeColor(node: NodegraphAPI.Node): ... function RemoveCustomNodeColor (line 12) | def RemoveCustomNodeColor(node: NodegraphAPI.Node): ... function SetCustomNodeColor (line 13) | def SetCustomNodeColor(node: NodegraphAPI.Node, r, g, b): ... FILE: katana/stubs/DrawingModule/NodeShapeAttrUtil.pyi function GetDrawOutputsAttr (line 8) | def GetDrawOutputsAttr(node: NodegraphAPI.Node): ... function SetDrawOutputsAttr (line 9) | def SetDrawOutputsAttr(node: NodegraphAPI.Node, value): ... FILE: katana/stubs/GeoAPI/Lookfiles.pyi function getPassNamesForFile (line 5) | def getPassNamesForFile(path): ... FILE: katana/stubs/GeoAPI/Transform.pyi function ProducerLocalTransform (line 8) | def ProducerLocalTransform(producer: PyFnGeolibProducers.GeometryProduce... function ProducerWorldBounds (line 9) | def ProducerWorldBounds(producer: PyFnGeolibProducers.GeometryProducer):... function ProducerWorldTransform (line 10) | def ProducerWorldTransform(producer: PyFnGeolibProducers.GeometryProduce... function UnionBounds (line 11) | def UnionBounds(bounds1, bounds2): ... FILE: katana/stubs/GeoAPI/Util/ArgsFileUtil.pyi class Error (line 10) | class Error(Exception): ... function GetShaderArgsFileDirs (line 12) | def GetShaderArgsFileDirs(shaderName: str, rendererInfoPluginName: str) ... function GetShaderArgsFilePath (line 13) | def GetShaderArgsFilePath(shaderName: str, rendererInfoPluginName: str) ... function WriteArgsFileFromAttrAndHints (line 14) | def WriteArgsFileFromAttrAndHints(filePathOrObject: str | object, parame... FILE: katana/stubs/GeoAPI/Util/CelUtil.pyi function CollectPathsFromCELStatement (line 11) | def CollectPathsFromCELStatement(producerOrClient, celStatement, interru... FILE: katana/stubs/GeoAPI/Util/GenericAppenderUtil.pyi function BuildAttrFromParsedEntry (line 12) | def BuildAttrFromParsedEntry(element, refDict: Incomplete | None = ...):... function GetGenericAppenderLocations (line 13) | def GetGenericAppenderLocations(): ... function InitGenericAppenders (line 14) | def InitGenericAppenders(path: Incomplete | None = ...): ... function ParseArgsFile (line 15) | def ParseArgsFile(filename): ... function ParseArgsString (line 16) | def ParseArgsString(xmlString): ... function RegisterAppenderNodeTypes (line 17) | def RegisterAppenderNodeTypes(searchPath: Incomplete | None = ...): ... FILE: katana/stubs/GeoAPI/Util/HintDictUtil.pyi function ContainerHintDictFromAttr (line 7) | def ContainerHintDictFromAttr(attr, path: str = ..., output: Incomplete ... function FlushCache (line 8) | def FlushCache(): ... function HintDictFromAttr (line 9) | def HintDictFromAttr(attr, allowGroupAttrForm: bool = ...): ... FILE: katana/stubs/GeoAPI/Util/LookFileUtil.pyi class DummyProducer (line 19) | class DummyProducer: method getAttribute (line 20) | def getAttribute(self, name): ... method getAttributeNames (line 21) | def getAttributeNames(self): ... method getFirstChild (line 22) | def getFirstChild(self): ... method getName (line 23) | def getName(self): ... method getType (line 24) | def getType(self): ... class LocationIntervalEvictor (line 26) | class LocationIntervalEvictor: method __init__ (line 27) | def __init__(self, interval, configVarName: Incomplete | None = ...) -... method advanceAndEvict (line 28) | def advanceAndEvict(self, producer: PyFnGeolibProducers.GeometryProduc... method __bool__ (line 29) | def __bool__(self) -> bool: ... class LookFileBakeException (line 31) | class LookFileBakeException(RuntimeError): ... function AttrEqual (line 33) | def AttrEqual(attrA, attrB): ... function BuildCollectionsInfoDict (line 34) | def BuildCollectionsInfoDict(rootProducer): ... function BuildFullMaterialTree (line 35) | def BuildFullMaterialTree(rootProducer, progressCallback: typing.Optiona... function BuildSelectedMaterialTree (line 36) | def BuildSelectedMaterialTree(rootProducer, rootPath, progressCallback: ... function ConsolidateOverrides (line 37) | def ConsolidateOverrides(outputDicts: typing.Sequence[dict], progressCal... function ConstraintListDiff (line 38) | def ConstraintListDiff(producerA, producerB, rootLocation): ... function CreateLookFileDirectory (line 39) | def CreateLookFileDirectory(dirPath: str): ... function DeepAttrDiff (line 40) | def DeepAttrDiff(attrA, attrB, outputDict, attrPath: str = ...): ... function GetBakeState (line 41) | def GetBakeState(): ... function LightListDiff (line 42) | def LightListDiff(producerA, producerB, rootLocation): ... function ScenegraphHierarchyDiff (line 43) | def ScenegraphHierarchyDiff(producerA, producerB, materialsProducer, pro... function ScenegraphImmediateChildDiff (line 44) | def ScenegraphImmediateChildDiff(producerA, producerB, materialsProducer... function ScenegraphLocationDiff (line 45) | def ScenegraphLocationDiff(producerA, producerB, materialsProducer, mate... function SetBakeState (line 46) | def SetBakeState(state): ... function SetLog (line 47) | def SetLog(log): ... function WriteLookFile (line 48) | def WriteLookFile(filePath, outputDictList, materialDict, sharedOverride... function _ScenegraphHierarchyDiff (line 49) | def _ScenegraphHierarchyDiff(producerA, producerB, materialsProducer, lo... function _WalkMaterialLocation (line 50) | def _WalkMaterialLocation(producer: PyFnGeolibProducers.GeometryProducer... function _WalkMaterialLocations (line 51) | def _WalkMaterialLocations(parentProducer, materialDict, progressCallbac... FILE: katana/stubs/GeoAPI/Util/Matrix.pyi function axisAngleToQuaternion (line 5) | def axisAngleToQuaternion(axis, angle): ... function crossProduct3 (line 6) | def crossProduct3(a, b): ... function decomposeMatrix4x4 (line 7) | def decomposeMatrix4x4(m): ... function dotProduct3 (line 8) | def dotProduct3(a, b): ... function explodeMatrix4x4 (line 9) | def explodeMatrix4x4(m): ... function identity (line 10) | def identity(): ... function invert (line 11) | def invert(m): ... function magnitude3 (line 12) | def magnitude3(a): ... function multiply (line 13) | def multiply(a: None, b: None): ... function multiplyv3 (line 14) | def multiplyv3(m: None, v: None): ... function multiplyv4 (line 15) | def multiplyv4(m: None, v: None): ... function normalize3 (line 16) | def normalize3(a): ... function quaternionToRotationMatrix (line 17) | def quaternionToRotationMatrix(quat): ... function scaleMatrix (line 18) | def scaleMatrix(x, y, z): ... function transformPoint4ByMatrix4x4 (line 19) | def transformPoint4ByMatrix4x4(p, m): ... function translationMatrix (line 20) | def translationMatrix(x, y, z): ... function transpose4x4 (line 21) | def transpose4x4(m): ... function xRotationMatrix (line 22) | def xRotationMatrix(x): ... function xformPointByMatrix (line 23) | def xformPointByMatrix(p, m): ... function yRotationMatrix (line 24) | def yRotationMatrix(y): ... function zRotationMatrix (line 25) | def zRotationMatrix(z): ... FILE: katana/stubs/GeoAPI/Util/__init__.pyi function __FlushCaches (line 11) | def __FlushCaches(): ... FILE: katana/stubs/GeoAPI/__init__.pyi function __GetCameraInfoWrapped (line 19) | def __GetCameraInfoWrapped(*args): ... function __GetLocalToScreenMatrixWrapped (line 20) | def __GetLocalToScreenMatrixWrapped(): ... function __GetProjectionMatrixWrapped (line 21) | def __GetProjectionMatrixWrapped(): ... FILE: katana/stubs/KatanaResources/ResourceFiles.pyi function DefaultResourcePath (line 8) | def DefaultResourcePath(subdir: Incomplete | None = ...): ... function GetIconPath (line 9) | def GetIconPath(name: str) -> str | None: ... function GetResourceFile (line 10) | def GetResourceFile(resourceName: str): ... function GetSearchPaths (line 11) | def GetSearchPaths(subdir: str = ...) -> list[str]: ... function GetUserKatanaPath (line 12) | def GetUserKatanaPath(subdir: str = ...) -> str: ... function Initialize (line 13) | def Initialize(): ... function InternalResourcePath (line 14) | def InternalResourcePath(subdir: Incomplete | None = ...): ... FILE: katana/stubs/LoggingAPI/__init__.pyi function BuildLogMesasgeWithCaller (line 5) | def BuildLogMesasgeWithCaller(message): ... function BuildLogMessageWithCaller (line 6) | def BuildLogMessageWithCaller(message, frameIndex: int = ...): ... FILE: katana/stubs/LookFileBakeAPI/Constants.pyi class OutputFormat (line 5) | class OutputFormat: FILE: katana/stubs/LookFileBakeAPI/Exceptions.pyi class LookFileBakeException (line 5) | class LookFileBakeException(RuntimeError): ... FILE: katana/stubs/LookFileBakeAPI/LookFileBaker.pyi class BakePrePostHandlerBase (line 17) | class BakePrePostHandlerBase: method notify (line 18) | def notify(self, assetId: str, rootLocationProducers: dict[str, PyFnGe... class LookFileBaker (line 20) | class LookFileBaker: method __init__ (line 30) | def __init__(self, outputFormatName: str) -> None: ... method _appendCelMatchOp (line 32) | def _appendCelMatchOp(op, txn): ... method _appendLightsDefaultValuesBackupOp (line 34) | def _appendLightsDefaultValuesBackupOp(op, txn, rootLocations): ... method _getModifiedPassProducer (line 36) | def _getModifiedPassProducer(op, rootLocations): ... method bake (line 37) | def bake(self, referenceOp: PyFnGeolib.GeolibRuntimeOp, passNamesAndOp... method bakeAndPublish (line 38) | def bakeAndPublish(self, referenceOp: PyFnGeolib.GeolibRuntimeOp, pass... FILE: katana/stubs/LookFileBakeAPI/LookFileUtil.pyi class DummyProducer (line 16) | class DummyProducer: method getAttribute (line 17) | def getAttribute(self, name): ... method getAttributeNames (line 18) | def getAttributeNames(self): ... method getFirstChild (line 19) | def getFirstChild(self): ... method getName (line 20) | def getName(self): ... method getType (line 21) | def getType(self): ... class LocationIntervalEvictor (line 23) | class LocationIntervalEvictor(TraversalObserverBase): method __init__ (line 24) | def __init__(self, interval: int = ...) -> None: ... method advance (line 25) | def advance(self, producer: PyFnGeolibProducers.GeometryProducer): ... method reset (line 26) | def reset(self): ... method __bool__ (line 27) | def __bool__(self) -> bool: ... class TraversalObserverBase (line 29) | class TraversalObserverBase: method advance (line 30) | def advance(self, producer: PyFnGeolibProducers.GeometryProducer): ... method reset (line 31) | def reset(self): ... function BuildCollectionsInfoDict (line 33) | def BuildCollectionsInfoDict(rootProducer): ... function BuildFullMaterialTree (line 34) | def BuildFullMaterialTree(rootProducer, progressCallback: typing.Optiona... function BuildSelectedMaterialTree (line 35) | def BuildSelectedMaterialTree(rootProducer, rootPath, progressCallback: ... function ConsolidateOverrides (line 36) | def ConsolidateOverrides(outputDicts: typing.Sequence[dict], progressCal... function ConstraintListDiff (line 37) | def ConstraintListDiff(producerA, producerB, rootLocation): ... function CreateLookFileDirectory (line 38) | def CreateLookFileDirectory(dirPath: str): ... function DeepAttrDiff (line 39) | def DeepAttrDiff(attrA, attrB, outputDict, attrPath: str = ...): ... function LightListDiff (line 40) | def LightListDiff(producerA, producerB, rootLocation): ... function ScenegraphHierarchyDiff (line 41) | def ScenegraphHierarchyDiff(producerA, producerB, materialsProducer, pro... function ScenegraphImmediateChildDiff (line 42) | def ScenegraphImmediateChildDiff(producerA, producerB, materialsProducer... function ScenegraphLocationDiff (line 43) | def ScenegraphLocationDiff(producerA, producerB, materialsProducer, mate... function WriteLookFile (line 44) | def WriteLookFile(filePath, outputDictList, materialDict, sharedOverride... function _ScenegraphHierarchyDiff (line 45) | def _ScenegraphHierarchyDiff(producerA, producerB, materialsProducer, lo... function _WalkMaterialLocation (line 46) | def _WalkMaterialLocation(producer: PyFnGeolibProducers.GeometryProducer... function _WalkMaterialLocations (line 47) | def _WalkMaterialLocations(parentProducer, materialDict, progressCallbac... FILE: katana/stubs/LookFileBakeAPI/OutputFormatAPI.pyi class BaseLookFileBakeOutputFormat (line 6) | class BaseLookFileBakeOutputFormat: method __init__ (line 11) | def __init__(self, settings: LookFileBakeSettings) -> None: ... method postProcess (line 12) | def postProcess(self, filePaths: list[str]) -> list[str]: ... method writeSinglePass (line 13) | def writeSinglePass(self, passData: LookFilePassData) -> list[str]: ... class LookFileBakeSettings (line 15) | class LookFileBakeSettings(_BaseSettings): method __init__ (line 16) | def __init__(self, settings: Incomplete | None = ...) -> None: ... class LookFilePassData (line 18) | class LookFilePassData(_BaseSettings): method __init__ (line 19) | def __init__(self, settings: Incomplete | None = ...) -> None: ... class _BaseSettings (line 21) | class _BaseSettings: method __getitem__ (line 22) | def __getitem__(self, key: str) -> Any: ... method __setitem__ (line 23) | def __setitem__(self, key: str, value: object) -> None: ... function GetDefaultOutputFormat (line 25) | def GetDefaultOutputFormat() -> BaseLookFileBakeOutputFormat | None: ... function GetOutputFormatByName (line 26) | def GetOutputFormatByName(outputFormatName: str) -> BaseLookFileBakeOutp... function GetOutputFormatFileExtensions (line 27) | def GetOutputFormatFileExtensions(includeHidden: bool = ...) -> list[str... function GetOutputFormatNames (line 28) | def GetOutputFormatNames(includeHidden: bool = ...) -> list[str]: ... function GetOutputFormats (line 29) | def GetOutputFormats(includeHidden: bool = ...) -> list[BaseLookFileBake... function RegisterOutputFormat (line 30) | def RegisterOutputFormat(outputFormat: BaseLookFileBakeOutputFormat): ... function SetDefaultOutputFormat (line 31) | def SetDefaultOutputFormat(outputFormat: BaseLookFileBakeOutputFormat): ... function UnregisterOutputFormat (line 32) | def UnregisterOutputFormat(outputFormat: BaseLookFileBakeOutputFormat | ... FILE: katana/stubs/LookFileBakeAPI/Utils.pyi function CheckRootLocations (line 13) | def CheckRootLocations(rootLocations: typing.Iterable[str], op: PyFnGeol... function FindSharedLodGroupLocations (line 14) | def FindSharedLodGroupLocations(rootLocations, origProducer) -> dict: ... function GetLookFileProducerRootId (line 15) | def GetLookFileProducerRootId(producer: PyFnGeolibProducers.GeometryProd... function GetProducerFromOp (line 16) | def GetProducerFromOp(op: PyFnGeolib.GeolibRuntimeOp) -> PyFnGeolibProdu... FILE: katana/stubs/MachineInfo/KatanaInfo.pyi function GetImageDiskMemoryMB (line 8) | def GetImageDiskMemoryMB(isBatch, customLogger: Incomplete | None = ...)... function GetImageMemoryMB (line 9) | def GetImageMemoryMB(isBatch, customLogger: Incomplete | None = ...): ... function GetRenderThreadCount (line 10) | def GetRenderThreadCount(): ... function GetRenderTileSize (line 11) | def GetRenderTileSize(customLogger: Incomplete | None = ...): ... FILE: katana/stubs/MachineInfo/MachineInfo.pyi function GetFreeSpaceB (line 5) | def GetFreeSpaceB(dirName): ... function GetNumberOfProcessors (line 6) | def GetNumberOfProcessors(quiet: bool = ..., raiseExc: bool = ...): ... function GetTotalMemoryKB (line 7) | def GetTotalMemoryKB(quiet: bool = ..., raiseExc: bool = ...): ... function GetUsedSpaceB (line 8) | def GetUsedSpaceB(dirName): ... FILE: katana/stubs/Main/__init__.pyi class SystemModuleFinder (line 13) | class SystemModuleFinder: method find_module (line 14) | def find_module(self, fullname: str, path: Incomplete | None = ...) ->... class SystemModuleLoader (line 16) | class SystemModuleLoader: method load_module (line 17) | def load_module(self, fullname: str) -> types.ModuleType | None: ... function ProcessEnvironmentVariables (line 19) | def ProcessEnvironmentVariables(): ... function __main (line 20) | def __main(): ... function disableSpecificWarnings (line 21) | def disableSpecificWarnings(): ... function excepthook (line 22) | def excepthook(exceptionType: type, exception: Exception, tb: types.Trac... function initDefaultRenderer (line 23) | def initDefaultRenderer(): ... function initNoQt (line 24) | def initNoQt(options): ... function initQt (line 25) | def initQt(): ... function initWithQt (line 26) | def initWithQt(options): ... function makeTmpDirectory (line 27) | def makeTmpDirectory(): ... FILE: katana/stubs/MediaCacheHandler/Core.pyi function CopyElementsToMediaCache (line 8) | def CopyElementsToMediaCache(elementList, deletionCB: Incomplete | None ... function DeleteElementFromMediaCache (line 9) | def DeleteElementFromMediaCache(localMediaElementDir): ... function GetElementProportionLocal (line 10) | def GetElementProportionLocal(element): ... function GetElementsSafeForDeletion (line 11) | def GetElementsSafeForDeletion(excludeElementDirs: Incomplete | None = .... function GetLocalElements (line 12) | def GetLocalElements(directory: Incomplete | None = ...): ... function GetMediaCacheFreeSpaceB (line 13) | def GetMediaCacheFreeSpaceB(): ... function GetMediaCacheSizeB (line 14) | def GetMediaCacheSizeB(): ... function GetTargetMediaCacheSizeB (line 15) | def GetTargetMediaCacheSizeB(): ... FILE: katana/stubs/MediaCacheHandler/DiskUtil.pyi function GetFreeSpaceB (line 5) | def GetFreeSpaceB(dirName): ... function GetMount (line 6) | def GetMount(dirName): ... function GetPrettySize (line 7) | def GetPrettySize(sizeInBytes): ... function GetTotalSizeOfMountB (line 8) | def GetTotalSizeOfMountB(dirName): ... function GetUsedSpaceB (line 9) | def GetUsedSpaceB(dirName): ... FILE: katana/stubs/MediaCacheHandler/ImageUtil.pyi function CopyExrWithTranscode (line 5) | def CopyExrWithTranscode(sourceFile, destFile, mipmap: bool = ..., round... FILE: katana/stubs/MediaCacheHandler/KatanaUtil.pyi function GetKatanaScriptInputs (line 5) | def GetKatanaScriptInputs(fileName): ... FILE: katana/stubs/Naming/SafeIdentifier.pyi function GetSafeIdentifier (line 5) | def GetSafeIdentifier(name: str) -> str: ... FILE: katana/stubs/Naming/UniqueName.pyi function GetUniqueName (line 6) | def GetUniqueName(name: str, checkcallback: typing.Callable) -> str: ... FILE: katana/stubs/NodeGraphView/Utility.pyi function CreateNodeAtActiveConnection (line 10) | def CreateNodeAtActiveConnection(layerStack: NodegraphWidget, nodeType: ... function FitBackdropAroundNodes (line 11) | def FitBackdropAroundNodes(nodeGraphWidget: UI4.Tabs.NodegraphWidget, no... function UpdateShadingGroupConnection (line 12) | def UpdateShadingGroupConnection(port: NodegraphAPI.Port): ... FILE: katana/stubs/NodegraphAPI/BypassParameterManager.pyi function EditBypassedStateExpression (line 8) | def EditBypassedStateExpression(node: NodegraphAPI.Node, parent: Incompl... function IsBypassedStateAnimated (line 9) | def IsBypassedStateAnimated(node: NodegraphAPI.Node) -> bool: ... function IsBypassedStateControlledByExpression (line 10) | def IsBypassedStateControlledByExpression(node: NodegraphAPI.Node) -> bo... FILE: katana/stubs/NodegraphAPI/ComplexConnector.pyi function connectFromGroupContents (line 12) | def connectFromGroupContents(currentOutPort, targetGroupNode): ... function connectToGroupContents (line 13) | def connectToGroupContents(currentOutPort, targetGroupNode): ... function connectToPortOutsideOfCurrentGroup (line 14) | def connectToPortOutsideOfCurrentGroup(producerPort, consumerPort): ... function findPathBetween (line 15) | def findPathBetween(sourcePort, destPort): ... function getNodeDepth (line 16) | def getNodeDepth(node: NodegraphAPI.Node): ... function getNodeListToRoot (line 17) | def getNodeListToRoot(node: NodegraphAPI.Node): ... function getUniqueName (line 18) | def getUniqueName(name, checkcallback): ... FILE: katana/stubs/NodegraphAPI/DynamicParameters.pyi function CreateGroupParameter (line 8) | def CreateGroupParameter(node: NodegraphAPI.Node, delimitedParameterName... function CreateNumberParameter (line 9) | def CreateNumberParameter(node: NodegraphAPI.Node, delimitedParameterNam... function CreateStringParameter (line 10) | def CreateStringParameter(node: NodegraphAPI.Node, delimitedParameterNam... function DeleteParameter (line 11) | def DeleteParameter(node: NodegraphAPI.Node, delimitedParameterName): ... FILE: katana/stubs/NodegraphAPI/ExpressionModule.pyi class ProjectSettings (line 18) | class ProjectSettings: method __init__ (line 20) | def __init__(self) -> None: ... method __getattr__ (line 21) | def __getattr__(self, attr): ... method assetID (line 23) | def assetID(self): ... method dir (line 25) | def dir(self): ... method file (line 27) | def file(self): ... method originalAssetID (line 29) | def originalAssetID(self): ... class _ParamRef (line 31) | class _ParamRef: method __init__ (line 32) | def __init__(self, param) -> None: ... method getChildren (line 33) | def getChildren(self): ... method getNode (line 34) | def getNode(self) -> NodegraphAPI.Node: ... method getNodeName (line 35) | def getNodeName(self): ... method getParent (line 36) | def getParent(self): ... method isNumber (line 37) | def isNumber(self): ... method __abs__ (line 38) | def __abs__(self): ... method __add__ (line 39) | def __add__(self, other): ... method __bool__ (line 40) | def __bool__(self) -> bool: ... method __call__ (line 41) | def __call__(self, time: Incomplete | None = ...): ... method __div__ (line 42) | def __div__(self, other): ... method __divmod__ (line 43) | def __divmod__(self, other): ... method __eq__ (line 44) | def __eq__(self, other) -> bool: ... method __float__ (line 45) | def __float__(self) -> float: ... method __floordiv__ (line 46) | def __floordiv__(self, other): ... method __getattr__ (line 47) | def __getattr__(self, attr): ... method __getitem__ (line 48) | def __getitem__(self, key): ... method __int__ (line 49) | def __int__(self) -> int: ... method __iter__ (line 50) | def __iter__(self): ... method __len__ (line 51) | def __len__(self) -> int: ... method __lt__ (line 52) | def __lt__(self, other) -> bool: ... method __mod__ (line 53) | def __mod__(self, other): ... method __mul__ (line 54) | def __mul__(self, other): ... method __neg__ (line 55) | def __neg__(self): ... method __pos__ (line 56) | def __pos__(self): ... method __pow__ (line 57) | def __pow__(self, other, modulo: Incomplete | None = ...): ... method __radd__ (line 58) | def __radd__(self, other): ... method __rdiv__ (line 59) | def __rdiv__(self, other): ... method __rdivmod__ (line 60) | def __rdivmod__(self, other): ... method __rfloordiv__ (line 61) | def __rfloordiv__(self, other): ... method __rmod__ (line 62) | def __rmod__(self, other): ... method __rmul__ (line 63) | def __rmul__(self, other): ... method __rpow__ (line 64) | def __rpow__(self, other): ... method __rsub__ (line 65) | def __rsub__(self, other): ... method __rtruediv__ (line 66) | def __rtruediv__(self, other): ... method __sub__ (line 67) | def __sub__(self, other): ... method __truediv__ (line 68) | def __truediv__(self, other): ... function FCurveLookup (line 70) | def FCurveLookup(curveFile, curveName, frame): ... function GetExpressionGlobalValue (line 71) | def GetExpressionGlobalValue(name: str): ... function SetExpressionGlobalValue (line 72) | def SetExpressionGlobalValue(name: str, value): ... function SetupExpressionGlobalScopeFromRootNode (line 73) | def SetupExpressionGlobalScopeFromRootNode(): ... FILE: katana/stubs/NodegraphAPI/Flavor.pyi function AddNodeFlavor (line 8) | def AddNodeFlavor(nodeType, flavor): ... function ClearFlavorNodes (line 9) | def ClearFlavorNodes(flavor): ... function GetAllFlavors (line 10) | def GetAllFlavors(): ... function GetFlavorNodes (line 11) | def GetFlavorNodes(flavor, filterExists: bool = ...): ... function GetNodeFlavors (line 12) | def GetNodeFlavors(nodeType): ... function NodeMatchesFlavors (line 13) | def NodeMatchesFlavors(nodeType, flavors, ignoreFlavors): ... function RemoveNodeFlavor (line 14) | def RemoveNodeFlavor(nodeType, flavor): ... FILE: katana/stubs/NodegraphAPI/GroupStack.pyi class GroupStackNode (line 11) | class GroupStackNode(NodegraphAPI_cmodule.PythonGroupNode): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method allowChildReparentingViaDrag (line 14) | def allowChildReparentingViaDrag(self, childNode): ... method buildChildNode (line 15) | def buildChildNode(self, adoptNode: Incomplete | None = ...): ... method canAdoptNodes (line 16) | def canAdoptNodes(self, nodes): ... method deleteChildNode (line 17) | def deleteChildNode(self, childNode): ... method getChildNodeType (line 18) | def getChildNodeType(self): ... method getChildNodes (line 19) | def getChildNodes(self): ... method getDefaultNodeShapeAttrs (line 20) | def getDefaultNodeShapeAttrs(self): ... method getDisplayNameExpression (line 21) | def getDisplayNameExpression(self): ... method getDisplayNameForChildNode (line 22) | def getDisplayNameForChildNode(self, childNode): ... method getInfoString (line 23) | def getInfoString(self): ... method positionChildNodes (line 24) | def positionChildNodes(self): ... method preprocessChildReparentingViaDrag (line 25) | def preprocessChildReparentingViaDrag(self, childNode): ... method reorderChildNode (line 26) | def reorderChildNode(self, fromIndex, toIndex): ... method setChildNodeType (line 27) | def setChildNodeType(self, nodeType): ... method setDisplayNameExpression (line 28) | def setDisplayNameExpression(self, exprText): ... method setExplicitChildOrder (line 29) | def setExplicitChildOrder(self, childNodeList): ... FILE: katana/stubs/NodegraphAPI/InteractiveRenderFilters.pyi class InteractiveRenderFiltersNode (line 8) | class InteractiveRenderFiltersNode(NodegraphAPI.GroupStack.GroupStackNode): method __init__ (line 9) | def __init__(self) -> None: ... method addParameterHints (line 10) | def addParameterHints(self, attrName, inputDict): ... method getDisplayNameForChildNode (line 11) | def getDisplayNameForChildNode(self, child): ... FILE: katana/stubs/NodegraphAPI/LiveGroup.pyi class AssetPublishing (line 25) | class AssetPublishing: method __init__ (line 30) | def __init__(self) -> None: ... method errorMessageDialogsEnabled (line 31) | def errorMessageDialogsEnabled(self) -> bool: ... method getAssetType (line 32) | def getAssetType(self) -> str | None: ... method getErrorMessage (line 33) | def getErrorMessage(self) -> str | None: ... method getExtraOptions (line 34) | def getExtraOptions(self) -> dict: ... method getFilenameOrAssetIdToPublish (line 35) | def getFilenameOrAssetIdToPublish(self) -> str | None: ... method getNodeName (line 36) | def getNodeName(self) -> str | None: ... method getPublishedFilenameOrAssetID (line 37) | def getPublishedFilenameOrAssetID(self) -> str | None: ... method getState (line 38) | def getState(self) -> int: ... method isErrorLoggingEnabled (line 39) | def isErrorLoggingEnabled(self) -> bool: ... method isOverwriteAssetEnabled (line 40) | def isOverwriteAssetEnabled(self) -> bool: ... method isSuccessLoggingEnabled (line 41) | def isSuccessLoggingEnabled(self) -> bool: ... method setAssetType (line 42) | def setAssetType(self, assetType: str | None): ... method setErrorLoggingEnabled (line 43) | def setErrorLoggingEnabled(self, errorLoggingEnabled: bool): ... method setErrorMessage (line 44) | def setErrorMessage(self, errorMessage: str | None): ... method setErrorMessageDialogsEnabled (line 45) | def setErrorMessageDialogsEnabled(self, errorMessageDialogsEnabled: bo... method setExtraOptions (line 46) | def setExtraOptions(self, extraOptions: dict): ... method setFilenameOrAssetIdToPublish (line 47) | def setFilenameOrAssetIdToPublish(self, filenameOrAssetIdToPublish: st... method setNodeName (line 48) | def setNodeName(self, nodeName: str | None): ... method setOverwriteAssetEnabled (line 49) | def setOverwriteAssetEnabled(self, overwriteAssetEnabled: bool): ... method setPublishedFilenameOrAssetID (line 50) | def setPublishedFilenameOrAssetID(self, publishedFilenameOrAssetID: st... method setState (line 51) | def setState(self, state: int): ... method setSuccessLoggingEnabled (line 52) | def setSuccessLoggingEnabled(self, successLoggingEnabled: bool): ... class LiveGroupMixin (line 54) | class LiveGroupMixin: method __init__ (line 67) | def __init__(self) -> None: ... method _LiveGroupMixin__adoptPortConfiguration (line 68) | def _LiveGroupMixin__adoptPortConfiguration(self, node: NodegraphAPI.N... method _LiveGroupMixin__canChangeStateTo (line 69) | def _LiveGroupMixin__canChangeStateTo(self, editable): ... method _LiveGroupMixin__makeEditable (line 70) | def _LiveGroupMixin__makeEditable(self): ... method _LiveGroupMixin__makeNonEditable (line 71) | def _LiveGroupMixin__makeNonEditable(self): ... method _LiveGroupMixin__mergeParameters (line 72) | def _LiveGroupMixin__mergeParameters(self, loadedGroup): ... method _LiveGroupMixin__removeChildren (line 73) | def _LiveGroupMixin__removeChildren(self): ... method _LiveGroupMixin__reparentChildren (line 74) | def _LiveGroupMixin__reparentChildren(self, loadedGroup): ... method _isSourcelessLiveGroupModified (line 75) | def _isSourcelessLiveGroupModified(self) -> bool: ... method _load (line 76) | def _load(self, forceLoad: bool, forceNonEditable: bool = ...): ... method _setEditable (line 77) | def _setEditable(self, editable: bool, updateContentLock: bool = ...) ... method _setLiveGroupState (line 78) | def _setLiveGroupState(self, liveGroupState: int): ... method _setLiveGroupStateToEditable (line 79) | def _setLiveGroupStateToEditable(self): ... method _updateContentLock (line 80) | def _updateContentLock(self): ... method _updateLiveGroupState (line 81) | def _updateLiveGroupState(self, childLiveGroupNode: LiveGroupNode, pre... method _updateShapeAttributes (line 82) | def _updateShapeAttributes(self): ... method getLastSource (line 83) | def getLastSource(self): ... method getNestedLiveGroupNodes (line 84) | def getNestedLiveGroupNodes(self) -> list: ... method getSourceFile (line 85) | def getSourceFile(self) -> str: ... method getSourceName (line 86) | def getSourceName(self) -> str: ... method hasEditableLiveGroupChildren (line 87) | def hasEditableLiveGroupChildren(self) -> bool: ... method hasModifiedLiveGroupChildren (line 88) | def hasModifiedLiveGroupChildren(self) -> bool: ... method isDisabledByParameter (line 89) | def isDisabledByParameter(self) -> bool: ... method isEditable (line 90) | def isEditable(self) -> bool: ... method setAttributes (line 91) | def setAttributes(self, attrs: dict): ... method setSource (line 92) | def setSource(self, filenameOrAssetID: str, loadFromSource: bool = ...... class LiveGroupNode (line 94) | class LiveGroupNode(NodegraphAPI_cmodule.PythonGroupNode, LiveGroupMixin): method __init__ (line 96) | def __init__(self) -> None: ... method _LiveGroupNode__resolveLiveGroupReferences (line 97) | def _LiveGroupNode__resolveLiveGroupReferences(self, documentElement: ... method _calculateContentHash (line 98) | def _calculateContentHash(self): ... method _hasContentChanged (line 99) | def _hasContentChanged(self): ... method _sourceAssetIdIsFilePath (line 100) | def _sourceAssetIdIsFilePath(self): ... method _updateContentHash (line 101) | def _updateContentHash(self): ... method _updateContentLock (line 102) | def _updateContentLock(self): ... method addParameterHints (line 103) | def addParameterHints(self, attrName, inputDict): ... method convertToGroup (line 104) | def convertToGroup(self): ... method exportAsset (line 105) | def exportAsset(self, filenameOrAssetID: str, extraOptions: Incomplete... method getGroupXmlIO (line 106) | def getGroupXmlIO(self) -> Document: ... method hasContentChanged (line 107) | def hasContentChanged(self): ... method isModified (line 108) | def isModified(self) -> bool: ... method load (line 109) | def load(self, lockResult: bool = ..., forceLoad: bool = ..., forceNon... method makeEditable (line 110) | def makeEditable(self, includingAllParents: bool = ...) -> bool: ... method publishAndLoadAsset (line 111) | def publishAndLoadAsset(self, filenameOrAssetID: Incomplete | None = .... method publishAsset (line 112) | def publishAsset(self, filenameOrAssetID: Incomplete | None = ..., ext... method publishAssetAndFinishEditingContents (line 113) | def publishAssetAndFinishEditingContents(self, filenameOrAssetID: Inco... method reloadFromSource (line 114) | def reloadFromSource(self) -> bool: ... method revert (line 115) | def revert(self) -> bool: ... method setAttributes (line 116) | def setAttributes(self, attrs: dict): ... method setLocked (line 117) | def setLocked(self, locked: bool): ... method writeToAsset (line 118) | def writeToAsset(self, filenameOrAssetID, extraOptions: Incomplete | N... class LiveGroupStack (line 120) | class LiveGroupStack(NodegraphAPI.GroupStack.GroupStackNode, LiveGroupMi... method __init__ (line 121) | def __init__(self) -> None: ... method addParameterHints (line 122) | def addParameterHints(self, attrName, inputDict): ... method allowChildReparentingViaDrag (line 123) | def allowChildReparentingViaDrag(self, childNode): ... method buildChildNode (line 124) | def buildChildNode(self, adoptNode: Incomplete | None = ...): ... method canAdoptNodes (line 125) | def canAdoptNodes(self, nodes): ... method deleteChildNode (line 126) | def deleteChildNode(self, childNode): ... method load (line 127) | def load(self, lockResult: bool = ..., forceLoad: bool = ..., forceNon... method preprocessChildReparentingViaDrag (line 128) | def preprocessChildReparentingViaDrag(self, childNode): ... method reorderChildNode (line 129) | def reorderChildNode(self, fromIndex, toIndex): ... class UndoConvertGroupToLiveGroup (line 131) | class UndoConvertGroupToLiveGroup(Utils.UndoStack.UndoEntry): method __init__ (line 132) | def __init__(self, groupNodeName, liveGroupNodeName) -> None: ... method getName (line 133) | def getName(self) -> str: ... method redo (line 134) | def redo(self): ... method undo (line 135) | def undo(self): ... class UndoConvertLiveGroupToGroup (line 137) | class UndoConvertLiveGroupToGroup(Utils.UndoStack.UndoEntry): method __init__ (line 138) | def __init__(self, groupNodeName, liveGroupNodeName, filenameOrAssetID... method getName (line 139) | def getName(self) -> str: ... method redo (line 140) | def redo(self): ... method undo (line 141) | def undo(self): ... function CalculateLiveGroupDepth (line 143) | def CalculateLiveGroupDepth(liveGroupNode: LiveGroupMixin | NodegraphAPI... function CanBeDifferentFromSource (line 144) | def CanBeDifferentFromSource(liveGroupNode: LiveGroupMixin) -> bool: ... function ConvertGroupToLiveGroup (line 145) | def ConvertGroupToLiveGroup(groupNode): ... function IsLiveGroupCachingEnabled (line 146) | def IsLiveGroupCachingEnabled(): ... function IsLiveGroupLoadingEnabled (line 147) | def IsLiveGroupLoadingEnabled(): ... function LoadAllLiveGroups (line 148) | def LoadAllLiveGroups(node: NodegraphAPI.Node, lockResult: bool = ..., f... function LockAllLiveGroups (line 149) | def LockAllLiveGroups(node: NodegraphAPI.Node): ... function MakeAllLiveGroupsEditable (line 150) | def MakeAllLiveGroupsEditable(node: NodegraphAPI.Node): ... function MakeAllParentLiveGroupsEditable (line 151) | def MakeAllParentLiveGroupsEditable(node: NodegraphAPI.Node) -> bool: ... function SetLiveGroupCachingEnabled (line 152) | def SetLiveGroupCachingEnabled(liveGroupCachingEnabled): ... function SetLiveGroupLoadingEnabled (line 153) | def SetLiveGroupLoadingEnabled(state): ... function UpdateAllLiveGroupSources (line 154) | def UpdateAllLiveGroupSources(oldSource: str, newSource: str): ... FILE: katana/stubs/NodegraphAPI/NodeDelegateManager.pyi class SuperDelegate (line 6) | class SuperDelegate: method processNodeCreate (line 7) | def processNodeCreate(self, node: NodegraphAPI.Node): ... function RegisterSuperDelegate (line 9) | def RegisterSuperDelegate(delegate): ... FILE: katana/stubs/NodegraphAPI/NodeExtensions.pyi function DeleteNodeShapeAttr (line 10) | def DeleteNodeShapeAttr(node: NodegraphAPI.Node, attrName): ... function GetAllActiveAttributeEditorNodes (line 11) | def GetAllActiveAttributeEditorNodes(): ... function GetAllEditedNodes (line 12) | def GetAllEditedNodes() -> list[NodegraphAPI.Node]: ... function GetAllFloatingNodes (line 13) | def GetAllFloatingNodes() -> list[NodegraphAPI.Node]: ... function GetAllSelectedNodes (line 14) | def GetAllSelectedNodes() -> list[NodegraphAPI.Node]: ... function GetAllSelectedNodesAndParent (line 15) | def GetAllSelectedNodesAndParent(): ... function GetAllThumbnailEnabledNodes (line 16) | def GetAllThumbnailEnabledNodes(): ... function GetMenuPath (line 17) | def GetMenuPath(nodeType): ... function GetNodeComment (line 18) | def GetNodeComment(node: NodegraphAPI.Node) -> str: ... function GetNodeModTime (line 19) | def GetNodeModTime(node: NodegraphAPI.Node) -> int: ... function GetNodeParameter (line 20) | def GetNodeParameter(node: NodegraphAPI.Node, param): ... function GetNodePosition (line 21) | def GetNodePosition(node: NodegraphAPI.Node) -> Tuple[int, int]: ... function GetNodeShapeAttr (line 22) | def GetNodeShapeAttr(node: NodegraphAPI.Node, attrName): ... function GetNodeShapeAttrs (line 23) | def GetNodeShapeAttrs(node: NodegraphAPI.Node): ... function GetViewNode (line 24) | def GetViewNode() -> NodegraphAPI.Node | None: ... function GetViewNodes (line 25) | def GetViewNodes() -> NodegraphAPI.Node | None: ... function GetViewPortPosition (line 26) | def GetViewPortPosition(node: NodegraphAPI.GroupNode) -> Tuple[Tuple[int... function IsAttributeEditorNodeActive (line 27) | def IsAttributeEditorNodeActive(node: NodegraphAPI.Node): ... function IsNodeEdited (line 28) | def IsNodeEdited(node: NodegraphAPI.Node) -> bool: ... function IsNodeFloating (line 29) | def IsNodeFloating(node: NodegraphAPI.Node) -> bool: ... function IsNodeHidden (line 30) | def IsNodeHidden(node: NodegraphAPI.Node): ... function IsNodeLockedByParents (line 31) | def IsNodeLockedByParents(node: NodegraphAPI.Node | None) -> bool: ... function IsNodeSelected (line 32) | def IsNodeSelected(node: NodegraphAPI.Node) -> bool: ... function IsNodeThumbnailEnabled (line 33) | def IsNodeThumbnailEnabled(node: NodegraphAPI.Node): ... function IsNodeViewed (line 34) | def IsNodeViewed(node: NodegraphAPI.Node) -> bool: ... function Register_NewNode_CB (line 35) | def Register_NewNode_CB(fcn): ... function SetAllSelectedNodes (line 36) | def SetAllSelectedNodes(nodelist: typing.Sequence[NodegraphAPI.Node]): ... function SetAttributeEditorNodeActive (line 37) | def SetAttributeEditorNodeActive(node: NodegraphAPI.Node, active): ... function SetMenuPath (line 38) | def SetMenuPath(nodeType, path): ... function SetNodeComment (line 39) | def SetNodeComment(node: NodegraphAPI.Node, comment): ... function SetNodeEdited (line 40) | def SetNodeEdited(node: NodegraphAPI.Node, edited: bool, exclusive: bool... function SetNodeFloating (line 41) | def SetNodeFloating(node: NodegraphAPI.Node, flag: bool): ... function SetNodeHidden (line 42) | def SetNodeHidden(node: NodegraphAPI.Node, hide): ... function SetNodeModTime (line 43) | def SetNodeModTime(node: NodegraphAPI.Node, modTime: int): ... function SetNodeParameter (line 44) | def SetNodeParameter(node: NodegraphAPI.Node, param, value): ... function SetNodePosition (line 45) | def SetNodePosition(node: NodegraphAPI.Node, xy: Tuple[int, int]): ... function SetNodeSelected (line 46) | def SetNodeSelected(node: NodegraphAPI.Node, selected: bool): ... function SetNodeShapeAttr (line 47) | def SetNodeShapeAttr(node: NodegraphAPI.Node, attrName, attrValue): ... function SetNodeShapeNodeAttrs (line 48) | def SetNodeShapeNodeAttrs(node: NodegraphAPI.Node, attrDict): ... function SetNodeThumbnailEnabled (line 49) | def SetNodeThumbnailEnabled(node: NodegraphAPI.Node, enabled): ... function SetNodeViewed (line 50) | def SetNodeViewed(node: NodegraphAPI.Node, viewed: bool, exclusive: bool... function SetViewPortPosition (line 51) | def SetViewPortPosition(node: NodegraphAPI.GroupNode, eyepoint: Tuple[in... FILE: katana/stubs/NodegraphAPI/NodeGraphViewExtensions.pyi function GetAttributes (line 7) | def GetAttributes(_node): ... function GetPortAttributes (line 8) | def GetPortAttributes(node: NodegraphAPI.Node, port: NodegraphAPI.Port) ... function NewNode (line 9) | def NewNode(_node): ... function SetAttributes (line 10) | def SetAttributes(_node, attrs): ... FILE: katana/stubs/NodegraphAPI/NodeNameFromParamManager.pyi function GetParamNameForNodeType (line 8) | def GetParamNameForNodeType(nodeType): ... function IsNodeNameFromParam (line 9) | def IsNodeNameFromParam(nodeType): ... function RegisterNodeNameFromParam (line 10) | def RegisterNodeNameFromParam(nodeType: str, paramName: str, capitalize:... function UpdateNodeNameFromParam (line 11) | def UpdateNodeNameFromParam(node: NodegraphAPI.Node): ... FILE: katana/stubs/NodegraphAPI/NodeXmlIO.pyi function BuildNodegraphXmlIO (line 18) | def BuildNodegraphXmlIO(forcePersistant: bool = ..., opaqueParams: Incom... function BuildNodesXmlIO (line 19) | def BuildNodesXmlIO(nodes: list[NodegraphAPI.Node], forcePersistant: boo... function GetUserNodesXmlRootAttrs (line 20) | def GetUserNodesXmlRootAttrs(): ... function LoadElementsFromFile (line 21) | def LoadElementsFromFile(fileName, versionUp: bool = ...): ... function LoadElementsFromString (line 22) | def LoadElementsFromString(xmlString, versionUp: bool = ...): ... function ParseNodegraphXmlIO (line 23) | def ParseNodegraphXmlIO(element: PyXmlIO.Element, sourcePath: str = ...,... function ParseNodesXmlIO (line 24) | def ParseNodesXmlIO(element: PyXmlIO.Element, emit: bool = ..., floatNod... function SetUserNodesXmlRootAttrs (line 25) | def SetUserNodesXmlRootAttrs(attrDict): ... FILE: katana/stubs/NodegraphAPI/NodegraphChangedEvents.pyi function DoesNodeEffectViewNodes (line 26) | def DoesNodeEffectViewNodes(node: NodegraphAPI.Node) -> bool: ... function __filter_nodegraph_changed (line 27) | def __filter_nodegraph_changed(eventType, eventID, **kwargs): ... function __filter_nodegraph_changed_affects2DRender (line 28) | def __filter_nodegraph_changed_affects2DRender(eventType, eventID, **kwa... function __on_event_idle (line 29) | def __on_event_idle(eventType, eventID, **kwargs): ... function __on_node_setViewed (line 30) | def __on_node_setViewed(eventType, eventID, node: typing.Optional[Nodegr... FILE: katana/stubs/NodegraphAPI/NodegraphGlobals.pyi function CheckNodeType (line 17) | def CheckNodeType(node: NodegraphAPI.Node, stringOrClassTypes): ... function GetAutoKeyAll (line 18) | def GetAutoKeyAll() -> bool: ... function GetCurrentTime (line 19) | def GetCurrentTime() -> float: ... function GetInTime (line 20) | def GetInTime() -> float: ... function GetKatanaSceneName (line 21) | def GetKatanaSceneName() -> str | None: ... function GetNodegraphVersionString (line 22) | def GetNodegraphVersionString(xmlString) -> str: ... function GetOriginalProjectAssetID (line 23) | def GetOriginalProjectAssetID() -> str: ... function GetOriginalSourceFile (line 24) | def GetOriginalSourceFile() -> str: ... function GetOutTime (line 25) | def GetOutTime() -> float: ... function GetProjectAssetID (line 26) | def GetProjectAssetID() -> str: ... function GetProjectDir (line 27) | def GetProjectDir() -> str: ... function GetProjectFile (line 28) | def GetProjectFile() -> str: ... function GetRootNode (line 29) | def GetRootNode() -> NodegraphAPI.GroupNode: ... function GetSourceFile (line 30) | def GetSourceFile() -> str: ... function GetTimeIncrement (line 31) | def GetTimeIncrement() -> float: ... function GetWorkingInTime (line 32) | def GetWorkingInTime() -> float: ... function GetWorkingOutTime (line 33) | def GetWorkingOutTime() -> float: ... function IsLoading (line 34) | def IsLoading() -> bool: ... function IsLoadingAsync (line 35) | def IsLoadingAsync() -> bool: ... function LoadXmlFromFile (line 36) | def LoadXmlFromFile(fileName): ... function LoadXmlFromString (line 37) | def LoadXmlFromString(stringData): ... function NeedsRedraw (line 38) | def NeedsRedraw(): ... function NewNodegraph (line 39) | def NewNodegraph(): ... function RegisterNodegraphChangedEvents (line 40) | def RegisterNodegraphChangedEvents(): ... function ResetAllFloatingCurves (line 41) | def ResetAllFloatingCurves(): ... function SetAutoKeyAll (line 42) | def SetAutoKeyAll(autoKeyAll: bool): ... function SetCurrentTime (line 43) | def SetCurrentTime(newTime: float, final: bool = ...): ... function SetInTime (line 44) | def SetInTime(inTime: float, final: bool = ...): ... function SetKatanaSceneName (line 45) | def SetKatanaSceneName(katanaSceneName): ... function SetNeedsRedraw (line 46) | def SetNeedsRedraw(state): ... function SetOriginalProjectAssetID (line 47) | def SetOriginalProjectAssetID(originalProjectAssetID): ... function SetOriginalSourceFile (line 48) | def SetOriginalSourceFile(originalSourceName): ... function SetOutTime (line 49) | def SetOutTime(outTime: float, final: bool = ...): ... function SetProjectAssetID (line 50) | def SetProjectAssetID(filenameOrAssetID: str): ... function SetRootNode (line 51) | def SetRootNode(newNode): ... function SetSourceFile (line 52) | def SetSourceFile(filenameOrAssetID: str): ... function SetTimeIncrement (line 53) | def SetTimeIncrement(incTime: float, final: bool = ...): ... function SetWorkingInTime (line 54) | def SetWorkingInTime(workingInTime: float, final: bool = ...): ... function SetWorkingOutTime (line 55) | def SetWorkingOutTime(workingOutTime: float, final: bool = ...): ... function UpdatePluginsFromGlobals (line 56) | def UpdatePluginsFromGlobals(): ... function WriteKatanaFile (line 57) | def WriteKatanaFile(filename: str, element: PyXmlIO.Element, compress: b... function WriteKatanaString (line 58) | def WriteKatanaString(element: PyXmlIO.Element, compress: bool = ..., ar... FILE: katana/stubs/NodegraphAPI/ParameterValueOption.pyi class ParameterValueOption (line 5) | class ParameterValueOption: method __init__ (line 6) | def __init__(self, *values) -> None: ... method __eq__ (line 7) | def __eq__(self, value: str) -> bool: ... method __ne__ (line 8) | def __ne__(self, value: str) -> bool: ... FILE: katana/stubs/NodegraphAPI/PythonRenderScript.pyi class PythonRenderScript (line 8) | class PythonRenderScript(NodegraphAPI_cmodule.PythonNode): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getActiveContexts (line 14) | def getActiveContexts(self): ... method postRenderPublish (line 15) | def postRenderPublish(self, versionup): ... method preRenderPublish (line 16) | def preRenderPublish(self, versionup): ... method renderFrame (line 17) | def renderFrame(self, graphState: NodegraphAPI.GraphState): ... FILE: katana/stubs/NodegraphAPI/RenderFilter.pyi class RenderFilterNode (line 8) | class RenderFilterNode(NodegraphAPI.GroupStack.GroupStackNode): method __init__ (line 9) | def __init__(self) -> None: ... method addParameterHints (line 10) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/NodegraphAPI/RenderScript.pyi class RenderScriptNode (line 9) | class RenderScriptNode(NodegraphAPI_cmodule.PythonNode): method __init__ (line 10) | def __init__(self) -> None: ... method addParameterHints (line 11) | def addParameterHints(self, attrName, inputDict): ... method getOutlineOutputInfo (line 12) | def getOutlineOutputInfo(self): ... FILE: katana/stubs/NodegraphAPI/StructuredPorts.pyi class StructuredPort (line 6) | class StructuredPort: method __init__ (line 7) | def __init__(self, node: NodegraphAPI.Node, port: NodegraphAPI.Port, n... method getBarCode (line 8) | def getBarCode(self): ... method getChildren (line 9) | def getChildren(self): ... method getChildrenIter (line 10) | def getChildrenIter(self): ... method getFullName (line 11) | def getFullName(self): ... method getName (line 12) | def getName(self): ... method getParent (line 13) | def getParent(self): ... method getRawPort (line 14) | def getRawPort(self): ... method getType (line 15) | def getType(self): ... class _NodePortQuery (line 17) | class _NodePortQuery: method __init__ (line 18) | def __init__(self, node: NodegraphAPI.Node, isInput) -> None: ... method getNode (line 19) | def getNode(self) -> NodegraphAPI.Node: ... method getPort (line 20) | def getPort(self, name): ... method getPorts (line 21) | def getPorts(self): ... function GetStructuredInputPorts (line 23) | def GetStructuredInputPorts(node: NodegraphAPI.Node): ... function GetStructuredOutputPorts (line 24) | def GetStructuredOutputPorts(node: NodegraphAPI.Node): ... function GetStructuredPort (line 25) | def GetStructuredPort(port: NodegraphAPI.Port): ... FILE: katana/stubs/NodegraphAPI/SuperTool.pyi class SuperTool (line 11) | class SuperTool(NodegraphAPI_cmodule.PythonGroupNode): method __init__ (line 12) | def __init__(self) -> None: ... method getNodesCreatingSceneGraphLocations (line 13) | def getNodesCreatingSceneGraphLocations(self) -> list[NodegraphAPI.Nod... method hideNodegraphGroupControls (line 14) | def hideNodegraphGroupControls(self): ... method isChildNodePersistent (line 15) | def isChildNodePersistent(self, node: NodegraphAPI.Node) -> bool: ... method isUserParameterEditingAllowed (line 16) | def isUserParameterEditingAllowed(self) -> bool: ... method polish (line 17) | def polish(self): ... method superToolRegistered (line 19) | def superToolRegistered(cls): ... function RegisterSuperTool (line 21) | def RegisterSuperTool(name, superToolClass): ... FILE: katana/stubs/NodegraphAPI/UserParameters.pyi class UserParameterError (line 10) | class UserParameterError(RuntimeError): ... function CreateButton (line 12) | def CreateButton(node: NodegraphAPI.Node, name, text: str = ..., script:... function CreateColor (line 13) | def CreateColor(node: NodegraphAPI.Node, name): ... function CreateGroup (line 14) | def CreateGroup(node: NodegraphAPI.Node, name): ... function CreateNumber (line 15) | def CreateNumber(node: NodegraphAPI.Node, name): ... function CreateNumberArray (line 16) | def CreateNumberArray(node: NodegraphAPI.Node, name): ... function CreateString (line 17) | def CreateString(node: NodegraphAPI.Node, name): ... function CreateStringArray (line 18) | def CreateStringArray(node: NodegraphAPI.Node, name): ... function Delete (line 19) | def Delete(node: NodegraphAPI.Node, name): ... function DeleteLiveUserParameter (line 20) | def DeleteLiveUserParameter(node: NodegraphAPI.Node): ... function DeleteUserParameter (line 21) | def DeleteUserParameter(node: NodegraphAPI.Node): ... function ExecuteButton (line 22) | def ExecuteButton(node: NodegraphAPI.Node, name): ... function GetLiveUserParameter (line 23) | def GetLiveUserParameter(node: NodegraphAPI.Node, createIfMissing: bool ... function GetUserParameter (line 24) | def GetUserParameter(node: NodegraphAPI.Node): ... FILE: katana/stubs/NodegraphAPI/Util.pyi function BakeParameterToFCurve (line 10) | def BakeParameterToFCurve(param, times): ... function CollapseToGroup (line 11) | def CollapseToGroup(nodes): ... function DeleteAllNonContributingNodes (line 12) | def DeleteAllNonContributingNodes(outputNodes: Incomplete | None = ..., ... function DuplicateNodes (line 13) | def DuplicateNodes(nodes, keepConnections: bool = ...): ... function GenericParameterReset (line 14) | def GenericParameterReset(node: NodegraphAPI.Node): ... function GetAllConnectedInputs (line 15) | def GetAllConnectedInputs(sourceNodes, asList: bool = ...): ... function GetAllConnectedOutputs (line 16) | def GetAllConnectedOutputs(sourceNodes, returnArray: Incomplete | None =... function GetAllContributingNodes (line 17) | def GetAllContributingNodes(outputNodes: Incomplete | None = ...): ... function GetDescendants (line 18) | def GetDescendants(nodes): ... function GetExpressionReference (line 19) | def GetExpressionReference(nodeName, paramName): ... function GetExpressionedDuplicates (line 20) | def GetExpressionedDuplicates(sourceNodes, deepClone: bool = ...): ... function IsSpecifiedNodeTypeAnAncestor (line 21) | def IsSpecifiedNodeTypeAnAncestor(node: NodegraphAPI.Node, nodeTypes: li... function IsSpecifiedNodeTypeUpstream (line 22) | def IsSpecifiedNodeTypeUpstream(node: NodegraphAPI.Node, nodeTypes, chec... function IsolateNode (line 23) | def IsolateNode(node: NodegraphAPI.Node): ... function ParameterReset (line 24) | def ParameterReset(node: NodegraphAPI.Node): ... function ReorderInputPorts (line 25) | def ReorderInputPorts(node: NodegraphAPI.Node, oldPos, newPos): ... function ReorderOutputPorts (line 26) | def ReorderOutputPorts(node: NodegraphAPI.Node, oldPos, newPos): ... function WriteCurveXML (line 27) | def WriteCurveXML(curve): ... FILE: katana/stubs/NodegraphAPI/Version/Registry.pyi function GetCurrentNodeTypeVersion (line 9) | def GetCurrentNodeTypeVersion(nodeTypeName): ... function GetFcnStack (line 10) | def GetFcnStack(oldVersion, currentVersion): ... function GetNodeTypeVersionUpdateFunctions (line 11) | def GetNodeTypeVersionUpdateFunctions(nodeTypeName, nodeTypeVersionToUpd... function HasAnyNodeTypeVersionUpdateFunctions (line 12) | def HasAnyNodeTypeVersionUpdateFunctions(): ... function RegisterVersionScript (line 13) | def RegisterVersionScript(versionTag, fcn, scriptType): ... function SetCurrentNodeTypeVersion (line 14) | def SetCurrentNodeTypeVersion(nodeTypeName, currentNodeTypeVersion): ... function SetNodeTypeVersionUpdateFunction (line 15) | def SetNodeTypeVersionUpdateFunction(nodeTypeName, nodeTypeVersion, fnc)... FILE: katana/stubs/NodegraphAPI/Version/UpdateNodeTypeVersions.pyi function UpdateNodeTypeVersions (line 7) | def UpdateNodeTypeVersions(document): ... function WillUpdateNodeTypeVersions (line 8) | def WillUpdateNodeTypeVersions(document): ... FILE: katana/stubs/NodegraphAPI/Version/Updater.pyi class Updater (line 7) | class Updater: method __init__ (line 8) | def __init__(self) -> None: ... method update (line 9) | def update(self, document): ... FILE: katana/stubs/NodegraphAPI/Version/Utils.pyi function GetCurrentVersion (line 7) | def GetCurrentVersion(): ... function GetNodegraphVersion (line 8) | def GetNodegraphVersion(xmlString): ... function GetVersionKey (line 9) | def GetVersionKey(version): ... function VersionCmp (line 10) | def VersionCmp(a, b): ... function tupleToVersion (line 11) | def tupleToVersion(versionTuple): ... function versionToTuple (line 12) | def versionToTuple(versionTag): ... FILE: katana/stubs/NodegraphAPI/Version/__init__.pyi function _ConvertXmlObject (line 8) | def _ConvertXmlObject(currentObject, currentType, desiredType): ... function isXMLKatana (line 9) | def isXMLKatana(xmlString): ... function makeXMLCurrent (line 10) | def makeXMLCurrent(xmlString, sourceFile: str = ..., returnFormat: int =... FILE: katana/stubs/NodegraphAPI/Xio.pyi function Document_getReleaseTag (line 10) | def Document_getReleaseTag(doc: PyXmlIO.Element) -> str: ... function Document_getRootNode (line 11) | def Document_getRootNode(doc: PyXmlIO.Element) -> PyXmlIO.Element: ... function Document_getSharedNodes (line 12) | def Document_getSharedNodes(doc: PyXmlIO.Element) -> list[PyXmlIO.Elemen... function Document_getVersionTag (line 13) | def Document_getVersionTag(doc: PyXmlIO.Element) -> str: ... function Document_isInstance (line 14) | def Document_isInstance(element: PyXmlIO.Element, error: bool = ...) -> ... function Document_setReleaseTag (line 15) | def Document_setReleaseTag(doc: PyXmlIO.Element, releaseTag: str): ... function Document_setVersionTag (line 16) | def Document_setVersionTag(doc: PyXmlIO.Element, versionTag: str): ... function FCurve_getKeyValuePairs (line 17) | def FCurve_getKeyValuePairs(curve: PyXmlIO.Element): ... function FCurve_isInstance (line 18) | def FCurve_isInstance(element: PyXmlIO.Element, error: bool = ...) -> bo... function FCurve_offsetCurve (line 19) | def FCurve_offsetCurve(curve: PyXmlIO.Element, offsetX: float, offsetY: ... function FCurve_setName (line 20) | def FCurve_setName(curve: PyXmlIO.Element, name: str): ... function GetAllNodes (line 21) | def GetAllNodes(rootNodeOrDoc: PyXmlIO.Element) -> list[PyXmlIO.Element]... function GetAllNodesAndParents (line 22) | def GetAllNodesAndParents(rootNode: PyXmlIO.Element): ... function GetNode (line 23) | def GetNode(rootNodeOrDoc: PyXmlIO.Element, nodeName: str) -> PyXmlIO.El... function Node_addInputPort (line 24) | def Node_addInputPort(node: PyXmlIO.Element, portName: str): ... function Node_addOutputPort (line 25) | def Node_addOutputPort(node: PyXmlIO.Element, portName: str): ... function Node_createChildNode (line 26) | def Node_createChildNode(doc: PyXmlIO.Element, node: PyXmlIO.Element, no... function Node_createParameter (line 27) | def Node_createParameter(node: PyXmlIO.Element, parmName: str, parmType:... function Node_deleteChildByName (line 28) | def Node_deleteChildByName(node: PyXmlIO.Element, childName: str): ... function Node_deleteInputPort (line 29) | def Node_deleteInputPort(node: PyXmlIO.Element, portName: str): ... function Node_deleteOutputPort (line 30) | def Node_deleteOutputPort(node: PyXmlIO.Element, portName: str) -> PyXml... function Node_deleteParameter (line 31) | def Node_deleteParameter(node: PyXmlIO.Element, parmName: str): ... function Node_getBypassed (line 32) | def Node_getBypassed(node: PyXmlIO.Element) -> bool: ... function Node_getChildByName (line 33) | def Node_getChildByName(node: PyXmlIO.Element, childName: str) -> PyXmlI... function Node_getChildren (line 34) | def Node_getChildren(node: PyXmlIO.Element) -> list[PyXmlIO.Element]: ... function Node_getInputPort (line 35) | def Node_getInputPort(node: PyXmlIO.Element, portName: str) -> PyXmlIO.E... function Node_getInputPorts (line 36) | def Node_getInputPorts(node: PyXmlIO.Element) -> list[PyXmlIO.Element]: ... function Node_getName (line 37) | def Node_getName(node: PyXmlIO.Element) -> str: ... function Node_getOutputPort (line 38) | def Node_getOutputPort(node: PyXmlIO.Element, portName: str) -> PyXmlIO.... function Node_getOutputPorts (line 39) | def Node_getOutputPorts(node: PyXmlIO.Element) -> list[PyXmlIO.Element]:... function Node_getParameter (line 40) | def Node_getParameter(node: PyXmlIO.Element, parmName: str) -> PyXmlIO.E... function Node_getParameters (line 41) | def Node_getParameters(node: PyXmlIO.Element) -> PyXmlIO.Element: ... function Node_getPorts (line 42) | def Node_getPorts(node: PyXmlIO.Element) -> list[PyXmlIO.Element]: ... function Node_getPosition (line 43) | def Node_getPosition(node: PyXmlIO.Element) -> tuple[float, float]: ... function Node_getType (line 44) | def Node_getType(node: PyXmlIO.Element) -> str: ... function Node_getUniqueInputPortName (line 45) | def Node_getUniqueInputPortName(node: PyXmlIO.Element, portName: str) ->... function Node_getUniqueNodeName (line 46) | def Node_getUniqueNodeName(doc: PyXmlIO.Element, name: str) -> str: ... function Node_getUniqueOutputPortName (line 47) | def Node_getUniqueOutputPortName(node: PyXmlIO.Element, portName: str) -... function Node_insertPort (line 48) | def Node_insertPort(node: PyXmlIO.Element, port: PyXmlIO.Element, index:... function Node_isEdited (line 49) | def Node_isEdited(node: PyXmlIO.Element) -> bool: ... function Node_isInstance (line 50) | def Node_isInstance(element: PyXmlIO.Element, error: bool = ...) -> bool... function Node_setBypassed (line 51) | def Node_setBypassed(node: PyXmlIO.Element, bypassed: bool): ... function Node_setColor (line 52) | def Node_setColor(node: PyXmlIO.Element, r: float, g: float, b: float): ... function Node_setEdited (line 53) | def Node_setEdited(node: PyXmlIO.Element, isEdited: bool): ... function Node_setName (line 54) | def Node_setName(node: PyXmlIO.Element, name: str): ... function Node_setPosition (line 55) | def Node_setPosition(node: PyXmlIO.Element, position: tuple[float, float... function Node_setThumbnail (line 56) | def Node_setThumbnail(node: PyXmlIO.Element, showThumbnail: bool): ... function Node_setType (line 57) | def Node_setType(node: PyXmlIO.Element, nodeType: Incomplete | None = ..... function Parameter_addChild (line 58) | def Parameter_addChild(parm: PyXmlIO.Element, child: PyXmlIO.Element, in... function Parameter_createChildByName (line 59) | def Parameter_createChildByName(parm: PyXmlIO.Element, parmName: str, pa... function Parameter_createType (line 60) | def Parameter_createType(parmType: str) -> PyXmlIO.Element: ... function Parameter_deleteChildByIndex (line 61) | def Parameter_deleteChildByIndex(parm: PyXmlIO.Element, index: int): ... function Parameter_deleteChildByName (line 62) | def Parameter_deleteChildByName(parm: PyXmlIO.Element, parmName: str): ... function Parameter_getAllChildren (line 63) | def Parameter_getAllChildren(rootParm: PyXmlIO.Element, parmName: str = ... function Parameter_getArrayChildren (line 64) | def Parameter_getArrayChildren(parm: PyXmlIO.Element) -> list[PyXmlIO.El... function Parameter_getArraySize (line 65) | def Parameter_getArraySize(parm: PyXmlIO.Element) -> int: ... function Parameter_getChild (line 66) | def Parameter_getChild(parm: PyXmlIO.Element, parmName: str) -> PyXmlIO.... function Parameter_getChildByIndex (line 67) | def Parameter_getChildByIndex(parm: PyXmlIO.Element, index: int) -> PyXm... function Parameter_getChildIndex (line 68) | def Parameter_getChildIndex(parm: PyXmlIO.Element, parmName: str) -> int... function Parameter_getChildren (line 69) | def Parameter_getChildren(parm: PyXmlIO.Element) -> list[PyXmlIO.Element... function Parameter_getHintsDict (line 70) | def Parameter_getHintsDict(parm: PyXmlIO.Element) -> dict: ... function Parameter_getName (line 71) | def Parameter_getName(parm: PyXmlIO.Element) -> str: ... function Parameter_getTupleSize (line 72) | def Parameter_getTupleSize(parm: PyXmlIO.Element) -> int: ... function Parameter_getType (line 73) | def Parameter_getType(parm: PyXmlIO.Element) -> str: ... function Parameter_getValue (line 74) | def Parameter_getValue(parm: PyXmlIO.Element) -> str | float: ... function Parameter_getValueDict (line 75) | def Parameter_getValueDict(parm: PyXmlIO.Element) -> dict: ... function Parameter_isInstance (line 76) | def Parameter_isInstance(element: PyXmlIO.Element, error: bool = ...) ->... function Parameter_isNodeDefaultUsed (line 77) | def Parameter_isNodeDefaultUsed(parm: PyXmlIO.Element) -> bool: ... function Parameter_reorderChildByIndex (line 78) | def Parameter_reorderChildByIndex(parm: PyXmlIO.Element, oldPos: int, ne... function Parameter_replaceChildByName (line 79) | def Parameter_replaceChildByName(parm: PyXmlIO.Element, name: str, newCh... function Parameter_setHintsDict (line 80) | def Parameter_setHintsDict(parm: PyXmlIO.Element, hintsDict: dict): ... function Parameter_setName (line 81) | def Parameter_setName(parm: PyXmlIO.Element, parmName: str): ... function Parameter_setTupleSize (line 82) | def Parameter_setTupleSize(parm: PyXmlIO.Element, newSize: int): ... function Parameter_setType (line 83) | def Parameter_setType(parm: PyXmlIO.Element, newType: str): ... function Parameter_setUseNodeDefault (line 84) | def Parameter_setUseNodeDefault(parm: PyXmlIO.Element, useDefault: bool)... function Parameter_setValue (line 85) | def Parameter_setValue(parm: PyXmlIO.Element, value: Incomplete | None =... function Parameter_setValueDict (line 86) | def Parameter_setValueDict(parm: PyXmlIO.Element, valueDict: dict): ... function Parameter_updateArraySize (line 87) | def Parameter_updateArraySize(parm: PyXmlIO.Element): ... function Port_deleteMetadata (line 88) | def Port_deleteMetadata(port: PyXmlIO.Element, metadataKey: str): ... function Port_getMetadata (line 89) | def Port_getMetadata(port: PyXmlIO.Element, metadataKey: str) -> str: ... function Port_getName (line 90) | def Port_getName(port: PyXmlIO.Element) -> str: ... function Port_getReturns (line 91) | def Port_getReturns(port: PyXmlIO.Element) -> str: ... function Port_getSource (line 92) | def Port_getSource(port: PyXmlIO.Element) -> str: ... function Port_getTags (line 93) | def Port_getTags(port: PyXmlIO.Element) -> list[str]: ... function Port_getType (line 94) | def Port_getType(port: PyXmlIO.Element) -> str: ... function Port_isInputPort (line 95) | def Port_isInputPort(port: PyXmlIO.Element) -> bool: ... function Port_isInstance (line 96) | def Port_isInstance(element: PyXmlIO.Element, error: bool = ...) -> bool... function Port_isOutputPort (line 97) | def Port_isOutputPort(port: PyXmlIO.Element) -> bool: ... function Port_setName (line 98) | def Port_setName(port: PyXmlIO.Element, newName: str): ... function Port_setReturns (line 99) | def Port_setReturns(port: PyXmlIO.Element, returnName: str): ... function Port_setSource (line 100) | def Port_setSource(port: PyXmlIO.Element, sourceName: str): ... function Port_setTags (line 101) | def Port_setTags(port: PyXmlIO.Element, tags: list[str]): ... FILE: katana/stubs/NodegraphAPI/__init__.pyi function AreEventsEnabled (line 30) | def AreEventsEnabled(): ... function AsynchronousContext (line 31) | def AsynchronousContext(): ... function BuildAttrFromGroupParameter (line 32) | def BuildAttrFromGroupParameter(parameter: Parameter, graphState: typing... function BuildAttrFromNumberParameter (line 33) | def BuildAttrFromNumberParameter(parameter: Parameter, graphState: typin... function BuildAttrFromStringParameter (line 34) | def BuildAttrFromStringParameter(parameter: Parameter, graphState: typin... function BuildDoubleAttrFromNumberParameter (line 35) | def BuildDoubleAttrFromNumberParameter(parameter: Parameter, graphState:... function BuildFloatAttrFromNumberParameter (line 36) | def BuildFloatAttrFromNumberParameter(parameter: Parameter, graphState: ... function BuildIntAttrFromNumberParameter (line 37) | def BuildIntAttrFromNumberParameter(parameter: Parameter, graphState: ty... function CreateNode (line 38) | def CreateNode(type: str, parent: Incomplete | None = ...) -> Node: ... function GetAllNodes (line 39) | def GetAllNodes(includeDeleted: bool = ..., sortByName: bool = ...) -> l... function GetAllNodesByType (line 40) | def GetAllNodesByType(nodeType: str, includeDeleted: bool = ..., sortByN... function GetCurrentGraphState (line 41) | def GetCurrentGraphState(**kwargs): ... function GetGraphState (line 42) | def GetGraphState(timeval: float, **kwargs) -> GraphState: ... function GetGraphStateAtPort (line 43) | def GetGraphStateAtPort(searchPort: Port, startPort: Port, startGraphSta... function GetNode (line 44) | def GetNode(nodeName: str) -> Node | None: ... function GetNodeContext (line 45) | def GetNodeContext(node: Node): ... function GetNodeTypes (line 46) | def GetNodeTypes() -> list[str]: ... function GetSampleTimes (line 47) | def GetSampleTimes(shutterOpen: float, shutterClose: float, maxTimeSampl... function GetSampleTimesFromGraphState (line 48) | def GetSampleTimesFromGraphState(graphState: GraphState, useSinglePrecis... function GetSingleSampleTimeFromGraphState (line 49) | def GetSingleSampleTimeFromGraphState(graphState: GraphState) -> float: ... function InteractiveContext (line 50) | def InteractiveContext(): ... function IsInSynchronousContext (line 51) | def IsInSynchronousContext() -> bool: ... function IsParameterConstant (line 52) | def IsParameterConstant(parameter: Parameter) -> bool: ... function NonInteractiveContext (line 53) | def NonInteractiveContext(): ... function PopExpressionCache (line 54) | def PopExpressionCache(): ... function PushExpressionCache (line 55) | def PushExpressionCache(): ... function RegisterExtension (line 56) | def RegisterExtension(ext): ... function RegisterPythonGroupType (line 57) | def RegisterPythonGroupType(type: str, ctor): ... function RegisterPythonNodeFactory (line 58) | def RegisterPythonNodeFactory(type: str, factory: typing.Callable): ... function RegisterPythonNodeType (line 59) | def RegisterPythonNodeType(type: str, ctor): ... function SetEventsEnabled (line 60) | def SetEventsEnabled(state: int): ... function StackedLocalGraphState (line 61) | def StackedLocalGraphState(graphState: GraphState) -> None: ... function SynchronousContext (line 62) | def SynchronousContext(): ... function UnlockedNode (line 63) | def UnlockedNode(): ... function __loadBeginCallback (line 64) | def __loadBeginCallback(eventType, eventID, **kwargs): ... function __loadEndCallback (line 65) | def __loadEndCallback(eventType, eventID, **kwargs): ... function __nodeCreateCallback (line 66) | def __nodeCreateCallback(eventType, eventID, **kwargs): ... function __nodeDeleteCallback (line 67) | def __nodeDeleteCallback(eventType, eventID, **kwargs): ... FILE: katana/stubs/NodegraphAPI_cmodule/__init__.pyi class Context (line 12) | class Context: method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method GetNodeGraphContext (line 18) | def GetNodeGraphContext(cls, node: NodegraphAPI.Node) -> str: ... class Flavor (line 20) | class Flavor: method __init__ (line 22) | def __init__(self, *args, **kwargs) -> None: ... class GraphState (line 24) | class GraphState: method __init__ (line 25) | def __init__(self) -> None: ... method edit (line 26) | def edit(self) -> GraphStateBuilder: ... method getDynamicEntry (line 27) | def getDynamicEntry(self, path: str) -> Any: ... method getDynamicHash (line 28) | def getDynamicHash(self) -> int: ... method getHash (line 29) | def getHash(self) -> int: ... method getMaxTimeSamples (line 30) | def getMaxTimeSamples(self) -> int: ... method getOpSystemArgs (line 31) | def getOpSystemArgs(self) -> GroupAttribute: ... method getROI (line 32) | def getROI(self) -> tuple: ... method getRenderMethodName (line 33) | def getRenderMethodName(self) -> str: ... method getSampleRateX (line 34) | def getSampleRateX(self) -> float: ... method getSampleRateY (line 35) | def getSampleRateY(self) -> float: ... method getShutterClose (line 36) | def getShutterClose(self) -> float: ... method getShutterOpen (line 37) | def getShutterOpen(self) -> float: ... method getStaticEntry (line 38) | def getStaticEntry(self, path: str) -> Any: ... method getStaticHash (line 39) | def getStaticHash(self) -> int: ... method getTime (line 40) | def getTime(self) -> float: ... method getView (line 41) | def getView(self) -> str: ... method isDiskCachingAllowed (line 42) | def isDiskCachingAllowed(self) -> bool: ... method isExternalRenderAllowed (line 43) | def isExternalRenderAllowed(self) -> bool: ... method isHotRender (line 44) | def isHotRender(self) -> bool: ... method isROIAbsolute (line 45) | def isROIAbsolute(self) -> bool: ... method isTaskCachingIgnored (line 46) | def isTaskCachingIgnored(self) -> bool: ... method matchVariableWithCEL (line 47) | def matchVariableWithCEL(self, variableName: str, celStatement: str) -... method __eq__ (line 48) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 49) | def __hash__(self) -> int: ... method __lt__ (line 50) | def __lt__(self, other: object) -> bool: ... class GraphStateBuilder (line 52) | class GraphStateBuilder: method __init__ (line 53) | def __init__(self) -> None: ... method build (line 55) | def build(self) -> GraphState: ... method build (line 57) | def build(self) -> Any: ... method deleteDynamicEntry (line 58) | def deleteDynamicEntry(self, path: str) -> GraphStateBuilder: ... method deleteStaticEntry (line 59) | def deleteStaticEntry(self, path: str) -> GraphStateBuilder: ... method setDiskCachingAllowed (line 60) | def setDiskCachingAllowed(self, allowCaching: bool) -> GraphStateBuild... method setDynamicEntry (line 62) | def setDynamicEntry(self, path: str, attr) -> GraphStateBuilder: ... method setDynamicEntry (line 64) | def setDynamicEntry(self, path: str, value: int) -> GraphStateBuilder:... method setDynamicEntry (line 66) | def setDynamicEntry(self, path: str, value: float) -> GraphStateBuilde... method setDynamicEntry (line 68) | def setDynamicEntry(self, path: str, value: str) -> GraphStateBuilder:... method setExternalRenderAllowed (line 69) | def setExternalRenderAllowed(self, allowExternal: bool) -> GraphStateB... method setHotRender (line 70) | def setHotRender(self, isHot: bool) -> GraphStateBuilder: ... method setIgnoreTaskCaching (line 71) | def setIgnoreTaskCaching(self, ignoreCaching: bool) -> GraphStateBuild... method setMaxTimeSamples (line 72) | def setMaxTimeSamples(self, maxSamples: int) -> GraphStateBuilder: ... method setROI (line 73) | def setROI(self, roi: list[tuple[float, float, float, float]]) -> Grap... method setRenderMethodName (line 74) | def setRenderMethodName(self, name: str) -> GraphStateBuilder: ... method setSampleRateX (line 75) | def setSampleRateX(self, sampleRate: float) -> GraphStateBuilder: ... method setSampleRateY (line 76) | def setSampleRateY(self, sampleRate: float) -> GraphStateBuilder: ... method setShutterClose (line 77) | def setShutterClose(self, time: float) -> GraphStateBuilder: ... method setShutterOpen (line 78) | def setShutterOpen(self, time: float) -> GraphStateBuilder: ... method setStaticEntry (line 80) | def setStaticEntry(self, path: str, attr) -> GraphStateBuilder: ... method setStaticEntry (line 82) | def setStaticEntry(self, path: str, value: int) -> GraphStateBuilder: ... method setStaticEntry (line 84) | def setStaticEntry(self, path: str, value: float) -> GraphStateBuilder... method setStaticEntry (line 86) | def setStaticEntry(self, path: str, value: str) -> GraphStateBuilder: ... method setTime (line 87) | def setTime(self, time: float) -> GraphStateBuilder: ... method setView (line 88) | def setView(self, view: str) -> GraphStateBuilder: ... class GroupNode (line 90) | class GroupNode(Node): method __init__ (line 91) | def __init__(self, *args, **kwargs) -> None: ... method checkChildrenForCycles (line 92) | def checkChildrenForCycles(self) -> bool: ... method getChild (line 93) | def getChild(self, name: str) -> Node: ... method getChildByIndex (line 94) | def getChildByIndex(self, index: int) -> Any: ... method getChildren (line 95) | def getChildren(self) -> list[Node]: ... method getNumChildren (line 96) | def getNumChildren(self) -> int: ... method getReturnPort (line 97) | def getReturnPort(self, name: str) -> Port: ... method getSendPort (line 98) | def getSendPort(self, name: str) -> Port: ... method isContentLocked (line 99) | def isContentLocked(self) -> bool: ... method setContentLocked (line 100) | def setContentLocked(self, value: bool) -> None: ... method setLocked (line 101) | def setLocked(self, value: bool) -> None: ... class Node (line 103) | class Node: method __init__ (line 104) | def __init__(self, *args, **kwargs) -> None: ... method addInputPort (line 105) | def addInputPort(self, name: str) -> NodegraphAPI.Port: ... method addInputPortAtIndex (line 106) | def addInputPortAtIndex(self, name: str, index: int) -> NodegraphAPI.P... method addOutputPort (line 107) | def addOutputPort(self, name: str) -> NodegraphAPI.Port: ... method addOutputPortAtIndex (line 108) | def addOutputPortAtIndex(self, name: str, index: int) -> NodegraphAPI.... method customReset (line 109) | def customReset(self) -> bool: ... method delete (line 110) | def delete(self) -> bool: ... method getAttributes (line 111) | def getAttributes(self) -> dict: ... method getBaseType (line 112) | def getBaseType(self) -> str: ... method getBoolValue (line 113) | def getBoolValue(self, name: str, time: float) -> bool: ... method getBypassRouting (line 114) | def getBypassRouting(self) -> dict: ... method getDefaultParameter (line 115) | def getDefaultParameter(self, *args, **kwargs): ... method getGraphState (line 116) | def getGraphState(self, *args, **kwargs): ... method getInfoString (line 117) | def getInfoString(self) -> str: ... method getInputPort (line 118) | def getInputPort(self, *args, **kwargs): ... method getInputPortAndGraphState (line 119) | def getInputPortAndGraphState(self, outputPort: NodegraphAPI.Port, gra... method getInputPortByIndex (line 120) | def getInputPortByIndex(self, index: int) -> NodegraphAPI.Port: ... method getInputPorts (line 121) | def getInputPorts(self) -> list: ... method getInputSource (line 122) | def getInputSource(self, name: str, graphState: NodegraphAPI.GraphStat... method getName (line 123) | def getName(self) -> str: ... method getNumInputPorts (line 124) | def getNumInputPorts(self) -> int: ... method getNumOutputPorts (line 125) | def getNumOutputPorts(self) -> int: ... method getOutputPort (line 126) | def getOutputPort(self, *args, **kwargs): ... method getOutputPortByIndex (line 127) | def getOutputPortByIndex(self, index: int) -> NodegraphAPI.Port: ... method getOutputPorts (line 128) | def getOutputPorts(self) -> list: ... method getParameter (line 129) | def getParameter(self, name: str) -> Parameter: ... method getParameterValue (line 130) | def getParameterValue(self, name: str, time: float) -> Any: ... method getParameters (line 131) | def getParameters(self) -> GroupParameter: ... method getParent (line 132) | def getParent(self, *args, **kwargs): ... method getSourcePort (line 133) | def getSourcePort(self, port: NodegraphAPI.Port, graphState: Nodegraph... method getType (line 134) | def getType(self) -> str: ... method isAutoRenameAllowed (line 135) | def isAutoRenameAllowed(self) -> bool: ... method isBypassed (line 136) | def isBypassed(self) -> bool: ... method isLocked (line 137) | def isLocked(self, considerParents: bool = ...) -> bool: ... method isMarkedForDeletion (line 138) | def isMarkedForDeletion(self) -> bool: ... method isRenameAllowed (line 139) | def isRenameAllowed(self) -> bool: ... method isResetPossible (line 140) | def isResetPossible(self) -> bool: ... method loadEnd (line 141) | def loadEnd(self) -> Any: ... method parseParameters (line 142) | def parseParameters(self, parameterString: str) -> Any: ... method removeInputPort (line 143) | def removeInputPort(self, name: str) -> bool: ... method removeOutputPort (line 144) | def removeOutputPort(self, name: str) -> bool: ... method renameInputPort (line 145) | def renameInputPort(self, *args, **kwargs): ... method renameOutputPort (line 146) | def renameOutputPort(self, *args, **kwargs): ... method setAttributes (line 147) | def setAttributes(self, attributes: dict) -> Any: ... method setAutoRenameAllowed (line 148) | def setAutoRenameAllowed(self, autoRenameAllowed: bool) -> Any: ... method setBypassRouting (line 149) | def setBypassRouting(self, portRouting: dict) -> Any: ... method setBypassed (line 150) | def setBypassed(self, bypassed: bool) -> Any: ... method setLocked (line 151) | def setLocked(self, locked: bool) -> Any: ... method setName (line 152) | def setName(self, name: str, updateExpressions: bool = ...) -> str: ... method setParent (line 153) | def setParent(self, parentNode, notify: bool = ...) -> bool: ... method setRenameAllowed (line 154) | def setRenameAllowed(self, renameAllowed: bool) -> Any: ... method setType (line 155) | def setType(self, typeName: str) -> Any: ... method __hash__ (line 156) | def __hash__(self) -> int: ... class Parameter (line 158) | class Parameter: method __init__ (line 165) | def __init__(self) -> None: ... method buildXmlIO (line 166) | def buildXmlIO(self, *args, **kwargs): ... method createChildGroup (line 167) | def createChildGroup(self, name: str, index: int = ...) -> Parameter: ... method createChildNumber (line 168) | def createChildNumber(self, name: str, value: float, index: int = ...)... method createChildNumberArray (line 169) | def createChildNumberArray(self, name: str, size: int, index: int = ..... method createChildString (line 170) | def createChildString(self, name: str, value: str, index: int = ...) -... method createChildStringArray (line 171) | def createChildStringArray(self, name: str, size: int, index: int = ..... method createChildXmlIO (line 172) | def createChildXmlIO(self, element, index: int = ...) -> Parameter: ... method deleteChild (line 173) | def deleteChild(self, child: Parameter) -> None: ... method finalizeValue (line 174) | def finalizeValue(self) -> None: ... method getAutoKey (line 175) | def getAutoKey(self) -> bool: ... method getChild (line 176) | def getChild(self, name: str) -> Parameter: ... method getChildByIndex (line 177) | def getChildByIndex(self, index: int) -> Parameter: ... method getChildren (line 178) | def getChildren(self) -> list[Parameter]: ... method getCurve (line 179) | def getCurve(self) -> Any: ... method getExpression (line 180) | def getExpression(self) -> str: ... method getExpressionError (line 181) | def getExpressionError(self) -> str: ... method getFileSequenceValue (line 182) | def getFileSequenceValue(self, time: float) -> str: ... method getFullName (line 183) | def getFullName(self, includeNodeName: bool = ...) -> str: ... method getHintString (line 184) | def getHintString(self) -> str: ... method getIndex (line 185) | def getIndex(self) -> int: ... method getInterpolation (line 186) | def getInterpolation(self) -> int: ... method getKeys (line 187) | def getKeys(self) -> list[float]: ... method getName (line 188) | def getName(self) -> str: ... method getNode (line 189) | def getNode(self) -> Node: ... method getNumChildren (line 190) | def getNumChildren(self) -> int: ... method getOpaqueDataInfo (line 191) | def getOpaqueDataInfo(self) -> dict: ... method getParent (line 192) | def getParent(self) -> Parameter: ... method getReferences (line 193) | def getReferences(self, time: float) -> list[str]: ... method getSamples (line 194) | def getSamples(self) -> Any: ... method getTupleSize (line 195) | def getTupleSize(self) -> int: ... method getType (line 196) | def getType(self) -> str: ... method getValue (line 197) | def getValue(self, time: float) -> Any: ... method getValueXmlIO (line 198) | def getValueXmlIO(self, element, time: float) -> None: ... method getXML (line 199) | def getXML(self, forcePersistant: bool = ...) -> str: ... method hasFloatingCurve (line 200) | def hasFloatingCurve(self) -> bool: ... method hasKey (line 201) | def hasKey(self, time: float) -> bool: ... method hasUseNodeDefault (line 202) | def hasUseNodeDefault(self) -> bool: ... method insertArrayElement (line 203) | def insertArrayElement(self, index: int) -> Parameter: ... method isAnimated (line 204) | def isAnimated(self) -> bool: ... method isExpression (line 205) | def isExpression(self) -> bool: ... method isPersistant (line 206) | def isPersistant(self) -> bool: ... method makeConstant (line 207) | def makeConstant(self, time: float) -> None: ... method moveKeys (line 209) | def moveKeys(self, times: list[float], dt: float) -> None: ... method moveKeys (line 211) | def moveKeys(self, times: Set[float], dt: float) -> None: ... method parseXML (line 212) | def parseXML(self, xml: str) -> None: ... method parseXmlIO (line 213) | def parseXmlIO(self, element) -> bool: ... method popReferenceCollectionStack (line 215) | def popReferenceCollectionStack(cls) -> tuple: ... method pushReferenceCollectionStack (line 217) | def pushReferenceCollectionStack(cls, targets: int = ...) -> None: ... method readOpaqueDataFromFile (line 218) | def readOpaqueDataFromFile(self, filenames: list[str]) -> None: ... method readOpaqueDataFromXmlIO (line 219) | def readOpaqueDataFromXmlIO(self, element) -> None: ... method removeArrayElement (line 220) | def removeArrayElement(self, index: int) -> None: ... method removeArrayElements (line 221) | def removeArrayElements(self, index: int, count: int) -> None: ... method removeKey (line 222) | def removeKey(self, time: float) -> None: ... method removeKeys (line 224) | def removeKeys(self, times: list[float]) -> None: ... method removeKeys (line 226) | def removeKeys(self, times: Set[float]) -> None: ... method renameExpression (line 227) | def renameExpression(self, oldNodeName: str, newNodeName: str) -> None... method reorderChild (line 228) | def reorderChild(self, child: Parameter, index: int) -> None: ... method reorderChildren (line 229) | def reorderChildren(self, oldIndex: int, newIndex: int, count: int) ->... method reparentAtomic (line 230) | def reparentAtomic(self, parent: Parameter) -> str: ... method reparentExpression (line 231) | def reparentExpression(self, oldPath: str, newPath: str) -> None: ... method replaceXML (line 232) | def replaceXML(self, xml: str, removeChildren: bool = ...) -> None: ... method replaceXmlIO (line 233) | def replaceXmlIO(self, element, removeChildren: bool = ...) -> None: ... method resetFloatingCurve (line 234) | def resetFloatingCurve(self) -> None: ... method resizeArray (line 235) | def resizeArray(self, length: int) -> None: ... method sendSignal_finalize (line 236) | def sendSignal_finalize(self, **kwargs) -> None: ... method sendSignal_setKey (line 237) | def sendSignal_setKey(self, keyTime: float) -> None: ... method sendSignal_setValue (line 238) | def sendSignal_setValue(self, **kwargs) -> None: ... method setAutoKey (line 239) | def setAutoKey(self, value: bool) -> None: ... method setCurve (line 240) | def setCurve(self, curve, final: bool = ...) -> None: ... method setExpression (line 241) | def setExpression(self, expression: str, enable: bool = ...) -> None: ... method setExpressionFlag (line 242) | def setExpressionFlag(self, value: bool) -> None: ... method setHintString (line 243) | def setHintString(self, hint: str) -> None: ... method setInterpolation (line 244) | def setInterpolation(self, interpolation: int, final: bool = ...) -> N... method setKey (line 245) | def setKey(self, time: float, sendNotifyMessage: bool = ...) -> None: ... method setName (line 246) | def setName(self, newName: str) -> str: ... method setPersistant (line 247) | def setPersistant(self, arg0: bool) -> None: ... method setSamples (line 248) | def setSamples(self, samples: dict[float, list[float]], final: bool = ... method setTupleSize (line 249) | def setTupleSize(self, size: int) -> None: ... method setUseNodeDefault (line 250) | def setUseNodeDefault(self, value: bool) -> None: ... method setValue (line 251) | def setValue(self, value: object, time: float, final: bool = ..., send... method setValueAutoKey (line 252) | def setValueAutoKey(self, value: object, time: float, final: bool = ..... method setValueXmlIO (line 253) | def setValueXmlIO(self, element, time: float, final: bool = ..., sendN... method useNodeDefault (line 254) | def useNodeDefault(self) -> bool: ... method writeOpaqueDataToFile (line 255) | def writeOpaqueDataToFile(self, filenames: list[str]) -> None: ... method writeOpaqueDataToXmlIO (line 256) | def writeOpaqueDataToXmlIO(self, *args, **kwargs): ... method __hash__ (line 257) | def __hash__(self) -> int: ... class Port (line 259) | class Port: method __init__ (line 265) | def __init__(self) -> None: ... method addOrUpdateMetadata (line 266) | def addOrUpdateMetadata(self, key: str, value: str) -> None: ... method connect (line 267) | def connect(self, other: Port, doCycleCheck: bool = ...) -> bool: ... method deleteMetadata (line 268) | def deleteMetadata(self, key: str) -> None: ... method disconnect (line 269) | def disconnect(self, other: Port) -> bool: ... method getAttributes (line 270) | def getAttributes(self) -> dict: ... method getColor (line 271) | def getColor(self) -> tuple: ... method getConnectedPort (line 272) | def getConnectedPort(self, index: int) -> Port: ... method getConnectedPorts (line 273) | def getConnectedPorts(self) -> list[Port]: ... method getDisplayName (line 274) | def getDisplayName(self, prefixWithPageNames: bool = ...) -> str: ... method getFlavor (line 275) | def getFlavor(self) -> int: ... method getIndex (line 276) | def getIndex(self) -> int: ... method getMetadata (line 277) | def getMetadata(self, key: str) -> Any: ... method getMetadataDict (line 278) | def getMetadataDict(self) -> dict[str, str]: ... method getName (line 279) | def getName(self) -> str: ... method getNode (line 280) | def getNode(self) -> Node: ... method getNumConnectedPorts (line 281) | def getNumConnectedPorts(self) -> int: ... method getTags (line 282) | def getTags(self) -> list: ... method getType (line 283) | def getType(self) -> int: ... method hasCustomColor (line 284) | def hasCustomColor(self) -> bool: ... method isConnected (line 285) | def isConnected(self, other: Port) -> bool: ... method setAttributes (line 286) | def setAttributes(self, attrs: dict) -> None: ... method setColor (line 287) | def setColor(self, r: float, g: float, b: float, isCustom: bool = ...)... method setTags (line 288) | def setTags(self, tags: list[str]) -> None: ... method __hash__ (line 289) | def __hash__(self) -> int: ... class PythonGroupNode (line 291) | class PythonGroupNode(GroupNode): method __init__ (line 292) | def __init__(self) -> None: ... class PythonNode (line 294) | class PythonNode(Node): method __init__ (line 295) | def __init__(self) -> None: ... method getInputPortAndGraphState (line 297) | def getInputPortAndGraphState(self, port: Port, graphState: GraphState... method getInputPortAndGraphState (line 299) | def getInputPortAndGraphState(self, port: Port, time: float) -> tuple:... function BuildAttrFromGroupParameter (line 301) | def BuildAttrFromGroupParameter(param: Parameter, graphState: GraphState... function BuildAttrFromStringParameter (line 302) | def BuildAttrFromStringParameter(param: Parameter, graphState: GraphStat... function BuildDoubleAttrFromNumberParameter (line 303) | def BuildDoubleAttrFromNumberParameter(param: Parameter, graphState: Gra... function BuildFloatAttrFromNumberParameter (line 304) | def BuildFloatAttrFromNumberParameter(param: Parameter, graphState: Grap... function BuildIntAttrFromNumberParameter (line 305) | def BuildIntAttrFromNumberParameter(param: Parameter, graphState: GraphS... function GetGraphStateAtPort (line 306) | def GetGraphStateAtPort(searchPort: Port, startPort: Port, startGraphSta... function GetLocalGraphState (line 307) | def GetLocalGraphState() -> Any: ... function GetSampleTimes (line 308) | def GetSampleTimes(shutterOpen: float, shutterClose: float, maxTimeSampl... function GetSampleTimesFromGraphState (line 309) | def GetSampleTimesFromGraphState(graphState: GraphState, useSinglePrecis... function GetSingleSampleTimeFromGraphState (line 310) | def GetSingleSampleTimeFromGraphState(graphState: GraphState) -> float: ... function IsParameterConstant (line 311) | def IsParameterConstant(parameter: Parameter) -> bool: ... function PopLocalGraphState (line 312) | def PopLocalGraphState() -> None: ... function PushLocalGraphState (line 313) | def PushLocalGraphState(graphState: GraphState) -> None: ... function curve_writeCurveXML (line 314) | def curve_writeCurveXML(curve) -> str: ... function node_addNodeFlavor (line 315) | def node_addNodeFlavor(nodeType: str, flavor: str) -> None: ... function node_clearFlavorNodes (line 316) | def node_clearFlavorNodes(flavor: str) -> None: ... function node_createNode (line 317) | def node_createNode(nodeType: str, parent: Node = ...) -> Any: ... function node_getAllConnectedInputs (line 318) | def node_getAllConnectedInputs(sourceNodes: typing.Iterable) -> set: ... function node_getAllFlavors (line 319) | def node_getAllFlavors() -> list[str]: ... function node_getAllNodes (line 320) | def node_getAllNodes(includeDeleted: bool = ..., sortByName: bool = ...)... function node_getAllNodesByType (line 321) | def node_getAllNodesByType(nodeType: str, includeDeleted: bool = ..., so... function node_getCurrentGraphState (line 322) | def node_getCurrentGraphState() -> GraphState: ... function node_getCurrentTime (line 323) | def node_getCurrentTime() -> float: ... function node_getFlavorNodes (line 324) | def node_getFlavorNodes(flavor: str, existsFlag: bool) -> list[str]: ... function node_getGraphState (line 325) | def node_getGraphState(time: float) -> GraphState: ... function node_getNode (line 326) | def node_getNode(nodeName: str) -> Any: ... function node_getNodeFlavors (line 327) | def node_getNodeFlavors(nodeType: str) -> list[str]: ... function node_getOriginalProjectAssetID (line 328) | def node_getOriginalProjectAssetID() -> str: ... function node_getProjectAssetID (line 329) | def node_getProjectAssetID() -> str: ... function node_getTypeList (line 330) | def node_getTypeList() -> str: ... function node_isLoading (line 331) | def node_isLoading() -> bool: ... function node_needsRedraw (line 332) | def node_needsRedraw() -> bool: ... function node_registerExtension (line 333) | def node_registerExtension(extension: object) -> None: ... function node_registerPythonGroupType (line 334) | def node_registerPythonGroupType(typeName: str, constructor: typing.Call... function node_registerPythonNodeFactory (line 335) | def node_registerPythonNodeFactory(nodeType: str, factory: typing.Callab... function node_registerPythonNodeType (line 336) | def node_registerPythonNodeType(typeName: str, constructor: typing.Calla... function node_registerQueryFlag (line 337) | def node_registerQueryFlag(callbacK: typing.Callable) -> None: ... function node_removeNodeFlavor (line 338) | def node_removeNodeFlavor(nodeType: str, flavor: str) -> None: ... function node_setExpressionObject (line 339) | def node_setExpressionObject(arg0: object) -> None: ... function node_setIsLoading (line 340) | def node_setIsLoading(value: bool) -> None: ... function node_setNeedsRedraw (line 341) | def node_setNeedsRedraw(arg0: bool) -> None: ... function node_setOriginalProjectAssetID (line 342) | def node_setOriginalProjectAssetID(assetId: str) -> None: ... function node_setProjectAssetID (line 343) | def node_setProjectAssetID(assetId: str) -> None: ... function node_setRootNode (line 344) | def node_setRootNode(rootNode: Node) -> None: ... function notify_areNotificationsEnabled (line 345) | def notify_areNotificationsEnabled() -> bool: ... function notify_setNotificationFn (line 346) | def notify_setNotificationFn(handler: typing.Callable) -> None: ... function notify_setNotificationsEnabled (line 347) | def notify_setNotificationsEnabled(arg0: bool) -> None: ... function parameter_getAllExpressionedParameters (line 348) | def parameter_getAllExpressionedParameters(errorsOnly: bool = ..., noErr... function parameter_getAutoKeyAll (line 349) | def parameter_getAutoKeyAll() -> bool: ... function parameter_getExpressionReferences (line 350) | def parameter_getExpressionReferences(referents: object = ..., referers:... function parameter_popExpressionCache (line 351) | def parameter_popExpressionCache() -> None: ... function parameter_pushExpressionCache (line 352) | def parameter_pushExpressionCache() -> None: ... function parameter_resetAllFloatingCurves (line 353) | def parameter_resetAllFloatingCurves() -> None: ... function parameter_setAutoKeyAll (line 354) | def parameter_setAutoKeyAll(autoKeyAll: bool) -> None: ... function parameter_setExpressionGlobals (line 355) | def parameter_setExpressionGlobals(globals: object) -> None: ... function parameter_setExpressionLocalFn (line 356) | def parameter_setExpressionLocalFn(locals: typing.Callable) -> None: ... function parameter_setOpaqueParameterBuildXmlIOHandler (line 357) | def parameter_setOpaqueParameterBuildXmlIOHandler(handler: object) -> No... function port_registerComplexConnector (line 358) | def port_registerComplexConnector(connector: typing.Callable) -> None: ... function pyerror_occurred (line 359) | def pyerror_occurred() -> bool: ... function registerBuiltinFactories (line 360) | def registerBuiltinFactories() -> None: ... FILE: katana/stubs/Nodes2DAPI/Expression.pyi class _frame (line 12) | class _frame: method __init__ (line 13) | def __init__(self, x0, y0, x1, y1) -> None: ... function GetDisplayWindow (line 15) | def GetDisplayWindow(port: int = ..., node: typing.Optional[NodegraphAPI... function GetXform (line 16) | def GetXform(node: typing.Optional[NodegraphAPI.Node] = ..., time: Incom... function GetXformR (line 17) | def GetXformR(node: typing.Optional[NodegraphAPI.Node] = ..., time: Inco... function GetXformS (line 18) | def GetXformS(node: typing.Optional[NodegraphAPI.Node] = ..., time: Inco... function GetXformT (line 19) | def GetXformT(node: typing.Optional[NodegraphAPI.Node] = ..., time: Inco... function _GetXformMTRS (line 20) | def _GetXformMTRS(node: typing.Optional[NodegraphAPI.Node] = ..., time: ... function __clearMTRSCache (line 21) | def __clearMTRSCache(*args, **kwargs): ... function _getSourcePortAndTime (line 22) | def _getSourcePortAndTime(portName, node: NodegraphAPI.Node, time): ... FILE: katana/stubs/Nodes2DAPI/FileInNodeUtil.pyi function CalculateInOut (line 10) | def CalculateInOut(node: Nodes2DAPI.Node2D): ... function GetChannelNames (line 11) | def GetChannelNames(node: NodegraphAPI.Node, time: Incomplete | None = .... function GetDiskFrameRange (line 12) | def GetDiskFrameRange(fileName, diskOnly: bool = ...): ... function GetFileInSequence (line 13) | def GetFileInSequence(node: NodegraphAPI.Node, time: Incomplete | None =... function ResetToDefaultChannelMapping (line 14) | def ResetToDefaultChannelMapping(node: NodegraphAPI.Node): ... FILE: katana/stubs/Nodes2DAPI/FileOutNodeUtil.pyi function AddInput (line 10) | def AddInput(node: NodegraphAPI.Node): ... function AddPostScript (line 11) | def AddPostScript(node: NodegraphAPI.Node): ... function DeleteInput (line 12) | def DeleteInput(node: NodegraphAPI.Node, index): ... function DeletePostScript (line 13) | def DeletePostScript(node: NodegraphAPI.Node, index): ... function EnableFirstInput (line 14) | def EnableFirstInput(node: NodegraphAPI.Node): ... function GetActiveViewMask (line 15) | def GetActiveViewMask(node: NodegraphAPI.Node): ... function IsParameterTreeOutOfDate (line 16) | def IsParameterTreeOutOfDate(node: NodegraphAPI.Node): ... function ReorderInput (line 17) | def ReorderInput(node: NodegraphAPI.Node, index, newIndex): ... function ReorderPostScript (line 18) | def ReorderPostScript(node: NodegraphAPI.Node, index, newIndex): ... function SyncAllOutputPorts (line 19) | def SyncAllOutputPorts(): ... function SyncOutputPorts (line 20) | def SyncOutputPorts(node: NodegraphAPI.Node): ... function SyncParametersToPorts (line 21) | def SyncParametersToPorts(node: NodegraphAPI.Node): ... FILE: katana/stubs/Nodes2DAPI/GradientNodeUtil.pyi function AddLinearGradLayer (line 9) | def AddLinearGradLayer(layerParam, name: Incomplete | None = ...): ... function AddSuperGradLayer (line 10) | def AddSuperGradLayer(node: NodegraphAPI.Node, x: float = ..., y: float ... function SetGradLayerName (line 11) | def SetGradLayerName(layerParam, name): ... FILE: katana/stubs/Nodes2DAPI/NodeColorDelegate.pyi class NodeColorDelegate (line 13) | class NodeColorDelegate(NodegraphAPI.NodeDelegateManager.SuperDelegate): method getPreferredNodeColor (line 14) | def getPreferredNodeColor(self, nodeType, nodeName): ... method processNodeCreate (line 15) | def processNodeCreate(self, node: NodegraphAPI.Node): ... function _GetColor (line 17) | def _GetColor(flavors): ... FILE: katana/stubs/Nodes2DAPI/ThumbnailManager.pyi function GetThumbnailMode (line 12) | def GetThumbnailMode(): ... function RegenerateAllThumbnails (line 13) | def RegenerateAllThumbnails(): ... function RenderThumbnail (line 14) | def RenderThumbnail(node: NodegraphAPI.Node, priorCacheID: str = ..., si... function SetThumbnailMode (line 15) | def SetThumbnailMode(mode): ... function SetThumbnailSampleRate (line 16) | def SetThumbnailSampleRate(sampleRate): ... FILE: katana/stubs/Nodes2DAPI/TransformUtil.pyi function SetTransformFromMatrix (line 7) | def SetTransformFromMatrix(transformGroup, matrix, time: Incomplete | No... FILE: katana/stubs/Nodes2DAPI/__init__.pyi function GetErrorMessages (line 20) | def GetErrorMessages(): ... function GetNewRenders (line 21) | def GetNewRenders(): ... function GetRenderMessages (line 22) | def GetRenderMessages(): ... function GetViewBasedPrioritization (line 23) | def GetViewBasedPrioritization(): ... function IsUpstreamNode2D (line 24) | def IsUpstreamNode2D(node: NodegraphAPI.Node, frame: Incomplete | None =... function RegisterCommandLineNode (line 25) | def RegisterCommandLineNode(*args): ... function RegisterNewRender (line 26) | def RegisterNewRender(renderDict): ... function Render_Buffer (line 27) | def Render_Buffer(outputList, sampleRate, ROI, hotRender, interactive, d... function ReportRenderMessage (line 28) | def ReportRenderMessage(sequenceID, message): ... function SetCatalogEventReceiver (line 29) | def SetCatalogEventReceiver(receiver): ... function SetFarmPluginManager (line 30) | def SetFarmPluginManager(farmPluginManager: types.ModuleType): ... function SetPrioritizerCenter (line 31) | def SetPrioritizerCenter(centerPoint): ... function SetPrioritizerWindow (line 32) | def SetPrioritizerWindow(window): ... function SetViewBasedPrioritization (line 33) | def SetViewBasedPrioritization(isEnabled): ... function Set_GetRenderProducer_Fn (line 34) | def Set_GetRenderProducer_Fn(function): ... FILE: katana/stubs/Nodes2DAPI_cmodule/Views.pyi function GetActiveViews (line 7) | def GetActiveViews(viewMask: str) -> list[str]: ... function GetDefaultView (line 8) | def GetDefaultView() -> str: ... function GetLeftView (line 9) | def GetLeftView() -> str: ... function GetRightView (line 10) | def GetRightView() -> str: ... function GetViewAbbreviation (line 11) | def GetViewAbbreviation(view: str) -> str: ... function GetViewProductToken (line 12) | def GetViewProductToken(view: str) -> str: ... function GetViewUIColor (line 13) | def GetViewUIColor(view: str) -> tuple: ... function GetViews (line 14) | def GetViews() -> list[str]: ... function IsMaskedViewActive (line 15) | def IsMaskedViewActive(view: str, viewMask: str) -> bool: ... function IsViewValid (line 16) | def IsViewValid(view: str) -> bool: ... FILE: katana/stubs/Nodes2DAPI_cmodule/__init__.pyi class FrameBuffer (line 18) | class FrameBuffer: method __init__ (line 19) | def __init__(self, filename: str, sampleRateX: float, sampleRateY: flo... method copyImageData (line 20) | def copyImageData(self, data: object, rect: list[tuple[int, int, int, ... method dirtyBufferRects (line 21) | def dirtyBufferRects(self, updateRects: typing.Sequence, texturePool: ... method duplicate (line 22) | def duplicate(self) -> FrameBuffer: ... method getBackgroundColor (line 23) | def getBackgroundColor(self) -> tuple: ... method getBackgroundRegion (line 24) | def getBackgroundRegion(self) -> list: ... method getChannels (line 25) | def getChannels(self) -> str: ... method getDataRegion (line 26) | def getDataRegion(self) -> list: ... method getDataRegionOutline (line 27) | def getDataRegionOutline(self) -> list[Tuple[int, int, int, int]]: ... method getDataWindow (line 28) | def getDataWindow(self) -> tuple: ... method getDisplayWindow (line 29) | def getDisplayWindow(self) -> tuple: ... method getFrameTime (line 30) | def getFrameTime(self) -> float: ... method getNativeDataWindow (line 31) | def getNativeDataWindow(self) -> tuple: ... method getNodeName (line 32) | def getNodeName(self) -> str: ... method getSampleRate (line 33) | def getSampleRate(self) -> tuple: ... method getSequenceID (line 34) | def getSequenceID(self) -> int: ... method getSize (line 35) | def getSize(self) -> int: ... method getThumbnailData (line 36) | def getThumbnailData(self, width: int = ..., forceRegenerate: bool = .... method getThumbnailHeight (line 37) | def getThumbnailHeight(self) -> int: ... method getThumbnailWidth (line 38) | def getThumbnailWidth(self) -> int: ... method getTiles (line 39) | def getTiles(self, clipWindow: list[tuple[int, int, int, int]], adjust... method getView (line 40) | def getView(self) -> str: ... method glTexSubImage2D (line 41) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method isFirstInConnection (line 42) | def isFirstInConnection(self) -> bool: ... method isRender3D (line 43) | def isRender3D(self) -> bool: ... method queryHistogram (line 44) | def queryHistogram(self, rect: list[tuple[int, int, int, int]], binMin... method queryRegionStats (line 45) | def queryRegionStats(self, rect: list[tuple[int, int, int, int]], igno... method queryScanline (line 46) | def queryScanline(self, scanline: int, isHorizontal: bool, colorspace:... method setSequenceID (line 47) | def setSequenceID(self, id: int) -> None: ... method setView (line 48) | def setView(self, view: str) -> None: ... method writeToDisk (line 49) | def writeToDisk(self, filename: str, args: dict, width: int, height: i... method __hash__ (line 50) | def __hash__(self) -> int: ... class IntImage (line 52) | class IntImage: method __init__ (line 53) | def __init__(self) -> None: ... method channels (line 54) | def channels(self) -> int: ... method height (line 55) | def height(self) -> int: ... method imageData (line 56) | def imageData(self) -> Any: ... method width (line 57) | def width(self) -> int: ... method __hash__ (line 58) | def __hash__(self) -> int: ... class Node2D (line 60) | class Node2D(NodegraphAPI_cmodule.Node): method __init__ (line 61) | def __init__(self) -> None: ... function CancelRender (line 63) | def CancelRender(renderType: int, stallOnCompletion: bool) -> None: ... function CheckExternalRender (line 64) | def CheckExternalRender() -> None: ... function CheckFileIns (line 65) | def CheckFileIns(nodeNames: list[str], renderTime: float) -> list: ... function ClearDisplayWindowCache (line 66) | def ClearDisplayWindowCache() -> None: ... function ClearImageHeaderCache (line 67) | def ClearImageHeaderCache() -> None: ... function ClearSpeculativeCacheContents (line 68) | def ClearSpeculativeCacheContents() -> None: ... function ConvertUpdateRectsToFnAttribute (line 69) | def ConvertUpdateRectsToFnAttribute(arg0: list[list[tuple[int, int, int,... function CreateExternalRenderListener (line 70) | def CreateExternalRenderListener(port: int) -> None: ... function EnumerateReadableImageFormats (line 71) | def EnumerateReadableImageFormats() -> list: ... function EnumerateWriteableImageFormats (line 72) | def EnumerateWriteableImageFormats() -> list: ... function FinishRender (line 73) | def FinishRender(arg0) -> None: ... function GetAllRenderTypes (line 74) | def GetAllRenderTypes() -> tuple: ... function GetDisplayWindow (line 76) | def GetDisplayWindow(port: NodegraphAPI_cmodule.Port, graphState: Nodegr... function GetDisplayWindow (line 78) | def GetDisplayWindow(port: NodegraphAPI_cmodule.Port, time: float) -> tu... function GetErrorMessages (line 79) | def GetErrorMessages() -> tuple: ... function GetExternalRenderListenerInfo (line 80) | def GetExternalRenderListenerInfo() -> Any: ... function GetFileOutAssetId (line 81) | def GetFileOutAssetId(node: Node2D, inputIndex: int, graphState: Nodegra... function GetFileOutColorspace (line 82) | def GetFileOutColorspace(node: Node2D, inputIndex: int) -> str: ... function GetFileOutEnabled (line 83) | def GetFileOutEnabled(node: Node2D, inputIndex: int) -> bool: ... function GetFileOutFilename (line 84) | def GetFileOutFilename(node: Node2D, inputIndex: int, graphState: Nodegr... function GetFileOutFormat (line 85) | def GetFileOutFormat(node: Node2D, inputIndex: int) -> str: ... function GetFileOutOutputParams (line 86) | def GetFileOutOutputParams() -> str: ... function GetFileOutPassName (line 87) | def GetFileOutPassName(node: Node2D, graphState: NodegraphAPI_cmodule.Gr... function GetFileOutPostScriptInfo (line 88) | def GetFileOutPostScriptInfo(node: Node2D, scriptIndex: int, graphState:... function GetFileOutPostScriptParams (line 89) | def GetFileOutPostScriptParams() -> str: ... function GetFileOutProxyOnCue (line 90) | def GetFileOutProxyOnCue(node: Node2D, inputIndex: int) -> bool: ... function GetFileOutRepPrefix (line 91) | def GetFileOutRepPrefix(node: Node2D, inputIndex: int) -> str: ... function GetFileOutRepresentation (line 92) | def GetFileOutRepresentation(node: Node2D, inputIndex: int, graphState: ... function GetFileOutResolutionName (line 93) | def GetFileOutResolutionName(node: Node2D, inputIndex: int, graphState: ... function GetFilmWidthFromString (line 94) | def GetFilmWidthFromString(filmBack: str) -> float: ... function GetFrameBufferCancelledMessages (line 95) | def GetFrameBufferCancelledMessages() -> tuple: ... function GetFrameBufferCompletedMessages (line 96) | def GetFrameBufferCompletedMessages() -> tuple: ... function GetFrameBufferRectUpdateMessages (line 97) | def GetFrameBufferRectUpdateMessages() -> dict: ... function GetImageDescription (line 98) | def GetImageDescription(filename: str) -> dict: ... function GetImageDiskUsage (line 99) | def GetImageDiskUsage() -> int: ... function GetImageMemoryUsage (line 100) | def GetImageMemoryUsage() -> int: ... function GetImageReadPath (line 101) | def GetImageReadPath(node: Node2D, renderTime: float) -> str: ... function GetIncrementedRenderSequenceID (line 102) | def GetIncrementedRenderSequenceID() -> int: ... function GetMaxDiskUsage (line 103) | def GetMaxDiskUsage() -> int: ... function GetMaxImageMemory (line 104) | def GetMaxImageMemory() -> int: ... function GetNewFrameBuffers (line 105) | def GetNewFrameBuffers() -> list: ... function GetOutputDisplayWindow (line 107) | def GetOutputDisplayWindow(port: NodegraphAPI_cmodule.Port, graphState: ... function GetOutputDisplayWindow (line 109) | def GetOutputDisplayWindow(port: NodegraphAPI_cmodule.Port, time: float)... function GetRenderMessages (line 110) | def GetRenderMessages() -> list: ... function GetRenderProgressMessages (line 111) | def GetRenderProgressMessages() -> list: ... function GetRenderTerminationSignal (line 112) | def GetRenderTerminationSignal(rendererName: str) -> int: ... function GetRenderThreads (line 113) | def GetRenderThreads() -> int: ... function GetSpeculativeCacheContents (line 114) | def GetSpeculativeCacheContents() -> PyXmlIO.Element: ... function GetSpeculativeCacheEnabled (line 115) | def GetSpeculativeCacheEnabled() -> bool: ... function GetTileRenderOrderMessages (line 116) | def GetTileRenderOrderMessages() -> dict: ... function GetTileSize (line 117) | def GetTileSize() -> tuple: ... function GetTransformBetweenNodes (line 118) | def GetTransformBetweenNodes(src: NodegraphAPI_cmodule.Node, dst: Nodegr... function GetTransformForInputPort (line 119) | def GetTransformForInputPort(inputPort: NodegraphAPI_cmodule.Port, time:... function IsExternalRenderInProgress (line 120) | def IsExternalRenderInProgress(sequenceID: int) -> bool: ... function IsRenderInProgress (line 121) | def IsRenderInProgress() -> bool: ... function IsThumbnailRendering (line 122) | def IsThumbnailRendering() -> bool: ... function KillExternalRender (line 123) | def KillExternalRender(sequenceID: int, waitOnCompletion: bool) -> None:... function NotifyBufferChanged (line 124) | def NotifyBufferChanged(buffer: FrameBuffer) -> None: ... function PrintImageMemoryUsage (line 125) | def PrintImageMemoryUsage() -> None: ... function QueueErrorMessage (line 126) | def QueueErrorMessage(sequenceID: int, errorCode: int, nodeName: str, me... function QueueRenderMessage (line 127) | def QueueRenderMessage(sequenceID: int, message: str) -> None: ... function ReadImage (line 128) | def ReadImage(filename: str, scale: float) -> Any: ... function ReadImageThreaded (line 129) | def ReadImageThreaded(filename: str, mipSizeX: int, mipSizeY: int, callb... function RegisterNukeSession (line 130) | def RegisterNukeSession(serviceHost: str, servicePort: int, catalogRegis... function Render (line 131) | def Render(ports: list[NodegraphAPI_cmodule.Port], buffers: list[FrameBu... function RenderThumbnail (line 132) | def RenderThumbnail(port: NodegraphAPI_cmodule.Port, renderTime: float, ... function RestartExternalRender (line 133) | def RestartExternalRender(sequenceID: int) -> None: ... function SetCatalogEventReceiver (line 134) | def SetCatalogEventReceiver(callable: typing.Callable) -> None: ... function SetMaxDiskUsage (line 135) | def SetMaxDiskUsage(sizeInMegabytes: int) -> None: ... function SetMaxImageMemory (line 136) | def SetMaxImageMemory(sizeInMegabytes: int) -> None: ... function SetNukeSessionMappings (line 137) | def SetNukeSessionMappings(mainSequenceID: int, mappings: list[Tuple[str... function SetNukeSessionOutputNodeName (line 138) | def SetNukeSessionOutputNodeName(mainSequenceID: int, outputNodeName: st... function SetRenderDebug (line 139) | def SetRenderDebug(enabled: bool) -> None: ... function SetRenderLogFile (line 140) | def SetRenderLogFile(filename: str) -> None: ... function SetRenderThreads (line 141) | def SetRenderThreads(numThreads: int) -> None: ... function SetSpeculativeCacheEnabled (line 142) | def SetSpeculativeCacheEnabled(enabled: bool) -> None: ... function SetTileSize (line 143) | def SetTileSize(width: int, height: int) -> None: ... function SignalExternalRender (line 144) | def SignalExternalRender(sequenceID: int, signal: int) -> None: ... function StartExternalRender (line 145) | def StartExternalRender(rendererName: str, sequenceID: int, nodeName: st... function TerminateCancelledRenders (line 146) | def TerminateCancelledRenders() -> None: ... function TileStitch (line 147) | def TileStitch(xTiles: int, yTiles: int, inputFilenames: list[str], outp... function UnregisterNukeSession (line 148) | def UnregisterNukeSession(mainSequenceID: int) -> None: ... function _Register2DFactories (line 149) | def _Register2DFactories() -> None: ... function _Set_GetRenderProducer_Fn (line 150) | def _Set_GetRenderProducer_Fn(callable: typing.Callable) -> None: ... function _internalRegisterCommandLineNode (line 151) | def _internalRegisterCommandLineNode(nodeType: str, paramXML: str, ctor:... function _internalSetFarmPluginManager (line 152) | def _internalSetFarmPluginManager(farmManagerModule: types.ModuleType) -... function fbo_bind (line 153) | def fbo_bind(arg0: int) -> None: ... function fbo_create (line 154) | def fbo_create(arg0: int, arg1: int) -> tuple: ... function fbo_delete (line 155) | def fbo_delete(arg0: int) -> None: ... function fbo_init (line 156) | def fbo_init() -> None: ... function fbo_unbind (line 157) | def fbo_unbind() -> None: ... function glBatchVertex (line 158) | def glBatchVertex(vertexSequence: typing.Sequence) -> None: ... function glDrawProjectedLatLongLine (line 159) | def glDrawProjectedLatLongLine(startPt: list[tuple[float, float, float]]... function gl_disableFragmentProgram (line 160) | def gl_disableFragmentProgram() -> None: ... function gl_enableFilmlookFragmentProgram (line 161) | def gl_enableFilmlookFragmentProgram(displayRequest: dict[str, object], ... function gl_enableFragmentProgram (line 162) | def gl_enableFragmentProgram(fragmentProgram: str, textureID: int) -> No... FILE: katana/stubs/Nodes3DAPI/AbstractTransform.pyi class AbstractTransform (line 11) | class AbstractTransform(Node3D): method _getXformAttribute (line 12) | def _getXformAttribute(self, frameTime, includeInteractive: bool = ...... method canOverride (line 13) | def canOverride(self, attrName): ... method findOverrideParameter (line 14) | def findOverrideParameter(self, path, attrName, time, index: Incomplet... method setInteractiveTransform (line 15) | def setInteractiveTransform(self, path, absScale, absRotate, absTransl... method setInteractiveTransformFlag (line 16) | def setInteractiveTransformFlag(self, path, time): ... method setOverride (line 17) | def setOverride(self, path, attrName, time, attrData, index: Incomplet... FILE: katana/stubs/Nodes3DAPI/Alembic_In.pyi class Alembic_In (line 14) | class Alembic_In(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method _getOpChain (line 16) | def _getOpChain(self, interface): ... method addParameterHints (line 17) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/AttributeCopy.pyi class AttributeCopyNode3D (line 11) | class AttributeCopyNode3D(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/AttributeEditor.pyi class AttributeEditorNode3D (line 11) | class AttributeEditorNode3D(NodegraphAPI_cmodule.PythonGroupNode): method __init__ (line 12) | def __init__(self) -> None: ... method GetAttrType (line 14) | def GetAttrType(cls, attr: PyFnAttribute.Attribute, default: Incomplet... method _AttributeEditorNode3D__cleanupNodeLayout (line 15) | def _AttributeEditorNode3D__cleanupNodeLayout(self): ... method _AttributeEditorNode3D__createNewOverride (line 16) | def _AttributeEditorNode3D__createNewOverride(self, nodeType: str = ..... method _AttributeEditorNode3D__findExclusivityNode (line 17) | def _AttributeEditorNode3D__findExclusivityNode(self): ... method _AttributeEditorNode3D__getAllOverrides (line 18) | def _AttributeEditorNode3D__getAllOverrides(self): ... method _AttributeEditorNode3D__isolateNode (line 19) | def _AttributeEditorNode3D__isolateNode(self, node: NodegraphAPI.Node)... method _AttributeEditorNode3D__setGroupOverride (line 20) | def _AttributeEditorNode3D__setGroupOverride(self, path, attrName, tim... method addParameterHints (line 21) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 22) | def canOverride(self, attrName): ... method copyOverride (line 23) | def copyOverride(self, fromLoc, toLoc, attrName, time: int = ...): ... method deleteOverride (line 24) | def deleteOverride(self, loc, attrName, time: int = ...): ... method findOverride (line 25) | def findOverride(self, path, attrName, time): ... method findOverrideParameter (line 26) | def findOverrideParameter(self, path, attrName, time, index: Incomplet... method findTransform3D (line 27) | def findTransform3D(self, path, time): ... method getExclusivity (line 28) | def getExclusivity(self): ... method getOverrideContentsDict (line 29) | def getOverrideContentsDict(self, time: int = ...): ... method ignoreOverride (line 30) | def ignoreOverride(self, loc, attrName, ignoreFlag): ... method isOverrideIgnored (line 31) | def isOverrideIgnored(self, loc, attrName): ... method moveOverride (line 32) | def moveOverride(self, fromLoc, toLoc, attrName, time: int = ...): ... method setExclusivity (line 33) | def setExclusivity(self, celSelection): ... method setInteractiveTransform (line 34) | def setInteractiveTransform(self, path, absScale, absRotate, absTransl... method setInteractiveTransformFlag (line 35) | def setInteractiveTransformFlag(self, path, time): ... method setOverride (line 36) | def setOverride(self, path, attrName, time, attrData, attrType: Incomp... method setPartialOverride (line 37) | def setPartialOverride(self, path, attrName, time, oldAttr, newIndex, ... class AttributeEditorsDict (line 39) | class AttributeEditorsDict(dict): method __init__ (line 40) | def __init__(self, *args, **kwargs) -> None: ... method _AttributeEditorsDict__getAttributeEditor (line 41) | def _AttributeEditorsDict__getAttributeEditor(self, attrName: Incomple... method getAttributeEditor (line 42) | def getAttributeEditor(self, attrName: Incomplete | None = ...): ... method getNames (line 43) | def getNames(self): ... function GetActiveAttributeEditorNode (line 45) | def GetActiveAttributeEditorNode(scenegraphLocation, needAttrName: Incom... function GetAttributeEditorNode (line 46) | def GetAttributeEditorNode(): ... function GetAttributeEditorsForAttr (line 47) | def GetAttributeEditorsForAttr(attributeEditorAttr: PyFnAttribute.GroupA... FILE: katana/stubs/Nodes3DAPI/AttributeFile_In.pyi class AttributeFile_In (line 17) | class AttributeFile_In(Node3D): method __init__ (line 18) | def __init__(self) -> None: ... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/AttributeSet.pyi class AttributeSet (line 14) | class AttributeSet(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method _getOpChain (line 16) | def _getOpChain(self, interface): ... method addParameterHints (line 17) | def addParameterHints(self, attrName, inputDict): ... method getAttribute (line 18) | def getAttribute(self, frameTime): ... method getFnAttribute (line 19) | def getFnAttribute(self, graphState: NodegraphAPI.GraphState): ... method getValueParameter (line 20) | def getValueParameter(self, frameTime): ... FILE: katana/stubs/Nodes3DAPI/BlockerCreate.pyi class BlockerCreate (line 17) | class BlockerCreate(AbstractTransform): method __init__ (line 18) | def __init__(self) -> None: ... method _BlockerCreate__addOverride (line 19) | def _BlockerCreate__addOverride(self, producer: PyFnGeolibProducers.Ge... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... method getScenegraphLocation (line 21) | def getScenegraphLocation(self): ... method setInteractiveTransform (line 22) | def setInteractiveTransform(self, path, absScale, absRotate, absTransl... FILE: katana/stubs/Nodes3DAPI/BoundsAdjust.pyi class BoundsAdjust (line 11) | class BoundsAdjust(Node3D): method __init__ (line 17) | def __init__(self) -> None: ... method _getOpChain (line 18) | def _getOpChain(self, interface): ... method addParameterHints (line 19) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/CameraClippingPlaneEdit.pyi class CameraClippingPlaneEdit (line 13) | class CameraClippingPlaneEdit(GenericAssign): method __init__ (line 14) | def __init__(self) -> None: ... method _filterAttrList (line 15) | def _filterAttrList(self, graphState: NodegraphAPI.GraphState, attrLis... method _getExtraAttrs (line 16) | def _getExtraAttrs(self, frameTime): ... method _getStaticAttrHintsForIncomingSceneQuery (line 17) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... method addParameterHints (line 18) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 19) | def canOverride(self, attrName): ... method setOverride (line 20) | def setOverride(self, path, attrName, time, attrData, attrType: Incomp... FILE: katana/stubs/Nodes3DAPI/CameraCreate.pyi class CameraNode3D (line 19) | class CameraNode3D(AbstractTransform): method __init__ (line 21) | def __init__(self) -> None: ... method _CameraNode3D__paramToTimeSampledDoubleAttr (line 22) | def _CameraNode3D__paramToTimeSampledDoubleAttr(self, param, frameTime... method _getOpChain (line 23) | def _getOpChain(self, interface): ... method addParameterHints (line 24) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 25) | def canOverride(self, attrName): ... method findOverrideParameter (line 26) | def findOverrideParameter(self, path, attrName, time, index: Incomplet... method getCameraAttributes (line 27) | def getCameraAttributes(self, cameraName, frameTime, graphState: typin... method getCameraGeometry (line 28) | def getCameraGeometry(self, cameraName, frameTime, graphState: typing.... method getDefaultObjectName (line 29) | def getDefaultObjectName(self): ... method getExtraParameters (line 30) | def getExtraParameters(self): ... method getObjectType (line 31) | def getObjectType(self): ... method getRootAttr (line 32) | def getRootAttr(self, objScenegraphLocation): ... method getScenegraphLocation (line 33) | def getScenegraphLocation(self): ... method getWorldAttr (line 34) | def getWorldAttr(self, objScenegraphLocation, frameTime: Incomplete | ... method setOverride (line 35) | def setOverride(self, path, attrName, time, attrData, index: Incomplet... FILE: katana/stubs/Nodes3DAPI/CameraImagePlaneCreate.pyi class CameraImagePlaneCreate (line 14) | class CameraImagePlaneCreate(GenericAssign): method __init__ (line 16) | def __init__(self) -> None: ... method _filterAttrList (line 17) | def _filterAttrList(self, graphState: NodegraphAPI.GraphState, attrLis... method _getIncomingSceneOpAndLocation (line 18) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method addParameterHints (line 19) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/CollectionCreate.pyi class CollectionCreate (line 12) | class CollectionCreate(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _CollectionCreate__optimizedCel (line 14) | def _CollectionCreate__optimizedCel(self, celText): ... method _getOpChain (line 15) | def _getOpChain(self, interface): ... method addParameterHints (line 16) | def addParameterHints(self, attrName, inputDict): ... method getScenegraphLocation (line 17) | def getScenegraphLocation(self, frameTime: Incomplete | None = ...) ->... FILE: katana/stubs/Nodes3DAPI/ConstraintCache.pyi class ConstraintCache (line 16) | class ConstraintCache(Node3D): method __init__ (line 17) | def __init__(self) -> None: ... method _ConstraintCache__getLocations (line 18) | def _ConstraintCache__getLocations(self, frameTime: int = ...): ... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... method clearCache (line 21) | def clearCache(self): ... method fillCache (line 22) | def fillCache(self, progressCallback: typing.Optional[typing.Callable]... FILE: katana/stubs/Nodes3DAPI/ConstraintListEdit.pyi class ConstraintListEdit (line 11) | class ConstraintListEdit(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getConstraintListAppendPaths (line 13) | def _getConstraintListAppendPaths(self, frameTime): ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/Constraints/AimConstraint.pyi class AimConstraint (line 11) | class AimConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getTargetPaths (line 19) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/BaseConstraint.pyi class BaseConstraint (line 7) | class BaseConstraint(Node3D): method __init__ (line 10) | def __init__(self) -> None: ... method _getOpChain (line 11) | def _getOpChain(self, interface): ... method addCommonAndNodeParamHints (line 12) | def addCommonAndNodeParamHints(self, attrName, nodeHints, inputDict): ... method addToConstraintList (line 13) | def addToConstraintList(self, time): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getPrependFlag (line 18) | def getPrependFlag(self): ... method getRequireTargetBounds (line 19) | def getRequireTargetBounds(self, time): ... method getRespectMotionBlur (line 20) | def getRespectMotionBlur(self, time): ... method getTargetPaths (line 21) | def getTargetPaths(self, time): ... method setRelativeTargets (line 22) | def setRelativeTargets(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/BillboardConstraint.pyi class BillboardConstraint (line 11) | class BillboardConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getTargetPaths (line 19) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/CameraScreenWindowConstraint.pyi class CameraScreenWindowConstraint (line 11) | class CameraScreenWindowConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getBasePath (line 14) | def getBasePath(self, time): ... method getConstraintArguments (line 15) | def getConstraintArguments(self, time): ... method getConstraintType (line 16) | def getConstraintType(self, time): ... method getTargetPaths (line 17) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/ClippingConstraint.pyi class ClippingConstraint (line 11) | class ClippingConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getRespectMotionBlur (line 19) | def getRespectMotionBlur(self, time): ... method getTargetPaths (line 20) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/ConstraintEdit.pyi class ConstraintEdit (line 22) | class ConstraintEdit(Node3D): method __init__ (line 23) | def __init__(self) -> None: ... method _ConstraintEdit__addAttributesToSet (line 24) | def _ConstraintEdit__addAttributesToSet(self, graphState: NodegraphAPI... method _ConstraintEdit__getConstraintIsNewParamValue (line 25) | def _ConstraintEdit__getConstraintIsNewParamValue(self): ... method _ConstraintEdit__getSourceOp (line 26) | def _ConstraintEdit__getSourceOp(self, graphState: NodegraphAPI.GraphS... method _ConstraintEdit__setConstraintIsNewParam (line 27) | def _ConstraintEdit__setConstraintIsNewParam(self, constraintIsNew): ... method _ConstraintEdit__setConstraintParam (line 28) | def _ConstraintEdit__setConstraintParam(self, constraintAttr: PyFnAttr... method _getIncomingSceneOpAndLocation (line 29) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 30) | def _getOpChain(self, interface): ... method _getStaticAttrHintsForIncomingSceneQuery (line 31) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath: str) -> d... method _updateParameters (line 32) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addParameterHints (line 33) | def addParameterHints(self, attrName, inputDict): ... method callNewPolicyCreatedCallback (line 34) | def callNewPolicyCreatedCallback(self, parameterPolicy: QT4FormWidgets... method getScenegraphLocation (line 35) | def getScenegraphLocation(self, frameTime: Incomplete | None = ...): ... method getScenegraphLocationPath (line 36) | def getScenegraphLocationPath(self, time): ... method setNewPolicyCreatedCallback (line 37) | def setNewPolicyCreatedCallback(self, newPolicyCreatedCallback: typing... FILE: katana/stubs/Nodes3DAPI/Constraints/ConstraintResolve.pyi class ConstraintResolve (line 11) | class ConstraintResolve(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... FILE: katana/stubs/Nodes3DAPI/Constraints/DollyConstraint.pyi class DollyConstraint (line 11) | class DollyConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getTargetPaths (line 19) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/FOVConstraint.pyi class FOVConstraint (line 11) | class FOVConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getTargetPaths (line 19) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/OrientConstraint.pyi class OrientConstraint (line 11) | class OrientConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getTargetPaths (line 18) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/ParentChildConstraint.pyi class ParentChildConstraint (line 10) | class ParentChildConstraint(BaseConstraint): method __init__ (line 11) | def __init__(self) -> None: ... method addParameterHints (line 12) | def addParameterHints(self, attrName, inputDict): ... method getBasePath (line 13) | def getBasePath(self, time): ... method getConstraintArguments (line 14) | def getConstraintArguments(self, time): ... method getConstraintType (line 15) | def getConstraintType(self, time): ... method getPrependFlag (line 16) | def getPrependFlag(self): ... method getTargetPaths (line 17) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/PointConstraint.pyi class PointConstraint (line 11) | class PointConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getTargetPaths (line 19) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/ReflectionConstraint.pyi class ReflectionConstraint (line 11) | class ReflectionConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getBasePath (line 14) | def getBasePath(self, time): ... method getConstraintArguments (line 15) | def getConstraintArguments(self, time): ... method getConstraintType (line 16) | def getConstraintType(self, time): ... method getTargetPaths (line 17) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/ScaleConstraint.pyi class ScaleConstraint (line 10) | class ScaleConstraint(BaseConstraint): method __init__ (line 11) | def __init__(self) -> None: ... method addParameterHints (line 12) | def addParameterHints(self, attrName, inputDict): ... method getBasePath (line 13) | def getBasePath(self, time): ... method getConstraintArguments (line 14) | def getConstraintArguments(self, time): ... method getConstraintType (line 15) | def getConstraintType(self, time): ... method getTargetPaths (line 16) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/Constraints/ScreenCoordinateConstraint.pyi class ScreenCoordinateConstraint (line 11) | class ScreenCoordinateConstraint(BaseConstraint): method __init__ (line 12) | def __init__(self) -> None: ... method addParameterHints (line 13) | def addParameterHints(self, attrName, inputDict): ... method getAllowMissingTargets (line 14) | def getAllowMissingTargets(self, time): ... method getBasePath (line 15) | def getBasePath(self, time): ... method getConstraintArguments (line 16) | def getConstraintArguments(self, time): ... method getConstraintType (line 17) | def getConstraintType(self, time): ... method getRequireTargetBounds (line 18) | def getRequireTargetBounds(self, time): ... method getRespectMotionBlur (line 19) | def getRespectMotionBlur(self, time): ... method getTargetPaths (line 20) | def getTargetPaths(self, time): ... FILE: katana/stubs/Nodes3DAPI/CoordinateSystemDefine.pyi class CoordinateSystemDefine (line 12) | class CoordinateSystemDefine(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... method getScenegraphLocation (line 16) | def getScenegraphLocation(self): ... FILE: katana/stubs/Nodes3DAPI/CreateUtil.pyi function BuildChild (line 6) | def BuildChild(root, childPath, childType): ... FILE: katana/stubs/Nodes3DAPI/DynamicParameterUtil.pyi function BuildParameterXmlIOFromAttrs (line 11) | def BuildParameterXmlIOFromAttrs(inputParameter, attrList, includeDefaul... function GetAttrNamesFromPaths (line 12) | def GetAttrNamesFromPaths(attrPaths, prefix): ... function GetDynamicArrayAttrNames (line 13) | def GetDynamicArrayAttrNames(groupAttr: PyFnAttribute.GroupAttribute, pr... function GetDynamicArrayAttrPaths (line 14) | def GetDynamicArrayAttrPaths(groupAttr: PyFnAttribute.GroupAttribute) ->... function GetXmlIOParameterFromAttribute (line 15) | def GetXmlIOParameterFromAttribute(attr, path, hints, forcePersistant: b... FILE: katana/stubs/Nodes3DAPI/ErrorNode.pyi class ErrorNode (line 12) | class ErrorNode(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... method getOriginalBaseNodeType (line 16) | def getOriginalBaseNodeType(self): ... method getOriginalNodeParameters (line 17) | def getOriginalNodeParameters(self): ... method getOriginalNodeType (line 18) | def getOriginalNodeType(self): ... method getScenegraphLocation (line 19) | def getScenegraphLocation(self): ... method overrideOriginalHintStrings (line 20) | def overrideOriginalHintStrings(self): ... method restoreOriginalHintStrings (line 21) | def restoreOriginalHintStrings(self): ... method setOriginalNodeTypes (line 22) | def setOriginalNodeTypes(self, originalNodeType, originalBaseType): ... FILE: katana/stubs/Nodes3DAPI/Expressions.pyi function __nodegraphExpressionGetRenderLocation (line 9) | def __nodegraphExpressionGetRenderLocation(nodeParamRef, output: int = .... FILE: katana/stubs/Nodes3DAPI/FaceSelect.pyi class FaceSelect (line 12) | class FaceSelect(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/FaceSelectionManager.pyi class FaceSelectionManager (line 8) | class FaceSelectionManager: method __init__ (line 10) | def __init__(self) -> None: ... method getSelectedFaces (line 11) | def getSelectedFaces(self, path: str) -> list: ... method getSelectedPathsAndFaces (line 12) | def getSelectedPathsAndFaces(self): ... method setSelectedPathsAndFaces (line 13) | def setSelectedPathsAndFaces(self, selectedPathsAndFaces: list, sender... function convertFaceSetToString (line 15) | def convertFaceSetToString(faceSet) -> str: ... function createFaceSetFromString (line 16) | def createFaceSetFromString(faceSetStr: str) -> set: ... function getFaceSelectionManager (line 17) | def getFaceSelectionManager() -> FaceSelectionManager: ... FILE: katana/stubs/Nodes3DAPI/Fork3D.pyi class ForkNode3D (line 12) | class ForkNode3D(Node3D): method __init__ (line 14) | def __init__(self) -> None: ... method _ForkNode3D__renumberOutputPorts (line 15) | def _ForkNode3D__renumberOutputPorts(self): ... method _ForkNode3D__renumberOutputVariables (line 16) | def _ForkNode3D__renumberOutputVariables(self): ... method _getOp (line 17) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method addForkOutput (line 18) | def addForkOutput(self): ... method addForkVariable (line 19) | def addForkVariable(self, name, isString): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... method deleteForkOutput (line 21) | def deleteForkOutput(self, index): ... method deleteForkVariable (line 22) | def deleteForkVariable(self, name): ... method renameForkVariable (line 23) | def renameForkVariable(self, oldName, newName): ... method reorderForkOutputVariables (line 24) | def reorderForkOutputVariables(self, oldPos, newPos): ... function GetForkDictHash (line 26) | def GetForkDictHash(): ... FILE: katana/stubs/Nodes3DAPI/GenericAssign.pyi class GenericAssign (line 16) | class GenericAssign(Node3D): method __init__ (line 20) | def __init__(self) -> None: ... method EscapeValue (line 22) | def EscapeValue(value): ... method HintTrue (line 24) | def HintTrue(hintName: str, hints: dict, default: bool = ...) -> bool:... method _GenericAssign__applyOverridesToInput (line 25) | def _GenericAssign__applyOverridesToInput(self, inputProducer, port: N... method _decodeHints (line 27) | def _decodeHints(text: str) -> dict: ... method _encodeHints (line 29) | def _encodeHints(hints: collections.OrderedDict | dict) -> str: ... method _filterAttrList (line 30) | def _filterAttrList(self, graphState: NodegraphAPI.GraphState, attrLis... method _getAttrRootForIncomingSceneQuery (line 31) | def _getAttrRootForIncomingSceneQuery(self): ... method _getIncomingSceneOpAndLocation (line 32) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 33) | def _getOpChain(self, interface): ... method _getStaticAttrHintsForIncomingSceneQuery (line 34) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... method _getStaticDefaultAttrForIncomingSceneQuery (line 35) | def _getStaticDefaultAttrForIncomingSceneQuery(self, attrPath): ... method _processGroup (line 37) | def _processGroup(attrlist, currentpath): ... method addParameterHints (line 38) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 39) | def canOverride(self, attrName): ... method findOverrideParameter (line 40) | def findOverrideParameter(self, path, attrName, time, index: Incomplet... method getArgsParamRoot (line 41) | def getArgsParamRoot(self): ... method getFixedCELStatement (line 42) | def getFixedCELStatement(self): ... method setOverride (line 43) | def setOverride(self, path, attrName, time, attrData, index: Incomplet... method updateArgsParameterDict (line 44) | def updateArgsParameterDict(self, argsinfo, changeNode: bool = ...): ... method updateArgsParameterFile (line 45) | def updateArgsParameterFile(self, filename: str): ... function GetArgsFileDict (line 47) | def GetArgsFileDict(filename: str) -> collections.OrderedDict: ... function GetArgsFileXML (line 48) | def GetArgsFileXML(filename: str) -> str: ... FILE: katana/stubs/Nodes3DAPI/GenericAssignRegistry.pyi function GetGenericAssignFiles (line 10) | def GetGenericAssignFiles() -> list[None]: ... function GetGenericAssignNodeTypes (line 11) | def GetGenericAssignNodeTypes() -> dict: ... function InitGenericAssignNodeTypes (line 12) | def InitGenericAssignNodeTypes(searchPaths: Incomplete | None = ...): ... function RegisterGenericAssignNodeTypes (line 13) | def RegisterGenericAssignNodeTypes(searchPaths: Incomplete | None = ...)... FILE: katana/stubs/Nodes3DAPI/GenericGeo.pyi class GenericGeo (line 12) | class GenericGeo(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... function BuildChild (line 16) | def BuildChild(root, childPath, childType): ... function _AddChild (line 17) | def _AddChild(producer: PyFnGeolibProducers.GeometryProducer, childName)... FILE: katana/stubs/Nodes3DAPI/GenericOp.pyi class GenericOp (line 20) | class GenericOp(Node3D): method __init__ (line 21) | def __init__(self) -> None: ... method _getOpChain (line 22) | def _getOpChain(self, interface): ... method addParameterHints (line 23) | def addParameterHints(self, attrName, inputDict): ... method buildArgsParametersFromAttr (line 24) | def buildArgsParametersFromAttr(self, attr): ... method updateArgsParametersFromAttr (line 25) | def updateArgsParametersFromAttr(self, groupAttr: PyFnAttribute.GroupA... class _ParamUpdater (line 27) | class _ParamUpdater: method _ParamUpdater__deleteParam (line 32) | def _ParamUpdater__deleteParam(cls, parentParam: NodegraphAPI.Paramete... method _ensureParamForAttr (line 34) | def _ensureParamForAttr(cls, parentParam: NodegraphAPI.Parameter, name... method _setParamValue (line 36) | def _setParamValue(cls, parentParam: NodegraphAPI.Parameter, childPara... method clean (line 38) | def clean(cls, parentParam: NodegraphAPI.Parameter, groupAttr: PyFnAtt... method update (line 40) | def update(cls, parentParam: NodegraphAPI.Parameter, groupAttr: PyFnAt... function _DoInputRequests (line 42) | def _DoInputRequests(interface, inputBehavior, inputPorts, graphState: N... FILE: katana/stubs/Nodes3DAPI/GroupMerge.pyi class GroupMergeNode (line 12) | class GroupMergeNode(NodegraphAPI_cmodule.PythonGroupNode): method __init__ (line 13) | def __init__(self) -> None: ... method _GroupMergeNode__buildMergeNode (line 14) | def _GroupMergeNode__buildMergeNode(self): ... method _GroupMergeNode__getMergeNode (line 15) | def _GroupMergeNode__getMergeNode(self): ... method addParameterHints (line 16) | def addParameterHints(self, attrName, inputDict): ... method allowChildReparentingViaDrag (line 17) | def allowChildReparentingViaDrag(self, childNode): ... method buildChildNode (line 18) | def buildChildNode(self, adoptNode: Incomplete | None = ...): ... method canAdoptNodes (line 19) | def canAdoptNodes(self, nodes): ... method deleteChildNode (line 20) | def deleteChildNode(self, childNode): ... method getChildNodeType (line 21) | def getChildNodeType(self): ... method getChildNodes (line 22) | def getChildNodes(self): ... method getDefaultNodeShapeAttrs (line 23) | def getDefaultNodeShapeAttrs(self): ... method getDisplayNameExpression (line 24) | def getDisplayNameExpression(self): ... method getDisplayNameForChildNode (line 25) | def getDisplayNameForChildNode(self, childNode): ... method getInfoString (line 26) | def getInfoString(self): ... method positionChildNodes (line 27) | def positionChildNodes(self): ... method preprocessChildReparentingViaDrag (line 28) | def preprocessChildReparentingViaDrag(self, childNode): ... method reorderChildNode (line 29) | def reorderChildNode(self, fromIndex, toIndex): ... method setChildNodeType (line 30) | def setChildNodeType(self, nodeType): ... method setDisplayNameExpression (line 31) | def setDisplayNameExpression(self, exprText): ... FILE: katana/stubs/Nodes3DAPI/HierarchyCopy.pyi class HierarchyCopy (line 14) | class HierarchyCopy(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method AddGroup (line 16) | def AddGroup(self): ... method DeleteGroup (line 17) | def DeleteGroup(self, index): ... method ReorderGroup (line 18) | def ReorderGroup(self, oldPos, newPos): ... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/HierarchyCreate.pyi class HierarchyCreate (line 20) | class HierarchyCreate(Node3D): class TreeEntry (line 21) | class TreeEntry: method __init__ (line 22) | def __init__(self, name, path, typeName, paramHash, children) -> Non... method getUniqueChildName (line 23) | def getUniqueChildName(self, desiredName): ... method __init__ (line 24) | def __init__(self) -> None: ... method _HierarchyCreate__buildParameterElement (line 25) | def _HierarchyCreate__buildParameterElement(self, name, typeName, isLa... method _HierarchyCreate__getLocationTreeFromParam (line 26) | def _HierarchyCreate__getLocationTreeFromParam(self, param, parentPath... method _HierarchyCreate__getOrBuildInfoParameter (line 27) | def _HierarchyCreate__getOrBuildInfoParameter(self, group): ... method _HierarchyCreate__getParamForLocation (line 28) | def _HierarchyCreate__getParamForLocation(self, path): ... method _HierarchyCreate__getParameterByPath (line 29) | def _HierarchyCreate__getParameterByPath(self, path): ... method _HierarchyCreate__getTypeParameterByPath (line 30) | def _HierarchyCreate__getTypeParameterByPath(self, path, create: bool ... method _HierarchyCreate__pathToParameterPath (line 31) | def _HierarchyCreate__pathToParameterPath(self, path): ... method _HierarchyCreate__tokenizePath (line 32) | def _HierarchyCreate__tokenizePath(self, path): ... method _getOpChain (line 33) | def _getOpChain(self, interface): ... method addLocation (line 34) | def addLocation(self, path, typeName): ... method addParameterHints (line 35) | def addParameterHints(self, attrName, inputDict): ... method deleteLocation (line 36) | def deleteLocation(self, path): ... method duplicateLocation (line 37) | def duplicateLocation(self, path): ... method getAttrsParameterForLocation (line 38) | def getAttrsParameterForLocation(self, path, create: bool = ...): ... method getLocationTree (line 39) | def getLocationTree(self, atLocation: str = ...): ... method getMetaDataParameterForLocation (line 40) | def getMetaDataParameterForLocation(self, path, create: bool = ...): ... method getParameterForLocation (line 41) | def getParameterForLocation(self, path): ... method getTypeOfLocation (line 42) | def getTypeOfLocation(self, path): ... method renameLocation (line 43) | def renameLocation(self, path: str, newBaseName: str) -> str: ... method reorderLocation (line 44) | def reorderLocation(self, path, index): ... method reparentLocation (line 45) | def reparentLocation(self, path, newParent): ... method setTypeOfLocation (line 46) | def setTypeOfLocation(self, path, typeName): ... FILE: katana/stubs/Nodes3DAPI/IncomingSceneOpDelegates.pyi class IncomingSceneOpDelegate (line 11) | class IncomingSceneOpDelegate: method buildIncomingSceneOp (line 14) | def buildIncomingSceneOp(self, node: NodegraphAPI.Node, interface): ... class OutgoingAttributesDelegate (line 16) | class OutgoingAttributesDelegate: method buildOutgoingAttributes (line 19) | def buildOutgoingAttributes(self, node: NodegraphAPI.Node, interface):... class _IncomingSceneInterface (line 21) | class _IncomingSceneInterface: method __init__ (line 22) | def __init__(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.G... method appendOp (line 23) | def appendOp(self, opType, opArgs: Incomplete | None = ...): ... method getFrameTime (line 24) | def getFrameTime(self) -> float: ... method getGraphState (line 25) | def getGraphState(self) -> NodegraphAPI.GraphState: ... method getOutputPortName (line 26) | def getOutputPortName(self) -> str: ... class _OutgoingAttributesInterface (line 28) | class _OutgoingAttributesInterface: method __init__ (line 29) | def __init__(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.G... method getAttrList (line 30) | def getAttrList(self) -> str: ... method getFrameTime (line 31) | def getFrameTime(self) -> float: ... method getGraphState (line 32) | def getGraphState(self) -> NodegraphAPI.GraphState: ... method getOutputAttrList (line 33) | def getOutputAttrList(self): ... method getOutputPortName (line 34) | def getOutputPortName(self) -> str: ... method setAttrList (line 35) | def setAttrList(self, attrList): ... function RegisterIncomingSceneOpDelegate (line 37) | def RegisterIncomingSceneOpDelegate(nodetype, delegate): ... function RegisterOutgoingAttributesDelegate (line 38) | def RegisterOutgoingAttributesDelegate(nodetype, delegate): ... function RunIncomingSceneOpDelegate (line 39) | def RunIncomingSceneOpDelegate(node: NodegraphAPI.Node, port: NodegraphA... function RunOutgoingAttributesDelegate (line 40) | def RunOutgoingAttributesDelegate(node: NodegraphAPI.Node, port: Nodegra... FILE: katana/stubs/Nodes3DAPI/IncomingTest.pyi class IncomingTestNode (line 15) | class IncomingTestNode(Node3D): method __init__ (line 16) | def __init__(self) -> None: ... method _IncomingTestNode__getScenegraphLocation (line 17) | def _IncomingTestNode__getScenegraphLocation(self, frameTime, action: ... method _getIncomingSceneOpAndLocation (line 18) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method _updateParameters (line 20) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addParameterHints (line 21) | def addParameterHints(self, attrName, inputDict): ... method getScenegraphLocation (line 22) | def getScenegraphLocation(self, frameTime: int = ...): ... FILE: katana/stubs/Nodes3DAPI/InfoCreate.pyi class InfoCreate (line 12) | class InfoCreate(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/InputGraphBasedCacheManager.pyi class InputGraphBasedCacheManager (line 15) | class InputGraphBasedCacheManager: method __init__ (line 16) | def __init__(self) -> None: ... method _InputGraphBasedCacheManager__on_node_delete (line 17) | def _InputGraphBasedCacheManager__on_node_delete(self, eventType, even... method _InputGraphBasedCacheManager__on_nodegraphChangedEvent (line 18) | def _InputGraphBasedCacheManager__on_nodegraphChangedEvent(self, event... method _InputGraphBasedCacheManager__resolveInvalidations (line 19) | def _InputGraphBasedCacheManager__resolveInvalidations(self): ... method cacheValue (line 20) | def cacheValue(self, node: NodegraphAPI.Node, graphState: NodegraphAPI... method clear (line 21) | def clear(self): ... method discard (line 22) | def discard(self, node: NodegraphAPI.Node): ... method getCachedValue (line 23) | def getCachedValue(self, node: NodegraphAPI.Node, graphState: Nodegrap... class _NodeRecord (line 25) | class _NodeRecord: method __init__ (line 26) | def __init__(self) -> None: ... method getValue (line 27) | def getValue(self, graphState: NodegraphAPI.GraphState, portIndex): ... method invalidate (line 28) | def invalidate(self): ... method invalidateCache (line 29) | def invalidateCache(self): ... method setValue (line 30) | def setValue(self, graphState: NodegraphAPI.GraphState, portIndex, val... FILE: katana/stubs/Nodes3DAPI/Isolate.pyi class Isolate (line 14) | class Isolate(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method _getOpChain (line 16) | def _getOpChain(self, interface): ... method addIsolatePatternEntry (line 17) | def addIsolatePatternEntry(self, value): ... method addIsolateValueEntry (line 18) | def addIsolateValueEntry(self, value): ... method addParameterHints (line 19) | def addParameterHints(self, attrName, inputDict): ... method enableSecondaryOutput (line 20) | def enableSecondaryOutput(self, isEnabled): ... method enableSecondayOutput (line 21) | def enableSecondayOutput(self, isEnabled): ... method isSecondaryOutputEnabled (line 22) | def isSecondaryOutputEnabled(self): ... FILE: katana/stubs/Nodes3DAPI/JackGeometry.pyi function GetJackGeometryAttr (line 8) | def GetJackGeometryAttr(scale: float = ...): ... function GetPointerGeometryAttr (line 9) | def GetPointerGeometryAttr(scale: float = ...): ... FILE: katana/stubs/Nodes3DAPI/LODMerge.pyi class LODMergeNode3D (line 13) | class LODMergeNode3D(Node3D): method __init__ (line 14) | def __init__(self) -> None: ... method AddInput (line 15) | def AddInput(self): ... method DeleteInput (line 16) | def DeleteInput(self, index): ... method ReorderInput (line 17) | def ReorderInput(self, index, newIndex): ... method _getOpChain (line 18) | def _getOpChain(self, interface): ... method addParameterHints (line 19) | def addParameterHints(self, attrName, inputDict): ... method getAll3DInputsWithPhysicalIndex (line 20) | def getAll3DInputsWithPhysicalIndex(self, graphState: NodegraphAPI.Gra... FILE: katana/stubs/Nodes3DAPI/LODRangeAssign.pyi class LODRangeAssign (line 14) | class LODRangeAssign(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method AddGroup (line 16) | def AddGroup(self): ... method DeleteGroup (line 17) | def DeleteGroup(self, index): ... method _getOpChain (line 18) | def _getOpChain(self, interface): ... method addParameterHints (line 19) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LODSelect.pyi class LODSelect (line 11) | class LODSelect(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LightCreate.pyi class LightNode3D (line 16) | class LightNode3D(Nodes3DAPI.CameraCreate.CameraNode3D): method __init__ (line 17) | def __init__(self) -> None: ... method AddGroup (line 18) | def AddGroup(self): ... method DeleteGroup (line 19) | def DeleteGroup(self, index): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 21) | def canOverride(self, attrName): ... method getCameraAttributes (line 22) | def getCameraAttributes(self, cameraName, frameTime, graphState: typin... method getCameraGeometry (line 23) | def getCameraGeometry(self, cameraName, frameTime, graphState: typing.... method getCurveEditorNameHint (line 24) | def getCurveEditorNameHint(self, paramName): ... method getDefaultObjectName (line 25) | def getDefaultObjectName(self): ... method getExtraParameters (line 26) | def getExtraParameters(self): ... method getManipulatorAttributes (line 27) | def getManipulatorAttributes(self, frameTime, presetAttrs): ... method getObjectType (line 28) | def getObjectType(self): ... method getOrCreateManipulatorGroup (line 29) | def getOrCreateManipulatorGroup(self, preset, manipName, frameTime): ... method getRootAttr (line 30) | def getRootAttr(self, objScenegraphLocation): ... method getViewerInfo (line 31) | def getViewerInfo(self, frameTime): ... method getWorldAttr (line 32) | def getWorldAttr(self, objScenegraphLocation, frameTime: Incomplete | ... method setOverride (line 33) | def setOverride(self, path, attrName, time, attrData, **kwargs): ... FILE: katana/stubs/Nodes3DAPI/LightLink.pyi class LightLinkNode3D (line 11) | class LightLinkNode3D(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LightLinkConstants.pyi class InitialState (line 5) | class InitialState: FILE: katana/stubs/Nodes3DAPI/LightLinkEdit.pyi class LightLinkEditNode3D (line 11) | class LightLinkEditNode3D(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LightLinkResolve.pyi class LightLinkResolveNode3D (line 8) | class LightLinkResolveNode3D(Node3D): method __init__ (line 9) | def __init__(self) -> None: ... method _getOpChain (line 10) | def _getOpChain(self, interface): ... FILE: katana/stubs/Nodes3DAPI/LightLinkSetup.pyi class LightLinkSetupNode3D (line 12) | class LightLinkSetupNode3D(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LightListEdit.pyi class LightListEdit (line 11) | class LightListEdit(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getLightListAppendPaths (line 13) | def _getLightListAppendPaths(self, frameTime): ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LocationCreate.pyi class LocationCreate (line 14) | class LocationCreate(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method _getOpChain (line 16) | def _getOpChain(self, interface): ... method addAttributeEntry (line 17) | def addAttributeEntry(self, attr: PyFnAttribute.Attribute, path: str, ... method addParameterHints (line 18) | def addParameterHints(self, attrName, inputDict): ... method deleteAttributeEntry (line 19) | def deleteAttributeEntry(self, index: int): ... method getAttributeEntries (line 20) | def getAttributeEntries(self) -> NodegraphAPI.Parameter: ... method reorderAttributeEntries (line 21) | def reorderAttributeEntries(self, oldPos: int, oldPosCount: int, newPo... method reorderAttributeEntry (line 22) | def reorderAttributeEntry(self, oldPos: int, newPos: int): ... FILE: katana/stubs/Nodes3DAPI/LocationGenerate.pyi class LocationGenerate (line 11) | class LocationGenerate(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/LookFileBake.pyi class LookFileBake (line 19) | class LookFileBake(Node3D): method __init__ (line 20) | def __init__(self) -> None: ... method AddPassInput (line 21) | def AddPassInput(self, passName: str): ... method CheckRootLocations (line 22) | def CheckRootLocations(self, rootLocations, origProducer, asmbCmptDict... method DeletePassInput (line 23) | def DeletePassInput(self, index: int): ... method PostLookFileBake (line 24) | def PostLookFileBake(self, assetId, asmbCmptDict, progressCallback: ty... method PreLookFileBake (line 25) | def PreLookFileBake(self, assetId, asmbCmptDict, progressCallback: typ... method RenamePassInput (line 26) | def RenamePassInput(self, index: int, newName: str): ... method ReorderInput (line 27) | def ReorderInput(self, index: int, newIndex: int): ... method WriteLookFileBakeScriptFiles (line 28) | def WriteLookFileBakeScriptFiles(self, sessionPath: str, graphState: N... method WriteLookFileToDirectory (line 29) | def WriteLookFileToDirectory(self, outputFormatName, graphState: Nodeg... method WriteToAsset (line 30) | def WriteToAsset(self, graphState: NodegraphAPI.GraphState, assetId, a... method WriteToCompoundFile (line 31) | def WriteToCompoundFile(self, graphState: Tuple[NodegraphAPI.GraphStat... method WriteToDirectory (line 32) | def WriteToDirectory(self, graphState: Tuple[NodegraphAPI.GraphState, ... method WriteToLookFile (line 33) | def WriteToLookFile(self, graphState: Tuple[NodegraphAPI.GraphState, f... method _LookFileBake__getBakerOps (line 34) | def _LookFileBake__getBakerOps(self, passInputPortNames, graphState: N... method _LookFileBake__getIncludeGlobalAttributes (line 35) | def _LookFileBake__getIncludeGlobalAttributes(self, frameTime): ... method _LookFileBake__getIncludeLodInfo (line 36) | def _LookFileBake__getIncludeLodInfo(self, frameTime): ... method _LookFileBake__getMaterialTreeRootLocations (line 37) | def _LookFileBake__getMaterialTreeRootLocations(self, frameTime): ... method _LookFileBake__getOutputFormatName (line 38) | def _LookFileBake__getOutputFormatName(self, frameTime): ... method _LookFileBake__getRootLocations (line 39) | def _LookFileBake__getRootLocations(self, frameTime): ... method _LookFileBake__getSourceFile (line 41) | def _LookFileBake__getSourceFile(): ... method _getOpChain (line 42) | def _getOpChain(self, interface): ... method _getPassInputPortNames (line 43) | def _getPassInputPortNames(self): ... method _getPassInputPorts (line 44) | def _getPassInputPorts(self): ... method _getReferenceInputPort (line 45) | def _getReferenceInputPort(self): ... method _getReferenceInputPortName (line 46) | def _getReferenceInputPortName(self): ... method addParameterHints (line 47) | def addParameterHints(self, attrName, inputDict): ... method getOrigProducer (line 48) | def getOrigProducer(self, graphState: NodegraphAPI.GraphState, portNam... method getReferenceProducer (line 49) | def getReferenceProducer(self, graphState: NodegraphAPI.GraphState): ... FILE: katana/stubs/Nodes3DAPI/LookFileBaking.pyi class PostLookFileBakeHandler (line 18) | class PostLookFileBakeHandler(_PrePostLookFileBakeCallbackForwarder): method __init__ (line 19) | def __init__(self, node: typing.Optional[NodegraphAPI.Node] = ...) -> ... class PreLookFileBakeHandler (line 21) | class PreLookFileBakeHandler(_PrePostLookFileBakeCallbackForwarder): method __init__ (line 22) | def __init__(self, node: typing.Optional[NodegraphAPI.Node] = ...) -> ... class _PrePostLookFileBakeCallbackForwarder (line 24) | class _PrePostLookFileBakeCallbackForwarder(LookFileBakeAPI.LookFileBake... method __init__ (line 27) | def __init__(self, node: typing.Optional[NodegraphAPI.Node] = ...) -> ... method notify (line 28) | def notify(self, assetId: str, rootLocationProducers: dict[str, PyFnGe... function BakingContext (line 30) | def BakingContext(): ... function GetBakeState (line 31) | def GetBakeState() -> bool: ... function GetGlobalBakeState (line 32) | def GetGlobalBakeState() -> bool: ... function GetLocationIntervalEvictor (line 33) | def GetLocationIntervalEvictor(node: typing.Optional[NodegraphAPI.Node] ... function GetLookFileBakeOp (line 34) | def GetLookFileBakeOp(node: NodegraphAPI.Node, inputPortName: str, graph... function GetLookFileBakeOps (line 35) | def GetLookFileBakeOps(node: NodegraphAPI.Node, inputPortNames: Sequence... function PostLookFileBake (line 36) | def PostLookFileBake(node: NodegraphAPI.Node | None, assetId: str, rootL... function PreLookFileBake (line 37) | def PreLookFileBake(node: NodegraphAPI.Node | None, assetId: str, rootLo... function ValidateGraphState (line 38) | def ValidateGraphState(graphStateOrTime: typing.Optional[Nodegraph]) -> ... FILE: katana/stubs/Nodes3DAPI/LookFileGlobalsAssignBaseType.pyi class LookFileGlobalsAssignBaseType3D (line 13) | class LookFileGlobalsAssignBaseType3D(GenericAssign): method __init__ (line 15) | def __init__(self) -> None: ... method _filterAttrList (line 16) | def _filterAttrList(self, graphState: NodegraphAPI.GraphState, attrLis... method _getOpChain (line 17) | def _getOpChain(self, interface): ... method addParameterHints (line 18) | def addParameterHints(self, attrName, inputDict): ... function GraphStateInLookfileBake (line 20) | def GraphStateInLookfileBake(graphState: NodegraphAPI.GraphState): ... FILE: katana/stubs/Nodes3DAPI/LookFileMaterialsIn.pyi class LookFileMaterialsIn (line 15) | class LookFileMaterialsIn(Node3D): method __init__ (line 16) | def __init__(self) -> None: ... method _getOpChain (line 17) | def _getOpChain(self, interface): ... method addParameterHints (line 18) | def addParameterHints(self, attrName, inputDict): ... method getInfoString (line 19) | def getInfoString(self): ... FILE: katana/stubs/Nodes3DAPI/LookFileMaterialsOut.pyi class LookFileMaterialsOut (line 20) | class LookFileMaterialsOut(Node3D): method __init__ (line 21) | def __init__(self) -> None: ... method WriteLookFileToDirectory (line 22) | def WriteLookFileToDirectory(self, outputFormatName: str, graphState: ... method WriteToAsset (line 23) | def WriteToAsset(self, graphState: NodegraphAPI.GraphState, assetId, a... method WriteToCompoundFile (line 24) | def WriteToCompoundFile(self, graphState: Tuple[NodegraphAPI.GraphStat... method WriteToDirectory (line 25) | def WriteToDirectory(self, graphState: Tuple[NodegraphAPI.GraphState, ... method WriteToLookFile (line 26) | def WriteToLookFile(self, graphState: Tuple[NodegraphAPI.GraphState, f... method _LookFileMaterialsOut__getProducer (line 27) | def _LookFileMaterialsOut__getProducer(self, graphState: typing.Option... method _getOpChain (line 28) | def _getOpChain(self, interface): ... method addParameterHints (line 29) | def addParameterHints(self, attrName, inputDict): ... method test (line 30) | def test(self): ... FILE: katana/stubs/Nodes3DAPI/LookFileOverrideEnable.pyi class LookFileOverrideEnable (line 14) | class LookFileOverrideEnable(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method _getOpChain (line 16) | def _getOpChain(self, interface): ... method addParameterHints (line 17) | def addParameterHints(self, attrName, inputDict): ... method getInfoString (line 18) | def getInfoString(self): ... function getAssetVersion (line 20) | def getAssetVersion(assetId): ... FILE: katana/stubs/Nodes3DAPI/LookFileResolve.pyi class LookFileResolve (line 12) | class LookFileResolve(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... method getInfoString (line 16) | def getInfoString(self): ... function GraphStateInLookfileBake (line 18) | def GraphStateInLookfileBake(graphState: NodegraphAPI.GraphState): ... FILE: katana/stubs/Nodes3DAPI/Material.pyi class Material (line 23) | class Material(Node3D): method __init__ (line 26) | def __init__(self) -> None: ... method _Material__addDeepParam (line 27) | def _Material__addDeepParam(self, parent, path, value: Incomplete | No... method _Material__addShaderPair (line 28) | def _Material__addShaderPair(self, parent, prefix, isCoshader: bool = ... method _Material__checkDynamicParametersInternal (line 29) | def _Material__checkDynamicParametersInternal(self, universalAttr, upd... method _Material__deleteDeepParam (line 30) | def _Material__deleteDeepParam(self, path, deleteEmptyParentGroups: bo... method _Material__findUniqueCoshaderName (line 31) | def _Material__findUniqueCoshaderName(self, renderer): ... method _Material__getCoshaderNames (line 32) | def _Material__getCoshaderNames(self, renderer): ... method _Material__getMaterialAttrList (line 33) | def _Material__getMaterialAttrList(self, graphState: NodegraphAPI.Grap... method _Material__getShaderTypeParameters (line 34) | def _Material__getShaderTypeParameters(self): ... method _Material__isNetworkMaterial (line 35) | def _Material__isNetworkMaterial(self): ... method _Material__lastValueDiffers (line 36) | def _Material__lastValueDiffers(self, param, currentValue, sourceTime,... method _Material__updateShaderTypeParamsWithAttr (line 37) | def _Material__updateShaderTypeParamsWithAttr(self, paramsParam, param... method _cookAndWaitToUpdateParameters (line 38) | def _cookAndWaitToUpdateParameters(self, updateLastValue: bool = ...):... method _getIncomingSceneOpAndLocation (line 39) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 40) | def _getOpChain(self, interface): ... method _getStaticAttrHintsForIncomingSceneQuery (line 41) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... method _getUpdateParametersSupportedKeywords (line 42) | def _getUpdateParametersSupportedKeywords(self): ... method _updateParameters (line 43) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addAttributeEntry (line 44) | def addAttributeEntry(self, attr: PyFnAttribute.Attribute, path: str, ... method addCoshader (line 45) | def addCoshader(self, renderer, coshaderName): ... method addParameterHints (line 46) | def addParameterHints(self, attrName, inputDict): ... method addShaderType (line 47) | def addShaderType(self, shaderType): ... method canOverride (line 48) | def canOverride(self, attrName): ... method checkDynamicParameters (line 49) | def checkDynamicParameters(self, *args, **kwds): ... method clearParamHistory (line 50) | def clearParamHistory(self): ... method deleteAttributeEntry (line 51) | def deleteAttributeEntry(self, index: int): ... method findOverrideParameter (line 52) | def findOverrideParameter(self, path, attrName, time, **kwargs): ... method getAttributeEntries (line 53) | def getAttributeEntries(self) -> NodegraphAPI.Parameter: ... method getInfoString (line 54) | def getInfoString(self): ... method getScenegraphLocation (line 55) | def getScenegraphLocation(self, sourceTime: int = ...): ... method initializeFromMaterialAttr (line 56) | def initializeFromMaterialAttr(self, materialAttr): ... method isResetPossible (line 57) | def isResetPossible(self): ... method removeAllShaders (line 58) | def removeAllShaders(self): ... method removeCoshader (line 59) | def removeCoshader(self, coshaderName, renderer): ... method removeShaderAtPath (line 60) | def removeShaderAtPath(self, shaderParameterPath: str): ... method removeShaderType (line 61) | def removeShaderType(self, shaderType, isCoshader: bool = ...): ... method renameCoshader (line 62) | def renameCoshader(self, path, newName): ... method reorderAttributeEntries (line 63) | def reorderAttributeEntries(self, oldPos: int, oldPosCount: int, newPo... method reorderAttributeEntry (line 64) | def reorderAttributeEntry(self, oldPos: int, newPos: int): ... method setOverride (line 65) | def setOverride(self, path, attrName, time, attrData, attrType: Incomp... method setShader (line 66) | def setShader(self, shaderType, shaderName): ... method setShaderParam (line 67) | def setShaderParam(self, shaderType, paramName, newValue): ... class ShaderPathComponents (line 69) | class ShaderPathComponents: class Role (line 70) | class Role: method __init__ (line 75) | def __init__(self, canonicalPath, role, shaderType, parameterName, isC... method _ShaderPathComponents__getPathForRole (line 76) | def _ShaderPathComponents__getPathForRole(self, role): ... method _ShaderPathComponents__getPeerPathForPath (line 78) | def _ShaderPathComponents__getPeerPathForPath(cls, path, pathRole, isC... method create (line 80) | def create(cls, path: str) -> ShaderPathComponents | None: ... method getCanonicalPath (line 81) | def getCanonicalPath(self): ... method getParameterGroupPath (line 82) | def getParameterGroupPath(self): ... method getParameterName (line 83) | def getParameterName(self) -> str | None: ... method getRole (line 84) | def getRole(self): ... method getShaderNamePath (line 85) | def getShaderNamePath(self): ... method getShaderType (line 86) | def getShaderType(self): ... method isCoshader (line 87) | def isCoshader(self): ... FILE: katana/stubs/Nodes3DAPI/MaterialResolve.pyi class MaterialResolve (line 11) | class MaterialResolve(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... FILE: katana/stubs/Nodes3DAPI/MaterialStack.pyi class MaterialStackNode (line 16) | class MaterialStackNode(NodegraphAPI_cmodule.PythonGroupNode): method __init__ (line 18) | def __init__(self) -> None: ... method _MaterialStackNode__conformAdoptedMaterials (line 19) | def _MaterialStackNode__conformAdoptedMaterials(self, parent, childLis... method _MaterialStackNode__createMergeNode (line 20) | def _MaterialStackNode__createMergeNode(self): ... method _MaterialStackNode__extractOrderedChildNodes (line 21) | def _MaterialStackNode__extractOrderedChildNodes(self, childList, resu... method _MaterialStackNode__findMaterialNodesInList (line 22) | def _MaterialStackNode__findMaterialNodesInList(self, nodeList, result... method _MaterialStackNode__findReferencedMaterialNode (line 23) | def _MaterialStackNode__findReferencedMaterialNode(self, path): ... method _MaterialStackNode__getAppendedMergeInputPort (line 24) | def _MaterialStackNode__getAppendedMergeInputPort(self, mergeNode: Inc... method _MaterialStackNode__getMaterialParent (line 25) | def _MaterialStackNode__getMaterialParent(self, node: NodegraphAPI.Nod... method _MaterialStackNode__getMergeInputIndexForNode (line 26) | def _MaterialStackNode__getMergeInputIndexForNode(self, node: Nodegrap... method _MaterialStackNode__getMergeNode (line 27) | def _MaterialStackNode__getMergeNode(self, create: bool = ...): ... method _MaterialStackNode__getReferenceGroupNode (line 28) | def _MaterialStackNode__getReferenceGroupNode(self, create: bool = ...... method _MaterialStackNode__getReferenceGroupPruneNode (line 29) | def _MaterialStackNode__getReferenceGroupPruneNode(self): ... method _MaterialStackNode__getReferenceGroupTerminalPort (line 30) | def _MaterialStackNode__getReferenceGroupTerminalPort(self): ... method _MaterialStackNode__layoutMaterialList (line 31) | def _MaterialStackNode__layoutMaterialList(self, childList, state, dep... method _MaterialStackNode__setReferencedMaterialInclusionSet (line 32) | def _MaterialStackNode__setReferencedMaterialInclusionSet(self, paths)... method _MaterialStackNode__walkMaterialTree (line 33) | def _MaterialStackNode__walkMaterialTree(self, node: NodegraphAPI.Node... method addChildMaterial (line 34) | def addChildMaterial(self, parentNode): ... method addGeometryMaterial (line 35) | def addGeometryMaterial(self): ... method addLightMaterial (line 36) | def addLightMaterial(self): ... method addLookFileInReference (line 37) | def addLookFileInReference(self, spref): ... method addLookFileMaterial (line 38) | def addLookFileMaterial(self): ... method addMaterial (line 39) | def addMaterial(self): ... method addParameterHints (line 40) | def addParameterHints(self, attrName, inputDict): ... method addReferencedMaterial (line 41) | def addReferencedMaterial(self, path): ... method adoptMaterialNodes (line 42) | def adoptMaterialNodes(self, nodeList, index: int = ..., exceptionType... method deleteLookFileInReference (line 43) | def deleteLookFileInReference(self, index): ... method deleteMaterialNode (line 44) | def deleteMaterialNode(self, node: NodegraphAPI.Node): ... method duplicateMaterial (line 45) | def duplicateMaterial(self, node: NodegraphAPI.Node): ... method getAllChildMaterials (line 46) | def getAllChildMaterials(self, node: NodegraphAPI.Node): ... method getAllMaterialNodes (line 47) | def getAllMaterialNodes(self): ... method getDefaultNodeShapeAttrs (line 48) | def getDefaultNodeShapeAttrs(self): ... method getLookFileInReferenceNodes (line 49) | def getLookFileInReferenceNodes(self): ... method getMaterialHierarchy (line 50) | def getMaterialHierarchy(self, startAtNodeName: Incomplete | None = ..... method getReferenceGroupNode (line 51) | def getReferenceGroupNode(self, create: bool = ...): ... method getReferenceGroupTerminalPort (line 52) | def getReferenceGroupTerminalPort(self): ... method getReferenceMaterialDict (line 53) | def getReferenceMaterialDict(self): ... method getReferencedMaterialInclusionSet (line 54) | def getReferencedMaterialInclusionSet(self): ... method getReferencedMaterialNodeForPath (line 55) | def getReferencedMaterialNodeForPath(self, path): ... method layoutInternalGraph (line 56) | def layoutInternalGraph(self): ... method reorderLookFileInReference (line 57) | def reorderLookFileInReference(self, fromIndex, toIndex): ... method reorderNode (line 58) | def reorderNode(self, node: NodegraphAPI.Node, parent, index): ... function MiniPaste (line 60) | def MiniPaste(element, parent): ... FILE: katana/stubs/Nodes3DAPI/Merge.pyi class MergeNode3D (line 12) | class MergeNode3D(Node3D): method __init__ (line 13) | def __init__(self) -> None: ... method _getOpChain (line 14) | def _getOpChain(self, interface): ... method addParameterHints (line 15) | def addParameterHints(self, attrName, inputDict): ... method getEmptyScene (line 16) | def getEmptyScene(self, port: NodegraphAPI.Port, frameTime): ... FILE: katana/stubs/Nodes3DAPI/NetworkMaterial.pyi class NetworkMaterialNode (line 21) | class NetworkMaterialNode(Node3D): method __init__ (line 24) | def __init__(self) -> None: ... method _NetworkMaterialNode__buildLayoutAttrsOpArgsIfRequired (line 25) | def _NetworkMaterialNode__buildLayoutAttrsOpArgsIfRequired(self, argsB... method _NetworkMaterialNode__buildOpArgs (line 26) | def _NetworkMaterialNode__buildOpArgs(self, graphState: NodegraphAPI.G... method _NetworkMaterialNode__checkStructuredPortConnection (line 27) | def _NetworkMaterialNode__checkStructuredPortConnection(self, sPort, g... method _NetworkMaterialNode__getAllShadingConnectionNodes (line 29) | def _NetworkMaterialNode__getAllShadingConnectionNodes(node: Nodegraph... method _addArrayConnectionOverrides (line 30) | def _addArrayConnectionOverrides(self, node: NodegraphAPI.Node, frameT... method _addNodeOverrides (line 31) | def _addNodeOverrides(self, node: NodegraphAPI.Node, graphState: Nodeg... method _getIncomingSceneOpAndLocation (line 32) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOp (line 33) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method addParameterHints (line 34) | def addParameterHints(self, attrName, inputDict): ... method addShaderInputPort (line 35) | def addShaderInputPort(self, rendererName: str, shaderType: str) -> No... method generateShaderInputPortName (line 36) | def generateShaderInputPortName(self, rendererName: str, shaderType: s... method getScenegraphLocation (line 37) | def getScenegraphLocation(self, frameTime: Incomplete | None = ...) ->... method invalidateLayout (line 38) | def invalidateLayout(self): ... method isResetPossible (line 39) | def isResetPossible(self): ... method validateConnection (line 40) | def validateConnection(self, otherOutPort, myInPort, errorMessages: In... FILE: katana/stubs/Nodes3DAPI/NetworkMaterialInterfaceControls.pyi class NetworkMaterialInterfaceControls (line 17) | class NetworkMaterialInterfaceControls(Node3D): method __init__ (line 18) | def __init__(self) -> None: ... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method addChildOperator (line 20) | def addChildOperator(self, opsGroup, operatorName): ... method addParameterHints (line 21) | def addParameterHints(self, attrName, inputDict): ... method isResetPossible (line 22) | def isResetPossible(self): ... FILE: katana/stubs/Nodes3DAPI/NetworkMaterialParameterEdit.pyi class NetworkMaterialParameterEdit (line 17) | class NetworkMaterialParameterEdit(Node3D): method __init__ (line 19) | def __init__(self) -> None: ... method _NetworkMaterialParameterEdit___checkDynamicParametersInternal (line 20) | def _NetworkMaterialParameterEdit___checkDynamicParametersInternal(sel... method _getIncomingSceneOpAndLocation (line 21) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 22) | def _getOpChain(self, interface): ... method _getStaticAttrHintsForIncomingSceneQuery (line 23) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... method _updateParameters (line 24) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addParameterHints (line 25) | def addParameterHints(self, attrName, inputDict): ... method checkDynamicParameters (line 26) | def checkDynamicParameters(self, *args, **kwds): ... method getScenegraphLocation (line 27) | def getScenegraphLocation(self, sourceTime: int = ...): ... FILE: katana/stubs/Nodes3DAPI/NetworkMaterialSplice.pyi class NetworkMaterialSplice (line 21) | class NetworkMaterialSplice(Nodes3DAPI.NetworkMaterial.NetworkMaterialNo... method __init__ (line 22) | def __init__(self) -> None: ... method AddGroup (line 23) | def AddGroup(self, param): ... method DeleteGroup (line 24) | def DeleteGroup(self, index, param): ... method ReorderGroup (line 25) | def ReorderGroup(self, index, newIndex, param): ... method _NetworkMaterialSplice__buildOpArgs (line 26) | def _NetworkMaterialSplice__buildOpArgs(self, graphState: NodegraphAPI... method _areInputsAndParametersDirty (line 27) | def _areInputsAndParametersDirty(self, port: NodegraphAPI.Port, graphS... method _getOp (line 28) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method _getOpChain (line 29) | def _getOpChain(self, interface): ... method addParameterHints (line 30) | def addParameterHints(self, attrName, inputDict): ... method getNetworkAttr (line 31) | def getNetworkAttr(self, includeInsertion: bool = ..., addedNameSet: I... method getScenegraphLocation (line 32) | def getScenegraphLocation(self, frameTime: int = ...): ... method isResetPossible (line 33) | def isResetPossible(self): ... method validateConnection (line 34) | def validateConnection(self, otherOutPort, myInPort, errorMessages: In... FILE: katana/stubs/Nodes3DAPI/Node3D.pyi class ImplicitResolverStage (line 31) | class ImplicitResolverStage: class Node3D (line 41) | class Node3D(NodegraphAPI_cmodule.PythonNode, Nodes3DAPI.Node3D_geolib3.... method __init__ (line 42) | def __init__(self) -> None: ... method _getInvalidConnectionsErrorMessage (line 43) | def _getInvalidConnectionsErrorMessage(self, errorMessages): ... method getAll3DInputs (line 44) | def getAll3DInputs(self, graphState: NodegraphAPI.GraphState): ... method getPortsWithInvalidConnections (line 45) | def getPortsWithInvalidConnections(self, errorMessages: Incomplete | N... method require3DInput (line 46) | def require3DInput(self, portName, graphState: NodegraphAPI.GraphState... method validateConnection (line 47) | def validateConnection(self, otherOutPort, myInPort, errorMessages: In... function ApplyImplicitResolverOps (line 49) | def ApplyImplicitResolverOps(txn, op, node: NodegraphAPI.Node, graphStat... function ApplyOp (line 50) | def ApplyOp(txn, inputOp, opType, opArgs: Incomplete | None = ...): ... function ApplyRenderSettingsToGraphState (line 51) | def ApplyRenderSettingsToGraphState(renderSettingsAttr: PyFnAttribute.Gr... function CreateClient (line 52) | def CreateClient(node: NodegraphAPI.Node, graphState: typing.Optional[No... function Get3DPortFromNode (line 53) | def Get3DPortFromNode(node: NodegraphAPI.Node, graphState: typing.Option... function Get3DSourceFromNodeInput (line 54) | def Get3DSourceFromNodeInput(node: NodegraphAPI.Node, inputPortName: str... function GetExtraParameterValueSourceNodePorts (line 55) | def GetExtraParameterValueSourceNodePorts(node: NodegraphAPI.Node) -> li... function GetExtraParameterValueSourceNodes (line 56) | def GetExtraParameterValueSourceNodes(node: NodegraphAPI.Node) -> list[N... function GetGeometryProducer (line 57) | def GetGeometryProducer(node: typing.Optional[NodegraphAPI.Node] = ..., ... function GetOp (line 58) | def GetOp(txn, node: NodegraphAPI.Node, graphState: typing.Optional[Node... function GetOpChain (line 59) | def GetOpChain(txn, node: NodegraphAPI.Node, graphState: typing.Optional... function GetRegisteredImplicitResolvers (line 60) | def GetRegisteredImplicitResolvers(stage): ... function GetRegisteredTerminalOpDelegate (line 61) | def GetRegisteredTerminalOpDelegate(name: str) -> TerminalOpDelegate: ... function GetRegisteredTerminalOpDelegateNames (line 62) | def GetRegisteredTerminalOpDelegateNames() -> list[str]: ... function GetRenderOp (line 63) | def GetRenderOp(txn, node: NodegraphAPI.Node, graphState: typing.Optiona... function GetRenderProducer (line 64) | def GetRenderProducer(node: typing.Optional[NodegraphAPI.Node] = ..., gr... function GetRenderTerminalOpSpecs (line 65) | def GetRenderTerminalOpSpecs(rendererName: str, renderMethodType: str, g... function GetRenderTerminalOps (line 66) | def GetRenderTerminalOps(txn: PyFnGeolib.GeolibRuntimeTransaction, rende... function GetRenderThreads (line 67) | def GetRenderThreads(): ... function RegisterImplicitResolver (line 68) | def RegisterImplicitResolver(stage, opType, opArgs, addSystemArgs: bool ... function RegisterTerminalOpDelegate (line 69) | def RegisterTerminalOpDelegate(name: str, terminalOpDelegate: TerminalOp... function SetExtraParameterValueSourceNodes (line 70) | def SetExtraParameterValueSourceNodes(node: NodegraphAPI.Node, sourceNod... function SetRenderThreads (line 71) | def SetRenderThreads(numThreads): ... function UnregisterTerminalOpDelegate (line 72) | def UnregisterTerminalOpDelegate(name: str): ... FILE: katana/stubs/Nodes3DAPI/Node3DEventTypes.pyi function GetNodegraphEventTypes (line 13) | def GetNodegraphEventTypes(): ... FILE: katana/stubs/Nodes3DAPI/Node3D_geolib3.pyi class NodeGeolib3 (line 22) | class NodeGeolib3: class OpChainInterface (line 23) | class OpChainInterface: method __init__ (line 27) | def __init__(self, port: NodegraphAPI.Port, graphState: NodegraphAPI... method addInputRequest (line 28) | def addInputRequest(self, inputPortName, graphState: NodegraphAPI.Gr... method appendOp (line 29) | def appendOp(self, opType, opArgs): ... method getGraphState (line 30) | def getGraphState(self): ... method getMinRequiredInputs (line 31) | def getMinRequiredInputs(self): ... method getPort (line 32) | def getPort(self): ... method setExplicitInputRequestsEnabled (line 33) | def setExplicitInputRequestsEnabled(self, state): ... method setMinRequiredInputs (line 34) | def setMinRequiredInputs(self, value): ... class OpRecord (line 36) | class OpRecord: method __init__ (line 37) | def __init__(self, transaction, nodeName, nodeType) -> None: ... class ParamDependencyTracker (line 39) | class ParamDependencyTracker: method __init__ (line 40) | def __init__(self, port: NodegraphAPI.Port, graphState: NodegraphAPI... method addDependency (line 41) | def addDependency(self, node: NodegraphAPI.Node): ... method __enter__ (line 42) | def __enter__(self): ... method __exit__ (line 43) | def __exit__(self, type, value, traceback): ... method __init__ (line 46) | def __init__(self) -> None: ... method _NodeGeolib3__handleInvalidInput (line 47) | def _NodeGeolib3__handleInvalidInput(self, transaction, graphState: No... method _areInputsAndParametersDirty (line 48) | def _areInputsAndParametersDirty(self, port: NodegraphAPI.Port, graphS... method _areInputsDirty (line 49) | def _areInputsDirty(self, port: NodegraphAPI.Port, graphState: Nodegra... method _areParamsDirty (line 50) | def _areParamsDirty(self, port: NodegraphAPI.Port, graphState: Nodegra... method _areParentsDirty (line 51) | def _areParentsDirty(self, graphState: NodegraphAPI.GraphState, reset:... method _createOrGetOp (line 52) | def _createOrGetOp(self, transaction, key, graphState: NodegraphAPI.Gr... method _flushAll (line 53) | def _flushAll(self): ... method _getErrorOp (line 54) | def _getErrorOp(self, port: NodegraphAPI.Port, graphState: NodegraphAP... method _getOp (line 55) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method _getSafeOp (line 56) | def _getSafeOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI... method _getSafeOpChain (line 57) | def _getSafeOpChain(self, port: NodegraphAPI.Port, graphState: Nodegra... method _registerOpChain (line 58) | def _registerOpChain(self, opChain): ... method _setParamsDirty (line 59) | def _setParamsDirty(self): ... method _unregisterOpChain (line 61) | def _unregisterOpChain(opChain): ... method flushAll (line 63) | def flushAll(): ... method getNodeForOpId (line 65) | def getNodeForOpId(opId: int) -> Nodes3DAPI.Node3D | None: ... method invalidateOps (line 66) | def invalidateOps(self): ... class _NodeTraversal (line 68) | class _NodeTraversal(NodeTraversal): method __init__ (line 70) | def __init__(cls, graphState: NodegraphAPI.GraphState, nodeTraversalEn... class _PortAndGraphState (line 72) | class _PortAndGraphState(tuple): method __init__ (line 76) | def __init__(self, _cls, port: NodegraphAPI.Port, graphState: Nodegrap... method _asdict (line 77) | def _asdict(self): ... method _make (line 79) | def _make(cls, iterable): ... method _replace (line 80) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 81) | def __getnewargs__(self): ... method graphState (line 83) | def graphState(self): ... method port (line 85) | def port(self): ... function ActivatePort (line 87) | def ActivatePort(port: NodegraphAPI.Port, graphState: typing.Optional[No... function ApplyTerminalOpDelegates (line 88) | def ApplyTerminalOpDelegates(op: PyFnGeolib.GeolibRuntimeOp, txn: PyFnGe... function CommitChanges (line 89) | def CommitChanges() -> int: ... function DeactivatePort (line 90) | def DeactivatePort(port: NodegraphAPI.Port, graphState: typing.Optional[... function GetDefaultSourceOp (line 91) | def GetDefaultSourceOp(): ... function GetRuntime (line 92) | def GetRuntime(): ... function IsProcessing (line 93) | def IsProcessing(): ... function ManualUpdate (line 94) | def ManualUpdate() -> int: ... function MarkPortOpClientDirty (line 95) | def MarkPortOpClientDirty(portOpClient: PortOpClient): ... function PrintOpDependencyInfo (line 96) | def PrintOpDependencyInfo(): ... function RegisterCommitIdCallback (line 97) | def RegisterCommitIdCallback(commitIdCallback: typing.Callable): ... function RegisterPortOpClient (line 98) | def RegisterPortOpClient(portOpClient: PortOpClient): ... function RegisterTerminalOpDelegate_geolib3 (line 99) | def RegisterTerminalOpDelegate_geolib3(name: str, terminalOpDelegate: Te... function UnregisterPortOpClient (line 100) | def UnregisterPortOpClient(portOpClient: PortOpClient): ... function UpdatePortOpClients (line 101) | def UpdatePortOpClients(portOpClients: Incomplete | None = ...) -> int: ... FILE: katana/stubs/Nodes3DAPI/NodeLayoutAttributes.pyi class LayoutAttributesMixin (line 13) | class LayoutAttributesMixin: method __init__ (line 14) | def __init__(self) -> None: ... method _LayoutAttributesMixin__generateLayoutAttributes (line 15) | def _LayoutAttributesMixin__generateLayoutAttributes(self, nodeNames, ... method _getExcludedNodes (line 16) | def _getExcludedNodes(self): ... method _isLayoutAttributesValid (line 17) | def _isLayoutAttributesValid(self): ... method getContentsLayoutAttributes (line 18) | def getContentsLayoutAttributes(self, nodeNames: Incomplete | None = .... method invalidateLayout (line 19) | def invalidateLayout(self): ... method polish (line 20) | def polish(self): ... class NodeType (line 22) | class NodeType(enum.Enum): method __init__ (line 37) | def __init__(cls, value) -> None: ... method _generate_next_value_ (line 38) | def _generate_next_value_(self, name, start, count, last_values): ... class _LayoutAttributesFactory (line 40) | class _LayoutAttributesFactory: method __init__ (line 41) | def __init__(self, nodeNames: dict[NodegraphAPI.Node, str], graphState... method _LayoutAttributesFactory__generateConnectionStringAttr (line 42) | def _LayoutAttributesFactory__generateConnectionStringAttr(self, ports... method _LayoutAttributesFactory__getBackdropAttributes (line 44) | def _LayoutAttributesFactory__getBackdropAttributes(node: NodegraphAPI... method _LayoutAttributesFactory__getDotNodeAttributes (line 46) | def _LayoutAttributesFactory__getDotNodeAttributes(node: NodegraphAPI.... method _LayoutAttributesFactory__getNodeName (line 47) | def _LayoutAttributesFactory__getNodeName(self, node: NodegraphAPI.Nod... method _LayoutAttributesFactory__getNodeType (line 49) | def _LayoutAttributesFactory__getNodeType(node: NodegraphAPI.Node) -> ... method _LayoutAttributesFactory__getReturnPorts (line 51) | def _LayoutAttributesFactory__getReturnPorts(node: NodegraphAPI.Node):... method _LayoutAttributesFactory__getShadingGroupAttributes (line 52) | def _LayoutAttributesFactory__getShadingGroupAttributes(self, node: No... method _LayoutAttributesFactory__getShadingNodeArrayConnectorNodeAttributes (line 54) | def _LayoutAttributesFactory__getShadingNodeArrayConnectorNodeAttribut... method _LayoutAttributesFactory__getShadingNodeAttributes (line 55) | def _LayoutAttributesFactory__getShadingNodeAttributes(self, node: Nod... method _LayoutAttributesFactory__getSwitchNodeAttributes (line 57) | def _LayoutAttributesFactory__getSwitchNodeAttributes(cls, node: Nodeg... method _LayoutAttributesFactory__getVariableSwitchNodeAttributes (line 59) | def _LayoutAttributesFactory__getVariableSwitchNodeAttributes(cls, nod... method _LayoutAttributesFactory__writeColorAttribute (line 61) | def _LayoutAttributesFactory__writeColorAttribute(groupBuilder: PyFnAt... method _LayoutAttributesFactory__writeCommonAttributes (line 62) | def _LayoutAttributesFactory__writeCommonAttributes(self, groupBuilder... method _LayoutAttributesFactory__writeConnectionsAttribute (line 63) | def _LayoutAttributesFactory__writeConnectionsAttribute(self, groupBui... method _LayoutAttributesFactory__writeInputPorts (line 65) | def _LayoutAttributesFactory__writeInputPorts(groupBuilder: PyFnAttrib... method _LayoutAttributesFactory__writeNodeParameters (line 66) | def _LayoutAttributesFactory__writeNodeParameters(self, groupBuilder, ... method _LayoutAttributesFactory__writeNodeShapeAttributes (line 67) | def _LayoutAttributesFactory__writeNodeShapeAttributes(self, groupBuil... method _LayoutAttributesFactory__writePagesAttribute (line 69) | def _LayoutAttributesFactory__writePagesAttribute(groupBuilder: PyFnAt... method _LayoutAttributesFactory__writePublicInterfaceConfigParams (line 71) | def _LayoutAttributesFactory__writePublicInterfaceConfigParams(groupBu... method _LayoutAttributesFactory__writeShadingGroupInputPorts (line 73) | def _LayoutAttributesFactory__writeShadingGroupInputPorts(groupBuilder... method _LayoutAttributesFactory__writeShadingGroupReturnConnections (line 74) | def _LayoutAttributesFactory__writeShadingGroupReturnConnections(self,... method _LayoutAttributesFactory__writeShadingGroupReturnPorts (line 76) | def _LayoutAttributesFactory__writeShadingGroupReturnPorts(groupBuilde... method _LayoutAttributesFactory__writeSidebarAttributes (line 78) | def _LayoutAttributesFactory__writeSidebarAttributes(cls, groupBuilder... method _LayoutAttributesFactory__writeUserParameters (line 79) | def _LayoutAttributesFactory__writeUserParameters(self, groupBuilder, ... method _LayoutAttributesFactory__writeUserParametersGroup (line 81) | def _LayoutAttributesFactory__writeUserParametersGroup(cls, groupBuild... method _LayoutAttributesFactory__writeViewState (line 83) | def _LayoutAttributesFactory__writeViewState(groupBuilder: PyFnAttribu... method build (line 84) | def build(self, node: NodegraphAPI.Node) -> PyFnAttribute.GroupAttribu... function GetContentsLayoutAttributes (line 86) | def GetContentsLayoutAttributes(node: NodegraphAPI.GroupNode, excludedNo... FILE: katana/stubs/Nodes3DAPI/NodeTypeBuilder.pyi class BaseOpChainInterface (line 22) | class BaseOpChainInterface: method __init__ (line 25) | def __init__(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.G... method addOpSystemArgs (line 26) | def addOpSystemArgs(self, gb: PyFnAttribute.GroupBuilder): ... method buildAttrFromParam (line 27) | def buildAttrFromParam(self, param: NodegraphAPI.Parameter, multisampl... method buildAttrListForEnableableParameters (line 28) | def buildAttrListForEnableableParameters(self, enclosingGroupParam: No... method getExclusiveToNameAndAttribute (line 29) | def getExclusiveToNameAndAttribute(self): ... method getFrameTime (line 30) | def getFrameTime(self) -> float: ... method getGraphState (line 31) | def getGraphState(self) -> NodegraphAPI.GraphState: ... method getModifiedFrameTime (line 32) | def getModifiedFrameTime(self) -> float: ... method getNumSamples (line 33) | def getNumSamples(self) -> int: ... method getOutputPortName (line 34) | def getOutputPortName(self) -> str: ... method getShutterClose (line 35) | def getShutterClose(self) -> float: ... method getShutterOpen (line 36) | def getShutterOpen(self) -> float: ... method getTransformAsAttribute (line 37) | def getTransformAsAttribute(self) -> PyFnAttribute.GroupAttribute: ... class NodeTypeBuilder (line 39) | class NodeTypeBuilder: class OpChainInterface (line 40) | class OpChainInterface(BaseOpChainInterface): method __init__ (line 44) | def __init__(self, opChainInterface) -> None: ... method addInputRequest (line 45) | def addInputRequest(self, inputPortName, graphState: NodegraphAPI.Gr... method appendOp (line 46) | def appendOp(self, opType, opArgs: Incomplete | None = ...): ... method setExplicitInputRequestsEnabled (line 47) | def setExplicitInputRequestsEnabled(self, state): ... method setMinRequiredInputs (line 48) | def setMinRequiredInputs(self, value): ... method __init__ (line 51) | def __init__(self, nodeTypeName: str) -> None: ... method SetGenericAssignPolicyRegistrationCallback (line 53) | def SetGenericAssignPolicyRegistrationCallback(cls, callback): ... method addInteractiveTransformCallbacks (line 54) | def addInteractiveTransformCallbacks(self, gb: PyFnAttribute.GroupBuil... method addMakeInteractiveParameter (line 55) | def addMakeInteractiveParameter(self, gb: PyFnAttribute.GroupBuilder):... method addTimingParameters (line 56) | def addTimingParameters(self, gb: PyFnAttribute.GroupBuilder): ... method addTransformParameters (line 57) | def addTransformParameters(self, gb: PyFnAttribute.GroupBuilder): ... method build (line 58) | def build(self): ... method setAddParameterHintsFnc (line 59) | def setAddParameterHintsFnc(self, fnc: typing.Callable): ... method setAppendToParametersOpChainFnc (line 60) | def setAppendToParametersOpChainFnc(self, fnc): ... method setBuildOpChainFnc (line 61) | def setBuildOpChainFnc(self, fnc): ... method setBuildParametersFnc (line 62) | def setBuildParametersFnc(self, fnc: typing.Callable): ... method setCustomMethod (line 63) | def setCustomMethod(self, fncName: str, fnc: typing.Callable): ... method setGenericAssignRoots (line 64) | def setGenericAssignRoots(self, paramRoot: str, attrRoot: str): ... method setGetInputPortAndGraphStateFnc (line 65) | def setGetInputPortAndGraphStateFnc(self, fnc: typing.Callable): ... method setGetScenegraphLocationFnc (line 66) | def setGetScenegraphLocationFnc(self, fnc: typing.Callable): ... method setHintsForNode (line 67) | def setHintsForNode(self, hints: dict): ... method setHintsForParameter (line 68) | def setHintsForParameter(self, paramPath: str, hints: dict): ... method setInputPortNames (line 69) | def setInputPortNames(self, names: typing.Sequence[str]): ... method setIsHiddenFromMenus (line 70) | def setIsHiddenFromMenus(self, state: bool): ... method setNodeTypeVersion (line 71) | def setNodeTypeVersion(self, nodeTypeVersion): ... method setNodeTypeVersionUpdateFnc (line 72) | def setNodeTypeVersionUpdateFnc(self, nodeTypeVersion, updateFnc): ... method setOutputPortNames (line 73) | def setOutputPortNames(self, names: typing.Sequence[str]): ... method setParametersTemplateAttr (line 74) | def setParametersTemplateAttr(self, groupAttr: PyFnAttribute.GroupAttr... class OpChainInterface (line 76) | class OpChainInterface(BaseOpChainInterface): method __init__ (line 80) | def __init__(self, opChainInterface) -> None: ... method addInputRequest (line 81) | def addInputRequest(self, inputPortName, graphState: NodegraphAPI.Grap... method appendOp (line 82) | def appendOp(self, opType, opArgs: Incomplete | None = ...): ... method setExplicitInputRequestsEnabled (line 83) | def setExplicitInputRequestsEnabled(self, state): ... method setMinRequiredInputs (line 84) | def setMinRequiredInputs(self, value): ... class ParametersOpChainInterface (line 86) | class ParametersOpChainInterface(BaseOpChainInterface): method __init__ (line 87) | def __init__(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.G... method appendOp (line 88) | def appendOp(self, opType, opArgs: Incomplete | None = ...): ... method getOps (line 89) | def getOps(self): ... function _addParameterHints (line 91) | def _addParameterHints(self, attrName, inputDict): ... function _getIncomingSceneOpAndLocation (line 92) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, graphS... function _getOpChain (line 93) | def _getOpChain(self, interface): ... function _getScenegraphLocation (line 94) | def _getScenegraphLocation(self, frameTime: Incomplete | None = ...): ... function _getStaticAttrHintsForIncomingSceneQuery (line 95) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... function _getStaticDefaultAttrForIncomingSceneQuery (line 96) | def _getStaticDefaultAttrForIncomingSceneQuery(self, attrPath): ... function _init (line 97) | def _init(self): ... function _isForcedArray (line 98) | def _isForcedArray(self, data, groupParam, name): ... function _paramFromAttr (line 99) | def _paramFromAttr(self, groupParam, groupAttr): ... FILE: katana/stubs/Nodes3DAPI/OpCacheManager.pyi class OpCacheManager (line 8) | class OpCacheManager: method __init__ (line 9) | def __init__(self, eventHandlerRegistrationFunction: typing.Callable, ... method _OpCacheManager__on_nodegraphChangedEvent (line 10) | def _OpCacheManager__on_nodegraphChangedEvent(self, eventName, eventId... method getOp (line 11) | def getOp(self, node: NodegraphAPI.Node, graphState: NodegraphAPI.Grap... method storeOp (line 12) | def storeOp(self, node: NodegraphAPI.Node, graphState: NodegraphAPI.Gr... FILE: katana/stubs/Nodes3DAPI/OpResolve.pyi class OpResolveNode (line 8) | class OpResolveNode(Node3D): method __init__ (line 9) | def __init__(self) -> None: ... method _getOpChain (line 10) | def _getOpChain(self, interface): ... method addParameterHints (line 11) | def addParameterHints(self, attrName: C[str], inputDict: dict): ... FILE: katana/stubs/Nodes3DAPI/OpScript.pyi class OpScript (line 17) | class OpScript(Node3D): method __init__ (line 18) | def __init__(self) -> None: ... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... function _DoInputRequests (line 22) | def _DoInputRequests(interface, inputBehavior, inputPorts, graphState: N... FILE: katana/stubs/Nodes3DAPI/OpWrite.pyi class OpWrite (line 19) | class OpWrite(Node3D): method __init__ (line 20) | def __init__(self) -> None: ... method _getOpChain (line 21) | def _getOpChain(self, interface): ... method addParameterHints (line 22) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/OutputChannelDefine.pyi class OutputChannelDefine (line 17) | class OutputChannelDefine(Node3D): method __init__ (line 18) | def __init__(self, rendererName) -> None: ... method AddGroup (line 19) | def AddGroup(self, typeName: Incomplete | None = ...): ... method DeleteGroup (line 20) | def DeleteGroup(self, index): ... method GetAvailableTypes (line 21) | def GetAvailableTypes(self): ... method ReorderGroup (line 22) | def ReorderGroup(self, index, newIndex): ... method _OutputChannelDefine__applyCustom (line 23) | def _OutputChannelDefine__applyCustom(self, element): ... method _OutputChannelDefine__applyType (line 24) | def _OutputChannelDefine__applyType(self, element, typeName, typeInfo)... method _OutputChannelDefine__convertValueParamToAttr (line 25) | def _OutputChannelDefine__convertValueParamToAttr(self, type, valuePar... method _OutputChannelDefine__getGroupNameAndAttrPrefix (line 26) | def _OutputChannelDefine__getGroupNameAndAttrPrefix(self, frameTime): ... method _OutputChannelDefine__getNameValue (line 27) | def _OutputChannelDefine__getNameValue(self, groupName): ... method _OutputChannelDefine__initRendererParameters (line 28) | def _OutputChannelDefine__initRendererParameters(self, rendererName): ... method _OutputChannelDefine__rebuildDynamicParameters (line 29) | def _OutputChannelDefine__rebuildDynamicParameters(self, dynamicParams... method _getIncomingSceneOpAndLocation (line 30) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 31) | def _getOpChain(self, interface): ... method _groupAttrToDict (line 32) | def _groupAttrToDict(self, groupAttr): ... method _updateParameters (line 33) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addParameterHints (line 34) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/PonyCreate.pyi class PonyCreate (line 17) | class PonyCreate(AbstractTransform): method __init__ (line 18) | def __init__(self) -> None: ... method _PonyCreate__initName (line 19) | def _PonyCreate__initName(self): ... method _getOpChain (line 20) | def _getOpChain(self, interface): ... method addParameterHints (line 21) | def addParameterHints(self, attrName, inputDict): ... method customReset (line 22) | def customReset(self): ... method getScenegraphLocation (line 23) | def getScenegraphLocation(self): ... FILE: katana/stubs/Nodes3DAPI/PortOpClient.pyi class CallbackPortOpClient (line 18) | class CallbackPortOpClient(PortOpClient): method __init__ (line 24) | def __init__(self, port: PortId = ..., opChangeCallback: typing.Option... method _getCallback (line 26) | def _getCallback(weakCallback: typing.Callable): ... method _getWeakCallback (line 28) | def _getWeakCallback(callback): ... method modifyInitialGraphState (line 29) | def modifyInitialGraphState(self, graphState: NodegraphAPI.GraphState)... method modifyPostTraversalGraphState (line 30) | def modifyPostTraversalGraphState(self, graphState: NodegraphAPI.Graph... method opChanged (line 31) | def opChanged(self, op, graphState: NodegraphAPI.GraphState, txn): ... class GraphStateId (line 33) | class GraphStateId(str): method __init__ (line 38) | def __init__(cls, value: str = ...) -> None: ... class GraphStateSpec (line 40) | class GraphStateSpec(GraphStateSpec): method __init__ (line 42) | def __init__(cls, value: GraphStateId = ...) -> None: ... class NodeId (line 44) | class NodeId(str): method __init__ (line 48) | def __init__(cls, value: str = ...) -> None: ... class NodeTraversalEndpoints (line 50) | class NodeTraversalEndpoints(NodeTraversalEndpointsBase): method __init__ (line 52) | def __init__(cls, searchPort: NodegraphAPI.Port, startPortOrNode: Node... method searchPort (line 54) | def searchPort(self): ... method startPortOrNode (line 56) | def startPortOrNode(self): ... class NodeTraversalEndpointsSpec (line 58) | class NodeTraversalEndpointsSpec(NodeTraversalEndpointsBase): method __init__ (line 60) | def __init__(cls, searchPortSpec: NodegraphAPI.Port | PortId, startPor... method getNodeTraversalEndpoints (line 61) | def getNodeTraversalEndpoints(self) -> NodeTraversalEndpoints | None: ... method searchPortSpec (line 63) | def searchPortSpec(self): ... method startPortOrNodeSpec (line 65) | def startPortOrNodeSpec(self): ... class PortId (line 67) | class PortId(str): method __init__ (line 71) | def __init__(cls, value: str = ...) -> None: ... class PortOpClient (line 73) | class PortOpClient(abc.ABC): method __init__ (line 81) | def __init__(self, port: PortId = ..., initialGraphStateSpec: GraphSta... method getNodeTraversalEndpoints (line 82) | def getNodeTraversalEndpoints(self) -> NodeTraversalEndpoints | None: ... method getResolvedPort (line 83) | def getResolvedPort(self) -> NodegraphAPI.Port | None: ... method modifyInitialGraphState (line 84) | def modifyInitialGraphState(self, graphState: NodegraphAPI.GraphState ... method modifyPostTraversalGraphState (line 85) | def modifyPostTraversalGraphState(self, graphState: NodegraphAPI.Graph... method opChanged (line 86) | def opChanged(self, op: PyFnGeolib.GeolibRuntimeOp, graphState: Nodegr... class PortOpClientRegistry (line 88) | class PortOpClientRegistry: method __init__ (line 89) | def __init__(self) -> None: ... method clientIsRegistered (line 90) | def clientIsRegistered(self, client): ... method getClientOp (line 91) | def getClientOp(self, client: PortOpClient) -> PyFnGeolib.GeolibRuntim... method getClients (line 92) | def getClients(self) -> list[PortOpClient]: ... method getClientsAndOps (line 93) | def getClientsAndOps(self) -> list[PortOpClient, PyFnGeolib.GeolibRunt... method isClientRegistered (line 94) | def isClientRegistered(self, client: PortOpClient) -> bool: ... method registerClient (line 95) | def registerClient(self, client: PortOpClient): ... method unregisterClient (line 96) | def unregisterClient(self, client: PortOpClient): ... method updateClientOp (line 97) | def updateClientOp(self, client: PortOpClient, op: PyFnGeolib.GeolibRu... class _NodeTraversalEndpointsBase (line 99) | class _NodeTraversalEndpointsBase(tuple): method __init__ (line 103) | def __init__(self, _cls, searchPoint, startPoint) -> None: ... method _asdict (line 104) | def _asdict(self): ... method _make (line 106) | def _make(cls, iterable): ... method _replace (line 107) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 108) | def __getnewargs__(self): ... method searchPoint (line 110) | def searchPoint(self): ... method startPoint (line 112) | def startPoint(self): ... FILE: katana/stubs/Nodes3DAPI/PrimitiveCreate.pyi class PrimitiveCreate (line 19) | class PrimitiveCreate(AbstractTransform): method __init__ (line 20) | def __init__(self, primitiveType: Incomplete | None = ...) -> None: ... method _PrimitiveCreate__initName (line 21) | def _PrimitiveCreate__initName(self): ... method _getOpChain (line 22) | def _getOpChain(self, interface): ... method addParameterHints (line 23) | def addParameterHints(self, attrName, inputDict): ... method customReset (line 24) | def customReset(self): ... method getScenegraphLocation (line 25) | def getScenegraphLocation(self): ... class TeapotCreate (line 27) | class TeapotCreate(PrimitiveCreate): method __init__ (line 28) | def __init__(self) -> None: ... FILE: katana/stubs/Nodes3DAPI/ProxyGeoPromote.pyi class ProxyGeoPromote (line 11) | class ProxyGeoPromote(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/Prune.pyi class PruneNode3D (line 11) | class PruneNode3D(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/Rename.pyi class Rename (line 11) | class Rename(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/RenderNode.pyi class MergeOutputs (line 17) | class MergeOutputs: method __init__ (line 18) | def __init__(self) -> None: ... class RenderNode (line 20) | class RenderNode: method __init__ (line 21) | def __init__(self, node: NodegraphAPI.Node, graphState: NodegraphAPI.G... method _RenderNode__addRenderOutputEnabledStatesToRecipe (line 22) | def _RenderNode__addRenderOutputEnabledStatesToRecipe(self, txn, op, e... method _RenderNode__addRenderTargetLocationsToRecipe (line 23) | def _RenderNode__addRenderTargetLocationsToRecipe(self, txn, op, rende... method _RenderNode__addTempFileInformationToRecipe (line 24) | def _RenderNode__addTempFileInformationToRecipe(self, txn, op): ... method _RenderNode__buildCommandLines (line 25) | def _RenderNode__buildCommandLines(self): ... method _RenderNode__getAttrValueOrEmptyString (line 26) | def _RenderNode__getAttrValueOrEmptyString(self, attr): ... method _RenderNode__processMergeOutputs (line 27) | def _RenderNode__processMergeOutputs(self, outputName, outputInfo, cli... method _RenderNode__processOutputs (line 28) | def _RenderNode__processOutputs(self, client, op): ... method _RenderNode__processPreScriptOutput (line 29) | def _RenderNode__processPreScriptOutput(self, outputInfo): ... method _RenderNode__processScriptOutput (line 30) | def _RenderNode__processScriptOutput(self, outputInfo): ... method finalizeSetup (line 31) | def finalizeSetup(self, rect): ... method getCacheID (line 32) | def getCacheID(self): ... method getCleanupFiles (line 33) | def getCleanupFiles(self): ... method getCommandLines (line 34) | def getCommandLines(self): ... method getConvertFiles (line 35) | def getConvertFiles(self): ... method getCopyFiles (line 36) | def getCopyFiles(self): ... method getDataWindow (line 37) | def getDataWindow(self): ... method getDisplayWindow (line 38) | def getDisplayWindow(self): ... method getImageFiles (line 39) | def getImageFiles(self): ... method getPackageString (line 40) | def getPackageString(self): ... method getPostCommands (line 41) | def getPostCommands(self): ... method getPreCommands (line 42) | def getPreCommands(self): ... method getRenderFinishedFilename (line 43) | def getRenderFinishedFilename(self): ... method getRendererString (line 44) | def getRendererString(self): ... method loadOutputsInMonitor (line 45) | def loadOutputsInMonitor(self): ... FILE: katana/stubs/Nodes3DAPI/RenderNodeUtil.pyi class RenderCameraError (line 19) | class RenderCameraError(RenderingAPI.RenderStartupError): ... class RenderNodeInfo (line 21) | class RenderNodeInfo: method __init__ (line 22) | def __init__(self, node: NodegraphAPI.Node, graphState: NodegraphAPI.G... method _RenderNodeInfo__computeTargetFileName (line 23) | def _RenderNodeInfo__computeTargetFileName(self, outputAttrs, forceLoc... method _RenderNodeInfo__computeTargetLocation (line 24) | def _RenderNodeInfo__computeTargetLocation(self, outputAttrs, forceLoc... method _RenderNodeInfo__compute_tile_file_name (line 25) | def _RenderNodeInfo__compute_tile_file_name(self, outputType, outputFi... method _RenderNodeInfo__getOutputAttr (line 26) | def _RenderNodeInfo__getOutputAttr(self, outputAttrs, attrName, defVal... method _RenderNodeInfo__getProducerData (line 27) | def _RenderNodeInfo__getProducerData(self, cameraErrorIsFatal: bool = ... method _RenderNodeInfo__getRenderSettingsAttributesDict (line 28) | def _RenderNodeInfo__getRenderSettingsAttributesDict(self, excludeOutp... method _RenderNodeInfo__process_color_output (line 29) | def _RenderNodeInfo__process_color_output(self, name, outputAttrs, out... method _RenderNodeInfo__process_deep_output (line 30) | def _RenderNodeInfo__process_deep_output(self, name, outputAttrs, outp... method _RenderNodeInfo__process_other_output (line 31) | def _RenderNodeInfo__process_other_output(self, name, outputAttrs, out... method _RenderNodeInfo__process_output (line 32) | def _RenderNodeInfo__process_output(self, index, forceLocal, makeVersi... method _RenderNodeInfo__process_prescript_output (line 33) | def _RenderNodeInfo__process_prescript_output(self, name, outputAttrs,... method _RenderNodeInfo__process_raw_output (line 34) | def _RenderNodeInfo__process_raw_output(self, name, outputAttrs, outpu... method _RenderNodeInfo__process_script_output (line 35) | def _RenderNodeInfo__process_script_output(self, name, outputAttrs, ou... method _RenderNodeInfo__process_shadow_output (line 36) | def _RenderNodeInfo__process_shadow_output(self, name, outputAttrs, ou... method _RenderNodeInfo__resolvePathsInCommand (line 37) | def _RenderNodeInfo__resolvePathsInCommand(self, command): ... method computeTileFileName (line 38) | def computeTileFileName(self, outputInfo, tileRender: Incomplete | Non... method getAllOutputNames (line 39) | def getAllOutputNames(self): ... method getCacheID (line 40) | def getCacheID(self): ... method getExplicitOutputVersion (line 41) | def getExplicitOutputVersion(self): ... method getIncludedByDefault (line 42) | def getIncludedByDefault(self, name): ... method getNumberOfOutputs (line 43) | def getNumberOfOutputs(self): ... method getOutputInfoByIndex (line 44) | def getOutputInfoByIndex(self, index, forceLocal, makeVersionTemplate:... method getOutputInfoByName (line 45) | def getOutputInfoByName(self, name, forceLocal, makeVersionTemplate: b... method getPackageString (line 46) | def getPackageString(self): ... method getProducer (line 47) | def getProducer(self): ... method getRenderSettings (line 48) | def getRenderSettings(self): ... method getRendererString (line 49) | def getRendererString(self): ... method getTileStitchWork (line 50) | def getTileStitchWork(self, tileInfo, tileCleanup, forceLocal): ... method isTileRender (line 51) | def isTileRender(self): ... method shouldForceLegacyChannelNames (line 52) | def shouldForceLegacyChannelNames(self, outputPassName: str) -> bool: ... class RenderSettingsError (line 54) | class RenderSettingsError(RenderingAPI.RenderStartupError): ... function ClearRenderNodeInfoCache (line 56) | def ClearRenderNodeInfoCache(node: NodegraphAPI.Node, graphState: Nodegr... function CreateOutputOverrideOp (line 57) | def CreateOutputOverrideOp(txn, inputOp, node: NodegraphAPI.Node, graphS... function GetCameraInfoDict (line 58) | def GetCameraInfoDict(cameraProducer): ... function GetDefaultIncludedOutputs (line 59) | def GetDefaultIncludedOutputs(node: NodegraphAPI.Node): ... function GetNumRenderOutputs (line 60) | def GetNumRenderOutputs(node: NodegraphAPI.Node, producer: typing.Option... function GetOutputIncluded (line 61) | def GetOutputIncluded(node: NodegraphAPI.Node, outputName): ... function GetRenderNodeInfo (line 62) | def GetRenderNodeInfo(node: NodegraphAPI.Node, graphState: typing.Option... function GetRenderOutputLocation (line 63) | def GetRenderOutputLocation(node: NodegraphAPI.Node, idx, producer: typi... function GetRenderOutputType (line 64) | def GetRenderOutputType(node: NodegraphAPI.Node, idx, producer: typing.O... function GetRenderSettings (line 65) | def GetRenderSettings(globalsProducer: PyFnGeolibProducers.GeometryProdu... function PostCreateAllProductsAndLocations (line 66) | def PostCreateAllProductsAndLocations(node: NodegraphAPI.Node, versionup... function PostCreateProductAndLocation (line 67) | def PostCreateProductAndLocation(node: NodegraphAPI.Node, idx, versionup... function PreCreateAllProductsAndLocations (line 68) | def PreCreateAllProductsAndLocations(node: NodegraphAPI.Node, versionup,... function PreCreateProductAndLocation (line 69) | def PreCreateProductAndLocation(node: NodegraphAPI.Node, idx, versionup,... function SetOutputIncluded (line 70) | def SetOutputIncluded(node: NodegraphAPI.Node, outputName, included): ... function SyncAllOutputPorts (line 71) | def SyncAllOutputPorts(): ... function SyncOutputPorts (line 72) | def SyncOutputPorts(node: NodegraphAPI.Node, cameraErrorIsFatal: bool = ... function UpdateIncludedOutputs (line 73) | def UpdateIncludedOutputs(node: NodegraphAPI.Node, updateDict): ... FILE: katana/stubs/Nodes3DAPI/RenderOutputDefine.pyi class RenderOutputDefine (line 23) | class RenderOutputDefine(GenericAssign): method __init__ (line 26) | def __init__(self) -> None: ... method _getIncomingSceneOpAndLocation (line 27) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 28) | def _getOpChain(self, interface): ... method _updateParameters (line 29) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addParameterHints (line 30) | def addParameterHints(self, attrName, inputDict): ... method checkDynamicParameters (line 31) | def checkDynamicParameters(self, *args, **kwds): ... method updateParameters (line 32) | def updateParameters(self, universalAttr: Incomplete | None = ..., bui... FILE: katana/stubs/Nodes3DAPI/RenderSettingsBaseType.pyi class RenderSettingsBaseType3D (line 13) | class RenderSettingsBaseType3D(GenericAssign): method __init__ (line 14) | def __init__(self) -> None: ... method _getOpChain (line 15) | def _getOpChain(self, interface): ... method addParameterHints (line 16) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/RendererProceduralArgs.pyi class RendererProceduralArgs (line 22) | class RendererProceduralArgs(Node3D): method __init__ (line 25) | def __init__(self) -> None: ... method _RendererProceduralArgs__appendTemplateGroupChildrenOp (line 26) | def _RendererProceduralArgs__appendTemplateGroupChildrenOp(self, inter... method _RendererProceduralArgs__checkDynamicParametersInternal (line 27) | def _RendererProceduralArgs__checkDynamicParametersInternal(self, univ... method _getIncomingSceneOpAndLocation (line 28) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 29) | def _getOpChain(self, interface): ... method _getStaticAttrHintsForIncomingSceneQuery (line 30) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... method _updateParameters (line 31) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addAttributeEntry (line 32) | def addAttributeEntry(self, attr: PyFnAttribute.Attribute, path: str, ... method addParameterHints (line 33) | def addParameterHints(self, attrName, inputDict): ... method addTemplateGroup (line 34) | def addTemplateGroup(self, param, templateName): ... method checkDynamicParameters (line 35) | def checkDynamicParameters(self, *args, **kwds): ... method clearParamHistory (line 36) | def clearParamHistory(self): ... method deleteAttributeEntry (line 37) | def deleteAttributeEntry(self, index: int): ... method forceRebuildParameters (line 38) | def forceRebuildParameters(self): ... method getAttributeEntries (line 39) | def getAttributeEntries(self) -> NodegraphAPI.Parameter: ... method getFixedCELStatement (line 40) | def getFixedCELStatement(self): ... method getInfoString (line 41) | def getInfoString(self): ... method getProceduralScenegraphLocation (line 42) | def getProceduralScenegraphLocation(self, sourceTime: int = ...): ... method getScenegraphLocation (line 43) | def getScenegraphLocation(self): ... method initializeFromRendererProceduralAttr (line 44) | def initializeFromRendererProceduralAttr(self, attr): ... method reorderAttributeEntries (line 45) | def reorderAttributeEntries(self, oldPos: int, oldPosCount: int, newPo... method reorderAttributeEntry (line 46) | def reorderAttributeEntry(self, oldPos: int, newPos: int): ... method setRendererProceduralArgValue (line 47) | def setRendererProceduralArgValue(self, paramName, newValue): ... FILE: katana/stubs/Nodes3DAPI/Rendering.pyi function CancelAllRenders (line 16) | def CancelAllRenders(waitOnCompletion: bool = ..., predicate: Incomplete... function CancelRender (line 17) | def CancelRender(mainSequenceID: int, waitOnCompletion: bool = ..., pred... function GetRenderCommandLine (line 18) | def GetRenderCommandLine(renderer: str, renderMethodType: str, renderMet... function RenderNode3D (line 19) | def RenderNode3D(producer: PyFnGeolibProducers.GeometryProducer, sampleR... function SignalRender (line 20) | def SignalRender(mainSequenceID, signal): ... FILE: katana/stubs/Nodes3DAPI/RenderingUtil.pyi function CalcCropWindow (line 7) | def CalcCropWindow(rect, dataWindow, renderSettingsCropWindow): ... function GetLocalNumber (line 8) | def GetLocalNumber(): ... function GetTmpLocalFile (line 9) | def GetTmpLocalFile(suffix: str, prefix: str, frame: Incomplete | None =... function SetModeFlags (line 10) | def SetModeFlags(filename): ... function ShouldCleanupTmpFiles (line 11) | def ShouldCleanupTmpFiles(): ... FILE: katana/stubs/Nodes3DAPI/Resolve.pyi class Resolve (line 10) | class Resolve(Node3D): method __init__ (line 11) | def __init__(self) -> None: ... method addParameterHints (line 12) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/ReverseNormals.pyi class ReverseNormalsNode3D (line 11) | class ReverseNormalsNode3D(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/ScenegraphManager.pyi class Scenegraph (line 18) | class Scenegraph: method __init__ (line 19) | def __init__(self) -> None: ... method _Scenegraph__emitSelectionChanged (line 20) | def _Scenegraph__emitSelectionChanged(self, selectedLocations, deselec... method _Scenegraph__expandedLocationStateChangedCallback (line 21) | def _Scenegraph__expandedLocationStateChangedCallback(self, locationSt... method _Scenegraph__onSceneLoadOrNewScene (line 22) | def _Scenegraph__onSceneLoadOrNewScene(self, **kwargs): ... method _Scenegraph__pinnedLocationStateChangedCallback (line 23) | def _Scenegraph__pinnedLocationStateChangedCallback(self, locationStat... method _Scenegraph__selectedLocationStateChangedCallback (line 24) | def _Scenegraph__selectedLocationStateChangedCallback(self, locationSt... method _Scenegraph__setSelectedLocationStateChangedCallbackEnabled (line 25) | def _Scenegraph__setSelectedLocationStateChangedCallbackEnabled(self, ... method _Scenegraph__validateLocationArgument (line 26) | def _Scenegraph__validateLocationArgument(self, functionName: str, loc... method _Scenegraph__validateLocationsArgument (line 27) | def _Scenegraph__validateLocationsArgument(self, functionName: str, lo... method addOpenLocations (line 28) | def addOpenLocations(self, locations, replace, sender: Incomplete | No... method addPinnedLocation (line 29) | def addPinnedLocation(self, location, sender: Incomplete | None = ...)... method addPinnedLocations (line 30) | def addPinnedLocations(self, locations, replace, sender: Incomplete | ... method addSelectedLocations (line 31) | def addSelectedLocations(self, locations, replace, history: bool = ...... method clearBookmarkSets (line 32) | def clearBookmarkSets(self, sender: Incomplete | None = ...): ... method clearOpenLocations (line 33) | def clearOpenLocations(self, sender: Incomplete | None = ...): ... method clearPinnedLocations (line 34) | def clearPinnedLocations(self, sender: Incomplete | None = ...): ... method clearSelection (line 35) | def clearSelection(self, sender: Incomplete | None = ...): ... method closeLocations (line 36) | def closeLocations(self, locationPathOrPaths, recursive: bool = ..., s... method ensureLocationVisible (line 37) | def ensureLocationVisible(self, location, sender: Incomplete | None = ... method getBookmarkSets (line 38) | def getBookmarkSets(self): ... method getImplicitResolversActive (line 39) | def getImplicitResolversActive(self): ... method getOpenLocations (line 40) | def getOpenLocations(self): ... method getPinnedLocations (line 41) | def getPinnedLocations(self): ... method getSelectedLocations (line 42) | def getSelectedLocations(self): ... method getVisibleSelectedLocations (line 43) | def getVisibleSelectedLocations(self): ... method graphId (line 44) | def graphId(self): ... method invertSelectedLocations (line 45) | def invertSelectedLocations(self, locations, history: bool = ..., send... method isLocationOpen (line 46) | def isLocationOpen(self, location): ... method isLocationPinned (line 47) | def isLocationPinned(self, location): ... method isLocationSelected (line 48) | def isLocationSelected(self, location: str, checkAncestors: bool = ...... method isLocationVisible (line 49) | def isLocationVisible(self, location): ... method isViewerVisibilityFollowingWorkingSet (line 50) | def isViewerVisibilityFollowingWorkingSet(self) -> bool: ... method locationHasPinnedDescendants (line 51) | def locationHasPinnedDescendants(self, location): ... method openLocations (line 52) | def openLocations(self, locationPathOrPaths, sender: Incomplete | None... method openLocationsRecursive (line 53) | def openLocationsRecursive(self, locationPathOrPaths, sender: Incomple... method pushSelectionHistory (line 54) | def pushSelectionHistory(self): ... method removePinnedLocation (line 55) | def removePinnedLocation(self, location, sender: Incomplete | None = .... method removePinnedLocations (line 56) | def removePinnedLocations(self, locations, sender: Incomplete | None =... method removeSelectedLocations (line 57) | def removeSelectedLocations(self, locations, history: bool = ..., send... method selectionHistoryBackward (line 58) | def selectionHistoryBackward(self): ... method selectionHistoryCanGoBackward (line 59) | def selectionHistoryCanGoBackward(self): ... method selectionHistoryCanGoForward (line 60) | def selectionHistoryCanGoForward(self): ... method selectionHistoryForward (line 61) | def selectionHistoryForward(self): ... method setBookmarkSets (line 62) | def setBookmarkSets(self, openSet, selectionSet, pinSet): ... method setImplicitResolversActive (line 63) | def setImplicitResolversActive(self, active): ... method setLocationOpen (line 64) | def setLocationOpen(self, location, isOpen, sender: Incomplete | None ... method setLocationSelected (line 65) | def setLocationSelected(self, location, selected: bool = ..., sender: ... method setViewerVisibilityFollowingWorkingSet (line 66) | def setViewerVisibilityFollowingWorkingSet(self, mode: bool): ... class SelectionHistory (line 68) | class SelectionHistory: method __init__ (line 69) | def __init__(self) -> None: ... method backward (line 70) | def backward(self): ... method canGoBackward (line 71) | def canGoBackward(self): ... method canGoForward (line 72) | def canGoForward(self): ... method clear (line 73) | def clear(self): ... method commit (line 74) | def commit(self): ... method forward (line 75) | def forward(self): ... method getCurrent (line 76) | def getCurrent(self): ... method getHistory (line 77) | def getHistory(self): ... method update (line 78) | def update(self, items): ... class _OrderedSet (line 80) | class _OrderedSet(collections.OrderedDict): method append (line 81) | def append(self, item): ... method discard (line 82) | def discard(self, item): ... method insert (line 83) | def insert(self, item): ... function getActiveScenegraph (line 85) | def getActiveScenegraph(): ... FILE: katana/stubs/Nodes3DAPI/ScenegraphMask.pyi function GetScenegraphMaskEnabled (line 9) | def GetScenegraphMaskEnabled(): ... function GetScenegraphMaskLocationsAndRoot (line 10) | def GetScenegraphMaskLocationsAndRoot(cameraPath: str, selectedLocations... function GetScengraphMaskLocations (line 11) | def GetScengraphMaskLocations() -> list[str]: ... function GetVisibilityFollowsWorkingSet (line 12) | def GetVisibilityFollowsWorkingSet(): ... function SetScenegraphMaskEnabled (line 13) | def SetScenegraphMaskEnabled(scenegraphMaskEnabled): ... function SetVisibilityFollowsWorkingSet (line 14) | def SetVisibilityFollowsWorkingSet(enabled): ... FILE: katana/stubs/Nodes3DAPI/ShadingNodeArrayConnector.pyi class ShadingNodeArrayConnectorNode (line 10) | class ShadingNodeArrayConnectorNode(Node3D): method __init__ (line 11) | def __init__(self) -> None: ... method _getOp (line 12) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method _getShadingNodeConnectionInfo (line 13) | def _getShadingNodeConnectionInfo(self, sourcePortName: str) -> tuple[... method getDefaultNodeShapeAttrs (line 14) | def getDefaultNodeShapeAttrs(self): ... FILE: katana/stubs/Nodes3DAPI/ShadingNodeBase.pyi class ShadingNodeBase (line 23) | class ShadingNodeBase(Node3D): method __init__ (line 24) | def __init__(self) -> None: ... method _ShadingNodeBase__buildOpArgs (line 25) | def _ShadingNodeBase__buildOpArgs(self, graphState: NodegraphAPI.Graph... method _ShadingNodeBase__checkDynamicParametersInternal (line 26) | def _ShadingNodeBase__checkDynamicParametersInternal(self, paramsAttr,... method _ShadingNodeBase__getUpstreamMaterialParameterDefaultsOp (line 27) | def _ShadingNodeBase__getUpstreamMaterialParameterDefaultsOp(self, tra... method _ShadingNodeBase__on_parameter_setValue (line 28) | def _ShadingNodeBase__on_parameter_setValue(self, eventName: str, even... method _ShadingNodeBase__on_shadingNodeCreate (line 29) | def _ShadingNodeBase__on_shadingNodeCreate(self, _eventName, _eventID,... method _ShadingNodeBase__setLeafAttrsInAttributeSet (line 30) | def _ShadingNodeBase__setLeafAttrsInAttributeSet(self, sourceAttr, tar... method _assignPortIndexes (line 31) | def _assignPortIndexes(self): ... method _buildCoshaderInputPorts (line 32) | def _buildCoshaderInputPorts(self, hintDict): ... method _buildInputPorts (line 33) | def _buildInputPorts(self, rendererInfoPlugin, hintDict, shader): ... method _buildOutputPorts (line 34) | def _buildOutputPorts(self, rendererInfoPlugin, hintDict, shader): ... method _buildPorts (line 35) | def _buildPorts(self, shader, rendererInfoPlugin, inputsHintDict, outp... method _cleanAllPorts (line 36) | def _cleanAllPorts(self, whitelist): ... method _getIncomingSceneOpAndLocation (line 37) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOp (line 38) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method _getShaderAttrKeys (line 39) | def _getShaderAttrKeys(self): ... method _getShadingNodeConnectionInfo (line 40) | def _getShadingNodeConnectionInfo(self, sourcePortName: str) -> tuple[... method _getStaticAttrHintsForIncomingSceneQuery (line 41) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath): ... method _getUpdateParametersSupportedKeywords (line 42) | def _getUpdateParametersSupportedKeywords(self): ... method _updateCoshaderPortVisibility (line 43) | def _updateCoshaderPortVisibility(self, hintDict: dict): ... method _updateParameters (line 44) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method _validateExistingPortConnections (line 45) | def _validateExistingPortConnections(self, port: NodegraphAPI.Port): ... method addInputPort (line 46) | def addInputPort(self, portName, label: Incomplete | None = ..., page:... method addOutputPort (line 47) | def addOutputPort(self, portName): ... method addParameterHints (line 48) | def addParameterHints(self, attrName, inputDict): ... method allowMismatchedConnection (line 49) | def allowMismatchedConnection(self, myPort, incomingPort): ... method checkDynamicParameters (line 50) | def checkDynamicParameters(self, *args, **kwds): ... method clearParamHistory (line 51) | def clearParamHistory(self): ... method getAdjustedName (line 52) | def getAdjustedName(self, inputName, frameTime): ... method getAdjustedPageName (line 53) | def getAdjustedPageName(self, inputPage, frameTime): ... method getInfoString (line 54) | def getInfoString(self): ... method getOutputTags (line 55) | def getOutputTags(self, outputName): ... method getRendererName (line 56) | def getRendererName(self) -> str: ... method setShowHiddenParameters (line 57) | def setShowHiddenParameters(self, showHidden: bool): ... method showHiddenParameters (line 58) | def showHiddenParameters(self) -> bool: ... method validateConnection (line 59) | def validateConnection(self, otherOutPort, myInPort, errorMessages: In... function AssignNodePortColors (line 61) | def AssignNodePortColors(nodes: Incomplete | None = ...): ... function GetPortColor (line 62) | def GetPortColor(hintsDict: Incomplete | None = ..., **kwargs) -> list: ... function GetRegisteredNodeTypes (line 63) | def GetRegisteredNodeTypes(): ... function InitializeShadingNode (line 64) | def InitializeShadingNode(nodeName, shadingNode, rendererInfoPluginName)... function RetargetExtraHints (line 65) | def RetargetExtraHints(nodeTypeName): ... FILE: katana/stubs/Nodes3DAPI/ShadingNodeSubnet.pyi class BaseShadingNodeSubnet (line 15) | class BaseShadingNodeSubnet(Nodes3DAPI.Node3D_geolib3.NodeGeolib3): method __init__ (line 17) | def __init__(self) -> None: ... method _BaseShadingNodeSubnet__buildOpArgs (line 18) | def _BaseShadingNodeSubnet__buildOpArgs(self, graphState: NodegraphAPI... method _BaseShadingNodeSubnet__getPublicInterfaceParameters (line 19) | def _BaseShadingNodeSubnet__getPublicInterfaceParameters(self, frameTi... method _getOp (line 20) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... method addExposedParameters (line 21) | def addExposedParameters(self): ... method addGroupParametersToList (line 23) | def addGroupParametersToList(cls, node: NodegraphAPI.Node, result): ... method addParameterHints (line 24) | def addParameterHints(self, attrName, inputDict): ... method addPublicInterfaceParameter (line 25) | def addPublicInterfaceParameter(self, param, checkForDuplicate: bool =... method getGroupParametersAndPublicInterfaceOrders (line 27) | def getGroupParametersAndPublicInterfaceOrders(cls, nodeList): ... method getPublicInterfaceOrder (line 28) | def getPublicInterfaceOrder(self, frameTime): ... method getPublicInterfaceParameters (line 29) | def getPublicInterfaceParameters(self, frameTime): ... class ShadingNodeSubnet (line 31) | class ShadingNodeSubnet(NodegraphAPI_cmodule.PythonGroupNode, BaseShadin... method __init__ (line 32) | def __init__(self) -> None: ... FILE: katana/stubs/Nodes3DAPI/ShadingNodeUtil.pyi function GetConnectionNames (line 6) | def GetConnectionNames(sourceNodeName: str, sourcePortName: str, isArray... function IsArrayConnection (line 7) | def IsArrayConnection(connectedNodeName: str) -> bool: ... function ReportError (line 8) | def ReportError(errorMessage: str, errorMessages: Incomplete | None = ..... FILE: katana/stubs/Nodes3DAPI/TerminalOpDelegates/ExampleTimeTerminalOpDelegate.pyi class ExampleTerminalOpDelegate (line 8) | class ExampleTerminalOpDelegate(TerminalOpDelegate): method __init__ (line 9) | def __init__(self) -> None: ... method appendOp (line 10) | def appendOp(self, op, txn, port: NodegraphAPI.Port, graphState: Nodeg... method reset (line 11) | def reset(self): ... method update (line 12) | def update(self): ... FILE: katana/stubs/Nodes3DAPI/TerminalOpDelegates/TerminalOpDelegate.pyi class TerminalOpDelegate (line 7) | class TerminalOpDelegate: method appendOp (line 8) | def appendOp(self, op: PyFnGeolib.GeolibRuntimeOp, txn: PyFnGeolib.Geo... method update (line 9) | def update(self) -> bool: ... FILE: katana/stubs/Nodes3DAPI/TerminalOpDelegates/WorkingSetTerminalOpDelegate.pyi class WorkingSetTerminalOpDelegate (line 16) | class WorkingSetTerminalOpDelegate(TerminalOpDelegate): method __init__ (line 18) | def __init__(self) -> None: ... method _WorkingSetTerminalOpDelegate__addWorkingSet (line 19) | def _WorkingSetTerminalOpDelegate__addWorkingSet(self, workingSetName)... method _WorkingSetTerminalOpDelegate__flushCaches (line 20) | def _WorkingSetTerminalOpDelegate__flushCaches(self): ... method _WorkingSetTerminalOpDelegate__generateOpArgs (line 21) | def _WorkingSetTerminalOpDelegate__generateOpArgs(self): ... method _WorkingSetTerminalOpDelegate__removeWorkingSet (line 22) | def _WorkingSetTerminalOpDelegate__removeWorkingSet(self, workingSetNa... method _WorkingSetTerminalOpDelegate__workingSetClearCallback (line 23) | def _WorkingSetTerminalOpDelegate__workingSetClearCallback(self, worki... method _WorkingSetTerminalOpDelegate__workingSetDeletedCallback (line 24) | def _WorkingSetTerminalOpDelegate__workingSetDeletedCallback(self, arg... method _WorkingSetTerminalOpDelegate__workingSetLocationChangeCallback (line 25) | def _WorkingSetTerminalOpDelegate__workingSetLocationChangeCallback(se... method appendOp (line 26) | def appendOp(self, op: PyFnGeolib.GeolibRuntimeOp, txn: PyFnGeolib.Geo... method getWorkingSetNames (line 27) | def getWorkingSetNames(self) -> tuple[str, ...]: ... method setPolishOutput (line 28) | def setPolishOutput(self, workingSetName: str, polishOutput: bool): ... method setWorkingSetNames (line 29) | def setWorkingSetNames(self, workingSetNames: typing.Sequence[str]): ... method update (line 30) | def update(self) -> bool: ... class _WorkingSetsInfoAttrsMap (line 32) | class _WorkingSetsInfoAttrsMap: method __init__ (line 33) | def __init__(self) -> None: ... method addWorkingSet (line 34) | def addWorkingSet(self, name: str, workingSet: WorkingSet): ... method getName (line 35) | def getName(self, workingSet: WorkingSet) -> str: ... method getWorkingSetAttr (line 36) | def getWorkingSetAttr(self, name: str) -> PyFnAttribute.GroupAttribute... method getWorkingSetNames (line 37) | def getWorkingSetNames(self) -> list[str]: ... method removeWorkingSet (line 38) | def removeWorkingSet(self, name: str): ... method updateWorkingSet (line 39) | def updateWorkingSet(self, workingSet: WorkingSet): ... FILE: katana/stubs/Nodes3DAPI/TimingUtils.pyi function GetModifiedFrameTime (line 8) | def GetModifiedFrameTime(node: NodegraphAPI.Node, frameTime): ... function GetTimingParameterAttrsForNodeTypeBuilder (line 9) | def GetTimingParameterAttrsForNodeTypeBuilder(): ... function GetTimingParameterHints (line 10) | def GetTimingParameterHints(attrName: Incomplete | None = ...): ... function GetTimingParameterXML (line 11) | def GetTimingParameterXML(): ... function HasTimingParameter (line 12) | def HasTimingParameter(node: NodegraphAPI.Node): ... function SetTimingParametersExpressionsForNodeTypeBuilder (line 13) | def SetTimingParametersExpressionsForNodeTypeBuilder(node: NodegraphAPI.... FILE: katana/stubs/Nodes3DAPI/Transform3D.pyi class TransformNode3D (line 20) | class TransformNode3D(Node3D): method __init__ (line 21) | def __init__(self) -> None: ... method _TransformNode3D__getPivotAttr (line 22) | def _TransformNode3D__getPivotAttr(self, frameTime, graphState: typing... method _TransformNode3D__getRotate (line 23) | def _TransformNode3D__getRotate(self, frameTime, graphState: Nodegraph... method _TransformNode3D__getTransformAttr (line 24) | def _TransformNode3D__getTransformAttr(self, frameTime, graphState: ty... method _getOpChain (line 25) | def _getOpChain(self, interface): ... method addParameterHints (line 26) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 27) | def canOverride(self, attrName): ... method setInteractiveTransform (line 28) | def setInteractiveTransform(self, path, absScale, absRotate, absTransl... method setInteractiveTransformFlag (line 29) | def setInteractiveTransformFlag(self, path, time): ... method setOverride (line 30) | def setOverride(self, path, attrName, time, attrData, index: Incomplet... function _GetArrayParameterConstantValue (line 32) | def _GetArrayParameterConstantValue(parameter, frameTime): ... function _GetArrayParameterSamples (line 33) | def _GetArrayParameterSamples(parameter, graphState: NodegraphAPI.GraphS... function _GetParameterConstantValue (line 34) | def _GetParameterConstantValue(parameter, frameTime): ... function _GetParameterSampleTimes (line 35) | def _GetParameterSampleTimes(parameter, graphState: NodegraphAPI.GraphSt... function _GetParameterSamples (line 36) | def _GetParameterSamples(parameter, graphState: NodegraphAPI.GraphState)... FILE: katana/stubs/Nodes3DAPI/TransformEdit.pyi class TransformEditNode (line 16) | class TransformEditNode(Node3D): method __init__ (line 20) | def __init__(self) -> None: ... method _TransformEditNode__getOverrideParameterPath (line 21) | def _TransformEditNode__getOverrideParameterPath(self, attrPath: str, ... method _getIncomingSceneOpAndLocation (line 22) | def _getIncomingSceneOpAndLocation(self, port: NodegraphAPI.Port, grap... method _getOpChain (line 23) | def _getOpChain(self, interface): ... method _getStaticAttrHintsForIncomingSceneQuery (line 24) | def _getStaticAttrHintsForIncomingSceneQuery(self, attrPath: str) -> d... method _updateParameters (line 25) | def _updateParameters(self, groupAttr, force: bool = ..., defaultAttr:... method addParameterHints (line 26) | def addParameterHints(self, attrName, inputDict): ... method canOverride (line 27) | def canOverride(self, attrName): ... method checkDynamicParameters (line 28) | def checkDynamicParameters(self): ... method findOverrideParameter (line 29) | def findOverrideParameter(self, path, attrName, time, index: Incomplet... method getScenegraphLocation (line 30) | def getScenegraphLocation(self, frameTime: float = ...) -> str: ... method setInteractiveTransform (line 31) | def setInteractiveTransform(self, path, absScale, absRotate, absTransl... method setInteractiveTransformFlag (line 32) | def setInteractiveTransformFlag(self, path, time): ... method setOverride (line 33) | def setOverride(self, locationPath, attrName, frameTime, attrData, ind... FILE: katana/stubs/Nodes3DAPI/TransformUtil.pyi function CanOverrideTransform (line 13) | def CanOverrideTransform(node: NodegraphAPI.Node, attrName): ... function FindOverrideParameterTransform (line 14) | def FindOverrideParameterTransform(node: NodegraphAPI.Node, path, attrNa... function GetEnableableNodesWithTransforms (line 15) | def GetEnableableNodesWithTransforms(): ... function GetRotateAttr (line 16) | def GetRotateAttr(attr, param, frameTime): ... function GetRotateXAttr (line 17) | def GetRotateXAttr(attr, param, frameTime): ... function GetRotateYAttr (line 18) | def GetRotateYAttr(attr, param, frameTime): ... function GetRotateZAttr (line 19) | def GetRotateZAttr(attr, param, frameTime): ... function GetScaleAttr (line 20) | def GetScaleAttr(attr, param, frameTime): ... function GetTransformAttr (line 21) | def GetTransformAttr(attr, param, frameTime): ... function GetTransformAttrWithMotionUsingGraphState (line 22) | def GetTransformAttrWithMotionUsingGraphState(param, graphState: Nodegra... function GetTransformAttr_WithMotion (line 23) | def GetTransformAttr_WithMotion(attr, param, shutterOpenTime, timeWindow... function GetTransformParameterAttrsForNodeTypeBuilder (line 24) | def GetTransformParameterAttrsForNodeTypeBuilder(): ... function GetTransformParameterHints (line 25) | def GetTransformParameterHints(): ... function GetTransformXML (line 26) | def GetTransformXML(): ... function GetTranslateAttr (line 27) | def GetTranslateAttr(attr, param, frameTime): ... function PushInteractiveTransform (line 28) | def PushInteractiveTransform(attr, scale, rotate, translate, _time): ... function ResetTransformParams (line 29) | def ResetTransformParams(param, time): ... function SetOverrideTransform (line 30) | def SetOverrideTransform(node: NodegraphAPI.Node, path, attrName, time, ... function SetTransformParamsSRTXYZ (line 31) | def SetTransformParamsSRTXYZ(param, scale, rotate, translate, time): ... function _AppendMatrix (line 32) | def _AppendMatrix(attr, matrixParam, shutterOpenTime, timeWindowDuration... function _AppendRotate (line 33) | def _AppendRotate(attr, param, shutterOpenTime, timeWindowDuration, time... function _AppendRotateX (line 34) | def _AppendRotateX(attr, param, shutterOpenTime, timeWindowDuration, tim... function _AppendRotateY (line 35) | def _AppendRotateY(attr, param, shutterOpenTime, timeWindowDuration, tim... function _AppendRotateZ (line 36) | def _AppendRotateZ(attr, param, shutterOpenTime, timeWindowDuration, tim... function _AppendScale (line 37) | def _AppendScale(attr, prm, shutterOpenTime, timeWindowDuration, timeNum... function _AppendTransformItem (line 38) | def _AppendTransformItem(inGroup, itemName, itemAttr): ... function _AppendTranslate (line 39) | def _AppendTranslate(attr, prm, shutterOpenTime, timeWindowDuration, tim... FILE: katana/stubs/Nodes3DAPI/Unfork3D.pyi class UnforkNode3D (line 10) | class UnforkNode3D(Node3D): method __init__ (line 11) | def __init__(self) -> None: ... method _getOp (line 12) | def _getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Gra... FILE: katana/stubs/Nodes3DAPI/UpdateModes.pyi function GetUpdateMode (line 13) | def GetUpdateMode() -> int: ... function IsDirty (line 14) | def IsDirty(): ... function SetDirty (line 15) | def SetDirty(dirty): ... function SetUpdateMode (line 16) | def SetUpdateMode(updateMode: int): ... function TriggerManualUpdate (line 17) | def TriggerManualUpdate(): ... FILE: katana/stubs/Nodes3DAPI/VariableSwitchUtil.pyi function __inputPortUpdate (line 7) | def __inputPortUpdate(eventType, eventID, node: NodegraphAPI.Node, **kwa... FILE: katana/stubs/Nodes3DAPI/VelocityApply.pyi class VelocityApplyNode3D (line 11) | class VelocityApplyNode3D(Node3D): method __init__ (line 14) | def __init__(self) -> None: ... method _getOpChain (line 15) | def _getOpChain(self, interface): ... method addParameterHints (line 16) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI/WorkingSetDebug.pyi class WorkingSetDebugNode (line 13) | class WorkingSetDebugNode(Node3D): method __init__ (line 15) | def __init__(self) -> None: ... method _WorkingSetDebugNode__locationStateChangedCallback (line 16) | def _WorkingSetDebugNode__locationStateChangedCallback(self, locationS... method _WorkingSetDebugNode__updateWorkingSet (line 17) | def _WorkingSetDebugNode__updateWorkingSet(self, workingSetName): ... method _WorkingSetDebugNode__updateWorkingSetParams (line 18) | def _WorkingSetDebugNode__updateWorkingSetParams(self, workingSet): ... method _getOpChain (line 19) | def _getOpChain(self, interface): ... method addParameterHints (line 20) | def addParameterHints(self, attrName, inputDict): ... function __GetWorkingSetContentsChildren (line 22) | def __GetWorkingSetContentsChildren(): ... FILE: katana/stubs/Nodes3DAPI/ZoomToRect.pyi class ZoomToRectNode (line 11) | class ZoomToRectNode(Node3D): method __init__ (line 12) | def __init__(self) -> None: ... method _getOpChain (line 13) | def _getOpChain(self, interface): ... method addParameterHints (line 14) | def addParameterHints(self, attrName, inputDict): ... FILE: katana/stubs/Nodes3DAPI_cmodule/__init__.pyi function BuildAttrListFromDynamicParameterGroup (line 9) | def BuildAttrListFromDynamicParameterGroup(groupParam: NodegraphAPI_cmod... function BuildAttrListFromDynamicParameterGroup (line 11) | def BuildAttrListFromDynamicParameterGroup(groupParam: NodegraphAPI_cmod... function BuildGroupAttrFromParam (line 12) | def BuildGroupAttrFromParam(groupParam: NodegraphAPI_cmodule.Parameter, ... function BuildHierarchyCreateOpArgs (line 13) | def BuildHierarchyCreateOpArgs(frameTime: float, groupParameter: Nodegra... function DefaultDAPCookOrder (line 14) | def DefaultDAPCookOrder() -> PyFnAttribute.Attribute: ... function EvaluateBoolExpresion (line 16) | def EvaluateBoolExpresion(expression: str, tags: typing.Sequence) -> boo... function EvaluateBoolExpresion (line 18) | def EvaluateBoolExpresion(expression: str, tags: set) -> bool: ... function GetLeafAttrPairs (line 19) | def GetLeafAttrPairs(groupAttribute: PyFnAttribute.GroupAttribute, prefi... FILE: katana/stubs/PackageSuperToolAPI/BaseEditor.pyi class BaseEditor (line 33) | class BaseEditor(PyQt5.QtWidgets.QWidget): class _PackageValidityStatus (line 34) | class _PackageValidityStatus: method textForStatusCode (line 40) | def textForStatusCode(cls, code): ... class _TabAreaState (line 42) | class _TabAreaState: method __init__ (line 46) | def __init__(self, locationPath, statusCode) -> None: ... method Edit (line 48) | def Edit(cls, locationPath): ... method Error (line 50) | def Error(cls, locationPath): ... method Inactive (line 52) | def Inactive(cls): ... method getLocationPath (line 53) | def getLocationPath(self): ... method getStatusCode (line 54) | def getStatusCode(self): ... method __eq__ (line 55) | def __eq__(self, rhs) -> bool: ... method __ne__ (line 56) | def __ne__(self, rhs) -> bool: ... class _TabAreaUpdate (line 58) | class _TabAreaUpdate: method __init__ (line 60) | def __init__(self, locationPath) -> None: ... method Location (line 62) | def Location(cls, locationPath): ... method Selection (line 64) | def Selection(cls): ... method getLocationPath (line 65) | def getLocationPath(self) -> USE_CURRENT_SELECTION | str | None: ... method __init__ (line 71) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, node: Nodeg... method _BaseEditor__aboutToDragCallback (line 72) | def _BaseEditor__aboutToDragCallback(self, items, dragObject): ... method _BaseEditor__actionMenuAboutToShow (line 73) | def _BaseEditor__actionMenuAboutToShow(self): ... method _BaseEditor__addPackage (line 74) | def _BaseEditor__addPackage(self): ... method _BaseEditor__adoptLocationsForEditing (line 75) | def _BaseEditor__adoptLocationsForEditing(self, locationPaths: list[st... method _BaseEditor__buildToolbar (line 76) | def _BaseEditor__buildToolbar(self): ... method _BaseEditor__canAnySelectedPackageBeDeleted (line 77) | def _BaseEditor__canAnySelectedPackageBeDeleted(self) -> bool: ... method _BaseEditor__canAnySelectedPackageBeDuplicated (line 78) | def _BaseEditor__canAnySelectedPackageBeDuplicated(self) -> bool: ... method _BaseEditor__configureSceneGraphView (line 79) | def _BaseEditor__configureSceneGraphView(self): ... method _BaseEditor__configureTabWidget (line 80) | def _BaseEditor__configureTabWidget(self): ... method _BaseEditor__contextMenuEventHandler (line 81) | def _BaseEditor__contextMenuEventHandler(self, contextMenuEvent, menu)... method _BaseEditor__createChildPackage (line 82) | def _BaseEditor__createChildPackage(self, children: list[str], parentP... method _BaseEditor__deletePackage (line 83) | def _BaseEditor__deletePackage(self): ... method _BaseEditor__dispatchPackageMenuAction (line 84) | def _BaseEditor__dispatchPackageMenuAction(self): ... method _BaseEditor__dragMoveEventCallback (line 85) | def _BaseEditor__dragMoveEventCallback(self, dragMoveEvent, draggedIte... method _BaseEditor__dropEventCallback (line 86) | def _BaseEditor__dropEventCallback(self, dropEvent, droppedItems, pare... method _BaseEditor__duplicatePackage (line 87) | def _BaseEditor__duplicatePackage(self): ... method _BaseEditor__freeze (line 88) | def _BaseEditor__freeze(self): ... method _BaseEditor__getAndValidatePackageForPath (line 89) | def _BaseEditor__getAndValidatePackageForPath(self, locationPath: str)... method _BaseEditor__getGlobalOrdering (line 90) | def _BaseEditor__getGlobalOrdering(self, items: list[QTreeWidgetItem])... method _BaseEditor__getIncomingChildCount (line 91) | def _BaseEditor__getIncomingChildCount(self, parent: QTreeWidgetItem |... method _BaseEditor__getInternalViewPort (line 92) | def _BaseEditor__getInternalViewPort(self): ... method _BaseEditor__hideTabsLabel (line 93) | def _BaseEditor__hideTabsLabel(self): ... method _BaseEditor__iterTabs (line 94) | def _BaseEditor__iterTabs(self) -> typing.Iterator[str, PyQt5.QtWidget... method _BaseEditor__locationAddedOrUpdatedCallback (line 95) | def _BaseEditor__locationAddedOrUpdatedCallback(self, locationPath, to... method _BaseEditor__mainNodeParameterFinalizedHandler (line 96) | def _BaseEditor__mainNodeParameterFinalizedHandler(self, args): ... method _BaseEditor__nodeSetLockedChanged (line 97) | def _BaseEditor__nodeSetLockedChanged(self, *args): ... method _BaseEditor__on_cachedWidgetDestroyed (line 98) | def _BaseEditor__on_cachedWidgetDestroyed(self, cache: dict, cacheKey:... method _BaseEditor__on_scenegraphManager_pinChanged (line 99) | def _BaseEditor__on_scenegraphManager_pinChanged(self, eventType, even... method _BaseEditor__on_scenegraphManager_selectionChanged (line 100) | def _BaseEditor__on_scenegraphManager_selectionChanged(self, *args): ... method _BaseEditor__on_tabAreaUpdateTimer_timeout (line 101) | def _BaseEditor__on_tabAreaUpdateTimer_timeout(self): ... method _BaseEditor__overrideParameterRequestCallback (line 102) | def _BaseEditor__overrideParameterRequestCallback(self, overrideParame... method _BaseEditor__populateAddMenu (line 103) | def _BaseEditor__populateAddMenu(self, menu: PyQt5.QtWidgets.QMenu, pa... method _BaseEditor__populateStandardContextMenuItems (line 104) | def _BaseEditor__populateStandardContextMenuItems(self, menu): ... method _BaseEditor__potentialPortViewChangeHandler (line 105) | def _BaseEditor__potentialPortViewChangeHandler(self, args): ... method _BaseEditor__registerDestructionCallback (line 106) | def _BaseEditor__registerDestructionCallback(self, widget: PyQt5.QtCor... method _BaseEditor__registerHandlers (line 107) | def _BaseEditor__registerHandlers(self, state: bool): ... method _BaseEditor__reparentPackages (line 108) | def _BaseEditor__reparentPackages(self, children, droppedItems, childI... method _BaseEditor__restoreExpansionStateFor (line 109) | def _BaseEditor__restoreExpansionStateFor(self, locationPath, topLevel... method _BaseEditor__restoreSelectionStateFor (line 110) | def _BaseEditor__restoreSelectionStateFor(self, locationPath, topLevel... method _BaseEditor__restoreTopLevelLocations (line 111) | def _BaseEditor__restoreTopLevelLocations(self, children, currentRootL... method _BaseEditor__rootChildrenChangedCallback (line 112) | def _BaseEditor__rootChildrenChangedCallback(self, locationPath, child... method _BaseEditor__rootLocationPolicyEvent (line 113) | def _BaseEditor__rootLocationPolicyEvent(self, *args, **kwds): ... method _BaseEditor__saveCurrentSelectionAndExpansionState (line 114) | def _BaseEditor__saveCurrentSelectionAndExpansionState(self, oldRootLo... method _BaseEditor__selectionChangedHandler (line 115) | def _BaseEditor__selectionChangedHandler(self, syncSelection: bool = .... method _BaseEditor__syncSelectionEvent (line 116) | def _BaseEditor__syncSelectionEvent(self, args: list): ... method _BaseEditor__syncSelectionValueChanged (line 117) | def _BaseEditor__syncSelectionValueChanged(self, event): ... method _BaseEditor__tabAreaClearWidgets (line 118) | def _BaseEditor__tabAreaClearWidgets(self): ... method _BaseEditor__tabAreaHandleChangesForLocation (line 119) | def _BaseEditor__tabAreaHandleChangesForLocation(self, locationPath: s... method _BaseEditor__tabAreaHandleChangesForLocationSync (line 120) | def _BaseEditor__tabAreaHandleChangesForLocationSync(self, locationPat... method _BaseEditor__tabAreaRepaintWithWidgetsForPackage (line 121) | def _BaseEditor__tabAreaRepaintWithWidgetsForPackage(self, package: Pa... method _BaseEditor__tabAreaScheduleUpdate (line 122) | def _BaseEditor__tabAreaScheduleUpdate(self): ... method _BaseEditor__tabAreaSetEditedLocation (line 123) | def _BaseEditor__tabAreaSetEditedLocation(self, locationPath: str | No... method _BaseEditor__tabAreaSetEditedLocationFromSelection (line 124) | def _BaseEditor__tabAreaSetEditedLocationFromSelection(self): ... method _BaseEditor__tabAreaSetEditedLocationFromSelectionSync (line 125) | def _BaseEditor__tabAreaSetEditedLocationFromSelectionSync(self): ... method _BaseEditor__tabAreaSetEditedLocationSync (line 126) | def _BaseEditor__tabAreaSetEditedLocationSync(self, locationPath: str ... method _BaseEditor__tabAreaSetLabelText (line 127) | def _BaseEditor__tabAreaSetLabelText(self, message: Incomplete | None ... method _BaseEditor__terminalOpCallback (line 128) | def _BaseEditor__terminalOpCallback(self, portOpClient, op, graphState... method _BaseEditor__thaw (line 129) | def _BaseEditor__thaw(self): ... method _BaseEditor__updateColumnItemDelegates (line 130) | def _BaseEditor__updateColumnItemDelegates(self): ... method _BaseEditor__updateCurrentItem (line 131) | def _BaseEditor__updateCurrentItem(self): ... method _BaseEditor__updatePort (line 132) | def _BaseEditor__updatePort(self, port: NodegraphAPI.Port): ... method _BaseEditor__updateRootLocation (line 133) | def _BaseEditor__updateRootLocation(self, currentRoot): ... method _BaseEditor__updateSyncSelection (line 134) | def _BaseEditor__updateSyncSelection(self, syncSelection): ... method _BaseEditor__updateTerminalOps (line 135) | def _BaseEditor__updateTerminalOps(self, graphState: typing.Optional[N... method _executeCallbackWhenChildrenReady (line 136) | def _executeCallbackWhenChildrenReady(self, parentLocationPath: str, c... method addTab (line 137) | def addTab(self, tabName: str) -> PyQt5.QtWidgets.QWidget: ... method canSelectionBeExported (line 138) | def canSelectionBeExported(self) -> bool: ... method getAddPackageMenuActions (line 139) | def getAddPackageMenuActions(self) -> list[tuple[str, str, bool]]: ... method getAttribute (line 140) | def getAttribute(self, locationPath: str, attributeName: str) -> PyFnA... method getChildrenUnder (line 141) | def getChildrenUnder(self, parentPath): ... method getDefaultAddMenuGroupName (line 142) | def getDefaultAddMenuGroupName(self) -> str: ... method getDefaultSceneGraphViewTerminalOpUpdates (line 144) | def getDefaultSceneGraphViewTerminalOpUpdates(cls, graphState: Nodegra... method getDefaultSceneGraphViewTerminalOps (line 146) | def getDefaultSceneGraphViewTerminalOps(cls, graphState: NodegraphAPI.... method getKeyboardShortcuts (line 148) | def getKeyboardShortcuts(cls) -> None: ... method getLayoutOrientation (line 150) | def getLayoutOrientation(cls) -> int: ... method getMainNode (line 151) | def getMainNode(self) -> BaseNode: ... method getMainPanelWidget (line 152) | def getMainPanelWidget(self) -> PyQt5.QtWidgets.QWidget: ... method getMenuActions (line 153) | def getMenuActions(self) -> list[tuple[str, str, bool]]: ... method getPackageForPath (line 154) | def getPackageForPath(self, locationPath: str, includeEditPackages: bo... method getSceneGraphView (line 155) | def getSceneGraphView(self) -> UI4.Widgets.SceneGraphView: ... method getSceneGraphViewTerminalOpUpdates (line 157) | def getSceneGraphViewTerminalOpUpdates(cls, graphState: NodegraphAPI.G... method getSceneGraphViewTerminalOps (line 159) | def getSceneGraphViewTerminalOps(cls, graphState: NodegraphAPI.GraphSt... method getSelectedItems (line 160) | def getSelectedItems(self) -> list[str]: ... method getSelectedPackages (line 161) | def getSelectedPackages(self, includeEditPackages: bool = ..., createD... method getSuperToolName (line 163) | def getSuperToolName(cls) -> str: ... method getTabNames (line 165) | def getTabNames(cls) -> list[str]: ... method getTabWidget (line 166) | def getTabWidget(self) -> PyQt5.QtWidgets.QTabWidget: ... method getTopLevelPackage (line 167) | def getTopLevelPackage(self, package: PackageSuperToolAPI.Packages.Pac... method hideEvent (line 168) | def hideEvent(self, event): ... method onSelectionChanged (line 169) | def onSelectionChanged(self): ... method populateContextMenu (line 170) | def populateContextMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method registerAddPackageKeyboardShortcut (line 172) | def registerAddPackageKeyboardShortcut(cls, packageClass: type): ... method registerKeyboardShortcuts (line 174) | def registerKeyboardShortcuts(cls): ... method registerPackageKeyboardShortcuts (line 176) | def registerPackageKeyboardShortcuts(cls, packageClass: type): ... method removeTab (line 177) | def removeTab(self, tabName: str): ... method setColumnToUpdateOnStateChange (line 178) | def setColumnToUpdateOnStateChange(self, columnName): ... method setupSceneGraphViewColumns (line 179) | def setupSceneGraphViewColumns(self): ... method setupTabWidget (line 180) | def setupTabWidget(self): ... method showEvent (line 181) | def showEvent(self, event): ... class GafferThreeInteractionDelegate (line 183) | class GafferThreeInteractionDelegate(UI4.NodeMaster.NodeInteractionDeleg... method addToNodeSpecificShelfEnvironment (line 184) | def addToNodeSpecificShelfEnvironment(self, targetNode, editor, envDic... FILE: katana/stubs/PackageSuperToolAPI/BaseNode.pyi class BaseNode (line 22) | class BaseNode(SuperTool): method __init__ (line 24) | def __init__(self, version: Incomplete | None = ...) -> None: ... method _BaseNode__getEditPackageForLocationPath (line 26) | def _BaseNode__getEditPackageForLocationPath(cls, mainNode: NodegraphA... method _BaseNode__getNotInInputMarkingOpScript (line 27) | def _BaseNode__getNotInInputMarkingOpScript(self): ... method _BaseNode__getNotInInputStrippingOpScript (line 28) | def _BaseNode__getNotInInputStrippingOpScript(self): ... method _BaseNode__getOpScriptForNonAdoptedStripping (line 29) | def _BaseNode__getOpScriptForNonAdoptedStripping(self): ... method adoptLocationForEditing (line 30) | def adoptLocationForEditing(self, locationPath: str, locationAttribute... method adoptLocationsForEditing (line 31) | def adoptLocationsForEditing(self, locationPaths: list[str], locationA... method canAdoptLocationForEditing (line 32) | def canAdoptLocationForEditing(self, location: str) -> bool: ... method canAdoptLocationsForEditing (line 33) | def canAdoptLocationsForEditing(self, locations: list[str]) -> bool: ... method getAPIVersion (line 34) | def getAPIVersion(self) -> int: ... method getDefaultRootLocation (line 36) | def getDefaultRootLocation(cls) -> str: ... method getItemListAttributeName (line 38) | def getItemListAttributeName(cls) -> str | None: ... method getLocationAttributes (line 39) | def getLocationAttributes(self, locationPath: str) -> PyFnAttribute.Gr... method getPackageForPath (line 40) | def getPackageForPath(self, locationPath: str, raiseOnMissing: bool = ... method getRegisteredDisplayPackageClasses (line 41) | def getRegisteredDisplayPackageClasses(self) -> list[PackageSuperToolA... method getRegisteredPackageClasses (line 42) | def getRegisteredPackageClasses(self) -> list[tuple[str, type]]: ... method getRootLocation (line 43) | def getRootLocation(self) -> str: ... method getRootPackage (line 44) | def getRootPackage(self) -> PackageSuperToolAPI.Packages.Package: ... method getShowIncomingScene (line 45) | def getShowIncomingScene(self) -> bool: ... method getSuperToolName (line 47) | def getSuperToolName(cls) -> str: ... method getSyncSelection (line 48) | def getSyncSelection(self) -> int: ... method getVersion (line 49) | def getVersion(self) -> int: ... method isLocationAdopted (line 50) | def isLocationAdopted(self, locationPath: str) -> bool: ... method setRootLocation (line 51) | def setRootLocation(self, locationPath: str): ... method setShowIncomingScene (line 52) | def setShowIncomingScene(self, state: bool): ... method setSyncSelection (line 53) | def setSyncSelection(self, syncSelection: int): ... method setVersion (line 54) | def setVersion(self, version: int): ... method superToolRegistered (line 56) | def superToolRegistered(cls): ... method upgrade (line 57) | def upgrade(self, rootPackage: RootPackage): ... function RegisterTagAdoptedNodeType (line 59) | def RegisterTagAdoptedNodeType(): ... FILE: katana/stubs/PackageSuperToolAPI/NodeUtils.pyi function AddNodeRef (line 14) | def AddNodeRef(destNodeOrGroupParam: NodegraphAPI.Node | NodegraphAPI.Gr... function AddPackageTypeAndPath (line 15) | def AddPackageTypeAndPath(node: NodegraphAPI.Node, packageType: str, loc... function AppendNode (line 16) | def AppendNode(nodeA: NodegraphAPI.Node, nodeB: NodegraphAPI.Node): ... function AppendNodes (line 17) | def AppendNodes(parentGroupNode: NodegraphAPI.Node, nodes: tuple[Nodegra... function DeleteDeepParameter (line 18) | def DeleteDeepParameter(parentGroupParam: NodegraphAPI.GroupParameter, p... function GetDownstreamNodes (line 19) | def GetDownstreamNodes(node: NodegraphAPI.Node) -> set[NodegraphAPI.Node... function GetDownstreamPorts (line 20) | def GetDownstreamPorts(port: NodegraphAPI.Port): ... function GetEditPackageForLocationPath (line 21) | def GetEditPackageForLocationPath(mainNode: NodegraphAPI.Node, locationP... function GetEditPackageLocationPaths (line 22) | def GetEditPackageLocationPaths(mainNode: NodegraphAPI.Node) -> list[str... function GetEditPackages (line 23) | def GetEditPackages(mainNode: NodegraphAPI.Node) -> list[PackageSuperToo... function GetPackageLocationParameterPath (line 24) | def GetPackageLocationParameterPath() -> str: ... function GetPackageTypeParameterPath (line 25) | def GetPackageTypeParameterPath() -> str: ... function GetRefNode (line 26) | def GetRefNode(nodeOrGroupParam: NodegraphAPI.Node | NodegraphAPI.GroupP... function GetSceneGraphPathExpression (line 27) | def GetSceneGraphPathExpression(package: PackageSuperToolAPI.Packages.Pa... function GetSuperToolGroupName (line 28) | def GetSuperToolGroupName() -> str: ... function GetUpstreamPort (line 29) | def GetUpstreamPort(port: NodegraphAPI.Port): ... function IsNodeGuardedFromDeletion (line 30) | def IsNodeGuardedFromDeletion(node: NodegraphAPI.Node) -> bool: ... function NodeDeletionGuard (line 31) | def NodeDeletionGuard(node: NodegraphAPI.Node): ... function PositionMergeInputs (line 32) | def PositionMergeInputs(mergeNode: NodegraphAPI.Node): ... function PrependNode (line 33) | def PrependNode(nodeA: NodegraphAPI.Node, nodeB: NodegraphAPI.Node): ... function RemoveNodeRef (line 34) | def RemoveNodeRef(nodeOrGroupParam: NodegraphAPI.Node | NodegraphAPI.Gro... function SetOrCreateDeepArrayParameter (line 35) | def SetOrCreateDeepArrayParameter(parentGroupParam: NodegraphAPI.GroupPa... function SetOrCreateDeepScalarParameter (line 36) | def SetOrCreateDeepScalarParameter(parentGroupParam: NodegraphAPI.GroupP... function SetOrCreateDeepVectorParameter (line 37) | def SetOrCreateDeepVectorParameter(parentGroupParam, paramPath, paramVal... function SetPackageNodeName (line 38) | def SetPackageNodeName(package: PackageSuperToolAPI.Packages.Package): ... function TransferNodeConnections (line 39) | def TransferNodeConnections(oldNode: NodegraphAPI.Node, newNode: Nodegra... function UpdateChildPackagePaths (line 40) | def UpdateChildPackagePaths(inputPackage: PackageSuperToolAPI.Packages.P... function UpdateEditPackagePaths (line 41) | def UpdateEditPackagePaths(mainNode: NodegraphAPI.Node, previousRootLoca... function WireInlineNodes (line 42) | def WireInlineNodes(parentGroupNode: NodegraphAPI.GroupNode, nodes: list... FILE: katana/stubs/PackageSuperToolAPI/PackageNameItemDelegate.pyi class PackageNameItemDelegate (line 23) | class PackageNameItemDelegate(NameItemDelegate): method __init__ (line 26) | def __init__(self, bridge: UI4.Widgets.SceneGraphView.Bridge, treeWidg... method _PackageNameItemDelegate__getEditPackageClass (line 27) | def _PackageNameItemDelegate__getEditPackageClass(self, locationPath: ... method _PackageNameItemDelegate__getErrorOrWarning (line 28) | def _PackageNameItemDelegate__getErrorOrWarning(self, locationPath: st... method _PackageNameItemDelegate__getIcon (line 29) | def _PackageNameItemDelegate__getIcon(self, iconNameOrFilename: str, d... method _PackageNameItemDelegate__getPackageFromSceneGraphLocation (line 30) | def _PackageNameItemDelegate__getPackageFromSceneGraphLocation(self, l... method _PackageNameItemDelegate__isErrorOrWarning (line 31) | def _PackageNameItemDelegate__isErrorOrWarning(self, locationPath) -> ... method createEditor (line 32) | def createEditor(self, parent: PyQt5.QtWidgets.QWidget, option: PyQt5.... method initStyleOption (line 33) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method setModelData (line 34) | def setModelData(self, editor: PyQt5.QtWidgets.QWidget, model: PyQt5.Q... method setSuperToolName (line 35) | def setSuperToolName(self, superToolName: str | None): ... method toolTipEvent (line 36) | def toolTipEvent(self, index: PyQt5.QtCore.QModelIndex): ... FILE: katana/stubs/PackageSuperToolAPI/Packages.pyi class CallbackMixin (line 21) | class CallbackMixin(Mixin): method executeCreationCallback (line 27) | def executeCreationCallback(cls, package: Package): ... method onSceneGraphViewShaderSelected (line 29) | def onSceneGraphViewShaderSelected(cls, objectHash: Incomplete | None ... method registerCallbacks (line 31) | def registerCallbacks(cls, packageClass: type): ... class DisableableMixin (line 33) | class DisableableMixin(Mixin): method _DisableableMixin__createDisableNodes (line 34) | def _DisableableMixin__createDisableNodes(self) -> NodegraphAPI.Node: ... method isDisabled (line 35) | def isDisabled(self) -> bool: ... method isDisabledByParents (line 36) | def isDisabledByParents(self) -> bool: ... method setDisabled (line 37) | def setDisabled(self, disabled: bool): ... class DummyGroupPackage (line 39) | class DummyGroupPackage(GroupPackage): method __init__ (line 42) | def __init__(self, packageNode: NodegraphAPI.Node | None, locationPath... method canAdoptPackage (line 43) | def canAdoptPackage(self, package: Package) -> bool: ... method canCreateChildPackage (line 45) | def canCreateChildPackage(cls, packageClassOrName: type | str, mainNod... method childRemoved (line 46) | def childRemoved(self): ... method create (line 48) | def create(cls, enclosingNode, locationPath): ... method createChildPackage (line 49) | def createChildPackage(self): ... method createForLocation (line 51) | def createForLocation(cls, locationPath: str, mainNode: NodegraphAPI.N... method createParentPackageHierarchy (line 52) | def createParentPackageHierarchy(self): ... method delete (line 53) | def delete(self): ... method getChildPackageCreateNode (line 54) | def getChildPackageCreateNode(self) -> NodegraphAPI.Node: ... method getChildPackages (line 55) | def getChildPackages(self) -> list[Package]: ... method getLocationPath (line 56) | def getLocationPath(self) -> str: ... method getMainNode (line 57) | def getMainNode(self) -> NodegraphAPI.Node: ... method getParentPackage (line 58) | def getParentPackage(self) -> Package | None: ... class EditPackage (line 60) | class EditPackage(Package): method canBeAdoptedByPackage (line 61) | def canBeAdoptedByPackage(self, package: Package) -> bool: ... method canBeCreatedByPackageClass (line 63) | def canBeCreatedByPackageClass(cls, packageClass: type) -> bool: ... method canBeRenamed (line 64) | def canBeRenamed(self) -> bool: ... method canCreatePackageClass (line 66) | def canCreatePackageClass(cls, packageClass: type) -> bool: ... method create (line 68) | def create(cls, enclosingNode: NodegraphAPI.Node, locationPath: str) -... method createPackage (line 70) | def createPackage(cls, packageNode: NodegraphAPI.Node) -> Package: ... method createPackageEditStackNode (line 72) | def createPackageEditStackNode(cls, enclosingNode: NodegraphAPI.Node, ... method delete (line 73) | def delete(self): ... class GroupEditPackage (line 75) | class GroupEditPackage(GroupMixin, EditPackage): method _GroupEditPackage__getCreateStackPackage (line 76) | def _GroupEditPackage__getCreateStackPackage(self, create: bool = ...)... method childRemoved (line 77) | def childRemoved(self): ... method create (line 79) | def create(cls, enclosingNode: NodegraphAPI.Node, locationPath: str) -... method getChildPackageCreateNode (line 80) | def getChildPackageCreateNode(self) -> NodegraphAPI.Node: ... method getChildPackages (line 81) | def getChildPackages(self) -> list[Package]: ... class GroupMixin (line 83) | class GroupMixin(Mixin): method adoptPackage (line 84) | def adoptPackage(self, childPackage: Package, peerNames: Incomplete | ... method canAdoptPackage (line 85) | def canAdoptPackage(self, package: Package) -> bool: ... method canCreateChildPackage (line 87) | def canCreateChildPackage(cls, packageClassOrName: type | str, mainNod... method canReorderChildPackage (line 88) | def canReorderChildPackage(self, oldIndex: int, newIndex: int) -> bool... method childRemoved (line 89) | def childRemoved(self): ... method createChildPackage (line 90) | def createChildPackage(self, packageClassOrName: type | str, name: Inc... method getChildPackage (line 91) | def getChildPackage(self, name: str, includeDummies: bool = ...) -> Pa... method getChildPackageCreateNode (line 92) | def getChildPackageCreateNode(self) -> NodegraphAPI.Node: ... method getChildPackages (line 93) | def getChildPackages(self) -> list[Package]: ... method getLocationTypes (line 95) | def getLocationTypes(cls) -> list[str]: ... method reorderChildPackage (line 96) | def reorderChildPackage(self, oldIndex: int, newIndex: int): ... class GroupPackage (line 98) | class GroupPackage(GroupMixin, Package): method create (line 102) | def create(cls, enclosingNode: NodegraphAPI.Node, locationPath: str) -... method createStandardPackageNodes (line 104) | def createStandardPackageNodes(cls, packageNode: NodegraphAPI.Node) ->... method getChildPackages (line 105) | def getChildPackages(self) -> list[Package]: ... method getExtraNodeDependencies (line 106) | def getExtraNodeDependencies(self) -> list[NodegraphAPI.Node]: ... method initializeExtraNodeDependencies (line 107) | def initializeExtraNodeDependencies(self): ... class LinkingMixin (line 109) | class LinkingMixin(Mixin): method _createLinkingNode (line 117) | def _createLinkingNode(cls, packageNode: NodegraphAPI.Node, nodeName: ... method getIlluminationLinkingNode (line 119) | def getIlluminationLinkingNode(cls, packageNode: NodegraphAPI.Node, cr... method getLinkingNodes (line 121) | def getLinkingNodes(cls, packageNode: NodegraphAPI.Node, create: bool ... method getShadowLinkingNode (line 123) | def getShadowLinkingNode(cls, packageNode: NodegraphAPI.Node, create: ... class LockingMixin (line 125) | class LockingMixin(Mixin): method isLocked (line 126) | def isLocked(self) -> bool: ... method setLocked (line 127) | def setLocked(self, state: bool): ... class LookFileReferenceEditMixin (line 129) | class LookFileReferenceEditMixin(Mixin): method _getLookFileReferenceNode (line 130) | def _getLookFileReferenceNode(self) -> NodegraphAPI.Node | None: ... method _getLookFileReferenceNodeTypeName (line 131) | def _getLookFileReferenceNodeTypeName(self) -> str | None: ... method _getOrCreateLookFileReferenceNode (line 132) | def _getOrCreateLookFileReferenceNode(self, forceCreate: bool) -> Tupl... method getLookFileMaterial (line 133) | def getLookFileMaterial(self) -> None | None: ... method isLookFileMaterialActive (line 134) | def isLookFileMaterialActive(self) -> bool: ... method setLookFileMaterial (line 135) | def setLookFileMaterial(self, asset: str | None, materialPath: str | N... method setLookFileMaterialActive (line 136) | def setLookFileMaterialActive(self, lookFileMaterialActive: bool): ... class MaterialMixin (line 138) | class MaterialMixin(Mixin): method getLookFileMaterial (line 141) | def getLookFileMaterial(self) -> tuple[str, str] | Tuple[None, None]: ... method getShader (line 142) | def getShader(self, shaderType: str) -> str | None: ... method isLookFileMaterialActive (line 143) | def isLookFileMaterialActive(self) -> bool: ... method isUsingLookFileMaterial (line 144) | def isUsingLookFileMaterial(self): ... method setIsUsingLookFileMaterial (line 145) | def setIsUsingLookFileMaterial(self, newValue): ... method setLookFileMaterial (line 146) | def setLookFileMaterial(self, asset: str | None, materialPath: str, as... method setLookFileMaterialActive (line 147) | def setLookFileMaterialActive(self, lookFileMaterialActive: bool): ... method setShader (line 148) | def setShader(self, shaderType: str, shaderName: str | None, asExpress... class Mixin (line 150) | class Mixin(Upgradable): ... class MuteAndSoloEditMixin (line 152) | class MuteAndSoloEditMixin(MuteAndSoloMixin): method delete (line 153) | def delete(self): ... method setMuted (line 154) | def setMuted(self, muted: bool): ... method setSoloed (line 155) | def setSoloed(self, soloed: bool): ... class MuteAndSoloMixin (line 157) | class MuteAndSoloMixin(Mixin): method _createMuteAndSolo (line 162) | def _createMuteAndSolo(cls, packageNode: NodegraphAPI.Node): ... method _createSoloListEdit (line 164) | def _createSoloListEdit(cls, packageNode: NodegraphAPI.Node) -> Nodegr... method _destroyMuteSoloNodeIfUnused (line 165) | def _destroyMuteSoloNodeIfUnused(self, muteAndSoloNode: NodegraphAPI.N... method _getState (line 166) | def _getState(self, node: NodegraphAPI.Node, name: str, default: bool ... method _setState (line 167) | def _setState(self, node: NodegraphAPI.Node, name: str, state: bool): ... method delete (line 168) | def delete(self, edit: bool = ...): ... method getExtraNodeDependencies (line 169) | def getExtraNodeDependencies(self) -> list[NodegraphAPI.Node]: ... method getMuteSoloAndSoloListEditNode (line 170) | def getMuteSoloAndSoloListEditNode(self, create: bool = ...): ... method getOverrideNodeAndParameter (line 171) | def getOverrideNodeAndParameter(self, attributeName: str) -> Tuple[Nod... method initializeExtraNodeDependencies (line 172) | def initializeExtraNodeDependencies(self): ... method isMuteOverrideEnabled (line 173) | def isMuteOverrideEnabled(self) -> bool: ... method isMuted (line 174) | def isMuted(self) -> bool: ... method isSoloOverrideEnabled (line 175) | def isSoloOverrideEnabled(self) -> bool: ... method isSoloed (line 176) | def isSoloed(self) -> bool: ... method setMuted (line 177) | def setMuted(self, muted: bool, edit: bool = ...): ... method setSoloed (line 178) | def setSoloed(self, soloed: bool, edit: bool = ...): ... class Package (line 180) | class Package(Upgradable): method __init__ (line 182) | def __init__(self, packageNode: NodegraphAPI.Node) -> None: ... method _setPackageNode (line 183) | def _setPackageNode(self, packageNode: NodegraphAPI.Node): ... method adoptPackage (line 184) | def adoptPackage(self, childPackage: Package, peerNames: Incomplete | ... method canAdoptPackage (line 185) | def canAdoptPackage(self, package: Package) -> bool: ... method canBeAdoptedByPackage (line 186) | def canBeAdoptedByPackage(self, package: Package) -> bool: ... method canBeCreatedByPackageClass (line 188) | def canBeCreatedByPackageClass(cls, packageClass: type) -> bool: ... method canBeDeleted (line 189) | def canBeDeleted(self) -> bool: ... method canBeDuplicated (line 190) | def canBeDuplicated(self, parentPackage: Incomplete | None = ...) -> b... method canBeRenamed (line 191) | def canBeRenamed(self) -> bool: ... method canCreateChildPackage (line 193) | def canCreateChildPackage(cls, packageClassOrName: type | str, mainNod... method canCreatePackageClass (line 195) | def canCreatePackageClass(cls, packageClass: type) -> bool: ... method canDuplicate (line 196) | def canDuplicate(self): ... method canReorderChildPackage (line 197) | def canReorderChildPackage(self, oldIndex: int, newIndex: int) -> bool... method create (line 199) | def create(cls, enclosingNode: NodegraphAPI.Node, locationPath: str) -... method createChildPackage (line 200) | def createChildPackage(self, packageClassOrName: type | str, name: Inc... method createPackage (line 202) | def createPackage(cls, packageNode: NodegraphAPI.Node) -> Package: ... method createPackageGroupNode (line 204) | def createPackageGroupNode(cls, enclosingNode: NodegraphAPI.Node, loca... method createPostMergeStackNode (line 205) | def createPostMergeStackNode(self) -> NodegraphAPI.GroupStack: ... method createStandardPackageNodes (line 207) | def createStandardPackageNodes(cls, packageNode: NodegraphAPI.Node) ->... method delete (line 208) | def delete(self): ... method duplicate (line 209) | def duplicate(self, peerNames: Incomplete | None = ..., parentPackage:... method getAdoptableLocationTypes (line 211) | def getAdoptableLocationTypes(cls) -> set[str]: ... method getChildPackage (line 212) | def getChildPackage(self, name: str, includeDummies: bool = ...) -> Pa... method getChildPackages (line 213) | def getChildPackages(self) -> list[Package]: ... method getCreateNode (line 214) | def getCreateNode(self) -> NodegraphAPI.Node: ... method getEditPackageClass (line 216) | def getEditPackageClass(cls) -> type: ... method getExtraNodeDependencies (line 217) | def getExtraNodeDependencies(self) -> list[NodegraphAPI.Node]: ... method getLocationPath (line 218) | def getLocationPath(self) -> str: ... method getMainNode (line 219) | def getMainNode(self) -> NodegraphAPI.Node: ... method getMainNodeFromNode (line 221) | def getMainNodeFromNode(cls, node: NodegraphAPI.Node) -> NodegraphAPI.... method getName (line 222) | def getName(self) -> str: ... method getOrCreateNodeByType (line 223) | def getOrCreateNodeByType(self, nodeType: str, forceCreate: bool = ...... method getOverrideNodeAndParameter (line 224) | def getOverrideNodeAndParameter(self, attrName: str) -> Tuple[Nodegrap... method getPackageClassFromNode (line 226) | def getPackageClassFromNode(cls, node: NodegraphAPI.Node) -> Package |... method getPackageFromNode (line 228) | def getPackageFromNode(cls, node: NodegraphAPI.Node) -> Package: ... method getPackageNode (line 229) | def getPackageNode(self) -> NodegraphAPI.Node: ... method getParentPackage (line 230) | def getParentPackage(self) -> Package | None: ... method getPostMergePackageStack (line 231) | def getPostMergePackageStack(self, create: bool = ...) -> NodegraphAPI... method initializeExtraNodeDependencies (line 232) | def initializeExtraNodeDependencies(self): ... method isNodeOfType (line 233) | def isNodeOfType(self, node: NodegraphAPI.Node | None, nodeType: str) ... method reorderChildPackage (line 234) | def reorderChildPackage(self, oldIndex: int, newIndex: int): ... method setEditPackageClass (line 236) | def setEditPackageClass(cls, editPackageClass: type): ... method setName (line 237) | def setName(self, name: str, queueEvent: bool = ..., selectLocation: b... method supportsLocking (line 238) | def supportsLocking(self) -> bool: ... method walkUpPackageHierarchy (line 240) | def walkUpPackageHierarchy(cls, leafPackage: Package, includeLeaf: boo... method __eq__ (line 241) | def __eq__(self, other) -> bool: ... method __hash__ (line 242) | def __hash__(self) -> int: ... method __ne__ (line 243) | def __ne__(self, other) -> bool: ... class RootPackage (line 245) | class RootPackage(GroupPackage): method __init__ (line 246) | def __init__(self, packageNode: NodegraphAPI.Node) -> None: ... method canBeDeleted (line 247) | def canBeDeleted(self) -> bool: ... method canBeRenamed (line 248) | def canBeRenamed(self) -> bool: ... method canCreatePackageClass (line 250) | def canCreatePackageClass(cls, packageClass: type) -> bool: ... method create (line 252) | def create(cls, enclosingNode: NodegraphAPI.Node, locationPath: str) -... method delete (line 253) | def delete(self): ... method setName (line 254) | def setName(self, name: str, peerNames: Incomplete | None = ..., queue... class Upgradable (line 256) | class Upgradable: method upgradeToVersion (line 257) | def upgradeToVersion(self, version: int): ... function GetPackageClass (line 259) | def GetPackageClass(superToolName: str | None, packageClassName: str) ->... function GetPackageClassAndPackageName (line 260) | def GetPackageClassAndPackageName(superToolName: str, packageClassOrName... function GetPackageClassForGroupLocationType (line 261) | def GetPackageClassForGroupLocationType(superToolName: str | None, group... function GetRegisteredDisplayPackageClasses (line 262) | def GetRegisteredDisplayPackageClasses(superToolName: str | None) -> lis... function GetRegisteredPackageClasses (line 263) | def GetRegisteredPackageClasses(superToolName: str | None) -> list[str, ... function IsLocationTypeAdoptable (line 264) | def IsLocationTypeAdoptable(superToolName: str | None, locationType: str... function RegisterDeprecatedPackageClass (line 265) | def RegisterDeprecatedPackageClass(superToolName: str | None, deprecated... function RegisterPackage (line 266) | def RegisterPackage(superToolName, packageClass): ... function RegisterPackageClass (line 267) | def RegisterPackageClass(superToolName: str | None, packageClass: type):... FILE: katana/stubs/PackageSuperToolAPI/Policies.pyi class DeferredNodeBypassPolicy (line 16) | class DeferredNodeBypassPolicy(QT4FormWidgets.ValuePolicy.AbstractValueP... method __init__ (line 17) | def __init__(self, parent: QT4FormWidgets.AbstractValuePolicy, nodeTyp... method _DeferredNodeBypassPolicy__on_node_create (line 18) | def _DeferredNodeBypassPolicy__on_node_create(self, eventType: str | N... method _DeferredNodeBypassPolicy__on_node_delete (line 19) | def _DeferredNodeBypassPolicy__on_node_delete(self, eventType: str | N... method _DeferredNodeBypassPolicy__on_node_setBypassed (line 20) | def _DeferredNodeBypassPolicy__on_node_setBypassed(self, eventType: st... method _DeferredNodeBypassPolicy__setNode (line 21) | def _DeferredNodeBypassPolicy__setNode(self, node: NodegraphAPI.Node |... method _DeferredNodeBypassPolicy__setValue (line 22) | def _DeferredNodeBypassPolicy__setValue(self, value: bool, final: bool... method _DeferredNodeBypassPolicy__updateParameterPolicy (line 23) | def _DeferredNodeBypassPolicy__updateParameterPolicy(self): ... method addChildPolicy (line 24) | def addChildPolicy(self, policy: QT4FormWidgets.AbstractValuePolicy): ... method getChildByName (line 25) | def getChildByName(self, name) -> QT4FormWidgets.AbstractValuePolicy |... method getChildren (line 26) | def getChildren(self) -> list[QT4FormWidgets.AbstractValuePolicy]: ... method getName (line 27) | def getName(self) -> str: ... method getNumChildren (line 28) | def getNumChildren(self) -> int: ... method getType (line 29) | def getType(self) -> str: ... method getValue (line 30) | def getValue(self) -> float: ... method getWidgetHints (line 31) | def getWidgetHints(self) -> dict[str, Any]: ... method isLocked (line 32) | def isLocked(self) -> bool: ... method setValue (line 33) | def setValue(self, value: float, final: bool = ...) -> bool: ... class DeferredParameterCreatePolicy (line 35) | class DeferredParameterCreatePolicy(QT4FormWidgets.ValuePolicy.AbstractV... method __init__ (line 36) | def __init__(self, parent: QT4FormWidgets.AbstractValuePolicy, node: N... method _DeferredParameterCreatePolicy__createParameterPolicy (line 37) | def _DeferredParameterCreatePolicy__createParameterPolicy(self): ... method _DeferredParameterCreatePolicy__on_parameter_createChild (line 38) | def _DeferredParameterCreatePolicy__on_parameter_createChild(self, eve... method _DeferredParameterCreatePolicy__on_parameter_deleteChild (line 39) | def _DeferredParameterCreatePolicy__on_parameter_deleteChild(self, eve... method _DeferredParameterCreatePolicy__updateValue (line 40) | def _DeferredParameterCreatePolicy__updateValue(self, value: Incomplet... method addChildPolicy (line 41) | def addChildPolicy(self, policy: QT4FormWidgets.AbstractValuePolicy): ... method getChildByName (line 42) | def getChildByName(self, name) -> QT4FormWidgets.AbstractValuePolicy |... method getChildren (line 43) | def getChildren(self) -> list[QT4FormWidgets.AbstractValuePolicy]: ... method getName (line 44) | def getName(self) -> str: ... method getNumChildren (line 45) | def getNumChildren(self) -> int: ... method getType (line 46) | def getType(self) -> str: ... method getValue (line 47) | def getValue(self) -> float: ... method getWidgetHints (line 48) | def getWidgetHints(self) -> dict[str, Any]: ... method isLocked (line 49) | def isLocked(self) -> bool: ... method removeChildPolicy (line 50) | def removeChildPolicy(self, policy: QT4FormWidgets.AbstractValuePolicy... method setValue (line 51) | def setValue(self, value: float, final: bool = ...) -> bool: ... class ParentProxyValuePolicy (line 53) | class ParentProxyValuePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePol... method __init__ (line 54) | def __init__(self, parent: QT4FormWidgets.AbstractValuePolicy, name: s... method getName (line 55) | def getName(self) -> str: ... method getType (line 56) | def getType(self) -> str: ... method getValue (line 57) | def getValue(self) -> Any: ... method getWidgetHints (line 58) | def getWidgetHints(self) -> dict[str, Any]: ... method isLocked (line 59) | def isLocked(self) -> bool: ... method setValue (line 60) | def setValue(self, value: float, final: bool = ...) -> bool: ... class PotentialParameterProxyPolicy (line 62) | class PotentialParameterProxyPolicy(QT4FormWidgets.ValuePolicy.ValuePoli... method __init__ (line 63) | def __init__(self, parent: ValuePolicy, attrName: str) -> None: ... method _PotentialParameterProxyPolicy__getMetadataDict (line 64) | def _PotentialParameterProxyPolicy__getMetadataDict(self, locationAttr... method getAttrName (line 65) | def getAttrName(self) -> str: ... method getName (line 66) | def getName(self) -> str: ... method getParent (line 67) | def getParent(self) -> ValuePolicy: ... method switchToAttributePolicy (line 68) | def switchToAttributePolicy(self, locationAttributes: PyFnAttribute.Gr... method switchToParameterPolicy (line 69) | def switchToParameterPolicy(self, parameter: NodegraphAPI.Node3D): ... method updateAttribute (line 70) | def updateAttribute(self, locationAttributes: PyFnAttribute.GroupAttri... function DefaultParameterPolicyConstructor (line 72) | def DefaultParameterPolicyConstructor(package: PackageSuperToolAPI.Packa... FILE: katana/stubs/PackageSuperToolAPI/UIDelegate.pyi class EditUIDelegate (line 16) | class EditUIDelegate(UIDelegate): method __init__ (line 17) | def __init__(self, package: Incomplete | None = ..., locationPath: Inc... method _EditUIDelegate__switchToParameterPolicy (line 18) | def _EditUIDelegate__switchToParameterPolicy(self, potentialParameterP... method getLocationPath (line 19) | def getLocationPath(self): ... method initPotentialParameterPolicy (line 20) | def initPotentialParameterPolicy(self, parentPolicy: ValuePolicy, attr... method isAdopted (line 21) | def isAdopted(self) -> bool: ... method setAdopted (line 22) | def setAdopted(self, package): ... method setNotAdopted (line 23) | def setNotAdopted(self, locationAttributes): ... method updateAttributes (line 24) | def updateAttributes(self, locationAttributes): ... class UIDelegate (line 26) | class UIDelegate(PyQt5.QtCore.QObject): method __init__ (line 29) | def __init__(self, package: object) -> None: ... method getKeyboardShortcuts (line 31) | def getKeyboardShortcuts(cls) -> None: ... method getMenuActions (line 32) | def getMenuActions(self) -> list[tuple[str, str, bool]]: ... method getPackage (line 33) | def getPackage(self) -> PackageSuperToolAPI.Packages.Package: ... method getPackageNode (line 34) | def getPackageNode(self) -> NodegraphAPI.Node: ... method getReferencedNode (line 35) | def getReferencedNode(self, paramName: str) -> NodegraphAPI.Node | Non... method getTabPolicy (line 36) | def getTabPolicy(self, tabName: str) -> QT4FormWidgets.AbstractValuePo... function CreateUIDelegate (line 38) | def CreateUIDelegate(package: object) -> UIDelegate: ... function GetDelegateClassForPackageClass (line 39) | def GetDelegateClassForPackageClass(packageClass): ... function GetUIDelegate (line 40) | def GetUIDelegate(package): ... function GetUIDelegateClassForPackageClass (line 41) | def GetUIDelegateClassForPackageClass(packageClass: type) -> type: ... function RegisterUIDelegate (line 42) | def RegisterUIDelegate(packageClass, uiDelegateClass): ... function RegisterUIDelegateClass (line 43) | def RegisterUIDelegateClass(packageClass: type, uiDelegateClass: type): ... FILE: katana/stubs/PackageSuperToolAPI/__init__.pyi function IsUIMode (line 6) | def IsUIMode() -> bool: ... FILE: katana/stubs/PluginAPI/BaseProxyLoader.pyi class BaseProxyLoader (line 6) | class BaseProxyLoader: method createProxyAttr (line 8) | def createProxyAttr(cls, proxyFile: str, time: int, args: PyFnAttribut... method getFileExtensions (line 10) | def getFileExtensions(cls): ... FILE: katana/stubs/PluginAPI/BaseViewerPluginExtension.pyi class BaseViewerPluginExtension (line 7) | class BaseViewerPluginExtension: method onApplyTerminalOps (line 8) | def onApplyTerminalOps(self, txn: PyFnGeolib.GeolibRuntimeTransaction,... method onDelegateCreated (line 9) | def onDelegateCreated(self, viewerDelegate: ViewerDelegate, pluginName... method onTabCreated (line 10) | def onTabCreated(self, tab: BaseViewerTab): ... method onViewportCreated (line 11) | def onViewportCreated(self, viewportWidget: ViewportWidget, pluginName... FILE: katana/stubs/PyFCurve/__init__.pyi class ContainerObserver (line 29) | class ContainerObserver: method __init__ (line 30) | def __init__(self) -> None: ... method containerChanged (line 32) | def containerChanged(self, arg0: FCurveContainer) -> None: ... method containerChanged (line 34) | def containerChanged(self) -> Any: ... class FCurve (line 36) | class FCurve: class ChangeType (line 37) | class ChangeType: method __init__ (line 44) | def __init__(self, arg0: int) -> None: ... method __eq__ (line 45) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 46) | def __hash__(self) -> int: ... method __int__ (line 47) | def __int__(self) -> int: ... method __ne__ (line 48) | def __ne__(self, other: object) -> bool: ... method name (line 50) | def name(self) -> str: ... method __init__ (line 56) | def __init__(self) -> None: ... method __init__ (line 58) | def __init__(self, name: str) -> None: ... method clear (line 59) | def clear(self) -> None: ... method clearProperties (line 61) | def clearProperties(self) -> None: ... method clearProperties (line 63) | def clearProperties(self) -> Any: ... method copy (line 64) | def copy(self) -> FCurve: ... method eval (line 65) | def eval(self, arg0: float) -> float: ... method evalAcceleration (line 66) | def evalAcceleration(self, arg0: float) -> float: ... method evalVelocity (line 67) | def evalVelocity(self, arg0: float) -> float: ... method findSegment (line 68) | def findSegment(self, *args, **kwargs): ... method getKeyframes (line 69) | def getKeyframes(self) -> list: ... method getName (line 70) | def getName(self) -> str: ... method getProperties (line 71) | def getProperties(self) -> dict: ... method getProperty (line 72) | def getProperty(self, arg0: str) -> str: ... method getSegments (line 73) | def getSegments(self) -> list: ... method insertSegment (line 75) | def insertSegment(self) -> Any: ... method insertSegment (line 77) | def insertSegment(self) -> Any: ... method notifyChanged (line 78) | def notifyChanged(self) -> None: ... method removeSegment (line 80) | def removeSegment(self, arg0) -> None: ... method removeSegment (line 82) | def removeSegment(self) -> Any: ... method setChangeType (line 84) | def setChangeType(self, arg0: int) -> None: ... method setChangeType (line 86) | def setChangeType(self) -> Any: ... method setName (line 87) | def setName(self, arg0: str) -> None: ... method setProperty (line 88) | def setProperty(self, arg0: str, arg1: str) -> bool: ... method sizeProperties (line 89) | def sizeProperties(self) -> int: ... method subscribe (line 90) | def subscribe(self, arg0) -> None: ... method subscribeGlobal (line 93) | def subscribeGlobal(cls, arg0) -> None: ... method subscribeGlobal (line 96) | def subscribeGlobal(cls) -> Any: ... method swap (line 97) | def swap(self, arg0: FCurve) -> None: ... method unsubscribe (line 99) | def unsubscribe(self, arg0) -> None: ... method unsubscribe (line 101) | def unsubscribe(self) -> Any: ... method unsubscribeGlobal (line 104) | def unsubscribeGlobal(cls, arg0) -> None: ... method unsubscribeGlobal (line 107) | def unsubscribeGlobal(cls) -> Any: ... method __bool__ (line 108) | def __bool__(self) -> bool: ... method __copy__ (line 109) | def __copy__(self) -> FCurve: ... method __eq__ (line 110) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 111) | def __hash__(self) -> int: ... method __lt__ (line 112) | def __lt__(self, other: object) -> bool: ... class FCurveContainer (line 114) | class FCurveContainer: method __init__ (line 115) | def __init__(self) -> None: ... method addCurve (line 116) | def addCurve(self, arg0: FCurve) -> None: ... method clear (line 117) | def clear(self) -> None: ... method clearProperties (line 119) | def clearProperties(self) -> None: ... method clearProperties (line 121) | def clearProperties(self) -> Any: ... method getCurves (line 122) | def getCurves(self) -> list: ... method getProperties (line 123) | def getProperties(self) -> dict: ... method getProperty (line 124) | def getProperty(self, arg0: str) -> str: ... method readCurves (line 126) | def readCurves(self, arg0: str) -> None: ... method readCurves (line 128) | def readCurves(self) -> Any: ... method readCurves (line 130) | def readCurves(self) -> Any: ... method readCurves (line 132) | def readCurves(self) -> Any: ... method readCurves (line 134) | def readCurves(self) -> Any: ... method removeCurve (line 135) | def removeCurve(self, arg0: FCurve) -> None: ... method setProperty (line 136) | def setProperty(self, arg0: str, arg1: str) -> bool: ... method size (line 137) | def size(self) -> int: ... method sizeProperties (line 138) | def sizeProperties(self) -> int: ... method subscribe (line 139) | def subscribe(self, arg0) -> None: ... method unsubscribe (line 141) | def unsubscribe(self, arg0) -> None: ... method unsubscribe (line 143) | def unsubscribe(self) -> Any: ... method writeCurves (line 144) | def writeCurves(self, arg0: str, arg1: str) -> None: ... method __bool__ (line 145) | def __bool__(self) -> bool: ... method __eq__ (line 146) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 147) | def __hash__(self) -> int: ... method __lt__ (line 148) | def __lt__(self, other: object) -> bool: ... class FCurveObserver (line 150) | class FCurveObserver: class CurveIntrinsicType (line 151) | class CurveIntrinsicType: method __init__ (line 158) | def __init__(self, arg0: int) -> None: ... method __eq__ (line 159) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 160) | def __hash__(self) -> int: ... method __int__ (line 161) | def __int__(self) -> int: ... method __ne__ (line 162) | def __ne__(self, other: object) -> bool: ... method name (line 164) | def name(self) -> str: ... class KeyframeIntrinsicType (line 166) | class KeyframeIntrinsicType: method __init__ (line 172) | def __init__(self, arg0: int) -> None: ... method __eq__ (line 173) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 174) | def __hash__(self) -> int: ... method __int__ (line 175) | def __int__(self) -> int: ... method __ne__ (line 176) | def __ne__(self, other: object) -> bool: ... method name (line 178) | def name(self) -> str: ... class SegmentIntrinsicType (line 180) | class SegmentIntrinsicType: method __init__ (line 184) | def __init__(self, arg0: int) -> None: ... method __eq__ (line 185) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 186) | def __hash__(self) -> int: ... method __int__ (line 187) | def __int__(self) -> int: ... method __ne__ (line 188) | def __ne__(self, other: object) -> bool: ... method name (line 190) | def name(self) -> str: ... class TangentIntrinsicType (line 192) | class TangentIntrinsicType: method __init__ (line 199) | def __init__(self, arg0: int) -> None: ... method __eq__ (line 200) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 201) | def __hash__(self) -> int: ... method __int__ (line 202) | def __int__(self) -> int: ... method __ne__ (line 203) | def __ne__(self, other: object) -> bool: ... method name (line 205) | def name(self) -> str: ... method __init__ (line 218) | def __init__(self) -> None: ... method beginValueChange (line 220) | def beginValueChange(self, arg0: FCurve) -> None: ... method beginValueChange (line 222) | def beginValueChange(self) -> Any: ... method curveChanged (line 223) | def curveChanged(self, arg0: FCurve) -> None: ... method curveIntrinsicChanged (line 224) | def curveIntrinsicChanged(self, arg0: FCurve, arg1) -> None: ... method curvePropertyChanged (line 225) | def curvePropertyChanged(self, arg0: FCurve, arg1: str, arg2: str) -> ... method endValueChange (line 227) | def endValueChange(self, arg0: FCurve) -> None: ... method endValueChange (line 229) | def endValueChange(self) -> Any: ... method intermediateValueChange (line 231) | def intermediateValueChange(self, arg0: FCurve) -> None: ... method intermediateValueChange (line 233) | def intermediateValueChange(self) -> Any: ... method keyframeChanged (line 234) | def keyframeChanged(self, arg0: Keyframe) -> None: ... method keyframeIntrinsicChanged (line 235) | def keyframeIntrinsicChanged(self, arg0: Keyframe, arg1) -> None: ... method keyframePropertyChanged (line 236) | def keyframePropertyChanged(self, arg0: Keyframe, arg1: str, arg2: str... method segmentAdded (line 237) | def segmentAdded(self, arg0: FCurve, arg1: Segment) -> None: ... method segmentChanged (line 238) | def segmentChanged(self, arg0: Segment) -> None: ... method segmentIntrinsicChanged (line 239) | def segmentIntrinsicChanged(self, arg0: Segment, arg1) -> None: ... method segmentPropertyChanged (line 240) | def segmentPropertyChanged(self, arg0: Segment, arg1: str, arg2: str) ... method segmentRemoved (line 241) | def segmentRemoved(self, arg0: FCurve, arg1: Segment) -> None: ... method tangentChanged (line 242) | def tangentChanged(self, arg0: Tangent) -> None: ... method tangentIntrinsicChanged (line 243) | def tangentIntrinsicChanged(self, arg0: Tangent, arg1) -> None: ... method tangentPropertyChanged (line 244) | def tangentPropertyChanged(self, arg0: Tangent, arg1: str, arg2: str) ... class Interpolator (line 246) | class Interpolator: method __init__ (line 247) | def __init__(self, *args, **kwargs) -> None: ... method __call__ (line 248) | def __call__(self) -> float: ... class Keyframe (line 250) | class Keyframe: method __init__ (line 252) | def __init__(self) -> None: ... method __init__ (line 254) | def __init__(self, arg0: float, arg1: float) -> None: ... method clearProperties (line 256) | def clearProperties(self) -> None: ... method clearProperties (line 258) | def clearProperties(self) -> Any: ... method get (line 259) | def get(self) -> tuple: ... method getInTangent (line 260) | def getInTangent(self, *args, **kwargs): ... method getLeftSegment (line 261) | def getLeftSegment(self) -> Segment: ... method getMinSeparation (line 263) | def getMinSeparation(cls) -> float: ... method getOutTangent (line 264) | def getOutTangent(self, *args, **kwargs): ... method getOwningCurve (line 265) | def getOwningCurve(self) -> FCurve: ... method getProperties (line 266) | def getProperties(self) -> dict: ... method getProperty (line 267) | def getProperty(self, key: str) -> str: ... method getRightSegment (line 268) | def getRightSegment(self) -> Segment: ... method getSegments (line 269) | def getSegments(self) -> tuple: ... method getTangents (line 270) | def getTangents(self) -> tuple: ... method getX (line 271) | def getX(self) -> float: ... method getY (line 272) | def getY(self) -> float: ... method isBreakdown (line 273) | def isBreakdown(self) -> bool: ... method isTangentsUnified (line 274) | def isTangentsUnified(self) -> bool: ... method set (line 275) | def set(self, x: float, y: float) -> None: ... method setBreakdown (line 276) | def setBreakdown(self, arg0: bool) -> None: ... method setProperty (line 277) | def setProperty(self, key: str, value: str) -> bool: ... method setTangentsUnified (line 278) | def setTangentsUnified(self, arg0: bool) -> None: ... method setX (line 279) | def setX(self, arg0: float) -> None: ... method setY (line 281) | def setY(self, arg0: float) -> None: ... method setY (line 283) | def setY(self, y) -> Any: ... method sizeProperties (line 284) | def sizeProperties(self) -> int: ... method __hash__ (line 285) | def __hash__(self) -> int: ... method __lt__ (line 286) | def __lt__(self, other: object) -> bool: ... class ParentSelectionObserver (line 288) | class ParentSelectionObserver: method __init__ (line 289) | def __init__(self, *args, **kwargs) -> None: ... class Segment (line 291) | class Segment: method __init__ (line 292) | def __init__(self) -> None: ... method clearProperties (line 294) | def clearProperties(self) -> None: ... method clearProperties (line 296) | def clearProperties(self) -> Any: ... method eval (line 297) | def eval(self, arg0: float) -> float: ... method getExpression (line 298) | def getExpression(self) -> str: ... method getFirstDerivative (line 299) | def getFirstDerivative(self, arg0: float) -> float: ... method getInTangent (line 300) | def getInTangent(self, *args, **kwargs): ... method getKeys (line 301) | def getKeys(self) -> tuple: ... method getLeftKey (line 302) | def getLeftKey(self, *args, **kwargs): ... method getOutTangent (line 303) | def getOutTangent(self, *args, **kwargs): ... method getOwningCurve (line 304) | def getOwningCurve(self) -> FCurve: ... method getProperties (line 305) | def getProperties(self) -> dict: ... method getProperty (line 306) | def getProperty(self, arg0: str) -> str: ... method getRangeExtents (line 307) | def getRangeExtents(self, arg0: float, arg1: float) -> tuple: ... method getRightKey (line 308) | def getRightKey(self, *args, **kwargs): ... method getSecondDerivative (line 309) | def getSecondDerivative(self, arg0: float) -> float: ... method getTangents (line 310) | def getTangents(self) -> tuple: ... method setExpression (line 311) | def setExpression(self, arg0: str) -> None: ... method setProperty (line 312) | def setProperty(self, arg0: str, arg1: str) -> None: ... method sizeProperties (line 313) | def sizeProperties(self) -> int: ... method usesTangents (line 314) | def usesTangents(self) -> bool: ... method __eq__ (line 315) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 316) | def __hash__(self) -> int: ... method __lt__ (line 317) | def __lt__(self, other: object) -> bool: ... class Selection (line 319) | class Selection: method __init__ (line 320) | def __init__(self, arg0: FCurveContainer) -> None: ... method clear (line 321) | def clear(self) -> None: ... method deselect (line 323) | def deselect(self, arg0: FCurve) -> None: ... method deselect (line 325) | def deselect(self, arg0: Segment) -> None: ... method deselect (line 327) | def deselect(self, arg0: Keyframe) -> None: ... method deselect (line 329) | def deselect(self, arg0: Tangent) -> None: ... method getCurves (line 330) | def getCurves(self) -> FCurveContainer: ... method getSelectedCurves (line 331) | def getSelectedCurves(self) -> list: ... method getSelectedKeyframes (line 332) | def getSelectedKeyframes(self) -> list: ... method getSelectedSegments (line 333) | def getSelectedSegments(self) -> list: ... method getSelectedTangents (line 334) | def getSelectedTangents(self) -> list: ... method isSelected (line 336) | def isSelected(self, arg0: FCurve) -> bool: ... method isSelected (line 338) | def isSelected(self, arg0: Segment) -> bool: ... method isSelected (line 340) | def isSelected(self, arg0: Keyframe) -> bool: ... method isSelected (line 342) | def isSelected(self, arg0: Tangent) -> bool: ... method select (line 344) | def select(self, arg0: FCurve) -> None: ... method select (line 346) | def select(self, arg0: Segment) -> None: ... method select (line 348) | def select(self, arg0: Keyframe) -> None: ... method select (line 350) | def select(self, arg0: Tangent) -> None: ... method subscribe (line 351) | def subscribe(self, observer) -> None: ... method unsubscribe (line 353) | def unsubscribe(self, observer) -> None: ... method unsubscribe (line 355) | def unsubscribe(self) -> Any: ... class SelectionObserver (line 357) | class SelectionObserver(ParentSelectionObserver): method __init__ (line 358) | def __init__(self) -> None: ... method deselected (line 360) | def deselected(self, arg0: FCurve) -> None: ... method deselected (line 362) | def deselected(self) -> Any: ... method deselected (line 364) | def deselected(self, arg0: Segment) -> None: ... method deselected (line 366) | def deselected(self) -> Any: ... method deselected (line 368) | def deselected(self, arg0: Keyframe) -> None: ... method deselected (line 370) | def deselected(self) -> Any: ... method deselected (line 372) | def deselected(self, arg0: Tangent) -> None: ... method deselected (line 374) | def deselected(self) -> Any: ... method selected (line 376) | def selected(self, arg0: FCurve) -> None: ... method selected (line 378) | def selected(self) -> Any: ... method selected (line 380) | def selected(self, arg0: Segment) -> None: ... method selected (line 382) | def selected(self) -> Any: ... method selected (line 384) | def selected(self, arg0: Keyframe) -> None: ... method selected (line 386) | def selected(self) -> Any: ... method selected (line 388) | def selected(self, arg0: Tangent) -> None: ... method selected (line 390) | def selected(self) -> Any: ... method selectionCleared (line 392) | def selectionCleared(self) -> None: ... method selectionCleared (line 394) | def selectionCleared(self) -> Any: ... class Tangent (line 396) | class Tangent: class TangentType (line 397) | class TangentType: method __init__ (line 406) | def __init__(self, arg0: int) -> None: ... method __eq__ (line 407) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 408) | def __hash__(self) -> int: ... method __int__ (line 409) | def __int__(self) -> int: ... method __ne__ (line 410) | def __ne__(self, other: object) -> bool: ... method name (line 412) | def name(self) -> str: ... method __init__ (line 419) | def __init__(self) -> None: ... method clearProperties (line 421) | def clearProperties(self) -> None: ... method clearProperties (line 423) | def clearProperties(self) -> Any: ... method get (line 424) | def get(self) -> tuple: ... method getAngle (line 425) | def getAngle(self) -> float: ... method getOpposingTangent (line 426) | def getOpposingTangent(self) -> Tangent: ... method getOwningCurve (line 427) | def getOwningCurve(self) -> FCurve: ... method getOwningKeyframe (line 428) | def getOwningKeyframe(self) -> Keyframe: ... method getOwningSegment (line 429) | def getOwningSegment(self) -> Segment: ... method getProperties (line 430) | def getProperties(self) -> dict: ... method getProperty (line 431) | def getProperty(self, key: str) -> str: ... method getType (line 432) | def getType(self, *args, **kwargs): ... method getWeight (line 433) | def getWeight(self) -> float: ... method getX (line 434) | def getX(self) -> float: ... method getY (line 435) | def getY(self) -> float: ... method isInTangent (line 436) | def isInTangent(self) -> bool: ... method isWeightLocked (line 437) | def isWeightLocked(self) -> bool: ... method isWeighted (line 438) | def isWeighted(self) -> bool: ... method set (line 439) | def set(self, x: float, y: float) -> None: ... method setAngle (line 440) | def setAngle(self, angle: float) -> None: ... method setProperty (line 441) | def setProperty(self, key: str, value: str) -> bool: ... method setType (line 442) | def setType(self, type) -> None: ... method setWeight (line 443) | def setWeight(self, weight: float) -> None: ... method setWeightLocked (line 444) | def setWeightLocked(self, arg0: bool) -> None: ... method setWeighted (line 445) | def setWeighted(self, arg0: bool) -> None: ... method setX (line 446) | def setX(self, x: float) -> None: ... method setY (line 447) | def setY(self, y: float) -> None: ... method sizeProperties (line 448) | def sizeProperties(self) -> int: ... method __eq__ (line 449) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 450) | def __hash__(self) -> int: ... method __lt__ (line 451) | def __lt__(self, other: object) -> bool: ... function GetGridSettings (line 453) | def GetGridSettings(curve: FCurve) -> tuple: ... function GetNamespace (line 454) | def GetNamespace() -> dict: ... function HasGridSettings (line 455) | def HasGridSettings(curve: FCurve) -> bool: ... function IsEditable (line 456) | def IsEditable(curve: FCurve) -> bool: ... function IsLocked (line 458) | def IsLocked(curve: FCurve) -> bool: ... function IsLocked (line 460) | def IsLocked(keyframe: Keyframe) -> bool: ... function IsVisible (line 461) | def IsVisible(curve: FCurve) -> bool: ... function ReadContainerFromString (line 462) | def ReadContainerFromString(string: str, container: FCurveContainer = ..... function ReadFromBinaryString (line 463) | def ReadFromBinaryString(binaryString: str, curve: FCurve = ...) -> FCur... function ReadFromXMLString (line 464) | def ReadFromXMLString(xmlString: str, curve: FCurve = ...) -> FCurve: ... function RemoveGridSettings (line 465) | def RemoveGridSettings(curve: FCurve) -> None: ... function SetEditable (line 466) | def SetEditable(curve: FCurve, isEditable: bool) -> None: ... function SetGridSettings (line 468) | def SetGridSettings(arg0: FCurve, arg1: list[tuple[float, float, float, ... function SetGridSettings (line 470) | def SetGridSettings(arg0: FCurve, arg1: float, arg2: float, arg3: float,... function SetLocked (line 472) | def SetLocked(curve: FCurve, isLocked: bool) -> None: ... function SetLocked (line 474) | def SetLocked(keyframe: Keyframe, isLocked: bool) -> None: ... function SetVisible (line 475) | def SetVisible(curve: FCurve, isVisible: bool) -> None: ... function WriteContainerToString (line 476) | def WriteContainerToString(container: FCurveContainer, format: str = ...... function WriteToBinaryString (line 477) | def WriteToBinaryString(curve: FCurve) -> bytes: ... function WriteToXMLString (line 478) | def WriteToXMLString(curve: FCurve) -> str: ... FILE: katana/stubs/PyFnAttribute/Util.pyi function RemoveTimeSamplesIfAllSame (line 6) | def RemoveTimeSamplesIfAllSame(arg0: PyFnAttribute.Attribute) -> PyFnAtt... function RemoveTimeSamplesUnneededForShutter (line 7) | def RemoveTimeSamplesUnneededForShutter(arg0: PyFnAttribute.Attribute, a... function ResampleAttrWithInterp (line 8) | def ResampleAttrWithInterp(arg0: PyFnAttribute.Attribute, arg1: PyFnAttr... FILE: katana/stubs/PyFnAttribute/__init__.pyi class Attribute (line 14) | class Attribute: method __init__ (line 15) | def __init__(self) -> None: ... method getBinary (line 16) | def getBinary(self) -> bytes: ... method getHash (line 17) | def getHash(self) -> str: ... method getHash64 (line 18) | def getHash64(self) -> int: ... method getSize (line 19) | def getSize(self) -> int: ... method getXML (line 20) | def getXML(self) -> str: ... method parseBinary (line 22) | def parseBinary(cls, binary: object) -> Attribute: ... method parseXML (line 24) | def parseXML(cls, xml: str) -> Attribute: ... method writePython (line 25) | def writePython(self, stream: object) -> Any: ... method __eq__ (line 27) | def __eq__(self, other: object) -> bool: ... method __eq__ (line 29) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 30) | def __hash__(self) -> int: ... method __le__ (line 31) | def __le__(self, other: object) -> bool: ... method __lt__ (line 32) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 34) | def __ne__(self, other: object) -> bool: ... method __ne__ (line 36) | def __ne__(self, other: object) -> bool: ... class ConstVector (line 38) | class ConstVector(Generic[T]): method __init__ (line 39) | def __init__(self) -> None: ... method count (line 40) | def count(self, object: object) -> int: ... method index (line 41) | def index(self, object: object) -> int: ... method toFnAttr (line 42) | def toFnAttr(self, *args, **kwargs): ... method __eq__ (line 43) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 44) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 46) | def __getitem__(self, index: int) -> T: ... method __getitem__ (line 48) | def __getitem__(self, index: slice) -> ConstVector[T]: ... method __iter__ (line 49) | def __iter__(self) -> typing.Iterator[T]: ... method __gt__ (line 50) | def __gt__(self, other: object) -> bool: ... method __iter__ (line 51) | def __iter__(self) -> typing.Iterator[T]: ... method __le__ (line 52) | def __le__(self, other: object) -> bool: ... method __len__ (line 53) | def __len__(self) -> int: ... method __lt__ (line 54) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 55) | def __ne__(self, other: object) -> bool: ... class DataAttribute (line 57) | class DataAttribute(Attribute, Generic[T]): method __init__ (line 58) | def __init__(self) -> None: ... method getBoundingSampleTimes (line 59) | def getBoundingSampleTimes(self, time: float) -> tuple: ... method getData (line 61) | def getData(self) -> ConstVector[T]: ... method getNearestSample (line 63) | def getNearestSample(self, sampleTime: float) -> ConstVector[T]: ... method getNumberOfTimeSamples (line 64) | def getNumberOfTimeSamples(self) -> int: ... method getNumberOfTuples (line 65) | def getNumberOfTuples(self) -> int: ... method getNumberOfValues (line 66) | def getNumberOfValues(self) -> int: ... method getSampleTime (line 67) | def getSampleTime(self, index: int) -> float: ... method getSampleTimes (line 68) | def getSampleTimes(self) -> tuple: ... method getSamples (line 70) | def getSamples(self) -> dict[float, ConstVector[T]]: ... method getTupleSize (line 71) | def getTupleSize(self) -> int: ... method getValue (line 73) | def getValue(self, defaultValue: T = ..., throwOnError: bool = ...) ->... class DoubleAttribute (line 75) | class DoubleAttribute(DataAttribute[float]): method __init__ (line 77) | def __init__(self, value: float, tupleSize: int = ...) -> None: ... method __init__ (line 79) | def __init__(self, data: dict, tupleSize: int = ...) -> None: ... method __init__ (line 81) | def __init__(self, data: typing.Sequence, tupleSize: int = ...) -> Non... method getData (line 82) | def getData(self) -> ConstVector[float]: ... method getNearestSample (line 83) | def getNearestSample(self, sampleTime: float) -> ConstVector[float]: ... method getSamples (line 84) | def getSamples(self) -> dict[float, ConstVector[float]]: ... method getValue (line 85) | def getValue(self, defaultValue: float = ..., throwOnError: bool = ...... class FloatAttribute (line 87) | class FloatAttribute(DataAttribute[float]): method __init__ (line 89) | def __init__(self, value: float, tupleSize: int = ...) -> None: ... method __init__ (line 91) | def __init__(self, data: dict, tupleSize: int = ...) -> None: ... method __init__ (line 93) | def __init__(self, data: typing.Sequence, tupleSize: int = ...) -> Non... method getData (line 94) | def getData(self) -> ConstVector[float]: ... method getNearestSample (line 95) | def getNearestSample(self, sampleTime: float) -> ConstVector[float]: ... method getSamples (line 96) | def getSamples(self) -> dict[float, ConstVector[float]]: ... method getValue (line 97) | def getValue(self, defaultValue: float = ..., throwOnError: bool = ...... class GroupAttribute (line 99) | class GroupAttribute(Attribute): method __init__ (line 101) | def __init__(self, groupInherit: bool = ...) -> None: ... method __init__ (line 103) | def __init__(self, children: typing.Sequence, groupInherit: bool = ...... method __init__ (line 105) | def __init__(self, children: dict, groupInherit: bool = ...) -> None: ... method childList (line 106) | def childList(self) -> list[tuple[str, Attribute]]: ... method getChildByIndex (line 107) | def getChildByIndex(self, index: int) -> Attribute: ... method getChildByName (line 108) | def getChildByName(self, name: str) -> Attribute: ... method getChildName (line 109) | def getChildName(self, index: int) -> str: ... method getGroupInherit (line 110) | def getGroupInherit(self) -> bool: ... method getNumberOfChildren (line 111) | def getNumberOfChildren(self) -> int: ... method writePython (line 112) | def writePython(self, stream: object) -> Any: ... class GroupBuilder (line 114) | class GroupBuilder: method __init__ (line 115) | def __init__(self, builderMode: int = ...) -> None: ... method build (line 116) | def build(self, builderMode: int = ...) -> GroupAttribute: ... method deepUpdate (line 117) | def deepUpdate(self, attr: GroupAttribute) -> GroupBuilder: ... method delete (line 118) | def delete(self, pathStr: str) -> GroupBuilder: ... method reserve (line 119) | def reserve(self, count: int) -> GroupBuilder: ... method set (line 121) | def set(self, pathStr: str, attr: Attribute, groupInherit: bool = ...)... method set (line 123) | def set(self, pathStr: str, value: int, groupInherit: bool = ...) -> G... method set (line 125) | def set(self, pathStr: str, value: float, groupInherit: bool = ...) ->... method set (line 127) | def set(self, pathStr: str, value: float, groupInherit: bool = ...) ->... method set (line 129) | def set(self, pathStr: str, value: str, groupInherit: bool = ...) -> G... method setGroupInherit (line 130) | def setGroupInherit(self, groupInherit: bool) -> GroupBuilder: ... method setWithUniqueName (line 132) | def setWithUniqueName(self, pathStr: str, attr: Attribute, groupInheri... method setWithUniqueName (line 134) | def setWithUniqueName(self, pathStr: str, value: int, groupInherit: bo... method setWithUniqueName (line 136) | def setWithUniqueName(self, pathStr: str, value: float, groupInherit: ... method setWithUniqueName (line 138) | def setWithUniqueName(self, pathStr: str, value: float, groupInherit: ... method setWithUniqueName (line 140) | def setWithUniqueName(self, pathStr: str, value: str, groupInherit: bo... method sort (line 141) | def sort(self) -> GroupBuilder: ... method update (line 142) | def update(self, attr: GroupAttribute) -> GroupBuilder: ... class IntAttribute (line 144) | class IntAttribute(DataAttribute[int]): method __init__ (line 146) | def __init__(self, value: float, tupleSize: int = ...) -> None: ... method __init__ (line 148) | def __init__(self, data: dict, tupleSize: int = ...) -> None: ... method __init__ (line 150) | def __init__(self, data: typing.Sequence, tupleSize: int = ...) -> Non... method getData (line 151) | def getData(self) -> ConstVector[int]: ... method getNearestSample (line 152) | def getNearestSample(self, sampleTime: float) -> ConstVector[int]: ... method getSamples (line 153) | def getSamples(self) -> dict[float, ConstVector[int]]: ... method getValue (line 154) | def getValue(self, defaultValue: int = ..., throwOnError: bool = ...) ... class NullAttribute (line 156) | class NullAttribute(Attribute): method __init__ (line 157) | def __init__(self) -> None: ... method writePython (line 158) | def writePython(self, stream: object) -> Any: ... class StringAttribute (line 160) | class StringAttribute(DataAttribute[str]): method __init__ (line 162) | def __init__(self, value: str, tupleSize: int = ...) -> None: ... method __init__ (line 164) | def __init__(self, data: dict, tupleSize: int = ...) -> None: ... method __init__ (line 166) | def __init__(self, data: typing.Sequence, tupleSize: int = ...) -> Non... method getData (line 167) | def getData(self) -> ConstVector[str]: ... method getNearestSample (line 168) | def getNearestSample(self, sampleTime: float) -> ConstVector[str]: ... method getSamples (line 169) | def getSamples(self) -> dict[float, ConstVector[str]]: ... method getValue (line 170) | def getValue(self, defaultValue: str = ..., throwOnError: bool = ...) ... method __eq__ (line 172) | def __eq__(self, other: object) -> bool: ... method __eq__ (line 174) | def __eq__(self, other: object) -> bool: ... method __eq__ (line 176) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 178) | def __ne__(self, other: object) -> bool: ... method __ne__ (line 180) | def __ne__(self, other: object) -> bool: ... method __ne__ (line 182) | def __ne__(self, other: object) -> bool: ... function DelimiterDecode (line 184) | def DelimiterDecode(encodedNameOrLocationPath: str) -> str: ... function DelimiterEncode (line 185) | def DelimiterEncode(nameOrLocationPath: str) -> str: ... function GetTotalSize (line 186) | def GetTotalSize() -> int: ... FILE: katana/stubs/PyFnGeolib/Util.pyi class Traversal (line 7) | class Traversal: method __init__ (line 8) | def __init__(self, client: PyFnGeolib.GeolibRuntimeClient, rootLocatio... method getLocationData (line 9) | def getLocationData(self) -> PyFnGeolib.LocationData: ... method getLocationPath (line 10) | def getLocationPath(self) -> str: ... method getRelativeLocationPath (line 11) | def getRelativeLocationPath(self) -> str: ... method next (line 12) | def next(self) -> None: ... method skipChildren (line 13) | def skipChildren(self) -> None: ... method valid (line 14) | def valid(self) -> bool: ... function GetScenegraphAsAttr (line 16) | def GetScenegraphAsAttr(client: PyFnGeolib.GeolibRuntimeClient, rootLoca... function GetScenegraphAsPrettyText (line 17) | def GetScenegraphAsPrettyText(client: PyFnGeolib.GeolibRuntimeClient, ro... function GetScenegraphAttrAsPrettyText (line 18) | def GetScenegraphAttrAsPrettyText(attr: PyFnAttribute.GroupAttribute, ro... FILE: katana/stubs/PyFnGeolib/__init__.pyi class Geolib (line 9) | class Geolib: method __init__ (line 10) | def __init__(self) -> None: ... method createRuntime (line 11) | def createRuntime(self, *args, **kwargs): ... method setPluginPath (line 12) | def setPluginPath(self, arg0: list[str]) -> None: ... class GeolibRuntime (line 14) | class GeolibRuntime: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method EndProfilingSession (line 16) | def EndProfilingSession(self, outputFile: str = ...) -> None: ... method IsProfilingSession (line 17) | def IsProfilingSession(self) -> bool: ... method StartProfilingSession (line 18) | def StartProfilingSession(self) -> None: ... method _sendMessageInternal (line 19) | def _sendMessageInternal(self, arg0: object) -> Any: ... method commit (line 21) | def commit(self, txn: GeolibRuntimeTransaction) -> int: ... method commit (line 23) | def commit(self, txns: list[GeolibRuntimeTransaction]) -> int: ... method createTransaction (line 24) | def createTransaction(self) -> GeolibRuntimeTransaction: ... method describeOp (line 25) | def describeOp(self, opType: str) -> PyFnAttribute.GroupAttribute: ... method evict (line 26) | def evict(self, primaryPathToKeep: str) -> None: ... method flushCaches (line 27) | def flushCaches(self) -> None: ... method getLatestCommitId (line 28) | def getLatestCommitId(self) -> int: ... method getOpFromOpId (line 29) | def getOpFromOpId(self, opId: int) -> GeolibRuntimeOp: ... method getOptions (line 30) | def getOptions(self) -> PyFnAttribute.Attribute: ... method getRegisteredOpTypes (line 31) | def getRegisteredOpTypes(self) -> PyFnAttribute.StringAttribute: ... method getRootLocationPath (line 32) | def getRootLocationPath(self) -> str: ... method isProcessing (line 33) | def isProcessing(self) -> bool: ... method isValidOp (line 34) | def isValidOp(self, opId: int) -> bool: ... method setOptions (line 35) | def setOptions(self, options: PyFnAttribute.Attribute) -> None: ... class GeolibRuntimeClient (line 37) | class GeolibRuntimeClient: method __init__ (line 38) | def __init__(self, *args, **kwargs) -> None: ... method cookLocation (line 39) | def cookLocation(self, locationPath: str) -> LocationData: ... method getActiveLocations (line 40) | def getActiveLocations(self, rootLocationPath: str) -> list[str]: ... method getCachedLocation (line 41) | def getCachedLocation(self, locationPath: str) -> Any: ... method getLocationEvents (line 42) | def getLocationEvents(self, maxEvents: int = ...) -> tuple: ... method getOp (line 43) | def getOp(self) -> GeolibRuntimeOp: ... method getOpenLocations (line 44) | def getOpenLocations(self, rootLocationPath: str) -> list[str]: ... method hasLocationEvents (line 45) | def hasLocationEvents(self) -> bool: ... method interruptOpenRecursive (line 46) | def interruptOpenRecursive(self) -> None: ... method isAllOpen (line 47) | def isAllOpen(self) -> bool: ... method isEventCachingEnabled (line 48) | def isEventCachingEnabled(self) -> bool: ... method isLocationActive (line 49) | def isLocationActive(self, locationPath: str) -> bool: ... method isLocationDataCurrent (line 50) | def isLocationDataCurrent(self, locationPath: str, commitId: int = ...... method isLocationOpen (line 51) | def isLocationOpen(self, locationPath: str) -> bool: ... method setAllOpen (line 52) | def setAllOpen(self, allOpen: bool) -> None: ... method setEventCachingEnabled (line 53) | def setEventCachingEnabled(self, enabled: bool = ...) -> None: ... method setLocationsActive (line 54) | def setLocationsActive(self, locationPaths: list[str]) -> None: ... method setLocationsClosed (line 55) | def setLocationsClosed(self, locationPaths: list[str]) -> None: ... method setLocationsClosedRecursive (line 56) | def setLocationsClosedRecursive(self, locationPaths: list[str]) -> Non... method setLocationsInactive (line 57) | def setLocationsInactive(self, locationPaths: list[str]) -> None: ... method setLocationsOpen (line 58) | def setLocationsOpen(self, locationPaths: list[str]) -> None: ... method setLocationsOpenRecursive (line 59) | def setLocationsOpenRecursive(self, locationPaths: list[str], stopType... class GeolibRuntimeOp (line 61) | class GeolibRuntimeOp: method __init__ (line 62) | def __init__(self, *args, **kwargs) -> None: ... method getInputs (line 63) | def getInputs(self) -> tuple: ... method getNodeName (line 64) | def getNodeName(self) -> str: ... method getNodeType (line 65) | def getNodeType(self) -> str: ... method getOpArgs (line 66) | def getOpArgs(self) -> tuple: ... method getOpId (line 67) | def getOpId(self) -> int: ... method getTag (line 68) | def getTag(self) -> str: ... method serializeToFile (line 69) | def serializeToFile(self, filepath: str) -> bool: ... class GeolibRuntimeTransaction (line 71) | class GeolibRuntimeTransaction: method __init__ (line 72) | def __init__(self, *args, **kwargs) -> None: ... method createClient (line 73) | def createClient(self, *args, **kwargs): ... method createOp (line 74) | def createOp(self) -> GeolibRuntimeOp: ... method deserializeOpsFromFile (line 75) | def deserializeOpsFromFile(self, filepath: str) -> GeolibRuntimeOp: ... method setClientOp (line 76) | def setClientOp(self, client, op: GeolibRuntimeOp) -> None: ... method setNodeName (line 77) | def setNodeName(self, op: GeolibRuntimeOp, nodeName: str) -> None: ... method setNodeType (line 78) | def setNodeType(self, op: GeolibRuntimeOp, nodeType: str) -> None: ... method setOpArgs (line 79) | def setOpArgs(self, op: GeolibRuntimeOp, opType: str, opArgs: PyFnAttr... method setOpInputs (line 80) | def setOpInputs(self, op: GeolibRuntimeOp, inputs: list[GeolibRuntimeO... method setTag (line 81) | def setTag(self, op: GeolibRuntimeOp, tag: str) -> None: ... class LocationData (line 83) | class LocationData: method __init__ (line 84) | def __init__(self, *args, **kwargs) -> None: ... method doesLocationExist (line 85) | def doesLocationExist(self) -> bool: ... method getAttrs (line 86) | def getAttrs(self) -> PyFnAttribute.GroupAttribute: ... method getAttrsHash (line 87) | def getAttrsHash(self) -> str: ... method getHash (line 88) | def getHash(self) -> str: ... method getPotentialChildren (line 89) | def getPotentialChildren(self) -> list: ... method getPotentialChildrenAttr (line 90) | def getPotentialChildrenAttr(self) -> PyFnAttribute.StringAttribute: ... method getPotentialChildrenHash (line 91) | def getPotentialChildrenHash(self) -> str: ... class LocationEvent (line 93) | class LocationEvent: method __init__ (line 94) | def __init__(self, *args, **kwargs) -> None: ... method getLocationData (line 95) | def getLocationData(self) -> Any: ... method getLocationPath (line 96) | def getLocationPath(self) -> str: ... method getLocationPathAttr (line 97) | def getLocationPathAttr(self) -> PyFnAttribute.StringAttribute: ... method hasLocationData (line 98) | def hasLocationData(self) -> bool: ... method hasOpenChange (line 99) | def hasOpenChange(self) -> bool: ... method isLocationDataCurrent (line 101) | def isLocationDataCurrent(self) -> bool: ... method isLocationDataCurrent (line 103) | def isLocationDataCurrent(self) -> Any: ... method isOpen (line 104) | def isOpen(self) -> bool: ... function GetRegisteredRuntimeInstance (line 106) | def GetRegisteredRuntimeInstance(*args, **kwargs): ... function RegisterRuntimeInstance (line 107) | def RegisterRuntimeInstance(runtime, key: str = ...) -> None: ... FILE: katana/stubs/PyFnGeolibProducers/RendererOutputUtil.pyi function ConvertPointListToNDC (line 7) | def ConvertPointListToNDC(producer: PyFnGeolibProducers.GeometryProducer... function ExpandArchPath (line 8) | def ExpandArchPath(inputString: str) -> str: ... function FlushRendererOutputCaches (line 9) | def FlushRendererOutputCaches() -> None: ... function GetPixelAreaThroughCamera (line 10) | def GetPixelAreaThroughCamera(producer: PyFnGeolibProducers.GeometryProd... function ProcessTilePath (line 12) | def ProcessTilePath(outputFile: str, tileData: list[int]) -> str: ... function ProcessTilePath (line 14) | def ProcessTilePath(outputFile: str, tileData: list[float]) -> str: ... FILE: katana/stubs/PyFnGeolibProducers/__init__.pyi class BinaryAttrWriter (line 7) | class BinaryAttrWriter: method __init__ (line 8) | def __init__(self, arg0: str) -> None: ... method tell (line 9) | def tell(self) -> int: ... method writeAttr (line 10) | def writeAttr(self, arg0: PyFnAttribute.Attribute) -> None: ... class GeometryProducer (line 12) | class GeometryProducer: method __init__ (line 13) | def __init__(self, producerType: str, **kwargs) -> None: ... method getAttribute (line 14) | def getAttribute(self, name: str) -> PyFnAttribute.Attribute: ... method getAttributeNames (line 15) | def getAttributeNames(self) -> list: ... method getCacheID (line 16) | def getCacheID(self) -> str: ... method getChildByName (line 17) | def getChildByName(self, name: str) -> GeometryProducer: ... method getClient (line 18) | def getClient(self, *args, **kwargs): ... method getDelimitedGlobalAttribute (line 19) | def getDelimitedGlobalAttribute(self, name: str) -> PyFnAttribute.Attr... method getDelimitedLocalAttribute (line 20) | def getDelimitedLocalAttribute(self, name: str) -> PyFnAttribute.Attri... method getFirstChild (line 21) | def getFirstChild(self) -> GeometryProducer: ... method getFlattenedGlobalXform (line 22) | def getFlattenedGlobalXform(self) -> tuple[float, float, float, float,... method getFnAttribute (line 23) | def getFnAttribute(self, name: str) -> PyFnAttribute.Attribute: ... method getFullName (line 24) | def getFullName(self) -> str: ... method getGlobalAttribute (line 25) | def getGlobalAttribute(self, name: str) -> PyFnAttribute.Attribute: ... method getName (line 26) | def getName(self) -> str: ... method getNextSibling (line 27) | def getNextSibling(self) -> GeometryProducer: ... method getParent (line 28) | def getParent(self) -> GeometryProducer: ... method getPotentialChildren (line 29) | def getPotentialChildren(self) -> PyFnAttribute.StringAttribute: ... method getProducerByPath (line 30) | def getProducerByPath(self, path: str) -> GeometryProducer: ... method getRootProducer (line 31) | def getRootProducer(self) -> GeometryProducer: ... method getType (line 32) | def getType(self) -> str: ... method iterChildren (line 33) | def iterChildren(self) -> GeometryProducer_childIter: ... method __hash__ (line 34) | def __hash__(self) -> int: ... class GeometryProducer_childIter (line 36) | class GeometryProducer_childIter: method __init__ (line 37) | def __init__(self, *args, **kwargs) -> None: ... method __iter__ (line 38) | def __iter__(self) -> GeometryProducer_childIter: ... method __next__ (line 39) | def __next__(self): ... function ClearLookFileCache (line 41) | def ClearLookFileCache() -> None: ... function GetGeometryProducerList (line 42) | def GetGeometryProducerList() -> list[str]: ... function GetLookFilePassMaterials (line 43) | def GetLookFilePassMaterials(asset: str, passName: str = ...) -> dict: ... FILE: katana/stubs/PyFnGeolibServices/ArgsFile.pyi function FlushCaches (line 8) | def FlushCaches() -> None: ... function GetProceduralArgs (line 9) | def GetProceduralArgs(assetId: str) -> PyFnAttribute.Attribute: ... function ParseArgsFile (line 10) | def ParseArgsFile(fileName: str) -> PyFnAttribute.Attribute: ... FILE: katana/stubs/PyFnGeolibServices/AttributeFunctionUtil.pyi function GetRegisteredFunctionNames (line 6) | def GetRegisteredFunctionNames(omitInternal: bool = ...) -> list: ... function Run (line 7) | def Run(name: str, args: PyFnAttribute.Attribute) -> PyFnAttribute.Attri... FILE: katana/stubs/PyFnGeolibServices/ExpressionMath.pyi function cfit (line 9) | def cfit(value: object, oldmin: object, oldmax: object, newmin: object, ... function clamp (line 10) | def clamp(value: object, min: object, max: object) -> Any: ... function fit (line 11) | def fit(value: object, oldmin: object, oldmax: object, newmin: object, n... function ifelse (line 12) | def ifelse(expr: object, a: object, b: object) -> Any: ... function isfinite (line 13) | def isfinite(value: float) -> bool: ... function isinf (line 14) | def isinf(value: float) -> bool: ... function isnan (line 15) | def isnan(value: float) -> bool: ... function lerp (line 16) | def lerp(t: object, min: object, max: object) -> Any: ... function noise (line 17) | def noise(x: float, y: float = ..., z: float = ..., w: float = ...) -> f... function randval (line 18) | def randval(min: float, max: float, seed: int) -> float: ... function retime (line 19) | def retime(frame: float, start: float, end: float, inMode: object, outMo... function smoothstep (line 21) | def smoothstep(value: object) -> Any: ... function smoothstep (line 23) | def smoothstep(easein, easeout) -> Any: ... function snoise (line 24) | def snoise(x: float, y: float = ..., z: float = ..., w: float = ...) -> ... function softcfit (line 25) | def softcfit(value: object, oldmin: object, oldmax: object, newmin: obje... function stablehash (line 26) | def stablehash(str: str) -> int: ... FILE: katana/stubs/PyFnGeolibServices/HintUtils.pyi function GetHintGroup (line 6) | def GetHintGroup(inputAttr: PyFnAttribute.Attribute) -> PyFnAttribute.Gr... function ParseConditionalStateGrammar (line 7) | def ParseConditionalStateGrammar(inputExpr: str, prefix: str = ..., seco... FILE: katana/stubs/PyFnGeolibServices/LookFile.pyi class AttrMap (line 6) | class AttrMap: method __init__ (line 7) | def __init__(self, *args, **kwargs) -> None: ... method get (line 8) | def get(self, key: str) -> PyFnAttribute.Attribute: ... method getKeys (line 9) | def getKeys(self) -> PyFnAttribute.StringAttribute: ... class LookFile (line 11) | class LookFile: method __init__ (line 12) | def __init__(self, filePath: str, passName: str = ...) -> None: ... method getAttrs (line 13) | def getAttrs(self, locationName: str, rootId: str = ...) -> AttrMap: ... method getMaterial (line 14) | def getMaterial(self, materialName: str, asGlobal: bool = ...) -> PyFn... method getMaterialType (line 15) | def getMaterialType(self, materialName: str) -> str: ... method getMaterials (line 16) | def getMaterials(self) -> AttrMap: ... method getPassNamesForLookFileAsset (line 18) | def getPassNamesForLookFileAsset(cls, asset: str) -> PyFnAttribute.Str... method getPathsWithOverrides (line 19) | def getPathsWithOverrides(self, rootId: str = ...) -> PyFnAttribute.St... method getRootIdNames (line 20) | def getRootIdNames(self) -> PyFnAttribute.StringAttribute: ... method getRootIdType (line 21) | def getRootIdType(self, rootId: str) -> str: ... method getRootOverrides (line 22) | def getRootOverrides(self) -> AttrMap: ... method getSafePath (line 24) | def getSafePath(cls, asset: str, includeVersion: bool = ...) -> PyFnAt... FILE: katana/stubs/PyFnGeolibServices/MaterialResolveUtil.pyi function combineLayeredMaterialOverrides (line 6) | def combineLayeredMaterialOverrides(attr1: PyFnAttribute.Attribute, attr... function extractMaterialReferences (line 7) | def extractMaterialReferences(attr: PyFnAttribute.GroupAttribute, proces... function getLayerPrefixesFromMaterial (line 8) | def getLayerPrefixesFromMaterial(attr: PyFnAttribute.GroupAttribute) -> ... function resolveDeferredNetworkOps (line 9) | def resolveDeferredNetworkOps(attr: PyFnAttribute.GroupAttribute) -> PyF... function resolveMaterialLayers (line 10) | def resolveMaterialLayers(attr: PyFnAttribute.GroupAttribute, processHin... function resolveMaterialReferences (line 11) | def resolveMaterialReferences(attr: PyFnAttribute.GroupAttribute, proces... FILE: katana/stubs/PyFnGeolibServices/OpArgsBuilders.pyi class AttributeSet (line 6) | class AttributeSet: method __init__ (line 7) | def __init__(self) -> None: ... method addSubOp (line 8) | def addSubOp(self, opType: str, opArgs: PyFnAttribute.GroupAttribute, ... method build (line 9) | def build(self) -> PyFnAttribute.GroupAttribute: ... method deleteAttr (line 10) | def deleteAttr(self, attrName: str, batch: str = ...) -> None: ... method setAttr (line 11) | def setAttr(self, attrName: str, attr: PyFnAttribute.Attribute, batch:... method setCEL (line 13) | def setCEL(self, cel: PyFnAttribute.StringAttribute, batch: str = ...)... method setCEL (line 15) | def setCEL(self, cels: list[str], batch: str = ...) -> None: ... method setLocationPaths (line 17) | def setLocationPaths(self, locationPath: PyFnAttribute.StringAttribute... method setLocationPaths (line 19) | def setLocationPaths(self, locationPaths: list[str], batch: str = ...)... class StaticSceneCreate (line 21) | class StaticSceneCreate: method __init__ (line 22) | def __init__(self, pathsAreAbsolute: bool = ...) -> None: ... method addSubOpAtLocation (line 23) | def addSubOpAtLocation(self, locationPath: str, opType: str, opArgs: P... method build (line 24) | def build(self) -> PyFnAttribute.GroupAttribute: ... method createEmptyLocation (line 25) | def createEmptyLocation(self, locationPath: str, locationType: str = .... method setAttrAtLocation (line 26) | def setAttrAtLocation(self, locationPath: str, attrName: str, attr: Py... method setAttrsAtLeafStateForLocation (line 27) | def setAttrsAtLeafStateForLocation(self, locationPath: str, state: boo... method skipLocalActionsIfInputExistsAtLocation (line 28) | def skipLocalActionsIfInputExistsAtLocation(self, locationPath: str, s... FILE: katana/stubs/PyFnGeolibServices/XFormUtil.pyi function CalcTransformMatrixAtExistingTimes (line 7) | def CalcTransformMatrixAtExistingTimes(attr: PyFnAttribute.GroupAttribut... function CalcTransformMatrixAtTime (line 8) | def CalcTransformMatrixAtTime(attr: object, time: float) -> Tuple[PyFnAt... function CalcTransformMatrixAtTimes (line 9) | def CalcTransformMatrixAtTimes(attr: PyFnAttribute.GroupAttribute, times... function CalcTransformedBoundsAtExistingTimes (line 10) | def CalcTransformedBoundsAtExistingTimes(xform: PyFnAttribute.Attribute,... function CollapseBoundsTimeSamples (line 11) | def CollapseBoundsTimeSamples(bounds: PyFnAttribute.DoubleAttribute) -> ... function MergeBounds (line 12) | def MergeBounds(bounds1: PyFnAttribute.DoubleAttribute, bounds2: PyFnAtt... function PushMatrixAttr (line 13) | def PushMatrixAttr(xform: object, matrix: typing.Sequence) -> PyFnAttrib... function PushOriginAttr (line 14) | def PushOriginAttr(xform: object) -> PyFnAttribute.Attribute: ... function PushRotateAttr (line 15) | def PushRotateAttr(xform: object, angle: float, x: float, y: float, z: f... function PushScaleAttr (line 16) | def PushScaleAttr(xform: object, x: float, y: float, z: float) -> PyFnAt... function PushTranslateAttr (line 17) | def PushTranslateAttr(xform: object, x: float, y: float, z: float) -> Py... FILE: katana/stubs/PyFnGeolibServices/__init__.pyi function bootstrapPluginSystem (line 6) | def bootstrapPluginSystem() -> None: ... FILE: katana/stubs/PyQt5/QtCompat.pyi class QHeaderView (line 6) | class QHeaderView: method setSectionResizeMode (line 9) | def setSectionResizeMode(header: QtWidgets.QHeaderView, logicalIndex: ... method setSectionResizeMode (line 12) | def setSectionResizeMode(header: QtWidgets.QHeaderView, mode: QtWidget... function translate (line 14) | def translate(context: str, sourceText: str, *args: typing.Any) -> str: ... FILE: katana/stubs/PyResolutionTableFn/__init__.pyi class ResolutionTable (line 5) | class ResolutionTable: method __init__ (line 6) | def __init__(self, filename: str = ...) -> None: ... method addEntries (line 7) | def addEntries(self, arg0: list[ResolutionTableEntry]) -> int: ... method clear (line 8) | def clear(self) -> None: ... method createResolution (line 9) | def createResolution(self, width: int = ..., height: int = ..., name: ... method extractValidResolutionName (line 10) | def extractValidResolutionName(self, arg0: str) -> str: ... method findResolution (line 11) | def findResolution(self, width: int = ..., height: int = ..., aspect: ... method findResolutionByName (line 12) | def findResolutionByName(self, arg0: str) -> ResolutionTableEntry: ... method getEntries (line 13) | def getEntries(self) -> list[ResolutionTableEntry]: ... method getEntriesForGroup (line 14) | def getEntriesForGroup(self, group: str) -> list[ResolutionTableEntry]... method getFilename (line 15) | def getFilename(self) -> str: ... method getGroups (line 16) | def getGroups(self) -> list[str]: ... method getResolution (line 17) | def getResolution(self, name: str) -> ResolutionTableEntry: ... method hasResolution (line 18) | def hasResolution(self, name: str) -> bool: ... method makeResolution (line 19) | def makeResolution(self, width: int = ..., height: int = ..., aspect: ... class ResolutionTableEntry (line 21) | class ResolutionTableEntry: method __init__ (line 22) | def __init__(self, *args, **kwargs) -> None: ... method aspectRatio (line 23) | def aspectRatio(self) -> float: ... method fullname (line 24) | def fullname(self) -> str: ... method groupname (line 25) | def groupname(self) -> str: ... method name (line 26) | def name(self) -> str: ... method proxyname (line 27) | def proxyname(self) -> str: ... method xres (line 28) | def xres(self) -> int: ... method yres (line 29) | def yres(self) -> int: ... class ResolutionTableException (line 31) | class ResolutionTableException(Exception): ... function Flush (line 33) | def Flush() -> None: ... function GetResolutionTable (line 34) | def GetResolutionTable(*args, **kwargs): ... FILE: katana/stubs/PyUtilModule/AttrDump.pyi function AttrDump (line 10) | def AttrDump(output: _io.TextIOWrapper = ..., node: typing.Optional[Node... FILE: katana/stubs/PyUtilModule/ChildProcess.pyi class ChildProcess (line 5) | class ChildProcess: method __init__ (line 6) | def __init__(self, childProc) -> None: ... method kill (line 7) | def kill(self, sig): ... method poll (line 8) | def poll(self): ... method read (line 9) | def read(self, n): ... method write (line 10) | def write(self, str): ... method __del__ (line 11) | def __del__(self) -> None: ... FILE: katana/stubs/PyUtilModule/ColorPaletteManager.pyi function AddLayer (line 9) | def AddLayer(color: Incomplete | None = ..., label: str = ...): ... function ClearAll (line 10) | def ClearAll(): ... function DeleteLayer (line 11) | def DeleteLayer(index): ... function GetLayerName (line 12) | def GetLayerName(index): ... function GetLayers (line 13) | def GetLayers(): ... function GetRoot (line 14) | def GetRoot(): ... function ReorderLayer (line 15) | def ReorderLayer(oldPos, newPos): ... FILE: katana/stubs/PyUtilModule/Decorators.pyi function TraceCall (line 7) | def TraceCall(loggerOrFunction: Incomplete | None = ...): ... function stacktrace (line 8) | def stacktrace(_name): ... function undogroup (line 9) | def undogroup(_name): ... FILE: katana/stubs/PyUtilModule/Documentation.pyi class _Source (line 12) | class _Source: method __init__ (line 13) | def __init__(self, title, **urls) -> None: ... method get3DelightForKatanaURL (line 14) | def get3DelightForKatanaURL(self) -> str: ... method getDevGuideURL (line 15) | def getDevGuideURL(self, documentPath: str = ...) -> str: ... method getNodeHelpURL (line 16) | def getNodeHelpURL(self, nodeTypeName: str) -> str: ... method getOnlineHelpURL (line 17) | def getOnlineHelpURL(self, cshid: Incomplete | None = ...) -> str: ... function GetSource (line 19) | def GetSource(sourceName: Incomplete | None = ...) -> _Source: ... function GetStyleSheetsPath (line 20) | def GetStyleSheetsPath() -> str: ... FILE: katana/stubs/PyUtilModule/EnvUtils.pyi class PlatformKind (line 9) | class PlatformKind: function GetKatanaTempfile (line 15) | def GetKatanaTempfile(prefix: str, suffix: str, maxInt: int = ...) -> st... function GetPlatformKind (line 16) | def GetPlatformKind() -> PlatformKind: ... FILE: katana/stubs/PyUtilModule/ExternalTextEditor.pyi function GetExternalEditor (line 8) | def GetExternalEditor(): ... function GetExternalEditorName (line 9) | def GetExternalEditorName(): ... function GetKatanaTempfile (line 10) | def GetKatanaTempfile(prefix, suffix, maxInt: int = ...): ... function OpenFileInExternalEditor (line 11) | def OpenFileInExternalEditor(filename): ... FILE: katana/stubs/PyUtilModule/FarmAPI/BaseFarmPlugin.pyi class BaseFarmPlugin (line 8) | class BaseFarmPlugin: class InstallationMetadata (line 9) | class InstallationMetadata: method __init__ (line 10) | def __init__(self, katanaRoot: str, renderPluginDsoPaths, renderboot... method copyRenderFiles (line 11) | def copyRenderFiles(self, filenames: list[str], renderContextName: str... method createTemporaryDirectory (line 12) | def createTemporaryDirectory(self, renderContextName: str) -> str: ... method getEnvironmentForJob (line 13) | def getEnvironmentForJob(self, renderContextName: str): ... method getJobState (line 14) | def getJobState(self, jobId: str) -> str: ... method getJobs (line 15) | def getJobs(self, filters: list) -> list: ... method getRemoteInstallationMetadata (line 16) | def getRemoteInstallationMetadata(self) -> BaseFarmPlugin.Installation... method getRenderLogFilename (line 17) | def getRenderLogFilename(self, jobId: str) -> str | None: ... method startJob (line 18) | def startJob(self, jobId: str): ... method stopJob (line 19) | def stopJob(self, jobId: str): ... method submitJob (line 20) | def submitJob(self, jobRequest: FarmAPI.FarmPluginManager.JobRequest) ... class FarmPluginException (line 22) | class FarmPluginException(Exception): ... class Job (line 24) | class Job: class State (line 25) | class State: method __init__ (line 32) | def __init__(self, jobId: str, name: str, startTime: int, endTime: int... class JobNotFoundException (line 34) | class JobNotFoundException(FarmPluginException): method __init__ (line 35) | def __init__(self, jobId: str, contextMessage: str) -> None: ... FILE: katana/stubs/PyUtilModule/FarmAPI/FarmManager.pyi function GenerateXMLFile (line 11) | def GenerateXMLFile(**kwargs): ... function GetAutoMkproxy (line 12) | def GetAutoMkproxy(node: NodegraphAPI.Node): ... function GetFarmSettings (line 13) | def GetFarmSettings(node: NodegraphAPI.Node): ... function GetSortedDependencies (line 14) | def GetSortedDependencies(nodeList: Incomplete | None = ..., syncAllOutp... function GetSortedDependencyList (line 15) | def GetSortedDependencyList(nodeList: Incomplete | None = ..., syncAllOu... function GetVersionSync (line 16) | def GetVersionSync(node: NodegraphAPI.Node): ... function WriteFarmFile (line 17) | def WriteFarmFile(fileName, outlineString): ... FILE: katana/stubs/PyUtilModule/FarmAPI/FarmPluginManager.pyi class FarmPluginManagerException (line 12) | class FarmPluginManagerException(Exception): ... class JobRequest (line 14) | class JobRequest: method __init__ (line 15) | def __init__(self, nodeName: str, renderContextName: str, frames: list... function CopyRenderFiles (line 17) | def CopyRenderFiles(renderFiles: list[str], renderContextName: Incomplet... function CreateRenderContextName (line 18) | def CreateRenderContextName(sequenceID: Incomplete | None = ...) -> str:... function CreateTemporaryDirectory (line 19) | def CreateTemporaryDirectory(renderContextName: str, farm: Incomplete | ... function GetDefaultFarm (line 20) | def GetDefaultFarm() -> str: ... function GetFarmPluginNames (line 21) | def GetFarmPluginNames() -> list[str]: ... function GetJobState (line 22) | def GetJobState(jobId: str, farm: Incomplete | None = ...) -> str: ... function GetJobs (line 23) | def GetJobs(filters: Incomplete | None = ..., farm: Incomplete | None = ... function GetRenderLogFilename (line 24) | def GetRenderLogFilename(jobId: str, farm: Incomplete | None = ...) -> s... function Initialize (line 25) | def Initialize(): ... function LoadFarmPlugins (line 26) | def LoadFarmPlugins(): ... function PrepareRemoteCommand (line 27) | def PrepareRemoteCommand(localCommandLine: str, renderContextName: str, ... function SetDefaultFarm (line 28) | def SetDefaultFarm(farm: str): ... function StartJob (line 29) | def StartJob(jobId: str, farm: Incomplete | None = ...): ... function StopJob (line 30) | def StopJob(jobId: str, farm: Incomplete | None = ...): ... function SubmitJob (line 31) | def SubmitJob(nodeName: str, renderContextName: str, remoteTempDir: str,... FILE: katana/stubs/PyUtilModule/FarmAPI/__init__.pyi class FarmSetting (line 19) | class FarmSetting: method __init__ (line 26) | def __init__(self, name: str = ..., farmType: str = ..., defaultValue:... method getHints (line 27) | def getHints(self) -> dict | None: ... method getName (line 28) | def getName(self) -> str: ... method getQualifiedName (line 29) | def getQualifiedName(self) -> str: ... method getShortName (line 30) | def getShortName(self): ... method getSize (line 31) | def getSize(self) -> int: ... method getType (line 32) | def getType(self) -> str: ... method getValue (line 33) | def getValue(self) -> str | int | float | list | None: ... class NodeRenderSettings (line 35) | class NodeRenderSettings: method __init__ (line 36) | def __init__(self, dependencyListEntry: Incomplete | None = ...) -> No... method _NodeRenderSettings__initialize (line 37) | def _NodeRenderSettings__initialize(self): ... method _NodeRenderSettings__setFromDependencyListEntry (line 38) | def _NodeRenderSettings__setFromDependencyListEntry(self, dependencyLi... method getNode (line 39) | def getNode(self) -> NodegraphAPI.Node | None: ... method getNodeType (line 40) | def getNodeType(self) -> str: ... class RenderScriptSettings (line 42) | class RenderScriptSettings: method __init__ (line 43) | def __init__(self, settings: dict = ...) -> None: ... method appendXML (line 44) | def appendXML(self, xmlElement: xml.etree.ElementTree.Element): ... function AddErrorMessage (line 46) | def AddErrorMessage(message: str): ... function AddFarmMenuOption (line 47) | def AddFarmMenuOption(menuCommandText: str, callback: typing.Callable): ... function AddFarmPopupMenuOption (line 48) | def AddFarmPopupMenuOption(menuCommandText: str, callback: typing.Callab... function AddFarmSettingNumber (line 49) | def AddFarmSettingNumber(name: str = ..., defaultValue: int = ..., hints... function AddFarmSettingNumberArray (line 50) | def AddFarmSettingNumberArray(name: str = ..., size: int = ..., hints: I... function AddFarmSettingString (line 51) | def AddFarmSettingString(name: str = ..., defaultValue: str = ..., hints... function AddFarmSettingStringArray (line 52) | def AddFarmSettingStringArray(name: str = ..., size: int = ..., hints: I... function AddWarningMessage (line 53) | def AddWarningMessage(message: str): ... function ExtractFarmSettingsFromNode (line 54) | def ExtractFarmSettingsFromNode(node: NodegraphAPI.Node) -> dict: ... function GetAddedFarmSettings (line 55) | def GetAddedFarmSettings() -> list[FarmSetting]: ... function GetClickedNode (line 56) | def GetClickedNode() -> NodegraphAPI.Node: ... function GetCurrentNode (line 57) | def GetCurrentNode() -> NodegraphAPI.Node: ... function GetCurrentNodeFrameRange (line 58) | def GetCurrentNodeFrameRange() -> dict: ... function GetErrorMessages (line 59) | def GetErrorMessages() -> list[str]: ... function GetFarmMenuOptions (line 60) | def GetFarmMenuOptions() -> list[None]: ... function GetFarmPopupMenuOptions (line 61) | def GetFarmPopupMenuOptions() -> list[None]: ... function GetKatanaFileName (line 62) | def GetKatanaFileName() -> str: ... function GetNodeList (line 63) | def GetNodeList() -> list[NodegraphAPI.Node | None]: ... function GetNodeProcessType (line 64) | def GetNodeProcessType() -> str: ... function GetSceneFrameRange (line 65) | def GetSceneFrameRange() -> dict: ... function GetSelectedNodes (line 66) | def GetSelectedNodes() -> list[NodegraphAPI.Node]: ... function GetSortedDependencies (line 67) | def GetSortedDependencies(nodeOrNodes: Incomplete | None = ..., includeB... function GetSortedDependencyList (line 68) | def GetSortedDependencyList(nodeList: Incomplete | None = ..., syncAllOu... function GetWarningMessages (line 69) | def GetWarningMessages() -> list[str]: ... function Initialise (line 70) | def Initialise(clickedNode: Incomplete | None = ...): ... function IsSceneValid (line 71) | def IsSceneValid(nodeScope: Incomplete | None = ..., allowUnsavedChanges... function OpenDefaultDialog (line 72) | def OpenDefaultDialog(callback: Incomplete | None = ..., dialogTitle: st... function WriteFarmFile (line 73) | def WriteFarmFile(fileName, farmString): ... FILE: katana/stubs/PyUtilModule/FileUtils.pyi function SanitisedFileName (line 5) | def SanitisedFileName(fileName: str) -> str: ... FILE: katana/stubs/PyUtilModule/Hints.pyi function AttrToHints (line 8) | def AttrToHints(attr: PyFnAttribute.Attribute) -> Tuple[int, float, str,... function AttrToObject (line 9) | def AttrToObject(attr: PyFnAttribute.Attribute) -> Tuple[int, float, str... FILE: katana/stubs/PyUtilModule/IRFs.pyi function GetActiveRenderFilterNodes (line 7) | def GetActiveRenderFilterNodes() -> list[NodegraphAPI.RenderFilter.Rende... function IsValidRenderFilterNode (line 8) | def IsValidRenderFilterNode(node: NodegraphAPI.Node) -> bool: ... function SetActiveRenderFilterNodes (line 9) | def SetActiveRenderFilterNodes(nodes: list[NodegraphAPI.RenderFilter.Ren... FILE: katana/stubs/PyUtilModule/KatanaFile.pyi function CrashSave (line 17) | def CrashSave(forceSave: bool = ..., logCompletion: bool = ...): ... function CrashSaveDisable (line 18) | def CrashSaveDisable(): ... function CrashSaveEnable (line 19) | def CrashSaveEnable(): ... function CreateSceneAsset (line 20) | def CreateSceneAsset(asset: str, versionUp: bool = ..., publish: bool = ... function Export (line 21) | def Export(fileNameOrAssetId: str, nodes: list[NodegraphAPI.Node], extra... function GetCrashActions (line 22) | def GetCrashActions() -> int: ... function GetCrashTime (line 23) | def GetCrashTime() -> float: ... function GetTimeOfFirstUnsavedAction (line 24) | def GetTimeOfFirstUnsavedAction() -> float | None: ... function GetViableCrashFiles (line 25) | def GetViableCrashFiles(smartPrune: bool = ...) -> list: ... function Import (line 26) | def Import(fileName: str, floatNodes: bool = ..., parentNode: Incomplete... function IsFileDirty (line 27) | def IsFileDirty() -> bool: ... function IsFileSavedAsAsset (line 28) | def IsFileSavedAsAsset() -> bool: ... function Load (line 29) | def Load(fileName: str, isCrashFile: bool = ...): ... function New (line 30) | def New(): ... function Paste (line 31) | def Paste(nodeXML: str, parent: NodegraphAPI.GroupNode): ... function PopFileDirtyState (line 32) | def PopFileDirtyState(): ... function PostCreateSceneAsset (line 33) | def PostCreateSceneAsset(asset: str, versionUp: bool = ..., publish: boo... function PushFileDirtyState (line 34) | def PushFileDirtyState(): ... function RegisterPasteHandler (line 35) | def RegisterPasteHandler(cb: typing.Callable): ... function Revert (line 36) | def Revert(): ... function Save (line 37) | def Save(fileNameOrAssetId: str, extraOptionsDict: Incomplete | None = .... function SetFileDirty (line 38) | def SetFileDirty(): ... function WasFileLoadedFromCrashFile (line 39) | def WasFileLoadedFromCrashFile() -> bool: ... function WasFileVersionedOnLoad (line 40) | def WasFileVersionedOnLoad() -> bool: ... FILE: katana/stubs/PyUtilModule/LiveRenderAPI/PluginActionRegistry.pyi function GetRegisteredActionClasses (line 5) | def GetRegisteredActionClasses() -> list: ... function RegisterActionClass (line 6) | def RegisterActionClass(actionClass: type): ... FILE: katana/stubs/PyUtilModule/LiveRenderAPI/__init__.pyi function AppendTerminalOp (line 14) | def AppendTerminalOp(opKey: object, opType: str, opArgs: PyFnAttribute.G... function ClearAllTerminalOps (line 15) | def ClearAllTerminalOps(): ... function GetTerminalOps (line 16) | def GetTerminalOps() -> list[None]: ... function InsertTerminalOp (line 17) | def InsertTerminalOp(opKey: object, opType: str, opArgs: PyFnAttribute.G... function RemoveTerminalOp (line 18) | def RemoveTerminalOp(opKey: object, deferred: bool = ...): ... function RestoreDefaultTerminalOps (line 19) | def RestoreDefaultTerminalOps(): ... function SendCommand (line 20) | def SendCommand(command: str): ... function SendData (line 21) | def SendData(dataType: str | StringAttribute, locationPath: str | String... function SetLiveAttribute (line 22) | def SetLiveAttribute(locationPath: str, attrPath: str, attrValue: PyFnAt... function SetVirtualCameraAttributes (line 23) | def SetVirtualCameraAttributes(attributes: PyFnAttribute.GroupAttribute)... FILE: katana/stubs/PyUtilModule/NodeDebugOutput.pyi function CanPrintDebugOutput (line 15) | def CanPrintDebugOutput() -> bool: ... function WriteRenderDebug (line 16) | def WriteRenderDebug(node: NodegraphAPI.Node, renderer, filename: Incomp... function WriteRenderOutput (line 17) | def WriteRenderOutput(node: NodegraphAPI.Node, renderer, filename: Incom... function WriteRenderOutputForRenderMethod (line 18) | def WriteRenderOutputForRenderMethod(renderMethodName, node: NodegraphAP... function WriteSerializedOpTreeToDisk (line 19) | def WriteSerializedOpTreeToDisk(node: NodegraphAPI.Node, applyRenderReso... FILE: katana/stubs/PyUtilModule/NonUIPluginManager.pyi function InitializePluginManager (line 7) | def InitializePluginManager(): ... FILE: katana/stubs/PyUtilModule/OpDocumentationGenerator.pyi class AttrTypes (line 7) | class AttrTypes: method toString (line 17) | def toString(cls, value: int) -> str: ... class OpDescription (line 19) | class OpDescription: method __init__ (line 20) | def __init__(self, opType: str, descriptionAttr: PyFnAttribute.GroupAt... method _OpDescription__getAttrs (line 22) | def _OpDescription__getAttrs(descriptionAttr, attrsAttrName): ... method _OpDescription__getChildValue (line 24) | def _OpDescription__getChildValue(groupAttr, childName): ... method _OpDescription__getOpArgs (line 26) | def _OpDescription__getOpArgs(descriptionAttr): ... method _OpDescription__sort (line 28) | def _OpDescription__sort(items, descriptionAttr, orderingAttrName): ... function GenerateRstDocument (line 30) | def GenerateRstDocument() -> str: ... FILE: katana/stubs/PyUtilModule/ProjectSnapshot.pyi class FullProjectSnapshot (line 10) | class FullProjectSnapshot(MinimalProjectSnapshot): method __init__ (line 11) | def __init__(self, snapshotParameter: Incomplete | None = ...) -> None... method getNodeGraphXML (line 12) | def getNodeGraphXML(self) -> PyXmlIO.Element: ... class MinimalProjectSnapshot (line 14) | class MinimalProjectSnapshot(ProjectSnapshot): method __init__ (line 15) | def __init__(self, snapshotParameter: Incomplete | None = ...) -> None... method _snapshotGraphStateVariables (line 16) | def _snapshotGraphStateVariables(self, rootNode: NodegraphAPI.GroupNod... method _snapshotIRFs (line 17) | def _snapshotIRFs(self) -> list[str]: ... method getGlobalGraphStateVariables (line 18) | def getGlobalGraphStateVariables(self): ... method getInteractiveRenderFilters (line 19) | def getInteractiveRenderFilters(self) -> list[str]: ... class ProjectSnapshot (line 21) | class ProjectSnapshot: class Type (line 22) | class Type: method ToString (line 27) | def ToString(snapshotType: int) -> str: ... method __init__ (line 28) | def __init__(self) -> None: ... method getGlobalGraphStateVariables (line 29) | def getGlobalGraphStateVariables(self): ... method getInteractiveRenderFilters (line 30) | def getInteractiveRenderFilters(self) -> list[str]: ... method getSnapshotType (line 31) | def getSnapshotType(self) -> int: ... function CreateProjectSnapshot (line 33) | def CreateProjectSnapshot(snapshotType: int = ...) -> ProjectSnapshot: ... FILE: katana/stubs/PyUtilModule/RegisterToCamera.pyi function RegisterToCamera (line 10) | def RegisterToCamera(node: NodegraphAPI.Node, distance, planeType, camer... function RegisterToNamedCamera (line 11) | def RegisterToNamedCamera(node: NodegraphAPI.Node, distance, planeType, ... FILE: katana/stubs/PyUtilModule/RenderManager/Constants.pyi class RenderModes (line 6) | class RenderModes: FILE: katana/stubs/PyUtilModule/RenderManager/Exceptions.pyi class RenderingException (line 7) | class RenderingException(Exception): method __init__ (line 8) | def __init__(self, sequenceID, errorCode, nodeName, message) -> None: ... class UnsupportedRenderMethodNameException (line 10) | class UnsupportedRenderMethodNameException(Exception): method __init__ (line 11) | def __init__(self, rendererName, renderMethodName) -> None: ... FILE: katana/stubs/PyUtilModule/RenderManager/InteractiveRenderDelegateManager.pyi class Delegate (line 8) | class Delegate: method accepts (line 9) | def accepts(self, node: NodegraphAPI.Node, renderItem): ... method begin (line 10) | def begin(self, node: NodegraphAPI.Node, renderItem): ... method end (line 11) | def end(self, node: NodegraphAPI.Node, renderItem, blindData): ... class IrfException (line 13) | class IrfException(Exception): ... class RenderFiltersDelegate (line 15) | class RenderFiltersDelegate(Delegate): method accepts (line 16) | def accepts(self, node: NodegraphAPI.Node, renderItem): ... method begin (line 17) | def begin(self, node: NodegraphAPI.Node, renderItem): ... method end (line 18) | def end(self, node: NodegraphAPI.Node, renderItem, blindData): ... method getActiveRenderFilterNodes (line 19) | def getActiveRenderFilterNodes(self) -> list[NodegraphAPI.RenderFilter... method setActiveRenderFilterNodes (line 20) | def setActiveRenderFilterNodes(self, nodes: list[NodegraphAPI.RenderFi... function GetRenderFiltersDelegate (line 22) | def GetRenderFiltersDelegate(): ... function RegisterDelegate (line 23) | def RegisterDelegate(nodeType, delegate): ... function RenderPreprocessBegin (line 24) | def RenderPreprocessBegin(renderItem): ... function RenderPreprocessEnd (line 25) | def RenderPreprocessEnd(renderItem, blindData): ... FILE: katana/stubs/PyUtilModule/RenderManager/NodegraphUtils.pyi function ApplyInteractiveRenderDelegates (line 11) | def ApplyInteractiveRenderDelegates(renderPort: NodegraphAPI.Port): ... function BuildRenderPortsAndGraphStatesList (line 12) | def BuildRenderPortsAndGraphStatesList(settings: RenderingSettings, sour... function CollapseNodesAndPorts (line 13) | def CollapseNodesAndPorts(node: NodegraphAPI.Node, port: NodegraphAPI.Po... function CreateRenderNodeParameters (line 14) | def CreateRenderNodeParameters(node: NodegraphAPI.Node, settings: Render... function DisableKatanaNodeGraphEventProcessing (line 15) | def DisableKatanaNodeGraphEventProcessing(): ... function DisconnectInteractiveRenderDelegates (line 16) | def DisconnectInteractiveRenderDelegates(renderPort: NodegraphAPI.Port, ... function GetSourcePortsAndNamesFromLists (line 17) | def GetSourcePortsAndNamesFromLists(nodeList: list[NodegraphAPI.Node | s... function InteractiveRenderDelegatesApplied (line 18) | def InteractiveRenderDelegatesApplied(renderPort: NodegraphAPI.Port) -> ... function IsScriptRender (line 19) | def IsScriptRender(renderPortsAndGraphStates: list[NodegraphAPI.Port]) -... function NotifyIfInteractiveRerender (line 20) | def NotifyIfInteractiveRerender(renderAction, nodeList): ... function _FilterAllNodeGraphEvents (line 21) | def _FilterAllNodeGraphEvents(eventType, eventID, *args, **kwargs): ... FILE: katana/stubs/PyUtilModule/RenderManager/RenderCore.pyi class RenderComponents (line 27) | class RenderComponents: method __init__ (line 28) | def __init__(self) -> None: ... function CancelRender (line 30) | def CancelRender(stallOnCompletion: bool = ..., mainSequenceID: int = ..... function CancelRendersByType (line 31) | def CancelRendersByType(renderType: int, stallOnCompletion: bool = ..., ... function StartRender (line 32) | def StartRender(renderMethodName: str, node: typing.Optional[NodegraphAP... function StartRenderLegacy (line 33) | def StartRenderLegacy(node: typing.Optional[NodegraphAPI.Node] = ..., po... FILE: katana/stubs/PyUtilModule/RenderManager/RenderGlobals.pyi function ClearSequenceIDMaps (line 36) | def ClearSequenceIDMaps(): ... function GetAvailableSampleRates (line 37) | def GetAvailableSampleRates(): ... function GetBuffer2DAutoLock (line 38) | def GetBuffer2DAutoLock(): ... function GetDefaultSampleRate (line 39) | def GetDefaultSampleRate(): ... function GetDiskCachingAllowed (line 40) | def GetDiskCachingAllowed(): ... function GetInteractiveSampleRate (line 41) | def GetInteractiveSampleRate() -> Tuple[float, float]: ... function GetLiveRenderOpTreePath (line 42) | def GetLiveRenderOpTreePath() -> str | None: ... function GetOverscanPadding (line 43) | def GetOverscanPadding() -> Tuple[float, float, float, float]: ... function GetRenderIDPass (line 44) | def GetRenderIDPass(): ... function GetRenderMode (line 45) | def GetRenderMode() -> int: ... function GetRenderNodeTypes (line 46) | def GetRenderNodeTypes(): ... function GetRenderROI (line 47) | def GetRenderROI(resolution: Incomplete | None = ...) -> None: ... function GetRenderRawROI (line 48) | def GetRenderRawROI() -> None: ... function GetRenderUseROI (line 49) | def GetRenderUseROI() -> bool: ... function GetRenderViews (line 50) | def GetRenderViews(): ... function GetRenderViewsAutoUpdate (line 51) | def GetRenderViewsAutoUpdate(): ... function GetRerenderCamera (line 52) | def GetRerenderCamera(renderSettings: Incomplete | None = ...) -> Tuple[... function GetRerenderMode (line 53) | def GetRerenderMode() -> int: ... function GetRerenderNodeName (line 54) | def GetRerenderNodeName() -> str | None: ... function GetRerenderRenderProducer (line 55) | def GetRerenderRenderProducer() -> PyFnGeolibProducers.GeometryProducer ... function GetRerenderRendererName (line 56) | def GetRerenderRendererName() -> str | None: ... function GetSampleRate (line 57) | def GetSampleRate() -> Tuple[float, float]: ... function GetSequenceIDMap (line 58) | def GetSequenceIDMap(mainSequenceID: int) -> collections.OrderedDict: ... function GetTilePrioritizer (line 59) | def GetTilePrioritizer(): ... function IsDefaultROIUsed (line 60) | def IsDefaultROIUsed() -> bool: ... function IsRenderNode (line 61) | def IsRenderNode(nodeType): ... function IsRenderROIAbsolute (line 62) | def IsRenderROIAbsolute() -> bool: ... function IsRerendering (line 63) | def IsRerendering() -> bool: ... function IsSceneGraphMaskEnabled (line 64) | def IsSceneGraphMaskEnabled(): ... function QueryRender (line 65) | def QueryRender(mainSequenceID: int = ...): ... function ResetRenderROI (line 66) | def ResetRenderROI(): ... function ResumeRender (line 67) | def ResumeRender(mainSequenceID: int = ...): ... function SetBuffer2DAutoLock (line 68) | def SetBuffer2DAutoLock(autoLock): ... function SetDiskCachingAllowed (line 69) | def SetDiskCachingAllowed(value): ... function SetInteractiveSampleRate (line 70) | def SetInteractiveSampleRate(newRate: Tuple[float, float]): ... function SetLiveRenderOpTreePath (line 71) | def SetLiveRenderOpTreePath(filepath: str): ... function SetOverscanPadding (line 72) | def SetOverscanPadding(paddingLBRT: Tuple[float, float, float, float]): ... function SetRenderIDPass (line 73) | def SetRenderIDPass(renderIDPass): ... function SetRenderMode (line 74) | def SetRenderMode(renderMode: int): ... function SetRenderROI (line 75) | def SetRenderROI(roi: Tuple[float, float, float, float], absolute: bool ... function SetRenderROIAbsolute (line 76) | def SetRenderROIAbsolute(absolute: bool): ... function SetRenderRawROI (line 77) | def SetRenderRawROI(roi: None): ... function SetRenderUseROI (line 78) | def SetRenderUseROI(useROI: bool): ... function SetRenderViews (line 79) | def SetRenderViews(renderViews): ... function SetRenderViewsAutoUpdate (line 80) | def SetRenderViewsAutoUpdate(value): ... function SetRerenderCamera (line 81) | def SetRerenderCamera(rerenderCameraType: int, rerenderCameraPath: Incom... function SetRerenderMode (line 82) | def SetRerenderMode(renderMode: int): ... function SetRerenderNodeName (line 83) | def SetRerenderNodeName(nodeName: str | None): ... function SetRerendering (line 84) | def SetRerendering(isRerendering: bool): ... function SetSampleRate (line 85) | def SetSampleRate(newRate: Tuple[float, float]): ... function SetTilePrioritizer (line 86) | def SetTilePrioritizer(mode): ... function SuspendRender (line 87) | def SuspendRender(mainSequenceID: int = ...): ... function TriggerManualRender (line 88) | def TriggerManualRender(): ... function UpdateSequenceIDMap (line 89) | def UpdateSequenceIDMap(mainSequenceID: int, outputName: str, sequenceID... FILE: katana/stubs/PyUtilModule/RenderManager/RenderSettings.pyi class RenderingSettings (line 16) | class RenderingSettings: method __init__ (line 19) | def __init__(self) -> None: ... method setDefaults (line 20) | def setDefaults(self): ... function CheckGlobalSettings (line 22) | def CheckGlobalSettings(settings): ... function GetRendererAndSettings (line 23) | def GetRendererAndSettings(settings: RenderingSettings, renderMethodName... FILE: katana/stubs/PyUtilModule/RenderManager/RenderTriggers.pyi function DoesNodeTrigger2DRender (line 9) | def DoesNodeTrigger2DRender(node: NodegraphAPI.Node): ... FILE: katana/stubs/PyUtilModule/RenderManager/ResolutionTableUtils.pyi function GetTempResolutionTablePath (line 7) | def GetTempResolutionTablePath() -> str: ... function SaveResolutionTables (line 8) | def SaveResolutionTables(): ... FILE: katana/stubs/PyUtilModule/RenderManager/ScenegraphUtils.pyi function AddCameraOverrideToRecipe (line 13) | def AddCameraOverrideToRecipe(txn, inputOp, cameraLocationPath): ... function AddRenderOutputsToRecipe (line 14) | def AddRenderOutputsToRecipe(txn: GeolibRuntime.Transaction, op: GeolibR... function AddRenderSettingsToRecipe (line 15) | def AddRenderSettingsToRecipe(txn, renderOp, graphState: NodegraphAPI.Gr... function AddVirtualCameraToRecipe (line 16) | def AddVirtualCameraToRecipe(txn, inputOp, cameraLocationPath): ... function BakeAOVs (line 17) | def BakeAOVs(txn: GeolibRuntimeTransaction, mainSequenceID: int, op: Geo... function GetInteractiveOutputs (line 18) | def GetInteractiveOutputs(client: GeolibRuntime.Client) -> list[str]: ... FILE: katana/stubs/PyUtilModule/RenderingCommon.pyi function GetVirtualCameraAttributes (line 8) | def GetVirtualCameraAttributes() -> PyFnAttribute.GroupAttribute | None:... function SetVirtualCameraAttributes (line 9) | def SetVirtualCameraAttributes(attributes: PyFnAttribute.GroupAttribute ... FILE: katana/stubs/PyUtilModule/ScenegraphBookmarkManager.pyi function CreateLastFileSaveBookmark (line 11) | def CreateLastFileSaveBookmark(): ... function CreateScenegraphBookmark (line 12) | def CreateScenegraphBookmark(bookmarkName: str, openSet: set[str], selec... function CreateWorkingSetsBookmark (line 13) | def CreateWorkingSetsBookmark(bookmarkName: str, workingSetNames: Incomp... function DeleteScenegraphBookmark (line 14) | def DeleteScenegraphBookmark(bookmarkName: str): ... function GetScenegraphBookmarkXML (line 15) | def GetScenegraphBookmarkXML() -> str: ... function GetScenegraphBookmarks (line 16) | def GetScenegraphBookmarks() -> list[dict]: ... function GetScenegraphFolders (line 17) | def GetScenegraphFolders() -> list[str]: ... function ImportScenegraphBookmarkXML (line 18) | def ImportScenegraphBookmarkXML(xml: str): ... function LoadBookmark (line 19) | def LoadBookmark(bookmarkDict: dict, workingSetNames: Incomplete | None ... FILE: katana/stubs/PyUtilModule/ScenegraphUtils.pyi function AbbreviateScenegraphLocations (line 5) | def AbbreviateScenegraphLocations(locArray): ... function FindCommonScenegraphRoot (line 6) | def FindCommonScenegraphRoot(locArray): ... FILE: katana/stubs/PyUtilModule/Shelves.pyi class Shelf (line 16) | class Shelf: method __init__ (line 17) | def __init__(self, name, path, shelfType, shelfTypeStr: Incomplete | N... method _Shelf__triggerChange (line 18) | def _Shelf__triggerChange(self): ... method append (line 19) | def append(self, item): ... method createItem (line 20) | def createItem(self, name: str, description: str, keyboardShortcut: st... method createNewItem (line 21) | def createNewItem(self, name, desc, dropTypes, icon): ... method find (line 22) | def find(self, name): ... method getEditable (line 23) | def getEditable(self): ... method getItems (line 24) | def getItems(self): ... method getName (line 25) | def getName(self): ... method getPath (line 26) | def getPath(self): ... method getType (line 27) | def getType(self): ... method getTypeStr (line 28) | def getTypeStr(self): ... method load (line 29) | def load(self): ... method remove (line 30) | def remove(self, item): ... method replace (line 31) | def replace(self, oldItem, newItem): ... class ShelfItem (line 33) | class ShelfItem: method __init__ (line 35) | def __init__(self, name: str, icon: str, keyboardShortcut: str, descri... method _ShelfItem__isScopeValid (line 36) | def _ShelfItem__isScopeValid(self, nodeTypes: list) -> bool: ... method deleteSourceFile (line 37) | def deleteSourceFile(self): ... method getCode (line 38) | def getCode(self): ... method getDescription (line 39) | def getDescription(self): ... method getDropTypes (line 40) | def getDropTypes(self): ... method getIconName (line 41) | def getIconName(self): ... method getKeyboardShortcut (line 42) | def getKeyboardShortcut(self) -> str: ... method getName (line 43) | def getName(self): ... method getScope (line 44) | def getScope(self): ... method getSourceFile (line 45) | def getSourceFile(self): ... method getSourceFilename (line 46) | def getSourceFilename(self): ... method run (line 47) | def run(self, additionalEnvironment: Incomplete | None = ..., checkSco... method setKeyboardShortcut (line 48) | def setKeyboardShortcut(self, shortcut: str): ... method setScope (line 49) | def setScope(self, scope: list): ... method sourceFileExists (line 50) | def sourceFileExists(self): ... function CreateShelfItem (line 52) | def CreateShelfItem(shelfItemFilename): ... function CreateUserShelf (line 53) | def CreateUserShelf(shelfName, suffix: str = ...): ... function GetBuiltinShelves (line 54) | def GetBuiltinShelves(): ... function GetShelves2 (line 55) | def GetShelves2(forceReload: bool = ...): ... function GetShelvesWithSuffix (line 56) | def GetShelvesWithSuffix(suffix, forceReload: bool = ...): ... function GetUserShelves (line 57) | def GetUserShelves(suffix: str = ...): ... function ParseFile (line 58) | def ParseFile(filename: str) -> dict: ... function RegisterPrintHandler (line 59) | def RegisterPrintHandler(callback): ... function RegisterShelfTypeCallback (line 60) | def RegisterShelfTypeCallback(callback): ... function ShelfPrint (line 61) | def ShelfPrint(message, important: bool = ...): ... FILE: katana/stubs/PyUtilModule/StartupScripts.pyi function Run (line 6) | def Run(): ... FILE: katana/stubs/PyUtilModule/SuperToolPlugins.pyi function GetSuperToolPluginEditor (line 9) | def GetSuperToolPluginEditor(name): ... function GetSuperToolPluginNode (line 10) | def GetSuperToolPluginNode(name): ... function LoadSuperToolPlugins (line 11) | def LoadSuperToolPlugins(loadEditors: bool = ...): ... FILE: katana/stubs/PyUtilModule/UndoEntries.pyi class _FloatVectorStateAtTime (line 14) | class _FloatVectorStateAtTime: method __init__ (line 15) | def __init__(self, parameter, time) -> None: ... class node_addInputPort_UndoEntry (line 17) | class node_addInputPort_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 18) | def __init__(self, nodeName, portName, portIndex) -> None: ... method getName (line 19) | def getName(self): ... method redo (line 20) | def redo(self): ... method undo (line 21) | def undo(self): ... class node_addOutputPort_UndoEntry (line 23) | class node_addOutputPort_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 24) | def __init__(self, nodeName, portName, portIndex) -> None: ... method getName (line 25) | def getName(self): ... method redo (line 26) | def redo(self): ... method undo (line 27) | def undo(self): ... class node_create_UndoEntry (line 29) | class node_create_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 30) | def __init__(self, nodeName, nodeType) -> None: ... method getName (line 31) | def getName(self): ... method redo (line 32) | def redo(self): ... method undo (line 33) | def undo(self): ... class node_delete_UndoEntry (line 35) | class node_delete_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 36) | def __init__(self, nodeName, nodeParentName, xmlElement, locked) -> No... method getName (line 37) | def getName(self): ... method redo (line 38) | def redo(self): ... method undo (line 39) | def undo(self): ... class node_paste_UndoEntry (line 41) | class node_paste_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 42) | def __init__(self, nodeNames, nodeParentName, xmlElement) -> None: ... method redo (line 43) | def redo(self): ... method undo (line 44) | def undo(self): ... class node_removeInputPort_UndoEntry (line 46) | class node_removeInputPort_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 47) | def __init__(self, nodeName, portName, portIndex, portMetadata, portTa... method getName (line 48) | def getName(self): ... method redo (line 49) | def redo(self): ... method undo (line 50) | def undo(self): ... class node_removeOutputPort_UndoEntry (line 52) | class node_removeOutputPort_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 53) | def __init__(self, nodeName, portName, portIndex, portMetadata, portTa... method getName (line 54) | def getName(self): ... method redo (line 55) | def redo(self): ... method undo (line 56) | def undo(self): ... class node_renameInputPort_UndoEntry (line 58) | class node_renameInputPort_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 59) | def __init__(self, nodeName, oldPortName, newPortName) -> None: ... method getName (line 60) | def getName(self): ... method redo (line 61) | def redo(self): ... method undo (line 62) | def undo(self): ... class node_renameOutputPort_UndoEntry (line 64) | class node_renameOutputPort_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 65) | def __init__(self, nodeName, oldPortName, newPortName) -> None: ... method getName (line 66) | def getName(self): ... method redo (line 67) | def redo(self): ... method undo (line 68) | def undo(self): ... class node_setAutoRenameAllowed_UndoEntry (line 70) | class node_setAutoRenameAllowed_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 71) | def __init__(self, nodeName, value) -> None: ... method getName (line 72) | def getName(self): ... method redo (line 73) | def redo(self): ... method undo (line 74) | def undo(self): ... class node_setBypassRouting_UndoEntry (line 76) | class node_setBypassRouting_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 77) | def __init__(self, nodeName, oldVal, newVal) -> None: ... method getName (line 78) | def getName(self): ... method redo (line 79) | def redo(self): ... method undo (line 80) | def undo(self): ... class node_setBypassed_UndoEntry (line 82) | class node_setBypassed_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 83) | def __init__(self, nodeName, bypassValue) -> None: ... method getName (line 84) | def getName(self): ... method redo (line 85) | def redo(self): ... method undo (line 86) | def undo(self): ... class node_setName_UndoEntry (line 88) | class node_setName_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 89) | def __init__(self, undoName, redoName) -> None: ... method getName (line 90) | def getName(self): ... method redo (line 91) | def redo(self): ... method undo (line 92) | def undo(self): ... class node_setParent_UndoEntry (line 94) | class node_setParent_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 95) | def __init__(self, nodeName, undoParentName, redoParentName) -> None: ... method getName (line 96) | def getName(self): ... method redo (line 97) | def redo(self): ... method undo (line 98) | def undo(self): ... class node_setPosition_UndoEntry (line 100) | class node_setPosition_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 101) | def __init__(self, nodeName, oldPosition, newPosition) -> None: ... method getName (line 102) | def getName(self): ... method redo (line 103) | def redo(self): ... method undo (line 104) | def undo(self): ... class node_setThumbnailEnabled_UndoEntry (line 106) | class node_setThumbnailEnabled_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 107) | def __init__(self, nodeName, newValue, oldValue) -> None: ... method getName (line 108) | def getName(self): ... method redo (line 109) | def redo(self): ... method undo (line 110) | def undo(self): ... class node_setType_UndoEntry (line 112) | class node_setType_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 113) | def __init__(self, nodeName, oldType, newType) -> None: ... method getName (line 114) | def getName(self): ... method redo (line 115) | def redo(self): ... method undo (line 116) | def undo(self): ... class node_shapeAttrsChanged_UndoEntry (line 118) | class node_shapeAttrsChanged_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 119) | def __init__(self, nodeName, oldAttrs, newAttrs) -> None: ... method _node_shapeAttrsChanged_UndoEntry__setAttrs (line 120) | def _node_shapeAttrsChanged_UndoEntry__setAttrs(self, attrs, otherAttr... method getName (line 121) | def getName(self): ... method redo (line 122) | def redo(self): ... method undo (line 123) | def undo(self): ... class parameter_createChild_UndoEntry (line 125) | class parameter_createChild_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 126) | def __init__(self, parameterFullName, element, index) -> None: ... method getName (line 127) | def getName(self): ... method redo (line 128) | def redo(self): ... method undo (line 129) | def undo(self): ... class parameter_deleteChild_UndoEntry (line 131) | class parameter_deleteChild_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 132) | def __init__(self, parameterFullName, element, childName, index) -> No... method getName (line 133) | def getName(self): ... method redo (line 134) | def redo(self): ... method undo (line 135) | def undo(self): ... class parameter_floatVector_setValue_UndoEntry (line 137) | class parameter_floatVector_setValue_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 138) | def __init__(self, parameterFullName, undoState, redoState) -> None: ... method _parameter_floatVector_setValue_UndoEntry__applyState (line 139) | def _parameter_floatVector_setValue_UndoEntry__applyState(self, state)... method getName (line 140) | def getName(self): ... method redo (line 141) | def redo(self): ... method undo (line 142) | def undo(self): ... class parameter_reorderChild_UndoEntry (line 144) | class parameter_reorderChild_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 145) | def __init__(self, parameterFullName, oldIndex, newIndex) -> None: ... method getName (line 146) | def getName(self): ... method redo (line 147) | def redo(self): ... method undo (line 148) | def undo(self): ... class parameter_reorderChildren_UndoEntry (line 150) | class parameter_reorderChildren_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 151) | def __init__(self, parameterFullName, oldIndex, newIndex, count) -> No... method getName (line 152) | def getName(self): ... method redo (line 153) | def redo(self): ... method undo (line 154) | def undo(self): ... class parameter_reparentAtomic_UndoEntry (line 156) | class parameter_reparentAtomic_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 157) | def __init__(self, nodeName, paramName, newParamName, oldParentName, o... method doReparent (line 158) | def doReparent(self, fromParentName, fromName, toParentName, toIndex, ... method getName (line 159) | def getName(self): ... method redo (line 160) | def redo(self): ... method undo (line 161) | def undo(self): ... class parameter_replaceXML_UndoEntry (line 163) | class parameter_replaceXML_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 164) | def __init__(self, parameterFullName, undoXML, redoXML) -> None: ... method getName (line 165) | def getName(self): ... method redo (line 166) | def redo(self): ... method undo (line 167) | def undo(self): ... class parameter_setName_UndoEntry (line 169) | class parameter_setName_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 170) | def __init__(self, parameterParentFullName, undoName, redoName) -> Non... method getName (line 171) | def getName(self): ... method redo (line 172) | def redo(self): ... method undo (line 173) | def undo(self): ... class parameter_setValue_UndoEntry (line 175) | class parameter_setValue_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 176) | def __init__(self, parameterFullName, undoXML, redoXML) -> None: ... method getName (line 177) | def getName(self): ... method redo (line 178) | def redo(self): ... method undo (line 179) | def undo(self): ... class port_connect_UndoEntry (line 181) | class port_connect_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 182) | def __init__(self, nodeNameA: str, portNameA: str, nodeNameB: str, por... method getName (line 183) | def getName(self): ... method redo (line 184) | def redo(self): ... method undo (line 185) | def undo(self): ... class port_disconnect_UndoEntry (line 187) | class port_disconnect_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 188) | def __init__(self, nodeNameA, portNameA, nodeNameB, portNameB, portA, ... method getName (line 189) | def getName(self): ... method redo (line 190) | def redo(self): ... method undo (line 191) | def undo(self): ... class port_metadataUpdated_UndoEntry (line 193) | class port_metadataUpdated_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 194) | def __init__(self, port: NodegraphAPI.Port, oldMetadata, newMetadata) ... method _port_metadataUpdated_UndoEntry__clearMetadata (line 195) | def _port_metadataUpdated_UndoEntry__clearMetadata(self): ... method getName (line 196) | def getName(self): ... method getNode (line 197) | def getNode(self) -> NodegraphAPI.Node: ... method getPort (line 198) | def getPort(self): ... method redo (line 199) | def redo(self): ... method undo (line 200) | def undo(self): ... class port_setTags_UndoEntry (line 202) | class port_setTags_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 203) | def __init__(self, port: NodegraphAPI.Port, newTags, oldTags) -> None:... method getName (line 204) | def getName(self): ... method getPort (line 205) | def getPort(self) -> NodegraphAPI.Port | None: ... method redo (line 206) | def redo(self): ... method undo (line 207) | def undo(self): ... class roto_event_UndoEntry (line 209) | class roto_event_UndoEntry(Utils.UndoStack.UndoEntry): method __init__ (line 210) | def __init__(self, rotoUE, nodeName) -> None: ... method getName (line 211) | def getName(self): ... method redo (line 212) | def redo(self): ... method undo (line 213) | def undo(self): ... function _Undo_Filter (line 215) | def _Undo_Filter(eventType, eventID, **kwargs): ... function __node_addInputPort_Undo (line 216) | def __node_addInputPort_Undo(eventType, eventID, nodeName, portName, por... function __node_addOutputPort_Undo (line 217) | def __node_addOutputPort_Undo(eventType, eventID, nodeName, portName, po... function __node_beginRemoveInputPort_Undo (line 218) | def __node_beginRemoveInputPort_Undo(eventType, eventID, nodeName, portN... function __node_create_Undo (line 219) | def __node_create_Undo(eventType, eventID, node: NodegraphAPI.Node, node... function __node_paste_Undo (line 220) | def __node_paste_Undo(eventType, eventID, nodeNames, nodeParentName, xml... function __node_removeInputPort_Undo (line 221) | def __node_removeInputPort_Undo(eventType, eventID, nodeName, portName, ... function __node_removeOutputPort_Undo (line 222) | def __node_removeOutputPort_Undo(eventType, eventID, nodeName, portName,... function __node_renameInputPort_Undo (line 223) | def __node_renameInputPort_Undo(eventType, eventID, nodeName, oldPortNam... function __node_renameOutputPort_Undo (line 224) | def __node_renameOutputPort_Undo(eventType, eventID, nodeName, oldPortNa... function __node_setAutoRenameAllowed_Undo (line 225) | def __node_setAutoRenameAllowed_Undo(eventType, eventID, node: Nodegraph... function __node_setBypassRouting_Undo (line 226) | def __node_setBypassRouting_Undo(eventType, eventID, node: NodegraphAPI.... function __node_setBypassed_Undo (line 227) | def __node_setBypassed_Undo(eventType, eventID, node: NodegraphAPI.Node,... function __node_setName_Undo (line 228) | def __node_setName_Undo(eventType, eventID, node: NodegraphAPI.Node, new... function __node_setParent_Undo (line 229) | def __node_setParent_Undo(eventType, eventID, nodeName, oldParentName, n... function __node_setPosition_Undo (line 230) | def __node_setPosition_Undo(eventType, eventID, nodeName, oldPosition, n... function __node_setThumbnailEnabled_Undo (line 231) | def __node_setThumbnailEnabled_Undo(eventType, eventID, node: NodegraphA... function __node_setType_Undo (line 232) | def __node_setType_Undo(eventType, eventID, node: NodegraphAPI.Node, nod... function __node_shapeAttrsChanged_Undo (line 233) | def __node_shapeAttrsChanged_Undo(eventType, eventID, nodeName, oldAttrs... function __parameter_createChild_Undo (line 234) | def __parameter_createChild_Undo(eventType, eventID, param, paramName, c... function __parameter_deleteChild_Undo (line 235) | def __parameter_deleteChild_Undo(eventType, eventID, param, paramName, e... function __parameter_reorderChild_Undo (line 236) | def __parameter_reorderChild_Undo(eventType, eventID, paramName, oldInde... function __parameter_reorderChildren_Undo (line 237) | def __parameter_reorderChildren_Undo(eventType, eventID, paramName, oldI... function __parameter_reparentAtomic_Undo (line 238) | def __parameter_reparentAtomic_Undo(eventType, eventID, param, paramName... function __parameter_replaceXML_Undo (line 239) | def __parameter_replaceXML_Undo(eventType, eventID, param, oldXML, newXM... function __parameter_setName_Undo (line 240) | def __parameter_setName_Undo(eventType, eventID, paramParentName, oldNam... function __port_connect_Undo (line 241) | def __port_connect_Undo(eventType, eventID, portA, nodeNameA, portNameA,... function __port_disconnect_Undo (line 242) | def __port_disconnect_Undo(eventType, eventID, portA, nodeNameA, portNam... function __port_metadataUpdated_Undo (line 243) | def __port_metadataUpdated_Undo(_eventType, _eventID, port: NodegraphAPI... function __port_setTags_Undo (line 244) | def __port_setTags_Undo(eventType, eventID, nodeName, port: NodegraphAPI... function __roto_event_Undo (line 245) | def __roto_event_Undo(eventType, eventID, rotoUE, nodeName, **kwargs): ... FILE: katana/stubs/PyUtilModule/UserNodes.pyi function ParseMacroFilename (line 8) | def ParseMacroFilename(filename: str) -> Tuple[str, str]: ... function PublishNode (line 9) | def PublishNode(node: NodegraphAPI.Node, filename: str): ... function ReloadCustomNodes (line 10) | def ReloadCustomNodes(): ... FILE: katana/stubs/PyUtilModule/WorkingSet.pyi class LocationStateMap (line 10) | class LocationStateMap(dict): method __init__ (line 11) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _LocationStateMap__tokenizeLocationPath (line 12) | def _LocationStateMap__tokenizeLocationPath(self, locationPath: str) -... method deleteSubTree (line 13) | def deleteSubTree(self, locationPath: str, deleteRoot: bool = ...): ... method get (line 14) | def get(self, key: str, default: Incomplete | None = ...) -> Any: ... method getNearestSubTree (line 15) | def getNearestSubTree(self, locationPath: str) -> Tuple[LocationStateM... method getSubTree (line 16) | def getSubTree(self, locationPath: str) -> LocationStateMap | None: ... method items (line 17) | def items(self, rootPath: Incomplete | None = ...) -> typing.Iterator:... method keys (line 18) | def keys(self, rootPath: Incomplete | None = ...) -> typing.Iterator: ... method pop (line 19) | def pop(self, key: str, *args) -> Any: ... method values (line 20) | def values(self, rootPath: Incomplete | None = ...) -> typing.Iterator... method __contains__ (line 21) | def __contains__(self, key: str) -> bool: ... method __delitem__ (line 22) | def __delitem__(self, key: str): ... method __getitem__ (line 23) | def __getitem__(self, key: str) -> Any: ... method __iter__ (line 24) | def __iter__(self) -> typing.Iterator: ... method __len__ (line 25) | def __len__(self, rootPath: Incomplete | None = ...) -> int: ... method __setitem__ (line 26) | def __setitem__(self, key: str, value: object) -> None: ... class WorkingSet (line 28) | class WorkingSet: class State (line 29) | class State: method coerceToBitmask (line 36) | def coerceToBitmask(cls, bitmaskOrStates: int | list[int | None]) ->... method fromStateString (line 38) | def fromStateString(cls, stateString: str) -> int | None: ... method getBitmaskFromStates (line 40) | def getBitmaskFromStates(cls, states: list[int]) -> int: ... method getStateString (line 42) | def getStateString(cls, state: int) -> str: ... method getStatesFromBitmask (line 44) | def getStatesFromBitmask(cls, bitmask: int) -> list[int]: ... method getValidStates (line 46) | def getValidStates(cls) -> list[int]: ... method getValidStatesBitmask (line 48) | def getValidStatesBitmask(cls) -> int: ... method validate (line 50) | def validate(cls, state: int): ... method __init__ (line 51) | def __init__(self) -> None: ... method _WorkingSet__checkCallback (line 52) | def _WorkingSet__checkCallback(self, callback: typing.Callable, expect... method _callAllowedStatesChangedCallbacks (line 53) | def _callAllowedStatesChangedCallbacks(self, sender): ... method _callLocationStateChangedCallbacks (line 54) | def _callLocationStateChangedCallbacks(self, locationStateChanges, sen... method _callWorkingSetClearedCallbacks (line 55) | def _callWorkingSetClearedCallbacks(self): ... method addAllowedStatesChangedCallback (line 56) | def addAllowedStatesChangedCallback(self, callback: typing.Callable): ... method addLocationStateChangedCallback (line 57) | def addLocationStateChangedCallback(self, callback: typing.Callable): ... method addWorkingSetClearedCallback (line 58) | def addWorkingSetClearedCallback(self, callback: typing.Callable): ... method asGroupAttribute (line 59) | def asGroupAttribute(self) -> PyFnAttribute.GroupAttribute: ... method clear (line 60) | def clear(self, clearAllowedStates: bool = ..., sender: Incomplete | N... method clearLocations (line 61) | def clearLocations(self, locationPathOrPaths: str | list[str], clearAl... method containsLocation (line 62) | def containsLocation(self, locationPath: str) -> bool: ... method excludeLocations (line 63) | def excludeLocations(self, locationPathOrPaths: str | list[str], allow... method excludeLocationsWithChildren (line 64) | def excludeLocationsWithChildren(self, locationPathOrPaths: str | list... method fromGroupAttribute (line 66) | def fromGroupAttribute(cls, groupAttribute: PyFnAttribute.GroupAttribu... method getAllowedStates (line 67) | def getAllowedStates(self) -> list[int]: ... method getLocationAllowedStates (line 68) | def getLocationAllowedStates(self, locationPath: str) -> list[int]: ... method getLocationState (line 69) | def getLocationState(self, locationPath: str) -> int: ... method getLocations (line 70) | def getLocations(self, rootPath: Incomplete | None = ...) -> list[str]... method getLocationsAndStates (line 71) | def getLocationsAndStates(self, rootPath: Incomplete | None = ...) -> ... method getLocationsByState (line 72) | def getLocationsByState(self, state: int, rootPath: Incomplete | None ... method getMinimumAllowedStateForLocation (line 73) | def getMinimumAllowedStateForLocation(self, locationPath: str) -> int ... method getNumLocations (line 74) | def getNumLocations(self, rootPath: Incomplete | None = ...) -> int: ... method getRootLocations (line 75) | def getRootLocations(self) -> list[str]: ... method includeLocations (line 76) | def includeLocations(self, locationPathOrPaths: str | list[str], allow... method includeLocationsWithChildren (line 77) | def includeLocationsWithChildren(self, locationPathOrPaths: str | list... method isIncludedLeafLocation (line 78) | def isIncludedLeafLocation(self, locationPath: str) -> bool: ... method isStateAllowed (line 79) | def isStateAllowed(self, state: int) -> bool: ... method isStateAllowedForLocation (line 80) | def isStateAllowedForLocation(self, locationPath: str, state: int) -> ... method iterateLocationAncestors (line 81) | def iterateLocationAncestors(self, locationPath: str, includeLocation:... method matchesAnyChildren (line 82) | def matchesAnyChildren(self, locationPath: str, checkInheritance: bool... method matchesChildrenByInheritance (line 83) | def matchesChildrenByInheritance(self, locationPath: str) -> bool: ... method matchesLocation (line 84) | def matchesLocation(self, locationPath: str) -> bool: ... method removeAllCallbacks (line 85) | def removeAllCallbacks(self): ... method removeAllowedStatesChangedCallback (line 86) | def removeAllowedStatesChangedCallback(self, callback: typing.Callable... method removeLocationStateChangedCallback (line 87) | def removeLocationStateChangedCallback(self, callback: typing.Callable... method removeWorkingSetClearedCallback (line 88) | def removeWorkingSetClearedCallback(self, callback: typing.Callable): ... method setAllowedStates (line 89) | def setAllowedStates(self, allowedStates: int | list[int | None], send... method setLocationAllowedStates (line 90) | def setLocationAllowedStates(self, locationPathOrPaths: str | list[str... method setLocationStates (line 91) | def setLocationStates(self, locationPathOrPaths: str | list[str], stat... FILE: katana/stubs/PyUtilModule/WorkingSetClient.pyi class WorkingSetClient (line 12) | class WorkingSetClient: method __init__ (line 15) | def __init__(self, txn: PyFnGeolib.GeolibRuntimeTransaction, op: PyFnG... method _WorkingSetClient__applyWorkingSetToClient (line 16) | def _WorkingSetClient__applyWorkingSetToClient(self): ... method _WorkingSetClient__locationStateChangedCallback (line 17) | def _WorkingSetClient__locationStateChangedCallback(self, stateChanges... method _WorkingSetClient__openIncludedWithChildrenLocations (line 18) | def _WorkingSetClient__openIncludedWithChildrenLocations(self, locatio... method eventsFiltered (line 19) | def eventsFiltered(self) -> bool: ... method forceAsyncCookLocation (line 20) | def forceAsyncCookLocation(self, locationPath: str): ... method getLocationEvents (line 21) | def getLocationEvents(self, maxEvents: Incomplete | None = ...) -> lis... method getProducerAtLocation (line 22) | def getProducerAtLocation(self, locationPath: str, producerType: str =... method getWorkingSet (line 23) | def getWorkingSet(self) -> PyUtilModule.WorkingSet.WorkingSet | None: ... method removeWorkingSet (line 24) | def removeWorkingSet(self, openLocations: Incomplete | None = ..., act... method setEventsFiltered (line 25) | def setEventsFiltered(self, eventsFiltered: bool): ... method setOp (line 26) | def setOp(self, transaction: PyFnGeolib.GeolibRuntimeTransaction, op: ... method setWorkingSet (line 27) | def setWorkingSet(self, workingSet: WorkingSet): ... method updateFollowingPotentialOpChange (line 28) | def updateFollowingPotentialOpChange(self): ... method __dir__ (line 29) | def __dir__(self) -> list[str]: ... method __getattr__ (line 30) | def __getattr__(self, name): ... FILE: katana/stubs/PyUtilModule/WorkingSetManager.pyi class WorkingSetManager (line 10) | class WorkingSetManager: method _WorkingSetManager__onSceneLoadOrNewScene (line 21) | def _WorkingSetManager__onSceneLoadOrNewScene(cls, **kwargs): ... method clearOnSceneChangeCallback (line 23) | def clearOnSceneChangeCallback(cls): ... method clearWorkingSetOnSceneChange (line 25) | def clearWorkingSetOnSceneChange(cls, workingSetName: str): ... method deleteWorkingSet (line 27) | def deleteWorkingSet(name: str): ... method getOrCreateWorkingSet (line 29) | def getOrCreateWorkingSet(name: str, sender: Incomplete | None = ...) ... method getPersistentWorkingSetNames (line 31) | def getPersistentWorkingSetNames() -> list[str]: ... method getWorkingSetNames (line 33) | def getWorkingSetNames() -> list[str]: ... method isWorkingSetPersistent (line 35) | def isWorkingSetPersistent(name: str) -> bool: ... method setOnSceneChangeCallback (line 37) | def setOnSceneChangeCallback(cls, callback: typing.Callable): ... method setOpArgs (line 39) | def setOpArgs(op: FnGeolibOp, opArgName: str, workingSetName: str, txn... method setWorkingSetPersistent (line 41) | def setWorkingSetPersistent(name: str, persistent: bool = ...): ... FILE: katana/stubs/PyUtilModule/__init__.pyi function Initialize (line 9) | def Initialize(): ... FILE: katana/stubs/PyXmlIO/__init__.pyi class Element (line 5) | class Element: method __init__ (line 6) | def __init__(self, arg0: str) -> None: ... method addChild (line 8) | def addChild(self, arg0: Element) -> Element: ... method addChild (line 10) | def addChild(self, arg0: Element, arg1: int) -> Element: ... method addText (line 11) | def addText(self, arg0: str) -> None: ... method copy (line 12) | def copy(self) -> Element: ... method deleteAttr (line 13) | def deleteAttr(self, arg0: str) -> None: ... method getAttr (line 14) | def getAttr(self, arg0: str) -> str: ... method getAttrDict (line 15) | def getAttrDict(self) -> dict: ... method getAttrNames (line 16) | def getAttrNames(self) -> list[str]: ... method getChild (line 17) | def getChild(self, arg0: int) -> Element: ... method getElementType (line 18) | def getElementType(self) -> str: ... method getNumberOfChildren (line 19) | def getNumberOfChildren(self) -> int: ... method getOpaqueElement (line 20) | def getOpaqueElement(self) -> OpaqueElement: ... method getText (line 21) | def getText(self, arg0: int) -> str: ... method hasAttr (line 22) | def hasAttr(self, arg0: str) -> bool: ... method hasText (line 23) | def hasText(self, arg0: int) -> bool: ... method isTypeOf (line 24) | def isTypeOf(self, arg0: str) -> bool: ... method removeAllChildren (line 25) | def removeAllChildren(self) -> None: ... method removeChild (line 26) | def removeChild(self, arg0: int) -> None: ... method setAttr (line 27) | def setAttr(self, arg0: str, arg1: object) -> None: ... method setElementType (line 28) | def setElementType(self, arg0: str) -> None: ... method setText (line 29) | def setText(self, arg0: str, arg1: int) -> None: ... method write (line 31) | def write(self, file: str, outputStyles=...) -> None: ... method write (line 33) | def write(self, file: object, outputStyles=...) -> None: ... method writeString (line 34) | def writeString(self, outputStyles=...) -> str: ... method __bool__ (line 35) | def __bool__(self) -> bool: ... method __contains__ (line 36) | def __contains__(self, other: str) -> bool: ... method __delitem__ (line 37) | def __delitem__(self, other: str) -> None: ... method __getitem__ (line 38) | def __getitem__(self, index: str) -> str: ... method __iter__ (line 39) | def __iter__(self) -> Element_iter: ... method __len__ (line 40) | def __len__(self) -> int: ... method __setitem__ (line 41) | def __setitem__(self, index: str, object: object) -> None: ... class Element_iter (line 43) | class Element_iter: method __init__ (line 44) | def __init__(self, *args, **kwargs) -> None: ... method __next__ (line 45) | def __next__(self): ... class OpaqueElement (line 47) | class OpaqueElement: method __init__ (line 48) | def __init__(self) -> None: ... method getElement (line 49) | def getElement(self, *args, **kwargs): ... method getSize (line 50) | def getSize(self) -> int: ... method getUncompressedSize (line 51) | def getUncompressedSize(self) -> int: ... class OutputStyles (line 53) | class OutputStyles: method __init__ (line 54) | def __init__(self) -> None: ... method addToAttrOrder (line 55) | def addToAttrOrder(self, arg0: str, arg1: str) -> None: ... method clearAttrOrder (line 56) | def clearAttrOrder(self, arg0: str) -> None: ... method deleteStyle (line 57) | def deleteStyle(self, arg0: str) -> None: ... method getAttrOrder (line 58) | def getAttrOrder(self, arg0: str) -> list[str]: ... method getStyleNames (line 59) | def getStyleNames(self) -> list[str]: ... method hasStyle (line 60) | def hasStyle(self, arg0: str) -> bool: ... class Parser (line 62) | class Parser: method __init__ (line 63) | def __init__(self) -> None: ... method getParseDepthLimit (line 64) | def getParseDepthLimit(self) -> int: ... method getParsedByteOffsetBegin (line 65) | def getParsedByteOffsetBegin(self, arg0: Element) -> int: ... method getParsedByteOffsetEnd (line 66) | def getParsedByteOffsetEnd(self, arg0: Element) -> int: ... method isByteOffsetRecordingEnabled (line 67) | def isByteOffsetRecordingEnabled(self) -> bool: ... method isTextParsingEnabled (line 68) | def isTextParsingEnabled(self) -> bool: ... method parse (line 70) | def parse(self, arg0: str) -> Element: ... method parse (line 72) | def parse(self, arg0: object) -> Element: ... method parseString (line 73) | def parseString(self, arg0: str) -> Element: ... method setByteOffsetRecordingEnabled (line 74) | def setByteOffsetRecordingEnabled(self, arg0: bool) -> None: ... method setParseDepthLimit (line 75) | def setParseDepthLimit(self, arg0: int) -> None: ... method setTextParsingEnabled (line 76) | def setTextParsingEnabled(self, arg0: bool) -> None: ... FILE: katana/stubs/QT4Browser/BrowserFiltering.pyi function Match (line 5) | def Match(string, filter): ... function MatchWithDescription (line 6) | def MatchWithDescription(string, filter): ... FILE: katana/stubs/QT4Browser/BrowserSettings.pyi function GetBrowserSettings (line 6) | def GetBrowserSettings(): ... function LoadFrameGeometry (line 7) | def LoadFrameGeometry(widget, group): ... function SaveFrameGeometry (line 8) | def SaveFrameGeometry(widget, group): ... FILE: katana/stubs/QT4Browser/FileBrowser.pyi class FileBrowser (line 16) | class FileBrowser(PyQt5.QtWidgets.QFrame): method __init__ (line 18) | def __init__(self, *args, **kargs) -> None: ... method _FileBrowser__connect (line 19) | def _FileBrowser__connect(self): ... method _FileBrowser__dirFilterChanged (line 20) | def _FileBrowser__dirFilterChanged(self, filterText): ... method _FileBrowser__doubleclick_filename (line 21) | def _FileBrowser__doubleclick_filename(self, fileNameQStr): ... method _FileBrowser__fileFilterChanged (line 22) | def _FileBrowser__fileFilterChanged(self, filterText): ... method _FileBrowser__locationEntered (line 23) | def _FileBrowser__locationEntered(self): ... method _FileBrowser__setup_children (line 24) | def _FileBrowser__setup_children(self): ... method _FileBrowser__setup_layout (line 25) | def _FileBrowser__setup_layout(self): ... method _FileBrowser__singleclick_filename (line 26) | def _FileBrowser__singleclick_filename(self, fileNameQStr): ... method canAccept (line 27) | def canAccept(self): ... method commitCurrentLocation (line 28) | def commitCurrentLocation(self): ... method currentLocation (line 29) | def currentLocation(self): ... method dirsOnly (line 30) | def dirsOnly(self): ... method fileFilter (line 31) | def fileFilter(self): ... method hideEvent (line 32) | def hideEvent(self, event): ... method loadSettings (line 33) | def loadSettings(self): ... method saveSettings (line 34) | def saveSettings(self): ... method selectFileFilter (line 35) | def selectFileFilter(self, filterText): ... method setCurrentLocation (line 36) | def setCurrentLocation(self, loc): ... method setDirFilter (line 37) | def setDirFilter(self, filterText): ... method setDirsOnly (line 38) | def setDirsOnly(self, dirsOnly): ... method setFileFilter (line 39) | def setFileFilter(self, filterText): ... method setPreview (line 40) | def setPreview(self, preview): ... method setShowHidden (line 41) | def setShowHidden(self, flag): ... method setShowSequence (line 42) | def setShowSequence(self, flag): ... method setToDefaultLocation (line 43) | def setToDefaultLocation(self): ... method showEvent (line 44) | def showEvent(self, event): ... method showHidden (line 45) | def showHidden(self): ... method showSequence (line 46) | def showSequence(self): ... class _DirectoryCombo (line 48) | class _DirectoryCombo(PyQt5.QtWidgets.QFrame): method __init__ (line 54) | def __init__(self, *args) -> None: ... method _DirectoryCombo__addToRecent (line 55) | def _DirectoryCombo__addToRecent(self, location): ... method _DirectoryCombo__back_clicked (line 56) | def _DirectoryCombo__back_clicked(self): ... method _DirectoryCombo__item_completing (line 57) | def _DirectoryCombo__item_completing(self, dirQStr): ... method _DirectoryCombo__item_selected (line 58) | def _DirectoryCombo__item_selected(self, dirQStr): ... method _DirectoryCombo__up_clicked (line 59) | def _DirectoryCombo__up_clicked(self): ... method currentLocation (line 60) | def currentLocation(self): ... method getRecentList (line 61) | def getRecentList(self): ... method refresh (line 62) | def refresh(self): ... method setCurrentLocation (line 63) | def setCurrentLocation(self, location, recordHistory: bool = ..., noRe... method setRecentList (line 64) | def setRecentList(self, rlist, setBackList: bool = ...): ... class _EatEnterQComboBox (line 66) | class _EatEnterQComboBox(PyQt5.QtWidgets.QComboBox): method __init__ (line 67) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method event (line 68) | def event(self, evt): ... class _EatEnterWCursorMangementQComboBox (line 70) | class _EatEnterWCursorMangementQComboBox(_EatEnterQComboBox): method __init__ (line 71) | def __init__(self, *args, **kargs) -> None: ... method _EatEnterWCursorMangementQComboBox__activated (line 72) | def _EatEnterWCursorMangementQComboBox__activated(self, index): ... method setCurrentIndex (line 73) | def setCurrentIndex(self, index): ... class _FileListModel (line 75) | class _FileListModel(QT4Browser.FileInfo.AbstractFileTableModel): method __init__ (line 77) | def __init__(self, *args) -> None: ... method _FileListModel__applyFilter (line 78) | def _FileListModel__applyFilter(self): ... method currentLocation (line 79) | def currentLocation(self): ... method data (line 80) | def data(self, index, role): ... method dirFilter (line 81) | def dirFilter(self): ... method dirsOnly (line 82) | def dirsOnly(self): ... method fileFilter (line 83) | def fileFilter(self): ... method refresh (line 84) | def refresh(self): ... method setCurrentLocation (line 85) | def setCurrentLocation(self, location): ... method setDirFilter (line 86) | def setDirFilter(self, filterText): ... method setDirsOnly (line 87) | def setDirsOnly(self, dirsOnly): ... method setFileFilter (line 88) | def setFileFilter(self, filterText): ... method setShowHidden (line 89) | def setShowHidden(self, flag): ... method setShowSequence (line 90) | def setShowSequence(self, flag): ... method showHidden (line 91) | def showHidden(self): ... method showSequence (line 92) | def showSequence(self): ... class _FileListView (line 94) | class _FileListView(QT4Browser.FileInfo.FileTableView): method __init__ (line 98) | def __init__(self, *args) -> None: ... method _FileListView__itemClicked (line 99) | def _FileListView__itemClicked(self, index): ... method _FileListView__itemDoubleClicked (line 100) | def _FileListView__itemDoubleClicked(self, index): ... method _modelReset (line 101) | def _modelReset(self): ... method currentChanged (line 102) | def currentChanged(self, current, previous): ... method event (line 103) | def event(self, evt): ... method selectionChanged (line 104) | def selectionChanged(self, selected, deselected): ... class _PathField (line 106) | class _PathField(PyQt5.QtWidgets.QLineEdit): method __init__ (line 109) | def __init__(self, *args) -> None: ... method _PathField__getCompletionText (line 110) | def _PathField__getCompletionText(self): ... method _PathField__refresh (line 111) | def _PathField__refresh(self): ... method _PathField__textChanged (line 112) | def _PathField__textChanged(self, newTextQStr): ... method currentLocation (line 113) | def currentLocation(self): ... method dirFilter (line 114) | def dirFilter(self): ... method event (line 115) | def event(self, evt): ... method fileFilter (line 116) | def fileFilter(self): ... method paintEvent (line 117) | def paintEvent(self, evt): ... method setCurrentLocation (line 118) | def setCurrentLocation(self, location): ... method setDirFilter (line 119) | def setDirFilter(self, filterText): ... method setDirName (line 120) | def setDirName(self, dirName): ... method setDirsOnly (line 121) | def setDirsOnly(self, on): ... method setFileFilter (line 122) | def setFileFilter(self, filterText): ... method setShowFullPath (line 123) | def setShowFullPath(self, on): ... method setShowHidden (line 124) | def setShowHidden(self, flag): ... method setShowSequence (line 125) | def setShowSequence(self, flag): ... method showHidden (line 126) | def showHidden(self): ... method showSequence (line 127) | def showSequence(self): ... method str (line 128) | def str(self): ... class _PreviewPane (line 130) | class _PreviewPane(PyQt5.QtWidgets.QLabel): method __init__ (line 131) | def __init__(self, fb, cb, parent) -> None: ... method _PreviewPane__callCallback (line 132) | def _PreviewPane__callCallback(self, size): ... method resizeEvent (line 133) | def resizeEvent(self, e): ... method setLocation (line 134) | def setLocation(self, location): ... FILE: katana/stubs/QT4Browser/FileInfo.pyi class AbstractFileTableModel (line 11) | class AbstractFileTableModel(PyQt5.QtCore.QAbstractTableModel): method __init__ (line 15) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method columnCount (line 16) | def columnCount(self, parent): ... method data (line 17) | def data(self, index, role): ... method headerData (line 18) | def headerData(self, section, orientation, role): ... method rowCount (line 19) | def rowCount(self, parent): ... method sort (line 20) | def sort(self, column, order): ... class FileInfoDisplay (line 22) | class FileInfoDisplay(PyQt5.QtWidgets.QFrame): method __init__ (line 23) | def __init__(self, *args) -> None: ... method setFile (line 24) | def setFile(self, file): ... class FileInfoItem (line 26) | class FileInfoItem: method __init__ (line 36) | def __init__(self, name, *args) -> None: ... method icon (line 37) | def icon(self): ... method isVisible (line 38) | def isVisible(self): ... method mtime (line 39) | def mtime(self): ... method mtimeString (line 40) | def mtimeString(self): ... method name (line 41) | def name(self): ... method nameKey (line 42) | def nameKey(self): ... method owner (line 43) | def owner(self): ... method setVisible (line 44) | def setVisible(self, flag): ... method text (line 45) | def text(self): ... method type (line 46) | def type(self): ... class FileTableView (line 48) | class FileTableView(PyQt5.QtWidgets.QTableView): method __init__ (line 49) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _FileTableView__restoreSelectedText (line 50) | def _FileTableView__restoreSelectedText(self): ... method _FileTableView__saveSelectedText (line 51) | def _FileTableView__saveSelectedText(self): ... method _modelReset (line 52) | def _modelReset(self): ... method _resizeColumns (line 53) | def _resizeColumns(self): ... method getSelectedText (line 54) | def getSelectedText(self): ... method setModel (line 55) | def setModel(self, model): ... method setSelectedText (line 56) | def setSelectedText(self, text): ... function IsDir (line 58) | def IsDir(path): ... FILE: katana/stubs/QT4Browser/FileSelect.pyi class FileSelect (line 11) | class FileSelect(PyQt5.QtWidgets.QDialog): method __init__ (line 13) | def __init__(self, *pargs, **kargs) -> None: ... method _FileSelect__connect (line 14) | def _FileSelect__connect(self): ... method _FileSelect__doApply (line 15) | def _FileSelect__doApply(self, selection): ... method _FileSelect__doDefault (line 16) | def _FileSelect__doDefault(self): ... method _FileSelect__setup_children (line 17) | def _FileSelect__setup_children(self): ... method _FileSelect__setup_layout (line 18) | def _FileSelect__setup_layout(self): ... method bringTabToFront (line 19) | def bringTabToFront(self, tabName): ... method currentLocation (line 20) | def currentLocation(self): ... method done (line 21) | def done(self, code): ... method getFileBrowser (line 22) | def getFileBrowser(self): ... method hideEvent (line 23) | def hideEvent(self, event): ... method loadSettings (line 24) | def loadSettings(self): ... method saveSettings (line 25) | def saveSettings(self): ... method setCurrentLocation (line 26) | def setCurrentLocation(self, location): ... FILE: katana/stubs/QT4Color/ASCColorCorrector.pyi class ColorGradeWidget (line 14) | class ColorGradeWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 16) | def __init__(self, parent, addTitle: bool = ..., title: str = ..., cre... method _ColorGradeWidget__muteClicked_CB (line 17) | def _ColorGradeWidget__muteClicked_CB(self): ... method _ColorGradeWidget__resetClicked_CB (line 18) | def _ColorGradeWidget__resetClicked_CB(self): ... method _ColorGradeWidget__valuePolicy_CB (line 19) | def _ColorGradeWidget__valuePolicy_CB(self, valuePolicyEvent): ... method emitChanged (line 20) | def emitChanged(self, final): ... method getCC (line 21) | def getCC(self, policyRoot: Incomplete | None = ...): ... method isMuted (line 22) | def isMuted(self): ... method reset (line 23) | def reset(self): ... method setCC (line 24) | def setCC(self, cc, emitValueChanged: bool = ...): ... method setMuted (line 25) | def setMuted(self, isMuted): ... class MonitorGammaWidget (line 27) | class MonitorGammaWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 29) | def __init__(self, parent, addTitle: bool = ..., title: str = ...) -> ... method _MonitorGammaWidget__muteClicked_CB (line 30) | def _MonitorGammaWidget__muteClicked_CB(self): ... method _MonitorGammaWidget__resetClicked_CB (line 31) | def _MonitorGammaWidget__resetClicked_CB(self): ... method _MonitorGammaWidget__valuePolicy_CB (line 32) | def _MonitorGammaWidget__valuePolicy_CB(self, valuePolicyEvent): ... method emitChanged (line 33) | def emitChanged(self, final): ... method getValueDict (line 34) | def getValueDict(self, policyRoot: Incomplete | None = ...): ... method isMuted (line 35) | def isMuted(self): ... method reset (line 36) | def reset(self): ... method setMuted (line 37) | def setMuted(self, isMuted): ... method setValueDict (line 38) | def setValueDict(self, d, emitValueChanged: bool = ...): ... FILE: katana/stubs/QT4Color/ColorComponentFormWidget.pyi class ColorComponentFormWidget (line 11) | class ColorComponentFormWidget(NumberFormWidget): method __init__ (line 12) | def __init__(self, colorComponent, parent, colorPolicy, widgetFactory)... method _buildControlWidget (line 13) | def _buildControlWidget(self, layout): ... method doSliderMoved (line 14) | def doSliderMoved(self, change): ... method doSliderPressed (line 15) | def doSliderPressed(self): ... method doSliderReleased (line 16) | def doSliderReleased(self): ... method getMode (line 17) | def getMode(self): ... method getPopdownWidget (line 18) | def getPopdownWidget(self): ... method resetChildValuePolicy (line 19) | def resetChildValuePolicy(self): ... method setLocked (line 20) | def setLocked(self, state, checkLockOps: bool = ...): ... method toggleColorClamping (line 21) | def toggleColorClamping(self): ... method toggleFilmlookVisualization (line 22) | def toggleFilmlookVisualization(self): ... function BuildColorComponentQT4FormWidgets (line 24) | def BuildColorComponentQT4FormWidgets(colorPolicy, parent, includeHSL: b... FILE: katana/stubs/QT4Color/ColorDropWidget.pyi class ColorDropWidget (line 13) | class ColorDropWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 16) | def __init__(self, parent, enableFilmlook: bool = ..., enableNoFilmloo... method _ColorDropWidget__getSpotRect (line 17) | def _ColorDropWidget__getSpotRect(self): ... method _ColorDropWidget__startDrag (line 18) | def _ColorDropWidget__startDrag(self): ... method customEvent (line 19) | def customEvent(self, event): ... method dragEnterEvent (line 20) | def dragEnterEvent(self, ev): ... method dropEvent (line 21) | def dropEvent(self, ev): ... method getColor (line 22) | def getColor(self): ... method getFStopOffset (line 23) | def getFStopOffset(self): ... method mouseMoveEvent (line 24) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 25) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 26) | def mouseReleaseEvent(self, ev): ... method paintEvent (line 27) | def paintEvent(self, ev): ... method setDisplayColor (line 28) | def setDisplayColor(self, color): ... method setDragData (line 29) | def setDragData(self, data): ... method setFilmlookEnabled (line 30) | def setFilmlookEnabled(self, enabled): ... method setMinimalModeEnabled (line 31) | def setMinimalModeEnabled(self, enabled): ... method setNoFilmlookColorSpaceEnabled (line 32) | def setNoFilmlookColorSpaceEnabled(self, enabled): ... method sizeHint (line 33) | def sizeHint(self): ... FILE: katana/stubs/QT4Color/ColorFormWidget.pyi class ColorComponentTabGroup (line 23) | class ColorComponentTabGroup(PyQt5.QtWidgets.QTabWidget): method __init__ (line 25) | def __init__(self, parent, policy, factory, enableFilmlook: Incomplete... method _ColorComponentTabGroup__colorComponentValuePolicy_CB (line 26) | def _ColorComponentTabGroup__colorComponentValuePolicy_CB(self, incomi... method _ColorComponentTabGroup__gradWidgetValueChangedCB (line 27) | def _ColorComponentTabGroup__gradWidgetValueChangedCB(self, color, fin... method _ColorComponentTabGroup__handleCurrentChanged (line 28) | def _ColorComponentTabGroup__handleCurrentChanged(self, index): ... method eventFilter (line 29) | def eventFilter(self, obj, event): ... method getComponentFormWidgets (line 30) | def getComponentFormWidgets(self): ... method setColor (line 31) | def setColor(self, color): ... method setColorPolicy (line 32) | def setColorPolicy(self, colorPolicy: ValuePolicy.AbstractValuePolicy)... method setFilmlookEnabled (line 33) | def setFilmlookEnabled(self, enabled): ... method setNoFilmlookColorSpaceEnabled (line 34) | def setNoFilmlookColorSpaceEnabled(self, enabled): ... method setReadOnly (line 35) | def setReadOnly(self, readOnly): ... method updateComponentReadOnlyStates (line 36) | def updateComponentReadOnlyStates(self): ... class ColorFormWidget (line 38) | class ColorFormWidget(GroupFormWidget): method __init__ (line 40) | def __init__(self, parent, policy, factory) -> None: ... method _ColorFormWidget__addUpdateThrottlerCallbackToChildPolicies (line 41) | def _ColorFormWidget__addUpdateThrottlerCallbackToChildPolicies(self):... method _ColorFormWidget__colorComponent_valueChanged_CB (line 42) | def _ColorFormWidget__colorComponent_valueChanged_CB(self, color, fina... method _ColorFormWidget__colorDropWidget_dropEvent_CB (line 43) | def _ColorFormWidget__colorDropWidget_dropEvent_CB(self, dropEvent): ... method _ColorFormWidget__colorTextWidget_valueChanged_CB (line 44) | def _ColorFormWidget__colorTextWidget_valueChanged_CB(self, color): ... method _ColorFormWidget__update (line 45) | def _ColorFormWidget__update(self): ... method _buildAdditionalControlWidgets (line 46) | def _buildAdditionalControlWidgets(self, layout): ... method _buildControlWidget (line 47) | def _buildControlWidget(self, layout): ... method _buildInfoWidget (line 48) | def _buildInfoWidget(self): ... method _buildLabel (line 49) | def _buildLabel(self, labelText, pos: int = ...): ... method _createChildWidget (line 50) | def _createChildWidget(self, policy, parentWidget, factory, index): ... method _freeze (line 51) | def _freeze(self): ... method _lockChanged (line 52) | def _lockChanged(self, state): ... method _participatesInLabelAlignment (line 53) | def _participatesInLabelAlignment(self): ... method _popdownCreated (line 54) | def _popdownCreated(self, popdown): ... method _thaw (line 55) | def _thaw(self): ... method execColorPicker (line 56) | def execColorPicker(self): ... method getColorComponentTabGroup (line 57) | def getColorComponentTabGroup(self): ... method getDragDict (line 58) | def getDragDict(self, policy): ... method isDropOnlyMode (line 59) | def isDropOnlyMode(self): ... method isMiniMode (line 60) | def isMiniMode(self): ... method setColor_RGBA (line 61) | def setColor_RGBA(self, color, final: bool = ...): ... method showPopdown (line 62) | def showPopdown(self, value): ... method valueChangedEvent (line 63) | def valueChangedEvent(self, event): ... class ThinValuePolicy (line 65) | class ThinValuePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 66) | def __init__(self, name, hints) -> None: ... method _setInternalValue (line 67) | def _setInternalValue(self, value, final: bool = ...): ... method getName (line 68) | def getName(self): ... method getType (line 69) | def getType(self): ... method getValue (line 70) | def getValue(self): ... method getWidgetHints (line 71) | def getWidgetHints(self): ... method setCallback (line 72) | def setCallback(self, callback): ... method setValue (line 73) | def setValue(self, value, final: bool = ...): ... class UpdateThrottler (line 75) | class UpdateThrottler(PyQt5.QtCore.QObject): method __init__ (line 77) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _UpdateThrottler__update (line 78) | def _UpdateThrottler__update(self): ... method update (line 79) | def update(self, *args): ... FILE: katana/stubs/QT4Color/ColorPicker.pyi class ColorPicker (line 24) | class ColorPicker(ColorPickerBase): method __init__ (line 25) | def __init__(self, colorObj: Incomplete | None = ...) -> None: ... method _cancelClicked (line 26) | def _cancelClicked(self): ... method _okClicked (line 27) | def _okClicked(self): ... method closeEvent (line 28) | def closeEvent(self, e): ... class ColorPickerBase (line 30) | class ColorPickerBase(PyQt5.QtWidgets.QFrame): method __init__ (line 36) | def __init__(self, colorPolicy: Incomplete | None = ..., parent: Incom... method _ColorPickerBase__addUpdateThrottlerCallbackToChildPolicies (line 37) | def _ColorPickerBase__addUpdateThrottlerCallbackToChildPolicies(self):... method _ColorPickerBase__applyFilmlookCheckboxCB (line 38) | def _ColorPickerBase__applyFilmlookCheckboxCB(self, checkState): ... method _ColorPickerBase__buildLayout (line 39) | def _ColorPickerBase__buildLayout(self, widgetFactory): ... method _ColorPickerBase__clampColor (line 40) | def _ColorPickerBase__clampColor(self, color): ... method _ColorPickerBase__colorSampleDropCB (line 41) | def _ColorPickerBase__colorSampleDropCB(self, dropEvent): ... method _ColorPickerBase__colorTextValueChangedCB (line 42) | def _ColorPickerBase__colorTextValueChangedCB(self, color): ... method _ColorPickerBase__componentGradientValueChangedCB (line 43) | def _ColorPickerBase__componentGradientValueChangedCB(self, color, fin... method _ColorPickerBase__enableColorClampingCheckboxCB (line 44) | def _ColorPickerBase__enableColorClampingCheckboxCB(self, checkState):... method _ColorPickerBase__gradientComponentCapsuleCB (line 45) | def _ColorPickerBase__gradientComponentCapsuleCB(self, newEnabledItems... method _ColorPickerBase__on_destroyed (line 46) | def _ColorPickerBase__on_destroyed(self): ... method _ColorPickerBase__screenScraperCB (line 47) | def _ColorPickerBase__screenScraperCB(self, scrapedColor, final): ... method _ColorPickerBase__stateChangeHandler (line 48) | def _ColorPickerBase__stateChangeHandler(self, event): ... method _ColorPickerBase__update (line 49) | def _ColorPickerBase__update(self): ... method _cancelClicked (line 50) | def _cancelClicked(self): ... method _okClicked (line 51) | def _okClicked(self): ... method getColorPolicy (line 52) | def getColorPolicy(self): ... method getPickingColorspace (line 53) | def getPickingColorspace(self): ... method resetColor (line 54) | def resetColor(self): ... method setColor (line 55) | def setColor(self, color, final: bool = ...): ... method setReadOnly (line 56) | def setReadOnly(self, value): ... method updateColorSampleDragData (line 57) | def updateColorSampleDragData(self): ... class ModalColorPicker (line 59) | class ModalColorPicker(MovableDialog): method __init__ (line 61) | def __init__(self, colorPolicy) -> None: ... method _ModalColorPicker__shouldHideWindowFrame (line 62) | def _ModalColorPicker__shouldHideWindowFrame(self): ... method closeEvent (line 63) | def closeEvent(self, event): ... method colorChange (line 64) | def colorChange(self, color): ... method getColor (line 65) | def getColor(self): ... class MovableDialog (line 67) | class MovableDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 68) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method mouseMoveEvent (line 69) | def mouseMoveEvent(self, mouseEvent): ... method mousePressEvent (line 70) | def mousePressEvent(self, mouseEvent): ... method mouseReleaseEvent (line 71) | def mouseReleaseEvent(self, mouseEvent): ... FILE: katana/stubs/QT4Color/ColorPolicy.pyi function CreateColorPolicy (line 8) | def CreateColorPolicy(name: str = ..., hasAlpha: bool = ..., enableFilml... function DoesColorPolicyEnableFilmlook (line 9) | def DoesColorPolicyEnableFilmlook(policy: QT4FormWidgets.PythonValuePoli... function DoesColorPolicyEnableNoFilmlookColorSpace (line 10) | def DoesColorPolicyEnableNoFilmlookColorSpace(policy: QT4FormWidgets.Pyt... function DoesColorPolicyHaveAlpha (line 11) | def DoesColorPolicyHaveAlpha(policy: QT4FormWidgets.PythonValuePolicy) -... function DoesColorPolicyRestrictComponents (line 12) | def DoesColorPolicyRestrictComponents(policy: QT4FormWidgets.PythonValue... function GetColorPolicyChildren (line 13) | def GetColorPolicyChildren(policy: QT4FormWidgets.PythonValuePolicy | No... function GetColorPolicyRGBA (line 14) | def GetColorPolicyRGBA(policy: QT4FormWidgets.PythonValuePolicy | None) ... function GetDefaultColorComponentTab (line 15) | def GetDefaultColorComponentTab(policy: QT4FormWidgets.PythonValuePolicy... function SetColorPolicyEnableFilmlook (line 16) | def SetColorPolicyEnableFilmlook(policy: QT4FormWidgets.PythonValuePolic... function SetColorPolicyEnableFilmlookDefault (line 17) | def SetColorPolicyEnableFilmlookDefault(default: bool): ... function SetColorPolicyEnableNoFilmlookColorSpaceDefault (line 18) | def SetColorPolicyEnableNoFilmlookColorSpaceDefault(default: bool): ... function SetColorPolicyRGBA (line 19) | def SetColorPolicyRGBA(policy: QT4FormWidgets.PythonValuePolicy, color: ... function SetColorPolicyRestrictComponents (line 20) | def SetColorPolicyRestrictComponents(policy: QT4FormWidgets.PythonValueP... function SetColorPolicyRestrictComponentsDefault (line 21) | def SetColorPolicyRestrictComponentsDefault(default: bool): ... FILE: katana/stubs/QT4Color/ColorTextWidget.pyi class ColorTextValidator (line 12) | class ColorTextValidator(PyQt5.QtGui.QValidator): method __init__ (line 13) | def __init__(self, *args) -> None: ... method parseColor (line 14) | def parseColor(self, text): ... method validate (line 15) | def validate(self, inStr, qPos): ... class ColorTextWidget (line 17) | class ColorTextWidget(QT4FormWidgets.InputWidgets.InputLineEdit): method __init__ (line 19) | def __init__(self, parent) -> None: ... method _ColorTextWidget__updateText (line 20) | def _ColorTextWidget__updateText(self): ... method _ColorTextWidget__valueChangedCB (line 21) | def _ColorTextWidget__valueChangedCB(self): ... method getColorText (line 22) | def getColorText(self, color): ... method keyPressEvent (line 23) | def keyPressEvent(self, event): ... method setColor (line 24) | def setColor(self, color): ... function ColorFromText (line 26) | def ColorFromText(text): ... function ColorToText (line 27) | def ColorToText(color, roundDigits: int = ...): ... FILE: katana/stubs/QT4Color/ColorTransforms.pyi function ClampRGBA (line 5) | def ClampRGBA(rgba): ... function ConvertColorToUnits (line 6) | def ConvertColorToUnits(units, rgbColor): ... function ConvertUnitsToColor (line 7) | def ConvertUnitsToColor(units, unitsColor): ... FILE: katana/stubs/QT4Color/Degenerate.pyi class UnDegenerator (line 8) | class UnDegenerator: method __init__ (line 9) | def __init__(self) -> None: ... method RGBAFromComponent (line 10) | def RGBAFromComponent(self, componentValue, component, baseColor: Inco... method getNonDegenerateColor (line 11) | def getNonDegenerateColor(self, component): ... method setColor (line 12) | def setColor(self, color): ... function IsComponentDegenerate (line 14) | def IsComponentDegenerate(componentValue, component): ... FILE: katana/stubs/QT4Color/DropType.pyi function BuildDragDataFromInfo (line 9) | def BuildDragDataFromInfo(**dragDict): ... function BuildDragPixmapFromColor (line 10) | def BuildDragPixmapFromColor(color, enableFilmlook: bool = ..., enableNo... function GetColorDragType (line 11) | def GetColorDragType(): ... function GetColorInfoFromDragObject (line 12) | def GetColorInfoFromDragObject(dragObject): ... function GetColorPolicyDragDict (line 13) | def GetColorPolicyDragDict(policy): ... FILE: katana/stubs/QT4Color/GammaWidget.pyi class GammaWidget (line 11) | class GammaWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 13) | def __init__(self, *args) -> None: ... method _GammaWidget__gainGroup_slider_CB (line 14) | def _GammaWidget__gainGroup_slider_CB(self, meta): ... method _GammaWidget__gainGroup_text_CB (line 15) | def _GammaWidget__gainGroup_text_CB(self, meta): ... method _GammaWidget__gammaDownAction_CB (line 16) | def _GammaWidget__gammaDownAction_CB(self): ... method _GammaWidget__gammaGroup_slider_CB (line 17) | def _GammaWidget__gammaGroup_slider_CB(self, meta): ... method _GammaWidget__gammaGroup_text_CB (line 18) | def _GammaWidget__gammaGroup_text_CB(self, meta): ... method _GammaWidget__gammaResetAction_CB (line 19) | def _GammaWidget__gammaResetAction_CB(self): ... method _GammaWidget__gammaUpAction_CB (line 20) | def _GammaWidget__gammaUpAction_CB(self): ... method _GammaWidget__idle_CB (line 21) | def _GammaWidget__idle_CB(self): ... method _GammaWidget__layoutMode_CB (line 22) | def _GammaWidget__layoutMode_CB(self, index): ... method _GammaWidget__muteAll_CB (line 23) | def _GammaWidget__muteAll_CB(self): ... method _GammaWidget__offsetGroup_slider_CB (line 24) | def _GammaWidget__offsetGroup_slider_CB(self, meta): ... method _GammaWidget__offsetGroup_text_CB (line 25) | def _GammaWidget__offsetGroup_text_CB(self, meta): ... method _GammaWidget__queueEmitChange (line 26) | def _GammaWidget__queueEmitChange(self): ... method _GammaWidget__resetAll_CB (line 27) | def _GammaWidget__resetAll_CB(self): ... method getGammaGainOffset (line 28) | def getGammaGainOffset(self): ... method getGraphWidget (line 29) | def getGraphWidget(self): ... method recomputeGraphWidget (line 30) | def recomputeGraphWidget(self, gamma, gain, offset): ... method setGain (line 31) | def setGain(self, gain, index: Incomplete | None = ...): ... method setGamma (line 32) | def setGamma(self, gamma, index: Incomplete | None = ...): ... method setLayoutFull (line 33) | def setLayoutFull(self): ... method setLayoutMini (line 34) | def setLayoutMini(self): ... method setLayoutNormal (line 35) | def setLayoutNormal(self): ... method setOffset (line 36) | def setOffset(self, offset, index: Incomplete | None = ...): ... class GraphWidget (line 38) | class GraphWidget(PyQt5.QtWidgets.QOpenGLWidget): method __init__ (line 39) | def __init__(self, *args) -> None: ... method paintGL (line 40) | def paintGL(self): ... method resizeGL (line 41) | def resizeGL(self, width, height): ... method setGammaTable (line 42) | def setGammaTable(self, rLut, gLut, bLut): ... class SliderGroup (line 44) | class SliderGroup(PyQt5.QtWidgets.QFrame): method __init__ (line 47) | def __init__(self, labelName, meta, sliderFGColor, defaultValue, defau... method _SliderGroup__lineEdit_CB (line 48) | def _SliderGroup__lineEdit_CB(self): ... method _SliderGroup__muteButton_CB (line 49) | def _SliderGroup__muteButton_CB(self): ... method _SliderGroup__slider_CB (line 50) | def _SliderGroup__slider_CB(self, sliderValue): ... method decrement (line 51) | def decrement(self): ... method getText (line 52) | def getText(self): ... method getValue (line 53) | def getValue(self): ... method increment (line 54) | def increment(self): ... method isMuted (line 55) | def isMuted(self): ... method reset (line 56) | def reset(self): ... method setMuted (line 57) | def setMuted(self, isMuted): ... method setText (line 58) | def setText(self, text): ... method setValue (line 59) | def setValue(self, signedValue): ... FILE: katana/stubs/QT4Color/Globals.pyi class _GlobalColorPolicy (line 10) | class _GlobalColorPolicy(PyQt5.QtCore.QObject): method __init__ (line 12) | def __init__(self) -> None: ... method _GlobalColorPolicy__rebuildProcessor (line 13) | def _GlobalColorPolicy__rebuildProcessor(self): ... method getDisplay (line 14) | def getDisplay(self): ... method getDisplayColorSpaceName (line 15) | def getDisplayColorSpaceName(self): ... method getNoFilmlookColorSpaceName (line 16) | def getNoFilmlookColorSpaceName(self): ... method getNoFilmlookProcessor (line 17) | def getNoFilmlookProcessor(self): ... method getProcessor (line 18) | def getProcessor(self): ... method setDisplay (line 19) | def setDisplay(self, display): ... function ApplyFilmlook (line 21) | def ApplyFilmlook(color, processor: Incomplete | None = ...): ... function GetErrorMessageForColor (line 22) | def GetErrorMessageForColor(color, checkAlpha: bool = ...): ... function GetGlobalColorPolicy (line 23) | def GetGlobalColorPolicy(): ... function GetGlobalDisplay (line 24) | def GetGlobalDisplay(): ... function Get_UseFixedSatHSV (line 25) | def Get_UseFixedSatHSV(): ... function Get_UseSingleComponentRGB (line 26) | def Get_UseSingleComponentRGB(): ... function SetGlobalDisplay (line 27) | def SetGlobalDisplay(display): ... function Set_UseFixedSatHSV (line 28) | def Set_UseFixedSatHSV(value): ... function Set_UseSingleComponentRGB (line 29) | def Set_UseSingleComponentRGB(value): ... FILE: katana/stubs/QT4Color/Gradient1D.pyi class LinearGradientWidget (line 15) | class LinearGradientWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 17) | def __init__(self, mode, enableFilmlook, enableNoFilmlookColorSpace, p... method _LinearGradientWidget__componentToWindowPos (line 18) | def _LinearGradientWidget__componentToWindowPos(self, component): ... method _LinearGradientWidget__drawPointer (line 19) | def _LinearGradientWidget__drawPointer(self, painter): ... method _LinearGradientWidget__emit (line 20) | def _LinearGradientWidget__emit(self, componentValue, final): ... method _LinearGradientWidget__getPointerColor (line 21) | def _LinearGradientWidget__getPointerColor(self): ... method _LinearGradientWidget__isPreselectionActive (line 22) | def _LinearGradientWidget__isPreselectionActive(self): ... method _LinearGradientWidget__isfinite (line 23) | def _LinearGradientWidget__isfinite(self, value): ... method _LinearGradientWidget__recomputeComponentValue (line 24) | def _LinearGradientWidget__recomputeComponentValue(self): ... method _LinearGradientWidget__windowPosToComponent (line 25) | def _LinearGradientWidget__windowPosToComponent(self, posX, posY): ... method enterEvent (line 26) | def enterEvent(self, ev): ... method getColor (line 27) | def getColor(self): ... method getPickingColorspace (line 28) | def getPickingColorspace(self): ... method leaveEvent (line 29) | def leaveEvent(self, ev): ... method mouseMoveEvent (line 30) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 31) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 32) | def mouseReleaseEvent(self, ev): ... method paintEvent (line 33) | def paintEvent(self, ev): ... method recomputeGradient (line 34) | def recomputeGradient(self): ... method resizeEvent (line 35) | def resizeEvent(self, ev): ... method setColor (line 36) | def setColor(self, linearColor): ... method setFilmlookEnabled (line 37) | def setFilmlookEnabled(self, enabled): ... method setMode (line 38) | def setMode(self, mode): ... method setNoFilmlookColorSpaceEnabled (line 39) | def setNoFilmlookColorSpaceEnabled(self, enabled): ... method setReadOnly (line 40) | def setReadOnly(self, value): ... method sizeHint (line 41) | def sizeHint(self): ... method sizePolicy (line 42) | def sizePolicy(self): ... FILE: katana/stubs/QT4Color/Gradient2D.pyi class Gradient2DWidget (line 14) | class Gradient2DWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 16) | def __init__(self, color, uMode, vMode, parent, enableFilmlook: bool =... method _Gradient2DWidget__gradientDestroyedCB (line 17) | def _Gradient2DWidget__gradientDestroyedCB(self): ... method _Gradient2DWidget__updateGradient (line 18) | def _Gradient2DWidget__updateGradient(self): ... method _Gradient2DWidget__wheelEventCB (line 19) | def _Gradient2DWidget__wheelEventCB(self, delta): ... method setColor (line 20) | def setColor(self, color): ... method setFilmlookEnabled (line 21) | def setFilmlookEnabled(self, enabled): ... method setMode (line 22) | def setMode(self, uMode, vMode): ... method setNoFilmlookColorSpaceEnabled (line 23) | def setNoFilmlookColorSpaceEnabled(self, enabled): ... method setReadOnly (line 24) | def setReadOnly(self, value): ... method sizeHint (line 25) | def sizeHint(self): ... method sizePolicy (line 26) | def sizePolicy(self): ... class GradientDrawable (line 28) | class GradientDrawable(PyQt5.QtWidgets.QOpenGLWidget): method __init__ (line 32) | def __init__(self, *args) -> None: ... method _GradientDrawable__drawGradient (line 33) | def _GradientDrawable__drawGradient(self): ... method _GradientDrawable__drawMark (line 34) | def _GradientDrawable__drawMark(self): ... method _GradientDrawable__posToRgb (line 35) | def _GradientDrawable__posToRgb(self, position): ... method _GradientDrawable__sendValueChangedFromMouse (line 36) | def _GradientDrawable__sendValueChangedFromMouse(self, ev, final: bool... method _GradientDrawable__windowPosToUV (line 37) | def _GradientDrawable__windowPosToUV(self, pos): ... method getPickingColorspace (line 38) | def getPickingColorspace(self): ... method mouseMoveEvent (line 39) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 40) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 41) | def mouseReleaseEvent(self, ev): ... method paintGL (line 42) | def paintGL(self): ... method resizeGL (line 43) | def resizeGL(self, width, height): ... method setColorAndModes (line 44) | def setColorAndModes(self, rgb, uMode, vMode): ... method setFilmlookEnabled (line 45) | def setFilmlookEnabled(self, enabled): ... method setNoFilmlookColorSpaceEnabled (line 46) | def setNoFilmlookColorSpaceEnabled(self, enabled): ... method setReadOnly (line 47) | def setReadOnly(self, value): ... method wheelEvent (line 48) | def wheelEvent(self, ev): ... FILE: katana/stubs/QT4Color/Histogram.pyi class Histogram (line 11) | class Histogram: method __init__ (line 12) | def __init__(self, channels) -> None: ... method getChannel (line 13) | def getChannel(self, name): ... method getChannels (line 14) | def getChannels(self): ... method getCounts (line 15) | def getCounts(self, index): ... method getMaxSize (line 16) | def getMaxSize(self): ... class HistogramChannel (line 18) | class HistogramChannel: method __init__ (line 19) | def __init__(self, name, data, count: Incomplete | None = ..., size: I... method getCount (line 20) | def getCount(self, index): ... method getData (line 21) | def getData(self): ... method getDomain (line 22) | def getDomain(self): ... method getDomainBelowFraction (line 23) | def getDomainBelowFraction(self, fraction, ignoreZero: bool = ...): ... method getName (line 24) | def getName(self): ... method getSize (line 25) | def getSize(self): ... method getStats (line 26) | def getStats(self): ... method getTotalCount (line 27) | def getTotalCount(self): ... class HistogramWidget (line 29) | class HistogramWidget(PyQt5.QtWidgets.QOpenGLWidget): method __init__ (line 33) | def __init__(self, parent) -> None: ... method _HistogramWidget__drawAxes (line 34) | def _HistogramWidget__drawAxes(self): ... method _HistogramWidget__drawHistogram (line 35) | def _HistogramWidget__drawHistogram(self): ... method _HistogramWidget__drawLabel (line 36) | def _HistogramWidget__drawLabel(self): ... method _HistogramWidget__renderText (line 37) | def _HistogramWidget__renderText(self, x, y, text, font, color): ... method getGlobalScale (line 38) | def getGlobalScale(self): ... method isChannelEnabled (line 39) | def isChannelEnabled(self, channel): ... method mouseMoveEvent (line 40) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 41) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 42) | def mouseReleaseEvent(self, ev): ... method paintGL (line 43) | def paintGL(self): ... method resizeGL (line 44) | def resizeGL(self, width, height): ... method setChannels (line 45) | def setChannels(self, channels): ... method setGlobalScale (line 46) | def setGlobalScale(self, scale): ... method setHistogram (line 47) | def setHistogram(self, histogram): ... method setLabel (line 48) | def setLabel(self, label): ... method setProbe (line 49) | def setProbe(self, probePixelLoc): ... method setScale (line 50) | def setScale(self, scale): ... method setTraceLocation (line 51) | def setTraceLocation(self, x): ... method showTrace (line 52) | def showTrace(self, isShown): ... FILE: katana/stubs/QT4Color/HueColorWidget.pyi class HueColorWidget (line 11) | class HueColorWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 14) | def __init__(self, parent, name) -> None: ... method _HueColorWidget__colorToWindowPos (line 15) | def _HueColorWidget__colorToWindowPos(self, rgbColor): ... method _HueColorWidget__getCentralRect (line 16) | def _HueColorWidget__getCentralRect(self): ... method _HueColorWidget__windowPosToColor (line 17) | def _HueColorWidget__windowPosToColor(self, spotCenterQt, previousRgbC... method enterEvent (line 18) | def enterEvent(self, ev): ... method getLocked (line 19) | def getLocked(self): ... method getRGB (line 20) | def getRGB(self): ... method isPreselectionActive (line 21) | def isPreselectionActive(self): ... method leaveEvent (line 22) | def leaveEvent(self, ev): ... method minimumSizeHint (line 23) | def minimumSizeHint(self): ... method mouseMoveEvent (line 24) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 25) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 26) | def mouseReleaseEvent(self, ev): ... method paintEvent (line 27) | def paintEvent(self, ev): ... method reset (line 28) | def reset(self): ... method setLocked (line 29) | def setLocked(self, isLocked): ... method setRGB (line 30) | def setRGB(self, color): ... method sizeHint (line 31) | def sizeHint(self): ... method sizePolicy (line 32) | def sizePolicy(self): ... FILE: katana/stubs/QT4Color/LumaSliderWidget.pyi class LumaSliderWidget (line 10) | class LumaSliderWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 12) | def __init__(self, parent) -> None: ... method _LumaSliderWidget__getCentralRect (line 13) | def _LumaSliderWidget__getCentralRect(self): ... method colorToWindowPos (line 14) | def colorToWindowPos(self, value): ... method enterEvent (line 15) | def enterEvent(self, ev): ... method getLuma (line 16) | def getLuma(self): ... method isPreselectionActive (line 17) | def isPreselectionActive(self): ... method leaveEvent (line 18) | def leaveEvent(self, ev): ... method minimumSizeHint (line 19) | def minimumSizeHint(self): ... method mouseMoveEvent (line 20) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 21) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 22) | def mouseReleaseEvent(self, ev): ... method paintEvent (line 23) | def paintEvent(self, ev): ... method reset (line 24) | def reset(self): ... method setLuma (line 25) | def setLuma(self, luma): ... method sizeHint (line 26) | def sizeHint(self): ... method sizePolicy (line 27) | def sizePolicy(self): ... method windowPosToColor (line 28) | def windowPosToColor(self, pos): ... FILE: katana/stubs/QT4Color/ScreenScraper.pyi class CursorWidget (line 14) | class CursorWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 15) | def __init__(self, *args) -> None: ... method paintEvent (line 16) | def paintEvent(self, ev): ... method setPixmap (line 17) | def setPixmap(self, pm): ... class ScreenScraperPushButton (line 19) | class ScreenScraperPushButton(PyQt5.QtWidgets.QPushButton, ScreenScraper... method __init__ (line 20) | def __init__(self, *args) -> None: ... method closeEvent (line 21) | def closeEvent(self, ev): ... method hideEvent (line 22) | def hideEvent(self, ev): ... class ScreenScraperQButtonMixin (line 24) | class ScreenScraperQButtonMixin: method __init__ (line 27) | def __init__(self) -> None: ... method _ScreenScraperQButtonMixin__dispatchEvent (line 28) | def _ScreenScraperQButtonMixin__dispatchEvent(self): ... method _ScreenScraperQButtonMixin__setColor (line 29) | def _ScreenScraperQButtonMixin__setColor(self, color, final: bool = ..... method _ScreenScraperQButtonMixin__startSampling (line 30) | def _ScreenScraperQButtonMixin__startSampling(self): ... method _ScreenScraperQButtonMixin__stopSampling (line 31) | def _ScreenScraperQButtonMixin__stopSampling(self): ... method _ScreenScraperQButtonMixin__updateCursor (line 32) | def _ScreenScraperQButtonMixin__updateCursor(self): ... method doCloseEvent (line 33) | def doCloseEvent(self, ev): ... method doHideEvent (line 34) | def doHideEvent(self, ev): ... method mouseMoveEvent (line 35) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 36) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 37) | def mouseReleaseEvent(self, ev): ... method setReadOnly (line 38) | def setReadOnly(self, value): ... class ScreenScraperToolButton (line 40) | class ScreenScraperToolButton(PyQt5.QtWidgets.QToolButton, ScreenScraper... method __init__ (line 41) | def __init__(self, *args) -> None: ... method closeEvent (line 42) | def closeEvent(self, ev): ... method hideEvent (line 43) | def hideEvent(self, ev): ... FILE: katana/stubs/QT4Color/Swatches.pyi function BuildSwatchPixmap (line 11) | def BuildSwatchPixmap(color, enableFilmlook: bool = ..., enableNoFilmloo... function BuildSwatchPixmapForPolicy (line 12) | def BuildSwatchPixmapForPolicy(colorPolicy, size: Incomplete | None = ..... function GetSwatchColors (line 13) | def GetSwatchColors(color, enableFilmlook: bool = ..., enableNoFilmlookC... function PaintColorSwatch (line 14) | def PaintColorSwatch(painter, option, overBlack: Incomplete | None = ...... FILE: katana/stubs/QT4Color/TempColorWidget.pyi class TempColorWidget (line 11) | class TempColorWidget(TempColorWidgetBase, PyQt5.QtWidgets.QWidget): method __init__ (line 14) | def __init__(self, parent, orientation) -> None: ... method _getCentralRect (line 15) | def _getCentralRect(self): ... method _updateDisplay (line 16) | def _updateDisplay(self): ... method _valueChanged (line 17) | def _valueChanged(self, color, final): ... method enterEvent (line 18) | def enterEvent(self, ev): ... method isPreselectionActive (line 19) | def isPreselectionActive(self): ... method leaveEvent (line 20) | def leaveEvent(self, ev): ... method mouseMoveEvent (line 21) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 22) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 23) | def mouseReleaseEvent(self, ev): ... method paintEvent (line 24) | def paintEvent(self, ev): ... method reset (line 25) | def reset(self): ... method setContentsMargins (line 26) | def setContentsMargins(self, left, top, right, bottom): ... method sizePolicy (line 27) | def sizePolicy(self): ... class TempColorWidgetBase (line 29) | class TempColorWidgetBase: method __init__ (line 30) | def __init__(self, orientation) -> None: ... method _TempColorWidgetBase__colorToWindowPos (line 31) | def _TempColorWidgetBase__colorToWindowPos(self, rgbColor): ... method _TempColorWidgetBase__windowPosToColor (line 32) | def _TempColorWidgetBase__windowPosToColor(self, spotCenterQt, previou... method _doDrag (line 33) | def _doDrag(self, x, y): ... method _doPaint (line 34) | def _doPaint(self, p): ... method _endDrag (line 35) | def _endDrag(self, x, y): ... method _getCentralRect (line 36) | def _getCentralRect(self): ... method _isInDrag (line 37) | def _isInDrag(self): ... method _updateDisplay (line 38) | def _updateDisplay(self): ... method _valueChanged (line 39) | def _valueChanged(self, value, final): ... method getLocked (line 40) | def getLocked(self): ... method getRGB (line 41) | def getRGB(self): ... method isPreselectionActive (line 42) | def isPreselectionActive(self): ... method minimumSizeHint (line 43) | def minimumSizeHint(self): ... method setLocked (line 44) | def setLocked(self, isLocked): ... method setRGB (line 45) | def setRGB(self, color): ... method sizeHint (line 46) | def sizeHint(self): ... FILE: katana/stubs/QT4Color/WidgetUtils.pyi class MiniLabelButton (line 10) | class MiniLabelButton(PyQt5.QtWidgets.QLabel): method __init__ (line 12) | def __init__(self, text, parent) -> None: ... method mousePressEvent (line 13) | def mousePressEvent(self, _ev): ... method paintEvent (line 14) | def paintEvent(self, ev): ... class StripedFrame (line 16) | class StripedFrame(PyQt5.QtWidgets.QFrame): method paintEvent (line 17) | def paintEvent(self, ev): ... function SetCompactWidgetWidth (line 19) | def SetCompactWidgetWidth(w, padding: int = ...): ... FILE: katana/stubs/QT4FormWidgets/ArrayFormWidget.pyi class ArrayFormWidget (line 17) | class ArrayFormWidget(FormWidget): method __init__ (line 18) | def __init__(self, parent, policy, factory) -> None: ... method _ArrayFormWidget__doSizeEdit (line 19) | def _ArrayFormWidget__doSizeEdit(self): ... method _ArrayFormWidget__doSliderChange (line 20) | def _ArrayFormWidget__doSliderChange(self, value): ... method _ArrayFormWidget__doSliderEdit (line 21) | def _ArrayFormWidget__doSliderEdit(self): ... method _ArrayFormWidget__doValueEdit (line 22) | def _ArrayFormWidget__doValueEdit(self): ... method _ArrayFormWidget__freezeEntries (line 23) | def _ArrayFormWidget__freezeEntries(self): ... method _ArrayFormWidget__isInline (line 24) | def _ArrayFormWidget__isInline(self): ... method _ArrayFormWidget__syncArrayTopology (line 25) | def _ArrayFormWidget__syncArrayTopology(self, forced): ... method _ArrayFormWidget__syncArrayValues (line 26) | def _ArrayFormWidget__syncArrayValues(self): ... method _ArrayFormWidget__updateNavigation (line 27) | def _ArrayFormWidget__updateNavigation(self): ... method _buildControlWidget (line 28) | def _buildControlWidget(self, controlLayout): ... method _buildLabel (line 29) | def _buildLabel(self, labelText, pos: int = ...): ... method _createEntryWidget (line 30) | def _createEntryWidget(self): ... method _createRowWidget (line 31) | def _createRowWidget(self, parent): ... method _freeze (line 32) | def _freeze(self): ... method _lockChanged (line 33) | def _lockChanged(self, state): ... method _popdownCreated (line 34) | def _popdownCreated(self, popdown): ... method _thaw (line 35) | def _thaw(self): ... method showPopdown (line 36) | def showPopdown(self, value): ... method valueChangedEvent (line 37) | def valueChangedEvent(self, event): ... FILE: katana/stubs/QT4FormWidgets/ArrayItemEntry.pyi class ArrayItemEntry (line 16) | class ArrayItemEntry(PyQt5.QtWidgets.QWidget): method __init__ (line 17) | def __init__(self, parent) -> None: ... method _ArrayItemEntry__on_entry_dragStarted (line 18) | def _ArrayItemEntry__on_entry_dragStarted(self): ... method _ArrayItemEntry__on_entry_lostFocus (line 19) | def _ArrayItemEntry__on_entry_lostFocus(self): ... method _ArrayItemEntry__on_exprTriangle_expanded (line 20) | def _ArrayItemEntry__on_exprTriangle_expanded(self, item, state): ... method _ArrayItemEntry__on_expr_lostFocus (line 21) | def _ArrayItemEntry__on_expr_lostFocus(self): ... method contextMenuEvent (line 22) | def contextMenuEvent(self, event): ... method dragEnterEvent (line 23) | def dragEnterEvent(self, event): ... method dropEvent (line 24) | def dropEvent(self, event): ... method isLocked (line 25) | def isLocked(self): ... method mousePressEvent (line 26) | def mousePressEvent(self, event): ... method policyChanged (line 27) | def policyChanged(self, event): ... method setLocked (line 28) | def setLocked(self, state): ... method setPolicy (line 29) | def setPolicy(self, policy): ... function DarkPalette (line 31) | def DarkPalette(palette): ... FILE: katana/stubs/QT4FormWidgets/BaseValueFormWidget.pyi class BaseValueFormWidget (line 16) | class BaseValueFormWidget(FormWidget): method __init__ (line 18) | def __init__(self, parent, policy, factory) -> None: ... method _BaseValueFormWidget__autoKeyClicked (line 19) | def _BaseValueFormWidget__autoKeyClicked(self): ... method _BaseValueFormWidget__curveShowClicked (line 20) | def _BaseValueFormWidget__curveShowClicked(self): ... method _BaseValueFormWidget__loadPixmaps (line 21) | def _BaseValueFormWidget__loadPixmaps(self): ... method _BaseValueFormWidget__triangleClicked (line 22) | def _BaseValueFormWidget__triangleClicked(self, item, state): ... method _BaseValueFormWidget__updateCurveAndExpression (line 23) | def _BaseValueFormWidget__updateCurveAndExpression(self): ... method _BaseValueFormWidget__updateExpr (line 24) | def _BaseValueFormWidget__updateExpr(self): ... method _lockChanged (line 25) | def _lockChanged(self, state): ... method _popdownCreated (line 26) | def _popdownCreated(self, popdown): ... method _popupMenuCreated (line 27) | def _popupMenuCreated(self, menu): ... method _thaw (line 28) | def _thaw(self): ... method _updateControlWidget (line 29) | def _updateControlWidget(self): ... method getMaximumLeftControlWidgetWidth (line 30) | def getMaximumLeftControlWidgetWidth(self): ... method setVisible (line 31) | def setVisible(self, vis, checkVisOps: bool = ...): ... method showExternalEditor (line 32) | def showExternalEditor(self): ... method showWideEditor (line 33) | def showWideEditor(self): ... method valueChangedEvent (line 34) | def valueChangedEvent(self, event): ... FILE: katana/stubs/QT4FormWidgets/CapsuleFormWidget.pyi class CapsuleFormWidget (line 14) | class CapsuleFormWidget(BaseValueFormWidget): method __init__ (line 15) | def __init__(self, parent, policy, factory) -> None: ... method _CapsuleFormWidget__setOptionsFromHints (line 16) | def _CapsuleFormWidget__setOptionsFromHints(self, hints, appliedHints:... method _CapsuleFormWidget__updateCapsule (line 17) | def _CapsuleFormWidget__updateCapsule(self, value): ... method _assignValue (line 18) | def _assignValue(self, value): ... method _buildControlWidget (line 19) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 20) | def _checkControlWidget(self, enabledItems, oldEnabledItems): ... method _interpretValue (line 21) | def _interpretValue(self, value): ... method _lockChanged (line 22) | def _lockChanged(self, state): ... method _updateControlWidget (line 23) | def _updateControlWidget(self): ... method _updateWithHints (line 24) | def _updateWithHints(self, originalHints, hints): ... method getOptions (line 25) | def getOptions(self): ... method setExclusive (line 26) | def setExclusive(self, exclusive): ... method setOptions (line 27) | def setOptions(self): ... method setTransitionValidator (line 28) | def setTransitionValidator(self, validator): ... FILE: katana/stubs/QT4FormWidgets/CheckBoxFormWidget.pyi class CheckBoxFormWidget (line 12) | class CheckBoxFormWidget(BaseValueFormWidget): method __init__ (line 13) | def __init__(self, parent, policy, factory) -> None: ... method _CheckBoxFormWidget__checkControlWidget (line 14) | def _CheckBoxFormWidget__checkControlWidget(self, state): ... method _CheckBoxFormWidget__interpretValue (line 15) | def _CheckBoxFormWidget__interpretValue(self, value): ... method _buildControlWidget (line 16) | def _buildControlWidget(self, layout): ... method _buildLabel (line 17) | def _buildLabel(self, labelText, pos: int = ...): ... method _lockChanged (line 18) | def _lockChanged(self, state): ... method _updateControlWidget (line 19) | def _updateControlWidget(self): ... class MinimalCheckBox (line 21) | class MinimalCheckBox(PyQt5.QtWidgets.QWidget): method __init__ (line 23) | def __init__(self) -> None: ... method checkState (line 24) | def checkState(self) -> PyQt5.QtCore.Qt.CheckState: ... method mouseReleaseEvent (line 25) | def mouseReleaseEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method paintEvent (line 26) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method setCheckState (line 27) | def setCheckState(self, state: PyQt5.QtCore.Qt.CheckState): ... FILE: katana/stubs/QT4FormWidgets/Conditional.pyi class ConditionalVisibilityOpBase (line 8) | class ConditionalVisibilityOpBase(PyQt5.QtCore.QObject): method __init__ (line 10) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method _ConditionalVisibilityOpBase__targetPolicyChanged (line 11) | def _ConditionalVisibilityOpBase__targetPolicyChanged(self, event): ... method checkState (line 12) | def checkState(self): ... method freeze (line 13) | def freeze(self): ... method getProcessedTargetValue (line 14) | def getProcessedTargetValue(self, value): ... method getTargetPolicy (line 15) | def getTargetPolicy(self): ... method thaw (line 16) | def thaw(self): ... class _OpAnd (line 18) | class _OpAnd(_OpBoolean): method checkState (line 19) | def checkState(self): ... class _OpBoolean (line 21) | class _OpBoolean(PyQt5.QtCore.QObject): method __init__ (line 23) | def __init__(self, policy, hints, prefix) -> None: ... method _OpBoolean__operandChanged (line 24) | def _OpBoolean__operandChanged(self, state): ... method checkState (line 25) | def checkState(self): ... method freeze (line 26) | def freeze(self): ... method left (line 27) | def left(self): ... method right (line 28) | def right(self): ... method thaw (line 29) | def thaw(self): ... class _OpContains (line 31) | class _OpContains(ConditionalVisibilityOpBase): method __init__ (line 32) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 33) | def checkState(self): ... class _OpDoesNotContain (line 35) | class _OpDoesNotContain(_OpContains): method checkState (line 36) | def checkState(self): ... class _OpEqualTo (line 38) | class _OpEqualTo(ConditionalVisibilityOpBase): method __init__ (line 39) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 40) | def checkState(self): ... class _OpGreaterThan (line 42) | class _OpGreaterThan(ConditionalVisibilityOpBase): method __init__ (line 43) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 44) | def checkState(self): ... class _OpGreaterThanOrEqualTo (line 46) | class _OpGreaterThanOrEqualTo(ConditionalVisibilityOpBase): method __init__ (line 47) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 48) | def checkState(self): ... class _OpIn (line 50) | class _OpIn(ConditionalVisibilityOpBase): method __init__ (line 51) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 52) | def checkState(self): ... class _OpLessThan (line 54) | class _OpLessThan(ConditionalVisibilityOpBase): method __init__ (line 55) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 56) | def checkState(self): ... class _OpLessThanOrEqualTo (line 58) | class _OpLessThanOrEqualTo(ConditionalVisibilityOpBase): method __init__ (line 59) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 60) | def checkState(self): ... class _OpNotEqualTo (line 62) | class _OpNotEqualTo(ConditionalVisibilityOpBase): method __init__ (line 63) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 64) | def checkState(self): ... class _OpNotIn (line 66) | class _OpNotIn(ConditionalVisibilityOpBase): method __init__ (line 67) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 68) | def checkState(self): ... class _OpOr (line 70) | class _OpOr(_OpBoolean): method checkState (line 71) | def checkState(self): ... class _OpRegexMatch (line 73) | class _OpRegexMatch(ConditionalVisibilityOpBase): method __init__ (line 74) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 75) | def checkState(self): ... function ParseStandardConditionalHints (line 77) | def ParseStandardConditionalHints(policy, hints): ... function RegisterConditionalVisibilityOp (line 78) | def RegisterConditionalVisibilityOp(name, obj, pathIsNotParameter: bool ... FILE: katana/stubs/QT4FormWidgets/EditWrench.pyi class EditWrench (line 11) | class EditWrench(QT4FormWidgets.FWidget.FMenu): method __init__ (line 12) | def __init__(self, parent) -> None: ... method fillMenu (line 13) | def fillMenu(self, menu): ... FILE: katana/stubs/QT4FormWidgets/ExpressionEditDialog.pyi class ExpressionEditDialog (line 12) | class ExpressionEditDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 13) | def __init__(self, policy, parent: Incomplete | None = ...) -> None: ... method _ExpressionEditDialog__disconnectFromPolicy (line 14) | def _ExpressionEditDialog__disconnectFromPolicy(self): ... method _ExpressionEditDialog__updateExpr (line 15) | def _ExpressionEditDialog__updateExpr(self): ... method _ExpressionEditDialog__valueChangedEvent (line 16) | def _ExpressionEditDialog__valueChangedEvent(self, event): ... method accept (line 17) | def accept(self): ... method closeEvent (line 18) | def closeEvent(self, event): ... method reject (line 19) | def reject(self): ... method __del__ (line 20) | def __del__(self) -> None: ... FILE: katana/stubs/QT4FormWidgets/ExternalEditorDialog.pyi class ExternalEditorDialog (line 10) | class ExternalEditorDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 11) | def __init__(self) -> None: ... method go (line 12) | def go(self, textValue, suffix: str = ...): ... method reject (line 13) | def reject(self): ... function EditPolicy (line 15) | def EditPolicy(policy): ... FILE: katana/stubs/QT4FormWidgets/FWidget.pyi class FBoxLayout (line 19) | class FBoxLayout(FixableBoxLayout): method add (line 20) | def add(self, w): ... method findFWidget (line 21) | def findFWidget(self, point): ... method paintFWidgets (line 22) | def paintFWidgets(self, *args): ... method remove (line 23) | def remove(self, w): ... class FButton (line 25) | class FButton(FLabel): method __init__ (line 28) | def __init__(self, parent, text, font: Incomplete | None = ..., pad: i... method _FButton__update (line 29) | def _FButton__update(self): ... method enterEvent (line 30) | def enterEvent(self, ev): ... method leaveEvent (line 31) | def leaveEvent(self, ev): ... method mousePressEvent (line 32) | def mousePressEvent(self, event): ... method paint (line 33) | def paint(self, painter, width, height): ... method setForegroundRole (line 34) | def setForegroundRole(self, role): ... method setLocked (line 35) | def setLocked(self, isLocked): ... method setPreselectionHighlightRole (line 36) | def setPreselectionHighlightRole(self, colorRole: Incomplete | None = ... class FDisclosureTriangle (line 38) | class FDisclosureTriangle(FWidget): method __init__ (line 41) | def __init__(self, parent, size: int = ..., neverOpen: bool = ..., asp... method _FDisclosureTriangle__doTimer (line 42) | def _FDisclosureTriangle__doTimer(self): ... method enterEvent (line 43) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method fontChange (line 44) | def fontChange(self, _oldFont: PyQt5.QtGui.QFont): ... method isExpanded (line 45) | def isExpanded(self): ... method leaveEvent (line 46) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method mousePressEvent (line 47) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method paint (line 48) | def paint(self, painter, width, height): ... method rotation (line 49) | def rotation(self): ... method setColor (line 50) | def setColor(self, color): ... method setExpanded (line 51) | def setExpanded(self, state): ... method setOutlineColor (line 52) | def setOutlineColor(self, color): ... method setRightPadding (line 53) | def setRightPadding(self, rightPadding: int): ... method setRotation (line 54) | def setRotation(self, value): ... method setSize (line 55) | def setSize(self, size: int): ... method sizeHint (line 56) | def sizeHint(self): ... class FLabel (line 58) | class FLabel(FWidget): method __init__ (line 59) | def __init__(self, parent, text, font: Incomplete | None = ..., pad: i... method getBuddy (line 60) | def getBuddy(self): ... method minimumSizeHint (line 61) | def minimumSizeHint(self): ... method mousePressEvent (line 62) | def mousePressEvent(self, event): ... method paint (line 63) | def paint(self, painter, width, height): ... method setBuddy (line 64) | def setBuddy(self, buddy): ... method setColor (line 65) | def setColor(self, color): ... method setFixedWidth (line 66) | def setFixedWidth(self, fixedWidth): ... method setText (line 67) | def setText(self, text): ... method text (line 68) | def text(self): ... class FLockIcon (line 70) | class FLockIcon(FWidget): method __init__ (line 72) | def __init__(self, parent, size: int = ...) -> None: ... method paint (line 73) | def paint(self, painter, width, height): ... method setState (line 74) | def setState(self, state): ... method sizeHint (line 75) | def sizeHint(self): ... class FMenu (line 77) | class FMenu(FWidget): method __init__ (line 79) | def __init__(self, parent, size: int = ..., text: Incomplete | None = ... method _FMenu__updateSize (line 80) | def _FMenu__updateSize(self): ... method _displayContextMenu (line 81) | def _displayContextMenu(self, pos: Incomplete | None = ...): ... method contextMenuEvent (line 82) | def contextMenuEvent(self, event): ... method displayContextMenu (line 83) | def displayContextMenu(self, pos): ... method enterEvent (line 84) | def enterEvent(self, event): ... method fillMenu (line 85) | def fillMenu(self, menu): ... method invalidate (line 86) | def invalidate(self): ... method leaveEvent (line 87) | def leaveEvent(self, event): ... method mousePressEvent (line 88) | def mousePressEvent(self, event): ... method paint (line 89) | def paint(self, painter, width, height): ... method setFont (line 90) | def setFont(self, font): ... method setPixmap (line 91) | def setPixmap(self, pixmap): ... method setPressed (line 92) | def setPressed(self, state): ... method setText (line 93) | def setText(self, text): ... method sizeHint (line 94) | def sizeHint(self): ... class FPixmap (line 96) | class FPixmap(FWidget): method __init__ (line 97) | def __init__(self, parent, pixmap: Incomplete | None = ...) -> None: ... method mousePressEvent (line 98) | def mousePressEvent(self, event): ... method paint (line 99) | def paint(self, painter, width, height): ... method pixmap (line 100) | def pixmap(self): ... method setPixmap (line 101) | def setPixmap(self, pixmap): ... method sizeHint (line 102) | def sizeHint(self): ... class FSpacer (line 104) | class FSpacer(FWidget): method __init__ (line 105) | def __init__(self, parent, width) -> None: ... method sizeHint (line 106) | def sizeHint(self): ... class FStateBadge (line 108) | class FStateBadge(FWidget): method __init__ (line 109) | def __init__(self, parent, letter, color, size: int = ..., textColor: ... method enterEvent (line 110) | def enterEvent(self, event): ... method getSize (line 111) | def getSize(self): ... method leaveEvent (line 112) | def leaveEvent(self, event): ... method paint (line 113) | def paint(self, painter, width, height, testHover: bool = ...): ... method setColors (line 114) | def setColors(self, color: Incomplete | None = ..., textColor: Incompl... method setLetter (line 115) | def setLetter(self, letter): ... method sizeHint (line 116) | def sizeHint(self): ... class FSvgIcon (line 118) | class FSvgIcon(FWidget): method __init__ (line 119) | def __init__(self, parent, filename, size: int = ...) -> None: ... method paint (line 120) | def paint(self, painter, width, height): ... class FToggleStateBadge (line 122) | class FToggleStateBadge(FWidget): method __init__ (line 123) | def __init__(self, parent, color, size: int = ...) -> None: ... method enterEvent (line 124) | def enterEvent(self, event): ... method getSize (line 125) | def getSize(self): ... method leaveEvent (line 126) | def leaveEvent(self, event): ... method paint (line 127) | def paint(self, painter, width, height, testHover: bool = ...): ... method setColor (line 128) | def setColor(self, color: Incomplete | None = ...): ... method sizeHint (line 129) | def sizeHint(self): ... class FWidget (line 131) | class FWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 133) | def __init__(self, parent) -> None: ... method invalidate (line 134) | def invalidate(self): ... method paint (line 135) | def paint(self, painter, width, height): ... method paintEvent (line 136) | def paintEvent(self, event): ... method sizeHint (line 137) | def sizeHint(self): ... FILE: katana/stubs/QT4FormWidgets/FilterablePopupFormWidget.pyi class FilterablePopupFormWidget (line 16) | class FilterablePopupFormWidget(BaseValueFormWidget): class Popup (line 17) | class Popup(QT4Widgets.FilterablePopupButton.FilterablePopup): method __init__ (line 18) | def __init__(self, valuePolicy, parent: Incomplete | None = ...) -> ... method _markDirty (line 19) | def _markDirty(self): ... method _refreshContents (line 20) | def _refreshContents(self): ... method _selectCurrentValue (line 21) | def _selectCurrentValue(self): ... method getValuePolicy (line 22) | def getValuePolicy(self): ... method refresh (line 23) | def refresh(self, force: bool = ...): ... class PopupButton (line 25) | class PopupButton(FilterablePopupButton): method __init__ (line 26) | def __init__(self, valuePolicy) -> None: ... method _buildPopupWindow (line 27) | def _buildPopupWindow(self): ... method getValuePolicy (line 28) | def getValuePolicy(self): ... method _buildControlWidget (line 29) | def _buildControlWidget(self, layout): ... method _buildLabel (line 30) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildPopupButton (line 31) | def _buildPopupButton(self): ... method _itemChosen (line 32) | def _itemChosen(self, text, meta): ... method _lockChanged (line 33) | def _lockChanged(self, state): ... method _updateControlWidget (line 34) | def _updateControlWidget(self): ... FILE: katana/stubs/QT4FormWidgets/FixableBoxLayout.pyi class FixableBoxLayout (line 10) | class FixableBoxLayout(PyQt5.QtWidgets.QBoxLayout): method __init__ (line 11) | def __init__(self, orient: PyQt5.QtWidgets.QBoxLayout.Direction = ...,... method setFixedWidth (line 12) | def setFixedWidth(self, fixedWidth): ... method sizeHint (line 13) | def sizeHint(self): ... FILE: katana/stubs/QT4FormWidgets/FormClose.pyi class FormClose (line 10) | class FormClose(QT4FormWidgets.FWidget.FPixmap): method __init__ (line 11) | def __init__(self, parent) -> None: ... method _FormClose__on_fpixmap_clicked (line 12) | def _FormClose__on_fpixmap_clicked(self): ... method paint (line 13) | def paint(self, painter, width, height): ... method setEnabled (line 14) | def setEnabled(self, yorn): ... FILE: katana/stubs/QT4FormWidgets/FormDialog.pyi class FormDialog (line 12) | class FormDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 14) | def __init__(self, dataSource, parent: Incomplete | None = ..., factor... method getValuePolicy (line 15) | def getValuePolicy(self): ... FILE: katana/stubs/QT4FormWidgets/FormWidget.pyi class FormWidget (line 26) | class FormWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 43) | def __init__(self, parent, policy, factory) -> None: ... method _FormWidget__buildPopdownArea (line 44) | def _FormWidget__buildPopdownArea(self): ... method _FormWidget__copy (line 45) | def _FormWidget__copy(self): ... method _FormWidget__doTriangleClicked (line 46) | def _FormWidget__doTriangleClicked(self, item, state): ... method _FormWidget__finishScrubbing (line 47) | def _FormWidget__finishScrubbing(self, event: Incomplete | None = ...,... method _FormWidget__focusChanged (line 48) | def _FormWidget__focusChanged(self, old, new): ... method _FormWidget__freezeConditionalVis (line 49) | def _FormWidget__freezeConditionalVis(self): ... method _FormWidget__getNodeAndParameterFromWidgetHints (line 50) | def _FormWidget__getNodeAndParameterFromWidgetHints(self) -> tuple: ... method _FormWidget__lockOpStateCallback (line 51) | def _FormWidget__lockOpStateCallback(self, state): ... method _FormWidget__on_destroyed (line 52) | def _FormWidget__on_destroyed(self): ... method _FormWidget__setTriangleState (line 53) | def _FormWidget__setTriangleState(self, state): ... method _FormWidget__startDrag (line 54) | def _FormWidget__startDrag(self): ... method _FormWidget__thawConditionalVis (line 55) | def _FormWidget__thawConditionalVis(self): ... method _FormWidget__updateCloseButtonIfNeeded (line 56) | def _FormWidget__updateCloseButtonIfNeeded(self): ... method _FormWidget__updateJumpToParameterButtonIfNeeded (line 57) | def _FormWidget__updateJumpToParameterButtonIfNeeded(self): ... method _FormWidget__visOpStateCallback (line 58) | def _FormWidget__visOpStateCallback(self, state): ... method _buildCloseButton (line 59) | def _buildCloseButton(self, policy): ... method _buildControlWidget (line 60) | def _buildControlWidget(self, layout): ... method _buildHelpButton (line 61) | def _buildHelpButton(self, policy): ... method _buildInfoWidget (line 62) | def _buildInfoWidget(self): ... method _buildJumpToParameterButton (line 63) | def _buildJumpToParameterButton(self) -> PyQt5.QtWidgets.QPushButton |... method _buildLabel (line 64) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildStateBadge (line 65) | def _buildStateBadge(self, policy): ... method _buildTopAreaLayout (line 66) | def _buildTopAreaLayout(self, layout): ... method _buildWrench (line 67) | def _buildWrench(self, policy): ... method _freeze (line 68) | def _freeze(self): ... method _lockChanged (line 69) | def _lockChanged(self, state): ... method _participatesInLabelAlignment (line 70) | def _participatesInLabelAlignment(self): ... method _popdownCreated (line 71) | def _popdownCreated(self, popdown): ... method _popupMenuCreated (line 72) | def _popupMenuCreated(self, menu): ... method _removeFormWidget (line 73) | def _removeFormWidget(self, child): ... method _removeWrench (line 74) | def _removeWrench(self, wrench): ... method _resetScrubbing (line 75) | def _resetScrubbing(self): ... method _thaw (line 76) | def _thaw(self): ... method _updateStateBadge (line 77) | def _updateStateBadge(self): ... method _updateWithHints (line 78) | def _updateWithHints(self, originalHints, hints): ... method addFormWidgetChild (line 79) | def addFormWidgetChild(self, child, atIndex: Incomplete | None = ...):... method alignChildLabelWidths (line 80) | def alignChildLabelWidths(self): ... method alignLeftControlWidths (line 81) | def alignLeftControlWidths(self): ... method checkMimeData (line 82) | def checkMimeData(self, mimeData): ... method contextMenuEvent (line 83) | def contextMenuEvent(self, event): ... method customEvent (line 84) | def customEvent(self, event): ... method dragEnterEvent (line 85) | def dragEnterEvent(self, event): ... method dropEvent (line 86) | def dropEvent(self, event): ... method enterEvent (line 87) | def enterEvent(self, event): ... method event (line 88) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method eventFilter (line 89) | def eventFilter(self, parent, event): ... method getCoPolicyPathDict (line 91) | def getCoPolicyPathDict(cls, policy: QT4FormWidgets.AbstractValuePolic... method getControlLayout (line 92) | def getControlLayout(self): ... method getControlWidgets (line 93) | def getControlWidgets(self): ... method getCustomHighlightColor (line 94) | def getCustomHighlightColor(self): ... method getDefaultBoldLabelFont (line 96) | def getDefaultBoldLabelFont(cls): ... method getDefaultLabelFont (line 98) | def getDefaultLabelFont(cls): ... method getDefaultSecondaryLabelFont (line 100) | def getDefaultSecondaryLabelFont(cls): ... method getFactory (line 101) | def getFactory(self): ... method getFormWidgetChild (line 102) | def getFormWidgetChild(self, name): ... method getFormWidgetChildren (line 103) | def getFormWidgetChildren(self): ... method getFormWidgetParent (line 104) | def getFormWidgetParent(self): ... method getHighlightStyle (line 105) | def getHighlightStyle(self): ... method getLabel (line 106) | def getLabel(self) -> FormWidgetLabel: ... method getLabelText (line 107) | def getLabelText(self): ... method getLabelWidth (line 108) | def getLabelWidth(self): ... method getLeftControlFWidgets (line 109) | def getLeftControlFWidgets(self): ... method getLeftControlWidth (line 110) | def getLeftControlWidth(self): ... method getLeftLabelFWidgets (line 111) | def getLeftLabelFWidgets(self): ... method getMaximumLeftControlWidgetWidth (line 112) | def getMaximumLeftControlWidgetWidth(self): ... method getMimeData (line 113) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getPopdownEnclosureDrawn (line 114) | def getPopdownEnclosureDrawn(self): ... method getPopdownIndent (line 115) | def getPopdownIndent(self): ... method getPopdownWidget (line 116) | def getPopdownWidget(self): ... method getRightControlFWidgets (line 117) | def getRightControlFWidgets(self): ... method getRightLabelFWidgets (line 118) | def getRightLabelFWidgets(self): ... method getScrubbingState (line 119) | def getScrubbingState(self) -> QT4FormWidgets.ScrubbingStates: ... method getStateBadge (line 120) | def getStateBadge(self): ... method getTopologyDifferences (line 121) | def getTopologyDifferences(self): ... method getTriangle (line 122) | def getTriangle(self): ... method getValuePolicy (line 123) | def getValuePolicy(self): ... method getWidgetHints (line 124) | def getWidgetHints(self): ... method hideEvent (line 125) | def hideEvent(self, event): ... method hintTrue (line 127) | def hintTrue(cls, hintName, hints, default: Incomplete | None = ...): ... method isFrozen (line 128) | def isFrozen(self): ... method isLocked (line 129) | def isLocked(self): ... method isPopdownShown (line 130) | def isPopdownShown(self): ... method isScrubbing (line 131) | def isScrubbing(self) -> bool: ... method isTriangleShown (line 132) | def isTriangleShown(self): ... method keyPressEvent (line 133) | def keyPressEvent(self, event): ... method keyReleaseEvent (line 134) | def keyReleaseEvent(self, event): ... method labelSliderBegin (line 135) | def labelSliderBegin(self, pos, modifiers): ... method labelSliderDrag (line 136) | def labelSliderDrag(self, pos, modifiers): ... method labelSliderEnd (line 137) | def labelSliderEnd(self, pos, modifiers): ... method leaveEvent (line 138) | def leaveEvent(self, event): ... method mouseMoveEvent (line 139) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 140) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 141) | def mouseReleaseEvent(self, event): ... method paintEvent (line 142) | def paintEvent(self, event): ... method revealFormWidgetChild (line 143) | def revealFormWidgetChild(self, path: str | list[str]) -> FormWidget: ... method setAllowStickyScrub (line 145) | def setAllowStickyScrub(cls, allowStickyScrub): ... method setHighlightStyle (line 146) | def setHighlightStyle(self, style): ... method setInfo (line 147) | def setInfo(self, text, color: Incomplete | None = ...): ... method setLabelText (line 148) | def setLabelText(self, text): ... method setLabelWidth (line 149) | def setLabelWidth(self, width): ... method setLeftControlWidth (line 150) | def setLeftControlWidth(self, width: int): ... method setLocked (line 151) | def setLocked(self, state, checkLockOps: bool = ...): ... method setMimeData (line 152) | def setMimeData(self, mimeData, dropAction): ... method setPopdownEnclosureDrawn (line 153) | def setPopdownEnclosureDrawn(self, value): ... method setPopdownIndent (line 154) | def setPopdownIndent(self, value): ... method setTemporaryBackgroundColor (line 155) | def setTemporaryBackgroundColor(self, color): ... method setVisible (line 156) | def setVisible(self, state, checkVisOps: bool = ...): ... method showEvent (line 157) | def showEvent(self, event): ... method showPopdown (line 158) | def showPopdown(self, value): ... method showTriangle (line 159) | def showTriangle(self, flag): ... method supportsStickyScrub (line 160) | def supportsStickyScrub(self) -> bool: ... method topAreaLayoutContains (line 161) | def topAreaLayoutContains(self, pos): ... method updateGeometry (line 162) | def updateGeometry(self): ... method valueChangedEvent (line 163) | def valueChangedEvent(self, event): ... method __lt__ (line 164) | def __lt__(self, other) -> bool: ... class ScrubbingStates (line 166) | class ScrubbingStates: function AlignChildLabelWidths (line 172) | def AlignChildLabelWidths(widgets): ... function AlignLeftControlWidths (line 173) | def AlignLeftControlWidths(widgets): ... FILE: katana/stubs/QT4FormWidgets/FormWidgetLabel.pyi class FormWidgetLabel (line 12) | class FormWidgetLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 13) | def __init__(self, text: str, parent: Incomplete | None = ...) -> None... method FormatByteSize (line 15) | def FormatByteSize(size: int) -> str: ... method _FormWidgetLabel__updateToolTip (line 16) | def _FormWidgetLabel__updateToolTip(self): ... method enterEvent (line 17) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method event (line 18) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method getBuddy (line 19) | def getBuddy(self): ... method leaveEvent (line 20) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method mousePressEvent (line 21) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method mouseReleaseEvent (line 22) | def mouseReleaseEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method setColor (line 23) | def setColor(self, color: PyQt5.QtGui.QColor): ... method setText (line 24) | def setText(self, text: str): ... FILE: katana/stubs/QT4FormWidgets/FormWidgetTools.pyi function DeepPolicyCompare (line 11) | def DeepPolicyCompare(a, b): ... function GetTopologyDifferences (line 12) | def GetTopologyDifferences(formWidgets, valuePolicies): ... function PaintFormWidgetFrame (line 13) | def PaintFormWidgetFrame(painter, width, topHeight, fullHeight, opened, ... FILE: katana/stubs/QT4FormWidgets/GroupFormWidget.pyi class GroupFormWidget (line 18) | class GroupFormWidget(FormWidget): method __init__ (line 21) | def __init__(self, parent, policy, factory) -> None: ... method _GroupFormWidget__syncChildren (line 22) | def _GroupFormWidget__syncChildren(self): ... method _buildControlWidget (line 23) | def _buildControlWidget(self, layout): ... method _buildInfoWidget (line 24) | def _buildInfoWidget(self): ... method _buildLabel (line 25) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildLock (line 26) | def _buildLock(self, layout): ... method _createChildWidget (line 27) | def _createChildWidget(self, policy, parentWidget, factory, index): ... method _firstChildFormWidgetIndex (line 28) | def _firstChildFormWidgetIndex(self): ... method _freeze (line 29) | def _freeze(self): ... method _lockChanged (line 30) | def _lockChanged(self, state): ... method _participatesInLabelAlignment (line 31) | def _participatesInLabelAlignment(self): ... method _popdownCreated (line 32) | def _popdownCreated(self, popdown): ... method _thaw (line 33) | def _thaw(self): ... method alignChildLabelWidths (line 34) | def alignChildLabelWidths(self): ... method closeEvent (line 35) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method setLabelWidth (line 36) | def setLabelWidth(self, labelWidth): ... method showPopdown (line 37) | def showPopdown(self, value): ... method valueChangedEvent (line 38) | def valueChangedEvent(self, event): ... FILE: katana/stubs/QT4FormWidgets/HintUtils.pyi function GetCapsuleArgsFromHints (line 6) | def GetCapsuleArgsFromHints(hints): ... function GetColorList (line 7) | def GetColorList(listHint): ... function GetMapping (line 8) | def GetMapping(mappingHint, numberValues: bool = ..., order: list = ...)... function GetSliderArgsFromHints (line 9) | def GetSliderArgsFromHints(hints): ... function GetStringList (line 10) | def GetStringList(listHint): ... function HintTrue (line 11) | def HintTrue(hintName: str, hints: dict, default: bool = ...) -> bool: ... FILE: katana/stubs/QT4FormWidgets/InputWidgets.pyi class HelpButton (line 18) | class HelpButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 21) | def __init__(self, parent, helpName: str = ..., helpText: str = ...) -... method _displayHelpDialog (line 22) | def _displayHelpDialog(self): ... method contextMenuEvent (line 23) | def contextMenuEvent(self, event): ... method getHelpText (line 24) | def getHelpText(self): ... method mousePressEvent (line 25) | def mousePressEvent(self, event): ... method setHelpText (line 26) | def setHelpText(self, helpText): ... class HelpDialog (line 28) | class HelpDialog(PyQt5.QtWidgets.QFrame): class DragLabel (line 29) | class DragLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 30) | def __init__(self, label, parent) -> None: ... method mouseMoveEvent (line 31) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 32) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 33) | def mouseReleaseEvent(self, ev): ... method __init__ (line 36) | def __init__(self, helpText, parent: Incomplete | None = ..., caption:... method _HelpDialog__buildChildren (line 37) | def _HelpDialog__buildChildren(self, helpText): ... method _HelpDialog__linkClicked_callback (line 38) | def _HelpDialog__linkClicked_callback(self, url: str): ... method closeEvent (line 39) | def closeEvent(self, event): ... method positionAtGlobalPoint (line 40) | def positionAtGlobalPoint(self, point, screenID: Incomplete | None = .... method showEvent (line 41) | def showEvent(self, event): ... method tearOff (line 42) | def tearOff(self): ... class HelpFWidget (line 44) | class HelpFWidget(QT4FormWidgets.FWidget.FPixmap): method __init__ (line 47) | def __init__(self, parent) -> None: ... method _HelpFWidget__loadResources (line 48) | def _HelpFWidget__loadResources(self): ... method _displayHelpDialog (line 49) | def _displayHelpDialog(self): ... method contextMenuEvent (line 50) | def contextMenuEvent(self, event): ... method getHelpName (line 51) | def getHelpName(self): ... method getHelpText (line 52) | def getHelpText(self): ... method getHelpType (line 53) | def getHelpType(self): ... method isHelpEnabled (line 54) | def isHelpEnabled(self): ... method mousePressEvent (line 55) | def mousePressEvent(self, event): ... method updateAppearance (line 56) | def updateAppearance(self): ... class InputComboBox (line 58) | class InputComboBox(PyQt5.QtWidgets.QComboBox): method __init__ (line 63) | def __init__(self, *args) -> None: ... method _InputComboBox__activated (line 64) | def _InputComboBox__activated(self, index: Incomplete | None = ...): ... method _InputComboBox__lineEditGotFocus (line 65) | def _InputComboBox__lineEditGotFocus(self): ... method _InputComboBox__lineEditLostFocus (line 66) | def _InputComboBox__lineEditLostFocus(self): ... method keyPressEvent (line 67) | def keyPressEvent(self, event): ... method mousePressEvent (line 68) | def mousePressEvent(self, event): ... method paintEvent (line 69) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method setMinimal (line 70) | def setMinimal(self, minimal: bool): ... method setReadOnly (line 71) | def setReadOnly(self, state): ... method setText (line 72) | def setText(self, text): ... method showPopup (line 73) | def showPopup(self): ... method text (line 74) | def text(self, index: int = ...): ... method wheelEvent (line 75) | def wheelEvent(self, event): ... class InputLineEdit (line 77) | class InputLineEdit(PyQt5.QtWidgets.QLineEdit): method __init__ (line 90) | def __init__(self, *args) -> None: ... method _InputLineEdit__findFirstLeadingZeroScrollBlockIndex (line 92) | def _InputLineEdit__findFirstLeadingZeroScrollBlockIndex(cls, text: st... method _InputLineEdit__findLeadingZeroBlock (line 94) | def _InputLineEdit__findLeadingZeroBlock(cls, text: str, index: int) -... method _InputLineEdit__findScrollBlockHexIndex (line 96) | def _InputLineEdit__findScrollBlockHexIndex(cls, text: str, index: int... method _InputLineEdit__findScrollStartIndex (line 98) | def _InputLineEdit__findScrollStartIndex(cls, text: str, index: int) -... method _InputLineEdit__flipScrollDigitSign (line 100) | def _InputLineEdit__flipScrollDigitSign(cls, text: str, firstZeroIndex... method _InputLineEdit__isScrollBlockHex (line 102) | def _InputLineEdit__isScrollBlockHex(cls, text: str, index: int) -> bo... method _InputLineEdit__isScrollBlockNegative (line 104) | def _InputLineEdit__isScrollBlockNegative(cls, text: str, index: int) ... method _InputLineEdit__prepareScrollTextAndIndex (line 106) | def _InputLineEdit__prepareScrollTextAndIndex(cls, text: str, index: i... method _InputLineEdit__removeLeadingZeroesFromBlock (line 108) | def _InputLineEdit__removeLeadingZeroesFromBlock(cls, text: str, index... method _InputLineEdit__scrollCursorPosFromSelection (line 109) | def _InputLineEdit__scrollCursorPosFromSelection(self) -> int: ... method _InputLineEdit__scrollDigitCommon (line 110) | def _InputLineEdit__scrollDigitCommon(self, text, cursorPos, scrollFun... method _InputLineEdit__scrollDigitDown (line 112) | def _InputLineEdit__scrollDigitDown(cls, text: str, index: int, isInt:... method _InputLineEdit__scrollDigitDownCB (line 113) | def _InputLineEdit__scrollDigitDownCB(self): ... method _InputLineEdit__scrollDigitUp (line 115) | def _InputLineEdit__scrollDigitUp(cls, text: str, index: int, isInt: b... method _InputLineEdit__scrollDigitUpCB (line 116) | def _InputLineEdit__scrollDigitUpCB(self): ... method _InputLineEdit__startDrag (line 117) | def _InputLineEdit__startDrag(self): ... method contextMenuEvent (line 118) | def contextMenuEvent(self, event): ... method customEvent (line 119) | def customEvent(self, event): ... method dragEnterEvent (line 120) | def dragEnterEvent(self, event): ... method dropEvent (line 121) | def dropEvent(self, event): ... method focusInEvent (line 122) | def focusInEvent(self, event): ... method focusOutEvent (line 123) | def focusOutEvent(self, event): ... method hideEvent (line 124) | def hideEvent(self, event): ... method keyPressEvent (line 125) | def keyPressEvent(self, event): ... method mouseMoveEvent (line 126) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 127) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 128) | def mouseReleaseEvent(self, event): ... method setFloatScrollingEnabled (line 129) | def setFloatScrollingEnabled(self, value: bool): ... method setReadOnly (line 130) | def setReadOnly(self, state): ... method setSelectAllOnFocus (line 132) | def setSelectAllOnFocus(cls, selectAllOnFocus): ... method setSingleDigitScrolling (line 134) | def setSingleDigitScrolling(cls, value: bool): ... method setText (line 135) | def setText(self, text): ... method sizeHint (line 136) | def sizeHint(self): ... method wheelEvent (line 137) | def wheelEvent(self, event): ... class InputTextEdit (line 139) | class InputTextEdit(PyQt5.QtWidgets.QTextEdit): method __init__ (line 145) | def __init__(self, *args) -> None: ... method contextMenuEvent (line 146) | def contextMenuEvent(self, event): ... method focusInEvent (line 147) | def focusInEvent(self, event): ... method focusOutEvent (line 148) | def focusOutEvent(self, event): ... method hideEvent (line 149) | def hideEvent(self, event): ... method keyPressEvent (line 150) | def keyPressEvent(self, event): ... method setReadOnly (line 151) | def setReadOnly(self, state): ... method sizeHint (line 152) | def sizeHint(self): ... method text (line 153) | def text(self): ... FILE: katana/stubs/QT4FormWidgets/MenuGroupFormWidget.pyi class MenuGroupFormWidget (line 11) | class MenuGroupFormWidget(FormWidget): method __init__ (line 12) | def __init__(self, parent, policy, factory) -> None: ... method _MenuGroupFormWidget__doTriangleClicked (line 13) | def _MenuGroupFormWidget__doTriangleClicked(self): ... method _MenuGroupFormWidget__updateTriangleColor (line 14) | def _MenuGroupFormWidget__updateTriangleColor(self): ... method _buildControlWidget (line 15) | def _buildControlWidget(self, layout): ... method _buildLabel (line 16) | def _buildLabel(self, labelText, pos: int = ...): ... method _createChildWidget (line 17) | def _createChildWidget(self, policy, parentWidget, factory, index): ... method _firstChildFormWidgetIndex (line 18) | def _firstChildFormWidgetIndex(self): ... method _freeze (line 19) | def _freeze(self): ... method _lockChanged (line 20) | def _lockChanged(self, state): ... method _participatesInLabelAlignment (line 21) | def _participatesInLabelAlignment(self): ... method _thaw (line 22) | def _thaw(self): ... method buildMenu (line 23) | def buildMenu(self, menu): ... method valueChangedEvent (line 24) | def valueChangedEvent(self, event): ... FILE: katana/stubs/QT4FormWidgets/MenuUtils.pyi class PasteMenu (line 15) | class PasteMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 16) | def __init__(self, source, parent, locked) -> None: ... method _PasteMenu__doShow (line 17) | def _PasteMenu__doShow(self): ... method _PasteMenu__pasteAll (line 18) | def _PasteMenu__pasteAll(self): ... method _PasteMenu__pasteLink (line 19) | def _PasteMenu__pasteLink(self): ... method _PasteMenu__pasteValue (line 20) | def _PasteMenu__pasteValue(self): ... method copySource (line 21) | def copySource(self): ... function AddPolicyTypeActions (line 23) | def AddPolicyTypeActions(menu, policy, locked, doConstant: Incomplete | ... function AddValueStateMenuItems (line 24) | def AddValueStateMenuItems(menu: PyQt5.QtWidgets.QMenu, policy: QT4FormW... FILE: katana/stubs/QT4FormWidgets/MultiFormWidget.pyi class MultiFormWidget (line 12) | class MultiFormWidget(GroupFormWidget): method __init__ (line 13) | def __init__(self, parent, policy, factory) -> None: ... method _MultiFormWidget__doValueEdit (line 14) | def _MultiFormWidget__doValueEdit(self): ... method _MultiFormWidget__freezeEntries (line 15) | def _MultiFormWidget__freezeEntries(self): ... method _MultiFormWidget__syncArrayValues (line 16) | def _MultiFormWidget__syncArrayValues(self): ... method _buildControlWidget (line 17) | def _buildControlWidget(self, controlLayout): ... method _buildLabel (line 18) | def _buildLabel(self, labelText, pos: int = ...): ... method _freeze (line 19) | def _freeze(self): ... method _lockChanged (line 20) | def _lockChanged(self, state): ... method _participatesInLabelAlignment (line 21) | def _participatesInLabelAlignment(self): ... method _thaw (line 22) | def _thaw(self): ... method showPopdown (line 23) | def showPopdown(self, value): ... method valueChangedEvent (line 24) | def valueChangedEvent(self, event): ... FILE: katana/stubs/QT4FormWidgets/MultiStateBadge.pyi class MultiStateBadge (line 10) | class MultiStateBadge(QT4FormWidgets.FWidget.FStateBadge): method __init__ (line 12) | def __init__(self, parent) -> None: ... method _MultiStateBadge__menuHide (line 13) | def _MultiStateBadge__menuHide(self): ... method _MultiStateBadge__setState (line 14) | def _MultiStateBadge__setState(self, state): ... method mousePressEvent (line 15) | def mousePressEvent(self, event): ... method setState (line 16) | def setState(self, state): ... class ToggleStateBadge (line 18) | class ToggleStateBadge(QT4FormWidgets.FWidget.FToggleStateBadge): method __init__ (line 20) | def __init__(self, parent) -> None: ... method _ToggleStateBadge__setState (line 21) | def _ToggleStateBadge__setState(self, state): ... method mousePressEvent (line 22) | def mousePressEvent(self, event): ... method setState (line 23) | def setState(self, state): ... function ToggleValuePolicyState (line 25) | def ToggleValuePolicyState(policy): ... FILE: katana/stubs/QT4FormWidgets/NullFormWidget.pyi class NullFormWidget (line 10) | class NullFormWidget(FormWidget): method __init__ (line 11) | def __init__(self, parent, policy, factory) -> None: ... method _participatesInLabelAlignment (line 12) | def _participatesInLabelAlignment(self): ... method setVisible (line 13) | def setVisible(self, state, checkVisOps: bool = ...): ... FILE: katana/stubs/QT4FormWidgets/NumberFormWidget.pyi class IncDecLineEdit (line 17) | class IncDecLineEdit(QT4FormWidgets.InputWidgets.InputLineEdit): method keyPressEvent (line 20) | def keyPressEvent(self, event): ... class NumberFormWidget (line 22) | class NumberFormWidget(BaseValueFormWidget): method __init__ (line 24) | def __init__(self, parent, policy, factory) -> None: ... method _NumberFormWidget__calcSliderValue (line 25) | def _NumberFormWidget__calcSliderValue(self, pos): ... method _NumberFormWidget__control_decrement_CB (line 26) | def _NumberFormWidget__control_decrement_CB(self, modifiers): ... method _NumberFormWidget__control_increment_CB (line 27) | def _NumberFormWidget__control_increment_CB(self, modifiers): ... method _NumberFormWidget__control_superEnter_CB (line 28) | def _NumberFormWidget__control_superEnter_CB(self): ... method _NumberFormWidget__on_control_lostFocus (line 29) | def _NumberFormWidget__on_control_lostFocus(self): ... method _NumberFormWidget__sensitivityMenuCallback (line 30) | def _NumberFormWidget__sensitivityMenuCallback(self, action): ... method _NumberFormWidget__slider_toggleComponent_CB (line 31) | def _NumberFormWidget__slider_toggleComponent_CB(self): ... method _NumberFormWidget__slider_valueChanged_CB (line 32) | def _NumberFormWidget__slider_valueChanged_CB(self, value, final): ... method _addExportMenuActions (line 33) | def _addExportMenuActions(self, menu): ... method _addExtraMenuAction (line 34) | def _addExtraMenuAction(self, menu): ... method _addImportMenuActions (line 35) | def _addImportMenuActions(self, menu): ... method _buildControlWidget (line 36) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 37) | def _checkControlWidget(self): ... method _lockChanged (line 38) | def _lockChanged(self, state): ... method _popupMenuCreated (line 39) | def _popupMenuCreated(self, menu): ... method _resetScrubbing (line 40) | def _resetScrubbing(self): ... method _updateControlWidget (line 41) | def _updateControlWidget(self): ... method getLabelSensitivity (line 42) | def getLabelSensitivity(self): ... method getMaxVal (line 43) | def getMaxVal(self): ... method labelSliderBegin (line 44) | def labelSliderBegin(self, pos, modifiers): ... method labelSliderDrag (line 45) | def labelSliderDrag(self, pos, modifiers): ... method labelSliderEnd (line 46) | def labelSliderEnd(self, pos, modifiers): ... method paintEvent (line 47) | def paintEvent(self, event): ... method setLabelSensitivity (line 48) | def setLabelSensitivity(self, sensitivity): ... method setMaxVal (line 49) | def setMaxVal(self, max): ... method setSingleDigitScrolling (line 51) | def setSingleDigitScrolling(cls, value: bool): ... method supportsStickyScrub (line 52) | def supportsStickyScrub(self) -> bool: ... function CreateSensitivityMenu (line 54) | def CreateSensitivityMenu(menu, policy, isInt, sensitivity): ... function FormatNumber (line 55) | def FormatNumber(value: Tuple[float, int | int], isInt: bool = ..., numD... FILE: katana/stubs/QT4FormWidgets/OpenState.pyi function QueryOpenState (line 5) | def QueryOpenState(key): ... function RegisterOpenState (line 6) | def RegisterOpenState(key, isOpen): ... FILE: katana/stubs/QT4FormWidgets/PaintingUtils.pyi function ApplyPolicyPalette (line 24) | def ApplyPolicyPalette(policy: QT4FormWidgets.AbstractValuePolicy, widge... function GetDefaultBoldLabelFont (line 25) | def GetDefaultBoldLabelFont(): ... function GetDefaultFixedPitchFont (line 26) | def GetDefaultFixedPitchFont(): ... function GetDefaultLabelFont (line 27) | def GetDefaultLabelFont(scale: Incomplete | None = ...): ... function GetDefaultSecondaryLabelFont (line 28) | def GetDefaultSecondaryLabelFont(): ... function GetGroupLabelColor (line 29) | def GetGroupLabelColor(palette: Incomplete | None = ...): ... function GetHighlightColor (line 30) | def GetHighlightColor(palette, on: bool = ..., active: bool = ...): ... function GetPolicyPalette (line 31) | def GetPolicyPalette(policy: QT4FormWidgets.AbstractValuePolicy, locked:... function GetReadOnlyPalette (line 32) | def GetReadOnlyPalette(locked: bool) -> PyQt5.QtGui.QPalette: ... function GetStateBadgePixmap (line 33) | def GetStateBadgePixmap(letter, color, palette: Incomplete | None = ...)... function HighlightStyleValid (line 34) | def HighlightStyleValid(style): ... function PaintBicolorRect (line 35) | def PaintBicolorRect(painter, rect, ulColor, lrColor): ... function PaintCheckers (line 36) | def PaintCheckers(painter, rect, size: int = ..., lightValue: int = ...,... function PaintDisclosureTriangle (line 37) | def PaintDisclosureTriangle(painter, _width, height, aspect, palette, ro... function PaintDragBar (line 38) | def PaintDragBar(painter, rect, multiplier: float = ...): ... function PaintGroupEnclosureSidebar (line 39) | def PaintGroupEnclosureSidebar(painter, fullRect, color, end: bool = ...... function PaintHighlightBar (line 40) | def PaintHighlightBar(painter, fullRect, color, roundTop: bool = ..., ro... function PaintQLineEditText (line 41) | def PaintQLineEditText(painter, option, flags, text, leftAlignUnderflow:... function PaintStateBadge (line 42) | def PaintStateBadge(painter, width, height, letter, color, palette: Inco... function PaintToggleStateBadge (line 43) | def PaintToggleStateBadge(painter, width, height, color, palette: Incomp... function UpdateFontCache (line 44) | def UpdateFontCache(font): ... FILE: katana/stubs/QT4FormWidgets/PolicyMimeData.pyi class ParamMimeData (line 10) | class ParamMimeData(PyQt5.QtCore.QMimeData): ... function GetMimeData (line 12) | def GetMimeData(policy: QT4FormWidgets.AbstractValuePolicy) -> PyQt5.QtC... FILE: katana/stubs/QT4FormWidgets/PopupFormWidget.pyi class BooleanFormWidget (line 16) | class BooleanFormWidget(PopupFormWidget): method _assignValue (line 17) | def _assignValue(self, value): ... method _interpretOptions (line 18) | def _interpretOptions(self, options): ... method _interpretValue (line 19) | def _interpretValue(self, value): ... class MappingPopupFormWidget (line 21) | class MappingPopupFormWidget(PopupFormWidget): method __init__ (line 22) | def __init__(self, parent, policy, factory) -> None: ... method _assignValue (line 23) | def _assignValue(self, value): ... method _getIndexFromValue (line 24) | def _getIndexFromValue(self, _value): ... method _interpretOptions (line 25) | def _interpretOptions(self, options): ... method _interpretValue (line 26) | def _interpretValue(self, value): ... class PopupFormWidget (line 28) | class PopupFormWidget(BaseValueFormWidget): method __init__ (line 29) | def __init__(self, parent, policy, factory) -> None: ... method _PopupFormWidget__on_defaultButton_clicked (line 30) | def _PopupFormWidget__on_defaultButton_clicked(self): ... method _PopupFormWidget__on_lineEdit_textChanged (line 31) | def _PopupFormWidget__on_lineEdit_textChanged(self, text): ... method _PopupFormWidget__updateComboBox (line 32) | def _PopupFormWidget__updateComboBox(self, value): ... method _allowsCustomInput (line 33) | def _allowsCustomInput(self): ... method _assignValue (line 34) | def _assignValue(self, value): ... method _buildControlWidget (line 35) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 36) | def _checkControlWidget(self): ... method _getIndexFromValue (line 37) | def _getIndexFromValue(self, value: str) -> int: ... method _interpretOptions (line 38) | def _interpretOptions(self, options: str | list | tuple | None) -> lis... method _interpretValue (line 39) | def _interpretValue(self, value): ... method _lockChanged (line 40) | def _lockChanged(self, state): ... method _populateComboBox (line 41) | def _populateComboBox(self): ... method _setControlWidgetValue (line 42) | def _setControlWidgetValue(self, value: str): ... method _updateControlWidget (line 43) | def _updateControlWidget(self): ... method _updateWithHints (line 44) | def _updateWithHints(self, originalHints, hints): ... method getOptions (line 45) | def getOptions(self): ... method setOptions (line 46) | def setOptions(self, options): ... FILE: katana/stubs/QT4FormWidgets/PythonValuePolicy.pyi class PythonDictValuePolicy (line 8) | class PythonDictValuePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePoli... method __init__ (line 10) | def __init__(self, name, dictionary, parent: Incomplete | None = ..., ... method _PythonValuePolicy__confirmChildHintDict (line 11) | def _PythonValuePolicy__confirmChildHintDict(self, childHints): ... method _PythonValuePolicy__confirmOrderList (line 12) | def _PythonValuePolicy__confirmOrderList(self, orderList): ... method getChildByName (line 13) | def getChildByName(self, name): ... method getChildren (line 14) | def getChildren(self): ... method getName (line 15) | def getName(self): ... method getNumChildren (line 16) | def getNumChildren(self): ... method getType (line 17) | def getType(self): ... method getWidgetHints (line 18) | def getWidgetHints(self): ... class PythonGroupPolicy (line 20) | class PythonGroupPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 21) | def __init__(self, name, parent: Incomplete | None = ...) -> None: ... method addChildPolicy (line 22) | def addChildPolicy(self, policy): ... method getChildByName (line 23) | def getChildByName(self, name): ... method getChildren (line 24) | def getChildren(self): ... method getName (line 25) | def getName(self): ... method getNumChildren (line 26) | def getNumChildren(self): ... method getStateAppearance (line 27) | def getStateAppearance(self, state: set): ... method getType (line 28) | def getType(self): ... method getWidgetHints (line 29) | def getWidgetHints(self): ... method removeChildPolicy (line 30) | def removeChildPolicy(self, policy): ... method setWidgetHints (line 31) | def setWidgetHints(self, hints): ... class PythonValuePolicy (line 33) | class PythonValuePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 35) | def __init__(self, name, dictionary, parent: Incomplete | None = ..., ... method _PythonValuePolicy__confirmChildHintDict (line 36) | def _PythonValuePolicy__confirmChildHintDict(self, childHints): ... method _PythonValuePolicy__confirmOrderList (line 37) | def _PythonValuePolicy__confirmOrderList(self, orderList): ... method getChildByName (line 38) | def getChildByName(self, name): ... method getChildren (line 39) | def getChildren(self): ... method getName (line 40) | def getName(self): ... method getNumChildren (line 41) | def getNumChildren(self): ... method getType (line 42) | def getType(self): ... method getWidgetHints (line 43) | def getWidgetHints(self): ... class _ArrayPythonPolicy (line 45) | class _ArrayPythonPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 46) | def __init__(self, name, valueList, parent) -> None: ... method _ArrayPythonPolicy__buildChildren (line 47) | def _ArrayPythonPolicy__buildChildren(self): ... method getArrayChild (line 48) | def getArrayChild(self, index): ... method getArraySize (line 49) | def getArraySize(self): ... method getName (line 50) | def getName(self): ... method getType (line 51) | def getType(self): ... method getWidgetHints (line 52) | def getWidgetHints(self): ... method setArraySize (line 53) | def setArraySize(self, size): ... class _NumberPythonPolicy (line 55) | class _NumberPythonPolicy(_StringPythonPolicy): class _StringPythonPolicy (line 58) | class _StringPythonPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 60) | def __init__(self, name, dictionary, parent) -> None: ... method getName (line 61) | def getName(self): ... method getType (line 62) | def getType(self): ... method getValue (line 63) | def getValue(self): ... method getWidgetHints (line 64) | def getWidgetHints(self): ... method setValue (line 65) | def setValue(self, value, final: bool = ..., emit: bool = ...): ... FILE: katana/stubs/QT4FormWidgets/StateChangeAction.pyi class StateChangeAction (line 12) | class StateChangeAction(PyQt5.QtWidgets.QAction): method __init__ (line 13) | def __init__(self, policy: QT4FormWidgets.ValuePolicy.AbstractValuePol... method _StateChangeAction__on_triggered (line 14) | def _StateChangeAction__on_triggered(self): ... FILE: katana/stubs/QT4FormWidgets/StringFormWidget.pyi class StringFormWidget (line 12) | class StringFormWidget(BaseValueFormWidget): method __init__ (line 13) | def __init__(self, parent, policy, factory) -> None: ... method _StringFormWidget__on_control_textChanged (line 14) | def _StringFormWidget__on_control_textChanged(self, text): ... method _StringFormWidget__on_defaultButton_clicked (line 15) | def _StringFormWidget__on_defaultButton_clicked(self): ... method _buildControlWidget (line 16) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 17) | def _checkControlWidget(self): ... method _filterValueText (line 18) | def _filterValueText(self, text): ... method _lockChanged (line 19) | def _lockChanged(self, state): ... method _updateControlWidget (line 20) | def _updateControlWidget(self): ... method selectAll (line 21) | def selectAll(self): ... FILE: katana/stubs/QT4FormWidgets/TabGroupFormWidget.pyi class TabGroupFormWidget (line 16) | class TabGroupFormWidget(FormWidget): method __init__ (line 18) | def __init__(self, parent, policy, factory) -> None: ... method _TabGroupFormWidget__getTabWidgetPolicy (line 19) | def _TabGroupFormWidget__getTabWidgetPolicy(self, tabIndex): ... method _TabGroupFormWidget__syncChildren (line 20) | def _TabGroupFormWidget__syncChildren(self): ... method _TabGroupFormWidget__tabIconClicked_CB (line 21) | def _TabGroupFormWidget__tabIconClicked_CB(self, tabIndex): ... method _TabGroupFormWidget__tabValueChanged (line 22) | def _TabGroupFormWidget__tabValueChanged(self, ev): ... method _TabGroupFormWidget__updateTabStateBadges (line 23) | def _TabGroupFormWidget__updateTabStateBadges(self, onlyUpdateIndex: I... method _buildControlWidget (line 24) | def _buildControlWidget(self, layout): ... method _buildTopAreaLayout (line 25) | def _buildTopAreaLayout(self, layout): ... method _createChildWidget (line 26) | def _createChildWidget(self, policy, parentWidget, factory, index): ... method _firstChildFormWidgetIndex (line 27) | def _firstChildFormWidgetIndex(self): ... method _freeze (line 28) | def _freeze(self): ... method _participatesInLabelAlignment (line 29) | def _participatesInLabelAlignment(self): ... method _popdownCreated (line 30) | def _popdownCreated(self, popdown): ... method _thaw (line 31) | def _thaw(self): ... method alignChildLabelWidths (line 32) | def alignChildLabelWidths(self): ... method getPopdownIndent (line 33) | def getPopdownIndent(self): ... method paintEvent (line 34) | def paintEvent(self, event): ... method showPopdown (line 35) | def showPopdown(self, value): ... method valueChangedEvent (line 36) | def valueChangedEvent(self, event): ... FILE: katana/stubs/QT4FormWidgets/TextFormWidget.pyi class TextFormWidget (line 15) | class TextFormWidget(BaseValueFormWidget): method _TextFormWidget__indentText (line 18) | def _TextFormWidget__indentText(self): ... method _TextFormWidget__unindentText (line 19) | def _TextFormWidget__unindentText(self): ... method _buildControlWidget (line 20) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 21) | def _checkControlWidget(self): ... method _controlTextChanged (line 22) | def _controlTextChanged(self): ... method _getControlWidget (line 23) | def _getControlWidget(self): ... method _lockChanged (line 24) | def _lockChanged(self, state): ... method _updateControlWidget (line 25) | def _updateControlWidget(self): ... method eventFilter (line 26) | def eventFilter(self, watched, event): ... FILE: katana/stubs/QT4FormWidgets/ValueAdjustment.pyi function ComputeAdjustedValue (line 7) | def ComputeAdjustedValue(startValue: int | float, delta: float, multipli... function ComputeMultiplier (line 8) | def ComputeMultiplier(modifiers: PyQt5.QtCore.Qt.KeyboardModifiers) -> f... function GetAdjustmentMethodFromString (line 9) | def GetAdjustmentMethodFromString(methodStr: str) -> int: ... FILE: katana/stubs/QT4FormWidgets/ValuePolicy.pyi class AbstractValuePolicy (line 13) | class AbstractValuePolicy: method __init__ (line 16) | def __init__(self, parent) -> None: ... method _AbstractValuePolicy__parentNameChanged (line 17) | def _AbstractValuePolicy__parentNameChanged(self, parentName): ... method _HandleQueuedChanges (line 19) | def _HandleQueuedChanges(): ... method _appendToContextMenu (line 20) | def _appendToContextMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method _appendToStateMenu (line 21) | def _appendToStateMenu(self, menu: PyQt5.QtWidgets.QMenu) -> bool: ... method _appendToWrenchMenu (line 22) | def _appendToWrenchMenu(self, menu): ... method _childStateChange (line 23) | def _childStateChange(self): ... method _childStateReset (line 24) | def _childStateReset(self): ... method _closeButtonClicked (line 25) | def _closeButtonClicked(self): ... method _customizeWrenchButton (line 26) | def _customizeWrenchButton(self, wrenchButton: PyQt5.QtWidgets.QPushBu... method _freeze (line 27) | def _freeze(self): ... method _handleValuePolicyChange (line 28) | def _handleValuePolicyChange(self, event: ValuePolicyEvent): ... method _potentialFreezeChange (line 29) | def _potentialFreezeChange(self, anyHandlers: Incomplete | None = ...,... method _propagateNameChange (line 30) | def _propagateNameChange(self, policy: ValuePolicy): ... method _propagateStateChange (line 31) | def _propagateStateChange(self, visitedParents: set = ...): ... method _thaw (line 32) | def _thaw(self): ... method addCallback (line 33) | def addCallback(self, callback): ... method addWeakCallback (line 34) | def addWeakCallback(self, callback): ... method bakeCurve (line 35) | def bakeCurve(self, keys): ... method canHaveCurve (line 36) | def canHaveCurve(self): ... method canHaveExpression (line 37) | def canHaveExpression(self): ... method checkMimeData (line 38) | def checkMimeData(self, mimeData): ... method delCallback (line 39) | def delCallback(self, callback): ... method delWeakCallback (line 40) | def delWeakCallback(self, callback): ... method findRelativePolicy (line 41) | def findRelativePolicy(self, pathList, index: int = ...): ... method getArrayChild (line 42) | def getArrayChild(self, index): ... method getArrayChildren (line 43) | def getArrayChildren(self): ... method getArraySize (line 44) | def getArraySize(self): ... method getAvailableStates (line 45) | def getAvailableStates(self): ... method getChildByName (line 46) | def getChildByName(self, name): ... method getChildren (line 47) | def getChildren(self): ... method getCurve (line 48) | def getCurve(self): ... method getCurveAutoKey (line 49) | def getCurveAutoKey(self): ... method getCurveKey (line 50) | def getCurveKey(self): ... method getCurveXml (line 51) | def getCurveXml(self): ... method getExpression (line 52) | def getExpression(self): ... method getExpressionError (line 53) | def getExpressionError(self): ... method getExpressionNamespace (line 54) | def getExpressionNamespace(self): ... method getExpressionReference (line 55) | def getExpressionReference(self): ... method getFullName (line 56) | def getFullName(self): ... method getMimeData (line 57) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getName (line 58) | def getName(self): ... method getNumChildren (line 59) | def getNumChildren(self): ... method getOpenStateKey (line 60) | def getOpenStateKey(self): ... method getParent (line 61) | def getParent(self): ... method getSceneGraphLocationPath (line 62) | def getSceneGraphLocationPath(self) -> str | None: ... method getStateAppearance (line 63) | def getStateAppearance(self, state): ... method getTooltip (line 64) | def getTooltip(self) -> str: ... method getType (line 65) | def getType(self): ... method getValue (line 66) | def getValue(self): ... method getValueAsString (line 67) | def getValueAsString(self): ... method getValueState (line 68) | def getValueState(self): ... method getWidgetHints (line 69) | def getWidgetHints(self): ... method hasFloatingCurve (line 70) | def hasFloatingCurve(self): ... method isCloseButtonEnabled (line 71) | def isCloseButtonEnabled(self) -> bool: ... method isCurveEnabled (line 72) | def isCurveEnabled(self): ... method isCurveViewed (line 73) | def isCurveViewed(self): ... method isExpressionEnabled (line 74) | def isExpressionEnabled(self): ... method isFrozen (line 75) | def isFrozen(self): ... method isGroupParameterBeingEdited (line 76) | def isGroupParameterBeingEdited(self): ... method isLocked (line 77) | def isLocked(self): ... method isValid (line 78) | def isValid(self) -> bool: ... method loadCurveFromFile (line 79) | def loadCurveFromFile(self, path): ... method removeArrayChild (line 80) | def removeArrayChild(self, index): ... method reorderArrayChild (line 81) | def reorderArrayChild(self, oldIndex, newIndex): ... method setArraySize (line 82) | def setArraySize(self, size): ... method setCurve (line 83) | def setCurve(self, curve): ... method setCurveAutoKey (line 84) | def setCurveAutoKey(self, autoKey): ... method setCurveEnabled (line 85) | def setCurveEnabled(self, state): ... method setCurveKey (line 86) | def setCurveKey(self, state): ... method setCurveViewed (line 87) | def setCurveViewed(self, state): ... method setCurveXml (line 88) | def setCurveXml(self, xml): ... method setExpression (line 89) | def setExpression(self, expr): ... method setExpressionEnabled (line 90) | def setExpressionEnabled(self, flag): ... method setMimeData (line 91) | def setMimeData(self, mimeData, dropAction): ... method setParent (line 92) | def setParent(self, parent: AbstractValuePolicy | None): ... method setValue (line 93) | def setValue(self, value, final: bool = ...): ... method setValueFromString (line 94) | def setValueFromString(self, value, final: bool = ...): ... method setValueState (line 95) | def setValueState(self, state): ... method shouldDisplayClose (line 96) | def shouldDisplayClose(self) -> bool: ... method shouldDisplayState (line 97) | def shouldDisplayState(self): ... method shouldDisplayWrench (line 98) | def shouldDisplayWrench(self): ... method toggleValueState (line 99) | def toggleValueState(self): ... method valueChanged (line 100) | def valueChanged(self, value: bool = ..., final: bool = ..., stateChan... method waitForReady (line 101) | def waitForReady(self): ... method writeCurveToFile (line 102) | def writeCurveToFile(self, path): ... class ValuePolicyEvent (line 104) | class ValuePolicyEvent: method __init__ (line 105) | def __init__(self, policy, value, final, stateChanged, topologyChanged... method _updateChanges (line 106) | def _updateChanges(self, value, final, stateChanged, topologyChanged, ... method getPolicy (line 107) | def getPolicy(self): ... method hasNameChanged (line 108) | def hasNameChanged(self): ... method hasStateChanged (line 109) | def hasStateChanged(self): ... method hasTopologyChanged (line 110) | def hasTopologyChanged(self): ... method hasValueChanged (line 111) | def hasValueChanged(self): ... method isFinal (line 112) | def isFinal(self): ... class ValuePolicyProxy (line 114) | class ValuePolicyProxy: method __init__ (line 115) | def __init__(self, policy) -> None: ... method _ValuePolicyProxy__valueChangedEvent (line 116) | def _ValuePolicyProxy__valueChangedEvent(self, event): ... method addCallback (line 117) | def addCallback(self, callback): ... method addWeakCallback (line 118) | def addWeakCallback(self, callback): ... method delCallback (line 119) | def delCallback(self, callback): ... method delWeakCallback (line 120) | def delWeakCallback(self, callback): ... method findRelativePolicy (line 121) | def findRelativePolicy(self, pathList, index: int = ...): ... method getChildByName (line 122) | def getChildByName(self, name): ... method getChildren (line 123) | def getChildren(self): ... method getFullName (line 124) | def getFullName(self): ... method getMimeData (line 125) | def getMimeData(self): ... method getName (line 126) | def getName(self): ... method getPolicy (line 127) | def getPolicy(self): ... method getTooltip (line 128) | def getTooltip(self) -> str: ... method getWidgetHints (line 129) | def getWidgetHints(self): ... method setName (line 130) | def setName(self, overrideName): ... method setPolicy (line 131) | def setPolicy(self, policy): ... method setWidgetHints (line 132) | def setWidgetHints(self, overrideHints): ... method __getattr__ (line 133) | def __getattr__(self, name): ... FILE: katana/stubs/QT4FormWidgets/ValuePolicyAdapter.pyi class ValuePolicyAdapter (line 8) | class ValuePolicyAdapter(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 9) | def __init__(self, alias, policyMap, parent: Incomplete | None = ...) ... method getArrayChild (line 10) | def getArrayChild(self, index): ... method getArraySize (line 11) | def getArraySize(self): ... method getChildByName (line 12) | def getChildByName(self, name): ... method getChildren (line 13) | def getChildren(self): ... method getName (line 14) | def getName(self): ... method getNumChildren (line 15) | def getNumChildren(self): ... method getType (line 16) | def getType(self): ... method getValueState (line 17) | def getValueState(self): ... method getWidgetHints (line 18) | def getWidgetHints(self): ... method isLocked (line 19) | def isLocked(self): ... method removeArrayChild (line 20) | def removeArrayChild(self, index): ... method reorderArrayChild (line 21) | def reorderArrayChild(self, oldIndex, newIndex): ... method setWidgetHints (line 22) | def setWidgetHints(self, hints): ... class ValuePolicyAlias (line 24) | class ValuePolicyAlias(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 25) | def __init__(self, alias, valuePolicy, parent: Incomplete | None = ...... method _AbstractValuePolicy__parentNameChanged (line 26) | def _AbstractValuePolicy__parentNameChanged(self, *args, **kwargs): ... method _appendToContextMenu (line 27) | def _appendToContextMenu(self, *args, **kwargs): ... method _appendToStateMenu (line 28) | def _appendToStateMenu(self, *args, **kwargs): ... method _appendToWrenchMenu (line 29) | def _appendToWrenchMenu(self, *args, **kwargs): ... method _childStateChange (line 30) | def _childStateChange(self, *args, **kwargs): ... method _childStateReset (line 31) | def _childStateReset(self, *args, **kwargs): ... method _closeButtonClicked (line 32) | def _closeButtonClicked(self, *args, **kwargs): ... method _customizeWrenchButton (line 33) | def _customizeWrenchButton(self, *args, **kwargs): ... method _freeze (line 34) | def _freeze(self, *args, **kwargs): ... method _handleValuePolicyChange (line 35) | def _handleValuePolicyChange(self, *args, **kwargs): ... method _potentialFreezeChange (line 36) | def _potentialFreezeChange(self, *args, **kwargs): ... method _propagateNameChange (line 37) | def _propagateNameChange(self, *args, **kwargs): ... method _propagateStateChange (line 38) | def _propagateStateChange(self, visitedParents: set = ...): ... method _thaw (line 39) | def _thaw(self, *args, **kwargs): ... method addCallback (line 40) | def addCallback(self, *args, **kwargs): ... method addWeakCallback (line 41) | def addWeakCallback(self, *args, **kwargs): ... method bakeCurve (line 42) | def bakeCurve(self, *args, **kwargs): ... method canHaveCurve (line 43) | def canHaveCurve(self, *args, **kwargs): ... method canHaveExpression (line 44) | def canHaveExpression(self, *args, **kwargs): ... method checkMimeData (line 45) | def checkMimeData(self, *args, **kwargs): ... method delCallback (line 46) | def delCallback(self, *args, **kwargs): ... method delWeakCallback (line 47) | def delWeakCallback(self, *args, **kwargs): ... method findRelativePolicy (line 48) | def findRelativePolicy(self, *args, **kwargs): ... method getArrayChild (line 49) | def getArrayChild(self, *args, **kwargs): ... method getArrayChildren (line 50) | def getArrayChildren(self, *args, **kwargs): ... method getArraySize (line 51) | def getArraySize(self, *args, **kwargs): ... method getAvailableStates (line 52) | def getAvailableStates(self, *args, **kwargs): ... method getChildByName (line 53) | def getChildByName(self, *args, **kwargs): ... method getChildren (line 54) | def getChildren(self, *args, **kwargs): ... method getCurve (line 55) | def getCurve(self, *args, **kwargs): ... method getCurveAutoKey (line 56) | def getCurveAutoKey(self, *args, **kwargs): ... method getCurveKey (line 57) | def getCurveKey(self, *args, **kwargs): ... method getCurveXml (line 58) | def getCurveXml(self, *args, **kwargs): ... method getExpression (line 59) | def getExpression(self, *args, **kwargs): ... method getExpressionError (line 60) | def getExpressionError(self, *args, **kwargs): ... method getExpressionNamespace (line 61) | def getExpressionNamespace(self, *args, **kwargs): ... method getExpressionReference (line 62) | def getExpressionReference(self, *args, **kwargs): ... method getFullName (line 63) | def getFullName(self, *args, **kwargs): ... method getMimeData (line 64) | def getMimeData(self, *args, **kwargs): ... method getName (line 65) | def getName(self): ... method getNumChildren (line 66) | def getNumChildren(self, *args, **kwargs): ... method getOpenStateKey (line 67) | def getOpenStateKey(self, *args, **kwargs): ... method getParent (line 68) | def getParent(self): ... method getSceneGraphLocationPath (line 69) | def getSceneGraphLocationPath(self, *args, **kwargs): ... method getStateAppearance (line 70) | def getStateAppearance(self, *args, **kwargs): ... method getTooltip (line 71) | def getTooltip(self, *args, **kwargs): ... method getType (line 72) | def getType(self, *args, **kwargs): ... method getValue (line 73) | def getValue(self, *args, **kwargs): ... method getValueAsString (line 74) | def getValueAsString(self, *args, **kwargs): ... method getValueState (line 75) | def getValueState(self, *args, **kwargs): ... method getWidgetHints (line 76) | def getWidgetHints(self): ... method hasFloatingCurve (line 77) | def hasFloatingCurve(self, *args, **kwargs): ... method isCloseButtonEnabled (line 78) | def isCloseButtonEnabled(self, *args, **kwargs): ... method isCurveEnabled (line 79) | def isCurveEnabled(self, *args, **kwargs): ... method isCurveViewed (line 80) | def isCurveViewed(self, *args, **kwargs): ... method isExpressionEnabled (line 81) | def isExpressionEnabled(self, *args, **kwargs): ... method isFrozen (line 82) | def isFrozen(self, *args, **kwargs): ... method isGroupParameterBeingEdited (line 83) | def isGroupParameterBeingEdited(self, *args, **kwargs): ... method isLocked (line 84) | def isLocked(self, *args, **kwargs): ... method isValid (line 85) | def isValid(self, *args, **kwargs): ... method loadCurveFromFile (line 86) | def loadCurveFromFile(self, *args, **kwargs): ... method removeArrayChild (line 87) | def removeArrayChild(self, *args, **kwargs): ... method reorderArrayChild (line 88) | def reorderArrayChild(self, *args, **kwargs): ... method setArraySize (line 89) | def setArraySize(self, *args, **kwargs): ... method setCurve (line 90) | def setCurve(self, *args, **kwargs): ... method setCurveAutoKey (line 91) | def setCurveAutoKey(self, *args, **kwargs): ... method setCurveEnabled (line 92) | def setCurveEnabled(self, *args, **kwargs): ... method setCurveKey (line 93) | def setCurveKey(self, *args, **kwargs): ... method setCurveViewed (line 94) | def setCurveViewed(self, *args, **kwargs): ... method setCurveXml (line 95) | def setCurveXml(self, *args, **kwargs): ... method setExpression (line 96) | def setExpression(self, *args, **kwargs): ... method setExpressionEnabled (line 97) | def setExpressionEnabled(self, *args, **kwargs): ... method setMimeData (line 98) | def setMimeData(self, *args, **kwargs): ... method setParent (line 99) | def setParent(self, *args, **kwargs): ... method setValue (line 100) | def setValue(self, *args, **kwargs): ... method setValueFromString (line 101) | def setValueFromString(self, *args, **kwargs): ... method setValueState (line 102) | def setValueState(self, *args, **kwargs): ... method setWidgetHints (line 103) | def setWidgetHints(self, hints): ... method shouldDisplayClose (line 104) | def shouldDisplayClose(self, *args, **kwargs): ... method shouldDisplayState (line 105) | def shouldDisplayState(self, *args, **kwargs): ... method shouldDisplayWrench (line 106) | def shouldDisplayWrench(self, *args, **kwargs): ... method toggleValueState (line 107) | def toggleValueState(self, *args, **kwargs): ... method valueChanged (line 108) | def valueChanged(self, *args, **kwargs): ... method waitForReady (line 109) | def waitForReady(self, *args, **kwargs): ... method writeCurveToFile (line 110) | def writeCurveToFile(self, *args, **kwargs): ... method __getattr__ (line 111) | def __getattr__(self, name): ... function CreateValuePolicyAdapter (line 113) | def CreateValuePolicyAdapter(sourcePolicy, mapping, alias: str = ..., pa... function CreateValuePolicyAdapterMap (line 114) | def CreateValuePolicyAdapterMap(sourcePolicy, mapping): ... function FlattenValuePolicyAdapterMap (line 115) | def FlattenValuePolicyAdapterMap(mapping, visited: set = ...): ... FILE: katana/stubs/QT4FormWidgets/WideEditDialog.pyi class WideEditDialog (line 10) | class WideEditDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 11) | def __init__(self, policy, factory) -> None: ... method showEvent (line 12) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method sizeHint (line 13) | def sizeHint(self): ... FILE: katana/stubs/QT4FormWidgets/WidgetFactory.pyi class WidgetFactory (line 18) | class WidgetFactory: method __init__ (line 19) | def __init__(self) -> None: ... method _getWidgetClass (line 20) | def _getWidgetClass(self, policy, hints): ... method buildWidget (line 21) | def buildWidget(self, parent, policy): ... method registerWidgetType (line 22) | def registerWidgetType(self, name, cls): ... function GetDefaultWidgetFactory (line 24) | def GetDefaultWidgetFactory(): ... FILE: katana/stubs/QT4GLLayerStack/CheckerboardLayer.pyi class CheckerboardLayer (line 7) | class CheckerboardLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 8) | def __init__(self, *args, **kwargs) -> None: ... method _CheckerboardLayer__buildDisplayList (line 9) | def _CheckerboardLayer__buildDisplayList(self, width, height): ... method paintGL (line 10) | def paintGL(self): ... method resizeGL (line 11) | def resizeGL(self): ... method setVisible (line 12) | def setVisible(self, visible): ... FILE: katana/stubs/QT4GLLayerStack/ClearLayer.pyi class ClearLayer (line 8) | class ClearLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 9) | def __init__(self, *args, **kwargs) -> None: ... method paintGL (line 10) | def paintGL(self): ... method setColor (line 11) | def setColor(self, rgba): ... FILE: katana/stubs/QT4GLLayerStack/EdgeScrollingLayer.pyi class EdgeScrollingLayer (line 10) | class EdgeScrollingLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 13) | def __init__(self, autoScroll: bool = ...) -> None: ... method _EdgeScrollingLayer__move (line 14) | def _EdgeScrollingLayer__move(self): ... method _EdgeScrollingLayer__rescale (line 15) | def _EdgeScrollingLayer__rescale(self, inV): ... method _EdgeScrollingLayer__update (line 16) | def _EdgeScrollingLayer__update(self): ... method _EdgeScrollingLayer__viewScaleChanged (line 17) | def _EdgeScrollingLayer__viewScaleChanged(self, vs): ... method processEvent (line 18) | def processEvent(self, event): ... method setLayerStack (line 19) | def setLayerStack(self, layerStack): ... FILE: katana/stubs/QT4GLLayerStack/EventEaterLayer.pyi class EventEaterLayer (line 7) | class EventEaterLayer(QT4GLLayerStack.LayerStack.Layer): method processEvent (line 8) | def processEvent(self, event): ... FILE: katana/stubs/QT4GLLayerStack/FrameAllLayer.pyi class FrameAllLayer (line 13) | class FrameAllLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method _FrameAllLayer__start (line 15) | def _FrameAllLayer__start(self): ... method _FrameAllLayer__update (line 16) | def _FrameAllLayer__update(self, x): ... method frameAll (line 17) | def frameAll(self, no_animation: bool = ..., viewBounds: Incomplete | ... method isAlreadyFramed (line 18) | def isAlreadyFramed(self, viewBounds: Incomplete | None = ...): ... method paintGL (line 19) | def paintGL(self): ... method processEvent (line 20) | def processEvent(self, event): ... method setAnimSeconds (line 21) | def setAnimSeconds(self, animSeconds): ... method setKeepAspectRatio (line 22) | def setKeepAspectRatio(self, keepAspectRatio): ... method stop (line 23) | def stop(self): ... FILE: katana/stubs/QT4GLLayerStack/LayerStack.pyi class Layer (line 12) | class Layer(PyQt5.QtCore.QObject): method __init__ (line 13) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method applyWindowSpace (line 14) | def applyWindowSpace(self): ... method applyWindowSpaceWithDropShadow (line 15) | def applyWindowSpaceWithDropShadow(self, *args): ... method applyWorldSpace (line 16) | def applyWorldSpace(self): ... method applyWorldSpaceWithDropShadow (line 17) | def applyWorldSpaceWithDropShadow(self, *args): ... method enabled (line 18) | def enabled(self) -> bool: ... method focused (line 19) | def focused(self) -> bool: ... method getWindowSize (line 20) | def getWindowSize(self): ... method initializeGL (line 21) | def initializeGL(self): ... method interactive (line 22) | def interactive(self) -> bool: ... method layerStack (line 23) | def layerStack(self) -> LayerStack: ... method mapFromQTLocalToWindow (line 24) | def mapFromQTLocalToWindow(self, qtX, qtY): ... method mapFromQTLocalToWorld (line 25) | def mapFromQTLocalToWorld(self, qtX, qtY): ... method mapFromWindowToQTLocal (line 26) | def mapFromWindowToQTLocal(self, winX, winY): ... method mapFromWindowToWorld (line 27) | def mapFromWindowToWorld(self, winX, winY): ... method mapFromWorldToQTLocal (line 28) | def mapFromWorldToQTLocal(self, worldX, worldY): ... method mapFromWorldToWindow (line 29) | def mapFromWorldToWindow(self, worldX, worldY): ... method name (line 30) | def name(self) -> str | None: ... method paintGL (line 31) | def paintGL(self): ... method paintGLLeft (line 32) | def paintGLLeft(self): ... method paintGLRight (line 33) | def paintGLRight(self): ... method processEvent (line 34) | def processEvent(self, e) -> bool: ... method resizeGL (line 35) | def resizeGL(self): ... method setEnabled (line 36) | def setEnabled(self, flag: bool): ... method setFocused (line 37) | def setFocused(self, flag: bool): ... method setInteractive (line 38) | def setInteractive(self, interactive: bool): ... method setLayerStack (line 39) | def setLayerStack(self, v: LayerStack): ... method setName (line 40) | def setName(self, n: str): ... method setStereo (line 41) | def setStereo(self, s): ... method setVisible (line 42) | def setVisible(self, visible: bool): ... method startDrag (line 43) | def startDrag(self): ... method stereo (line 44) | def stereo(self) -> bool: ... method update (line 45) | def update(self): ... method visible (line 46) | def visible(self) -> bool: ... class LayerStack (line 48) | class LayerStack(PyQt5.QtWidgets.QOpenGLWidget): method __init__ (line 55) | def __init__(self, *args) -> None: ... method _LayerStack__delegateEvent (line 56) | def _LayerStack__delegateEvent(self, e): ... method _LayerStack__startDrag (line 57) | def _LayerStack__startDrag(self): ... method appendLayer (line 58) | def appendLayer(self, layer: Layer, stealFocus: bool = ...): ... method applyWindowSpace (line 59) | def applyWindowSpace(self): ... method applyWindowSpaceWithDropShadow (line 60) | def applyWindowSpaceWithDropShadow(self, screendx: float = ..., screen... method applyWorldSpace (line 61) | def applyWorldSpace(self): ... method applyWorldSpaceWithDropShadow (line 62) | def applyWorldSpaceWithDropShadow(self, screendx: float = ..., screend... method beginTextPainter (line 63) | def beginTextPainter(self): ... method contextMenuEvent (line 64) | def contextMenuEvent(self, ev): ... method customEvent (line 65) | def customEvent(self, event): ... method endTextPainter (line 66) | def endTextPainter(self): ... method event (line 67) | def event(self, e): ... method firstPaintGL (line 68) | def firstPaintGL(self): ... method firstPaintGLLeft (line 69) | def firstPaintGLLeft(self): ... method firstPaintGLRight (line 70) | def firstPaintGLRight(self): ... method focusLayer (line 71) | def focusLayer(self) -> Layer: ... method getClipPlanes (line 72) | def getClipPlanes(self) -> Tuple[float, float]: ... method getEyePoint (line 73) | def getEyePoint(self): ... method getEyePointLeft (line 74) | def getEyePointLeft(self): ... method getEyePointMain (line 75) | def getEyePointMain(self): ... method getEyePointRight (line 76) | def getEyePointRight(self): ... method getLayerByIndex (line 77) | def getLayerByIndex(self, i: int) -> Layer: ... method getLayerByName (line 78) | def getLayerByName(self, name: str) -> Layer: ... method getLayerCount (line 79) | def getLayerCount(self) -> int: ... method getLayers (line 80) | def getLayers(self) -> list[Layer]: ... method getMousePos (line 81) | def getMousePos(self) -> Tuple[int, int]: ... method getPseudoTopLevelWidget (line 82) | def getPseudoTopLevelWidget(self): ... method getTabletPressure (line 83) | def getTabletPressure(self): ... method getTabletTilt (line 84) | def getTabletTilt(self): ... method getViewScale (line 85) | def getViewScale(self) -> None: ... method getVisibleArea (line 86) | def getVisibleArea(self) -> Tuple[Tuple[float, float], Tuple[float, fl... method getWindowSize (line 87) | def getWindowSize(self) -> Tuple[int, int]: ... method getWorldBounds (line 88) | def getWorldBounds(self) -> Tuple[float, float, float, float] | None: ... method glDraw (line 89) | def glDraw(self): ... method initializeGL (line 90) | def initializeGL(self): ... method insertLayer (line 91) | def insertLayer(self, layer: Layer, index: int): ... method isCapableOfNativeStereo (line 92) | def isCapableOfNativeStereo(self): ... method isEraser (line 93) | def isEraser(self): ... method isLayerFocused (line 94) | def isLayerFocused(self, layer): ... method mapFromQTLocalToWindow (line 95) | def mapFromQTLocalToWindow(self, qtX: float, qtY: float) -> Tuple[floa... method mapFromQTLocalToWorld (line 96) | def mapFromQTLocalToWorld(self, qtX: float, qtY: float) -> Tuple[float... method mapFromWindowToQTLocal (line 97) | def mapFromWindowToQTLocal(self, winX: float, winY: float) -> Tuple[fl... method mapFromWindowToWorld (line 98) | def mapFromWindowToWorld(self, winX: float, winY: float) -> Tuple[floa... method mapFromWorldToQTLocal (line 99) | def mapFromWorldToQTLocal(self, worldX: float, worldY: float) -> Tuple... method mapFromWorldToWindow (line 100) | def mapFromWorldToWindow(self, worldX: float, worldY: float) -> Tuple[... method paintGL (line 101) | def paintGL(self): ... method removeLayer (line 102) | def removeLayer(self, layer: Layer): ... method renderText (line 103) | def renderText(self, *args): ... method reset (line 104) | def reset(self): ... method resizeEvent (line 105) | def resizeEvent(self, evt): ... method resizeGL (line 106) | def resizeGL(self, width, height): ... method setClipPlanes (line 107) | def setClipPlanes(self, nearClip: float, farClip: float): ... method setEyePoint (line 108) | def setEyePoint(self, pt: None): ... method setEyePointLeft (line 109) | def setEyePointLeft(self, pt): ... method setEyePointRight (line 110) | def setEyePointRight(self, pt): ... method setFocusLayer (line 111) | def setFocusLayer(self, layer: Layer, isFocused: bool = ...): ... method setStereoMode (line 112) | def setStereoMode(self, stereoMode: int): ... method setTextColor (line 113) | def setTextColor(self, r, g, b, a: float = ...): ... method setViewLeft (line 114) | def setViewLeft(self): ... method setViewMono (line 115) | def setViewMono(self): ... method setViewRight (line 116) | def setViewRight(self): ... method setViewScale (line 117) | def setViewScale(self, scale: None, final: bool = ...): ... method setVisibleArea (line 118) | def setVisibleArea(self, viewBounds): ... method stereoMode (line 119) | def stereoMode(self): ... method updateGL (line 120) | def updateGL(self): ... FILE: katana/stubs/QT4GLLayerStack/PanInteractionLayer.pyi class PanInteractionLayer (line 10) | class PanInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 11) | def __init__(self, name, *args, **kwargs) -> None: ... method freeze (line 12) | def freeze(self): ... method processEvent (line 13) | def processEvent(self, e): ... method setAllowKeylessTabletInteraction (line 14) | def setAllowKeylessTabletInteraction(self, allowKeylessTabletInteracti... method setHorizontalLock (line 15) | def setHorizontalLock(self, isLocked): ... method setVerticalLock (line 16) | def setVerticalLock(self, isLocked): ... method thaw (line 17) | def thaw(self): ... class PanTransientLayer (line 19) | class PanTransientLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 20) | def __init__(self, event, horizontalLock, verticalLock, prevFocusLayer... method _PanTransientLayer__setup (line 21) | def _PanTransientLayer__setup(self): ... method freeze (line 22) | def freeze(self): ... method processEvent (line 23) | def processEvent(self, e): ... method setLayerStack (line 24) | def setLayerStack(self, s): ... method thaw (line 25) | def thaw(self): ... FILE: katana/stubs/QT4GLLayerStack/RectangleLayer.pyi class RectangleLayer (line 11) | class RectangleLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: ... method _RectangleLayer__fillBackground (line 13) | def _RectangleLayer__fillBackground(self): ... method _RectangleLayer__findDragEdges (line 14) | def _RectangleLayer__findDragEdges(self, localX, localY): ... method _RectangleLayer__paintDimBackground (line 15) | def _RectangleLayer__paintDimBackground(self): ... method _RectangleLayer__pointInCenter (line 16) | def _RectangleLayer__pointInCenter(self, localX, localY): ... method _RectangleLayer__pointInRect (line 17) | def _RectangleLayer__pointInRect(self, localX, localY, includeGravity:... method _RectangleLayer__pointOnAxis (line 18) | def _RectangleLayer__pointOnAxis(self, localX, localY): ... method beginEdgeDrag (line 19) | def beginEdgeDrag(self, xEdge, yEdge): ... method boxColor (line 20) | def boxColor(self): ... method center (line 21) | def center(self): ... method clamped (line 22) | def clamped(self): ... method defaultProcessEvent (line 23) | def defaultProcessEvent(self, event): ... method dimBackground (line 24) | def dimBackground(self): ... method displayRectangle (line 25) | def displayRectangle(self): ... method drawBox (line 26) | def drawBox(self): ... method edgeDragProcessEvent (line 27) | def edgeDragProcessEvent(self, event): ... method endEdgeDrag (line 28) | def endEdgeDrag(self): ... method intermediate (line 29) | def intermediate(self): ... method originLock (line 30) | def originLock(self): ... method outlineWidth (line 31) | def outlineWidth(self): ... method paintGL (line 32) | def paintGL(self): ... method processEvent (line 33) | def processEvent(self, event): ... method rectangle (line 34) | def rectangle(self): ... method rectangleDragProcessEvent (line 35) | def rectangleDragProcessEvent(self, event): ... method setBoxColor (line 36) | def setBoxColor(self, color): ... method setCenter (line 37) | def setCenter(self, center): ... method setClamped (line 38) | def setClamped(self, v): ... method setDimBackground (line 39) | def setDimBackground(self, flag): ... method setDrawBox (line 40) | def setDrawBox(self, drawFlag): ... method setOriginLock (line 41) | def setOriginLock(self, v): ... method setOutlineWidth (line 42) | def setOutlineWidth(self, width): ... method setRectangle (line 43) | def setRectangle(self, rect): ... method setSize (line 44) | def setSize(self, size): ... method size (line 45) | def size(self): ... method windowRectangle (line 46) | def windowRectangle(self): ... FILE: katana/stubs/QT4GLLayerStack/Util.pyi function CapEyePoint (line 5) | def CapEyePoint(eyePoint): ... function CapViewScale (line 6) | def CapViewScale(viewScale): ... FILE: katana/stubs/QT4GLLayerStack/ZoomAnimationLayer.pyi class ZoomAnimationLayer (line 10) | class ZoomAnimationLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 11) | def __init__(self, prevFocusLayer: Incomplete | None = ...) -> None: ... method _ZoomAnimationLayer__lerpSeq (line 12) | def _ZoomAnimationLayer__lerpSeq(self, aSeq, bSeq, x): ... method getEyeAndScaleFromBounds (line 13) | def getEyeAndScaleFromBounds(self, targetVisibleArea): ... method zoomAndRemove (line 14) | def zoomAndRemove(self, targetVisibleArea: Incomplete | None = ..., ta... FILE: katana/stubs/QT4GLLayerStack/ZoomInteractionLayer.pyi class ZoomInteractionLayer (line 12) | class ZoomInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 13) | def __init__(self, name, allowLeftButton: bool = ..., allowMidButton: ... method freeze (line 14) | def freeze(self): ... method processEvent (line 15) | def processEvent(self, e): ... method setAllowKeylessTabletInteraction (line 16) | def setAllowKeylessTabletInteraction(self, allowKeylessTabletInteracti... method setHorizontalLock (line 17) | def setHorizontalLock(self, isLocked): ... method setVerticalLock (line 18) | def setVerticalLock(self, isLocked): ... method thaw (line 19) | def thaw(self): ... class ZoomTransientLayer (line 21) | class ZoomTransientLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 22) | def __init__(self, event, horizontalLock, verticalLock, prevFocusLayer... method _ZoomTransientLayer__doVirtualDrag (line 23) | def _ZoomTransientLayer__doVirtualDrag(self, globalPoint): ... method _ZoomTransientLayer__dragSensitivityFunction (line 24) | def _ZoomTransientLayer__dragSensitivityFunction(self, delta): ... method freeze (line 25) | def freeze(self): ... method processEvent (line 26) | def processEvent(self, e): ... method setAllowKeylessTabletInteraction (line 27) | def setAllowKeylessTabletInteraction(self, allowKeylessTabletInteracti... method setLayerStack (line 28) | def setLayerStack(self, s): ... method thaw (line 29) | def thaw(self): ... method __del__ (line 30) | def __del__(self) -> None: ... FILE: katana/stubs/QT4Panels/DragOverlay.pyi class DragOverlay (line 11) | class DragOverlay(PyQt5.QtWidgets.QWidget): method __init__ (line 12) | def __init__(self, parent) -> None: ... method _isCompositingEnabled (line 13) | def _isCompositingEnabled(self): ... method hide (line 14) | def hide(self): ... method paintEvent (line 15) | def paintEvent(self, event): ... method setPosition (line 16) | def setPosition(self, area, rects): ... method show (line 17) | def show(self): ... class HighlightRubberBand (line 19) | class HighlightRubberBand(PyQt5.QtWidgets.QRubberBand): method paintEvent (line 20) | def paintEvent(self, event): ... class SplittableBoxOverlay (line 22) | class SplittableBoxOverlay(PyQt5.QtWidgets.QWidget): method __init__ (line 23) | def __init__(self) -> None: ... method _SplittableBoxOverlay__tick (line 24) | def _SplittableBoxOverlay__tick(self): ... method paintEvent (line 25) | def paintEvent(self, event): ... method setRect (line 26) | def setRect(self, rect, showSplits): ... method show (line 27) | def show(self): ... function GetHighlightColor (line 29) | def GetHighlightColor(palette: PyQt5.QtGui.QPalette) -> PyQt5.QtGui.QCol... function _BlendColors (line 30) | def _BlendColors(c1, c2, blend): ... FILE: katana/stubs/QT4Panels/DragTabs.pyi class DragTabBar (line 14) | class DragTabBar(DroppableTabBar): method __init__ (line 18) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _DragTabBar__startDrag (line 19) | def _DragTabBar__startDrag(self): ... method customEvent (line 20) | def customEvent(self, event): ... method keyPressEvent (line 21) | def keyPressEvent(self, event): ... method keyReleaseEvent (line 22) | def keyReleaseEvent(self, event): ... method mouseDoubleClickEvent (line 23) | def mouseDoubleClickEvent(self, event): ... method mouseMoveEvent (line 24) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 25) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 26) | def mouseReleaseEvent(self, event): ... class DragTool (line 28) | class DragTool: method __init__ (line 29) | def __init__(self, source, index, pos, detach) -> None: ... method _IsSplittable (line 30) | def _IsSplittable(self, frame): ... method doDragEnd (line 31) | def doDragEnd(self): ... method doDragMove (line 32) | def doDragMove(self, pos): ... method doDragStart (line 33) | def doDragStart(self): ... method doDrop (line 34) | def doDrop(self): ... method doMove (line 35) | def doMove(self, pos): ... method isTargettingSource (line 36) | def isTargettingSource(self, widget, action, value): ... method positionRubberBand (line 37) | def positionRubberBand(self, widget, action, value, splittable): ... method setDetach (line 38) | def setDetach(self, state): ... class DroppableTabBar (line 40) | class DroppableTabBar(PyQt5.QtWidgets.QTabBar): method __init__ (line 41) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _DroppableTabBar__clearDragTimer (line 42) | def _DroppableTabBar__clearDragTimer(self): ... method _DroppableTabBar__mouseDrag (line 43) | def _DroppableTabBar__mouseDrag(self, event): ... method _DroppableTabBar__timerCallback (line 44) | def _DroppableTabBar__timerCallback(self): ... method dragEnterEvent (line 45) | def dragEnterEvent(self, event): ... method dragLeaveEvent (line 46) | def dragLeaveEvent(self, event): ... method dragMoveEvent (line 47) | def dragMoveEvent(self, event): ... method dropEvent (line 48) | def dropEvent(self, event): ... class TabDragHandle (line 50) | class TabDragHandle(PyQt5.QtWidgets.QLabel): method __init__ (line 51) | def __init__(self, parent, frame, index) -> None: ... method keyPressEvent (line 52) | def keyPressEvent(self, event): ... method keyReleaseEvent (line 53) | def keyReleaseEvent(self, event): ... method mouseMoveEvent (line 54) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 55) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 56) | def mouseReleaseEvent(self, event): ... method paintEvent (line 57) | def paintEvent(self, event): ... FILE: katana/stubs/QT4Panels/Edge.pyi class Edge (line 13) | class Edge: method __init__ (line 14) | def __init__(self, start, end, position, vertical) -> None: ... method copy (line 15) | def copy(self): ... method distance (line 16) | def distance(self, x, y): ... method intersect (line 17) | def intersect(self, other): ... method __eq__ (line 18) | def __eq__(self, other) -> bool: ... method __hash__ (line 19) | def __hash__(self) -> int: ... method __lt__ (line 20) | def __lt__(self, other) -> bool: ... class EdgeWithInfo (line 22) | class EdgeWithInfo(Edge): method __init__ (line 23) | def __init__(self, edge, frames) -> None: ... method getDragPosition (line 24) | def getDragPosition(self): ... method getNeighbors (line 25) | def getNeighbors(self, sign): ... method minSize (line 26) | def minSize(self, other): ... method setDragPosition (line 27) | def setDragPosition(self, position): ... method stripFrame (line 28) | def stripFrame(self, frame): ... function AdjustChains (line 30) | def AdjustChains(chains, side): ... function BuildDragChains (line 31) | def BuildDragChains(x, y, fullEdge, frames): ... function ClosestEdge (line 32) | def ClosestEdge(x, y, vertical, expand, frames): ... function ClosestHoverEdge (line 33) | def ClosestHoverEdge(x, y, dist, rect): ... function ContainsPoint (line 34) | def ContainsPoint(rect, x, y): ... function DragChains (line 35) | def DragChains(x, y, chains): ... function FindChains (line 36) | def FindChains(edge, frames, side): ... function IsNearEdges (line 37) | def IsNearEdges(x, y, frames): ... function JoinEdges (line 38) | def JoinEdges(frame, edge1, edge2): ... function LargestColinearEdge (line 39) | def LargestColinearEdge(edge, regions, side): ... function MinimumMatchingEdge (line 40) | def MinimumMatchingEdge(frame, side, frames): ... function NewBorderRect (line 41) | def NewBorderRect(scale, side): ... function RectEdge (line 42) | def RectEdge(coordinates, side): ... function SplitRect (line 43) | def SplitRect(origRect, side): ... function SplitTargetRect (line 44) | def SplitTargetRect(rect): ... function SquashRect (line 45) | def SquashRect(rect, scale, side): ... FILE: katana/stubs/QT4Panels/PanelFrame.pyi class PanelFrame (line 12) | class PanelFrame(PyQt5.QtWidgets.QTabWidget): method __init__ (line 14) | def __init__(self, parent) -> None: ... method addTab (line 15) | def addTab(self, widget, label): ... method close (line 16) | def close(self): ... method closeEvent (line 17) | def closeEvent(self, event): ... method doTabDoubleClick (line 18) | def doTabDoubleClick(self, index): ... method doTabRightMouse (line 19) | def doTabRightMouse(self, index): ... method doTabStartDrag (line 20) | def doTabStartDrag(self, index): ... method event (line 21) | def event(self, event): ... method getDragRect (line 22) | def getDragRect(self): ... method getFrameMaximized (line 23) | def getFrameMaximized(self): ... method getMinSize (line 24) | def getMinSize(self): ... method getPhysRect (line 25) | def getPhysRect(self, margin: int = ...): ... method getRealRect (line 26) | def getRealRect(self): ... method insertTab (line 27) | def insertTab(self, index, widget, label): ... method keyPressEvent (line 28) | def keyPressEvent(self, event): ... method setDragRect (line 29) | def setDragRect(self, coordinates): ... method setFrameMaximized (line 30) | def setFrameMaximized(self, state): ... method setPhysRect (line 31) | def setPhysRect(self, coordinates): ... method setRealRect (line 32) | def setRealRect(self, coordinates): ... method __bool__ (line 33) | def __bool__(self) -> bool: ... FILE: katana/stubs/QT4Panels/PanelLayout.pyi class PanelLayout (line 14) | class PanelLayout(PyQt5.QtWidgets.QWidget): method __init__ (line 15) | def __init__(self, parent, layout: Incomplete | None = ..., dragType: ... method _PanelLayout__applyDrag (line 16) | def _PanelLayout__applyDrag(self): ... method _PanelLayout__beginDrag (line 17) | def _PanelLayout__beginDrag(self, pos, fullEdge): ... method _PanelLayout__cancelDrag (line 18) | def _PanelLayout__cancelDrag(self): ... method _PanelLayout__resetDragPositions (line 19) | def _PanelLayout__resetDragPositions(self): ... method _PanelLayout__toggleExpand (line 20) | def _PanelLayout__toggleExpand(self, fullEdge): ... method _PanelLayout__updateDrag (line 21) | def _PanelLayout__updateDrag(self, pos): ... method _PanelLayout__updateOverlay (line 22) | def _PanelLayout__updateOverlay(self): ... method _PanelLayout__updateTrack (line 23) | def _PanelLayout__updateTrack(self, pos): ... method _applyReal (line 24) | def _applyReal(self): ... method addNewFrame (line 25) | def addNewFrame(self, coords): ... method childEvent (line 26) | def childEvent(self, event): ... method closeFrame (line 27) | def closeFrame(self, frame): ... method createDetachLayout (line 28) | def createDetachLayout(self): ... method createPanelFrame (line 29) | def createPanelFrame(self, count, coords): ... method eventFilter (line 30) | def eventFilter(self, child, event): ... method findLargestFrame (line 31) | def findLargestFrame(self): ... method getDragType (line 32) | def getDragType(self): ... method getFrames (line 33) | def getFrames(self): ... method getMaximizedFrame (line 34) | def getMaximizedFrame(self): ... method keyPressEvent (line 35) | def keyPressEvent(self, event): ... method keyReleaseEvent (line 36) | def keyReleaseEvent(self, event): ... method loadLayout (line 37) | def loadLayout(self, layout): ... method mouseMoveEvent (line 38) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 39) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 40) | def mouseReleaseEvent(self, event): ... method resizeEvent (line 41) | def resizeEvent(self, event): ... method saveLayout (line 42) | def saveLayout(self): ... method setMaximizedFrame (line 43) | def setMaximizedFrame(self, frame): ... method __iter__ (line 44) | def __iter__(self): ... FILE: katana/stubs/QT4Widgets/CapsuleCombo.pyi class CapsuleCombo (line 11) | class CapsuleCombo(CapsuleComboBase, PyQt5.QtWidgets.QWidget): method __init__ (line 13) | def __init__(self, parent, **kwargs) -> None: ... method _getFontMetrics (line 14) | def _getFontMetrics(self): ... method _getWidgetRect (line 15) | def _getWidgetRect(self): ... method _itemsChanged (line 16) | def _itemsChanged(self): ... method _numItemsChanged (line 17) | def _numItemsChanged(self): ... method enterEvent (line 18) | def enterEvent(self, ev): ... method leaveEvent (line 19) | def leaveEvent(self, ev): ... method mouseMoveEvent (line 20) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 21) | def mousePressEvent(self, ev): ... method paintEvent (line 22) | def paintEvent(self, ev): ... method sizePolicy (line 23) | def sizePolicy(self): ... class CapsuleComboBase (line 25) | class CapsuleComboBase: method __init__ (line 26) | def __init__(self, exclusive: bool = ..., equalPartitionWidths: bool =... method _doMousePress (line 27) | def _doMousePress(self, x, y, ev): ... method _doPaint (line 28) | def _doPaint(self, p, palette): ... method _getFontMetrics (line 29) | def _getFontMetrics(self): ... method _getWidgetRect (line 30) | def _getWidgetRect(self): ... method _itemsChanged (line 31) | def _itemsChanged(self): ... method _numItemsChanged (line 32) | def _numItemsChanged(self): ... method addItem (line 33) | def addItem(self, text, bgColor, enabled, meta: Incomplete | None = ..... method clearItems (line 34) | def clearItems(self): ... method getAlignment (line 35) | def getAlignment(self): ... method getAreaBoundaries (line 36) | def getAreaBoundaries(self): ... method getBubbleIndexAtPosition (line 37) | def getBubbleIndexAtPosition(self, px, py): ... method getEnabledItemIndices (line 38) | def getEnabledItemIndices(self): ... method getEnabledItems (line 39) | def getEnabledItems(self): ... method getItemIndex (line 40) | def getItemIndex(self, meta): ... method getItems (line 41) | def getItems(self): ... method getNumItems (line 42) | def getNumItems(self): ... method getRawTextWidths (line 43) | def getRawTextWidths(self): ... method getReadOnly (line 44) | def getReadOnly(self): ... method isExclusive (line 45) | def isExclusive(self): ... method isItemEnabled (line 46) | def isItemEnabled(self, index): ... method joinEnabledItems (line 47) | def joinEnabledItems(self, items): ... method minimumSizeHint (line 48) | def minimumSizeHint(self): ... method setAlignment (line 49) | def setAlignment(self, alignment): ... method setEnabledItems (line 50) | def setEnabledItems(self, metaList): ... method setExclusive (line 51) | def setExclusive(self, exclusive): ... method setIndexUnderCursor (line 52) | def setIndexUnderCursor(self, index): ... method setItemEnabled (line 53) | def setItemEnabled(self, index, isEnabled): ... method setOptions (line 54) | def setOptions(self, options, colors: Incomplete | None = ..., display... method setReadOnly (line 55) | def setReadOnly(self, readOnly): ... method setTransitionValidator (line 56) | def setTransitionValidator(self, validator): ... method sizeHint (line 57) | def sizeHint(self): ... method splitNonExclusiveValueString (line 58) | def splitNonExclusiveValueString(self, value): ... class TransitionValidator (line 60) | class TransitionValidator: method fixup (line 61) | def fixup(self, newValue, oldValue): ... FILE: katana/stubs/QT4Widgets/CustomMenu.pyi class CustomMenu (line 11) | class CustomMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 12) | def __init__(self, parent) -> None: ... method actionEvent (line 13) | def actionEvent(self, event: PyQt5.QtGui.QActionEvent): ... method sizeHint (line 14) | def sizeHint(self) -> PyQt5.QtCore.QSize: ... FILE: katana/stubs/QT4Widgets/CustomQLineEdit.pyi class CustomQLineEdit (line 9) | class CustomQLineEdit(PyQt5.QtWidgets.QLineEdit): method __init__ (line 10) | def __init__(self, *args) -> None: ... method focusInEvent (line 11) | def focusInEvent(self, event): ... method focusOutEvent (line 12) | def focusOutEvent(self, event): ... FILE: katana/stubs/QT4Widgets/DarkMojo.pyi function DarkMojoPalette (line 7) | def DarkMojoPalette(): ... FILE: katana/stubs/QT4Widgets/ExpandingLabel.pyi class ExpandingLabel (line 10) | class ExpandingLabel(PyQt5.QtWidgets.QTextEdit): method __init__ (line 11) | def __init__(self, *args) -> None: ... method _rightAlign (line 12) | def _rightAlign(self): ... method minimumSizeHint (line 13) | def minimumSizeHint(self): ... method resizeEvent (line 14) | def resizeEvent(self, resizeEvent): ... method setText (line 15) | def setText(self, qstring, color: Incomplete | None = ...): ... method sizeHint (line 16) | def sizeHint(self): ... method sizePolicy (line 17) | def sizePolicy(self): ... FILE: katana/stubs/QT4Widgets/FilterFieldWidget.pyi class FilterFieldWidget (line 13) | class FilterFieldWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 15) | def __init__(self, parent, name: str = ..., filterTypes: Incomplete | ... method _FilterFieldWidget__clearFilterField (line 16) | def _FilterFieldWidget__clearFilterField(self): ... method clear (line 17) | def clear(self): ... method getFilterField (line 18) | def getFilterField(self): ... method getFilterText (line 19) | def getFilterText(self): ... method getFilterType (line 20) | def getFilterType(self): ... method signalUpdate (line 21) | def signalUpdate(self, text: Incomplete | None = ...): ... FILE: katana/stubs/QT4Widgets/FilterablePopupButton.pyi class FilterableCombo (line 17) | class FilterableCombo(PyQt5.QtWidgets.QWidget): class FocusSignalingLineEdit (line 18) | class FocusSignalingLineEdit(PyQt5.QtWidgets.QLineEdit): method focusInEvent (line 20) | def focusInEvent(self, event): ... method __init__ (line 23) | def __init__(self, label, parent) -> None: ... method _FilterableCombo__fieldChanged (line 24) | def _FilterableCombo__fieldChanged(self): ... method _FilterableCombo__fieldFocusIn (line 25) | def _FilterableCombo__fieldFocusIn(self): ... method _FilterableCombo__popupAboutToShow (line 26) | def _FilterableCombo__popupAboutToShow(self): ... method _FilterableCombo__popupItemChosen (line 27) | def _FilterableCombo__popupItemChosen(self, item, meta: Incomplete | N... method event (line 28) | def event(self, event): ... method setItems (line 29) | def setItems(self, itemList): ... method setText (line 30) | def setText(self, text, strict: bool = ...): ... method text (line 31) | def text(self): ... class FilterablePopup (line 33) | class FilterablePopup(PyQt5.QtWidgets.QFrame): method __init__ (line 43) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _FilterablePopup__buildWidgets (line 44) | def _FilterablePopup__buildWidgets(self): ... method _FilterablePopup__calculateGeometry (line 45) | def _FilterablePopup__calculateGeometry(self) -> PyQt5.QtCore.QRect: ... method _FilterablePopup__chooseCurrent (line 46) | def _FilterablePopup__chooseCurrent(self): ... method _FilterablePopup__clearFilterField (line 47) | def _FilterablePopup__clearFilterField(self): ... method _FilterablePopup__findScreen (line 48) | def _FilterablePopup__findScreen(self, desktop: PQDesktopWidget, globa... method _FilterablePopup__findTabOrScrollAreaRect (line 49) | def _FilterablePopup__findTabOrScrollAreaRect(self) -> QRect | None: ... method _FilterablePopup__findXYToFitInRect (line 50) | def _FilterablePopup__findXYToFitInRect(self, currentPopupRect: QRect,... method _FilterablePopup__firstSelectedItem (line 51) | def _FilterablePopup__firstSelectedItem(self): ... method _FilterablePopup__itemChosen (line 52) | def _FilterablePopup__itemChosen(self, item): ... method _FilterablePopup__mouseMoved (line 53) | def _FilterablePopup__mouseMoved(self, event): ... method _FilterablePopup__on_filterCombobox_activated (line 54) | def _FilterablePopup__on_filterCombobox_activated(self, index): ... method _FilterablePopup__popupArrowKeyPress (line 55) | def _FilterablePopup__popupArrowKeyPress(self, key): ... method _FilterablePopup__popupReturnKeyPress (line 56) | def _FilterablePopup__popupReturnKeyPress(self, key): ... method _FilterablePopup__released (line 57) | def _FilterablePopup__released(self): ... method _FilterablePopup__updateFilter (line 58) | def _FilterablePopup__updateFilter(self, text: Incomplete | None = ...... method _buildTreeWidget (line 59) | def _buildTreeWidget(self): ... method addFilterByOption (line 60) | def addFilterByOption(self, name, callbackFnc): ... method addItem (line 61) | def addItem(self, text, pixmap: Incomplete | None = ..., meta: Incompl... method addOption (line 62) | def addOption(self, displayText, optionValues, defaultValue, callbackF... method addSwitch (line 63) | def addSwitch(self, displayText, defaultValue, callbackFnc) -> PyQt5.Q... method applyDefaultSize (line 64) | def applyDefaultSize(self): ... method bottomToolbar (line 65) | def bottomToolbar(self): ... method chooseCustom (line 66) | def chooseCustom(self, value, meta: Incomplete | None = ...): ... method clear (line 67) | def clear(self): ... method clearFilterField (line 68) | def clearFilterField(self): ... method displayActivityIndicator (line 69) | def displayActivityIndicator(self, display): ... method event (line 70) | def event(self, event): ... method focusFilterField (line 71) | def focusFilterField(self): ... method getDesiredHeight (line 72) | def getDesiredHeight(self): ... method getDesiredWidth (line 73) | def getDesiredWidth(self): ... method getMaxScreenHeightPercentage (line 74) | def getMaxScreenHeightPercentage(self) -> float: ... method getMaxScreenWidthPercentage (line 75) | def getMaxScreenWidthPercentage(self) -> float: ... method getOption (line 76) | def getOption(self, name): ... method getWidgetSwitchArea (line 77) | def getWidgetSwitchArea(self): ... method hideEvent (line 78) | def hideEvent(self, e): ... method popup (line 79) | def popup(self, globalPos): ... method selectItem (line 80) | def selectItem(self, text): ... method setDesiredHeight (line 81) | def setDesiredHeight(self, height): ... method setDesiredWidth (line 82) | def setDesiredWidth(self, width): ... method setIconSize (line 83) | def setIconSize(self, size): ... method setMaxScreenHeightPercentage (line 84) | def setMaxScreenHeightPercentage(self, maxScreenHeightPercentage: floa... method setMaxScreenWidthPercentage (line 85) | def setMaxScreenWidthPercentage(self, maxScreenWidthPercentage: float)... method setSorting (line 86) | def setSorting(self, state): ... method showEvent (line 87) | def showEvent(self, e): ... method switchBox (line 88) | def switchBox(self): ... method treeWidget (line 89) | def treeWidget(self): ... method updateActivityIndicator (line 90) | def updateActivityIndicator(self): ... method updateFilter (line 91) | def updateFilter(self): ... class FilterablePopupButton (line 93) | class FilterablePopupButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 97) | def __init__(self, parent: Incomplete | None = ..., buttonType: Incomp... method _FilterablePopupButton__popClicked (line 98) | def _FilterablePopupButton__popClicked(self): ... method _FilterablePopupButton__popupHidden (line 99) | def _FilterablePopupButton__popupHidden(self): ... method _FilterablePopupButton__popupShow (line 100) | def _FilterablePopupButton__popupShow(self): ... method _buildPopupWindow (line 101) | def _buildPopupWindow(self): ... method forceUIUpdate (line 102) | def forceUIUpdate(self): ... method getPopupWindow (line 103) | def getPopupWindow(self): ... method setButtonType (line 104) | def setButtonType(self, buttonType): ... method __del__ (line 105) | def __del__(self) -> None: ... method __getattr__ (line 106) | def __getattr__(self, name): ... class _DeleteEatingLineEdit (line 108) | class _DeleteEatingLineEdit(PyQt5.QtWidgets.QLineEdit): method keyPressEvent (line 110) | def keyPressEvent(self, event): ... class _TrackingTreeWidget (line 112) | class _TrackingTreeWidget(SortableTreeWidget): method __init__ (line 115) | def __init__(self, *args) -> None: ... method event (line 116) | def event(self, event): ... method leaveEvent (line 117) | def leaveEvent(self, e): ... method mouseMoveEvent (line 118) | def mouseMoveEvent(self, e): ... method mousePressEvent (line 119) | def mousePressEvent(self, e): ... method mouseReleaseEvent (line 120) | def mouseReleaseEvent(self, e): ... method showEvent (line 121) | def showEvent(self, event): ... FILE: katana/stubs/QT4Widgets/InteractiveIconTabBar.pyi class InteractiveIconTabBar (line 10) | class InteractiveIconTabBar(PyQt5.QtWidgets.QTabBar): method __init__ (line 15) | def __init__(self, parent) -> None: ... method getIconIndex (line 16) | def getIconIndex(self, pos): ... method getIconRect (line 17) | def getIconRect(self, index): ... method getMouseOverIndex (line 18) | def getMouseOverIndex(self): ... method mouseMoveEvent (line 19) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 20) | def mousePressEvent(self, ev): ... FILE: katana/stubs/QT4Widgets/LogView.pyi class LogView (line 11) | class LogView(PyQt5.QtWidgets.QAbstractScrollArea): method __init__ (line 15) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None) -> None: ... method _LogView__immediateAppend (line 16) | def _LogView__immediateAppend(self, text): ... method _LogView__on_scrollBar_actionTriggered (line 17) | def _LogView__on_scrollBar_actionTriggered(self, _action: int): ... method _LogView__on_verticalScrollBar_valueChanged (line 18) | def _LogView__on_verticalScrollBar_valueChanged(self, value: int): ... method _LogView__scrollTimer_CB (line 19) | def _LogView__scrollTimer_CB(self): ... method _LogView__scrollToEndOfLog (line 20) | def _LogView__scrollToEndOfLog(self, temporarilyBlockSignals: bool = .... method _LogView__updateCachedFontProperties (line 21) | def _LogView__updateCachedFontProperties(self): ... method _LogView__updateTimer_CB (line 22) | def _LogView__updateTimer_CB(self): ... method _clearCachedScrollbarPositions (line 23) | def _clearCachedScrollbarPositions(self, scrollbarPositionsCacheKey: s... method _isAutoScrolling (line 24) | def _isAutoScrolling(self) -> bool: ... method _restoreScrollbarPositionsFromCache (line 25) | def _restoreScrollbarPositionsFromCache(self, scrollbarPositionsCacheK... method _setAutoScrolling (line 26) | def _setAutoScrolling(self, autoScrolling: bool): ... method _storeScrollbarPositionsInCache (line 27) | def _storeScrollbarPositionsInCache(self, scrollbarPositionsCacheKey: ... method append (line 28) | def append(self, text): ... method changeEvent (line 29) | def changeEvent(self, event: PyQt5.QtCore.QEvent): ... method clear (line 30) | def clear(self): ... method drawInsertionLine (line 31) | def drawInsertionLine(self, p, textIndex): ... method getCharacterMap (line 32) | def getCharacterMap(self, bold: Incomplete | None = ..., color: Incomp... method getLogText (line 33) | def getLogText(self, startIndex: Incomplete | None = ..., endIndex: In... method getNumLines (line 34) | def getNumLines(self): ... method getSelectedText (line 35) | def getSelectedText(self) -> str: ... method mouseMoveEvent (line 36) | def mouseMoveEvent(self, e): ... method mousePressEvent (line 37) | def mousePressEvent(self, e): ... method mouseReleaseEvent (line 38) | def mouseReleaseEvent(self, e): ... method paintEvent (line 39) | def paintEvent(self, event): ... method resizeEvent (line 40) | def resizeEvent(self, event): ... method setUpdateThrottle (line 41) | def setUpdateThrottle(self, timeMS): ... method textIndexAtPosition (line 42) | def textIndexAtPosition(self, pos): ... method updateScrollbars (line 43) | def updateScrollbars(self): ... FILE: katana/stubs/QT4Widgets/MenuButton.pyi class MenuButton (line 14) | class MenuButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 19) | def __init__(self, parent, text: str = ..., alignWidget: Incomplete | ... method _MenuButton__aboutToHideMenu (line 20) | def _MenuButton__aboutToHideMenu(self): ... method _MenuButton__positionArrow (line 21) | def _MenuButton__positionArrow(self): ... method _displayMenu (line 22) | def _displayMenu(self): ... method contextMenuEvent (line 23) | def contextMenuEvent(self, event): ... method dragEnterEvent (line 24) | def dragEnterEvent(self, event): ... method dragLeaveEvent (line 25) | def dragLeaveEvent(self, event): ... method dropEvent (line 26) | def dropEvent(self, event): ... method event (line 27) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method menu (line 28) | def menu(self): ... method mousePressEvent (line 29) | def mousePressEvent(self, event): ... method resizeEvent (line 30) | def resizeEvent(self, event): ... method setArrowVisible (line 31) | def setArrowVisible(self, value): ... method setButtonType (line 32) | def setButtonType(self, buttonType): ... method setFlat (line 33) | def setFlat(self, flat): ... method setMenu (line 34) | def setMenu(self, menu): ... method setPixmap (line 35) | def setPixmap(self, pixmap): ... method sizeHint (line 36) | def sizeHint(self): ... class PassThroughLabel (line 38) | class PassThroughLabel(PyQt5.QtWidgets.QLabel): method mousePressEvent (line 39) | def mousePressEvent(self, event): ... FILE: katana/stubs/QT4Widgets/NavigationToolbar.pyi class NavigationToolbar (line 13) | class NavigationToolbar(PyQt5.QtWidgets.QFrame): method __init__ (line 15) | def __init__(self, parent, callback: Incomplete | None = ..., maxHisto... method _NavigationToolbar__backButtonClicked (line 16) | def _NavigationToolbar__backButtonClicked(self): ... method _NavigationToolbar__backButtonMenuCallback (line 17) | def _NavigationToolbar__backButtonMenuCallback(self, action): ... method _NavigationToolbar__backButtonRightClicked (line 18) | def _NavigationToolbar__backButtonRightClicked(self): ... method _NavigationToolbar__clearHistory (line 19) | def _NavigationToolbar__clearHistory(self): ... method _NavigationToolbar__forwardButtonClicked (line 20) | def _NavigationToolbar__forwardButtonClicked(self): ... method _NavigationToolbar__forwardButtonMenuCallback (line 21) | def _NavigationToolbar__forwardButtonMenuCallback(self, action): ... method _NavigationToolbar__forwardButtonRightClicked (line 22) | def _NavigationToolbar__forwardButtonRightClicked(self): ... method _NavigationToolbar__updateState (line 23) | def _NavigationToolbar__updateState(self): ... method clearFuture (line 24) | def clearFuture(self): ... method clearPast (line 25) | def clearPast(self): ... method getCallback (line 26) | def getCallback(self): ... method getCurrentEntry (line 27) | def getCurrentEntry(self): ... method pushEntry (line 28) | def pushEntry(self, name, meta): ... method setCallback (line 29) | def setCallback(self, callback): ... FILE: katana/stubs/QT4Widgets/PopdownLabel.pyi class PopdownLabel (line 12) | class PopdownLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 14) | def __init__(self, *args) -> None: ... method buildMenu (line 15) | def buildMenu(self, menu): ... method enterEvent (line 16) | def enterEvent(self, ev): ... method leaveEvent (line 17) | def leaveEvent(self, ev): ... method minimumSizeHint (line 18) | def minimumSizeHint(self): ... method mousePressEvent (line 19) | def mousePressEvent(self, ev): ... method paintEvent (line 20) | def paintEvent(self, ev): ... method sizeHint (line 21) | def sizeHint(self): ... method updateStyle (line 22) | def updateStyle(self, isSetToDefault): ... FILE: katana/stubs/QT4Widgets/PopupMenuOption.pyi class PopupMenuOption (line 10) | class PopupMenuOption(PyQt5.QtWidgets.QFrame): class DialogRequestButton (line 11) | class DialogRequestButton(PyQt5.QtWidgets.QLabel): method __init__ (line 13) | def __init__(self, *args) -> None: ... method _DialogRequestButton__emit (line 14) | def _DialogRequestButton__emit(self): ... method enterEvent (line 15) | def enterEvent(self, ev): ... method leaveEvent (line 16) | def leaveEvent(self, ev): ... method mousePressEvent (line 17) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 18) | def mouseReleaseEvent(self, ev): ... class MenuLabel (line 20) | class MenuLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 22) | def __init__(self, *args) -> None: ... method _MenuLabel__emit (line 23) | def _MenuLabel__emit(self): ... method enterEvent (line 24) | def enterEvent(self, ev): ... method leaveEvent (line 25) | def leaveEvent(self, ev): ... method mousePressEvent (line 26) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 27) | def mouseReleaseEvent(self, ev): ... method __init__ (line 28) | def __init__(self, text, *args) -> None: ... method closePopupMenu (line 29) | def closePopupMenu(self): ... method enterEvent (line 30) | def enterEvent(self, ev): ... method leaveEvent (line 31) | def leaveEvent(self, ev): ... FILE: katana/stubs/QT4Widgets/Profile.pyi class CallersCalleesNavigationPopup (line 11) | class CallersCalleesNavigationPopup(PyQt5.QtWidgets.QFrame): method __init__ (line 14) | def __init__(self, functionName, functionType, parent: Incomplete | No... method on_callersCalleesButtons_clicked (line 15) | def on_callersCalleesButtons_clicked(self, functionType): ... method on_goBackButton_clicked (line 16) | def on_goBackButton_clicked(self): ... method updateCalleesCallersPopup (line 17) | def updateCalleesCallersPopup(self, functionName, functionType): ... class ProfileStatsWidget (line 19) | class ProfileStatsWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 22) | def __init__(self, parent, stats: Incomplete | None = ..., defaultStat... method on_callersCalleesAction_triggered (line 23) | def on_callersCalleesAction_triggered(self, func, functionType): ... method setStats (line 24) | def setStats(self, stats, statusText: Incomplete | None = ...): ... method setStatusText (line 25) | def setStatusText(self, message): ... class ProfileTreeWidgetItem (line 27) | class ProfileTreeWidgetItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 28) | def __init__(self, parent, func, stats) -> None: ... method __lt__ (line 29) | def __lt__(self, other) -> bool: ... function main (line 31) | def main(): ... FILE: katana/stubs/QT4Widgets/PythonConsole.pyi class FullInteractivePython (line 18) | class FullInteractivePython(PyQt5.QtWidgets.QFrame): method __init__ (line 19) | def __init__(self, *args, **kwargs) -> None: ... method _FullInteractivePython__buildChildren (line 20) | def _FullInteractivePython__buildChildren(self): ... method _FullInteractivePython__buildCommands (line 21) | def _FullInteractivePython__buildCommands(self): ... method _FullInteractivePython__buildMenuBar (line 22) | def _FullInteractivePython__buildMenuBar(self): ... method _FullInteractivePython__on_preferencesAction_triggered (line 23) | def _FullInteractivePython__on_preferencesAction_triggered(self): ... method _FullInteractivePython__sourceFileCallback (line 24) | def _FullInteractivePython__sourceFileCallback(self): ... method getMenuBar (line 25) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar: ... method scriptWidget (line 26) | def scriptWidget(self) -> InteractivePython: ... class InteractivePython (line 28) | class InteractivePython(PyQt5.QtWidgets.QFrame): class CustomInterp (line 29) | class CustomInterp(code.InteractiveInterpreter): method __init__ (line 30) | def __init__(self, outputwidget) -> None: ... class _CommandEntryWidget (line 32) | class _CommandEntryWidget(PyQt5.QtWidgets.QTextEdit): method __init__ (line 38) | def __init__(self, *args) -> None: ... method _CommandEntryWidget__formatDocument (line 39) | def _CommandEntryWidget__formatDocument(self, selectionOnly: bool): ... method _CommandEntryWidget__formatText (line 40) | def _CommandEntryWidget__formatText(self, text: str, lineIndices) ->... method _CommandEntryWidget__on_pref_changed (line 41) | def _CommandEntryWidget__on_pref_changed(self, eventType: str | None... method _CommandEntryWidget__returnKeyPressEvent (line 42) | def _CommandEntryWidget__returnKeyPressEvent(self, event: PyQt5.QtGu... method _CommandEntryWidget__toggleComment (line 43) | def _CommandEntryWidget__toggleComment(self): ... method _sanitiseMimeData (line 44) | def _sanitiseMimeData(self, mimeData): ... method contextMenuEvent (line 45) | def contextMenuEvent(self, event: PyQt5.QtGui.QContextMenuEvent): ... method dragEnterEvent (line 46) | def dragEnterEvent(self, event): ... method dragMoveEvent (line 47) | def dragMoveEvent(self, event): ... method dropEvent (line 48) | def dropEvent(self, event): ... method focusOutEvent (line 49) | def focusOutEvent(self, event: PyQt5.QtGui.QFocusEvent): ... method getFormatAllAction (line 50) | def getFormatAllAction(self) -> PyQt5.QtWidgets.QAction: ... method getFormatSelectionAction (line 51) | def getFormatSelectionAction(self) -> PyQt5.QtWidgets.QAction: ... method getToggleCommentAction (line 52) | def getToggleCommentAction(self) -> PyQt5.QtWidgets.QAction: ... method insertFromMimeData (line 53) | def insertFromMimeData(self, mimeData): ... method keyPressEvent (line 54) | def keyPressEvent(self, keyEvent): ... method keyReleaseEvent (line 55) | def keyReleaseEvent(self, keyEvent): ... method paintEvent (line 56) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... class _ResultWidget (line 58) | class _ResultWidget(PyQt5.QtWidgets.QTextEdit): method __init__ (line 59) | def __init__(self, *args) -> None: ... method keyPressEvent (line 60) | def keyPressEvent(self, keyEvent): ... class _ScriptStderr (line 62) | class _ScriptStderr: method __init__ (line 63) | def __init__(self, resultWidget, realstderr) -> None: ... method flush (line 64) | def flush(self): ... method write (line 65) | def write(self, msg): ... class _ScriptStdin (line 67) | class _ScriptStdin: method __init__ (line 68) | def __init__(self, scriptWidget) -> None: ... class _ScriptStdout (line 70) | class _ScriptStdout: method __init__ (line 71) | def __init__(self, resultWidget) -> None: ... method flush (line 72) | def flush(self): ... method write (line 73) | def write(self, msg): ... method __init__ (line 78) | def __init__(self, *args) -> None: ... method _InteractivePython__buildCommandWidget (line 79) | def _InteractivePython__buildCommandWidget(self): ... method _InteractivePython__buildResultWidget (line 80) | def _InteractivePython__buildResultWidget(self): ... method _InteractivePython__echoCommand (line 81) | def _InteractivePython__echoCommand(self, commandString): ... method _autoComplete (line 82) | def _autoComplete(self): ... method _enterCommand (line 83) | def _enterCommand(self): ... method _indentCommand (line 84) | def _indentCommand(self): ... method _unindentCommand (line 85) | def _unindentCommand(self): ... method clear (line 86) | def clear(self): ... method commandWidget (line 87) | def commandWidget(self): ... method copy (line 88) | def copy(self): ... method cut (line 89) | def cut(self): ... method getCustomFormatFunction (line 91) | def getCustomFormatFunction(cls) -> typing.Callable | None: ... method getEnvironment (line 92) | def getEnvironment(self): ... method nextHist (line 93) | def nextHist(self): ... method on_commandWidget_tabPressed (line 94) | def on_commandWidget_tabPressed(self): ... method paste (line 95) | def paste(self): ... method prevHist (line 96) | def prevHist(self): ... method printMessage (line 97) | def printMessage(self, messageString): ... method resultWidget (line 98) | def resultWidget(self): ... method runCommand (line 99) | def runCommand(self, commandString): ... method setCustomFormatFunction (line 101) | def setCustomFormatFunction(cls, customFormatFunction: typing.Callable... method setEnvironment (line 102) | def setEnvironment(self, env): ... method setUseAutoCompletionPopup (line 103) | def setUseAutoCompletionPopup(self, useAutoCompletionPopup): ... FILE: katana/stubs/QT4Widgets/Settings.pyi class GroupGuard (line 7) | class GroupGuard: method __init__ (line 8) | def __init__(self, settings, name) -> None: ... method __enter__ (line 9) | def __enter__(self): ... method __exit__ (line 10) | def __exit__(self, excType, excValue, tb): ... function RestoreGeometry (line 12) | def RestoreGeometry(settings, widget, groupName: str = ...): ... function SaveGeometry (line 13) | def SaveGeometry(settings, widget, groupName: str = ...): ... FILE: katana/stubs/QT4Widgets/SliderWidget.pyi class SliderBase (line 11) | class SliderBase: method __init__ (line 12) | def __init__(self, range: Incomplete | None = ..., center: Incomplete ... method _SliderBase__computeAutoAxisExponent (line 13) | def _SliderBase__computeAutoAxisExponent(self): ... method _SliderBase__drawLabelText (line 14) | def _SliderBase__drawLabelText(self, painter, value, text, centerLine_... method _SliderBase__measureLabelBounds (line 15) | def _SliderBase__measureLabelBounds(self, value, text): ... method _clearLabelsCache (line 16) | def _clearLabelsCache(self): ... method _doDrag (line 17) | def _doDrag(self, windowLocalX): ... method _doPaint (line 18) | def _doPaint(self, p, palette): ... method _endDrag (line 19) | def _endDrag(self, windowLocalX): ... method _getToggleComponentEnabled (line 20) | def _getToggleComponentEnabled(self): ... method _isInDrag (line 21) | def _isInDrag(self): ... method _toggleComponent (line 22) | def _toggleComponent(self): ... method getReadOnly (line 23) | def getReadOnly(self): ... method getValue (line 24) | def getValue(self): ... method isPreselectionActive (line 25) | def isPreselectionActive(self): ... method normalizedValueToValue (line 26) | def normalizedValueToValue(self, normValue): ... method normalizedValueToWindowPosition (line 27) | def normalizedValueToWindowPosition(self, normValue): ... method setAxisExponent (line 28) | def setAxisExponent(self, exponent): ... method setCenter (line 29) | def setCenter(self, centerVal): ... method setColor (line 30) | def setColor(self, c): ... method setGradient (line 31) | def setGradient(self, gradientName): ... method setHasFocus (line 32) | def setHasFocus(self, hasFocus): ... method setInteger (line 33) | def setInteger(self, isInt): ... method setRange (line 34) | def setRange(self, val1, val2): ... method setReadOnly (line 35) | def setReadOnly(self, readOnly, disableComponentToggle: Incomplete | N... method setValue (line 36) | def setValue(self, value): ... method valueToNormalizedValue (line 37) | def valueToNormalizedValue(self, value): ... method valueToWindowPosition (line 38) | def valueToWindowPosition(self, value): ... method windowPositionToNormalizedValue (line 39) | def windowPositionToNormalizedValue(self, pos): ... method windowPositionToValue (line 40) | def windowPositionToValue(self, pos, applyLabelSnapping: bool = ...): ... class SliderWidget (line 42) | class SliderWidget(PyQt5.QtWidgets.QWidget, SliderBase): method __init__ (line 45) | def __init__(self, parent, fontScale: Incomplete | None = ..., **kwarg... method _displayChanged (line 46) | def _displayChanged(self): ... method _toggleComponent (line 47) | def _toggleComponent(self): ... method _valueChanged (line 48) | def _valueChanged(self, value, final): ... method enterEvent (line 49) | def enterEvent(self, ev): ... method leaveEvent (line 50) | def leaveEvent(self, ev): ... method mouseMoveEvent (line 51) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 52) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 53) | def mouseReleaseEvent(self, ev): ... method paintEvent (line 54) | def paintEvent(self, ev): ... method resizeEvent (line 55) | def resizeEvent(self, ev): ... method sizeHint (line 56) | def sizeHint(self): ... method sizePolicy (line 57) | def sizePolicy(self): ... FILE: katana/stubs/QT4Widgets/SortableTreeWidget.pyi class CallbackRecord (line 13) | class CallbackRecord: method __init__ (line 14) | def __init__(self) -> None: ... method accept (line 15) | def accept(self): ... method ignore (line 16) | def ignore(self): ... method isAccepted (line 17) | def isAccepted(self): ... class SortableTreeWidget (line 19) | class SortableTreeWidget(PyQt5.QtWidgets.QTreeWidget): class _SortableTreeWidget__ContentsPosStore (line 20) | class _SortableTreeWidget__ContentsPosStore: method __init__ (line 21) | def __init__(self, w, restoreOnDelete: bool = ...) -> None: ... method get (line 22) | def get(self): ... method restore (line 23) | def restore(self): ... method __del__ (line 24) | def __del__(self) -> None: ... method __init__ (line 37) | def __init__(self, parent, delegate: Incomplete | None = ...) -> None:... method _SortableTreeWidget__getExpandedAndSelectionTables (line 38) | def _SortableTreeWidget__getExpandedAndSelectionTables(self, parentPat... method _SortableTreeWidget__itemExpandedOrCollapsed (line 39) | def _SortableTreeWidget__itemExpandedOrCollapsed(self, *args, **kwargs... method _SortableTreeWidget__lastItem (line 40) | def _SortableTreeWidget__lastItem(self) -> PyQt5.QtWidgets.QTreeWidget... method _SortableTreeWidget__processDrag (line 41) | def _SortableTreeWidget__processDrag(self, event, handleScrolling: boo... method _SortableTreeWidget__startDrag (line 42) | def _SortableTreeWidget__startDrag(self): ... method commitData (line 43) | def commitData(self, editor: PyQt5.QtWidgets.QWidget): ... method contextMenuEvent (line 44) | def contextMenuEvent(self, event: PyQt5.QtGui.QContextMenuEvent): ... method customEvent (line 45) | def customEvent(self, event): ... method dragEnterEvent (line 46) | def dragEnterEvent(self, event): ... method dragLeaveEvent (line 47) | def dragLeaveEvent(self, event): ... method dragMoveEvent (line 48) | def dragMoveEvent(self, event): ... method dropEvent (line 49) | def dropEvent(self, event): ... method edit (line 50) | def edit(self, index: PyQt5.QtCore.QModelIndex, trigger: PyQt5.QtWidge... method findItemLocalIndex (line 51) | def findItemLocalIndex(self, item): ... method getContextMenuHelper (line 52) | def getContextMenuHelper(self, event): ... method getDragItems (line 53) | def getDragItems(self): ... method getExpandedAndSelectionTables (line 54) | def getExpandedAndSelectionTables(self, delimiter: str = ...): ... method getFullHeight (line 55) | def getFullHeight(self): ... method getFullWidth (line 56) | def getFullWidth(self): ... method getItemFromLocalIndex (line 57) | def getItemFromLocalIndex(self, parent, index): ... method getPositionStore (line 58) | def getPositionStore(self, restoreOnDelete: bool = ...): ... method getUpdateSuppressor (line 59) | def getUpdateSuppressor(self): ... method isDraggable (line 60) | def isDraggable(self): ... method isItemDraggable (line 61) | def isItemDraggable(self, item): ... method isMultiDragEnabled (line 62) | def isMultiDragEnabled(self): ... method keyPressEvent (line 63) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method mouseMoveEvent (line 64) | def mouseMoveEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method mousePressEvent (line 65) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 66) | def mouseReleaseEvent(self, event): ... method setDraggable (line 67) | def setDraggable(self, state): ... method setMultiDragEnabled (line 68) | def setMultiDragEnabled(self, state): ... class SortableTreeWidgetItem (line 70) | class SortableTreeWidgetItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 71) | def __init__(self, parent, text: str = ..., data: Incomplete | None = ... method getHiliteColor (line 72) | def getHiliteColor(self): ... method getItemData (line 73) | def getItemData(self): ... method indent (line 74) | def indent(self): ... method isDraggable (line 75) | def isDraggable(self): ... method path (line 76) | def path(self, column: int = ...): ... method setExpanded (line 77) | def setExpanded(self, expand): ... method setHiliteColor (line 78) | def setHiliteColor(self, color): ... method setItemData (line 79) | def setItemData(self, data): ... method __hash__ (line 80) | def __hash__(self) -> int: ... method __lt__ (line 81) | def __lt__(self, other) -> bool: ... class SortableTreeWidgetItemDelegate (line 83) | class SortableTreeWidgetItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method initStyleOption (line 84) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method textColor (line 85) | def textColor(self, option: PyQt5.QtWidgets.QStyleOptionViewItem) -> P... FILE: katana/stubs/QT4Widgets/StretchBox.pyi class DragSizer (line 10) | class DragSizer(PyQt5.QtWidgets.QFrame): method __init__ (line 11) | def __init__(self, parent, allowHorizontal: bool = ..., allowVertical:... method _DragSizer__resizeParent (line 12) | def _DragSizer__resizeParent(self, width, height): ... method mouseMoveEvent (line 13) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 14) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 15) | def mouseReleaseEvent(self, event): ... method paintEvent (line 16) | def paintEvent(self, event): ... method setMinHeight (line 17) | def setMinHeight(self, h): ... method setMinWidth (line 18) | def setMinWidth(self, w): ... class StretchBox (line 20) | class StretchBox(PyQt5.QtWidgets.QFrame): method __init__ (line 21) | def __init__(self, parent, cacheSizeHint: Incomplete | None = ..., all... method _StretchBox__repositionSizer (line 22) | def _StretchBox__repositionSizer(self): ... method _storeSize (line 23) | def _storeSize(self, height): ... method childEvent (line 24) | def childEvent(self, event): ... method resizeEvent (line 25) | def resizeEvent(self, event): ... method showEvent (line 26) | def showEvent(self, event): ... FILE: katana/stubs/QT4Widgets/TextEditorUtils.pyi function BackspaceSpacesToTabStop (line 7) | def BackspaceSpacesToTabStop(textEdit: PyQt5.QtWidgets.QTextEdit, spacin... function CountWhitespaceToTabStop (line 8) | def CountWhitespaceToTabStop(textEdit: PyQt5.QtWidgets.QTextEdit, previo... function DeleteSpacesToTabStop (line 9) | def DeleteSpacesToTabStop(textEdit: PyQt5.QtWidgets.QTextEdit, spacing: ... function InsertNewLineAndAutoIndent (line 10) | def InsertNewLineAndAutoIndent(textEdit: PyQt5.QtWidgets.QTextEdit, rule... function MoveToLineStart (line 11) | def MoveToLineStart(textEdit: PyQt5.QtWidgets.QTextEdit, keepAnchor: boo... function Reindent (line 12) | def Reindent(textEdit: PyQt5.QtWidgets.QTextEdit, unindent: bool, spacin... function ToggleComment (line 13) | def ToggleComment(textEdit: PyQt5.QtWidgets.QTextEdit, commentSymbol: st... FILE: katana/stubs/QT4Widgets/Threads.pyi class ThreadPool (line 8) | class ThreadPool: method __init__ (line 9) | def __init__(self) -> None: ... method _ThreadPool__threadFinishedCB (line 10) | def _ThreadPool__threadFinishedCB(self): ... method start (line 11) | def start(self, thread, priority: Incomplete | None = ...): ... method __del__ (line 12) | def __del__(self) -> None: ... function GetGlobalThreadPool (line 14) | def GetGlobalThreadPool(): ... FILE: katana/stubs/QT4Widgets/Timebar.pyi class FrameButtonWidget (line 11) | class FrameButtonWidget(PyQt5.QtWidgets.QToolButton): method __init__ (line 12) | def __init__(self, text, parent) -> None: ... class FrameEditWidget (line 14) | class FrameEditWidget(PyQt5.QtWidgets.QLineEdit): method __init__ (line 15) | def __init__(self, parent, callback) -> None: ... method changeEvent (line 16) | def changeEvent(self, event): ... class FramesPopup (line 18) | class FramesPopup(PyQt5.QtWidgets.QFrame): method __init__ (line 20) | def __init__(self, parent) -> None: ... method addRow (line 21) | def addRow(self): ... method addWidget (line 22) | def addWidget(self, text, widget): ... method closeEvent (line 23) | def closeEvent(self, event): ... method popup (line 24) | def popup(self, pos): ... class TimebarWidget (line 26) | class TimebarWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 32) | def __init__(self, *args) -> None: ... method _TimebarWidget__addLabeledEdit (line 33) | def _TimebarWidget__addLabeledEdit(self, labelText, callback, layout):... method _TimebarWidget__backButton_clicked_callback (line 34) | def _TimebarWidget__backButton_clicked_callback(self): ... method _TimebarWidget__backKeyButton_clicked_callback (line 35) | def _TimebarWidget__backKeyButton_clicked_callback(self): ... method _TimebarWidget__buildChildren (line 36) | def _TimebarWidget__buildChildren(self): ... method _TimebarWidget__doEditCurrent (line 37) | def _TimebarWidget__doEditCurrent(self): ... method _TimebarWidget__doEditEnd (line 38) | def _TimebarWidget__doEditEnd(self): ... method _TimebarWidget__doEditIncrement (line 39) | def _TimebarWidget__doEditIncrement(self): ... method _TimebarWidget__doEditStart (line 40) | def _TimebarWidget__doEditStart(self): ... method _TimebarWidget__emitCurrentTimeChanged (line 41) | def _TimebarWidget__emitCurrentTimeChanged(self, time, final): ... method _TimebarWidget__forwardButton_clicked_callback (line 42) | def _TimebarWidget__forwardButton_clicked_callback(self): ... method _TimebarWidget__forwardKeyButton_clicked_callback (line 43) | def _TimebarWidget__forwardKeyButton_clicked_callback(self): ... method _TimebarWidget__resetButton_clicked_callback (line 44) | def _TimebarWidget__resetButton_clicked_callback(self): ... method _TimebarWidget__timeline_currentTimeChanged_CB (line 45) | def _TimebarWidget__timeline_currentTimeChanged_CB(self, time, final):... method _TimebarWidget__timeline_fullRangeChanged (line 46) | def _TimebarWidget__timeline_fullRangeChanged(self, inTime, outTime): ... method _TimebarWidget__timeline_selectionChanged (line 47) | def _TimebarWidget__timeline_selectionChanged(self): ... method _TimebarWidget__timeline_timeRangeChanged (line 48) | def _TimebarWidget__timeline_timeRangeChanged(self, inTime, outTime): ... method addKey (line 49) | def addKey(self, time): ... method backButton (line 50) | def backButton(self): ... method backKey (line 51) | def backKey(self): ... method backKeyButton (line 52) | def backKeyButton(self): ... method backStep (line 53) | def backStep(self): ... method clearKeys (line 54) | def clearKeys(self): ... method currentTime (line 55) | def currentTime(self): ... method currentTimeEdit (line 56) | def currentTimeEdit(self): ... method endTimeEdit (line 57) | def endTimeEdit(self): ... method forwardButton (line 58) | def forwardButton(self): ... method forwardKey (line 59) | def forwardKey(self): ... method forwardKeyButton (line 60) | def forwardKeyButton(self): ... method forwardStep (line 61) | def forwardStep(self): ... method fullRange (line 62) | def fullRange(self): ... method increment (line 63) | def increment(self): ... method incrementEdit (line 64) | def incrementEdit(self): ... method isFullRangeFinal (line 65) | def isFullRangeFinal(self): ... method isTimeRangeFinal (line 66) | def isTimeRangeFinal(self): ... method keySet (line 67) | def keySet(self): ... method removeKey (line 68) | def removeKey(self, time): ... method resetButton (line 69) | def resetButton(self): ... method selectedTimeRange (line 70) | def selectedTimeRange(self): ... method setCurrentTime (line 71) | def setCurrentTime(self, time): ... method setFullRange (line 72) | def setFullRange(self, range): ... method setIncrement (line 73) | def setIncrement(self, i): ... method setKeys (line 74) | def setKeys(self, keys): ... method setSelectedTimeRange (line 75) | def setSelectedTimeRange(self, range): ... method setTimeRange (line 76) | def setTimeRange(self, range): ... method startTimeEdit (line 77) | def startTimeEdit(self): ... method timeRange (line 78) | def timeRange(self): ... method timeline (line 79) | def timeline(self): ... FILE: katana/stubs/QT4Widgets/Timeline.pyi class TimelineWidget (line 10) | class TimelineWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 33) | def __init__(self, parent, *args) -> None: ... method CalculateTicks (line 35) | def CalculateTicks(rangeMin, rangeMax, posFn, invPosFn, widthFn, margi... method RoundRange (line 37) | def RoundRange(range): ... method _TimelineWidget__cleanRange (line 38) | def _TimelineWidget__cleanRange(self, range, intify: bool = ...): ... method _TimelineWidget__emitCurrentTimeChanged (line 39) | def _TimelineWidget__emitCurrentTimeChanged(self, time, final): ... method _TimelineWidget__getSliderDivisionRects (line 40) | def _TimelineWidget__getSliderDivisionRects(self, sliderRect): ... method _TimelineWidget__getSliderExtent (line 41) | def _TimelineWidget__getSliderExtent(self): ... method _TimelineWidget__getSliderTimeFromLocalPoint (line 42) | def _TimelineWidget__getSliderTimeFromLocalPoint(self, x): ... method _TimelineWidget__getTickArea (line 43) | def _TimelineWidget__getTickArea(self, time): ... method _TimelineWidget__getTickAreaExtent (line 44) | def _TimelineWidget__getTickAreaExtent(self): ... method _TimelineWidget__getTimelineExtent (line 45) | def _TimelineWidget__getTimelineExtent(self): ... method _TimelineWidget__hitTestLocalPoint (line 46) | def _TimelineWidget__hitTestLocalPoint(self, point): ... method _TimelineWidget__paintArrows (line 47) | def _TimelineWidget__paintArrows(self, painter): ... method _TimelineWidget__paintBackground (line 48) | def _TimelineWidget__paintBackground(self, painter): ... method _TimelineWidget__paintCurrentTime (line 49) | def _TimelineWidget__paintCurrentTime(self, painter): ... method _TimelineWidget__paintHoverTime (line 50) | def _TimelineWidget__paintHoverTime(self, painter): ... method _TimelineWidget__paintKeys (line 51) | def _TimelineWidget__paintKeys(self, painter): ... method _TimelineWidget__paintSelection (line 52) | def _TimelineWidget__paintSelection(self, painter): ... method _TimelineWidget__paintSlider (line 53) | def _TimelineWidget__paintSlider(self, painter): ... method _TimelineWidget__paintTicksAndLabels (line 54) | def _TimelineWidget__paintTicksAndLabels(self, painter): ... method _TimelineWidget__setFloatTimeRange (line 55) | def _TimelineWidget__setFloatTimeRange(self, floatTimeRange, update: b... method _TimelineWidget__zoomTimeRange (line 56) | def _TimelineWidget__zoomTimeRange(self, factor, center, final: bool =... method addKey (line 57) | def addKey(self, time): ... method allowSelection (line 58) | def allowSelection(self): ... method clearKeys (line 59) | def clearKeys(self): ... method currentTime (line 60) | def currentTime(self): ... method fitTimeRangeToKeys (line 61) | def fitTimeRangeToKeys(self): ... method floatHoverTime (line 62) | def floatHoverTime(self): ... method fullRange (line 63) | def fullRange(self): ... method getTimeFromLocalX (line 64) | def getTimeFromLocalX(self, x, floatValue: bool = ...): ... method hoverTime (line 65) | def hoverTime(self): ... method isFullRangeFinal (line 66) | def isFullRangeFinal(self): ... method isTimeRangeFinal (line 67) | def isTimeRangeFinal(self): ... method keyPressEvent (line 68) | def keyPressEvent(self, keyEvent): ... method keySet (line 69) | def keySet(self): ... method leaveEvent (line 70) | def leaveEvent(self, event): ... method mouseMoveEvent (line 71) | def mouseMoveEvent(self, mouseEvent): ... method mousePressEvent (line 72) | def mousePressEvent(self, mouseEvent): ... method mouseReleaseEvent (line 73) | def mouseReleaseEvent(self, mouseEvent): ... method paintEvent (line 74) | def paintEvent(self, paintEvent): ... method removeKey (line 75) | def removeKey(self, time): ... method resetTimeRange (line 76) | def resetTimeRange(self): ... method selectedTimeRange (line 77) | def selectedTimeRange(self): ... method setAllowSelection (line 78) | def setAllowSelection(self, flag): ... method setCurrentTime (line 79) | def setCurrentTime(self, t): ... method setFullRange (line 80) | def setFullRange(self, range, final: bool = ...): ... method setKeys (line 81) | def setKeys(self, keySet): ... method setSelectedTimeRange (line 82) | def setSelectedTimeRange(self, timeRange): ... method setTimeRange (line 83) | def setTimeRange(self, timeRange, final: bool = ...): ... method timeRange (line 84) | def timeRange(self): ... method wheelEvent (line 85) | def wheelEvent(self, wheelEvent): ... FILE: katana/stubs/QT4Widgets/ToolbarButton.pyi class LabeledToolbarButton (line 11) | class LabeledToolbarButton(PyQt5.QtWidgets.QWidget): class _ClickLabel (line 12) | class _ClickLabel(PyQt5.QtWidgets.QLabel): method mousePressEvent (line 14) | def mousePressEvent(self, event): ... method __init__ (line 16) | def __init__(self, label, parent, *args, **kwargs) -> None: ... method isOn (line 17) | def isOn(self): ... method setOn (line 18) | def setOn(self, on): ... class ToolbarButton (line 20) | class ToolbarButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 23) | def __init__(self, label, parent, normalPixmap, disabledPixmap: Incomp... method _ToolbarButton__actionToggled (line 24) | def _ToolbarButton__actionToggled(self): ... method _ToolbarButton__update (line 25) | def _ToolbarButton__update(self): ... method disabledPixmap (line 26) | def disabledPixmap(self): ... method disabledRolloverPixmap (line 27) | def disabledRolloverPixmap(self): ... method enterEvent (line 28) | def enterEvent(self, ev): ... method errorPixmap (line 29) | def errorPixmap(self): ... method errorRolloverPixmap (line 30) | def errorRolloverPixmap(self): ... method isEnabled (line 31) | def isEnabled(self): ... method isError (line 32) | def isError(self): ... method isOn (line 33) | def isOn(self): ... method leaveEvent (line 34) | def leaveEvent(self, ev): ... method mousePressEvent (line 35) | def mousePressEvent(self, ev): ... method normalPixmap (line 36) | def normalPixmap(self): ... method onPixmap (line 37) | def onPixmap(self): ... method onRolloverPixmap (line 38) | def onRolloverPixmap(self): ... method rolloverPixmap (line 39) | def rolloverPixmap(self): ... method setDisabledPixmap (line 40) | def setDisabledPixmap(self, p): ... method setDisabledRolloverPixmap (line 41) | def setDisabledRolloverPixmap(self, p): ... method setEnabled (line 42) | def setEnabled(self, value): ... method setError (line 43) | def setError(self, value, toolTip: Incomplete | None = ...): ... method setErrorPixmap (line 44) | def setErrorPixmap(self, p): ... method setErrorRolloverPixmap (line 45) | def setErrorRolloverPixmap(self, p): ... method setNormalPixmap (line 46) | def setNormalPixmap(self, p): ... method setOn (line 47) | def setOn(self, value): ... method setOnPixmap (line 48) | def setOnPixmap(self, p): ... method setOnRolloverPixmap (line 49) | def setOnRolloverPixmap(self, p): ... method setRolloverPixmap (line 50) | def setRolloverPixmap(self, p): ... method toggle (line 51) | def toggle(self): ... method triggerAction (line 52) | def triggerAction(self): ... FILE: katana/stubs/QT4Widgets/TopWindows.pyi function TrackTopWindow (line 6) | def TrackTopWindow(window): ... FILE: katana/stubs/QT4Widgets/TreeWidgetUtil.pyi class ContextMenuHelper (line 8) | class ContextMenuHelper: method __init__ (line 9) | def __init__(self, tree, event) -> None: ... method __enter__ (line 10) | def __enter__(self): ... method __exit__ (line 11) | def __exit__(self, *args): ... class UpdateSuppressor (line 13) | class UpdateSuppressor: method __init__ (line 14) | def __init__(self, treeWidget) -> None: ... method __enter__ (line 15) | def __enter__(self): ... method __exit__ (line 16) | def __exit__(self, *args): ... FILE: katana/stubs/QT4Widgets/VerticalDivider.pyi class VerticalDivider (line 9) | class VerticalDivider(PyQt5.QtWidgets.QFrame): method __init__ (line 10) | def __init__(self, *args) -> None: ... method paintEvent (line 11) | def paintEvent(self, event): ... FILE: katana/stubs/QT4Widgets/WidgetUtils.pyi function emitLeaveEvent (line 8) | def emitLeaveEvent(widget): ... FILE: katana/stubs/QTFCurve/FCurveGraphValueListWidget.pyi class FCurveGraphValueListWidget (line 13) | class FCurveGraphValueListWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 14) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method addCustomColumn (line 15) | def addCustomColumn(self, name, defaultValue, valueList: list = ...): ... method getCurves (line 16) | def getCurves(self) -> Container: ... method getGraphView (line 17) | def getGraphView(self) -> GraphWidget: ... method getListView (line 18) | def getListView(self) -> FCurveListView: ... method getValueEdit (line 19) | def getValueEdit(self) -> FCurveValueEdit: ... FILE: katana/stubs/QTFCurve/FCurveListView.pyi class FCurveListView (line 14) | class FCurveListView(PyQt5.QtWidgets.QTreeWidget): class _FCurveContainerObserver (line 15) | class _FCurveContainerObserver(PyFCurve.ContainerObserver): method __init__ (line 16) | def __init__(self, listView, selection) -> None: ... method addCurve (line 17) | def addCurve(self, curve): ... method containerChanged (line 18) | def containerChanged(self, container): ... method removeCurve (line 19) | def removeCurve(self, curve): ... class _FCurveItem (line 21) | class _FCurveItem(PyQt5.QtWidgets.QTreeWidgetItem): class _FCurveGroupItem (line 22) | class _FCurveGroupItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 23) | def __init__(self, parent, name) -> None: ... method clicked (line 24) | def clicked(self, col, fromMixed: bool = ...): ... method getCurve (line 25) | def getCurve(self): ... method isGroup (line 26) | def isGroup(self): ... method propagateState (line 27) | def propagateState(self, toVis, toLocked, fromVis, fromLocked): ... method __init__ (line 28) | def __init__(self, parent, curve) -> None: ... method _FCurveItem__createGroupItem (line 29) | def _FCurveItem__createGroupItem(self, parent, curveGroups): ... method clicked (line 30) | def clicked(self, col, fromMixed: bool = ...): ... method getCurve (line 31) | def getCurve(self): ... method isGroup (line 32) | def isGroup(self): ... method propagateRemoval (line 33) | def propagateRemoval(self): ... method refreshAllProperties (line 34) | def refreshAllProperties(self, oldHidden, oldLocked): ... class _FCurveListViewObserver (line 36) | class _FCurveListViewObserver(PyFCurve.FCurveObserver): method __init__ (line 37) | def __init__(self, listView, selection) -> None: ... method curvePropertyChanged (line 38) | def curvePropertyChanged(self, fc, key, value): ... method __init__ (line 40) | def __init__(self, container, selection, parent: Incomplete | None = .... method _FCurveListView__colClicked (line 41) | def _FCurveListView__colClicked(self, item, col): ... method _FCurveListView__updateSelection (line 42) | def _FCurveListView__updateSelection(self): ... method addCustomColumn (line 43) | def addCustomColumn(self, name, default, valuelist: list = ...): ... method child (line 44) | def child(self, index): ... method childCount (line 45) | def childCount(self): ... method createCurve (line 46) | def createCurve(self): ... method customColumnNames (line 47) | def customColumnNames(self) -> list[str]: ... method keyPressEvent (line 48) | def keyPressEvent(self, e): ... method mouseDoubleClickEvent (line 49) | def mouseDoubleClickEvent(self, e): ... method mousePressEvent (line 50) | def mousePressEvent(self, e): ... method removeCurves (line 51) | def removeCurves(self, removeSelection: bool = ...): ... method renameCurve (line 52) | def renameCurve(self): ... FILE: katana/stubs/QTFCurve/FCurveSnapSettingsMenu.pyi class FCurveSnapSettingsMenu (line 11) | class FCurveSnapSettingsMenu(PopdownLabel): method __init__ (line 12) | def __init__(self, graphWidget, *args) -> None: ... method _FCurveSnapSettingsMenu__buildSettings (line 13) | def _FCurveSnapSettingsMenu__buildSettings(self, xInc, yInc): ... method buildMenu (line 14) | def buildMenu(self, menu): ... method updateState (line 15) | def updateState(self): ... class SnapSettingsAction (line 17) | class SnapSettingsAction(PyQt5.QtWidgets.QAction): method __init__ (line 18) | def __init__(self, settings, graphWidget, *args) -> None: ... method _SnapSettingsAction__activatedCB (line 19) | def _SnapSettingsAction__activatedCB(self): ... FILE: katana/stubs/QTFCurve/FCurveValueEdit.pyi class FCurveValueEdit (line 12) | class FCurveValueEdit(PyQt5.QtWidgets.QWidget): class _ValueEditSelectionObserver (line 13) | class _ValueEditSelectionObserver(PyFCurve.SelectionObserver): class _ValueEditFCurveObserver (line 14) | class _ValueEditFCurveObserver(PyFCurve.FCurveObserver): method __init__ (line 15) | def __init__(self, valueEdit, syncParent) -> None: ... method beginValueChange (line 16) | def beginValueChange(self, curve): ... method curveChanged (line 17) | def curveChanged(self, curve): ... method disable (line 18) | def disable(self): ... method enable (line 19) | def enable(self): ... method endValueChange (line 20) | def endValueChange(self, curve): ... method intermediateValueChange (line 21) | def intermediateValueChange(self, curve): ... method __init__ (line 23) | def __init__(self, valueEdit) -> None: ... method _ValueEditSelectionObserver__directSync (line 24) | def _ValueEditSelectionObserver__directSync(self): ... method _ValueEditSelectionObserver__tabClosed (line 25) | def _ValueEditSelectionObserver__tabClosed(self): ... method _getFCurveObserver (line 26) | def _getFCurveObserver(self): ... method _updateExpressionControl (line 27) | def _updateExpressionControl(self, selCurves, selKeys, selSegs): ... method _updatePositionControls (line 28) | def _updatePositionControls(self, selKeys): ... method _updateResetTangentButton (line 29) | def _updateResetTangentButton(self, selCurves, selKeys): ... method deselected (line 30) | def deselected(self, obj): ... method getNumSelCurves (line 31) | def getNumSelCurves(self): ... method getNumSelKeyframes (line 32) | def getNumSelKeyframes(self): ... method getNumSelSegments (line 33) | def getNumSelSegments(self): ... method getNumSelTans (line 34) | def getNumSelTans(self): ... method selected (line 35) | def selected(self, obj): ... method sync (line 36) | def sync(self): ... method __init__ (line 37) | def __init__(self, expressionList, graphWidget, parent) -> None: ... method _FCurveValueEdit__ExprChanged (line 38) | def _FCurveValueEdit__ExprChanged(self, event): ... method _FCurveValueEdit__VisibleUnlocked (line 39) | def _FCurveValueEdit__VisibleUnlocked(self, obj): ... method _FCurveValueEdit__XPosChanged (line 40) | def _FCurveValueEdit__XPosChanged(self, event): ... method _FCurveValueEdit__YPosChanged (line 41) | def _FCurveValueEdit__YPosChanged(self, event): ... method _FCurveValueEdit__tangentReset_CB (line 42) | def _FCurveValueEdit__tangentReset_CB(self): ... FILE: katana/stubs/QTFCurve/MixedGroupState.pyi class MixedGroupState (line 9) | class MixedGroupState: method __init__ (line 10) | def __init__(self) -> None: ... method _MixedGroupState__resolveState (line 11) | def _MixedGroupState__resolveState(self): ... method addState (line 12) | def addState(self, state): ... method getState (line 13) | def getState(self): ... method removeState (line 14) | def removeState(self, state): ... method swapState (line 15) | def swapState(self, fromState, toState): ... FILE: katana/stubs/QTFCurve/UniqueListDict.pyi class UniqueListDict (line 6) | class UniqueListDict: method __init__ (line 7) | def __init__(self, name: Incomplete | None = ..., defaultKey: Incomple... method append (line 8) | def append(self, pair): ... method get (line 9) | def get(self, key): ... method getDefault (line 10) | def getDefault(self): ... method getName (line 11) | def getName(self): ... method next (line 12) | def next(self, pos): ... method setDefault (line 13) | def setDefault(self, defaultKey): ... method setName (line 14) | def setName(self, name): ... FILE: katana/stubs/RenderingAPI/RenderOutputs.pyi function GetDefaultRendererSettingsAttr (line 11) | def GetDefaultRendererSettingsAttr(outputType, producer: typing.Optional... function GetRenderOutputs (line 12) | def GetRenderOutputs(client, includeMerge: bool = ...): ... FILE: katana/stubs/RenderingAPI/RenderPlugins.pyi class GetRendererPluginDirError (line 17) | class GetRendererPluginDirError(RuntimeError): ... class PluginBase (line 19) | class PluginBase: method _convertResolution (line 21) | def _convertResolution(self, resolution): ... function GetAllRenderMethods (line 23) | def GetAllRenderMethods(includeInternal: bool = ...) -> list[dict]: ... function GetBatchRenderMethodForRenderer (line 24) | def GetBatchRenderMethodForRenderer(rendererName): ... function GetDefaultRendererPluginName (line 25) | def GetDefaultRendererPluginName() -> str | None: ... function GetInfoPlugin (line 26) | def GetInfoPlugin(rendererName): ... function GetInfoPluginName (line 27) | def GetInfoPluginName(rendererName): ... function GetInfoPluginNameForShaderType (line 28) | def GetInfoPluginNameForShaderType(shaderType): ... function GetOutputChannelAttr (line 29) | def GetOutputChannelAttr(rendererName, dynamicOnly: bool = ...): ... function GetOutputChannelDynamicParameters (line 30) | def GetOutputChannelDynamicParameters(rendererName): ... function GetOutputChannelGlobalStatementsAttr (line 31) | def GetOutputChannelGlobalStatementsAttr(rendererName): ... function GetOutputChannelParameters (line 32) | def GetOutputChannelParameters(rendererName): ... function GetProcessedParams (line 33) | def GetProcessedParams(paramList, hintDict: dict = ...): ... function GetRenderMethodByName (line 34) | def GetRenderMethodByName(methodName, rendererName: Incomplete | None = ... function GetRenderMethodForRendererAndMethodName (line 35) | def GetRenderMethodForRendererAndMethodName(rendererName, methodName, in... function GetRenderMethodsForRenderer (line 36) | def GetRenderMethodsForRenderer(rendererName): ... function GetRendererPluginDir (line 37) | def GetRendererPluginDir(name): ... function GetRendererPluginDisplayColor (line 38) | def GetRendererPluginDisplayColor(rendererName: str): ... function GetRendererPluginDisplayName (line 39) | def GetRendererPluginDisplayName(rendererName: str) -> str: ... function GetRendererPluginNameForShaderType (line 40) | def GetRendererPluginNameForShaderType(shaderType): ... function GetRendererPluginNames (line 41) | def GetRendererPluginNames(includeViewer: bool = ..., includeInternal: b... function GetRendererSettingsAttr (line 42) | def GetRendererSettingsAttr(outputType, producer: typing.Optional[PyFnGe... function GetRendererShaderTypeAttrPrefixes (line 43) | def GetRendererShaderTypeAttrPrefixes(rendererName: Incomplete | None = ... function GetRendererShaderTypeParamsAttr (line 44) | def GetRendererShaderTypeParamsAttr(rendererName: Incomplete | None = ..... function GetRendererShaderTypeShaderAttr (line 45) | def GetRendererShaderTypeShaderAttr(rendererName: Incomplete | None = ..... function GetRendererShaderTypes (line 46) | def GetRendererShaderTypes(renderer: Incomplete | None = ...): ... function SetRendererPluginDisplayColor (line 47) | def SetRendererPluginDisplayColor(rendererName: str, color): ... function SetRendererPluginDisplayName (line 48) | def SetRendererPluginDisplayName(rendererName: str, displayName: str): ... FILE: katana/stubs/RenderingAPI/__init__.pyi class RenderStartupError (line 11) | class RenderStartupError(AttributeError): ... function __FlushPluginCaches (line 13) | def __FlushPluginCaches(): ... FILE: katana/stubs/RenderingAPI_cmodule/RenderOutputLocation.pyi class RenderOutputLocationPlugin (line 6) | class RenderOutputLocationPlugin: method __init__ (line 7) | def __init__(self, *args, **kwargs) -> None: ... method computeFilePath (line 8) | def computeFilePath(self, outputAttrs: dict, locationAttrs: dict, rend... method computeLocation (line 9) | def computeLocation(self, outputAttrs: dict, locationAttrs: dict, rend... method getLocationSettingsAttr (line 10) | def getLocationSettingsAttr(self, outputType: str, incomingOutputAttr:... function GetPlugin (line 12) | def GetPlugin(pluginName: str) -> Any: ... function GetPluginNames (line 13) | def GetPluginNames() -> list[str]: ... FILE: katana/stubs/RenderingAPI_cmodule/Renderer.pyi class RendererPlugin (line 7) | class RendererPlugin: method __init__ (line 8) | def __init__(self, *args, **kwargs) -> None: ... method configureDiskRenderOutputProcess (line 9) | def configureDiskRenderOutputProcess(self, outputName: str, outputPath... function GetPlugin (line 11) | def GetPlugin(pluginName: str, producer: PyFnGeolibProducers.GeometryPro... function ReleaseManager (line 12) | def ReleaseManager() -> None: ... FILE: katana/stubs/RenderingAPI_cmodule/RendererInfo.pyi class RendererInfoPlugin (line 51) | class RendererInfoPlugin: method __init__ (line 52) | def __init__(self, *args, **kwargs) -> None: ... method addObjectLocation (line 53) | def addObjectLocation(self, type: str, location: str) -> None: ... method clearObjectLocations (line 54) | def clearObjectLocations(self, type: str = ...) -> None: ... method getBatchRenderMethod (line 55) | def getBatchRenderMethod(self) -> PyFnAttribute.GroupAttribute: ... method getLiveRenderTerminalOps (line 56) | def getLiveRenderTerminalOps(self, stateArgs: PyFnAttribute.GroupAttri... method getRegisteredRendererName (line 57) | def getRegisteredRendererName(self) -> str: ... method getRegisteredRendererVersion (line 58) | def getRegisteredRendererVersion(self) -> str: ... method getRenderMethods (line 59) | def getRenderMethods(self) -> PyFnAttribute.GroupAttribute: ... method getRenderTerminalOps (line 60) | def getRenderTerminalOps(self, stateArgs: PyFnAttribute.GroupAttribute... method getRendererCoshaderType (line 61) | def getRendererCoshaderType(self) -> str: ... method getRendererObjectDefaultType (line 62) | def getRendererObjectDefaultType(self, type: str) -> str: ... method getRendererObjectInfo (line 63) | def getRendererObjectInfo(self, *args, **kwargs): ... method getRendererObjectNames (line 65) | def getRendererObjectNames(self, type: str, typeTag: str) -> list[str]... method getRendererObjectNames (line 67) | def getRendererObjectNames(self, type: str, typeTags: list[str] = ...)... method getRendererObjectTypes (line 68) | def getRendererObjectTypes(self, type: str) -> list[str]: ... method getRendererShaderTypeTags (line 69) | def getRendererShaderTypeTags(self, shaderType: str) -> list[str]: ... method getShaderInputNames (line 70) | def getShaderInputNames(self, shader: str) -> list[str]: ... method getShaderInputTags (line 71) | def getShaderInputTags(self, shader: str, inputName: str) -> list[str]... method getShaderOutputNames (line 72) | def getShaderOutputNames(self, shader: str) -> list[str]: ... method getShaderOutputTags (line 73) | def getShaderOutputTags(self, shader: str, outputName: str) -> list[st... method isNodeTypeSupported (line 74) | def isNodeTypeSupported(self, nodeType: str) -> bool: ... method isPolymeshFacesetSplittingEnabled (line 75) | def isPolymeshFacesetSplittingEnabled(self) -> bool: ... method isPresetLocalFileNeeded (line 76) | def isPresetLocalFileNeeded(self, outputType: str) -> bool: ... method setKatanaPath (line 77) | def setKatanaPath(self, katanaPath: str) -> None: ... method setPluginPath (line 78) | def setPluginPath(self, pluginPath: str) -> None: ... method setPluginRootPath (line 79) | def setPluginRootPath(self, pluginPath: str) -> None: ... method setTmpPath (line 80) | def setTmpPath(self, tmpPath: str) -> None: ... method setTypeTagNameFilter (line 81) | def setTypeTagNameFilter(self, filter: str, typeTag: str) -> None: ... class RendererObjectInfo (line 83) | class RendererObjectInfo: method __init__ (line 84) | def __init__(self, *args, **kwargs) -> None: ... method getContainerHints (line 85) | def getContainerHints(self) -> PyFnAttribute.Attribute: ... method getFullPath (line 86) | def getFullPath(self) -> str: ... method getLocation (line 87) | def getLocation(self) -> str: ... method getName (line 88) | def getName(self) -> str: ... method getOutputType (line 89) | def getOutputType(self) -> int: ... method getParam (line 90) | def getParam(self, name: str) -> Any: ... method getParams (line 91) | def getParams(self) -> list: ... method getType (line 92) | def getType(self) -> str: ... method getTypeTags (line 93) | def getTypeTags(self) -> list[str]: ... class RendererObjectParamInfo (line 95) | class RendererObjectParamInfo: method __init__ (line 96) | def __init__(self, *args, **kwargs) -> None: ... method getArraySize (line 97) | def getArraySize(self) -> int: ... method getDefault (line 98) | def getDefault(self) -> PyFnAttribute.Attribute: ... method getEnums (line 99) | def getEnums(self) -> PyFnAttribute.Attribute: ... method getHints (line 100) | def getHints(self) -> PyFnAttribute.Attribute: ... method getName (line 101) | def getName(self) -> str: ... method getType (line 102) | def getType(self) -> int: ... function GetPlugin (line 104) | def GetPlugin(arg0: str) -> Any: ... function ReleaseManager (line 105) | def ReleaseManager() -> None: ... function _FlushPluginCaches (line 106) | def _FlushPluginCaches() -> None: ... FILE: katana/stubs/RerenderEventMapper/LiveRenderOpChain.pyi class AOVOpChain (line 25) | class AOVOpChain(_OpChain): method __init__ (line 26) | def __init__(self, mainSequenceID: int) -> None: ... method _createOpChain (line 27) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... class CameraOverrideOpChain (line 29) | class CameraOverrideOpChain(_OpChain): method _createOpChain (line 30) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 31) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class ImplicitResolversOpChain (line 33) | class ImplicitResolversOpChain(_OpChain): method _createOpChain (line 34) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... class IsolateOpChain (line 36) | class IsolateOpChain(_OpArgsOpChain): method __init__ (line 37) | def __init__(self) -> None: ... method _createOpChain (line 38) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 39) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class LiveAttributeQueue (line 41) | class LiveAttributeQueue: method __init__ (line 46) | def __init__(self) -> None: ... method flush (line 47) | def flush(self, txn: LiveRenderPortOpObserver._TransactionProxy): ... method insert (line 48) | def insert(self, locationPath: str, attrPath: str, attrValue: str, att... method setOp (line 49) | def setOp(self, op: PyFnGeolib.GeolibRuntimeOp): ... class LiveRenderOpChain (line 51) | class LiveRenderOpChain: method __init__ (line 53) | def __init__(self, renderUUID: str, mainSequenceID: int, renderSetting... method _getCachedOp (line 55) | def _getCachedOp(cls, port: NodegraphAPI.Port, graphState: NodegraphAP... method getOp (line 56) | def getOp(self, port: NodegraphAPI.Port, graphState: NodegraphAPI.Grap... class LiveRenderUpdatesOpChain (line 58) | class LiveRenderUpdatesOpChain(_OpArgsOpChain): method _createOpChain (line 59) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 60) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class ROIOpChain (line 62) | class ROIOpChain(_OpChain): method __init__ (line 63) | def __init__(self) -> None: ... method _checkAndUpdateDirtyState (line 64) | def _checkAndUpdateDirtyState(self, roi) -> bool: ... method _createOpChain (line 65) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 66) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class RenderInfoPluginOpChain (line 68) | class RenderInfoPluginOpChain(_OpChain): method __init__ (line 69) | def __init__(self, liveAttributeQueue) -> None: ... method _RenderInfoPluginOpChain__createOp (line 71) | def _RenderInfoPluginOpChain__createOp(txnProxy, opType, opArgs): ... method _checkAndUpdateDirtyState (line 72) | def _checkAndUpdateDirtyState(self, graphState: NodegraphAPI.GraphStat... method _createOpChain (line 73) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... class RenderOutputsOpChain (line 75) | class RenderOutputsOpChain(_OpChain): method __init__ (line 76) | def __init__(self) -> None: ... method _checkAndUpdateDirtyState (line 77) | def _checkAndUpdateDirtyState(self, renderOutputs: list[str]) -> bool:... method _createOpChain (line 78) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... class RenderSettingsDefaultsOpChain (line 80) | class RenderSettingsDefaultsOpChain(_OpChain): method __init__ (line 81) | def __init__(self) -> None: ... method _checkAndUpdateDirtyState (line 82) | def _checkAndUpdateDirtyState(self, opSystemArgs: PyFnAttribute.GroupA... method _createOpChain (line 83) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... class RenderSettingsExtractor (line 85) | class RenderSettingsExtractor: class Settings (line 86) | class Settings(tuple): method __init__ (line 90) | def __init__(self, _cls, renderSettingsAttr, renderer, renderCameraP... method _asdict (line 91) | def _asdict(self): ... method _make (line 93) | def _make(cls, iterable): ... method _replace (line 94) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 95) | def __getnewargs__(self): ... method interactiveOutputs (line 97) | def interactiveOutputs(self): ... method renderCameraPath (line 99) | def renderCameraPath(self): ... method renderCameraType (line 101) | def renderCameraType(self): ... method renderSettingsAttr (line 103) | def renderSettingsAttr(self): ... method renderer (line 105) | def renderer(self): ... method __init__ (line 106) | def __init__(self, runtime: PyFnGeolib.GeolibRuntime) -> None: ... method extract (line 107) | def extract(self, txn: PyFnGeolib.GeolibRuntimeTransaction, terminalOp... method getCachedRootAttrs (line 108) | def getCachedRootAttrs(self): ... class RenderSettingsOpChain (line 110) | class RenderSettingsOpChain(_OpChain): method __init__ (line 111) | def __init__(self) -> None: ... method _checkAndUpdateDirtyState (line 112) | def _checkAndUpdateDirtyState(self, graphState: NodegraphAPI.GraphStat... method _createOpChain (line 113) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... class RenderWorkingSetOpChain (line 115) | class RenderWorkingSetOpChain(_OpArgsOpChain): method _createOpChain (line 116) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 117) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class VirtualCameraOpChain (line 119) | class VirtualCameraOpChain(_OpChain): method _createOpChain (line 120) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 121) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class _OpArgsOpChain (line 123) | class _OpArgsOpChain(_OpChain): method __init__ (line 124) | def __init__(self) -> None: ... method _checkAndUpdateDirtyState (line 125) | def _checkAndUpdateDirtyState(self, opArgs: PyFnAttribute.GroupAttribu... class _OpChain (line 127) | class _OpChain(_OpPool): method __init__ (line 129) | def __init__(self, rootOp: Incomplete | None = ..., terminalOp: Incomp... method _OpChain__reset (line 130) | def _OpChain__reset(self, txnProxy: LiveRenderPortOpObserver._Transact... method _applyOp (line 132) | def _applyOp(txnProxy: LiveRenderPortOpObserver._TransactionProxy, inp... method _checkAndUpdateDirtyState (line 133) | def _checkAndUpdateDirtyState(self, args: tuple, kwargs: dict) -> bool... method _createOpChain (line 134) | def _createOpChain(self, txnProxy: LiveRenderPortOpObserver._Transacti... method applyOpChain (line 135) | def applyOpChain(self, txnProxy: LiveRenderPortOpObserver._Transaction... class _OpPool (line 137) | class _OpPool: method __init__ (line 138) | def __init__(self) -> None: ... method _release (line 139) | def _release(self): ... function _pairwise (line 141) | def _pairwise(iterable): ... FILE: katana/stubs/RerenderEventMapper/LiveRenderPortOpObserver.pyi class LiveRenderPortOpObserver (line 19) | class LiveRenderPortOpObserver(PortOpClient): method __init__ (line 30) | def __init__(self, runtime: PyFnGeolib.GeolibRuntime, node: NodegraphA... method _LiveRenderPortOpObserver__commitGSVToGraphStateSpec (line 31) | def _LiveRenderPortOpObserver__commitGSVToGraphStateSpec(self, gsvID: ... method _LiveRenderPortOpObserver__copyGraphStateEntry (line 33) | def _LiveRenderPortOpObserver__copyGraphStateEntry(sourceGraphState: N... method _LiveRenderPortOpObserver__encodeGSVNames (line 35) | def _LiveRenderPortOpObserver__encodeGSVNames(graphState: NodegraphAPI... method _LiveRenderPortOpObserver__getGeolibServiceHostAndPort (line 37) | def _LiveRenderPortOpObserver__getGeolibServiceHostAndPort(cls, mainSe... method _LiveRenderPortOpObserver__onCatalogGSVPinned (line 39) | def _LiveRenderPortOpObserver__onCatalogGSVPinned(cls, objectHash: obj... method _LiveRenderPortOpObserver__onDirtyEvent (line 41) | def _LiveRenderPortOpObserver__onDirtyEvent(cls, args: tuple, kwargs: ... method _LiveRenderPortOpObserver__onNodeDelete (line 42) | def _LiveRenderPortOpObserver__onNodeDelete(self, eventType: str, even... method _LiveRenderPortOpObserver__onRenderCancelled (line 44) | def _LiveRenderPortOpObserver__onRenderCancelled(cls, eventType: str, ... method _LiveRenderPortOpObserver__onRenderFinalized (line 46) | def _LiveRenderPortOpObserver__onRenderFinalized(cls, eventType: str, ... method _LiveRenderPortOpObserver__onUnregister (line 48) | def _LiveRenderPortOpObserver__onUnregister(cls, eventType: str, event... method _LiveRenderPortOpObserver__onVirtualCameraMoved (line 50) | def _LiveRenderPortOpObserver__onVirtualCameraMoved(cls, eventType: st... method _LiveRenderPortOpObserver__tryRegisterEventHandler (line 52) | def _LiveRenderPortOpObserver__tryRegisterEventHandler(eventType, fn):... method _LiveRenderPortOpObserver__tryUnregisterEventHandler (line 54) | def _LiveRenderPortOpObserver__tryUnregisterEventHandler(eventType, fn... method _LiveRenderPortOpObserver__unregister (line 55) | def _LiveRenderPortOpObserver__unregister(self): ... method _LiveRenderPortOpObserver__updateCatalogItem (line 56) | def _LiveRenderPortOpObserver__updateCatalogItem(self, graphState: Nod... method addImmutableGraphStateVariable (line 57) | def addImmutableGraphStateVariable(self, variableName: str): ... method getImmutableGraphStateVariables (line 58) | def getImmutableGraphStateVariables(self) -> set[str]: ... method getOp (line 59) | def getOp(self, node: NodegraphAPI.Node, port: NodegraphAPI.Port, grap... method getTxnQueue (line 60) | def getTxnQueue(self) -> OpTreeCommandRequestQueue: ... method modifyInitialGraphState (line 61) | def modifyInitialGraphState(self, graphState: NodegraphAPI.GraphState)... method opChanged (line 62) | def opChanged(self, op: PyFnGeolib.GeolibRuntimeOp, graphState: Nodegr... method queueLiveAttribute (line 64) | def queueLiveAttribute(cls, locationPath: str, attrPath: str, attrValu... method registerEvents (line 66) | def registerEvents(cls): ... method registerLiveRender (line 68) | def registerLiveRender(cls, runtime: PyFnGeolib.GeolibRuntime, node: N... method removeImmutableGraphStateVariable (line 69) | def removeImmutableGraphStateVariable(self, variableName: str): ... method unregisterEvents (line 71) | def unregisterEvents(cls): ... method unregisterLiveRender (line 73) | def unregisterLiveRender(cls, mainSequenceID: int): ... method mainSequenceID (line 75) | def mainSequenceID(self): ... class _RemoteGeolibUnavailableError (line 77) | class _RemoteGeolibUnavailableError(Exception): ... class _RemoteRenderSpoolingError (line 79) | class _RemoteRenderSpoolingError(Exception): ... class _TransactionProxy (line 81) | class _TransactionProxy: method __init__ (line 82) | def __init__(self, txn: PyFnGeolib.GeolibRuntimeTransaction, txnAdapto... method createOp (line 83) | def createOp(self) -> PyFnGeolib.GeolibRuntimeOp: ... method localOnly (line 84) | def localOnly(self) -> None: ... method setClientOp (line 85) | def setClientOp(self, client: PyFnGeolib.GeolibRuntimeClient, op: PyFn... method setNodeName (line 86) | def setNodeName(self, op: PyFnGeolib.GeolibRuntimeOp, name: str): ... method setNodeType (line 87) | def setNodeType(self, op: PyFnGeolib.GeolibRuntimeOp, nodeType: str): ... method setOpArgs (line 88) | def setOpArgs(self, op: PyFnGeolib.GeolibRuntimeOp, opType: str, args:... method setOpInputs (line 89) | def setOpInputs(self, op: PyFnGeolib.GeolibRuntimeOp, inputOps: list[P... method setTag (line 90) | def setTag(self, op: PyFnGeolib.GeolibRuntimeOp, tag: str): ... method useOpPool (line 91) | def useOpPool(self, opPool: LiveRenderOpChain._OpPool) -> None: ... method __getattr__ (line 92) | def __getattr__(self, item: str) -> Any: ... method localTransaction (line 94) | def localTransaction(self): ... method remoteTransaction (line 96) | def remoteTransaction(self): ... FILE: katana/stubs/RerenderEventMapper/NukeBridgeAPI.pyi class CompTypes (line 20) | class CompTypes: function GetCatalogItemLabel (line 25) | def GetCatalogItemLabel(catalogItem: CatalogAPI.CatalogItem) -> str: ... function GetCurrentKatanaReaderNodesMapping (line 26) | def GetCurrentKatanaReaderNodesMapping() -> dict[str, str]: ... function GetCurrentKatanaWriterNodeName (line 27) | def GetCurrentKatanaWriterNodeName() -> str: ... function GetKatanaReaderNodeNames (line 28) | def GetKatanaReaderNodeNames() -> list[str]: ... function GetKatanaWriterNodeNames (line 29) | def GetKatanaWriterNodeNames() -> list[str]: ... function GetLastNukeScriptPath (line 30) | def GetLastNukeScriptPath() -> str: ... function GetNukeBridgeConfigurationError (line 31) | def GetNukeBridgeConfigurationError() -> str | None: ... function GetNukeBridgeConfiguredVersion (line 32) | def GetNukeBridgeConfiguredVersion() -> str | None: ... function GetNukeBridgeRenderNode (line 33) | def GetNukeBridgeRenderNode() -> NodegraphAPI.Node: ... function GetRootNukeMappingParam (line 34) | def GetRootNukeMappingParam(): ... function GetRootNukeOutputParam (line 35) | def GetRootNukeOutputParam(): ... function GetRootNukeParam (line 36) | def GetRootNukeParam(): ... function GetRootNukeScriptParam (line 37) | def GetRootNukeScriptParam(): ... function GetRootNukeSessionParam (line 38) | def GetRootNukeSessionParam(): ... function GetSupportedNukeVersions (line 39) | def GetSupportedNukeVersions() -> tuple[str, ...]: ... function InitializeNukeBridge (line 40) | def InitializeNukeBridge() -> bool: ... function IsNukeBridgeConfigured (line 41) | def IsNukeBridgeConfigured() -> bool: ... function IsNukeBridgeSession (line 42) | def IsNukeBridgeSession(catalogItem: CatalogAPI.CatalogItem) -> bool: ... function LoadNukeScript (line 43) | def LoadNukeScript(nukeScriptPath: str, inProgressHandler: Incomplete | ... function ParseCatalogItemLabel (line 44) | def ParseCatalogItemLabel(label: str) -> str: ... function SetCurrentKatanaReaderNodesMapping (line 45) | def SetCurrentKatanaReaderNodesMapping(mapping: dict[str, str]): ... function SetCurrentKatanaWriterNodeName (line 46) | def SetCurrentKatanaWriterNodeName(nodeName: str): ... function StartComp (line 47) | def StartComp(compType: str, renderFarmName: Incomplete | None = ...): ... function _BuildNukeBridgeNodeNetwork (line 48) | def _BuildNukeBridgeNodeNetwork() -> NodegraphAPI.Node: ... function _ConfigureNukeBridge (line 49) | def _ConfigureNukeBridge(): ... function _ResetKatanaNodeNames (line 50) | def _ResetKatanaNodeNames(katanaNodes: dict): ... function _RunCommand (line 51) | def _RunCommand(commandArguments: list[str], inProgressHandler: Incomple... function _WriteOrGetTempGetKatanaNodesScriptPath (line 52) | def _WriteOrGetTempGetKatanaNodesScriptPath() -> str: ... FILE: katana/stubs/RerenderEventMapper/NukeSessionMonitor.pyi class NukeSessionMonitor (line 13) | class NukeSessionMonitor: method __init__ (line 19) | def __init__(self) -> None: ... method _NukeSessionMonitor__buildMappings (line 20) | def _NukeSessionMonitor__buildMappings(self, mapping): ... method _NukeSessionMonitor__cleanup (line 21) | def _NukeSessionMonitor__cleanup(self): ... method _NukeSessionMonitor__onCatalogBufferChanged (line 22) | def _NukeSessionMonitor__onCatalogBufferChanged(self, eventType, event... method _NukeSessionMonitor__onIdle (line 23) | def _NukeSessionMonitor__onIdle(self, eventType, eventId, **kwargs): ... method _NukeSessionMonitor__onRenderCancelled (line 24) | def _NukeSessionMonitor__onRenderCancelled(self, eventType: str, mainS... method _NukeSessionMonitor__onRenderFinalized (line 25) | def _NukeSessionMonitor__onRenderFinalized(self, eventType: str, event... method _NukeSessionMonitor__onRenderStopped (line 26) | def _NukeSessionMonitor__onRenderStopped(self, eventType: str, complet... method _NukeSessionMonitor__onSceneAboutToLoad (line 27) | def _NukeSessionMonitor__onSceneAboutToLoad(self, **kwargs): ... method _NukeSessionMonitor__tryRegisterEventHandler (line 29) | def _NukeSessionMonitor__tryRegisterEventHandler(eventType, fn): ... method _NukeSessionMonitor__tryUnregisterEventHandler (line 31) | def _NukeSessionMonitor__tryUnregisterEventHandler(eventType, fn): ... method _NukeSessionMonitor__unregisterNukeSessions (line 32) | def _NukeSessionMonitor__unregisterNukeSessions(self, mainSequenceIDs:... method registerEvents (line 33) | def registerEvents(self): ... method setMappings (line 34) | def setMappings(self, catalogItem: CatalogAPI.CatalogItem, mapping: di... method setOutputNodeName (line 35) | def setOutputNodeName(self, catalogItem: CatalogAPI.CatalogItem, outpu... function GetNukeSessionMonitor (line 37) | def GetNukeSessionMonitor() -> NukeSessionMonitor: ... FILE: katana/stubs/RerenderEventMapper/RerenderEvents.pyi class LiveAttributeWorker (line 67) | class LiveAttributeWorker: method __init__ (line 68) | def __init__(self, runtime, client: Incomplete | None = ...) -> None: ... method applyQueuedAttributeChanges (line 69) | def applyQueuedAttributeChanges(self): ... method canApplyUpdate (line 70) | def canApplyUpdate(self) -> bool: ... method getLiveAttributeOp (line 71) | def getLiveAttributeOp(self) -> PyFnGeolib.GeolibRuntimeOp: ... method queueLiveAttribute (line 72) | def queueLiveAttribute(self, locationPath, attrValue, attrPath: str = ... method setClient (line 73) | def setClient(self, client: PyFnGeolib.GeolibRuntime.client): ... method setLiveAttributeOp (line 74) | def setLiveAttributeOp(self, liveAttrOp: PyFnGeolib.GeolibRuntimeOp): ... function AddSettingsToRerenderRecipe (line 76) | def AddSettingsToRerenderRecipe(): ... function ApplyTerminalOpDelegates (line 77) | def ApplyTerminalOpDelegates(inputOp: PyFnGeolib.GeolibRuntimeOp, txn: t... function CheckLiveRenderSettings (line 78) | def CheckLiveRenderSettings(attributes: PyFnAttribute.GroupAttribute): ... function CheckOutputsRenderSettings (line 79) | def CheckOutputsRenderSettings(attributes: PyFnAttribute.GroupAttribute,... function GetAppliedTerminalOps (line 80) | def GetAppliedTerminalOps() -> list[tuple[Any, str, PyFnAttribute.GroupA... function GetChangedAttributes (line 81) | def GetChangedAttributes(locationPath: str, locationAttrs: PyFnAttribute... function GetDefaultTerminalOps (line 82) | def GetDefaultTerminalOps(txn: transaction, opInput) -> list[PyFnGeolib.... function GetDeletedLocationsUpdate (line 83) | def GetDeletedLocationsUpdate(deletedLocations: list[str]) -> PyFnAttrib... function GetInteractiveRenderFiltersOps (line 84) | def GetInteractiveRenderFiltersOps(opInput: PyFnGeolib.GeolibRuntimeOp, ... function GetLightListChanges (line 85) | def GetLightListChanges(location: str, locationAttrs): ... function GetLiveRenderNodeAndPort (line 86) | def GetLiveRenderNodeAndPort() -> Tuple[Node3D, port]: ... function GetRenderCameraChanges (line 87) | def GetRenderCameraChanges(location: str, locationAttrs: PyFnAttribute.G... function GetWatchedAttributeGroups (line 88) | def GetWatchedAttributeGroups(liveRenderAttrs: PyFnAttribute.GroupAttrib... function GetWatchedAttributes (line 89) | def GetWatchedAttributes(attrToWatch: PyFnAttribute.GroupAttribute, pref... function HasHashChanged (line 90) | def HasHashChanged(locationPath, attrName: str, newAttr: PyFnAttribute) ... function InitializeGeolib3Client (line 91) | def InitializeGeolib3Client(): ... function OnCancelled (line 92) | def OnCancelled(): ... function OnCompleted (line 93) | def OnCompleted(): ... function OnErrored (line 94) | def OnErrored(): ... function OnIdle (line 95) | def OnIdle(): ... function OnLiveRenderClearAllTerminalOps (line 96) | def OnLiveRenderClearAllTerminalOps(eventType, eventID): ... function OnLiveRenderInsertTerminalOp (line 97) | def OnLiveRenderInsertTerminalOp(eventType: str, eventID: object, opKey:... function OnLiveRenderRemoveTerminalOp (line 98) | def OnLiveRenderRemoveTerminalOp(eventType: str, eventID: object, opKey:... function OnLiveRenderRestoreDefaultTerminalOps (line 99) | def OnLiveRenderRestoreDefaultTerminalOps(eventType, eventID): ... function OnManualUpdate (line 100) | def OnManualUpdate(eventType: str, eventID: object, updateMode: Incomple... function OnNodeDeleted (line 101) | def OnNodeDeleted(eventType: str, eventID: object, node: NodegraphAPI.No... function OnNodeRenamed (line 102) | def OnNodeRenamed(eventType: str, eventID: object, node: NodegraphAPI.No... function OnNodeSetBypassed (line 103) | def OnNodeSetBypassed(eventType, eventID, node: NodegraphAPI.Node, **kwa... function OnParameterFinalize (line 104) | def OnParameterFinalize(eventType, eventID, param, **kwargs): ... function OnRerenderCameraChanged (line 105) | def OnRerenderCameraChanged(eventType: str, eventID: object, cameraType:... function OnRoiChanged (line 106) | def OnRoiChanged(): ... function OnSendCommand (line 107) | def OnSendCommand(): ... function OnSendData (line 108) | def OnSendData(): ... function OnSetCurrentTime (line 109) | def OnSetCurrentTime(eventType: str, eventID: object): ... function OnStarted (line 110) | def OnStarted(): ... function OnStop (line 111) | def OnStop(): ... function OnStopped (line 112) | def OnStopped(sequenceIDs): ... function OnUpdate (line 113) | def OnUpdate(): ... function OnUpdateModeChanged (line 114) | def OnUpdateModeChanged(eventType: str, eventID: object, updateMode: Inc... function OnViewMatrixChanged (line 115) | def OnViewMatrixChanged(): ... function OnViewerLiveAttributeChanged (line 116) | def OnViewerLiveAttributeChanged(eventType: str, eventID: object, locati... function OnVisibilityFollowsWorkingSetChanged (line 117) | def OnVisibilityFollowsWorkingSetChanged(eventType, eventID, visibilityF... function QueueRenderSettingsSequenceIDMapAttributeUpdate (line 118) | def QueueRenderSettingsSequenceIDMapAttributeUpdate(mainSequenceIDs: lis... function SetLiveAttribute (line 119) | def SetLiveAttribute(locationPath: str, attrPath: str, attrValue: PyFnAt... function SetVirtualCameraAttributes (line 120) | def SetVirtualCameraAttributes(attributes: PyFnAttribute.Attribute): ... function StartGeolib3Listening (line 121) | def StartGeolib3Listening(): ... function StopGeolib3Listening (line 122) | def StopGeolib3Listening(): ... function StopRerender (line 123) | def StopRerender(): ... function UnregisterEventHandlers (line 124) | def UnregisterEventHandlers(): ... function _GetGeolibServiceHostAndPort (line 125) | def _GetGeolibServiceHostAndPort(mainSequenceID): ... function _SendForesightCommand (line 126) | def _SendForesightCommand(mainSequenceID, command): ... function _UpdateVirtualCameraSSCOpArgs (line 127) | def _UpdateVirtualCameraSSCOpArgs(txn): ... function __RemoveDeferredTerminalOps (line 128) | def __RemoveDeferredTerminalOps(): ... function __RemoveTerminalOp (line 129) | def __RemoveTerminalOp(opKey: object): ... function __createPruneOpChain (line 130) | def __createPruneOpChain(txn): ... function __createRenderWorkingSetResolveOp (line 131) | def __createRenderWorkingSetResolveOp(txn): ... function __createRenderWorkingSetSetupOp (line 132) | def __createRenderWorkingSetSetupOp(txn): ... function __deferUntilOriginalLocationCooked (line 133) | def __deferUntilOriginalLocationCooked(location: str) -> bool: ... function __emitCachedViewMatrixChanged (line 134) | def __emitCachedViewMatrixChanged(): ... function __getIRFsOpAndPorts (line 135) | def __getIRFsOpAndPorts(sourceGraphState: Incomplete | None = ...): ... function __interactiveRenderFilterOpCallback (line 136) | def __interactiveRenderFilterOpCallback(port: NodegraphAPI.Port, graphSt... function __interactiveRenderFiltersGetOpFunction (line 137) | def __interactiveRenderFiltersGetOpFunction(sourceNode, sourcePort, sour... function __processInitialStateEvents (line 138) | def __processInitialStateEvents() -> list[LocationEvent]: ... function __registerEventHandlers (line 139) | def __registerEventHandlers(rerenderNodeName): ... function __setPruneOpChainInputOpArgs (line 140) | def __setPruneOpChainInputOpArgs(): ... function __terminalOpCallback (line 141) | def __terminalOpCallback(port: NodegraphAPI.Port, graphState: NodegraphA... function __unregisterEventHandlers (line 142) | def __unregisterEventHandlers(): ... function changeVisibilityFollowsWorkingSet (line 143) | def changeVisibilityFollowsWorkingSet(visibilityFollowsWorkingSet): ... function getImplicitTerminalOps (line 144) | def getImplicitTerminalOps(txn: transaction, opInput: PyFnGeolib.GeolibR... function liveRenderWorkingSetClearedCallback (line 145) | def liveRenderWorkingSetClearedCallback(workingSet): ... FILE: katana/stubs/ResourceFiles/IconManager.pyi class QT4IconManager (line 7) | class QT4IconManager(ResourceManager): method __init__ (line 8) | def __init__(self, paths, iconDir: str = ..., **kwargs) -> None: ... method _QT4IconManager__getData (line 9) | def _QT4IconManager__getData(self, rawPath): ... method clearCache (line 10) | def clearCache(self): ... method getIcon (line 11) | def getIcon(self, fileName): ... method getPixmap (line 12) | def getPixmap(self, fileName): ... method getSize (line 13) | def getSize(self, fileName): ... method getSvgRenderer (line 14) | def getSvgRenderer(self, fileName): ... class _IconData (line 16) | class _IconData: method __init__ (line 17) | def __init__(self, path) -> None: ... FILE: katana/stubs/ResourceFiles/ResourceManager.pyi class ResourceManager (line 5) | class ResourceManager: method __init__ (line 6) | def __init__(self, paths, exceptionForMissing: bool = ...) -> None: ... method clearCache (line 7) | def clearCache(self): ... method getResourceFile (line 8) | def getResourceFile(self, resourceName): ... method isExceptionForMissing (line 9) | def isExceptionForMissing(self): ... method setExceptionForMissing (line 10) | def setExceptionForMissing(self, doExc): ... FILE: katana/stubs/UI4/App/AboutKatana.pyi class AboutKatanaDialog (line 15) | class AboutKatanaDialog(PyQt5.QtWidgets.QDialog, UI4.App.Splash.SplashSc... method __init__ (line 16) | def __init__(self, parent: PyQt5.QtWidgets.QWidget) -> None: ... method _AboutKatanaDialog__on_aboutQtButton_clicked (line 17) | def _AboutKatanaDialog__on_aboutQtButton_clicked(self): ... method _AboutKatanaDialog__on_copyrightButton_clicked (line 18) | def _AboutKatanaDialog__on_copyrightButton_clicked(self): ... method _AboutKatanaDialog__on_creditsButton_clicked (line 19) | def _AboutKatanaDialog__on_creditsButton_clicked(self): ... method mousePressEvent (line 20) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method sizeHint (line 21) | def sizeHint(self) -> PyQt5.QtCore.QSize: ... class TextDialog (line 23) | class TextDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 24) | def __init__(self, text: str, parent: PyQt5.QtWidgets.QWidget) -> None... method _TextDialog__on_richTextLabel_linkActivated (line 25) | def _TextDialog__on_richTextLabel_linkActivated(self, link: str): ... method showEvent (line 26) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... function AboutKatana (line 28) | def AboutKatana(window): ... FILE: katana/stubs/UI4/App/AutoSave.pyi function Initialize (line 21) | def Initialize(): ... function _AutoSave (line 22) | def _AutoSave(): ... function __on_autosaveTimer_timeout (line 23) | def __on_autosaveTimer_timeout(): ... function __on_pref_changed (line 24) | def __on_pref_changed(eventType: str | None, eventID: typing.Hashable, p... function __on_undoStack_change (line 25) | def __on_undoStack_change(): ... FILE: katana/stubs/UI4/App/Hotkeys.pyi class RedoAction (line 12) | class RedoAction(PyQt5.QtWidgets.QAction): method __init__ (line 13) | def __init__(self, parent, hotkey) -> None: ... method _RedoAction__on_triggered (line 14) | def _RedoAction__on_triggered(self): ... class UndoAction (line 16) | class UndoAction(PyQt5.QtWidgets.QAction): method __init__ (line 17) | def __init__(self, parent, hotkey) -> None: ... method _UndoAction__on_triggered (line 18) | def _UndoAction__on_triggered(self): ... function GetHotkeys (line 20) | def GetHotkeys(context: PyQt5.QtCore.Qt.ShortcutContext = ...) -> list: ... function InitializeHotkeys (line 21) | def InitializeHotkeys(): ... function ProcessHotkeyEvent (line 22) | def ProcessHotkeyEvent(event): ... FILE: katana/stubs/UI4/App/Icon.pyi function GetApplicationIcon (line 9) | def GetApplicationIcon() -> PyQt5.QtGui.QIcon: ... FILE: katana/stubs/UI4/App/KeyboardShortcutManager/KeyboardShortcutItem.pyi class KeyboardShortcutItem (line 6) | class KeyboardShortcutItem: method __init__ (line 7) | def __init__(self, name: str, data: dict, parent: Incomplete | None = ... method _setParent (line 8) | def _setParent(self, parent: KeyboardShortcutItem | None): ... method appendChild (line 9) | def appendChild(self, child: KeyboardShortcutItem | None): ... method getChildByRow (line 10) | def getChildByRow(self, row: int) -> KeyboardShortcutItem | None: ... method getCurrentShortcut (line 11) | def getCurrentShortcut(self) -> str: ... method getDefaultShortcut (line 12) | def getDefaultShortcut(self) -> str: ... method getID (line 13) | def getID(self) -> str: ... method getName (line 14) | def getName(self) -> str: ... method getParent (line 15) | def getParent(self) -> KeyboardShortcutItem: ... method getRowOfChild (line 16) | def getRowOfChild(self, child: KeyboardShortcutItem) -> int: ... method sort (line 17) | def sort(self): ... method __len__ (line 18) | def __len__(self) -> int: ... FILE: katana/stubs/UI4/App/KeyboardShortcutManager/KeyboardShortcutManager.pyi function BindActions (line 19) | def BindActions(contextName: str, widget: PyQt5.QtWidgets.QWidget, callb... function BuildShortcutModel (line 20) | def BuildShortcutModel(): ... function CreateAction (line 21) | def CreateAction(actionID: str, widget: PyQt5.QtWidgets.QWidget, icon: I... function GenerateActionID (line 22) | def GenerateActionID(name: str) -> str: ... function GetActionID (line 23) | def GetActionID(contextName: str, actionName: str) -> str | None: ... function GetFullActionName (line 24) | def GetFullActionName(actionID: str) -> str | None: ... function GetFullKeyEventName (line 25) | def GetFullKeyEventName(keyEventID: str) -> str | None: ... function GetKeyEventID (line 26) | def GetKeyEventID(contextName: str, keyEventName: str) -> str | None: ... function GetKeyEventNameForShortcut (line 27) | def GetKeyEventNameForShortcut(contextName: str, shortcut: str) -> str: ... function GetShortcutForAction (line 28) | def GetShortcutForAction(actionNameOrID: str) -> str | None: ... function GetShortcutForKeyEvent (line 29) | def GetShortcutForKeyEvent(keyEventID: str) -> str | None: ... function HandleKeyEvent (line 30) | def HandleKeyEvent(widget: PyQt5.QtWidgets.QWidget, keyEvent: PyQt5.QtGu... function IsShortcutRegisteredForAction (line 31) | def IsShortcutRegisteredForAction(actionContext: str, shortcut: str) -> ... function IsShortcutRegisteredForClass (line 32) | def IsShortcutRegisteredForClass(className: str, shortcut: str) -> bool:... function LoadShortcuts (line 33) | def LoadShortcuts(): ... function RegisterAction (line 34) | def RegisterAction(actionID: str, name: str, shortcut: str | None, callb... function RegisterActions (line 35) | def RegisterActions(contextName: str, actions: dict): ... function RegisterKeyEvent (line 36) | def RegisterKeyEvent(className: str, keyEventID: str, name: str, shortcu... function UnregisterAction (line 37) | def UnregisterAction(actionID: str): ... function UnregisterKeyEvent (line 38) | def UnregisterKeyEvent(keyEventID: str): ... function UpdateAction (line 39) | def UpdateAction(managedAction: ManagedAction): ... FILE: katana/stubs/UI4/App/KeyboardShortcutManager/KeyboardShortcutManagerMixin.pyi class KeyboardShortcutManagerMixin (line 13) | class KeyboardShortcutManagerMixin: method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method _installEventFilterForChildWidgets (line 15) | def _installEventFilterForChildWidgets(self): ... method eventFilter (line 16) | def eventFilter(self, obj: QObject, event: QEvent) -> bool: ... method getShortcutsContextName (line 18) | def getShortcutsContextName(cls) -> str: ... method registerKeyboardShortcut (line 20) | def registerKeyboardShortcut(cls, shortcutID: str, name: str, shortcut... method setShortcutsContextName (line 22) | def setShortcutsContextName(cls, name: str): ... class KeyboardShortcutManagerMixinMetaclass (line 24) | class KeyboardShortcutManagerMixinMetaclass(sip.wrappertype): method __init__ (line 26) | def __init__(self, name: str, bases: tuple[type, ...], dct: dict) -> N... method __call__ (line 27) | def __call__(self): ... FILE: katana/stubs/UI4/App/KeyboardShortcutManager/KeyboardShortcutModel.pyi class KeyboardShortcutModel (line 9) | class KeyboardShortcutModel(PyQt5.QtCore.QAbstractItemModel): method __init__ (line 11) | def __init__(self, data: dict, parent: Incomplete | None = ...) -> Non... method _getItemByIndex (line 12) | def _getItemByIndex(self, index: PyQt5.QtCore.QModelIndex) -> Keyboard... method _getOrCreateShortcutItem (line 13) | def _getOrCreateShortcutItem(self, name: str, parent: KeyboardShortcut... method columnCount (line 14) | def columnCount(self, parent: PyQt5.QtCore.QModelIndex) -> int: ... method data (line 15) | def data(self, index: PyQt5.QtCore.QModelIndex, role: int) -> PyQt5.Qt... method headerData (line 16) | def headerData(self, section: int, orientation: PyQt5.QtCore.Qt.Orient... method index (line 17) | def index(self, row: int, column: int, parent: PyQt5.QtCore.QModelInde... method parent (line 18) | def parent(self, child: PyQt5.QtCore.QModelIndex) -> PyQt5.QtCore.QMod... method rowCount (line 19) | def rowCount(self, parent: PyQt5.QtCore.QModelIndex) -> int: ... method setupModelData (line 20) | def setupModelData(self, data: dict): ... FILE: katana/stubs/UI4/App/KeyboardShortcutManager/ManagedAction.pyi class ManagedAction (line 9) | class ManagedAction(PyQt5.QtWidgets.QAction): method __init__ (line 10) | def __init__(self, actionID: str, text: str, parent: PyQt5.QtCore.QObj... method _ManagedAction__on_changed (line 11) | def _ManagedAction__on_changed(self): ... method getActionID (line 12) | def getActionID(self) -> str: ... FILE: katana/stubs/UI4/App/Layouts.pyi class CornerWidget (line 26) | class CornerWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 27) | def __init__(self, parent) -> None: ... class EditLayoutsDialog (line 29) | class EditLayoutsDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 30) | def __init__(self) -> None: ... method _EditLayoutsDialog__on_deleteButton_clicked (line 31) | def _EditLayoutsDialog__on_deleteButton_clicked(self): ... method getDeleted (line 32) | def getDeleted(self): ... method getHotkeys (line 33) | def getHotkeys(self): ... class FloatingLayoutWidget (line 35) | class FloatingLayoutWidget(LayoutWidget): method __init__ (line 37) | def __init__(self, layout: tuple = ..., size: Incomplete | None = ...)... method _FloatingLayoutWidget__updateTitle (line 38) | def _FloatingLayoutWidget__updateTitle(self, *args, **kwargs): ... method addNewFrame (line 39) | def addNewFrame(self, *args, **kwargs): ... method closeEvent (line 40) | def closeEvent(self, event): ... method closeFrame (line 41) | def closeFrame(self, frame): ... method createPanelFrame (line 42) | def createPanelFrame(self, *args, **kwargs): ... method getPanelNames (line 43) | def getPanelNames(self): ... method getTabTitles (line 44) | def getTabTitles(self) -> list[str]: ... method leaveEvent (line 45) | def leaveEvent(self, *args, **kwargs): ... method loadLayout (line 46) | def loadLayout(self, *args, **kwargs): ... class LayoutFrame (line 48) | class LayoutFrame(PanelFrame): method __init__ (line 49) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _LayoutFrame__moveTabToDock (line 50) | def _LayoutFrame__moveTabToDock(self, index: int, dockWidgetArea: PyQt... method addTab (line 51) | def addTab(self, widget, label): ... method doCloseAll (line 52) | def doCloseAll(self): ... method doCloseTab (line 53) | def doCloseTab(self): ... method doDetachTab (line 54) | def doDetachTab(self): ... method doShowTimeline (line 55) | def doShowTimeline(self, show): ... method doTabRightMouse (line 56) | def doTabRightMouse(self, index): ... method doTabStartDrag (line 57) | def doTabStartDrag(self, index): ... method getMinSize (line 58) | def getMinSize(self): ... method getTabTitles (line 59) | def getTabTitles(self) -> list[str]: ... method insertTab (line 60) | def insertTab(self, index, widget, label): ... method mousePressEvent (line 61) | def mousePressEvent(self, event): ... method removeTab (line 62) | def removeTab(self, index): ... class LayoutWidget (line 64) | class LayoutWidget(PanelLayout): method __init__ (line 68) | def __init__(self, parent, layout: tuple = ...) -> None: ... method createDetachLayout (line 69) | def createDetachLayout(self): ... method createPanelFrame (line 70) | def createPanelFrame(self, count, coords): ... method loadLayoutXml (line 71) | def loadLayoutXml(self, element): ... method resetLayout (line 72) | def resetLayout(self): ... method saveLayoutXml (line 73) | def saveLayoutXml(self): ... class MainWindowFilter (line 75) | class MainWindowFilter(PyQt5.QtCore.QObject): method eventFilter (line 76) | def eventFilter(self, window, event): ... class ManualStateChangeManager (line 78) | class ManualStateChangeManager(PyQt5.QtCore.QObject): method __init__ (line 79) | def __init__(self) -> None: ... method resetStateChange (line 80) | def resetStateChange(self): ... method setStateChanged (line 81) | def setStateChanged(self, value): ... method stateChanged (line 82) | def stateChanged(self): ... class SaveLayoutDialog (line 84) | class SaveLayoutDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 85) | def __init__(self, parent) -> None: ... method _SaveLayoutDialog__on_combobox_editTextChanged (line 86) | def _SaveLayoutDialog__on_combobox_editTextChanged(self, text): ... method accept (line 87) | def accept(self): ... method getName (line 88) | def getName(self): ... method getSaveDockWidgets (line 89) | def getSaveDockWidgets(self) -> bool: ... method getSaveFloating (line 90) | def getSaveFloating(self): ... function ActivateLayout (line 92) | def ActivateLayout(name: str, closeFloating: bool, closeDockWidgets: boo... function CreateFloatingTab (line 93) | def CreateFloatingTab(tabTypeName: str, size: Incomplete | None = ..., t... function CreateTabInFrame (line 94) | def CreateTabInFrame(tabTypeName: str, frame: LayoutFrame, tabTitle: Inc... function DeleteUserLayouts (line 95) | def DeleteUserLayouts(names: typing.Sequence[str]): ... function GenerateLayoutImage (line 96) | def GenerateLayoutImage(includeFloating, includeDockWidgets: bool) -> Py... function GetDockWidgets (line 97) | def GetDockWidgets(includeFloating: bool = ...) -> list[PyQt5.QtWidgets.... function GetFloatingWindows (line 98) | def GetFloatingWindows(): ... function GetLayoutImage (line 99) | def GetLayoutImage(name: str) -> PyQt5.QtGui.QImage | None: ... function GetSystemLayouts (line 100) | def GetSystemLayouts(): ... function GetTabs (line 101) | def GetTabs(tabTypeName: Incomplete | None = ..., includeFloating: bool ... function GetUserLayouts (line 102) | def GetUserLayouts(): ... function GetXmlLayout (line 103) | def GetXmlLayout(includeFloating, includeDockWidgets: bool = ...): ... function IsLayoutBeingActivated (line 104) | def IsLayoutBeingActivated() -> bool: ... function LoadLayoutFile (line 105) | def LoadLayoutFile(filename): ... function NumScreens (line 106) | def NumScreens(): ... function ResetLayout (line 107) | def ResetLayout(includeFloating: bool, closeDockWidgets: bool = ...) -> ... function SaveUserLayout (line 108) | def SaveUserLayout(name: str, includeFloating: bool, includeDockWidgets:... function SaveUserLayouts (line 109) | def SaveUserLayouts(layouts: dict): ... function SetFullScreen (line 110) | def SetFullScreen(value): ... function SetXmlLayout (line 111) | def SetXmlLayout(layoutElement): ... function SwapScreens (line 112) | def SwapScreens(): ... function ToggleFullScreen (line 113) | def ToggleFullScreen(): ... FILE: katana/stubs/UI4/App/MainMenu.pyi class DevGuideAction (line 38) | class DevGuideAction(PyQt5.QtWidgets.QAction): method __init__ (line 39) | def __init__(self, text: str, parent: PyQt5.QtCore.QObject, documentPa... method on_triggered (line 40) | def on_triggered(self): ... class LayoutsMenu (line 42) | class LayoutsMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 43) | def __init__(self, parent, frame: Incomplete | None = ...) -> None: ... method _LayoutsMenu__addActionsForLayouts (line 44) | def _LayoutsMenu__addActionsForLayouts(self, layoutNames): ... method _LayoutsMenu__doAboutToShow (line 45) | def _LayoutsMenu__doAboutToShow(self): ... method _LayoutsMenu__onActionHovered (line 46) | def _LayoutsMenu__onActionHovered(self, action): ... method doEditLayouts (line 47) | def doEditLayouts(self): ... method doLayoutChange (line 48) | def doLayoutChange(self, events): ... method doSaveLayout (line 49) | def doSaveLayout(self): ... method doSelectLayout (line 50) | def doSelectLayout(self): ... method doShowMainTimeline (line 51) | def doShowMainTimeline(self, shown): ... method leaveEvent (line 52) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method populate (line 53) | def populate(self): ... class MainMenu (line 55) | class MainMenu(PyQt5.QtWidgets.QMenuBar): method __init__ (line 56) | def __init__(self, parent: PyQt5.QtCore.QObject) -> None: ... method _MainMenu__getBoundKey (line 57) | def _MainMenu__getBoundKey(self, key: PyQt5.QtGui.QKeySequence.Standar... method _MainMenu__on_editMenu_aboutToHide (line 58) | def _MainMenu__on_editMenu_aboutToHide(self): ... method _MainMenu__on_editMenu_aboutToShow (line 59) | def _MainMenu__on_editMenu_aboutToShow(self): ... method _MainMenu__populate (line 60) | def _MainMenu__populate(self): ... class OnlineHelpAction (line 62) | class OnlineHelpAction(PyQt5.QtWidgets.QAction): method __init__ (line 63) | def __init__(self, text: str, parent: PyQt5.QtCore.QObject, cshid: Inc... method on_triggered (line 64) | def on_triggered(self): ... class OpenRecentAction (line 66) | class OpenRecentAction(PyQt5.QtWidgets.QAction): method __init__ (line 67) | def __init__(self, label, parent, meta) -> None: ... class OpenRecentMenu (line 69) | class OpenRecentMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 70) | def __init__(self, parent) -> None: ... method _OpenRecentMenu__doAboutToShow (line 71) | def _OpenRecentMenu__doAboutToShow(self): ... method _OpenRecentMenu__doTriggered (line 72) | def _OpenRecentMenu__doTriggered(self, action): ... class RenderMenu (line 74) | class RenderMenu(GetSetMenu): method __init__ (line 75) | def __init__(self, parent, frame: Incomplete | None = ...) -> None: ... method _RenderMenu__cancelAllRenders (line 76) | def _RenderMenu__cancelAllRenders(self): ... method _RenderMenu__cancelCurrentRender (line 77) | def _RenderMenu__cancelCurrentRender(self): ... method _RenderMenu__liveRenderViewNode (line 78) | def _RenderMenu__liveRenderViewNode(self): ... method _RenderMenu__on_aboutToShow (line 79) | def _RenderMenu__on_aboutToShow(self): ... method _RenderMenu__on_showKatanaQueueAction_triggered (line 80) | def _RenderMenu__on_showKatanaQueueAction_triggered(self): ... method _RenderMenu__on_stopRenderFarmJobsAction_triggered (line 81) | def _RenderMenu__on_stopRenderFarmJobsAction_triggered(self): ... method _RenderMenu__previewRenderViewNode (line 82) | def _RenderMenu__previewRenderViewNode(self): ... method _RenderMenu__render2DMenuAboutToShow (line 83) | def _RenderMenu__render2DMenuAboutToShow(self): ... method _RenderMenu__repeatPreviousRender (line 84) | def _RenderMenu__repeatPreviousRender(self): ... method _RenderMenu__stopAllRenderFarmJobs (line 85) | def _RenderMenu__stopAllRenderFarmJobs(self, farmPluginName: str): ... method _RenderMenu__viewBasedPrioritizationAction_CB (line 86) | def _RenderMenu__viewBasedPrioritizationAction_CB(self): ... class Rendering2DMenu (line 88) | class Rendering2DMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 89) | def __init__(self, *args) -> None: ... method _Rendering2DMenu__aboutToShow (line 90) | def _Rendering2DMenu__aboutToShow(self): ... method _Rendering2DMenu__buildActions (line 91) | def _Rendering2DMenu__buildActions(self): ... method _Rendering2DMenu__printImageMemoryUsage (line 92) | def _Rendering2DMenu__printImageMemoryUsage(self): ... method _Rendering2DMenu__resetRenderThreadPool (line 93) | def _Rendering2DMenu__resetRenderThreadPool(self): ... method _Rendering2DMenu__setRenderThreadsPref (line 94) | def _Rendering2DMenu__setRenderThreadsPref(self, value): ... method _Rendering2DMenu__viewBasedPrioritizationAction_CB (line 95) | def _Rendering2DMenu__viewBasedPrioritizationAction_CB(self): ... class Rendering3DMenu (line 97) | class Rendering3DMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 98) | def __init__(self, *args) -> None: ... method _Rendering3DMenu__aboutToShow (line 99) | def _Rendering3DMenu__aboutToShow(self): ... method _Rendering3DMenu__buildActions (line 100) | def _Rendering3DMenu__buildActions(self): ... method _Rendering3DMenu__pauseRender (line 101) | def _Rendering3DMenu__pauseRender(self): ... method _Rendering3DMenu__queryRender (line 102) | def _Rendering3DMenu__queryRender(self): ... method _Rendering3DMenu__renderIDPass (line 103) | def _Rendering3DMenu__renderIDPass(self): ... method _Rendering3DMenu__resumeRender (line 104) | def _Rendering3DMenu__resumeRender(self): ... class RenderingLiveRenderMenu (line 106) | class RenderingLiveRenderMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 107) | def __init__(self, title, activateShortcuts: bool = ..., parent: Incom... method _RenderingLiveRenderMenu__buildActions (line 108) | def _RenderingLiveRenderMenu__buildActions(self, activateShortcuts: bo... method _RenderingLiveRenderMenu__on_aboutToShow (line 109) | def _RenderingLiveRenderMenu__on_aboutToShow(self): ... class TabMenuItem (line 111) | class TabMenuItem(PyQt5.QtWidgets.QAction): method __init__ (line 112) | def __init__(self, displayName, tabTypeName, parent) -> None: ... class TabsMenu (line 114) | class TabsMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 115) | def __init__(self, parent, frame: Incomplete | None = ...) -> None: ... method _TabsMenu__addTabMenuItems (line 116) | def _TabsMenu__addTabMenuItems(self, tabTypeNames: list[str]): ... method _TabsMenu__doAboutToShow (line 117) | def _TabsMenu__doAboutToShow(self): ... method _TabsMenu__doKatanaPanel (line 118) | def _TabsMenu__doKatanaPanel(self, args): ... method on_triggered (line 119) | def on_triggered(self, action): ... method populate (line 120) | def populate(self): ... class UtilMenu (line 122) | class UtilMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 123) | def __init__(self, parent) -> None: ... method _UtilMenu__doAboutToShow (line 124) | def _UtilMenu__doAboutToShow(self): ... method _UtilMenu__executeFarmMenuOptionCallback (line 125) | def _UtilMenu__executeFarmMenuOptionCallback(self, callback: Incomplet... method _UtilMenu__farmXML (line 126) | def _UtilMenu__farmXML(self): ... method _UtilMenu__flushCaches (line 127) | def _UtilMenu__flushCaches(self): ... method _UtilMenu__refreshLocalMediaCache (line 128) | def _UtilMenu__refreshLocalMediaCache(self): ... method _UtilMenu__reloadArgsFiles (line 129) | def _UtilMenu__reloadArgsFiles(self): ... method _UtilMenu__reloadShadersAndArgsFiles (line 130) | def _UtilMenu__reloadShadersAndArgsFiles(self): ... method _UtilMenu__resetAssetAPIPlugins (line 131) | def _UtilMenu__resetAssetAPIPlugins(self, eventType, eventID, **kwargs... method _UtilMenu__syncOutputPorts (line 132) | def _UtilMenu__syncOutputPorts(self): ... class VersionUpAndSaveAction (line 134) | class VersionUpAndSaveAction(PyQt5.QtWidgets.QAction): method __init__ (line 135) | def __init__(self, parent) -> None: ... method _VersionUpAndSaveAction__checkEnabled (line 136) | def _VersionUpAndSaveAction__checkEnabled(self, *args, **kwargs): ... FILE: katana/stubs/UI4/App/MainWindow.pyi class KatanaWindow (line 28) | class KatanaWindow(UI4.Widgets.BaseWidgets.BaseMainWindow): method __init__ (line 32) | def __init__(self, parent) -> None: ... method _KatanaWindow__autoKeyAllTogglePressCallback (line 33) | def _KatanaWindow__autoKeyAllTogglePressCallback(self): ... method _KatanaWindow__autoKeyAllToggleReleaseCallback (line 34) | def _KatanaWindow__autoKeyAllToggleReleaseCallback(self): ... method _KatanaWindow__flushCachesKeyPressCallback (line 35) | def _KatanaWindow__flushCachesKeyPressCallback(self): ... method _KatanaWindow__flushCachesKeyReleaseCallback (line 36) | def _KatanaWindow__flushCachesKeyReleaseCallback(self): ... method _KatanaWindow__implicitResolversTogglePressCallback (line 37) | def _KatanaWindow__implicitResolversTogglePressCallback(self): ... method _KatanaWindow__implicitResolversToggleReleaseCallback (line 38) | def _KatanaWindow__implicitResolversToggleReleaseCallback(self): ... method _KatanaWindow__nextFrameKeyPressCallback (line 39) | def _KatanaWindow__nextFrameKeyPressCallback(self): ... method _KatanaWindow__nextKeyKeyPressCallback (line 40) | def _KatanaWindow__nextKeyKeyPressCallback(self): ... method _KatanaWindow__on_katana_fileDirty (line 41) | def _KatanaWindow__on_katana_fileDirty(self, eventType: str | None, st... method _KatanaWindow__on_nodegraph_changed (line 42) | def _KatanaWindow__on_nodegraph_changed(self, args: list[tuple[str, ob... method _KatanaWindow__openRecentFileKeyPressCallback (line 43) | def _KatanaWindow__openRecentFileKeyPressCallback(self, recentFileInde... method _KatanaWindow__preferencesKeyPressCallback (line 44) | def _KatanaWindow__preferencesKeyPressCallback(self): ... method _KatanaWindow__previousFrameKeyPressCallback (line 45) | def _KatanaWindow__previousFrameKeyPressCallback(self): ... method _KatanaWindow__previousKeyKeyPressCallback (line 46) | def _KatanaWindow__previousKeyKeyPressCallback(self): ... method _KatanaWindow__redoKeyPressCallback (line 47) | def _KatanaWindow__redoKeyPressCallback(self): ... method _KatanaWindow__renderOnlySelectedTogglePressCallback (line 48) | def _KatanaWindow__renderOnlySelectedTogglePressCallback(self): ... method _KatanaWindow__renderOnlySelectedToggleReleaseCallback (line 49) | def _KatanaWindow__renderOnlySelectedToggleReleaseCallback(self): ... method _KatanaWindow__shelfActionsKeyPressCallback (line 50) | def _KatanaWindow__shelfActionsKeyPressCallback(self): ... method _KatanaWindow__undoKeyPressCallback (line 51) | def _KatanaWindow__undoKeyPressCallback(self): ... method closeEvent (line 52) | def closeEvent(self, event): ... method formatAssetIDLabel (line 54) | def formatAssetIDLabel(cls) -> str: ... method formatWindowTitle (line 56) | def formatWindowTitle(cls, tabTitles: Incomplete | None = ...) -> str:... method getApplicationShortcuts (line 57) | def getApplicationShortcuts(self, context: PyQt5.QtCore.Qt.ShortcutCon... method getMainLayout (line 58) | def getMainLayout(self): ... method getMenuBar (line 59) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar: ... method isTimelineVisible (line 60) | def isTimelineVisible(self) -> bool: ... method populate (line 61) | def populate(self): ... method registerKeyboardShortcuts (line 63) | def registerKeyboardShortcuts(): ... method setTimelineVisible (line 64) | def setTimelineVisible(self, timelineVisible: bool): ... method timeline (line 65) | def timeline(self): ... method updateAutosaveLabel (line 66) | def updateAutosaveLabel(self, autoSave: bool = ...): ... method updateWindowTitleAndAssetIDLabel (line 67) | def updateWindowTitleAndAssetIDLabel(self): ... function CurrentMainWindow (line 69) | def CurrentMainWindow(): ... function GetMainWindow (line 70) | def GetMainWindow() -> KatanaWindow: ... function SetAssetIDLabelTextCallback (line 71) | def SetAssetIDLabelTextCallback(assetIDLabelTextCallback: typing.Callabl... function SetMainWindowTitleCallback (line 72) | def SetMainWindowTitleCallback(mainWindowTitleCallback: typing.Callable)... FILE: katana/stubs/UI4/App/OGL.pyi function GetMissingOpenGlExtensions (line 8) | def GetMissingOpenGlExtensions() -> list[str | None]: ... function ShowErrorInitializingOpenGlDialog (line 9) | def ShowErrorInitializingOpenGlDialog() -> bool: ... function ShowExtensionErrorDialog (line 10) | def ShowExtensionErrorDialog(window, missingExtensions): ... function ShowRemoteHostDialog (line 11) | def ShowRemoteHostDialog(window, missingExtensions): ... FILE: katana/stubs/UI4/App/Preferences.pyi class PreferenceValuePolicy (line 21) | class PreferenceValuePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePoli... method __init__ (line 22) | def __init__(self, parent: Incomplete | None = ..., name: str = ...) -... method getChildByName (line 23) | def getChildByName(self, name): ... method getChildren (line 24) | def getChildren(self): ... method getName (line 25) | def getName(self): ... method getNumChildren (line 26) | def getNumChildren(self): ... method getPrefType (line 27) | def getPrefType(self): ... method getType (line 28) | def getType(self): ... method getValue (line 29) | def getValue(self) -> Tuple[float, int | str]: ... method getWidgetHints (line 30) | def getWidgetHints(self): ... method restoreOldValues (line 31) | def restoreOldValues(self): ... method saveOldValues (line 32) | def saveOldValues(self): ... method setValue (line 33) | def setValue(self, value: Tuple[float, int | str], final: bool = ...) ... class PreferencesDialog (line 35) | class PreferencesDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 36) | def __init__(self, *args, **kwargs) -> None: ... method accept (line 37) | def accept(self): ... method reject (line 38) | def reject(self): ... method selectItem (line 39) | def selectItem(self, category): ... class PreferencesEditor (line 41) | class PreferencesEditor(PyQt5.QtWidgets.QWidget): method __init__ (line 42) | def __init__(self, *args) -> None: ... method _PreferencesEditor__currentItemChanged (line 43) | def _PreferencesEditor__currentItemChanged(self, item): ... method buildPrefFrame (line 44) | def buildPrefFrame(self, prefName): ... method rebuildContent (line 45) | def rebuildContent(self, keepItems: bool = ...): ... method revert (line 46) | def revert(self): ... method selectItem (line 47) | def selectItem(self, itemName): ... method showEvent (line 48) | def showEvent(self, event): ... method store (line 49) | def store(self): ... function ApplyPreferences (line 51) | def ApplyPreferences(): ... function ShowPreferencesDialog (line 52) | def ShowPreferencesDialog(*args, **kwargs): ... FILE: katana/stubs/UI4/App/RecentFiles.pyi function ClearRecentFiles (line 10) | def ClearRecentFiles(): ... function GetAllRecentFiles (line 11) | def GetAllRecentFiles() -> list[str]: ... function OpenRecentFileByIndex (line 12) | def OpenRecentFileByIndex(recentFileIndex: int): ... function PushRecentFile (line 13) | def PushRecentFile(fileName): ... FILE: katana/stubs/UI4/App/Splash.pyi class SplashScreen (line 14) | class SplashScreen(PyQt5.QtWidgets.QSplashScreen, SplashScreenMixin): method __init__ (line 15) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, pixmap: PyQt5.QtGu... method showMessage (line 16) | def showMessage(self, message: str): ... class SplashScreenMixin (line 18) | class SplashScreenMixin: method __init__ (line 19) | def __init__(self) -> None: ... method _addTextGraphicsEffect (line 20) | def _addTextGraphicsEffect(self, widget): ... method getRightLayout (line 21) | def getRightLayout(self) -> PyQt5.QtWidgets.QVBoxLayout: ... method setDetailText (line 22) | def setDetailText(self, detailText: str | None): ... method setTextSelectable (line 23) | def setTextSelectable(self, textSelectable: bool): ... function GetAboutDialogImage (line 25) | def GetAboutDialogImage(release, detailText: Incomplete | None = ...): ... function GetDefaultSplashScreenImageFilename (line 26) | def GetDefaultSplashScreenImageFilename() -> str: ... function GetKatanaBuildDate (line 27) | def GetKatanaBuildDate(dateFormat: str = ...) -> str: ... function GetSplashScreenImage (line 28) | def GetSplashScreenImage(release: str, detailText: Incomplete | None = .... function GetSplashScreenImageFilename (line 29) | def GetSplashScreenImageFilename() -> str: ... function ShowSplashWindow (line 30) | def ShowSplashWindow(detailText: Incomplete | None = ...) -> PyQt5.QtWid... FILE: katana/stubs/UI4/App/Tabs.pyi class TabWithTimeline (line 17) | class TabWithTimeline(PyQt5.QtWidgets.QWidget): method __init__ (line 18) | def __init__(self, widget: PyQt5.QtWidgets.QWidget) -> None: ... method closeEvent (line 19) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method getPanel (line 20) | def getPanel(self): ... method getTabTitle (line 21) | def getTabTitle(self) -> str: ... method getWidget (line 22) | def getWidget(self) -> PyQt5.QtWidgets.QWidget: ... method isTimelineShown (line 23) | def isTimelineShown(self) -> bool: ... method setSizeHint (line 24) | def setSizeHint(self, sizeHint: PyQt5.QtCore.QSize): ... method showTimeline (line 25) | def showTimeline(self, show: bool): ... method sizeHint (line 26) | def sizeHint(self) -> PyQt5.QtCore.QSize: ... function ApplySettings (line 28) | def ApplySettings(widget: PyQt5.QtWidgets.QFrame, settings: dict): ... function CloseUnusedTabs (line 29) | def CloseUnusedTabs(): ... function CreateTab (line 30) | def CreateTab(tabTypeName: str, parent: PyQt5.QtWidgets.QWidget) -> TabW... function FindTopTab (line 31) | def FindTopTab(tabTypeName: str, alsoRaise: bool = ...) -> PyQt5.QtWidge... function GetAllTabs (line 32) | def GetAllTabs() -> list[PyQt5.QtWidgets.QWidget]: ... function GetAvailableTabTypeNames (line 33) | def GetAvailableTabTypeNames() -> list[str]: ... function GetSettings (line 34) | def GetSettings(widget: PyQt5.QtWidgets.QFrame) -> dict: ... function GetTabIcon (line 35) | def GetTabIcon(tabTypeName: str) -> PyQt5.QtGui.QIcon | None: ... function GetTabMenuItemIcon (line 36) | def GetTabMenuItemIcon(tabTypeName: str) -> PyQt5.QtGui.QIcon | None: ... function GetTabPluginPath (line 37) | def GetTabPluginPath(tabTypeName) -> str: ... function GetTabPluginSearchPaths (line 38) | def GetTabPluginSearchPaths() -> list[str]: ... function GetTabTitle (line 39) | def GetTabTitle(tabTypeName: str) -> str: ... function GetTabType (line 40) | def GetTabType(widget): ... function GetTabTypeName (line 41) | def GetTabTypeName(widget: TabWithTimeline | PyQt5.QtWidgets.QWidget) ->... function GetTabWidgetIndex (line 42) | def GetTabWidgetIndex(widget: PyQt5.QtWidgets.QWidget) -> tuple: ... function GetTabsByType (line 43) | def GetTabsByType(tabTypeName: str) -> list[PyQt5.QtWidgets.QWidget]: ... function IsTabPersistent (line 44) | def IsTabPersistent(name): ... function IsTabTypePersistent (line 45) | def IsTabTypePersistent(tabTypeName: str) -> bool: ... function LoadTabPlugins (line 46) | def LoadTabPlugins(tabPluginSearchPaths: list[str]) -> set[str]: ... function LoadedTabs (line 47) | def LoadedTabs(): ... function RaiseTab (line 48) | def RaiseTab(widget: PyQt5.QtWidgets.QWidget): ... function TabPluginPaths (line 49) | def TabPluginPaths(): ... FILE: katana/stubs/UI4/App/TimelineWidget.pyi class TimelineWidget (line 19) | class TimelineWidget(QT4Widgets.Timebar.TimebarWidget, UI4.FormMaster.Pa... method __init__ (line 21) | def __init__(self, parent) -> None: ... method _TimelineWidget__contextMenu (line 22) | def _TimelineWidget__contextMenu(self, localPos): ... method _TimelineWidget__currentTime_changed (line 23) | def _TimelineWidget__currentTime_changed(self, time, final): ... method _TimelineWidget__fullRange_changed (line 24) | def _TimelineWidget__fullRange_changed(self, inTime, outTime): ... method _TimelineWidget__getNameForParameters (line 25) | def _TimelineWidget__getNameForParameters(self, parameters): ... method _TimelineWidget__increment_changed (line 26) | def _TimelineWidget__increment_changed(self, increment): ... method _TimelineWidget__nodegraph_loadEnd_callback (line 27) | def _TimelineWidget__nodegraph_loadEnd_callback(self, eventType, event... method _TimelineWidget__nodegraph_setCurrentTime_callback (line 28) | def _TimelineWidget__nodegraph_setCurrentTime_callback(self, eventType... method _TimelineWidget__nodegraph_setTimeIncrement_callback (line 29) | def _TimelineWidget__nodegraph_setTimeIncrement_callback(self, eventTy... method _TimelineWidget__nodegraph_setTimeRange_callback (line 30) | def _TimelineWidget__nodegraph_setTimeRange_callback(self, eventType, ... method _TimelineWidget__nodegraph_setWorkingTimeRange_callback (line 31) | def _TimelineWidget__nodegraph_setWorkingTimeRange_callback(self, even... method _TimelineWidget__on_keysChanged (line 32) | def _TimelineWidget__on_keysChanged(self): ... method _TimelineWidget__selection_changed (line 33) | def _TimelineWidget__selection_changed(self): ... method _TimelineWidget__showDopeSheet (line 34) | def _TimelineWidget__showDopeSheet(self): ... method _TimelineWidget__timeRange_changed (line 35) | def _TimelineWidget__timeRange_changed(self, inTime, outTime): ... method _TimelineWidget__updateKeys (line 36) | def _TimelineWidget__updateKeys(self): ... method _initializeSet (line 37) | def _initializeSet(self, curveEditSetCopy): ... method _keysActiveChanged (line 38) | def _keysActiveChanged(self, paramFullName, active): ... method _keysChanged (line 39) | def _keysChanged(self, paramFullName): ... method _nameChanged (line 40) | def _nameChanged(self, oldParamFullName, newParamFullName, newParamLoc... method _nodeNameChanged (line 41) | def _nodeNameChanged(self, oldNodeName, newNodeName): ... method _showKeys (line 42) | def _showKeys(self, paramFullName, show): ... FILE: katana/stubs/UI4/FormMaster/ArgsExportDialog.pyi class ArgsExportDialog (line 13) | class ArgsExportDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 14) | def __init__(self, shaderName, rendererInfoPluginName) -> None: ... method _ArgsExportDialog__fileToggleCallback (line 15) | def _ArgsExportDialog__fileToggleCallback(self): ... method _ArgsExportDialog__okClicked (line 16) | def _ArgsExportDialog__okClicked(self): ... method _ArgsExportDialog__publishToggleCallback (line 17) | def _ArgsExportDialog__publishToggleCallback(self): ... method _ArgsExportDialog__updateState (line 18) | def _ArgsExportDialog__updateState(self): ... method _ArgsExportDialog__validityChangeCallback (line 19) | def _ArgsExportDialog__validityChangeCallback(self, state): ... method getResult (line 20) | def getResult(self): ... FILE: katana/stubs/UI4/FormMaster/ArrayParameterPolicy.pyi class ArrayParameterPolicy (line 8) | class ArrayParameterPolicy(BaseParameterPolicy): method __init__ (line 9) | def __init__(self, param, parent) -> None: ... method _ArrayParameterPolicy__checkForUpdate (line 10) | def _ArrayParameterPolicy__checkForUpdate(self, final: bool = ...): ... method _freeze (line 11) | def _freeze(self): ... method _handleParamChanged (line 12) | def _handleParamChanged(self, args): ... method _handleParamFinalized (line 13) | def _handleParamFinalized(self, args): ... method _handleTimeChanged (line 14) | def _handleTimeChanged(self, final): ... method _thaw (line 15) | def _thaw(self): ... method getArrayChild (line 16) | def getArrayChild(self, index: int) -> BaseParameterPolicy.BaseParamet... method getArraySize (line 17) | def getArraySize(self): ... method getNumChildren (line 18) | def getNumChildren(self): ... method getType (line 19) | def getType(self): ... method removeArrayChild (line 20) | def removeArrayChild(self, index: int): ... method removeArrayChildren (line 21) | def removeArrayChildren(self, index: int, count: int): ... method reorderArrayChild (line 22) | def reorderArrayChild(self, oldIndex: int, newIndex: int): ... method reorderArrayChildren (line 23) | def reorderArrayChildren(self, oldIndex: int, newIndex: int, count: in... method setArraySize (line 24) | def setArraySize(self, size): ... FILE: katana/stubs/UI4/FormMaster/AttributePolicy.pyi class ArrayAttributePolicy (line 21) | class ArrayAttributePolicy(BaseAttributePolicy): method __init__ (line 22) | def __init__(self, attr, typeName, name, parent, stateSource: Incomple... method _ArrayAttributePolicy__getChildPolicyObject (line 23) | def _ArrayAttributePolicy__getChildPolicyObject(self, index): ... method _equivalent (line 24) | def _equivalent(self, other): ... method _setAttr (line 25) | def _setAttr(self, attr): ... method getArrayChild (line 26) | def getArrayChild(self, index): ... method getArraySize (line 27) | def getArraySize(self): ... method getChildPolicyObjects (line 28) | def getChildPolicyObjects(self): ... method getNumChildren (line 29) | def getNumChildren(self): ... method getType (line 30) | def getType(self): ... method setValueState (line 31) | def setValueState(self, state): ... class AttributeStateSource (line 33) | class AttributeStateSource(PyQt5.QtCore.QObject): method __init__ (line 38) | def __init__(self, producer: PyFnGeolibProducers.GeometryProducer, pat... method _AttributeStateSource__getKey (line 39) | def _AttributeStateSource__getKey(self, key): ... method _transferState (line 40) | def _transferState(self, rhs): ... method _triggerAttributeHistory (line 41) | def _triggerAttributeHistory(self, policy): ... method _triggerAttributeInheritance (line 42) | def _triggerAttributeInheritance(self, policy): ... method getActiveAttributeEditor (line 43) | def getActiveAttributeEditor(self, policy): ... method getAttrPath (line 44) | def getAttrPath(self, policy): ... method getAvailableStates (line 45) | def getAvailableStates(self, policy): ... method getHints (line 46) | def getHints(self, path): ... method getPath (line 47) | def getPath(self): ... method getProducer (line 48) | def getProducer(self): ... method getState (line 49) | def getState(self, path): ... method isLocked (line 50) | def isLocked(self, policy): ... method setAttributeEditorsDict (line 51) | def setAttributeEditorsDict(self, editors): ... method setLocked (line 52) | def setLocked(self, state): ... class BaseAttributePolicy (line 54) | class BaseAttributePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 55) | def __init__(self, attr, name, parent, stateSource: Incomplete | None ... method _BaseAttributePolicy__attributeHistoryTrigger (line 56) | def _BaseAttributePolicy__attributeHistoryTrigger(self, checked): ... method _BaseAttributePolicy__attributeInheritanceTrigger (line 57) | def _BaseAttributePolicy__attributeInheritanceTrigger(self, checked): ... method _appendToStateMenu (line 58) | def _appendToStateMenu(self, menu: PyQt5.QtWidgets.QMenu) -> bool: ... method _equivalent (line 59) | def _equivalent(self, other): ... method _getAttr (line 60) | def _getAttr(self): ... method _getFullAttrName (line 61) | def _getFullAttrName(self): ... method _setAttr (line 62) | def _setAttr(self, attr): ... method getAttrPath (line 63) | def getAttrPath(self): ... method getAvailableStates (line 64) | def getAvailableStates(self): ... method getIndex (line 65) | def getIndex(self): ... method getMimeData (line 66) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getName (line 67) | def getName(self): ... method getPath (line 68) | def getPath(self): ... method getScenegraphPath (line 69) | def getScenegraphPath(self): ... method getStateAppearance (line 70) | def getStateAppearance(self, state): ... method getStateSource (line 71) | def getStateSource(self): ... method getValueAsAttr (line 72) | def getValueAsAttr(self): ... method getValueState (line 73) | def getValueState(self): ... method getWidgetHints (line 74) | def getWidgetHints(self): ... method isLocked (line 75) | def isLocked(self): ... method shouldDisplayState (line 76) | def shouldDisplayState(self): ... class GroupAttributePolicy (line 78) | class GroupAttributePolicy(BaseAttributePolicy): method __init__ (line 79) | def __init__(self, attr, name, parent, stateSource: Incomplete | None ... method _GroupAttributePolicy__buildChildren (line 80) | def _GroupAttributePolicy__buildChildren(self): ... method _GroupAttributePolicy__getChildPageHintCallback (line 81) | def _GroupAttributePolicy__getChildPageHintCallback(self, childName): ... method _buildChildren (line 82) | def _buildChildren(self, childDict, childNames): ... method _setAttr (line 83) | def _setAttr(self, attr): ... method getChildByName (line 84) | def getChildByName(self, name): ... method getChildren (line 85) | def getChildren(self): ... method getIgnorePages (line 86) | def getIgnorePages(self): ... method getNumChildren (line 87) | def getNumChildren(self): ... method getType (line 88) | def getType(self): ... method setIgnorePages (line 89) | def setIgnorePages(self, ignorePages): ... class PageGroupAttributePolicy (line 91) | class PageGroupAttributePolicy(GroupAttributePolicy): method __init__ (line 92) | def __init__(self, attr, name, parent, childNames, childPages, stateSo... method _buildChildren (line 93) | def _buildChildren(self, childDict, childNames): ... method _getFullAttrName (line 94) | def _getFullAttrName(self): ... method getValueState (line 95) | def getValueState(self): ... method getWidgetHints (line 96) | def getWidgetHints(self): ... method shouldDisplayState (line 97) | def shouldDisplayState(self): ... class ScalarAttributePolicy (line 99) | class ScalarAttributePolicy(BaseAttributePolicy): method __init__ (line 100) | def __init__(self, attr, index, typeName, name, parent, stateSource: I... method _ScalarAttributePolicy__buildEmptyOverride (line 101) | def _ScalarAttributePolicy__buildEmptyOverride(self): ... method _setAttr (line 102) | def _setAttr(self, attr): ... method getIndex (line 103) | def getIndex(self): ... method getType (line 104) | def getType(self): ... method getValue (line 105) | def getValue(self): ... method getValueState (line 106) | def getValueState(self): ... method getWidgetHints (line 107) | def getWidgetHints(self): ... method setValue (line 108) | def setValue(self, value, final: bool = ...): ... method setValueState (line 109) | def setValueState(self, state): ... function CreateAttributePolicy (line 111) | def CreateAttributePolicy(parentPolicy, name, attr, stateSource: Incompl... function CreateProducerGroupPolicy (line 112) | def CreateProducerGroupPolicy(producer: PyFnGeolibProducers.GeometryProd... FILE: katana/stubs/UI4/FormMaster/BaseParameterPolicy.pyi class BaseParameterPolicy (line 19) | class BaseParameterPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 20) | def __init__(self, param, parent) -> None: ... method _BaseParameterPolicy__applyToGroups (line 21) | def _BaseParameterPolicy__applyToGroups(self, param, action): ... method _BaseParameterPolicy__getExtensionForNode (line 22) | def _BaseParameterPolicy__getExtensionForNode(self, node: NodegraphAPI... method _BaseParameterPolicy__getUserParametersEditState (line 23) | def _BaseParameterPolicy__getUserParametersEditState(self): ... method _BaseParameterPolicy__parameter_showKeys_callback (line 24) | def _BaseParameterPolicy__parameter_showKeys_callback(self, args): ... method _BaseParameterPolicy__removeHint (line 25) | def _BaseParameterPolicy__removeHint(self, param): ... method _BaseParameterPolicy__resetParameters (line 26) | def _BaseParameterPolicy__resetParameters(self): ... method _BaseParameterPolicy__saveAndPublishMacro (line 27) | def _BaseParameterPolicy__saveAndPublishMacro(self, node: NodegraphAPI... method _BaseParameterPolicy__saveAsMacro (line 28) | def _BaseParameterPolicy__saveAsMacro(self): ... method _BaseParameterPolicy__setHint (line 29) | def _BaseParameterPolicy__setHint(self, param): ... method _BaseParameterPolicy__setUpEventHandlers (line 30) | def _BaseParameterPolicy__setUpEventHandlers(self, enable): ... method _BaseParameterPolicy__toggleNodeInputConnectionVisibility (line 31) | def _BaseParameterPolicy__toggleNodeInputConnectionVisibility(self): ... method _BaseParameterPolicy__toggleShowHiddenParams (line 32) | def _BaseParameterPolicy__toggleShowHiddenParams(self): ... method _BaseParameterPolicy__toggleUserParameterState (line 33) | def _BaseParameterPolicy__toggleUserParameterState(self): ... method _BaseParameterPolicy__writeMacroFile (line 34) | def _BaseParameterPolicy__writeMacroFile(self, node: NodegraphAPI.Node... method _appendToWrenchMenu (line 35) | def _appendToWrenchMenu(self, menu): ... method _cleanUpExpression (line 36) | def _cleanUpExpression(self, rawExpr): ... method _freeze (line 37) | def _freeze(self): ... method _hintsChanged (line 38) | def _hintsChanged(self): ... method _thaw (line 39) | def _thaw(self): ... method canHaveExpression (line 40) | def canHaveExpression(self): ... method getCurveXml (line 41) | def getCurveXml(self): ... method getExpression (line 42) | def getExpression(self): ... method getExpressionError (line 43) | def getExpressionError(self): ... method getExpressionNamespace (line 44) | def getExpressionNamespace(self): ... method getExpressionReference (line 45) | def getExpressionReference(self): ... method getMimeData (line 46) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getName (line 47) | def getName(self): ... method getNode (line 48) | def getNode(self) -> NodegraphAPI.Node: ... method getNumChildren (line 49) | def getNumChildren(self): ... method getParameter (line 50) | def getParameter(self): ... method getSceneGraphLocationPath (line 51) | def getSceneGraphLocationPath(self) -> str | None: ... method getStateAppearance (line 52) | def getStateAppearance(self, state): ... method getTooltip (line 53) | def getTooltip(self): ... method getType (line 54) | def getType(self): ... method getWidgetHints (line 55) | def getWidgetHints(self): ... method isExpressionEnabled (line 56) | def isExpressionEnabled(self): ... method isGroupParameterBeingEdited (line 57) | def isGroupParameterBeingEdited(self): ... method isLocked (line 58) | def isLocked(self): ... method isValid (line 59) | def isValid(self) -> bool: ... method setCurveXml (line 60) | def setCurveXml(self, xml): ... method setExpression (line 61) | def setExpression(self, expr): ... method setExpressionEnabled (line 62) | def setExpressionEnabled(self, flag): ... method setMimeData (line 63) | def setMimeData(self, mimeData, dropAction): ... method shouldDisplayWrench (line 64) | def shouldDisplayWrench(self): ... FILE: katana/stubs/UI4/FormMaster/CurveParameterPolicy.pyi class CurveParameterPolicy (line 14) | class CurveParameterPolicy(BaseParameterPolicy): method __init__ (line 15) | def __init__(self, param, parent) -> None: ... method _CurveParameterPolicy__isValidFCurveElementInMimeData (line 16) | def _CurveParameterPolicy__isValidFCurveElementInMimeData(self, mimeDa... method canHaveCurve (line 17) | def canHaveCurve(self): ... method checkMimeData (line 18) | def checkMimeData(self, mimeData): ... method getCurveAutoKey (line 19) | def getCurveAutoKey(self): ... method getCurveKey (line 20) | def getCurveKey(self): ... method getMimeData (line 21) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getValue (line 22) | def getValue(self): ... method getValueState (line 23) | def getValueState(self): ... method isCurveEnabled (line 24) | def isCurveEnabled(self): ... method isCurveViewed (line 25) | def isCurveViewed(self): ... method setCurveAutoKey (line 26) | def setCurveAutoKey(self, autoKey): ... method setCurveEnabled (line 27) | def setCurveEnabled(self, state): ... method setCurveKey (line 28) | def setCurveKey(self, state): ... method setCurveViewed (line 29) | def setCurveViewed(self, state): ... method setMimeData (line 30) | def setMimeData(self, mimeData, dropAction): ... method setValue (line 31) | def setValue(self, value, final: bool = ...): ... method setValueState (line 32) | def setValueState(self, state): ... FILE: katana/stubs/UI4/FormMaster/DocDump.pyi function DocDump (line 9) | def DocDump(names: Incomplete | None = ..., outputdir: Incomplete | None... function DoxyTemplate (line 10) | def DoxyTemplate(name, outputdir): ... function DumpHelp (line 11) | def DumpHelp(policy, indent: int = ...): ... FILE: katana/stubs/UI4/FormMaster/EditorCache.pyi class NodeEditorCacheClass (line 17) | class NodeEditorCacheClass(PyQt5.QtCore.QObject): method __init__ (line 19) | def __init__(self, factory: KatanaFactory.KatanaWidgetFactoryClass) ->... method _NodeEditorCacheClass__clearAllEditorsForNode (line 20) | def _NodeEditorCacheClass__clearAllEditorsForNode(self, nodeHash: int)... method _NodeEditorCacheClass__collapsedEventHandler (line 21) | def _NodeEditorCacheClass__collapsedEventHandler(self, args): ... method _NodeEditorCacheClass__deleteEditor (line 22) | def _NodeEditorCacheClass__deleteEditor(self, editor: BaseParameterPol... method _NodeEditorCacheClass__on_qApp_aboutToQuit (line 23) | def _NodeEditorCacheClass__on_qApp_aboutToQuit(self): ... method buildEditor (line 24) | def buildEditor(self, node: NodegraphAPI.Node) -> BaseParameterPolicy:... method flush (line 25) | def flush(self): ... method getEditor (line 26) | def getEditor(self, node: NodegraphAPI.Node) -> BaseParameterPolicy: ... method releaseEditor (line 27) | def releaseEditor(self, editor: BaseParameterPolicy): ... FILE: katana/stubs/UI4/FormMaster/Editors/AdjustMaxToDisplayWindowNumberFormWidget.pyi class AdjustMaxToDisplayWindowNumberFormWidget (line 12) | class AdjustMaxToDisplayWindowNumberFormWidget(UI4.FormMaster.Editors.Nu... method __init__ (line 13) | def __init__(self, parent, policy, factory) -> None: ... method _AdjustMaxToDisplayWindowNumberFormWidget__loadBeginCB (line 14) | def _AdjustMaxToDisplayWindowNumberFormWidget__loadBeginCB(self, args)... method _AdjustMaxToDisplayWindowNumberFormWidget__loadEndCB (line 15) | def _AdjustMaxToDisplayWindowNumberFormWidget__loadEndCB(self, args): ... method _AdjustMaxToDisplayWindowNumberFormWidget__updateMax (line 16) | def _AdjustMaxToDisplayWindowNumberFormWidget__updateMax(self): ... method _AdjustMaxToDisplayWindowNumberFormWidget__updateMaxCB (line 17) | def _AdjustMaxToDisplayWindowNumberFormWidget__updateMaxCB(self, args)... method _freeze (line 18) | def _freeze(self): ... method _thaw (line 19) | def _thaw(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/AssetApiPluginPopup.pyi class AssetPluginPopupFormWidget (line 11) | class AssetPluginPopupFormWidget(BaseAssetApiPluginPopupFormWidget): method __init__ (line 12) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... class BaseAssetApiPluginPopupFormWidget (line 14) | class BaseAssetApiPluginPopupFormWidget(PopupFormWidget): method __init__ (line 15) | def __init__(self, pluginNames: list[str], parent: PyQt5.QtWidgets.QWi... class FileSequencePluginPopupFormWidget (line 17) | class FileSequencePluginPopupFormWidget(BaseAssetApiPluginPopupFormWidget): method __init__ (line 18) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... FILE: katana/stubs/UI4/FormMaster/Editors/AssetId.pyi class AssetIdSaveWidget (line 15) | class AssetIdSaveWidget(AssetIdWidget): method __init__ (line 16) | def __init__(self, parent, policy, factory, forceFile: bool = ...) -> ... class AssetIdWidget (line 18) | class AssetIdWidget(StringFormWidget): method __init__ (line 19) | def __init__(self, parent, policy, factory, forceFile: bool = ...) -> ... method _AssetIdWidget__getRenderNodeFromEvent (line 20) | def _AssetIdWidget__getRenderNodeFromEvent(self, event): ... method _AssetIdWidget__setupEventHandlers (line 21) | def _AssetIdWidget__setupEventHandlers(self, active): ... method _AssetIdWidget__showExtendedInfo (line 22) | def _AssetIdWidget__showExtendedInfo(self, infoDialog): ... method _AssetIdWidget__updatePluginWidget (line 23) | def _AssetIdWidget__updatePluginWidget(self, *args, **kwargs): ... method _buildControlWidget (line 24) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 25) | def _checkControlWidget(self): ... method _fillMenu (line 26) | def _fillMenu(self, menu): ... method _filterValueText (line 27) | def _filterValueText(self, text): ... method _freeze (line 28) | def _freeze(self): ... method _helper (line 29) | def _helper(self): ... method _lockChanged (line 30) | def _lockChanged(self, state): ... method _popupMenuCreated (line 31) | def _popupMenuCreated(self, menu): ... method _thaw (line 32) | def _thaw(self): ... method _updateControlWidget (line 33) | def _updateControlWidget(self): ... method dragEnterEvent (line 34) | def dragEnterEvent(self, event): ... method dropEvent (line 35) | def dropEvent(self, event): ... method getMenu (line 36) | def getMenu(self): ... method valueChangedEvent (line 37) | def valueChangedEvent(self, event): ... class FileInputWidget (line 39) | class FileInputWidget(AssetIdWidget): method __init__ (line 40) | def __init__(self, parent, policy, factory) -> None: ... class LiveGroupSourceWidget (line 42) | class LiveGroupSourceWidget(AssetIdWidget): class PolicyWrapper (line 43) | class PolicyWrapper(QT4FormWidgets.ValuePolicy.ValuePolicyProxy): method isLocked (line 44) | def isLocked(self): ... method __init__ (line 45) | def __init__(self, parent, policy, factory, forceFile: bool = ...) -> ... method isLocked (line 46) | def isLocked(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/AttributeEditor.pyi class AttributeEditorNodeGroupFormWidget (line 26) | class AttributeEditorNodeGroupFormWidget(UI4.FormMaster.Editors.NodeGrou... method __init__ (line 27) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _AttributeEditorNodeGroupFormWidget__changeExclusivity (line 28) | def _AttributeEditorNodeGroupFormWidget__changeExclusivity(self, event... method _AttributeEditorNodeGroupFormWidget__checkForOverlappingAttributes (line 29) | def _AttributeEditorNodeGroupFormWidget__checkForOverlappingAttributes... method _AttributeEditorNodeGroupFormWidget__contentsMousePressCallback (line 30) | def _AttributeEditorNodeGroupFormWidget__contentsMousePressCallback(se... method _AttributeEditorNodeGroupFormWidget__contextMenuCallback (line 31) | def _AttributeEditorNodeGroupFormWidget__contextMenuCallback(self, pos... method _AttributeEditorNodeGroupFormWidget__copyToCommonRoot (line 32) | def _AttributeEditorNodeGroupFormWidget__copyToCommonRoot(self): ... method _AttributeEditorNodeGroupFormWidget__copyToScenegraphSelection (line 33) | def _AttributeEditorNodeGroupFormWidget__copyToScenegraphSelection(sel... method _AttributeEditorNodeGroupFormWidget__deleteSelectedOverrides (line 34) | def _AttributeEditorNodeGroupFormWidget__deleteSelectedOverrides(self)... method _AttributeEditorNodeGroupFormWidget__doMoveOrCopyActionToCommonRoot (line 35) | def _AttributeEditorNodeGroupFormWidget__doMoveOrCopyActionToCommonRoo... method _AttributeEditorNodeGroupFormWidget__doMoveOrCopyActionToScenegraphSelection (line 36) | def _AttributeEditorNodeGroupFormWidget__doMoveOrCopyActionToScenegrap... method _AttributeEditorNodeGroupFormWidget__findCommonRootOfSelection (line 37) | def _AttributeEditorNodeGroupFormWidget__findCommonRootOfSelection(sel... method _AttributeEditorNodeGroupFormWidget__getSelectedAttributeDict (line 38) | def _AttributeEditorNodeGroupFormWidget__getSelectedAttributeDict(self... method _AttributeEditorNodeGroupFormWidget__goToSelectedLocations (line 39) | def _AttributeEditorNodeGroupFormWidget__goToSelectedLocations(self): ... method _AttributeEditorNodeGroupFormWidget__idle_callback (line 40) | def _AttributeEditorNodeGroupFormWidget__idle_callback(self, *args, **... method _AttributeEditorNodeGroupFormWidget__ignoreSelectedOverrides (line 41) | def _AttributeEditorNodeGroupFormWidget__ignoreSelectedOverrides(self,... method _AttributeEditorNodeGroupFormWidget__isSelectionIgnored (line 42) | def _AttributeEditorNodeGroupFormWidget__isSelectionIgnored(self): ... method _AttributeEditorNodeGroupFormWidget__itemSelectionChangedCB (line 43) | def _AttributeEditorNodeGroupFormWidget__itemSelectionChangedCB(self):... method _AttributeEditorNodeGroupFormWidget__linkClickedCallback (line 44) | def _AttributeEditorNodeGroupFormWidget__linkClickedCallback(self, lin... method _AttributeEditorNodeGroupFormWidget__moveToCommonRoot (line 45) | def _AttributeEditorNodeGroupFormWidget__moveToCommonRoot(self): ... method _AttributeEditorNodeGroupFormWidget__moveToScenegraphSelection (line 46) | def _AttributeEditorNodeGroupFormWidget__moveToScenegraphSelection(sel... method _AttributeEditorNodeGroupFormWidget__node_setByPassedCB (line 47) | def _AttributeEditorNodeGroupFormWidget__node_setByPassedCB(self, even... method _AttributeEditorNodeGroupFormWidget__overrideCreatedCallback (line 48) | def _AttributeEditorNodeGroupFormWidget__overrideCreatedCallback(self,... method _AttributeEditorNodeGroupFormWidget__parameter_finalizedValueCB (line 49) | def _AttributeEditorNodeGroupFormWidget__parameter_finalizedValueCB(se... method _AttributeEditorNodeGroupFormWidget__timeChangeCB (line 50) | def _AttributeEditorNodeGroupFormWidget__timeChangeCB(self, *args, **k... method _AttributeEditorNodeGroupFormWidget__unignoreSelectedOverrides (line 51) | def _AttributeEditorNodeGroupFormWidget__unignoreSelectedOverrides(sel... method _AttributeEditorNodeGroupFormWidget__updateListView (line 52) | def _AttributeEditorNodeGroupFormWidget__updateListView(self, selectLo... method _freeze (line 53) | def _freeze(self): ... method _thaw (line 54) | def _thaw(self): ... method keyPressEvent (line 55) | def keyPressEvent(self, event): ... method __del__ (line 56) | def __del__(self) -> None: ... class AttributeEditorTreeWidget (line 58) | class AttributeEditorTreeWidget(PyQt5.QtWidgets.QTreeWidget): class Attribute (line 59) | class Attribute(tuple): method __init__ (line 63) | def __init__(self, _cls, attrType, name, data, tupleSize, sceneGraph... method _asdict (line 64) | def _asdict(self): ... method _make (line 66) | def _make(cls, iterable): ... method _replace (line 67) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 68) | def __getnewargs__(self): ... method attrType (line 70) | def attrType(self): ... method data (line 72) | def data(self): ... method hints (line 74) | def hints(self): ... method name (line 76) | def name(self): ... method sceneGraphLocationPath (line 78) | def sceneGraphLocationPath(self): ... method tupleSize (line 80) | def tupleSize(self): ... method __init__ (line 82) | def __init__(self, attributeEditorNode: NodegraphAPI.Node, parent: Inc... method _AttributeEditorTreeWidget__decodeDraggedAttribute (line 83) | def _AttributeEditorTreeWidget__decodeDraggedAttribute(self, mimeData:... method dragEnterEvent (line 84) | def dragEnterEvent(self, event: PyQt5.QtGui.QDragEnterEvent): ... method dragMoveEvent (line 85) | def dragMoveEvent(self, event: PyQt5.QtGui.QDragMoveEvent): ... method dropEvent (line 86) | def dropEvent(self, event: PyQt5.QtGui.QDropEvent): ... method keyPressEvent (line 87) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... class OverrideItem (line 89) | class OverrideItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 90) | def __init__(self, parent, name, ignored, overrideNode, index: int = .... method getIndex (line 91) | def getIndex(self): ... method getMaxIndex (line 92) | def getMaxIndex(self): ... method getParameter (line 93) | def getParameter(self): ... method isIgnored (line 94) | def isIgnored(self): ... method makeSelected (line 95) | def makeSelected(self, selected): ... method setIndex (line 96) | def setIndex(self, index): ... method usesSlider (line 97) | def usesSlider(self): ... class PopupEditor (line 99) | class PopupEditor(PyQt5.QtWidgets.QFrame): method __init__ (line 100) | def __init__(self) -> None: ... method clearTarget (line 101) | def clearTarget(self): ... method setTarget (line 102) | def setTarget(self, parentPolicy, param, widgetFactory): ... class PopupSlider (line 104) | class PopupSlider(PyQt5.QtWidgets.QFrame): method __init__ (line 105) | def __init__(self) -> None: ... method _PopupSlider__valueChangeCallback (line 106) | def _PopupSlider__valueChangeCallback(self, value): ... method clearTarget (line 107) | def clearTarget(self): ... method hideEvent (line 108) | def hideEvent(self, e): ... method setTarget (line 109) | def setTarget(self, minValue, maxValue, curValue, callbackFnc): ... method showEvent (line 110) | def showEvent(self, e): ... class ScenegraphLocationItem (line 112) | class ScenegraphLocationItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 113) | def __init__(self, path, node: NodegraphAPI.Node, attrs, parent) -> No... method isIgnored (line 114) | def isIgnored(self): ... method makeSelected (line 115) | def makeSelected(self, selected): ... method setPixmap (line 116) | def setPixmap(self, index, pixmap): ... method updateSelection (line 117) | def updateSelection(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/AttributeName.pyi class AttributeNameArrayEditor (line 10) | class AttributeNameArrayEditor(UI4.FormMaster.Editors.SortableArray.Sort... method addButtonCheckDragEvent (line 11) | def addButtonCheckDragEvent(self, event): ... method addButtonDropEvent (line 12) | def addButtonDropEvent(self, event): ... class AttributeNameEditor (line 14) | class AttributeNameEditor(StringFormWidget): method __init__ (line 15) | def __init__(self, parent, policy, factory) -> None: ... method dragEnterEvent (line 16) | def dragEnterEvent(self, event): ... method dropEvent (line 17) | def dropEvent(self, event): ... method setLocked (line 18) | def setLocked(self, value, checkLockOps: bool = ...): ... FILE: katana/stubs/UI4/FormMaster/Editors/AttributeSetEditor.pyi class AttributeSetEditor (line 10) | class AttributeSetEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormW... method __init__ (line 11) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _AttributeSetEditor__attrDropped (line 12) | def _AttributeSetEditor__attrDropped(self, attr, name): ... function _GetAttrTypeString (line 14) | def _GetAttrTypeString(attr): ... FILE: katana/stubs/UI4/FormMaster/Editors/AttributeType.pyi class AttributeTypeEditor (line 10) | class AttributeTypeEditor(PopupFormWidget): method __init__ (line 11) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, policy: QT4... method dragEnterEvent (line 12) | def dragEnterEvent(self, event: PyQt5.QtGui.QDragEnterEvent): ... method dropEvent (line 13) | def dropEvent(self, event: PyQt5.QtGui.QDropEvent): ... method setLocked (line 14) | def setLocked(self, value: bool, checkLockOps: bool = ...): ... FILE: katana/stubs/UI4/FormMaster/Editors/BaseRamp.pyi class BaseRampFormWidget (line 20) | class BaseRampFormWidget(FormWidget): method __init__ (line 33) | def __init__(self, tupleSize: int, parent: PyQt5.QtWidgets.QWidget | N... method _BaseRampFormWidget__companionPolicyChanged (line 34) | def _BaseRampFormWidget__companionPolicyChanged(self, valuePolicyEvent... method _BaseRampFormWidget__getInterpolator (line 35) | def _BaseRampFormWidget__getInterpolator(self) -> str: ... method _BaseRampFormWidget__getInterpolatorOptions (line 36) | def _BaseRampFormWidget__getInterpolatorOptions(self) -> list[str]: ... method _BaseRampFormWidget__getKnots (line 37) | def _BaseRampFormWidget__getKnots(self) -> list[tuple]: ... method _BaseRampFormWidget__getPolicyPathDict (line 39) | def _BaseRampFormWidget__getPolicyPathDict(cls, mainPolicy, alteredPol... method _BaseRampFormWidget__setInterpolator (line 40) | def _BaseRampFormWidget__setInterpolator(self, interpolator: str): ... method _BaseRampFormWidget__setKnots (line 41) | def _BaseRampFormWidget__setKnots(self, knots: list[tuple]): ... method _addControlWidgets (line 42) | def _addControlWidgets(self, knots: list[tuple], interpolator: str, in... method _addInterpolatorActions (line 43) | def _addInterpolatorActions(self, menu: PyQt5.QtWidgets.QMenu): ... method _buildControlWidget (line 44) | def _buildControlWidget(self, layout: PyQt5.QtWidgets.QHBoxLayout): ... method _freeze (line 45) | def _freeze(self): ... method _thaw (line 46) | def _thaw(self): ... method _updateControlWidgets (line 47) | def _updateControlWidgets(self, knots: list[tuple], interpolator: str)... method _updateRampParameters (line 48) | def _updateRampParameters(self, knots: list[tuple], interpolator: str)... method getCoPolicyPathDict (line 50) | def getCoPolicyPathDict(cls, policy, alteredPolicyName: Incomplete | N... method valueChangedEvent (line 51) | def valueChangedEvent(self, valuePolicyEvent: QT4FormWidgets.ValuePoli... FILE: katana/stubs/UI4/FormMaster/Editors/CallbackButtonFormWidget.pyi class CallbackButtonFormWidget (line 15) | class CallbackButtonFormWidget(BaseValueFormWidget): method __init__ (line 16) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _CallbackButtonFormWidget__refreshButton (line 17) | def _CallbackButtonFormWidget__refreshButton(self, button: PyQt5.QtWid... method _buildControlWidget (line 18) | def _buildControlWidget(self, layout: PyQt5.QtWidgets.QLayout) -> PyQt... method _lockChanged (line 19) | def _lockChanged(self, state: bool): ... method _updateControlWidget (line 20) | def _updateControlWidget(self): ... method on_button_clicked (line 21) | def on_button_clicked(self): ... method setLabelWidth (line 22) | def setLabelWidth(self, width: int): ... FILE: katana/stubs/UI4/FormMaster/Editors/CameraPickerFormWidget.pyi class CameraPickerFormWidget (line 14) | class CameraPickerFormWidget(BaseValueFormWidget): method __init__ (line 15) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _buildControlWidget (line 16) | def _buildControlWidget(self, layout: PyQt5.QtWidgets.QLayout) -> PyQt... method _lockChanged (line 17) | def _lockChanged(self, state: bool): ... method _updateControlWidget (line 18) | def _updateControlWidget(self): ... method on_cameraPickerButton_popupClosed (line 19) | def on_cameraPickerButton_popupClosed(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/CelEditor.pyi class CelEditorFormWidget (line 38) | class CelEditorFormWidget(UI4.Widgets.SortablePanel.SortablePanelFormWid... method __init__ (line 41) | def __init__(self, parent, policy, factory) -> None: ... method _CelEditorFormWidget__addMenuCallback (line 42) | def _CelEditorFormWidget__addMenuCallback(self, actionText): ... method _CelEditorFormWidget__allowNewPanels (line 43) | def _CelEditorFormWidget__allowNewPanels(self): ... method _CelEditorFormWidget__appendScenegraphSelection (line 44) | def _CelEditorFormWidget__appendScenegraphSelection(self): ... method _CelEditorFormWidget__buildValueFromPanels (line 45) | def _CelEditorFormWidget__buildValueFromPanels(self): ... method _CelEditorFormWidget__calcCelAndLoc (line 46) | def _CelEditorFormWidget__calcCelAndLoc(self, index, useThisStatement)... method _CelEditorFormWidget__confirmAndGetLastPathsPanel (line 47) | def _CelEditorFormWidget__confirmAndGetLastPathsPanel(self): ... method _CelEditorFormWidget__copyCelStatementAsText (line 48) | def _CelEditorFormWidget__copyCelStatementAsText(self): ... method _CelEditorFormWidget__fillCollectFMenu (line 49) | def _CelEditorFormWidget__fillCollectFMenu(self, menu): ... method _CelEditorFormWidget__getCollectionStatement (line 50) | def _CelEditorFormWidget__getCollectionStatement(self, locationPath, c... method _CelEditorFormWidget__getStringParameterPolicy (line 51) | def _CelEditorFormWidget__getStringParameterPolicy(self, fullParameter... method _CelEditorFormWidget__getValidDroppedNode (line 52) | def _CelEditorFormWidget__getValidDroppedNode(self, mimeData): ... method _CelEditorFormWidget__handleScenegraphLocationContextParameterPolicyChange (line 53) | def _CelEditorFormWidget__handleScenegraphLocationContextParameterPoli... method _CelEditorFormWidget__on_findAndSelectAction_triggered (line 54) | def _CelEditorFormWidget__on_findAndSelectAction_triggered(self): ... method _CelEditorFormWidget__pasteCelStatementAsText (line 55) | def _CelEditorFormWidget__pasteCelStatementAsText(self): ... method _CelEditorFormWidget__replaceWithScenegraphSelection (line 56) | def _CelEditorFormWidget__replaceWithScenegraphSelection(self): ... method _CelEditorFormWidget__setLabel (line 57) | def _CelEditorFormWidget__setLabel(self): ... method _participatesInLabelAlignment (line 58) | def _participatesInLabelAlignment(self): ... method addButtonCheckDragEvent (line 59) | def addButtonCheckDragEvent(self, event): ... method addButtonDropEvent (line 60) | def addButtonDropEvent(self, event): ... method buildAddMenu (line 61) | def buildAddMenu(self, menu): ... method collectAndDisplayResults (line 62) | def collectAndDisplayResults(self, index: int = ..., useThisStatement:... method doMenuExp (line 63) | def doMenuExp(self): ... method event (line 64) | def event(self, e): ... method findAndSelectInScenegraph (line 65) | def findAndSelectInScenegraph(self, index: int = ..., useThisStatement... method getCollectionName (line 66) | def getCollectionName(self) -> str: ... method getScenegraphLocationContext (line 67) | def getScenegraphLocationContext(self) -> str: ... method getScenegraphSelection (line 68) | def getScenegraphSelection(self): ... method panelDeleted (line 69) | def panelDeleted(self, index): ... method panelValueChanged (line 70) | def panelValueChanged(self, index): ... method updatePanels (line 71) | def updatePanels(self): ... class CelStatementPanel (line 73) | class CelStatementPanel(UI4.Widgets.SortablePanel.SortablePanelBase): class AddRemoveExprButton (line 74) | class AddRemoveExprButton(RolloverPixmap, PyQt5.QtWidgets.QPushButton): method __init__ (line 75) | def __init__(self, parent) -> None: ... method isPlus (line 76) | def isPlus(self): ... method setPlus (line 77) | def setPlus(self, value): ... method __init__ (line 83) | def __init__(self, parent, name, value, argdict: Incomplete | None = .... method _CelStatementPanel__collectAndDisplayResultsOfPanel (line 84) | def _CelStatementPanel__collectAndDisplayResultsOfPanel(self): ... method _CelStatementPanel__findAndSelectPanel (line 85) | def _CelStatementPanel__findAndSelectPanel(self): ... method _CelStatementPanel__modeboxChangeCallback (line 86) | def _CelStatementPanel__modeboxChangeCallback(self, value): ... method _CelStatementPanel__valueExprButtonClicked (line 87) | def _CelStatementPanel__valueExprButtonClicked(self): ... method _CelStatementPanel__valueExprChangedCallback (line 88) | def _CelStatementPanel__valueExprChangedCallback(self): ... method buildEntry (line 89) | def buildEntry(self, data, entryType): ... method getContentArea (line 90) | def getContentArea(self): ... method getFindMenu (line 91) | def getFindMenu(self): ... method getScenegraphLocationContext (line 92) | def getScenegraphLocationContext(self): ... method hideValueExpression (line 93) | def hideValueExpression(self): ... method setIndex (line 94) | def setIndex(self, index): ... method setLocked (line 95) | def setLocked(self, value): ... method showValueExpression (line 96) | def showValueExpression(self, exprValue: str = ...): ... class CollectionsStatementPanel (line 98) | class CollectionsStatementPanel(PathListStatementPanel): class CollectionSelectionDialog (line 99) | class CollectionSelectionDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 100) | def __init__(self, parent, possiblelist, alreadylist) -> None: ... method _CollectionSelectionDialog__itemSelectionChanged (line 101) | def _CollectionSelectionDialog__itemSelectionChanged(self): ... method _CollectionSelectionDialog__okClicked (line 102) | def _CollectionSelectionDialog__okClicked(self): ... method _CollectionSelectionDialog__updateFilter (line 103) | def _CollectionSelectionDialog__updateFilter(self, text): ... method getResults (line 104) | def getResults(self): ... method __init__ (line 105) | def __init__(self, parent, value: Incomplete | None = ...) -> None: ... method _CollectionsStatementPanel__addCollectionsFromSelection (line 106) | def _CollectionsStatementPanel__addCollectionsFromSelection(self, sele... method _CollectionsStatementPanel__addGlobalCollectionsCallback (line 107) | def _CollectionsStatementPanel__addGlobalCollectionsCallback(self): ... method _CollectionsStatementPanel__addScenegraphSelectionCallback (line 108) | def _CollectionsStatementPanel__addScenegraphSelectionCallback(self): ... method _CollectionsStatementPanel__findAndSelectItemsCallback (line 109) | def _CollectionsStatementPanel__findAndSelectItemsCallback(self): ... method _CollectionsStatementPanel__getExistingPaths (line 110) | def _CollectionsStatementPanel__getExistingPaths(self): ... method actionMenuAboutToShow (line 111) | def actionMenuAboutToShow(self): ... method dragEnterEvent (line 112) | def dragEnterEvent(self, event): ... method dropEvent (line 113) | def dropEvent(self, event): ... method event (line 114) | def event(self, e): ... method getMinLines (line 115) | def getMinLines(self): ... method getValue (line 116) | def getValue(self, onlySelected: bool = ..., includeBaseValue: bool = ... method processDialogResults (line 117) | def processDialogResults(self, results, sendUpdate: bool = ...): ... class CustomStatementPanel (line 119) | class CustomStatementPanel(CelStatementPanel): method __init__ (line 120) | def __init__(self, parent, value: Incomplete | None = ...) -> None: ... method _CustomStatementPanel__changedCallback (line 121) | def _CustomStatementPanel__changedCallback(self): ... method dragEnterEvent (line 122) | def dragEnterEvent(self, event): ... method dropEvent (line 123) | def dropEvent(self, event): ... method getValue (line 124) | def getValue(self): ... class MenuShiftFilter (line 126) | class MenuShiftFilter(PyQt5.QtCore.QObject): method __init__ (line 127) | def __init__(self, menu, action) -> None: ... method _MenuShiftFilter__aboutToShow (line 128) | def _MenuShiftFilter__aboutToShow(self): ... method _MenuShiftFilter__setLabelState (line 129) | def _MenuShiftFilter__setLabelState(self, state): ... method eventFilter (line 130) | def eventFilter(self, receiver, event): ... class PathListStatementPanel (line 132) | class PathListStatementPanel(CelStatementPanel): class PathItem (line 133) | class PathItem(PyQt5.QtWidgets.QTreeWidgetItem): method clearMessage (line 134) | def clearMessage(self): ... method setErrorMessage (line 135) | def setErrorMessage(self, message): ... method setWarningMessage (line 136) | def setWarningMessage(self, message): ... method __init__ (line 137) | def __init__(self, parent, name, value: Incomplete | None = ..., argdi... method _PathListStatementPanel__actionMenuAboutToShow (line 138) | def _PathListStatementPanel__actionMenuAboutToShow(self): ... method _PathListStatementPanel__contextMenuCallback (line 139) | def _PathListStatementPanel__contextMenuCallback(self, point): ... method actionMenuAboutToShow (line 140) | def actionMenuAboutToShow(self): ... method copySelectedPathsCallback (line 141) | def copySelectedPathsCallback(self): ... method getActionMenu (line 142) | def getActionMenu(self): ... method getMinLines (line 143) | def getMinLines(self): ... method getScenegraphSelection (line 144) | def getScenegraphSelection(self): ... method getValueTreeWidget (line 145) | def getValueTreeWidget(self): ... method removeSelectedPathsCallback (line 146) | def removeSelectedPathsCallback(self): ... method selectAll (line 147) | def selectAll(self): ... method sendChange (line 148) | def sendChange(self): ... method setLocked (line 149) | def setLocked(self, value): ... method updateLabel (line 150) | def updateLabel(self): ... method zoomBoxClicked (line 151) | def zoomBoxClicked(self): ... class PathsStatementPanel (line 153) | class PathsStatementPanel(PathListStatementPanel): class PathListExtendedDialog (line 154) | class PathListExtendedDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 155) | def __init__(self, paths) -> None: ... method getPaths (line 156) | def getPaths(self): ... method __init__ (line 157) | def __init__(self, parent, value: Incomplete | None = ..., argdict: In... method _PathsStatementPanel__getPaths (line 158) | def _PathsStatementPanel__getPaths(self): ... method _PathsStatementPanel__showExtendedView (line 159) | def _PathsStatementPanel__showExtendedView(self): ... method actionMenuAboutToShow (line 160) | def actionMenuAboutToShow(self): ... method addScenegraphSelection (line 161) | def addScenegraphSelection(self, sendUpdate: bool = ..., selection: In... method added (line 162) | def added(self): ... method dragEnterEvent (line 163) | def dragEnterEvent(self, event): ... method dropEvent (line 164) | def dropEvent(self, event): ... method event (line 165) | def event(self, e): ... method getValue (line 166) | def getValue(self): ... method keyPressEvent (line 167) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method removeScenegraphSelection (line 168) | def removeScenegraphSelection(self): ... method selectSelectedPathsInScenegraph (line 169) | def selectSelectedPathsInScenegraph(self): ... method update (line 170) | def update(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/ChannelEditors.pyi class ChannelsNodeFormWidget (line 9) | class ChannelsNodeFormWidget(UI4.FormMaster.Editors.NodeGroup.NodeGroupF... method _createChildWidget (line 10) | def _createChildWidget(self, policy, parentWidget, factory, index): ... method _popdownCreated (line 11) | def _popdownCreated(self, popdown): ... method getPopdownWidget (line 12) | def getPopdownWidget(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/ColorArrayFormWidget.pyi class ArraySliceProxyPolicy (line 15) | class ArraySliceProxyPolicy: method __init__ (line 16) | def __init__(self, policy, sliceStart, sliceEnd) -> None: ... method getArrayChild (line 17) | def getArrayChild(self, index): ... method getArraySize (line 18) | def getArraySize(self): ... method getExtraHints (line 19) | def getExtraHints(self): ... method getOpenStateKey (line 20) | def getOpenStateKey(self): ... method getWidgetHints (line 21) | def getWidgetHints(self): ... method __getattr__ (line 22) | def __getattr__(self, name): ... class BalancedArrayFormWidget (line 24) | class BalancedArrayFormWidget(ColorArrayFormWidget): class ColorWidget (line 25) | class ColorWidget(UI4.FormMaster.Editors.KatanaColor.KatanaColorFormWi... class SetValuePolicyProxy (line 26) | class SetValuePolicyProxy(QT4FormWidgets.ValuePolicy.ValuePolicyProxy): method __init__ (line 28) | def __init__(self, policy, parentWidget, index) -> None: ... method setValue (line 29) | def setValue(self, value, final: bool = ...): ... method _popdownCreated (line 31) | def _popdownCreated(self, popdown): ... method execColorPicker (line 32) | def execColorPicker(self): ... method setColor_RGBA (line 33) | def setColor_RGBA(self, color, final: bool = ...): ... method __init__ (line 34) | def __init__(self, *args, **kwargs) -> None: ... method _BalancedArrayFormWidget__balanceFrom (line 35) | def _BalancedArrayFormWidget__balanceFrom(self, index): ... method _BalancedArrayFormWidget__checkboxStateChanged (line 36) | def _BalancedArrayFormWidget__checkboxStateChanged(self, state): ... method _BalancedArrayFormWidget__colorChange (line 37) | def _BalancedArrayFormWidget__colorChange(self, index): ... method _buildColorWidget (line 38) | def _buildColorWidget(self, parent, policy, index): ... method _buildControlWidget (line 39) | def _buildControlWidget(self, layout): ... class ColorArrayFormWidget (line 41) | class ColorArrayFormWidget(GroupFormWidget): method _buildColorWidget (line 42) | def _buildColorWidget(self, parent, policy, index): ... method _popdownCreated (line 43) | def _popdownCreated(self, popdown): ... FILE: katana/stubs/UI4/FormMaster/Editors/ColorEditors.pyi class ColorSliderGroupFormWidget (line 16) | class ColorSliderGroupFormWidget(GroupFormWidget): method __init__ (line 17) | def __init__(self, parent, policy, factory) -> None: ... method _ColorSliderGroupFormWidget__reset_CB (line 18) | def _ColorSliderGroupFormWidget__reset_CB(self): ... method _ColorSliderGroupFormWidget__setColorRawRGB (line 19) | def _ColorSliderGroupFormWidget__setColorRawRGB(self, rgbColor, final:... method _ColorSliderGroupFormWidget__updateColorWidget (line 20) | def _ColorSliderGroupFormWidget__updateColorWidget(self): ... method _ColorSliderGroupFormWidget__updateLockState (line 21) | def _ColorSliderGroupFormWidget__updateLockState(self): ... method _getColorPolicies (line 22) | def _getColorPolicies(self): ... method _lockChanged (line 23) | def _lockChanged(self, state): ... method _popdownCreated (line 24) | def _popdownCreated(self, popdown): ... method getPopdownWidget (line 25) | def getPopdownWidget(self): ... method showPopdown (line 26) | def showPopdown(self, value): ... method valueChangedEvent (line 27) | def valueChangedEvent(self, event): ... class ColorWheelAndLumaSliderGroupFormWidget (line 29) | class ColorWheelAndLumaSliderGroupFormWidget(UI4.FormMaster.Editors.Hide... method __init__ (line 30) | def __init__(self, parent, policy, factory) -> None: ... method _ColorWheelAndLumaSliderGroupFormWidget__lumaChanged_CB (line 31) | def _ColorWheelAndLumaSliderGroupFormWidget__lumaChanged_CB(self, luma... method _ColorWheelAndLumaSliderGroupFormWidget__lumaValueChanged (line 32) | def _ColorWheelAndLumaSliderGroupFormWidget__lumaValueChanged(self, ev... method _ColorWheelAndLumaSliderGroupFormWidget__reset_CB (line 33) | def _ColorWheelAndLumaSliderGroupFormWidget__reset_CB(self): ... method _ColorWheelAndLumaSliderGroupFormWidget__setColorRawRGB (line 34) | def _ColorWheelAndLumaSliderGroupFormWidget__setColorRawRGB(self, rgbC... method _ColorWheelAndLumaSliderGroupFormWidget__updateColorWidget (line 35) | def _ColorWheelAndLumaSliderGroupFormWidget__updateColorWidget(self): ... method _ColorWheelAndLumaSliderGroupFormWidget__updateLockState (line 36) | def _ColorWheelAndLumaSliderGroupFormWidget__updateLockState(self): ... method _ColorWheelAndLumaSliderGroupFormWidget__updateLumaWidget (line 37) | def _ColorWheelAndLumaSliderGroupFormWidget__updateLumaWidget(self): ... method _ColorWheelAndLumaSliderGroupFormWidget__valueChanged (line 38) | def _ColorWheelAndLumaSliderGroupFormWidget__valueChanged(self, event)... method _createChildWidget (line 39) | def _createChildWidget(self, *args): ... method _freeze (line 40) | def _freeze(self): ... method _lockChanged (line 41) | def _lockChanged(self, state): ... method _popdownCreated (line 42) | def _popdownCreated(self, popdown): ... method _thaw (line 43) | def _thaw(self): ... method showPopdown (line 44) | def showPopdown(self, value): ... class ColorWheelGroupFormWidget (line 46) | class ColorWheelGroupFormWidget(UI4.FormMaster.Editors.HideTitleGroup.Hi... method __init__ (line 47) | def __init__(self, parent, policy, factory) -> None: ... method _ColorWheelGroupFormWidget__reset_CB (line 48) | def _ColorWheelGroupFormWidget__reset_CB(self): ... method _ColorWheelGroupFormWidget__setColorRawRGB (line 49) | def _ColorWheelGroupFormWidget__setColorRawRGB(self, rgbColor, final: ... method _ColorWheelGroupFormWidget__updateColorWidget (line 50) | def _ColorWheelGroupFormWidget__updateColorWidget(self): ... method _ColorWheelGroupFormWidget__updateLockState (line 51) | def _ColorWheelGroupFormWidget__updateLockState(self): ... method _ColorWheelGroupFormWidget__valueChanged (line 52) | def _ColorWheelGroupFormWidget__valueChanged(self, event): ... method _freeze (line 53) | def _freeze(self): ... method _getColorPolicies (line 54) | def _getColorPolicies(self): ... method _lockChanged (line 55) | def _lockChanged(self, state): ... method _popdownCreated (line 56) | def _popdownCreated(self, popdown): ... method _thaw (line 57) | def _thaw(self): ... method getPopdownWidget (line 58) | def getPopdownWidget(self): ... method showPopdown (line 59) | def showPopdown(self, value): ... class UnitsNumberWidget (line 61) | class UnitsNumberWidget(UI4.FormMaster.Editors.Number.KatanaNumberFormWi... method __init__ (line 62) | def __init__(self, parent, policy, factory) -> None: ... method _UnitsNumberWidget__updateInfo (line 63) | def _UnitsNumberWidget__updateInfo(self): ... method _UnitsNumberWidget__valueChanged (line 64) | def _UnitsNumberWidget__valueChanged(self, event): ... method _freeze (line 65) | def _freeze(self): ... method _thaw (line 66) | def _thaw(self): ... class _HideStateValuePolicyProxy (line 68) | class _HideStateValuePolicyProxy(QT4FormWidgets.ValuePolicy.ValuePolicyP... method shouldDisplayState (line 69) | def shouldDisplayState(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/ColorRamp.pyi class ColorRampFormWidget (line 21) | class ColorRampFormWidget(UI4.FormMaster.Editors.BaseRamp.BaseRampFormWi... method __init__ (line 24) | def __init__(self, parent, policy, factory) -> None: ... method _ColorRampFormWidget__on_gradientWidget_rampChanged (line 25) | def _ColorRampFormWidget__on_gradientWidget_rampChanged(self): ... method _ColorRampFormWidget__on_menu_aboutToShow (line 26) | def _ColorRampFormWidget__on_menu_aboutToShow(self): ... method _ColorRampFormWidget__on_presetAction_triggered (line 27) | def _ColorRampFormWidget__on_presetAction_triggered(self): ... method _ColorRampFormWidget__sensitivityMenuCallback (line 28) | def _ColorRampFormWidget__sensitivityMenuCallback(self, action): ... method _ColorRampFormWidget__updateFilmlookActionText (line 29) | def _ColorRampFormWidget__updateFilmlookActionText(self): ... method _addControlWidgets (line 30) | def _addControlWidgets(self, knots: list[tuple], interpolator: str, in... method _lockChanged (line 31) | def _lockChanged(self, state: bool): ... method _updateControlWidgets (line 32) | def _updateControlWidgets(self, knots: list[tuple], interpolator: str)... class GradientRender (line 34) | class GradientRender(PyQt5.QtWidgets.QWidget): method __init__ (line 35) | def __init__(self, filmlook, width: int = ..., height: int = ..., pare... method getColorAt (line 36) | def getColorAt(self, pos: PyQt5.QtGui.QPoint) -> PyQt5.QtGui.QColor: ... method paintEvent (line 37) | def paintEvent(self, e): ... method setFilmlookEnabled (line 38) | def setFilmlookEnabled(self, value): ... method setKnots (line 39) | def setKnots(self, knots: list[Knot], interp: str = ...): ... class GradientWidget (line 41) | class GradientWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 43) | def __init__(self, knots, interp, height: int = ..., useFilmlook: bool... method _GradientWidget__drawPositionLabel (line 44) | def _GradientWidget__drawPositionLabel(self, knot): ... method _GradientWidget__hidePositionLabel (line 45) | def _GradientWidget__hidePositionLabel(self): ... method _GradientWidget__knot_point (line 46) | def _GradientWidget__knot_point(self, gpos): ... method _GradientWidget__on_xLabelVisibilityTimer_timeout (line 47) | def _GradientWidget__on_xLabelVisibilityTimer_timeout(self): ... method addKnot (line 48) | def addKnot(self, pos, color, render: bool = ...): ... method getInterp (line 49) | def getInterp(self): ... method getKnotSensitivity (line 50) | def getKnotSensitivity(self): ... method hideEvent (line 51) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method knotChanged (line 52) | def knotChanged(self, final: bool = ...): ... method knotClicked (line 53) | def knotClicked(self, knot): ... method knotDragged (line 54) | def knotDragged(self, knot, xmove, x): ... method knots (line 55) | def knots(self): ... method mouseMoveEvent (line 56) | def mouseMoveEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method mousePressEvent (line 57) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method mouseReleaseEvent (line 58) | def mouseReleaseEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method removeKnot (line 59) | def removeKnot(self, knot): ... method render (line 60) | def render(self): ... method replaceKnots (line 61) | def replaceKnots(self, knots, emit: bool = ...): ... method resizeEvent (line 62) | def resizeEvent(self, event): ... method setFilmlookEnabled (line 63) | def setFilmlookEnabled(self, value): ... method setInterp (line 64) | def setInterp(self, interp): ... method setKnotSensitivity (line 65) | def setKnotSensitivity(self, sensitivity): ... class Knot (line 67) | class Knot(PyQt5.QtWidgets.QWidget): method __init__ (line 72) | def __init__(self, position, color, useFilmLook: bool = ..., restrictC... method _Knot__remove (line 73) | def _Knot__remove(self): ... method _Knot__updateBrush (line 74) | def _Knot__updateBrush(self): ... method color (line 75) | def color(self): ... method colorChange (line 76) | def colorChange(self, color): ... method contextMenuEvent (line 77) | def contextMenuEvent(self, event): ... method isDown (line 78) | def isDown(self): ... method keyPressEvent (line 79) | def keyPressEvent(self, event): ... method mouseDoubleClickEvent (line 80) | def mouseDoubleClickEvent(self, event): ... method mouseMoveEvent (line 81) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 82) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 83) | def mouseReleaseEvent(self, event): ... method paintEvent (line 84) | def paintEvent(self, ev): ... method position (line 85) | def position(self): ... method setColor (line 86) | def setColor(self, color): ... method setDown (line 87) | def setDown(self, value): ... method setFilmlookEnabled (line 88) | def setFilmlookEnabled(self, value): ... method setPosition (line 89) | def setPosition(self, position): ... method sizeHint (line 90) | def sizeHint(self): ... class KnotToolTip (line 92) | class KnotToolTip(PyQt5.QtWidgets.QLabel): method __init__ (line 93) | def __init__(self, parent: Incomplete | None = ...) -> None: ... function EvalSpline (line 95) | def EvalSpline(u, knots): ... function clamp (line 96) | def clamp(minvalue, maxvalue, value): ... function createQColor (line 97) | def createQColor(c, filmLook: bool = ...): ... function fit (line 98) | def fit(val, inmin, inmax, outmin, outmax): ... function lerp (line 99) | def lerp(mix, a, b): ... FILE: katana/stubs/UI4/FormMaster/Editors/ConditionalHints.pyi class BooleanPanel (line 14) | class BooleanPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 15) | def __init__(self, parent, entry, policy: Incomplete | None = ..., inc... method getChildWidget (line 16) | def getChildWidget(self): ... method getEntry (line 17) | def getEntry(self): ... class ComparisonPanel (line 19) | class ComparisonPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 20) | def __init__(self, parent, entry, policy: Incomplete | None = ..., inc... method getEntry (line 21) | def getEntry(self): ... class ConditionalHintEditor (line 23) | class ConditionalHintEditor(UI4.Widgets.SortablePanel.SortablePanelFormW... method __init__ (line 24) | def __init__(self, parent, policy, factory, rootEntry, includeGroupsIn... method _ConditionalHintEditor__addCondition (line 25) | def _ConditionalHintEditor__addCondition(self, action): ... method _ConditionalHintEditor__buildPanels (line 26) | def _ConditionalHintEditor__buildPanels(self, entry): ... method _buildControlWidget (line 27) | def _buildControlWidget(self, hbox): ... method buildAddMenu (line 28) | def buildAddMenu(self, menu): ... method getEntry (line 29) | def getEntry(self): ... method getOpWidget (line 30) | def getOpWidget(self): ... class ConditionalHintEditorDialog (line 32) | class ConditionalHintEditorDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 33) | def __init__(self, inputHints, inputPolicy, hintType, includeGroupsInM... method _ConditionalHintEditorDialog__getKey (line 34) | def _ConditionalHintEditorDialog__getKey(self): ... method getResult (line 35) | def getResult(self): ... class RelativePolicyPathSelectorWidget (line 37) | class RelativePolicyPathSelectorWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 38) | def __init__(self, parent, policy: Incomplete | None = ..., includeGro... method _RelativePolicyPathSelectorWidget__pathPopupAboutToShow (line 39) | def _RelativePolicyPathSelectorWidget__pathPopupAboutToShow(self): ... method _RelativePolicyPathSelectorWidget__pathPopupItemChosen (line 40) | def _RelativePolicyPathSelectorWidget__pathPopupItemChosen(self, text,... method _RelativePolicyPathSelectorWidget__showOnlyPeersCallback (line 41) | def _RelativePolicyPathSelectorWidget__showOnlyPeersCallback(self, sta... method _RelativePolicyPathSelectorWidget__walkPolicy (line 42) | def _RelativePolicyPathSelectorWidget__walkPolicy(self, policy): ... method setText (line 43) | def setText(self, value): ... method text (line 44) | def text(self): ... function GetBooleanOperatorNames (line 46) | def GetBooleanOperatorNames(): ... function GetComparisonOperatorNames (line 47) | def GetComparisonOperatorNames(): ... function GetConditionalNamesFromHintDict (line 48) | def GetConditionalNamesFromHintDict(hintDict, hintType): ... FILE: katana/stubs/UI4/FormMaster/Editors/ConditionalStateSortableGroup.pyi class OperationGroupEditor (line 13) | class OperationGroupEditor(UI4.Widgets.SortablePanel.ParameterSortablePa... method _OperationGroupEditor__addOperatorsToMenu (line 14) | def _OperationGroupEditor__addOperatorsToMenu(self, menu, names): ... method _getPanelForPolicy (line 15) | def _getPanelForPolicy(self, vp): ... method buildAddMenu (line 16) | def buildAddMenu(self, menu): ... class OperationPanel (line 18) | class OperationPanel(UI4.Widgets.SortablePanel.ParameterSortablePanel): method __init__ (line 19) | def __init__(self, parent, name, policy, widgetFactory) -> None: ... class PathNameString (line 21) | class PathNameString(StringFormWidget): method checkMimeData (line 22) | def checkMimeData(self, data): ... method setMimeData (line 23) | def setMimeData(self, data, dropAction): ... class TargetNameString (line 25) | class TargetNameString(StringFormWidget): method checkMimeData (line 26) | def checkMimeData(self, data): ... method setMimeData (line 27) | def setMimeData(self, data, dropAction): ... function _IsValidMimeDrop (line 29) | def _IsValidMimeDrop(data): ... function _checkIfPolicyIsPage (line 30) | def _checkIfPolicyIsPage(data): ... FILE: katana/stubs/UI4/FormMaster/Editors/CropWindow.pyi class CropWindowEditor (line 12) | class CropWindowEditor(ArrayFormWidget): method __init__ (line 13) | def __init__(self, parent, policy, factory) -> None: ... method _CropWindowEditor__actionButton_menu (line 14) | def _CropWindowEditor__actionButton_menu(self, menu): ... method _CropWindowEditor__copyFromMonitorROI (line 15) | def _CropWindowEditor__copyFromMonitorROI(self): ... method _CropWindowEditor__copyToMonitorROI (line 16) | def _CropWindowEditor__copyToMonitorROI(self): ... method _CropWindowEditor__getDataWindow (line 17) | def _CropWindowEditor__getDataWindow(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/Curves.pyi class ContextMenuFCurveListView (line 20) | class ContextMenuFCurveListView(FCurveListView): method __init__ (line 23) | def __init__(self, *args) -> None: ... method contextMenuEvent (line 24) | def contextMenuEvent(self, event): ... method mousePressEvent (line 25) | def mousePressEvent(self, event): ... class CurvesFormWidget (line 27) | class CurvesFormWidget(GroupFormWidget, UI4.Widgets.GradientLayer.Gradie... method __init__ (line 28) | def __init__(self, parent, policy, factory) -> None: ... method _CurvesFormWidget__actionBegin_CB (line 29) | def _CurvesFormWidget__actionBegin_CB(self, qstringName): ... method _CurvesFormWidget__actionEnd_CB (line 30) | def _CurvesFormWidget__actionEnd_CB(self): ... method _CurvesFormWidget__actuallyReloadCurves (line 31) | def _CurvesFormWidget__actuallyReloadCurves(self): ... method _CurvesFormWidget__addFCurveKeyNondisruptive (line 32) | def _CurvesFormWidget__addFCurveKeyNondisruptive(self, curve, x): ... method _CurvesFormWidget__curveChanged (line 33) | def _CurvesFormWidget__curveChanged(self, curve, final): ... method _CurvesFormWidget__curveContextMenu (line 34) | def _CurvesFormWidget__curveContextMenu(self, curve, pos): ... method _CurvesFormWidget__curveCopy (line 35) | def _CurvesFormWidget__curveCopy(self): ... method _CurvesFormWidget__curvePaste (line 36) | def _CurvesFormWidget__curvePaste(self): ... method _CurvesFormWidget__curvePropertyChanged (line 37) | def _CurvesFormWidget__curvePropertyChanged(self, curve, key, value): ... method _CurvesFormWidget__curveSetDefault (line 38) | def _CurvesFormWidget__curveSetDefault(self, curve, policy): ... method _CurvesFormWidget__curveSetLocal (line 39) | def _CurvesFormWidget__curveSetLocal(self, curve, policy): ... method _CurvesFormWidget__curveStateToggle (line 40) | def _CurvesFormWidget__curveStateToggle(self, curve): ... method _CurvesFormWidget__curveUndo_CB (line 41) | def _CurvesFormWidget__curveUndo_CB(self, eventType, eventID, **kwargs... method _CurvesFormWidget__homeButton_clicked_callback (line 42) | def _CurvesFormWidget__homeButton_clicked_callback(self): ... method _CurvesFormWidget__makeAnimated (line 43) | def _CurvesFormWidget__makeAnimated(self): ... method _CurvesFormWidget__makeConstant (line 44) | def _CurvesFormWidget__makeConstant(self): ... method _CurvesFormWidget__setCurveStateColor (line 45) | def _CurvesFormWidget__setCurveStateColor(self, curve, rgb, state, bri... method _CurvesFormWidget__setupEventHandlers (line 46) | def _CurvesFormWidget__setupEventHandlers(self, enabled): ... method _CurvesFormWidget__timeChangedCB (line 47) | def _CurvesFormWidget__timeChangedCB(self, args): ... method _CurvesFormWidget__toggleKeyframe (line 48) | def _CurvesFormWidget__toggleKeyframe(self): ... method _buildControlWidget (line 49) | def _buildControlWidget(self, hbox): ... method _freeze (line 50) | def _freeze(self): ... method _popdownCreated (line 51) | def _popdownCreated(self, popdown): ... method _registerCurve (line 52) | def _registerCurve(self, curveName, curveAndLayerInfo): ... method _reloadCurves (line 53) | def _reloadCurves(self): ... method _setCurveColors (line 54) | def _setCurveColors(self, curve, rgb): ... method _setCurveKey (line 55) | def _setCurveKey(self, value): ... method _thaw (line 56) | def _thaw(self): ... method _unloadCurves (line 57) | def _unloadCurves(self): ... method _updateGraphView (line 58) | def _updateGraphView(self): ... method contextMenuEvent (line 59) | def contextMenuEvent(self, event): ... method fitToViewport (line 60) | def fitToViewport(self): ... method getCurvesToLoad (line 61) | def getCurvesToLoad(self): ... method getEditor (line 62) | def getEditor(self): ... method getPolicyForCurve (line 63) | def getPolicyForCurve(self, curve): ... class FCurveMaster (line 65) | class FCurveMaster(PyQt5.QtWidgets.QWidget): method __init__ (line 66) | def __init__(self, parent, policyForCurveCallbackObject) -> None: ... method _FCurveMaster__itemClicked_CB (line 67) | def _FCurveMaster__itemClicked_CB(self, item, column): ... method addCustomColumn (line 68) | def addCustomColumn(self, name, defaultValue, valueList: list = ...): ... method event (line 69) | def event(self, event): ... method getCurves (line 70) | def getCurves(self): ... method getGraphView (line 71) | def getGraphView(self): ... method getListView (line 72) | def getListView(self): ... method getValueEdit (line 73) | def getValueEdit(self): ... class StateBadgeItemDelegate (line 75) | class StateBadgeItemDelegate(PyQt5.QtWidgets.QItemDelegate): method __init__ (line 76) | def __init__(self, parent, policyForCurveCallbackObject, autoKeyColumn... method paint (line 77) | def paint(self, painter, option, index): ... method paintAutoKeyColumn (line 78) | def paintAutoKeyColumn(self, painter, option, index): ... method paintNameColumn (line 79) | def paintNameColumn(self, painter, option, index): ... method sizeHint (line 80) | def sizeHint(self, option, index): ... class _SimpleObserver (line 82) | class _SimpleObserver(PyFCurve.FCurveObserver): method __init__ (line 83) | def __init__(self) -> None: ... method beginValueChange (line 84) | def beginValueChange(self, curve): ... method curveChanged (line 85) | def curveChanged(self, curve): ... method curvePropertyChanged (line 86) | def curvePropertyChanged(self, curve, key, value): ... method emitter (line 87) | def emitter(self): ... method endValueChange (line 88) | def endValueChange(self, curve): ... method keyframePropertyChanged (line 89) | def keyframePropertyChanged(self, *args, **kwargs): ... method mute (line 90) | def mute(self, muteFlag): ... method segmentPropertyChanged (line 91) | def segmentPropertyChanged(self, *args, **kwargs): ... method tangentPropertyChanged (line 92) | def tangentPropertyChanged(self, *args, **kwargs): ... FILE: katana/stubs/UI4/FormMaster/Editors/DeferredGroupTree.pyi class DeferredGroupTreeFormWidget (line 12) | class DeferredGroupTreeFormWidget(FormWidget): method __init__ (line 16) | def __init__(self, parent, policy, factory) -> None: ... method _DeferredGroupTreeFormWidget__addExpandedDescendentsToStash (line 17) | def _DeferredGroupTreeFormWidget__addExpandedDescendentsToStash(self, ... method _DeferredGroupTreeFormWidget__addPolicyChildren (line 18) | def _DeferredGroupTreeFormWidget__addPolicyChildren(self, policy, pare... method _DeferredGroupTreeFormWidget__filterUpdate (line 19) | def _DeferredGroupTreeFormWidget__filterUpdate(self, filterText): ... method _DeferredGroupTreeFormWidget__refresh (line 20) | def _DeferredGroupTreeFormWidget__refresh(self): ... method _DeferredGroupTreeFormWidget__treeAboutToDrag (line 21) | def _DeferredGroupTreeFormWidget__treeAboutToDrag(self, dragItems, dra... method _DeferredGroupTreeFormWidget__treeContextMenuEvent (line 22) | def _DeferredGroupTreeFormWidget__treeContextMenuEvent(self, event): ... method _DeferredGroupTreeFormWidget__treeItemCollapsed (line 23) | def _DeferredGroupTreeFormWidget__treeItemCollapsed(self, item): ... method _DeferredGroupTreeFormWidget__treeItemExpanded (line 24) | def _DeferredGroupTreeFormWidget__treeItemExpanded(self, item): ... method _DeferredGroupTreeFormWidget__treeKeyPressEvent (line 25) | def _DeferredGroupTreeFormWidget__treeKeyPressEvent(self, event): ... method _DeferredGroupTreeFormWidget__treeMousePressEvent (line 26) | def _DeferredGroupTreeFormWidget__treeMousePressEvent(self, event): ... method _buildControlWidget (line 27) | def _buildControlWidget(self, layout): ... method _buildLabel (line 28) | def _buildLabel(self, labelText, pos: int = ...): ... method _thaw (line 29) | def _thaw(self): ... method on_copyAction_triggered (line 30) | def on_copyAction_triggered(self): ... method showPopdown (line 31) | def showPopdown(self, value): ... FILE: katana/stubs/UI4/FormMaster/Editors/DotNode.pyi class DotNodeEditor (line 11) | class DotNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormWidget): method __init__ (line 12) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _DotNodeEditor__clicked (line 13) | def _DotNodeEditor__clicked(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/DynamicArrayFormWidget.pyi class ArraySliceProxyPolicy (line 9) | class ArraySliceProxyPolicy: method __init__ (line 10) | def __init__(self, policy, sliceStart, sliceEnd, overrideHints: Incomp... method getArrayChild (line 11) | def getArrayChild(self, index): ... method getArraySize (line 12) | def getArraySize(self): ... method getOpenStateKey (line 13) | def getOpenStateKey(self): ... method getOverrideHints (line 14) | def getOverrideHints(self): ... method getPolicy (line 15) | def getPolicy(self): ... method getSliceEnd (line 16) | def getSliceEnd(self): ... method getSliceSize (line 17) | def getSliceSize(self): ... method getSliceStart (line 18) | def getSliceStart(self): ... method getWidgetHints (line 19) | def getWidgetHints(self): ... method shouldDisplayState (line 20) | def shouldDisplayState(self): ... method updateSlice (line 21) | def updateSlice(self, sliceStart, sliceEnd): ... method __eq__ (line 22) | def __eq__(self, other) -> bool: ... method __getattr__ (line 23) | def __getattr__(self, name): ... method __lt__ (line 24) | def __lt__(self, other) -> bool: ... method __ne__ (line 25) | def __ne__(self, other) -> bool: ... class DynamicArrayFormWidget (line 27) | class DynamicArrayFormWidget(UI4.Widgets.SortablePanel.SortablePanelForm... method __init__ (line 28) | def __init__(self, parent, policy, factory) -> None: ... method buildAddMenu (line 29) | def buildAddMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method on_newEntryAction_triggered (line 30) | def on_newEntryAction_triggered(self): ... method panelDeleted (line 31) | def panelDeleted(self, index: int): ... method panelReordered (line 32) | def panelReordered(self, oldIndex: int, newIndex: int): ... method updatePanels (line 33) | def updatePanels(self): ... class DynamicArrayPanel (line 35) | class DynamicArrayPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 36) | def __init__(self, parent, policy, factory) -> None: ... method getPolicy (line 37) | def getPolicy(self): ... method setPolicy (line 38) | def setPolicy(self, policy): ... FILE: katana/stubs/UI4/FormMaster/Editors/DynamicTemplateGroup.pyi class CopyChildrenDialog (line 18) | class CopyChildrenDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 19) | def __init__(self, children) -> None: ... method _CopyChildrenDialog__selectionChanged (line 20) | def _CopyChildrenDialog__selectionChanged(self): ... method accept (line 21) | def accept(self): ... class DynamicTemplateGroupFormWidget (line 23) | class DynamicTemplateGroupFormWidget(UI4.Widgets.SortablePanel.SortableP... method __init__ (line 24) | def __init__(self, parent, policy, factory) -> None: ... method _DynamicTemplateGroupFormWidget__addTemplate (line 25) | def _DynamicTemplateGroupFormWidget__addTemplate(self, templateName): ... method _DynamicTemplateGroupFormWidget__copy (line 26) | def _DynamicTemplateGroupFormWidget__copy(self): ... method _DynamicTemplateGroupFormWidget__paste (line 27) | def _DynamicTemplateGroupFormWidget__paste(self): ... method _childPanelsShouldAddWrench (line 28) | def _childPanelsShouldAddWrench(self): ... method alignChildLabelWidths (line 29) | def alignChildLabelWidths(self): ... method buildAddMenu (line 30) | def buildAddMenu(self, menu): ... method panelDeleted (line 31) | def panelDeleted(self, index): ... method panelReordered (line 32) | def panelReordered(self, oldPos, newPos): ... method showPopdown (line 33) | def showPopdown(self, value): ... method updatePanels (line 34) | def updatePanels(self): ... class TemplateGroupPanel (line 36) | class TemplateGroupPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 37) | def __init__(self, parent, name, policy, widgetFactory, addWrench) -> ... method _TemplateGroupPanel__getLabelBaseName (line 38) | def _TemplateGroupPanel__getLabelBaseName(self, inputName): ... method _TemplateGroupPanel__nameChangedEvent (line 39) | def _TemplateGroupPanel__nameChangedEvent(self, event): ... method _TemplateGroupPanel__policyNameChanged (line 40) | def _TemplateGroupPanel__policyNameChanged(self, event): ... method _TemplateGroupPanel__renameAction (line 41) | def _TemplateGroupPanel__renameAction(self): ... method _TemplateGroupPanel__setName (line 42) | def _TemplateGroupPanel__setName(self, value): ... method _TemplateGroupPanel__wrenchMenuAboutToShow (line 43) | def _TemplateGroupPanel__wrenchMenuAboutToShow(self): ... method _freeze (line 44) | def _freeze(self): ... method _thaw (line 45) | def _thaw(self): ... method getValuePolicy (line 46) | def getValuePolicy(self): ... method getWidget (line 47) | def getWidget(self): ... method hideEvent (line 48) | def hideEvent(self, event): ... method showEvent (line 49) | def showEvent(self, event): ... class TemplateInstanceNameDialog (line 51) | class TemplateInstanceNameDialog(UI4.FormMaster.Editors.UserParametersDi... method __init__ (line 52) | def __init__(self, startingName, peerNames, templateType) -> None: ... method _getAdjustedFieldValue (line 53) | def _getAdjustedFieldValue(self, text): ... method _getAdjustedUniqueDisplayName (line 54) | def _getAdjustedUniqueDisplayName(self, text): ... method _isTextValid (line 55) | def _isTextValid(self, text): ... FILE: katana/stubs/UI4/FormMaster/Editors/EmbeddedFCurve.pyi class FCurveFormWidget (line 22) | class FCurveFormWidget(FormWidget): method __init__ (line 23) | def __init__(self, parent, policy, factory) -> None: ... method _FCurveFormWidget__actionMenuAboutToShow (line 24) | def _FCurveFormWidget__actionMenuAboutToShow(self): ... method _FCurveFormWidget__configureEditor (line 25) | def _FCurveFormWidget__configureEditor(self): ... method _FCurveFormWidget__curveChanged (line 26) | def _FCurveFormWidget__curveChanged(self, curve, force: bool = ...): ... method _FCurveFormWidget__exportFcurve (line 27) | def _FCurveFormWidget__exportFcurve(self): ... method _FCurveFormWidget__fileEditorActive (line 28) | def _FCurveFormWidget__fileEditorActive(self): ... method _FCurveFormWidget__importFcurve (line 29) | def _FCurveFormWidget__importFcurve(self): ... method _FCurveFormWidget__setControlAreaLabel (line 30) | def _FCurveFormWidget__setControlAreaLabel(self): ... method _FCurveFormWidget__subscribeContainer (line 31) | def _FCurveFormWidget__subscribeContainer(self): ... method _FCurveFormWidget__switchToFCurve (line 32) | def _FCurveFormWidget__switchToFCurve(self): ... method _FCurveFormWidget__switchToFileName (line 33) | def _FCurveFormWidget__switchToFileName(self): ... method _FCurveFormWidget__switchToMulti (line 34) | def _FCurveFormWidget__switchToMulti(self): ... method _FCurveFormWidget__unsubscribeContainer (line 35) | def _FCurveFormWidget__unsubscribeContainer(self): ... method _buildControlWidget (line 36) | def _buildControlWidget(self, hbox): ... method _thaw (line 37) | def _thaw(self): ... method valueChangedEvent (line 38) | def valueChangedEvent(self, event): ... class _CurveEditor (line 40) | class _CurveEditor(FCurveGraphValueListWidget): method __init__ (line 41) | def __init__(self, ratio, *args) -> None: ... method heightForWidth (line 42) | def heightForWidth(self, w): ... class _FileNamePolicyProxy (line 44) | class _FileNamePolicyProxy(QT4FormWidgets.ValuePolicy.ValuePolicyProxy): method __init__ (line 45) | def __init__(self, policy, hints) -> None: ... method getWidgetHints (line 46) | def getWidgetHints(self): ... method shouldDisplayState (line 47) | def shouldDisplayState(self): ... method shouldDisplayWrench (line 48) | def shouldDisplayWrench(self): ... class _SimpleContainerObserver (line 50) | class _SimpleContainerObserver(PyFCurve.ContainerObserver): method __init__ (line 51) | def __init__(self, observer, policy, setLabelFunc) -> None: ... method containerChanged (line 52) | def containerChanged(self, container): ... class _SimpleObserver (line 54) | class _SimpleObserver(PyFCurve.FCurveObserver): method __init__ (line 55) | def __init__(self) -> None: ... method beginValueChange (line 56) | def beginValueChange(self, curve): ... method curveChanged (line 57) | def curveChanged(self, curve): ... method emitter (line 58) | def emitter(self): ... method endValueChange (line 59) | def endValueChange(self, curve): ... FILE: katana/stubs/UI4/FormMaster/Editors/FaceSelect.pyi class FaceSelectFormWidget (line 11) | class FaceSelectFormWidget(StringFormWidget): method __init__ (line 12) | def __init__(self, parent, policy, factory) -> None: ... method _FaceSelectFormWidget__adoptFacesCB (line 13) | def _FaceSelectFormWidget__adoptFacesCB(self): ... method _FaceSelectFormWidget__adoptMenuAboutToShow (line 14) | def _FaceSelectFormWidget__adoptMenuAboutToShow(self, menu): ... method _buildControlWidget (line 15) | def _buildControlWidget(self, layout): ... method getMeshLocation (line 16) | def getMeshLocation(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/FileFormatPopupEditor.pyi class FileFormatPopupBase (line 9) | class FileFormatPopupBase(PopupFormWidget): method __init__ (line 10) | def __init__(self, formats, parent, valuePolicy, widgetFactory) -> Non... method _FileFormatPopupBase__externalSetValueCallback (line 11) | def _FileFormatPopupBase__externalSetValueCallback(self, event): ... method _FileFormatPopupBase__updateFormat (line 12) | def _FileFormatPopupBase__updateFormat(self): ... method getWidgetHints (line 13) | def getWidgetHints(self): ... method setFilename (line 14) | def setFilename(self, name): ... method validFormats (line 15) | def validFormats(self): ... class InputFileFormatPopup (line 17) | class InputFileFormatPopup(FileFormatPopupBase): method __init__ (line 18) | def __init__(self, *args) -> None: ... method formatFromFilename (line 19) | def formatFromFilename(self, filename): ... method isOutput (line 20) | def isOutput(self): ... class OutputFileFormatPopup (line 22) | class OutputFileFormatPopup(FileFormatPopupBase): method __init__ (line 23) | def __init__(self, *args) -> None: ... method formatFromFilename (line 24) | def formatFromFilename(self, filename): ... method isOutput (line 25) | def isOutput(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/FileInEditors.pyi class CalculateInOutThread (line 20) | class CalculateInOutThread(PyQt5.QtCore.QThread): method __init__ (line 22) | def __init__(self, nodeName, reportErrors: bool = ...) -> None: ... method run (line 23) | def run(self): ... class ChannelGroupFormWidget (line 25) | class ChannelGroupFormWidget(GroupFormWidget): method __init__ (line 26) | def __init__(self, parent, policy, factory) -> None: ... method _ChannelGroupFormWidget__button_clicked_CB (line 27) | def _ChannelGroupFormWidget__button_clicked_CB(self): ... class ExrChannelFormWidget (line 29) | class ExrChannelFormWidget(PopupFormWidget): method __init__ (line 30) | def __init__(self, parent, policy, factory) -> None: ... method _ExrChannelFormWidget__updateOptions (line 31) | def _ExrChannelFormWidget__updateOptions(self): ... method _ExrChannelFormWidget__valueChanged (line 32) | def _ExrChannelFormWidget__valueChanged(self, event): ... method _freeze (line 33) | def _freeze(self): ... method _thaw (line 34) | def _thaw(self): ... class ExrGroupedChannelsFormWidget (line 36) | class ExrGroupedChannelsFormWidget(PopupFormWidget): method __init__ (line 37) | def __init__(self, parent, policy, factory) -> None: ... method _ExrGroupedChannelsFormWidget__setComponentValue (line 38) | def _ExrGroupedChannelsFormWidget__setComponentValue(self, node: Nodeg... method _ExrGroupedChannelsFormWidget__updateOptions (line 39) | def _ExrGroupedChannelsFormWidget__updateOptions(self): ... method _ExrGroupedChannelsFormWidget__valueChanged (line 40) | def _ExrGroupedChannelsFormWidget__valueChanged(self, event): ... method _freeze (line 41) | def _freeze(self): ... method _thaw (line 42) | def _thaw(self): ... method valueChangedEvent (line 43) | def valueChangedEvent(self, event): ... class FileInTimingEditorFormWidget (line 45) | class FileInTimingEditorFormWidget(GroupFormWidget): method __init__ (line 46) | def __init__(self, parent, policy, factory) -> None: ... method _FileInTimingEditorFormWidget__actionMenu_CB (line 47) | def _FileInTimingEditorFormWidget__actionMenu_CB(self, menu): ... method _FileInTimingEditorFormWidget__autoCalc_CB (line 48) | def _FileInTimingEditorFormWidget__autoCalc_CB(self): ... method _FileInTimingEditorFormWidget__fileValueChanged (line 49) | def _FileInTimingEditorFormWidget__fileValueChanged(self): ... method _FileInTimingEditorFormWidget__inOutSet (line 50) | def _FileInTimingEditorFormWidget__inOutSet(self, nodeName, errorMsg):... method _FileInTimingEditorFormWidget__lockToGlobals_CB (line 51) | def _FileInTimingEditorFormWidget__lockToGlobals_CB(self, *args): ... method _FileInTimingEditorFormWidget__paramChange (line 52) | def _FileInTimingEditorFormWidget__paramChange(self, args): ... method _FileInTimingEditorFormWidget__setInOutModes (line 53) | def _FileInTimingEditorFormWidget__setInOutModes(self): ... method _FileInTimingEditorFormWidget__setLockFrameRange (line 54) | def _FileInTimingEditorFormWidget__setLockFrameRange(self): ... method _FileInTimingEditorFormWidget__updateFrameLabel (line 55) | def _FileInTimingEditorFormWidget__updateFrameLabel(self, labelWidget,... method _FileInTimingEditorFormWidget__updateInOut (line 56) | def _FileInTimingEditorFormWidget__updateInOut(self, interactive: bool... method _FileInTimingEditorFormWidget__updateInfo (line 57) | def _FileInTimingEditorFormWidget__updateInfo(self): ... method _FileInTimingEditorFormWidget__valueChanged (line 58) | def _FileInTimingEditorFormWidget__valueChanged(self, event): ... method _freeze (line 59) | def _freeze(self): ... method _thaw (line 60) | def _thaw(self): ... method addFormWidgetChild (line 61) | def addFormWidgetChild(self, child, atIndex: Incomplete | None = ...):... class SimpleChannelGroupFormWidget (line 63) | class SimpleChannelGroupFormWidget(GroupFormWidget): method __init__ (line 64) | def __init__(self, parent, policy, factory) -> None: ... FILE: katana/stubs/UI4/FormMaster/Editors/FileOutEditors.pyi class FileOutFormatFormWidget (line 18) | class FileOutFormatFormWidget(PopupFormWidget): method __init__ (line 19) | def __init__(self, parent, policy, factory) -> None: ... class FileOutInputsEditor (line 21) | class FileOutInputsEditor(UI4.Widgets.SortablePanel.ParameterSortablePan... method __init__ (line 22) | def __init__(self, parent, policy, factory) -> None: ... method _FileOutInputsEditor__actionMenuCB (line 23) | def _FileOutInputsEditor__actionMenuCB(self, menu): ... method _FileOutInputsEditor__addInputCB (line 24) | def _FileOutInputsEditor__addInputCB(self): ... method _FileOutInputsEditor__portsUpdate (line 25) | def _FileOutInputsEditor__portsUpdate(self): ... method _FileOutInputsEditor__portsUpdateCB (line 26) | def _FileOutInputsEditor__portsUpdateCB(self, args): ... method _FileOutInputsEditor__postCreateAssets (line 27) | def _FileOutInputsEditor__postCreateAssets(self, versionUp: bool = ...... method _FileOutInputsEditor__postCreateAssetsVersionUp (line 28) | def _FileOutInputsEditor__postCreateAssetsVersionUp(self): ... method _FileOutInputsEditor__preCreateAssets (line 29) | def _FileOutInputsEditor__preCreateAssets(self, versionUp: bool = ...)... method _FileOutInputsEditor__preCreateAssetsVersionUp (line 30) | def _FileOutInputsEditor__preCreateAssetsVersionUp(self): ... method _FileOutInputsEditor__renumberPanels (line 31) | def _FileOutInputsEditor__renumberPanels(self): ... method _FileOutInputsEditor__setupEventHandlers (line 32) | def _FileOutInputsEditor__setupEventHandlers(self, enabled): ... method _freeze (line 33) | def _freeze(self): ... method _getPanelForPolicy (line 34) | def _getPanelForPolicy(self, vp): ... method _thaw (line 35) | def _thaw(self): ... method buildAddMenu (line 36) | def buildAddMenu(self, menu): ... method panelDeleted (line 37) | def panelDeleted(self, index): ... method panelReordered (line 38) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 39) | def updatePanels(self): ... class FileOutPostScriptsEditor (line 41) | class FileOutPostScriptsEditor(UI4.Widgets.SortablePanel.ParameterSortab... method __init__ (line 42) | def __init__(self, parent, policy, factory) -> None: ... method _FileOutPostScriptsEditor__portsUpdate (line 43) | def _FileOutPostScriptsEditor__portsUpdate(self): ... method _FileOutPostScriptsEditor__portsUpdateCB (line 44) | def _FileOutPostScriptsEditor__portsUpdateCB(self, args): ... method _FileOutPostScriptsEditor__renumberPanels (line 45) | def _FileOutPostScriptsEditor__renumberPanels(self): ... method _FileOutPostScriptsEditor__setupEventHandlers (line 46) | def _FileOutPostScriptsEditor__setupEventHandlers(self, enabled): ... method _freeze (line 47) | def _freeze(self): ... method _getPanelForPolicy (line 48) | def _getPanelForPolicy(self, vp): ... method _thaw (line 49) | def _thaw(self): ... method addPostScript (line 50) | def addPostScript(self): ... method buildAddMenu (line 51) | def buildAddMenu(self, menu): ... method panelDeleted (line 52) | def panelDeleted(self, index): ... method panelReordered (line 53) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 54) | def updatePanels(self): ... class FileOutRepPrefixFormWidget (line 56) | class FileOutRepPrefixFormWidget(StringFormWidget): method __init__ (line 57) | def __init__(self, *args) -> None: ... method _checkControlWidget (line 58) | def _checkControlWidget(self): ... method setIndex (line 59) | def setIndex(self, index): ... class FileOutRepPrefixHelp (line 61) | class FileOutRepPrefixHelp(QT4FormWidgets.InputWidgets.HelpFWidget): method __init__ (line 62) | def __init__(self, *args) -> None: ... method getHelpText (line 63) | def getHelpText(self): ... method getHelpType (line 64) | def getHelpType(self): ... method isHelpEnabled (line 65) | def isHelpEnabled(self): ... method setIndex (line 66) | def setIndex(self, index): ... class InputPanel (line 68) | class InputPanel(UI4.Widgets.SortablePanel.ParameterSortablePanel): method __init__ (line 69) | def __init__(self, parent, name, policy, factory) -> None: ... method _InputPanel__copyExpression (line 70) | def _InputPanel__copyExpression(self): ... method setIndex (line 71) | def setIndex(self, index): ... class PostScriptPanel (line 73) | class PostScriptPanel(UI4.Widgets.SortablePanel.ParameterSortablePanel): method __init__ (line 74) | def __init__(self, parent, name, policy, factory) -> None: ... method setIndex (line 75) | def setIndex(self, index): ... FILE: katana/stubs/UI4/FormMaster/Editors/FilterablePopupFWidget.pyi class FilterablePopupFWidget (line 12) | class FilterablePopupFWidget(FWidget): method __init__ (line 13) | def __init__(self, parent, pixmap: Incomplete | None = ...) -> None: ... method _FilterablePopupFWidget__popupHidden (line 14) | def _FilterablePopupFWidget__popupHidden(self): ... method _FilterablePopupFWidget__popupShow (line 15) | def _FilterablePopupFWidget__popupShow(self): ... method getPopup (line 16) | def getPopup(self): ... method mousePressEvent (line 17) | def mousePressEvent(self, event): ... method paint (line 18) | def paint(self, painter, width, height): ... method sizeHint (line 19) | def sizeHint(self): ... method updateFrame (line 20) | def updateFrame(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/FindingGroup.pyi class FindingGroupFormWidget (line 9) | class FindingGroupFormWidget(GroupFormWidget): method _buildLock (line 10) | def _buildLock(self, layout): ... method showFindPopup (line 11) | def showFindPopup(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/FloatRamp.pyi class FloatRampFormWidget (line 19) | class FloatRampFormWidget(UI4.FormMaster.Editors.BaseRamp.BaseRampFormWi... method __init__ (line 26) | def __init__(self, parent, policy, factory) -> None: ... method Fit (line 28) | def Fit(value, inmin, inmax, outmin, outmax): ... method _FloatRampFormWidget__on_interpMenu_aboutToShow (line 29) | def _FloatRampFormWidget__on_interpMenu_aboutToShow(self): ... method _FloatRampFormWidget__on_presetAction_triggered (line 30) | def _FloatRampFormWidget__on_presetAction_triggered(self): ... method _FloatRampFormWidget__positionPolicyEvent (line 31) | def _FloatRampFormWidget__positionPolicyEvent(self, valuePolicyEvent):... method _FloatRampFormWidget__updateUnderlyingParameters (line 32) | def _FloatRampFormWidget__updateUnderlyingParameters(self): ... method _FloatRampFormWidget__valuePolicyEvent (line 33) | def _FloatRampFormWidget__valuePolicyEvent(self, valuePolicyEvent): ... method _addControlWidgets (line 34) | def _addControlWidgets(self, knots: list[tuple], interpolator: str, in... method _lockChanged (line 35) | def _lockChanged(self, state: bool): ... method _updateControlWidgets (line 36) | def _updateControlWidgets(self, knots: list[tuple], interpolator: str)... method rampChanged (line 37) | def rampChanged(self, final: bool = ...): ... method selectCurve (line 38) | def selectCurve(self): ... method selectedKeyframes (line 39) | def selectedKeyframes(self) -> list[PyFCurve.Keyframe]: ... method updateInputWidgets (line 40) | def updateInputWidgets(self): ... class FloatRampWidget (line 42) | class FloatRampWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 43) | def __init__(self, knots, interp, minX, maxX, minY, maxY, parent: Inco... method contextMenuEvent (line 44) | def contextMenuEvent(self, e): ... method getCurves (line 45) | def getCurves(self): ... method getFcurve (line 46) | def getFcurve(self): ... method getGraphWidget (line 47) | def getGraphWidget(self): ... method getInterp (line 48) | def getInterp(self): ... method getKeyframes (line 49) | def getKeyframes(self): ... method replaceCurve (line 50) | def replaceCurve(self, knots: list[tuple]): ... method selectCurve (line 51) | def selectCurve(self): ... method setInterp (line 52) | def setInterp(self, value): ... class SelectionObserver (line 54) | class SelectionObserver(PyFCurve.SelectionObserver): method __init__ (line 55) | def __init__(self, parent) -> None: ... method deselected (line 56) | def deselected(self, obj: PyFCurve.FCurve | PyFCurve.Segment | PyFCurv... method selected (line 57) | def selected(self, obj: PyFCurve.FCurve | PyFCurve.Segment | PyFCurve.... class SimpleObserver (line 59) | class SimpleObserver(PyFCurve.FCurveObserver): method __init__ (line 60) | def __init__(self, parent) -> None: ... method endValueChange (line 61) | def endValueChange(self, curve): ... method intermediateValueChange (line 62) | def intermediateValueChange(self, curve): ... method setMuted (line 63) | def setMuted(self, muted): ... FILE: katana/stubs/UI4/FormMaster/Editors/Fork.pyi class ForkVariablesEditor (line 15) | class ForkVariablesEditor(UI4.Widgets.SortablePanel.SortablePanelFormWid... method __init__ (line 16) | def __init__(self, parent, policy, factory) -> None: ... method _ForkVariablesEditor__addNumberVariable (line 17) | def _ForkVariablesEditor__addNumberVariable(self): ... method _ForkVariablesEditor__addStringVariable (line 18) | def _ForkVariablesEditor__addStringVariable(self): ... method _ForkVariablesEditor__getNewVariableName (line 19) | def _ForkVariablesEditor__getNewVariableName(self, typeid): ... method _ForkVariablesEditor__getNode (line 20) | def _ForkVariablesEditor__getNode(self): ... method addOutput (line 21) | def addOutput(self): ... method buildAddMenu (line 22) | def buildAddMenu(self, menu): ... method deletePanel (line 23) | def deletePanel(self, index): ... method deleteVariable (line 24) | def deleteVariable(self, name): ... method panelDeleted (line 25) | def panelDeleted(self, index): ... method panelReordered (line 26) | def panelReordered(self, oldPos, newPos): ... method renameVariable (line 27) | def renameVariable(self, oldName, newName): ... method updatePanels (line 28) | def updatePanels(self): ... class OutputVariablePanel (line 30) | class OutputVariablePanel(UI4.Widgets.SortablePanel.SortablePanelBase): class _OutputVariablePanel__VariableWidget (line 31) | class _OutputVariablePanel__VariableWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 34) | def __init__(self, parent, policy, factory) -> None: ... method _VariableWidget__copyExpression (line 35) | def _VariableWidget__copyExpression(self): ... method _VariableWidget__deleteCallback (line 36) | def _VariableWidget__deleteCallback(self): ... method _VariableWidget__renameVariable (line 37) | def _VariableWidget__renameVariable(self): ... method getWidgetLabelWidth (line 38) | def getWidgetLabelWidth(self): ... method setWidgetLabelWidth (line 39) | def setWidgetLabelWidth(self, width): ... method __init__ (line 40) | def __init__(self, parent, name, policy, factory) -> None: ... method _OutputVariablePanel__deleteVariable (line 41) | def _OutputVariablePanel__deleteVariable(self, name): ... method _OutputVariablePanel__renameVariable (line 42) | def _OutputVariablePanel__renameVariable(self, name): ... FILE: katana/stubs/UI4/FormMaster/Editors/GradientEditors.pyi class GradientInputPanel (line 11) | class GradientInputPanel(UI4.Widgets.SortablePanel.ParameterSortablePanel): method __init__ (line 12) | def __init__(self, parent, name, policy, factory) -> None: ... method _GradientInputPanel__valueChangedCallback (line 13) | def _GradientInputPanel__valueChangedCallback(self): ... method getName (line 14) | def getName(self): ... class LinearGradientGroupFormWidget (line 16) | class LinearGradientGroupFormWidget(UI4.Widgets.SortablePanel.ParameterS... method __init__ (line 17) | def __init__(self, parent, policy, factory) -> None: ... method _getPanelForPolicy (line 18) | def _getPanelForPolicy(self, vp): ... method addPoint (line 19) | def addPoint(self): ... method buildAddMenu (line 20) | def buildAddMenu(self, menu): ... class SuperGradientFormWidget (line 22) | class SuperGradientFormWidget(UI4.Widgets.SortablePanel.ParameterSortabl... method __init__ (line 23) | def __init__(self, parent, policy, factory) -> None: ... method _getPanelForPolicy (line 24) | def _getPanelForPolicy(self, vp): ... method addPoint (line 25) | def addPoint(self): ... method buildAddMenu (line 26) | def buildAddMenu(self, menu): ... FILE: katana/stubs/UI4/FormMaster/Editors/GraphStateVariablesFormWidget.pyi class GraphStateVariablesFormWidget (line 8) | class GraphStateVariablesFormWidget(GroupFormWidget): method __init__ (line 9) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _GraphStateVariablesFormWidget__addVariable (line 10) | def _GraphStateVariablesFormWidget__addVariable(self): ... method _GraphStateVariablesFormWidget__deleteAllVariables (line 11) | def _GraphStateVariablesFormWidget__deleteAllVariables(self): ... method _GraphStateVariablesFormWidget__on_menuButton_menu (line 12) | def _GraphStateVariablesFormWidget__on_menuButton_menu(self, menu): ... method _lockChanged (line 13) | def _lockChanged(self, state): ... FILE: katana/stubs/UI4/FormMaster/Editors/GroupStack.pyi class FindButton (line 19) | class FindButton(FilterablePopupButton): method __init__ (line 22) | def __init__(self, icon, iconSize, *args) -> None: ... method _FindButton__aboutToShow (line 23) | def _FindButton__aboutToShow(self): ... method _FindButton__findFilterTypeCallback (line 24) | def _FindButton__findFilterTypeCallback(self, name, meta, matchstring)... method _FindButton__selectAllClicked (line 25) | def _FindButton__selectAllClicked(self): ... method _FindButton__setSelectButtonState (line 26) | def _FindButton__setSelectButtonState(self, state: bool = ...): ... class GroupStackFormWidget (line 28) | class GroupStackFormWidget(FormWidget): method __init__ (line 31) | def __init__(self, parent, policy, factory) -> None: ... method _GroupStackFormWidget__addButtonClicked (line 32) | def _GroupStackFormWidget__addButtonClicked(self): ... method _GroupStackFormWidget__addNodeMenuChosen (line 33) | def _GroupStackFormWidget__addNodeMenuChosen(self, name, meta): ... method _GroupStackFormWidget__buildParameterEditorForChildNode (line 34) | def _GroupStackFormWidget__buildParameterEditorForChildNode(self, widg... method _GroupStackFormWidget__clearParameterDisplayLayout (line 35) | def _GroupStackFormWidget__clearParameterDisplayLayout(self): ... method _GroupStackFormWidget__contextMenuRequestedCB (line 36) | def _GroupStackFormWidget__contextMenuRequestedCB(self, pos): ... method _GroupStackFormWidget__copySelectedEntries (line 37) | def _GroupStackFormWidget__copySelectedEntries(self): ... method _GroupStackFormWidget__cutSelectedEntries (line 38) | def _GroupStackFormWidget__cutSelectedEntries(self): ... method _GroupStackFormWidget__deleteSelectedEntries (line 39) | def _GroupStackFormWidget__deleteSelectedEntries(self): ... method _GroupStackFormWidget__duplicateSelectedEntries (line 40) | def _GroupStackFormWidget__duplicateSelectedEntries(self): ... method _GroupStackFormWidget__editSelected (line 41) | def _GroupStackFormWidget__editSelected(self): ... method _GroupStackFormWidget__findItemChosen (line 42) | def _GroupStackFormWidget__findItemChosen(self, nodeName, meta: Incomp... method _GroupStackFormWidget__findPopupAboutToShow (line 43) | def _GroupStackFormWidget__findPopupAboutToShow(self): ... method _GroupStackFormWidget__findPopupSelectAllClicked (line 44) | def _GroupStackFormWidget__findPopupSelectAllClicked(self, nodeNames, ... method _GroupStackFormWidget__freezeToggled (line 45) | def _GroupStackFormWidget__freezeToggled(self, state): ... method _GroupStackFormWidget__getNode (line 46) | def _GroupStackFormWidget__getNode(self): ... method _GroupStackFormWidget__idle_callback (line 47) | def _GroupStackFormWidget__idle_callback(self, *args, **kwargs): ... method _GroupStackFormWidget__itemSelectionChangedCB (line 48) | def _GroupStackFormWidget__itemSelectionChangedCB(self): ... method _GroupStackFormWidget__node_setByPassedCB (line 49) | def _GroupStackFormWidget__node_setByPassedCB(self, eventType, eventID... method _GroupStackFormWidget__node_setColorCB (line 50) | def _GroupStackFormWidget__node_setColorCB(self, eventType, eventID, *... method _GroupStackFormWidget__node_setName (line 51) | def _GroupStackFormWidget__node_setName(self, eventType, eventID, **kw... method _GroupStackFormWidget__node_setParentCB (line 52) | def _GroupStackFormWidget__node_setParentCB(self, eventType, eventID, ... method _GroupStackFormWidget__parameter_finalizeValueCB (line 53) | def _GroupStackFormWidget__parameter_finalizeValueCB(self, eventType, ... method _GroupStackFormWidget__pasteEntries (line 54) | def _GroupStackFormWidget__pasteEntries(self): ... method _GroupStackFormWidget__port_disconnectCB (line 55) | def _GroupStackFormWidget__port_disconnectCB(self, eventType, eventID,... method _GroupStackFormWidget__reapEditorCache (line 56) | def _GroupStackFormWidget__reapEditorCache(self): ... method _GroupStackFormWidget__rebuildParameterEditorForChildNode (line 57) | def _GroupStackFormWidget__rebuildParameterEditorForChildNode(self, ch... method _GroupStackFormWidget__reorderItemsCallback (line 58) | def _GroupStackFormWidget__reorderItemsCallback(self, indexList, toInd... method _GroupStackFormWidget__setDisplayOfChildType (line 59) | def _GroupStackFormWidget__setDisplayOfChildType(self, childType): ... method _GroupStackFormWidget__setupEventHandlers (line 60) | def _GroupStackFormWidget__setupEventHandlers(self, active): ... method _GroupStackFormWidget__stackListAboutToDragCallback (line 61) | def _GroupStackFormWidget__stackListAboutToDragCallback(self, items, d... method _GroupStackFormWidget__stackListDragEnterEventCallback (line 62) | def _GroupStackFormWidget__stackListDragEnterEventCallback(self, event... method _GroupStackFormWidget__stackListDragMoveEventCallback (line 63) | def _GroupStackFormWidget__stackListDragMoveEventCallback(self, event)... method _GroupStackFormWidget__stackListDropEventCallback (line 64) | def _GroupStackFormWidget__stackListDropEventCallback(self, event, toI... method _GroupStackFormWidget__stackListKeyPressCallback (line 65) | def _GroupStackFormWidget__stackListKeyPressCallback(self, event): ... method _GroupStackFormWidget__tearoffSelectedEntries (line 66) | def _GroupStackFormWidget__tearoffSelectedEntries(self): ... method _GroupStackFormWidget__toggleIgnoreOfSelectedEntries (line 67) | def _GroupStackFormWidget__toggleIgnoreOfSelectedEntries(self): ... method _GroupStackFormWidget__updateListContents (line 68) | def _GroupStackFormWidget__updateListContents(self): ... method _GroupStackFormWidget__updateListState (line 69) | def _GroupStackFormWidget__updateListState(self): ... method _GroupStackFormWidget__viewContentsOfGroup (line 70) | def _GroupStackFormWidget__viewContentsOfGroup(self): ... method _GroupStackFormWidget__viewSelected (line 71) | def _GroupStackFormWidget__viewSelected(self): ... method _buildTopAreaLayout (line 72) | def _buildTopAreaLayout(self, layout): ... method _freeze (line 73) | def _freeze(self): ... method _getDisplayNameForChildNode (line 74) | def _getDisplayNameForChildNode(self, child): ... method _getRootParameterPolicyForChildNode (line 75) | def _getRootParameterPolicyForChildNode(self, childNode): ... method _lockChanged (line 76) | def _lockChanged(self, state: bool): ... method _thaw (line 77) | def _thaw(self): ... method event (line 78) | def event(self, event): ... method getSelectedNodes (line 79) | def getSelectedNodes(self): ... method isLiveGroupStack (line 80) | def isLiveGroupStack(self): ... method resizeEvent (line 81) | def resizeEvent(self, event): ... class LookThroughGroupStackFormWidget (line 83) | class LookThroughGroupStackFormWidget(GroupStackFormWidget): method _getDisplayNameForChildNode (line 84) | def _getDisplayNameForChildNode(self, child): ... method _getRootParameterPolicyForChildNode (line 85) | def _getRootParameterPolicyForChildNode(self, childNode): ... FILE: katana/stubs/UI4/FormMaster/Editors/HideTitleGroup.pyi class HideTitleGroupFormWidget (line 10) | class HideTitleGroupFormWidget(GroupFormWidget): method __init__ (line 11) | def __init__(self, parent, policy, factory) -> None: ... method _buildTopAreaLayout (line 12) | def _buildTopAreaLayout(self, layout): ... method hideTitle (line 13) | def hideTitle(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/HierarchyCreate.pyi class HierarchyCreateFormWidget (line 19) | class HierarchyCreateFormWidget(FormWidget): method __init__ (line 21) | def __init__(self, parent, policy, factory) -> None: ... method _HierarchyCreateFormWidget__aboutToDragCallback (line 22) | def _HierarchyCreateFormWidget__aboutToDragCallback(self, items, dragO... method _HierarchyCreateFormWidget__actionMenuAboutToShow (line 23) | def _HierarchyCreateFormWidget__actionMenuAboutToShow(self): ... method _HierarchyCreateFormWidget__addChildLocation (line 24) | def _HierarchyCreateFormWidget__addChildLocation(self): ... method _HierarchyCreateFormWidget__buildLocation (line 25) | def _HierarchyCreateFormWidget__buildLocation(self, entry, parent, ope... method _HierarchyCreateFormWidget__callLocationRenamedCallback (line 26) | def _HierarchyCreateFormWidget__callLocationRenamedCallback(self, path... method _HierarchyCreateFormWidget__dragMoveEventCallback (line 27) | def _HierarchyCreateFormWidget__dragMoveEventCallback(self, event, par... method _HierarchyCreateFormWidget__dropEventCallback (line 28) | def _HierarchyCreateFormWidget__dropEventCallback(self, event, parent,... method _HierarchyCreateFormWidget__fillMenu (line 29) | def _HierarchyCreateFormWidget__fillMenu(self, menu): ... method _HierarchyCreateFormWidget__itemEdited (line 30) | def _HierarchyCreateFormWidget__itemEdited(self, item, column, value: ... method _HierarchyCreateFormWidget__itemExpanded (line 31) | def _HierarchyCreateFormWidget__itemExpanded(self, item): ... method _HierarchyCreateFormWidget__keyPressEvent (line 32) | def _HierarchyCreateFormWidget__keyPressEvent(self, event): ... method _HierarchyCreateFormWidget__parameterEvents (line 33) | def _HierarchyCreateFormWidget__parameterEvents(self, args): ... method _HierarchyCreateFormWidget__reduceDragItems (line 34) | def _HierarchyCreateFormWidget__reduceDragItems(self): ... method _HierarchyCreateFormWidget__reduceSelection (line 35) | def _HierarchyCreateFormWidget__reduceSelection(self, selectedItems: I... method _HierarchyCreateFormWidget__selectionChanged (line 36) | def _HierarchyCreateFormWidget__selectionChanged(self): ... method _HierarchyCreateFormWidget__setupEventHandlers (line 37) | def _HierarchyCreateFormWidget__setupEventHandlers(self, active): ... method _HierarchyCreateFormWidget__treeMousePressEvent (line 38) | def _HierarchyCreateFormWidget__treeMousePressEvent(self, event): ... method _HierarchyCreateFormWidget__updateList (line 39) | def _HierarchyCreateFormWidget__updateList(self, startingAt: Incomplet... method _buildTopAreaLayout (line 40) | def _buildTopAreaLayout(self, layout): ... method _freeze (line 41) | def _freeze(self): ... method _thaw (line 42) | def _thaw(self): ... method addPreselectedPaths (line 43) | def addPreselectedPaths(self, path): ... method getActiveItems (line 44) | def getActiveItems(self): ... method getDelegate (line 45) | def getDelegate(self): ... method getNode (line 46) | def getNode(self) -> NodegraphAPI.Node: ... method getToolbar (line 47) | def getToolbar(self): ... method getToolbarCenterLayout (line 48) | def getToolbarCenterLayout(self): ... method getToolbarLeftLayout (line 49) | def getToolbarLeftLayout(self): ... method getToolbarRightLayout (line 50) | def getToolbarRightLayout(self): ... method getTree (line 51) | def getTree(self): ... method isItemColumnEditable (line 52) | def isItemColumnEditable(self, item, column): ... method setDelegate (line 53) | def setDelegate(self, delegate): ... method setLocationRenamedCallback (line 54) | def setLocationRenamedCallback(self, callback): ... method updateList (line 55) | def updateList(self): ... class HierarchyCreateListItemDelegate (line 57) | class HierarchyCreateListItemDelegate(QT4Widgets.SortableTreeWidget.Sort... method createEditor (line 59) | def createEditor(self, parent, option, index): ... method getFormWidgetDelegate (line 60) | def getFormWidgetDelegate(self): ... method getFormWidgetParent (line 61) | def getFormWidgetParent(self): ... method paint (line 62) | def paint(self, painter, option, index): ... method setModelData (line 63) | def setModelData(self, editor, model, index): ... FILE: katana/stubs/UI4/FormMaster/Editors/HintedFilterablePopupFormWidget.pyi class HintedFilterablePopupFormWidget (line 14) | class HintedFilterablePopupFormWidget(FilterablePopupFormWidget): class ControlComboBox (line 15) | class ControlComboBox(QT4FormWidgets.InputWidgets.InputComboBox): method __init__ (line 16) | def __init__(self, parent: QT4FormWidgets.FormWidget) -> None: ... method _ControlComboBox__on_editingFinished (line 17) | def _ControlComboBox__on_editingFinished(self): ... method _ControlComboBox__on_filterPopup_hide (line 18) | def _ControlComboBox__on_filterPopup_hide(self): ... method _ControlComboBox__on_filterPopup_itemChosen (line 19) | def _ControlComboBox__on_filterPopup_itemChosen(self, text, meta): ... method _ControlComboBox__on_filterPopup_show (line 20) | def _ControlComboBox__on_filterPopup_show(self): ... method keyPressEvent (line 21) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method setEditable (line 22) | def setEditable(self, editable: bool): ... method showPopup (line 23) | def showPopup(self): ... class Popup (line 25) | class Popup(Popup): method _refreshContents (line 26) | def _refreshContents(self): ... method _selectCurrentValue (line 27) | def _selectCurrentValue(self): ... method refresh (line 28) | def refresh(self, force: bool = ...): ... method __init__ (line 29) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _buildControlWidget (line 30) | def _buildControlWidget(self, layout): ... method _buildLabel (line 31) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildPopupWindow (line 32) | def _buildPopupWindow(self): ... method _lockChanged (line 33) | def _lockChanged(self, state): ... method _updateControlWidget (line 34) | def _updateControlWidget(self): ... method dragEnterEvent (line 35) | def dragEnterEvent(self, event): ... method dropEvent (line 36) | def dropEvent(self, event): ... method getComboBox (line 37) | def getComboBox(self) -> PyQt5.QtWidgets.QComboBox: ... FILE: katana/stubs/UI4/FormMaster/Editors/HomogeneousTransform.pyi class HomogeneousTransformEditor (line 18) | class HomogeneousTransformEditor(GroupFormWidget): method __init__ (line 19) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _HomogeneousTransformEditor__assignTransform (line 20) | def _HomogeneousTransformEditor__assignTransform(self, matrix): ... method _HomogeneousTransformEditor__assignTranslation (line 21) | def _HomogeneousTransformEditor__assignTranslation(self, matrix): ... method _HomogeneousTransformEditor__copyLocal (line 22) | def _HomogeneousTransformEditor__copyLocal(self): ... method _HomogeneousTransformEditor__copyWorld (line 23) | def _HomogeneousTransformEditor__copyWorld(self): ... method _HomogeneousTransformEditor__fitBounds (line 24) | def _HomogeneousTransformEditor__fitBounds(self): ... method _HomogeneousTransformEditor__getLocationPath (line 25) | def _HomogeneousTransformEditor__getLocationPath(self): ... method _HomogeneousTransformEditor__getLocationProducer (line 26) | def _HomogeneousTransformEditor__getLocationProducer(self): ... method _HomogeneousTransformEditor__hasInputProducer (line 27) | def _HomogeneousTransformEditor__hasInputProducer(self): ... method _HomogeneousTransformEditor__registerToCamera (line 28) | def _HomogeneousTransformEditor__registerToCamera(self): ... method _HomogeneousTransformEditor__resetTransform (line 29) | def _HomogeneousTransformEditor__resetTransform(self): ... method _HomogeneousTransformEditor__snapToWorldPos (line 30) | def _HomogeneousTransformEditor__snapToWorldPos(self): ... method _HomogeneousTransformEditor__toolsAboutToShow (line 31) | def _HomogeneousTransformEditor__toolsAboutToShow(self, menu): ... method _lockChanged (line 32) | def _lockChanged(self, state): ... method getHilightWidgets (line 33) | def getHilightWidgets(self): ... class _registerPlaneDialog (line 35) | class _registerPlaneDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 36) | def __init__(self, parent, applyFunction, distance, planeType) -> None... method accept_CB (line 37) | def accept_CB(self): ... method apply_CB (line 38) | def apply_CB(self): ... method getResult (line 39) | def getResult(self): ... method reject_CB (line 40) | def reject_CB(self): ... method sizeHint (line 41) | def sizeHint(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/HtmlEditorWidget.pyi class HtmlEditorFormWidget (line 12) | class HtmlEditorFormWidget(FormWidget): method __init__ (line 13) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _HtmlEditorFormWidget__expressionChanged (line 14) | def _HtmlEditorFormWidget__expressionChanged(self): ... method _HtmlEditorFormWidget__toggleExpressionState (line 15) | def _HtmlEditorFormWidget__toggleExpressionState(self): ... method _HtmlEditorFormWidget__valueChanged (line 16) | def _HtmlEditorFormWidget__valueChanged(self, event): ... method _freeze (line 17) | def _freeze(self): ... method _lockChanged (line 18) | def _lockChanged(self, value): ... method _thaw (line 19) | def _thaw(self): ... method cleanupError (line 20) | def cleanupError(self, error): ... method doReturnPressed (line 21) | def doReturnPressed(self): ... method generateMenu (line 22) | def generateMenu(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/InterwovenArrayGroup.pyi class InterwovenArrayGroupEditor (line 10) | class InterwovenArrayGroupEditor(UI4.FormMaster.Editors.SortableArray.So... method __init__ (line 11) | def __init__(self, parent, policy, factory) -> None: ... method _InterwovenArrayGroupEditor__childValueChanged (line 12) | def _InterwovenArrayGroupEditor__childValueChanged(self, event): ... method _InterwovenArrayGroupEditor__idle_callback (line 13) | def _InterwovenArrayGroupEditor__idle_callback(self, *args, **kwds): ... method _InterwovenArrayGroupEditor__update (line 14) | def _InterwovenArrayGroupEditor__update(self): ... method _freeze (line 15) | def _freeze(self): ... method _thaw (line 16) | def _thaw(self): ... method newEntry (line 17) | def newEntry(self): ... method panelDeleted (line 18) | def panelDeleted(self, index): ... method panelReordered (line 19) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 20) | def updatePanels(self): ... class InterwovenArrayPanel (line 22) | class InterwovenArrayPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 23) | def __init__(self, parent, policies, factory) -> None: ... FILE: katana/stubs/UI4/FormMaster/Editors/Isolate.pyi class IsolateNodeEditor (line 10) | class IsolateNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormWi... method __init__ (line 11) | def __init__(self, parent, policy, factory) -> None: ... method _IsolateNodeEditor__checkBox_CB (line 12) | def _IsolateNodeEditor__checkBox_CB(self): ... method _IsolateNodeEditor__portChangedCB (line 13) | def _IsolateNodeEditor__portChangedCB(self, eventType, eventID, **kwar... method _IsolateNodeEditor__setupEvents (line 14) | def _IsolateNodeEditor__setupEvents(self, flag): ... method _IsolateNodeEditor__update (line 15) | def _IsolateNodeEditor__update(self): ... method _freeze (line 16) | def _freeze(self): ... method _thaw (line 17) | def _thaw(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/KatanaColor.pyi class ColorspacePopup (line 13) | class ColorspacePopup(PopupFormWidget): method __init__ (line 14) | def __init__(self, parent, policy, factory) -> None: ... method _ColorspacePopup__updateInfo (line 15) | def _ColorspacePopup__updateInfo(self): ... method _ColorspacePopup__valueChanged (line 16) | def _ColorspacePopup__valueChanged(self, event): ... method _freeze (line 17) | def _freeze(self): ... method _thaw (line 18) | def _thaw(self): ... class KatanaColorFormWidget (line 20) | class KatanaColorFormWidget(ColorFormWidget): method __init__ (line 21) | def __init__(self, parent, policy, factory) -> None: ... method _KatanaColorFormWidget__probeResult_CB (line 22) | def _KatanaColorFormWidget__probeResult_CB(self, probeInfo): ... method _buildAdditionalControlWidgets (line 23) | def _buildAdditionalControlWidgets(self, layout): ... method colorChange (line 24) | def colorChange(self, color): ... method execColorPicker (line 25) | def execColorPicker(self): ... method setColor_RGBA (line 26) | def setColor_RGBA(self, color, final: bool = ...): ... FILE: katana/stubs/UI4/FormMaster/Editors/KeyboardShortcutFormWidget.pyi class KeyboardShortcutFormWidget (line 13) | class KeyboardShortcutFormWidget(BaseValueFormWidget): method __init__ (line 15) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _KeyboardShortcutFormWidget__on_keyboardShortcutLineEdit_textChanged (line 16) | def _KeyboardShortcutFormWidget__on_keyboardShortcutLineEdit_textChang... method _buildControlWidget (line 17) | def _buildControlWidget(self, layout: PyQt5.QtWidgets.QLayout) -> PyQt... method _updateControlWidget (line 18) | def _updateControlWidget(self): ... method setReadOnly (line 19) | def setReadOnly(self, readOnly: bool): ... FILE: katana/stubs/UI4/FormMaster/Editors/LODInput.pyi class InputPanel (line 10) | class InputPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 11) | def __init__(self, parent, name, policy, factory) -> None: ... class LODInputEditor (line 13) | class LODInputEditor(UI4.Widgets.SortablePanel.SortablePanelFormWidget): method __init__ (line 14) | def __init__(self, parent, policy, factory) -> None: ... method addInput (line 15) | def addInput(self): ... method buildAddMenu (line 16) | def buildAddMenu(self, menu): ... method deleteInput (line 17) | def deleteInput(self, index): ... method deletePanel (line 18) | def deletePanel(self, index): ... method panelReordered (line 19) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 20) | def updatePanels(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/Layers/LayerWithTransform.pyi class LayerWithTransform (line 9) | class LayerWithTransform: method __init__ (line 11) | def __init__(self, node: NodegraphAPI.Node) -> None: ... method _LayerWithTransform__freeze (line 12) | def _LayerWithTransform__freeze(self): ... method _LayerWithTransform__setupEventHandlers (line 13) | def _LayerWithTransform__setupEventHandlers(self, enabled): ... method _LayerWithTransform__thaw (line 14) | def _LayerWithTransform__thaw(self): ... method _LayerWithTransform__transformPoint (line 15) | def _LayerWithTransform__transformPoint(self, matrix, point2D): ... method _LayerWithTransform__updateEditToMonitorTransform (line 16) | def _LayerWithTransform__updateEditToMonitorTransform(self): ... method _LayerWithTransform__updateEditTransformCallback (line 17) | def _LayerWithTransform__updateEditTransformCallback(self, args): ... method applyWorldSpace (line 18) | def applyWorldSpace(self): ... method applyWorldSpaceWithDropShadow (line 19) | def applyWorldSpaceWithDropShadow(self, screendx: float = ..., screend... method editTransformHasError (line 20) | def editTransformHasError(self): ... method getEditTransformErrorMessage (line 21) | def getEditTransformErrorMessage(self): ... method getNode (line 22) | def getNode(self) -> NodegraphAPI.Node: ... method getViewScale (line 23) | def getViewScale(self): ... method mapFromQTLocalToWorld (line 24) | def mapFromQTLocalToWorld(self, qtLocalX, qtLocalY): ... method mapFromWindowToWorld (line 25) | def mapFromWindowToWorld(self, winX, winY): ... method mapFromWorldToQTLocal (line 26) | def mapFromWorldToQTLocal(self, layerX, layerY): ... method mapFromWorldToWindow (line 27) | def mapFromWorldToWindow(self, layerX, layerY): ... method updateEditTransform (line 28) | def updateEditTransform(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/Layers/PolicyHelpers.pyi function GetPolicyState (line 15) | def GetPolicyState(valuePolicy): ... function GetPolicyStateColor (line 16) | def GetPolicyStateColor(state: Incomplete | None = ...): ... FILE: katana/stubs/UI4/FormMaster/Editors/Layers/Reposition.pyi class RepositionManipLayer (line 8) | class RepositionManipLayer(UI4.FormMaster.Editors.Layers.Transform2D.Tra... method __init__ (line 9) | def __init__(self, valuePolicy, *args, **kwargs) -> None: ... method getTranslate (line 10) | def getTranslate(self): ... method hasRotate (line 11) | def hasRotate(self): ... method hasScale (line 12) | def hasScale(self, horizontal): ... method hasTranslate (line 13) | def hasTranslate(self, horizontal): ... method setTranslate (line 14) | def setTranslate(self, value, final): ... method translateIsExpressioned (line 15) | def translateIsExpressioned(self, horizontal): ... method translateIsLocked (line 16) | def translateIsLocked(self, horizontal): ... FILE: katana/stubs/UI4/FormMaster/Editors/Layers/Transform2D.pyi class Transform2DManipLayer (line 15) | class Transform2DManipLayer(LayerWithTransform, UI4.Util.TransformManipu... method __init__ (line 16) | def __init__(self, valuePolicy) -> None: ... method _Transform2DManipLayer__paintBounds (line 17) | def _Transform2DManipLayer__paintBounds(self): ... method _Transform2DManipLayer__portConnectionChanged (line 18) | def _Transform2DManipLayer__portConnectionChanged(self, args): ... method _Transform2DManipLayer__updateAspectRatio (line 19) | def _Transform2DManipLayer__updateAspectRatio(self): ... method _Transform2DManipLayer__updateBounds (line 20) | def _Transform2DManipLayer__updateBounds(self): ... method _Transform2DManipLayer__updateInvert (line 21) | def _Transform2DManipLayer__updateInvert(self): ... method _Transform2DManipLayer__updateOrder (line 22) | def _Transform2DManipLayer__updateOrder(self): ... method _getComponentMatrix (line 23) | def _getComponentMatrix(self, component, toPivot, fromPivot): ... method _paramValueChanged (line 24) | def _paramValueChanged(self, args): ... method paintGL (line 25) | def paintGL(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/LocationEditor.pyi class LocationEditorFormWidget (line 22) | class LocationEditorFormWidget(UI4.Widgets.SortablePanel.SortablePanelFo... method __init__ (line 23) | def __init__(self, parent, policy, factory) -> None: ... method _LocationEditorFormWidget__addMenuCallback (line 24) | def _LocationEditorFormWidget__addMenuCallback(self, actionText): ... method _LocationEditorFormWidget__addParameterExpressions (line 25) | def _LocationEditorFormWidget__addParameterExpressions(self, paths): ... method _LocationEditorFormWidget__addPathEntry (line 26) | def _LocationEditorFormWidget__addPathEntry(self, element, value): ... method _LocationEditorFormWidget__appendNodegraphSelection (line 27) | def _LocationEditorFormWidget__appendNodegraphSelection(self): ... method _LocationEditorFormWidget__appendNodegraphSelectionReferences (line 28) | def _LocationEditorFormWidget__appendNodegraphSelectionReferences(self... method _LocationEditorFormWidget__appendScenegraphSelection (line 29) | def _LocationEditorFormWidget__appendScenegraphSelection(self): ... method _LocationEditorFormWidget__clearAll (line 30) | def _LocationEditorFormWidget__clearAll(self): ... method _LocationEditorFormWidget__clearPanels (line 31) | def _LocationEditorFormWidget__clearPanels(self, clearParameters: bool... method _LocationEditorFormWidget__createExpressionPanel (line 32) | def _LocationEditorFormWidget__createExpressionPanel(self, policyNumbe... method _LocationEditorFormWidget__createPathsPanel (line 33) | def _LocationEditorFormWidget__createPathsPanel(self, entry: Incomplet... method _LocationEditorFormWidget__getPathsPanel (line 34) | def _LocationEditorFormWidget__getPathsPanel(self, createIfDoesNotExis... method _LocationEditorFormWidget__getValidDroppedNodes (line 35) | def _LocationEditorFormWidget__getValidDroppedNodes(self, mimeData): ... method _LocationEditorFormWidget__removePathsPanelIfExists (line 36) | def _LocationEditorFormWidget__removePathsPanelIfExists(self): ... method _LocationEditorFormWidget__replaceNodegraphSelection (line 37) | def _LocationEditorFormWidget__replaceNodegraphSelection(self): ... method _LocationEditorFormWidget__replaceNodegraphSelectionReferences (line 38) | def _LocationEditorFormWidget__replaceNodegraphSelectionReferences(sel... method _LocationEditorFormWidget__replaceWithScenegraphSelection (line 39) | def _LocationEditorFormWidget__replaceWithScenegraphSelection(self): ... method _LocationEditorFormWidget__updateExpressionPanelIndices (line 40) | def _LocationEditorFormWidget__updateExpressionPanelIndices(self): ... method _LocationEditorFormWidget__updateGroupTitle (line 41) | def _LocationEditorFormWidget__updateGroupTitle(self): ... method _participatesInLabelAlignment (line 42) | def _participatesInLabelAlignment(self): ... method addButtonCheckDragEvent (line 43) | def addButtonCheckDragEvent(self, event): ... method addButtonDropEvent (line 44) | def addButtonDropEvent(self, event): ... method buildAddMenu (line 45) | def buildAddMenu(self, menu): ... method event (line 46) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method getScenegraphLocationContext (line 47) | def getScenegraphLocationContext(self): ... method getScenegraphSelection (line 48) | def getScenegraphSelection(self): ... method panelDeleted (line 49) | def panelDeleted(self, index): ... method panelReordered (line 50) | def panelReordered(self, oldPos, newPos): ... method panelValueChanged (line 51) | def panelValueChanged(self, index): ... method updatePanels (line 52) | def updatePanels(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/LookFileBake.pyi class InputPanel (line 29) | class InputPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 30) | def __init__(self, parent, name) -> None: ... method _InputPanel__valueChangedCallback (line 31) | def _InputPanel__valueChangedCallback(self): ... method getPassName (line 32) | def getPassName(self): ... method setPassName (line 33) | def setPassName(self, name): ... class LookFileAssetSaveDialog (line 35) | class LookFileAssetSaveDialog(UI4.Util.AssetId.BrowseForAssetDialog): method __init__ (line 36) | def __init__(self, parent, hints, node: NodegraphAPI.Node) -> None: ... class LookFileBakeEditor (line 38) | class LookFileBakeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormW... class InterruptionException (line 39) | class InterruptionException(Exception): ... method __init__ (line 40) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _LookFileBakeEditor__findInstancesBeneathSelection (line 41) | def _LookFileBakeEditor__findInstancesBeneathSelection(self): ... method _LookFileBakeEditor__interruptCallback (line 42) | def _LookFileBakeEditor__interruptCallback(self): ... method _LookFileBakeEditor__locationsMenuAboutToShow (line 43) | def _LookFileBakeEditor__locationsMenuAboutToShow(self, menu): ... method _LookFileBakeEditor__productChanged (line 44) | def _LookFileBakeEditor__productChanged(self, event): ... method _LookFileBakeEditor__progressCallback (line 45) | def _LookFileBakeEditor__progressCallback(self, message: Incomplete | ... method _LookFileBakeEditor__validityChanged (line 46) | def _LookFileBakeEditor__validityChanged(self, valid): ... method _LookFileBakeEditor__writeCallback (line 47) | def _LookFileBakeEditor__writeCallback(self): ... method _freeze (line 48) | def _freeze(self): ... method _thaw (line 49) | def _thaw(self): ... class LookFileBakeMultipassInputEditor (line 51) | class LookFileBakeMultipassInputEditor(UI4.Widgets.SortablePanel.Sortabl... method __init__ (line 52) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _LookFileBakeMultipassInputEditor__getEventTarget (line 53) | def _LookFileBakeMultipassInputEditor__getEventTarget(self): ... method _LookFileBakeMultipassInputEditor__getNode (line 54) | def _LookFileBakeMultipassInputEditor__getNode(self): ... method _LookFileBakeMultipassInputEditor__idle_callback (line 55) | def _LookFileBakeMultipassInputEditor__idle_callback(self, *args, **kw... method _LookFileBakeMultipassInputEditor__node_addOrRemoveInputPort_cb (line 56) | def _LookFileBakeMultipassInputEditor__node_addOrRemoveInputPort_cb(se... method addInput (line 57) | def addInput(self): ... method buildAddMenu (line 58) | def buildAddMenu(self, menu): ... method deleteInput (line 59) | def deleteInput(self, index): ... method deletePanel (line 60) | def deletePanel(self, index): ... method panelReordered (line 61) | def panelReordered(self, oldPos, newPos): ... method panelValueChanged (line 62) | def panelValueChanged(self, index): ... method renameInput (line 63) | def renameInput(self, index, newName): ... method valueChanged (line 64) | def valueChanged(self, valuePolicy, index, final): ... class LookFileMaterialsOutEditor (line 66) | class LookFileMaterialsOutEditor(UI4.FormMaster.Editors.NodeGroup.NodeGr... class InterruptionException (line 67) | class InterruptionException(Exception): ... method __init__ (line 68) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _LookFileMaterialsOutEditor__interruptCallback (line 69) | def _LookFileMaterialsOutEditor__interruptCallback(self): ... method _LookFileMaterialsOutEditor__progressCallback (line 70) | def _LookFileMaterialsOutEditor__progressCallback(self, message: Incom... method _LookFileMaterialsOutEditor__writeCallback (line 71) | def _LookFileMaterialsOutEditor__writeCallback(self): ... class LookFileResolveEditor (line 73) | class LookFileResolveEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFo... method __init__ (line 74) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _LookFileResolveEditor__flushCallback (line 75) | def _LookFileResolveEditor__flushCallback(self): ... class LookFileRootResolveEditor (line 77) | class LookFileRootResolveEditor(UI4.FormMaster.Editors.NodeGroup.NodeGro... method __init__ (line 78) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _LookFileRootResolveEditor__flushCallback (line 79) | def _LookFileRootResolveEditor__flushCallback(self): ... class SceneSearchDialog (line 81) | class SceneSearchDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 86) | def __init__(self, node: NodegraphAPI.Node, mode) -> None: ... method _SceneSearchDialog__appendButtonCB (line 87) | def _SceneSearchDialog__appendButtonCB(self): ... method _SceneSearchDialog__checkInterrupt (line 88) | def _SceneSearchDialog__checkInterrupt(self, path: str = ...): ... method _SceneSearchDialog__filterFieldUpdate (line 89) | def _SceneSearchDialog__filterFieldUpdate(self, filterText, filterType... method _SceneSearchDialog__findDerivedComponentSource (line 90) | def _SceneSearchDialog__findDerivedComponentSource(self, spref): ... method _SceneSearchDialog__findScenegraphSelectionRoots (line 91) | def _SceneSearchDialog__findScenegraphSelectionRoots(self): ... method _SceneSearchDialog__getExistingPaths (line 92) | def _SceneSearchDialog__getExistingPaths(self): ... method _SceneSearchDialog__getUniqueVisibleLocations (line 93) | def _SceneSearchDialog__getUniqueVisibleLocations(self): ... method _SceneSearchDialog__getUniqueVisibleLocationsNotInExistingPaths (line 94) | def _SceneSearchDialog__getUniqueVisibleLocationsNotInExistingPaths(se... method _SceneSearchDialog__interrupt (line 95) | def _SceneSearchDialog__interrupt(self): ... method _SceneSearchDialog__replaceButtonCB (line 96) | def _SceneSearchDialog__replaceButtonCB(self): ... method _SceneSearchDialog__startFind (line 97) | def _SceneSearchDialog__startFind(self): ... method _SceneSearchDialog__walkLocation (line 98) | def _SceneSearchDialog__walkLocation(self, producer: PyFnGeolibProduce... method showEvent (line 99) | def showEvent(self, ev): ... class _InterruptException (line 101) | class _InterruptException(RuntimeError): ... FILE: katana/stubs/UI4/FormMaster/Editors/LookFileMaterialPopup.pyi class LookFileMaterialPopupFormWidget (line 12) | class LookFileMaterialPopupFormWidget(FilterablePopupFormWidget): method __init__ (line 13) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _buildControlWidget (line 14) | def _buildControlWidget(self, layout): ... method _buildLabel (line 15) | def _buildLabel(self, labelText, pos: int = ...): ... method _lockChanged (line 16) | def _lockChanged(self, state): ... method _updateControlWidget (line 17) | def _updateControlWidget(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/LookFilePassname.pyi class LookFilePassname (line 14) | class LookFilePassname(StringFormWidget): method __init__ (line 15) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _LookFilePassname__chooseLookFilePassFromProduct (line 16) | def _LookFilePassname__chooseLookFilePassFromProduct(self): ... method _LookFilePassname__chooseLookFilePassFromSelection (line 17) | def _LookFilePassname__chooseLookFilePassFromSelection(self): ... method _LookFilePassname__menuAboutToShow (line 18) | def _LookFilePassname__menuAboutToShow(self, menu): ... method _buildControlWidget (line 19) | def _buildControlWidget(self, layout): ... method askForPassAndSetIt (line 20) | def askForPassAndSetIt(self, passes): ... method generateMenu (line 21) | def generateMenu(self): ... method getLookFilePassesFromProduct (line 22) | def getLookFilePassesFromProduct(self): ... method getLookFilePassesFromSelection (line 23) | def getLookFilePassesFromSelection(self): ... method getProductParam (line 24) | def getProductParam(self): ... method getProductValue (line 25) | def getProductValue(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/ManipulatorGroup.pyi class ManipulatorGroupFormWidget (line 8) | class ManipulatorGroupFormWidget(GroupFormWidget): method __init__ (line 9) | def __init__(self, parent, policy, factory) -> None: ... FILE: katana/stubs/UI4/FormMaster/Editors/MaterialStack.pyi class ChildMaskPolicy (line 27) | class ChildMaskPolicy(QT4FormWidgets.ValuePolicy.ValuePolicyProxy): method __init__ (line 28) | def __init__(self, policy, childIncludeSet) -> None: ... method getChildByName (line 29) | def getChildByName(self, name): ... method getChildren (line 30) | def getChildren(self): ... method getWidgetHints (line 31) | def getWidgetHints(self): ... class LookFileInNodePanel (line 33) | class LookFileInNodePanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 37) | def __init__(self, parent, node: NodegraphAPI.Node, factory) -> None: ... method _LookFileInNodePanel__actionsMenuAboutToShow (line 38) | def _LookFileInNodePanel__actionsMenuAboutToShow(self): ... method _LookFileInNodePanel__filterUpdate (line 39) | def _LookFileInNodePanel__filterUpdate(self, filterText, filterType): ... method _LookFileInNodePanel__getSelectedItems (line 40) | def _LookFileInNodePanel__getSelectedItems(self): ... method _LookFileInNodePanel__listMousePressEvent (line 41) | def _LookFileInNodePanel__listMousePressEvent(self, event): ... method _LookFileInNodePanel__setStatusLabel (line 42) | def _LookFileInNodePanel__setStatusLabel(self, enabled, shown, hidden)... method _LookFileInNodePanel__toggleItemState (line 43) | def _LookFileInNodePanel__toggleItemState(self, item): ... method _LookFileInNodePanel__updateMaterialList (line 44) | def _LookFileInNodePanel__updateMaterialList(self): ... method getNode (line 45) | def getNode(self) -> NodegraphAPI.Node: ... method updatePanel (line 46) | def updatePanel(self): ... class LookFileInStackEditor (line 48) | class LookFileInStackEditor(UI4.Widgets.SortablePanel.SortablePanelFormW... method __init__ (line 50) | def __init__(self, parent, node: NodegraphAPI.Node, factory) -> None: ... method _LookFileInStackEditor__collapsedEventHander (line 51) | def _LookFileInStackEditor__collapsedEventHander(self, args): ... method _LookFileInStackEditor__registerEvents (line 52) | def _LookFileInStackEditor__registerEvents(self): ... method _LookFileInStackEditor__unregisterEvents (line 53) | def _LookFileInStackEditor__unregisterEvents(self): ... method _freeze (line 54) | def _freeze(self): ... method _thaw (line 55) | def _thaw(self): ... method panelDeleted (line 56) | def panelDeleted(self, index): ... method panelReordered (line 57) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 58) | def updatePanels(self): ... class MaterialStackFormWidget (line 60) | class MaterialStackFormWidget(UI4.FormMaster.Editors.NodeGroup.NodeGroup... method __init__ (line 63) | def __init__(self, parent, policy, factory) -> None: ... method _MaterialStackFormWidget__aboutToDragCallback (line 64) | def _MaterialStackFormWidget__aboutToDragCallback(self, items, dragObj... method _MaterialStackFormWidget__addChildMaterial (line 65) | def _MaterialStackFormWidget__addChildMaterial(self): ... method _MaterialStackFormWidget__addGeometryMaterial (line 66) | def _MaterialStackFormWidget__addGeometryMaterial(self): ... method _MaterialStackFormWidget__addLightMaterial (line 67) | def _MaterialStackFormWidget__addLightMaterial(self): ... method _MaterialStackFormWidget__addLookFileMaterial (line 68) | def _MaterialStackFormWidget__addLookFileMaterial(self): ... method _MaterialStackFormWidget__addLookFileReference (line 69) | def _MaterialStackFormWidget__addLookFileReference(self): ... method _MaterialStackFormWidget__addMaterial (line 70) | def _MaterialStackFormWidget__addMaterial(self): ... method _MaterialStackFormWidget__addMaterialItem (line 71) | def _MaterialStackFormWidget__addMaterialItem(self, parentItem, node: ... method _MaterialStackFormWidget__addMenuAboutToShow (line 72) | def _MaterialStackFormWidget__addMenuAboutToShow(self): ... method _MaterialStackFormWidget__buildParameterEditorForChildNode (line 73) | def _MaterialStackFormWidget__buildParameterEditorForChildNode(self, w... method _MaterialStackFormWidget__collapsedEventHander (line 74) | def _MaterialStackFormWidget__collapsedEventHander(self, args): ... method _MaterialStackFormWidget__deferredSelectionChanged (line 75) | def _MaterialStackFormWidget__deferredSelectionChanged(self): ... method _MaterialStackFormWidget__deleteMaterial (line 76) | def _MaterialStackFormWidget__deleteMaterial(self, confirm: bool = ...... method _MaterialStackFormWidget__dragMoveEventCallback (line 77) | def _MaterialStackFormWidget__dragMoveEventCallback(self, event, paren... method _MaterialStackFormWidget__dropEventCallback (line 78) | def _MaterialStackFormWidget__dropEventCallback(self, event, parent, i... method _MaterialStackFormWidget__duplicateMaterial (line 79) | def _MaterialStackFormWidget__duplicateMaterial(self): ... method _MaterialStackFormWidget__findAboutToShow (line 80) | def _MaterialStackFormWidget__findAboutToShow(self): ... method _MaterialStackFormWidget__findItemChosen (line 81) | def _MaterialStackFormWidget__findItemChosen(self, text, meta): ... method _MaterialStackFormWidget__freezeToggled (line 82) | def _MaterialStackFormWidget__freezeToggled(self, state): ... method _MaterialStackFormWidget__getActiveNodes (line 83) | def _MaterialStackFormWidget__getActiveNodes(self): ... method _MaterialStackFormWidget__getNode (line 84) | def _MaterialStackFormWidget__getNode(self): ... method _MaterialStackFormWidget__ignoreMaterial (line 85) | def _MaterialStackFormWidget__ignoreMaterial(self): ... method _MaterialStackFormWidget__initMembers (line 86) | def _MaterialStackFormWidget__initMembers(self): ... method _MaterialStackFormWidget__listMousePressEvent (line 87) | def _MaterialStackFormWidget__listMousePressEvent(self, event): ... method _MaterialStackFormWidget__listViewKeyPressCallback (line 88) | def _MaterialStackFormWidget__listViewKeyPressCallback(self, event): ... method _MaterialStackFormWidget__loadResources (line 89) | def _MaterialStackFormWidget__loadResources(self): ... method _MaterialStackFormWidget__reapEditorCache (line 90) | def _MaterialStackFormWidget__reapEditorCache(self): ... method _MaterialStackFormWidget__registerEvents (line 91) | def _MaterialStackFormWidget__registerEvents(self): ... method _MaterialStackFormWidget__selectionChanged (line 92) | def _MaterialStackFormWidget__selectionChanged(self): ... method _MaterialStackFormWidget__tearOffParameters (line 93) | def _MaterialStackFormWidget__tearOffParameters(self): ... method _MaterialStackFormWidget__unregisterEvents (line 94) | def _MaterialStackFormWidget__unregisterEvents(self): ... method _MaterialStackFormWidget__updateListContents (line 95) | def _MaterialStackFormWidget__updateListContents(self): ... method _buildFindWidget (line 96) | def _buildFindWidget(self, layout): ... method _freeze (line 97) | def _freeze(self): ... method _thaw (line 98) | def _thaw(self): ... method getSelectedMaterialPaths (line 99) | def getSelectedMaterialPaths(self): ... class MaterialTreeDelegate (line 101) | class MaterialTreeDelegate(QT4Widgets.SortableTreeWidget.SortableTreeWid... method paint (line 102) | def paint(self, painter, option, index): ... class MaterialTreeItem (line 104) | class MaterialTreeItem(QT4Widgets.SortableTreeWidget.SortableTreeWidgetI... method isDraggable (line 105) | def isDraggable(self): ... class NameParameterEditor (line 107) | class NameParameterEditor(PyQt5.QtWidgets.QFrame): method __init__ (line 109) | def __init__(self, parent, node: NodegraphAPI.Node, factory, showLockB... method _NameParameterEditor__clicked (line 110) | def _NameParameterEditor__clicked(self): ... method getValuePolicy (line 111) | def getValuePolicy(self): ... class PolicyShim (line 113) | class PolicyShim(QT4FormWidgets.PythonValuePolicy.PythonGroupPolicy): method __init__ (line 114) | def __init__(self, node: NodegraphAPI.Node) -> None: ... method getNode (line 115) | def getNode(self) -> NodegraphAPI.Node: ... method getParameter (line 116) | def getParameter(self): ... class ReferencedMaterialTreeItem (line 118) | class ReferencedMaterialTreeItem(MaterialTreeItem): method __init__ (line 120) | def __init__(self, *args, **kwds) -> None: ... FILE: katana/stubs/UI4/FormMaster/Editors/MultiInputPortNodeEditor.pyi class MultiInputPortNodeEditor (line 9) | class MultiInputPortNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGrou... method __init__ (line 10) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... FILE: katana/stubs/UI4/FormMaster/Editors/NetworkMaterialParameterEdit.pyi class NetworkMaterialParameterEditFormWidget (line 16) | class NetworkMaterialParameterEditFormWidget(UI4.FormMaster.Editors.Dyna... method __init__ (line 17) | def __init__(self, parent, policy, factory) -> None: ... method _NetworkMaterialParameterEditFormWidget__addNode (line 18) | def _NetworkMaterialParameterEditFormWidget__addNode(self, groupName):... method _NetworkMaterialParameterEditFormWidget__getMaterialAttr (line 19) | def _NetworkMaterialParameterEditFormWidget__getMaterialAttr(self): ... method _NetworkMaterialParameterEditFormWidget__getNetworkAttr (line 20) | def _NetworkMaterialParameterEditFormWidget__getNetworkAttr(self): ... method _NetworkMaterialParameterEditFormWidget__toggleNodeCallback (line 21) | def _NetworkMaterialParameterEditFormWidget__toggleNodeCallback(self, ... method _buildControlWidget (line 22) | def _buildControlWidget(self, layout): ... method _childPanelsShouldAddWrench (line 23) | def _childPanelsShouldAddWrench(self): ... method _menuAction (line 24) | def _menuAction(self, action): ... method buildAddMenu (line 25) | def buildAddMenu(self, menu): ... class _NodeCheckboxLayer (line 27) | class _NodeCheckboxLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 29) | def __init__(self, name, param) -> None: ... method _NodeCheckboxLayer__getMenu (line 30) | def _NodeCheckboxLayer__getMenu(self): ... method _NodeCheckboxLayer__toggleName (line 31) | def _NodeCheckboxLayer__toggleName(self): ... method processEvent (line 32) | def processEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/Editors/Node2DGroup.pyi class Node2DGroupFormWidget (line 9) | class Node2DGroupFormWidget(UI4.FormMaster.Editors.NodeGroup.NodeGroupFo... method __init__ (line 10) | def __init__(self, parent, policy, factory) -> None: ... method _createChildWidget (line 11) | def _createChildWidget(self, policy, parentWidget, factory, index): ... method _popdownCreated (line 12) | def _popdownCreated(self, popdown): ... method getPopdownWidget (line 13) | def getPopdownWidget(self): ... method populateDecorations (line 14) | def populateDecorations(self, popdown, layout): ... FILE: katana/stubs/UI4/FormMaster/Editors/NodeDropWidget.pyi class NodeDropWidget (line 14) | class NodeDropWidget(PyQt5.QtWidgets.QLabel): method __init__ (line 19) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _NodeDropWidget__startDrag (line 20) | def _NodeDropWidget__startDrag(self): ... method customEvent (line 21) | def customEvent(self, event): ... method dragEnterEvent (line 22) | def dragEnterEvent(self, event): ... method dragLeaveEvent (line 23) | def dragLeaveEvent(self, event): ... method dropEvent (line 24) | def dropEvent(self, event): ... method getNode (line 25) | def getNode(self) -> NodegraphAPI.Node: ... method mousePressEvent (line 26) | def mousePressEvent(self, event): ... method setNode (line 27) | def setNode(self, node: Nodes3DAPI.Node3D): ... FILE: katana/stubs/UI4/FormMaster/Editors/NodeGroup.pyi class CommentButton (line 28) | class CommentButton(PopupButton): method __init__ (line 29) | def __init__(self, parent) -> None: ... method _CommentButton__aboutToShow (line 30) | def _CommentButton__aboutToShow(self): ... method _CommentButton__commentEditAreaReturnPressed (line 31) | def _CommentButton__commentEditAreaReturnPressed(self): ... class NodeGroupFormWidget (line 33) | class NodeGroupFormWidget(UI4.FormMaster.Editors.HideTitleGroup.HideTitl... method __init__ (line 37) | def __init__(self, parent, policy, factory) -> None: ... method _NodeGroupFormWidget__doNodeSetComment (line 38) | def _NodeGroupFormWidget__doNodeSetComment(self, args): ... method _NodeGroupFormWidget__doNodeSetLocked (line 39) | def _NodeGroupFormWidget__doNodeSetLocked(self, args): ... method _NodeGroupFormWidget__doNodeSetName (line 40) | def _NodeGroupFormWidget__doNodeSetName(self, args): ... method _NodeGroupFormWidget__nameEditClearButton_CB (line 41) | def _NodeGroupFormWidget__nameEditClearButton_CB(self): ... method _NodeGroupFormWidget__on_nodeButton_clicked (line 42) | def _NodeGroupFormWidget__on_nodeButton_clicked(self): ... method _NodeGroupFormWidget__setAutoRenameAllowed_CB (line 43) | def _NodeGroupFormWidget__setAutoRenameAllowed_CB(self, eventType, eve... method _NodeGroupFormWidget__updateNameEditClearVisibility (line 44) | def _NodeGroupFormWidget__updateNameEditClearVisibility(self): ... method _buildControlWidget (line 45) | def _buildControlWidget(self, layout): ... method _buildFindWidget (line 46) | def _buildFindWidget(self, layout): ... method _buildHelpButton (line 47) | def _buildHelpButton(self, policy): ... method _buildLabel (line 48) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildLock (line 49) | def _buildLock(self, layout): ... method _buildWrench (line 50) | def _buildWrench(self, policy): ... method _findChildWidget (line 51) | def _findChildWidget(self, path): ... method _freeze (line 52) | def _freeze(self): ... method _removeWrench (line 53) | def _removeWrench(self, wrench): ... method _thaw (line 54) | def _thaw(self): ... method closeEvent (line 55) | def closeEvent(self, event): ... method contextMenuEvent (line 56) | def contextMenuEvent(self, event): ... method getNameEdit (line 57) | def getNameEdit(self): ... method getShortcutsContextName (line 58) | def getShortcutsContextName(self): ... method showFindPopup (line 59) | def showFindPopup(self): ... class SuperToolFormWidget (line 61) | class SuperToolFormWidget(NodeGroupFormWidget): method __init__ (line 62) | def __init__(self, parent, policy, factory) -> None: ... method _SuperToolFormWidget__handleParameterPolicyEvent (line 63) | def _SuperToolFormWidget__handleParameterPolicyEvent(self, valuePolicy... method _buildFindWidget (line 64) | def _buildFindWidget(self, layout): ... method _popdownCreated (line 65) | def _popdownCreated(self, popdown): ... method getTopologyDifferences (line 66) | def getTopologyDifferences(self): ... method setLocked (line 67) | def setLocked(self, locked: bool): ... function _GetNodeSpecificShelves (line 69) | def _GetNodeSpecificShelves(forceReload: bool = ...): ... FILE: katana/stubs/UI4/FormMaster/Editors/NodeName.pyi class NodeNameArrayEditor (line 16) | class NodeNameArrayEditor(UI4.Widgets.SortablePanel.SortablePanelFormWid... method __init__ (line 17) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _NodeNameArrayEditor__addNodeChildren (line 18) | def _NodeNameArrayEditor__addNodeChildren(self, replace: bool = ...): ... method _NodeNameArrayEditor__appendEntry (line 19) | def _NodeNameArrayEditor__appendEntry(self): ... method _NodeNameArrayEditor__appendNodegraphSelection (line 20) | def _NodeNameArrayEditor__appendNodegraphSelection(self): ... method _NodeNameArrayEditor__findAllNodes (line 21) | def _NodeNameArrayEditor__findAllNodes(self): ... method _NodeNameArrayEditor__replaceNodegraphSelection (line 22) | def _NodeNameArrayEditor__replaceNodegraphSelection(self): ... method buildAddMenu (line 23) | def buildAddMenu(self, menu): ... method panelDeleted (line 24) | def panelDeleted(self, index): ... method panelReordered (line 25) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 26) | def updatePanels(self): ... class NodeNameFormWidget (line 28) | class NodeNameFormWidget(StringFormWidget): method __init__ (line 29) | def __init__(self, parent, policy, factory) -> None: ... method _NodeNameFormWidget__fillMenu (line 30) | def _NodeNameFormWidget__fillMenu(self, menu): ... method _NodeNameFormWidget__getNodeFromEvent (line 31) | def _NodeNameFormWidget__getNodeFromEvent(self, event): ... method _NodeNameFormWidget__setFromText (line 32) | def _NodeNameFormWidget__setFromText(self, text): ... method _buildControlWidget (line 33) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 34) | def _checkControlWidget(self): ... method _filterNodes (line 35) | def _filterNodes(self, unfilteredNodes): ... method _updateControlWidget (line 36) | def _updateControlWidget(self): ... method dragEnterEvent (line 37) | def dragEnterEvent(self, event): ... method dropEvent (line 38) | def dropEvent(self, event): ... method getEditWidget (line 39) | def getEditWidget(self): ... method keyPressEvent (line 40) | def keyPressEvent(self, event): ... method setReadOnly (line 41) | def setReadOnly(self, value): ... class NodeNameIndexFormWidget (line 43) | class NodeNameIndexFormWidget(NodeNameFormWidget): method __init__ (line 44) | def __init__(self, parent, parentPolicy, index, factory) -> None: ... method setPolicyIndex (line 45) | def setPolicyIndex(self, index): ... class NodeNamePanel (line 47) | class NodeNamePanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 48) | def __init__(self, parent, policy, index, widgetFactory) -> None: ... method setPolicyIndex (line 49) | def setPolicyIndex(self, index): ... FILE: katana/stubs/UI4/FormMaster/Editors/NodeProxyPlaceholder.pyi class NodeDropLabel (line 14) | class NodeDropLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 16) | def __init__(self, parent) -> None: ... method dragEnterEvent (line 17) | def dragEnterEvent(self, event): ... method dropEvent (line 18) | def dropEvent(self, event): ... class NodeProxyPlaceholderWidget (line 20) | class NodeProxyPlaceholderWidget(FormWidget): method __init__ (line 21) | def __init__(self, parent, policy, factory) -> None: ... method _NodeProxyPlaceholderWidget__buildOrUpdateDropWidget (line 22) | def _NodeProxyPlaceholderWidget__buildOrUpdateDropWidget(self): ... method _NodeProxyPlaceholderWidget__nodeDropped (line 23) | def _NodeProxyPlaceholderWidget__nodeDropped(self, path): ... method decorateUserParameterFrame (line 24) | def decorateUserParameterFrame(self, parent): ... FILE: katana/stubs/UI4/FormMaster/Editors/NonexclusiveCheckboxPopupFormWidget.pyi class NonexclusiveCheckboxPopupFormWidget (line 9) | class NonexclusiveCheckboxPopupFormWidget(BaseValueFormWidget): method __init__ (line 10) | def __init__(self, parent, policy, factory) -> None: ... method _buildControlWidget (line 11) | def _buildControlWidget(self, layout): ... method _checkControlWidget (line 12) | def _checkControlWidget(self): ... method _lockChanged (line 13) | def _lockChanged(self, state): ... method _updateControlWidget (line 14) | def _updateControlWidget(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/Number.pyi class DualInputKatanaNumberFormWidget (line 18) | class DualInputKatanaNumberFormWidget(KatanaNumberFormWidget): method _DualInputKatanaNumberFormWidget__altPolicyValueChanged (line 19) | def _DualInputKatanaNumberFormWidget__altPolicyValueChanged(self, even... method _DualInputKatanaNumberFormWidget__evalConversion (line 20) | def _DualInputKatanaNumberFormWidget__evalConversion(self, expr, value... method _buildControlWidget (line 21) | def _buildControlWidget(self, layout): ... method _updateControlWidget (line 22) | def _updateControlWidget(self): ... method valueChangedEvent (line 23) | def valueChangedEvent(self, event): ... class EditSignalingNumberFormWidget (line 25) | class EditSignalingNumberFormWidget(KatanaNumberFormWidget): class _SignalingToggleStateBadge (line 26) | class _SignalingToggleStateBadge(QT4FormWidgets.MultiStateBadge.Toggle... method mousePressEvent (line 28) | def mousePressEvent(self, event): ... method _EditSignalingNumberFormWidget__userEdited (line 30) | def _EditSignalingNumberFormWidget__userEdited(self, *args): ... method _buildControlWidget (line 31) | def _buildControlWidget(self, layout): ... method _buildStateBadge (line 32) | def _buildStateBadge(self, policy): ... method _popdownCreated (line 33) | def _popdownCreated(self, popdown): ... method labelSliderDrag (line 34) | def labelSliderDrag(self, pos, modifiers): ... method labelSliderEnd (line 35) | def labelSliderEnd(self, pos, modifiers): ... method supportsStickyScrub (line 36) | def supportsStickyScrub(self) -> bool: ... class KatanaNumberFormWidget (line 38) | class KatanaNumberFormWidget(NumberFormWidget): method __init__ (line 39) | def __init__(self, parent, policy, factory) -> None: ... method _KatanaNumberFormWidget__bakeToFCurve (line 40) | def _KatanaNumberFormWidget__bakeToFCurve(self): ... method _KatanaNumberFormWidget__exportCurveToFCurveXML (line 41) | def _KatanaNumberFormWidget__exportCurveToFCurveXML(self): ... method _KatanaNumberFormWidget__importCurveFromFCurveFile (line 42) | def _KatanaNumberFormWidget__importCurveFromFCurveFile(self): ... method _addExportMenuActions (line 43) | def _addExportMenuActions(self, menu): ... method _addExtraMenuAction (line 44) | def _addExtraMenuAction(self, menu): ... method _addImportMenuActions (line 45) | def _addImportMenuActions(self, menu): ... FILE: katana/stubs/UI4/FormMaster/Editors/OpScriptNode.pyi class OpScriptNodeEditor (line 11) | class OpScriptNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormW... method __init__ (line 12) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _OpScriptNodeEditor__clicked (line 13) | def _OpScriptNodeEditor__clicked(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/OpWriteNode.pyi class OpWriteNodeEditor (line 10) | class OpWriteNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormWi... method __init__ (line 11) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _OpWriteNodeEditor__clicked (line 12) | def _OpWriteNodeEditor__clicked(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/PageGroupWidget.pyi class PageGroupBoxWidget (line 11) | class PageGroupBoxWidget(GroupFormWidget): method __init__ (line 12) | def __init__(self, parent, policy, factory) -> None: ... method _buildTopAreaLayout (line 13) | def _buildTopAreaLayout(self, layout): ... method _popdownCreated (line 14) | def _popdownCreated(self, popdown): ... class PageGroupWidget (line 16) | class PageGroupWidget(MultiFormWidget): method __init__ (line 17) | def __init__(self, parent, policy, factory) -> None: ... method _buildControlWidget (line 18) | def _buildControlWidget(self, controlLayout): ... method _buildLabel (line 19) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildTopAreaLayout (line 20) | def _buildTopAreaLayout(self, layout): ... method _popdownCreated (line 21) | def _popdownCreated(self, popdown): ... FILE: katana/stubs/UI4/FormMaster/Editors/PeerHeaderGroup.pyi class PeerHeaderGroupFormWidget (line 12) | class PeerHeaderGroupFormWidget(GroupFormWidget): method __init__ (line 13) | def __init__(self, parent, policy, factory) -> None: ... method _buildControlWidget (line 14) | def _buildControlWidget(self, layout): ... method _buildLabel (line 15) | def _buildLabel(self, labelText, pos: Incomplete | None = ...): ... method _buildLock (line 16) | def _buildLock(self, layout): ... method _buildStateBadge (line 17) | def _buildStateBadge(self, policy): ... method _lockChanged (line 18) | def _lockChanged(self, state): ... method _participatesInLabelAlignment (line 19) | def _participatesInLabelAlignment(self): ... method getLabelWidth (line 20) | def getLabelWidth(self): ... method setLabelWidth (line 21) | def setLabelWidth(self, width): ... method showEvent (line 22) | def showEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/Editors/PluginPopup.pyi class PluginPopupFormWidget (line 11) | class PluginPopupFormWidget(FilterablePopupFormWidget): class PluginPopup (line 12) | class PluginPopup(Popup): method __init__ (line 13) | def __init__(self, *args) -> None: ... method _PluginPopup__cachesFlushed (line 14) | def _PluginPopup__cachesFlushed(self, *args, **kwargs): ... method _refreshContents (line 15) | def _refreshContents(self): ... class PluginPopupButton (line 17) | class PluginPopupButton(PopupButton): method __init__ (line 18) | def __init__(self, valuePolicy) -> None: ... method _buildPopupWindow (line 19) | def _buildPopupWindow(self): ... method sizeHint (line 20) | def sizeHint(self): ... method _buildLabel (line 21) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildPopupButton (line 22) | def _buildPopupButton(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/Point.pyi class PointEditorArrayFormWidget (line 20) | class PointEditorArrayFormWidget(ArrayFormWidget): method __init__ (line 21) | def __init__(self, parent, policy, factory) -> None: ... class PointEditorMultiFormWidget (line 23) | class PointEditorMultiFormWidget(MultiFormWidget): method __init__ (line 24) | def __init__(self, parent, policy, factory) -> None: ... class PointManipulatorLayer (line 26) | class PointManipulatorLayer(LayerWithTransform, QT4GLLayerStack.LayerSta... method __init__ (line 27) | def __init__(self, valuePolicy, *args, **kwargs) -> None: ... method _PointManipulatorLayer__buildPopupMenu (line 28) | def _PointManipulatorLayer__buildPopupMenu(self): ... method _PointManipulatorLayer__valuePolicy_CB (line 29) | def _PointManipulatorLayer__valuePolicy_CB(self, arg: Incomplete | Non... method _dothaw (line 30) | def _dothaw(self): ... method defaultProcessEvent (line 31) | def defaultProcessEvent(self, event): ... method drawOutline (line 32) | def drawOutline(self, pick: bool = ...): ... method getColor (line 33) | def getColor(self): ... method getLabel (line 34) | def getLabel(self): ... method getPoint (line 35) | def getPoint(self): ... method getPointStates (line 36) | def getPointStates(self): ... method getValuePolicy (line 37) | def getValuePolicy(self): ... method paintGL (line 38) | def paintGL(self): ... method pickOutline (line 39) | def pickOutline(self, x, y): ... method processDragHandleEvent (line 40) | def processDragHandleEvent(self, event): ... method setPoint (line 41) | def setPoint(self, point, final): ... class PolicyList (line 43) | class PolicyList(list): method _PolicyList__selectPolicies (line 44) | def _PolicyList__selectPolicies(self, predicate): ... method canHaveCurve (line 45) | def canHaveCurve(self): ... method canHaveExpression (line 46) | def canHaveExpression(self): ... method doAutoKey (line 47) | def doAutoKey(self): ... method doConstant (line 48) | def doConstant(self): ... method doCurve (line 49) | def doCurve(self): ... method doExpression (line 50) | def doExpression(self): ... method doKey (line 51) | def doKey(self): ... method doShowCurve (line 52) | def doShowCurve(self): ... method getCurveAutoKey (line 53) | def getCurveAutoKey(self): ... method getCurveKey (line 54) | def getCurveKey(self): ... method isCurveEnabled (line 55) | def isCurveEnabled(self): ... method isCurveViewed (line 56) | def isCurveViewed(self): ... method isExpressionEnabled (line 57) | def isExpressionEnabled(self): ... method isLocked (line 58) | def isLocked(self): ... function GetPointPolicyChildren (line 60) | def GetPointPolicyChildren(policy): ... FILE: katana/stubs/UI4/FormMaster/Editors/PolicyFindPopup.pyi class PolicyFindPopupButton (line 15) | class PolicyFindPopupButton(ToolbarButton): method __init__ (line 16) | def __init__(self, tooltip: str, parent: PyQt5.QtWidgets.QWidget) -> N... method _PolicyFindPopupButton__locationFilterCallback (line 17) | def _PolicyFindPopupButton__locationFilterCallback(self, state, name, ... method _PolicyFindPopupButton__on_popup_hide (line 18) | def _PolicyFindPopupButton__on_popup_hide(self): ... method _PolicyFindPopupButton__on_popup_itemChosen (line 19) | def _PolicyFindPopupButton__on_popup_itemChosen(self, text, meta): ... method _PolicyFindPopupButton__on_popup_show (line 20) | def _PolicyFindPopupButton__on_popup_show(self): ... method _PolicyFindPopupButton__on_pressed (line 21) | def _PolicyFindPopupButton__on_pressed(self): ... method findPolicy (line 22) | def findPolicy(self, path): ... class PolicyFindPopupFWidget (line 24) | class PolicyFindPopupFWidget(FWidget): method __init__ (line 25) | def __init__(self, parent, pixmap: Incomplete | None = ...) -> None: ... method _PolicyFindPopupFWidget__itemChosen (line 26) | def _PolicyFindPopupFWidget__itemChosen(self, text, meta): ... method _PolicyFindPopupFWidget__locationFilterCallback (line 27) | def _PolicyFindPopupFWidget__locationFilterCallback(self, state, name,... method _PolicyFindPopupFWidget__popupHidden (line 28) | def _PolicyFindPopupFWidget__popupHidden(self): ... method _PolicyFindPopupFWidget__popupShow (line 29) | def _PolicyFindPopupFWidget__popupShow(self): ... method _PolicyFindPopupFWidget__showFindPopup (line 30) | def _PolicyFindPopupFWidget__showFindPopup(self): ... method findPolicy (line 31) | def findPolicy(self, path): ... method mousePressEvent (line 32) | def mousePressEvent(self, event): ... method paint (line 33) | def paint(self, painter, width, height): ... method sizeHint (line 34) | def sizeHint(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/PortNameAndOrderWidget.pyi class InputPanel (line 12) | class InputPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 13) | def __init__(self, parent, name) -> None: ... method _InputPanel__valueChangedCallback (line 14) | def _InputPanel__valueChangedCallback(self): ... method getName (line 15) | def getName(self): ... method setName (line 16) | def setName(self, name): ... class PortNameAndOrderWidget (line 18) | class PortNameAndOrderWidget(UI4.Widgets.SortablePanel.SortablePanelForm... method __init__ (line 19) | def __init__(self, parent, policy) -> None: ... method _PortNameAndOrderWidget__idle_callback (line 20) | def _PortNameAndOrderWidget__idle_callback(self, *args, **kwargs): ... method _PortNameAndOrderWidget__node_addOrRemoveInputPort_cb (line 21) | def _PortNameAndOrderWidget__node_addOrRemoveInputPort_cb(self, eventT... method _PortNameAndOrderWidget__node_renameInputPort_cb (line 22) | def _PortNameAndOrderWidget__node_renameInputPort_cb(self, eventType, ... method _PortNameAndOrderWidget__registerEventHandlers (line 23) | def _PortNameAndOrderWidget__registerEventHandlers(self): ... method _PortNameAndOrderWidget__unregisterEventHandlers (line 24) | def _PortNameAndOrderWidget__unregisterEventHandlers(self): ... method _PortNameAndOrderWidget__update (line 25) | def _PortNameAndOrderWidget__update(self): ... method _freeze (line 26) | def _freeze(self): ... method _thaw (line 27) | def _thaw(self): ... method addInput (line 28) | def addInput(self): ... method buildAddMenu (line 29) | def buildAddMenu(self, menu): ... method panelDeleted (line 30) | def panelDeleted(self, index): ... method panelReordered (line 31) | def panelReordered(self, oldPos, newPos): ... method renamePort (line 32) | def renamePort(self, oldName, newName): ... FILE: katana/stubs/UI4/FormMaster/Editors/PortNamePopup.pyi class InputPortNamePopupFormWidget (line 9) | class InputPortNamePopupFormWidget(PopupFormWidget): method __init__ (line 10) | def __init__(self, parent, policy, factory) -> None: ... method _InputPortNamePopupFormWidget__node_addOrRemoveInputPort_cb (line 11) | def _InputPortNamePopupFormWidget__node_addOrRemoveInputPort_cb(self, ... method _InputPortNamePopupFormWidget__node_renameInputPort_cb (line 12) | def _InputPortNamePopupFormWidget__node_renameInputPort_cb(self, event... method _InputPortNamePopupFormWidget__registerEventHandlers (line 13) | def _InputPortNamePopupFormWidget__registerEventHandlers(self): ... method _InputPortNamePopupFormWidget__unregisterEventHandlers (line 14) | def _InputPortNamePopupFormWidget__unregisterEventHandlers(self): ... method _InputPortNamePopupFormWidget__update (line 15) | def _InputPortNamePopupFormWidget__update(self): ... method _freeze (line 16) | def _freeze(self): ... method _thaw (line 17) | def _thaw(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/PresetsGroup.pyi class PresetsGroupFormWidget (line 10) | class PresetsGroupFormWidget(GroupFormWidget): method __init__ (line 11) | def __init__(self, parent, policy, factory) -> None: ... method _PresetsGroupFormWidget__comparePresetValuesType (line 12) | def _PresetsGroupFormWidget__comparePresetValuesType(self, values1, va... method _PresetsGroupFormWidget__initParser (line 13) | def _PresetsGroupFormWidget__initParser(self): ... method _PresetsGroupFormWidget__parsePresetValues (line 14) | def _PresetsGroupFormWidget__parsePresetValues(self, valuesStr: str) -... method _PresetsGroupFormWidget__parsePresets (line 15) | def _PresetsGroupFormWidget__parsePresets(self, presetsString: str) ->... method _PresetsGroupFormWidget__presetComboBox_CB (line 16) | def _PresetsGroupFormWidget__presetComboBox_CB(self, requestedPresetNa... method _PresetsGroupFormWidget__syncPresetComboBox (line 17) | def _PresetsGroupFormWidget__syncPresetComboBox(self, event: Incomplet... method _buildControlWidget (line 18) | def _buildControlWidget(self, layout): ... method _freeze (line 19) | def _freeze(self): ... method _thaw (line 20) | def _thaw(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/Rectangle.pyi class ReadOnlySimpleRectManipulatorLayer (line 20) | class ReadOnlySimpleRectManipulatorLayer(SimpleRectManipulatorLayer): method defaultProcessEvent (line 21) | def defaultProcessEvent(self, event): ... class RectEditorFormWidget (line 23) | class RectEditorFormWidget(GroupFormWidget): method __init__ (line 24) | def __init__(self, parent, policy, factory) -> None: ... method _RectEditorFormWidget__copy_fromMonitorROI_CB (line 25) | def _RectEditorFormWidget__copy_fromMonitorROI_CB(self): ... method _RectEditorFormWidget__copy_toMonitorROI_CB (line 26) | def _RectEditorFormWidget__copy_toMonitorROI_CB(self): ... method _RectEditorFormWidget__menuAboutToShow (line 27) | def _RectEditorFormWidget__menuAboutToShow(self, menu): ... method _RectEditorFormWidget__on_resolutionComboBox_itemChosen (line 28) | def _RectEditorFormWidget__on_resolutionComboBox_itemChosen(self, text... method _RectEditorFormWidget__updateComboBox (line 29) | def _RectEditorFormWidget__updateComboBox(self, valuePolicyEvent: Inco... method _buildControlWidget (line 30) | def _buildControlWidget(self, layout): ... method _freeze (line 31) | def _freeze(self): ... method _participatesInLabelAlignment (line 32) | def _participatesInLabelAlignment(self) -> bool: ... method _thaw (line 33) | def _thaw(self): ... class RectManipulatorLayer (line 35) | class RectManipulatorLayer(RectangleLayer): method __init__ (line 36) | def __init__(self, valuePolicy, *args, **kwargs) -> None: ... method _RectManipulatorLayer__valuePolicy_CB (line 37) | def _RectManipulatorLayer__valuePolicy_CB(self, arg: Incomplete | None... method _dothaw (line 38) | def _dothaw(self): ... method getDataWindow (line 39) | def getDataWindow(self): ... method getDisplayWindow (line 40) | def getDisplayWindow(self): ... method setRectangle (line 41) | def setRectangle(self, rect): ... class SimpleRectManipulatorLayer (line 43) | class SimpleRectManipulatorLayer(LayerWithTransform, QT4GLLayerStack.Lay... method __init__ (line 44) | def __init__(self, valuePolicy, *args, **kwargs) -> None: ... method _SimpleRectManipulatorLayer__valuePolicy_CB (line 45) | def _SimpleRectManipulatorLayer__valuePolicy_CB(self, arg: Incomplete ... method _dothaw (line 46) | def _dothaw(self): ... method defaultProcessEvent (line 47) | def defaultProcessEvent(self, event): ... method drawBoundsHandles (line 48) | def drawBoundsHandles(self, pick: bool = ...): ... method drawOutline (line 49) | def drawOutline(self, pick: bool = ...): ... method getDataWindow (line 50) | def getDataWindow(self): ... method getDisplayWindow (line 51) | def getDisplayWindow(self): ... method getOriginLock (line 52) | def getOriginLock(self): ... method getRect (line 53) | def getRect(self): ... method getRectStates (line 54) | def getRectStates(self): ... method getValuePolicy (line 55) | def getValuePolicy(self): ... method paintGL (line 56) | def paintGL(self): ... method pickBoundsHandle (line 57) | def pickBoundsHandle(self, x, y): ... method pickOutline (line 58) | def pickOutline(self, x, y): ... method processDragHandleEvent (line 59) | def processDragHandleEvent(self, event): ... method setOriginLock (line 60) | def setOriginLock(self, isLocked): ... method setRect (line 61) | def setRect(self, rect, final): ... FILE: katana/stubs/UI4/FormMaster/Editors/Render.pyi class IncludedOutputToggle (line 23) | class IncludedOutputToggle(PyQt5.QtWidgets.QCheckBox): method __init__ (line 25) | def __init__(self, name, parent) -> None: ... method _IncludedOutputToggle__toggled (line 26) | def _IncludedOutputToggle__toggled(self, on): ... class IncludedOutputsFMenu (line 28) | class IncludedOutputsFMenu(QT4FormWidgets.FWidget.FMenu): method mousePressEvent (line 29) | def mousePressEvent(self, event): ... class RenderNodeEditor (line 31) | class RenderNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormWid... method __init__ (line 32) | def __init__(self, parent, policy, factory) -> None: ... method _RenderNodeEditor__actionButtonFillMenu (line 33) | def _RenderNodeEditor__actionButtonFillMenu(self, menu): ... method _RenderNodeEditor__allIncludedOutputsOff (line 34) | def _RenderNodeEditor__allIncludedOutputsOff(self): ... method _RenderNodeEditor__allIncludedOutputsOn (line 35) | def _RenderNodeEditor__allIncludedOutputsOn(self): ... method _RenderNodeEditor__allIncludedOutputsReset (line 36) | def _RenderNodeEditor__allIncludedOutputsReset(self): ... method _RenderNodeEditor__includedOutputToggled (line 37) | def _RenderNodeEditor__includedOutputToggled(self, name, on): ... method _RenderNodeEditor__includedOutputsAboutToHide (line 38) | def _RenderNodeEditor__includedOutputsAboutToHide(self): ... method _RenderNodeEditor__includedOutputsFillMenu (line 39) | def _RenderNodeEditor__includedOutputsFillMenu(self, menu): ... method _RenderNodeEditor__postCreateAssets (line 40) | def _RenderNodeEditor__postCreateAssets(self, versionUp: bool = ...): ... method _RenderNodeEditor__postCreateAssetsVersionUp (line 41) | def _RenderNodeEditor__postCreateAssetsVersionUp(self): ... method _RenderNodeEditor__preCreateAssets (line 42) | def _RenderNodeEditor__preCreateAssets(self, versionUp: bool = ...): ... method _RenderNodeEditor__preCreateAssetsVersionUp (line 43) | def _RenderNodeEditor__preCreateAssetsVersionUp(self): ... class RenderOutputPanel (line 45) | class RenderOutputPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 46) | def __init__(self, parent, outputInfo, enabledValuePolicy, outputIndex... method _RenderOutputPanel__actionMenuAboutToShow (line 47) | def _RenderOutputPanel__actionMenuAboutToShow(self): ... method _RenderOutputPanel__copyExpression (line 48) | def _RenderOutputPanel__copyExpression(self): ... method _RenderOutputPanel__enabledCheckBoxToggled (line 49) | def _RenderOutputPanel__enabledCheckBoxToggled(self, on): ... method _RenderOutputPanel__enabledValuePolicyChanged (line 50) | def _RenderOutputPanel__enabledValuePolicyChanged(self, event): ... method _RenderOutputPanel__getMyNode (line 51) | def _RenderOutputPanel__getMyNode(self): ... method _RenderOutputPanel__postCreateAsset (line 52) | def _RenderOutputPanel__postCreateAsset(self, versionUp: bool = ...): ... method _RenderOutputPanel__postCreateAssetVersionUp (line 53) | def _RenderOutputPanel__postCreateAssetVersionUp(self): ... method _RenderOutputPanel__preCreateAsset (line 54) | def _RenderOutputPanel__preCreateAsset(self, versionUp: bool = ...): ... method _RenderOutputPanel__preCreateAssetVersionUp (line 55) | def _RenderOutputPanel__preCreateAssetVersionUp(self): ... method _freeze (line 56) | def _freeze(self): ... method _thaw (line 57) | def _thaw(self): ... method refreshVersionInfo (line 58) | def refreshVersionInfo(self): ... method setDisplayStateFromOutputInfo (line 59) | def setDisplayStateFromOutputInfo(self, outputInfo): ... method setLocked (line 60) | def setLocked(self, state): ... method updateLocationField (line 61) | def updateLocationField(self): ... class RenderOutputsEditor (line 63) | class RenderOutputsEditor(UI4.Widgets.SortablePanel.SortablePanelFormWid... method __init__ (line 64) | def __init__(self, parent, policy, factory) -> None: ... method _RenderOutputsEditor__handlePassNamePolicyEvent (line 65) | def _RenderOutputsEditor__handlePassNamePolicyEvent(self, event): ... method _RenderOutputsEditor__idle (line 66) | def _RenderOutputsEditor__idle(self, *args, **kwds): ... method _RenderOutputsEditor__refreshVersionInfo (line 67) | def _RenderOutputsEditor__refreshVersionInfo(self, event, eventId, *ar... method _RenderOutputsEditor__setLabel (line 68) | def _RenderOutputsEditor__setLabel(self, num): ... method _RenderOutputsEditor__syncWithIncomingScenegraph (line 69) | def _RenderOutputsEditor__syncWithIncomingScenegraph(self): ... method _RenderOutputsEditor__terminalOpCallback (line 70) | def _RenderOutputsEditor__terminalOpCallback(self, port: NodegraphAPI.... method _freeze (line 71) | def _freeze(self): ... method _participatesInLabelAlignment (line 72) | def _participatesInLabelAlignment(self): ... method _thaw (line 73) | def _thaw(self): ... method manualSyncIncoming (line 74) | def manualSyncIncoming(self): ... method refreshVersionInfo (line 75) | def refreshVersionInfo(self): ... method setErrorMessage (line 76) | def setErrorMessage(self, msg): ... method updateOutputs (line 77) | def updateOutputs(self, outputInfoList): ... class RenderPassnameEditor (line 79) | class RenderPassnameEditor(StringFormWidget): method __init__ (line 80) | def __init__(self, parent, policy, factory) -> None: ... method _RenderPassnameEditor__updateWarning (line 81) | def _RenderPassnameEditor__updateWarning(self): ... method valueChangedEvent (line 82) | def valueChangedEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/Editors/Resolution.pyi class ResolutionFormWidget (line 15) | class ResolutionFormWidget(BaseValueFormWidget): method __init__ (line 16) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _ResolutionFormWidget__doChangedNumbers (line 17) | def _ResolutionFormWidget__doChangedNumbers(self): ... method _ResolutionFormWidget__on_resolutionComboBox_itemChosen (line 18) | def _ResolutionFormWidget__on_resolutionComboBox_itemChosen(self, text... method _buildControlWidget (line 19) | def _buildControlWidget(self, layout): ... method _lockChanged (line 20) | def _lockChanged(self, state): ... method _updateControlWidget (line 21) | def _updateControlWidget(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/ScenegraphColumnDescription.pyi class ScenegraphColumnDescriptionWidget (line 21) | class ScenegraphColumnDescriptionWidget(UI4.Widgets.SortablePanel.Sortab... class ColumnAction (line 22) | class ColumnAction(PyQt5.QtWidgets.QAction): method __init__ (line 23) | def __init__(self, scenegraphColumnWidget, newColumnArgs: None, *arg... method _ColumnAction__activatedCallback (line 24) | def _ColumnAction__activatedCallback(self): ... method __init__ (line 25) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _ScenegraphColumnDescriptionWidget__buildBaseValueFromPanels (line 26) | def _ScenegraphColumnDescriptionWidget__buildBaseValueFromPanels(self)... method _ScenegraphColumnDescriptionWidget__buildExtValueFromPanels (line 27) | def _ScenegraphColumnDescriptionWidget__buildExtValueFromPanels(self) ... method _ScenegraphColumnDescriptionWidget__processGenericAssignAttrs (line 28) | def _ScenegraphColumnDescriptionWidget__processGenericAssignAttrs(self... method _ScenegraphColumnDescriptionWidget__updateModel (line 29) | def _ScenegraphColumnDescriptionWidget__updateModel(self): ... method buildAddMenu (line 30) | def buildAddMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method getColumnPreferenceKeys (line 32) | def getColumnPreferenceKeys(cls) -> None: ... method panelDeleted (line 33) | def panelDeleted(self, index: Unused): ... method panelValueChanged (line 34) | def panelValueChanged(self, index: Unused): ... method updateLabel (line 35) | def updateLabel(self): ... method updatePanels (line 36) | def updatePanels(self): ... class TagEditorPanel (line 38) | class TagEditorPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 39) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, tags: None) -> Non... method _TagEditorPanel__changedCallback (line 40) | def _TagEditorPanel__changedCallback(self, *args): ... method getAttrLocality (line 41) | def getAttrLocality(self) -> str: ... method getBaseValue (line 42) | def getBaseValue(self) -> None: ... method getDisplayType (line 43) | def getDisplayType(self) -> str: ... method getExtValue (line 44) | def getExtValue(self) -> None: ... method getName (line 45) | def getName(self) -> str: ... method getNoneAttrValue (line 46) | def getNoneAttrValue(self) -> str: ... method isVisible (line 47) | def isVisible(self) -> str: ... method updateEnabledState (line 48) | def updateEnabledState(self): ... function buildPreferences (line 50) | def buildPreferences(baseValue: str, extValue: str) -> tuple: ... FILE: katana/stubs/UI4/FormMaster/Editors/ScenegraphLocation.pyi class NewScenegraphLocationEditor (line 17) | class NewScenegraphLocationEditor(ScenegraphLocationEditorBase): method __init__ (line 18) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _menuAboutToShow (line 19) | def _menuAboutToShow(self, menu): ... class ScenegraphLocationEditor (line 21) | class ScenegraphLocationEditor(ScenegraphLocationEditorBase): method __init__ (line 22) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _allowNodeDrops (line 23) | def _allowNodeDrops(self): ... method _menuAboutToShow (line 24) | def _menuAboutToShow(self, menu): ... method valueChangedEvent (line 25) | def valueChangedEvent(self, event): ... class ScenegraphLocationEditorBase (line 27) | class ScenegraphLocationEditorBase(StringFormWidget): method __init__ (line 30) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _ScenegraphLocationEditorBase__collectMenuAboutToShow (line 31) | def _ScenegraphLocationEditorBase__collectMenuAboutToShow(self, menu):... method _ScenegraphLocationEditorBase__loadResources (line 32) | def _ScenegraphLocationEditorBase__loadResources(self): ... method _allowNodeDrops (line 33) | def _allowNodeDrops(self): ... method _filterValueText (line 34) | def _filterValueText(self, text): ... method _menuAboutToShow (line 35) | def _menuAboutToShow(self, qmenu): ... method checkMimeData (line 36) | def checkMimeData(self, data): ... method event (line 37) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method getButtonMenu (line 38) | def getButtonMenu(self): ... method getMimeData (line 39) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method setMimeData (line 40) | def setMimeData(self, data, dropAction): ... FILE: katana/stubs/UI4/FormMaster/Editors/ScenegraphLocationArray.pyi class ScenegraphLocationArrayEditor (line 24) | class ScenegraphLocationArrayEditor(UI4.Widgets.SortablePanel.SortablePa... method __init__ (line 26) | def __init__(self, parent, policy, factory) -> None: ... method _ScenegraphLocationArrayEditor__addPath (line 27) | def _ScenegraphLocationArrayEditor__addPath(self): ... method _ScenegraphLocationArrayEditor__appendNodegraphSelection (line 28) | def _ScenegraphLocationArrayEditor__appendNodegraphSelection(self, mid... method _ScenegraphLocationArrayEditor__appendScenegraphSelection (line 29) | def _ScenegraphLocationArrayEditor__appendScenegraphSelection(self, mi... method _ScenegraphLocationArrayEditor__clearAll (line 30) | def _ScenegraphLocationArrayEditor__clearAll(self): ... method _ScenegraphLocationArrayEditor__expandInScengraph (line 31) | def _ScenegraphLocationArrayEditor__expandInScengraph(self): ... method _ScenegraphLocationArrayEditor__fillCollectMenu (line 32) | def _ScenegraphLocationArrayEditor__fillCollectMenu(self, menu): ... method _ScenegraphLocationArrayEditor__findItemChosen (line 33) | def _ScenegraphLocationArrayEditor__findItemChosen(self, text, meta): ... method _ScenegraphLocationArrayEditor__findPopupAboutToShow (line 34) | def _ScenegraphLocationArrayEditor__findPopupAboutToShow(self): ... method _ScenegraphLocationArrayEditor__getScenegraphSelection (line 35) | def _ScenegraphLocationArrayEditor__getScenegraphSelection(self): ... method _ScenegraphLocationArrayEditor__pageDownButton_CB (line 36) | def _ScenegraphLocationArrayEditor__pageDownButton_CB(self): ... method _ScenegraphLocationArrayEditor__pageUpButton_CB (line 37) | def _ScenegraphLocationArrayEditor__pageUpButton_CB(self): ... method _ScenegraphLocationArrayEditor__replaceNodegraphSelection (line 38) | def _ScenegraphLocationArrayEditor__replaceNodegraphSelection(self): ... method _ScenegraphLocationArrayEditor__replaceScenegraphSelection (line 39) | def _ScenegraphLocationArrayEditor__replaceScenegraphSelection(self): ... method _ScenegraphLocationArrayEditor__updatePageButtons (line 40) | def _ScenegraphLocationArrayEditor__updatePageButtons(self): ... method _popupMenuCreated (line 41) | def _popupMenuCreated(self, menu): ... method addButtonCheckDragEvent (line 42) | def addButtonCheckDragEvent(self, event): ... method addButtonDropEvent (line 43) | def addButtonDropEvent(self, event): ... method buildAddMenu (line 44) | def buildAddMenu(self, menu): ... method getAbsoluteIndexFromRelative (line 45) | def getAbsoluteIndexFromRelative(self, relativeIndex): ... method getNumPages (line 46) | def getNumPages(self): ... method getPageIndex (line 47) | def getPageIndex(self): ... method panelDeleted (line 48) | def panelDeleted(self, relativeIndex): ... method panelReordered (line 49) | def panelReordered(self, relativeOldPos, relativeNewPos): ... method setLocked (line 50) | def setLocked(self, state, checkLockOps: bool = ...): ... method setPageIndex (line 51) | def setPageIndex(self, index): ... method updatePanels (line 52) | def updatePanels(self): ... class ScenegraphLocationPanel (line 54) | class ScenegraphLocationPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 55) | def __init__(self, parent, parentPolicy, index, extraHints: Incomplete... method _ScenegraphLocationPanel__getChildPolicy (line 56) | def _ScenegraphLocationPanel__getChildPolicy(self): ... method getPathWidget (line 57) | def getPathWidget(self): ... method getValuePolicy (line 58) | def getValuePolicy(self): ... method setLocked (line 59) | def setLocked(self, state): ... method setPolicyIndex (line 60) | def setPolicyIndex(self, index): ... FILE: katana/stubs/UI4/FormMaster/Editors/ScriptButton.pyi class ScriptButtonFormWidget (line 15) | class ScriptButtonFormWidget(FormWidget): method __init__ (line 16) | def __init__(self, parent, policy, factory) -> None: ... method _ScriptButtonFormWidget__clicked (line 17) | def _ScriptButtonFormWidget__clicked(self): ... method _buildControlWidget (line 18) | def _buildControlWidget(self, layout): ... method _thaw (line 19) | def _thaw(self): ... method contextMenuEvent (line 20) | def contextMenuEvent(self, event): ... method setLabelWidth (line 21) | def setLabelWidth(self, width): ... class ScriptToolbarFormWidget (line 23) | class ScriptToolbarFormWidget(FormWidget): class _ToolbarButton (line 24) | class _ToolbarButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 26) | def __init__(self, parent, name: str = ..., iconPath: Incomplete | N... method _ToolbarButton__clicked (line 27) | def _ToolbarButton__clicked(self): ... method __init__ (line 28) | def __init__(self, parent, policy, factory) -> None: ... method _ScriptToolbarFormWidget__runScript (line 29) | def _ScriptToolbarFormWidget__runScript(self, button, scriptText): ... method _buildControlWidget (line 30) | def _buildControlWidget(self, layout): ... method contextMenuEvent (line 31) | def contextMenuEvent(self, event): ... method setLabelWidth (line 32) | def setLabelWidth(self, width): ... FILE: katana/stubs/UI4/FormMaster/Editors/ScriptEditor.pyi class ExternalEditSessionError (line 22) | class ExternalEditSessionError(Exception): method __init__ (line 23) | def __init__(self, message, underlyingException: Incomplete | None = .... class ExternalEditSessionRegistry (line 25) | class ExternalEditSessionRegistry(PyQt5.QtCore.QObject): method __init__ (line 29) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _ExternalEditSessionRegistry__addEditSession (line 30) | def _ExternalEditSessionRegistry__addEditSession(self, editSession): ... method _ExternalEditSessionRegistry__createTemporaryFileWithContents (line 31) | def _ExternalEditSessionRegistry__createTemporaryFileWithContents(self... method _ExternalEditSessionRegistry__emitStateChangeSignalForEditSession (line 32) | def _ExternalEditSessionRegistry__emitStateChangeSignalForEditSession(... method _ExternalEditSessionRegistry__ensureExternalFilesDirectoryExists (line 33) | def _ExternalEditSessionRegistry__ensureExternalFilesDirectoryExists(s... method _ExternalEditSessionRegistry__getEditSessionForFilename (line 34) | def _ExternalEditSessionRegistry__getEditSessionForFilename(self, file... method _ExternalEditSessionRegistry__getEditSessionForParameterKey (line 35) | def _ExternalEditSessionRegistry__getEditSessionForParameterKey(self, ... method _ExternalEditSessionRegistry__getEditSessionsForNode (line 36) | def _ExternalEditSessionRegistry__getEditSessionsForNode(self, node: N... method _ExternalEditSessionRegistry__getExternalFileContentsForEditSession (line 37) | def _ExternalEditSessionRegistry__getExternalFileContentsForEditSessio... method _ExternalEditSessionRegistry__getExternalFilesDirectory (line 38) | def _ExternalEditSessionRegistry__getExternalFilesDirectory(self): ... method _ExternalEditSessionRegistry__isMonitoringEditSession (line 39) | def _ExternalEditSessionRegistry__isMonitoringEditSession(self, editSe... method _ExternalEditSessionRegistry__launchExternalEditorForSession (line 40) | def _ExternalEditSessionRegistry__launchExternalEditorForSession(self,... method _ExternalEditSessionRegistry__onSceneLoad (line 41) | def _ExternalEditSessionRegistry__onSceneLoad(self): ... method _ExternalEditSessionRegistry__on_fileSystemWatcher_directoryChanged (line 42) | def _ExternalEditSessionRegistry__on_fileSystemWatcher_directoryChange... method _ExternalEditSessionRegistry__on_fileSystemWatcher_fileChanged (line 43) | def _ExternalEditSessionRegistry__on_fileSystemWatcher_fileChanged(sel... method _ExternalEditSessionRegistry__on_node_delete (line 44) | def _ExternalEditSessionRegistry__on_node_delete(self, eventType, even... method _ExternalEditSessionRegistry__on_qtimer_timeout (line 45) | def _ExternalEditSessionRegistry__on_qtimer_timeout(self): ... method _ExternalEditSessionRegistry__refreshStaleSessions (line 46) | def _ExternalEditSessionRegistry__refreshStaleSessions(self): ... method _ExternalEditSessionRegistry__removeEditSession (line 47) | def _ExternalEditSessionRegistry__removeEditSession(self, editSession)... method _ExternalEditSessionRegistry__rescanDirectory (line 48) | def _ExternalEditSessionRegistry__rescanDirectory(self, directoryPath:... method _ExternalEditSessionRegistry__setEditSessionIsStale (line 49) | def _ExternalEditSessionRegistry__setEditSessionIsStale(self, editSess... method beginEditingParameterExternally (line 50) | def beginEditingParameterExternally(self, parameter, initialValue, tem... method endEditingParameterExternally (line 51) | def endEditingParameterExternally(self, parameter): ... method getExternalFileContentsForParameter (line 52) | def getExternalFileContentsForParameter(self, parameter) -> str | None... method getInstance (line 54) | def getInstance(cls): ... method isParameterEditedExternally (line 55) | def isParameterEditedExternally(self, parameter): ... class ScriptEditorFormWidget (line 57) | class ScriptEditorFormWidget(TextFormWidget): method __init__ (line 58) | def __init__(self, parent, policy, factory) -> None: ... method _ScriptEditorFormWidget__endExternalEditSession (line 59) | def _ScriptEditorFormWidget__endExternalEditSession(self): ... method _ScriptEditorFormWidget__getPolicyValue (line 60) | def _ScriptEditorFormWidget__getPolicyValue(self): ... method _ScriptEditorFormWidget__isBeingEditedExternally (line 61) | def _ScriptEditorFormWidget__isBeingEditedExternally(self): ... method _ScriptEditorFormWidget__isPolicyValueReadOnly (line 62) | def _ScriptEditorFormWidget__isPolicyValueReadOnly(self): ... method _ScriptEditorFormWidget__on_editSessionRegistry_externalEditStateChanged (line 63) | def _ScriptEditorFormWidget__on_editSessionRegistry_externalEditStateC... method _ScriptEditorFormWidget__on_externalEditButton_clicked (line 64) | def _ScriptEditorFormWidget__on_externalEditButton_clicked(self): ... method _ScriptEditorFormWidget__on_pref_changed (line 65) | def _ScriptEditorFormWidget__on_pref_changed(self, eventType: str | No... method _ScriptEditorFormWidget__refreshWidgetState (line 66) | def _ScriptEditorFormWidget__refreshWidgetState(self): ... method _ScriptEditorFormWidget__setExternalEditButtonText (line 67) | def _ScriptEditorFormWidget__setExternalEditButtonText(self): ... method _ScriptEditorFormWidget__setPolicyValue (line 68) | def _ScriptEditorFormWidget__setPolicyValue(self, newValue): ... method _ScriptEditorFormWidget__setPolicyValueReadOnly (line 69) | def _ScriptEditorFormWidget__setPolicyValueReadOnly(self, isReadOnly: ... method _buildControlWidget (line 70) | def _buildControlWidget(self, layout): ... method setLabelWidth (line 71) | def setLabelWidth(self, width): ... method showExternalEditor (line 72) | def showExternalEditor(self): ... class _EditSession (line 74) | class _EditSession: method __init__ (line 75) | def __init__(self, parameterKey, filename, fileContents) -> None: ... class _ParameterKey (line 77) | class _ParameterKey: method __init__ (line 78) | def __init__(self, node: NodegraphAPI.Node, parameterName) -> None: ... method fromParameter (line 80) | def fromParameter(cls, parameter): ... method __eq__ (line 81) | def __eq__(self, other) -> bool: ... method __hash__ (line 82) | def __hash__(self) -> int: ... FILE: katana/stubs/UI4/FormMaster/Editors/SeparatorFormWidget.pyi class SeparatorFormWidget (line 10) | class SeparatorFormWidget(FormWidget): method __init__ (line 11) | def __init__(self, parent, policy, factory) -> None: ... method _buildControlWidget (line 12) | def _buildControlWidget(self, layout): ... method _buildLabel (line 13) | def _buildLabel(self, text): ... method _destroyLabel (line 14) | def _destroyLabel(self): ... method setHeight (line 15) | def setHeight(self, height): ... method setSeparatorLabel (line 16) | def setSeparatorLabel(self, text): ... FILE: katana/stubs/UI4/FormMaster/Editors/ShaderPopup.pyi class ShaderPopupFormWidget (line 18) | class ShaderPopupFormWidget(BaseValueFormWidget): method __init__ (line 19) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, policy: QT4FormWid... method _ShaderPopupFormWidget__browseCallback (line 20) | def _ShaderPopupFormWidget__browseCallback(self): ... method _ShaderPopupFormWidget__on_shaderComboBox_itemChosen (line 21) | def _ShaderPopupFormWidget__on_shaderComboBox_itemChosen(self, text: s... method _buildControlWidget (line 22) | def _buildControlWidget(self, layout): ... method _buildLabel (line 23) | def _buildLabel(self, labelText, pos: int = ...): ... method _lockChanged (line 24) | def _lockChanged(self, state): ... method _updateControlWidget (line 25) | def _updateControlWidget(self): ... class ShaderTypeMenuWidget (line 27) | class ShaderTypeMenuWidget(FormWidget): method __init__ (line 28) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _ShaderTypeMenuWidget__addMenuItem (line 29) | def _ShaderTypeMenuWidget__addMenuItem(self, item, renderer: Incomplet... method _ShaderTypeMenuWidget__getRenderInfoPlugin (line 30) | def _ShaderTypeMenuWidget__getRenderInfoPlugin(self, rendererName): ... method _ShaderTypeMenuWidget__selectShaderType (line 31) | def _ShaderTypeMenuWidget__selectShaderType(self, materialType, render... method _lockChanged (line 32) | def _lockChanged(self, state): ... method _thaw (line 33) | def _thaw(self): ... method refresh (line 34) | def refresh(self): ... class ShaderTypePopupFormWidget (line 36) | class ShaderTypePopupFormWidget(FilterablePopupFormWidget): class ShaderTypePopupButton (line 37) | class ShaderTypePopupButton(PopupButton): method _buildPopupWindow (line 38) | def _buildPopupWindow(self): ... method __init__ (line 39) | def __init__(self, parent, policy, factory) -> None: ... method _ShaderTypePopupFormWidget__itemChosen (line 40) | def _ShaderTypePopupFormWidget__itemChosen(self): ... method _buildPopupButton (line 41) | def _buildPopupButton(self): ... class SimpleMenuWidget (line 43) | class SimpleMenuWidget(FormWidget): method __init__ (line 44) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _SimpleMenuWidget__addMenuItem (line 45) | def _SimpleMenuWidget__addMenuItem(self, item): ... method _SimpleMenuWidget__selectType (line 46) | def _SimpleMenuWidget__selectType(self, item): ... method refresh (line 47) | def refresh(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/ShadingNetworkMaterialAppendNodeName.pyi class NetworkMaterialSpliceNodeName (line 11) | class NetworkMaterialSpliceNodeName(StringFormWidget): method __init__ (line 12) | def __init__(self, parent, policy, factory) -> None: ... method _NetworkMaterialSpliceNodeName__getNetworkAttr (line 13) | def _NetworkMaterialSpliceNodeName__getNetworkAttr(self): ... method _NetworkMaterialSpliceNodeName__nodePortChosen (line 14) | def _NetworkMaterialSpliceNodeName__nodePortChosen(self, nodeName, por... method _buildControlWidget (line 15) | def _buildControlWidget(self, layout): ... class ShadingNetworkNodesAttributeGroupWidget (line 17) | class ShadingNetworkNodesAttributeGroupWidget(GroupFormWidget): method _ShadingNetworkNodesAttributeGroupWidget__getNetworkAttr (line 18) | def _ShadingNetworkNodesAttributeGroupWidget__getNetworkAttr(self): ... method _buildControlWidget (line 19) | def _buildControlWidget(self, layout): ... FILE: katana/stubs/UI4/FormMaster/Editors/ShadingNetworkMaterialInterfaceOrder.pyi class AttrSourceStateSource (line 21) | class AttrSourceStateSource(PyQt5.QtCore.QObject): method __init__ (line 22) | def __init__(self, prefix, attrSource) -> None: ... method getHints (line 23) | def getHints(self, path): ... class ShadingNetworkMaterialInterfaceOrderFormWidget (line 25) | class ShadingNetworkMaterialInterfaceOrderFormWidget(FormWidget): class _ShadingNetworkMaterialInterfaceOrderFormWidget__TreeDelegate (line 26) | class _ShadingNetworkMaterialInterfaceOrderFormWidget__TreeDelegate(QT... method _TreeDelegate__buildPalette (line 28) | def _TreeDelegate__buildPalette(self, palette): ... method paint (line 29) | def paint(self, painter, option, index): ... method __init__ (line 30) | def __init__(self, parent, policy, factory) -> None: ... method _ShadingNetworkMaterialInterfaceOrderFormWidget__aboutToDragCallback (line 31) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__aboutToDragCallba... method _ShadingNetworkMaterialInterfaceOrderFormWidget__addTreePolicy (line 32) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__addTreePolicy(sel... method _ShadingNetworkMaterialInterfaceOrderFormWidget__buildFromCurrentState (line 33) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__buildFromCurrentS... method _ShadingNetworkMaterialInterfaceOrderFormWidget__dragMoveEventCallback (line 34) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__dragMoveEventCall... method _ShadingNetworkMaterialInterfaceOrderFormWidget__dropEventCallback (line 35) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__dropEventCallback... method _ShadingNetworkMaterialInterfaceOrderFormWidget__getDragSlices (line 36) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__getDragSlices(sel... method _ShadingNetworkMaterialInterfaceOrderFormWidget__getFirstNonPageIndex (line 37) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__getFirstNonPageIn... method _ShadingNetworkMaterialInterfaceOrderFormWidget__getSliceCount (line 38) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__getSliceCount(sel... method _ShadingNetworkMaterialInterfaceOrderFormWidget__jumpToSource (line 39) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__jumpToSource(self... method _ShadingNetworkMaterialInterfaceOrderFormWidget__listMousePressEvent (line 40) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__listMousePressEve... method _ShadingNetworkMaterialInterfaceOrderFormWidget__menuAboutToShow (line 41) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__menuAboutToShow(s... method _ShadingNetworkMaterialInterfaceOrderFormWidget__treeContextMenuCallback (line 42) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__treeContextMenuCa... method _ShadingNetworkMaterialInterfaceOrderFormWidget__updateTree (line 43) | def _ShadingNetworkMaterialInterfaceOrderFormWidget__updateTree(self):... method _buildLabel (line 44) | def _buildLabel(self, labelText, pos: int = ...): ... method _buildTopAreaLayout (line 45) | def _buildTopAreaLayout(self, layout): ... method showPopdown (line 46) | def showPopdown(self, value: bool): ... method valueChangedEvent (line 47) | def valueChangedEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/Editors/ShadingNetworkPopupButton.pyi class ErrorMessageWarningLabel (line 23) | class ErrorMessageWarningLabel(PyQt5.QtWidgets.QFrame): method __init__ (line 24) | def __init__(self, parent, errorText) -> None: ... class NodegraphWidgetLite (line 26) | class NodegraphWidgetLite(BaseNodeGraphLayerStack): method __init__ (line 30) | def __init__(self, parent, node: NodegraphAPI.Node, restrictPortType: ... method _NodegraphWidgetLite__getMenuPopup (line 31) | def _NodegraphWidgetLite__getMenuPopup(self): ... method _NodegraphWidgetLite__nodeLinkClick (line 32) | def _NodegraphWidgetLite__nodeLinkClick(self, node: NodegraphAPI.Node,... method _NodegraphWidgetLite__nodePortClick (line 33) | def _NodegraphWidgetLite__nodePortClick(self, node: NodegraphAPI.Node,... method _NodegraphWidgetLite__portMenuItemChosen (line 34) | def _NodegraphWidgetLite__portMenuItemChosen(self, item, meta): ... method _NodegraphWidgetLite__showMenuPopup (line 35) | def _NodegraphWidgetLite__showMenuPopup(self, x, y): ... method event (line 36) | def event(self, e): ... method fillPortMenu (line 37) | def fillPortMenu(self, menu, node: NodegraphAPI.Node, isInput, onlyCon... method frameAll (line 38) | def frameAll(self): ... method getCurrentNodeView (line 39) | def getCurrentNodeView(self): ... method getNode (line 40) | def getNode(self) -> NodegraphAPI.Node: ... method getNodeDisplayName (line 41) | def getNodeDisplayName(self, node: NodegraphAPI.Node): ... method getWorldBounds (line 42) | def getWorldBounds(self): ... method hideEvent (line 43) | def hideEvent(self, event): ... method hitTestForTypeWithOptions (line 44) | def hitTestForTypeWithOptions(self, p, hitType, *args): ... method hitTestPoint (line 45) | def hitTestPoint(self, p): ... method idleUpdate (line 46) | def idleUpdate(self): ... method removeLayers (line 47) | def removeLayers(self): ... method resizeEvent (line 48) | def resizeEvent(self, evt): ... class ShadingNetworkPopupButton (line 50) | class ShadingNetworkPopupButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 54) | def __init__(self, parent, restrictPortType: Incomplete | None = ..., ... method _ShadingNetworkPopupButton__buildPopup (line 55) | def _ShadingNetworkPopupButton__buildPopup(self): ... method _ShadingNetworkPopupButton__getNetworkHash (line 56) | def _ShadingNetworkPopupButton__getNetworkHash(self): ... method _ShadingNetworkPopupButton__nodePortChosen (line 57) | def _ShadingNetworkPopupButton__nodePortChosen(self, nodeName, portTyp... method _ShadingNetworkPopupButton__popClicked (line 58) | def _ShadingNetworkPopupButton__popClicked(self): ... method _ShadingNetworkPopupButton__popupClosed (line 59) | def _ShadingNetworkPopupButton__popupClosed(self): ... method _ShadingNetworkPopupButton__popupShow (line 60) | def _ShadingNetworkPopupButton__popupShow(self): ... method hidePopup (line 61) | def hidePopup(self): ... class _HidingVBox (line 63) | class _HidingVBox(PyQt5.QtWidgets.QFrame): method __init__ (line 68) | def __init__(self) -> None: ... method closeEvent (line 69) | def closeEvent(self, e): ... method hideEvent (line 70) | def hideEvent(self, e): ... method showEvent (line 71) | def showEvent(self, e): ... class _NodeDrawingLayer (line 73) | class _NodeDrawingLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 74) | def __init__(self, *args, **kwargs) -> None: ... method paintGL (line 75) | def paintGL(self): ... class _PortInteractionLayer (line 77) | class _PortInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 80) | def __init__(self, *args, **kwargs) -> None: ... method _PortInteractionLayer__getNodeAndArrowShapeAt (line 81) | def _PortInteractionLayer__getNodeAndArrowShapeAt(self, position: None... method _PortInteractionLayer__processKeyPress (line 82) | def _PortInteractionLayer__processKeyPress(self, event: PyQt5.QtGui.QK... method _PortInteractionLayer__processMouseMove (line 83) | def _PortInteractionLayer__processMouseMove(self, event: PyQt5.QtGui.Q... method _PortInteractionLayer__processMousePress (line 84) | def _PortInteractionLayer__processMousePress(self, event: PyQt5.QtGui.... method paintGL (line 85) | def paintGL(self): ... method processEvent (line 86) | def processEvent(self, event: PyQt5.QtGui.QEvent): ... FILE: katana/stubs/UI4/FormMaster/Editors/ShadingNodeConnectedParameter.pyi class ShadingNodeConnectedParameterFormWidget (line 13) | class ShadingNodeConnectedParameterFormWidget(FormWidget): method __init__ (line 14) | def __init__(self, parent, policy, factory) -> None: ... method _ShadingNodeConnectedParameterFormWidget__jumpButtonClick (line 15) | def _ShadingNodeConnectedParameterFormWidget__jumpButtonClick(self): ... method _ShadingNodeConnectedParameterFormWidget__updateLabel (line 16) | def _ShadingNodeConnectedParameterFormWidget__updateLabel(self): ... method _buildControlWidget (line 17) | def _buildControlWidget(self, layout): ... FILE: katana/stubs/UI4/FormMaster/Editors/ShadingNodeSubnet.pyi class ShadingNodeSubnetInterfaceOrderFormWidget (line 16) | class ShadingNodeSubnetInterfaceOrderFormWidget(FormWidget): method __init__ (line 17) | def __init__(self, parent, policy, factory) -> None: ... method _ShadingNodeSubnetInterfaceOrderFormWidget__aboutToDragCallback (line 18) | def _ShadingNodeSubnetInterfaceOrderFormWidget__aboutToDragCallback(se... method _ShadingNodeSubnetInterfaceOrderFormWidget__dragMoveEventCallback (line 19) | def _ShadingNodeSubnetInterfaceOrderFormWidget__dragMoveEventCallback(... method _ShadingNodeSubnetInterfaceOrderFormWidget__dropEventCallback (line 20) | def _ShadingNodeSubnetInterfaceOrderFormWidget__dropEventCallback(self... method _ShadingNodeSubnetInterfaceOrderFormWidget__findItemIndex (line 21) | def _ShadingNodeSubnetInterfaceOrderFormWidget__findItemIndex(self, it... method _ShadingNodeSubnetInterfaceOrderFormWidget__getParameterDrop (line 22) | def _ShadingNodeSubnetInterfaceOrderFormWidget__getParameterDrop(self,... method _ShadingNodeSubnetInterfaceOrderFormWidget__getSliceCount (line 23) | def _ShadingNodeSubnetInterfaceOrderFormWidget__getSliceCount(self, it... method _ShadingNodeSubnetInterfaceOrderFormWidget__jumpToSource (line 24) | def _ShadingNodeSubnetInterfaceOrderFormWidget__jumpToSource(self): ... method _ShadingNodeSubnetInterfaceOrderFormWidget__listMousePressEvent (line 25) | def _ShadingNodeSubnetInterfaceOrderFormWidget__listMousePressEvent(se... method _ShadingNodeSubnetInterfaceOrderFormWidget__menuAboutToShow (line 26) | def _ShadingNodeSubnetInterfaceOrderFormWidget__menuAboutToShow(self, ... method _ShadingNodeSubnetInterfaceOrderFormWidget__treeContextMenuCallback (line 27) | def _ShadingNodeSubnetInterfaceOrderFormWidget__treeContextMenuCallbac... method _ShadingNodeSubnetInterfaceOrderFormWidget__updateTree (line 28) | def _ShadingNodeSubnetInterfaceOrderFormWidget__updateTree(self): ... method _buildLabel (line 29) | def _buildLabel(self, labelText, pos: int = ...): ... method valueChangedEvent (line 30) | def valueChangedEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/Editors/SortableArray.pyi class SortableArrayEditor (line 11) | class SortableArrayEditor(UI4.Widgets.SortablePanel.SortablePanelFormWid... method __init__ (line 12) | def __init__(self, parent, policy, factory) -> None: ... method _SortableArrayEditor__getArrayChild (line 13) | def _SortableArrayEditor__getArrayChild(self, i): ... method _SortableArrayEditor__isArray (line 14) | def _SortableArrayEditor__isArray(self): ... method buildAddMenu (line 15) | def buildAddMenu(self, menu): ... method getArrayPanelClass (line 16) | def getArrayPanelClass(self): ... method newEntry (line 17) | def newEntry(self): ... method panelDeleted (line 18) | def panelDeleted(self, index): ... method panelReordered (line 19) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 20) | def updatePanels(self): ... class SortableArrayPanel (line 22) | class SortableArrayPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 23) | def __init__(self, parent, policy, factory) -> None: ... method getFormWidget (line 24) | def getFormWidget(self): ... method getPolicy (line 25) | def getPolicy(self): ... class _HintWrapperPolicyProxy (line 27) | class _HintWrapperPolicyProxy(QT4FormWidgets.ValuePolicy.ValuePolicyProxy): method __init__ (line 28) | def __init__(self, policy, extraHints) -> None: ... method getWidgetHints (line 29) | def getWidgetHints(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/SortableAttributeDropEditor.pyi class AttributeEntryPanel (line 18) | class AttributeEntryPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 20) | def __init__(self, parent, name, policy, widgetFactory) -> None: ... method _AttributeEntryPanel__buildWrenchMenu (line 21) | def _AttributeEntryPanel__buildWrenchMenu(self): ... method _AttributeEntryPanel__pathChangedEvent (line 22) | def _AttributeEntryPanel__pathChangedEvent(self, event): ... method _AttributeEntryPanel__rename (line 23) | def _AttributeEntryPanel__rename(self): ... method freeze (line 24) | def freeze(self): ... method getValuePolicy (line 25) | def getValuePolicy(self): ... method getWidget (line 26) | def getWidget(self): ... method thaw (line 27) | def thaw(self): ... class OverrideRenameDialog (line 29) | class OverrideRenameDialog(UI4.FormMaster.Editors.UserParametersDialogs.... method getValidatingRegex (line 30) | def getValidatingRegex(self): ... class SortableAttributeDropEditor (line 32) | class SortableAttributeDropEditor(UI4.Widgets.SortablePanel.SortablePane... method __init__ (line 33) | def __init__(self, parent, policy, factory) -> None: ... method _SortableAttributeDropEditor__attrDropped (line 34) | def _SortableAttributeDropEditor__attrDropped(self, attr, path, hints)... method _SortableAttributeDropEditor__checkAttrIsValid (line 35) | def _SortableAttributeDropEditor__checkAttrIsValid(self, attr): ... method _SortableAttributeDropEditor__displayDuplicateEntryWarning (line 36) | def _SortableAttributeDropEditor__displayDuplicateEntryWarning(self, d... method _SortableAttributeDropEditor__getAcceptablePath (line 37) | def _SortableAttributeDropEditor__getAcceptablePath(self, path): ... method _SortableAttributeDropEditor__getAcceptablePathDisplayName (line 38) | def _SortableAttributeDropEditor__getAcceptablePathDisplayName(self): ... method _SortableAttributeDropEditor__getOverrideAttributeEntries (line 39) | def _SortableAttributeDropEditor__getOverrideAttributeEntries(self): ... method _SortableAttributeDropEditor__getRootPolicy (line 40) | def _SortableAttributeDropEditor__getRootPolicy(self): ... method _SortableAttributeDropEditor__menuAction (line 41) | def _SortableAttributeDropEditor__menuAction(self, action): ... method _SortableAttributeDropEditor__on_attrDropped (line 42) | def _SortableAttributeDropEditor__on_attrDropped(self, attr, path, hin... method _SortableAttributeDropEditor__on_attrDroppedWithCoAttributes (line 43) | def _SortableAttributeDropEditor__on_attrDroppedWithCoAttributes(self,... method _buildControlWidget (line 44) | def _buildControlWidget(self, hbox): ... method _freeze (line 45) | def _freeze(self): ... method _thaw (line 46) | def _thaw(self): ... method buildAddMenu (line 47) | def buildAddMenu(self, menu): ... method panelDeleted (line 48) | def panelDeleted(self, index): ... method panelReordered (line 49) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 50) | def updatePanels(self): ... FILE: katana/stubs/UI4/FormMaster/Editors/SortableDelimitedString.pyi class SortableDelimitedStringFormWidget (line 9) | class SortableDelimitedStringFormWidget(UI4.Widgets.SortablePanel.Sortab... method __init__ (line 10) | def __init__(self, parent, policy, factory) -> None: ... method _SortableDelimitedStringFormWidget__setValue (line 11) | def _SortableDelimitedStringFormWidget__setValue(self): ... method _SortableDelimitedStringFormWidget__toggleExpression (line 12) | def _SortableDelimitedStringFormWidget__toggleExpression(self): ... method buildAddMenu (line 13) | def buildAddMenu(self, menu): ... method newEntry (line 14) | def newEntry(self): ... method panelDeleted (line 15) | def panelDeleted(self, index): ... method panelReordered (line 16) | def panelReordered(self, oldPos, newPos): ... method panelValueChanged (line 17) | def panelValueChanged(self, index): ... method updatePanels (line 18) | def updatePanels(self): ... class StringPanel (line 20) | class StringPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 21) | def __init__(self, parent, value, numbers, factory, hints) -> None: ... method _StringPanel__valueChanged (line 22) | def _StringPanel__valueChanged(self, *args, **kwds): ... method getValue (line 23) | def getValue(self): ... method setValue (line 24) | def setValue(self, text): ... FILE: katana/stubs/UI4/FormMaster/Editors/SortableGroups.pyi class SortableGroupsForm (line 7) | class SortableGroupsForm(UI4.Widgets.SortableGroups.SortableGroupsFormWi... FILE: katana/stubs/UI4/FormMaster/Editors/SortableParams.pyi class SortableParamsForm (line 7) | class SortableParamsForm(UI4.Widgets.SortableParams.SortableParamsFormWi... FILE: katana/stubs/UI4/FormMaster/Editors/Teleparam.pyi class NodeOrParameterDropLabel (line 13) | class NodeOrParameterDropLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 15) | def __init__(self, parent) -> None: ... method dragEnterEvent (line 16) | def dragEnterEvent(self, event): ... method dropEvent (line 17) | def dropEvent(self, event): ... class TeleparamWidget (line 19) | class TeleparamWidget(FormWidget): method __init__ (line 20) | def __init__(self, parent, policy, factory) -> None: ... method _TeleparamWidget__buildHostedWidget (line 21) | def _TeleparamWidget__buildHostedWidget(self): ... method _TeleparamWidget__paramDropped (line 22) | def _TeleparamWidget__paramDropped(self, path): ... method _buildControlWidget (line 23) | def _buildControlWidget(self, hbox): ... method _buildTopAreaLayout (line 24) | def _buildTopAreaLayout(self, layout): ... method _freeze (line 25) | def _freeze(self): ... method _thaw (line 26) | def _thaw(self): ... method decorateUserParameterFrame (line 27) | def decorateUserParameterFrame(self, parent): ... method valueChangedEvent (line 28) | def valueChangedEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/Editors/TeleportNode.pyi class InputPanel (line 16) | class InputPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 17) | def __init__(self, parent, name) -> None: ... method _InputPanel__valueChangedCallback (line 18) | def _InputPanel__valueChangedCallback(self): ... method getPortName (line 19) | def getPortName(self): ... method setPortName (line 20) | def setPortName(self, name): ... class TeleportEditor (line 22) | class TeleportEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFormWidget): method __init__ (line 23) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _TeleportEditor__clicked (line 24) | def _TeleportEditor__clicked(self): ... class TeleportInputEditor (line 26) | class TeleportInputEditor(UI4.Widgets.SortablePanel.SortablePanelFormWid... method __init__ (line 27) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _TeleportInputEditor__getEventTarget (line 28) | def _TeleportInputEditor__getEventTarget(self): ... method _TeleportInputEditor__getNode (line 29) | def _TeleportInputEditor__getNode(self): ... method _TeleportInputEditor__idle_callback (line 30) | def _TeleportInputEditor__idle_callback(self, *args, **kwargs): ... method _TeleportInputEditor__node_addOrRemoveOutputPort_cb (line 31) | def _TeleportInputEditor__node_addOrRemoveOutputPort_cb(self, *args, *... method _TeleportInputEditor__node_renameOutputPort_cb (line 32) | def _TeleportInputEditor__node_renameOutputPort_cb(self, *args, **kwar... method addInput (line 33) | def addInput(self): ... method buildAddMenu (line 34) | def buildAddMenu(self, menu): ... method deleteInput (line 35) | def deleteInput(self, index): ... method deletePanel (line 36) | def deletePanel(self, index): ... method panelReordered (line 37) | def panelReordered(self, oldPos, newPos): ... method panelValueChanged (line 38) | def panelValueChanged(self, index): ... method renameInput (line 39) | def renameInput(self, index, newName): ... method valueChanged (line 40) | def valueChanged(self, valuePolicy, index, final): ... FILE: katana/stubs/UI4/FormMaster/Editors/TexturesGroup.pyi class FacesetTexturesDialog (line 14) | class FacesetTexturesDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 15) | def __init__(self, producer: PyFnGeolibProducers.GeometryProducer) -> ... method _FacesetTexturesDialog__viewSelected (line 16) | def _FacesetTexturesDialog__viewSelected(self): ... class TexturesGroupFormWidget (line 18) | class TexturesGroupFormWidget(GroupFormWidget): method _TexturesGroupFormWidget__facesetInterpret (line 19) | def _TexturesGroupFormWidget__facesetInterpret(self): ... method _TexturesGroupFormWidget__update (line 20) | def _TexturesGroupFormWidget__update(self, eventType, scenegraphID, is... method _buildControlWidget (line 21) | def _buildControlWidget(self, layout): ... FILE: katana/stubs/UI4/FormMaster/Editors/Transform3DNodeEditor.pyi class Transform3DNodeEditor (line 14) | class Transform3DNodeEditor(UI4.FormMaster.Editors.NodeGroup.NodeGroupFo... method __init__ (line 15) | def __init__(self, parent, valuePolicy, widgetFactory) -> None: ... method _Transform3DNodeEditor__copyTransform (line 16) | def _Transform3DNodeEditor__copyTransform(self, *args): ... method _Transform3DNodeEditor__doIdle (line 17) | def _Transform3DNodeEditor__doIdle(self, *args, **kwargs): ... method _Transform3DNodeEditor__fitBounds (line 18) | def _Transform3DNodeEditor__fitBounds(self, *args): ... method _Transform3DNodeEditor__getExistingTransform (line 19) | def _Transform3DNodeEditor__getExistingTransform(self): ... method _Transform3DNodeEditor__getInputTransform (line 20) | def _Transform3DNodeEditor__getInputTransform(self): ... method _Transform3DNodeEditor__paneButtonAboutToShow (line 21) | def _Transform3DNodeEditor__paneButtonAboutToShow(self, menu): ... method _Transform3DNodeEditor__resetTransform (line 22) | def _Transform3DNodeEditor__resetTransform(self, *args): ... method _Transform3DNodeEditor__setTransformFromMatrix (line 23) | def _Transform3DNodeEditor__setTransformFromMatrix(self, matrix): ... method _Transform3DNodeEditor__snapToWorldPos (line 24) | def _Transform3DNodeEditor__snapToWorldPos(self, *args): ... method _lockChanged (line 25) | def _lockChanged(self, state): ... FILE: katana/stubs/UI4/FormMaster/Editors/UserParameters.pyi class ChildParameterPanel (line 20) | class ChildParameterPanel(UI4.Widgets.SortablePanel.ParameterSortablePan... method __init__ (line 21) | def __init__(self, parent, name, policy, widgetFactory, panelArgs: Inc... method _ChildParameterPanel__buildWrenchMenu (line 22) | def _ChildParameterPanel__buildWrenchMenu(self): ... method _ChildParameterPanel__childWidgetVisChange (line 23) | def _ChildParameterPanel__childWidgetVisChange(self, state, w): ... method _ChildParameterPanel__editConditionalLock (line 24) | def _ChildParameterPanel__editConditionalLock(self): ... method _ChildParameterPanel__editConditionalState (line 25) | def _ChildParameterPanel__editConditionalState(self, hintType, windowT... method _ChildParameterPanel__editConditionalVisibility (line 26) | def _ChildParameterPanel__editConditionalVisibility(self): ... method _ChildParameterPanel__editHelpTextCallback (line 27) | def _ChildParameterPanel__editHelpTextCallback(self): ... method _ChildParameterPanel__editWidgetOptions (line 28) | def _ChildParameterPanel__editWidgetOptions(self): ... method _ChildParameterPanel__getHints (line 29) | def _ChildParameterPanel__getHints(self): ... method _ChildParameterPanel__renameParameter (line 30) | def _ChildParameterPanel__renameParameter(self): ... method _ChildParameterPanel__widgetTypeTriggered (line 31) | def _ChildParameterPanel__widgetTypeTriggered(self, action): ... method getValuePolicy (line 32) | def getValuePolicy(self): ... method getWidget (line 33) | def getWidget(self): ... class UndoableAction (line 35) | class UndoableAction: method __init__ (line 36) | def __init__(self, name, callback) -> None: ... method __call__ (line 37) | def __call__(self): ... class UserParametersEditor (line 39) | class UserParametersEditor(UI4.Widgets.SortablePanel.ParameterSortablePa... method __init__ (line 41) | def __init__(self, parent, policy, factory) -> None: ... method _UserParametersEditor__addButtonParameter (line 42) | def _UserParametersEditor__addButtonParameter(self): ... method _UserParametersEditor__addCapsuleParameter (line 43) | def _UserParametersEditor__addCapsuleParameter(self): ... method _UserParametersEditor__addColorGradientParameter (line 44) | def _UserParametersEditor__addColorGradientParameter(self): ... method _UserParametersEditor__addColorParameterRGB (line 45) | def _UserParametersEditor__addColorParameterRGB(self): ... method _UserParametersEditor__addColorParameterRGBA (line 46) | def _UserParametersEditor__addColorParameterRGBA(self): ... method _UserParametersEditor__addColorRampParameter (line 47) | def _UserParametersEditor__addColorRampParameter(self): ... method _UserParametersEditor__addFloatRampParameter (line 48) | def _UserParametersEditor__addFloatRampParameter(self): ... method _UserParametersEditor__addFloatVectorParameter (line 49) | def _UserParametersEditor__addFloatVectorParameter(self): ... method _UserParametersEditor__addGroupParameter (line 50) | def _UserParametersEditor__addGroupParameter(self): ... method _UserParametersEditor__addNodeDropProxyParameter (line 51) | def _UserParametersEditor__addNodeDropProxyParameter(self): ... method _UserParametersEditor__addNumberArrayParameter (line 52) | def _UserParametersEditor__addNumberArrayParameter(self): ... method _UserParametersEditor__addNumberParameter (line 53) | def _UserParametersEditor__addNumberParameter(self): ... method _UserParametersEditor__addSeparator (line 54) | def _UserParametersEditor__addSeparator(self): ... method _UserParametersEditor__addStringArrayParameter (line 55) | def _UserParametersEditor__addStringArrayParameter(self): ... method _UserParametersEditor__addStringParameter (line 56) | def _UserParametersEditor__addStringParameter(self, hints: Incomplete ... method _UserParametersEditor__addTeleParameter (line 57) | def _UserParametersEditor__addTeleParameter(self): ... method _UserParametersEditor__addToolbarParameter (line 58) | def _UserParametersEditor__addToolbarParameter(self): ... method _UserParametersEditor__buildArrayStructure (line 59) | def _UserParametersEditor__buildArrayStructure(self, typeName, size, t... method _UserParametersEditor__getDragSourceAndIndex (line 60) | def _UserParametersEditor__getDragSourceAndIndex(self, ev): ... method _UserParametersEditor__getDropParameter (line 61) | def _UserParametersEditor__getDropParameter(self, mimeData): ... method _UserParametersEditor__getParam (line 62) | def _UserParametersEditor__getParam(self): ... method _getPanelForPolicy (line 63) | def _getPanelForPolicy(self, vp): ... method addButtonCheckDragEvent (line 64) | def addButtonCheckDragEvent(self, event): ... method addButtonDropEvent (line 65) | def addButtonDropEvent(self, event): ... method buildAddMenu (line 66) | def buildAddMenu(self, menu): ... method dragEnterEvent (line 67) | def dragEnterEvent(self, ev): ... method dragMoveEvent (line 68) | def dragMoveEvent(self, ev): ... method dropEvent (line 69) | def dropEvent(self, ev): ... FILE: katana/stubs/UI4/FormMaster/Editors/UserParametersDialogs.pyi class AssetWidgetHintsDialog (line 20) | class AssetWidgetHintsDialog(DefaultWidgetHintsDialog): method _AssetWidgetHintsDialog__trueFalseHints (line 22) | def _AssetWidgetHintsDialog__trueFalseHints(self, hints): ... method buildValues (line 23) | def buildValues(self, policy, hints, valueDict, order): ... class CapsuleWidgetHintsDialog (line 25) | class CapsuleWidgetHintsDialog(DefaultWidgetHintsDialog): class CapsuleHintEditor (line 26) | class CapsuleHintEditor(UI4.Widgets.SortablePanel.SortablePanelFormWid... class OptionPanel (line 27) | class OptionPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 28) | def __init__(self, parent, entry) -> None: ... method getResult (line 29) | def getResult(self): ... method __init__ (line 30) | def __init__(self, parent, optionsData, factory) -> None: ... method _CapsuleHintEditor__addOptionPanel (line 31) | def _CapsuleHintEditor__addOptionPanel(self): ... method buildAddMenu (line 32) | def buildAddMenu(self, menu): ... method getResult (line 33) | def getResult(self): ... method buildExtras (line 34) | def buildExtras(self, layout): ... method buildValues (line 35) | def buildValues(self, policy, hints, valueDict, order): ... method getResult (line 36) | def getResult(self): ... class ColorWidgetHintsDialog (line 38) | class ColorWidgetHintsDialog(DefaultWidgetHintsDialog): method buildValues (line 39) | def buildValues(self, policy, hints, valueDict, order): ... class DefaultWidgetHintsDialog (line 41) | class DefaultWidgetHintsDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 43) | def __init__(self, policy, hints) -> None: ... method _DefaultWidgetHintsDialog__buildArraySizeInputs (line 44) | def _DefaultWidgetHintsDialog__buildArraySizeInputs(self, policy, hint... method _DefaultWidgetHintsDialog__trueFalseHints (line 45) | def _DefaultWidgetHintsDialog__trueFalseHints(self, hints): ... method accept (line 46) | def accept(self): ... method addFromHints (line 47) | def addFromHints(self, name, hints, valueDict, order, default, widgetH... method buildExtras (line 48) | def buildExtras(self, layout): ... method buildStretch (line 49) | def buildStretch(self, layout): ... method buildValues (line 50) | def buildValues(self, policy, hints, valueDict, order): ... method getOptionsPolicy (line 51) | def getOptionsPolicy(self): ... method getResult (line 52) | def getResult(self): ... method getScrollParent (line 53) | def getScrollParent(self): ... method getValues (line 54) | def getValues(self): ... method getWidgetPolicy (line 55) | def getWidgetPolicy(self): ... method keyPressEvent (line 56) | def keyPressEvent(self, event): ... class EnableableDictPolicy (line 58) | class EnableableDictPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 59) | def __init__(self, inputDict, name, valueOrder: Incomplete | None = ..... method getChildByName (line 60) | def getChildByName(self, name): ... method getChildren (line 61) | def getChildren(self): ... method getName (line 62) | def getName(self): ... method getNumChildren (line 63) | def getNumChildren(self): ... method getStateAppearance (line 64) | def getStateAppearance(self, state): ... method getType (line 65) | def getType(self): ... method getWidgetHints (line 66) | def getWidgetHints(self): ... class EnableableValuePolicy (line 68) | class EnableableValuePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePoli... method __init__ (line 69) | def __init__(self, inputList, name, parent: Incomplete | None = ...) -... method getAvailableStates (line 70) | def getAvailableStates(self): ... method getName (line 71) | def getName(self): ... method getStateAppearance (line 72) | def getStateAppearance(self, state): ... method getType (line 73) | def getType(self): ... method getValue (line 74) | def getValue(self): ... method getValueState (line 75) | def getValueState(self): ... method getWidgetHints (line 76) | def getWidgetHints(self): ... method setValue (line 77) | def setValue(self, value, final: bool = ...): ... method setValueState (line 78) | def setValueState(self, state): ... method shouldDisplayState (line 79) | def shouldDisplayState(self): ... class HelpTextDialog (line 81) | class HelpTextDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 82) | def __init__(self, hints, locked: bool = ...) -> None: ... method getResult (line 83) | def getResult(self): ... class MappingPopupWidgetHintsDialog (line 85) | class MappingPopupWidgetHintsDialog(DefaultWidgetHintsDialog): class SortableKeyValueWidget (line 86) | class SortableKeyValueWidget(UI4.Widgets.SortablePanel.SortablePanelFo... class KeyValuePanel (line 87) | class KeyValuePanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 88) | def __init__(self, parent, entry, isNumber) -> None: ... method _KeyValuePanel__forceValidValue (line 89) | def _KeyValuePanel__forceValidValue(self, value) -> str | float: ... method _KeyValuePanel__getValidKey (line 90) | def _KeyValuePanel__getValidKey(self, key: str | None) -> str: ... method _KeyValuePanel__textChanged (line 91) | def _KeyValuePanel__textChanged(self): ... method forceUniquenessCheck (line 92) | def forceUniquenessCheck(self): ... method getValue (line 93) | def getValue(self): ... method __init__ (line 94) | def __init__(self, parent, policy, valueList, factory) -> None: ... method _SortableKeyValueWidget__addEntry (line 95) | def _SortableKeyValueWidget__addEntry(self): ... method _SortableKeyValueWidget__getKeysSet (line 96) | def _SortableKeyValueWidget__getKeysSet(self) -> set[str]: ... method buildAddMenu (line 97) | def buildAddMenu(self, menu): ... method getValue (line 98) | def getValue(self): ... method buildExtras (line 101) | def buildExtras(self, layout): ... method buildValues (line 102) | def buildValues(self, policy, hints, valueDict, order): ... method getResult (line 103) | def getResult(self): ... class ParameterRenameDialog (line 105) | class ParameterRenameDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 106) | def __init__(self, startingName: str, peerNames: typing.Sequence[str])... method _ParameterRenameDialog__getRawValues (line 107) | def _ParameterRenameDialog__getRawValues(self) -> Tuple[str, str, str]... method _ParameterRenameDialog__textChanged (line 108) | def _ParameterRenameDialog__textChanged(self, value: str): ... method _getAdjustedFieldValue (line 109) | def _getAdjustedFieldValue(self, text: str) -> str: ... method _getAdjustedUniqueDisplayName (line 110) | def _getAdjustedUniqueDisplayName(self, text: str) -> str: ... method _isTextValid (line 111) | def _isTextValid(self, text: str) -> bool: ... method getResult (line 112) | def getResult(self) -> str: ... method getValidatingRegex (line 113) | def getValidatingRegex(self) -> str: ... class PopupWidgetHintsDialog (line 115) | class PopupWidgetHintsDialog(DefaultWidgetHintsDialog): method buildValues (line 116) | def buildValues(self, policy, hints, valueDict, order): ... method getResult (line 117) | def getResult(self): ... class ScriptButtonWidgetHintsDialog (line 119) | class ScriptButtonWidgetHintsDialog(DefaultWidgetHintsDialog): method _ScriptButtonWidgetHintsDialog__launchExternalEditor (line 120) | def _ScriptButtonWidgetHintsDialog__launchExternalEditor(self): ... method buildExtras (line 121) | def buildExtras(self, layout): ... method buildValues (line 122) | def buildValues(self, policy, hints, valueDict, order): ... class ScriptToolbarWidgetHintsDialog (line 124) | class ScriptToolbarWidgetHintsDialog(DefaultWidgetHintsDialog): class ScriptToolbarHintEditor (line 125) | class ScriptToolbarHintEditor(UI4.Widgets.SortablePanel.SortablePanelF... class ButtonPanel (line 126) | class ButtonPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 127) | def __init__(self, parent, entry) -> None: ... method _ButtonPanel__launchExternalEditor (line 128) | def _ButtonPanel__launchExternalEditor(self): ... method getResult (line 129) | def getResult(self): ... class StretchPanel (line 131) | class StretchPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 132) | def __init__(self, parent) -> None: ... method getResult (line 133) | def getResult(self): ... method __init__ (line 134) | def __init__(self, parent, buttonData, factory) -> None: ... method _ScriptToolbarHintEditor__addButtonPanel (line 135) | def _ScriptToolbarHintEditor__addButtonPanel(self): ... method _ScriptToolbarHintEditor__addStretchPanel (line 136) | def _ScriptToolbarHintEditor__addStretchPanel(self): ... method buildAddMenu (line 137) | def buildAddMenu(self, menu): ... method getResult (line 138) | def getResult(self): ... method buildExtras (line 139) | def buildExtras(self, layout): ... method buildValues (line 140) | def buildValues(self, policy, hints, valueDict, order): ... method getResult (line 141) | def getResult(self): ... class SeparatorWidgetHintsDialog (line 143) | class SeparatorWidgetHintsDialog(DefaultWidgetHintsDialog): method _SeparatorWidgetHintsDialog__trueFalseHints (line 145) | def _SeparatorWidgetHintsDialog__trueFalseHints(self, hints): ... method buildValues (line 146) | def buildValues(self, policy, hints, valueDict, order): ... function ChangeWidgetType (line 148) | def ChangeWidgetType(policy, hints, widgetDisplayType): ... function GetWidgetDisplayName (line 149) | def GetWidgetDisplayName(widget): ... function GetWidgetFromDisplayName (line 150) | def GetWidgetFromDisplayName(displayName): ... function GetWidgetListForType (line 151) | def GetWidgetListForType(policy): ... function ShowWidgetOptionsDialog (line 152) | def ShowWidgetOptionsDialog(policy, hints): ... FILE: katana/stubs/UI4/FormMaster/Editors/ViewSelectCapsule.pyi class ClickingHBox (line 14) | class ClickingHBox(PyQt5.QtWidgets.QFrame): method __init__ (line 17) | def __init__(self, parent) -> None: ... method eventFilter (line 18) | def eventFilter(self, object, event): ... method mousePressEvent (line 19) | def mousePressEvent(self, ev): ... method setPressed (line 20) | def setPressed(self, pressed): ... method setText (line 21) | def setText(self, text): ... class ViewSelectCapsuleFormWidget (line 23) | class ViewSelectCapsuleFormWidget(CapsuleFormWidget): method __init__ (line 24) | def __init__(self, parent, policy, factory) -> None: ... class ViewSelectPopupFormWidget (line 26) | class ViewSelectPopupFormWidget(BaseValueFormWidget): method __init__ (line 27) | def __init__(self, parent, policy, factory) -> None: ... method _ViewSelectPopupFormWidget__activeViewsButtonPressed (line 28) | def _ViewSelectPopupFormWidget__activeViewsButtonPressed(self): ... method _ViewSelectPopupFormWidget__updateActiveViews (line 29) | def _ViewSelectPopupFormWidget__updateActiveViews(self): ... method _ViewSelectPopupFormWidget__viewCheckboxPopupClosed (line 30) | def _ViewSelectPopupFormWidget__viewCheckboxPopupClosed(self): ... method _buildControlWidget (line 31) | def _buildControlWidget(self, layout): ... method valueChangedEvent (line 32) | def valueChangedEvent(self, event): ... FILE: katana/stubs/UI4/FormMaster/EnableableParameterPolicy.pyi class EnableableGroupParameterPolicy (line 13) | class EnableableGroupParameterPolicy(GroupParameterPolicy): method __init__ (line 14) | def __init__(self, param, parentPolicy) -> None: ... method getAvailableStates (line 15) | def getAvailableStates(self): ... method getValueState (line 16) | def getValueState(self): ... method getWidgetHints (line 17) | def getWidgetHints(self): ... method setValueState (line 18) | def setValueState(self, state): ... method shouldDisplayState (line 19) | def shouldDisplayState(self): ... class EnableableScalarParameterPolicy (line 21) | class EnableableScalarParameterPolicy(ScalarParameterPolicy): method __init__ (line 22) | def __init__(self, param, parent) -> None: ... method _EnableableScalarParameterPolicy__initFromDefault (line 23) | def _EnableableScalarParameterPolicy__initFromDefault(self): ... method _handleParamFinalized (line 24) | def _handleParamFinalized(self, args): ... method getAvailableStates (line 25) | def getAvailableStates(self): ... method getValueState (line 26) | def getValueState(self): ... method getWidgetHints (line 27) | def getWidgetHints(self): ... method setCurve (line 28) | def setCurve(self, curve): ... method setCurveAutoKey (line 29) | def setCurveAutoKey(self, autoKey): ... method setCurveEnabled (line 30) | def setCurveEnabled(self, state): ... method setCurveKey (line 31) | def setCurveKey(self, state): ... method setExpression (line 32) | def setExpression(self, rawExpr): ... method setExpressionEnabled (line 33) | def setExpressionEnabled(self, flag): ... method setValue (line 34) | def setValue(self, value, final: bool = ...): ... method setValueState (line 35) | def setValueState(self, state): ... method shouldDisplayState (line 36) | def shouldDisplayState(self): ... class EnableableScalarPolicyDelegate (line 38) | class EnableableScalarPolicyDelegate(UI4.FormMaster.ParameterPolicy.Para... method __init__ (line 39) | def __init__(self, exclude: Incomplete | None = ..., groupEnable: Inco... method createPolicy (line 40) | def createPolicy(self, parentPolicy, param): ... FILE: katana/stubs/UI4/FormMaster/FnAttributePolicy.pyi class AttrStates (line 21) | class AttrStates: class AttributePolicy (line 28) | class AttributePolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 35) | def __init__(self, parent, name, attr, index: Incomplete | None = ...,... method _AttributePolicy__getType (line 36) | def _AttributePolicy__getType(self, attr, index: Incomplete | None = .... method _AttributePolicy__getWidgetHints (line 37) | def _AttributePolicy__getWidgetHints(self, metadataDict): ... method _appendToStateMenu (line 38) | def _appendToStateMenu(self, menu: PyQt5.QtWidgets.QMenu) -> bool: ... method _buildChildren (line 39) | def _buildChildren(self, attr, metadataDict, pageEntry): ... method _getAttr (line 40) | def _getAttr(self): ... method _getChildren (line 41) | def _getChildren(self): ... method _isPage (line 42) | def _isPage(self): ... method _replaceAttr (line 43) | def _replaceAttr(self, attr, name: Incomplete | None = ..., metadataDi... method getArrayChild (line 44) | def getArrayChild(self, index): ... method getArraySize (line 45) | def getArraySize(self): ... method getAttrName (line 46) | def getAttrName(self): ... method getAttribute (line 47) | def getAttribute(self) -> PyFnAttribute.Attribute: ... method getAttributeTypeName (line 48) | def getAttributeTypeName(self) -> str: ... method getChildByName (line 49) | def getChildByName(self, name): ... method getChildren (line 50) | def getChildren(self): ... method getCoPolicyPathDict (line 51) | def getCoPolicyPathDict(self): ... method getMimeData (line 52) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getName (line 53) | def getName(self): ... method getNumChildren (line 54) | def getNumChildren(self): ... method getSceneGraphLocationPath (line 55) | def getSceneGraphLocationPath(self) -> str | None: ... method getSourceOp (line 56) | def getSourceOp(self) -> PyFnGeolib.GeolibRuntimeOp | None: ... method getStateAppearance (line 57) | def getStateAppearance(self, state): ... method getStateToolTip (line 58) | def getStateToolTip(self, state): ... method getTooltip (line 59) | def getTooltip(self): ... method getType (line 60) | def getType(self): ... method getValue (line 61) | def getValue(self): ... method getValueState (line 62) | def getValueState(self): ... method getWidgetHints (line 63) | def getWidgetHints(self): ... method isLocked (line 64) | def isLocked(self): ... method setSceneGraphLocationPath (line 65) | def setSceneGraphLocationPath(self, locationPath: str | None): ... method setSourceOp (line 66) | def setSourceOp(self, sourceOp: PyFnGeolib.GeolibRuntimeOp | None): ... method shouldDisplayState (line 67) | def shouldDisplayState(self): ... function GetPolicyFromLocationAttrs (line 69) | def GetPolicyFromLocationAttrs(locationAttrs, attrPath: Incomplete | Non... FILE: katana/stubs/UI4/FormMaster/GenericAssignParameterPolicy.pyi class DataStoreAction (line 21) | class DataStoreAction(PyQt5.QtWidgets.QAction): method __init__ (line 23) | def __init__(self, text, parent, data) -> None: ... method _DataStoreAction__trigger (line 24) | def _DataStoreAction__trigger(self): ... class GenericArrayIndexValuePolicy (line 26) | class GenericArrayIndexValuePolicy(QT4FormWidgets.ValuePolicy.AbstractVa... method __init__ (line 27) | def __init__(self, attr, index, parent) -> None: ... method _GenericArrayIndexValuePolicy__switchParentStateToLocal (line 28) | def _GenericArrayIndexValuePolicy__switchParentStateToLocal(self, pare... method canHaveCurve (line 29) | def canHaveCurve(self): ... method canHaveExpression (line 30) | def canHaveExpression(self): ... method getName (line 31) | def getName(self): ... method getSceneGraphLocationPath (line 32) | def getSceneGraphLocationPath(self) -> str | None: ... method getType (line 33) | def getType(self): ... method getValue (line 34) | def getValue(self): ... method isLocked (line 35) | def isLocked(self): ... method setAttr (line 36) | def setAttr(self, attr): ... method setCurve (line 37) | def setCurve(self, value): ... method setCurveAutoKey (line 38) | def setCurveAutoKey(self, autoKey): ... method setCurveEnabled (line 39) | def setCurveEnabled(self, value): ... method setCurveXml (line 40) | def setCurveXml(self, value): ... method setExpression (line 41) | def setExpression(self, value): ... method setExpressionEnabled (line 42) | def setExpressionEnabled(self, value): ... method setValue (line 43) | def setValue(self, value, final: bool = ...): ... class GenericAssignGroupParameterPolicy (line 45) | class GenericAssignGroupParameterPolicy(GroupParameterPolicy): method __init__ (line 46) | def __init__(self, param, parent, attrSource, attrPath) -> None: ... method _GenericAssignGroupParameterPolicy__checkForPages (line 47) | def _GenericAssignGroupParameterPolicy__checkForPages(self): ... method _GenericAssignGroupParameterPolicy__filterChildren (line 48) | def _GenericAssignGroupParameterPolicy__filterChildren(self, children)... method _GenericAssignGroupParameterPolicy__getChildNames (line 49) | def _GenericAssignGroupParameterPolicy__getChildNames(self): ... method _GenericAssignGroupParameterPolicy__getChildPageHint (line 50) | def _GenericAssignGroupParameterPolicy__getChildPageHint(self, childNa... method _GenericAssignGroupParameterPolicy__sourceAdditionalUpdate (line 51) | def _GenericAssignGroupParameterPolicy__sourceAdditionalUpdate(self): ... method _GenericAssignGroupParameterPolicy__sourceUpdate (line 52) | def _GenericAssignGroupParameterPolicy__sourceUpdate(self): ... method _appendToWrenchMenu (line 53) | def _appendToWrenchMenu(self, menu): ... method _childPolicyRenamed (line 54) | def _childPolicyRenamed(self, policy): ... method _closeButtonClicked (line 55) | def _closeButtonClicked(self): ... method _freeze (line 56) | def _freeze(self): ... method _thaw (line 57) | def _thaw(self): ... method _updateAttrPath (line 58) | def _updateAttrPath(self, parentPath): ... method filterToSubset (line 59) | def filterToSubset(self, paramNameWhitelist: list[str]) -> bool: ... method getAttrName (line 60) | def getAttrName(self) -> str | None: ... method getAttrSource (line 61) | def getAttrSource(self): ... method getChildByName (line 62) | def getChildByName(self, name): ... method getChildren (line 63) | def getChildren(self): ... method getName (line 64) | def getName(self): ... method getWidgetHints (line 65) | def getWidgetHints(self): ... method isCloseButtonEnabled (line 66) | def isCloseButtonEnabled(self): ... method setName (line 67) | def setName(self, title): ... method shouldDisplayClose (line 68) | def shouldDisplayClose(self): ... method shouldDisplayWrench (line 69) | def shouldDisplayWrench(self): ... method waitForReady (line 70) | def waitForReady(self): ... method filteredParameterChildren (line 72) | def filteredParameterChildren(self): ... class GenericAssignPagePolicy (line 74) | class GenericAssignPagePolicy(GroupParameterPolicy): method __init__ (line 76) | def __init__(self, param, parent, attrSource, attrPath, pageName, chil... method _GenericAssignPagePolicy__sourceUpdate (line 77) | def _GenericAssignPagePolicy__sourceUpdate(self): ... method _appendToWrenchMenu (line 78) | def _appendToWrenchMenu(self, menu): ... method _closeButtonClicked (line 79) | def _closeButtonClicked(self): ... method _updateAttrPath (line 80) | def _updateAttrPath(self, parentPath): ... method getChildByName (line 81) | def getChildByName(self, name): ... method getChildren (line 82) | def getChildren(self): ... method getName (line 83) | def getName(self): ... method getWidgetHints (line 84) | def getWidgetHints(self): ... method shouldDisplayClose (line 85) | def shouldDisplayClose(self): ... method shouldDisplayWrench (line 86) | def shouldDisplayWrench(self): ... method waitForReady (line 87) | def waitForReady(self): ... class GenericAssignParameterPolicy (line 89) | class GenericAssignParameterPolicy(BaseParameterPolicy): method __init__ (line 90) | def __init__(self, param, parent, attrSource: Incomplete | None = ...,... method _GenericAssignParameterPolicy__childValueChanged (line 91) | def _GenericAssignParameterPolicy__childValueChanged(self, event): ... method _GenericAssignParameterPolicy__getActivePolicy (line 92) | def _GenericAssignParameterPolicy__getActivePolicy(self): ... method _GenericAssignParameterPolicy__getArrayChildUnproxied (line 93) | def _GenericAssignParameterPolicy__getArrayChildUnproxied(self, index)... method _GenericAssignParameterPolicy__getMultiAssignParam (line 94) | def _GenericAssignParameterPolicy__getMultiAssignParam(self): ... method _GenericAssignParameterPolicy__sourceUpdate (line 95) | def _GenericAssignParameterPolicy__sourceUpdate(self): ... method _appendToContextMenu (line 96) | def _appendToContextMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method _appendToWrenchMenu (line 97) | def _appendToWrenchMenu(self, menu): ... method _closeButtonClicked (line 98) | def _closeButtonClicked(self): ... method _freeze (line 99) | def _freeze(self): ... method _getInternalArrayChildren (line 100) | def _getInternalArrayChildren(self): ... method _getValueParam (line 101) | def _getValueParam(self): ... method _handleEnableParamValueChange (line 102) | def _handleEnableParamValueChange(self): ... method _handleParamChanged (line 103) | def _handleParamChanged(self, args): ... method _handleParamFinalized (line 104) | def _handleParamFinalized(self, args: list[tuple[str, object, dict]]):... method _handleTimeChanged (line 105) | def _handleTimeChanged(self, final): ... method _handleValuePolicyChange (line 106) | def _handleValuePolicyChange(self, event: ValuePolicyEvent): ... method _thaw (line 107) | def _thaw(self): ... method _updateAttrPath (line 108) | def _updateAttrPath(self, parentPath): ... method bakeCurve (line 109) | def bakeCurve(self, keys): ... method canHaveCurve (line 110) | def canHaveCurve(self): ... method canHaveExpression (line 111) | def canHaveExpression(self): ... method checkMimeData (line 112) | def checkMimeData(self, mimeData): ... method forceLocal (line 113) | def forceLocal(self): ... method getArrayChild (line 114) | def getArrayChild(self, index): ... method getArraySize (line 115) | def getArraySize(self): ... method getAttrName (line 116) | def getAttrName(self) -> str | None: ... method getAttrSource (line 117) | def getAttrSource(self): ... method getAvailableStates (line 118) | def getAvailableStates(self): ... method getChildByName (line 119) | def getChildByName(self, name): ... method getChildren (line 120) | def getChildren(self): ... method getCurve (line 121) | def getCurve(self): ... method getCurveAutoKey (line 122) | def getCurveAutoKey(self): ... method getCurveKey (line 123) | def getCurveKey(self): ... method getCurveXml (line 124) | def getCurveXml(self): ... method getExpression (line 125) | def getExpression(self): ... method getExpressionError (line 126) | def getExpressionError(self): ... method getExpressionNamespace (line 127) | def getExpressionNamespace(self): ... method getExpressionReference (line 128) | def getExpressionReference(self): ... method getMimeData (line 129) | def getMimeData(self) -> PyQt5.QtCore.QMimeData: ... method getNumChildren (line 130) | def getNumChildren(self): ... method getType (line 131) | def getType(self): ... method getValue (line 132) | def getValue(self): ... method getValueState (line 133) | def getValueState(self): ... method getWidgetHints (line 134) | def getWidgetHints(self): ... method hasFloatingCurve (line 135) | def hasFloatingCurve(self): ... method isCloseButtonEnabled (line 136) | def isCloseButtonEnabled(self): ... method isCurveEnabled (line 137) | def isCurveEnabled(self): ... method isCurveViewed (line 138) | def isCurveViewed(self): ... method isExpressionEnabled (line 139) | def isExpressionEnabled(self): ... method loadCurveFromFile (line 140) | def loadCurveFromFile(self, path, curvename: str = ...): ... method removeArrayChild (line 141) | def removeArrayChild(self, index): ... method removeArrayChildren (line 142) | def removeArrayChildren(self, index, count): ... method reorderArrayChild (line 143) | def reorderArrayChild(self, oldIndex, newIndex): ... method reorderArrayChildren (line 144) | def reorderArrayChildren(self, oldIndex, newIndex, count): ... method setArraySize (line 145) | def setArraySize(self, size): ... method setCurve (line 146) | def setCurve(self, curve): ... method setCurveAutoKey (line 147) | def setCurveAutoKey(self, autoKey): ... method setCurveEnabled (line 148) | def setCurveEnabled(self, state): ... method setCurveKey (line 149) | def setCurveKey(self, state): ... method setCurveViewed (line 150) | def setCurveViewed(self, state): ... method setCurveXml (line 151) | def setCurveXml(self, xml): ... method setExpression (line 152) | def setExpression(self, rawExpr): ... method setExpressionEnabled (line 153) | def setExpressionEnabled(self, flag): ... method setMimeData (line 154) | def setMimeData(self, mimeData, dropAction): ... method setValue (line 155) | def setValue(self, value, final: bool = ...): ... method setValueFromString (line 156) | def setValueFromString(self, strValue, final: bool = ...): ... method setValueState (line 157) | def setValueState(self, state): ... method shouldDisplayClose (line 158) | def shouldDisplayClose(self): ... method shouldDisplayState (line 159) | def shouldDisplayState(self): ... method shouldDisplayWrench (line 160) | def shouldDisplayWrench(self): ... method waitForReady (line 161) | def waitForReady(self): ... method writeCurveToFile (line 162) | def writeCurveToFile(self, path): ... FILE: katana/stubs/UI4/FormMaster/GenericAssignParameterPolicy_geolib3.pyi class ClientIncomingValueSource (line 25) | class ClientIncomingValueSource(PyQt5.QtCore.QObject): method __init__ (line 29) | def __init__(self, port: NodegraphAPI.Port, attrRoot) -> None: ... method _ClientIncomingValueSource__activate (line 30) | def _ClientIncomingValueSource__activate(self): ... method _ClientIncomingValueSource__computeActivationGraphState (line 31) | def _ClientIncomingValueSource__computeActivationGraphState(self) -> N... method _ClientIncomingValueSource__deactivate (line 32) | def _ClientIncomingValueSource__deactivate(self): ... method _ClientIncomingValueSource__forceUpdate (line 33) | def _ClientIncomingValueSource__forceUpdate(self): ... method _ClientIncomingValueSource__getFallbackHints (line 34) | def _ClientIncomingValueSource__getFallbackHints(self, attrPath): ... method _ClientIncomingValueSource__getFallbackValueAttr (line 35) | def _ClientIncomingValueSource__getFallbackValueAttr(self, attrPath): ... method _ClientIncomingValueSource__getSecondaryMergePorts (line 36) | def _ClientIncomingValueSource__getSecondaryMergePorts(self, node: Nod... method _ClientIncomingValueSource__idle (line 37) | def _ClientIncomingValueSource__idle(self, *args, **kwds): ... method _ClientIncomingValueSource__initializeSecondaryMergeStateOps (line 38) | def _ClientIncomingValueSource__initializeSecondaryMergeStateOps(self,... method _ClientIncomingValueSource__secondaryPortsTerminalOpCallback (line 39) | def _ClientIncomingValueSource__secondaryPortsTerminalOpCallback(self,... method _ClientIncomingValueSource__terminalOpCallback (line 40) | def _ClientIncomingValueSource__terminalOpCallback(self, port: Nodegra... method _appendToWrenchMenu (line 41) | def _appendToWrenchMenu(self, policy, attrPath, menu, pagePath: Incomp... method _closeButtonClicked (line 42) | def _closeButtonClicked(self, attrPath): ... method addListener (line 43) | def addListener(self): ... method delListener (line 44) | def delListener(self): ... method forceUpdate (line 45) | def forceUpdate(self): ... method getAttrRoot (line 46) | def getAttrRoot(self): ... method getHints (line 47) | def getHints(self, attrPath): ... method getLocationAttrs (line 48) | def getLocationAttrs(self): ... method getPageHints (line 49) | def getPageHints(self, attrPath, pagePath): ... method getPort (line 50) | def getPort(self) -> NodegraphAPI.Port: ... method getScope (line 51) | def getScope(self, attrPath): ... method getValueAttr (line 52) | def getValueAttr(self, attrPath) -> PyFnAttribute.Attribute: ... method isCloseButtonEnabled (line 53) | def isCloseButtonEnabled(self, policy, attrPath): ... method shouldDisplayClose (line 54) | def shouldDisplayClose(self, policy, attrPath): ... method shouldDisplayWrench (line 55) | def shouldDisplayWrench(self, policy, attrPath): ... method waitForReady (line 56) | def waitForReady(self): ... class ConstraintEditPolicyDelegateGeolib3 (line 58) | class ConstraintEditPolicyDelegateGeolib3(Geolib3GenericAssignPolicyDele... method __init__ (line 59) | def __init__(self, attrRoot, paramRoot: Incomplete | None = ...) -> No... method createPolicy (line 60) | def createPolicy(self, parentPolicy, param): ... class Geolib3GenericAssignPolicyDelegate (line 62) | class Geolib3GenericAssignPolicyDelegate(UI4.FormMaster.ParameterPolicy.... method __init__ (line 64) | def __init__(self, attrRoot, paramRoot: Incomplete | None = ...) -> No... method _setPolicyClass (line 65) | def _setPolicyClass(self, policyClass): ... method createPolicy (line 66) | def createPolicy(self, parentPolicy, param, paths: type[NullValue] = .... method getAttrSource (line 68) | def getAttrSource(cls, port: NodegraphAPI.Port, attrRoot, attributeVal... method getParamAttrPath (line 69) | def getParamAttrPath(self, param): ... method getParamRoot (line 70) | def getParamRoot(self): ... class NullValue (line 72) | class NullValue: ... class OverrideGroupsPolicyDelegate (line 74) | class OverrideGroupsPolicyDelegate(Geolib3GenericAssignPolicyDelegate): method createPolicy (line 75) | def createPolicy(self, parentPolicy, param): ... class RenderOutputDefineOutputNameParameterPolicy (line 77) | class RenderOutputDefineOutputNameParameterPolicy(ScalarParameterPolicy): method __init__ (line 79) | def __init__(self, param, parent, attrSource) -> None: ... method _RenderOutputDefineOutputNameParameterPolicy__sourceUpdate (line 80) | def _RenderOutputDefineOutputNameParameterPolicy__sourceUpdate(self): ... method _freeze (line 81) | def _freeze(self): ... method _thaw (line 82) | def _thaw(self): ... method getWidgetHints (line 83) | def getWidgetHints(self): ... class RenderOutputDefinePolicyDelegateGeolib3 (line 85) | class RenderOutputDefinePolicyDelegateGeolib3(Geolib3GenericAssignPolicy... method createPolicy (line 86) | def createPolicy(self, parentPolicy, param): ... class RendererProceduralArgsPolicyDelegateGeolib3 (line 88) | class RendererProceduralArgsPolicyDelegateGeolib3(Geolib3GenericAssignPo... method createPolicy (line 89) | def createPolicy(self, parentPolicy, param, paths: type[NullValue] = .... method getParamAttrPath (line 90) | def getParamAttrPath(self, param): ... function _RegisterGenericAssignType (line 92) | def _RegisterGenericAssignType(nodeTypeName, paramRoot, attrRoot): ... FILE: katana/stubs/UI4/FormMaster/GraphStateVariablePolicy.pyi class GraphStateVariableValuePolicy (line 12) | class GraphStateVariableValuePolicy(GenericAssignParameterPolicy): method __init__ (line 13) | def __init__(self, param, parent) -> None: ... method _GraphStateVariableValuePolicy__optionsChanged (line 14) | def _GraphStateVariableValuePolicy__optionsChanged(self, event): ... method _appendToWrenchMenu (line 15) | def _appendToWrenchMenu(self, menu): ... method _freeze (line 16) | def _freeze(self): ... method _thaw (line 17) | def _thaw(self): ... method getWidgetHints (line 18) | def getWidgetHints(self): ... method setValue (line 19) | def setValue(self, value, final: bool = ...): ... method shouldDisplayWrench (line 20) | def shouldDisplayWrench(self) -> bool: ... class RootNodeParameterPolicyDelegate (line 22) | class RootNodeParameterPolicyDelegate(UI4.FormMaster.ParameterPolicy.Par... method createPolicy (line 23) | def createPolicy(self, parentPolicy, param): ... class VariableSwitchParameterPolicyDelegate (line 25) | class VariableSwitchParameterPolicyDelegate(UI4.FormMaster.ParameterPoli... method createPolicy (line 26) | def createPolicy(self, parentPolicy, param): ... class VariableSwitchPatternValuePolicy (line 28) | class VariableSwitchPatternValuePolicy(ScalarParameterPolicy): method _appendToWrenchMenu (line 29) | def _appendToWrenchMenu(self, menu): ... method shouldDisplayWrench (line 30) | def shouldDisplayWrench(self): ... class VariableSwitchPatternsGroupValuePolicy (line 32) | class VariableSwitchPatternsGroupValuePolicy(GroupParameterPolicy): method _appendToWrenchMenu (line 33) | def _appendToWrenchMenu(self, menu): ... method shouldDisplayWrench (line 34) | def shouldDisplayWrench(self): ... FILE: katana/stubs/UI4/FormMaster/GroupParameterPolicy.pyi class GroupParameterPolicy (line 7) | class GroupParameterPolicy(BaseParameterPolicy): method __init__ (line 8) | def __init__(self, param, parent) -> None: ... method _GroupParameterPolicy__clearMissingCached (line 9) | def _GroupParameterPolicy__clearMissingCached(self): ... method _GroupParameterPolicy__getChildPolicyObject (line 10) | def _GroupParameterPolicy__getChildPolicyObject(self, childParam): ... method _GroupParameterPolicy__recursivelyUpdateHintsForPolicy (line 11) | def _GroupParameterPolicy__recursivelyUpdateHintsForPolicy(self, polic... method _childPolicyRenamed (line 12) | def _childPolicyRenamed(self, childPolicy): ... method _freeze (line 13) | def _freeze(self): ... method _handleHintChanged (line 14) | def _handleHintChanged(self, args): ... method _handleNodeNameChanged (line 15) | def _handleNodeNameChanged(self, args: list[tuple[str, object, dict]])... method _handleTopologyChanged (line 16) | def _handleTopologyChanged(self, args): ... method _thaw (line 17) | def _thaw(self): ... method getChildByName (line 18) | def getChildByName(self, name): ... method getChildren (line 19) | def getChildren(self): ... FILE: katana/stubs/UI4/FormMaster/HintsDelegate.pyi class FnMatchHintsDelegate (line 5) | class FnMatchHintsDelegate: method __init__ (line 6) | def __init__(self, hints) -> None: ... method addWidgetHints (line 7) | def addWidgetHints(self, param, name, attrDict): ... class SimpleDictHintsDelegate (line 9) | class SimpleDictHintsDelegate: method __init__ (line 10) | def __init__(self, hints) -> None: ... method addWidgetHints (line 11) | def addWidgetHints(self, param, name, attrDict): ... function RegisterAttributeHintsDelegate (line 13) | def RegisterAttributeHintsDelegate(delegate): ... function RegisterHintsDelegate (line 14) | def RegisterHintsDelegate(nodeType, delegate): ... function UpdateAttributeHintsWithDelegates (line 15) | def UpdateAttributeHintsWithDelegates(name, attrDict): ... function UpdateHintsWithDelegates (line 16) | def UpdateHintsWithDelegates(nodeType, param, name, attrDict): ... FILE: katana/stubs/UI4/FormMaster/KatanaFactory.pyi class AttributeWidgetFactoryClass (line 15) | class AttributeWidgetFactoryClass(KatanaWidgetFactoryClass): method _getWidgetClass (line 17) | def _getWidgetClass(self, policy, hints): ... class KatanaWidgetFactoryClass (line 19) | class KatanaWidgetFactoryClass(WidgetFactory): method _getWidgetClass (line 21) | def _getWidgetClass(self, policy: QT4FormWidgets.AbstractValuePolicy, ... method buildWidget (line 22) | def buildWidget(self, parent: PyQt5.QtWidgets.QWidget, policy: typing.... class ParameterWidgetFactoryClass (line 24) | class ParameterWidgetFactoryClass(KatanaWidgetFactoryClass): method _getWidgetClass (line 25) | def _getWidgetClass(self, policy, hints): ... function LoadAllEditors (line 27) | def LoadAllEditors(): ... function LookupWidgetType (line 28) | def LookupWidgetType(name): ... function RegisterPluginWidget (line 29) | def RegisterPluginWidget(widgetType, widgetClass): ... FILE: katana/stubs/UI4/FormMaster/KatanaVisibilityOps.pyi class EndsWith (line 11) | class EndsWith(QT4FormWidgets.Conditional.ConditionalVisibilityOpBase): method __init__ (line 12) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method checkState (line 13) | def checkState(self): ... class InputConnected (line 15) | class InputConnected(QT4FormWidgets.Conditional.ConditionalVisibilityOpB... method __init__ (line 18) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method _InputConnected__notifyOfChange (line 19) | def _InputConnected__notifyOfChange(self): ... method _InputConnected__portStatusChanged (line 20) | def _InputConnected__portStatusChanged(self, args): ... method checkState (line 21) | def checkState(self): ... method freeze (line 22) | def freeze(self): ... method thaw (line 23) | def thaw(self): ... class IsLocalAssignment (line 25) | class IsLocalAssignment(IsNodeDefault): method checkState (line 26) | def checkState(self): ... class IsNodeDefault (line 28) | class IsNodeDefault(QT4FormWidgets.Conditional.ConditionalVisibilityOpBa... method __init__ (line 30) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method _IsNodeDefault__isNodeDefault (line 31) | def _IsNodeDefault__isNodeDefault(self, policy, recur: bool = ...): ... method _IsNodeDefault__targetPolicyStateChanged (line 32) | def _IsNodeDefault__targetPolicyStateChanged(self, event): ... method checkState (line 33) | def checkState(self): ... method freeze (line 34) | def freeze(self): ... method thaw (line 35) | def thaw(self): ... class NumChildrenBase (line 37) | class NumChildrenBase(QT4FormWidgets.Conditional.ConditionalVisibilityOp... method __init__ (line 39) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method _NumChildrenBase__paramChildrenChange_CB (line 40) | def _NumChildrenBase__paramChildrenChange_CB(self, args): ... method _NumChildrenBase__setupEvents (line 41) | def _NumChildrenBase__setupEvents(self, enable): ... method _getNumChildren (line 42) | def _getNumChildren(self): ... method checkState (line 43) | def checkState(self): ... method freeze (line 44) | def freeze(self): ... method thaw (line 45) | def thaw(self): ... class NumChildrenEqualTo (line 47) | class NumChildrenEqualTo(NumChildrenBase): method checkState (line 48) | def checkState(self): ... class NumChildrenGreaterThanOrEqualTo (line 50) | class NumChildrenGreaterThanOrEqualTo(NumChildrenBase): method checkState (line 51) | def checkState(self): ... FILE: katana/stubs/UI4/FormMaster/LiveAttributePolicy.pyi class ArrayLiveAttributePolicy (line 17) | class ArrayLiveAttributePolicy(LiveAttributePolicyMixin, UI4.FormMaster.... method Upgrade (line 19) | def Upgrade(cls, policy): ... method getArrayChild (line 20) | def getArrayChild(self, index): ... method getChildPolicyObjects (line 21) | def getChildPolicyObjects(self): ... method getValueState (line 22) | def getValueState(self): ... class GroupLiveAttributePolicy (line 24) | class GroupLiveAttributePolicy(LiveAttributePolicyMixin, UI4.FormMaster.... method _buildChildren (line 25) | def _buildChildren(self, childDict, childNames): ... class LiveAttributePolicyManager (line 27) | class LiveAttributePolicyManager: class CacheEntry (line 28) | class CacheEntry: method __init__ (line 29) | def __init__(self) -> None: ... method __init__ (line 31) | def __init__(self) -> None: ... method Instance (line 33) | def Instance(): ... method _LiveAttributePolicyManager__finalize3DNodeChanges (line 34) | def _LiveAttributePolicyManager__finalize3DNodeChanges(self, **kwargs)... method _LiveAttributePolicyManager__on_pref_changed (line 35) | def _LiveAttributePolicyManager__on_pref_changed(self, eventType: str ... method addValueChangedCallback (line 36) | def addValueChangedCallback(self, callback): ... method clearCache (line 37) | def clearCache(self): ... method flush (line 38) | def flush(self): ... method getCacheUndoName (line 39) | def getCacheUndoName(self): ... method getValue (line 40) | def getValue(self, path, attr, index, getFunction): ... method isArrayLive (line 41) | def isArrayLive(self, path, attr): ... method isLive (line 42) | def isLive(self, path, attr, index): ... method pause (line 43) | def pause(self): ... method registerPolicy (line 44) | def registerPolicy(self, policy, doRegister: bool = ...): ... method removeValueChangedCallback (line 45) | def removeValueChangedCallback(self, callback): ... method resetTimer (line 46) | def resetTimer(self): ... method setValue (line 47) | def setValue(self, path, attr, index, value, setFunction: Incomplete |... method unpause (line 48) | def unpause(self): ... method valueChangedCallback (line 49) | def valueChangedCallback(self, policy, **kwargs): ... class LiveAttributePolicyMixin (line 51) | class LiveAttributePolicyMixin: method Upgrade (line 53) | def Upgrade(cls, policy): ... method _freeze (line 54) | def _freeze(self): ... method _thaw (line 55) | def _thaw(self): ... method addLiveCallback (line 56) | def addLiveCallback(self, callback): ... method delCallback (line 57) | def delCallback(self, callback): ... method forwardValueChangedEvent (line 58) | def forwardValueChangedEvent(self, policy, **kwargs): ... method getManager (line 59) | def getManager(self): ... method valueChanged (line 60) | def valueChanged(self, value: bool = ..., final: bool = ..., stateChan... class PageGroupLiveAttributePolicy (line 62) | class PageGroupLiveAttributePolicy(LiveAttributePolicyMixin, UI4.FormMas... method _buildChildren (line 63) | def _buildChildren(self, childDict, childNames): ... class ScalarLiveAttributePolicy (line 65) | class ScalarLiveAttributePolicy(LiveAttributePolicyMixin, UI4.FormMaster... method __init__ (line 66) | def __init__(self, *args, **kwargs) -> None: ... method _forwardToEditableParameterPolicy (line 67) | def _forwardToEditableParameterPolicy(self, name, *args, **kwargs): ... method _forwardToParameterPolicy (line 68) | def _forwardToParameterPolicy(self, name, *args, **kwargs): ... method _getParameterPolicy (line 69) | def _getParameterPolicy(self, editable: bool = ...): ... method canHaveCurve (line 70) | def canHaveCurve(self, *args, **kwargs): ... method canHaveExpression (line 71) | def canHaveExpression(self): ... method forwardValueChangedEvent (line 72) | def forwardValueChangedEvent(self, policy, **kwargs): ... method getCurve (line 73) | def getCurve(self): ... method getCurveAutoKey (line 74) | def getCurveAutoKey(self): ... method getCurveKey (line 75) | def getCurveKey(self): ... method getCurveXml (line 76) | def getCurveXml(self): ... method getExpression (line 77) | def getExpression(self): ... method getExpressionError (line 78) | def getExpressionError(self): ... method getExpressionNamespace (line 79) | def getExpressionNamespace(self): ... method getExpressionReference (line 80) | def getExpressionReference(self): ... method getValue (line 81) | def getValue(self): ... method getValueState (line 82) | def getValueState(self): ... method hasFloatingCurve (line 83) | def hasFloatingCurve(self): ... method isCurveEnabled (line 84) | def isCurveEnabled(self): ... method isCurveViewed (line 85) | def isCurveViewed(self): ... method isExpressionEnabled (line 86) | def isExpressionEnabled(self): ... method setCurve (line 87) | def setCurve(self, curve): ... method setCurveAutoKey (line 88) | def setCurveAutoKey(self, state): ... method setCurveEnabled (line 89) | def setCurveEnabled(self, state): ... method setCurveKey (line 90) | def setCurveKey(self, state): ... method setCurveViewed (line 91) | def setCurveViewed(self, state): ... method setCurveXml (line 92) | def setCurveXml(self, xml): ... method setExpression (line 93) | def setExpression(self, expr): ... method setExpressionEnabled (line 94) | def setExpressionEnabled(self, flag): ... method setValue (line 95) | def setValue(self, value, final: bool = ...): ... function ClearCache (line 97) | def ClearCache(): ... function ConvertAttributePolicyToLive (line 98) | def ConvertAttributePolicyToLive(ap): ... function CreateProducerLiveGroupPolicy (line 99) | def CreateProducerLiveGroupPolicy(): ... function Flush (line 100) | def Flush(): ... function Pause (line 101) | def Pause(): ... function RegisterLiveAttributeChangedCallback (line 102) | def RegisterLiveAttributeChangedCallback(callback, register: bool = ...)... function Unpause (line 103) | def Unpause(): ... FILE: katana/stubs/UI4/FormMaster/MaterialNodePolicy.pyi class MaterialClientIncomingValueSource (line 25) | class MaterialClientIncomingValueSource(UI4.FormMaster.GenericAssignPara... class _WrenchMenuAction (line 26) | class _WrenchMenuAction(PyQt5.QtWidgets.QAction): method __init__ (line 28) | def __init__(self, text, parent, data) -> None: ... method _WrenchMenuAction__trigger (line 29) | def _WrenchMenuAction__trigger(self): ... method __init__ (line 31) | def __init__(self, port: NodegraphAPI.Port, attrRoot) -> None: ... method _MaterialClientIncomingValueSource__computeArgsFileEntriesForShaderOfType (line 32) | def _MaterialClientIncomingValueSource__computeArgsFileEntriesForShade... method _MaterialClientIncomingValueSource__editConditionalState (line 33) | def _MaterialClientIncomingValueSource__editConditionalState(self, hin... method _MaterialClientIncomingValueSource__getDescriptionForShaderAttributeAtPath (line 34) | def _MaterialClientIncomingValueSource__getDescriptionForShaderAttribu... method _MaterialClientIncomingValueSource__getNameOfCurrentlySetShaderOfType (line 35) | def _MaterialClientIncomingValueSource__getNameOfCurrentlySetShaderOfT... method _MaterialClientIncomingValueSource__getRendererInfoPluginNameForShaderOfType (line 36) | def _MaterialClientIncomingValueSource__getRendererInfoPluginNameForSh... method _MaterialClientIncomingValueSource__iterParameterNamesForShaderOfType (line 37) | def _MaterialClientIncomingValueSource__iterParameterNamesForShaderOfT... method _MaterialClientIncomingValueSource__on_wrenchMenu_editConditionalLockingOptions (line 38) | def _MaterialClientIncomingValueSource__on_wrenchMenu_editConditionalL... method _MaterialClientIncomingValueSource__on_wrenchMenu_editConditionalVisibility (line 39) | def _MaterialClientIncomingValueSource__on_wrenchMenu_editConditionalV... method _MaterialClientIncomingValueSource__on_wrenchMenu_editHelpText (line 40) | def _MaterialClientIncomingValueSource__on_wrenchMenu_editHelpText(sel... method _MaterialClientIncomingValueSource__on_wrenchMenu_editWidgetOptions (line 41) | def _MaterialClientIncomingValueSource__on_wrenchMenu_editWidgetOption... method _MaterialClientIncomingValueSource__on_wrenchMenu_exportArgsFile (line 42) | def _MaterialClientIncomingValueSource__on_wrenchMenu_exportArgsFile(s... method _MaterialClientIncomingValueSource__on_wrenchMenu_renameCoshader (line 43) | def _MaterialClientIncomingValueSource__on_wrenchMenu_renameCoshader(s... method _MaterialClientIncomingValueSource__on_wrenchMenu_widgetTypeTriggered (line 44) | def _MaterialClientIncomingValueSource__on_wrenchMenu_widgetTypeTrigge... method _MaterialClientIncomingValueSource__refreshUI (line 45) | def _MaterialClientIncomingValueSource__refreshUI(self): ... method _MaterialClientIncomingValueSource__toggleInterfaceState (line 46) | def _MaterialClientIncomingValueSource__toggleInterfaceState(self, att... method _appendToWrenchMenu (line 47) | def _appendToWrenchMenu(self, policy, attributePath, menu, pagePath: I... method _closeButtonClicked (line 48) | def _closeButtonClicked(self, attrPath): ... method getHints (line 49) | def getHints(self, attributePath): ... method getPageHints (line 50) | def getPageHints(self, attributePath, pagePath): ... method isCloseButtonEnabled (line 51) | def isCloseButtonEnabled(self, policy, attrPath): ... method shouldDisplayClose (line 52) | def shouldDisplayClose(self, policy, attrPath): ... method shouldDisplayWrench (line 53) | def shouldDisplayWrench(self, policy, attributePath): ... class MaterialPolicyDelegateGeolib3 (line 55) | class MaterialPolicyDelegateGeolib3(UI4.FormMaster.GenericAssignParamete... method createPolicy (line 56) | def createPolicy(self, parentPolicy, param, paths: type[UI4.FormMaster... method getParamAttrPath (line 57) | def getParamAttrPath(self, param): ... class _NonpersistentShaderHintStore (line 59) | class _NonpersistentShaderHintStore(PyQt5.QtCore.QObject): method __init__ (line 62) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method getContainerHintsForShader (line 63) | def getContainerHintsForShader(self, rendererInfoPluginName, shaderNam... method getInstance (line 65) | def getInstance(cls): ... method getParameterHintsForShader (line 66) | def getParameterHintsForShader(self, rendererInfoPluginName, shaderNam... method replaceHintsForShaderContainer (line 67) | def replaceHintsForShaderContainer(self, rendererInfoPluginName, shade... method replaceHintsForShaderParameter (line 68) | def replaceHintsForShaderParameter(self, rendererInfoPluginName, shade... function _ShaderParameterGroupNameForType (line 70) | def _ShaderParameterGroupNameForType(shaderType): ... FILE: katana/stubs/UI4/FormMaster/NodeActionDelegate/BaseNodeActionDelegate.pyi class BaseNodeActionDelegate (line 7) | class BaseNodeActionDelegate: method addToContextMenu (line 8) | def addToContextMenu(self, menu, node: NodegraphAPI.Node): ... method addToWrenchMenu (line 9) | def addToWrenchMenu(self, menu, node: NodegraphAPI.Node, hints: Incomp... FILE: katana/stubs/UI4/FormMaster/NodeActionDelegate/DisplayOutputsActionDelegate.pyi class DisplayOutputsActionDelegate (line 13) | class DisplayOutputsActionDelegate(BaseNodeActionDelegate): class _DisplayOutputsAction (line 14) | class _DisplayOutputsAction(PyQt5.QtWidgets.QAction): method __init__ (line 15) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _DisplayOutputsAction__toggled (line 16) | def _DisplayOutputsAction__toggled(self, state): ... method addToWrenchMenu (line 17) | def addToWrenchMenu(self, menu, node: NodegraphAPI.Node, hints: Incomp... FILE: katana/stubs/UI4/FormMaster/NodeActionDelegate/GroupActionDelegate.pyi class GroupActionDelegate (line 14) | class GroupActionDelegate(BaseNodeActionDelegate): class _ConvertToLiveGroupAction (line 15) | class _ConvertToLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 16) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _ConvertToLiveGroupAction__triggered (line 17) | def _ConvertToLiveGroupAction__triggered(self, checked): ... class _ShowUserParametersAtTopLevelAction (line 19) | class _ShowUserParametersAtTopLevelAction(PyQt5.QtWidgets.QAction): method __init__ (line 20) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _ShowUserParametersAtTopLevelAction__triggered (line 21) | def _ShowUserParametersAtTopLevelAction__triggered(self, checked): ... class _ToggleGroupNodeAppearanceAction (line 23) | class _ToggleGroupNodeAppearanceAction(PyQt5.QtWidgets.QAction): method __init__ (line 24) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _ToggleGroupNodeAppearanceAction__triggered (line 25) | def _ToggleGroupNodeAppearanceAction__triggered(self, checked): ... method addToContextMenu (line 26) | def addToContextMenu(self, menu, node: NodegraphAPI.Node): ... method addToWrenchMenu (line 27) | def addToWrenchMenu(self, menu, node: NodegraphAPI.Node, hints: Incomp... FILE: katana/stubs/UI4/FormMaster/NodeActionDelegate/LiveGroupActionDelegate.pyi class LiveGroupActionDelegate (line 17) | class LiveGroupActionDelegate(BaseNodeActionDelegate): class _ConvertToGroupAction (line 18) | class _ConvertToGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 19) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _ConvertToGroupAction__triggered (line 20) | def _ConvertToGroupAction__triggered(self, checked): ... class _EditContentsLiveGroupAction (line 22) | class _EditContentsLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 23) | def __init__(self, parent, node: NodegraphAPI.Node, enabled: bool = ... method _EditContentsLiveGroupAction__triggered (line 24) | def _EditContentsLiveGroupAction__triggered(self, checked): ... class _EditParentsAndContentsLiveGroupAction (line 26) | class _EditParentsAndContentsLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 27) | def __init__(self, parent, node: NodegraphAPI.Node, enabled: bool = ... method _EditParentsAndContentsLiveGroupAction__hasLiveGroupAncestor (line 28) | def _EditParentsAndContentsLiveGroupAction__hasLiveGroupAncestor(sel... method _EditParentsAndContentsLiveGroupAction__triggered (line 29) | def _EditParentsAndContentsLiveGroupAction__triggered(self, checked)... class _LoadLiveGroupAction (line 31) | class _LoadLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 32) | def __init__(self, parent, node: NodegraphAPI.Node, enabled: bool = ... method _LoadLiveGroupAction__triggered (line 33) | def _LoadLiveGroupAction__triggered(self, checked): ... class _PublishAndFinishEditingContentsLiveGroupAction (line 35) | class _PublishAndFinishEditingContentsLiveGroupAction(PyQt5.QtWidgets.... method __init__ (line 36) | def __init__(self, parent, node: NodegraphAPI.Node, enabled: bool = ... method _PublishAndFinishEditingContentsLiveGroupAction__triggered (line 37) | def _PublishAndFinishEditingContentsLiveGroupAction__triggered(self,... class _PublishLiveGroupAction (line 39) | class _PublishLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 40) | def __init__(self, parent, node: NodegraphAPI.Node, enabled: bool = ... method _PublishLiveGroupAction__triggered (line 41) | def _PublishLiveGroupAction__triggered(self, checked): ... class _ReloadLiveGroupAction (line 43) | class _ReloadLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 44) | def __init__(self, parent, node: NodegraphAPI.Node, enabled: bool = ... method _ReloadLiveGroupAction__triggered (line 45) | def _ReloadLiveGroupAction__triggered(self, checked): ... class _RevertLiveGroupAction (line 47) | class _RevertLiveGroupAction(PyQt5.QtWidgets.QAction): method __init__ (line 48) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _RevertLiveGroupAction__triggered (line 49) | def _RevertLiveGroupAction__triggered(self, checked): ... method _buildMenu (line 50) | def _buildMenu(self, menu, node: NodegraphAPI.Node): ... method addToContextMenu (line 51) | def addToContextMenu(self, menu, node: NodegraphAPI.Node): ... method addToWrenchMenu (line 52) | def addToWrenchMenu(self, menu, node: NodegraphAPI.Node, hints: Incomp... function PublishLiveGroup (line 54) | def PublishLiveGroup(liveGroupNode: NodegraphAPI.LiveGroupNode, reloadCo... FILE: katana/stubs/UI4/FormMaster/NodeActionDelegate/NodeActionDelegate.pyi function RegisterActionDelegate (line 8) | def RegisterActionDelegate(nodeType, delegate): ... function UpdateContextMenuWithDelegates (line 9) | def UpdateContextMenuWithDelegates(menu, node: NodegraphAPI.Node): ... function UpdateWrenchMenuWithDelegates (line 10) | def UpdateWrenchMenuWithDelegates(menu, node: NodegraphAPI.Node, hints: ... FILE: katana/stubs/UI4/FormMaster/NodeBypassPolicy.pyi class NodeBypassPolicy (line 9) | class NodeBypassPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePolicy): method __init__ (line 10) | def __init__(self, parent, node: NodegraphAPI.Node) -> None: ... method _NodeBypassPolicy__doBypassed (line 11) | def _NodeBypassPolicy__doBypassed(self, event, eventId, node: Nodegrap... method _freeze (line 12) | def _freeze(self): ... method _thaw (line 13) | def _thaw(self): ... method getName (line 14) | def getName(self): ... method getType (line 15) | def getType(self): ... method getValue (line 16) | def getValue(self): ... method getWidgetHints (line 17) | def getWidgetHints(self): ... method isLocked (line 18) | def isLocked(self): ... method setValue (line 19) | def setValue(self, value, final: bool = ...): ... FILE: katana/stubs/UI4/FormMaster/NodeHints/Common2D.pyi function AddCommon2DToNodeHints (line 27) | def AddCommon2DToNodeHints(d): ... function AddDictToNodeHints (line 28) | def AddDictToNodeHints(origHints, additionalHints, prefix): ... function GetAngleNumberDict (line 29) | def GetAngleNumberDict(**kwargs): ... function GetAspectRatioNumberDict (line 30) | def GetAspectRatioNumberDict(**kwargs): ... function GetBoundsParamDict (line 31) | def GetBoundsParamDict(paramName): ... function GetCameraLensMmNumberDict (line 32) | def GetCameraLensMmNumberDict(**kwargs): ... function GetCapsuleRgbaDict (line 33) | def GetCapsuleRgbaDict(exclusive: bool = ..., help: Incomplete | None = ... function GetChannelCapsuleColor (line 34) | def GetChannelCapsuleColor(channel): ... function GetCineonOffsetNumberDict (line 35) | def GetCineonOffsetNumberDict(**kwargs): ... function GetContrastNumberDict (line 36) | def GetContrastNumberDict(**kwargs): ... function GetExposureNumberDict (line 37) | def GetExposureNumberDict(**kwargs): ... function GetFgBgCombinerStringDict (line 38) | def GetFgBgCombinerStringDict(**kwargs): ... function GetFilmbackStringDict (line 39) | def GetFilmbackStringDict(**kwargs): ... function GetGainNumberDict (line 40) | def GetGainNumberDict(**kwargs): ... function GetGammaNumberDict (line 41) | def GetGammaNumberDict(**kwargs): ... function GetHueAngleOffsetNumberDict (line 42) | def GetHueAngleOffsetNumberDict(**kwargs): ... function GetNormalizedCenterNumberDict (line 43) | def GetNormalizedCenterNumberDict(**kwargs): ... function GetNormalizedNumberDict (line 44) | def GetNormalizedNumberDict(**kwargs): ... function GetOffsetNumberDict (line 45) | def GetOffsetNumberDict(**kwargs): ... function GetPivotNumberDict (line 46) | def GetPivotNumberDict(**kwargs): ... function GetPixelNumberDict (line 47) | def GetPixelNumberDict(**kwargs): ... function GetPolygonSidesDict (line 48) | def GetPolygonSidesDict(**kwargs): ... function GetPositivePixelNumberDict (line 49) | def GetPositivePixelNumberDict(**kwargs): ... function GetSaturationNumberDict (line 50) | def GetSaturationNumberDict(**kwargs): ... function GetSmallPositivePixelNumberDict (line 51) | def GetSmallPositivePixelNumberDict(**kwargs): ... FILE: katana/stubs/UI4/FormMaster/NodeHints/ImageWrite.pyi class ImageWriteExtensionOp (line 17) | class ImageWriteExtensionOp(QT4FormWidgets.Conditional.ConditionalVisibi... method __init__ (line 19) | def __init__(self, targetPolicy, hints, prefix) -> None: ... method _ImageWriteExtensionOp__operandChanged (line 20) | def _ImageWriteExtensionOp__operandChanged(self, state): ... method checkState (line 21) | def checkState(self): ... method freeze (line 22) | def freeze(self): ... method getValue (line 23) | def getValue(self, policyName): ... method thaw (line 24) | def thaw(self): ... FILE: katana/stubs/UI4/FormMaster/NodeMimeData.pyi function CheckNodeMimeData (line 18) | def CheckNodeMimeData(mimeData, requireExtant: bool = ...): ... function GetNodeMimeData (line 19) | def GetNodeMimeData(nodeList): ... function GetNodesFromMimeData (line 20) | def GetNodesFromMimeData(mimeData: PyQt5.QtCore.QMimeData, raiseIfMissin... function StartNodeDrag (line 21) | def StartNodeDrag(nodeList, dragSource): ... function StartPortDrag (line 22) | def StartPortDrag(port: NodegraphAPI.Port, dragSource: NodeGraphTab.Node... FILE: katana/stubs/UI4/FormMaster/OpaqueParameterPolicy.pyi class OpaqueParameterPolicy (line 7) | class OpaqueParameterPolicy(BaseParameterPolicy): method __init__ (line 8) | def __init__(self, param, parent) -> None: ... method getChildByName (line 9) | def getChildByName(self, name): ... method getChildren (line 10) | def getChildren(self): ... method getWidgetHints (line 11) | def getWidgetHints(self): ... FILE: katana/stubs/UI4/FormMaster/Pages.pyi class PageEntry (line 6) | class PageEntry: method __init__ (line 7) | def __init__(self, name, fullname, childnames, subpages) -> None: ... function ProcessPageEntryList (line 9) | def ProcessPageEntryList(entries): ... function SortByPage (line 10) | def SortByPage(names, getPageFnc, includeUnpaged: bool = ...): ... FILE: katana/stubs/UI4/FormMaster/ParameterCurveEditSet.pyi class ParameterCurveEditWatcher (line 7) | class ParameterCurveEditWatcher: method __init__ (line 8) | def __init__(self) -> None: ... method _ParameterCurveEditWatcher__node_setEdited_callback (line 9) | def _ParameterCurveEditWatcher__node_setEdited_callback(self, args): ... method _ParameterCurveEditWatcher__node_setName_callback (line 10) | def _ParameterCurveEditWatcher__node_setName_callback(self, args): ... method _ParameterCurveEditWatcher__parameter_finalizeValue_callback (line 11) | def _ParameterCurveEditWatcher__parameter_finalizeValue_callback(self,... method _ParameterCurveEditWatcher__parameter_setName_callback (line 12) | def _ParameterCurveEditWatcher__parameter_setName_callback(self, args)... method _ParameterCurveEditWatcher__parameter_showKeys_callback (line 13) | def _ParameterCurveEditWatcher__parameter_showKeys_callback(self, args... method _initializeSet (line 14) | def _initializeSet(self, curveEditSetCopy): ... method _isActive (line 15) | def _isActive(self, paramFullName): ... method _keysActiveChanged (line 16) | def _keysActiveChanged(self, paramFullName, active): ... method _keysChanged (line 17) | def _keysChanged(self, paramFullName): ... method _nameChanged (line 18) | def _nameChanged(self, oldParamFullName, newParamFullName, newParamLoc... method _nodeNameChanged (line 19) | def _nodeNameChanged(self, oldNodeName, newNodeName): ... method _showKeys (line 20) | def _showKeys(self, paramFullName, show): ... function ClearParameterCurveEditSet (line 22) | def ClearParameterCurveEditSet(): ... function GetParameterCurveEdited (line 23) | def GetParameterCurveEdited(fullParamName): ... function SetParameterCurveEdited (line 24) | def SetParameterCurveEdited(fullParamName, setEdit): ... FILE: katana/stubs/UI4/FormMaster/ParameterKeyMimeData.pyi function CheckKeyMimeData (line 10) | def CheckKeyMimeData(parameters, mimeData, strictTypeCB: Incomplete | No... function CheckKeyMimeDataGeneric (line 11) | def CheckKeyMimeDataGeneric(mimeData): ... function GetKeyMimeData (line 12) | def GetKeyMimeData(parameters, strictTypeCB: Incomplete | None = ...): ... function GetKeyMimeDataPotentials (line 13) | def GetKeyMimeDataPotentials(parameters, mimeData, timeOffset: Incomplet... function GetKeyMimeDataSources (line 14) | def GetKeyMimeDataSources(mimeData): ... function SetKeyMimeData (line 15) | def SetKeyMimeData(parameters, mimeData, timeOffset: Incomplete | None =... FILE: katana/stubs/UI4/FormMaster/ParameterPolicy.pyi class ParameterPolicyDelegate (line 8) | class ParameterPolicyDelegate: method createPolicy (line 9) | def createPolicy(self, parentPolicy, param): ... function CreateDefaultParameterPolicy (line 11) | def CreateDefaultParameterPolicy(parentPolicy, param): ... function CreateParameterPolicy (line 12) | def CreateParameterPolicy(parentPolicy: UI4.FormMaster.BaseParameterPoli... function IsParameterEnabled (line 13) | def IsParameterEnabled(param): ... function RegisterPolicyDelegate (line 14) | def RegisterPolicyDelegate(typeName, delegate): ... FILE: katana/stubs/UI4/FormMaster/PythonValuePolicy.pyi class PythonValuePolicy (line 10) | class PythonValuePolicy(PythonValuePolicy): method __init__ (line 12) | def __init__(self, name: str, policyData: dict, parent: Incomplete | N... method _PythonValuePolicy__addSettings (line 13) | def _PythonValuePolicy__addSettings(self, policy: QT4FormWidgets.Value... method addChildPolicy (line 14) | def addChildPolicy(self, policy: QT4FormWidgets.PythonValuePolicy): ... method getChildByName (line 15) | def getChildByName(self, name: str) -> QT4FormWidgets.PythonValuePolic... method getSettings (line 16) | def getSettings(self) -> dict: ... method getStateAppearance (line 17) | def getStateAppearance(self, state: set): ... method removeChildPolicy (line 18) | def removeChildPolicy(self, policy: QT4FormWidgets.PythonValuePolicy):... method setEnabled (line 19) | def setEnabled(self, enabled: bool): ... class _ValuelessPythonPolicy (line 21) | class _ValuelessPythonPolicy(QT4FormWidgets.ValuePolicy.AbstractValuePol... method __init__ (line 22) | def __init__(self, name: str, parent: QT4FormWidgets.PythonValuePolicy... method getName (line 23) | def getName(self) -> str: ... method getType (line 24) | def getType(self) -> str: ... method getWidgetHints (line 25) | def getWidgetHints(self) -> dict: ... method isEnabled (line 26) | def isEnabled(self) -> bool: ... method setEnabled (line 27) | def setEnabled(self, enabled: bool): ... FILE: katana/stubs/UI4/FormMaster/RenderNodeReferencePolicy.pyi class RenderNodeReferencePolicy (line 9) | class RenderNodeReferencePolicy(QT4FormWidgets.ValuePolicy.AbstractValue... method __init__ (line 10) | def __init__(self, nodeName, portName) -> None: ... method getExpressionNamespace (line 11) | def getExpressionNamespace(self): ... method getExpressionReference (line 12) | def getExpressionReference(self): ... method getName (line 13) | def getName(self): ... method getType (line 14) | def getType(self): ... method getValue (line 15) | def getValue(self): ... FILE: katana/stubs/UI4/FormMaster/ScalarParameterPolicy.pyi class ScalarParameterPolicy (line 14) | class ScalarParameterPolicy(BaseParameterPolicy): method __init__ (line 15) | def __init__(self, param, parent) -> None: ... method _ScalarParameterPolicy__checkForUpdate (line 16) | def _ScalarParameterPolicy__checkForUpdate(self, final): ... method _ScalarParameterPolicy__getFullValue (line 17) | def _ScalarParameterPolicy__getFullValue(self, param): ... method _ScalarParameterPolicy__isConstant (line 18) | def _ScalarParameterPolicy__isConstant(self): ... method _freeze (line 19) | def _freeze(self): ... method _getFullValue (line 20) | def _getFullValue(self, param: NodegraphAPI.Parameter) -> Tuple[None, ... method _handleParamChanged (line 21) | def _handleParamChanged(self, args): ... method _handleParamFinalized (line 22) | def _handleParamFinalized(self, args): ... method _handleTimeChanged (line 23) | def _handleTimeChanged(self, final): ... method _hintsChanged (line 24) | def _hintsChanged(self): ... method _thaw (line 25) | def _thaw(self): ... method bakeCurve (line 26) | def bakeCurve(self, keys): ... method canHaveCurve (line 27) | def canHaveCurve(self): ... method getCurve (line 28) | def getCurve(self): ... method getCurveAutoKey (line 29) | def getCurveAutoKey(self): ... method getCurveKey (line 30) | def getCurveKey(self): ... method getValue (line 31) | def getValue(self): ... method getValueAsString (line 32) | def getValueAsString(self): ... method hasFloatingCurve (line 33) | def hasFloatingCurve(self): ... method isCurveEnabled (line 34) | def isCurveEnabled(self): ... method isCurveViewed (line 35) | def isCurveViewed(self): ... method loadCurveFromFile (line 36) | def loadCurveFromFile(self, path, curvename: str = ...): ... method setCurve (line 37) | def setCurve(self, curve): ... method setCurveAutoKey (line 38) | def setCurveAutoKey(self, autoKey): ... method setCurveEnabled (line 39) | def setCurveEnabled(self, state): ... method setCurveKey (line 40) | def setCurveKey(self, state, final: bool = ...): ... method setCurveViewed (line 41) | def setCurveViewed(self, state): ... method setValue (line 42) | def setValue(self, value, final: bool = ...): ... method setValueFromString (line 43) | def setValueFromString(self, strValue, final: bool = ...): ... method writeCurveToFile (line 44) | def writeCurveToFile(self, path): ... FILE: katana/stubs/UI4/FormMaster/Scripts/ConstraintCache.pyi class ProgressMonitor (line 9) | class ProgressMonitor: class InterruptException (line 10) | class InterruptException(RuntimeError): ... method __init__ (line 11) | def __init__(self, updateInterval: float = ...) -> None: ... method interrupt (line 12) | def interrupt(self): ... method progress (line 13) | def progress(self, message): ... method __del__ (line 14) | def __del__(self) -> None: ... function FillCache (line 16) | def FillCache(node: NodegraphAPI.Node): ... FILE: katana/stubs/UI4/FormMaster/ShadingNodePolicy.pyi class NetworkMaterialPolicyDelegate (line 26) | class NetworkMaterialPolicyDelegate(UI4.FormMaster.ParameterPolicy.Param... method createPolicy (line 27) | def createPolicy(self, parentPolicy, param): ... class NetworkMaterialPublicInterfacePolicy (line 29) | class NetworkMaterialPublicInterfacePolicy(BaseParameterPolicy): method __init__ (line 30) | def __init__(self, param, parent, attrSource: Incomplete | None = ...)... method _NetworkMaterialPublicInterfacePolicy__sourceUpdate (line 31) | def _NetworkMaterialPublicInterfacePolicy__sourceUpdate(self): ... method _freeze (line 32) | def _freeze(self): ... method _thaw (line 33) | def _thaw(self): ... method getAttrSource (line 34) | def getAttrSource(self): ... class ParameterExposureDialog (line 36) | class ParameterExposureDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 38) | def __init__(self, policy) -> None: ... method _ParameterExposureDialog__on_lineEdit_textChanged (line 39) | def _ParameterExposureDialog__on_lineEdit_textChanged(self, text): ... method addPageName (line 41) | def addPageName(cls, pageName): ... method getRootPolicy (line 42) | def getRootPolicy(self): ... method showEvent (line 43) | def showEvent(self, event): ... method showForPolicy (line 45) | def showForPolicy(cls, policy): ... class ShadingNodePolicy (line 47) | class ShadingNodePolicy(GenericAssignParameterPolicy): method __init__ (line 49) | def __init__(self, *args, **kwargs) -> None: ... method _ShadingNodePolicy__applyHintDifferences (line 50) | def _ShadingNodePolicy__applyHintDifferences(self, hints, newHints, de... method _ShadingNodePolicy__createOrUpdateOrDeleteHintsParameter (line 51) | def _ShadingNodePolicy__createOrUpdateOrDeleteHintsParameter(self, old... method _ShadingNodePolicy__editHelpText (line 52) | def _ShadingNodePolicy__editHelpText(self): ... method _ShadingNodePolicy__editWidgetOptions (line 53) | def _ShadingNodePolicy__editWidgetOptions(self): ... method _ShadingNodePolicy__getDefaultInfoText (line 54) | def _ShadingNodePolicy__getDefaultInfoText(self, hints): ... method _ShadingNodePolicy__hintsValueChanged (line 55) | def _ShadingNodePolicy__hintsValueChanged(self, event): ... method _ShadingNodePolicy__setCoPolicyDestinations (line 56) | def _ShadingNodePolicy__setCoPolicyDestinations(self, coPolicyPathDict... method _ShadingNodePolicy__widgetTypeTriggered (line 57) | def _ShadingNodePolicy__widgetTypeTriggered(self, action): ... method _appendToWrenchMenu (line 58) | def _appendToWrenchMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method _customizeWrenchButton (line 59) | def _customizeWrenchButton(self, wrenchButton: PyQt5.QtWidgets.QPushBu... method _getPublicHints (line 60) | def _getPublicHints(self) -> dict | None: ... method _getPublicHintsParam (line 61) | def _getPublicHintsParam(self, create: bool = ...): ... method _handleTopologyChanged (line 62) | def _handleTopologyChanged(self, args): ... method _isParameterExposed (line 63) | def _isParameterExposed(self) -> bool: ... method _setDestinationNameAndPage (line 64) | def _setDestinationNameAndPage(self, dstName, dstPage, adjustCoPolicie... method getWidgetHints (line 65) | def getWidgetHints(self): ... method shouldDisplayWrench (line 66) | def shouldDisplayWrench(self): ... class ShadingNodePolicyDelegate (line 68) | class ShadingNodePolicyDelegate(UI4.FormMaster.GenericAssignParameterPol... method __init__ (line 69) | def __init__(self, attrRoot: str = ..., paramRoot: Incomplete | None =... method getParamAttrPath (line 70) | def getParamAttrPath(self, param): ... function GetAppearanceInfoText (line 72) | def GetAppearanceInfoText(dstName: str, dstPage: str, dstLabel: str, def... function GetHighlightedText (line 73) | def GetHighlightedText(text: str) -> str: ... function GetLabelClose (line 74) | def GetLabelClose(): ... function GetLabelOpen (line 75) | def GetLabelOpen(): ... FILE: katana/stubs/UI4/FormMaster/States.pyi function GetStateAppearance (line 18) | def GetStateAppearance(state): ... FILE: katana/stubs/UI4/FormMaster/WrenchDelegate.pyi function RegisterWrenchDelegate (line 8) | def RegisterWrenchDelegate(nodeType, delegate): ... function UpdateWrenchMenuWithDelegates (line 9) | def UpdateWrenchMenuWithDelegates(node: NodegraphAPI.Node, menu): ... FILE: katana/stubs/UI4/KatanaPrefs/KatanaPrefsObject.pyi class KatanaPrefsObject (line 10) | class KatanaPrefsObject: method __init__ (line 11) | def __init__(self) -> None: ... method _KatanaPrefsObject__declarePref (line 12) | def _KatanaPrefsObject__declarePref(self, key: str, typeName: str, hel... method commit (line 13) | def commit(self): ... method declareBoolPref (line 14) | def declareBoolPref(self, key, default, helpText, visible: bool = ...,... method declareColorPref (line 15) | def declareColorPref(self, key, default, helpText, visible: bool = ...... method declareDoublePref (line 16) | def declareDoublePref(self, key, default, helpText, visible: bool = ..... method declareGroupPref (line 17) | def declareGroupPref(self, key, visible: bool = ..., hints: Incomplete... method declareIntPref (line 18) | def declareIntPref(self, key, default, helpText, visible: bool = ..., ... method declareScenegraphColumnDescriptionPref (line 19) | def declareScenegraphColumnDescriptionPref(self, key, default, helpTex... method declareStringPref (line 20) | def declareStringPref(self, key, default, helpText, visible: bool = ..... method flush (line 21) | def flush(self): ... method getChildPrefs (line 22) | def getChildPrefs(self, key): ... method getHelpText (line 23) | def getHelpText(self, key): ... method getHints (line 24) | def getHints(self, key): ... method getType (line 25) | def getType(self, key): ... method getVersion (line 26) | def getVersion(self): ... method getVisible (line 27) | def getVisible(self, key): ... method keys (line 28) | def keys(self): ... method setVersion (line 29) | def setVersion(self, prefsVersion): ... method shutdownCommit (line 30) | def shutdownCommit(self): ... method __contains__ (line 31) | def __contains__(self, item) -> bool: ... method __getitem__ (line 32) | def __getitem__(self, key): ... method __len__ (line 33) | def __len__(self) -> int: ... method __setitem__ (line 34) | def __setitem__(self, key, value) -> None: ... FILE: katana/stubs/UI4/KatanaPrefs/__init__.pyi class __AvailableFonts (line 17) | class __AvailableFonts: method __init__ (line 18) | def __init__(self, codeFontsOnly: bool = ...) -> None: ... method __iter__ (line 19) | def __iter__(self) -> __AvailableFonts: ... method __next__ (line 20) | def __next__(self) -> tuple: ... function GetAvailableFontFamilies (line 22) | def GetAvailableFontFamilies(codeFontsOnly: bool = ...) -> list[str]: ... FILE: katana/stubs/UI4/MainUI.pyi function InitializeInterface (line 17) | def InitializeInterface(options, args): ... function IsInterfaceBeingInitialized (line 18) | def IsInterfaceBeingInitialized() -> bool: ... function IterativeInitializeInterface (line 19) | def IterativeInitializeInterface(app, options, splashScreen): ... function Main (line 20) | def Main(options, args): ... function VerifyFontPreferences (line 21) | def VerifyFontPreferences(): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegateManager.pyi class Delegate (line 6) | class Delegate: method acceptsDrop (line 7) | def acceptsDrop(self, targetNode, event): ... method addToContextMenu (line 8) | def addToContextMenu(self, targetNode, menu): ... method addToNodeSpecificShelfEnvironment (line 9) | def addToNodeSpecificShelfEnvironment(self, targetNode, editor, envDic... method getLastContextMenuNode (line 10) | def getLastContextMenuNode(self): ... method processDrop (line 11) | def processDrop(self, targetNode, event): ... function AcceptsDrop (line 13) | def AcceptsDrop(targetNode, event): ... function AddToContextMenu (line 14) | def AddToContextMenu(targetNode, menu): ... function AddToNodeSpecificShelfEnvironment (line 15) | def AddToNodeSpecificShelfEnvironment(targetNode, editor, envDict): ... function ProcessDrop (line 16) | def ProcessDrop(targetNode, event): ... function RegisterDelegate (line 17) | def RegisterDelegate(nodeType, delegate): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/AttributeEditorDelegate.pyi class AttributeEditorDelegate (line 9) | class AttributeEditorDelegate(UI4.NodeMaster.NodeInteractionDelegateMana... method acceptsDrop (line 10) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 11) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/FaceSetCreateDelegate.pyi class FaceSetCreateDelegate (line 8) | class FaceSetCreateDelegate(UI4.NodeMaster.NodeInteractionDelegateManage... method acceptsDrop (line 9) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 10) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/FileIn.pyi class FileInDelegate (line 12) | class FileInDelegate(UI4.NodeMaster.NodeInteractionDelegateManager.Deleg... method _FileInDelegate__dialogPrompt (line 13) | def _FileInDelegate__dialogPrompt(self): ... method _FileInDelegate__validCatalogDrop (line 14) | def _FileInDelegate__validCatalogDrop(self, targetNode, event): ... method _FileInDelegate__validNodeDrop (line 15) | def _FileInDelegate__validNodeDrop(self, targetNode, event): ... method acceptsDrop (line 16) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 17) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/GroupStackDelegate.pyi class GroupStackDelegate (line 7) | class GroupStackDelegate(UI4.NodeMaster.NodeInteractionDelegateManager.D... method addToNodeSpecificShelfEnvironment (line 8) | def addToNodeSpecificShelfEnvironment(self, targetNode, editor, envDic... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/IsolateDelegate.pyi class IsolateDelegate (line 11) | class IsolateDelegate(UI4.NodeMaster.NodeInteractionDelegateManager.Dele... method _IsolateDelegate__appendIsolateScenegraphLocations (line 12) | def _IsolateDelegate__appendIsolateScenegraphLocations(self, targetNod... method _IsolateDelegate__dialogPrompt (line 13) | def _IsolateDelegate__dialogPrompt(self, firstActionText): ... method _IsolateDelegate__replaceIsolateScenegraphLocations (line 14) | def _IsolateDelegate__replaceIsolateScenegraphLocations(self, targetNo... method _IsolateDelegate__setIsolateRoot (line 15) | def _IsolateDelegate__setIsolateRoot(self, targetNode, location): ... method _IsolateDelegate__validScenegraphDrop (line 16) | def _IsolateDelegate__validScenegraphDrop(self, targetNode, event): ... method acceptsDrop (line 17) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 18) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/MaterialAssignDelegate.pyi class MaterialAssignDelegate (line 10) | class MaterialAssignDelegate(UI4.NodeMaster.NodeInteractionDelegateManag... method _MaterialAssignDelegate__droppedNode (line 13) | def _MaterialAssignDelegate__droppedNode(self, targetNode, node: Nodeg... method _MaterialAssignDelegate__droppedScenegraphItem (line 14) | def _MaterialAssignDelegate__droppedScenegraphItem(self, targetNode, i... method _MaterialAssignDelegate__validNodeDrop (line 15) | def _MaterialAssignDelegate__validNodeDrop(self, targetNode, event): ... method _MaterialAssignDelegate__validScenegraphDrop (line 16) | def _MaterialAssignDelegate__validScenegraphDrop(self, targetNode, eve... method acceptsDrop (line 17) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 18) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/MaterialDelegate.pyi class MaterialDelegate (line 10) | class MaterialDelegate(UI4.NodeMaster.NodeInteractionDelegateManager.Del... method __init__ (line 11) | def __init__(self, editValue, inheritValue, nodeTypes, editParamName: ... method _MaterialDelegate__dialogPrompt (line 12) | def _MaterialDelegate__dialogPrompt(self, nodeType, nameString): ... method _MaterialDelegate__editFromNodeReference (line 13) | def _MaterialDelegate__editFromNodeReference(self, targetNode, node: N... method _MaterialDelegate__editFromScenegraphLocation (line 14) | def _MaterialDelegate__editFromScenegraphLocation(self, targetNode, lo... method _MaterialDelegate__inheritFromNodeReference (line 15) | def _MaterialDelegate__inheritFromNodeReference(self, targetNode, node... method _MaterialDelegate__inheritFromScenegraphLocation (line 16) | def _MaterialDelegate__inheritFromScenegraphLocation(self, targetNode,... method _MaterialDelegate__validNodeDrop (line 17) | def _MaterialDelegate__validNodeDrop(self, targetNode, event): ... method _MaterialDelegate__validScenegraphDrop (line 18) | def _MaterialDelegate__validScenegraphDrop(self, targetNode, event): ... method acceptsDrop (line 19) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 20) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/MaterialStackDelegate.pyi class MaterialStackDelegate (line 7) | class MaterialStackDelegate(UI4.NodeMaster.NodeInteractionDelegateManage... method addToNodeSpecificShelfEnvironment (line 8) | def addToNodeSpecificShelfEnvironment(self, targetNode, editor, envDic... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/PruneDelegate.pyi class PruneDelegate (line 9) | class PruneDelegate(UI4.NodeMaster.NodeInteractionDelegateManager.Delega... method _PruneDelegate__appendScenegraphLocations (line 10) | def _PruneDelegate__appendScenegraphLocations(self, targetNode, locati... method _PruneDelegate__replaceScenegraphLocations (line 11) | def _PruneDelegate__replaceScenegraphLocations(self, targetNode, locat... method _PruneDelegate__validScenegraphDrop (line 12) | def _PruneDelegate__validScenegraphDrop(self, targetNode, event): ... method acceptsDrop (line 13) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 14) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/RendererProceduralAssignDelegate.pyi class RendererProceduralAssignDelegate (line 9) | class RendererProceduralAssignDelegate(UI4.NodeMaster.NodeInteractionDel... method _RendererProceduralAssignDelegate__droppedNode (line 12) | def _RendererProceduralAssignDelegate__droppedNode(self, targetNode, n... method _RendererProceduralAssignDelegate__droppedScenegraphItem (line 13) | def _RendererProceduralAssignDelegate__droppedScenegraphItem(self, tar... method _RendererProceduralAssignDelegate__validNodeDrop (line 14) | def _RendererProceduralAssignDelegate__validNodeDrop(self, targetNode,... method _RendererProceduralAssignDelegate__validScenegraphDrop (line 15) | def _RendererProceduralAssignDelegate__validScenegraphDrop(self, targe... method acceptsDrop (line 16) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 17) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/NodeInteractionDelegates/Transform3D.pyi class TransformDelegate (line 8) | class TransformDelegate(UI4.NodeMaster.NodeInteractionDelegateManager.De... method _TransformDelegate__setScenegraphLocation (line 9) | def _TransformDelegate__setScenegraphLocation(self, targetNode, locati... method _TransformDelegate__validScenegraphDrop (line 10) | def _TransformDelegate__validScenegraphDrop(self, targetNode, event): ... method acceptsDrop (line 11) | def acceptsDrop(self, targetNode, event): ... method processDrop (line 12) | def processDrop(self, targetNode, event): ... FILE: katana/stubs/UI4/NodeMaster/__init__.pyi function Initialize (line 9) | def Initialize(): ... FILE: katana/stubs/UI4/Tabs/AttributesTab/AttributesTab.pyi class AttributesTab (line 19) | class AttributesTab(BaseTab): method __init__ (line 20) | def __init__(self, parent) -> None: ... method _AttributesTab__activePathPopupClicked (line 21) | def _AttributesTab__activePathPopupClicked(self): ... method _AttributesTab__activePathPopupSelected (line 22) | def _AttributesTab__activePathPopupSelected(self, path): ... method _AttributesTab__addImplicitResolvers (line 23) | def _AttributesTab__addImplicitResolvers(self, txn, opId, viewedNode):... method _AttributesTab__buildOrUpdate (line 24) | def _AttributesTab__buildOrUpdate(self, attrs): ... method _AttributesTab__clear (line 25) | def _AttributesTab__clear(self): ... method _AttributesTab__findAttributesActionCallback (line 26) | def _AttributesTab__findAttributesActionCallback(self): ... method _AttributesTab__getAttrMetaDict (line 27) | def _AttributesTab__getAttrMetaDict(self, gb, attrs): ... method _AttributesTab__iconMenuAboutToShow (line 28) | def _AttributesTab__iconMenuAboutToShow(self): ... method _AttributesTab__iconMousePress (line 29) | def _AttributesTab__iconMousePress(self, event): ... method _AttributesTab__iconStartDrag (line 30) | def _AttributesTab__iconStartDrag(self): ... method _AttributesTab__idle (line 31) | def _AttributesTab__idle(self, *args, **kwds): ... method _AttributesTab__nodeSetViewed (line 32) | def _AttributesTab__nodeSetViewed(self, args): ... method _AttributesTab__on_renderingAPI_flushPluginCaches (line 33) | def _AttributesTab__on_renderingAPI_flushPluginCaches(self): ... method _AttributesTab__selectionChanged (line 34) | def _AttributesTab__selectionChanged(self, args): ... method _AttributesTab__setTerminalOpInput (line 35) | def _AttributesTab__setTerminalOpInput(self, opInput, txn): ... method _AttributesTab__terminalOpCallback (line 36) | def _AttributesTab__terminalOpCallback(self, port: NodegraphAPI.Port, ... method _AttributesTab__updateActiveLocation (line 37) | def _AttributesTab__updateActiveLocation(self, newLocation): ... method _AttributesTab__updateTypeIcon (line 38) | def _AttributesTab__updateTypeIcon(self, typeStr): ... method customEvent (line 39) | def customEvent(self, event): ... method registerKeyboardShortcuts (line 41) | def registerKeyboardShortcuts(): ... FILE: katana/stubs/UI4/Tabs/BaseTab.pyi class BaseTab (line 20) | class BaseTab(UI4.Widgets.BaseWidgets.BaseFrame): method __init__ (line 22) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, flags: int ... method _BaseTab__addDeprecationWarningFrame (line 23) | def _BaseTab__addDeprecationWarningFrame(self): ... method _BaseTab__linkClickCallback (line 24) | def _BaseTab__linkClickCallback(self, link: str): ... method _BaseTab__on_pref_changed (line 25) | def _BaseTab__on_pref_changed(self, eventType: str | None, eventID: ty... method _BaseTab__removeDeprecationWarningFrame (line 26) | def _BaseTab__removeDeprecationWarningFrame(self): ... method _BaseTab__showDeferredWidgets (line 27) | def _BaseTab__showDeferredWidgets(self, events): ... method _showWidgetLater (line 28) | def _showWidgetLater(self, widget: PyQt5.QtWidgets.QWidget): ... method applySettings (line 29) | def applySettings(self, settings: dict): ... method closeEvent (line 30) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method getMenuBar (line 31) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method getSettings (line 32) | def getSettings(self) -> dict: ... method getTabTitle (line 33) | def getTabTitle(self) -> str | None: ... method on_animation_finished (line 34) | def on_animation_finished(self): ... method on_dismissButton_clicked (line 35) | def on_dismissButton_clicked(self): ... method on_replaceTabButton_clicked (line 36) | def on_replaceTabButton_clicked(self): ... method showEvent (line 37) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method __lt__ (line 38) | def __lt__(self, other) -> bool: ... FILE: katana/stubs/UI4/Tabs/BaseViewerTab.pyi class BaseViewerTab (line 34) | class BaseViewerTab(BaseTab): method __init__ (line 40) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, flags: int ... method _BaseViewerTab__activeManipulatorsChangedCallback (line 41) | def _BaseViewerTab__activeManipulatorsChangedCallback(self, attrs): ... method _BaseViewerTab__cleanup (line 42) | def _BaseViewerTab__cleanup(self): ... method _BaseViewerTab__configureWorkingSets (line 43) | def _BaseViewerTab__configureWorkingSets(self, viewerDelegate): ... method _BaseViewerTab__getSelectedLocationsCallback (line 44) | def _BaseViewerTab__getSelectedLocationsCallback(self, emptyMessage): ... method _BaseViewerTab__getViewerDelegates (line 45) | def _BaseViewerTab__getViewerDelegates(self, onlyFollowingViewNode: bo... method _BaseViewerTab__getViewerProxyLoaderOp (line 46) | def _BaseViewerTab__getViewerProxyLoaderOp(self, proxyAttr: PyFnAttrib... method _BaseViewerTab__onExpansionStateChanged (line 47) | def _BaseViewerTab__onExpansionStateChanged(self, locationStateChanges... method _BaseViewerTab__onPinnedStateChanged (line 48) | def _BaseViewerTab__onPinnedStateChanged(self, locationStateChanges: l... method _BaseViewerTab__onTabCreated (line 49) | def _BaseViewerTab__onTabCreated(self, objectHash: int | None, tab: Py... method _BaseViewerTab__onVisibilityStateChanged (line 50) | def _BaseViewerTab__onVisibilityStateChanged(self, _locationStateChang... method _BaseViewerTab__on_destroyed (line 52) | def _BaseViewerTab__on_destroyed(tab): ... method _BaseViewerTab__registerDestructionCallback (line 53) | def _BaseViewerTab__registerDestructionCallback(self): ... method _BaseViewerTab__selectFacesCallback (line 54) | def _BaseViewerTab__selectFacesCallback(self, selectionAttr: PyFnAttri... method _BaseViewerTab__selectLocationsCallback (line 55) | def _BaseViewerTab__selectLocationsCallback(self, locationsAttr): ... method _BaseViewerTab__setCursorPosition (line 56) | def _BaseViewerTab__setCursorPosition(self, groupAttr: PyFnAttribute.G... method _BaseViewerTab__setCursorVisibility (line 57) | def _BaseViewerTab__setCursorVisibility(self, visibleAttr: PyFnAttribu... method _BaseViewerTab__setUpdateTimerConnectionEnabled (line 58) | def _BaseViewerTab__setUpdateTimerConnectionEnabled(self, enabled: boo... method _BaseViewerTab__updateFromProjectSettings (line 59) | def _BaseViewerTab__updateFromProjectSettings(self): ... method _applyViewerPluginExtensionTerminalOps (line 60) | def _applyViewerPluginExtensionTerminalOps(self, txn: PyFnGeolib.Geoli... method _checkGLVersion (line 62) | def _checkGLVersion(requiredMajorVersion: int, requiredMinorVersion: i... method _cleanup (line 63) | def _cleanup(self): ... method _onUpdateEvent (line 64) | def _onUpdateEvent(self): ... method _on_cacheManager_flush (line 65) | def _on_cacheManager_flush(self, _eventType: str | None, _eventID: obj... method _on_implicitResolversToggled (line 66) | def _on_implicitResolversToggled(self, eventType: str | None, eventID:... method _on_lookThroughLocation_changeRequested (line 67) | def _on_lookThroughLocation_changeRequested(self, viewportName: str, l... method _on_lookThroughLocation_changed (line 68) | def _on_lookThroughLocation_changed(self, viewportName: str, location:... method _on_lookThroughLocation_cooked (line 69) | def _on_lookThroughLocation_cooked(self, viewportName: str, location: ... method _on_lookThroughLocation_doesNotExist (line 70) | def _on_lookThroughLocation_doesNotExist(self, viewportName: str, loca... method _on_node_setLocked (line 71) | def _on_node_setLocked(self, eventType: str | None, eventID: object, n... method _on_nodegraph_setCurrentTime (line 72) | def _on_nodegraph_setCurrentTime(self, _eventType: str | None, _eventI... method _on_nodegraph_setRootNode (line 73) | def _on_nodegraph_setRootNode(self): ... method _on_parameter_setValue (line 74) | def _on_parameter_setValue(self, args: seq): ... method _on_scenegraphManager_selectionChanged (line 75) | def _on_scenegraphManager_selectionChanged(self, eventType: str | None... method _on_selectedEnabledLocations_changed (line 76) | def _on_selectedEnabledLocations_changed(self, delegate: ViewerAPI.Vie... method _on_selectedLocations_cooked (line 77) | def _on_selectedLocations_cooked(self, delegate: ViewerAPI.ViewerDeleg... method _on_viewer_liveRenderFromViewerCameraChanged (line 78) | def _on_viewer_liveRenderFromViewerCameraChanged(self, eventType: str,... method _on_viewer_visibilityFollowsWorkingSetChanged (line 79) | def _on_viewer_visibilityFollowsWorkingSetChanged(self, _eventType: st... method _on_viewportView_frozenStateChanged (line 80) | def _on_viewportView_frozenStateChanged(self, viewportName: str, isVie... method _resolveViewportWidget (line 81) | def _resolveViewportWidget(self, viewport: Tuple[int, str, ViewportWid... method _unregisterWorkingSetCallbacks (line 82) | def _unregisterWorkingSetCallbacks(self): ... method _updateHook (line 83) | def _updateHook(self): ... method aboutToQuit (line 84) | def aboutToQuit(self): ... method activeManipulatorsChanged (line 85) | def activeManipulatorsChanged(self, viewportName: str, manipulatorName... method addViewerDelegate (line 86) | def addViewerDelegate(self, delegateType: str, followsViewNode: bool =... method addViewport (line 87) | def addViewport(self, viewportType: str, viewportName: str, viewerDele... method applyTerminalOps (line 88) | def applyTerminalOps(self, txn: PyFnGeolib.GeolibRuntimeTransaction, o... method closeEvent (line 89) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method filterManipulator (line 90) | def filterManipulator(self, manipulatorName: str, selectedLocations: l... method flushCaches (line 91) | def flushCaches(self): ... method flushInstanceCaches (line 93) | def flushInstanceCaches(cls): ... method freeze (line 94) | def freeze(self): ... method getNumberOfViewerDelegates (line 95) | def getNumberOfViewerDelegates(self) -> int: ... method getSelectedLocations (line 96) | def getSelectedLocations(self) -> list[str]: ... method getViewOp (line 97) | def getViewOp(self, viewerDelegate): ... method getViewerDelegateByIndex (line 98) | def getViewerDelegateByIndex(self, index: int) -> ViewerDelegate: ... method getViewportWidget (line 99) | def getViewportWidget(self, viewport: Tuple[int, str | ViewerAPI.Viewp... method getViewportWidgetByIndex (line 100) | def getViewportWidgetByIndex(self, viewportIndex: int, viewerDelegate:... method getViewportWidgetByName (line 101) | def getViewportWidgetByName(self, viewportName: str, viewerDelegate: V... method getViewports (line 102) | def getViewports(self, viewerDelegate: ViewerAPI.ViewerDelegate) -> ty... method hideEvent (line 103) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method installManipulatorFilter (line 104) | def installManipulatorFilter(self, filter_): ... method isViewerDelegateFollowingViewNode (line 105) | def isViewerDelegateFollowingViewNode(self, index: int) -> bool: ... method loadViewerPluginExtensions (line 106) | def loadViewerPluginExtensions(self): ... method removeManipulatorFilter (line 107) | def removeManipulatorFilter(self, filter_: object): ... method removeViewport (line 108) | def removeViewport(self, viewportName, viewerDelegate: ViewerAPI.Viewe... method removeViewportByIndex (line 109) | def removeViewportByIndex(self, viewportIndex: int, viewerDelegate: Vi... method setActiveLiveRenderCamera (line 110) | def setActiveLiveRenderCamera(self, useSameAsViewer: bool, path: str =... method setCamera (line 111) | def setCamera(self, viewport: Tuple[int, str, ViewportWidget | ViewerA... method setDelegateViewOp (line 112) | def setDelegateViewOp(self, txn: PyFnGeolib.GeolibRuntimeTransaction, ... method setEventHandlersEnabled (line 113) | def setEventHandlersEnabled(self, enabled: bool, isFreezeOrThaw: bool ... method setUpdateTimerInterval (line 115) | def setUpdateTimerInterval(cls, interval: float): ... method setViewedNode (line 116) | def setViewedNode(self, viewedNode: NodegraphAPI.Node | None, viewerDe... method setViewportWidgetUpdatesEnabled (line 117) | def setViewportWidgetUpdatesEnabled(self, viewportWidget: ViewportWidg... method showEvent (line 118) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method thaw (line 119) | def thaw(self): ... method updateLiveRenderCamera (line 120) | def updateLiveRenderCamera(self, location, camera): ... class _ViewerDelegatePortOpClient (line 122) | class _ViewerDelegatePortOpClient(PortOpClient): method __init__ (line 125) | def __init__(self, viewerDelegate, port: NodegraphAPI.Port, updateOpCa... method modifyPostTraversalGraphState (line 126) | def modifyPostTraversalGraphState(self, graphState: NodegraphAPI.Graph... method opChanged (line 127) | def opChanged(self, op, graphState: NodegraphAPI.GraphState, txn): ... method op (line 129) | def op(self): ... method systemArgs (line 131) | def systemArgs(self): ... function _FlushBaseViewerTabCaches (line 133) | def _FlushBaseViewerTabCaches(): ... FILE: katana/stubs/UI4/Tabs/CELScratchPad/CELScratchPad.pyi class CELPanel (line 13) | class CELPanel(PyQt5.QtWidgets.QScrollArea): method __init__ (line 14) | def __init__(self, parent) -> None: ... class CELTab (line 16) | class CELTab(BaseTab): method __init__ (line 17) | def __init__(self, parent) -> None: ... FILE: katana/stubs/UI4/Tabs/Catalog/CatalogPanel.pyi class CatalogPanel (line 21) | class CatalogPanel(BaseTab): method __init__ (line 25) | def __init__(self, *args) -> None: ... method _CatalogPanel__catalog_memoryUsageChanged_CB (line 26) | def _CatalogPanel__catalog_memoryUsageChanged_CB(self, eventType, even... method _CatalogPanel__doImportSequence (line 27) | def _CatalogPanel__doImportSequence(self): ... method _CatalogPanel__editMenu_aboutToShow (line 28) | def _CatalogPanel__editMenu_aboutToShow(self): ... method _CatalogPanel__exportCatalogMenu_aboutToShow (line 29) | def _CatalogPanel__exportCatalogMenu_aboutToShow(self): ... method _CatalogPanel__lock2dCheckbox_stateChanged_CB (line 30) | def _CatalogPanel__lock2dCheckbox_stateChanged_CB(self, state): ... method _CatalogPanel__modeCapsule_valueChanged_CB (line 31) | def _CatalogPanel__modeCapsule_valueChanged_CB(self, enabledItems, old... method _CatalogPanel__populateMenuBar (line 32) | def _CatalogPanel__populateMenuBar(self): ... method _CatalogPanel__renderManager_buffer2DAutoLockUpdate_CB (line 33) | def _CatalogPanel__renderManager_buffer2DAutoLockUpdate_CB(self, *args... method _CatalogPanel__saveAndPublishCatalogItem (line 34) | def _CatalogPanel__saveAndPublishCatalogItem(self, catalogItems, fileP... method applySettings (line 35) | def applySettings(self, settings: dict): ... method deleteCatalog (line 36) | def deleteCatalog(self, mode): ... method event (line 37) | def event(self, event): ... method exportCatalog (line 38) | def exportCatalog(self, mode): ... method getCatalogWidget (line 39) | def getCatalogWidget(self) -> CatalogWidget: ... method getMenuBar (line 40) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method getMode (line 41) | def getMode(self): ... method getSettings (line 42) | def getSettings(self) -> dict: ... method setMode (line 43) | def setMode(self, mode): ... class _SyncToProjectSettingsCheckbox (line 45) | class _SyncToProjectSettingsCheckbox(PyQt5.QtWidgets.QCheckBox): method __init__ (line 46) | def __init__(self, parent) -> None: ... method _SyncToProjectSettingsCheckbox__onPrefChanged (line 47) | def _SyncToProjectSettingsCheckbox__onPrefChanged(self, eventType: str... method _SyncToProjectSettingsCheckbox__onStateChanged (line 48) | def _SyncToProjectSettingsCheckbox__onStateChanged(self, state): ... FILE: katana/stubs/UI4/Tabs/Catalog/CatalogSaveDialog.pyi class CatalogSaveDialog (line 8) | class CatalogSaveDialog(UI4.Widgets.ProductSaveWidgets.ProductOrFileSave... method __init__ (line 9) | def __init__(self, parent, options) -> None: ... method _CatalogSaveDialog__colorspace_activated_CB (line 10) | def _CatalogSaveDialog__colorspace_activated_CB(self, *args): ... method _CatalogSaveDialog__imageExtension_activated_CB (line 11) | def _CatalogSaveDialog__imageExtension_activated_CB(self, *args): ... method addButtonsToLayout (line 12) | def addButtonsToLayout(self): ... method getResult (line 13) | def getResult(self): ... FILE: katana/stubs/UI4/Tabs/Catalog/CatalogWidget.pyi class CatalogWidget (line 24) | class CatalogWidget(SortableTreeWidget): class kColumnTypes (line 25) | class kColumnTypes(enum.Enum): method __init__ (line 34) | def __init__(cls, value) -> None: ... method _generate_next_value_ (line 35) | def _generate_next_value_(self, name, start, count, last_values): ... method __init__ (line 47) | def __init__(self, *args) -> None: ... method _CatalogWidget__aboutToDrag (line 48) | def _CatalogWidget__aboutToDrag(self, dragItems, dragObject): ... method _CatalogWidget__areTopLevelItemsReadyForSlotMode (line 49) | def _CatalogWidget__areTopLevelItemsReadyForSlotMode(self): ... method _CatalogWidget__areTopLevelItemsReadyForTimeMode (line 50) | def _CatalogWidget__areTopLevelItemsReadyForTimeMode(self): ... method _CatalogWidget__catalog_clientSlotUpdate_CB (line 51) | def _CatalogWidget__catalog_clientSlotUpdate_CB(self, *args, **kwargs)... method _CatalogWidget__catalog_itemCreate_CB (line 52) | def _CatalogWidget__catalog_itemCreate_CB(self, eventType, index, item... method _CatalogWidget__catalog_itemDelete_CB (line 53) | def _CatalogWidget__catalog_itemDelete_CB(self, args): ... method _CatalogWidget__catalog_itemPropertyUpdate_CB (line 54) | def _CatalogWidget__catalog_itemPropertyUpdate_CB(self, eventType, ind... method _CatalogWidget__catalog_itemSlotUpdate_CB (line 55) | def _CatalogWidget__catalog_itemSlotUpdate_CB(self, eventType, index, ... method _CatalogWidget__catalog_itemUserCommentUpdate_CB (line 56) | def _CatalogWidget__catalog_itemUserCommentUpdate_CB(self, eventType, ... method _CatalogWidget__catalog_itemsReordered_CB (line 57) | def _CatalogWidget__catalog_itemsReordered_CB(self, args): ... method _CatalogWidget__catalog_rebuild_CB (line 58) | def _CatalogWidget__catalog_rebuild_CB(self, args): ... method _CatalogWidget__columnMovedCB (line 59) | def _CatalogWidget__columnMovedCB(self, section, fromIndex, toIndex): ... method _CatalogWidget__dragMoveEvent (line 60) | def _CatalogWidget__dragMoveEvent(self, event, parent, index, callback... method _CatalogWidget__dropEvent (line 61) | def _CatalogWidget__dropEvent(self, event, parent, index): ... method _CatalogWidget__findListViewItemFromCatalogItem (line 62) | def _CatalogWidget__findListViewItemFromCatalogItem(self, catalogItem)... method _CatalogWidget__getSlotItem (line 63) | def _CatalogWidget__getSlotItem(self, index): ... method _CatalogWidget__headerSignalBlocker (line 64) | def _CatalogWidget__headerSignalBlocker(self, *args, **kwds): ... method _CatalogWidget__keypressCallback (line 65) | def _CatalogWidget__keypressCallback(self, event): ... method _CatalogWidget__mousePressEvent_CB (line 66) | def _CatalogWidget__mousePressEvent_CB(self, event): ... method _CatalogWidget__onProjectSettingsChange (line 67) | def _CatalogWidget__onProjectSettingsChange(self, eventData: list[tupl... method _CatalogWidget__regenerateThumbnails (line 68) | def _CatalogWidget__regenerateThumbnails(self, *args, **kwargs): ... method _CatalogWidget__saveProjectSettingsDebounced (line 69) | def _CatalogWidget__saveProjectSettingsDebounced(self, *args, **kwargs... method _CatalogWidget__sectionResized_CB (line 70) | def _CatalogWidget__sectionResized_CB(self, column, oldSize, newSize):... method _CatalogWidget__setHeaderTooltips (line 71) | def _CatalogWidget__setHeaderTooltips(self): ... method _CatalogWidget__updateThumbnailPixmaps (line 72) | def _CatalogWidget__updateThumbnailPixmaps(self, width: int): ... method _CatalogWidget__updateThumbnailWidth (line 73) | def _CatalogWidget__updateThumbnailWidth(self): ... method addDynamicColumn (line 74) | def addDynamicColumn(self, columnName: str, columnType: CatalogWidget.... method applyColumnHiddenSettings (line 75) | def applyColumnHiddenSettings(self, columnsHidden: dict[str, bool]): ... method applyColumnOrderSettings (line 76) | def applyColumnOrderSettings(self, columnOrder: dict[str, int]): ... method applyColumnWidthsSettings (line 77) | def applyColumnWidthsSettings(self, columnWidths: dict[str, int]): ... method applyProjectSettings (line 78) | def applyProjectSettings(self): ... method deleteItems (line 79) | def deleteItems(self, selectionMask): ... method drawBranches (line 80) | def drawBranches(self, painter, rect, index): ... method getColumnHiddenSettings (line 81) | def getColumnHiddenSettings(self) -> dict[str, bool]: ... method getColumnOrderSettings (line 82) | def getColumnOrderSettings(self) -> dict[str, int]: ... method getColumnWidthsSettings (line 83) | def getColumnWidthsSettings(self) -> dict[str, int]: ... method getItems (line 84) | def getItems(self, selectionMask): ... method getMonitorSwipeMode (line 85) | def getMonitorSwipeMode(self): ... method getSmallFont (line 86) | def getSmallFont(self): ... method rebuild (line 87) | def rebuild(self): ... method restoreState (line 88) | def restoreState(self): ... method saveProjectSettings (line 89) | def saveProjectSettings(self): ... method saveState (line 90) | def saveState(self): ... class _CatalogThumbnailWidthRequester (line 92) | class _CatalogThumbnailWidthRequester(PyQt5.QtCore.QObject): method __init__ (line 95) | def __init__(self) -> None: ... method instance (line 97) | def instance(cls): ... method requestWidth (line 98) | def requestWidth(self, width: int): ... method resetWidth (line 99) | def resetWidth(self): ... class _HeaderContextMenu (line 101) | class _HeaderContextMenu(_NonAutomaticallyDissmisableMenu): method __init__ (line 102) | def __init__(self, parent: CatalogWidget) -> None: ... method _HeaderContextMenu__onChecked (line 103) | def _HeaderContextMenu__onChecked(self): ... method open (line 104) | def open(self, point: PyQt5.QtCore.QPoint): ... class _HeaderGSVMenu (line 106) | class _HeaderGSVMenu(_HeaderSubMenuBase): method __init__ (line 109) | def __init__(self, parent) -> None: ... method _getColumnNamesFromSnapshot (line 110) | def _getColumnNamesFromSnapshot(self, snapshot: ProjectSnapshot) -> li... class _HeaderIRFMenu (line 112) | class _HeaderIRFMenu(_HeaderSubMenuBase): method __init__ (line 115) | def __init__(self, parent) -> None: ... method _getColumnNamesFromSnapshot (line 116) | def _getColumnNamesFromSnapshot(self, snapshot: ProjectSnapshot) -> li... class _HeaderSubMenuBase (line 118) | class _HeaderSubMenuBase(_NonAutomaticallyDissmisableMenu): method __init__ (line 121) | def __init__(self, parent: _HeaderContextMenu) -> None: ... method _HeaderSubMenuBase__createAddColumnAction (line 122) | def _HeaderSubMenuBase__createAddColumnAction(self, label: str) -> PyQ... method _HeaderSubMenuBase__createCheckboxAction (line 123) | def _HeaderSubMenuBase__createCheckboxAction(self, label: str) -> PyQt... method _HeaderSubMenuBase__createExistingColumnAction (line 124) | def _HeaderSubMenuBase__createExistingColumnAction(self, label: str, l... method _HeaderSubMenuBase__createNew (line 126) | def _HeaderSubMenuBase__createNew(cls, parent): ... method _HeaderSubMenuBase__onAddNew (line 127) | def _HeaderSubMenuBase__onAddNew(self): ... method _HeaderSubMenuBase__onToggleExisting (line 128) | def _HeaderSubMenuBase__onToggleExisting(self): ... method _getColumnNamesFromSnapshot (line 129) | def _getColumnNamesFromSnapshot(self, snapshot: ProjectSnapshot): ... class _NonAutomaticallyDissmisableMenu (line 131) | class _NonAutomaticallyDissmisableMenu(PyQt5.QtWidgets.QMenu): method event (line 132) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... FILE: katana/stubs/UI4/Tabs/Catalog/CatalogWidgetItem.pyi class CatalogSlotParentItem (line 49) | class CatalogSlotParentItem(QT4Widgets.SortableTreeWidget.SortableTreeWi... method __init__ (line 50) | def __init__(self, slot, *args) -> None: ... method getCatalogItem (line 51) | def getCatalogItem(self): ... method getSlot (line 52) | def getSlot(self): ... method paintDelegate (line 53) | def paintDelegate(self, baseClass, delegate, painter, option, index): ... method updateTextColor (line 54) | def updateTextColor(self): ... class CatalogWidgetItem (line 56) | class CatalogWidgetItem(UI4.Widgets.CatalogThumbnailWidget.CatalogItemTh... method __init__ (line 59) | def __init__(self, catalogItem, *args) -> None: ... method _CatalogWidgetItem__adoptFrameTime (line 60) | def _CatalogWidgetItem__adoptFrameTime(self): ... method _CatalogWidgetItem__adoptROI (line 61) | def _CatalogWidgetItem__adoptROI(self): ... method _CatalogWidgetItem__canFindInNodeGraph (line 62) | def _CatalogWidgetItem__canFindInNodeGraph(self) -> bool: ... method _CatalogWidgetItem__duplicateItem (line 63) | def _CatalogWidgetItem__duplicateItem(self): ... method _CatalogWidgetItem__findInNodegraph (line 64) | def _CatalogWidgetItem__findInNodegraph(self): ... method _CatalogWidgetItem__getIndividualGSVLabeL (line 65) | def _CatalogWidgetItem__getIndividualGSVLabeL(self, column: int) -> _G... method _CatalogWidgetItem__importImageSequence (line 66) | def _CatalogWidgetItem__importImageSequence(self, location, view): ... method _CatalogWidgetItem__regenerateThumbnail (line 67) | def _CatalogWidgetItem__regenerateThumbnail(self): ... method _CatalogWidgetItem__selectPrimaryCatalogItem (line 69) | def _CatalogWidgetItem__selectPrimaryCatalogItem(clientKey: int, catal... method _CatalogWidgetItem__updateClientPinned (line 71) | def _CatalogWidgetItem__updateClientPinned(clientKey: int, catalogItem... method _onCatalogItemChanged (line 72) | def _onCatalogItemChanged(self): ... method buildContextMenu (line 73) | def buildContextMenu(self, parent: CatalogWidget, column: int) -> PyQt... method handleMousePressEvent (line 74) | def handleMousePressEvent(self, button, col): ... method paintDelegate (line 75) | def paintDelegate(self, baseClass, delegate, painter, option, index): ... method refreshEverything (line 76) | def refreshEverything(self): ... method refreshGSVsAndIRFs (line 77) | def refreshGSVsAndIRFs(self): ... method refreshProperties (line 78) | def refreshProperties(self): ... method refreshUserComment (line 79) | def refreshUserComment(self): ... method updateThumbnailPixmap (line 80) | def updateThumbnailPixmap(self, width: int) -> bool: ... class CatalogWidgetItemDelegate (line 82) | class CatalogWidgetItemDelegate(QT4Widgets.SortableTreeWidget.SortableTr... method createEditor (line 84) | def createEditor(self, parent, option, index): ... method paint (line 85) | def paint(self, painter, option, index): ... method setModelData (line 86) | def setModelData(self, editor, model, index): ... method sizeHint (line 87) | def sizeHint(self, option, index): ... class _FrameLabel (line 89) | class _FrameLabel(_PinnableLabel): method _getLabelCheckedStateAndVisibility (line 90) | def _getLabelCheckedStateAndVisibility(self): ... method _on_checkBox_stateChanged (line 91) | def _on_checkBox_stateChanged(self, state): ... class _GSVLabel (line 93) | class _GSVLabel(_PinnableLabel): method __init__ (line 94) | def __init__(self) -> None: ... method _getLabelCheckedStateAndVisibility (line 95) | def _getLabelCheckedStateAndVisibility(self): ... method _on_checkBox_stateChanged (line 96) | def _on_checkBox_stateChanged(self, state): ... method setName (line 97) | def setName(self, name: str): ... class _GSVsLabel (line 99) | class _GSVsLabel(PyQt5.QtWidgets.QLabel): class _GSV (line 100) | class _GSV(tuple): method __init__ (line 104) | def __init__(self, _cls, key, value, isPinned) -> None: ... method _asdict (line 105) | def _asdict(self): ... method _make (line 107) | def _make(cls, iterable): ... method _replace (line 108) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 109) | def __getnewargs__(self): ... method isPinned (line 111) | def isPinned(self): ... method key (line 113) | def key(self): ... method value (line 115) | def value(self): ... method __init__ (line 117) | def __init__(self) -> None: ... method _GSVsLabel__updateText (line 118) | def _GSVsLabel__updateText(self): ... method resizeEvent (line 119) | def resizeEvent(self, event: PyQt5.QtGui.QResizeEvent): ... method updateGSVs (line 120) | def updateGSVs(self, catalogItem: CatalogItem): ... class _Icon (line 122) | class _Icon(PyQt5.QtWidgets.QLabel): method __init__ (line 125) | def __init__(self) -> None: ... method updatePixmap (line 126) | def updatePixmap(self, pixmap: PyQt5.QtGui.QPixmap | None): ... class _PinColumnCheckBox (line 128) | class _PinColumnCheckBox(PyQt5.QtWidgets.QWidget): method __init__ (line 129) | def __init__(self) -> None: ... method _PinColumnCheckBox__on_checkBox_stateChanged (line 130) | def _PinColumnCheckBox__on_checkBox_stateChanged(self, state: int): ... method updateItem (line 131) | def updateItem(self, catalogItem: CatalogAPI.CatalogItem.CatalogItem |... class _PinnableLabel (line 133) | class _PinnableLabel(PyQt5.QtWidgets.QWidget): method __init__ (line 135) | def __init__(self) -> None: ... method _getLabelCheckedStateAndVisibility (line 136) | def _getLabelCheckedStateAndVisibility(self) -> Tuple[str, bool, bool]... method _on_checkBox_stateChanged (line 137) | def _on_checkBox_stateChanged(self, state: int): ... method getText (line 138) | def getText(self) -> str: ... method updateItem (line 139) | def updateItem(self, catalogItem: CatalogItem): ... method updateTextColor (line 140) | def updateTextColor(self, defaultTextColor: Incomplete | None = ...): ... class _PinnedVariablesMenu (line 142) | class _PinnedVariablesMenu(PyQt5.QtWidgets.QDialog): method __init__ (line 143) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, catalogItem: Catal... method _PinnedVariablesMenu__buildHeaderWidget (line 144) | def _PinnedVariablesMenu__buildHeaderWidget(self) -> PyQt5.QtWidgets.Q... method _PinnedVariablesMenu__buildScrollAreaWidget (line 145) | def _PinnedVariablesMenu__buildScrollAreaWidget(self) -> PyQt5.QtWidge... method _PinnedVariablesMenu__on_button_clicked (line 146) | def _PinnedVariablesMenu__on_button_clicked(self): ... method _PinnedVariablesMenu__on_frameCheckBox_stateChanged (line 147) | def _PinnedVariablesMenu__on_frameCheckBox_stateChanged(self, state: i... method _PinnedVariablesMenu__on_varCheckBox_stateChanged (line 148) | def _PinnedVariablesMenu__on_varCheckBox_stateChanged(self, state: int... method _PinnedVariablesMenu__updateOnAndOffButtons (line 149) | def _PinnedVariablesMenu__updateOnAndOffButtons(self): ... method exec_ (line 150) | def exec_(self, pos: PyQt5.QtCore.QPoint) -> int: ... class _TickIcon (line 152) | class _TickIcon(_Icon): method __init__ (line 153) | def __init__(self) -> None: ... function GetColumnID (line 155) | def GetColumnID(columnKeyName: str) -> int | None: ... function GetColumnKeyName (line 156) | def GetColumnKeyName(columnID: int) -> str: ... function GetColumnName (line 157) | def GetColumnName(columnID): ... function GetDefaultColumnWidth (line 158) | def GetDefaultColumnWidth(columnID): ... function SetDefaultColumnWidth (line 159) | def SetDefaultColumnWidth(columnID, size): ... FILE: katana/stubs/UI4/Tabs/Catalog/ImageImportDialog.pyi function GetImagePath (line 8) | def GetImagePath(title: Incomplete | None = ..., path: Incomplete | None... function SetLoadPath (line 9) | def SetLoadPath(path): ... FILE: katana/stubs/UI4/Tabs/ColorPaletteTab.pyi class ColorMathArea (line 21) | class ColorMathArea(PyQt5.QtWidgets.QWidget): method __init__ (line 22) | def __init__(self, parent) -> None: ... method _ColorMathArea__update (line 23) | def _ColorMathArea__update(self, *args, **kwargs): ... method setGlobals (line 24) | def setGlobals(self, globalsDict): ... class ColorPaletteEditor (line 26) | class ColorPaletteEditor(UI4.Widgets.SortablePanel.SortablePanelFormWidg... method __init__ (line 28) | def __init__(self, parent, policy, factory) -> None: ... method _ColorPaletteEditor__rebuildAllCB (line 29) | def _ColorPaletteEditor__rebuildAllCB(self, args): ... method _ColorPaletteEditor__setupEventHandlers (line 30) | def _ColorPaletteEditor__setupEventHandlers(self, enabled): ... method _freeze (line 31) | def _freeze(self): ... method _thaw (line 32) | def _thaw(self): ... method addColor (line 33) | def addColor(self): ... method buildAddMenu (line 34) | def buildAddMenu(self, menu): ... method clearAll (line 35) | def clearAll(self): ... method dragEnterEvent (line 36) | def dragEnterEvent(self, event): ... method dropEvent (line 37) | def dropEvent(self, event): ... method emit_globalsChanged (line 38) | def emit_globalsChanged(self, *args, **kwargs): ... method getGlobals (line 39) | def getGlobals(self): ... method panelDeleted (line 40) | def panelDeleted(self, index): ... method panelReordered (line 41) | def panelReordered(self, oldPos, newPos): ... method updatePanels (line 42) | def updatePanels(self): ... class ColorPalettePanel (line 44) | class ColorPalettePanel(BaseTab): method __init__ (line 45) | def __init__(self, parent) -> None: ... method _ColorPalettePanel__colorPalette_globalsChanged_CB (line 46) | def _ColorPalettePanel__colorPalette_globalsChanged_CB(self): ... method _ColorPalettePanel__createColorPalette (line 47) | def _ColorPalettePanel__createColorPalette(self, index: Incomplete | N... method _ColorPalettePanel__recreatePolicy (line 48) | def _ColorPalettePanel__recreatePolicy(self, args): ... class CustomVector (line 50) | class CustomVector(PyImath.V3d): method __add__ (line 51) | def __add__(self, other): ... method __mul__ (line 52) | def __mul__(self, other): ... method __sub__ (line 53) | def __sub__(self, other): ... method __truediv__ (line 54) | def __truediv__(self, other): ... class InputPanel (line 56) | class InputPanel(UI4.Widgets.SortablePanel.SortablePanelBase): method __init__ (line 57) | def __init__(self, parent, name, policy, factory, callbackfcn) -> None... method adopt (line 58) | def adopt(self, layer): ... method getWidget (line 59) | def getWidget(self): ... FILE: katana/stubs/UI4/Tabs/CurveEditorTab.pyi class CurveEditorPanel (line 25) | class CurveEditorPanel(BaseTab): class _LocalDomainSelectionObserver (line 26) | class _LocalDomainSelectionObserver(PyFCurveGraphWidget.DomainSliderOb... method __init__ (line 27) | def __init__(self, domainSlider) -> None: ... method valueChanged (line 28) | def valueChanged(self, domainSlider: Incomplete | None = ...): ... method __init__ (line 29) | def __init__(self, parent) -> None: ... method _CurveEditorPanel__actionBegin_callback (line 30) | def _CurveEditorPanel__actionBegin_callback(self, name): ... method _CurveEditorPanel__actionEnd_callback (line 31) | def _CurveEditorPanel__actionEnd_callback(self): ... method _CurveEditorPanel__finalizeValue_self_callback (line 32) | def _CurveEditorPanel__finalizeValue_self_callback(self, eventType, ev... method _CurveEditorPanel__nodegraph_setCurrentTime_callback (line 33) | def _CurveEditorPanel__nodegraph_setCurrentTime_callback(self, eventTy... method _CurveEditorPanel__parameter_showKeys_callback (line 34) | def _CurveEditorPanel__parameter_showKeys_callback(self, eventType, ev... method _CurveEditorPanel__processUnfocusedKeyEvent (line 35) | def _CurveEditorPanel__processUnfocusedKeyEvent(self, unfocusedEvent):... method _CurveEditorPanel__unloadCurve (line 36) | def _CurveEditorPanel__unloadCurve(self, fcurve): ... method _CurveEditorPanel__updateDomainSlider (line 37) | def _CurveEditorPanel__updateDomainSlider(self): ... method _CurveEditorPanel__updateKeys (line 38) | def _CurveEditorPanel__updateKeys(self): ... method _CurveEditorPanel__update_self_callback (line 39) | def _CurveEditorPanel__update_self_callback(self, eventType, eventID, ... method closeEvent (line 40) | def closeEvent(self, event): ... method event (line 41) | def event(self, event): ... function __eval_node_param (line 43) | def __eval_node_param(name, frame): ... function global_parameter_showKeys_callback (line 44) | def global_parameter_showKeys_callback(eventType, eventID, paramFullName... FILE: katana/stubs/UI4/Tabs/DopeSheet/DopeSheet.pyi class DopeSheetPanel (line 15) | class DopeSheetPanel(BaseTab, UI4.FormMaster.ParameterCurveEditSet.Param... method __init__ (line 16) | def __init__(self, parent) -> None: ... method _DopeSheetPanel__buildTreeItemContextMenu (line 17) | def _DopeSheetPanel__buildTreeItemContextMenu(self, menu): ... method _DopeSheetPanel__checkCurvable (line 18) | def _DopeSheetPanel__checkCurvable(self, vp): ... method _DopeSheetPanel__expandOrCollapseCB (line 19) | def _DopeSheetPanel__expandOrCollapseCB(self, item): ... method _DopeSheetPanel__extractParams (line 20) | def _DopeSheetPanel__extractParams(self, event): ... method _DopeSheetPanel__getEntry (line 21) | def _DopeSheetPanel__getEntry(self, paramFullName, create: bool = ...)... method _DopeSheetPanel__getParamFromName (line 22) | def _DopeSheetPanel__getParamFromName(self, paramFullName, excludeExpr... method _DopeSheetPanel__getParamKeys (line 23) | def _DopeSheetPanel__getParamKeys(self, paramFullName): ... method _DopeSheetPanel__getParamNamesForItems (line 24) | def _DopeSheetPanel__getParamNamesForItems(self, items): ... method _DopeSheetPanel__getParamNamesFromSelection (line 25) | def _DopeSheetPanel__getParamNamesFromSelection(self): ... method _DopeSheetPanel__getParamsFromSelection (line 26) | def _DopeSheetPanel__getParamsFromSelection(self): ... method _DopeSheetPanel__makeSelectedConstant (line 27) | def _DopeSheetPanel__makeSelectedConstant(self): ... method _DopeSheetPanel__selectKeysForSelectedItems (line 28) | def _DopeSheetPanel__selectKeysForSelectedItems(self): ... method _DopeSheetPanel__setDisplayUpdatesEnabled (line 29) | def _DopeSheetPanel__setDisplayUpdatesEnabled(self, enableRaw, updateO... method _DopeSheetPanel__unCurvafySelectedItems (line 30) | def _DopeSheetPanel__unCurvafySelectedItems(self): ... method _DopeSheetPanel__updateDisplay (line 31) | def _DopeSheetPanel__updateDisplay(self, *args): ... method _DopeSheetPanel__updateScroll (line 32) | def _DopeSheetPanel__updateScroll(self, *args): ... method _DopeSheetPanel__viewCurves (line 33) | def _DopeSheetPanel__viewCurves(self, vp): ... method _initializeSet (line 34) | def _initializeSet(self, curveEditSetCopy): ... method _keysChanged (line 35) | def _keysChanged(self, paramFullName): ... method _nameChanged (line 36) | def _nameChanged(self, oldParamFullName, newParamFullName, newParamLoc... method _nodeNameChanged (line 37) | def _nodeNameChanged(self, oldNodeName, newNodeName): ... method _showKeys (line 38) | def _showKeys(self, paramFullName, show): ... method dragEnterEvent (line 39) | def dragEnterEvent(self, event): ... method dropEvent (line 40) | def dropEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/DopeSheet/DopeSheetTree.pyi class DopeSheetItem (line 12) | class DopeSheetItem(UI4.Widgets.TreeWidget.TreeItem): method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method Prune (line 15) | def Prune(cls, child, keep: Incomplete | None = ...): ... method _KeyManagingItem__addKeys (line 16) | def _KeyManagingItem__addKeys(self, keys): ... method _setKeysFromChildren (line 17) | def _setKeysFromChildren(self): ... method _setKeysFromChildrenSelected (line 18) | def _setKeysFromChildrenSelected(self): ... method _setKeysSelectedAndUpdate (line 19) | def _setKeysSelectedAndUpdate(self, keys, selected, updateParent: bool... method addChild (line 20) | def addChild(self, child, **kwargs): ... method buildContextMenu (line 21) | def buildContextMenu(self, menu): ... method clear (line 22) | def clear(self): ... method clearKeys (line 23) | def clearKeys(self): ... method clearKeysSelected (line 24) | def clearKeysSelected(self): ... method getDescendant (line 25) | def getDescendant(self, childNameList, create: bool = ...): ... method getFullNameBelow (line 26) | def getFullNameBelow(self, excludedParent, separator: str = ...): ... method getKeys (line 27) | def getKeys(self): ... method getKeysSelected (line 28) | def getKeysSelected(self): ... method hasKeys (line 29) | def hasKeys(self): ... method hasKeysSelected (line 30) | def hasKeysSelected(self): ... method iterKeys (line 31) | def iterKeys(self): ... method iterKeysSelected (line 32) | def iterKeysSelected(self): ... method iterKeysUnselected (line 33) | def iterKeysUnselected(self): ... method setKeys (line 34) | def setKeys(self, keys): ... method setKeysSelected (line 35) | def setKeysSelected(self, keys, selected): ... method takeChild (line 36) | def takeChild(self, index): ... method takeChildren (line 37) | def takeChildren(self): ... method toggleKeySelected (line 38) | def toggleKeySelected(self, key): ... class DopeSheetTreeWidget (line 40) | class DopeSheetTreeWidget(TreeWidget): method __init__ (line 42) | def __init__(self, *args, **kwargs) -> None: ... method _buildRootItem (line 43) | def _buildRootItem(self, parent, name): ... method buildItemContextMenu (line 44) | def buildItemContextMenu(self, item, menu): ... method resizeEvent (line 45) | def resizeEvent(self, event): ... class KeyManagingItem (line 47) | class KeyManagingItem(UI4.Widgets.TreeWidget.TreeItem): method __init__ (line 48) | def __init__(self, *args, **kwargs) -> None: ... method Prune (line 50) | def Prune(cls, child, keep: Incomplete | None = ...): ... method _KeyManagingItem__addKeys (line 51) | def _KeyManagingItem__addKeys(self, keys): ... method _setKeysFromChildren (line 52) | def _setKeysFromChildren(self): ... method _setKeysFromChildrenSelected (line 53) | def _setKeysFromChildrenSelected(self): ... method _setKeysSelectedAndUpdate (line 54) | def _setKeysSelectedAndUpdate(self, keys, selected, updateParent: bool... method addChild (line 55) | def addChild(self, child, **kwargs): ... method buildContextMenu (line 56) | def buildContextMenu(self, menu): ... method clear (line 57) | def clear(self): ... method clearKeys (line 58) | def clearKeys(self): ... method clearKeysSelected (line 59) | def clearKeysSelected(self): ... method getDescendant (line 60) | def getDescendant(self, childNameList, create: bool = ...): ... method getFullNameBelow (line 61) | def getFullNameBelow(self, excludedParent, separator: str = ...): ... method getKeys (line 62) | def getKeys(self): ... method getKeysSelected (line 63) | def getKeysSelected(self): ... method hasKeys (line 64) | def hasKeys(self): ... method hasKeysSelected (line 65) | def hasKeysSelected(self): ... method iterKeys (line 66) | def iterKeys(self): ... method iterKeysSelected (line 67) | def iterKeysSelected(self): ... method iterKeysUnselected (line 68) | def iterKeysUnselected(self): ... method setKeys (line 69) | def setKeys(self, keys): ... method setKeysSelected (line 70) | def setKeysSelected(self, keys, selected): ... method takeChild (line 71) | def takeChild(self, index): ... method takeChildren (line 72) | def takeChildren(self): ... method toggleKeySelected (line 73) | def toggleKeySelected(self, key): ... class SelectionMatchingItem (line 75) | class SelectionMatchingItem(KeyManagingItem): method _setKeysFromChildrenSelected (line 76) | def _setKeysFromChildrenSelected(self): ... method _setKeysSelectedAndUpdate (line 77) | def _setKeysSelectedAndUpdate(self, keys, selected, **kwargs): ... method selected (line 78) | def selected(self): ... method setSelected (line 79) | def setSelected(self, selected, **kwargs): ... function GetItemFromParamName (line 81) | def GetItemFromParamName(tree, paramFullName, create: bool = ...): ... function GetParamFromItem (line 82) | def GetParamFromItem(item, paramRoot: Incomplete | None = ...): ... function GetParamNameFromItem (line 83) | def GetParamNameFromItem(item, paramRoot: Incomplete | None = ...): ... function PruneParam (line 84) | def PruneParam(item, paramRoot: Incomplete | None = ...): ... FILE: katana/stubs/UI4/Tabs/DopeSheet/KeyDrawingLayer.pyi class KeyDrawingLayer (line 14) | class KeyDrawingLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 15) | def __init__(self, treeWidget, *args, **kwargs) -> None: ... method _KeyDrawingLayer__currentTimeCB (line 16) | def _KeyDrawingLayer__currentTimeCB(self, args: Incomplete | None = ..... method _KeyDrawingLayer__drawWindowSpaceText (line 17) | def _KeyDrawingLayer__drawWindowSpaceText(self, text: str, textColor: ... method _KeyDrawingLayer__getTreeItemStartY (line 18) | def _KeyDrawingLayer__getTreeItemStartY(self): ... method _KeyDrawingLayer__hitTestBoxForChildren (line 19) | def _KeyDrawingLayer__hitTestBoxForChildren(self, firstChildTop, item,... method _KeyDrawingLayer__paintItemChildrenGL (line 20) | def _KeyDrawingLayer__paintItemChildrenGL(self, startY, item, visibleA... method _KeyDrawingLayer__paintKey (line 21) | def _KeyDrawingLayer__paintKey(self, t, y0, y1, isLeaf, degenerate, se... method _KeyDrawingLayer__paintTimeCursor (line 22) | def _KeyDrawingLayer__paintTimeCursor(self, t, lineRgba, textRgba, x0,... method _KeyDrawingLayer__paintTimebar (line 23) | def _KeyDrawingLayer__paintTimebar(self, x0, x1, yTop, yBase, yBottom,... method _KeyDrawingLayer__timeRangeCB (line 24) | def _KeyDrawingLayer__timeRangeCB(self, *args): ... method clearKeysPotential (line 25) | def clearKeysPotential(self): ... method getTextScale (line 26) | def getTextScale(self) -> float: ... method hitTestBox (line 27) | def hitTestBox(self, hitArea: None) -> list: ... method hitTestPoint (line 28) | def hitTestPoint(self, worldPt): ... method hitTestPointForItem (line 29) | def hitTestPointForItem(self, worldPt): ... method initializeGL (line 30) | def initializeGL(self): ... method paintGL (line 31) | def paintGL(self): ... method setGhostTime (line 32) | def setGhostTime(self, t): ... method setKeysPotential (line 33) | def setKeysPotential(self, potentials, conflict: bool = ...): ... method setTextScale (line 34) | def setTextScale(self, textScale: float): ... FILE: katana/stubs/UI4/Tabs/DopeSheet/KeyInteractionLayer.pyi class BandSelectionEventProcessor (line 22) | class BandSelectionEventProcessor(UI4.Util.Events.LayerWorldDragEventPro... method __init__ (line 23) | def __init__(self, layerStack) -> None: ... method _BandSelectionEventProcessor__scrollLayerStack (line 24) | def _BandSelectionEventProcessor__scrollLayerStack(self, dx, dy): ... method _BandSelectionEventProcessor__updateSelection (line 25) | def _BandSelectionEventProcessor__updateSelection(self, modifiers): ... method _update (line 26) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... method finish (line 27) | def finish(self, cancelled: bool = ...): ... class BandSelectionLayer (line 29) | class BandSelectionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 30) | def __init__(self, *args, **kwargs) -> None: ... method _BandSelectionLayer__updateRect (line 31) | def _BandSelectionLayer__updateRect(self): ... method getEnd (line 32) | def getEnd(self): ... method getRectangle (line 33) | def getRectangle(self): ... method getStart (line 34) | def getStart(self): ... method paintGL (line 35) | def paintGL(self): ... method setEnd (line 36) | def setEnd(self, x1, y1): ... method setStart (line 37) | def setStart(self, x0, y0): ... class CurrentTimeEventProcessor (line 39) | class CurrentTimeEventProcessor(UI4.Util.Events.LayerWorldDragEventProce... method _update (line 40) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... method finish (line 41) | def finish(self, cancelled: bool = ...): ... class KeyInteractionLayer (line 43) | class KeyInteractionLayer(QT4GLLayerStack.LayerStack.Layer, UI4.Util.Eve... method __init__ (line 44) | def __init__(self, treeWidget, *args, **kwargs) -> None: ... method _KeyInteractionLayer__copySelectedKeys (line 45) | def _KeyInteractionLayer__copySelectedKeys(self): ... method _KeyInteractionLayer__deleteSelectedKeys (line 46) | def _KeyInteractionLayer__deleteSelectedKeys(self): ... method _KeyInteractionLayer__getSelection (line 47) | def _KeyInteractionLayer__getSelection(self, rootItem: Incomplete | No... method _KeyInteractionLayer__getSelectionHierarchy (line 48) | def _KeyInteractionLayer__getSelectionHierarchy(self): ... method _KeyInteractionLayer__getSelectionHierarchyR (line 49) | def _KeyInteractionLayer__getSelectionHierarchyR(self, rootItem, param... method _KeyInteractionLayer__getToolTipText (line 50) | def _KeyInteractionLayer__getToolTipText(self, layerStack, event): ... method _KeyInteractionLayer__pasteKeys (line 51) | def _KeyInteractionLayer__pasteKeys(self): ... method _KeyInteractionLayer__setKey (line 52) | def _KeyInteractionLayer__setKey(self): ... method _KeyInteractionLayer__setKeyOnAll (line 53) | def _KeyInteractionLayer__setKeyOnAll(self): ... method _KeyInteractionLayer__setKeyR (line 54) | def _KeyInteractionLayer__setKeyR(self, entry, t, paramRoot): ... method _KeyInteractionLayer__toggleToolTips (line 55) | def _KeyInteractionLayer__toggleToolTips(self): ... method _KeyInteractionLayer__updateActions (line 56) | def _KeyInteractionLayer__updateActions(self, layerStack): ... method _KeyInteractionLayer__updateGhostTime (line 57) | def _KeyInteractionLayer__updateGhostTime(self, layerStack, pos: Incom... method _processEvent (line 58) | def _processEvent(self, event): ... method _processEventUnconditional (line 59) | def _processEventUnconditional(self, event): ... method buildContextMenu (line 60) | def buildContextMenu(self, menu, contextMenuEvent): ... method contextMenuFinished (line 61) | def contextMenuFinished(self): ... method processEvent (line 62) | def processEvent(self, event): ... method setLayerStack (line 63) | def setLayerStack(self, *args): ... class KeyMoveEventProcessor (line 65) | class KeyMoveEventProcessor(UI4.Util.Events.LayerWorldDragEventProcessor): method __init__ (line 70) | def __init__(self, layerStack, treeWidget) -> None: ... method _KeyMoveEventProcessor__checkAllowed (line 71) | def _KeyMoveEventProcessor__checkAllowed(self): ... method _KeyMoveEventProcessor__scrollLayerStack (line 72) | def _KeyMoveEventProcessor__scrollLayerStack(self, dx, dy): ... method _KeyMoveEventProcessor__showCopyCursor (line 73) | def _KeyMoveEventProcessor__showCopyCursor(self, showAsCopy): ... method _KeyMoveEventProcessor__showMove (line 74) | def _KeyMoveEventProcessor__showMove(self): ... method _update (line 75) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... method finish (line 76) | def finish(self, cancelled: bool = ...): ... class PasteTarget (line 78) | class PasteTarget: method __init__ (line 79) | def __init__(self, treeWidget) -> None: ... method _PasteTarget__getMimeData (line 80) | def _PasteTarget__getMimeData(self): ... method _PasteTarget__getParametersFromEntry (line 81) | def _PasteTarget__getParametersFromEntry(self, entry): ... method _PasteTarget__getTargetParameters (line 82) | def _PasteTarget__getTargetParameters(self, mimeData): ... method _PasteTarget__unwrapPotentials (line 83) | def _PasteTarget__unwrapPotentials(self, potentialsHierarchy): ... method clear (line 84) | def clear(self): ... method getPasteDescription (line 85) | def getPasteDescription(self): ... method getPotentials (line 86) | def getPotentials(self): ... method getTargetEntry (line 87) | def getTargetEntry(self): ... method getTargetRootEntry (line 88) | def getTargetRootEntry(self): ... method getTargetTime (line 89) | def getTargetTime(self): ... method isTargetTimeSet (line 90) | def isTargetTimeSet(self): ... method isValid (line 91) | def isValid(self): ... method paste (line 92) | def paste(self): ... method setTargetEntry (line 93) | def setTargetEntry(self, entry): ... method setTargetTime (line 94) | def setTargetTime(self, time): ... FILE: katana/stubs/UI4/Tabs/DopeSheet/KeyLayerStack.pyi class KeyLayerStack (line 16) | class KeyLayerStack(LayerStack): method __init__ (line 19) | def __init__(self, parent, treeWidget) -> None: ... method _KeyLayerStack__directUpdateGL (line 20) | def _KeyLayerStack__directUpdateGL(self): ... method _KeyLayerStack__getKeysSelected (line 21) | def _KeyLayerStack__getKeysSelected(self, item, keyList, includeParent... method _KeyLayerStack__getTreeOffsetAndHeight (line 22) | def _KeyLayerStack__getTreeOffsetAndHeight(self): ... method clearKeysPotential (line 23) | def clearKeysPotential(self): ... method clearSelection (line 24) | def clearSelection(self, update: bool = ...): ... method contextMenuEvent (line 25) | def contextMenuEvent(self, event): ... method event (line 26) | def event(self, rawEvent): ... method fontChange (line 27) | def fontChange(self, oldFont: PyQt5.QtGui.QFont): ... method frameInOut (line 28) | def frameInOut(self): ... method frameKeysAll (line 29) | def frameKeysAll(self): ... method frameKeysSelected (line 30) | def frameKeysSelected(self): ... method frameTimeRange (line 31) | def frameTimeRange(self, inTime, outTime): ... method frameWorkingInOut (line 32) | def frameWorkingInOut(self): ... method getKeysSelected (line 33) | def getKeysSelected(self, includeParents: bool = ...): ... method hitTestBox (line 34) | def hitTestBox(self, worldBox): ... method hitTestPoint (line 35) | def hitTestPoint(self, worldPt): ... method hitTestPointForItem (line 36) | def hitTestPointForItem(self, worldPt): ... method resizeGL (line 37) | def resizeGL(self, w, h): ... method selectAll (line 38) | def selectAll(self, update: bool = ...): ... method setGhostTime (line 39) | def setGhostTime(self, t): ... method setKeysPotential (line 40) | def setKeysPotential(self, potentials, conflict: bool = ...): ... method setKeysSelected (line 41) | def setKeysSelected(self, keyList, selected, update: bool = ...): ... method setKeysSelectedExclusive (line 42) | def setKeysSelectedExclusive(self, keyList, update: bool = ...): ... method toggleKeysSelected (line 43) | def toggleKeysSelected(self, keyList, update: bool = ...): ... method translateEyePoint (line 44) | def translateEyePoint(self, dx, dy): ... method updateGL (line 45) | def updateGL(self): ... method updateScroll (line 46) | def updateScroll(self): ... FILE: katana/stubs/UI4/Tabs/DopeSheet/PanAndScrollLayer.pyi class PanAndScrollLayer (line 9) | class PanAndScrollLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 10) | def __init__(self, treeWidget, *args, **kwargs) -> None: ... method _PanAndScrollLayer__panAndScroll (line 11) | def _PanAndScrollLayer__panAndScroll(self, layerStack, currentPos): ... method processEvent (line 12) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/EnhancedTerminalTab/TerminalTab.pyi class EnhancedTerminalTab (line 21) | class EnhancedTerminalTab(BaseTab): method __init__ (line 22) | def __init__(self, parent) -> None: ... method _EnhancedTerminalTab__on_commandWidget_editingFinished (line 23) | def _EnhancedTerminalTab__on_commandWidget_editingFinished(self): ... method _EnhancedTerminalTab__on_prefChanged (line 24) | def _EnhancedTerminalTab__on_prefChanged(self, eventType: str | None, ... method _EnhancedTerminalTab__on_pythonTab_exposeObject (line 25) | def _EnhancedTerminalTab__on_pythonTab_exposeObject(self, eventType: s... method _EnhancedTerminalTab__on_scriptWidget_aboutToExecuteCode (line 26) | def _EnhancedTerminalTab__on_scriptWidget_aboutToExecuteCode(self, sou... method clear (line 27) | def clear(self): ... method getMenuBar (line 28) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method printMessage (line 29) | def printMessage(self, message: str): ... function _HandleLayoutActivated (line 31) | def _HandleLayoutActivated(eventType: str | None, eventID: object): ... function _HandleLayoutsSaved (line 32) | def _HandleLayoutsSaved(eventType: str | None, eventID: object): ... function _RestoreCommandAreaContentsFromPreferences (line 33) | def _RestoreCommandAreaContentsFromPreferences(): ... function _StoreCommandAreaContentsInPreferences (line 34) | def _StoreCommandAreaContentsInPreferences(): ... FILE: katana/stubs/UI4/Tabs/ExampleProjectsTab/ExampleProjectsTab.pyi class ExampleProjectsTab (line 22) | class ExampleProjectsTab(BaseTab): method __init__ (line 23) | def __init__(self, parent) -> None: ... method _ExampleProjectsTab__constructLayout (line 24) | def _ExampleProjectsTab__constructLayout(self): ... method _ExampleProjectsTab__on_anchorClicked (line 25) | def _ExampleProjectsTab__on_anchorClicked(self, url): ... method _ExampleProjectsTab__on_itemSelectionChanged (line 26) | def _ExampleProjectsTab__on_itemSelectionChanged(self): ... method openScene (line 27) | def openScene(self, index: int = ...): ... method showProject (line 28) | def showProject(self, project: Project): ... method showSection (line 29) | def showSection(self, section: Section): ... class Project (line 31) | class Project: method __init__ (line 32) | def __init__(self, title, description, thumbnail, scenes, nodes) -> No... class ProjectDataBrowserWidget (line 34) | class ProjectDataBrowserWidget(PyQt5.QtWidgets.QTextBrowser): method __init__ (line 37) | def __init__(self) -> None: ... method clearDescription (line 38) | def clearDescription(self): ... method showProject (line 39) | def showProject(self, project: Project): ... class ProjectListTreeWidget (line 41) | class ProjectListTreeWidget(PyQt5.QtWidgets.QTreeWidget): method __init__ (line 42) | def __init__(self) -> None: ... method populate (line 43) | def populate(self, sectionTitles: list[str], sections: dict[str, Secti... class ProjectScene (line 45) | class ProjectScene: method __init__ (line 46) | def __init__(self, renderer, path) -> None: ... class Section (line 48) | class Section: method __init__ (line 49) | def __init__(self, title, projectTitles) -> None: ... function ParseProjectsXml (line 51) | def ParseProjectsXml(filename: str) -> tuple[list, dict, dict]: ... FILE: katana/stubs/UI4/Tabs/FileInTab.pyi class FileInItem (line 23) | class FileInItem(PyQt5.QtCore.QObject): method __init__ (line 25) | def __init__(self, fileInNode, autoUpdate: bool = ...) -> None: ... method GetKeyFunction (line 27) | def GetKeyFunction(column): ... method _FileInItem__emitUpdated (line 28) | def _FileInItem__emitUpdated(self, updatedColumns): ... method _FileInItem__getNodeIcon (line 29) | def _FileInItem__getNodeIcon(self, viewed: bool = ..., edited: bool = ... method _FileInItem__updateName (line 30) | def _FileInItem__updateName(self): ... method _FileInItem__updatePathAndStatus (line 31) | def _FileInItem__updatePathAndStatus(self): ... method _FileInItem__updateSuperToolMembership (line 32) | def _FileInItem__updateSuperToolMembership(self): ... method _FileInItem__updateVersion (line 33) | def _FileInItem__updateVersion(self): ... method getData (line 34) | def getData(self, column, role): ... method getIcon (line 35) | def getIcon(self): ... method getName (line 36) | def getName(self): ... method getNameKey (line 37) | def getNameKey(self): ... method getNode (line 38) | def getNode(self) -> NodegraphAPI.Node: ... method getPath (line 39) | def getPath(self): ... method getStatus (line 40) | def getStatus(self): ... method getStatusKey (line 41) | def getStatusKey(self): ... method getSuperToolNode (line 42) | def getSuperToolNode(self): ... method getValuePolicy (line 43) | def getValuePolicy(self): ... method getVersion (line 44) | def getVersion(self): ... method isStatusError (line 45) | def isStatusError(self): ... method setAutoUpdate (line 46) | def setAutoUpdate(self, autoUpdate): ... method update (line 47) | def update(self): ... class FileInPanel (line 49) | class FileInPanel(PyQt5.QtWidgets.QWidget): method __init__ (line 50) | def __init__(self, parent) -> None: ... method _FileInPanel__autoUpdateCheckChanged (line 51) | def _FileInPanel__autoUpdateCheckChanged(self, checkState): ... method _FileInPanel__loadBeginCB (line 52) | def _FileInPanel__loadBeginCB(self, eventType, eventID): ... method _FileInPanel__loadEndCB (line 53) | def _FileInPanel__loadEndCB(self, eventType, eventID): ... method _FileInPanel__loadFileIn (line 54) | def _FileInPanel__loadFileIn(self, fileInNode, load): ... method _FileInPanel__loadFileInBatch (line 55) | def _FileInPanel__loadFileInBatch(self, fileInList): ... method _FileInPanel__nodeCreateCB (line 56) | def _FileInPanel__nodeCreateCB(self, eventType, eventID, node: typing.... method _FileInPanel__nodeDeleteCB (line 57) | def _FileInPanel__nodeDeleteCB(self, eventType, eventID, node: typing.... method _FileInPanel__prefChangeCB (line 58) | def _FileInPanel__prefChangeCB(self, args: Incomplete | None = ...): ... method _FileInPanel__setUpEvents (line 59) | def _FileInPanel__setUpEvents(self, enabled): ... class FileInTableModel (line 61) | class FileInTableModel(PyQt5.QtCore.QAbstractTableModel): class COLUMNS (line 62) | class COLUMNS(enum.Enum): method __init__ (line 73) | def __init__(cls, value) -> None: ... method _generate_next_value_ (line 74) | def _generate_next_value_(self, name, start, count, last_values): ... method __init__ (line 76) | def __init__(self, parent) -> None: ... method _FileInTableModel__itemUpdated (line 77) | def _FileInTableModel__itemUpdated(self, item, columnSet): ... method addNode (line 78) | def addNode(self, fileInNode): ... method clear (line 79) | def clear(self): ... method columnCount (line 80) | def columnCount(self, parentIndex: Incomplete | None = ...): ... method data (line 81) | def data(self, modelIndex, role): ... method goToNode (line 82) | def goToNode(self, modelIndex, edit: bool = ..., select: bool = ..., f... method headerData (line 83) | def headerData(self, section, orientation, role): ... method removeNode (line 84) | def removeNode(self, fileInNode): ... method rowCount (line 85) | def rowCount(self, parentIndex: Incomplete | None = ...): ... method setAutoUpdate (line 86) | def setAutoUpdate(self, autoUpdate): ... method sort (line 87) | def sort(self, column, sortOrder): ... method update (line 88) | def update(self): ... class FileInTableView (line 90) | class FileInTableView(PyQt5.QtWidgets.QTableView): method __init__ (line 91) | def __init__(self, parent) -> None: ... method _FileInTableView__indexClicked (line 92) | def _FileInTableView__indexClicked(self, modelIndex): ... FILE: katana/stubs/UI4/Tabs/Help.pyi class HelpView (line 11) | class HelpView(PyQt5.QtWebEngineWidgets.QWebEngineView): method __init__ (line 18) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, defaultZoomLevel: ... method GetUrlFromFilename (line 20) | def GetUrlFromFilename(cls, filename: str) -> PyQt5.QtCore.QUrl: ... method _HelpView__linkHoveredCallback (line 21) | def _HelpView__linkHoveredCallback(self, url): ... method _HelpView__resetZoomLevel (line 22) | def _HelpView__resetZoomLevel(self): ... method backwardTo (line 23) | def backwardTo(self, index: int): ... method event (line 24) | def event(self, event): ... method eventFilter (line 25) | def eventFilter(self, obj, event): ... method forwardTo (line 26) | def forwardTo(self, index: int): ... method setBody (line 27) | def setBody(self, body: str): ... method zoomIn (line 28) | def zoomIn(self, increment: float = ...): ... method zoomOut (line 29) | def zoomOut(self, decrement: float = ...): ... FILE: katana/stubs/UI4/Tabs/Histogram.pyi class HistogramPanel (line 12) | class HistogramPanel(BaseTab): method __init__ (line 13) | def __init__(self, parent) -> None: ... method _HistogramPanel__channelsChanged_CB (line 14) | def _HistogramPanel__channelsChanged_CB(self, ev): ... method _HistogramPanel__colorspaceChanged_CB (line 15) | def _HistogramPanel__colorspaceChanged_CB(self, ev): ... method _HistogramPanel__monitor_pixelProbeResult_CB (line 16) | def _HistogramPanel__monitor_pixelProbeResult_CB(self, eventType, even... method _HistogramPanel__scaleChanged_CB (line 17) | def _HistogramPanel__scaleChanged_CB(self, ev): ... method _HistogramPanel__setTraceLocation_CB (line 18) | def _HistogramPanel__setTraceLocation_CB(self, x): ... method _HistogramPanel__showTrace_CB (line 19) | def _HistogramPanel__showTrace_CB(self, showTrace): ... FILE: katana/stubs/UI4/Tabs/History.pyi class HistoryItem (line 13) | class HistoryItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 14) | def __init__(self, *args) -> None: ... method buildContextMenu (line 15) | def buildContextMenu(self, menu): ... method doRestore (line 16) | def doRestore(self): ... method isAlreadyRestored (line 17) | def isAlreadyRestored(self): ... method paintCell (line 18) | def paintCell(self, painter, colors, column, width, align): ... method paintFocus (line 19) | def paintFocus(self, painter, colorGroup, rect): ... method setColorGroup (line 20) | def setColorGroup(self, colorGroup): ... class UndoHistoryPanel (line 22) | class UndoHistoryPanel(BaseTab): method __init__ (line 23) | def __init__(self, parent) -> None: ... method _UndoHistoryPanel__clearHistory_CB (line 24) | def _UndoHistoryPanel__clearHistory_CB(self): ... method _UndoHistoryPanel__contextMenu_CB (line 25) | def _UndoHistoryPanel__contextMenu_CB(self, point): ... method _UndoHistoryPanel__freeze (line 26) | def _UndoHistoryPanel__freeze(self): ... method _UndoHistoryPanel__restoreToSelected_CB (line 27) | def _UndoHistoryPanel__restoreToSelected_CB(self): ... method _UndoHistoryPanel__selectionChanged_CB (line 28) | def _UndoHistoryPanel__selectionChanged_CB(self, item): ... method _UndoHistoryPanel__thaw (line 29) | def _UndoHistoryPanel__thaw(self): ... method _UndoHistoryPanel__undoCallback (line 30) | def _UndoHistoryPanel__undoCallback(self): ... method hideEvent (line 31) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method showEvent (line 32) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method sync (line 33) | def sync(self): ... class UndoHistoryPanelTreeWidget (line 35) | class UndoHistoryPanelTreeWidget(PyQt5.QtWidgets.QTreeWidget): method __init__ (line 37) | def __init__(self, parent) -> None: ... FILE: katana/stubs/UI4/Tabs/KeyboardShortcutsTab.pyi class KeyboardShortcutsTab (line 15) | class KeyboardShortcutsTab(BaseTab): method __init__ (line 16) | def __init__(self, parent) -> None: ... class KeyboardShortcutsTreeView (line 18) | class KeyboardShortcutsTreeView(PyQt5.QtWidgets.QTreeView): method __init__ (line 19) | def __init__(self, model, parent: Incomplete | None = ...) -> None: ... method contextMenuEvent (line 20) | def contextMenuEvent(self, contextMenuEvent: PyQt5.QtGui.QContextMenuE... method expanded (line 21) | def expanded(self): ... method on_model_dataChanged (line 22) | def on_model_dataChanged(self, topLeftIndex, bottomRightIndex): ... FILE: katana/stubs/UI4/Tabs/LayeredMenuAPI.pyi class LayeredMenu (line 9) | class LayeredMenu: method __init__ (line 10) | def __init__(self, populateCallback: typing.Callable, actionCallback: ... method addEntry (line 11) | def addEntry(self, value: object, text: Incomplete | None = ..., color... method alwaysPopulate (line 12) | def alwaysPopulate(self) -> bool: ... method checkAvailability (line 13) | def checkAvailability(self, tab: NodegraphPanel) -> bool: ... method clear (line 14) | def clear(self): ... method getAssociatedRenderer (line 15) | def getAssociatedRenderer(self) -> str: ... method getChosenValue (line 16) | def getChosenValue(self) -> Any | None: ... method getEntries (line 17) | def getEntries(self) -> list[LayeredMenuEntry]: ... method getKeyboardShortcut (line 18) | def getKeyboardShortcut(self) -> str: ... method isPopulated (line 19) | def isPopulated(self) -> bool: ... method onEntryChosen (line 20) | def onEntryChosen(self, value: object, tab: NodegraphPanel) -> Any | N... method onlyMatchWordStart (line 21) | def onlyMatchWordStart(self) -> bool: ... method populate (line 22) | def populate(self, tab: NodegraphPanel) -> bool: ... method setAssociatedRenderer (line 23) | def setAssociatedRenderer(self, associatedRenderer: str): ... method setChosenValue (line 24) | def setChosenValue(self, value: object | None): ... method shouldSortAlphabetically (line 25) | def shouldSortAlphabetically(self) -> bool: ... class LayeredMenuEntry (line 27) | class LayeredMenuEntry: method __init__ (line 28) | def __init__(self, value: object, text: Incomplete | None = ..., color... method getColor (line 29) | def getColor(self) -> None | None: ... method getSize (line 30) | def getSize(self) -> None | None: ... method getText (line 31) | def getText(self) -> str: ... method getTextColor (line 32) | def getTextColor(self) -> None | None: ... method getValue (line 33) | def getValue(self) -> Any: ... function GetLayeredMenu (line 35) | def GetLayeredMenu(layeredMenuID: str) -> LayeredMenu | None: ... function GetLayeredMenuIDByAssociatedRenderer (line 36) | def GetLayeredMenuIDByAssociatedRenderer(associatedRenderer: str) -> str... function GetLayeredMenuIDs (line 37) | def GetLayeredMenuIDs() -> list[str]: ... function RegisterLayeredMenu (line 38) | def RegisterLayeredMenu(layeredMenu: LayeredMenu, layeredMenuID: str): ... FILE: katana/stubs/UI4/Tabs/Messages.pyi class MessagesTab (line 16) | class MessagesTab(BaseTab): method __init__ (line 17) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _MessagesTab__updateTabTitle (line 18) | def _MessagesTab__updateTabTitle(self): ... method applySettings (line 19) | def applySettings(self, settings: dict): ... method getMenuBar (line 20) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method getSettings (line 21) | def getSettings(self) -> dict: ... method on_treeView_activeLevelNamesChanged (line 22) | def on_treeView_activeLevelNamesChanged(self, activeLevelNames: list[s... method showEvent (line 23) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... FILE: katana/stubs/UI4/Tabs/Monitor/CatalogGLHelpers.pyi function DrawBucketOrderPreview (line 6) | def DrawBucketOrderPreview(catalogItem, layerview, numTiles: int = ...):... function DrawBufferRectVisualization (line 7) | def DrawBufferRectVisualization(catalogItem, layerview): ... FILE: katana/stubs/UI4/Tabs/Monitor/CommentWidgets.pyi class CatalogItemCommentEditor (line 8) | class CatalogItemCommentEditor(PyQt5.QtWidgets.QLineEdit): method __init__ (line 9) | def __init__(self, *args) -> None: ... method _CatalogItemCommentEditor__catalog_itemDelete_CB (line 10) | def _CatalogItemCommentEditor__catalog_itemDelete_CB(self, eventType, ... method _CatalogItemCommentEditor__catalog_itemUserCommentUpdate_CB (line 11) | def _CatalogItemCommentEditor__catalog_itemUserCommentUpdate_CB(self, ... method _CatalogItemCommentEditor__editingFinished_CB (line 12) | def _CatalogItemCommentEditor__editingFinished_CB(self): ... method setCatalogItem (line 13) | def setCatalogItem(self, item): ... method updateState (line 14) | def updateState(self): ... FILE: katana/stubs/UI4/Tabs/Monitor/DisplayDetailsWidgets.pyi class ColorAction (line 17) | class ColorAction(PyQt5.QtWidgets.QAction): method __init__ (line 18) | def __init__(self, parent, text, valuePolicy, changeCB) -> None: ... method _ColorAction__colorChanged (line 19) | def _ColorAction__colorChanged(self, vpEvent): ... method _ColorAction__triggered (line 20) | def _ColorAction__triggered(self, *args): ... method setupEvents (line 21) | def setupEvents(self, enable): ... class DisplayChannelsLabel (line 23) | class DisplayChannelsLabel(PopdownLabel): method __init__ (line 24) | def __init__(self, monitorWidget, viewIndex, parent) -> None: ... method buildMenu (line 25) | def buildMenu(self, menu): ... method getDrawState (line 26) | def getDrawState(self): ... method updateState (line 27) | def updateState(self): ... class DisplayExposureLabel (line 29) | class DisplayExposureLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 30) | def __init__(self, monitorWidget, viewIndex, parent) -> None: ... method getDrawState (line 31) | def getDrawState(self): ... method getText (line 32) | def getText(self): ... method isDefault (line 33) | def isDefault(self): ... method mousePressEvent (line 34) | def mousePressEvent(self, ev): ... method updateState (line 35) | def updateState(self): ... class DisplayScaleLabel (line 37) | class DisplayScaleLabel(PyQt5.QtWidgets.QFrame): method __init__ (line 38) | def __init__(self, monitorWidget: MonitorWidget, parent: QWidget) -> N... method _DisplayScaleLabel__onImageModeApplied (line 39) | def _DisplayScaleLabel__onImageModeApplied(self): ... class DisplayVisualizationLabel (line 41) | class DisplayVisualizationLabel(PopdownLabel): method __init__ (line 42) | def __init__(self, monitorWidget, viewIndex, parent) -> None: ... method buildMenu (line 43) | def buildMenu(self, menu): ... method getDrawState (line 44) | def getDrawState(self): ... method updateState (line 45) | def updateState(self): ... class InputColorspaceLabel (line 47) | class InputColorspaceLabel(PopdownLabel): method __init__ (line 48) | def __init__(self, monitorWidget, viewIndex, parent) -> None: ... method buildMenu (line 49) | def buildMenu(self, menu): ... method getDrawState (line 50) | def getDrawState(self): ... method updateState (line 51) | def updateState(self): ... class LayerSelectionLabel (line 53) | class LayerSelectionLabel(PopdownLabel): method __init__ (line 55) | def __init__(self, monitorWidget, viewIndex, parent, previousLayerShor... method _LayerSelectionLabel__getLayerList (line 56) | def _LayerSelectionLabel__getLayerList(self): ... method _LayerSelectionLabel__offsetLayerSelection (line 57) | def _LayerSelectionLabel__offsetLayerSelection(self, offset): ... method alternateDefaultLayer (line 58) | def alternateDefaultLayer(self): ... method buildMenu (line 59) | def buildMenu(self, menu): ... method getDrawState (line 60) | def getDrawState(self): ... method resetAlternateLayer (line 61) | def resetAlternateLayer(self): ... method selectNextLayer (line 62) | def selectNextLayer(self): ... method selectPreviousLayer (line 63) | def selectPreviousLayer(self): ... method updateState (line 64) | def updateState(self): ... class MatteMultLabel (line 66) | class MatteMultLabel(PopdownLabel): method __init__ (line 67) | def __init__(self, monitorWidget, viewIndex, parent) -> None: ... method buildMenu (line 68) | def buildMenu(self, menu): ... method getDrawState (line 69) | def getDrawState(self): ... method updateState (line 70) | def updateState(self): ... class SwipeModeLabel (line 72) | class SwipeModeLabel(PopdownLabel): method __init__ (line 73) | def __init__(self, monitorWidget, *args) -> None: ... method _SwipeModeLabel__buildModeList (line 74) | def _SwipeModeLabel__buildModeList(self, menu, actionGroup, selectedMo... method buildMenu (line 75) | def buildMenu(self, menu): ... method updateState (line 76) | def updateState(self): ... class _DisplayScalePopdown (line 78) | class _DisplayScalePopdown(PopdownLabel): method __init__ (line 79) | def __init__(self, monitorWidget: MonitorWidget, parent: QWidget) -> N... method buildMenu (line 80) | def buildMenu(self, menu): ... method layerStack_scaleChanged_CB (line 81) | def layerStack_scaleChanged_CB(self, x, final): ... method updateState (line 82) | def updateState(self): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/CropWindowLayer.pyi class CropWindowLayer (line 8) | class CropWindowLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 9) | def __init__(self, *args, **kwargs) -> None: ... method initializeGL (line 10) | def initializeGL(self): ... method paintGL (line 11) | def paintGL(self): ... method setDisplayRect (line 12) | def setDisplayRect(self, displayRect): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/HotkeyLayer.pyi class HotkeyLayer (line 15) | class HotkeyLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method processEvent (line 17) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/ImageLayer.pyi class ImageLayer (line 12) | class ImageLayer(QT4GLLayerStack.LayerStack.Layer, ImageLayerBase): method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method getViewIndexFromWindowPos (line 14) | def getViewIndexFromWindowPos(self, qpos): ... method paintDropArea (line 15) | def paintDropArea(self, dropColor): ... method paintGL (line 16) | def paintGL(self): ... method processEvent (line 17) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/ImageLayer3D.pyi class ImageLayer3D (line 12) | class ImageLayer3D(QT4GLLayerStack.LayerStack.Layer, ImageLayerBase): method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method getViewIndexFromWindowPos (line 14) | def getViewIndexFromWindowPos(self, qpos): ... method paintDropArea (line 15) | def paintDropArea(self, dropColor): ... method paintGL (line 16) | def paintGL(self): ... method processEvent (line 17) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/ImageLayerBase.pyi class ImageLayerBase (line 10) | class ImageLayerBase: method __init__ (line 11) | def __init__(self, *args, **kwargs) -> None: ... method _ImageLayerBase__compositeTimer_timeout_CB (line 12) | def _ImageLayerBase__compositeTimer_timeout_CB(self): ... method _ImageLayerBase__slotTimer_timeout_CB (line 13) | def _ImageLayerBase__slotTimer_timeout_CB(self): ... method getDragIndex (line 14) | def getDragIndex(self): ... method getViewIndexFromWindowPos (line 15) | def getViewIndexFromWindowPos(self, qpos): ... method layerStack (line 16) | def layerStack(self): ... method paintGL (line 17) | def paintGL(self): ... method processEvent (line 18) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/LinearSwipeLayer.pyi class LinearSwipeLayer (line 13) | class LinearSwipeLayer(QT4GLLayerStack.LayerStack.Layer, ImageLayerBase): method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method defaultProcessEvent (line 15) | def defaultProcessEvent(self, event): ... method drawHandles (line 16) | def drawHandles(self, pick: bool = ...): ... method getViewIndexFromWindowPos (line 17) | def getViewIndexFromWindowPos(self, qpos): ... method getWindowEndPos (line 18) | def getWindowEndPos(self, posAxis: bool = ...): ... method paintDropArea (line 19) | def paintDropArea(self, dropColor): ... method paintGL (line 20) | def paintGL(self): ... method pickHandles (line 21) | def pickHandles(self, x, y): ... method processDragHandleEvent (line 22) | def processDragHandleEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/MaskLayer.pyi class LineDrawable (line 13) | class LineDrawable: method __init__ (line 14) | def __init__(self, p1, p2, lineColor: tuple = ..., lineWidth: int = ..... method draw (line 15) | def draw(self): ... class MaskLayer (line 17) | class MaskLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 18) | def __init__(self, *args, **kwargs) -> None: ... method advanceMask (line 19) | def advanceMask(self): ... method getActiveMask (line 20) | def getActiveMask(self): ... method getAutoScale (line 21) | def getAutoScale(self): ... method getMasks (line 22) | def getMasks(self): ... method isEnabled (line 23) | def isEnabled(self): ... method paintGL (line 24) | def paintGL(self): ... method processEvent (line 25) | def processEvent(self, event): ... method setAutoScale (line 26) | def setAutoScale(self, autoScaleEnabled): ... method setEnabled (line 27) | def setEnabled(self, isEnabled): ... method setMask (line 28) | def setMask(self, maskName): ... method toggleEnabled (line 29) | def toggleEnabled(self): ... class MaskRectDrawable (line 31) | class MaskRectDrawable: method __init__ (line 32) | def __init__(self, window: Incomplete | None = ..., fillColor: Incompl... method _MaskRectDrawable__drawFill (line 33) | def _MaskRectDrawable__drawFill(self): ... method _MaskRectDrawable__drawLabel (line 34) | def _MaskRectDrawable__drawLabel(self): ... method _MaskRectDrawable__drawOutline (line 35) | def _MaskRectDrawable__drawOutline(self): ... method draw (line 36) | def draw(self): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/PixelProbeLayer.pyi class PixelProbeLayer (line 9) | class PixelProbeLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 11) | def __init__(self, valuePolicy, *args, **kwargs) -> None: ... method defaultProcessEvent (line 12) | def defaultProcessEvent(self, event): ... method drawGeometry (line 13) | def drawGeometry(self): ... method getPickedObjects (line 14) | def getPickedObjects(self, mousePos): ... method paintGL (line 15) | def paintGL(self): ... method processDragEvent (line 16) | def processDragEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/RectangleSwipeLayer.pyi class RectangleSwipeLayer (line 11) | class RectangleSwipeLayer(RectangleLayer, ImageLayerBase): method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: ... method getViewIndexFromWindowPos (line 13) | def getViewIndexFromWindowPos(self, qpos): ... method paintGL (line 14) | def paintGL(self): ... method processEvent (line 15) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/RenderFocusLayer.pyi class RenderFocusLayer (line 11) | class RenderFocusLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: ... method paintGL (line 13) | def paintGL(self): ... method processEvent (line 14) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/RoiLayer.pyi class RoiLayer (line 11) | class RoiLayer(RectangleLayer): method __init__ (line 12) | def __init__(self, valuePolicy, *args, **kwargs) -> None: ... method _RoiLayer__renderManager_roiChanged_CB (line 13) | def _RoiLayer__renderManager_roiChanged_CB(self, eventType, eventID, *... method _RoiLayer__updateROI (line 14) | def _RoiLayer__updateROI(self): ... method getDataWindow (line 15) | def getDataWindow(self): ... method getDisplayWindow (line 16) | def getDisplayWindow(self): ... method processEvent (line 17) | def processEvent(self, event): ... method setRectangle (line 18) | def setRectangle(self, rect): ... method update (line 19) | def update(self): ... FILE: katana/stubs/UI4/Tabs/Monitor/Layers/SolidBoundsLayer.pyi class SolidBoundsLayer (line 9) | class SolidBoundsLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 10) | def __init__(self, *args, **kwargs) -> None: ... method paintGL (line 11) | def paintGL(self): ... method setColor (line 12) | def setColor(self, c4): ... FILE: katana/stubs/UI4/Tabs/Monitor/Manipulators.pyi class AnimationPathVisibilityCheckBox (line 9) | class AnimationPathVisibilityCheckBox(PyQt5.QtWidgets.QCheckBox): method __init__ (line 10) | def __init__(self, *args) -> None: ... method _AnimationPathVisibilityCheckBox__stateChanged_CB (line 11) | def _AnimationPathVisibilityCheckBox__stateChanged_CB(self, state): ... class ManipulatorVisibilityCheckBox (line 13) | class ManipulatorVisibilityCheckBox(PyQt5.QtWidgets.QCheckBox): method __init__ (line 14) | def __init__(self, policy, monitorWidget, *args) -> None: ... method _ManipulatorVisibilityCheckBox__stateChanged_CB (line 15) | def _ManipulatorVisibilityCheckBox__stateChanged_CB(self, state): ... function AddManipulatorMenuActions (line 17) | def AddManipulatorMenuActions(menu, monitorWidget): ... FILE: katana/stubs/UI4/Tabs/Monitor/MenuUtils.pyi class DrawStateColorLineEdit (line 14) | class DrawStateColorLineEdit(PyQt5.QtWidgets.QLineEdit): method __init__ (line 15) | def __init__(self, mode, index, drawState, *args) -> None: ... method _DrawStateColorLineEdit__activatedCB (line 16) | def _DrawStateColorLineEdit__activatedCB(self): ... method _DrawStateColorLineEdit__drawStateUpdated_CB (line 17) | def _DrawStateColorLineEdit__drawStateUpdated_CB(self, drawState: Inco... method fontChange (line 18) | def fontChange(self, oldFont: PyQt5.QtGui.QFont): ... function AddDisplayVisualizationActionsToMenu (line 20) | def AddDisplayVisualizationActionsToMenu(menu, drawState): ... function AddImageChannelActionsToMenu (line 21) | def AddImageChannelActionsToMenu(menu, drawState): ... function AddPixelCheckControlsToMenu (line 22) | def AddPixelCheckControlsToMenu(menu, drawState): ... function AddViewControlsToMenu (line 23) | def AddViewControlsToMenu(menu, drawState): ... function AddZoomActionsToMenu (line 24) | def AddZoomActionsToMenu(menu, monitorWidget): ... FILE: katana/stubs/UI4/Tabs/Monitor/MonitorPanel.pyi class CloseBoxButton (line 33) | class CloseBoxButton(RolloverPixmap, PyQt5.QtWidgets.QPushButton): method __init__ (line 34) | def __init__(self, parent) -> None: ... class MonitorPanel (line 36) | class MonitorPanel(BaseTab): method __init__ (line 41) | def __init__(self, *args) -> None: ... method _MonitorPanel__alternateDefaultAovCallback (line 42) | def _MonitorPanel__alternateDefaultAovCallback(self): ... method _MonitorPanel__buildManipulatorMenu_CB (line 43) | def _MonitorPanel__buildManipulatorMenu_CB(self, menu): ... method _MonitorPanel__catalogWidgetA_catalogItemDropped_CB (line 44) | def _MonitorPanel__catalogWidgetA_catalogItemDropped_CB(self, item): ... method _MonitorPanel__catalogWidgetB_catalogItemDropped_CB (line 45) | def _MonitorPanel__catalogWidgetB_catalogItemDropped_CB(self, item): ... method _MonitorPanel__catalog_clientSlotUpdate_CB (line 46) | def _MonitorPanel__catalog_clientSlotUpdate_CB(self, _eventType: str |... method _MonitorPanel__commentsButtonClicked_CB (line 47) | def _MonitorPanel__commentsButtonClicked_CB(self): ... method _MonitorPanel__createCatalogArea (line 48) | def _MonitorPanel__createCatalogArea(self): ... method _MonitorPanel__createCatalogInfoBar (line 49) | def _MonitorPanel__createCatalogInfoBar(self): ... method _MonitorPanel__createCommentToolbar (line 50) | def _MonitorPanel__createCommentToolbar(self): ... method _MonitorPanel__createLayerToolbarWidget (line 51) | def _MonitorPanel__createLayerToolbarWidget(self): ... method _MonitorPanel__createOverlayToolbar (line 52) | def _MonitorPanel__createOverlayToolbar(self): ... method _MonitorPanel__createStereoToolbar (line 53) | def _MonitorPanel__createStereoToolbar(self): ... method _MonitorPanel__createTopIconArea (line 54) | def _MonitorPanel__createTopIconArea(self): ... method _MonitorPanel__deleteOverlayButton_released_CB (line 55) | def _MonitorPanel__deleteOverlayButton_released_CB(self): ... method _MonitorPanel__deleteUnderlayButton_released_CB (line 56) | def _MonitorPanel__deleteUnderlayButton_released_CB(self): ... method _MonitorPanel__displayItemsChanged_CB (line 57) | def _MonitorPanel__displayItemsChanged_CB(self): ... method _MonitorPanel__displayMenuAboutToShow_CB (line 58) | def _MonitorPanel__displayMenuAboutToShow_CB(self): ... method _MonitorPanel__drawStateUpdated_CB (line 59) | def _MonitorPanel__drawStateUpdated_CB(self): ... method _MonitorPanel__editTransformEnabled_CB (line 60) | def _MonitorPanel__editTransformEnabled_CB(self): ... method _MonitorPanel__editTransformErrored_CB (line 61) | def _MonitorPanel__editTransformErrored_CB(self, value, message): ... method _MonitorPanel__editTransformToggled_CB (line 62) | def _MonitorPanel__editTransformToggled_CB(self): ... method _MonitorPanel__getShortcutAsString (line 64) | def _MonitorPanel__getShortcutAsString(actionID: str) -> str: ... method _MonitorPanel__imageModeChanged_CB (line 65) | def _MonitorPanel__imageModeChanged_CB(self): ... method _MonitorPanel__linkButton_clicked_CB (line 66) | def _MonitorPanel__linkButton_clicked_CB(self): ... method _MonitorPanel__makeConnections (line 67) | def _MonitorPanel__makeConnections(self): ... method _MonitorPanel__manipulatorToggled_CB (line 68) | def _MonitorPanel__manipulatorToggled_CB(self): ... method _MonitorPanel__maskChangedSecondary_CB (line 69) | def _MonitorPanel__maskChangedSecondary_CB(self): ... method _MonitorPanel__maskChanged_CB (line 70) | def _MonitorPanel__maskChanged_CB(self): ... method _MonitorPanel__monitorAddToolbar_CB (line 71) | def _MonitorPanel__monitorAddToolbar_CB(self, toolbar, layer): ... method _MonitorPanel__monitorPopToolbar_CB (line 72) | def _MonitorPanel__monitorPopToolbar_CB(self, toolbar, layer): ... method _MonitorPanel__monitorRemoveToolbar_CB (line 73) | def _MonitorPanel__monitorRemoveToolbar_CB(self, toolbar, layer): ... method _MonitorPanel__monitorRoiVisibilityChanged_CB (line 74) | def _MonitorPanel__monitorRoiVisibilityChanged_CB(self): ... method _MonitorPanel__monitor_drawStateLinkUpdate_CB (line 75) | def _MonitorPanel__monitor_drawStateLinkUpdate_CB(self): ... method _MonitorPanel__onPrefChanged (line 76) | def _MonitorPanel__onPrefChanged(self, eventType: str | None, eventID:... method _MonitorPanel__on_overlayModeCombobox_activated (line 77) | def _MonitorPanel__on_overlayModeCombobox_activated(self, text): ... method _MonitorPanel__on_scenegraphMask_visibilityFollowsWorkingSetChanged (line 78) | def _MonitorPanel__on_scenegraphMask_visibilityFollowsWorkingSetChange... method _MonitorPanel__overlayButtonClicked_CB (line 79) | def _MonitorPanel__overlayButtonClicked_CB(self): ... method _MonitorPanel__overlayChanged_CB (line 80) | def _MonitorPanel__overlayChanged_CB(self): ... method _MonitorPanel__overlayCheckBox_stateChanged_CB (line 81) | def _MonitorPanel__overlayCheckBox_stateChanged_CB(self, state): ... method _MonitorPanel__overlayThumbnail_catalogItemDropped_CB (line 82) | def _MonitorPanel__overlayThumbnail_catalogItemDropped_CB(self, item):... method _MonitorPanel__populateMenuBar (line 83) | def _MonitorPanel__populateMenuBar(self): ... method _MonitorPanel__probeButtonClicked_CB (line 84) | def _MonitorPanel__probeButtonClicked_CB(self): ... method _MonitorPanel__renderColumnToggled_CB (line 85) | def _MonitorPanel__renderColumnToggled_CB(self): ... method _MonitorPanel__renderWorkingSetStatusChanged (line 86) | def _MonitorPanel__renderWorkingSetStatusChanged(self, isActive): ... method _MonitorPanel__roiCombo_roiVisibilityChanged_CB (line 87) | def _MonitorPanel__roiCombo_roiVisibilityChanged_CB(self): ... method _MonitorPanel__showNextAovCallback (line 88) | def _MonitorPanel__showNextAovCallback(self): ... method _MonitorPanel__showPreviousAovCallback (line 89) | def _MonitorPanel__showPreviousAovCallback(self): ... method _MonitorPanel__stereoButtonClicked_CB (line 90) | def _MonitorPanel__stereoButtonClicked_CB(self): ... method _MonitorPanel__stereoModePopup_activated_CB (line 91) | def _MonitorPanel__stereoModePopup_activated_CB(self, text): ... method _MonitorPanel__swapBuffersPressCallback (line 92) | def _MonitorPanel__swapBuffersPressCallback(self): ... method _MonitorPanel__syncPanZoom_CB (line 93) | def _MonitorPanel__syncPanZoom_CB(self, eyePoint, viewScale, srcWidget... method _MonitorPanel__toolbarChanged_CB (line 94) | def _MonitorPanel__toolbarChanged_CB(self, toolbar): ... method _MonitorPanel__underlayCheckBox_stateChanged_CB (line 95) | def _MonitorPanel__underlayCheckBox_stateChanged_CB(self, state): ... method _MonitorPanel__underlayThumbnail_catalogItemDropped_CB (line 96) | def _MonitorPanel__underlayThumbnail_catalogItemDropped_CB(self, item)... method _MonitorPanel__updateManipulatorVisibility_CB (line 97) | def _MonitorPanel__updateManipulatorVisibility_CB(self): ... method _MonitorPanel__updateModeLabels (line 98) | def _MonitorPanel__updateModeLabels(self): ... method _MonitorPanel__updatePixelProbeVisibility_CB (line 99) | def _MonitorPanel__updatePixelProbeVisibility_CB(self): ... method getEmbeddedCatalogTab (line 100) | def getEmbeddedCatalogTab(self) -> UI4.Tabs.Catalog.CatalogPanel: ... method getMenuBar (line 101) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method getMonitorWidget (line 102) | def getMonitorWidget(self) -> MonitorWidget: ... method registerKeyboardShortcuts (line 104) | def registerKeyboardShortcuts(): ... method swapCatalogView (line 105) | def swapCatalogView(self): ... FILE: katana/stubs/UI4/Tabs/Monitor/MonitorWidget.pyi class MonitorWidget (line 30) | class MonitorWidget(LayerStack): method __init__ (line 55) | def __init__(self, parent: Incomplete | None = ..., catalogClientKey: ... method _MonitorWidget__addManipulator (line 56) | def _MonitorWidget__addManipulator(self, policy): ... method _MonitorWidget__addToolbar (line 57) | def _MonitorWidget__addToolbar(self, toolbar, layer): ... method _MonitorWidget__buildLayers (line 58) | def _MonitorWidget__buildLayers(self): ... method _MonitorWidget__calculateViewRange (line 59) | def _MonitorWidget__calculateViewRange(self, viewIndex, isZ): ... method _MonitorWidget__calculateViewRangeZ_CB (line 60) | def _MonitorWidget__calculateViewRangeZ_CB(self, drawState): ... method _MonitorWidget__calculateViewRange_CB (line 61) | def _MonitorWidget__calculateViewRange_CB(self, drawState): ... method _MonitorWidget__catalog_clientSlotUpdate_CB (line 62) | def _MonitorWidget__catalog_clientSlotUpdate_CB(self, eventType, event... method _MonitorWidget__catalog_itemDelete_CB (line 63) | def _MonitorWidget__catalog_itemDelete_CB(self, eventType, eventID, it... method _MonitorWidget__catalog_itemImageUpdate_CB (line 64) | def _MonitorWidget__catalog_itemImageUpdate_CB(self, eventType, eventI... method _MonitorWidget__catalog_itemPropertyUpdate_CB (line 65) | def _MonitorWidget__catalog_itemPropertyUpdate_CB(self, eventType, eve... method _MonitorWidget__catalog_rebuild_CB (line 66) | def _MonitorWidget__catalog_rebuild_CB(self, args: list): ... method _MonitorWidget__checkEditTranformErrorStatus (line 67) | def _MonitorWidget__checkEditTranformErrorStatus(self): ... method _MonitorWidget__deleteManipulator (line 68) | def _MonitorWidget__deleteManipulator(self, policy): ... method _MonitorWidget__drawStateUpdated_CB (line 69) | def _MonitorWidget__drawStateUpdated_CB(self, drawState): ... method _MonitorWidget__getManipulatorDict (line 70) | def _MonitorWidget__getManipulatorDict(self, policy): ... method _MonitorWidget__getManipulatorDictForLayer (line 71) | def _MonitorWidget__getManipulatorDictForLayer(self, layer): ... method _MonitorWidget__initClientManagers (line 72) | def _MonitorWidget__initClientManagers(self): ... method _MonitorWidget__isManipulatorPresent (line 73) | def _MonitorWidget__isManipulatorPresent(self, policy): ... method _MonitorWidget__manipulator_animationPathsUpdate_CB (line 74) | def _MonitorWidget__manipulator_animationPathsUpdate_CB(self, eventTyp... method _MonitorWidget__manipulator_update_CB (line 75) | def _MonitorWidget__manipulator_update_CB(self, eventType, eventID, po... method _MonitorWidget__onRootUpdate (line 76) | def _MonitorWidget__onRootUpdate(self, locationEvent: PyFnGeolib.Locat... method _MonitorWidget__on_node_setViewed (line 77) | def _MonitorWidget__on_node_setViewed(self, args): ... method _MonitorWidget__on_pixelProbeColorspaceCombobox_activated (line 78) | def _MonitorWidget__on_pixelProbeColorspaceCombobox_activated(self, in... method _MonitorWidget__on_pixelProbeModeCombobox_activated (line 79) | def _MonitorWidget__on_pixelProbeModeCombobox_activated(self, index): ... method _MonitorWidget__popToolbar (line 80) | def _MonitorWidget__popToolbar(self, toolbar, layer): ... method _MonitorWidget__prefChanged_CB (line 81) | def _MonitorWidget__prefChanged_CB(self, eventType, eventID, *args, **... method _MonitorWidget__recomputePixelProbe (line 82) | def _MonitorWidget__recomputePixelProbe(self, final: bool = ...): ... method _MonitorWidget__removeToolbar (line 83) | def _MonitorWidget__removeToolbar(self, toolbar, layer): ... method _MonitorWidget__stereoValuePolicy_CB (line 84) | def _MonitorWidget__stereoValuePolicy_CB(self, changeEvent): ... method _MonitorWidget__updateEditTransformedLayers (line 85) | def _MonitorWidget__updateEditTransformedLayers(self): ... method _MonitorWidget__updateManipulatorVisibility (line 86) | def _MonitorWidget__updateManipulatorVisibility(self, d): ... method _MonitorWidget__updateProbeLabels (line 87) | def _MonitorWidget__updateProbeLabels(self): ... method _MonitorWidget__updateROILayer (line 88) | def _MonitorWidget__updateROILayer(self): ... method createPixelProbeToolbar (line 89) | def createPixelProbeToolbar(self, layout): ... method drawDisplayItem (line 90) | def drawDisplayItem(self, viewIndex, additionalTileCacheIDsToLock: Inc... method firstPaintGL (line 91) | def firstPaintGL(self): ... method fontChange (line 92) | def fontChange(self, oldFont: PyQt5.QtGui.QFont): ... method frame (line 93) | def frame(self, viewBounds: Incomplete | None = ...): ... method getAltOffset (line 94) | def getAltOffset(self): ... method getAnaglyphSaturation (line 95) | def getAnaglyphSaturation(self): ... method getAnamorphDisplayScale (line 96) | def getAnamorphDisplayScale(self): ... method getBucketOrderPreviewEnabled (line 97) | def getBucketOrderPreviewEnabled(self): ... method getCatalogClientKey (line 98) | def getCatalogClientKey(self): ... method getCurrentDrawView (line 99) | def getCurrentDrawView(self): ... method getCurrentlyViewedViews (line 100) | def getCurrentlyViewedViews(self): ... method getDataRegionPreviewEnabled (line 101) | def getDataRegionPreviewEnabled(self): ... method getDataWindowBounds (line 102) | def getDataWindowBounds(self): ... method getDisplayItemStats (line 103) | def getDisplayItemStats(self, viewIndex, rect: Incomplete | None = ...... method getDisplayItems (line 104) | def getDisplayItems(self): ... method getDisplayWindowBounds (line 105) | def getDisplayWindowBounds(self): ... method getDisplayWindowPreviewEnabled (line 106) | def getDisplayWindowPreviewEnabled(self): ... method getDrawStates (line 107) | def getDrawStates(self): ... method getDrawStatesLinked (line 108) | def getDrawStatesLinked(self): ... method getEditTransformEnabled (line 109) | def getEditTransformEnabled(self): ... method getEditTransformNode (line 110) | def getEditTransformNode(self): ... method getGlobalManipulatorVisibility (line 111) | def getGlobalManipulatorVisibility(self): ... method getImageMode (line 112) | def getImageMode(self): ... method getImageModeNames (line 113) | def getImageModeNames(self): ... method getLeftView (line 114) | def getLeftView(self): ... method getLocalManipulatorVisibility (line 115) | def getLocalManipulatorVisibility(self, policy): ... method getMaskLayer (line 116) | def getMaskLayer(self): ... method getMonoView (line 117) | def getMonoView(self): ... method getOverlayItem (line 118) | def getOverlayItem(self): ... method getOverlayMode (line 119) | def getOverlayMode(self): ... method getPixelProbeCenter (line 120) | def getPixelProbeCenter(self): ... method getPixelProbeEnabled (line 121) | def getPixelProbeEnabled(self): ... method getPixelProbeRect (line 122) | def getPixelProbeRect(self): ... method getPixelProbeSize (line 123) | def getPixelProbeSize(self): ... method getRightView (line 124) | def getRightView(self): ... method getRoiVisible (line 125) | def getRoiVisible(self): ... method getStereoMode (line 126) | def getStereoMode(self): ... method getStereoValuePolicy (line 127) | def getStereoValuePolicy(self): ... method getSyncPanZoom (line 128) | def getSyncPanZoom(self): ... method getUnderlayItem (line 129) | def getUnderlayItem(self): ... method getViewIndexFromWindowPos (line 130) | def getViewIndexFromWindowPos(self, qpos): ... method getViewSlots (line 131) | def getViewSlots(self): ... method getVisibleItems (line 132) | def getVisibleItems(self): ... method hideEvent (line 133) | def hideEvent(self, event): ... method initManipulators (line 134) | def initManipulators(self): ... method isCapableOfNativeStereo (line 135) | def isCapableOfNativeStereo(self): ... method isOverlayEnabled (line 136) | def isOverlayEnabled(self): ... method isUnderlayEnabled (line 137) | def isUnderlayEnabled(self): ... method paintGL (line 138) | def paintGL(self): ... method setAltOffset (line 139) | def setAltOffset(self, offset): ... method setAnaglyphSaturation (line 140) | def setAnaglyphSaturation(self, sat): ... method setAnamorphDisplayScale (line 141) | def setAnamorphDisplayScale(self, scale): ... method setBucketOrderPreviewEnabled (line 142) | def setBucketOrderPreviewEnabled(self, isEnabled): ... method setDataRegionPreviewEnabled (line 143) | def setDataRegionPreviewEnabled(self, isEnabled): ... method setDisplayItem (line 144) | def setDisplayItem(self, view, catalogItem): ... method setDisplayWindowPreviewEnabled (line 145) | def setDisplayWindowPreviewEnabled(self, isEnabled): ... method setDrawStates (line 146) | def setDrawStates(self, drawStates): ... method setDrawStatesLinked (line 147) | def setDrawStatesLinked(self, linked): ... method setEditTransformEnabled (line 148) | def setEditTransformEnabled(self, enable): ... method setFocusLayer (line 149) | def setFocusLayer(self, layer, isFocused: bool = ...): ... method setGlobalManipulatorVisibility (line 150) | def setGlobalManipulatorVisibility(self, isVisible): ... method setImageMode (line 151) | def setImageMode(self, imageMode): ... method setLeftView (line 152) | def setLeftView(self, view): ... method setLocalManipulatorVisibility (line 153) | def setLocalManipulatorVisibility(self, policy, isVisible): ... method setMonoView (line 154) | def setMonoView(self, view): ... method setOverlayEnabled (line 155) | def setOverlayEnabled(self, isEnabled): ... method setOverlayItem (line 156) | def setOverlayItem(self, catalogItem): ... method setOverlayMode (line 157) | def setOverlayMode(self, mode): ... method setPixelProbeCenter (line 158) | def setPixelProbeCenter(self, center, final: bool = ...): ... method setPixelProbeEnabled (line 159) | def setPixelProbeEnabled(self, enabled): ... method setPixelProbeRect (line 160) | def setPixelProbeRect(self, lbrt, final: bool = ...): ... method setPixelProbeSize (line 161) | def setPixelProbeSize(self, size, final: bool = ...): ... method setRightView (line 162) | def setRightView(self, view): ... method setRoiVisible (line 163) | def setRoiVisible(self, visible): ... method setStereoMode (line 164) | def setStereoMode(self, mode): ... method setSyncPanZoom (line 165) | def setSyncPanZoom(self, sync): ... method setUnderlayEnabled (line 166) | def setUnderlayEnabled(self, isEnabled): ... method setUnderlayItem (line 167) | def setUnderlayItem(self, catalogItem): ... method setViewLeft (line 168) | def setViewLeft(self): ... method setViewMono (line 169) | def setViewMono(self): ... method setViewRight (line 170) | def setViewRight(self): ... method showEvent (line 171) | def showEvent(self, event): ... method swapDisplayItems (line 172) | def swapDisplayItems(self): ... method syncViewTo (line 173) | def syncViewTo(self, eyePoint, viewScale): ... method update (line 174) | def update(self): ... class ScenegraphGotoButton (line 176) | class ScenegraphGotoButton(MenuButton): method __init__ (line 177) | def __init__(self, *args) -> None: ... method _ScenegraphGotoButton__copyToClipboard_CB (line 178) | def _ScenegraphGotoButton__copyToClipboard_CB(self): ... method _ScenegraphGotoButton__selectInScenegraph_CB (line 179) | def _ScenegraphGotoButton__selectInScenegraph_CB(self): ... method setScenegraphLocation (line 180) | def setScenegraphLocation(self, sgLoc): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Flipbook.pyi class FlipbookSettingsDialog (line 19) | class FlipbookSettingsDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 20) | def __init__(self, node: NodegraphAPI.Node, *args) -> None: ... method accept (line 21) | def accept(self): ... method getArguments (line 22) | def getArguments(self): ... function GetDialogPolicy (line 24) | def GetDialogPolicy(): ... function _GetIntersectedROI (line 25) | def _GetIntersectedROI(roi, displayWindow): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/BandSelectionLayer.pyi class BandSelectionLayer (line 12) | class BandSelectionLayer(RectangleLayer): method __init__ (line 13) | def __init__(self, clickPoint, inclusiveDrag, *args, **kwargs) -> None... method _BandSelectionLayer__cancelBandSelectMode (line 14) | def _BandSelectionLayer__cancelBandSelectMode(self): ... method _BandSelectionLayer__cleanUp (line 15) | def _BandSelectionLayer__cleanUp(self): ... method _BandSelectionLayer__finishBandSelectMode (line 16) | def _BandSelectionLayer__finishBandSelectMode(self): ... method _BandSelectionLayer__nodeDeleteHandler (line 17) | def _BandSelectionLayer__nodeDeleteHandler(self, eventType, eventID, *... method paintGL (line 18) | def paintGL(self): ... method processEvent (line 19) | def processEvent(self, event): ... method setLayerStack (line 20) | def setLayerStack(self, stack): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/BookmarkJumpMenuLayer.pyi class BookmarkJumpMenuLayer (line 10) | class BookmarkJumpMenuLayer(MenuLayer): method __init__ (line 11) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method getBottomText (line 12) | def getBottomText(self): ... method getChosenValue (line 13) | def getChosenValue(self): ... method getEntries (line 14) | def getEntries(self): ... method onEntryChosen (line 15) | def onEntryChosen(self, value): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/CustomMenuLayer.pyi class CustomMenuLayer (line 9) | class CustomMenuLayer(MenuLayer): method __init__ (line 10) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method getBottomText (line 11) | def getBottomText(self): ... method getChosenValue (line 12) | def getChosenValue(self): ... method getEntries (line 13) | def getEntries(self): ... method onEntryChosen (line 14) | def onEntryChosen(self, value): ... method onlyMatchWordStart (line 15) | def onlyMatchWordStart(self) -> bool: ... method setLayeredMenu (line 16) | def setLayeredMenu(self, layeredMenu: LayeredMenuAPI.LayeredMenu): ... method shouldSortAlphabetically (line 17) | def shouldSortAlphabetically(self) -> bool: ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/DragAndDropLayer.pyi class DragAndDropLayer (line 15) | class DragAndDropLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method _DragAndDropLayer__getDropNode (line 17) | def _DragAndDropLayer__getDropNode(self, event): ... method _DragAndDropLayer__getGroup (line 18) | def _DragAndDropLayer__getGroup(self, event): ... method _DragAndDropLayer__handleFaceSetDrop (line 19) | def _DragAndDropLayer__handleFaceSetDrop(self, event): ... method _DragAndDropLayer__handleFileRefDrop (line 20) | def _DragAndDropLayer__handleFileRefDrop(self, event): ... method _DragAndDropLayer__nodeDeleteHandler (line 21) | def _DragAndDropLayer__nodeDeleteHandler(self, eventType, eventID, nod... method _DragAndDropLayer__setDropNode (line 22) | def _DragAndDropLayer__setDropNode(self, node: NodegraphAPI.Node): ... method _DragAndDropLayer__setHiliteGroup (line 23) | def _DragAndDropLayer__setHiliteGroup(self, group): ... method dragMoveEvent (line 24) | def dragMoveEvent(self, event): ... method dropEvent (line 25) | def dropEvent(self, event): ... method dropPosition (line 26) | def dropPosition(self, parentNode, event): ... method paintGL (line 27) | def paintGL(self): ... method processEvent (line 28) | def processEvent(self, event): ... function CatalogDialogPrompt (line 30) | def CatalogDialogPrompt(parent): ... function GetCatalogItemFromEvent (line 31) | def GetCatalogItemFromEvent(event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/FloatingNodeLayer.pyi class FloatingNodeLayer (line 20) | class FloatingNodeLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 21) | def __init__(self, *args, **kwargs) -> None: ... method NodeDelete (line 22) | def NodeDelete(self, node: NodegraphAPI.Node): ... method _FloatingNodeLayer__activeNodeHasDynamicInputs (line 23) | def _FloatingNodeLayer__activeNodeHasDynamicInputs(self): ... method _FloatingNodeLayer__dropNodes (line 24) | def _FloatingNodeLayer__dropNodes(self): ... method _FloatingNodeLayer__findPhysicallyConnectedNodesForNode (line 25) | def _FloatingNodeLayer__findPhysicallyConnectedNodesForNode(self, node... method _FloatingNodeLayer__getPortDistance (line 26) | def _FloatingNodeLayer__getPortDistance(self, portA, portB): ... method _FloatingNodeLayer__hitTestPort (line 27) | def _FloatingNodeLayer__hitTestPort(self, mousePoint): ... method _FloatingNodeLayer__nextActiveInputPort (line 28) | def _FloatingNodeLayer__nextActiveInputPort(self): ... method _FloatingNodeLayer__nextActiveOutputPort (line 29) | def _FloatingNodeLayer__nextActiveOutputPort(self): ... method _FloatingNodeLayer__nodeFloatHandler (line 30) | def _FloatingNodeLayer__nodeFloatHandler(self, eventType, eventID, nod... method _FloatingNodeLayer__node_delete_cb (line 31) | def _FloatingNodeLayer__node_delete_cb(self, eventType, eventID, node:... method _FloatingNodeLayer__processKeyPress (line 32) | def _FloatingNodeLayer__processKeyPress(self, event): ... method _FloatingNodeLayer__processMouseButtonPress (line 33) | def _FloatingNodeLayer__processMouseButtonPress(self, event): ... method _FloatingNodeLayer__processMouseButtonRelease (line 34) | def _FloatingNodeLayer__processMouseButtonRelease(self, event): ... method _FloatingNodeLayer__record_newNode_Undo (line 35) | def _FloatingNodeLayer__record_newNode_Undo(self, node: NodegraphAPI.N... method paintGL (line 36) | def paintGL(self): ... method processEvent (line 37) | def processEvent(self, event): ... method setBasePosition (line 38) | def setBasePosition(self, pos): ... function IsNodeAutoConnectable (line 40) | def IsNodeAutoConnectable(node: NodegraphAPI.Node): ... function IsPortAutoConnectable (line 41) | def IsPortAutoConnectable(port: NodegraphAPI.Port): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/GroupInteractionLayer.pyi class GroupInteractionLayer (line 12) | class GroupInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method _GroupInteractionLayer__buildMenus (line 14) | def _GroupInteractionLayer__buildMenus(self): ... method _GroupInteractionLayer__deletePortCallback (line 15) | def _GroupInteractionLayer__deletePortCallback(self): ... method _GroupInteractionLayer__nodeDeleteHandler (line 16) | def _GroupInteractionLayer__nodeDeleteHandler(self, eventType, eventID... method _GroupInteractionLayer__renamePortCallback (line 17) | def _GroupInteractionLayer__renamePortCallback(self): ... method processEvent (line 18) | def processEvent(self, event): ... function smoothstep (line 20) | def smoothstep(x): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/LinkConnectionLayer.pyi class LinkConnectionLayer (line 17) | class LinkConnectionLayer(TransientLayer): method __init__ (line 19) | def __init__(self, basePorts, savedLinks, disableScenegraphUpdates: bo... method _LinkConnectionLayer__connectLinks (line 20) | def _LinkConnectionLayer__connectLinks(self, targetPort): ... method _LinkConnectionLayer__create_dot_node (line 21) | def _LinkConnectionLayer__create_dot_node(self): ... method _LinkConnectionLayer__dropLinks (line 22) | def _LinkConnectionLayer__dropLinks(self): ... method _LinkConnectionLayer__exitNoChange (line 23) | def _LinkConnectionLayer__exitNoChange(self): ... method _LinkConnectionLayer__getConsumerHitPort (line 24) | def _LinkConnectionLayer__getConsumerHitPort(self, node: NodegraphAPI.... method _LinkConnectionLayer__getHitPort (line 25) | def _LinkConnectionLayer__getHitPort(self, node: NodegraphAPI.Node, cu... method _LinkConnectionLayer__getPortDescription (line 26) | def _LinkConnectionLayer__getPortDescription(self, port: NodegraphAPI.... method _LinkConnectionLayer__isConnectionViable (line 27) | def _LinkConnectionLayer__isConnectionViable(self, portA: NodegraphAPI... method _LinkConnectionLayer__isSendOrReturnPort (line 28) | def _LinkConnectionLayer__isSendOrReturnPort(self, port: NodegraphAPI.... method _LinkConnectionLayer__multiOutPopupCallback (line 29) | def _LinkConnectionLayer__multiOutPopupCallback(self, port: NodegraphA... method _LinkConnectionLayer__nodeDeleteHandler (line 30) | def _LinkConnectionLayer__nodeDeleteHandler(self, eventType, eventID, ... method _LinkConnectionLayer__processKeyPress (line 31) | def _LinkConnectionLayer__processKeyPress(self, event): ... method _LinkConnectionLayer__processMouseMove (line 32) | def _LinkConnectionLayer__processMouseMove(self, event): ... method _LinkConnectionLayer__processMousePress (line 33) | def _LinkConnectionLayer__processMousePress(self, event): ... method getBasePorts (line 34) | def getBasePorts(self) -> list[NodegraphAPI.Port]: ... method paintGL (line 35) | def paintGL(self): ... method processEvent (line 36) | def processEvent(self, event): ... method processMousePress (line 37) | def processMousePress(self, event): ... method __del__ (line 38) | def __del__(self) -> None: ... class PortDescription (line 40) | class PortDescription(tuple): method __init__ (line 44) | def __init__(self, _cls, node: NodegraphAPI.Node, type, name, isSendOr... method _asdict (line 45) | def _asdict(self): ... method _make (line 47) | def _make(cls, iterable): ... method _replace (line 48) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 49) | def __getnewargs__(self): ... method isSendOrReturnPort (line 51) | def isSendOrReturnPort(self): ... method name (line 53) | def name(self): ... method node (line 55) | def node(self): ... method type (line 57) | def type(self): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/LinkInteractionLayer.pyi class LinkInteractionLayer (line 13) | class LinkInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method _LinkInteractionLayer__node_delete_cb (line 15) | def _LinkInteractionLayer__node_delete_cb(self, eventType, eventID, no... method paintGL (line 16) | def paintGL(self): ... method processEvent (line 17) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/MenuLayer.pyi class MenuLayer (line 17) | class MenuLayer(TransientLayer): method __init__ (line 18) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method _MenuLayer__action (line 19) | def _MenuLayer__action(self): ... method _MenuLayer__close (line 20) | def _MenuLayer__close(self): ... method _MenuLayer__determineIndexOfSelectedEntry (line 21) | def _MenuLayer__determineIndexOfSelectedEntry(self): ... method _MenuLayer__drawEntry (line 22) | def _MenuLayer__drawEntry(self, entry, i, windowSize): ... method _MenuLayer__fillBackground (line 23) | def _MenuLayer__fillBackground(self): ... method _MenuLayer__findCommonPrefix (line 24) | def _MenuLayer__findCommonPrefix(self): ... method _MenuLayer__getEntrySize (line 25) | def _MenuLayer__getEntrySize(self, entry): ... method _MenuLayer__matches (line 26) | def _MenuLayer__matches(self, entry, testString): ... method _MenuLayer__processKeyPress (line 27) | def _MenuLayer__processKeyPress(self, event): ... method _MenuLayer__update (line 28) | def _MenuLayer__update(self): ... method _createEntry (line 29) | def _createEntry(self, value: object, text: Incomplete | None = ..., c... method getBottomText (line 30) | def getBottomText(self): ... method getChosenValue (line 31) | def getChosenValue(self): ... method getEntries (line 32) | def getEntries(self): ... method getReplacedNode (line 33) | def getReplacedNode(self): ... method onEntryChosen (line 34) | def onEntryChosen(self, value: object) -> Any | None: ... method onlyMatchWordStart (line 35) | def onlyMatchWordStart(self): ... method paintGL (line 36) | def paintGL(self): ... method processEvent (line 37) | def processEvent(self, event): ... method resizeGL (line 38) | def resizeGL(self): ... method setErrorMessage (line 39) | def setErrorMessage(self, errorMessage: str): ... method setLayerStack (line 40) | def setLayerStack(self, stack): ... method setReplacedNode (line 41) | def setReplacedNode(self, replacedNode): ... method setReplacedNodeCallback (line 42) | def setReplacedNodeCallback(self, callback): ... method shouldSortAlphabetically (line 43) | def shouldSortAlphabetically(self) -> bool: ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/MergeNodeInteractionLayer.pyi class MergeNodeInteractionLayer (line 16) | class MergeNodeInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 18) | def __init__(self, *args, **kwargs) -> None: ... method _MergeNodeInteractionLayer__deletePortCallback (line 19) | def _MergeNodeInteractionLayer__deletePortCallback(self, mId: Incomple... method _MergeNodeInteractionLayer__multiOutPopupChosen (line 20) | def _MergeNodeInteractionLayer__multiOutPopupChosen(self, text, meta):... method _MergeNodeInteractionLayer__multiPopClosed (line 21) | def _MergeNodeInteractionLayer__multiPopClosed(self): ... method _MergeNodeInteractionLayer__nodeDeleteHandler (line 22) | def _MergeNodeInteractionLayer__nodeDeleteHandler(self, eventType, eve... method _MergeNodeInteractionLayer__renamePortCallback (line 23) | def _MergeNodeInteractionLayer__renamePortCallback(self, menuid: int =... method _MergeNodeInteractionLayer__unhilite (line 24) | def _MergeNodeInteractionLayer__unhilite(self): ... method addMultiOutPopupCallback (line 25) | def addMultiOutPopupCallback(self, cb): ... method processEvent (line 26) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NetworkMaterialNodeInteractionLayer.pyi class NetworkMaterialNodeInteractionLayer (line 14) | class NetworkMaterialNodeInteractionLayer(QT4GLLayerStack.LayerStack.Lay... method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method _NetworkMaterialNodeInteractionLayer__deletePortCallback (line 16) | def _NetworkMaterialNodeInteractionLayer__deletePortCallback(self, mId... method _NetworkMaterialNodeInteractionLayer__renamePortCallback (line 17) | def _NetworkMaterialNodeInteractionLayer__renamePortCallback(self, men... method processEvent (line 18) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeCreationMenuLayer.pyi class NodeCreationMenuLayer (line 13) | class NodeCreationMenuLayer(MenuLayer): method _isNodeTypeVisible (line 14) | def _isNodeTypeVisible(self, nodeType: str) -> bool: ... method getBottomText (line 15) | def getBottomText(self): ... method getChosenValue (line 16) | def getChosenValue(self): ... method getEntries (line 17) | def getEntries(self): ... method onEntryChosen (line 18) | def onEntryChosen(self, value): ... method setEntries (line 19) | def setEntries(self, entries): ... function _on_nodegraph_registerType (line 21) | def _on_nodegraph_registerType(eventType: str | None, eventID: object, t... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeDrawingLayer.pyi class NodeDrawingLayer (line 17) | class NodeDrawingLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 18) | def __init__(self, *args, **kwargs) -> None: ... method _NodeDrawingLayer__node_attributeEditorUpdateState_cb (line 19) | def _NodeDrawingLayer__node_attributeEditorUpdateState_cb(self, eventT... method _NodeDrawingLayer__node_create_cb (line 20) | def _NodeDrawingLayer__node_create_cb(self, eventType, eventID, node: ... method _NodeDrawingLayer__node_delete_cb (line 21) | def _NodeDrawingLayer__node_delete_cb(self, eventType, eventID, node: ... method _NodeDrawingLayer__node_setBypassed_cb (line 22) | def _NodeDrawingLayer__node_setBypassed_cb(self, eventType, eventID, n... method _NodeDrawingLayer__node_setParent_cb (line 23) | def _NodeDrawingLayer__node_setParent_cb(self, eventType, eventID, nod... method _NodeDrawingLayer__node_setShapeAttributes_cb (line 24) | def _NodeDrawingLayer__node_setShapeAttributes_cb(self, eventType, eve... method _NodeDrawingLayer__node_setState_cb (line 25) | def _NodeDrawingLayer__node_setState_cb(self, eventType, eventID, node... method _NodeDrawingLayer__node_setViewed_cb (line 26) | def _NodeDrawingLayer__node_setViewed_cb(self, eventType, eventID, nod... method _NodeDrawingLayer__node_thumbnailEnabled_cb (line 27) | def _NodeDrawingLayer__node_thumbnailEnabled_cb(self, eventType, event... method _NodeDrawingLayer__node_thumbnailError_cb (line 28) | def _NodeDrawingLayer__node_thumbnailError_cb(self, eventType, eventID... method _NodeDrawingLayer__node_thumbnailReady_cb (line 29) | def _NodeDrawingLayer__node_thumbnailReady_cb(self, eventType, eventID... method _NodeDrawingLayer__on_event_idle (line 30) | def _NodeDrawingLayer__on_event_idle(self, *args, **kwargs): ... method _NodeDrawingLayer__on_nodegraph_loadEnd (line 31) | def _NodeDrawingLayer__on_nodegraph_loadEnd(self, eventType, eventID):... method _NodeDrawingLayer__on_nodegraph_setCurrentTimeIntermediate (line 32) | def _NodeDrawingLayer__on_nodegraph_setCurrentTimeIntermediate(self, e... method _NodeDrawingLayer__parameter_finalizeValue_cb (line 33) | def _NodeDrawingLayer__parameter_finalizeValue_cb(self, args): ... method _NodeDrawingLayer__port_setState_cb (line 34) | def _NodeDrawingLayer__port_setState_cb(self, eventType, eventID, **kw... method _NodeDrawingLayer__registerDirtyCallbacks (line 35) | def _NodeDrawingLayer__registerDirtyCallbacks(self, enabled): ... method _NodeDrawingLayer__updateNodeDimming (line 36) | def _NodeDrawingLayer__updateNodeDimming(self): ... method _NodeDrawingLayer__viewMaskLinkUpdate_cb (line 37) | def _NodeDrawingLayer__viewMaskLinkUpdate_cb(self, args: Incomplete | ... method idleUpdate (line 38) | def idleUpdate(self): ... method paintGL (line 39) | def paintGL(self): ... function _nodeCanChangeGraphstate (line 41) | def _nodeCanChangeGraphstate(node: Node3D) -> bool: ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeGraphViewDrawingLayer.pyi class NodeGraphViewDrawingLayer (line 12) | class NodeGraphViewDrawingLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method idleUpdate (line 14) | def idleUpdate(self): ... method paintGL (line 15) | def paintGL(self): ... method setLayerStack (line 16) | def setLayerStack(self, v): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeGraphViewInteractionLayer.pyi class CallbackTransientLayer (line 28) | class CallbackTransientLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 29) | def __init__(self, callback, eventTrigger: Incomplete | None = ..., *a... method processEvent (line 30) | def processEvent(self, event: QEvent) -> bool: ... class NodeGraphViewInteractionLayer (line 32) | class NodeGraphViewInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 33) | def __init__(self, *args, **kwargs) -> None: ... method _NodeGraphViewInteractionLayer__currentNodeViewChanged (line 34) | def _NodeGraphViewInteractionLayer__currentNodeViewChanged(self, previ... method _NodeGraphViewInteractionLayer__deleteNodes (line 35) | def _NodeGraphViewInteractionLayer__deleteNodes(self, nodeList): ... method _NodeGraphViewInteractionLayer__getUnicodeCharacter (line 36) | def _NodeGraphViewInteractionLayer__getUnicodeCharacter(self, event): ... method _NodeGraphViewInteractionLayer__isAncestorHash (line 37) | def _NodeGraphViewInteractionLayer__isAncestorHash(self, node: Nodegra... method _NodeGraphViewInteractionLayer__launchLayeredMenuLayer (line 38) | def _NodeGraphViewInteractionLayer__launchLayeredMenuLayer(self): ... method _NodeGraphViewInteractionLayer__onNetworkMaterialEditGenerated (line 39) | def _NodeGraphViewInteractionLayer__onNetworkMaterialEditGenerated(sel... method _NodeGraphViewInteractionLayer__onNetworkMaterialEditInvalidate (line 40) | def _NodeGraphViewInteractionLayer__onNetworkMaterialEditInvalidate(se... method _NodeGraphViewInteractionLayer__previewBackdropShapeAttrs (line 41) | def _NodeGraphViewInteractionLayer__previewBackdropShapeAttrs(self, no... method _NodeGraphViewInteractionLayer__processKeyPress (line 42) | def _NodeGraphViewInteractionLayer__processKeyPress(self, event): ... method _NodeGraphViewInteractionLayer__processKeyRelease (line 43) | def _NodeGraphViewInteractionLayer__processKeyRelease(self, event): ... method _NodeGraphViewInteractionLayer__processMouseButtonDown (line 44) | def _NodeGraphViewInteractionLayer__processMouseButtonDown(self, event... method _NodeGraphViewInteractionLayer__processMouseButtonUp (line 45) | def _NodeGraphViewInteractionLayer__processMouseButtonUp(self, event):... method _NodeGraphViewInteractionLayer__processMouseMove (line 46) | def _NodeGraphViewInteractionLayer__processMouseMove(self, event): ... method _NodeGraphViewInteractionLayer__processMouseWheel (line 47) | def _NodeGraphViewInteractionLayer__processMouseWheel(self, event): ... method changeNodesInputConnectionsVisibility (line 48) | def changeNodesInputConnectionsVisibility(self, nodes: list[NodegraphA... method changeSelectedNodesInputConnectionsVisibility (line 49) | def changeSelectedNodesInputConnectionsVisibility(self, visibiltyFunc,... method frameSelection (line 50) | def frameSelection(self, zoom: bool = ...): ... method launchEditBackdropDialogCB (line 51) | def launchEditBackdropDialogCB(self, _eventName, _eventID, node: typin... method popupNodeContextMenu (line 52) | def popupNodeContextMenu(self, node: NodegraphAPI.Node): ... method popupPortContextMenu (line 53) | def popupPortContextMenu(self, port: NodegraphAPI.Port, portCoords): ... method processEvent (line 54) | def processEvent(self, event): ... method setLayerStack (line 55) | def setLayerStack(self, layerStack): ... method setNodesInputConnectionsVisibility (line 56) | def setNodesInputConnectionsVisibility(self, nodes: list[NodegraphAPI.... method setNodesViewState (line 57) | def setNodesViewState(self, nodes: list[NodegraphAPI.Node], viewState:... method setSelectedNodesInputConnectionsVisibility (line 58) | def setSelectedNodesInputConnectionsVisibility(self, inputConnectionsV... method setSelectedNodesViewState (line 59) | def setSelectedNodesViewState(self, viewState: int | float): ... method showLayeredMenu (line 60) | def showLayeredMenu(self, menu): ... method startDrag (line 61) | def startDrag(self): ... method startNodeGraphViewDrag (line 62) | def startNodeGraphViewDrag(self, obj: NodegraphAPI.Node | NodegraphAPI... method toggleNodesInputConnectionsVisibility (line 63) | def toggleNodesInputConnectionsVisibility(self, nodes: list[NodegraphA... method toggleSelectedNodesInputConnectionsVisibility (line 64) | def toggleSelectedNodesInputConnectionsVisibility(self, setLocalOnly: ... method toggleShowFilterBoxState (line 65) | def toggleShowFilterBoxState(self, nodes: list[NodegraphAPI.Node]): ... function RegisterNodeGraphViewKeyboardShortcuts (line 67) | def RegisterNodeGraphViewKeyboardShortcuts(nodegraphPanel): ... function _OnToggleShowFilterBox (line 68) | def _OnToggleShowFilterBox(tab): ... function _OnViewStateKeyboardShortcut (line 69) | def _OnViewStateKeyboardShortcut(tab, viewState): ... function _PressInputConnectionsVisibilityKeyboardShortcut (line 70) | def _PressInputConnectionsVisibilityKeyboardShortcut(tab): ... function _ReleaseInputConnectionsVisibilityKeyboardShortcut (line 71) | def _ReleaseInputConnectionsVisibilityKeyboardShortcut(tab): ... function _getInputConnectionsVisible (line 72) | def _getInputConnectionsVisible(node: NodegraphAPI.Node, interactionLaye... function _sanitizeInputConnectionsVisible (line 73) | def _sanitizeInputConnectionsVisible(icv): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeGraphViewStateLayer.pyi class NodeGraphViewStateLayer (line 25) | class NodeGraphViewStateLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 26) | def __init__(self, *args, **kwargs) -> None: ... method _NodeGraphViewStateLayer__node_cleanUpShapeAttrs_cb (line 27) | def _NodeGraphViewStateLayer__node_cleanUpShapeAttrs_cb(self, eventTyp... method _NodeGraphViewStateLayer__node_create_cb (line 28) | def _NodeGraphViewStateLayer__node_create_cb(self, eventType, eventID,... method _NodeGraphViewStateLayer__node_delete_cb (line 29) | def _NodeGraphViewStateLayer__node_delete_cb(self, eventType, eventID,... method _NodeGraphViewStateLayer__node_setParent_cb (line 30) | def _NodeGraphViewStateLayer__node_setParent_cb(self, eventType, event... method _NodeGraphViewStateLayer__node_setShapeAttributes_cb (line 31) | def _NodeGraphViewStateLayer__node_setShapeAttributes_cb(self, eventTy... method _NodeGraphViewStateLayer__node_setState_cb (line 32) | def _NodeGraphViewStateLayer__node_setState_cb(self, eventType, eventI... method _NodeGraphViewStateLayer__node_setViewed_cb (line 33) | def _NodeGraphViewStateLayer__node_setViewed_cb(self, eventType, event... method _NodeGraphViewStateLayer__node_shapeAttrsChanged_cb (line 34) | def _NodeGraphViewStateLayer__node_shapeAttrsChanged_cb(self, eventTyp... method _NodeGraphViewStateLayer__onNetworkMaterialEditUpdated (line 35) | def _NodeGraphViewStateLayer__onNetworkMaterialEditUpdated(self, event... method _NodeGraphViewStateLayer__on_event_idle (line 36) | def _NodeGraphViewStateLayer__on_event_idle(self, *args, **kwargs): ... method _NodeGraphViewStateLayer__on_node_setFloating (line 37) | def _NodeGraphViewStateLayer__on_node_setFloating(self, _eventType, _e... method _NodeGraphViewStateLayer__on_nodegraph_setCurrentTimeIntermediate (line 38) | def _NodeGraphViewStateLayer__on_nodegraph_setCurrentTimeIntermediate(... method _NodeGraphViewStateLayer__parameter_finalizeValue_cb (line 39) | def _NodeGraphViewStateLayer__parameter_finalizeValue_cb(self, args): ... method _NodeGraphViewStateLayer__port_setState_cb (line 40) | def _NodeGraphViewStateLayer__port_setState_cb(self, eventType, eventI... method _NodeGraphViewStateLayer__registerDirtyCallbacks (line 41) | def _NodeGraphViewStateLayer__registerDirtyCallbacks(self, enabled): ... method _NodeGraphViewStateLayer__updateNodeDimming (line 42) | def _NodeGraphViewStateLayer__updateNodeDimming(self): ... method idleUpdate (line 43) | def idleUpdate(self): ... method setBasePosition (line 44) | def setBasePosition(self, pos): ... method setEnabled (line 45) | def setEnabled(self, enabled): ... function _nodeCanChangeGraphstate (line 47) | def _nodeCanChangeGraphstate(node: Node3D) -> bool: ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeInteractionLayer.pyi class NodeInteractionLayer (line 30) | class NodeInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 32) | def __init__(self, *args, **kwargs) -> None: ... method _NodeInteractionLayer__buildNodeMenu (line 33) | def _NodeInteractionLayer__buildNodeMenu(self, node: NodegraphAPI.Node... method _NodeInteractionLayer__createDotNode (line 34) | def _NodeInteractionLayer__createDotNode(self) -> bool: ... method _NodeInteractionLayer__deleteNodes (line 35) | def _NodeInteractionLayer__deleteNodes(self, nodeList): ... method _NodeInteractionLayer__getFocusedGroupNode (line 36) | def _NodeInteractionLayer__getFocusedGroupNode(self): ... method _NodeInteractionLayer__isDisplayedAsDot (line 37) | def _NodeInteractionLayer__isDisplayedAsDot(self, node: NodegraphAPI.N... method _NodeInteractionLayer__launchNodeCreationMenuLayer (line 38) | def _NodeInteractionLayer__launchNodeCreationMenuLayer(self, replacedN... method _NodeInteractionLayer__nodeDeleteHandler (line 39) | def _NodeInteractionLayer__nodeDeleteHandler(self, eventType, eventID,... method _NodeInteractionLayer__nodePickerLayerFinished (line 40) | def _NodeInteractionLayer__nodePickerLayerFinished(self, createdNodes,... method _NodeInteractionLayer__populateEntries (line 41) | def _NodeInteractionLayer__populateEntries(self): ... method _NodeInteractionLayer__processKeyPress (line 42) | def _NodeInteractionLayer__processKeyPress(self, event): ... method _NodeInteractionLayer__processMouseButtonDblClick (line 43) | def _NodeInteractionLayer__processMouseButtonDblClick(self, event): ... method _NodeInteractionLayer__processMouseButtonPress (line 44) | def _NodeInteractionLayer__processMouseButtonPress(self, event): ... method _NodeInteractionLayer__processMouseButtonRelease (line 45) | def _NodeInteractionLayer__processMouseButtonRelease(self, event): ... method _NodeInteractionLayer__processMouseMove (line 46) | def _NodeInteractionLayer__processMouseMove(self, event): ... method _NodeInteractionLayer__renameNode (line 47) | def _NodeInteractionLayer__renameNode(self, node: NodegraphAPI.Node) -... method _NodeInteractionLayer__startNodeDrag (line 48) | def _NodeInteractionLayer__startNodeDrag(self, node: NodegraphAPI.Node... method _createBreakoutNode (line 49) | def _createBreakoutNode(self): ... method _on_nodegraph_registerType (line 50) | def _on_nodegraph_registerType(self, eventType: str | None, eventID: o... method frameSelection (line 51) | def frameSelection(self, zoom: bool = ...): ... method processEvent (line 52) | def processEvent(self, event): ... method showJumpToBookmark (line 53) | def showJumpToBookmark(self): ... method showLayeredMenu (line 54) | def showLayeredMenu(self, menu): ... method startDrag (line 55) | def startDrag(self): ... function _GetTopMostBackdropNodeFromHitList (line 57) | def _GetTopMostBackdropNodeFromHitList(hitList): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/NodeOverlayLayer.pyi class NodeOverlayLayer (line 19) | class NodeOverlayLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 24) | def __init__(self, *args, **kwargs) -> None: ... method autoSetInfo (line 25) | def autoSetInfo(self, node: NodegraphAPI.Node, useExcludeList: bool = ... method paintGL (line 26) | def paintGL(self): ... method processEvent (line 27) | def processEvent(self, event): ... method setNodeName (line 28) | def setNodeName(self, name, nodeType: str = ..., nodeInfo: str = ..., ... function DrawNodeNameOverlay (line 30) | def DrawNodeNameOverlay(nodeName, nodeType, pos, wsize, defaultNodeColor... function GetViewMaskInfo (line 31) | def GetViewMaskInfo(node: NodegraphAPI.Node): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/OffscreenFlagDisplayLayer.pyi class OffscreenFlagDisplayLayer (line 16) | class OffscreenFlagDisplayLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method _OffscreenFlagDisplayLayer__drawArrowToNode (line 18) | def _OffscreenFlagDisplayLayer__drawArrowToNode(self, node: NodegraphA... method _OffscreenFlagDisplayLayer__hitTestArrow (line 19) | def _OffscreenFlagDisplayLayer__hitTestArrow(self, pos, angle, clickPo... method paintGL (line 20) | def paintGL(self): ... method processEvent (line 21) | def processEvent(self, event): ... function _IsNodeHidden (line 23) | def _IsNodeHidden(node: NodegraphAPI.Node): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/PortInteractionLayer.pyi class PortInteractionLayer (line 12) | class PortInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method _PortInteractionLayer__node_delete_cb (line 14) | def _PortInteractionLayer__node_delete_cb(self, eventType, eventID, no... method _PortInteractionLayer__removeNodeCallback (line 15) | def _PortInteractionLayer__removeNodeCallback(self, eventType, eventID... method paintGL (line 16) | def paintGL(self): ... method processEvent (line 17) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/StickyNoteInteractionLayer.pyi class DefaultColorPanel (line 19) | class DefaultColorPanel(PyQt5.QtWidgets.QFrame): class ColorEntry (line 20) | class ColorEntry(PyQt5.QtWidgets.QFrame): method __init__ (line 22) | def __init__(self, color, emitFromWidget, *args) -> None: ... method enterEvent (line 23) | def enterEvent(self, ev): ... method leaveEvent (line 24) | def leaveEvent(self, ev): ... method mousePressEvent (line 25) | def mousePressEvent(self, ev): ... method paintEvent (line 26) | def paintEvent(self, ev): ... method sizeHint (line 27) | def sizeHint(self): ... method sizePolicy (line 28) | def sizePolicy(self): ... method __init__ (line 31) | def __init__(self, *args) -> None: ... class EditBackdropNodeDialog (line 33) | class EditBackdropNodeDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 36) | def __init__(self, node: NodegraphAPI.Node, previewCallback: typing.Op... method _EditBackdropNodeDialog__buildWidgets (line 37) | def _EditBackdropNodeDialog__buildWidgets(self): ... method _EditBackdropNodeDialog__connectSignals (line 38) | def _EditBackdropNodeDialog__connectSignals(self): ... method _EditBackdropNodeDialog__finalizeNodeAttrs (line 39) | def _EditBackdropNodeDialog__finalizeNodeAttrs(self): ... method _EditBackdropNodeDialog__fontScaleChanged (line 40) | def _EditBackdropNodeDialog__fontScaleChanged(self, event): ... method _EditBackdropNodeDialog__fontScaleEdited (line 41) | def _EditBackdropNodeDialog__fontScaleEdited(self, text): ... method _EditBackdropNodeDialog__setColor (line 42) | def _EditBackdropNodeDialog__setColor(self, event): ... method _EditBackdropNodeDialog__setShapeAttrs (line 43) | def _EditBackdropNodeDialog__setShapeAttrs(self, **attrs): ... method _EditBackdropNodeDialog__setText (line 44) | def _EditBackdropNodeDialog__setText(self): ... method _EditBackdropNodeDialog__updateFontScale (line 45) | def _EditBackdropNodeDialog__updateFontScale(self, fontScale): ... method accept (line 46) | def accept(self): ... method getColor (line 47) | def getColor(self): ... method getFontScale (line 48) | def getFontScale(self): ... method getShowInBookmarks (line 49) | def getShowInBookmarks(self): ... method getText (line 50) | def getText(self): ... method reject (line 51) | def reject(self): ... class StickyNoteInteractionLayer (line 53) | class StickyNoteInteractionLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 54) | def __init__(self, *args, **kwargs) -> None: ... method _StickyNoteInteractionLayer__calcNodeAreaSq (line 56) | def _StickyNoteInteractionLayer__calcNodeAreaSq(node: NodegraphAPI.Nod... method _StickyNoteInteractionLayer__findBackdropChildren (line 57) | def _StickyNoteInteractionLayer__findBackdropChildren(self, backdropNo... method _StickyNoteInteractionLayer__findBackdropDescendants (line 58) | def _StickyNoteInteractionLayer__findBackdropDescendants(self, backdro... method _StickyNoteInteractionLayer__handleBackdropClicked (line 59) | def _StickyNoteInteractionLayer__handleBackdropClicked(self, backdropN... method _StickyNoteInteractionLayer__node_delete_cb (line 60) | def _StickyNoteInteractionLayer__node_delete_cb(self, eventType, event... method _StickyNoteInteractionLayer__node_shapeAttr_changed (line 61) | def _StickyNoteInteractionLayer__node_shapeAttr_changed(self, node: No... method processEvent (line 62) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/StructuredPortsNodeInteractionLayer.pyi class StructuredPortsNodeInteractionLayer (line 20) | class StructuredPortsNodeInteractionLayer(QT4GLLayerStack.LayerStack.Lay... class PortMenuEntry (line 21) | class PortMenuEntry: method __init__ (line 22) | def __init__(self, port: NodegraphAPI.Port, children) -> None: ... method __init__ (line 28) | def __init__(self, *args, **kwargs) -> None: ... method _StructuredPortsNodeInteractionLayer__linkMenuItemChosen (line 29) | def _StructuredPortsNodeInteractionLayer__linkMenuItemChosen(self, ite... method _StructuredPortsNodeInteractionLayer__node_delete_cb (line 30) | def _StructuredPortsNodeInteractionLayer__node_delete_cb(self, eventTy... method _StructuredPortsNodeInteractionLayer__on_menuPopup_show (line 31) | def _StructuredPortsNodeInteractionLayer__on_menuPopup_show(self): ... method _StructuredPortsNodeInteractionLayer__portMenuItemChosen (line 32) | def _StructuredPortsNodeInteractionLayer__portMenuItemChosen(self, ite... method _StructuredPortsNodeInteractionLayer__processMouseMove (line 33) | def _StructuredPortsNodeInteractionLayer__processMouseMove(self, event... method _StructuredPortsNodeInteractionLayer__processMousePress (line 34) | def _StructuredPortsNodeInteractionLayer__processMousePress(self, even... method _StructuredPortsNodeInteractionLayer__showHiddenPortsCallback (line 35) | def _StructuredPortsNodeInteractionLayer__showHiddenPortsCallback(self... method _disablePortsMenuItem (line 36) | def _disablePortsMenuItem(self, item: SortableTreeWidgetItem): ... method _isPortConnectedToNode (line 37) | def _isPortConnectedToNode(self, rawPort: NodegraphAPI.Port, node: Nod... method _recursiveAddAllPortsToMenu (line 38) | def _recursiveAddAllPortsToMenu(self, menu, ports, parentItem: Incompl... method _recursiveAddConnectedPorts (line 39) | def _recursiveAddConnectedPorts(self, menu: FilterablePopupButton, por... method _recursiveGetConnectedPorts (line 40) | def _recursiveGetConnectedPorts(self, menu, ports, onlyConnectedToNode... method _setPortsMenuItemConnections (line 41) | def _setPortsMenuItemConnections(self, item: SortableTreeWidgetItem, r... method _setPortsMenuItemTooltip (line 42) | def _setPortsMenuItemTooltip(self, item: SortableTreeWidgetItem, rawPo... method addPortsMenuItem (line 43) | def addPortsMenuItem(self, menu: FilterablePopupButton, port: Nodegrap... method fillPortMenu (line 44) | def fillPortMenu(self, menu, node: NodegraphAPI.Node, isInput, onlyCon... method getPortMenu (line 45) | def getPortMenu(self): ... method paintGL (line 46) | def paintGL(self): ... method processEvent (line 47) | def processEvent(self, event): ... method showPortMenu (line 48) | def showPortMenu(self, mousePos, node: NodegraphAPI.Node, action: Inco... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/StructuredPortsNodeLinkConnectionLayer.pyi class StructuredPortsNodeLinkConnectionLayer (line 9) | class StructuredPortsNodeLinkConnectionLayer(LinkConnectionLayer): method __init__ (line 10) | def __init__(self, interactionLayer, structuredPorts, *args, **kwargs)... method _StructuredPortsNodeLinkConnectionLayer__linkConnectionPortChosenCallback (line 11) | def _StructuredPortsNodeLinkConnectionLayer__linkConnectionPortChosenC... method processMousePress (line 12) | def processMousePress(self, event): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/Layers/TransientLayer.pyi class TransientLayer (line 9) | class TransientLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 10) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method setLayerStack (line 11) | def setLayerStack(self, stack): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodeBreadcrumbsFrame.pyi class NodeBreadcrumbsFrame (line 27) | class NodeBreadcrumbsFrame(PyQt5.QtWidgets.QFrame): method __init__ (line 28) | def __init__(self, enterGroupNodeCallback: typing.Optional[typing.Call... method _NodeBreadcrumbsFrame__addFrameWidgets (line 29) | def _NodeBreadcrumbsFrame__addFrameWidgets(self, frameWidgets: list, g... method _NodeBreadcrumbsFrame__enterOrRevealNode (line 30) | def _NodeBreadcrumbsFrame__enterOrRevealNode(self, node: NodegraphAPI.... method _NodeBreadcrumbsFrame__insertFrameWidgets (line 31) | def _NodeBreadcrumbsFrame__insertFrameWidgets(self, frameWidgets: list... method _NodeBreadcrumbsFrame__on_nodeButton_clicked (line 32) | def _NodeBreadcrumbsFrame__on_nodeButton_clicked(self): ... method _NodeBreadcrumbsFrame__on_node_updated (line 33) | def _NodeBreadcrumbsFrame__on_node_updated(self, args: list[tuple[str,... method _NodeBreadcrumbsFrame__removeFrameWidgets (line 34) | def _NodeBreadcrumbsFrame__removeFrameWidgets(self): ... method _NodeBreadcrumbsFrame__updateNodeButtons (line 35) | def _NodeBreadcrumbsFrame__updateNodeButtons(self): ... method dragEnterEvent (line 36) | def dragEnterEvent(self, event): ... method dropEvent (line 37) | def dropEvent(self, event): ... method fontChange (line 38) | def fontChange(self, oldFont): ... method getDeepestNotDeletedNode (line 39) | def getDeepestNotDeletedNode(self) -> list[NodegraphAPI.Node]: ... method resizeEvent (line 40) | def resizeEvent(self, event): ... method setCurrentNodeView (line 41) | def setCurrentNodeView(self, groupNode: NodegraphAPI.GroupNode | None)... method showEvent (line 42) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... class _EllipsisPopupButton (line 44) | class _EllipsisPopupButton(FilterablePopupButton): method __init__ (line 45) | def __init__(self, enterGroupNodeCallback: callback, parent: Incomplet... method _EllipsisPopupButton__on_itemChosen (line 46) | def _EllipsisPopupButton__on_itemChosen(self, name, meta: Incomplete |... method _EllipsisPopupButton__on_node_setColor (line 47) | def _EllipsisPopupButton__on_node_setColor(self, eventType, eventID, *... method _EllipsisPopupButton__on_popupAboutToShow (line 48) | def _EllipsisPopupButton__on_popupAboutToShow(self): ... method _EllipsisPopupButton__on_popupWindowTreeWidget_mousePressEvent (line 49) | def _EllipsisPopupButton__on_popupWindowTreeWidget_mousePressEvent(sel... method _EllipsisPopupButton__on_popupWindowTreeWidget_rightClick (line 50) | def _EllipsisPopupButton__on_popupWindowTreeWidget_rightClick(self, ev... method setGroupNodes (line 51) | def setGroupNodes(self, groupNodes): ... class _SeparatorLabel (line 53) | class _SeparatorLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 54) | def __init__(self, parent: Incomplete | None = ...) -> None: ... function _GetNodePixmap (line 56) | def _GetNodePixmap(node: NodegraphAPI.Node) -> PyQt5.QtGui.QPixmap: ... function _InitNodePixmaps (line 57) | def _InitNodePixmaps(): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodeFindPopupButton.pyi class NodeFindPopupButton (line 21) | class NodeFindPopupButton(FilterablePopupButton): method __init__ (line 24) | def __init__(self, goToNodeCallback: typing.Optional[typing.Callable] ... method _NodeFindPopupButton__findFilterTypeCallback (line 25) | def _NodeFindPopupButton__findFilterTypeCallback(self, name, meta, mat... method _NodeFindPopupButton__loadPixmaps (line 26) | def _NodeFindPopupButton__loadPixmaps(self): ... method _NodeFindPopupButton__on_itemChosen (line 27) | def _NodeFindPopupButton__on_itemChosen(self, nodeName, meta: Incomple... method _NodeFindPopupButton__on_nodegraphChanged (line 28) | def _NodeFindPopupButton__on_nodegraphChanged(self, args): ... method _NodeFindPopupButton__on_popupAboutToShow (line 29) | def _NodeFindPopupButton__on_popupAboutToShow(self): ... method _NodeFindPopupButton__on_preferenceChanged (line 30) | def _NodeFindPopupButton__on_preferenceChanged(self, eventType, eventI... method _NodeFindPopupButton__on_selectAllMatchingButtonClicked (line 31) | def _NodeFindPopupButton__on_selectAllMatchingButtonClicked(self): ... method _NodeFindPopupButton__on_showOnlyNodesInThisGroupChanged (line 32) | def _NodeFindPopupButton__on_showOnlyNodesInThisGroupChanged(self, val... method enterEvent (line 33) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method leaveEvent (line 34) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method setCurrentNodeView (line 35) | def setCurrentNodeView(self, node: NodegraphAPI.Node): ... method showPopup (line 36) | def showPopup(self): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodeGoRootButton.pyi class NodeGoRootButton (line 13) | class NodeGoRootButton(ToolbarButton): method __init__ (line 16) | def __init__(self, enterGroupNodeCallback: typing.Optional[typing.Call... method _NodeGoRootButton__loadResources (line 17) | def _NodeGoRootButton__loadResources(self): ... method _NodeGoRootButton__on_clicked (line 18) | def _NodeGoRootButton__on_clicked(self): ... method setCurrentNodeView (line 19) | def setCurrentNodeView(self, node: NodegraphAPI.Node): ... method sizeHint (line 20) | def sizeHint(self): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodeGoUpButton.pyi class NodeGoUpButton (line 13) | class NodeGoUpButton(ToolbarButton): method __init__ (line 15) | def __init__(self, setCurrentNodeViewCallback: typing.Optional[typing.... method _NodeGoUpButton__loadResources (line 16) | def _NodeGoUpButton__loadResources(self): ... method _NodeGoUpButton__on_clicked (line 17) | def _NodeGoUpButton__on_clicked(self): ... method setCurrentNodeView (line 18) | def setCurrentNodeView(self, node: NodegraphAPI.Node): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodeStateFilterFrame.pyi class NodeStateFilterFrame (line 13) | class NodeStateFilterFrame(PyQt5.QtWidgets.QFrame): method __init__ (line 14) | def __init__(self, parent) -> None: ... method _NodeStateFilterFrame__onNodeViewChanged (line 15) | def _NodeStateFilterFrame__onNodeViewChanged(self, _prevViewNode, curr... method _NodeStateFilterFrame__onShowHideFilters (line 16) | def _NodeStateFilterFrame__onShowHideFilters(self): ... class _ToggleFrame (line 18) | class _ToggleFrame(PyQt5.QtWidgets.QFrame): class _ToggleFrame__Toggle (line 19) | class _ToggleFrame__Toggle(tuple): method __init__ (line 23) | def __init__(self, _cls, name, label) -> None: ... method _asdict (line 24) | def _asdict(self): ... method _make (line 26) | def _make(cls, iterable): ... method _replace (line 27) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 28) | def __getnewargs__(self): ... method label (line 30) | def label(self): ... method name (line 32) | def name(self): ... method __init__ (line 35) | def __init__(self, parent) -> None: ... method _ToggleFrame__onButtonClicked (line 37) | def _ToggleFrame__onButtonClicked(button): ... method _ToggleFrame__onPrefChanged (line 38) | def _ToggleFrame__onPrefChanged(self, _eventType, _eventID, prefKey, p... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodegraphPanel.pyi class NodegraphPanel (line 36) | class NodegraphPanel(BaseTab): method __init__ (line 45) | def __init__(self, *args) -> None: ... method _NodegraphPanel__addLayeredMenus (line 47) | def _NodegraphPanel__addLayeredMenus(): ... method _NodegraphPanel__alignSelected (line 48) | def _NodegraphPanel__alignSelected(self): ... method _NodegraphPanel__buildMenuBar (line 49) | def _NodegraphPanel__buildMenuBar(self): ... method _NodegraphPanel__clone (line 50) | def _NodegraphPanel__clone(self): ... method _NodegraphPanel__collapseSelected (line 51) | def _NodegraphPanel__collapseSelected(self): ... method _NodegraphPanel__collapseSelectedToStack (line 52) | def _NodegraphPanel__collapseSelectedToStack(self): ... method _NodegraphPanel__copy (line 53) | def _NodegraphPanel__copy(self, progressDialogTitle: str = ...) -> boo... method _NodegraphPanel__cut (line 54) | def _NodegraphPanel__cut(self): ... method _NodegraphPanel__deleteNonContributors (line 55) | def _NodegraphPanel__deleteNonContributors(self): ... method _NodegraphPanel__disableActions (line 56) | def _NodegraphPanel__disableActions(self, actions: dict, names: Iterab... method _NodegraphPanel__duplicateSelectedNodes (line 57) | def _NodegraphPanel__duplicateSelectedNodes(self): ... method _NodegraphPanel__duplicateSelectedNodesWithConnections (line 58) | def _NodegraphPanel__duplicateSelectedNodesWithConnections(self): ... method _NodegraphPanel__editSelected (line 59) | def _NodegraphPanel__editSelected(self): ... method _NodegraphPanel__enableActions (line 60) | def _NodegraphPanel__enableActions(self, actions: dict): ... method _NodegraphPanel__enterSelected (line 61) | def _NodegraphPanel__enterSelected(self): ... method _NodegraphPanel__esc (line 62) | def _NodegraphPanel__esc(self): ... method _NodegraphPanel__explodeSelected (line 63) | def _NodegraphPanel__explodeSelected(self): ... method _NodegraphPanel__extractSelected (line 64) | def _NodegraphPanel__extractSelected(self): ... method _NodegraphPanel__findNodesActionCallback (line 65) | def _NodegraphPanel__findNodesActionCallback(self): ... method _NodegraphPanel__fitBackdropNode (line 66) | def _NodegraphPanel__fitBackdropNode(self): ... method _NodegraphPanel__getSelectedNodesBehaviours (line 67) | def _NodegraphPanel__getSelectedNodesBehaviours(self): ... method _NodegraphPanel__getTotalNumberOfNodes (line 68) | def _NodegraphPanel__getTotalNumberOfNodes(self, nodes: list[Nodegraph... method _NodegraphPanel__goToRoot (line 69) | def _NodegraphPanel__goToRoot(self): ... method _NodegraphPanel__goUp (line 70) | def _NodegraphPanel__goUp(self): ... method _NodegraphPanel__isolateSelected (line 71) | def _NodegraphPanel__isolateSelected(self): ... method _NodegraphPanel__loadResources (line 72) | def _NodegraphPanel__loadResources(self): ... method _NodegraphPanel__lockBackdropNodes (line 73) | def _NodegraphPanel__lockBackdropNodes(self): ... method _NodegraphPanel__mergeSelectedNodes (line 74) | def _NodegraphPanel__mergeSelectedNodes(self): ... method _NodegraphPanel__navigationToolbarCallback (line 75) | def _NodegraphPanel__navigationToolbarCallback(self, nodeName: str, is... method _NodegraphPanel__nodeDeleteHandler (line 76) | def _NodegraphPanel__nodeDeleteHandler(self, eventType, eventID, node:... method _NodegraphPanel__node_setLocked_CB (line 77) | def _NodegraphPanel__node_setLocked_CB(self, args): ... method _NodegraphPanel__node_setViewed_CB (line 78) | def _NodegraphPanel__node_setViewed_CB(self, args): ... method _NodegraphPanel__on_colorsMenu_aboutToShow (line 79) | def _NodegraphPanel__on_colorsMenu_aboutToShow(self): ... method _NodegraphPanel__on_editMenu_aboutToShow (line 80) | def _NodegraphPanel__on_editMenu_aboutToShow(self): ... method _NodegraphPanel__on_goMenu_aboutToShow (line 81) | def _NodegraphPanel__on_goMenu_aboutToShow(self): ... method _NodegraphPanel__on_newMenu_aboutToShow (line 82) | def _NodegraphPanel__on_newMenu_aboutToShow(self): ... method _NodegraphPanel__on_viewMenu_aboutToShow (line 83) | def _NodegraphPanel__on_viewMenu_aboutToShow(self): ... method _NodegraphPanel__paste (line 84) | def _NodegraphPanel__paste(self): ... method _NodegraphPanel__preferencesCallback (line 85) | def _NodegraphPanel__preferencesCallback(self): ... method _NodegraphPanel__processUnfocusedKeyEvent (line 86) | def _NodegraphPanel__processUnfocusedKeyEvent(self, event): ... method _NodegraphPanel__setNodeViewHandler (line 87) | def _NodegraphPanel__setNodeViewHandler(self, _eventType, eventID, nod... method _NodegraphPanel__setPreferredViewOptions (line 88) | def _NodegraphPanel__setPreferredViewOptions(self): ... method _NodegraphPanel__setRootNodeHandler (line 89) | def _NodegraphPanel__setRootNodeHandler(self, eventType, eventID, **kw... method _NodegraphPanel__stateLabelHandler (line 90) | def _NodegraphPanel__stateLabelHandler(self, _eventType, eventID, text... method _NodegraphPanel__toggleAutoConnect (line 91) | def _NodegraphPanel__toggleAutoConnect(self): ... method _NodegraphPanel__toggleBypassOfSelected (line 92) | def _NodegraphPanel__toggleBypassOfSelected(self): ... method _NodegraphPanel__toggleDimNonContributing (line 93) | def _NodegraphPanel__toggleDimNonContributing(self): ... method _NodegraphPanel__toggleDimUnconnected (line 94) | def _NodegraphPanel__toggleDimUnconnected(self): ... method _NodegraphPanel__toggleErrorsFileIn (line 95) | def _NodegraphPanel__toggleErrorsFileIn(self): ... method _NodegraphPanel__toggleExpressionLinks (line 96) | def _NodegraphPanel__toggleExpressionLinks(self): ... method _NodegraphPanel__toggleLowContrast (line 97) | def _NodegraphPanel__toggleLowContrast(self): ... method _NodegraphPanel__toggleSelectedNodesInputConnectionVisibility (line 98) | def _NodegraphPanel__toggleSelectedNodesInputConnectionVisibility(self... method _NodegraphPanel__toggleShowPagesConnectedOnly (line 99) | def _NodegraphPanel__toggleShowPagesConnectedOnly(self): ... method _NodegraphPanel__toggleSnapToGrid (line 100) | def _NodegraphPanel__toggleSnapToGrid(self): ... method _NodegraphPanel__toggleTeleports (line 101) | def _NodegraphPanel__toggleTeleports(self): ... method _NodegraphPanel__toggleThumbnailOfSelected (line 102) | def _NodegraphPanel__toggleThumbnailOfSelected(self): ... method _NodegraphPanel__toggleUseColorFromInputPortForConnections (line 103) | def _NodegraphPanel__toggleUseColorFromInputPortForConnections(self): ... method _NodegraphPanel__toggleViewMasks (line 104) | def _NodegraphPanel__toggleViewMasks(self): ... method _NodegraphPanel__unlockBackdropNodes (line 105) | def _NodegraphPanel__unlockBackdropNodes(self): ... method _NodegraphPanel__updateLockStateMessage (line 106) | def _NodegraphPanel__updateLockStateMessage(self, node: NodegraphAPI.N... method _NodegraphPanel__updateStatusDisplay (line 107) | def _NodegraphPanel__updateStatusDisplay(self): ... method _NodegraphPanel__viewSelected (line 108) | def _NodegraphPanel__viewSelected(self): ... method aboutToQuit (line 109) | def aboutToQuit(self): ... method closeEvent (line 110) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method copyPanel (line 111) | def copyPanel(self): ... method enableFloatingLayer (line 112) | def enableFloatingLayer(self): ... method event (line 113) | def event(self, event): ... method floatNodes (line 114) | def floatNodes(self, nodelist): ... method frameAll (line 115) | def frameAll(self): ... method frameSelection (line 116) | def frameSelection(self, *args, **kwds): ... method getEnteredGroupNode (line 117) | def getEnteredGroupNode(self) -> NodegraphAPI.GroupNode: ... method getMenuBar (line 118) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method getNodeGraphWidget (line 119) | def getNodeGraphWidget(self) -> NodegraphWidget: ... method getStateOverlayLabel (line 120) | def getStateOverlayLabel(self): ... method goToNode (line 121) | def goToNode(self, node: NodegraphAPI.Node): ... method prepareFloatingLayerWithPasteBounds (line 122) | def prepareFloatingLayerWithPasteBounds(self, nodeList): ... method registerKeyboardShortcuts (line 124) | def registerKeyboardShortcuts(cls): ... method setCurrentNodeView (line 125) | def setCurrentNodeView(self, node: NodegraphAPI.Node): ... method update (line 126) | def update(self): ... class _NodeStateOverlayLabel (line 128) | class _NodeStateOverlayLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 129) | def __init__(self, parent) -> None: ... function CopyNodeColorToLinkColor (line 131) | def CopyNodeColorToLinkColor(): ... FILE: katana/stubs/UI4/Tabs/NodeGraphTab/NodegraphWidget.pyi class NodegraphWidget (line 31) | class NodegraphWidget(BaseNodeGraphLayerStack): method __init__ (line 41) | def __init__(self, parent: PyQt5.QtWidgets.QWidget) -> None: ... method _NodegraphWidget__addInputPortWithParams (line 42) | def _NodegraphWidget__addInputPortWithParams(self, node: NodegraphAPI.... method _NodegraphWidget__addOutputPortWithParams (line 43) | def _NodegraphWidget__addOutputPortWithParams(self, node: NodegraphAPI... method _NodegraphWidget__autoConnectToTerminalNode (line 44) | def _NodegraphWidget__autoConnectToTerminalNode(self, terminalNode, ne... method _NodegraphWidget__buildLayers (line 45) | def _NodegraphWidget__buildLayers(self): ... method _NodegraphWidget__capNodeGraphViewScale (line 46) | def _NodegraphWidget__capNodeGraphViewScale(self, viewScale): ... method _NodegraphWidget__currentNodeViewChanged (line 47) | def _NodegraphWidget__currentNodeViewChanged(self, _previousViewNode, ... method _NodegraphWidget__editBackdropInNgvCallback (line 48) | def _NodegraphWidget__editBackdropInNgvCallback(self, node: NodegraphA... method _NodegraphWidget__explodeSelectionReal (line 49) | def _NodegraphWidget__explodeSelectionReal(self): ... method _NodegraphWidget__gatherCurrentlySelectedBackdropsByZDepth (line 50) | def _NodegraphWidget__gatherCurrentlySelectedBackdropsByZDepth(self): ... method _NodegraphWidget__getHitKey (line 52) | def _NodegraphWidget__getHitKey(a: tuple[str, dict]) -> int: ... method _NodegraphWidget__getTerminalFloatingNode (line 53) | def _NodegraphWidget__getTerminalFloatingNode(self): ... method _NodegraphWidget__idle_callback (line 54) | def _NodegraphWidget__idle_callback(self, *args, **kwargs): ... method _NodegraphWidget__isNodeAutoConnectable (line 55) | def _NodegraphWidget__isNodeAutoConnectable(self, terminalNode, newNod... method _NodegraphWidget__loadbegin_callback (line 56) | def _NodegraphWidget__loadbegin_callback(self, *args, **kwargs): ... method _NodegraphWidget__loadend_callback (line 57) | def _NodegraphWidget__loadend_callback(self, *args, **kwargs): ... method _NodegraphWidget__mergeSelectedNodesReal (line 58) | def _NodegraphWidget__mergeSelectedNodesReal(self): ... method _NodegraphWidget__nodeDeleteHandler (line 59) | def _NodegraphWidget__nodeDeleteHandler(self, eventType, eventID, node... method _NodegraphWidget__nodeDeselectAllInNgvCallback (line 60) | def _NodegraphWidget__nodeDeselectAllInNgvCallback(self): ... method _NodegraphWidget__nodeGroupEnteredInNgvCallback (line 61) | def _NodegraphWidget__nodeGroupEnteredInNgvCallback(self, node: Nodegr... method _NodegraphWidget__nodeRenamedInNgvCallback (line 62) | def _NodegraphWidget__nodeRenamedInNgvCallback(self, node: NodegraphAP... method _NodegraphWidget__nodeSelectedInNgvCallback (line 63) | def _NodegraphWidget__nodeSelectedInNgvCallback(self, nodes: Nodegraph... method _NodegraphWidget__nodeSetBypassedInNgvCallback (line 64) | def _NodegraphWidget__nodeSetBypassedInNgvCallback(self, node: Nodegra... method _NodegraphWidget__nodeSetEditedInNgvCallback (line 65) | def _NodegraphWidget__nodeSetEditedInNgvCallback(self, node: Nodegraph... method _NodegraphWidget__nodeSetViewedInNgvCallback (line 66) | def _NodegraphWidget__nodeSetViewedInNgvCallback(self, node: Nodegraph... method _NodegraphWidget__nodeStateRefreshRequestedCallback (line 67) | def _NodegraphWidget__nodeStateRefreshRequestedCallback(self, node: No... method _NodegraphWidget__nodeToolTipRequestedInNgvCallback (line 68) | def _NodegraphWidget__nodeToolTipRequestedInNgvCallback(self, node: No... method _NodegraphWidget__nodeUpdatedInNgvCallback (line 69) | def _NodegraphWidget__nodeUpdatedInNgvCallback(self, node: NodegraphAP... method _NodegraphWidget__nodeViewStateNextCallback (line 70) | def _NodegraphWidget__nodeViewStateNextCallback(self, node: NodegraphA... method _NodegraphWidget__offsetFloatingNodePositions (line 71) | def _NodegraphWidget__offsetFloatingNodePositions(self, terminalNode, ... method _NodegraphWidget__popupContextMenuInNgvCallback (line 72) | def _NodegraphWidget__popupContextMenuInNgvCallback(self, node: Nodegr... method _NodegraphWidget__popupPortMenuInNgvCallback (line 73) | def _NodegraphWidget__popupPortMenuInNgvCallback(self, port: Nodegraph... method _NodegraphWidget__portConnectedInNgvCallback (line 74) | def _NodegraphWidget__portConnectedInNgvCallback(self, portA, portB): ... method _NodegraphWidget__portDisconnectedInNgvCallback (line 75) | def _NodegraphWidget__portDisconnectedInNgvCallback(self, portA, portB... method _NodegraphWidget__portRenamedInNgvCallback (line 76) | def _NodegraphWidget__portRenamedInNgvCallback(self, port: NodegraphAP... method _NodegraphWidget__prefChanged_CB (line 77) | def _NodegraphWidget__prefChanged_CB(self, eventType, eventID, *args, ... method _NodegraphWidget__reconnectAfterCollapse (line 78) | def _NodegraphWidget__reconnectAfterCollapse(self, nodes): ... method _NodegraphWidget__sidebarUpdatedInNgvCallback (line 79) | def _NodegraphWidget__sidebarUpdatedInNgvCallback(self, groupNode, sid... method _NodegraphWidget__smoothstep (line 80) | def _NodegraphWidget__smoothstep(self, a, b, x): ... method _NodegraphWidget__startDragInNgvCallback (line 81) | def _NodegraphWidget__startDragInNgvCallback(self, obj, _mouseButton):... method _NodegraphWidget__toggleNodesInputConnectionsVisibilityHandler (line 82) | def _NodegraphWidget__toggleNodesInputConnectionsVisibilityHandler(sel... method _NodegraphWidget__toggleSelectedNodesInputConnectionsVisibilityHandler (line 83) | def _NodegraphWidget__toggleSelectedNodesInputConnectionsVisibilityHan... method _NodegraphWidget__toolTipRequestedInNgvCallback (line 84) | def _NodegraphWidget__toolTipRequestedInNgvCallback(self, port: Nodegr... method _NodegraphWidget__updateDimmingMode (line 85) | def _NodegraphWidget__updateDimmingMode(self, mode): ... method alignSelection (line 86) | def alignSelection(self): ... method autoPlace (line 87) | def autoPlace(self, nodes: Sequence[NodegraphAPI.Node]) -> bool: ... method canCollapseSelectionToStack (line 88) | def canCollapseSelectionToStack(self): ... method cleanup (line 89) | def cleanup(self): ... method clearTransientLayers (line 90) | def clearTransientLayers(self): ... method collapseSelectedToStack (line 91) | def collapseSelectedToStack(self): ... method collapseSelection (line 92) | def collapseSelection(self): ... method createNodeType (line 93) | def createNodeType(self, nodeType, shouldFloat: bool = ..., maskInputP... method createStandardOrRendererSpecificNodes (line 94) | def createStandardOrRendererSpecificNodes(self, value): ... method enableFloatingLayer (line 95) | def enableFloatingLayer(self): ... method event (line 96) | def event(self, e): ... method explodeSelection (line 97) | def explodeSelection(self): ... method extractNodes (line 98) | def extractNodes(self, nodes): ... method fitBackdropNode (line 99) | def fitBackdropNode(self): ... method fitSticky (line 100) | def fitSticky(self): ... method floatNodes (line 101) | def floatNodes(self, nodes: Sequence[NodegraphAPI.Node]): ... method focusInEvent (line 102) | def focusInEvent(self, event: QFocusEvent): ... method focusOutEvent (line 103) | def focusOutEvent(self, event: QFocusEvent): ... method frameNodes (line 104) | def frameNodes(self, nodes, zoom: bool = ...): ... method getAllNodeGraphWidgets (line 106) | def getAllNodeGraphWidgets(): ... method getCurrentNodeView (line 107) | def getCurrentNodeView(self): ... method getGraphInteraction (line 108) | def getGraphInteraction(self): ... method getGroupNodeUnderMouse (line 109) | def getGroupNodeUnderMouse(self): ... method getNetworkMaterialContextNodeNames (line 110) | def getNetworkMaterialContextNodeNames(self) -> list[str]: ... method getNetworkMaterialNodeTypeNames (line 111) | def getNetworkMaterialNodeTypeNames(self) -> list[str]: ... method getNodeGraphContext (line 112) | def getNodeGraphContext(self) -> str: ... method getPointAdjustedToGroupNodeSpace (line 113) | def getPointAdjustedToGroupNodeSpace(self, groupNode, point): ... method getPopupMenuClickLocation (line 114) | def getPopupMenuClickLocation(self): ... method getPseudoTopLevelWidget (line 115) | def getPseudoTopLevelWidget(self): ... method getRecentNode (line 116) | def getRecentNode(self): ... method getRendererContext (line 117) | def getRendererContext(self, node: NodegraphAPI.Node) -> str: ... method getValidNodeTypesForCurrentContext (line 118) | def getValidNodeTypesForCurrentContext(self): ... method getValidNodeTypesForCurrentRenderer (line 119) | def getValidNodeTypesForCurrentRenderer(self): ... method getWorldBounds (line 120) | def getWorldBounds(self): ... method hasGroupNodeFocusChanged (line 121) | def hasGroupNodeFocusChanged(self): ... method hitTestBox (line 122) | def hitTestBox(self, p0, p1, viewNode: Incomplete | None = ...): ... method hitTestFirstHitForType (line 123) | def hitTestFirstHitForType(self, p, type): ... method hitTestFirstHitForTypeWithOptions (line 124) | def hitTestFirstHitForTypeWithOptions(self, p, hitType, *args): ... method hitTestForType (line 125) | def hitTestForType(self, p, type, excludeNodes: Incomplete | None = ..... method hitTestForTypeStartsWith (line 126) | def hitTestForTypeStartsWith(self, p, type): ... method hitTestForTypeWithOptions (line 127) | def hitTestForTypeWithOptions(self, p, hitType, *args): ... method hitTestNodeButtons (line 128) | def hitTestNodeButtons(self, p): ... method hitTestPoint (line 129) | def hitTestPoint(self, p): ... method idleUpdate (line 130) | def idleUpdate(self): ... method isolateNode (line 131) | def isolateNode(self, node: NodegraphAPI.Node): ... method mergeSelectedNodes (line 132) | def mergeSelectedNodes(self): ... method nodeMenu (line 133) | def nodeMenu(self): ... method paintGL (line 134) | def paintGL(self): ... method placeNode (line 135) | def placeNode(self, node: NodegraphAPI.Node, shouldFloat: bool = ..., ... method placeNodes (line 136) | def placeNodes(self, nodes: Sequence[NodegraphAPI.Node], shouldFloat: ... method removeFloatingNode (line 137) | def removeFloatingNode(self): ... method removeFloatingNodes (line 138) | def removeFloatingNodes(self): ... method resizeEvent (line 139) | def resizeEvent(self, event: PyQt5.QtGui.QResizeEvent): ... method sendSelectedBackdropNodesToBack (line 140) | def sendSelectedBackdropNodesToBack(self): ... method sendSelectedBackdropNodesToFront (line 141) | def sendSelectedBackdropNodesToFront(self): ... method setCurrentNodeView (line 142) | def setCurrentNodeView(self, node: NodegraphAPI.Node): ... method setEyePoint (line 143) | def setEyePoint(self, x): ... method setFloatingLayerBasePosition (line 144) | def setFloatingLayerBasePosition(self, pos): ... method setGraphInteraction (line 145) | def setGraphInteraction(self, flag): ... method setGroupNodeAsRoot (line 146) | def setGroupNodeAsRoot(self, groupNode): ... method setNGVShapeAttrs (line 147) | def setNGVShapeAttrs(self, node: NodegraphAPI.Node, attrDict): ... method setNodeGraphContext (line 148) | def setNodeGraphContext(self, context): ... method setPopupMenuClickLocation (line 149) | def setPopupMenuClickLocation(self, x, y): ... method setViewScale (line 150) | def setViewScale(self, x, final: bool = ...): ... method shouldAutoScroll (line 151) | def shouldAutoScroll(self): ... method showEvent (line 152) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method showLayeredMenu (line 153) | def showLayeredMenu(self, menu): ... method toggleTeleports (line 154) | def toggleTeleports(self): ... method updateAllNodegraphWidgets (line 156) | def updateAllNodegraphWidgets(cls): ... method updateOtherNodegraphsInSameNode (line 157) | def updateOtherNodegraphsInSameNode(self): ... function _OnNodeCreatedCallback (line 159) | def _OnNodeCreatedCallback(node: typing.Optional[NodegraphAPI.Node] = ..... function _SendBackdropNodesToBack (line 160) | def _SendBackdropNodesToBack(nodes: list) -> bool: ... function _SendBackdropNodesToFront (line 161) | def _SendBackdropNodesToFront(nodes: list, undo: bool = ...) -> bool: ... function __nodegraphPrefsCallback (line 162) | def __nodegraphPrefsCallback(*args, **kwargs): ... function __nodegraphRedrawCallback (line 163) | def __nodegraphRedrawCallback(args): ... function _getZDepthAttr (line 164) | def _getZDepthAttr(node: NodegraphAPI.Node): ... FILE: katana/stubs/UI4/Tabs/NodeTypes.pyi class CustomNodeTypeTab (line 19) | class CustomNodeTypeTab(NodeTypeTab): class NodeTypePanel (line 22) | class NodeTypePanel(NodeTypeTab): ... class NodeTypeTab (line 24) | class NodeTypeTab(BaseTab): method __init__ (line 25) | def __init__(self, parent) -> None: ... method _NodeTypeTab__on_combobox_activated (line 26) | def _NodeTypeTab__on_combobox_activated(self, text): ... method doNodesChanged (line 27) | def doNodesChanged(self, args: Incomplete | None = ...): ... method hideEvent (line 28) | def hideEvent(self, event): ... method registerHandlers (line 29) | def registerHandlers(self, state): ... method showEvent (line 30) | def showEvent(self, event): ... class ScrollingParameters (line 32) | class ScrollingParameters(PyQt5.QtWidgets.QScrollArea): method __init__ (line 33) | def __init__(self, parent, param) -> None: ... FILE: katana/stubs/UI4/Tabs/ParameterFindAndReplace.pyi class ParameterFindAndReplacePanel (line 14) | class ParameterFindAndReplacePanel(BaseTab): method __init__ (line 25) | def __init__(self, parent) -> None: ... method _ParameterFindAndReplacePanel__clearButtonClicked (line 26) | def _ParameterFindAndReplacePanel__clearButtonClicked(self): ... method _ParameterFindAndReplacePanel__contextMenuRequest (line 27) | def _ParameterFindAndReplacePanel__contextMenuRequest(self, pos): ... method _ParameterFindAndReplacePanel__copyResultList (line 28) | def _ParameterFindAndReplacePanel__copyResultList(self): ... method _ParameterFindAndReplacePanel__discardNodesOfSelectedType (line 29) | def _ParameterFindAndReplacePanel__discardNodesOfSelectedType(self): ... method _ParameterFindAndReplacePanel__discardNodesWithSelectedParent (line 30) | def _ParameterFindAndReplacePanel__discardNodesWithSelectedParent(self... method _ParameterFindAndReplacePanel__discardParametersOfSelectedName (line 31) | def _ParameterFindAndReplacePanel__discardParametersOfSelectedName(sel... method _ParameterFindAndReplacePanel__discardSelectedNode (line 32) | def _ParameterFindAndReplacePanel__discardSelectedNode(self): ... method _ParameterFindAndReplacePanel__editParamsForSelected (line 33) | def _ParameterFindAndReplacePanel__editParamsForSelected(self): ... method _ParameterFindAndReplacePanel__findButtonClicked (line 34) | def _ParameterFindAndReplacePanel__findButtonClicked(self): ... method _ParameterFindAndReplacePanel__findNonSelectedNodeChildren (line 35) | def _ParameterFindAndReplacePanel__findNonSelectedNodeChildren(self, n... method _ParameterFindAndReplacePanel__interrupt (line 36) | def _ParameterFindAndReplacePanel__interrupt(self): ... method _ParameterFindAndReplacePanel__keepOnlyNodesOfSelectedType (line 37) | def _ParameterFindAndReplacePanel__keepOnlyNodesOfSelectedType(self): ... method _ParameterFindAndReplacePanel__keepOnlyNodesWithSelectedParent (line 38) | def _ParameterFindAndReplacePanel__keepOnlyNodesWithSelectedParent(sel... method _ParameterFindAndReplacePanel__keepOnlyParametersOfSelectedName (line 39) | def _ParameterFindAndReplacePanel__keepOnlyParametersOfSelectedName(se... method _ParameterFindAndReplacePanel__keepOnlySelectedNode (line 40) | def _ParameterFindAndReplacePanel__keepOnlySelectedNode(self): ... method _ParameterFindAndReplacePanel__matches (line 41) | def _ParameterFindAndReplacePanel__matches(self, value, searchText, ma... method _ParameterFindAndReplacePanel__replace (line 42) | def _ParameterFindAndReplacePanel__replace(self, value, searchText, re... method _ParameterFindAndReplacePanel__replaceButtonClicked (line 43) | def _ParameterFindAndReplacePanel__replaceButtonClicked(self): ... method _ParameterFindAndReplacePanel__replaceTextChanged (line 44) | def _ParameterFindAndReplacePanel__replaceTextChanged(self, text): ... method _ParameterFindAndReplacePanel__searchTextChanged (line 45) | def _ParameterFindAndReplacePanel__searchTextChanged(self, text): ... method _ParameterFindAndReplacePanel__updateResultLabel (line 46) | def _ParameterFindAndReplacePanel__updateResultLabel(self): ... method _ParameterFindAndReplacePanel__walkParameter (line 47) | def _ParameterFindAndReplacePanel__walkParameter(self, param, searchTe... FILE: katana/stubs/UI4/Tabs/ParametersTab/ParameterPanel.pyi class ParameterPanel (line 15) | class ParameterPanel(BaseTab): method __init__ (line 16) | def __init__(self, parent) -> None: ... method _ParameterPanel__findParameterActionCallback (line 17) | def _ParameterPanel__findParameterActionCallback(self): ... method _ParameterPanel__findPolicyForParameter (line 18) | def _ParameterPanel__findPolicyForParameter(self, policy, parameter): ... method _ParameterPanel__navigationCallback (line 19) | def _ParameterPanel__navigationCallback(self, nodeNames, isBack): ... method _ParameterPanel__node_setEdited_callback (line 20) | def _ParameterPanel__node_setEdited_callback(self, args: Incomplete | ... method dragEnterEvent (line 21) | def dragEnterEvent(self, event): ... method dropEvent (line 22) | def dropEvent(self, event): ... method getPointedWidget (line 23) | def getPointedWidget(self) -> PyQt5.QtWidgets.QWidget | None: ... method parameterEditor_exposeParameter_callback (line 24) | def parameterEditor_exposeParameter_callback(self, args): ... method registerKeyboardShortcuts (line 26) | def registerKeyboardShortcuts(): ... class TearoffParameterPanel (line 28) | class TearoffParameterPanel(PanelScrollArea): method __init__ (line 30) | def __init__(self, parent) -> None: ... method _TearoffParameterPanel__node_delete_callback (line 31) | def _TearoffParameterPanel__node_delete_callback(self, eventName, even... method getNode (line 32) | def getNode(self) -> NodegraphAPI.Node | None: ... method setFromWidget (line 33) | def setFromWidget(self, widget): ... method setNode (line 34) | def setNode(self, node: NodegraphAPI.Node): ... class TearoffParameterTab (line 36) | class TearoffParameterTab(BaseTab): method __init__ (line 37) | def __init__(self, parent) -> None: ... method getTabTitle (line 38) | def getTabTitle(self) -> str | None: ... method setFromWidget (line 39) | def setFromWidget(self, widget): ... method setNode (line 40) | def setNode(self, node: NodegraphAPI.Node): ... FILE: katana/stubs/UI4/Tabs/ParametersTab/ProjectSettings.pyi class ProjectSettingsPanel (line 11) | class ProjectSettingsPanel(PanelScrollArea): method __init__ (line 12) | def __init__(self, *args) -> None: ... method _ProjectSettingsPanel__collapsedEventHandler (line 13) | def _ProjectSettingsPanel__collapsedEventHandler(self, args): ... method _ProjectSettingsPanel__rebuild (line 14) | def _ProjectSettingsPanel__rebuild(self): ... method highlightParameter (line 15) | def highlightParameter(self, path): ... method showFindPopup (line 16) | def showFindPopup(self): ... class ProjectSettingsTab (line 18) | class ProjectSettingsTab(BaseTab): method __init__ (line 19) | def __init__(self, parent) -> None: ... method _ProjectSettingsTab__findSettingActionCallback (line 20) | def _ProjectSettingsTab__findSettingActionCallback(self): ... method highlightParameter (line 21) | def highlightParameter(self, path): ... method registerKeyboardShortcuts (line 23) | def registerKeyboardShortcuts(): ... FILE: katana/stubs/UI4/Tabs/RenderLog.pyi class RenderLogTab (line 13) | class RenderLogTab(BaseTab): method __init__ (line 14) | def __init__(self, parent) -> None: ... method _RenderLogTab__actionMenuAboutToShow (line 15) | def _RenderLogTab__actionMenuAboutToShow(self): ... method _RenderLogTab__catalog_itemPropertyUpdate_CB (line 16) | def _RenderLogTab__catalog_itemPropertyUpdate_CB(self, eventType, even... method _RenderLogTab__catalog_rebuild_CB (line 17) | def _RenderLogTab__catalog_rebuild_CB(self, args: list): ... method _RenderLogTab__clearContents_CB (line 18) | def _RenderLogTab__clearContents_CB(self): ... method _RenderLogTab__numLinesChanged_CB (line 19) | def _RenderLogTab__numLinesChanged_CB(self): ... method _RenderLogTab__on_renderLogWidget_autoScrollingChanged (line 20) | def _RenderLogTab__on_renderLogWidget_autoScrollingChanged(self, autoS... method _RenderLogTab__on_scrollLockToolButton_clicked (line 21) | def _RenderLogTab__on_scrollLockToolButton_clicked(self): ... method _RenderLogTab__openInEditor_CB (line 22) | def _RenderLogTab__openInEditor_CB(self): ... method _RenderLogTab__updateScrollLockToolButton (line 23) | def _RenderLogTab__updateScrollLockToolButton(self, autoScrolling: boo... method copySelectedTextActionCallback (line 24) | def copySelectedTextActionCallback(self): ... method getCatalogItem (line 25) | def getCatalogItem(self): ... method registerKeyboardShortcuts (line 27) | def registerKeyboardShortcuts(): ... method setCatalogItem (line 28) | def setCatalogItem(self, item): ... FILE: katana/stubs/UI4/Tabs/SceneGraphTab/LightListPopup.pyi class LightListPopup (line 15) | class LightListPopup(PyQt5.QtWidgets.QFrame): method __init__ (line 24) | def __init__(self, sceneGraphView, parent: Incomplete | None = ..., ti... method _LightListPopup__on_aboutToShow (line 25) | def _LightListPopup__on_aboutToShow(self): ... method _LightListPopup__on_allLightsOff (line 26) | def _LightListPopup__on_allLightsOff(self): ... method _LightListPopup__on_allLightsOn (line 27) | def _LightListPopup__on_allLightsOn(self): ... method _LightListPopup__on_allLightsReset (line 28) | def _LightListPopup__on_allLightsReset(self): ... method _LightListPopup__on_hide (line 29) | def _LightListPopup__on_hide(self): ... method _LightListPopup__on_show (line 30) | def _LightListPopup__on_show(self): ... method _buildHeaderWidget (line 31) | def _buildHeaderWidget(self): ... method _buildLocationsWidget (line 32) | def _buildLocationsWidget(self): ... method _getHeaderWidget (line 33) | def _getHeaderWidget(self): ... method _getLocationsWidget (line 34) | def _getLocationsWidget(self): ... method getSceneGraphView (line 35) | def getSceneGraphView(self) -> SceneGraphView: ... method hideEvent (line 36) | def hideEvent(self, event): ... method popup (line 37) | def popup(self, globalPos): ... method showEvent (line 38) | def showEvent(self, event): ... class _LightListCheckBoxesWidget (line 40) | class _LightListCheckBoxesWidget(PyQt5.QtWidgets.QScrollArea): method __init__ (line 45) | def __init__(self, sceneGraphView, parent: Incomplete | None = ...) ->... method _LightListCheckBoxesWidget__deleteCheckBoxes (line 46) | def _LightListCheckBoxesWidget__deleteCheckBoxes(self): ... method _LightListCheckBoxesWidget__emitChangedSignal (line 47) | def _LightListCheckBoxesWidget__emitChangedSignal(self): ... method _LightListCheckBoxesWidget__getLightLocationsFromAttributes (line 48) | def _LightListCheckBoxesWidget__getLightLocationsFromAttributes(self, ... method _LightListCheckBoxesWidget__lightLocationsAttributeCallback (line 49) | def _LightListCheckBoxesWidget__lightLocationsAttributeCallback(self, ... method _LightListCheckBoxesWidget__on_checkBoxToggled (line 50) | def _LightListCheckBoxesWidget__on_checkBoxToggled(self, lightLocation... method _LightListCheckBoxesWidget__populateWidget (line 51) | def _LightListCheckBoxesWidget__populateWidget(self): ... method _LightListCheckBoxesWidget__populateWidgetFromAttributes (line 52) | def _LightListCheckBoxesWidget__populateWidgetFromAttributes(self, att... method _LightListCheckBoxesWidget__updateWidgetLocations (line 53) | def _LightListCheckBoxesWidget__updateWidgetLocations(self, locationNa... method getSceneGraphView (line 54) | def getSceneGraphView(self) -> SceneGraphView: ... method on_aboutToShow (line 55) | def on_aboutToShow(self): ... method on_allLightsOff (line 56) | def on_allLightsOff(self): ... method on_allLightsOn (line 57) | def on_allLightsOn(self): ... method on_allLightsReset (line 58) | def on_allLightsReset(self): ... method on_hide (line 59) | def on_hide(self): ... method sizeHint (line 60) | def sizeHint(self): ... method suppressSignals (line 61) | def suppressSignals(self, signalsSuppressed): ... class _SignalSuppressor (line 63) | class _SignalSuppressor: method __init__ (line 64) | def __init__(self, widget) -> None: ... method __enter__ (line 65) | def __enter__(self): ... method __exit__ (line 66) | def __exit__(self, *args): ... FILE: katana/stubs/UI4/Tabs/SceneGraphTab/SceneGraphBookmarkButton.pyi class BookmarkAction (line 18) | class BookmarkAction(PyQt5.QtWidgets.QAction): method __init__ (line 21) | def __init__(self, bookmarkDict: dict, *args) -> None: ... method _BookmarkAction__activated_CB (line 22) | def _BookmarkAction__activated_CB(self): ... class SceneGraphBookmarkButton (line 24) | class SceneGraphBookmarkButton(ToolbarButton): method __init__ (line 27) | def __init__(self, parent, *args) -> None: ... method _SceneGraphBookmarkButton__clearBookmarks (line 28) | def _SceneGraphBookmarkButton__clearBookmarks(self): ... method _SceneGraphBookmarkButton__clearWorkingSets (line 29) | def _SceneGraphBookmarkButton__clearWorkingSets(self): ... method _SceneGraphBookmarkButton__createBookmark (line 30) | def _SceneGraphBookmarkButton__createBookmark(self): ... method _SceneGraphBookmarkButton__exportBookmarks (line 31) | def _SceneGraphBookmarkButton__exportBookmarks(self): ... method _SceneGraphBookmarkButton__importBookmarks (line 32) | def _SceneGraphBookmarkButton__importBookmarks(self): ... method _SceneGraphBookmarkButton__organizeBookmarks (line 33) | def _SceneGraphBookmarkButton__organizeBookmarks(self): ... method _SceneGraphBookmarkButton__saveAndPublishBookmarks (line 34) | def _SceneGraphBookmarkButton__saveAndPublishBookmarks(self, xml: str,... method _SceneGraphBookmarkButton__updateMenu (line 35) | def _SceneGraphBookmarkButton__updateMenu(self): ... method _SceneGraphBookmarkButton__writeBookmarksFile (line 36) | def _SceneGraphBookmarkButton__writeBookmarksFile(self, xml, filename,... class SceneGraphBookmarkCreationDialog (line 38) | class SceneGraphBookmarkCreationDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 45) | def __init__(self, globalPos: PyQt5.QtCore.QSize) -> None: ... method _SceneGraphBookmarkCreationDialog__calculateGeometry (line 46) | def _SceneGraphBookmarkCreationDialog__calculateGeometry(self) -> PyQt... method _SceneGraphBookmarkCreationDialog__createLabelledComboBox (line 47) | def _SceneGraphBookmarkCreationDialog__createLabelledComboBox(self, la... method _SceneGraphBookmarkCreationDialog__createWorkingSetsCheckBoxes (line 48) | def _SceneGraphBookmarkCreationDialog__createWorkingSetsCheckBoxes(sel... method _SceneGraphBookmarkCreationDialog__createWorkingSetsFrame (line 49) | def _SceneGraphBookmarkCreationDialog__createWorkingSetsFrame(self) ->... method _SceneGraphBookmarkCreationDialog__deselectAllWorkingSets (line 50) | def _SceneGraphBookmarkCreationDialog__deselectAllWorkingSets(self): ... method _SceneGraphBookmarkCreationDialog__getCurrentBookmarkFullName (line 51) | def _SceneGraphBookmarkCreationDialog__getCurrentBookmarkFullName(self... method _SceneGraphBookmarkCreationDialog__getCurrentBookmarkName (line 52) | def _SceneGraphBookmarkCreationDialog__getCurrentBookmarkName(self) ->... method _SceneGraphBookmarkCreationDialog__getCurrentFolderName (line 53) | def _SceneGraphBookmarkCreationDialog__getCurrentFolderName(self) -> s... method _SceneGraphBookmarkCreationDialog__getScreenGeometry (line 54) | def _SceneGraphBookmarkCreationDialog__getScreenGeometry(self, globalP... method _SceneGraphBookmarkCreationDialog__getSelectedWorkingSets (line 55) | def _SceneGraphBookmarkCreationDialog__getSelectedWorkingSets(self) ->... method _SceneGraphBookmarkCreationDialog__on_bookmarkNameComboBox_changed (line 56) | def _SceneGraphBookmarkCreationDialog__on_bookmarkNameComboBox_changed... method _SceneGraphBookmarkCreationDialog__on_folderComboBox_changed (line 57) | def _SceneGraphBookmarkCreationDialog__on_folderComboBox_changed(self)... method _SceneGraphBookmarkCreationDialog__on_workingSetCheckBoxes_changed (line 58) | def _SceneGraphBookmarkCreationDialog__on_workingSetCheckBoxes_changed... method _SceneGraphBookmarkCreationDialog__positionRectInRect (line 59) | def _SceneGraphBookmarkCreationDialog__positionRectInRect(self, rect: ... method _SceneGraphBookmarkCreationDialog__repopulateBookmarkNameWidget (line 60) | def _SceneGraphBookmarkCreationDialog__repopulateBookmarkNameWidget(se... method _SceneGraphBookmarkCreationDialog__selectAllWorkingSets (line 61) | def _SceneGraphBookmarkCreationDialog__selectAllWorkingSets(self): ... method _SceneGraphBookmarkCreationDialog__updateSaveButton (line 62) | def _SceneGraphBookmarkCreationDialog__updateSaveButton(self): ... method _SceneGraphBookmarkCreationDialog__updateSelectedWorkingSets (line 63) | def _SceneGraphBookmarkCreationDialog__updateSelectedWorkingSets(self)... method getResult (line 64) | def getResult(self) -> dict: ... class SceneGraphBookmarkItemDelegate (line 66) | class SceneGraphBookmarkItemDelegate(PyQt5.QtWidgets.QItemDelegate): method editorEvent (line 67) | def editorEvent(self, event, model, option, index): ... class SceneGraphBookmarkOrganizationDialog (line 69) | class SceneGraphBookmarkOrganizationDialog(PyQt5.QtWidgets.QDialog): class BookmarkItem (line 70) | class BookmarkItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 73) | def __init__(self, shortName, fullName, parent) -> None: ... method _BookmarkItem__delete_CB (line 74) | def _BookmarkItem__delete_CB(self): ... method buildContextMenu (line 75) | def buildContextMenu(self, menu): ... class FolderItem (line 77) | class FolderItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 80) | def __init__(self, folderName, parent) -> None: ... method __init__ (line 81) | def __init__(self, folders, bookmarks) -> None: ... class VerticalScrollArea (line 83) | class VerticalScrollArea(PyQt5.QtWidgets.QScrollArea): method __init__ (line 84) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, childWidget: PyQt5... method resizeEvent (line 85) | def resizeEvent(self, event): ... method sizeHint (line 86) | def sizeHint(self): ... FILE: katana/stubs/UI4/Tabs/SceneGraphTab/SceneGraphTab.pyi class SceneGraphTab (line 42) | class SceneGraphTab(BaseTab): method __init__ (line 52) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, flags: int ... method _SceneGraphTab__attributeHistoryCallback (line 53) | def _SceneGraphTab__attributeHistoryCallback(self, nodeHistory): ... method _SceneGraphTab__buildLayout (line 54) | def _SceneGraphTab__buildLayout(self): ... method _SceneGraphTab__clearPinsBelow (line 55) | def _SceneGraphTab__clearPinsBelow(self): ... method _SceneGraphTab__clearPinsBelowActionCallback (line 56) | def _SceneGraphTab__clearPinsBelowActionCallback(self): ... method _SceneGraphTab__collectAndSelectActionCallback (line 57) | def _SceneGraphTab__collectAndSelectActionCallback(self): ... method _SceneGraphTab__configureSceneGraphView (line 58) | def _SceneGraphTab__configureSceneGraphView(self): ... method _SceneGraphTab__contextMenuEventCallback (line 59) | def _SceneGraphTab__contextMenuEventCallback(self, contextMenuEvent, m... method _SceneGraphTab__copyPaths (line 60) | def _SceneGraphTab__copyPaths(self): ... method _SceneGraphTab__copySelectionActionCallback (line 61) | def _SceneGraphTab__copySelectionActionCallback(self): ... method _SceneGraphTab__errorStateChangedCallback (line 62) | def _SceneGraphTab__errorStateChangedCallback(self, errorMessageItemRe... method _SceneGraphTab__expandToLocation (line 63) | def _SceneGraphTab__expandToLocation(self, locationPath: str): ... method _SceneGraphTab__findSceneGraphLocationActionCallback (line 64) | def _SceneGraphTab__findSceneGraphLocationActionCallback(self): ... method _SceneGraphTab__focusActionCallback (line 65) | def _SceneGraphTab__focusActionCallback(self): ... method _SceneGraphTab__freeze (line 66) | def _SceneGraphTab__freeze(self): ... method _SceneGraphTab__getAssignedMaterials (line 67) | def _SceneGraphTab__getAssignedMaterials(self, locations) -> set[str]:... method _SceneGraphTab__getAttribute (line 68) | def _SceneGraphTab__getAttribute(self, locationPath: str, attributeNam... method _SceneGraphTab__getAttributeValuesAsAbsolutePaths (line 69) | def _SceneGraphTab__getAttributeValuesAsAbsolutePaths(self, locations,... method _SceneGraphTab__getColumnIcon (line 70) | def _SceneGraphTab__getColumnIcon(self, baseName: str) -> PyQt5.QtGui.... method _SceneGraphTab__getDescendantsRecursive (line 71) | def _SceneGraphTab__getDescendantsRecursive(self, location, leavesOnly... method _SceneGraphTab__getInstanceSources (line 72) | def _SceneGraphTab__getInstanceSources(self, locations) -> set[str]: ... method _SceneGraphTab__getPinnedLocations (line 73) | def _SceneGraphTab__getPinnedLocations(self, selectedOnly: bool = ...)... method _SceneGraphTab__lightsColumnTitleClickedCallback (line 74) | def _SceneGraphTab__lightsColumnTitleClickedCallback(self, columnTitle... method _SceneGraphTab__locationCollapsedCallback (line 75) | def _SceneGraphTab__locationCollapsedCallback(self, locationPath, topL... method _SceneGraphTab__locationExpandedCallback (line 76) | def _SceneGraphTab__locationExpandedCallback(self, locationPath, topLe... method _SceneGraphTab__navigationToolbarCallback (line 77) | def _SceneGraphTab__navigationToolbarCallback(self, nodeName: str, isB... method _SceneGraphTab__onPrefChanged (line 78) | def _SceneGraphTab__onPrefChanged(self, eventType: str | None, eventID... method _SceneGraphTab__on_event_idle (line 79) | def _SceneGraphTab__on_event_idle(self): ... method _SceneGraphTab__on_node_setName (line 80) | def _SceneGraphTab__on_node_setName(self, eventType: str | None, event... method _SceneGraphTab__on_node_setViewed (line 81) | def _SceneGraphTab__on_node_setViewed(self, args): ... method _SceneGraphTab__on_nodegraph_setCurrentTime (line 82) | def _SceneGraphTab__on_nodegraph_setCurrentTime(self, eventType: str |... method _SceneGraphTab__on_pref_changed (line 83) | def _SceneGraphTab__on_pref_changed(self, args): ... method _SceneGraphTab__on_scenegraphManager_implicitResolversActive (line 84) | def _SceneGraphTab__on_scenegraphManager_implicitResolversActive(self,... method _SceneGraphTab__on_scenegraphManager_locationClosed (line 85) | def _SceneGraphTab__on_scenegraphManager_locationClosed(self, eventTyp... method _SceneGraphTab__on_scenegraphManager_locationOpened (line 86) | def _SceneGraphTab__on_scenegraphManager_locationOpened(self, eventTyp... method _SceneGraphTab__on_scenegraphManager_locationOpenedRecursively (line 87) | def _SceneGraphTab__on_scenegraphManager_locationOpenedRecursively(sel... method _SceneGraphTab__on_scenegraphManager_pinChanged (line 88) | def _SceneGraphTab__on_scenegraphManager_pinChanged(self, eventType, e... method _SceneGraphTab__on_scenegraphManager_selectionChanged (line 89) | def _SceneGraphTab__on_scenegraphManager_selectionChanged(self, eventT... method _SceneGraphTab__on_scenegraphMask_visibilityFollowsWorkingSetChanged (line 90) | def _SceneGraphTab__on_scenegraphMask_visibilityFollowsWorkingSetChang... method _SceneGraphTab__on_scenegraph_interruptProcessing (line 91) | def _SceneGraphTab__on_scenegraph_interruptProcessing(self, eventType,... method _SceneGraphTab__on_viewer_visibilityFollowsWorkingSetChanged (line 92) | def _SceneGraphTab__on_viewer_visibilityFollowsWorkingSetChanged(self,... method _SceneGraphTab__pinVisibleLeavesActionCallback (line 93) | def _SceneGraphTab__pinVisibleLeavesActionCallback(self): ... method _SceneGraphTab__printRenderOutput (line 94) | def _SceneGraphTab__printRenderOutput(self, methodName: str, rendererN... method _SceneGraphTab__refreshCustomColumnsFromPrefs (line 95) | def _SceneGraphTab__refreshCustomColumnsFromPrefs(self): ... method _SceneGraphTab__refreshOpArgs (line 96) | def _SceneGraphTab__refreshOpArgs(self): ... method _SceneGraphTab__removeLocalPinsActionCallback (line 97) | def _SceneGraphTab__removeLocalPinsActionCallback(self): ... method _SceneGraphTab__renderColumnTitleClickedCallback (line 98) | def _SceneGraphTab__renderColumnTitleClickedCallback(self, columnTitle... method _SceneGraphTab__renderWorkingSetStatusChanged (line 99) | def _SceneGraphTab__renderWorkingSetStatusChanged(self, isActive): ... method _SceneGraphTab__sceneGraphAttributesCallback (line 100) | def _SceneGraphTab__sceneGraphAttributesCallback(self, locationPath: s... method _SceneGraphTab__selectAssignedMaterials (line 101) | def _SceneGraphTab__selectAssignedMaterials(self, replaceSelection: bo... method _SceneGraphTab__selectAssignedMaterialsActionCallback (line 102) | def _SceneGraphTab__selectAssignedMaterialsActionCallback(self): ... method _SceneGraphTab__selectChildren (line 103) | def _SceneGraphTab__selectChildren(self, replaceSelection: bool = ...)... method _SceneGraphTab__selectChildrenActionCallback (line 104) | def _SceneGraphTab__selectChildrenActionCallback(self): ... method _SceneGraphTab__selectInstanceSources (line 105) | def _SceneGraphTab__selectInstanceSources(self, replaceSelection: bool... method _SceneGraphTab__selectInstanceSourcesActionCallback (line 106) | def _SceneGraphTab__selectInstanceSourcesActionCallback(self): ... method _SceneGraphTab__selectParents (line 107) | def _SceneGraphTab__selectParents(self, replaceSelection: bool = ...):... method _SceneGraphTab__selectParentsActionCallback (line 108) | def _SceneGraphTab__selectParentsActionCallback(self): ... method _SceneGraphTab__selectionChangedCallback (line 109) | def _SceneGraphTab__selectionChangedCallback(self): ... method _SceneGraphTab__selectionHasInstanceSource (line 110) | def _SceneGraphTab__selectionHasInstanceSource(self) -> bool: ... method _SceneGraphTab__selectionHasMaterialAssigned (line 111) | def _SceneGraphTab__selectionHasMaterialAssigned(self) -> bool: ... method _SceneGraphTab__setDescendantsPinned (line 112) | def _SceneGraphTab__setDescendantsPinned(self, pinned: bool = ..., lea... method _SceneGraphTab__setLocalPinsActionCallback (line 113) | def _SceneGraphTab__setLocalPinsActionCallback(self): ... method _SceneGraphTab__setSelectionPinned (line 114) | def _SceneGraphTab__setSelectionPinned(self, pinned: bool = ...): ... method _SceneGraphTab__setVisibilityFollowsWorkingSet (line 115) | def _SceneGraphTab__setVisibilityFollowsWorkingSet(self, visibilityFol... method _SceneGraphTab__thaw (line 116) | def _SceneGraphTab__thaw(self): ... method _SceneGraphTab__updateLayout (line 117) | def _SceneGraphTab__updateLayout(self, oldSize: PyQt5.QtGui.QSize, siz... method _SceneGraphTab__updateNodeErrors (line 118) | def _SceneGraphTab__updateNodeErrors(self): ... method _SceneGraphTab__updateViewNode (line 119) | def _SceneGraphTab__updateViewNode(self, updateIf2D: bool = ..., updat... method _SceneGraphTab__validateDrag (line 120) | def _SceneGraphTab__validateDrag(self, event): ... method _SceneGraphTab__viewerVisibilityColumnTitleClickedCallback (line 121) | def _SceneGraphTab__viewerVisibilityColumnTitleClickedCallback(self, c... method _SceneGraphTab__visibilityWorkingSetStatusChanged (line 122) | def _SceneGraphTab__visibilityWorkingSetStatusChanged(self, isActive):... method applySettings (line 123) | def applySettings(self, settings: dict): ... method dragEnterEvent (line 124) | def dragEnterEvent(self, event): ... method dragMoveEvent (line 125) | def dragMoveEvent(self, event): ... method dropEvent (line 126) | def dropEvent(self, event): ... method getSceneGraphView (line 127) | def getSceneGraphView(self) -> SceneGraphView: ... method getSettings (line 128) | def getSettings(self) -> dict: ... method hideEvent (line 129) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method on_lightListPopup_changed (line 130) | def on_lightListPopup_changed(self, selectedLights): ... method on_stopButton_pressed (line 131) | def on_stopButton_pressed(self): ... method on_viewNodeButton_clicked (line 132) | def on_viewNodeButton_clicked(self): ... method registerKeyboardShortcuts (line 134) | def registerKeyboardShortcuts(): ... method resizeEvent (line 135) | def resizeEvent(self, event: PyQt5.QtGui.QResizeEvent): ... method scrollToLocations (line 136) | def scrollToLocations(self, locationPaths: list[str]): ... method showEvent (line 137) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... class SceneGraphTabShelfButton (line 139) | class SceneGraphTabShelfButton(ShelfButton): method __init__ (line 141) | def __init__(self, parent) -> None: ... method ShelfQuery (line 143) | def ShelfQuery(forceReload: bool = ...): ... FILE: katana/stubs/UI4/Tabs/SceneGraphTab/SceneGraphTabColumn.pyi class SceneGraphTabColumn (line 10) | class SceneGraphTabColumn(UI4.Widgets.SceneGraphView.SceneGraphViewColum... method __init__ (line 12) | def __init__(self, columnName: str = ..., columnChangedCallback: typin... method getAttributeScope (line 13) | def getAttributeScope(self) -> str | None: ... method getDefaultDisplay (line 14) | def getDefaultDisplay(self) -> str | None: ... method getPreferenceAttributeName (line 15) | def getPreferenceAttributeName(self) -> str | None: ... method setAttributeScope (line 16) | def setAttributeScope(self, attributeScope: str): ... method setDefaultDisplay (line 17) | def setDefaultDisplay(self, defaultDisplay: str): ... method setFromPrefs (line 18) | def setFromPrefs(self, visible: bool = ..., attributeName: Incomplete ... method setPreferenceAttributeName (line 19) | def setPreferenceAttributeName(self, attributeName: str): ... class SceneGraphTabColumnSet (line 21) | class SceneGraphTabColumnSet(UI4.Widgets.SceneGraphView.SceneGraphViewCo... method __init__ (line 23) | def __init__(self, setName: str = ..., columnChangedCallback: typing.O... method addColumnFromPrefs (line 24) | def addColumnFromPrefs(self, visible: bool = ..., attributeName: Incom... method setColumnsFromPrefs (line 25) | def setColumnsFromPrefs(self, prefsArray: list[tuple]): ... FILE: katana/stubs/UI4/Tabs/SceneGraphTab/SceneGraphTabItems.pyi class AltErrorMessageItem (line 14) | class AltErrorMessageItem(MessageItem): class CollectionItem (line 18) | class CollectionItem(SceneGraphAttributeDataItem): method __init__ (line 21) | def __init__(self, parent, handle, topLevelHandle) -> None: ... method ConfigureDrag (line 23) | def ConfigureDrag(cls, draggedItems, dragObject): ... method CreateContextMenu (line 25) | def CreateContextMenu(cls, clickedItem, selectedItems): ... method _CollectionItem__getCollectionPath (line 26) | def _CollectionItem__getCollectionPath(self): ... method getCollectionInfo (line 27) | def getCollectionInfo(self): ... method setCollectionInfo (line 28) | def setCollectionInfo(self, collectionName, celStatement, collectionRo... method updateChildIndicator (line 29) | def updateChildIndicator(self): ... method updateDisplayData (line 30) | def updateDisplayData(self): ... class CollectionsRootItem (line 32) | class CollectionsRootItem(SceneGraphAttributeDataItem): method __init__ (line 35) | def __init__(self, parent, handle, topLevelHandle) -> None: ... method ConfigureDrag (line 37) | def ConfigureDrag(cls, draggedItems, dragObject): ... method updateChildIndicator (line 38) | def updateChildIndicator(self): ... method updateDisplayData (line 39) | def updateDisplayData(self): ... class ErrorMessageItem (line 41) | class ErrorMessageItem(MessageItem): class MessageItem (line 45) | class MessageItem(SceneGraphAttributeDataItem): method __init__ (line 50) | def __init__(self, parent, handle, topLevelHandle) -> None: ... method GetMessageItemWeakRefs (line 52) | def GetMessageItemWeakRefs(cls): ... method SetStateChangedCallback (line 54) | def SetStateChangedCallback(cls, callback): ... method _MessageItem__callStateChangedCallback (line 56) | def _MessageItem__callStateChangedCallback(cls): ... method getSortID (line 57) | def getSortID(self): ... method isDraggable (line 58) | def isDraggable(self): ... method message (line 59) | def message(self): ... method updateDisplayData (line 60) | def updateDisplayData(self): ... method __del__ (line 61) | def __del__(self) -> None: ... class SceneGraphAttributeDataItem (line 63) | class SceneGraphAttributeDataItem(UI4.Widgets.SceneGraphView.TreeWidgetI... method getSortID (line 64) | def getSortID(self): ... method shouldDrawGreyForeground (line 65) | def shouldDrawGreyForeground(self): ... class WarningMessageItem (line 67) | class WarningMessageItem(MessageItem): FILE: katana/stubs/UI4/Tabs/SceneGraphTab/SceneGraphTabNameItemDelegate.pyi class SceneGraphTabColorColumnDelegate (line 19) | class SceneGraphTabColorColumnDelegate(BaseItemDelegate): method __init__ (line 20) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method paint (line 21) | def paint(self, painter: PyQt5.QtGui.QPainter, option: PyQt5.QtWidgets... class SceneGraphTabCustomColumnDelegate (line 23) | class SceneGraphTabCustomColumnDelegate(BaseItemDelegate): method __init__ (line 28) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _SceneGraphTabCustomColumnDelegate__getDisplayValue (line 29) | def _SceneGraphTabCustomColumnDelegate__getDisplayValue(self, modelVal... method _SceneGraphTabCustomColumnDelegate__getModelValues (line 30) | def _SceneGraphTabCustomColumnDelegate__getModelValues(self, index: Py... method _drawColorSwatch (line 31) | def _drawColorSwatch(self, painter: PyQt5.QtGui.QPainter, values: list... method _drawLabel (line 32) | def _drawLabel(self, painter, values, parentRect): ... method _variantsToFloats (line 33) | def _variantsToFloats(self, values): ... method isColorSwatchEnabled (line 34) | def isColorSwatchEnabled(self) -> bool: ... method isFilmlookEnabled (line 35) | def isFilmlookEnabled(self) -> bool: ... method isLabelsEnabled (line 36) | def isLabelsEnabled(self) -> bool: ... method paint (line 37) | def paint(self, painter: PyQt5.QtGui.QPainter, option: PyQt5.QtWidgets... method setColorSwatchEnabled (line 38) | def setColorSwatchEnabled(self, colorSwatchEnabled: bool): ... method setFilmlookEnabled (line 39) | def setFilmlookEnabled(self, filmlookEnabled: bool): ... method setLabelsEnabled (line 40) | def setLabelsEnabled(self, labelsEnabled: bool): ... class SceneGraphTabNameItemDelegate (line 42) | class SceneGraphTabNameItemDelegate(NameItemDelegate): method initStyleOption (line 43) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method shouldShowPinning (line 44) | def shouldShowPinning(self) -> bool: ... FILE: katana/stubs/UI4/Tabs/UVPanel/ExtendedInfoLabel.pyi class ExtendedProductInfoItem (line 10) | class ExtendedProductInfoItem(PyQt5.QtWidgets.QFrame): method __init__ (line 12) | def __init__(self, caption, parent) -> None: ... method _ExtendedProductInfoItem__updateState (line 13) | def _ExtendedProductInfoItem__updateState(self): ... method setText (line 14) | def setText(self, text): ... FILE: katana/stubs/UI4/Tabs/UVPanel/FaceSelectionHelper.pyi class QuadTree (line 6) | class QuadTree: method __init__ (line 7) | def __init__(self) -> None: ... method _QuadTree__filterTree (line 8) | def _QuadTree__filterTree(self): ... method addContent (line 9) | def addContent(self, items): ... method clear (line 10) | def clear(self): ... method filterTreeBegin (line 11) | def filterTreeBegin(self): ... method getContentsInRect (line 12) | def getContentsInRect(self, rect): ... method setBounds (line 13) | def setBounds(self, rect): ... class QuadTreeNode (line 15) | class QuadTreeNode: method __init__ (line 16) | def __init__(self, bounds, depth: int = ...) -> None: ... method GetMaxDepth (line 17) | def GetMaxDepth(self, depth): ... method _QuadTreeNode__distributeToChildren (line 18) | def _QuadTreeNode__distributeToChildren(self, items): ... method addContent (line 19) | def addContent(self, item): ... method clear (line 20) | def clear(self): ... method getBounds (line 21) | def getBounds(self): ... method getContentsInRect (line 22) | def getContentsInRect(self, rect): ... method printContents (line 23) | def printContents(self, depth: int = ...): ... method setBounds (line 24) | def setBounds(self, rect): ... function rectContainsPoint (line 26) | def rectContainsPoint(rect, point): ... function rectsIntersect (line 27) | def rectsIntersect(rect1, rect2): ... FILE: katana/stubs/UI4/Tabs/UVPanel/Layers/HotkeyLayer.pyi class HotkeyLayer (line 14) | class HotkeyLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method processEvent (line 16) | def processEvent(self, event): ... FILE: katana/stubs/UI4/Tabs/UVPanel/Layers/SelectionLayer.pyi class SelectionLayer (line 9) | class SelectionLayer(RectangleLayer): method __init__ (line 10) | def __init__(self, *args, **kwargs) -> None: ... method isOverlay (line 11) | def isOverlay(self): ... method paintGL (line 12) | def paintGL(self): ... method processEvent (line 13) | def processEvent(self, event): ... method setEnabled (line 14) | def setEnabled(self, enabled): ... FILE: katana/stubs/UI4/Tabs/UVPanel/UVPanel.pyi class UVPanel (line 13) | class UVPanel(BaseTab): method __init__ (line 14) | def __init__(self, *args) -> None: ... method _UVPanel__buildMenu (line 15) | def _UVPanel__buildMenu(self): ... method _UVPanel__on_textureCombobox_activated (line 16) | def _UVPanel__on_textureCombobox_activated(self, index): ... method _UVPanel__on_tileCombobox_activated (line 17) | def _UVPanel__on_tileCombobox_activated(self, index): ... method _UVPanel__openTextureFile (line 18) | def _UVPanel__openTextureFile(self): ... method _UVPanel__updateTexturesCallback (line 19) | def _UVPanel__updateTexturesCallback(self, textureList): ... method _UVPanel__updateTilesCallback (line 20) | def _UVPanel__updateTilesCallback(self, bounds): ... method getIsolateSelection (line 21) | def getIsolateSelection(self): ... method getMenuBar (line 22) | def getMenuBar(self) -> PyQt5.QtWidgets.QMenuBar | None: ... method getOverlaySetting (line 23) | def getOverlaySetting(self, name): ... method getStencilMode (line 24) | def getStencilMode(self): ... method getTileFormat (line 25) | def getTileFormat(self): ... method getUVWidget (line 26) | def getUVWidget(self) -> UVWidget: ... method setIsolateSelection (line 27) | def setIsolateSelection(self, value): ... method setOverlaySetting (line 28) | def setOverlaySetting(self, name, value): ... method setStencilMode (line 29) | def setStencilMode(self, value): ... method setTileFormat (line 30) | def setTileFormat(self, tileFormat): ... FILE: katana/stubs/UI4/Tabs/UVPanel/UVWidget.pyi class BGLayer (line 20) | class BGLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 21) | def __init__(self, *args, **kwargs) -> None: ... method getTextureInfo (line 22) | def getTextureInfo(self): ... method loadTextureCallback (line 23) | def loadTextureCallback(self, image: Incomplete | None = ..., textureP... method paintGL (line 24) | def paintGL(self): ... method paintTexture (line 25) | def paintTexture(self, textureName, x, y): ... method repaintGL (line 26) | def repaintGL(self, *args, **kwargs): ... method setStencilBuffer (line 27) | def setStencilBuffer(self, enabled): ... method setTexture (line 28) | def setTexture(self, file): ... method setUVTileSequenceClass (line 29) | def setUVTileSequenceClass(self, sequenceClass): ... class ClearToBaseLayer (line 31) | class ClearToBaseLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 32) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method paintGL (line 33) | def paintGL(self): ... class GeoLayer (line 35) | class GeoLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 36) | def __init__(self, *args, **kwargs) -> None: ... method _GeoLayer__clearCache (line 37) | def _GeoLayer__clearCache(self, *args, **kwargs): ... method _GeoLayer__drawPillPoly (line 38) | def _GeoLayer__drawPillPoly(self, x1, y1, x2, y2): ... method _GeoLayer__generateGeometryList (line 39) | def _GeoLayer__generateGeometryList(self, selectedFaces: bool = ...): ... method clearSelection (line 40) | def clearSelection(self): ... method computeSelection (line 41) | def computeSelection(self, rect, shift, control): ... method filterSearchTree (line 42) | def filterSearchTree(self): ... method forceRebuild (line 43) | def forceRebuild(self, selectedOnly: bool = ...): ... method generateStencilBuffer (line 44) | def generateStencilBuffer(self, bufferEnabled): ... method getBounds (line 45) | def getBounds(self): ... method getClient (line 46) | def getClient(self): ... method getRuntime (line 47) | def getRuntime(self): ... method getSelectedFaces (line 48) | def getSelectedFaces(self): ... method getSelectedPaths (line 49) | def getSelectedPaths(self): ... method getSelection (line 50) | def getSelection(self, clearGeomCache: bool = ...): ... method getSelectionBounds (line 51) | def getSelectionBounds(self): ... method getTexture (line 52) | def getTexture(self, textureID): ... method getTextureIndex (line 53) | def getTextureIndex(self): ... method paintGL (line 54) | def paintGL(self): ... method setAdditionalTextures (line 55) | def setAdditionalTextures(self, file): ... method setIsolateSelection (line 56) | def setIsolateSelection(self, isolateSelection): ... method setSelectedFaces (line 57) | def setSelectedFaces(self, faces): ... method setUpdateTexturesCallback (line 58) | def setUpdateTexturesCallback(self, cb): ... method setUpdateTilesCallback (line 59) | def setUpdateTilesCallback(self, cb): ... class OverlayLayer (line 61) | class OverlayLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 62) | def __init__(self, *args, **kwargs) -> None: ... method _OverlayLayer__getTextLabel (line 63) | def _OverlayLayer__getTextLabel(self, u, v, textureInfo): ... method getSettingState (line 64) | def getSettingState(self, name): ... method paintGL (line 65) | def paintGL(self): ... method setSettingState (line 66) | def setSettingState(self, name, value): ... method setTextureInfoCallback (line 67) | def setTextureInfoCallback(self, function): ... class UVWidget (line 69) | class UVWidget(LayerStack): method __init__ (line 70) | def __init__(self, parent) -> None: ... method _UVWidget__addImplicitResolvers (line 71) | def _UVWidget__addImplicitResolvers(self, txn, opId, viewedNode): ... method _UVWidget__buildLayers (line 72) | def _UVWidget__buildLayers(self): ... method _UVWidget__checkForLocationEvents (line 73) | def _UVWidget__checkForLocationEvents(self): ... method _UVWidget__connectToEvents (line 74) | def _UVWidget__connectToEvents(self): ... method _UVWidget__createTerminalOp (line 75) | def _UVWidget__createTerminalOp(self): ... method _UVWidget__faceSelectionChanged (line 76) | def _UVWidget__faceSelectionChanged(self, args): ... method _UVWidget__idle_callback (line 77) | def _UVWidget__idle_callback(self, *args, **kwargs): ... method _UVWidget__nodeSetViewed (line 78) | def _UVWidget__nodeSetViewed(self, args): ... method _UVWidget__scenegraphManager_selectionChanged_callback (line 79) | def _UVWidget__scenegraphManager_selectionChanged_callback(self, event... method _UVWidget__terminalOpCallback (line 80) | def _UVWidget__terminalOpCallback(self, port: NodegraphAPI.Port, graph... method _UVWidget__updateFaceSelectionManager (line 81) | def _UVWidget__updateFaceSelectionManager(self): ... method computeSelection (line 82) | def computeSelection(self, rect, shift, control): ... method event (line 83) | def event(self, event): ... method frame (line 84) | def frame(self): ... method frameAll (line 85) | def frameAll(self): ... method frameTile (line 86) | def frameTile(self, uvPosition: tuple = ...): ... method getOverlaySetting (line 87) | def getOverlaySetting(self, name): ... method getSelectedFaces (line 88) | def getSelectedFaces(self): ... method getSelectedPaths (line 89) | def getSelectedPaths(self): ... method getSelection (line 90) | def getSelection(self): ... method getStencilBuffer (line 91) | def getStencilBuffer(self): ... method getTextureIndex (line 92) | def getTextureIndex(self): ... method getWorldBounds (line 93) | def getWorldBounds(self): ... method hideEvent (line 94) | def hideEvent(self, event): ... method paintGL (line 95) | def paintGL(self): ... method requestRebuild (line 96) | def requestRebuild(self): ... method resizeGL (line 97) | def resizeGL(self, width, height): ... method selectTexture (line 98) | def selectTexture(self, textureID): ... method setIsolateSelection (line 99) | def setIsolateSelection(self, isolateSelection): ... method setOverlaySetting (line 100) | def setOverlaySetting(self, name, value): ... method setStencilBuffer (line 101) | def setStencilBuffer(self, enabled): ... method setTexture (line 102) | def setTexture(self, texturePath): ... method setUVTileSequenceClass (line 103) | def setUVTileSequenceClass(self, sequenceClass): ... method setUpdateTexturesCallback (line 104) | def setUpdateTexturesCallback(self, cb): ... method setUpdateTilesCallback (line 105) | def setUpdateTilesCallback(self, cb): ... method showEvent (line 106) | def showEvent(self, event): ... FILE: katana/stubs/UI4/Util/AbstractSyntaxHighlighter.pyi class AbstractSyntaxHighlighter (line 11) | class AbstractSyntaxHighlighter(PyQt5.QtGui.QSyntaxHighlighter): method __init__ (line 12) | def __init__(self, document: PyQt5.QtWidgets.QTextEdit | PyQt5.QtGui.Q... method _AbstractSyntaxHighlighter__configureHighlighter (line 13) | def _AbstractSyntaxHighlighter__configureHighlighter(self): ... method _createCustomBlocks (line 14) | def _createCustomBlocks(self): ... method _createFormat (line 15) | def _createFormat(self, color: str = ..., backgroundColor: str = ..., ... method _createFormats (line 16) | def _createFormats(self) -> dict[str, PyQt5.QtGui.QTextCharFormat]: ... method _createPostBlockRules (line 17) | def _createPostBlockRules(self): ... method _createRules (line 18) | def _createRules(self): ... method _getBaseFormat (line 19) | def _getBaseFormat(self) -> PyQt5.QtGui.QTextCharFormat: ... method highlightBlock (line 20) | def highlightBlock(self, text: str): ... method setTrailingWhitespaceHighlighted (line 21) | def setTrailingWhitespaceHighlighted(self, trailingWhitespaceHighlight... FILE: katana/stubs/UI4/Util/AnamorphDisplayOptions.pyi function AddAnamorphScale (line 5) | def AddAnamorphScale(scaleAmt): ... function GetAnamorphScales (line 6) | def GetAnamorphScales(): ... function GetDefaultAnamorphScale (line 7) | def GetDefaultAnamorphScale(): ... function ShouldDisplayAnamorphScale (line 8) | def ShouldDisplayAnamorphScale(): ... FILE: katana/stubs/UI4/Util/AssetId.pyi class AssetIdHelper (line 23) | class AssetIdHelper(PyQt5.QtCore.QObject): method __init__ (line 26) | def __init__(self, policy) -> None: ... method _AssetIdHelper__chooseAsset (line 27) | def _AssetIdHelper__chooseAsset(self): ... method _AssetIdHelper__extraMenuHookAction (line 28) | def _AssetIdHelper__extraMenuHookAction(self, action): ... method _AssetIdHelper__imageInfoThreadResult (line 29) | def _AssetIdHelper__imageInfoThreadResult(self, filename: str, info: d... method _AssetIdHelper__launchImageViewer (line 30) | def _AssetIdHelper__launchImageViewer(self): ... method _AssetIdHelper__mediaCacheCallback (line 31) | def _AssetIdHelper__mediaCacheCallback(self): ... method _AssetIdHelper__presetActionTriggered (line 32) | def _AssetIdHelper__presetActionTriggered(self, action): ... method _AssetIdHelper__setNodeNameFromPath (line 33) | def _AssetIdHelper__setNodeNameFromPath(self): ... method fillMenu (line 34) | def fillMenu(self, menu, locked): ... method getValuePolicy (line 35) | def getValuePolicy(self): ... method requestExtraImageInfo (line 36) | def requestExtraImageInfo(self): ... method setAssetWidgetDelegate (line 37) | def setAssetWidgetDelegate(self, assetWidgetDelegate): ... method setSaveMode (line 38) | def setSaveMode(self, saveMode): ... class BrowseForAssetDialog (line 40) | class BrowseForAssetDialog(AssetBrowser.Browser.BrowserDialog): method __init__ (line 41) | def __init__(self, assetOrFile, label: Incomplete | None = ..., saveMo... class ImageInfoThread (line 43) | class ImageInfoThread(PyQt5.QtCore.QThread): method __init__ (line 45) | def __init__(self, filename) -> None: ... method run (line 46) | def run(self): ... class _SelfTriggerAction (line 48) | class _SelfTriggerAction(PyQt5.QtWidgets.QAction): method __init__ (line 50) | def __init__(self, message, parent) -> None: ... method _SelfTriggerAction__go (line 51) | def _SelfTriggerAction__go(self): ... function BrowseForAsset (line 53) | def BrowseForAsset(assetOrFile, label, saveMode, hints, extraOptions: In... function GetExtraImageInfo (line 54) | def GetExtraImageInfo(fileName): ... function LaunchImageViewer (line 55) | def LaunchImageViewer(filename, processName: Incomplete | None = ...): ... FILE: katana/stubs/UI4/Util/AssetWidgetDelegatePlugins.pyi class BaseAssetControlWidget (line 14) | class BaseAssetControlWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 16) | def __init__(self, parent, hints) -> None: ... method buildWidgets (line 17) | def buildWidgets(self, hints): ... method emitValueChanged (line 18) | def emitValueChanged(self): ... method getValue (line 19) | def getValue(self): ... method setReadOnly (line 20) | def setReadOnly(self, readOnly): ... method setValue (line 21) | def setValue(self, value): ... class BaseAssetRenderWidget (line 23) | class BaseAssetRenderWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 24) | def __init__(self, parent, hints, outputInfo) -> None: ... method buildWidgets (line 25) | def buildWidgets(self, hints): ... method getOutputInfo (line 26) | def getOutputInfo(self): ... method updateWidgets (line 27) | def updateWidgets(self): ... class BaseAssetWidgetDelegate (line 29) | class BaseAssetWidgetDelegate(PyQt5.QtCore.QObject): method __init__ (line 30) | def __init__(self, valuePolicy, *args) -> None: ... method addAssetFormWidgetMenuItems (line 31) | def addAssetFormWidgetMenuItems(self, menu): ... method configureAssetBrowser (line 32) | def configureAssetBrowser(self, browser): ... method createAssetControlWidget (line 33) | def createAssetControlWidget(self, parent): ... method createAssetRenderWidget (line 34) | def createAssetRenderWidget(self, parent, outputInfo): ... method getQuickLinkPathsForContext (line 35) | def getQuickLinkPathsForContext(self, context): ... method getValuePolicy (line 36) | def getValuePolicy(self): ... method getWidgetHints (line 37) | def getWidgetHints(self): ... method shouldAddFileTabToAssetBrowser (line 38) | def shouldAddFileTabToAssetBrowser(self): ... method shouldAddStandardMenuItems (line 39) | def shouldAddStandardMenuItems(self): ... class DefaultAssetControlWidget (line 41) | class DefaultAssetControlWidget(BaseAssetControlWidget): method _DefaultAssetControlWidget__lostFocus (line 42) | def _DefaultAssetControlWidget__lostFocus(self): ... method buildWidgets (line 43) | def buildWidgets(self, hints): ... method getValue (line 44) | def getValue(self): ... method setPalette (line 45) | def setPalette(self, palette): ... method setReadOnly (line 46) | def setReadOnly(self, readOnly): ... method setValue (line 47) | def setValue(self, value): ... class DefaultAssetRenderWidget (line 49) | class DefaultAssetRenderWidget(BaseAssetRenderWidget): method buildWidgets (line 50) | def buildWidgets(self, hints): ... method updateWidgets (line 51) | def updateWidgets(self): ... class DefaultAssetWidgetDelegate (line 53) | class DefaultAssetWidgetDelegate(BaseAssetWidgetDelegate): method createAssetControlWidget (line 54) | def createAssetControlWidget(self, parent): ... method createAssetRenderWidget (line 55) | def createAssetRenderWidget(self, parent, outputInfo): ... function GetAssetWidgetDelegate (line 57) | def GetAssetWidgetDelegate(assetSystemName, valuePolicy): ... FILE: katana/stubs/UI4/Util/AttributeHistory.pyi class AttributeHistory (line 12) | class AttributeHistory: method __init__ (line 21) | def __init__(self, locationPath: str, attributeName: str, startNode: I... method GetHistoryDelegateNode (line 23) | def GetHistoryDelegateNode(cls, node: NodegraphAPI.Node): ... method IsLocationPath (line 25) | def IsLocationPath(cls, historyEntry): ... method IsOpType (line 27) | def IsOpType(cls, historyEntry): ... method _AttributeHistory__appendInputOpsToQueue (line 28) | def _AttributeHistory__appendInputOpsToQueue(self, op: FnGeolibOp): ... method _AttributeHistory__appendToHistory (line 29) | def _AttributeHistory__appendToHistory(self, op: FnGeolibOp, attribute... method _AttributeHistory__deleteClient (line 30) | def _AttributeHistory__deleteClient(self, clientKey): ... method _AttributeHistory__evaluateNextOp (line 31) | def _AttributeHistory__evaluateNextOp(self): ... method _AttributeHistory__findLocationPathWithAttribute (line 32) | def _AttributeHistory__findLocationPathWithAttribute(self, attrDict: d... method _AttributeHistory__getCachedHistory (line 33) | def _AttributeHistory__getCachedHistory(self) -> list[tuple[str, PyFnA... method _AttributeHistory__getParentLocation (line 34) | def _AttributeHistory__getParentLocation(self, locationPath): ... method _AttributeHistory__on_event_idle (line 35) | def _AttributeHistory__on_event_idle(self, eventType, eventID): ... method _AttributeHistory__opToHistoryEntry (line 36) | def _AttributeHistory__opToHistoryEntry(self, op: FnGeolibOp) -> str: ... method _AttributeHistory__processLocationData (line 37) | def _AttributeHistory__processLocationData(self, op: FnGeolibOp, locat... method _AttributeHistory__processLocationDataAsync (line 38) | def _AttributeHistory__processLocationDataAsync(self, op: FnGeolibOp, ... method _AttributeHistory__setCallbacks (line 39) | def _AttributeHistory__setCallbacks(self, completeCallback: typing.Cal... method _AttributeHistory__setClientOp (line 40) | def _AttributeHistory__setClientOp(self, clientKey, op): ... method _AttributeHistory__shouldStopAtAttribute (line 41) | def _AttributeHistory__shouldStopAtAttribute(self, attribute): ... method _AttributeHistory__updateHistory (line 42) | def _AttributeHistory__updateHistory(self) -> bool: ... method _AttributeHistory__walkOpTree (line 43) | def _AttributeHistory__walkOpTree(self, synchronous: bool = ...): ... method clear (line 44) | def clear(self): ... method freeze (line 45) | def freeze(self): ... method getAttributeCreationNode (line 46) | def getAttributeCreationNode(self, callback: Incomplete | None = ..., ... method getAttributeInheritance (line 47) | def getAttributeInheritance(self, callback: Incomplete | None = ..., u... method getAttributeName (line 48) | def getAttributeName(self): ... method getAttributeSetNode (line 49) | def getAttributeSetNode(self, callback: Incomplete | None = ..., updat... method getLocationPath (line 50) | def getLocationPath(self): ... method getNodeHistory (line 51) | def getNodeHistory(self, callback: Incomplete | None = ..., updateCall... method getStartNode (line 52) | def getStartNode(self): ... method isFrozen (line 53) | def isFrozen(self): ... method thaw (line 54) | def thaw(self): ... class _AsyncOpManager (line 56) | class _AsyncOpManager: method __init__ (line 58) | def __init__(self, runtime, evaluatedOpInputs, startOp, locationPath) ... method activateOpInfo (line 59) | def activateOpInfo(self, opInfo): ... method addOpInfo (line 60) | def addOpInfo(self, opInfo): ... method continueToInputOp (line 61) | def continueToInputOp(self) -> bool: ... method getCurrentOpInfo (line 62) | def getCurrentOpInfo(self): ... method getOpInfo (line 63) | def getOpInfo(self, op): ... method tryNextInput (line 64) | def tryNextInput(self) -> bool: ... method updateActiveClientList (line 65) | def updateActiveClientList(self): ... class _OpInfo (line 67) | class _OpInfo: method __init__ (line 68) | def __init__(self, op, opManager) -> None: ... method getInputOpInfos (line 69) | def getInputOpInfos(self): ... method __eq__ (line 70) | def __eq__(self, other) -> bool: ... method __hash__ (line 71) | def __hash__(self) -> int: ... function GetAttributeCreationNode (line 73) | def GetAttributeCreationNode(locationPath: str, attributeName: str, star... function GetAttributeInheritance (line 74) | def GetAttributeInheritance(locationPath: str, attributeName: str, start... function GetAttributeSetNode (line 75) | def GetAttributeSetNode(locationPath: str, attributeName: str, startNode... function GetNodeHistory (line 76) | def GetNodeHistory(locationPath: str, attributeName: str, startNode: Inc... FILE: katana/stubs/UI4/Util/BuiltinNotifications.pyi function _TooNewFileOpenedListener (line 7) | def _TooNewFileOpenedListener(eventType, eventID, sourceFile, sourceVers... FILE: katana/stubs/UI4/Util/CMakeSyntaxHighlighter.pyi class CMakeSyntaxHighlighter (line 6) | class CMakeSyntaxHighlighter(AbstractSyntaxHighlighter): method _createCustomBlocks (line 7) | def _createCustomBlocks(self): ... method _createFormats (line 8) | def _createFormats(self): ... method _createPostBlockRules (line 9) | def _createPostBlockRules(self): ... method _createRules (line 10) | def _createRules(self): ... FILE: katana/stubs/UI4/Util/Caches.pyi function FlushCaches (line 11) | def FlushCaches(): ... FILE: katana/stubs/UI4/Util/CatalogEventHandlers.pyi class RegenerateThumbnailThread (line 16) | class RegenerateThumbnailThread(PyQt5.QtCore.QThread): method __init__ (line 17) | def __init__(self) -> None: ... method _RegenerateThumbnailThread__nodeGraph_loadBegin_CB (line 19) | def _RegenerateThumbnailThread__nodeGraph_loadBegin_CB(*_args, **_kwar... method run (line 20) | def run(self): ... method stopThread (line 21) | def stopThread(self): ... function EnableCatalogEventHandling (line 23) | def EnableCatalogEventHandling(): ... function RegenerateThumbnail (line 24) | def RegenerateThumbnail(catalogItem): ... FILE: katana/stubs/UI4/Util/CatalogEventReceiver.pyi class CatalogEvent (line 15) | class CatalogEvent(PyQt5.QtCore.QEvent): method __init__ (line 17) | def __init__(self, catalogEventType, sequenceID) -> None: ... method getCatalogEventType (line 18) | def getCatalogEventType(self): ... method getSequenceID (line 19) | def getSequenceID(self): ... method type (line 20) | def type(self): ... class CatalogEventReceiver (line 22) | class CatalogEventReceiver(PyQt5.QtCore.QObject): method __init__ (line 23) | def __init__(self, eventHandler) -> None: ... method customEvent (line 24) | def customEvent(self, event): ... FILE: katana/stubs/UI4/Util/ClientManager.pyi class ClientManager (line 14) | class ClientManager: class NullUpdateSuppressor (line 15) | class NullUpdateSuppressor: method __init__ (line 16) | def __init__(self, *args) -> None: ... method __enter__ (line 17) | def __enter__(self): ... method __exit__ (line 18) | def __exit__(self, *args): ... method __init__ (line 19) | def __init__(self) -> None: ... method _ClientManager__addImplicitResolvers (line 20) | def _ClientManager__addImplicitResolvers(self, txn, opInput, viewedNod... method _ClientManager__addLocationEventsToQueue (line 21) | def _ClientManager__addLocationEventsToQueue(self, locationEvents: lis... method _ClientManager__addMuteResolveOp (line 22) | def _ClientManager__addMuteResolveOp(self, txn, opInput, viewedNode): ... method _ClientManager__adjustNumLocationsToProcess (line 23) | def _ClientManager__adjustNumLocationsToProcess(self, delta, lastNumLo... method _ClientManager__getLocationEvents (line 24) | def _ClientManager__getLocationEvents(self) -> list[tuple]: ... method _ClientManager__getLocationEventsFromClients (line 25) | def _ClientManager__getLocationEventsFromClients(self, numLocations: i... method _ClientManager__getLocationEventsFromQueue (line 26) | def _ClientManager__getLocationEventsFromQueue(self, numLocations: int... method _ClientManager__getUpdateSuppressor (line 27) | def _ClientManager__getUpdateSuppressor(self): ... method _ClientManager__on_event_idle (line 28) | def _ClientManager__on_event_idle(self, eventType, eventID): ... method _ClientManager__populatePortOpClient (line 29) | def _ClientManager__populatePortOpClient(self, port: NodegraphAPI.Port... method _ClientManager__removePortOpClient (line 30) | def _ClientManager__removePortOpClient(self): ... method _ClientManager__terminalOpCallback (line 31) | def _ClientManager__terminalOpCallback(self, portOpClient, op, graphSt... method _ClientManager__updateOpInput (line 32) | def _ClientManager__updateOpInput(self, opInput, txn, port: NodegraphA... method _getClient (line 33) | def _getClient(self, key: str | None) -> PyFnGeolib.GeolibRuntime.Clie... method _getClientForLocation (line 34) | def _getClientForLocation(self, location: str, key: str | None) -> PyF... method _getClients (line 35) | def _getClients(self) -> list[PyFnGeolib.GeolibRuntime.Client]: ... method activateSceneGraphLocation (line 36) | def activateSceneGraphLocation(self, location: str, key: Incomplete | ... method closeSceneGraphLocation (line 37) | def closeSceneGraphLocation(self, location: str, key: Incomplete | Non... method createClient (line 38) | def createClient(self, key: str | None): ... method deactivateSceneGraphLocation (line 39) | def deactivateSceneGraphLocation(self, location: str, key: Incomplete ... method deleteClient (line 40) | def deleteClient(self, key: str | None): ... method freeze (line 41) | def freeze(self): ... method interrupt (line 42) | def interrupt(self): ... method isFrozen (line 43) | def isFrozen(self): ... method isProcessing (line 44) | def isProcessing(self): ... method isStopping (line 45) | def isStopping(self): ... method openSceneGraphLocation (line 46) | def openSceneGraphLocation(self, location: str, key: Incomplete | None... method recursiveCloseSceneGraphLocation (line 47) | def recursiveCloseSceneGraphLocation(self, location: str, key: Incompl... method recursiveOpenSceneGraphLocation (line 48) | def recursiveOpenSceneGraphLocation(self, location, key: Incomplete | ... method setAddOrUpdateLocationCallback (line 49) | def setAddOrUpdateLocationCallback(self, addOrUpdateLocationCallback: ... method setBeginEventLoopCallback (line 50) | def setBeginEventLoopCallback(self, beginEventLoopCallback: typing.Cal... method setDeleteLocationCallback (line 51) | def setDeleteLocationCallback(self, deleteLocationCallback: typing.Cal... method setEndEventLoopCallback (line 52) | def setEndEventLoopCallback(self, endEventLoopCallback: typing.Callabl... method setLocationDataProcessedCallback (line 53) | def setLocationDataProcessedCallback(self, locationDataProcessedCallba... method setMaxEventsToProcess (line 54) | def setMaxEventsToProcess(self, maxEvents): ... method setMinEventsToProcess (line 55) | def setMinEventsToProcess(self, minEvents): ... method setOpenStateEventCallback (line 56) | def setOpenStateEventCallback(self, openStateEventCallback: typing.Cal... method setTargetTimePerIdle (line 57) | def setTargetTimePerIdle(self, targetTime): ... method setTerminalOps (line 58) | def setTerminalOps(self, terminalOpArgs): ... method setUpdateSuppressorCallback (line 59) | def setUpdateSuppressorCallback(self, updateSuppressorCallback: typing... method setViewNode (line 60) | def setViewNode(self, viewNode: Nodes3DAPI.Node3D | Nodes2DAPI.Node2D,... method setViewOp (line 61) | def setViewOp(self, viewOp: FnGeolibOp | None, applyImplicitResolvers:... method thaw (line 62) | def thaw(self): ... method updateTerminalOps (line 63) | def updateTerminalOps(self, terminalOpArgs, txn: Incomplete | None = .... FILE: katana/stubs/UI4/Util/Color.pyi function GetCCArrayIndexHints (line 12) | def GetCCArrayIndexHints(index, units): ... function GetCCArrayIndexName (line 13) | def GetCCArrayIndexName(index): ... function ShowColorPicker (line 14) | def ShowColorPicker(colorPolicy: GroupParameterPolicy[UI4.FormMaster.Gro... FILE: katana/stubs/UI4/Util/CppSyntaxHighlighter.pyi class CppSyntaxHighlighter (line 6) | class CppSyntaxHighlighter(AbstractSyntaxHighlighter): method _createCustomBlocks (line 7) | def _createCustomBlocks(self): ... method _createFormats (line 8) | def _createFormats(self): ... method _createPostBlockRules (line 9) | def _createPostBlockRules(self): ... method _createRules (line 10) | def _createRules(self): ... FILE: katana/stubs/UI4/Util/CropWindow.pyi function CropWindowToImageRect (line 5) | def CropWindowToImageRect(dataWindow, cropWindow): ... function ImageRectToCropWindow (line 6) | def ImageRectToCropWindow(dataWindow, imageRect): ... FILE: katana/stubs/UI4/Util/Cursors.pyi function GetDragCursor (line 8) | def GetDragCursor(action: PyQt5.QtCore.Qt.DropAction = ...): ... FILE: katana/stubs/UI4/Util/DrawState.pyi class DrawState (line 11) | class DrawState(PyQt5.QtCore.QObject): method __init__ (line 26) | def __init__(self, *args) -> None: ... method _DrawState__gamutTimer_CB (line 27) | def _DrawState__gamutTimer_CB(self): ... method _DrawState__recomputeDisplayCC (line 28) | def _DrawState__recomputeDisplayCC(self): ... method adopt (line 29) | def adopt(self, other, emit): ... method calculateViewRange (line 30) | def calculateViewRange(self): ... method calculateViewRangeZ (line 31) | def calculateViewRangeZ(self): ... method emitChangeSignal (line 32) | def emitChangeSignal(self): ... method getCC (line 33) | def getCC(self): ... method getCeilCheckValue (line 34) | def getCeilCheckValue(self): ... method getCurrentGamutCheckColor (line 35) | def getCurrentGamutCheckColor(self): ... method getDefaultInputColorspace (line 36) | def getDefaultInputColorspace(self): ... method getDefaultView (line 37) | def getDefaultView(self): ... method getDisplay (line 38) | def getDisplay(self): ... method getDisplayRequest (line 39) | def getDisplayRequest(self): ... method getFStopOffset (line 40) | def getFStopOffset(self): ... method getFloorCheckValue (line 41) | def getFloorCheckValue(self): ... method getInputColorSpaces (line 42) | def getInputColorSpaces(self): ... method getInputColorspace (line 43) | def getInputColorspace(self): ... method getLayerSelection (line 44) | def getLayerSelection(self): ... method getMatteMult (line 45) | def getMatteMult(self): ... method getMatteOverlay (line 46) | def getMatteOverlay(self): ... method getMatteOverlayColor (line 47) | def getMatteOverlayColor(self): ... method getMatteOverlayInvert (line 48) | def getMatteOverlayInvert(self): ... method getSwizzle (line 49) | def getSwizzle(self): ... method getSwizzleName (line 50) | def getSwizzleName(self): ... method getView (line 51) | def getView(self): ... method getViewAdjustmentsMuted (line 52) | def getViewAdjustmentsMuted(self): ... method getViewGamma (line 53) | def getViewGamma(self): ... method getViewMax (line 54) | def getViewMax(self): ... method getViewMin (line 55) | def getViewMin(self): ... method getViews (line 56) | def getViews(self): ... method invertViewRange (line 57) | def invertViewRange(self): ... method isCeilCheckEnabled (line 58) | def isCeilCheckEnabled(self): ... method isFloorCheckEnabled (line 59) | def isFloorCheckEnabled(self): ... method isGamutCheckTimerActiveAndUseful (line 60) | def isGamutCheckTimerActiveAndUseful(self): ... method isInfCheckEnabled (line 61) | def isInfCheckEnabled(self): ... method isNanCheckEnabled (line 62) | def isNanCheckEnabled(self): ... method resetChecks (line 63) | def resetChecks(self): ... method resetLayerSelection (line 64) | def resetLayerSelection(self): ... method resetViewRange (line 65) | def resetViewRange(self): ... method setCC (line 66) | def setCC(self, cc): ... method setCeilCheckEnabled (line 67) | def setCeilCheckEnabled(self, doCheck): ... method setCeilCheckValue (line 68) | def setCeilCheckValue(self, value): ... method setDisplay (line 69) | def setDisplay(self, display): ... method setFStopOffset (line 70) | def setFStopOffset(self, fstop): ... method setFloorCheckEnabled (line 71) | def setFloorCheckEnabled(self, doCheck): ... method setFloorCheckValue (line 72) | def setFloorCheckValue(self, value): ... method setInfCheckEnabled (line 73) | def setInfCheckEnabled(self, doCheck): ... method setInputColorspace (line 74) | def setInputColorspace(self, csname): ... method setLayerSelection (line 75) | def setLayerSelection(self, layerSelection): ... method setMatteMult (line 76) | def setMatteMult(self, state): ... method setMatteOverlay (line 77) | def setMatteOverlay(self, state): ... method setMatteOverlayColor (line 78) | def setMatteOverlayColor(self, state): ... method setMatteOverlayInvert (line 79) | def setMatteOverlayInvert(self, state): ... method setNanCheckEnabled (line 80) | def setNanCheckEnabled(self, doCheck): ... method setSwizzle (line 81) | def setSwizzle(self, mode): ... method setView (line 82) | def setView(self, name): ... method setViewAdjustmentsMuted (line 83) | def setViewAdjustmentsMuted(self, val): ... method setViewGamma (line 84) | def setViewGamma(self, val): ... method setViewMax (line 85) | def setViewMax(self, val): ... method setViewMin (line 86) | def setViewMin(self, val): ... method setViewToNormals (line 87) | def setViewToNormals(self): ... method startGamutCheckTimer (line 88) | def startGamutCheckTimer(self, interval, colors): ... method stopGamutCheckTimer (line 89) | def stopGamutCheckTimer(self): ... method __eq__ (line 90) | def __eq__(self, other) -> bool: ... method __lt__ (line 91) | def __lt__(self, other) -> bool: ... function GetDefaultOverlayColor (line 93) | def GetDefaultOverlayColor(): ... function GetDefaultOverlayColorPolicy (line 94) | def GetDefaultOverlayColorPolicy(): ... FILE: katana/stubs/UI4/Util/Events.pyi class ClickFilter (line 13) | class ClickFilter: method __init__ (line 14) | def __init__(self) -> None: ... method process (line 15) | def process(self, event): ... class EventProcessor (line 17) | class EventProcessor: method __init__ (line 18) | def __init__(self) -> None: ... method finish (line 19) | def finish(self, cancelled: bool = ...): ... method isFinished (line 20) | def isFinished(self): ... method processEvent (line 21) | def processEvent(self, event): ... class EventProcessorHandler (line 23) | class EventProcessorHandler: method __init__ (line 24) | def __init__(self) -> None: ... method _EventProcessorHandler__runEventProcessor (line 25) | def _EventProcessorHandler__runEventProcessor(self, event): ... method _processEvent (line 26) | def _processEvent(self, event): ... method _processEventUnconditional (line 27) | def _processEventUnconditional(self, event): ... method getEventProcessor (line 28) | def getEventProcessor(self): ... method processEvent (line 29) | def processEvent(self, event): ... method setEventProcessor (line 30) | def setEventProcessor(self, eventProcessor, eventToProcess: Incomplete... class LayerWorldDragEventProcessor (line 32) | class LayerWorldDragEventProcessor(EventProcessor): method __init__ (line 33) | def __init__(self, layer, trackModifiers: PyQt5.QtCore.Qt.KeyboardModi... method _getLayer (line 34) | def _getLayer(self): ... method _getModifiers (line 35) | def _getModifiers(self): ... method _getWorldEnd (line 36) | def _getWorldEnd(self): ... method _getWorldStart (line 37) | def _getWorldStart(self): ... method _update (line 38) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... method processEvent (line 39) | def processEvent(self, event): ... class MouseClickEvent (line 41) | class MouseClickEvent(PyQt5.QtGui.QMouseEvent): method __init__ (line 42) | def __init__(self, releaseEvent) -> None: ... method type (line 43) | def type(self): ... method __getattr__ (line 44) | def __getattr__(self, attr): ... method __hasattr__ (line 45) | def __hasattr__(self, attr): ... FILE: katana/stubs/UI4/Util/ExternalTools.pyi function openDocument (line 8) | def openDocument(filename: str) -> bool: ... function openFile (line 9) | def openFile(filename: str, command: str, verb: str = ...) -> bool: ... function openFileForEdit (line 10) | def openFileForEdit(filename: str) -> bool: ... function openImage (line 11) | def openImage(filename: str) -> bool: ... function openUrl (line 12) | def openUrl(url: str) -> bool: ... function splitCommandLineString (line 13) | def splitCommandLineString(command: str) -> list[str]: ... FILE: katana/stubs/UI4/Util/FCurveUtil.pyi class FCurveSelectionSnapshot (line 7) | class FCurveSelectionSnapshot(PyFCurve.SelectionObserver): method __init__ (line 8) | def __init__(self, container, selection) -> None: ... method _FCurveSelectionSnapshot__keyframeSelectTuple (line 9) | def _FCurveSelectionSnapshot__keyframeSelectTuple(self, keyframe): ... method deselected (line 10) | def deselected(self, object): ... method restoreSelection (line 11) | def restoreSelection(self): ... method restoreSelectionConditional (line 12) | def restoreSelectionConditional(self): ... method selected (line 13) | def selected(self, object): ... method selectionCleared (line 14) | def selectionCleared(self): ... method setIgnoreChanges (line 15) | def setIgnoreChanges(self, ignore): ... method snapshotSelection (line 16) | def snapshotSelection(self): ... FILE: katana/stubs/UI4/Util/FaceSelect.pyi function serializeFaceSetData (line 6) | def serializeFaceSetData(location, selection): ... FILE: katana/stubs/UI4/Util/FileHelpers.pyi function BrowseForLiveGroup (line 13) | def BrowseForLiveGroup(assetId: str = ...): ... function CanVersionUpAndSave (line 14) | def CanVersionUpAndSave(): ... function CheckForUnsavedChanges (line 15) | def CheckForUnsavedChanges(dialogTitle: str, actionDescription: str) -> ... function ExportSelection (line 16) | def ExportSelection(): ... function Import (line 17) | def Import(): ... function ImportLiveGroup (line 18) | def ImportLiveGroup(): ... function New (line 19) | def New(): ... function Open (line 20) | def Open(filename: Incomplete | None = ...): ... function Revert (line 21) | def Revert(): ... function Save (line 22) | def Save(checkForModifiedLiveGroups: bool = ...) -> bool: ... function SaveAs (line 23) | def SaveAs(checkForModifiedLiveGroups: bool = ...) -> bool: ... function ShowLoadLiveGroupDialog (line 24) | def ShowLoadLiveGroupDialog(filenameOrAssetID: str = ..., title: str = .... function VersionUpAndSave (line 25) | def VersionUpAndSave(checkForModifiedLiveGroups: bool = ...) -> bool: ... FILE: katana/stubs/UI4/Util/GLContextManager.pyi function MakeGlobalContextCurrent (line 6) | def MakeGlobalContextCurrent() -> bool: ... FILE: katana/stubs/UI4/Util/GLDrawingRoutines.pyi function drawEllipse (line 8) | def drawEllipse(xRadius, yRadius, startAngle, endAngle, steps, filled: b... function drawSmoothArrow (line 9) | def drawSmoothArrow(color, trans, basePt, endPt, lineWidth, filled: bool... function drawSmoothCross (line 10) | def drawSmoothCross(color, trans, px, py, xSize, ySize, lineWidth): ... function drawSmoothCrosshairs (line 11) | def drawSmoothCrosshairs(color, trans, px, py, startRadius, endRadius, l... function drawSmoothEllipse (line 12) | def drawSmoothEllipse(color, trans, px, py, xRadius, yRadius, startAngle... function drawSmoothHandle (line 13) | def drawSmoothHandle(color, trans, edgeSize, px, py, lineWidth, filled: ... function drawSmoothPoly (line 14) | def drawSmoothPoly(color, trans, vertices, lineWidth, stippled: bool = .... function drawSmoothText (line 15) | def drawSmoothText(text, color, trans, px, py, fontSize): ... FILE: katana/stubs/UI4/Util/HotRender.pyi class _HotrenderInterrupt (line 10) | class _HotrenderInterrupt: method __init__ (line 11) | def __init__(self) -> None: ... method _HotrenderInterrupt__interrupt (line 12) | def _HotrenderInterrupt__interrupt(self): ... method close (line 13) | def close(self): ... method serialHotrenderCB (line 14) | def serialHotrenderCB(self, message: Incomplete | None = ...): ... function SerialHotRender (line 16) | def SerialHotRender(nodeList, node: typing.Optional[NodegraphAPI.Node] =... FILE: katana/stubs/UI4/Util/IconManager.pyi function GetIcon (line 7) | def GetIcon(path): ... function GetPixmap (line 8) | def GetPixmap(path): ... function GetSize (line 9) | def GetSize(path): ... FILE: katana/stubs/UI4/Util/KatanaMediaCache.pyi class CancelledException (line 13) | class CancelledException(Exception): ... class MediaCacheCopyThread (line 15) | class MediaCacheCopyThread(PyQt5.QtCore.QThread): method __init__ (line 19) | def __init__(self, elements, elementsSafeForDeletion) -> None: ... method _MediaCacheCopyThread__deletionCB (line 20) | def _MediaCacheCopyThread__deletionCB(self): ... method _MediaCacheCopyThread__elementProgressCB (line 21) | def _MediaCacheCopyThread__elementProgressCB(self, elementName, i, tot... method _MediaCacheCopyThread__fileProgressCB (line 22) | def _MediaCacheCopyThread__fileProgressCB(self, fileName, i, total): ... method cancel (line 23) | def cancel(self): ... method getException (line 24) | def getException(self): ... method run (line 25) | def run(self): ... method wasCancelled (line 26) | def wasCancelled(self): ... method wasError (line 27) | def wasError(self): ... class MediaCacheTransfer (line 29) | class MediaCacheTransfer: method __init__ (line 30) | def __init__(self, elementSet) -> None: ... method _MediaCacheTransfer__checkAspera (line 31) | def _MediaCacheTransfer__checkAspera(self): ... method _MediaCacheTransfer__copyFinished (line 32) | def _MediaCacheTransfer__copyFinished(self): ... method _MediaCacheTransfer__doCopying (line 33) | def _MediaCacheTransfer__doCopying(self, postAsperaElements): ... method _MediaCacheTransfer__elementDeletedCB (line 34) | def _MediaCacheTransfer__elementDeletedCB(self, elementName): ... method _MediaCacheTransfer__elementProgressCB (line 35) | def _MediaCacheTransfer__elementProgressCB(self, elementName, elements... method _MediaCacheTransfer__fileProgressCB (line 36) | def _MediaCacheTransfer__fileProgressCB(self, fileName, filesCompleted... method _MediaCacheTransfer__sendEvent (line 37) | def _MediaCacheTransfer__sendEvent(self, eventName, **kwargs): ... method cancel (line 38) | def cancel(self): ... method getElements (line 39) | def getElements(self): ... method getId (line 40) | def getId(self): ... method start (line 41) | def start(self): ... function CancelMediaCacheRefresh (line 43) | def CancelMediaCacheRefresh(id): ... function DoesGraphHaveCacheableNodes (line 44) | def DoesGraphHaveCacheableNodes(nodes: Incomplete | None = ...): ... function GetFileElements (line 45) | def GetFileElements(nodes: Incomplete | None = ..., t: Incomplete | None... function StartMediaCacheRefresh (line 46) | def StartMediaCacheRefresh(elements: Incomplete | None = ..., nodes: Inc... FILE: katana/stubs/UI4/Util/LayeredMenuUtils.pyi class LayeredMenu (line 9) | class LayeredMenu: method __init__ (line 10) | def __init__(self, populateCallback: types.MethodType, actionCallback:... method addEntry (line 11) | def addEntry(self, value: object, labelText: Incomplete | None = ..., ... method alwaysPopulate (line 12) | def alwaysPopulate(self): ... method clear (line 13) | def clear(self): ... method getEntries (line 14) | def getEntries(self): ... method getKeyboardShortcut (line 15) | def getKeyboardShortcut(self): ... method getLastChosenValue (line 16) | def getLastChosenValue(self): ... method isPopulated (line 17) | def isPopulated(self): ... method onEntryChosen (line 18) | def onEntryChosen(self, value): ... method onlyMatchWordStart (line 19) | def onlyMatchWordStart(self) -> bool: ... method populate (line 20) | def populate(self): ... class LayeredMenuEntry (line 22) | class LayeredMenuEntry: method __init__ (line 23) | def __init__(self, value: object, text: Incomplete | None = ..., color... method getColor (line 24) | def getColor(self): ... method getSize (line 25) | def getSize(self): ... method getText (line 26) | def getText(self): ... method getValue (line 27) | def getValue(self): ... function GetLayeredMenu (line 29) | def GetLayeredMenu(id: str): ... function RegisterLayeredMenu (line 30) | def RegisterLayeredMenu(layeredMenu, layeredMenuID): ... FILE: katana/stubs/UI4/Util/LogRecord.pyi class LogRecord (line 10) | class LogRecord(Record): method __init__ (line 11) | def __init__(self, index: int, logRecord: logging.LogRecord) -> None: ... method getLevelIconName (line 13) | def getLevelIconName(level: int, bigger: bool = ..., highlight: bool =... method getLogRecord (line 14) | def getLogRecord(self): ... method getLogRecordName (line 15) | def getLogRecordName(self) -> str: ... FILE: katana/stubs/UI4/Util/LogRecordHandler.pyi class LogRecordHandler (line 10) | class LogRecordHandler(logging.Handler): method __init__ (line 11) | def __init__(self, logRecordItemModel: LogRecordItemModel) -> None: ... method emit (line 12) | def emit(self, record: logging.LogRecord): ... FILE: katana/stubs/UI4/Util/LogRecordItemModel.pyi class LogRecordItemModel (line 13) | class LogRecordItemModel(RecordItemModel): class SortFilterProxyModel (line 14) | class SortFilterProxyModel(PyQt5.QtCore.QSortFilterProxyModel): method __init__ (line 15) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method filterAcceptsRow (line 16) | def filterAcceptsRow(self, sourceRow: int, sourceParentIndex: PyQt5.... method getActiveLevels (line 17) | def getActiveLevels(self) -> set[int]: ... method isLevelFilterEnabled (line 18) | def isLevelFilterEnabled(self, level: int) -> bool: ... method lessThan (line 19) | def lessThan(self, leftIndex: PyQt5.QtCore.QModelIndex, rightIndex: ... method setActiveLevels (line 20) | def setActiveLevels(self, levels: typing.Iterable[int]): ... method setLevelFilter (line 21) | def setLevelFilter(self, level: int, enabled: bool = ...): ... method sort (line 22) | def sort(self, column, order: PyQt5.QtCore.Qt.SortOrder = ...): ... method __init__ (line 23) | def __init__(self) -> None: ... method addRecord (line 24) | def addRecord(self, record: Record) -> bool: ... method data (line 25) | def data(self, modelIndex: PyQt5.QtCore.QModelIndex, role: PyQt5.QtCor... FILE: katana/stubs/UI4/Util/LuaSyntaxHighlighter.pyi class LuaSyntaxHighlighter (line 6) | class LuaSyntaxHighlighter(AbstractSyntaxHighlighter): method _createCustomBlocks (line 7) | def _createCustomBlocks(self): ... method _createFormats (line 8) | def _createFormats(self): ... method _createPostBlockRules (line 9) | def _createPostBlockRules(self): ... method _createRules (line 10) | def _createRules(self): ... FILE: katana/stubs/UI4/Util/ManipulatorManager.pyi function CreateManipulatorLayer (line 9) | def CreateManipulatorLayer(policy, *args, **kwargs): ... function GetAnimationPathsEnabled (line 10) | def GetAnimationPathsEnabled(): ... function GetManipulatedPolicies (line 11) | def GetManipulatedPolicies(): ... function GetManipulatorPolicy (line 12) | def GetManipulatorPolicy(param): ... function IsManipulatorEnabled (line 13) | def IsManipulatorEnabled(param): ... function RegisterManipulatorLayer (line 14) | def RegisterManipulatorLayer(nodeType, paramMatchString, widgetName): ... function SetAnimationPathsEnabled (line 15) | def SetAnimationPathsEnabled(enabled): ... function SetManipulatorEnabled (line 16) | def SetManipulatorEnabled(param, isEnabled): ... FILE: katana/stubs/UI4/Util/NodeDialogs.pyi class _NodeNameEditFrame (line 20) | class _NodeNameEditFrame(PyQt5.QtWidgets.QFrame): method __init__ (line 22) | def __init__(self, node: NodegraphAPI.Node, nameParameter: Incomplete ... method _NodeNameEditFrame__on_lineEdit_editingAborted (line 23) | def _NodeNameEditFrame__on_lineEdit_editingAborted(self): ... method _NodeNameEditFrame__on_lineEdit_editingFinished (line 24) | def _NodeNameEditFrame__on_lineEdit_editingFinished(self): ... method mousePressEvent (line 25) | def mousePressEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method showEvent (line 26) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... class _NodeNameLineEdit (line 28) | class _NodeNameLineEdit(PyQt5.QtWidgets.QLineEdit): method contextMenuEvent (line 30) | def contextMenuEvent(self, event): ... method keyPressEvent (line 31) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... function EditNodeName (line 33) | def EditNodeName(node: NodegraphAPI.Node, position: Incomplete | None = ... FILE: katana/stubs/UI4/Util/NodeErrors.pyi class FileInChecker (line 21) | class FileInChecker(PyQt5.QtCore.QThread): method __init__ (line 23) | def __init__(self, fileIns, t) -> None: ... method run (line 24) | def run(self): ... class _FileInUpdaterClass (line 26) | class _FileInUpdaterClass: method __init__ (line 27) | def __init__(self) -> None: ... method _FileInUpdaterClass__check (line 28) | def _FileInUpdaterClass__check(self): ... method _FileInUpdaterClass__errorsCB (line 29) | def _FileInUpdaterClass__errorsCB(self, errorList, time): ... method _FileInUpdaterClass__shouldCheckFileIn (line 30) | def _FileInUpdaterClass__shouldCheckFileIn(self, node: NodegraphAPI.No... method checkWithDelay (line 31) | def checkWithDelay(self, nodes: Incomplete | None = ...): ... method flushCache (line 32) | def flushCache(self, args: Incomplete | None = ...): ... method loadBegin (line 33) | def loadBegin(self, eventType, eventID, **kwargs): ... method loadEnd (line 34) | def loadEnd(self, eventType, eventID, **kwargs): ... method nodeCreate (line 35) | def nodeCreate(self, eventType, eventID, **kwargs): ... method nodeRenamed (line 36) | def nodeRenamed(self, args): ... method parameterFinalizeValue (line 37) | def parameterFinalizeValue(self, eventType, eventID, **kwargs): ... method reset (line 38) | def reset(self): ... method timeChange (line 39) | def timeChange(self, args): ... function ClearNodeError (line 41) | def ClearNodeError(node: NodegraphAPI.Node, redraw: bool = ...): ... function ClearNodeErrors (line 42) | def ClearNodeErrors(category: int = ..., redraw: bool = ...): ... function GetNodeError (line 43) | def GetNodeError(node: NodegraphAPI.Node): ... function IterAllErrorNodes (line 44) | def IterAllErrorNodes(): ... function SetCheckingEnabled (line 45) | def SetCheckingEnabled(enabled, category: Incomplete | None = ...): ... function SetNodeError (line 46) | def SetNodeError(node: NodegraphAPI.Node, error, category: int = ..., re... FILE: katana/stubs/UI4/Util/NodeGraphTab.pyi function GetEnteredGroupNodeNames (line 9) | def GetEnteredGroupNodeNames() -> dict[UI4.Tabs.NodeGraphTab, str]: ... function RestoreEnteredGroupNodes (line 10) | def RestoreEnteredGroupNodes(enteredGroupNodeNames: dict[UI4.Tabs.NodeGr... FILE: katana/stubs/UI4/Util/NotificationManager.pyi class NotificationRecord (line 11) | class NotificationRecord(PyQt5.QtCore.QObject): method __init__ (line 15) | def __init__(self, title, text) -> None: ... method addAction (line 16) | def addAction(self, actionName, actionText): ... method delete (line 17) | def delete(self): ... method getActions (line 18) | def getActions(self): ... method getPriority (line 19) | def getPriority(self, observeIgnored: bool = ...): ... method getText (line 20) | def getText(self): ... method getTimeStamp (line 21) | def getTimeStamp(self): ... method getTitle (line 22) | def getTitle(self): ... method isIgnored (line 23) | def isIgnored(self): ... method setIgnored (line 24) | def setIgnored(self, state): ... method setPriority (line 25) | def setPriority(self, priority): ... method setText (line 26) | def setText(self, text): ... method setTimeStamp (line 27) | def setTimeStamp(self, stamp): ... method setTitle (line 28) | def setTitle(self, title): ... method triggerAction (line 29) | def triggerAction(self, actionName): ... function AddRecord (line 31) | def AddRecord(record): ... function CountRecords (line 32) | def CountRecords(): ... function GetHighestPriorityOfRecords (line 33) | def GetHighestPriorityOfRecords(): ... function GetRecords (line 34) | def GetRecords(): ... FILE: katana/stubs/UI4/Util/Number.pyi function BakeToCurve (line 11) | def BakeToCurve(policy): ... function ExportCurveToFile (line 12) | def ExportCurveToFile(policy, defaultOptions): ... function ImportCurveFromFile (line 13) | def ImportCurveFromFile(policy, context: str = ...): ... FILE: katana/stubs/UI4/Util/PluginManager.pyi class TimerCallbackObject (line 8) | class TimerCallbackObject: method __init__ (line 9) | def __init__(self, callbackFn, interval, registerStack, suppressCallba... method _TimerCallbackObject__timer_CB (line 10) | def _TimerCallbackObject__timer_CB(self): ... method getCallback (line 11) | def getCallback(self): ... method getInternalTime (line 12) | def getInternalTime(self): ... method getIntervalText (line 13) | def getIntervalText(self): ... method getName (line 14) | def getName(self): ... method getNumCalls (line 15) | def getNumCalls(self): ... method getNumExceededThresholds (line 16) | def getNumExceededThresholds(self): ... function InitializePluginManager (line 18) | def InitializePluginManager(): ... function PrintStatistics (line 19) | def PrintStatistics(): ... function RegisterTimerCallback (line 20) | def RegisterTimerCallback(callbackFn, interval, suppressCallbackDuration... function UnregisterTimerCallback (line 21) | def UnregisterTimerCallback(callbackFn): ... FILE: katana/stubs/UI4/Util/PythonSyntaxHighlighter.pyi class PythonSyntaxHighlighter (line 9) | class PythonSyntaxHighlighter(AbstractSyntaxHighlighter): method __init__ (line 10) | def __init__(self, document: PyQt5.QtWidgets.QTextEdit | PyQt5.QtGui.Q... method _createCustomBlocks (line 11) | def _createCustomBlocks(self): ... method _createFormats (line 12) | def _createFormats(self): ... method _createPostBlockRules (line 13) | def _createPostBlockRules(self): ... method _createRules (line 14) | def _createRules(self): ... method highlightBlock (line 15) | def highlightBlock(self, text: str): ... FILE: katana/stubs/UI4/Util/PythonWidgetIntrospector.pyi class CaseInsensitiveStringListModel (line 13) | class CaseInsensitiveStringListModel(PyQt5.QtCore.QStringListModel): method __init__ (line 14) | def __init__(self, parent: Incomplete | None = ..., *args) -> None: ... method setStringList (line 15) | def setStringList(self, stringList): ... class PythonWidgetIntrospector (line 17) | class PythonWidgetIntrospector: method __init__ (line 18) | def __init__(self, parent, executionEnvironment: Incomplete | None = .... method _PythonWidgetIntrospector__findMatchingObjects (line 19) | def _PythonWidgetIntrospector__findMatchingObjects(self, tokenFragment... method _PythonWidgetIntrospector__getFunctionArgsString (line 20) | def _PythonWidgetIntrospector__getFunctionArgsString(self, module: Mod... method _PythonWidgetIntrospector__onCompleterHighlighted (line 21) | def _PythonWidgetIntrospector__onCompleterHighlighted(self, completion... method _PythonWidgetIntrospector__setCompletionPrefix (line 22) | def _PythonWidgetIntrospector__setCompletionPrefix(self, prefix: str):... method _PythonWidgetIntrospector__setTooltipPalette (line 23) | def _PythonWidgetIntrospector__setTooltipPalette(self): ... method addCommandWidget (line 24) | def addCommandWidget(self, widget): ... method addFunctionCallback (line 25) | def addFunctionCallback(self, obj: object, functionName: str, enterCal... method addTooltipWidget (line 26) | def addTooltipWidget(self, widget): ... method endCompletion (line 27) | def endCompletion(self): ... method getCurrentToken (line 28) | def getCurrentToken(self, widget: QWidget, textCursor: Incomplete | No... method getPossibleCompletions (line 29) | def getPossibleCompletions(self, token: str): ... method getStringToLastDelimiter (line 30) | def getStringToLastDelimiter(self, text: str, delimiters: list = ...) ... method getStringToNextDelimiter (line 31) | def getStringToNextDelimiter(self, text: str, delimiters: list = ...) ... method insertCompleterSelection (line 32) | def insertCompleterSelection(self, selectedText: str): ... method onKeyPressEvent (line 33) | def onKeyPressEvent(self, widget: PyQt5.QtWidgets.QWidget, keyEvent: P... method onKeyPressEventExit (line 34) | def onKeyPressEventExit(self, widget: PyQt5.QtWidgets.QWidget, keyEven... method onMouseMove (line 35) | def onMouseMove(self, widget: QWidget, mouseEvent): ... method removeTooltipWidget (line 36) | def removeTooltipWidget(self, widget): ... method setExecutionEnvironment (line 37) | def setExecutionEnvironment(self, env: dict): ... method setUseAutoCompletionPopup (line 38) | def setUseAutoCompletionPopup(self, useAutoCompletionPopup): ... method updateCompletionsWithToken (line 39) | def updateCompletionsWithToken(self, widget: QWidget, token: str): ... FILE: katana/stubs/UI4/Util/Record.pyi class Record (line 5) | class Record: method __init__ (line 6) | def __init__(self: int, index: str, title: str, text: int, level: int,... method getIconName (line 7) | def getIconName(self) -> str | None: ... method getIndex (line 8) | def getIndex(self) -> int: ... method getLevel (line 9) | def getLevel(self) -> int: ... method getText (line 10) | def getText(self) -> str: ... method getTimestamp (line 11) | def getTimestamp(self) -> int: ... method getTitle (line 12) | def getTitle(self) -> str: ... FILE: katana/stubs/UI4/Util/RecordItemModel.pyi class RecordItemModel (line 11) | class RecordItemModel(PyQt5.QtGui.QStandardItemModel): method __init__ (line 14) | def __init__(self, columnTitles: list[str], lowestRecordLevel: int, pa... method _RecordItemModel__on_aboutToQuit (line 15) | def _RecordItemModel__on_aboutToQuit(self): ... method addRecord (line 16) | def addRecord(self, record: Record) -> bool: ... method data (line 17) | def data(self, modelIndex: PyQt5.QtCore.QModelIndex, role: PyQt5.QtCor... method flags (line 18) | def flags(self, modelIndex: PyQt5.QtCore.QModelIndex) -> PyQt5.QtCore.... method formatTimestamp (line 20) | def formatTimestamp(timestamp: float) -> str: ... method getHighestRecordLevel (line 21) | def getHighestRecordLevel(self) -> int: ... method getRecordLevels (line 22) | def getRecordLevels(self) -> set[int]: ... method removeRecord (line 23) | def removeRecord(self, record: Record) -> bool: ... method removeRows (line 24) | def removeRows(self, row: int, count: int, parentIndex: PyQt5.QtCore.Q... method timestampToDateTime (line 26) | def timestampToDateTime(timestamp: float) -> PyQt5.QtCore.QDateTime: ... FILE: katana/stubs/UI4/Util/RenderMenu.pyi class PreviousRenderCommand (line 26) | class PreviousRenderCommand: method isSet (line 29) | def isSet(): ... method render (line 31) | def render(): ... method reset (line 33) | def reset(): ... method set (line 35) | def set(function, node: NodegraphAPI.Node, renderMethodKey, renderMeth... class __RenderMenuClientManager (line 37) | class __RenderMenuClientManager(ClientManager): method __init__ (line 38) | def __init__(self, node: NodegraphAPI.Node, callback: typing.Callable)... method _RenderMenuClientManager__addOrUpdateLocationCallback (line 39) | def _RenderMenuClientManager__addOrUpdateLocationCallback(self, event,... function AddRenderItemsToMenu (line 41) | def AddRenderItemsToMenu(menu, node: NodegraphAPI.Node, port: NodegraphA... function GetFirstLiveRenderMethodNameAndText (line 42) | def GetFirstLiveRenderMethodNameAndText() -> None | None: ... function GetFirstPreviewRenderMethodNameAndText (line 43) | def GetFirstPreviewRenderMethodNameAndText() -> None | None: ... function SetPreviousRenderCommand (line 44) | def SetPreviousRenderCommand(renderMethodName: str, node: NodegraphAPI.N... FILE: katana/stubs/UI4/Util/ScenegraphIconManager.pyi function GetIcon (line 9) | def GetIcon(iconType: str, res: int = ...) -> PyQt5.QtGui.QIcon: ... function GetLargestAvailableResolution (line 10) | def GetLargestAvailableResolution(resolution: float) -> int: ... function GetPixmap (line 11) | def GetPixmap(iconType: str, res: int = ...) -> PyQt5.QtGui.QPixmap: ... function SetIconForLocationTypes (line 12) | def SetIconForLocationTypes(iconType: str, locationTypes): ... FILE: katana/stubs/UI4/Util/ScenegraphLocation.pyi function AddMimeData (line 19) | def AddMimeData(mimeData: PyQt5.QtCore.QMimeData, locationPolicy: QT4For... function CheckMimeData (line 20) | def CheckMimeData(mimeData: PyQt5.QtCore.QMimeData, allowNodes: bool = .... function FillMenu (line 21) | def FillMenu(menu, locationPolicy, contents: Incomplete | None = ..., ad... function FilterLocationPath (line 22) | def FilterLocationPath(unverifiedPath, allowRelative: bool = ...): ... function GetNodesCreatingSceneGraphLocations (line 23) | def GetNodesCreatingSceneGraphLocations(nodes: list[nodes]) -> list[node... function GetReferencingInfo (line 24) | def GetReferencingInfo(locationPolicy): ... function SelectInScenegraph (line 25) | def SelectInScenegraph(locationPath: str): ... function SetMimeData (line 26) | def SetMimeData(mimeData, locationPolicy, allowNodes: bool = ...): ... FILE: katana/stubs/UI4/Util/ScriptButton.pyi function ExecScript (line 7) | def ExecScript(valuePolicy, buttonText, scriptText): ... function GetButtonAndScriptText (line 8) | def GetButtonAndScriptText(valuePolicy): ... FILE: katana/stubs/UI4/Util/Shader.pyi function BrowseForShader (line 7) | def BrowseForShader(valuePolicy): ... FILE: katana/stubs/UI4/Util/TextureManager.pyi function DirtyBufferRects (line 8) | def DirtyBufferRects(frameBufferObj, updateRects): ... function DrawBuffers (line 9) | def DrawBuffers(widget, buffers, drawWindow, displayRequest, overlayMode... function FlushTexturePool (line 10) | def FlushTexturePool(): ... function GetTexturePoolSizeMB (line 11) | def GetTexturePoolSizeMB(): ... FILE: katana/stubs/UI4/Util/TransformManipulatorLayer.pyi class ParameterTransformGroupManipulator (line 20) | class ParameterTransformGroupManipulator(TransformManipulatorLayer): method __init__ (line 23) | def __init__(self, valuePolicy, autoKey: bool = ..., **kwargs) -> None... method _ParameterTransformGroupManipulator__setPolicyValueSingle (line 24) | def _ParameterTransformGroupManipulator__setPolicyValueSingle(self, po... method _ParameterTransformGroupManipulator__transformChanged (line 25) | def _ParameterTransformGroupManipulator__transformChanged(self, transf... method _getPolicyValue (line 26) | def _getPolicyValue(self, policyName): ... method _paramValueChanged (line 27) | def _paramValueChanged(self, args): ... method _setPolicyValue (line 28) | def _setPolicyValue(self, policyName, value, final): ... method _timeChanged (line 29) | def _timeChanged(self, args): ... method _updateTransformsFromPolicy (line 30) | def _updateTransformsFromPolicy(self, changedTransforms: Incomplete | ... method getValuePolicy (line 31) | def getValuePolicy(self): ... method processorFinished (line 32) | def processorFinished(self): ... method processorStarted (line 33) | def processorStarted(self, name): ... class PivotEventProcessor (line 35) | class PivotEventProcessor(TransformEventProcessor): method _update (line 37) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... class RotateEventProcessor (line 39) | class RotateEventProcessor(TransformEventProcessor): method __init__ (line 44) | def __init__(self, layer, **kwargs) -> None: ... method _update (line 45) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... class ScaleEventProcessor (line 47) | class ScaleEventProcessor(TransformEventProcessor): method _update (line 49) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... class ShearEventProcessor (line 51) | class ShearEventProcessor(TransformEventProcessor): method _update (line 54) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... class TransformEventProcessor (line 56) | class TransformEventProcessor(UI4.Util.Events.LayerWorldDragEventProcess... method __init__ (line 58) | def __init__(self, layer, lockX: bool = ..., lockY: bool = ..., **kwar... method _getLockX (line 59) | def _getLockX(self): ... method _getLockY (line 60) | def _getLockY(self): ... method finish (line 61) | def finish(self, *args, **kwargs): ... class TransformManipulatorLayer (line 63) | class TransformManipulatorLayer(QT4GLLayerStack.LayerStack.Layer, UI4.Ut... class COMPONENTS (line 64) | class COMPONENTS(enum.Enum): method __init__ (line 75) | def __init__(cls, value) -> None: ... method _generate_next_value_ (line 76) | def _generate_next_value_(self, name, start, count, last_values): ... class COORDINATE_SYSTEM (line 78) | class COORDINATE_SYSTEM(enum.Enum): method __init__ (line 87) | def __init__(cls, value) -> None: ... method _generate_next_value_ (line 88) | def _generate_next_value_(self, name, start, count, last_values): ... class PICK (line 90) | class PICK(enum.Enum): method __init__ (line 107) | def __init__(cls, value) -> None: ... method _generate_next_value_ (line 108) | def _generate_next_value_(self, name, start, count, last_values): ... class _TransformManipulatorLayer__Suppressor (line 110) | class _TransformManipulatorLayer__Suppressor: method __init__ (line 111) | def __init__(self, layer) -> None: ... method __enter__ (line 112) | def __enter__(self): ... method __exit__ (line 113) | def __exit__(self, excType, excValue, tb): ... method __init__ (line 120) | def __init__(self, name: Incomplete | None = ..., visible: bool = ...,... method _TransformManipulatorLayer__drawManipulator (line 121) | def _TransformManipulatorLayer__drawManipulator(self, p, pick: bool = ... method _TransformManipulatorLayer__emitTransformChanged (line 122) | def _TransformManipulatorLayer__emitTransformChanged(self, changeInfoD... method _TransformManipulatorLayer__getEventProcessorForPick (line 123) | def _TransformManipulatorLayer__getEventProcessorForPick(self, pick): ... method _TransformManipulatorLayer__getWorldPointOnLocalAxisAtAngle (line 124) | def _TransformManipulatorLayer__getWorldPointOnLocalAxisAtAngle(self, ... method _TransformManipulatorLayer__paintManipulator (line 125) | def _TransformManipulatorLayer__paintManipulator(self, pick: bool = ..... method _TransformManipulatorLayer__pickManipulator (line 126) | def _TransformManipulatorLayer__pickManipulator(self, windowMousePos, ... method _clearMatrix (line 127) | def _clearMatrix(self): ... method _getComponentMatrix (line 128) | def _getComponentMatrix(self, component, toPivot, fromPivot): ... method _processEvent (line 129) | def _processEvent(self, event): ... method getMatrix (line 130) | def getMatrix(self, applyScale: bool = ..., applyShear: bool = ..., sp... method getOrder (line 131) | def getOrder(self): ... method getPivot (line 132) | def getPivot(self): ... method getRotation (line 133) | def getRotation(self): ... method getScale (line 134) | def getScale(self): ... method getScaleMultiplier (line 135) | def getScaleMultiplier(self): ... method getShear (line 136) | def getShear(self): ... method getShearAddition (line 137) | def getShearAddition(self): ... method getSignalSuppressor (line 138) | def getSignalSuppressor(self): ... method getTranslation (line 139) | def getTranslation(self): ... method isChanged (line 140) | def isChanged(self): ... method isLocked (line 141) | def isLocked(self, component): ... method makeIdentity (line 142) | def makeIdentity(self): ... method mapFromLocal (line 143) | def mapFromLocal(self, point, sys, applyScale: bool = ..., applyShear:... method mapToLocal (line 144) | def mapToLocal(self, point, sys, applyScale: bool = ..., applyShear: b... method paintGL (line 145) | def paintGL(self): ... method processEvent (line 146) | def processEvent(self, event): ... method processorFinished (line 147) | def processorFinished(self): ... method processorStarted (line 148) | def processorStarted(self, name): ... method setLocked (line 149) | def setLocked(self, component, isLocked): ... method setOrder (line 150) | def setOrder(self, transformOrderTuple): ... method setPivot (line 151) | def setPivot(self, pivot, emit: bool = ..., final: bool = ...): ... method setRotation (line 152) | def setRotation(self, degrees, emit: bool = ..., final: bool = ...): ... method setScale (line 153) | def setScale(self, scale, emit: bool = ..., final: bool = ...): ... method setScaleMultiplier (line 154) | def setScaleMultiplier(self, sm): ... method setShear (line 155) | def setShear(self, shear, emit: bool = ..., final: bool = ...): ... method setShearAddition (line 156) | def setShearAddition(self, xm): ... method setTranslation (line 157) | def setTranslation(self, translation: tuple, emit: bool = ..., final: ... method start (line 158) | def start(self, pick, event): ... method suppressSignals (line 159) | def suppressSignals(self, v): ... class TranslateEventProcessor (line 161) | class TranslateEventProcessor(TransformEventProcessor): method _update (line 163) | def _update(self, worldStart, worldEnd, modifiers, initial: bool = ...... FILE: katana/stubs/UI4/Util/UndoGrouping.pyi class UndoContextGuard (line 6) | class UndoContextGuard: method __init__ (line 7) | def __init__(self, name, logWarnings: bool = ...) -> None: ... method __enter__ (line 8) | def __enter__(self): ... method __exit__ (line 9) | def __exit__(self, excType, excValue, tb): ... class UndoGrouping (line 11) | class UndoGrouping: method __init__ (line 12) | def __init__(self, name) -> None: ... method __del__ (line 13) | def __del__(self) -> None: ... FILE: katana/stubs/UI4/Util/Views.pyi class ViewCheckboxPopup (line 14) | class ViewCheckboxPopup(PyQt5.QtWidgets.QFrame): method __init__ (line 19) | def __init__(self, valuePolicy) -> None: ... method _ViewCheckboxPopup__allToggled (line 20) | def _ViewCheckboxPopup__allToggled(self, on): ... method _ViewCheckboxPopup__anyToggled (line 21) | def _ViewCheckboxPopup__anyToggled(self, on): ... method _ViewCheckboxPopup__updateState (line 22) | def _ViewCheckboxPopup__updateState(self, vpEvent: Incomplete | None =... method closeEvent (line 23) | def closeEvent(self, ev): ... function GetActiveViewDescription (line 25) | def GetActiveViewDescription(viewMask, richText: bool = ...): ... function QColorFromView (line 26) | def QColorFromView(viewName): ... FILE: katana/stubs/UI4/Util/WorkingSets.pyi function IncludeProxyChildrenInWorkingSet (line 5) | def IncludeProxyChildrenInWorkingSet(locationPaths: list[str], workingSe... FILE: katana/stubs/UI4/Util/WorldCursorCircleLayer.pyi class WorldCursorCircleLayer (line 14) | class WorldCursorCircleLayer(LayerWithTransform, QT4GLLayerStack.LayerSt... method __init__ (line 18) | def __init__(self, node: NodegraphAPI.Node, radius: Incomplete | None ... method _drawCursor (line 19) | def _drawCursor(self, cursorPos, radius, color): ... method getCursorPos (line 20) | def getCursorPos(self): ... method getRadius (line 21) | def getRadius(self): ... method paintGL (line 22) | def paintGL(self): ... method setCursorPos (line 23) | def setCursorPos(self, newCursorPos): ... method setRadius (line 24) | def setRadius(self, r): ... method setVisible (line 25) | def setVisible(self, visible): ... FILE: katana/stubs/UI4/Widgets/AssetIDLabel.pyi class AssetIDLabel (line 13) | class AssetIDLabel(PopdownLabel): method __init__ (line 14) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method buildMenu (line 15) | def buildMenu(self, menu: PyQt5.QtWidgets.QMenu): ... FILE: katana/stubs/UI4/Widgets/AttributeDropLabel.pyi class AttributeDropLabel (line 10) | class AttributeDropLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 14) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None) -> None: ... method dragEnterEvent (line 15) | def dragEnterEvent(self, event: PyQt5.QtGui.QDragEnterEvent): ... method dropEvent (line 16) | def dropEvent(self, event: PyQt5.QtGui.QDropEvent): ... FILE: katana/stubs/UI4/Widgets/AttributeEditorIndicatorLabel.pyi class AttributeEditorIndicatorLabel (line 7) | class AttributeEditorIndicatorLabel(IndicatorLabelFrame): method __init__ (line 8) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method setDisplay (line 9) | def setDisplay(self, editable: bool, message: str = ..., nodeName: str... FILE: katana/stubs/UI4/Widgets/AttributeHistoryWidgets.pyi class AttributeHistoryPopup (line 27) | class AttributeHistoryPopup(_BasePopup): method _startHistoryComputation (line 28) | def _startHistoryComputation(self): ... class AttributeHistoryPopupWidget (line 30) | class AttributeHistoryPopupWidget(_BasePopupWidget): method _buildPopupWindow (line 31) | def _buildPopupWindow(self): ... class AttributeHistoryTreeWidget (line 33) | class AttributeHistoryTreeWidget(SortableTreeWidget): method __init__ (line 46) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method GetAttributeDataToDisplay (line 48) | def GetAttributeDataToDisplay(cls, attribute: PyFnAttribute.DataAttrib... method GetDisplayTextAndIconType (line 50) | def GetDisplayTextAndIconType(cls, historyEntry: str) -> tuple[str, in... method GetPixmap (line 52) | def GetPixmap(cls, iconType: int) -> PyQt5.QtGui.QPixmap: ... method _AttributeHistoryTreeWidget__addDummyItem (line 53) | def _AttributeHistoryTreeWidget__addDummyItem(self, text): ... method _AttributeHistoryTreeWidget__doHistoryCalculation (line 54) | def _AttributeHistoryTreeWidget__doHistoryCalculation(self, historyFun... method _AttributeHistoryTreeWidget__historyCompleteCallback (line 55) | def _AttributeHistoryTreeWidget__historyCompleteCallback(self, history... method _AttributeHistoryTreeWidget__historyUpdateCallback (line 56) | def _AttributeHistoryTreeWidget__historyUpdateCallback(self, historyEn... method _AttributeHistoryTreeWidget__on_treeWidget_itemActivated (line 57) | def _AttributeHistoryTreeWidget__on_treeWidget_itemActivated(self, ite... method _AttributeHistoryTreeWidget__removeDummyItem (line 58) | def _AttributeHistoryTreeWidget__removeDummyItem(self): ... method _AttributeHistoryTreeWidget__setCallbacks (line 59) | def _AttributeHistoryTreeWidget__setCallbacks(self, completeCallback: ... method _AttributeHistoryTreeWidget__setNodeEdited (line 60) | def _AttributeHistoryTreeWidget__setNodeEdited(self): ... method _AttributeHistoryTreeWidget__setNumberOfItems (line 61) | def _AttributeHistoryTreeWidget__setNumberOfItems(self, numberOfItems)... method _AttributeHistoryTreeWidget__updateFromHistory (line 62) | def _AttributeHistoryTreeWidget__updateFromHistory(self, historyEntrie... method _AttributeHistoryTreeWidget__updateItem (line 63) | def _AttributeHistoryTreeWidget__updateItem(self, index, historyEntry,... method deleteHistory (line 64) | def deleteHistory(self): ... method getAttributeCreationNode (line 65) | def getAttributeCreationNode(self, completeCallback: typing.Optional[t... method getAttributeInheritance (line 66) | def getAttributeInheritance(self, completeCallback: typing.Optional[ty... method getAttributeSetNode (line 67) | def getAttributeSetNode(self, completeCallback: typing.Optional[typing... method getNodeHistory (line 68) | def getNodeHistory(self, completeCallback: typing.Optional[typing.Call... method initializeHistory (line 69) | def initializeHistory(self, locationPath, attributeName, startNode: In... method setProcessing (line 70) | def setProcessing(self, isProcessing): ... class AttributeInheritancePopup (line 72) | class AttributeInheritancePopup(_BasePopup): method __init__ (line 73) | def __init__(self, parent) -> None: ... method _startHistoryComputation (line 74) | def _startHistoryComputation(self): ... class AttributeInheritancePopupWidget (line 76) | class AttributeInheritancePopupWidget(_BasePopupWidget): method _buildPopupWindow (line 77) | def _buildPopupWindow(self): ... class _BasePopup (line 79) | class _BasePopup(QT4Widgets.FilterablePopupButton.FilterablePopup): class ElidedLabel (line 80) | class ElidedLabel(PyQt5.QtWidgets.QLabel): method minimumSizeHint (line 81) | def minimumSizeHint(self): ... method paintEvent (line 82) | def paintEvent(self, event): ... method __init__ (line 85) | def __init__(self, parent) -> None: ... method _BasePopup__on_hide (line 86) | def _BasePopup__on_hide(self): ... method _BasePopup__on_itemChosen (line 87) | def _BasePopup__on_itemChosen(self): ... method _BasePopup__on_pref_changed (line 88) | def _BasePopup__on_pref_changed(self, args): ... method _BasePopup__on_showInternalNodesCheckBox_stateChanged (line 89) | def _BasePopup__on_showInternalNodesCheckBox_stateChanged(self, state:... method _BasePopup__on_timer_timeout (line 90) | def _BasePopup__on_timer_timeout(self): ... method _BasePopup__refreshFromPrefs (line 91) | def _BasePopup__refreshFromPrefs(self): ... method _BasePopup__setProcessing (line 92) | def _BasePopup__setProcessing(self, isProcessing): ... method _BasePopup__startProcessing (line 93) | def _BasePopup__startProcessing(self): ... method _buildTreeWidget (line 94) | def _buildTreeWidget(self): ... method _getShowInternalNodesCheckBox (line 95) | def _getShowInternalNodesCheckBox(self): ... method _historyCompleteCallback (line 96) | def _historyCompleteCallback(self, nodeHistory): ... method _historyUpdateCallback (line 97) | def _historyUpdateCallback(self, nodeHistory): ... method _startHistoryComputation (line 98) | def _startHistoryComputation(self): ... method computeHistory (line 99) | def computeHistory(self, locationPath, attributeName, startNode: Incom... class _BasePopupWidget (line 101) | class _BasePopupWidget(FilterablePopupButton): method __init__ (line 103) | def __init__(self, parent) -> None: ... method popup (line 104) | def popup(self, locationPath, attributeName, startNode: Incomplete | N... function AddAttributeHistoryActionsToMenu (line 106) | def AddAttributeHistoryActionsToMenu(policy: AbstractValuePolicy, menu: ... FILE: katana/stubs/UI4/Widgets/AutoKeyToggle.pyi class AutoKeyAllToggle (line 10) | class AutoKeyAllToggle(ToolbarButton): method __init__ (line 11) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _AutoKeyAllToggle__on_clicked (line 12) | def _AutoKeyAllToggle__on_clicked(self): ... method _AutoKeyAllToggle__on_parameter_setAutoKeyAll (line 13) | def _AutoKeyAllToggle__on_parameter_setAutoKeyAll(self, eventType, eve... method _AutoKeyAllToggle__updateIcon (line 14) | def _AutoKeyAllToggle__updateIcon(self): ... FILE: katana/stubs/UI4/Widgets/BaseLayoutResizer.pyi class BaseLayoutResizer (line 12) | class BaseLayoutResizer(PyQt5.QtWidgets.QFrame): method __init__ (line 13) | def __init__(self, targetWidget: PyQt5.QtWidgets.QWidget, beforeTarget... method enterEvent (line 14) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method leaveEvent (line 15) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method mouseMoveEvent (line 16) | def mouseMoveEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method mousePressEvent (line 17) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method mouseReleaseEvent (line 18) | def mouseReleaseEvent(self, event: PyQt5.QtGui.QMouseEvent): ... FILE: katana/stubs/UI4/Widgets/BaseNodeGraphLayerStack.pyi class BaseNodeGraphLayerStack (line 11) | class BaseNodeGraphLayerStack(LayerStack): method frameNodes (line 12) | def frameNodes(self, nodes: list[NodegraphAPI.Node], zoom: bool = ...)... method frameNodesOnBounds (line 13) | def frameNodesOnBounds(self, zoom: bool, bounds: list[float], scales: ... FILE: katana/stubs/UI4/Widgets/BaseWidgets.pyi class BaseFrame (line 8) | class BaseFrame(PyQt5.QtWidgets.QFrame, KeyboardShortcutManagerMixin): ... class BaseMainWindow (line 10) | class BaseMainWindow(PyQt5.QtWidgets.QMainWindow, KeyboardShortcutManage... class BaseWidget (line 12) | class BaseWidget(PyQt5.QtWidgets.QWidget, KeyboardShortcutManagerMixin):... FILE: katana/stubs/UI4/Widgets/CameraPickerButton.pyi class CameraPickerButton (line 24) | class CameraPickerButton(FilterablePopupButton): method __init__ (line 28) | def __init__(self, parent: Incomplete | None = ..., flat: bool = ..., ... method _CameraPickerButton__asyncGetProducerAtLocation (line 29) | def _CameraPickerButton__asyncGetProducerAtLocation(self, location: st... method _CameraPickerButton__getCameraLocations (line 30) | def _CameraPickerButton__getCameraLocations(self): ... method _CameraPickerButton__getLightLocations (line 31) | def _CameraPickerButton__getLightLocations(self): ... method _CameraPickerButton__getLocationType (line 32) | def _CameraPickerButton__getLocationType(self, locationPath): ... method _CameraPickerButton__getProducerAtLocation (line 33) | def _CameraPickerButton__getProducerAtLocation(self, location: str) ->... method _CameraPickerButton__getRenderCameraPath (line 34) | def _CameraPickerButton__getRenderCameraPath(self): ... method _CameraPickerButton__on_event_idle (line 35) | def _CameraPickerButton__on_event_idle(self, *args, **kwargs): ... method _CameraPickerButton__setupClient (line 36) | def _CameraPickerButton__setupClient(self): ... method _CameraPickerButton__validateLocation (line 37) | def _CameraPickerButton__validateLocation(self, locationPath): ... method _CameraPickerButton__validateLocationExists (line 38) | def _CameraPickerButton__validateLocationExists(self, locationPath): ... method _shouldValidateLocation (line 39) | def _shouldValidateLocation(self) -> bool: ... method addBuiltin (line 40) | def addBuiltin(self, name: str): ... method clearBuiltins (line 41) | def clearBuiltins(self): ... method dragEnterEvent (line 42) | def dragEnterEvent(self, event: PyQt5.QtGui.QDragEnterEvent): ... method dropEvent (line 43) | def dropEvent(self, event: PyQt5.QtGui.QDropEvent): ... method getBuiltInCameraPath (line 44) | def getBuiltInCameraPath(self, cameraName): ... method getBuiltInNameFromPath (line 45) | def getBuiltInNameFromPath(self, cameraPath): ... method getBuiltIns (line 46) | def getBuiltIns(self): ... method on_aboutToShow (line 47) | def on_aboutToShow(self): ... method on_checkbox_stateChanged (line 48) | def on_checkbox_stateChanged(self, state: PyQt5.QtCore.Qt.CheckState):... method on_itemChosen (line 49) | def on_itemChosen(self, value: str, meta: tuple): ... method on_validateLocationsCheckbox_stateChanged (line 50) | def on_validateLocationsCheckbox_stateChanged(self, state: PyQt5.QtCor... method populate (line 51) | def populate(self): ... method setCameraPath (line 52) | def setCameraPath(self, path: str): ... method setDisplayMode (line 53) | def setDisplayMode(self, displayMode: int): ... method setScenegraphPixmap (line 54) | def setScenegraphPixmap(self, pixmap: PyQt5.QtGui.QPixmap | None): ... FILE: katana/stubs/UI4/Widgets/CatalogChannelsWidget.pyi class CatalogChannelsWidget (line 10) | class CatalogChannelsWidget(PyQt5.QtWidgets.QLabel): method __init__ (line 11) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogChannelsWidget__catalog_itemDelete_CB (line 12) | def _CatalogChannelsWidget__catalog_itemDelete_CB(self, eventType, eve... method _CatalogChannelsWidget__catalog_itemPropertyUpdate_CB (line 13) | def _CatalogChannelsWidget__catalog_itemPropertyUpdate_CB(self, eventT... method setCatalogItem (line 14) | def setCatalogItem(self, catalogItem: CatalogAPI.CatalogItem.CatalogIt... method updateState (line 15) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/CatalogFrameRangeWidget.pyi class CatalogFrameRangeWidget (line 10) | class CatalogFrameRangeWidget(PyQt5.QtWidgets.QLabel): method __init__ (line 11) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogFrameRangeWidget__catalog_itemDelete_CB (line 12) | def _CatalogFrameRangeWidget__catalog_itemDelete_CB(self, eventType, e... method _CatalogFrameRangeWidget__catalog_itemPropertyUpdate_CB (line 13) | def _CatalogFrameRangeWidget__catalog_itemPropertyUpdate_CB(self, even... method setCatalogItem (line 14) | def setCatalogItem(self, catalogItem: CatalogAPI.CatalogItem.CatalogIt... method updateState (line 15) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/CatalogHistogramWidget.pyi class CatalogHistogramWidget (line 12) | class CatalogHistogramWidget(QT4Color.Histogram.HistogramWidget): method __init__ (line 13) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogHistogramWidget__catalog_itemDelete_CB (line 14) | def _CatalogHistogramWidget__catalog_itemDelete_CB(self, eventType, ev... method _CatalogHistogramWidget__catalog_itemImageUpdate_CB (line 15) | def _CatalogHistogramWidget__catalog_itemImageUpdate_CB(self, eventTyp... method _CatalogHistogramWidget__doThrottledUpdate (line 16) | def _CatalogHistogramWidget__doThrottledUpdate(self): ... method _CatalogHistogramWidget__updateImmediate (line 17) | def _CatalogHistogramWidget__updateImmediate(self): ... method _CatalogHistogramWidget__updateTimer_CB (line 18) | def _CatalogHistogramWidget__updateTimer_CB(self): ... method setCatalogItem (line 19) | def setCatalogItem(self, catalogItem: CatalogAPI.CatalogItem.CatalogIt... method setColorspace (line 20) | def setColorspace(self, colorspace: str): ... method setRect (line 21) | def setRect(self, rect: tuple | list[int]): ... FILE: katana/stubs/UI4/Widgets/CatalogItemWidget.pyi class CatalogItemWidget (line 18) | class CatalogItemWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 20) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogItemWidget__catalogItemDropped_CB (line 21) | def _CatalogItemWidget__catalogItemDropped_CB(self, item): ... method getLockLayout (line 22) | def getLockLayout(self) -> PyQt5.QtWidgets.QHBoxLayout: ... method getNameLayout (line 23) | def getNameLayout(self) -> PyQt5.QtWidgets.QHBoxLayout: ... method setCatalogItem (line 24) | def setCatalogItem(self, item): ... FILE: katana/stubs/UI4/Widgets/CatalogLockWidget.pyi class CatalogLockWidget (line 11) | class CatalogLockWidget(ToolbarButton): method __init__ (line 12) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogLockWidget__catalog_itemDelete_CB (line 13) | def _CatalogLockWidget__catalog_itemDelete_CB(self, eventType, eventID... method _CatalogLockWidget__catalog_itemPropertyUpdate_cb (line 14) | def _CatalogLockWidget__catalog_itemPropertyUpdate_cb(self, eventType,... method _CatalogLockWidget__clickedCB (line 15) | def _CatalogLockWidget__clickedCB(self): ... method setCatalogItem (line 16) | def setCatalogItem(self, catalogItem: CatalogAPI.CatalogItem.CatalogIt... method updateState (line 17) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/CatalogNameWidget.pyi class CatalogNameWidget (line 11) | class CatalogNameWidget(PyQt5.QtWidgets.QLabel): method __init__ (line 12) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogNameWidget__catalog_itemDelete_CB (line 13) | def _CatalogNameWidget__catalog_itemDelete_CB(self, eventType, eventID... method _CatalogNameWidget__catalog_itemPropertyUpdate_CB (line 14) | def _CatalogNameWidget__catalog_itemPropertyUpdate_CB(self, eventType,... method resizeEvent (line 15) | def resizeEvent(self, event: PyQt5.QtGui.QResizeEvent): ... method setCatalogItem (line 16) | def setCatalogItem(self, catalogItem: CatalogAPI.CatalogItem.CatalogIt... method updateState (line 17) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/CatalogProgressWidget.pyi class CatalogProgressWidget (line 16) | class CatalogProgressWidget(ProgressWidget): method __init__ (line 17) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method GetProgressBarColors (line 19) | def GetProgressBarColors(catalogItem: CatalogAPI.CatalogItem.CatalogIt... method _CatalogProgressWidget__catalog_itemDelete_CB (line 20) | def _CatalogProgressWidget__catalog_itemDelete_CB(self, eventType, eve... method _CatalogProgressWidget__catalog_itemPropertyUpdate_cb (line 21) | def _CatalogProgressWidget__catalog_itemPropertyUpdate_cb(self, eventT... method _CatalogProgressWidget__update (line 22) | def _CatalogProgressWidget__update(self): ... method setCatalogItem (line 23) | def setCatalogItem(self, item): ... class ProgressWidget (line 25) | class ProgressWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 30) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method GetProgressBarColors (line 32) | def GetProgressBarColors(state: int, indefinite: bool = ...) -> None: ... method getFraction (line 33) | def getFraction(self) -> float: ... method getState (line 34) | def getState(self) -> int: ... method isIndefinite (line 35) | def isIndefinite(self) -> bool: ... method paintEvent (line 36) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method setFraction (line 37) | def setFraction(self, fraction: float): ... method setIndefinite (line 38) | def setIndefinite(self, indefinite: bool): ... method setState (line 39) | def setState(self, state: int): ... method sizeHint (line 40) | def sizeHint(self) -> PyQt5.QtCore.QSize: ... FILE: katana/stubs/UI4/Widgets/CatalogRenderLogWidget.pyi class CatalogRenderLogWidget (line 10) | class CatalogRenderLogWidget(LogView): method __init__ (line 11) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogRenderLogWidget__catalog_itemDelete_CB (line 12) | def _CatalogRenderLogWidget__catalog_itemDelete_CB(self, eventType, ev... method _CatalogRenderLogWidget__catalog_renderLogAppend_CB (line 13) | def _CatalogRenderLogWidget__catalog_renderLogAppend_CB(self, eventTyp... method _CatalogRenderLogWidget__catalog_renderLogReset_CB (line 14) | def _CatalogRenderLogWidget__catalog_renderLogReset_CB(self, eventType... method _CatalogRenderLogWidget__renderLog_listenForMessageAppends (line 15) | def _CatalogRenderLogWidget__renderLog_listenForMessageAppends(self, e... method getCatalogItem (line 16) | def getCatalogItem(self) -> CatalogAPI.CatalogItem.CatalogItem | None:... method setCatalogItem (line 17) | def setCatalogItem(self, item): ... method unlockAutoScrolling (line 18) | def unlockAutoScrolling(self): ... method updateState (line 19) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/CatalogRenderStatsWidget.pyi class CatalogRenderGlobalsStatsWidget (line 12) | class CatalogRenderGlobalsStatsWidget(PyQt5.QtWidgets.QTreeWidget): method __init__ (line 14) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogRenderGlobalsStatsWidget__catalog_itemDelete_CB (line 15) | def _CatalogRenderGlobalsStatsWidget__catalog_itemDelete_CB(self, even... method _CatalogRenderGlobalsStatsWidget__catalog_renderStatsUpdate_CB (line 16) | def _CatalogRenderGlobalsStatsWidget__catalog_renderStatsUpdate_CB(sel... method getStats (line 17) | def getStats(self) -> PyXmlIO.Element | None: ... method setCatalogItem (line 18) | def setCatalogItem(self, item): ... method updateState (line 19) | def updateState(self): ... class CatalogRenderTaskByNameStatsWidget (line 21) | class CatalogRenderTaskByNameStatsWidget(PyQt5.QtWidgets.QTreeWidget): method __init__ (line 23) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogRenderTaskByNameStatsWidget__catalog_itemDelete_CB (line 24) | def _CatalogRenderTaskByNameStatsWidget__catalog_itemDelete_CB(self, e... method _CatalogRenderTaskByNameStatsWidget__catalog_renderStatsUpdate_CB (line 25) | def _CatalogRenderTaskByNameStatsWidget__catalog_renderStatsUpdate_CB(... method getStats (line 26) | def getStats(self) -> PyXmlIO.Element | None: ... method setCatalogItem (line 27) | def setCatalogItem(self, item): ... method updateState (line 28) | def updateState(self): ... class CatalogRenderTaskByTypeStatsWidget (line 30) | class CatalogRenderTaskByTypeStatsWidget(PyQt5.QtWidgets.QTreeWidget): method __init__ (line 32) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _CatalogRenderTaskByTypeStatsWidget__catalog_itemDelete_CB (line 33) | def _CatalogRenderTaskByTypeStatsWidget__catalog_itemDelete_CB(self, e... method _CatalogRenderTaskByTypeStatsWidget__catalog_renderStatsUpdate_CB (line 34) | def _CatalogRenderTaskByTypeStatsWidget__catalog_renderStatsUpdate_CB(... method getStats (line 35) | def getStats(self) -> PyXmlIO.Element | None: ... method setCatalogItem (line 36) | def setCatalogItem(self, item): ... method updateState (line 37) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/CatalogResolutionWidget.pyi class CatalogResolutionWidget (line 10) | class CatalogResolutionWidget(PyQt5.QtWidgets.QLabel): method __init__ (line 11) | def __init__(self, *args) -> None: ... method _CatalogResolutionWidget__catalog_itemDelete_CB (line 12) | def _CatalogResolutionWidget__catalog_itemDelete_CB(self, eventType, e... method _CatalogResolutionWidget__catalog_itemPropertyUpdate_CB (line 13) | def _CatalogResolutionWidget__catalog_itemPropertyUpdate_CB(self, even... method mousePressEvent (line 14) | def mousePressEvent(self, ev): ... method setCatalogItem (line 15) | def setCatalogItem(self, catalogItem): ... method updateState (line 16) | def updateState(self, *args, **kwargs): ... FILE: katana/stubs/UI4/Widgets/CatalogStopWidget.pyi class CatalogStopWidget (line 10) | class CatalogStopWidget(UI4.Widgets.StopButton.SimpleStopWidget): method __init__ (line 11) | def __init__(self, parent) -> None: ... method _CatalogStopWidget__catalog_itemDelete_CB (line 12) | def _CatalogStopWidget__catalog_itemDelete_CB(self, eventType, eventID... method _CatalogStopWidget__catalog_itemPropertyUpdate_cb (line 13) | def _CatalogStopWidget__catalog_itemPropertyUpdate_cb(self, eventType,... method _CatalogStopWidget__updateAndAdvance (line 14) | def _CatalogStopWidget__updateAndAdvance(self): ... method mousePressEvent (line 15) | def mousePressEvent(self, event): ... method setCatalogItem (line 16) | def setCatalogItem(self, item): ... FILE: katana/stubs/UI4/Widgets/CatalogThumbnailWidget.pyi class CatalogItemThumbnailMixin (line 15) | class CatalogItemThumbnailMixin: method __init__ (line 16) | def __init__(self, catalogItem: Incomplete | None = ...) -> None: ... method _onCatalogItemChanged (line 17) | def _onCatalogItemChanged(self): ... method _updateThumbnailPixmap (line 18) | def _updateThumbnailPixmap(self, width: int, height: int) -> bool: ... method getCatalogItem (line 19) | def getCatalogItem(self) -> CatalogItem: ... method setCatalogItem (line 20) | def setCatalogItem(self, catalogItem: CatalogItem): ... class CatalogThumbnailWidget (line 22) | class CatalogThumbnailWidget(CatalogItemThumbnailMixin, PyQt5.QtWidgets.... method __init__ (line 24) | def __init__(self, *args) -> None: ... method _CatalogThumbnailWidget__catalog_itemDelete_CB (line 25) | def _CatalogThumbnailWidget__catalog_itemDelete_CB(self, eventType, ev... method _CatalogThumbnailWidget__catalog_itemThumbnailUpdate_CB (line 26) | def _CatalogThumbnailWidget__catalog_itemThumbnailUpdate_CB(self, even... method _CatalogThumbnailWidget__startDrag (line 27) | def _CatalogThumbnailWidget__startDrag(self): ... method _onCatalogItemChanged (line 28) | def _onCatalogItemChanged(self): ... method customEvent (line 29) | def customEvent(self, event): ... method dragEnterEvent (line 30) | def dragEnterEvent(self, event): ... method dragLeaveEvent (line 31) | def dragLeaveEvent(self, ev): ... method dropEvent (line 32) | def dropEvent(self, event): ... method mousePressEvent (line 33) | def mousePressEvent(self, event): ... method paintEvent (line 34) | def paintEvent(self, event): ... method sizeHint (line 35) | def sizeHint(self): ... FILE: katana/stubs/UI4/Widgets/CelResultsWidget.pyi class CelResultsWidget (line 11) | class CelResultsWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 12) | def __init__(self, parent, paths) -> None: ... method _CelResultsWidget__aboutToDrag (line 13) | def _CelResultsWidget__aboutToDrag(self, dragItems, dragObject): ... method _CelResultsWidget__actionMenuAboutToShow (line 14) | def _CelResultsWidget__actionMenuAboutToShow(self): ... method _CelResultsWidget__deleteHidden (line 15) | def _CelResultsWidget__deleteHidden(self): ... method _CelResultsWidget__deleteSelected (line 16) | def _CelResultsWidget__deleteSelected(self): ... method _CelResultsWidget__filterUpdate (line 17) | def _CelResultsWidget__filterUpdate(self, filterText): ... method _CelResultsWidget__keypressCallback (line 18) | def _CelResultsWidget__keypressCallback(self, event): ... method _CelResultsWidget__onlyShowBaseName (line 19) | def _CelResultsWidget__onlyShowBaseName(self, checked): ... method _CelResultsWidget__selectAllVisible (line 20) | def _CelResultsWidget__selectAllVisible(self): ... method getTreeWidget (line 21) | def getTreeWidget(self): ... method showEvent (line 22) | def showEvent(self, event): ... method sizeHint (line 23) | def sizeHint(self): ... method update (line 24) | def update(self): ... class CelResultsWindow (line 26) | class CelResultsWindow(PyQt5.QtWidgets.QDialog): method __init__ (line 28) | def __init__(self, paths) -> None: ... method closeEvent (line 29) | def closeEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/CheckableTreeDialog.pyi class CheckableTreeDialog (line 10) | class CheckableTreeDialog(PyQt5.QtWidgets.QDialog): class CheckableItem (line 11) | class CheckableItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 12) | def __init__(self, parent, name, enabled) -> None: ... method itemData (line 13) | def itemData(self): ... class CheckableTreeWidget (line 15) | class CheckableTreeWidget(PyQt5.QtWidgets.QTreeWidget): method __init__ (line 16) | def __init__(self, *args) -> None: ... method _CheckableTreeWidget__currentItemChanged (line 17) | def _CheckableTreeWidget__currentItemChanged(self, current, previous... method __init__ (line 18) | def __init__(self, parent, data) -> None: ... method _CheckableTreeDialog__doFilterChanged (line 19) | def _CheckableTreeDialog__doFilterChanged(self, filterText, filterType... method getSelection (line 20) | def getSelection(self): ... method sortByColumn (line 21) | def sortByColumn(self, column): ... class TreeIter (line 23) | class TreeIter(PyQt5.QtWidgets.QTreeWidgetItemIterator): method __init__ (line 24) | def __init__(self, *args) -> None: ... method __iter__ (line 25) | def __iter__(self): ... method __next__ (line 26) | def __next__(self): ... FILE: katana/stubs/UI4/Widgets/Checkbox.pyi class Checkbox (line 8) | class Checkbox(PyQt5.QtWidgets.QCheckBox): method hitButton (line 9) | def hitButton(self, pos: PyQt5.QtCore.QPoint) -> bool: ... FILE: katana/stubs/UI4/Widgets/CollectAndSelect.pyi class CollectAndSelectInScenegraph (line 14) | class CollectAndSelectInScenegraph: method __init__ (line 15) | def __init__(self, cel, loc) -> None: ... method _CollectAndSelectInScenegraph__collectionInterruptCallback (line 16) | def _CollectAndSelectInScenegraph__collectionInterruptCallback(self, n... method _CollectAndSelectInScenegraph__setInterrupt (line 17) | def _CollectAndSelectInScenegraph__setInterrupt(self): ... method collectAndSelect (line 18) | def collectAndSelect(self, select: bool = ..., replace: bool = ..., no... FILE: katana/stubs/UI4/Widgets/ColorProbeButton.pyi class ColorProbeBase (line 12) | class ColorProbeBase: method __init__ (line 17) | def __init__(self, defaultBuffer: int = ..., defaultStat: str = ..., a... method _ColorProbeBase__monitor_pixelProbeResult_CB (line 18) | def _ColorProbeBase__monitor_pixelProbeResult_CB(self, eventType, even... method _fillMenu (line 19) | def _fillMenu(self, menu): ... method _isEnabled (line 20) | def _isEnabled(self): ... method _probeResult (line 21) | def _probeResult(self, probeInfo): ... method getBuffer (line 22) | def getBuffer(self): ... method getStatsType (line 23) | def getStatsType(self): ... method isOn (line 24) | def isOn(self): ... method setOn (line 25) | def setOn(self, on): ... class ColorProbeButton (line 27) | class ColorProbeButton(ToolbarButton, ColorProbeBase): method __init__ (line 29) | def __init__(self, parent, **kwargs) -> None: ... method _ColorProbeButton__aboutToShowControlMenu_CB (line 30) | def _ColorProbeButton__aboutToShowControlMenu_CB(self): ... method _ColorProbeButton__toggled_CB (line 31) | def _ColorProbeButton__toggled_CB(self): ... method _isEnabled (line 32) | def _isEnabled(self): ... method _probeResult (line 33) | def _probeResult(self, probeInfo): ... method getControlMenu (line 34) | def getControlMenu(self): ... FILE: katana/stubs/UI4/Widgets/ComboBoxNoWheel.pyi class ComboBoxNoWheel (line 9) | class ComboBoxNoWheel(PyQt5.QtWidgets.QComboBox): method __init__ (line 11) | def __init__(self, *args) -> None: ... method keyPressEvent (line 12) | def keyPressEvent(self, event): ... method mousePressEvent (line 13) | def mousePressEvent(self, event): ... method wheelEvent (line 14) | def wheelEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/CrashFileSelectorDialog.pyi class CrashFileSelectorDialog (line 9) | class CrashFileSelectorDialog(PyQt5.QtWidgets.QDialog): class CrashFileItem (line 10) | class CrashFileItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 11) | def __init__(self, crashDict, *args) -> None: ... method getCrashDict (line 12) | def getCrashDict(self): ... method __init__ (line 13) | def __init__(self, crashData, parent: Incomplete | None = ...) -> None... method _CrashFileSelectorDialog__compareCrashFileWithOriginal (line 14) | def _CrashFileSelectorDialog__compareCrashFileWithOriginal(self, crash... method _CrashFileSelectorDialog__makeStatString (line 15) | def _CrashFileSelectorDialog__makeStatString(self, filestat): ... method _CrashFileSelectorDialog__on_dialogButtonBox_clicked (line 16) | def _CrashFileSelectorDialog__on_dialogButtonBox_clicked(self, button)... method accept (line 17) | def accept(self): ... method closeEvent (line 18) | def closeEvent(self, event: PyQt5.QtWidgets.QCloseEvent): ... method getCrashFile (line 19) | def getCrashFile(self): ... method getSourceFile (line 20) | def getSourceFile(self): ... method loadSource (line 21) | def loadSource(self): ... method quitRequested (line 22) | def quitRequested(self) -> bool: ... FILE: katana/stubs/UI4/Widgets/DoubleClickSizeGrip.pyi class DoubleClickSizeGrip (line 9) | class DoubleClickSizeGrip(PyQt5.QtWidgets.QSizeGrip): method __init__ (line 11) | def __init__(self, parent) -> None: ... method mouseDoubleClickEvent (line 12) | def mouseDoubleClickEvent(self, e): ... FILE: katana/stubs/UI4/Widgets/DoubleSpinBox.pyi class DoubleSpinBox (line 7) | class DoubleSpinBox(PyQt5.QtWidgets.QDoubleSpinBox): method __init__ (line 8) | def __init__(self, parent) -> None: ... method mouseReleaseEvent (line 9) | def mouseReleaseEvent(self, event): ... method stepBy (line 10) | def stepBy(self, steps): ... method wheelEvent (line 11) | def wheelEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/DropdownArrowButton.pyi class DropdownArrowButton (line 10) | class DropdownArrowButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 11) | def __init__(self, height) -> None: ... method enterEvent (line 12) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method leaveEvent (line 13) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method paintEvent (line 14) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method setDropdownEnabled (line 15) | def setDropdownEnabled(self, enabled: bool): ... method setRectangularFixedSize (line 16) | def setRectangularFixedSize(self, height: int | None): ... FILE: katana/stubs/UI4/Widgets/EditWrenchButton.pyi class EditWrenchButton (line 9) | class EditWrenchButton(ToolbarButton): method __init__ (line 10) | def __init__(self, tooltip: str, parent: PyQt5.QtWidgets.QWidget) -> N... method _EditWrenchButton__on_menu_aboutToShow (line 11) | def _EditWrenchButton__on_menu_aboutToShow(self): ... FILE: katana/stubs/UI4/Widgets/FarmDefaultDialog.pyi class FarmDefaultDialog (line 16) | class FarmDefaultDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 20) | def __init__(self, generateCallbackHandle: Incomplete | None = ..., ti... method _FarmDefaultDialog__aboutToShowFileSaveMenu (line 21) | def _FarmDefaultDialog__aboutToShowFileSaveMenu(self): ... method _FarmDefaultDialog__calcOutlineFileNameBase (line 22) | def _FarmDefaultDialog__calcOutlineFileNameBase(self, fileLocation): ... method _FarmDefaultDialog__createDir (line 23) | def _FarmDefaultDialog__createDir(self): ... method _FarmDefaultDialog__extractFarmFileLocation (line 24) | def _FarmDefaultDialog__extractFarmFileLocation(self): ... method _FarmDefaultDialog__fileTextChangedCallback (line 25) | def _FarmDefaultDialog__fileTextChangedCallback(self, text): ... method _FarmDefaultDialog__generateClicked (line 26) | def _FarmDefaultDialog__generateClicked(self): ... method _FarmDefaultDialog__getDefaultDirectory (line 27) | def _FarmDefaultDialog__getDefaultDirectory(self): ... method _FarmDefaultDialog__getDefaultFileLocation (line 28) | def _FarmDefaultDialog__getDefaultFileLocation(self, defaultPath: Inco... method _FarmDefaultDialog__loadSettings (line 29) | def _FarmDefaultDialog__loadSettings(self): ... method _FarmDefaultDialog__resetPath (line 30) | def _FarmDefaultDialog__resetPath(self): ... method _FarmDefaultDialog__saveClicked (line 31) | def _FarmDefaultDialog__saveClicked(self): ... method _FarmDefaultDialog__saveSettingsToRootNode (line 32) | def _FarmDefaultDialog__saveSettingsToRootNode(self): ... method _FarmDefaultDialog__settingsGroupVisibilityChange (line 33) | def _FarmDefaultDialog__settingsGroupVisibilityChange(self, vpEvent): ... method _FarmDefaultDialog__updateInfoWidgets (line 34) | def _FarmDefaultDialog__updateInfoWidgets(self): ... method _FarmDefaultDialog__updateState (line 35) | def _FarmDefaultDialog__updateState(self): ... method _FarmDefaultDialog__validityChangeCallback (line 36) | def _FarmDefaultDialog__validityChangeCallback(self, state): ... method _FarmDefaultDialog__versionUpAndSaveClicked (line 37) | def _FarmDefaultDialog__versionUpAndSaveClicked(self): ... method getValuePolicy (line 38) | def getValuePolicy(self): ... function GenerateFarmCreateSettingsOnRootNode (line 40) | def GenerateFarmCreateSettingsOnRootNode(): ... FILE: katana/stubs/UI4/Widgets/FastLabel.pyi class FastLabel (line 9) | class FastLabel(PyQt5.QtWidgets.QWidget): method __init__ (line 10) | def __init__(self, text, parent) -> None: ... method _FastLabel__growWidth (line 11) | def _FastLabel__growWidth(self): ... method alignment (line 12) | def alignment(self): ... method minimumSizeHint (line 13) | def minimumSizeHint(self): ... method paintEvent (line 14) | def paintEvent(self, event): ... method setAlignment (line 15) | def setAlignment(self, alignment): ... method setText (line 16) | def setText(self, text): ... FILE: katana/stubs/UI4/Widgets/FilterPopups.pyi class LookFileMaterialFilterPopup (line 15) | class LookFileMaterialFilterPopup(Popup): method __init__ (line 16) | def __init__(self, *args) -> None: ... method _LookFileMaterialFilterPopup__assetValueChangedEvent (line 17) | def _LookFileMaterialFilterPopup__assetValueChangedEvent(self, *args):... method _LookFileMaterialFilterPopup__cachesFlushed (line 18) | def _LookFileMaterialFilterPopup__cachesFlushed(self, *args, **kwargs)... method _refreshContents (line 19) | def _refreshContents(self): ... class ShaderFilterPopup (line 21) | class ShaderFilterPopup(Popup): method __init__ (line 23) | def __init__(self, valuePolicy, parent: Incomplete | None = ...) -> No... method _ShaderFilterPopup__getKey (line 25) | def _ShaderFilterPopup__getKey(o): ... method _ShaderFilterPopup__locationFilterCallback (line 26) | def _ShaderFilterPopup__locationFilterCallback(self, state, name, meta... method _ShaderFilterPopup__reloadShaders (line 27) | def _ShaderFilterPopup__reloadShaders(self): ... method _ShaderFilterPopup__shadersReloaded (line 28) | def _ShaderFilterPopup__shadersReloaded(self, args): ... method _refreshContents (line 29) | def _refreshContents(self): ... method _shouldIncludeShader (line 30) | def _shouldIncludeShader(self, name, location): ... class ShaderTypeFilterPopup (line 32) | class ShaderTypeFilterPopup(Popup): method __init__ (line 33) | def __init__(self, *args) -> None: ... method _getShaderTypesXML (line 34) | def _getShaderTypesXML(self): ... method _refreshContents (line 35) | def _refreshContents(self): ... FILE: katana/stubs/UI4/Widgets/FlipbookDialog.pyi class FlipbookDialog (line 14) | class FlipbookDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 16) | def __init__(self, flipbookArguments, *args) -> None: ... method _FlipbookDialog__cancelRender (line 17) | def _FlipbookDialog__cancelRender(self): ... method _FlipbookDialog__idle_callback (line 18) | def _FlipbookDialog__idle_callback(self, eventType, eventID, **args): ... method _FlipbookDialog__render_flipbook (line 19) | def _FlipbookDialog__render_flipbook(self): ... method _FlipbookDialog__viewerHandler_checkForFirstFrame (line 20) | def _FlipbookDialog__viewerHandler_checkForFirstFrame(self): ... method _FlipbookDialog__viewerHandler_connectToItview (line 21) | def _FlipbookDialog__viewerHandler_connectToItview(self): ... method _FlipbookDialog__viewerHandler_loadRemainingSequence (line 22) | def _FlipbookDialog__viewerHandler_loadRemainingSequence(self): ... method closeEvent (line 23) | def closeEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/GeolibProcessingStateWidget.pyi class GeolibProcessingStateWidget (line 10) | class GeolibProcessingStateWidget(UI4.Widgets.StopButton.SimpleStopWidget): method __init__ (line 11) | def __init__(self, parent: PyQt5.QtWidgets.QWidget) -> None: ... method _GeolibProcessingStateWidget__stateChangedCallback (line 12) | def _GeolibProcessingStateWidget__stateChangedCallback(self, eventType... method _GeolibProcessingStateWidget__timerTick (line 13) | def _GeolibProcessingStateWidget__timerTick(self): ... FILE: katana/stubs/UI4/Widgets/GetSetMenu.pyi class GetSetAction (line 10) | class GetSetAction(PyQt5.QtWidgets.QAction): method __init__ (line 11) | def __init__(self, name, parent, value, setFunc, getFunc, expandTuple:... method doGet (line 12) | def doGet(self): ... method doSet (line 13) | def doSet(self): ... class GetSetMenu (line 15) | class GetSetMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 16) | def __init__(self, name, parent) -> None: ... method _GetSetMenu__doAboutToShow (line 17) | def _GetSetMenu__doAboutToShow(self): ... method _GetSetMenu__doTriggered (line 18) | def _GetSetMenu__doTriggered(self, action): ... FILE: katana/stubs/UI4/Widgets/GradientLayer.pyi class BaseGradientLayerStackLayer (line 9) | class BaseGradientLayerStackLayer(QT4GLLayerStack.LayerStack.Layer): class viewportObject (line 10) | class viewportObject: method __init__ (line 11) | def __init__(self, bounds) -> None: ... method getWorldBounds (line 12) | def getWorldBounds(self): ... method paintGL (line 13) | def paintGL(self): ... class GradientLayerBundle (line 15) | class GradientLayerBundle: method __init__ (line 16) | def __init__(self) -> None: ... method activate (line 17) | def activate(self): ... method addForegroundLayer (line 18) | def addForegroundLayer(self, layer): ... method deactivate (line 19) | def deactivate(self): ... method getBackgroundLayer (line 20) | def getBackgroundLayer(self): ... method getForegroundLayers (line 21) | def getForegroundLayers(self): ... method isActive (line 22) | def isActive(self): ... method setBackgroundLayer (line 23) | def setBackgroundLayer(self, layer): ... class GradientLayerBundleManager (line 25) | class GradientLayerBundleManager: method __init__ (line 31) | def __init__(self) -> None: ... method _GradientLayerBundleManager__calcCursorValues (line 32) | def _GradientLayerBundleManager__calcCursorValues(self, rgb): ... method _GradientLayerBundleManager__getCurrentCursorLayers (line 33) | def _GradientLayerBundleManager__getCurrentCursorLayers(self): ... method _probeResult_CB (line 34) | def _probeResult_CB(self, probeInfo): ... method _registerCurve (line 35) | def _registerCurve(self, curveName, curveAndLayerInfo): ... method _setActiveCurves (line 36) | def _setActiveCurves(self, curveNames): ... method _setCurveKey (line 37) | def _setCurveKey(self, value): ... method _updateGraphView (line 38) | def _updateGraphView(self): ... class HueGradientDrawLayer (line 40) | class HueGradientDrawLayer: method __init__ (line 41) | def __init__(self, showBox: bool = ..., showTopBar: bool = ..., showBo... method _HueGradientDrawLayer__drawBar (line 42) | def _HueGradientDrawLayer__drawBar(self, colorKeys, y): ... method _HueGradientDrawLayer__drawBox (line 43) | def _HueGradientDrawLayer__drawBox(self, colorKeys, ymin, ymax, xmin, ... method _HueGradientDrawLayer__drawCursor (line 44) | def _HueGradientDrawLayer__drawCursor(self, ymin, ymax): ... method _HueGradientDrawLayer__drawVerticals (line 45) | def _HueGradientDrawLayer__drawVerticals(self, colorKeys, ymin, ymax):... method _HueGradientDrawLayer__rgbConvert (line 46) | def _HueGradientDrawLayer__rgbConvert(self, rgb): ... method _getColors (line 47) | def _getColors(self, knots, colorInfo): ... method _getDomainKnots (line 48) | def _getDomainKnots(self): ... method _setUpColors (line 49) | def _setUpColors(self): ... method draw (line 50) | def draw(self, viewport): ... method getCursorValue (line 51) | def getCursorValue(self): ... method hide (line 52) | def hide(self): ... method hideCursor (line 53) | def hideCursor(self): ... method isHidden (line 54) | def isHidden(self): ... method setCursorActive (line 55) | def setCursorActive(self, active): ... method setCursorRGBConvertFunction (line 56) | def setCursorRGBConvertFunction(self, fn): ... method setCursorValue (line 57) | def setCursorValue(self, value): ... method setCursorValueFromRGB (line 58) | def setCursorValueFromRGB(self, rgb): ... method show (line 59) | def show(self): ... class HueGradientFCurveLayer (line 61) | class HueGradientFCurveLayer(HueGradientDrawLayer, PyFCurveGraphWidget.L... method __init__ (line 62) | def __init__(self, *args, **kwargs) -> None: ... class HueGradientLayerStackLayer (line 64) | class HueGradientLayerStackLayer(HueGradientDrawLayer, BaseGradientLayer... method __init__ (line 65) | def __init__(self, *args, **kwargs) -> None: ... class LinearGradientDrawLayer (line 67) | class LinearGradientDrawLayer(HueGradientDrawLayer): method __init__ (line 68) | def __init__(self, darkColor, lightColor, **kwargs) -> None: ... method _LinearGradientDrawLayer__lerpAndAdjustColor (line 69) | def _LinearGradientDrawLayer__lerpAndAdjustColor(self, c0, c1, x, k): ... method _LinearGradientDrawLayer__smush (line 70) | def _LinearGradientDrawLayer__smush(self, value, k): ... method _getColors (line 71) | def _getColors(self, knots, colorInfo): ... method _getDomainKnots (line 72) | def _getDomainKnots(self): ... method _setUpColors (line 73) | def _setUpColors(self): ... method setLightColor (line 74) | def setLightColor(self, newLightColor): ... class LinearGradientFCurveLayer (line 76) | class LinearGradientFCurveLayer(LinearGradientDrawLayer, PyFCurveGraphWi... method __init__ (line 77) | def __init__(self, *args, **kwargs) -> None: ... class LinearGradientLayerStackLayer (line 79) | class LinearGradientLayerStackLayer(LinearGradientDrawLayer, BaseGradien... method __init__ (line 80) | def __init__(self, *args, **kwargs) -> None: ... FILE: katana/stubs/UI4/Widgets/GraphStateVariablesPopupButton.pyi class GraphStateVariableModel (line 15) | class GraphStateVariableModel(PyQt5.QtCore.QSortFilterProxyModel): method filterAcceptsRow (line 16) | def filterAcceptsRow(self, source_row, source_parent): ... method headerData (line 17) | def headerData(self, section, orientation, role): ... class GraphStateVariablesPopupButton (line 19) | class GraphStateVariablesPopupButton(PopupButton): method __init__ (line 23) | def __init__(self, parent) -> None: ... method _GraphStateVariablesPopupButton__aboutToShow (line 24) | def _GraphStateVariablesPopupButton__aboutToShow(self): ... method _GraphStateVariablesPopupButton__buildTreeView (line 25) | def _GraphStateVariablesPopupButton__buildTreeView(self, title, parent... method _GraphStateVariablesPopupButton__isVariableGlobal (line 26) | def _GraphStateVariablesPopupButton__isVariableGlobal(self, name, valu... method _GraphStateVariablesPopupButton__jumpToGlobalSettings (line 27) | def _GraphStateVariablesPopupButton__jumpToGlobalSettings(self, link):... method _GraphStateVariablesPopupButton__on_filterFieldWidget_filterUpdate (line 28) | def _GraphStateVariablesPopupButton__on_filterFieldWidget_filterUpdate... method mousePressEvent (line 29) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 30) | def mouseReleaseEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/HBoxLayoutResizer.pyi class HBoxLayoutResizer (line 9) | class HBoxLayoutResizer(BaseLayoutResizer): method __init__ (line 10) | def __init__(self, targetWidget: PyQt5.QtWidgets.QWidget, initialTarge... method mouseMoveEvent (line 11) | def mouseMoveEvent(self, event: PyQt5.QtGui.QMouseEvent): ... FILE: katana/stubs/UI4/Widgets/HighlightWidget.pyi class HighlightWidget (line 10) | class HighlightWidget(PyQt5.QtWidgets.QRubberBand): method __init__ (line 11) | def __init__(self, widget: PyQt5.QtWidgets.QWidget) -> None: ... method _HighlightWidget__on_highlightWidgetTimer_timeout (line 12) | def _HighlightWidget__on_highlightWidgetTimer_timeout(self): ... method mouseMoveEvent (line 13) | def mouseMoveEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method paintEvent (line 14) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... FILE: katana/stubs/UI4/Widgets/HistogramLayer.pyi class HistogramLayer (line 8) | class HistogramLayer(QT4GLLayerStack.LayerStack.Layer): method __init__ (line 9) | def __init__(self, *args, **kwargs) -> None: ... method drawHistogram (line 10) | def drawHistogram(self): ... method getHistogram (line 11) | def getHistogram(self): ... method isChannelEnabled (line 12) | def isChannelEnabled(self, channel): ... method paintGL (line 13) | def paintGL(self): ... method setChannels (line 14) | def setChannels(self, channels): ... method setHistogram (line 15) | def setHistogram(self, histogram): ... method setScale (line 16) | def setScale(self, scale): ... FILE: katana/stubs/UI4/Widgets/HorizontalDivider.pyi class HorizontalDivider (line 10) | class HorizontalDivider(PyQt5.QtWidgets.QFrame): method __init__ (line 11) | def __init__(self, parent: Incomplete | None = ..., flags: int = ...) ... FILE: katana/stubs/UI4/Widgets/HtmlEditorWidget.pyi class HtmlEditorWidget (line 13) | class HtmlEditorWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 16) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, growPreview... method _HtmlEditorWidget__editTextChanged (line 17) | def _HtmlEditorWidget__editTextChanged(self): ... method _HtmlEditorWidget__helpCallback (line 18) | def _HtmlEditorWidget__helpCallback(self): ... method _HtmlEditorWidget__insertImageCallback (line 19) | def _HtmlEditorWidget__insertImageCallback(self): ... method _HtmlEditorWidget__insertLinkCallback (line 20) | def _HtmlEditorWidget__insertLinkCallback(self): ... method _HtmlEditorWidget__linkClickedCallback (line 21) | def _HtmlEditorWidget__linkClickedCallback(self, url): ... method _HtmlEditorWidget__loadResources (line 22) | def _HtmlEditorWidget__loadResources(self): ... method _HtmlEditorWidget__transferText (line 23) | def _HtmlEditorWidget__transferText(self): ... method getInputEditor (line 24) | def getInputEditor(self): ... method setLocked (line 25) | def setLocked(self, state): ... method setText (line 26) | def setText(self, text): ... method text (line 27) | def text(self): ... FILE: katana/stubs/UI4/Widgets/IconLabelFrame.pyi class IconLabelFrame (line 14) | class IconLabelFrame(PyQt5.QtWidgets.QFrame): class NestedIconLabelFrame (line 15) | class NestedIconLabelFrame(PyQt5.QtWidgets.QFrame): method __init__ (line 16) | def __init__(self, iconPixmap: PyQt5.QtGui.QPixmap, text: str, paren... method getText (line 17) | def getText(self) -> str: ... method on_textLabel_linkActivated (line 18) | def on_textLabel_linkActivated(self, link: str): ... method setForegroundRole (line 19) | def setForegroundRole(self, foregroundRole: PyQt5.QtGui.QPalette.Col... method setIconPixmap (line 20) | def setIconPixmap(self, iconPixmap: PyQt5.QtGui.QPixmap): ... method setLinkClickCallback (line 21) | def setLinkClickCallback(self, linkClickCallback: typing.Callable | ... method setText (line 22) | def setText(self, text: str): ... method setWordWrap (line 23) | def setWordWrap(self, wordWrap: bool): ... method __init__ (line 25) | def __init__(self, iconPixmap: PyQt5.QtGui.QPixmap, text: str, margin:... method getText (line 26) | def getText(self) -> str: ... method setContentsMargins (line 27) | def setContentsMargins(self, left: int, top: int, right: int, bottom: ... method setForegroundRole (line 28) | def setForegroundRole(self, foregroundRole: PyQt5.QtGui.QPalette.Color... method setIconPixmap (line 29) | def setIconPixmap(self, iconPixmap: PyQt5.QtGui.QPixmap): ... method setLinkClickCallback (line 30) | def setLinkClickCallback(self, linkClickCallback: typing.Callable | No... method setMargin (line 31) | def setMargin(self, margin): ... method setText (line 32) | def setText(self, text: str): ... method setWordWrap (line 33) | def setWordWrap(self, wordWrap: bool): ... FILE: katana/stubs/UI4/Widgets/ImageOptionsWidgets.pyi class ColorspaceSelectionWidget (line 12) | class ColorspaceSelectionWidget(OptionComboBase): method __init__ (line 13) | def __init__(self, parent, default: Incomplete | None = ...) -> None: ... class ExrBitDepthWidget (line 15) | class ExrBitDepthWidget(OptionComboBase): method __init__ (line 16) | def __init__(self, parent, default: str = ...) -> None: ... class ExrCompressionWidget (line 18) | class ExrCompressionWidget(OptionComboBase): method __init__ (line 19) | def __init__(self, parent, default: str = ...) -> None: ... class ImageOptionsWidget (line 21) | class ImageOptionsWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 22) | def __init__(self, parent, defaultExtension: str = ..., defaultValue: ... method setColorspace (line 23) | def setColorspace(self, csname): ... method setExtension (line 24) | def setExtension(self, extension): ... method setValue (line 25) | def setValue(self, optionsDict): ... method value (line 26) | def value(self): ... class JpgQualityWidget (line 28) | class JpgQualityWidget(PyQt5.QtWidgets.QSpinBox): method __init__ (line 29) | def __init__(self, parent, default: str = ...) -> None: ... method setValue (line 30) | def setValue(self, value): ... method value (line 31) | def value(self): ... class OptionComboBase (line 33) | class OptionComboBase(ComboBoxNoWheel): method __init__ (line 34) | def __init__(self, parent, optionList, default) -> None: ... method setOptions (line 35) | def setOptions(self, optionList): ... method setValue (line 36) | def setValue(self, option): ... method value (line 37) | def value(self): ... class OutputImageExtensionWidget (line 39) | class OutputImageExtensionWidget(OptionComboBase): method __init__ (line 40) | def __init__(self, parent, default: str = ...) -> None: ... class PngBitDepthWidget (line 42) | class PngBitDepthWidget(OptionComboBase): method __init__ (line 43) | def __init__(self, parent, default: str = ...) -> None: ... class RlaBitDepthWidget (line 45) | class RlaBitDepthWidget(OptionComboBase): method __init__ (line 46) | def __init__(self, parent, default: str = ...) -> None: ... class TifBitDepthWidget (line 48) | class TifBitDepthWidget(OptionComboBase): method __init__ (line 49) | def __init__(self, parent, default: str = ...) -> None: ... class TifCompressionWidget (line 51) | class TifCompressionWidget(OptionComboBase): method __init__ (line 52) | def __init__(self, parent, default: str = ...) -> None: ... FILE: katana/stubs/UI4/Widgets/ImplicitFilterToggle.pyi class ImplicitFilterToggle (line 15) | class ImplicitFilterToggle(ToolbarButton): method __init__ (line 16) | def __init__(self, parent) -> None: ... method _ImplicitFilterToggle__clicked (line 17) | def _ImplicitFilterToggle__clicked(self): ... method _ImplicitFilterToggle__updateCallback (line 18) | def _ImplicitFilterToggle__updateCallback(self, eventType, scenegraphI... class ImplicitFilterWarningLabel (line 20) | class ImplicitFilterWarningLabel(PyQt5.QtWidgets.QFrame): method __init__ (line 21) | def __init__(self, *args) -> None: ... method _ImplicitFilterWarningLabel__highlightedText (line 22) | def _ImplicitFilterWarningLabel__highlightedText(self, text): ... method _ImplicitFilterWarningLabel__implicitResolverListText (line 23) | def _ImplicitFilterWarningLabel__implicitResolverListText(self, stage)... method _ImplicitFilterWarningLabel__update (line 24) | def _ImplicitFilterWarningLabel__update(self, eventType, scenegraphID,... method enterEvent (line 25) | def enterEvent(self, ev): ... method leaveEvent (line 26) | def leaveEvent(self, ev): ... method mousePressEvent (line 27) | def mousePressEvent(self, ev): ... FILE: katana/stubs/UI4/Widgets/IndicatorLabelFrame.pyi class IndicatorLabelFrame (line 14) | class IndicatorLabelFrame(IconLabelFrame): method __init__ (line 16) | def __init__(self, activeIconName: Incomplete | None = ..., inactiveIc... method _IndicatorLabelFrame__getPixmap (line 17) | def _IndicatorLabelFrame__getPixmap(self, iconName: str) -> PyQt5.QtGu... method _IndicatorLabelFrame__linkClicked (line 18) | def _IndicatorLabelFrame__linkClicked(self, link: str): ... method setAutoHide (line 19) | def setAutoHide(self, autoHide: bool): ... method updateDisplay (line 20) | def updateDisplay(self, active: bool, message: str = ..., nodeNames: I... FILE: katana/stubs/UI4/Widgets/KeyboardShortcutLineEdit.pyi class KeyboardShortcutLineEdit (line 10) | class KeyboardShortcutLineEdit(PyQt5.QtWidgets.QLineEdit): method keyPressEvent (line 11) | def keyPressEvent(self, keyEvent: PyQt5.QtGui.QKeyEvent): ... FILE: katana/stubs/UI4/Widgets/LightingToolsLayer/LightingToolsGafferComboBox.pyi class EditMask (line 17) | class EditMask: class GafferButton (line 23) | class GafferButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 28) | def __init__(self, gafferName: str, parent: Incomplete | None = ...) -... method getGafferNodeName (line 29) | def getGafferNodeName(self) -> str: ... method getMasks (line 30) | def getMasks(self) -> None: ... method isDimmed (line 31) | def isDimmed(self) -> bool: ... method setDimmed (line 32) | def setDimmed(self, isDimmed): ... method setMasks (line 33) | def setMasks(self, lineMask: int, editMask: int): ... class LightingToolsGafferComboBox (line 35) | class LightingToolsGafferComboBox(PyQt5.QtWidgets.QWidget): method __init__ (line 37) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _LightingToolsGafferComboBox__createDropdownButton (line 38) | def _LightingToolsGafferComboBox__createDropdownButton(self): ... method _LightingToolsGafferComboBox__createDropdownMenu (line 39) | def _LightingToolsGafferComboBox__createDropdownMenu(self): ... method _LightingToolsGafferComboBox__onDropdownButtonPressed (line 40) | def _LightingToolsGafferComboBox__onDropdownButtonPressed(self): ... method _LightingToolsGafferComboBox__onGafferListUpdated (line 41) | def _LightingToolsGafferComboBox__onGafferListUpdated(self, gafferList... method _LightingToolsGafferComboBox__onGafferSelected (line 42) | def _LightingToolsGafferComboBox__onGafferSelected(self, gafferName: s... method _LightingToolsGafferComboBox__onNodeLocked (line 43) | def _LightingToolsGafferComboBox__onNodeLocked(self): ... method _LightingToolsGafferComboBox__onNodegraphChanged (line 44) | def _LightingToolsGafferComboBox__onNodegraphChanged(self): ... method _LightingToolsGafferComboBox__setGafferMasks (line 45) | def _LightingToolsGafferComboBox__setGafferMasks(self, action: PyQt5.Q... method _LightingToolsGafferComboBox__setSelectedGafferNodeName (line 46) | def _LightingToolsGafferComboBox__setSelectedGafferNodeName(self, sele... method _LightingToolsGafferComboBox__updateDropdownButton (line 47) | def _LightingToolsGafferComboBox__updateDropdownButton(self, editMask:... method _LightingToolsGafferComboBox__updateGafferHistory (line 48) | def _LightingToolsGafferComboBox__updateGafferHistory(self): ... method cycleSelectedGafferNode (line 49) | def cycleSelectedGafferNode(self, delta: int = ...): ... method getGafferNodeName (line 50) | def getGafferNodeName(self) -> str: ... method setSelectedLocations (line 51) | def setSelectedLocations(self, locations: list[str]): ... class LineMask (line 53) | class LineMask: FILE: katana/stubs/UI4/Widgets/LightingToolsLayer/LightingToolsToolBar.pyi class LightPackagesGroup (line 18) | class LightPackagesGroup(PyQt5.QtWidgets.QWidget): method __init__ (line 21) | def __init__(self, rendererPluginName, rendererDisplayName, buttonGrou... method buttons (line 22) | def buttons(self) -> list[PyQt5.QtWidgets.QAbstractButton]: ... class LightPackagesMenu (line 24) | class LightPackagesMenu(PyQt5.QtWidgets.QWidget): method __init__ (line 28) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _LightPackagesMenu__createCloneButtons (line 29) | def _LightPackagesMenu__createCloneButtons(self): ... method _LightPackagesMenu__createGearButton (line 30) | def _LightPackagesMenu__createGearButton(self): ... method _LightPackagesMenu__createGearMenu (line 31) | def _LightPackagesMenu__createGearMenu(self): ... method _LightPackagesMenu__createPackageGroup (line 32) | def _LightPackagesMenu__createPackageGroup(self, pluginName: str, disp... method _LightPackagesMenu__createPlaceholderText (line 33) | def _LightPackagesMenu__createPlaceholderText(self, text: str) -> PyQt... method _LightPackagesMenu__getEnabledRenderers (line 34) | def _LightPackagesMenu__getEnabledRenderers(self) -> list[None]: ... method _LightPackagesMenu__onCloneButtonToggled (line 35) | def _LightPackagesMenu__onCloneButtonToggled(self, checked: bool): ... method _LightPackagesMenu__onGearButtonClicked (line 36) | def _LightPackagesMenu__onGearButtonClicked(self, *args): ... method _LightPackagesMenu__onGearCheckBoxToggled (line 37) | def _LightPackagesMenu__onGearCheckBoxToggled(self, pluginName: str, e... method _LightPackagesMenu__onLightPackageGroupTriggered (line 38) | def _LightPackagesMenu__onLightPackageGroupTriggered(self, packageButt... method _LightPackagesMenu__rebuildCloneButtonLayout (line 39) | def _LightPackagesMenu__rebuildCloneButtonLayout(self, useHorizontal: ... method _LightPackagesMenu__selectFirstPackageForGroup (line 40) | def _LightPackagesMenu__selectFirstPackageForGroup(self, targetPluginN... method _LightPackagesMenu__selectPackageButton (line 41) | def _LightPackagesMenu__selectPackageButton(self, packageButton: PyQt5... method closeEvent (line 42) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method getSelectedPackageInfo (line 43) | def getSelectedPackageInfo(self) -> None: ... method mouseMoveEvent (line 44) | def mouseMoveEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method mouseReleaseEvent (line 45) | def mouseReleaseEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method popup (line 46) | def popup(self, point: PyQt5.QtCore.Qt.QPoint): ... method resizeEvent (line 47) | def resizeEvent(self, event: PyQt5.QtGui.QResizeEvent): ... class LightingToolsToolBar (line 49) | class LightingToolsToolBar(PyQt5.QtWidgets.QToolBar): class MenuEntry (line 50) | class MenuEntry: method __init__ (line 51) | def __init__(self, text, iconStem) -> None: ... method __init__ (line 55) | def __init__(self, tab, manipulatorManager, height) -> None: ... method _LightingToolsToolBar__computeMenuPosition (line 57) | def _LightingToolsToolBar__computeMenuPosition(menu: PyQt5.QtWidgets.Q... method _LightingToolsToolBar__createDropdownButton (line 58) | def _LightingToolsToolBar__createDropdownButton(self, height: int) -> ... method _LightingToolsToolBar__createLightPackagesButton (line 59) | def _LightingToolsToolBar__createLightPackagesButton(self, height: int... method _LightingToolsToolBar__createLightPackagesMenu (line 60) | def _LightingToolsToolBar__createLightPackagesMenu(self) -> PyQt5.QtWi... method _LightingToolsToolBar__createLightingModeButton (line 61) | def _LightingToolsToolBar__createLightingModeButton(self, height: int)... method _LightingToolsToolBar__createLightingModeIcon (line 62) | def _LightingToolsToolBar__createLightingModeIcon(self, menuEntry: Men... method _LightingToolsToolBar__createLightingModeMenu (line 63) | def _LightingToolsToolBar__createLightingModeMenu(self) -> PyQt5.QtWid... method _LightingToolsToolBar__emitChanges (line 64) | def _LightingToolsToolBar__emitChanges(self): ... method _LightingToolsToolBar__getDefaultLightingModeAction (line 65) | def _LightingToolsToolBar__getDefaultLightingModeAction(self) -> PyQt5... method _LightingToolsToolBar__getLightingModePixmaps (line 66) | def _LightingToolsToolBar__getLightingModePixmaps(self, menuEntry: Men... method _LightingToolsToolBar__getManipulator (line 67) | def _LightingToolsToolBar__getManipulator(self) -> HydraViewer.Manipul... method _LightingToolsToolBar__onLightPackageChanged (line 68) | def _LightingToolsToolBar__onLightPackageChanged(self, packageButton):... method _LightingToolsToolBar__onLightPackageMenuRebuilt (line 69) | def _LightingToolsToolBar__onLightPackageMenuRebuilt(self): ... method _LightingToolsToolBar__onLightingModeChanged (line 70) | def _LightingToolsToolBar__onLightingModeChanged(self, action: PyQt5.Q... method _LightingToolsToolBar__onLightingModeToggled (line 71) | def _LightingToolsToolBar__onLightingModeToggled(self, enabled: bool, ... method _LightingToolsToolBar__onManipulatorToggled (line 72) | def _LightingToolsToolBar__onManipulatorToggled(self, enabled: bool): ... method _LightingToolsToolBar__showMenu (line 74) | def _LightingToolsToolBar__showMenu(menu: PyQt5.QtWidgets.QMenu, widge... method _LightingToolsToolBar__syncButtonState (line 75) | def _LightingToolsToolBar__syncButtonState(self): ... method _LightingToolsToolBar__updateToolTips (line 76) | def _LightingToolsToolBar__updateToolTips(self): ... method cycleLightingMode (line 77) | def cycleLightingMode(self): ... method getLightingMode (line 78) | def getLightingMode(self) -> str: ... method getPackageClassName (line 79) | def getPackageClassName(self) -> str: ... method isEnabled (line 80) | def isEnabled(self) -> bool: ... method isFixedRotationEnabled (line 81) | def isFixedRotationEnabled(self) -> str: ... method setEnabled (line 82) | def setEnabled(self, enabled: bool): ... method setFixedRotationEnabled (line 83) | def setFixedRotationEnabled(self, enabled: bool): ... method setLightingMode (line 84) | def setLightingMode(self, mode: PyQt5.QtWidgets.QAction | str, enabled... FILE: katana/stubs/UI4/Widgets/LightingToolsLayer/LightingToolsUI.pyi class BaseColumn (line 31) | class BaseColumn(PyQt5.QtWidgets.QWidget): method __init__ (line 35) | def __init__(self, orientation: PyQt5.QtCore.Qt.Orientation = ..., par... method _addSpacer (line 36) | def _addSpacer(self, count: int = ...): ... method mousePressEvent (line 37) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... class DragArea (line 39) | class DragArea(HoverableButton): method __init__ (line 41) | def __init__(self, uiWidget: PyQt5.QtWidgets.QWidget, parent: Incomple... method getLastDragPosition (line 42) | def getLastDragPosition(self) -> PyQt5.QtCore.QPointF: ... method mouseMoveEvent (line 43) | def mouseMoveEvent(self, mouseEvent): ... method mousePressEvent (line 44) | def mousePressEvent(self, mouseEvent): ... method mouseReleaseEvent (line 45) | def mouseReleaseEvent(self, mouseEvent): ... class DragAreaColumn (line 47) | class DragAreaColumn(BaseColumn): method __init__ (line 49) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method getHandleRect (line 50) | def getHandleRect(self) -> PyQt5.QtCore.QRect: ... method getLastDragPosition (line 51) | def getLastDragPosition(self) -> PyQt5.QtCore.QPointF: ... method isChecked (line 52) | def isChecked(self) -> DragArea: ... method setRowSpan (line 53) | def setRowSpan(self, span: int, padding: int = ...): ... class HoverableButton (line 55) | class HoverableButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 56) | def __init__(self, normalPath: str, activePath: str, parent: Incomplet... method _HoverableButton__update (line 57) | def _HoverableButton__update(self): ... method enterEvent (line 58) | def enterEvent(self, event): ... method leaveEvent (line 59) | def leaveEvent(self, event): ... method mouseMoveEvent (line 60) | def mouseMoveEvent(self, event): ... method setChecked (line 61) | def setChecked(self, checked): ... class LabelsColumn (line 63) | class LabelsColumn(BaseColumn): method __init__ (line 64) | def __init__(self, labels: list[str], widgetTypes: list[str], paramete... method _LabelsColumn__buildLabel (line 65) | def _LabelsColumn__buildLabel(self, text: str, toolTip: str) -> PyQt5.... method _LabelsColumn__buildToolTip (line 66) | def _LabelsColumn__buildToolTip(self, widgetType: str, parameterPaths:... method mousePressEvent (line 67) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... class LeakyWidgetFactory (line 69) | class LeakyWidgetFactory(UI4.FormMaster.KatanaFactory.ParameterWidgetFac... method getWidgetClass (line 70) | def getWidgetClass(self, policy: UI4.QT4FormWidgets.AbstractValuePolic... class LightingToolsUI (line 72) | class LightingToolsUI(PyQt5.QtWidgets.QWidget): method __init__ (line 75) | def __init__(self, viewerDelegate: ViewerAPI.ViewerDelegate, viewportW... method _LightingToolsUI__addParameterGroup (line 76) | def _LightingToolsUI__addParameterGroup(self, location: str): ... method _LightingToolsUI__adjustScrollerHeight (line 77) | def _LightingToolsUI__adjustScrollerHeight(self): ... method _LightingToolsUI__getAttributes (line 78) | def _LightingToolsUI__getAttributes(self, location: str, client: PyFnG... method _LightingToolsUI__onLocationStarChanged (line 79) | def _LightingToolsUI__onLocationStarChanged(self, location: str, starr... method _LightingToolsUI__onSceneAboutToLoad (line 80) | def _LightingToolsUI__onSceneAboutToLoad(self): ... method _LightingToolsUI__on_dragArea_toggled (line 81) | def _LightingToolsUI__on_dragArea_toggled(self, checked: bool): ... method _LightingToolsUI__on_nodeLocked (line 82) | def _LightingToolsUI__on_nodeLocked(self): ... method _LightingToolsUI__on_nodegraphChanged (line 83) | def _LightingToolsUI__on_nodegraphChanged(self): ... method _LightingToolsUI__on_scenegraphLocationRenamed (line 84) | def _LightingToolsUI__on_scenegraphLocationRenamed(self): ... method _LightingToolsUI__rebuildUI (line 85) | def _LightingToolsUI__rebuildUI(self): ... method _LightingToolsUI__removeParameterGroup (line 86) | def _LightingToolsUI__removeParameterGroup(self, location: str): ... method cleanup (line 87) | def cleanup(self): ... method clear (line 88) | def clear(self): ... method eventFilter (line 89) | def eventFilter(self, recipient, event): ... method getGafferAttributes (line 90) | def getGafferAttributes(self, location: str) -> PyFnAttribute.GroupAtt... method getViewAttributes (line 91) | def getViewAttributes(self, location: str) -> PyFnAttribute.GroupAttri... method getVisibleLocations (line 92) | def getVisibleLocations(self) -> set[str]: ... method paintEvent (line 93) | def paintEvent(self, event): ... method processLocationEvents (line 94) | def processLocationEvents(self): ... method rebuildUI (line 95) | def rebuildUI(self): ... method setFocused (line 96) | def setFocused(self, locations: typing.Iterable[str]): ... method setSelectedGafferNodeName (line 97) | def setSelectedGafferNodeName(self, gafferName: str): ... method setSelectedLocations (line 98) | def setSelectedLocations(self, locations): ... method updateGafferClient (line 99) | def updateGafferClient(self, gafferNodeName: str): ... method updateViewClient (line 100) | def updateViewClient(self, viewerDelegate: ViewerAPI.ViewerDelegate, v... method wheelEvent (line 101) | def wheelEvent(self, event): ... class ParameterColumn (line 103) | class ParameterColumn(BaseColumn): method __init__ (line 106) | def __init__(self, location: str, lightingToolsUI: LightingToolsUI, pa... method _ParameterColumn__createLightIcon (line 107) | def _ParameterColumn__createLightIcon(self) -> PyQt5.QtWidgets.QWidget... method _ParameterColumn__createLocationLabel (line 108) | def _ParameterColumn__createLocationLabel(self) -> PyQt5.QtWidgets.QLa... method _ParameterColumn__createMissingWidget (line 109) | def _ParameterColumn__createMissingWidget(self) -> PyQt5.QtWidgets.QLa... method _ParameterColumn__createMuteAndSoloToolBar (line 110) | def _ParameterColumn__createMuteAndSoloToolBar(self) -> PyQt5.QtWidget... method _ParameterColumn__createPolicyWidget (line 111) | def _ParameterColumn__createPolicyWidget(self, policy: UI4.QT4FormWidg... method _ParameterColumn__createStarButton (line 112) | def _ParameterColumn__createStarButton(self) -> PyQt5.QtWidgets.QPushB... method _ParameterColumn__getLabelText (line 113) | def _ParameterColumn__getLabelText(self) -> str: ... method _ParameterColumn__rebuildWidgets (line 114) | def _ParameterColumn__rebuildWidgets(self): ... method _ParameterColumn__styleWidget (line 115) | def _ParameterColumn__styleWidget(self, widget: PyQt5.QtWidgets.QWidge... method getGafferNodeName (line 116) | def getGafferNodeName(self) -> str: ... method getLocationLabel (line 117) | def getLocationLabel(self) -> RotatedLabel: ... method getLocationPath (line 118) | def getLocationPath(self) -> str: ... method getParameterKeys (line 119) | def getParameterKeys(self): ... method getParameterOrdering (line 120) | def getParameterOrdering(self) -> list[str]: ... method getParameterPaths (line 121) | def getParameterPaths(self) -> list[str]: ... method isParametersHashValid (line 122) | def isParametersHashValid(self) -> bool: ... method mousePressEvent (line 123) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 124) | def mouseReleaseEvent(self, event): ... method paintEvent (line 125) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method refreshState (line 126) | def refreshState(self, attrs: Incomplete | None = ...): ... method setEnabled (line 127) | def setEnabled(self, enabled: bool): ... method setGafferNodeName (line 128) | def setGafferNodeName(self, gafferName: str): ... method setIconChecked (line 129) | def setIconChecked(self, checked: bool): ... method setIconEdges (line 130) | def setIconEdges(self, edges: PyQt5.QtCore.Qt.Edge): ... method setLabelAdornment (line 131) | def setLabelAdornment(self, adornment: Tuple[float, str | None]): ... method setOverrideIconName (line 132) | def setOverrideIconName(self, iconName: str): ... method setParameterOrdering (line 133) | def setParameterOrdering(self, ordering: list[str]): ... method setStarred (line 134) | def setStarred(self, starred: bool): ... class ParameterColumnGroup (line 136) | class ParameterColumnGroup(BaseColumn): method __init__ (line 138) | def __init__(self, location: str, lightingToolsUI: LightingToolsUI, pa... method _ParameterColumnGroup__buildRelatedColumns (line 139) | def _ParameterColumnGroup__buildRelatedColumns(self) -> list[Parameter... method _ParameterColumnGroup__createColumn (line 140) | def _ParameterColumnGroup__createColumn(self, location: str) -> Parame... method _ParameterColumnGroup__getPrincipalColumn (line 141) | def _ParameterColumnGroup__getPrincipalColumn(self) -> ParameterColumn... method _ParameterColumnGroup__getRelatedLightPaths (line 142) | def _ParameterColumnGroup__getRelatedLightPaths(self) -> list | str: ... method _ParameterColumnGroup__onSelectedLocationColumnToggled (line 143) | def _ParameterColumnGroup__onSelectedLocationColumnToggled(self, *_arg... method _ParameterColumnGroup__onTemplateMaterialColumnToggled (line 144) | def _ParameterColumnGroup__onTemplateMaterialColumnToggled(self, *_arg... method _ParameterColumnGroup__updateColumnVisibility (line 145) | def _ParameterColumnGroup__updateColumnVisibility(self): ... method _ParameterColumnGroup__updateLayout (line 146) | def _ParameterColumnGroup__updateLayout(self): ... method _ParameterColumnGroup__updateTemplateMaterialCount (line 147) | def _ParameterColumnGroup__updateTemplateMaterialCount(self): ... method _ParameterColumnGroup__updateWidth (line 148) | def _ParameterColumnGroup__updateWidth(self): ... method getColumns (line 149) | def getColumns(self) -> typing.Iterator[ParameterColumn]: ... method getExpandedState (line 150) | def getExpandedState(self) -> None: ... method getGafferNodeName (line 151) | def getGafferNodeName(self) -> str: ... method getNumberOfVisibleColumns (line 152) | def getNumberOfVisibleColumns(self): ... method getParameterKeys (line 153) | def getParameterKeys(self): ... method getParameterPaths (line 154) | def getParameterPaths(self) -> list[str]: ... method getTemplateMaterialPath (line 155) | def getTemplateMaterialPath(self) -> str | None: ... method isParametersHashValid (line 156) | def isParametersHashValid(self) -> bool: ... method mousePressEvent (line 157) | def mousePressEvent(self, event): ... method refreshRelatedLocations (line 158) | def refreshRelatedLocations(self): ... method refreshState (line 159) | def refreshState(self, attrsDict: Incomplete | None = ...): ... method setExpandedState (line 160) | def setExpandedState(self, templateMaterialVisible: bool, relatedVisib... method setGafferNodeName (line 161) | def setGafferNodeName(self, gafferName: str): ... method setParameterOrdering (line 162) | def setParameterOrdering(self, ordering: list[str]): ... method setStarred (line 163) | def setStarred(self, starredLocations: set[str]): ... method setTemplateMaterialPath (line 164) | def setTemplateMaterialPath(self, templateMaterialPath: str | None): ... class ParameterResizer (line 166) | class ParameterResizer(HBoxLayoutResizer): method __init__ (line 169) | def __init__(self, targetWidget) -> None: ... method hasBeenManuallyResized (line 170) | def hasBeenManuallyResized(self) -> bool: ... method mouseDoubleClickEvent (line 171) | def mouseDoubleClickEvent(self, event): ... method mouseMoveEvent (line 172) | def mouseMoveEvent(self, event): ... class RotatedLabel (line 174) | class RotatedLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 175) | def __init__(self, text: str, angle: float) -> None: ... method _RotatedLabel__getBoxSize (line 176) | def _RotatedLabel__getBoxSize(self, fontMetrics: PyQt5.QtGui.QFontMetr... method draw (line 177) | def draw(self, paintDevice: PyQt5.QtGui.QPaintDevice): ... method paintEvent (line 178) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method setFocused (line 179) | def setFocused(self, focused: bool): ... method setHighlighted (line 180) | def setHighlighted(self, highlighted: bool): ... method sizeHint (line 181) | def sizeHint(self) -> PyQt5.QtCore.QSize: ... class RoundedCap (line 183) | class RoundedCap(PyQt5.QtWidgets.QFrame): method __init__ (line 184) | def __init__(self, edge: PyQt5.QtCore.Qt.Edge, parent: Incomplete | No... class RoundedCapsColumn (line 186) | class RoundedCapsColumn(BaseColumn): method __init__ (line 187) | def __init__(self, edge: PyQt5.QtCore.Qt.Edge, numRows: int, parent: I... function ClearLayout (line 189) | def ClearLayout(layout: PyQt5.QtWidgets.QLayout): ... function ConvertParameterPathToTitleCaseLabel (line 190) | def ConvertParameterPathToTitleCaseLabel(text: str) -> str: ... function DefineParameterWidgetType (line 191) | def DefineParameterWidgetType(policy: QT4FormWidgets.AbstractValuePolicy... function GetAllLightPaths (line 192) | def GetAllLightPaths(worldAttrs: PyFnAttribute.GroupAttribute) -> list |... function GetWidgetType (line 193) | def GetWidgetType(policy: QT4FormWidgets.AbstractValuePolicy) -> str | N... function IsSupportedWidgetType (line 194) | def IsSupportedWidgetType(widgetType: str | None) -> bool: ... FILE: katana/stubs/UI4/Widgets/LightingToolsLayer/LightingToolsUtils.pyi class _GafferThreeListWatcher (line 29) | class _GafferThreeListWatcher(PyQt5.QtCore.QObject): method __init__ (line 31) | def __init__(self) -> None: ... method _GafferThreeListWatcher__on_event_idle (line 32) | def _GafferThreeListWatcher__on_event_idle(self): ... method _GafferThreeListWatcher__on_geolib_stateChanged (line 33) | def _GafferThreeListWatcher__on_geolib_stateChanged(self): ... method _GafferThreeListWatcher__on_sceneAboutToLoad (line 34) | def _GafferThreeListWatcher__on_sceneAboutToLoad(self): ... method _GafferThreeListWatcher__processLocationData (line 36) | def _GafferThreeListWatcher__processLocationData(locationData: PyFnGeo... method _GafferThreeListWatcher__processLocationEvents (line 37) | def _GafferThreeListWatcher__processLocationEvents(self): ... method _GafferThreeListWatcher__setList (line 38) | def _GafferThreeListWatcher__setList(self, newList): ... method _GafferThreeListWatcher__updateClient (line 39) | def _GafferThreeListWatcher__updateClient(self, viewNode: NodegraphAPI... method getList (line 40) | def getList(self) -> list[str]: ... function AdoptforEditing (line 42) | def AdoptforEditing(locations: list[str], gafferNode: PackageSuperToolAP... function BuildContextMenu (line 43) | def BuildContextMenu(locations: list[str], selectedGafferNodeName: str, ... function BuildDeleteActionLabel (line 44) | def BuildDeleteActionLabel(packages: list[PackageSuperToolAPI.Packages.P... function CanAdoptForEditing (line 45) | def CanAdoptForEditing(locations: list[str], gafferNode: PackageSuperToo... function CreateLightAtCameraPosition (line 46) | def CreateLightAtCameraPosition(gafferThreeNodeName: str, packageClassNa... function CreateLightPackage (line 47) | def CreateLightPackage(gafferThreeNode, packageClassName: str, position,... function DeleteInGaffers (line 48) | def DeleteInGaffers(locations: list[str], gafferNodes: list[PackageSuper... function DuplicateCurrentlySelectedLight (line 49) | def DuplicateCurrentlySelectedLight(gafferThreeNodeName: str): ... function FindGafferThreeNodeForLocation (line 50) | def FindGafferThreeNodeForLocation(location: str, boundingGafferName: In... function FindPackageForCurrentSelection (line 51) | def FindPackageForCurrentSelection(raiseOnMissing: bool = ..., includeEd... function FindTemplateMaterialPathForLocation (line 52) | def FindTemplateMaterialPathForLocation(location: str) -> str: ... function GetDeletablePackagesInGaffers (line 53) | def GetDeletablePackagesInGaffers(locations: list[str], gafferNodes: lis... function GetIcon (line 54) | def GetIcon(iconName) -> PyQt5.QtGui.QIcon: ... function GetIconPixmaps (line 55) | def GetIconPixmaps(iconName) -> None: ... function GetLightPackageIcon (line 56) | def GetLightPackageIcon(packageClass: object, iconSize: int = ...) -> Py... function GetMaterialMetaFromAttributes (line 57) | def GetMaterialMetaFromAttributes(attrs: PyFnAttribute.GroupAttribute): ... function GetParametersHashFromAttributes (line 58) | def GetParametersHashFromAttributes(attrs: PyFnAttribute.GroupAttribute)... function GetPotentialChildren (line 59) | def GetPotentialChildren(location: str) -> list: ... function GetRenamablePackage (line 60) | def GetRenamablePackage(locations: list[str], gafferNode: PackageSuperTo... function GetViewerParametersFromAttributes (line 61) | def GetViewerParametersFromAttributes(attrs: PyFnAttribute.GroupAttribut... function ProvideLightPackageWithTemplateMaterial (line 62) | def ProvideLightPackageWithTemplateMaterial(lightPackage: PackageSuperTo... function ShowRenameDialog (line 63) | def ShowRenameDialog(package: PackageSuperToolAPI.Packages.Package): ... FILE: katana/stubs/UI4/Widgets/LineNumberAreaWidget.pyi class LineNumberAreaWidget (line 12) | class LineNumberAreaWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 16) | def __init__(self, textEdit) -> None: ... method _LineNumberAreaWidget__getDigitCount (line 17) | def _LineNumberAreaWidget__getDigitCount(self): ... method _LineNumberAreaWidget__getDigitWidth (line 18) | def _LineNumberAreaWidget__getDigitWidth(self): ... method _LineNumberAreaWidget__getMargin (line 19) | def _LineNumberAreaWidget__getMargin(self): ... method _LineNumberAreaWidget__on_textEdit_cursorPositionChanged (line 20) | def _LineNumberAreaWidget__on_textEdit_cursorPositionChanged(self): ... method _LineNumberAreaWidget__on_textEdit_documentUpdated (line 21) | def _LineNumberAreaWidget__on_textEdit_documentUpdated(self, rect: Inc... method _LineNumberAreaWidget__on_textEdit_selectionChanged (line 22) | def _LineNumberAreaWidget__on_textEdit_selectionChanged(self): ... method _LineNumberAreaWidget__updateGeometry (line 23) | def _LineNumberAreaWidget__updateGeometry(self): ... method paintEvent (line 24) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method sizeHint (line 25) | def sizeHint(self) -> PyQt5.QtCore.QSize: ... FILE: katana/stubs/UI4/Widgets/LiveRenderViewerCameraButton.pyi class LiveRenderViewerCameraButton (line 12) | class LiveRenderViewerCameraButton(ToolbarButton): method __init__ (line 13) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, viewportWidget: Vi... method _LiveRenderViewerCameraButton__on_toggled (line 14) | def _LiveRenderViewerCameraButton__on_toggled(self): ... method _LiveRenderViewerCameraButton__on_viewer_liveRenderFromViewerCameraChanged (line 15) | def _LiveRenderViewerCameraButton__on_viewer_liveRenderFromViewerCamer... FILE: katana/stubs/UI4/Widgets/LogRecordTreeView.pyi class LogRecordTreeView (line 15) | class LogRecordTreeView(PyQt5.QtWidgets.QTreeView): method __init__ (line 20) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _LogRecordTreeView__checkSortIndicatorChanged (line 21) | def _LogRecordTreeView__checkSortIndicatorChanged(self, column, order)... method addEditingMenuItems (line 22) | def addEditingMenuItems(self, menu: PyQt5.QtWidgets.QMenu): ... method addViewingMenuItems (line 23) | def addViewingMenuItems(self, menu: PyQt5.QtWidgets.QMenu): ... method contextMenuEvent (line 24) | def contextMenuEvent(self, event: PyQt5.QtGui.QContextMenuEvent): ... method getActiveLevelNames (line 25) | def getActiveLevelNames(self) -> list[str]: ... method getActiveLevels (line 26) | def getActiveLevels(self) -> set[int]: ... method getHighestRecordLevel (line 27) | def getHighestRecordLevel(self) -> int: ... method getRecordLevels (line 28) | def getRecordLevels(self) -> set[int]: ... method isLevelFilterEnabled (line 29) | def isLevelFilterEnabled(self, level: int) -> bool: ... method keyPressEvent (line 30) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method on_copyAction_triggered (line 31) | def on_copyAction_triggered(self): ... method on_deleteAction_triggered (line 32) | def on_deleteAction_triggered(self): ... method on_loggingLevelAction_toggled (line 33) | def on_loggingLevelAction_toggled(self): ... method on_turnAllOffAction_triggered (line 34) | def on_turnAllOffAction_triggered(self): ... method on_turnAllOnAction_triggered (line 35) | def on_turnAllOnAction_triggered(self): ... method setActiveLevelNames (line 36) | def setActiveLevelNames(self, activeLevelNames: list[str]): ... method setActiveLevels (line 37) | def setActiveLevels(self, levels: typing.Iterable[int]): ... method setLevelFilter (line 38) | def setLevelFilter(self, level: int, enabled: bool = ...): ... FILE: katana/stubs/UI4/Widgets/LookFileMaterialComboBox.pyi class LookFileMaterialComboBox (line 10) | class LookFileMaterialComboBox(QT4FormWidgets.InputWidgets.InputComboBox): method __init__ (line 11) | def __init__(self, parent: QT4FormWidgets.FormWidget) -> None: ... method _LookFileMaterialComboBox__on_lookFileMaterialFilterPopup_hide (line 12) | def _LookFileMaterialComboBox__on_lookFileMaterialFilterPopup_hide(sel... method _LookFileMaterialComboBox__on_lookFileMaterialFilterPopup_itemChosen (line 13) | def _LookFileMaterialComboBox__on_lookFileMaterialFilterPopup_itemChos... method _LookFileMaterialComboBox__on_lookFileMaterialFilterPopup_show (line 14) | def _LookFileMaterialComboBox__on_lookFileMaterialFilterPopup_show(sel... method keyPressEvent (line 15) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method showPopup (line 16) | def showPopup(self): ... FILE: katana/stubs/UI4/Widgets/MessageBox.pyi function Critical (line 8) | def Critical(title, text, acceptText: Incomplete | None = ..., cancelTex... function Information (line 9) | def Information(title, text, acceptText: Incomplete | None = ..., cancel... function Question (line 10) | def Question(title, text, acceptText: Incomplete | None = ..., cancelTex... function Tristate (line 11) | def Tristate(title, text, yesText: Incomplete | None = ..., noText: Inco... function Warning (line 12) | def Warning(title, text, acceptText: Incomplete | None = ..., cancelText... FILE: katana/stubs/UI4/Widgets/MessagesToolbarButton.pyi class MessagesPopupWindow (line 18) | class MessagesPopupWindow(PyQt5.QtWidgets.QFrame): method __init__ (line 22) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method getHighestRecordLevel (line 23) | def getHighestRecordLevel(self) -> int: ... method getTreeView (line 24) | def getTreeView(self): ... method hideEvent (line 25) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method on_treeView_activeLevelsChanged (line 26) | def on_treeView_activeLevelsChanged(self, activeLevels): ... method showEvent (line 27) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... class MessagesToolbarButton (line 29) | class MessagesToolbarButton(ToolbarButton): class _RecordChanged (line 30) | class _RecordChanged: method __init__ (line 34) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None) -> None: ... method _MessagesToolbarButton__changeIconToHighestPossibleLevel (line 35) | def _MessagesToolbarButton__changeIconToHighestPossibleLevel(self, cha... method _MessagesToolbarButton__changeIconToLevel (line 36) | def _MessagesToolbarButton__changeIconToLevel(self, level, changed): ... method _MessagesToolbarButton__markActiveLevelsAsRead (line 37) | def _MessagesToolbarButton__markActiveLevelsAsRead(self): ... method _MessagesToolbarButton__setBlinkState (line 38) | def _MessagesToolbarButton__setBlinkState(self, state: bool): ... method _MessagesToolbarButton__updateIcon (line 39) | def _MessagesToolbarButton__updateIcon(self): ... method on_blinkTimer_timeout (line 40) | def on_blinkTimer_timeout(self): ... method on_logRecordItemModel_recordAdded (line 41) | def on_logRecordItemModel_recordAdded(self, level: int): ... method on_logRecordItemModel_recordsRemoved (line 42) | def on_logRecordItemModel_recordsRemoved(self): ... method on_mousePressEvent (line 43) | def on_mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method on_popupWindow_activeLevelsChanged (line 44) | def on_popupWindow_activeLevelsChanged(self, activeLevels: set[int]): ... method on_popupWindow_hide (line 45) | def on_popupWindow_hide(self): ... method on_popupWindow_show (line 46) | def on_popupWindow_show(self): ... FILE: katana/stubs/UI4/Widgets/MetaCheckBox.pyi class MetaCheckBox (line 9) | class MetaCheckBox(PyQt5.QtWidgets.QCheckBox): method __init__ (line 11) | def __init__(self, displayName, meta, parent) -> None: ... method _MetaCheckBox__toggled (line 12) | def _MetaCheckBox__toggled(self, on): ... method getMeta (line 13) | def getMeta(self): ... method mouseMoveEvent (line 14) | def mouseMoveEvent(self, ev): ... method mousePressEvent (line 15) | def mousePressEvent(self, ev): ... method mouseReleaseEvent (line 16) | def mouseReleaseEvent(self, ev): ... FILE: katana/stubs/UI4/Widgets/ModalProcessInterruptWidget.pyi class ModalProcessInterruptWidget (line 10) | class ModalProcessInterruptWidget(PyQt5.QtWidgets.QFrame): method __init__ (line 11) | def __init__(self, interruptCallback: typing.Callable, minWidth: int =... method _ModalProcessInterruptWidget__interrupt (line 12) | def _ModalProcessInterruptWidget__interrupt(self, *args, **kwargs): ... method closeEvent (line 13) | def closeEvent(self, e): ... method disableStopButton (line 14) | def disableStopButton(self): ... method interrupted (line 15) | def interrupted(self): ... method update (line 16) | def update(self, message, tick: bool = ...): ... FILE: katana/stubs/UI4/Widgets/MonitorLayer/MonitorLayer.pyi class MonitorLayer (line 17) | class MonitorLayer: method __init__ (line 19) | def __init__(self, tab) -> None: ... method _MonitorLayer__cameraMatchesRenderCamera (line 20) | def _MonitorLayer__cameraMatchesRenderCamera(self, viewport): ... method _MonitorLayer__getCatalogItemRenderCamera (line 21) | def _MonitorLayer__getCatalogItemRenderCamera(self) -> tuple[int, str]... method _MonitorLayer__manipulationStarts (line 22) | def _MonitorLayer__manipulationStarts(self): ... method _MonitorLayer__manipulationStops (line 23) | def _MonitorLayer__manipulationStops(self): ... method _MonitorLayer__on_catalog_clientSlotUpdate (line 24) | def _MonitorLayer__on_catalog_clientSlotUpdate(self, eventType: str | ... method _MonitorLayer__on_catalog_itemDelete (line 25) | def _MonitorLayer__on_catalog_itemDelete(self, eventType: str | None, ... method _MonitorLayer__on_catalog_itemImageRegionUpdate (line 26) | def _MonitorLayer__on_catalog_itemImageRegionUpdate(self, eventType: s... method _MonitorLayer__on_catalog_itemRenderCameraUpdate (line 27) | def _MonitorLayer__on_catalog_itemRenderCameraUpdate(self, eventType: ... method _MonitorLayer__on_catalog_rebuild (line 28) | def _MonitorLayer__on_catalog_rebuild(self, eventType, eventID): ... method _MonitorLayer__registerMonitorLayerEventHandlers (line 29) | def _MonitorLayer__registerMonitorLayerEventHandlers(self): ... method _MonitorLayer__resetMonitorLayer (line 30) | def _MonitorLayer__resetMonitorLayer(self): ... method _MonitorLayer__setMonitorLayerOption (line 31) | def _MonitorLayer__setMonitorLayerOption(self, viewport, name, value: ... method _MonitorLayer__setMonitorLayerOptionForAllViewports (line 32) | def _MonitorLayer__setMonitorLayerOptionForAllViewports(self, name: st... method _MonitorLayer__setUp (line 33) | def _MonitorLayer__setUp(self): ... method _MonitorLayer__tearDown (line 34) | def _MonitorLayer__tearDown(self): ... method _MonitorLayer__unregisterLayerEventHandlers (line 35) | def _MonitorLayer__unregisterLayerEventHandlers(self): ... method matchFirstViewportCameraWithCatalogItemRenderCamera (line 36) | def matchFirstViewportCameraWithCatalogItemRenderCamera(self): ... method setDisplayWhileManipulating (line 37) | def setDisplayWhileManipulating(self, displayWhileManipulating: bool):... method setEnabled (line 38) | def setEnabled(self, enabled: bool): ... method setIgnoresAlpha (line 39) | def setIgnoresAlpha(self, value): ... method setMonitorLayerVisible (line 40) | def setMonitorLayerVisible(self, visible: bool): ... method setupCatalogItem (line 41) | def setupCatalogItem(self): ... method toggleEnabled (line 42) | def toggleEnabled(self): ... method toggleIgnoresAlpha (line 43) | def toggleIgnoresAlpha(self): ... method toggledisplayWhileManipulating (line 44) | def toggledisplayWhileManipulating(self): ... method update (line 45) | def update(self): ... method updateImageVisibilityForViewport (line 46) | def updateImageVisibilityForViewport(self, viewport, visible: bool = .... method updateMonitorLayerIgnoresAlpha (line 47) | def updateMonitorLayerIgnoresAlpha(self): ... method updateSelection (line 48) | def updateSelection(self): ... method displayWhileManipulating (line 50) | def displayWhileManipulating(self): ... method enabled (line 52) | def enabled(self): ... method monitorLayerIgnoresAlpha (line 54) | def monitorLayerIgnoresAlpha(self): ... FILE: katana/stubs/UI4/Widgets/MonitorLayer/Utils.pyi function GetViewports (line 7) | def GetViewports(viewerDelegate): ... function PopupMenuUnderWidget (line 8) | def PopupMenuUnderWidget(menu, widget): ... function SetOptionOnAllMonitorLayers (line 9) | def SetOptionOnAllMonitorLayers(name, value, delegate): ... function SetOptionOnMonitorLayer (line 10) | def SetOptionOnMonitorLayer(name, value, viewport): ... function TruncateText (line 11) | def TruncateText(text, numChars): ... FILE: katana/stubs/UI4/Widgets/MonitorLayer/Widgets.pyi class AOVSelector (line 25) | class AOVSelector(PyQt5.QtCore.QObject): method __init__ (line 34) | def __init__(self) -> None: ... method _AOVSelector__shiftSelectedAOV (line 35) | def _AOVSelector__shiftSelectedAOV(self, shift): ... method _AOVSelector__updateCurrentAOV (line 36) | def _AOVSelector__updateCurrentAOV(self): ... method selectNextAOV (line 37) | def selectNextAOV(self): ... method selectPreviousAOV (line 38) | def selectPreviousAOV(self): ... method currentAOV (line 40) | def currentAOV(self): ... method currentAOVIndex (line 42) | def currentAOVIndex(self): ... method selectedAOVIndex (line 44) | def selectedAOVIndex(self): ... class MonitorLayerDropdownButton (line 46) | class MonitorLayerDropdownButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 47) | def __init__(self, text, toolTip, defaultPixmapPath, activePixmapPath,... method _MonitorLayerDropdownButton__sizeHint (line 48) | def _MonitorLayerDropdownButton__sizeHint(self, size): ... method enterEvent (line 49) | def enterEvent(self, ev): ... method leaveEvent (line 50) | def leaveEvent(self, ev): ... method minimumSizeHint (line 51) | def minimumSizeHint(self): ... method paintEvent (line 52) | def paintEvent(self, ev): ... method sizeHint (line 53) | def sizeHint(self): ... class ToggleButton (line 55) | class ToggleButton(_ToggleButton): method __init__ (line 57) | def __init__(self, parent, size) -> None: ... class ToolBar (line 59) | class ToolBar(PyQt5.QtWidgets.QFrame): class AovToolControl (line 60) | class AovToolControl(tuple): method __init__ (line 64) | def __init__(self, _cls, button, menu) -> None: ... method _asdict (line 65) | def _asdict(self): ... method _make (line 67) | def _make(cls, iterable): ... method _replace (line 68) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 69) | def __getnewargs__(self): ... method button (line 71) | def button(self): ... method menu (line 73) | def menu(self): ... class ViewTransformControl (line 75) | class ViewTransformControl(tuple): method __init__ (line 79) | def __init__(self, _cls, toggle, button, menu) -> None: ... method _asdict (line 80) | def _asdict(self): ... method _make (line 82) | def _make(cls, iterable): ... method _replace (line 83) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 84) | def __getnewargs__(self): ... method button (line 86) | def button(self): ... method menu (line 88) | def menu(self): ... method toggle (line 90) | def toggle(self): ... method __init__ (line 103) | def __init__(self, tab, buttonSize) -> None: ... method _ToolBar__buildIdBufferToolTip (line 104) | def _ToolBar__buildIdBufferToolTip(self) -> str: ... method _ToolBar__createAOVToolControl (line 105) | def _ToolBar__createAOVToolControl(self, buttonSize): ... method _ToolBar__createIdBufferToggle (line 106) | def _ToolBar__createIdBufferToggle(self, buttonSize): ... method _ToolBar__createROIWidgets (line 107) | def _ToolBar__createROIWidgets(self, buttonSize: int): ... method _ToolBar__createSwitchViewMenu (line 108) | def _ToolBar__createSwitchViewMenu(self): ... method _ToolBar__createToggle (line 109) | def _ToolBar__createToggle(self, name, defaultPixmap, activePixmap, bu... method _ToolBar__createViewTransformControl (line 110) | def _ToolBar__createViewTransformControl(self, buttonSize): ... method _ToolBar__onAOVMenuOpened (line 111) | def _ToolBar__onAOVMenuOpened(self, checked): ... method _ToolBar__onAOVSelected (line 112) | def _ToolBar__onAOVSelected(self, action): ... method _ToolBar__onAOVsChanged (line 113) | def _ToolBar__onAOVsChanged(self): ... method _ToolBar__onCurrentAOVChanged (line 114) | def _ToolBar__onCurrentAOVChanged(self): ... method _ToolBar__onCurrentAOVIndexChanged (line 115) | def _ToolBar__onCurrentAOVIndexChanged(self): ... method _ToolBar__onIdBufferToggled (line 116) | def _ToolBar__onIdBufferToggled(self, checked): ... method _ToolBar__onSelectedAOVChanged (line 117) | def _ToolBar__onSelectedAOVChanged(self): ... method _ToolBar__onUseSelectedAOVChanged (line 118) | def _ToolBar__onUseSelectedAOVChanged(self): ... method _ToolBar__onViewMenuOpened (line 119) | def _ToolBar__onViewMenuOpened(self, checked): ... method _ToolBar__onViewSelected (line 120) | def _ToolBar__onViewSelected(self, action): ... method _ToolBar__onViewToggled (line 121) | def _ToolBar__onViewToggled(self, checked): ... method _ToolBar__on_catalog_clientSlotUpdate (line 122) | def _ToolBar__on_catalog_clientSlotUpdate(self, eventType, eventID): ... method _ToolBar__on_catalog_externalBufferLoaded (line 123) | def _ToolBar__on_catalog_externalBufferLoaded(self, eventType, eventID... method _ToolBar__on_catalog_itemDelete (line 124) | def _ToolBar__on_catalog_itemDelete(self, eventType, eventID, item): ... method _ToolBar__on_catalog_itemPropertyUpdate (line 125) | def _ToolBar__on_catalog_itemPropertyUpdate(self, args): ... method _ToolBar__on_catalog_rebuild (line 126) | def _ToolBar__on_catalog_rebuild(self, eventType, eventID): ... method _ToolBar__on_pref_changed (line 127) | def _ToolBar__on_pref_changed(self, eventType: str | None, eventID: ty... method _ToolBar__on_renderManager_roiChanged (line 128) | def _ToolBar__on_renderManager_roiChanged(self, eventType, eventID): ... method _ToolBar__on_roiMenu_aboutToShow (line 129) | def _ToolBar__on_roiMenu_aboutToShow(self): ... method _ToolBar__on_roiShowHandleAction_triggered (line 130) | def _ToolBar__on_roiShowHandleAction_triggered(self, checked: bool): ... method _ToolBar__populateAOVMenuActions (line 131) | def _ToolBar__populateAOVMenuActions(self, menu): ... method _ToolBar__populateAOVToolTipWithShortcuts (line 132) | def _ToolBar__populateAOVToolTipWithShortcuts(self): ... method _ToolBar__setMonitorAOVLayerIndex (line 133) | def _ToolBar__setMonitorAOVLayerIndex(self, index): ... method _ToolBar__setStyleSheetProperty (line 135) | def _ToolBar__setStyleSheetProperty(widget, propertyName, propertyValu... method _ToolBar__updateAOVButton (line 136) | def _ToolBar__updateAOVButton(self): ... method _ToolBar__updateAOVsFromCatalog (line 137) | def _ToolBar__updateAOVsFromCatalog(self): ... method allowIDBuffer (line 138) | def allowIDBuffer(self, allow): ... method defaultAOV (line 139) | def defaultAOV(self): ... method getCurrentAOV (line 140) | def getCurrentAOV(self): ... method isIDBufferEnabled (line 141) | def isIDBufferEnabled(self) -> bool: ... method nextAOV (line 142) | def nextAOV(self): ... method onResetROICallback (line 143) | def onResetROICallback(self, attr: PyFnAttribute.Attribute): ... method onSetROICallback (line 144) | def onSetROICallback(self, attr: PyFnAttribute.GroupAttribute): ... method previousAOV (line 145) | def previousAOV(self): ... method setIDBufferEnabled (line 146) | def setIDBufferEnabled(self, enabled: bool): ... method toggleSelectedAOV (line 147) | def toggleSelectedAOV(self): ... method toggleViewTransform (line 148) | def toggleViewTransform(self): ... method updateROI (line 149) | def updateROI(self, enabled: Incomplete | None = ...): ... method _ToolBar__viewerDelegate (line 151) | def _ToolBar__viewerDelegate(self): ... class _ToggleButton (line 153) | class _ToggleButton(ToolbarButton): method __init__ (line 155) | def __init__(self, toolTip, parent, buttonSize, normalPixmap, onPixmap... method _ToggleButton__clicked (line 156) | def _ToggleButton__clicked(self): ... FILE: katana/stubs/UI4/Widgets/MonitorManipulatorButton.pyi class MonitorManipulatorButton (line 14) | class MonitorManipulatorButton(PyQt5.QtWidgets.QToolButton): method __init__ (line 16) | def __init__(self, *args) -> None: ... method GetIcon (line 18) | def GetIcon() -> PyQt5.QtGui.QIcon: ... method _MonitorManipulatorButton__on_clicked (line 19) | def _MonitorManipulatorButton__on_clicked(self): ... method _MonitorManipulatorButton__on_manipulator_update (line 20) | def _MonitorManipulatorButton__on_manipulator_update(self, eventType: ... FILE: katana/stubs/UI4/Widgets/NavigationToolbar.pyi class NavigationToolbar (line 13) | class NavigationToolbar(PyQt5.QtWidgets.QFrame): method __init__ (line 15) | def __init__(self, parent, callback: Incomplete | None = ..., maxHisto... method _NavigationToolbar__backButtonClicked (line 16) | def _NavigationToolbar__backButtonClicked(self): ... method _NavigationToolbar__backButtonMenuCallback (line 17) | def _NavigationToolbar__backButtonMenuCallback(self, action): ... method _NavigationToolbar__backButtonRightClicked (line 18) | def _NavigationToolbar__backButtonRightClicked(self): ... method _NavigationToolbar__clearHistory (line 19) | def _NavigationToolbar__clearHistory(self): ... method _NavigationToolbar__forwardButtonClicked (line 20) | def _NavigationToolbar__forwardButtonClicked(self): ... method _NavigationToolbar__forwardButtonMenuCallback (line 21) | def _NavigationToolbar__forwardButtonMenuCallback(self, action): ... method _NavigationToolbar__forwardButtonRightClicked (line 22) | def _NavigationToolbar__forwardButtonRightClicked(self): ... method _NavigationToolbar__loadResources (line 23) | def _NavigationToolbar__loadResources(self): ... method _NavigationToolbar__updateState (line 24) | def _NavigationToolbar__updateState(self): ... method clearFuture (line 25) | def clearFuture(self): ... method clearPast (line 26) | def clearPast(self): ... method getCallback (line 27) | def getCallback(self): ... method getCurrentEntry (line 28) | def getCurrentEntry(self): ... method pushEntry (line 29) | def pushEntry(self, name, meta): ... method setCallback (line 30) | def setCallback(self, callback): ... FILE: katana/stubs/UI4/Widgets/NodeButton.pyi class NodeButton (line 26) | class NodeButton(ToolbarButton, KeyboardShortcutManagerMixin): method __init__ (line 34) | def __init__(self, node: NodegraphAPI.Node | None, defaultTooltip: str... method _NodeButton__buildIcon (line 35) | def _NodeButton__buildIcon(self, hover: bool = ...): ... method _NodeButton__getTooltip (line 36) | def _NodeButton__getTooltip(self, node: NodegraphAPI.Node | None, defa... method _NodeButton__setEditFlag (line 37) | def _NodeButton__setEditFlag(self): ... method _NodeButton__setViewFlag (line 38) | def _NodeButton__setViewFlag(self): ... method _NodeButton__startNodeDrag (line 39) | def _NodeButton__startNodeDrag(self): ... method _NodeButton__toggleBypassedState (line 40) | def _NodeButton__toggleBypassedState(self): ... method _NodeButton__toggleEditFlag (line 41) | def _NodeButton__toggleEditFlag(self): ... method _NodeButton__toggleViewFlag (line 42) | def _NodeButton__toggleViewFlag(self): ... method _updateIcon (line 43) | def _updateIcon(self): ... method _updateStyleSheet (line 44) | def _updateStyleSheet(self, forceHoverColor: bool = ...): ... method changeEvent (line 45) | def changeEvent(self, event): ... method customEvent (line 46) | def customEvent(self, event): ... method editNodeName (line 47) | def editNodeName(self): ... method getNode (line 48) | def getNode(self) -> NodegraphAPI.Node | None: ... method mousePressEvent (line 49) | def mousePressEvent(self, event: PyQt5.QtGui.QMouseEvent): ... method registerKeyboardShortcuts (line 51) | def registerKeyboardShortcuts(cls): ... method setBold (line 52) | def setBold(self, bold: bool): ... method setNode (line 53) | def setNode(self, node: NodegraphAPI.Node): ... method showContextMenu (line 54) | def showContextMenu(self, pos): ... method updateAppearance (line 55) | def updateAppearance(self): ... function _GetNodePixmap (line 57) | def _GetNodePixmap(node: NodegraphAPI.Node) -> PyQt5.QtGui.QPixmap: ... function _InitNodePixmaps (line 58) | def _InitNodePixmaps(): ... function __on_node_updated (line 59) | def __on_node_updated(args: list[tuple[str, object, dict]]): ... FILE: katana/stubs/UI4/Widgets/NodeChooserButton.pyi class NodeChooserButton (line 14) | class NodeChooserButton(FilterablePopupButton): method __init__ (line 17) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _NodeChooserButton__filterItemCallback (line 18) | def _NodeChooserButton__filterItemCallback(self, value: bool, name, me... method addPopupWindowButton (line 19) | def addPopupWindowButton(self, text: str): ... method addSceneNodesCheckbox (line 20) | def addSceneNodesCheckbox(self, text: str = ..., defaultValue: bool = ... method getNodeNames (line 21) | def getNodeNames(self) -> list[str | None]: ... method getNodeTypeName (line 22) | def getNodeTypeName(self) -> str | None: ... method on_aboutToShow (line 23) | def on_aboutToShow(self): ... method on_button_clicked (line 24) | def on_button_clicked(self): ... method on_itemChosen (line 25) | def on_itemChosen(self, name, meta): ... method setNodeNames (line 26) | def setNodeNames(self, nodeNames: list[str | None]): ... method setNodeTypeName (line 27) | def setNodeTypeName(self, nodeTypeName: str | None): ... FILE: katana/stubs/UI4/Widgets/NodeColorsMenu.pyi class ColorAction (line 18) | class ColorAction(PyQt5.QtWidgets.QAction): method __init__ (line 19) | def __init__(self, c3f, text, parent, nodes: Incomplete | None = ...) ... method _ColorAction__activatedCB (line 20) | def _ColorAction__activatedCB(self): ... method _ColorAction__buildIcon (line 21) | def _ColorAction__buildIcon(self): ... class NodeColorsMenu (line 23) | class NodeColorsMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 25) | def __init__(self, parent: Incomplete | None = ..., nodes: Incomplete ... method _NodeColorsMenu__doAboutToShow (line 26) | def _NodeColorsMenu__doAboutToShow(self): ... method _NodeColorsMenu__doActivated (line 27) | def _NodeColorsMenu__doActivated(self, action): ... function SetNodeColorCustom (line 29) | def SetNodeColorCustom(nodes: Incomplete | None = ...): ... FILE: katana/stubs/UI4/Widgets/NodeMenu.pyi class CheckList (line 13) | class CheckList(PyQt5.QtWidgets.QListWidget): method mousePressEvent (line 14) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 15) | def mouseReleaseEvent(self, event): ... class EditMenuDialog (line 17) | class EditMenuDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 18) | def __init__(self, parent, ignoreTags) -> None: ... method doReset (line 19) | def doReset(self): ... method getActiveTags (line 20) | def getActiveTags(self): ... class NodeMenu (line 22) | class NodeMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 24) | def __init__(self, parent, onlyTags: tuple = ..., ignoreTags: tuple = ... method _NodeMenu__NodeSetsByCategory (line 25) | def _NodeMenu__NodeSetsByCategory(self, nodes): ... method _NodeMenu__addSubMenuNodes (line 26) | def _NodeMenu__addSubMenuNodes(self, name, nodesTuple): ... method _NodeMenu__addSubMenus (line 27) | def _NodeMenu__addSubMenus(self, name, allNodes, tags, showAll, otherS... method _NodeMenu__createHierMenu (line 28) | def _NodeMenu__createHierMenu(self, path, origParent, hierMenus): ... method _NodeMenu__doAboutToShow (line 29) | def _NodeMenu__doAboutToShow(self): ... method _NodeMenu__doActivated (line 30) | def _NodeMenu__doActivated(self, action): ... method _NodeMenu__doEditMenus (line 31) | def _NodeMenu__doEditMenus(self): ... method _NodeMenu__doRetagged (line 32) | def _NodeMenu__doRetagged(self, event, eventId, **kwargs): ... method _NodeMenu__getNodesWithTag (line 33) | def _NodeMenu__getNodesWithTag(self, nodes, tag): ... method _NodeMenu__rebuildMenu (line 34) | def _NodeMenu__rebuildMenu(self): ... FILE: katana/stubs/UI4/Widgets/NodePopupMenu.pyi class NodePopupMenu (line 16) | class NodePopupMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 17) | def __init__(self, node: NodegraphAPI.Node, port: NodegraphAPI.Port, *... method _NodePopupMenu__doActions (line 18) | def _NodePopupMenu__doActions(self): ... method _NodePopupMenu__doFlipbookNode (line 19) | def _NodePopupMenu__doFlipbookNode(self, *args): ... method _NodePopupMenu__doGenerateAndCueOutlineFile (line 20) | def _NodePopupMenu__doGenerateAndCueOutlineFile(self): ... method _NodePopupMenu__doGenerateOutlineFile (line 21) | def _NodePopupMenu__doGenerateOutlineFile(self): ... method _NodePopupMenu__doParameters (line 22) | def _NodePopupMenu__doParameters(self): ... method _NodePopupMenu__nodeDeleteHandler (line 23) | def _NodePopupMenu__nodeDeleteHandler(self, eventType, eventID, node: ... method _NodePopupMenu__regenerateThumbnail (line 24) | def _NodePopupMenu__regenerateThumbnail(self): ... method _NodePopupMenu__toggleThumbnail (line 25) | def _NodePopupMenu__toggleThumbnail(self): ... class PortRenameWidget (line 27) | class PortRenameWidget(PyQt5.QtWidgets.QLineEdit): method __init__ (line 31) | def __init__(self, parent, port: NodegraphAPI.Port, coords) -> None: ... method _PortRenameWidget__acceptChanges (line 32) | def _PortRenameWidget__acceptChanges(self): ... method _PortRenameWidget__getExternalPort (line 33) | def _PortRenameWidget__getExternalPort(self): ... method _PortRenameWidget__isInputSidebar (line 34) | def _PortRenameWidget__isInputSidebar(self): ... method _PortRenameWidget__nameConflicts (line 35) | def _PortRenameWidget__nameConflicts(self, node: NodegraphAPI.Node, ne... method _PortRenameWidget__renamePort (line 36) | def _PortRenameWidget__renamePort(self, newName): ... method _PortRenameWidget__resizeToContents (line 37) | def _PortRenameWidget__resizeToContents(self, text): ... method _PortRenameWidget__textEdited (line 38) | def _PortRenameWidget__textEdited(self, text): ... method focusOutEvent (line 39) | def focusOutEvent(self, _event: Incomplete | None = ...): ... method setLeafNameSelected (line 40) | def setLeafNameSelected(self): ... method show (line 41) | def show(self): ... method sideBarKey (line 42) | def sideBarKey(self): ... class ShadingPortPopupMenu (line 44) | class ShadingPortPopupMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 45) | def __init__(self, port: NodegraphAPI.Port, parent, portCoords) -> Non... method _ShadingPortPopupMenu__buildJumpActions (line 46) | def _ShadingPortPopupMenu__buildJumpActions(self): ... method _ShadingPortPopupMenu__deletePort (line 47) | def _ShadingPortPopupMenu__deletePort(self): ... method _ShadingPortPopupMenu__isInputPort (line 48) | def _ShadingPortPopupMenu__isInputPort(self): ... method _ShadingPortPopupMenu__jump (line 49) | def _ShadingPortPopupMenu__jump(self): ... method _ShadingPortPopupMenu__rename (line 50) | def _ShadingPortPopupMenu__rename(self): ... class _PageState (line 52) | class _PageState: method __init__ (line 53) | def __init__(self, dataStr) -> None: ... method _PageState__getPathString (line 54) | def _PageState__getPathString(self, path): ... method _PageState__getStateString (line 55) | def _PageState__getStateString(self, state): ... method asDataString (line 56) | def asDataString(self): ... method getPathsFromPortName (line 57) | def getPathsFromPortName(self, portName): ... method set (line 58) | def set(self, fullPortName, state: Incomplete | None = ...): ... FILE: katana/stubs/UI4/Widgets/NodeTypePopup.pyi class NodeTypePopup (line 9) | class NodeTypePopup(FilterablePopupButton): method __init__ (line 10) | def __init__(self, parent, nodeTypeList: Incomplete | None = ..., flav... method _NodeTypePopup__aboutToShow (line 11) | def _NodeTypePopup__aboutToShow(self): ... method _NodeTypePopup__flavorFilter (line 12) | def _NodeTypePopup__flavorFilter(self, state, name, meta): ... FILE: katana/stubs/UI4/Widgets/NonexclusiveCheckboxPopup.pyi class NonexclusiveCheckboxPopup (line 12) | class NonexclusiveCheckboxPopup(FilterablePopupButton): method __init__ (line 14) | def __init__(self, parent, emptyLabel: str = ..., showValues: bool = .... method _NonexclusiveCheckboxPopup__addToValues (line 15) | def _NonexclusiveCheckboxPopup__addToValues(self, value): ... method _NonexclusiveCheckboxPopup__itemChosen (line 16) | def _NonexclusiveCheckboxPopup__itemChosen(self, name, meta): ... method _NonexclusiveCheckboxPopup__popupClosed (line 17) | def _NonexclusiveCheckboxPopup__popupClosed(self): ... method _NonexclusiveCheckboxPopup__removeFromValues (line 18) | def _NonexclusiveCheckboxPopup__removeFromValues(self, value): ... method _NonexclusiveCheckboxPopup__setItemCheck (line 19) | def _NonexclusiveCheckboxPopup__setItemCheck(self, item): ... method _NonexclusiveCheckboxPopup__treeCheckboxItem (line 20) | def _NonexclusiveCheckboxPopup__treeCheckboxItem(self, event): ... method _NonexclusiveCheckboxPopup__treeMouseMoveEvent (line 21) | def _NonexclusiveCheckboxPopup__treeMouseMoveEvent(self, event): ... method _NonexclusiveCheckboxPopup__treeMousePressEvent (line 22) | def _NonexclusiveCheckboxPopup__treeMousePressEvent(self, event): ... method _NonexclusiveCheckboxPopup__treeMouseReleaseEvent (line 23) | def _NonexclusiveCheckboxPopup__treeMouseReleaseEvent(self, event): ... method addItem (line 24) | def addItem(self, *args, **kwds): ... method clear (line 25) | def clear(self): ... method getItemNames (line 26) | def getItemNames(self): ... method getValues (line 27) | def getValues(self): ... method setActiveColor (line 28) | def setActiveColor(self, c): ... method setDragToToggle (line 29) | def setDragToToggle(self, state): ... method setEmptyLabel (line 30) | def setEmptyLabel(self, label): ... method setNoActiveColor (line 31) | def setNoActiveColor(self): ... method setValues (line 32) | def setValues(self, values, updateItems: bool = ..., sendSignal: bool ... FILE: katana/stubs/UI4/Widgets/NotificationToolbarButton.pyi class NotificationPopupWindow (line 18) | class NotificationPopupWindow(PyQt5.QtWidgets.QFrame): method __init__ (line 21) | def __init__(self) -> None: ... method _NotificationPopupWindow__actionMenuAboutToShow (line 22) | def _NotificationPopupWindow__actionMenuAboutToShow(self): ... method _NotificationPopupWindow__contextMenuClick (line 23) | def _NotificationPopupWindow__contextMenuClick(self, pos): ... method _NotificationPopupWindow__fillActionMenu (line 24) | def _NotificationPopupWindow__fillActionMenu(self, menu): ... method hideEvent (line 25) | def hideEvent(self, e): ... method notificationAdded (line 26) | def notificationAdded(self, record): ... method notificationDeleted (line 27) | def notificationDeleted(self, record): ... method setGeometry (line 28) | def setGeometry(self, x, y, w, h): ... method showEvent (line 29) | def showEvent(self, e): ... method updateRecords (line 30) | def updateRecords(self, records): ... class NotificationToolbarButton (line 32) | class NotificationToolbarButton(ToolbarButton): method __init__ (line 33) | def __init__(self, parent) -> None: ... method _NotificationToolbarButton__blinkWithPriorityState (line 34) | def _NotificationToolbarButton__blinkWithPriorityState(self): ... method _NotificationToolbarButton__deleteRecordCallback (line 35) | def _NotificationToolbarButton__deleteRecordCallback(self, eventType, ... method _NotificationToolbarButton__mousePressCallback (line 36) | def _NotificationToolbarButton__mousePressCallback(self, event): ... method _NotificationToolbarButton__newRecordCallback (line 37) | def _NotificationToolbarButton__newRecordCallback(self, eventType, eve... method _NotificationToolbarButton__popupHidden (line 38) | def _NotificationToolbarButton__popupHidden(self): ... method _NotificationToolbarButton__popupShow (line 39) | def _NotificationToolbarButton__popupShow(self): ... method _NotificationToolbarButton__recordPriorityChangedCallback (line 40) | def _NotificationToolbarButton__recordPriorityChangedCallback(self, ev... method _NotificationToolbarButton__recordTitleChangedCallback (line 41) | def _NotificationToolbarButton__recordTitleChangedCallback(self, event... method _NotificationToolbarButton__setBlinkState (line 42) | def _NotificationToolbarButton__setBlinkState(self, state): ... method _NotificationToolbarButton__timerCallback (line 43) | def _NotificationToolbarButton__timerCallback(self): ... method _NotificationToolbarButton__updatePriorityState (line 44) | def _NotificationToolbarButton__updatePriorityState(self): ... class NotificationTreeWidget (line 46) | class NotificationTreeWidget(SortableTreeWidget): method __init__ (line 52) | def __init__(self, parent) -> None: ... method _NotificationTreeWidget__keyPressCallback (line 53) | def _NotificationTreeWidget__keyPressCallback(self, event): ... method _NotificationTreeWidget__mousePressCallback (line 54) | def _NotificationTreeWidget__mousePressCallback(self, event): ... method adjustWidth (line 55) | def adjustWidth(self, width): ... method deleteNotifications (line 56) | def deleteNotifications(self): ... method ignoreNotifications (line 57) | def ignoreNotifications(self): ... method notificationAdded (line 58) | def notificationAdded(self, record): ... method notificationDeleted (line 59) | def notificationDeleted(self, record): ... method notificationPriorityChanged (line 60) | def notificationPriorityChanged(self, record): ... method notificationTitleChanged (line 61) | def notificationTitleChanged(self, record): ... method unignoreNotifications (line 62) | def unignoreNotifications(self): ... method updateRecords (line 63) | def updateRecords(self, records): ... class NotificationTreeWidgetItem (line 65) | class NotificationTreeWidgetItem(QT4Widgets.SortableTreeWidget.SortableT... method __init__ (line 66) | def __init__(self, parent, record, icon) -> None: ... method updatePriority (line 67) | def updatePriority(self): ... method __lt__ (line 68) | def __lt__(self, other) -> bool: ... FILE: katana/stubs/UI4/Widgets/PaneButtons.pyi class AddTabButton (line 7) | class AddTabButton(ToolbarButton): method __init__ (line 8) | def __init__(self, parent, frame) -> None: ... class CloseAllTabsButton (line 10) | class CloseAllTabsButton(ToolbarButton): method __init__ (line 11) | def __init__(self, parent, frame) -> None: ... method _CloseAllTabsButton__on_clicked (line 12) | def _CloseAllTabsButton__on_clicked(self): ... class CloseTabButton (line 14) | class CloseTabButton(ToolbarButton): method __init__ (line 15) | def __init__(self, parent, frame) -> None: ... method _CloseTabButton__on_clicked (line 16) | def _CloseTabButton__on_clicked(self): ... class MaximizePaneButton (line 18) | class MaximizePaneButton(ToolbarButton): method __init__ (line 19) | def __init__(self, parent, frame) -> None: ... method _MaximizePaneButton__on_clicked (line 20) | def _MaximizePaneButton__on_clicked(self): ... method _MaximizePaneButton__on_frame_frameMaximized (line 21) | def _MaximizePaneButton__on_frame_frameMaximized(self, state): ... FILE: katana/stubs/UI4/Widgets/PanelScrollArea.pyi class PanelScrollArea (line 7) | class PanelScrollArea(PyQt5.QtWidgets.QScrollArea): method __init__ (line 8) | def __init__(self, parent: PyQt5.QtWidgets.QWidget) -> None: ... FILE: katana/stubs/UI4/Widgets/PanelWidget.pyi class PanelWidget (line 15) | class PanelWidget(PyQt5.QtWidgets.QWidget): class CloseBoxButton (line 16) | class CloseBoxButton(RolloverPixmap, PyQt5.QtWidgets.QPushButton): method __init__ (line 17) | def __init__(self, parent) -> None: ... class DragBox (line 19) | class DragBox(RolloverPixmap, PyQt5.QtWidgets.QLabel): method __init__ (line 21) | def __init__(self, parent) -> None: ... method _DragBox__processDrag (line 22) | def _DragBox__processDrag(self): ... method _resetAfterDrag (line 23) | def _resetAfterDrag(self): ... method contextMenuEvent (line 24) | def contextMenuEvent(self, ev): ... method mousePressEvent (line 25) | def mousePressEvent(self, ev): ... method setIdentifier (line 26) | def setIdentifier(self, identifier): ... method setWidgetSource (line 27) | def setWidgetSource(self, source): ... class IgnoreLabel (line 29) | class IgnoreLabel(PyQt5.QtWidgets.QLabel): method __init__ (line 31) | def __init__(self, parent) -> None: ... class ZoomBox (line 33) | class ZoomBox(RolloverPixmap, PyQt5.QtWidgets.QPushButton): method __init__ (line 34) | def __init__(self, parent) -> None: ... method __init__ (line 39) | def __init__(self, parent, name, argdict: Incomplete | None = ...) -> ... method _PanelWidget__closeBoxCallback (line 40) | def _PanelWidget__closeBoxCallback(self): ... method _PanelWidget__idle_callback (line 41) | def _PanelWidget__idle_callback(self, *args, **kwargs): ... method _PanelWidget__zoomBoxCallback (line 42) | def _PanelWidget__zoomBoxCallback(self): ... method aboutToBeDeleted (line 43) | def aboutToBeDeleted(self): ... method added (line 44) | def added(self): ... method event (line 45) | def event(self, e): ... method getCloseBox (line 46) | def getCloseBox(self): ... method getContentArea (line 47) | def getContentArea(self): ... method getDragBox (line 48) | def getDragBox(self): ... method getFormWidgetParent (line 49) | def getFormWidgetParent(self): ... method getIndex (line 50) | def getIndex(self): ... method getLabel (line 51) | def getLabel(self): ... method getName (line 52) | def getName(self): ... method getTitleBar (line 53) | def getTitleBar(self): ... method getTitleBarLeft (line 54) | def getTitleBarLeft(self): ... method getTitleBarRight (line 55) | def getTitleBarRight(self): ... method getTitlePreLabel (line 56) | def getTitlePreLabel(self): ... method getValue (line 57) | def getValue(self): ... method isIgnoreable (line 58) | def isIgnoreable(self): ... method isIgnored (line 59) | def isIgnored(self): ... method paintEvent (line 60) | def paintEvent(self, event): ... method resizeEvent (line 61) | def resizeEvent(self, e): ... method sendChange (line 62) | def sendChange(self): ... method setFormWidgetParent (line 63) | def setFormWidgetParent(self, parent): ... method setIgnoreable (line 64) | def setIgnoreable(self, value): ... method setIgnored (line 65) | def setIgnored(self, value): ... method setIndex (line 66) | def setIndex(self, index): ... method setLocked (line 67) | def setLocked(self, state): ... method setName (line 68) | def setName(self, name): ... method setZoomBoxVisible (line 69) | def setZoomBoxVisible(self, state): ... method zoomBoxClicked (line 70) | def zoomBoxClicked(self): ... FILE: katana/stubs/UI4/Widgets/PolicyHelpButton.pyi class PolicyHelpButton (line 11) | class PolicyHelpButton(ToolbarButton): method __init__ (line 19) | def __init__(self, parent: PyQt5.QtWidgets.QWidget) -> None: ... method _PolicyHelpButton__on_mousePressEvent (line 20) | def _PolicyHelpButton__on_mousePressEvent(self, event): ... method getHelpText (line 21) | def getHelpText(self): ... method getHelpTitle (line 22) | def getHelpTitle(self): ... method getHelpType (line 23) | def getHelpType(self): ... method getHelpURL (line 24) | def getHelpURL(self): ... method isHelpAvailable (line 25) | def isHelpAvailable(self): ... FILE: katana/stubs/UI4/Widgets/PopdownLabel.pyi class LabelButton (line 12) | class LabelButton(PyQt5.QtWidgets.QLabel): method mousePressEvent (line 14) | def mousePressEvent(self, ev): ... FILE: katana/stubs/UI4/Widgets/PopupButton.pyi class HidingFrame (line 12) | class HidingFrame(PyQt5.QtWidgets.QFrame): method hideEvent (line 15) | def hideEvent(self, e): ... method showEvent (line 16) | def showEvent(self, e): ... class PopupButton (line 18) | class PopupButton(ToolbarButton): method __init__ (line 20) | def __init__(self, *args, **kwds) -> None: ... method _PopupButton__buildPopup (line 21) | def _PopupButton__buildPopup(self): ... method _PopupButton__mousePressEvent (line 22) | def _PopupButton__mousePressEvent(self, event): ... method _PopupButton__popupHidden (line 23) | def _PopupButton__popupHidden(self): ... method _PopupButton__popupShow (line 24) | def _PopupButton__popupShow(self): ... method getPopup (line 25) | def getPopup(self): ... method setDesiredHeight (line 26) | def setDesiredHeight(self, h): ... method setDesiredWidth (line 27) | def setDesiredWidth(self, w): ... method setHorizontallyResizable (line 28) | def setHorizontallyResizable(self, horizontallyResizable): ... FILE: katana/stubs/UI4/Widgets/PortNameLineEdit.pyi class PortNameLineEdit (line 9) | class PortNameLineEdit(QT4FormWidgets.InputWidgets.InputLineEdit): method __init__ (line 10) | def __init__(self, node: NodegraphAPI.Node, portIndex, *args) -> None:... method _PortNameLineEdit__renameInputPort_CB (line 11) | def _PortNameLineEdit__renameInputPort_CB(self, messageType, nodePtr, ... method _PortNameLineEdit__updateText (line 12) | def _PortNameLineEdit__updateText(self): ... method doReturnPressed (line 13) | def doReturnPressed(self): ... method getNode (line 14) | def getNode(self) -> NodegraphAPI.Node: ... method getPortIndex (line 15) | def getPortIndex(self): ... method setIndex (line 16) | def setIndex(self, index): ... FILE: katana/stubs/UI4/Widgets/ProductSaveWidgets.pyi class FileSaveDialog (line 12) | class FileSaveDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 13) | def __init__(self, parent, options: dict = ...) -> None: ... method _FileSaveDialog__updateState (line 14) | def _FileSaveDialog__updateState(self): ... method _FileSaveDialog__validityChangeCallback (line 15) | def _FileSaveDialog__validityChangeCallback(self, state): ... method getResult (line 16) | def getResult(self): ... class FileSaveWidget (line 18) | class FileSaveWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 21) | def __init__(self, parent, options: dict = ...) -> None: ... method _FileSaveWidget__browseCallback (line 22) | def _FileSaveWidget__browseCallback(self): ... method _FileSaveWidget__fileTextChanged (line 23) | def _FileSaveWidget__fileTextChanged(self, text): ... method _FileSaveWidget__setValid (line 24) | def _FileSaveWidget__setValid(self, valid): ... method getActionMenu (line 25) | def getActionMenu(self): ... method getResult (line 26) | def getResult(self): ... method isValid (line 27) | def isValid(self): ... method setLocation (line 28) | def setLocation(self, loc): ... class ProductOrFileSaveDialog (line 30) | class ProductOrFileSaveDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 31) | def __init__(self, parent, options: dict = ...) -> None: ... method _ProductOrFileSaveDialog__fileToggleCallback (line 32) | def _ProductOrFileSaveDialog__fileToggleCallback(self): ... method _ProductOrFileSaveDialog__productToggleCallback (line 33) | def _ProductOrFileSaveDialog__productToggleCallback(self): ... method _ProductOrFileSaveDialog__updateState (line 34) | def _ProductOrFileSaveDialog__updateState(self): ... method _ProductOrFileSaveDialog__validityChangeCallback (line 35) | def _ProductOrFileSaveDialog__validityChangeCallback(self, state): ... method addAdditionalWidgets (line 36) | def addAdditionalWidgets(self, layout): ... method addButtonsToLayout (line 37) | def addButtonsToLayout(self): ... method getProductSaveWidget (line 38) | def getProductSaveWidget(self): ... method getResult (line 39) | def getResult(self): ... method isValid (line 40) | def isValid(self): ... method validityChange (line 41) | def validityChange(self): ... class ProductSaveDialog (line 43) | class ProductSaveDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 44) | def __init__(self, parent, options: dict = ...) -> None: ... method _ProductSaveDialog__updateState (line 45) | def _ProductSaveDialog__updateState(self): ... method _ProductSaveDialog__validityChangeCallback (line 46) | def _ProductSaveDialog__validityChangeCallback(self, state): ... method addAdditionalWidgets (line 47) | def addAdditionalWidgets(self, layout): ... method getResult (line 48) | def getResult(self): ... method isValid (line 49) | def isValid(self): ... method validityChange (line 50) | def validityChange(self): ... class _ClickableHBox (line 52) | class _ClickableHBox(PyQt5.QtWidgets.QFrame): method __init__ (line 54) | def __init__(self, parent) -> None: ... method mousePressEvent (line 55) | def mousePressEvent(self, e): ... FILE: katana/stubs/UI4/Widgets/ProgressDialog.pyi class ProgressDialog (line 9) | class ProgressDialog(PyQt5.QtWidgets.QProgressDialog): method __init__ (line 10) | def __init__(self, parent, titleText: Incomplete | None = ..., labelTe... method showEvent (line 11) | def showEvent(self, event): ... method update (line 12) | def update(self, value: int) -> bool: ... FILE: katana/stubs/UI4/Widgets/ProxyResCombo.pyi class MyAction (line 11) | class MyAction(PyQt5.QtWidgets.QAction): method __init__ (line 12) | def __init__(self, mode, *args) -> None: ... method _MyAction__activatedCB (line 13) | def _MyAction__activatedCB(self): ... class ProxyResCombo (line 15) | class ProxyResCombo(PopdownLabel): method __init__ (line 16) | def __init__(self, *args) -> None: ... method _ProxyResCombo__sampleRateUpdate_CB (line 17) | def _ProxyResCombo__sampleRateUpdate_CB(self, *args, **kwargs): ... method buildMenu (line 18) | def buildMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method updateState (line 19) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/PublicInterfaceParameters.pyi class PIP (line 16) | class PIP(tuple): method __init__ (line 20) | def __init__(self, _cls, nodeName, parameterName, page, label, name, h... method _asdict (line 21) | def _asdict(self): ... method _make (line 23) | def _make(cls, iterable): ... method _replace (line 24) | def _replace(self, _self, **kwds): ... method __getnewargs__ (line 25) | def __getnewargs__(self): ... method hintsHash (line 27) | def hintsHash(self): ... method label (line 29) | def label(self): ... method name (line 31) | def name(self): ... method nodeName (line 33) | def nodeName(self): ... method page (line 35) | def page(self): ... method parameterName (line 37) | def parameterName(self): ... method terminalNodeHash (line 39) | def terminalNodeHash(self): ... class PublicInterfaceParameters (line 41) | class PublicInterfaceParameters(PyQt5.QtWidgets.QWidget): method __init__ (line 42) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, publicInterfacePol... method _PublicInterfaceParameters__clearLayout (line 43) | def _PublicInterfaceParameters__clearLayout(self, layout: PyQt5.QtWidg... method _PublicInterfaceParameters__createNodeParameterGroupPolicy (line 44) | def _PublicInterfaceParameters__createNodeParameterGroupPolicy(self, p... method _PublicInterfaceParameters__createPagePolicy (line 45) | def _PublicInterfaceParameters__createPagePolicy(self, page: str, page... method _PublicInterfaceParameters__handleAttrSourceError (line 46) | def _PublicInterfaceParameters__handleAttrSourceError(self, layout: Py... method _PublicInterfaceParameters__handleAttrSourceErrorFallback (line 47) | def _PublicInterfaceParameters__handleAttrSourceErrorFallback(self, la... method _PublicInterfaceParameters__on_parameterAttrSource_update (line 48) | def _PublicInterfaceParameters__on_parameterAttrSource_update(self): ... method _PublicInterfaceParameters__on_publicInterfaceAttrSource_update (line 49) | def _PublicInterfaceParameters__on_publicInterfaceAttrSource_update(se... method _PublicInterfaceParameters__updateAttributeSourceConnections (line 50) | def _PublicInterfaceParameters__updateAttributeSourceConnections(self,... method _PublicInterfaceParameters__updateStalePolicies (line 51) | def _PublicInterfaceParameters__updateStalePolicies(self, policies): ... method _freeze (line 52) | def _freeze(self): ... method _isFrozen (line 53) | def _isFrozen(self) -> bool: ... method _thaw (line 54) | def _thaw(self): ... method getAttrSource (line 55) | def getAttrSource(self) -> UI4.FormMaster.GenericAssignParameterPolicy... method getAttrSourceErrorHandlers (line 56) | def getAttrSourceErrorHandlers(self): ... method getPublicInterfacePolicy (line 57) | def getPublicInterfacePolicy(self) -> UI4.FormMaster.GenericAssignGrou... method hideEvent (line 58) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method registerAttrSourceErrorHandler (line 59) | def registerAttrSourceErrorHandler(self, attrSourceErrorHandler: None,... method setPublicInterfacePolicy (line 60) | def setPublicInterfacePolicy(self, publicInterfacePolicy: UI4.FormMast... method showEvent (line 61) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method startListening (line 62) | def startListening(self): ... method stopListening (line 63) | def stopListening(self): ... FILE: katana/stubs/UI4/Widgets/RenderModePopup.pyi class AllViewDelegate (line 22) | class AllViewDelegate(QT4Widgets.SortableTreeWidget.SortableTreeWidgetIt... method initStyleOption (line 23) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... class CategoryTreeWidgetItem (line 25) | class CategoryTreeWidgetItem(QT4Widgets.SortableTreeWidget.SortableTreeW... method isDraggable (line 26) | def isDraggable(self): ... class DoubleClickTreeWidget (line 28) | class DoubleClickTreeWidget(SortableTreeWidget): method mouseDoubleClickEvent (line 30) | def mouseDoubleClickEvent(self, event): ... class RenderModePopup (line 32) | class RenderModePopup(PyQt5.QtWidgets.QFrame): method __init__ (line 36) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _RenderModePopup__activeListAboutToDrag (line 37) | def _RenderModePopup__activeListAboutToDrag(self, selectedItems, dragO... method _RenderModePopup__activeListDragEnter (line 38) | def _RenderModePopup__activeListDragEnter(self, event): ... method _RenderModePopup__activeListDropEventCallback (line 39) | def _RenderModePopup__activeListDropEventCallback(self, event, toIndex... method _RenderModePopup__activeListFocusIn (line 40) | def _RenderModePopup__activeListFocusIn(self, event): ... method _RenderModePopup__activeListKeyPress (line 41) | def _RenderModePopup__activeListKeyPress(self, event): ... method _RenderModePopup__activeListReorderItemsCallback (line 42) | def _RenderModePopup__activeListReorderItemsCallback(self, fromIndices... method _RenderModePopup__activeListSelectCallback (line 43) | def _RenderModePopup__activeListSelectCallback(self): ... method _RenderModePopup__addNodeToActiveList (line 44) | def _RenderModePopup__addNodeToActiveList(self, nodeName, toIndex: Inc... method _RenderModePopup__addToActiveList (line 45) | def _RenderModePopup__addToActiveList(self): ... method _RenderModePopup__allListAboutToDrag (line 46) | def _RenderModePopup__allListAboutToDrag(self, selectedItems, dragObje... method _RenderModePopup__allListDoubleClick (line 47) | def _RenderModePopup__allListDoubleClick(self, item, event): ... method _RenderModePopup__allListDragEnter (line 48) | def _RenderModePopup__allListDragEnter(self, event): ... method _RenderModePopup__allListDropEventCallback (line 49) | def _RenderModePopup__allListDropEventCallback(self, event): ... method _RenderModePopup__allListGetSelectedNodeNames (line 50) | def _RenderModePopup__allListGetSelectedNodeNames(self): ... method _RenderModePopup__allListGetSortedItems (line 51) | def _RenderModePopup__allListGetSortedItems(self, selectedOnly: bool =... method _RenderModePopup__allListKeyPress (line 52) | def _RenderModePopup__allListKeyPress(self, event): ... method _RenderModePopup__allListRecursiveGetItems (line 53) | def _RenderModePopup__allListRecursiveGetItems(self, item, selectedOnl... method _RenderModePopup__buildWidgets (line 54) | def _RenderModePopup__buildWidgets(self): ... method _RenderModePopup__clearActiveList (line 55) | def _RenderModePopup__clearActiveList(self): ... method _RenderModePopup__finalizeValueHandler (line 56) | def _RenderModePopup__finalizeValueHandler(self, args): ... method _RenderModePopup__getActiveList (line 57) | def _RenderModePopup__getActiveList(self): ... method _RenderModePopup__nodeCreated (line 58) | def _RenderModePopup__nodeCreated(self, args): ... method _RenderModePopup__nodeDeleted (line 59) | def _RenderModePopup__nodeDeleted(self, args): ... method _RenderModePopup__removeNodeFromActiveList (line 60) | def _RenderModePopup__removeNodeFromActiveList(self, nodeName): ... method _RenderModePopup__setActiveList (line 61) | def _RenderModePopup__setActiveList(self, activeNodes): ... method _RenderModePopup__updateFilter (line 62) | def _RenderModePopup__updateFilter(self): ... method applyDefaultSize (line 63) | def applyDefaultSize(self): ... method hideEvent (line 64) | def hideEvent(self, e): ... method popup (line 65) | def popup(self, globalPos): ... method showEvent (line 66) | def showEvent(self, e): ... method update (line 67) | def update(self): ... class RenderModePopupButton (line 69) | class RenderModePopupButton(ToolbarButton): method __init__ (line 71) | def __init__(self, parent, buttonType: Incomplete | None = ...) -> Non... method _RenderModePopupButton__popClicked (line 72) | def _RenderModePopupButton__popClicked(self): ... method _RenderModePopupButton__popupHidden (line 73) | def _RenderModePopupButton__popupHidden(self): ... method _RenderModePopupButton__popupShow (line 74) | def _RenderModePopupButton__popupShow(self): ... method _RenderModePopupButton__update (line 75) | def _RenderModePopupButton__update(self): ... FILE: katana/stubs/UI4/Widgets/RenderSelectedToggle.pyi class RenderSelectedToggle (line 9) | class RenderSelectedToggle(ToolbarButton): method __init__ (line 10) | def __init__(self, parent) -> None: ... method _RenderSelectedToggle__clicked (line 11) | def _RenderSelectedToggle__clicked(self): ... method _RenderSelectedToggle__updateCallback (line 12) | def _RenderSelectedToggle__updateCallback(self, *args, **kwargs): ... FILE: katana/stubs/UI4/Widgets/RenderViewWidgets.pyi class RenderViewCapsule (line 13) | class RenderViewCapsule(CapsuleCombo): method __init__ (line 14) | def __init__(self, parent) -> None: ... method _RenderViewCapsule__update_CB (line 15) | def _RenderViewCapsule__update_CB(self, *args, **kwargs): ... method _RenderViewCapsule__valueChanged_CB (line 16) | def _RenderViewCapsule__valueChanged_CB(self, newEnabledItems, oldEnab... method updateState (line 17) | def updateState(self): ... class RenderViewsAutoUpdateCheckbox (line 19) | class RenderViewsAutoUpdateCheckbox(PyQt5.QtWidgets.QCheckBox): method __init__ (line 20) | def __init__(self, displayName, parent) -> None: ... method _RenderViewsAutoUpdateCheckbox__clicked_CB (line 21) | def _RenderViewsAutoUpdateCheckbox__clicked_CB(self, checked): ... method _RenderViewsAutoUpdateCheckbox__update_CB (line 22) | def _RenderViewsAutoUpdateCheckbox__update_CB(self, *args, **kwargs): ... method updateState (line 23) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/ResizeToggleArrow.pyi class ResizeToggleArrow (line 8) | class ResizeToggleArrow(ToolbarButton): method __init__ (line 9) | def __init__(self, parent, target, getMaxSizeCallback: typing.Callable... method _ResizeToggleArrow__clicked (line 10) | def _ResizeToggleArrow__clicked(self): ... FILE: katana/stubs/UI4/Widgets/ResolutionComboBox.pyi class ResolutionComboBox (line 12) | class ResolutionComboBox(QT4FormWidgets.InputWidgets.InputComboBox): method __init__ (line 14) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None) -> None: ... method _ResolutionComboBox__GroupsCallback (line 16) | def _ResolutionComboBox__GroupsCallback(value: str, name: str, meta: o... method _ResolutionComboBox__on_filterablePopup_aboutToShow (line 17) | def _ResolutionComboBox__on_filterablePopup_aboutToShow(self): ... method _ResolutionComboBox__on_filterablePopup_hide (line 18) | def _ResolutionComboBox__on_filterablePopup_hide(self): ... method _ResolutionComboBox__on_filterablePopup_itemChosen (line 19) | def _ResolutionComboBox__on_filterablePopup_itemChosen(self, text, met... method _ResolutionComboBox__on_filterablePopup_show (line 20) | def _ResolutionComboBox__on_filterablePopup_show(self): ... method getResolutionTableEntry (line 21) | def getResolutionTableEntry(self) -> ResolutionTable.ResolutionTableEn... method getSettings (line 22) | def getSettings(self) -> tuple[str, int, int, float]: ... method getSize (line 23) | def getSize(self) -> None: ... method keyPressEvent (line 24) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method setSelectionByName (line 25) | def setSelectionByName(self, name: str): ... method setSelectionBySize (line 26) | def setSelectionBySize(self, width: int, height: int, aspectRatio: flo... method showPopup (line 27) | def showPopup(self): ... FILE: katana/stubs/UI4/Widgets/RoiCombo.pyi class RoiCombo (line 12) | class RoiCombo(PopdownLabel): method __init__ (line 14) | def __init__(self, parent) -> None: ... method _RoiCombo__renderManager_roiChanged_callback (line 15) | def _RoiCombo__renderManager_roiChanged_callback(self, *args, **kwargs... method buildMenu (line 16) | def buildMenu(self, menu: PyQt5.QtWidgets.QMenu): ... method getRoiVisible (line 17) | def getRoiVisible(self): ... method setRoiVisible (line 18) | def setRoiVisible(self, isVisible): ... method updateState (line 19) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/RolloverPixmap.pyi class RolloverPixmap (line 6) | class RolloverPixmap: method __init__ (line 9) | def __init__(self, offMap, onMap) -> None: ... method enterEvent (line 10) | def enterEvent(self, e): ... method leaveEvent (line 11) | def leaveEvent(self, e): ... method offMap (line 12) | def offMap(self): ... method onMap (line 13) | def onMap(self): ... method setOffMap (line 14) | def setOffMap(self, offMap): ... method setOnMap (line 15) | def setOnMap(self, onMap): ... method setRolloverEnabled (line 16) | def setRolloverEnabled(self, state): ... method showOffMap (line 17) | def showOffMap(self): ... method showOnMap (line 18) | def showOnMap(self): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/AttributeValuePopupWidgetManager.pyi class AttributeValuePopupWidget (line 17) | class AttributeValuePopupWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 28) | def __init__(self) -> None: ... method getActiveAreaRect (line 29) | def getActiveAreaRect(self) -> PyQt5.QtCore.QRect: ... method hideLater (line 30) | def hideLater(self): ... method paintEvent (line 31) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method resizeToFitItemDelegate (line 32) | def resizeToFitItemDelegate(self, sizeHint: PyQt5.QtCore.QSize): ... method show (line 33) | def show(self, index: PyQt5.QtCore.QModelIndex, itemDelegate: Paramete... class AttributeValuePopupWidgetManager (line 35) | class AttributeValuePopupWidgetManager(PyQt5.QtCore.QObject): method __init__ (line 37) | def __init__(self) -> None: ... method eventFilter (line 38) | def eventFilter(self, obj, event): ... method getInstance (line 40) | def getInstance(cls) -> AttributeValuePopupWidgetManager: ... method hide (line 41) | def hide(self): ... method setKeepVisible (line 42) | def setKeepVisible(self, keepVisible: bool): ... method show (line 43) | def show(self, index: PyQt5.QtCore.QModelIndex, itemDelegate: UI4.Widg... class ItemDelegateHostWidget (line 45) | class ItemDelegateHostWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 46) | def __init__(self, index: Incomplete | None = ..., itemDelegate: Incom... method _ItemDelegateHostWidget__on_model_dataChanged (line 47) | def _ItemDelegateHostWidget__on_model_dataChanged(self, startIndex: Py... method getItemDelegate (line 48) | def getItemDelegate(self) -> BaseItemDelegate[UI4.Widgets.SceneGraphVi... method paintEvent (line 49) | def paintEvent(self, event: PyQt5.QtGui.QPaintEvent): ... method setIndex (line 50) | def setIndex(self, index: PyQt5.QtCore.QModelIndex): ... method setItemDelegate (line 51) | def setItemDelegate(self, itemDelegate: BaseItemDelegate[UI4.Widgets.S... method setResizeCallback (line 52) | def setResizeCallback(self, callback: typing.Callable | None): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Bridge.pyi class Bridge (line 14) | class Bridge(abc.ABC): method addAttributeDataItemType (line 17) | def addAttributeDataItemType(self, itemTypeClass: type): ... method addColumn (line 18) | def addColumn(self, columnName): ... method addColumnSet (line 19) | def addColumnSet(self, columnSetName): ... method addRule (line 20) | def addRule(self, ruleName): ... method addTopLevelLocation (line 21) | def addTopLevelLocation(self, topLevelLocationPath: str, index: Incomp... method applyColumnVisibilitySettings (line 22) | def applyColumnVisibilitySettings(self, columnVisibility: dict): ... method applyColumnWidthsSettings (line 23) | def applyColumnWidthsSettings(self, columnWidths: dict): ... method beginColumnConfiguration (line 24) | def beginColumnConfiguration(self): ... method clearRuleCriteria (line 25) | def clearRuleCriteria(self, ruleName, triggerEvaluation: bool = ...): ... method clearTopLevelLocations (line 26) | def clearTopLevelLocations(self): ... method collapseLocation (line 27) | def collapseLocation(self, handle: SceneGraphHandle[UI4.SceneGraphView... method columnResized (line 28) | def columnResized(self, columnIndex, newColumnWidth): ... method columnTitleClicked (line 29) | def columnTitleClicked(self, columnIndex, columnTitleRect): ... method endColumnConfiguration (line 30) | def endColumnConfiguration(self): ... method expandLocation (line 31) | def expandLocation(self, handle: SceneGraphHandle[UI4.SceneGraphView.S... method fontChanged (line 32) | def fontChanged(self): ... method freeze (line 33) | def freeze(self): ... method getAttributeDataItemTypes (line 34) | def getAttributeDataItemTypes(self) -> list[type]: ... method getColumnByIndex (line 35) | def getColumnByIndex(self, columnIndex: int, visibleOnly: bool = ...) ... method getColumnByName (line 36) | def getColumnByName(self, columnName: str) -> UI4.SceneGraphView.Scene... method getColumnDataType (line 37) | def getColumnDataType(self, columnIndex: int) -> int: ... method getColumnPresetManager (line 38) | def getColumnPresetManager(self) -> ColumnPresetManager[UI4.SceneGraph... method getColumnVisibilitySettings (line 39) | def getColumnVisibilitySettings(self) -> dict: ... method getColumnWidthsSettings (line 40) | def getColumnWidthsSettings(self) -> dict: ... method getCurrentRules (line 41) | def getCurrentRules(self): ... method getDisplayData (line 42) | def getDisplayData(self, handle, topLevelHandle, columnIndex) -> str |... method getNumberOfChildren (line 43) | def getNumberOfChildren(self, locationPath: str) -> str | None: ... method getNumberOfColumns (line 44) | def getNumberOfColumns(self): ... method getNumberOfTopLevelLocations (line 45) | def getNumberOfTopLevelLocations(self) -> int: ... method getOverrideNodeAndParameterName (line 46) | def getOverrideNodeAndParameterName(self, locationPath: str, attribute... method getParent (line 47) | def getParent(self, locationPath: str) -> str | None: ... method getPotentialChildren (line 48) | def getPotentialChildren(self, locationPath: str) -> list[str]: ... method getResolvedAttributeName (line 49) | def getResolvedAttributeName(self, handle: SceneGraphHandle[UI4.Widget... method getRootColumnSet (line 50) | def getRootColumnSet(self) -> SceneGraphColumnSet[UI4.SceneGraphView.S... method getRuleByName (line 51) | def getRuleByName(self, ruleName): ... method getRuleMatchInversion (line 52) | def getRuleMatchInversion(self): ... method getSceneGraphAttributes (line 53) | def getSceneGraphAttributes(self, locationPath, callback: Incomplete |... method getSceneGraphChildren (line 54) | def getSceneGraphChildren(self, parentLocationPath, callback: Incomple... method getTitleText (line 55) | def getTitleText(self, columnIndex: int) -> str: ... method getTopLevelDisplayIndex (line 56) | def getTopLevelDisplayIndex(self, handle): ... method getTopLevelLocations (line 57) | def getTopLevelLocations(self) -> list[str]: ... method getViewLink (line 58) | def getViewLink(self) -> ViewLink[UI4.Widgets.SceneGraphView.ViewLink.... method hideColumnSet (line 59) | def hideColumnSet(self, columnSetName: str): ... method interruptClientProcessing (line 60) | def interruptClientProcessing(self): ... method isEditable (line 61) | def isEditable(self, columnIndex): ... method isFrozen (line 62) | def isFrozen(self) -> bool: ... method isNameColumn (line 63) | def isNameColumn(self, columnIndex): ... method isProcessing (line 64) | def isProcessing(self) -> bool: ... method isStopping (line 65) | def isStopping(self) -> bool: ... method locationNamesPolished (line 66) | def locationNamesPolished(self) -> bool: ... method matchRules (line 67) | def matchRules(self, handle, topLevelHandle): ... method moveColumn (line 68) | def moveColumn(self, columnIndex, newColumnIndex): ... method removeRule (line 69) | def removeRule(self, ruleName): ... method removeTopLevelLocation (line 70) | def removeTopLevelLocation(self, topLevelLocationPath: str): ... method renameRule (line 71) | def renameRule(self, oldName, newName): ... method resetAttributeDataItemTypes (line 72) | def resetAttributeDataItemTypes(self): ... method setKeyPressEventCallback (line 73) | def setKeyPressEventCallback(self, callback: typing.Callable): ... method setLocationActive (line 74) | def setLocationActive(self, locationPath: str): ... method setLocationAddedOrUpdatedCallback (line 75) | def setLocationAddedOrUpdatedCallback(self, callback): ... method setLocationDataProcessedCallback (line 76) | def setLocationDataProcessedCallback(self, callback): ... method setLocationNamePolishCallback (line 77) | def setLocationNamePolishCallback(self, callback: typing.Callable): ... method setLocationNamesPolished (line 78) | def setLocationNamesPolished(self, locationNamesPolished): ... method setLocationRemovedCallback (line 79) | def setLocationRemovedCallback(self, callback): ... method setMaxEventsToProcess (line 80) | def setMaxEventsToProcess(self, maxEventsToProcess: int): ... method setRuleComment (line 81) | def setRuleComment(self, ruleName, comment): ... method setRuleCriteria (line 82) | def setRuleCriteria(self, ruleName, criteriaName, criteria): ... method setRuleEnabled (line 83) | def setRuleEnabled(self, ruleName, isEnabled): ... method setRuleEvaluator (line 84) | def setRuleEvaluator(self, ruleName, evaluator, useDefaultCriteria: bo... method setRuleInverted (line 85) | def setRuleInverted(self, ruleName, isInverted): ... method setRuleMatchInversion (line 86) | def setRuleMatchInversion(self, invert): ... method setRuleMatchPolicy (line 87) | def setRuleMatchPolicy(self, policy): ... method setRuleShowChildren (line 88) | def setRuleShowChildren(self, ruleName, showChildren): ... method setRuleTarget (line 89) | def setRuleTarget(self, ruleName, column): ... method setStopRecursiveExpandAttributeNames (line 90) | def setStopRecursiveExpandAttributeNames(self, attributeNames: list[st... method setStopRecursiveExpandLocationTypes (line 91) | def setStopRecursiveExpandLocationTypes(self, locationTypes: list[str]... method setTerminalOps (line 92) | def setTerminalOps(self, terminalOpArgs): ... method setTopLevelDisplayIndex (line 93) | def setTopLevelDisplayIndex(self, locationPath: str, index: int): ... method setTopLevelLocations (line 94) | def setTopLevelLocations(self, topLevelLocations: list[str]): ... method setUpdateViewportAutomatically (line 95) | def setUpdateViewportAutomatically(self, updateViewportAutomatically: ... method setViewLink (line 96) | def setViewLink(self, viewLink): ... method setViewNode (line 97) | def setViewNode(self, viewNode: NodegraphAPI.Node | None, applyImplici... method setViewOp (line 98) | def setViewOp(self, viewOp, applyImplicitResolvers: bool = ..., extraI... method showColumnSet (line 99) | def showColumnSet(self, columnSetName: str): ... method thaw (line 100) | def thaw(self): ... method topLevelLocationRenamed (line 101) | def topLevelLocationRenamed(self, oldLocationPath, newLocationPath): ... method updateTerminalOps (line 102) | def updateTerminalOps(self, terminalOpArgs, txn: Incomplete | None = .... method updateViewLink (line 103) | def updateViewLink(self): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/BridgeImpl.pyi class BridgeImpl (line 26) | class BridgeImpl(Bridge): method __init__ (line 32) | def __init__(self, debugMode: bool, parent: PyQt5.QtWidgets.QWidget | ... method _BridgeImpl__activateLocation (line 33) | def _BridgeImpl__activateLocation(self, locationPath, topLevelLocation... method _BridgeImpl__addDummyColumn (line 34) | def _BridgeImpl__addDummyColumn(self): ... method _BridgeImpl__addOrUpdateLocationCallback (line 35) | def _BridgeImpl__addOrUpdateLocationCallback(self, locationEvent: PyFn... method _BridgeImpl__checkAndDeliverPendingAttributeRequests (line 36) | def _BridgeImpl__checkAndDeliverPendingAttributeRequests(self, locatio... method _BridgeImpl__checkAndDeliverPendingChildRequests (line 37) | def _BridgeImpl__checkAndDeliverPendingChildRequests(self, locationPat... method _BridgeImpl__columnConfigurationChanged (line 38) | def _BridgeImpl__columnConfigurationChanged(self): ... method _BridgeImpl__deleteLocationCallback (line 39) | def _BridgeImpl__deleteLocationCallback(self, locationEvent: PyFnGeoli... method _BridgeImpl__deleteLocationRecursive (line 40) | def _BridgeImpl__deleteLocationRecursive(self, locationPath, topLevelL... method _BridgeImpl__deliverExistingData (line 41) | def _BridgeImpl__deliverExistingData(self, topLevelLocationPath): ... method _BridgeImpl__endEventLoopCallback (line 42) | def _BridgeImpl__endEventLoopCallback(self): ... method _BridgeImpl__evaluateFilterRules (line 43) | def _BridgeImpl__evaluateFilterRules(self, handle, topLevelHandle): ... method _BridgeImpl__getPolishedLocationName (line 44) | def _BridgeImpl__getPolishedLocationName(self, locationPath, topLevelL... method _BridgeImpl__getUpdatedTerminalOpArgs (line 45) | def _BridgeImpl__getUpdatedTerminalOpArgs(self, oldTerminalOpArgs, new... method _BridgeImpl__keyPressEventCallback (line 46) | def _BridgeImpl__keyPressEventCallback(self, event): ... method _BridgeImpl__locationDataProcessedCallback (line 47) | def _BridgeImpl__locationDataProcessedCallback(self, processedLocation... method _BridgeImpl__notifyViewLink (line 48) | def _BridgeImpl__notifyViewLink(self, locationPath, locationCallback: ... method _BridgeImpl__openStateEventCallback (line 49) | def _BridgeImpl__openStateEventCallback(self, locationEvent, topLevelL... method _BridgeImpl__recursiveDeliverData (line 50) | def _BridgeImpl__recursiveDeliverData(self, treeItem, topLevelHandle, ... method _BridgeImpl__resetUserCallbacks (line 51) | def _BridgeImpl__resetUserCallbacks(self): ... method _BridgeImpl__setItemDelegateTerminalOps (line 52) | def _BridgeImpl__setItemDelegateTerminalOps(self, itemDelegateTerminal... method _BridgeImpl__updateAttributeDataChildren (line 53) | def _BridgeImpl__updateAttributeDataChildren(self, locationPath, topLe... method addAttributeDataItemType (line 54) | def addAttributeDataItemType(self, itemTypeClass): ... method addColumn (line 55) | def addColumn(self, columnName): ... method addColumnSet (line 56) | def addColumnSet(self, columnSetName): ... method addRule (line 57) | def addRule(self, ruleName): ... method addTopLevelLocation (line 58) | def addTopLevelLocation(self, topLevelLocationPath: str, index: Incomp... method applyColumnVisibilitySettings (line 59) | def applyColumnVisibilitySettings(self, columnVisibility): ... method applyColumnWidthsSettings (line 60) | def applyColumnWidthsSettings(self, columnWidths): ... method beginColumnConfiguration (line 61) | def beginColumnConfiguration(self): ... method clearRuleCriteria (line 62) | def clearRuleCriteria(self, ruleName, triggerEvaluation: bool = ...): ... method clearTopLevelLocations (line 63) | def clearTopLevelLocations(self): ... method collapseLocation (line 64) | def collapseLocation(self, handle, topLevelHandle, recursive: bool = .... method columnResized (line 65) | def columnResized(self, columnIndex, newColumnWidth): ... method columnTitleClicked (line 66) | def columnTitleClicked(self, columnIndex, columnTitleRect): ... method endColumnConfiguration (line 67) | def endColumnConfiguration(self): ... method expandLocation (line 68) | def expandLocation(self, handle, topLevelHandle, recursive: bool = ...... method flushCaches (line 69) | def flushCaches(self): ... method flushInstanceCaches (line 71) | def flushInstanceCaches(cls): ... method fontChanged (line 72) | def fontChanged(self): ... method freeze (line 73) | def freeze(self): ... method getAttributeDataItemTypes (line 74) | def getAttributeDataItemTypes(self): ... method getChildLocationPathByIndex (line 75) | def getChildLocationPathByIndex(self, parentLocationPath, childIndex):... method getChildLocationPathByName (line 76) | def getChildLocationPathByName(self, parentLocationPath, childName): ... method getColumnByIndex (line 77) | def getColumnByIndex(self, columnIndex, visibleOnly: bool = ...): ... method getColumnByName (line 78) | def getColumnByName(self, columnName): ... method getColumnDataType (line 79) | def getColumnDataType(self, columnIndex): ... method getColumnPresetManager (line 80) | def getColumnPresetManager(self): ... method getColumnVisibilitySettings (line 81) | def getColumnVisibilitySettings(self): ... method getColumnWidthsSettings (line 82) | def getColumnWidthsSettings(self): ... method getCurrentRules (line 83) | def getCurrentRules(self): ... method getDisplayData (line 84) | def getDisplayData(self, handle: SceneGraphHandle[UI4.Widgets.SceneGra... method getNumberOfChildren (line 85) | def getNumberOfChildren(self, locationPath): ... method getNumberOfColumns (line 86) | def getNumberOfColumns(self, visibleOnly: bool = ...): ... method getNumberOfTopLevelLocations (line 87) | def getNumberOfTopLevelLocations(self): ... method getOverrideNodeAndParameterName (line 88) | def getOverrideNodeAndParameterName(self, locationPath, attributeName)... method getParent (line 89) | def getParent(self, locationPath): ... method getPotentialChildren (line 90) | def getPotentialChildren(self, locationPath): ... method getResolvedAttributeName (line 91) | def getResolvedAttributeName(self, handle: SceneGraphHandle[UI4.Widget... method getRootColumnSet (line 92) | def getRootColumnSet(self): ... method getRuleByName (line 93) | def getRuleByName(self, ruleName): ... method getRuleMatchInversion (line 94) | def getRuleMatchInversion(self): ... method getSceneGraphAttributes (line 95) | def getSceneGraphAttributes(self, locationPath, callback: Incomplete |... method getSceneGraphChildren (line 96) | def getSceneGraphChildren(self, parentLocationPath, callback: Incomple... method getSceneGraphLocationPath (line 97) | def getSceneGraphLocationPath(self, locationPath): ... method getTitleText (line 98) | def getTitleText(self, columnIndex): ... method getTopLevelDisplayIndex (line 99) | def getTopLevelDisplayIndex(self, handle): ... method getTopLevelLocations (line 100) | def getTopLevelLocations(self): ... method getViewLink (line 101) | def getViewLink(self): ... method hideColumnSet (line 102) | def hideColumnSet(self, columnSetName): ... method interruptClientProcessing (line 103) | def interruptClientProcessing(self): ... method isEditable (line 104) | def isEditable(self, columnIndex): ... method isFrozen (line 105) | def isFrozen(self): ... method isNameColumn (line 106) | def isNameColumn(self, columnIndex): ... method isProcessing (line 107) | def isProcessing(self): ... method isStopping (line 108) | def isStopping(self): ... method locationNamesPolished (line 109) | def locationNamesPolished(self): ... method matchRules (line 110) | def matchRules(self, handle, topLevelHandle): ... method moveColumn (line 111) | def moveColumn(self, columnIndex, newColumnIndex): ... method removeRule (line 112) | def removeRule(self, ruleName): ... method removeTopLevelLocation (line 113) | def removeTopLevelLocation(self, topLevelLocationPath): ... method renameRule (line 114) | def renameRule(self, oldName, newName): ... method resetAttributeDataItemTypes (line 115) | def resetAttributeDataItemTypes(self): ... method resetViewLink (line 116) | def resetViewLink(self): ... method setKeyPressEventCallback (line 117) | def setKeyPressEventCallback(self, callback): ... method setLocationActive (line 118) | def setLocationActive(self, locationPath): ... method setLocationAddedOrUpdatedCallback (line 119) | def setLocationAddedOrUpdatedCallback(self, callback): ... method setLocationCollapsedCallback (line 120) | def setLocationCollapsedCallback(self, callback): ... method setLocationDataProcessedCallback (line 121) | def setLocationDataProcessedCallback(self, callback): ... method setLocationExpandedCallback (line 122) | def setLocationExpandedCallback(self, callback): ... method setLocationNamePolishCallback (line 123) | def setLocationNamePolishCallback(self, callback): ... method setLocationNamesPolished (line 124) | def setLocationNamesPolished(self, locationNamesPolished): ... method setLocationRemovedCallback (line 125) | def setLocationRemovedCallback(self, callback): ... method setMaxEventsToProcess (line 126) | def setMaxEventsToProcess(self, maxEventsToProcess): ... method setRuleComment (line 127) | def setRuleComment(self, ruleName, comment): ... method setRuleCriteria (line 128) | def setRuleCriteria(self, ruleName, criteriaName, criteria): ... method setRuleEnabled (line 129) | def setRuleEnabled(self, ruleName, isEnabled): ... method setRuleEvaluator (line 130) | def setRuleEvaluator(self, ruleName, evaluator, useDefaultCriteria: bo... method setRuleInverted (line 131) | def setRuleInverted(self, ruleName, isInverted): ... method setRuleMatchInversion (line 132) | def setRuleMatchInversion(self, invert): ... method setRuleMatchPolicy (line 133) | def setRuleMatchPolicy(self, policy): ... method setRuleShowChildren (line 134) | def setRuleShowChildren(self, ruleName, showChildren): ... method setRuleTarget (line 135) | def setRuleTarget(self, ruleName, column): ... method setStopRecursiveExpandAttributeNames (line 136) | def setStopRecursiveExpandAttributeNames(self, attributeNames): ... method setStopRecursiveExpandLocationTypes (line 137) | def setStopRecursiveExpandLocationTypes(self, locationTypes): ... method setTerminalOps (line 138) | def setTerminalOps(self, terminalOpArgs): ... method setTopLevelDisplayIndex (line 139) | def setTopLevelDisplayIndex(self, locationPath, index): ... method setTopLevelLocations (line 140) | def setTopLevelLocations(self, topLevelLocations): ... method setUpdateViewportAutomatically (line 141) | def setUpdateViewportAutomatically(self, updateViewportAutomatically):... method setViewNode (line 142) | def setViewNode(self, viewNode, applyImplicitResolvers: bool = ..., ex... method setViewOp (line 143) | def setViewOp(self, viewOp, applyImplicitResolvers: bool = ..., extraI... method showColumnSet (line 144) | def showColumnSet(self, columnSetName): ... method thaw (line 145) | def thaw(self): ... method topLevelLocationRenamed (line 146) | def topLevelLocationRenamed(self, oldLocationPath, newLocationPath): ... method updateTerminalOps (line 147) | def updateTerminalOps(self, terminalOpArgs, txn: Incomplete | None = .... method updateViewLink (line 148) | def updateViewLink(self): ... function _flushCachesCallback (line 150) | def _flushCachesCallback(): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ColumnDataType.pyi class ColumnDataType (line 16) | class ColumnDataType: function RegisterDataType (line 32) | def RegisterDataType(dataTypeName: str, itemDelegateClass): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ColumnManager.pyi class ColumnManager (line 10) | class ColumnManager: method __init__ (line 11) | def __init__(self, columnChangedCallback: typing.Callable | None, colu... method addColumn (line 12) | def addColumn(self, columnName): ... method addColumnSet (line 13) | def addColumnSet(self, columnSetName): ... method applyColumnVisibilitySettings (line 14) | def applyColumnVisibilitySettings(self, columnVisibility): ... method applyColumnWidthsSettings (line 15) | def applyColumnWidthsSettings(self, columnWidths): ... method getColumnAttributeName (line 16) | def getColumnAttributeName(self, columnIndex: int, visibleOnly: bool =... method getColumnAttributeNames (line 17) | def getColumnAttributeNames(self, columnIndex: int, visibleOnly: bool ... method getColumnByIndex (line 18) | def getColumnByIndex(self, columnIndex, visibleOnly: bool = ...): ... method getColumnByName (line 19) | def getColumnByName(self, columnName): ... method getColumnCount (line 20) | def getColumnCount(self, visibleOnly: bool = ...): ... method getColumnTitleText (line 21) | def getColumnTitleText(self, columnIndex, visibleOnly: bool = ...): ... method getColumnTitles (line 22) | def getColumnTitles(self, visibleOnly: bool = ...): ... method getColumnVisibilitySettings (line 23) | def getColumnVisibilitySettings(self): ... method getColumnWidths (line 24) | def getColumnWidths(self, visibleOnly: bool = ...): ... method getColumnWidthsSettings (line 25) | def getColumnWidthsSettings(self): ... method getDataType (line 26) | def getDataType(self, columnIndex: int) -> int: ... method getRootColumnSet (line 27) | def getRootColumnSet(self): ... method hideColumnSet (line 28) | def hideColumnSet(self, columnSetName): ... method isEditable (line 29) | def isEditable(self, columnIndex, visibleOnly: bool = ...): ... method isLocationNameColumn (line 30) | def isLocationNameColumn(self, columnIndex, visibleOnly: bool = ...): ... method moveColumn (line 31) | def moveColumn(self, columnIndex, newColumnIndex, visibleOnly: bool = ... method setColumnChangedCallback (line 32) | def setColumnChangedCallback(self, callback): ... method setColumnSetVisible (line 33) | def setColumnSetVisible(self, columnSetName, visible): ... method showColumnSet (line 34) | def showColumnSet(self, columnSetName): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ColumnPresetManager.pyi class ColumnPreset (line 8) | class ColumnPreset: method __init__ (line 9) | def __init__(self) -> None: ... method activate (line 10) | def activate(self): ... method addHidden (line 11) | def addHidden(self, columnOrSet: BaseSceneGraphColumn[UI4.Widgets.Scen... method addShown (line 12) | def addShown(self, columnOrSet: BaseSceneGraphColumn[UI4.Widgets.Scene... method addToggled (line 13) | def addToggled(self, columnOrSet: BaseSceneGraphColumn[UI4.Widgets.Sce... method removeHidden (line 14) | def removeHidden(self, columnOrSet: BaseSceneGraphColumn[UI4.Widgets.S... method removeShown (line 15) | def removeShown(self, columnOrSet: BaseSceneGraphColumn[UI4.Widgets.Sc... method removeToggled (line 16) | def removeToggled(self, columnOrSet: BaseSceneGraphColumn[UI4.Widgets.... class ColumnPresetManager (line 18) | class ColumnPresetManager: class ShortcutMode (line 19) | class ShortcutMode: method getValidShortcutModes (line 23) | def getValidShortcutModes(cls) -> list[int]: ... method __init__ (line 24) | def __init__(self) -> None: ... method addColumnSetShortcut (line 25) | def addColumnSetShortcut(self, columnSet: SceneGraphColumnSet, shortcu... method addPreset (line 26) | def addPreset(self, shortcut: str | None | int | QKeySequence) -> Colu... method processKeyPressEvent (line 27) | def processKeyPressEvent(self, event: PyQt5.QtGui.QKeyEvent) -> bool: ... method removeColumnSetShortcut (line 28) | def removeColumnSetShortcut(self, columnSet: SceneGraphColumnSet, shor... method removeColumnSetShortcuts (line 29) | def removeColumnSetShortcuts(self, columnSet: SceneGraphColumnSet): ... method removePreset (line 30) | def removePreset(self, preset: ColumnPreset): ... method setShortcutMode (line 31) | def setShortcutMode(self, shortcutMode: int): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ContextMenuEvent.pyi class ContextMenuEvent (line 9) | class ContextMenuEvent(PyQt5.QtGui.QContextMenuEvent): method __init__ (line 10) | def __init__(self, event, locationPath: Incomplete | None = ..., topLe... method getLocationPath (line 11) | def getLocationPath(self) -> str | None: ... method getSceneGraphColumn (line 12) | def getSceneGraphColumn(self) -> SceneGraphColumn[UI4.Widgets.SceneGra... method getSelectedLocations (line 13) | def getSelectedLocations(self) -> list[tuple]: ... method getTopLevelLocationPath (line 14) | def getTopLevelLocationPath(self) -> str | None: ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/DebugViewLink.pyi class DebugViewLink (line 8) | class DebugViewLink(ViewLink): method __init__ (line 11) | def __init__(self, bridge, parent: Incomplete | None = ...) -> None: ... method _DebugViewLink__updateText (line 12) | def _DebugViewLink__updateText(self): ... method addLocation (line 13) | def addLocation(self, handle, topLevelHandle): ... method addTopLevelLocation (line 14) | def addTopLevelLocation(self, topLevelHandle): ... method allowMultipleSelection (line 15) | def allowMultipleSelection(self): ... method collapseLocation (line 16) | def collapseLocation(self, handle, topLevelHandle): ... method evaluateFilterRules (line 17) | def evaluateFilterRules(self, handle: Incomplete | None = ..., topLeve... method expandLocation (line 18) | def expandLocation(self, handle, topLevelHandle): ... method getSelectedLocations (line 19) | def getSelectedLocations(self): ... method getWidget (line 20) | def getWidget(self): ... method removeLocation (line 21) | def removeLocation(self, handle, topLevelHandle): ... method removeTopLevelLocation (line 22) | def removeTopLevelLocation(self, topLevelHandle): ... method resetModel (line 23) | def resetModel(self): ... method scrollToLocation (line 24) | def scrollToLocation(self, handle, topLevelHandle): ... method setAllowMultipleSelection (line 25) | def setAllowMultipleSelection(self, allowMultipleSelection): ... method setAttributeDataChildren (line 26) | def setAttributeDataChildren(self, handle, topLevelHandle, attributeDa... method setColumnTitles (line 27) | def setColumnTitles(self, titleInfo): ... method setContextMenuEventCallback (line 28) | def setContextMenuEventCallback(self, callback): ... method setDragMoveEventCallback (line 29) | def setDragMoveEventCallback(self, callback): ... method setDropEventCallback (line 30) | def setDropEventCallback(self, callback): ... method setExpandsOnDoubleClick (line 31) | def setExpandsOnDoubleClick(self, expandsOnDoubleClick): ... method setKeyPressEventCallback (line 32) | def setKeyPressEventCallback(self, callback): ... method sortChildrenUnderLocation (line 33) | def sortChildrenUnderLocation(self, handle, topLevelHandle): ... method updateItemDelegates (line 34) | def updateItemDelegates(self): ... method updateLocation (line 35) | def updateLocation(self, handle, topLevelHandle): ... method updateLocationIcons (line 36) | def updateLocationIcons(self, handle, topLevelHandle): ... method updateTopLevelLocation (line 37) | def updateTopLevelLocation(self, topLevelHandle): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Filtering/Criteria.pyi class Criteria (line 5) | class Criteria: method __init__ (line 6) | def __init__(self, numberOfElements: int = ...) -> None: ... method getAsFloat (line 7) | def getAsFloat(self) -> tuple[float, ...]: ... method getAsInt (line 8) | def getAsInt(self) -> tuple[int, ...]: ... method getAsObject (line 9) | def getAsObject(self) -> tuple[Any, ...]: ... method getAsString (line 10) | def getAsString(self) -> tuple[str, ...]: ... method setValue (line 11) | def setValue(self, index: int, value): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Filtering/Evaluator.pyi class CelEvaluator (line 10) | class CelEvaluator(Evaluator): method __init__ (line 12) | def __init__(self) -> None: ... method evaluate (line 13) | def evaluate(self, value): ... method getDefaultCriteria (line 14) | def getDefaultCriteria(self): ... method getName (line 16) | def getName(cls): ... method registerCriteriaList (line 18) | def registerCriteriaList(cls): ... class EqualToEvaluator (line 20) | class EqualToEvaluator(Evaluator): method __init__ (line 22) | def __init__(self) -> None: ... method evaluate (line 23) | def evaluate(self, value): ... method getDefaultCriteria (line 24) | def getDefaultCriteria(self): ... method getName (line 26) | def getName(cls): ... method registerCriteriaList (line 28) | def registerCriteriaList(cls): ... class Evaluator (line 30) | class Evaluator: method __init__ (line 31) | def __init__(self) -> None: ... method clearCriteria (line 32) | def clearCriteria(self): ... method evaluate (line 33) | def evaluate(self, value) -> bool: ... method getCriteria (line 34) | def getCriteria(self): ... method getDefaultCriteria (line 35) | def getDefaultCriteria(self): ... method getName (line 37) | def getName(cls) -> str: ... method registerCriteriaList (line 39) | def registerCriteriaList(cls) -> list[dict]: ... method setCriteria (line 40) | def setCriteria(self, name: str, criteria: Criteria[UI4.Widgets.SceneG... class FuzzyEqualityEvaluator (line 42) | class FuzzyEqualityEvaluator(Evaluator): method __init__ (line 44) | def __init__(self) -> None: ... method evaluate (line 45) | def evaluate(self, value): ... method getDefaultCriteria (line 46) | def getDefaultCriteria(self): ... method getName (line 48) | def getName(cls): ... method registerCriteriaList (line 50) | def registerCriteriaList(cls): ... class GreaterThanEvaluator (line 52) | class GreaterThanEvaluator(Evaluator): method __init__ (line 54) | def __init__(self) -> None: ... method evaluate (line 55) | def evaluate(self, value): ... method getDefaultCriteria (line 56) | def getDefaultCriteria(self): ... method getName (line 58) | def getName(cls): ... method registerCriteriaList (line 60) | def registerCriteriaList(cls): ... class LessThanEvaluator (line 62) | class LessThanEvaluator(Evaluator): method __init__ (line 64) | def __init__(self) -> None: ... method evaluate (line 65) | def evaluate(self, value): ... method getDefaultCriteria (line 66) | def getDefaultCriteria(self): ... method getName (line 68) | def getName(cls): ... method registerCriteriaList (line 70) | def registerCriteriaList(cls): ... class RegexEvaluator (line 72) | class RegexEvaluator(Evaluator): method __init__ (line 74) | def __init__(self) -> None: ... method evaluate (line 75) | def evaluate(self, value): ... method getDefaultCriteria (line 76) | def getDefaultCriteria(self): ... method getName (line 78) | def getName(cls): ... method registerCriteriaList (line 80) | def registerCriteriaList(cls): ... method setCriteria (line 81) | def setCriteria(self, name, criteria): ... function GetEvaluatorCriteria (line 83) | def GetEvaluatorCriteria(name: str) -> list[dict]: ... function RegisterEvaluator (line 84) | def RegisterEvaluator(name: str, evaluatorClass: Evaluator): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Filtering/Rule.pyi class Rule (line 10) | class Rule: method __init__ (line 11) | def __init__(self) -> None: ... method clearCriteria (line 12) | def clearCriteria(self): ... method flushLocationMatchCache (line 13) | def flushLocationMatchCache(self): ... method getComment (line 14) | def getComment(self) -> str | None: ... method getCriteria (line 15) | def getCriteria(self): ... method getDefaultCriteria (line 16) | def getDefaultCriteria(self) -> tuple[str, Criteria]: ... method getEvaluatorName (line 17) | def getEvaluatorName(self) -> str: ... method getShowChildren (line 18) | def getShowChildren(self): ... method getTarget (line 19) | def getTarget(self) -> Target[UI4.Widgets.SceneGraphView.Filtering.Tar... method isEnabled (line 20) | def isEnabled(self) -> bool: ... method isInverted (line 21) | def isInverted(self) -> bool: ... method match (line 22) | def match(self, handle: SceneGraphHandle[UI4.Widgets.SceneGraphView.Sc... method setComment (line 23) | def setComment(self, comment: str | None): ... method setCriteria (line 24) | def setCriteria(self, name: str, criteria: Criteria[UI4.Widgets.SceneG... method setEnabled (line 25) | def setEnabled(self, enabled: bool): ... method setEvaluator (line 26) | def setEvaluator(self, evaluator: Evaluator[UI4.Widgets.SceneGraphView... method setInverted (line 27) | def setInverted(self, inverted: bool): ... method setShowChildren (line 28) | def setShowChildren(self, showChildren): ... method setTarget (line 29) | def setTarget(self, target: Target[UI4.Widgets.SceneGraphView.Filterin... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Filtering/RuleConfigDialog.pyi class CheckBoxItemDelegate (line 15) | class CheckBoxItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method __init__ (line 17) | def __init__(self, bridge, treeWidget, getStateCallback: typing.Callab... method editorEvent (line 18) | def editorEvent(self, event, itemModel, option, index): ... method getCurrentStateIcon (line 19) | def getCurrentStateIcon(self, ruleName): ... method initStyleOption (line 20) | def initStyleOption(self, option, index): ... method sizeHint (line 21) | def sizeHint(self, option, index): ... method updateEditorGeometry (line 22) | def updateEditorGeometry(self, editor, option, index): ... class ComboBoxItemDelegate (line 24) | class ComboBoxItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method __init__ (line 26) | def __init__(self, bridge, treeWidget, optionProviderCallback: typing.... method addOption (line 27) | def addOption(self, option): ... method createEditor (line 28) | def createEditor(self, parent, option, index): ... method on_comboBox_currentIndexChanged (line 29) | def on_comboBox_currentIndexChanged(self, index): ... method setEditorData (line 30) | def setEditorData(self, editor, index): ... method setModelData (line 31) | def setModelData(self, editor, model, index): ... method sizeHint (line 32) | def sizeHint(self, option, index): ... class CriteriaEntryItemDelegate (line 34) | class CriteriaEntryItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method __init__ (line 36) | def __init__(self, bridge, treeWidget, changedHandler, parent: Incompl... method createEditor (line 37) | def createEditor(self, parent, option, index): ... method on_criteriaValueEntry_textEdited (line 38) | def on_criteriaValueEntry_textEdited(self, newValue): ... class CriteriaEntryLineEdit (line 40) | class CriteriaEntryLineEdit(EntryLineEdit): method __init__ (line 41) | def __init__(self, ruleName, criteriaName, parent) -> None: ... method getCriteriaName (line 42) | def getCriteriaName(self): ... method getRuleName (line 43) | def getRuleName(self): ... class EntryLineEdit (line 45) | class EntryLineEdit(PyQt5.QtWidgets.QLineEdit): method __init__ (line 46) | def __init__(self, parent) -> None: ... method keyPressEvent (line 47) | def keyPressEvent(self, event): ... class RuleComboBox (line 49) | class RuleComboBox(PyQt5.QtWidgets.QComboBox): method __init__ (line 50) | def __init__(self, ruleName, parent) -> None: ... method getRuleName (line 51) | def getRuleName(self): ... class RuleConfigDialog (line 53) | class RuleConfigDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 63) | def __init__(self, bridge, parent: Incomplete | None = ...) -> None: ... method _RuleConfigDialog__getCriteriaComboList (line 64) | def _RuleConfigDialog__getCriteriaComboList(self, ruleName): ... method _RuleConfigDialog__getEvaluatorOptions (line 65) | def _RuleConfigDialog__getEvaluatorOptions(self, ruleName): ... method _RuleConfigDialog__getRuleEnabledStateCallback (line 66) | def _RuleConfigDialog__getRuleEnabledStateCallback(self, ruleName): ... method _RuleConfigDialog__getRuleInvertedStateCallback (line 67) | def _RuleConfigDialog__getRuleInvertedStateCallback(self, ruleName): ... method _RuleConfigDialog__getRuleShowChildrenStateCallback (line 68) | def _RuleConfigDialog__getRuleShowChildrenStateCallback(self, ruleName... method _RuleConfigDialog__getTargetOptions (line 69) | def _RuleConfigDialog__getTargetOptions(self, ruleName): ... method _RuleConfigDialog__handleCommentValueChanged (line 70) | def _RuleConfigDialog__handleCommentValueChanged(self, index, ruleName... method _RuleConfigDialog__handleCriteriaComboBoxIndexChanged (line 71) | def _RuleConfigDialog__handleCriteriaComboBoxIndexChanged(self, ruleNa... method _RuleConfigDialog__handleCriteriaValueChanged (line 72) | def _RuleConfigDialog__handleCriteriaValueChanged(self, ruleName, crit... method _RuleConfigDialog__handleEvaluatorComboBoxIndexChanged (line 73) | def _RuleConfigDialog__handleEvaluatorComboBoxIndexChanged(self, ruleN... method _RuleConfigDialog__handleNameValueChanged (line 74) | def _RuleConfigDialog__handleNameValueChanged(self, index, ruleName, n... method _RuleConfigDialog__handleRuleEnableValueChanged (line 75) | def _RuleConfigDialog__handleRuleEnableValueChanged(self, ruleName): ... method _RuleConfigDialog__handleRuleInvertValueChanged (line 76) | def _RuleConfigDialog__handleRuleInvertValueChanged(self, ruleName): ... method _RuleConfigDialog__handleRuleShowChildrenValueChanged (line 77) | def _RuleConfigDialog__handleRuleShowChildrenValueChanged(self, ruleNa... method _RuleConfigDialog__handleTargetComboBoxIndexChanged (line 78) | def _RuleConfigDialog__handleTargetComboBoxIndexChanged(self, ruleName... method _RuleConfigDialog__populateEvaluatorsMenu (line 79) | def _RuleConfigDialog__populateEvaluatorsMenu(self): ... method _RuleConfigDialog__populatePolicyMenu (line 80) | def _RuleConfigDialog__populatePolicyMenu(self): ... method _RuleConfigDialog__populateRuleSet (line 81) | def _RuleConfigDialog__populateRuleSet(self): ... method _RuleConfigDialog__refreshUI (line 82) | def _RuleConfigDialog__refreshUI(self): ... method _RuleConfigDialog__updateInvertMatchCheckbox (line 83) | def _RuleConfigDialog__updateInvertMatchCheckbox(self): ... method on_availableRulesMenu_triggered (line 84) | def on_availableRulesMenu_triggered(self, action): ... method on_deleteSelectedButton_clicked (line 85) | def on_deleteSelectedButton_clicked(self): ... method on_invertMatchCheckBox_stateChanged (line 86) | def on_invertMatchCheckBox_stateChanged(self, state): ... method on_matchPolicyCombo_currentIndexChanged (line 87) | def on_matchPolicyCombo_currentIndexChanged(self, index): ... method showEvent (line 88) | def showEvent(self, event): ... class RuleItem (line 90) | class RuleItem(PyQt5.QtWidgets.QTreeWidgetItem): method __init__ (line 91) | def __init__(self, ruleName, parent) -> None: ... method getRuleName (line 92) | def getRuleName(self): ... method setRuleName (line 93) | def setRuleName(self, ruleName): ... class TextEntryItemDelegate (line 95) | class TextEntryItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method __init__ (line 97) | def __init__(self, bridge, treeWidget, changedHandler, italic: bool = ... method createEditor (line 98) | def createEditor(self, parent, option, index): ... method initStyleOption (line 99) | def initStyleOption(self, option, index): ... method setModelData (line 100) | def setModelData(self, editor, model, index): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Filtering/RuleManager.pyi class MatchAllRuleMatchStrategy (line 14) | class MatchAllRuleMatchStrategy(RuleMatchStrategy): method execute (line 15) | def execute(self, handle, topLevelHandle, ruleSet): ... class MatchAnyRuleMatchStrategy (line 17) | class MatchAnyRuleMatchStrategy(RuleMatchStrategy): method execute (line 18) | def execute(self, handle, topLevelHandle, ruleSet): ... class RuleManager (line 20) | class RuleManager: method __init__ (line 23) | def __init__(self, bridge, evaluateRuleCallback: typing.Callable) -> N... method _RuleManager__callRuleEvaluationCallback (line 24) | def _RuleManager__callRuleEvaluationCallback(self): ... method _RuleManager__populateAvailableMatchingPolicies (line 25) | def _RuleManager__populateAvailableMatchingPolicies(self): ... method addRule (line 26) | def addRule(self, ruleName: str): ... method clearRuleCriteria (line 27) | def clearRuleCriteria(self, ruleName: str, triggerEvaluation: bool = .... method getCurrentRules (line 28) | def getCurrentRules(self): ... method getRuleByName (line 29) | def getRuleByName(self, ruleName: str) -> Rule | None: ... method getRuleMatchInversion (line 30) | def getRuleMatchInversion(self) -> bool: ... method match (line 31) | def match(self, handle: SceneGraphHandle[UI4.Widgets.SceneGraphView.Sc... method removeRule (line 32) | def removeRule(self, ruleName: str): ... method renameRule (line 33) | def renameRule(self, oldName: str, newName: str) -> str: ... method setRuleComment (line 34) | def setRuleComment(self, ruleName: str, comment: str | None): ... method setRuleCriteria (line 35) | def setRuleCriteria(self, ruleName: str, criteriaName: str, criteria: ... method setRuleEnabled (line 36) | def setRuleEnabled(self, ruleName: str, isEnabled: bool, triggerEvalua... method setRuleEvaluator (line 37) | def setRuleEvaluator(self, ruleName: str, evaluator: Evaluator[UI4.Wid... method setRuleInverted (line 38) | def setRuleInverted(self, ruleName: str, isInverted: bool, triggerEval... method setRuleMatchInversion (line 39) | def setRuleMatchInversion(self, invertMatch: bool): ... method setRuleMatchPolicy (line 40) | def setRuleMatchPolicy(self, policy: int): ... method setRuleShowChildren (line 41) | def setRuleShowChildren(self, ruleName, showChildren, triggerEvaluatio... method setRuleTarget (line 42) | def setRuleTarget(self, ruleName: str, column: SceneGraphColumn[UI4.Wi... class RuleManagerException (line 44) | class RuleManagerException(Exception): method __init__ (line 45) | def __init__(self, errorMessage) -> None: ... class RuleMatchStrategy (line 47) | class RuleMatchStrategy: method execute (line 48) | def execute(self, handle: SceneGraphHandle[UI4.Widgets.SceneGraphView.... FILE: katana/stubs/UI4/Widgets/SceneGraphView/Filtering/Target.pyi class Target (line 11) | class Target: method __init__ (line 12) | def __init__(self, sceneGraphColumn: SceneGraphColumn[UI4.Widgets.Scen... method getSceneGraphColumn (line 13) | def getSceneGraphColumn(self) -> SceneGraphColumn[UI4.Widgets.SceneGra... method resolve (line 14) | def resolve(self, handle: SceneGraphHandle[UI4.Widgets.SceneGraphView.... FILE: katana/stubs/UI4/Widgets/SceneGraphView/HorizontalHeaderView.pyi class HorizontalHeaderView (line 14) | class HorizontalHeaderView(PyQt5.QtWidgets.QHeaderView): method __init__ (line 19) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method _HorizontalHeaderView__getLogicalIndexes (line 20) | def _HorizontalHeaderView__getLogicalIndexes(self, pointerX: int) -> t... method _HorizontalHeaderView__on_activePopupWidget_hide (line 21) | def _HorizontalHeaderView__on_activePopupWidget_hide(self): ... method _HorizontalHeaderView__on_resizeAllToContentsAction_triggered (line 22) | def _HorizontalHeaderView__on_resizeAllToContentsAction_triggered(self... method _HorizontalHeaderView__on_resizeToContentsAction_triggered (line 23) | def _HorizontalHeaderView__on_resizeToContentsAction_triggered(self): ... method contextMenuEvent (line 24) | def contextMenuEvent(self, contextMenuEvent: PyQt5.QtGui.QContextMenuE... method enterEvent (line 25) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method leaveEvent (line 26) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method mouseDoubleClickEvent (line 27) | def mouseDoubleClickEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method mouseMoveEvent (line 28) | def mouseMoveEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method mousePressEvent (line 29) | def mousePressEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method mouseReleaseEvent (line 30) | def mouseReleaseEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method paintSection (line 31) | def paintSection(self, painter: PyQt5.QtGui.QPainter, rect: PyQt5.QtCo... method resizeSection (line 32) | def resizeSection(self, logicalIndex: int, size: int): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/BaseItemDelegate.pyi class BaseItemDelegate (line 18) | class BaseItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method __init__ (line 21) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _expandRectToRightBorder (line 22) | def _expandRectToRightBorder(self, option: PyQt5.QtWidgets.QStyleOptio... method _getAttribute (line 23) | def _getAttribute(self, locationPath: str, attributeName: str) -> PyFn... method _getColumnIndices (line 24) | def _getColumnIndices(self) -> list[int]: ... method _getDefaultTextColor (line 25) | def _getDefaultTextColor(self) -> None: ... method _getLocationPath (line 26) | def _getLocationPath(self, index: PyQt5.QtCore.QModelIndex) -> str | N... method _getLocationType (line 27) | def _getLocationType(self, locationPath: str) -> str | None: ... method _isLocationExpanded (line 28) | def _isLocationExpanded(self, topLevelLocationPath: str, locationPath:... method _repaintTreeWidgetColumns (line 29) | def _repaintTreeWidgetColumns(self): ... method _updateColumnAttributeNames (line 30) | def _updateColumnAttributeNames(self): ... method canChangeSelection (line 31) | def canChangeSelection(self, index: PyQt5.QtCore.QModelIndex, event: P... method customizeColumnTitleContextMenu (line 32) | def customizeColumnTitleContextMenu(self, menu: PyQt5.QtWidgets.QMenu)... method editorEvent (line 33) | def editorEvent(self, event: PyQt5.QtCore.QEvent, model: PyQt5.QtCore.... method getAttributeName (line 34) | def getAttributeName(self) -> str | None: ... method getAttributeNames (line 35) | def getAttributeNames(self) -> list: ... method getAttributesForLocationPath (line 36) | def getAttributesForLocationPath(self, locationPath: str) -> PyFnAttri... method getLocationPathsForEditing (line 37) | def getLocationPathsForEditing(self, editedItem: LocationTreeWidgetIte... method getProperty (line 38) | def getProperty(self, propertyName: str) -> Any | None: ... method initStyleOption (line 39) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method isEditable (line 40) | def isEditable(self) -> bool: ... method isPropertyValid (line 42) | def isPropertyValid(cls, propertyName: str) -> bool: ... method isValueComparisonEnabled (line 43) | def isValueComparisonEnabled(self) -> bool: ... method setAttributeName (line 44) | def setAttributeName(self, attributeName: str | None, updateColumns: b... method setAttributeNames (line 45) | def setAttributeNames(self, attributeNames: tuple[str, ...]): ... method setEditable (line 46) | def setEditable(self, editable: bool): ... method setProperty (line 47) | def setProperty(self, propertyName: str, propertyValue: object | None)... method setValueComparisonEnabled (line 48) | def setValueComparisonEnabled(self, valueComparisonEnabled: bool): ... method updateEditorGeometry (line 49) | def updateEditorGeometry(self, editor: PyQt5.QtWidgets.QWidget, option... class DummyItemDelegate (line 51) | class DummyItemDelegate(BaseItemDelegate): method initStyleOption (line 53) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/ColorItemDelegate.pyi class ColorItemDelegate (line 19) | class ColorItemDelegate(ParameterItemDelegate): method __init__ (line 25) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _ColorItemDelegate__getDisplayValues (line 26) | def _ColorItemDelegate__getDisplayValues(self, index): ... method createEditor (line 27) | def createEditor(self, parent: PyQt5.QtWidgets.QWidget, option: PyQt5.... method doesParameterValueMatchModelValue (line 28) | def doesParameterValueMatchModelValue(self, parameterPolicy: BaseParam... method isFilmlookEnabled (line 29) | def isFilmlookEnabled(self) -> bool: ... method paint (line 30) | def paint(self, painter: PyQt5.QtGui.QPainter, option: PyQt5.QtWidgets... method setFilmlookEnabled (line 31) | def setFilmlookEnabled(self, filmlookEnabled: bool): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/LightLinkItemDelegate.pyi class LightLinkItemDelegate (line 12) | class LightLinkItemDelegate(ParameterItemDelegate): method _LightLinkItemDelegate__getBadgeColors (line 17) | def _LightLinkItemDelegate__getBadgeColors(self, isEnabled: bool, isLo... method _LightLinkItemDelegate__getBadgeDimensions (line 18) | def _LightLinkItemDelegate__getBadgeDimensions(self, option: PyQt5.QtW... method _LightLinkItemDelegate__getLightData (line 19) | def _LightLinkItemDelegate__getLightData(self, index: PyQt5.QtCore.QMo... method getContentWidth (line 20) | def getContentWidth(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method paint (line 21) | def paint(self, painter: PyQt5.QtGui.QPainter, option: PyQt5.QtWidgets... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/MuteAndSoloItemDelegates.pyi class MuteItemDelegate (line 18) | class MuteItemDelegate(UI4.Widgets.SceneGraphView.ItemDelegates.StateIte... method __init__ (line 20) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method calculateItemState (line 21) | def calculateItemState(self, option: QStyleOptionViewItem, index: PyQt... method initStyleOption (line 22) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method modifyItemState (line 23) | def modifyItemState(self, item: PyQt5.QtWidgets.QTreeWidgetItem, index... method setGafferNode (line 24) | def setGafferNode(self, gafferNode: NodegraphAPI.Node): ... method toolTipEvent (line 25) | def toolTipEvent(self, index): ... class SoloItemDelegate (line 27) | class SoloItemDelegate(UI4.Widgets.SceneGraphView.ItemDelegates.StateIte... method __init__ (line 29) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method calculateItemState (line 30) | def calculateItemState(self, option: QStyleOptionViewItem, index: PyQt... method initStyleOption (line 31) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method modifyItemState (line 32) | def modifyItemState(self, item: PyQt5.QtWidgets.QTreeWidgetItem, index... method setGafferNode (line 33) | def setGafferNode(self, gafferNode: NodegraphAPI.Node): ... method toolTipEvent (line 34) | def toolTipEvent(self, index): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/NameItemDelegate.pyi class NameItemDelegate (line 17) | class NameItemDelegate(BaseItemDelegate): method _NameItemDelegate__applyCustomIcon (line 26) | def _NameItemDelegate__applyCustomIcon(self, option: PyQt5.QtWidgets.Q... method _NameItemDelegate__applyIcon (line 27) | def _NameItemDelegate__applyIcon(self, option: PyQt5.QtWidgets.QStyleO... method _NameItemDelegate__applySceneGraphLocationTypeIcon (line 28) | def _NameItemDelegate__applySceneGraphLocationTypeIcon(self, option: P... method _NameItemDelegate__createPinnedPixmap (line 29) | def _NameItemDelegate__createPinnedPixmap(self, pinned: bool, children... method _NameItemDelegate__createVisibilityPixmap (line 30) | def _NameItemDelegate__createVisibilityPixmap(self, visible: int, loca... method _NameItemDelegate__getAttributePixmapKey (line 31) | def _NameItemDelegate__getAttributePixmapKey(self, attributeValue: int... method _NameItemDelegate__getPinnedPixmap (line 32) | def _NameItemDelegate__getPinnedPixmap(self, pinned: bool, childrenPin... method _NameItemDelegate__getPinnedStatus (line 33) | def _NameItemDelegate__getPinnedStatus(self, locationPath: str) -> tup... method _NameItemDelegate__getVisibilityPixmap (line 34) | def _NameItemDelegate__getVisibilityPixmap(self, visible: int, local: ... method _applyIconDecorations (line 35) | def _applyIconDecorations(self, option: PyQt5.QtWidgets.QStyleOptionVi... method _getGreyColor (line 36) | def _getGreyColor(self) -> None: ... method _isMuted (line 37) | def _isMuted(self, locationPath: str) -> bool: ... method initStyleOption (line 38) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method shouldShowPinning (line 39) | def shouldShowPinning(self) -> bool: ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/NumberItemDelegate.pyi class NumberItemDelegate (line 18) | class NumberItemDelegate(ParameterItemDelegate): method __init__ (line 21) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _NumberItemDelegate__formatFloat (line 23) | def _NumberItemDelegate__formatFloat(value, precision): ... method _NumberItemDelegate__on_editor_valueChanged (line 24) | def _NumberItemDelegate__on_editor_valueChanged(self, value: float): ... method createEditor (line 25) | def createEditor(self, parent: PyQt5.QtWidgets.QWidget, option: PyQt5.... method doesParameterValueMatchModelValue (line 26) | def doesParameterValueMatchModelValue(self, parameterPolicy: BaseParam... method editorClosed (line 27) | def editorClosed(self, editor: PyQt5.QtWidgets.QWidget, endEditHint: P... method getEditorClass (line 28) | def getEditorClass(self) -> PyQt5.QtWidgets.QWidget | None: ... method initStyleOption (line 29) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method setEditorData (line 30) | def setEditorData(self, editor: PyQt5.QtWidgets.QWidget, index: PyQt5.... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/ParameterItemDelegate.pyi class ParameterItemDelegate (line 26) | class ParameterItemDelegate(BaseItemDelegate): method __init__ (line 28) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _ParameterItemDelegate__on_cacheManager_flush (line 29) | def _ParameterItemDelegate__on_cacheManager_flush(self): ... method _ParameterItemDelegate__on_closeEditor (line 30) | def _ParameterItemDelegate__on_closeEditor(self, editor: PyQt5.QtWidge... method _ParameterItemDelegate__on_sceneGraph_locationDeleted (line 31) | def _ParameterItemDelegate__on_sceneGraph_locationDeleted(self, eventT... method _ParameterItemDelegate__on_sceneGraph_locationRenamed (line 32) | def _ParameterItemDelegate__on_sceneGraph_locationRenamed(self, eventT... method _ParameterItemDelegate__parameterPolicyEventHandler (line 33) | def _ParameterItemDelegate__parameterPolicyEventHandler(self, valuePol... method canChangeSelection (line 34) | def canChangeSelection(self, index: PyQt5.QtCore.QModelIndex, event: P... method clone (line 35) | def clone(self, parent: Incomplete | None = ...) -> ParameterItemDeleg... method createContextMenu (line 36) | def createContextMenu(self, index: PyQt5.QtCore.QModelIndex, selectedI... method createEditor (line 37) | def createEditor(self, parent: PyQt5.QtWidgets.QWidget, option: PyQt5.... method doesParameterValueMatchModelValue (line 38) | def doesParameterValueMatchModelValue(self, parameterPolicy: BaseParam... method editorClosed (line 39) | def editorClosed(self, editor: PyQt5.QtWidgets.QWidget, endEditHint: P... method executeOnParameterSetCallback (line 40) | def executeOnParameterSetCallback(self, node: typing.Optional[Nodegrap... method getEditorClass (line 41) | def getEditorClass(self) -> PyQt5.QtWidgets.QWidget | None: ... method getModelIndexesForEditing (line 42) | def getModelIndexesForEditing(self, editedCellIndex: PyQt5.QtCore.QMod... method getNodeAndParameterPolicy (line 43) | def getNodeAndParameterPolicy(self, index: PyQt5.QtCore.QModelIndex, r... method getNodesAndParameterPoliciesForEditing (line 44) | def getNodesAndParameterPoliciesForEditing(self, editedCellIndex: PyQt... method getParameterPoliciesForEditing (line 45) | def getParameterPoliciesForEditing(self, editedCellIndex: PyQt5.QtCore... method getStateColor (line 46) | def getStateColor(self, option: PyQt5.QtWidgets.QStyleOptionViewItem, ... method initStyleOption (line 47) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method setModelData (line 48) | def setModelData(self, editor, model, index): ... method setNodeAndParameter (line 49) | def setNodeAndParameter(self, locationPath: str, node: NodegraphAPI.No... method setShowFinalValue (line 50) | def setShowFinalValue(self, state: bool): ... method showFinalValue (line 51) | def showFinalValue(self) -> bool: ... method toolTipEvent (line 52) | def toolTipEvent(self, index: PyQt5.QtCore.QModelIndex): ... method updateEditorGeometry (line 53) | def updateEditorGeometry(self, editor: PyQt5.QtWidgets.QWidget, option... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/ShaderItemDelegate.pyi class ShaderItemDelegate (line 31) | class ShaderItemDelegate(ParameterItemDelegate): class MaterialSelectionPopupFrame (line 32) | class MaterialSelectionPopupFrame(PyQt5.QtWidgets.QFrame): method __init__ (line 33) | def __init__(self, valuePolicy: ValuePolicy, lookFileAsset: str, loo... method _MaterialSelectionPopupFrame__lookFileChangedCallback (line 34) | def _MaterialSelectionPopupFrame__lookFileChangedCallback(self, *arg... method _MaterialSelectionPopupFrame__on_lookFileMaterialFilterPopup_itemChosen (line 35) | def _MaterialSelectionPopupFrame__on_lookFileMaterialFilterPopup_ite... method _MaterialSelectionPopupFrame__on_shaderFilterPopup_itemChosen (line 36) | def _MaterialSelectionPopupFrame__on_shaderFilterPopup_itemChosen(se... method getShaderFilterPopup (line 37) | def getShaderFilterPopup(self): ... method popup (line 38) | def popup(self, globalPos): ... method setLookFileMaterialAssignmentCallback (line 39) | def setLookFileMaterialAssignmentCallback(self, callback, locationPa... method setMasterMaterialsRequestCallback (line 40) | def setMasterMaterialsRequestCallback(self, callback, locationPath):... method setTemplateMaterialsRequestCallback (line 41) | def setTemplateMaterialsRequestCallback(self, callback, locationPath... class ShaderFilterPopup (line 43) | class ShaderFilterPopup(UI4.Widgets.FilterPopups.ShaderFilterPopup): class ItemDelegate (line 44) | class ItemDelegate(BaseItemDelegate): method initStyleOption (line 46) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionView... method __init__ (line 47) | def __init__(self, valuePolicy: ValuePolicy, parent: Incomplete | No... method _refreshContents (line 48) | def _refreshContents(self): ... method setMasterMaterialsRequestCallback (line 49) | def setMasterMaterialsRequestCallback(self, callback, locationPath):... method setTemplateMaterialsRequestCallback (line 50) | def setTemplateMaterialsRequestCallback(self, callback: typing.Calla... method __init__ (line 54) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _ShaderItemDelegate__assignTemplateMaterialToPackages (line 55) | def _ShaderItemDelegate__assignTemplateMaterialToPackages(self, templa... method _ShaderItemDelegate__getShaderNodeAndParameter (line 56) | def _ShaderItemDelegate__getShaderNodeAndParameter(self, index: PyQt5.... method _ShaderItemDelegate__getShaderSubTypeForLocation (line 57) | def _ShaderItemDelegate__getShaderSubTypeForLocation(self, locationPat... method _ShaderItemDelegate__on_removeAllShadersAction_triggered (line 58) | def _ShaderItemDelegate__on_removeAllShadersAction_triggered(self): ... method _ShaderItemDelegate__on_shaderFilterPopup_itemChosen (line 59) | def _ShaderItemDelegate__on_shaderFilterPopup_itemChosen(self, itemTex... method _ShaderItemDelegate__on_shaderTypeAction_triggered (line 60) | def _ShaderItemDelegate__on_shaderTypeAction_triggered(self): ... method _ShaderItemDelegate__on_unassignTemplateMaterialsAction_triggered (line 61) | def _ShaderItemDelegate__on_unassignTemplateMaterialsAction_triggered(... method _ShaderItemDelegate__removeAllShadersFromSelectedPackages (line 62) | def _ShaderItemDelegate__removeAllShadersFromSelectedPackages(self): ... method _ShaderItemDelegate__setShaderForSelectedPackages (line 63) | def _ShaderItemDelegate__setShaderForSelectedPackages(self, shaderType... method _ShaderItemDelegate__setTemplateMaterialForSelectedPackages (line 64) | def _ShaderItemDelegate__setTemplateMaterialForSelectedPackages(self, ... method _ShaderItemDelegate__unassignTemplateMaterialsFromPackages (line 65) | def _ShaderItemDelegate__unassignTemplateMaterialsFromPackages(self, l... method createContextMenu (line 66) | def createContextMenu(self, index: PyQt5.QtCore.QModelIndex, selectedI... method createEditor (line 67) | def createEditor(self, parent: PyQt5.QtWidgets.QWidget, option: PyQt5.... method initStyleOption (line 68) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method setLookFileMaterialCallback (line 69) | def setLookFileMaterialCallback(self, lookFileMaterialAssignmentCallba... method setMasterMaterialCallbacks (line 70) | def setMasterMaterialCallbacks(self, masterMaterialsRequestCallback: t... method setTemplateMaterialCallbacks (line 71) | def setTemplateMaterialCallbacks(self, templateMaterialsRequestCallbac... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/StateItemDelegate.pyi class StateItemDelegate (line 13) | class StateItemDelegate(StateItemDelegateMixin, BaseItemDelegate): method __init__ (line 14) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method initStyleOption (line 15) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... class StateItemDelegateMixin (line 17) | class StateItemDelegateMixin: method __init__ (line 19) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _updateColumnSize (line 20) | def _updateColumnSize(self): ... method addState (line 21) | def addState(self, name: str, icon: Incomplete | None = ..., text: Inc... method calculateItemState (line 22) | def calculateItemState(self, option, index): ... method canChangeSelection (line 23) | def canChangeSelection(self, index: PyQt5.QtCore.QModelIndex, event: P... method editorEvent (line 24) | def editorEvent(self, event: PyQt5.QtCore.QEvent, itemModel: PyQt5.QtC... method getItemStates (line 25) | def getItemStates(self): ... method initStyleOption (line 26) | def initStyleOption(self, option: PyQt5.QtWidgets.QStyleOptionViewItem... method isValidState (line 27) | def isValidState(self, name: str) -> bool: ... method modifyItemState (line 28) | def modifyItemState(self, item: PyQt5.QtWidgets.QTreeWidgetItem, index... method removeState (line 29) | def removeState(self, name: str): ... method setItemState (line 30) | def setItemState(self, state: str, locationPath: str): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ItemDelegates/WorkingSetItemDelegate.pyi class WorkingSetItemDelegate (line 20) | class WorkingSetItemDelegate(StateItemDelegate): method __init__ (line 24) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method _WorkingSetItemDelegate__locationStateChangedCallback (line 25) | def _WorkingSetItemDelegate__locationStateChangedCallback(self, locati... method _WorkingSetItemDelegate__on_treeWidget_destroyed (line 26) | def _WorkingSetItemDelegate__on_treeWidget_destroyed(self): ... method _WorkingSetItemDelegate__updateTerminalOps (line 27) | def _WorkingSetItemDelegate__updateTerminalOps(self): ... method calculateItemState (line 28) | def calculateItemState(self, option: QStyleOptionViewItem, index: PyQt... method createContextMenu (line 29) | def createContextMenu(self, index: PyQt5.QtCore.QModelIndex, selectedI... method customizeColumnTitleContextMenu (line 30) | def customizeColumnTitleContextMenu(self, menu: PyQt5.QtWidgets.QMenu)... method getTerminalOps (line 31) | def getTerminalOps(self) -> list[tuple[str, PyFnAttribute.GroupAttribu... method isPropertyValid (line 33) | def isPropertyValid(cls, propertyName: str) -> bool: ... method modifyItemState (line 34) | def modifyItemState(self, item: PyQt5.QtWidgets.QTreeWidgetItem, index... method setProperty (line 35) | def setProperty(self, propertyName: str, propertyValue: object | None)... method setWorkingSetName (line 36) | def setWorkingSetName(self, workingSetName: str): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphFindButton.pyi class SceneGraphFindButton (line 18) | class SceneGraphFindButton(FilterablePopupButton): method __init__ (line 20) | def __init__(self, parent, sceneGraphView) -> None: ... method _SceneGraphFindButton__getFilteredLocationPaths (line 21) | def _SceneGraphFindButton__getFilteredLocationPaths(self, locationFilt... method _SceneGraphFindButton__getSelectedLocations (line 22) | def _SceneGraphFindButton__getSelectedLocations(self): ... method _SceneGraphFindButton__getVisibleCameraLocations (line 23) | def _SceneGraphFindButton__getVisibleCameraLocations(self): ... method _SceneGraphFindButton__getVisibleLightLocations (line 24) | def _SceneGraphFindButton__getVisibleLightLocations(self): ... method _SceneGraphFindButton__getVisibleLocations (line 25) | def _SceneGraphFindButton__getVisibleLocations(self): ... method _SceneGraphFindButton__on_aboutToShow (line 26) | def _SceneGraphFindButton__on_aboutToShow(self, *args): ... method _SceneGraphFindButton__on_itemChosen (line 27) | def _SceneGraphFindButton__on_itemChosen(self, nodeName, meta): ... method _SceneGraphFindButton__scrollToLocation (line 28) | def _SceneGraphFindButton__scrollToLocation(self, locationPath): ... method _SceneGraphFindButton__selectAllClicked (line 29) | def _SceneGraphFindButton__selectAllClicked(self): ... method _SceneGraphFindButton__setSelectButtonState (line 30) | def _SceneGraphFindButton__setSelectButtonState(self, addToSelection: ... method _getAttribute (line 31) | def _getAttribute(self, locationPath, attributeName): ... method enterEvent (line 32) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method getSceneGraphView (line 33) | def getSceneGraphView(self) -> SceneGraphView: ... method leaveEvent (line 34) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method setLocationFilter (line 35) | def setLocationFilter(self, locationFilter: str): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphHandle.pyi class SceneGraphHandle (line 8) | class SceneGraphHandle: method __init__ (line 10) | def __init__(self, locationPath: str | None, isTopLevelLocation: bool,... method getAttribute (line 11) | def getAttribute(self) -> PyFnAttribute | None: ... method getItemTypeClass (line 12) | def getItemTypeClass(self) -> type: ... method getLocationPath (line 13) | def getLocationPath(self) -> str | None: ... method isLocationType (line 14) | def isLocationType(self) -> bool: ... method isTopLevelLocation (line 15) | def isTopLevelLocation(self) -> bool: ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphLocationTranslation.pyi function ExplodePath (line 5) | def ExplodePath(locationPath): ... function GetLocationName (line 6) | def GetLocationName(locationPath): ... function GetParentPath (line 7) | def GetParentPath(locationPath, topLevelLocationPath: str = ...): ... function IsLocationUnderTopLevelLocation (line 8) | def IsLocationUnderTopLevelLocation(locationPath, topLevelLocationPath):... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphTree.pyi class SceneGraphTree (line 10) | class SceneGraphTree: method __init__ (line 11) | def __init__(self) -> None: ... method addOrUpdateSceneGraphLocation (line 12) | def addOrUpdateSceneGraphLocation(self, locationPath: str, locationDat... method clear (line 13) | def clear(self): ... method deleteSceneGraphLocation (line 14) | def deleteSceneGraphLocation(self, locationPath): ... method getTreeItem (line 15) | def getTreeItem(self, locationPath: str) -> TreeItem: ... method hasLocation (line 16) | def hasLocation(self, locationPath: str) -> bool: ... class SceneGraphTreeException (line 18) | class SceneGraphTreeException(Exception): ... class TreeItem (line 20) | class TreeItem: method __init__ (line 21) | def __init__(self, locationPath: str, locationData: PyFnGeolib.Locatio... method _TreeItem__clearLookupMaps (line 22) | def _TreeItem__clearLookupMaps(self): ... method _TreeItem__populateIndexToNameLookupMap (line 23) | def _TreeItem__populateIndexToNameLookupMap(self): ... method _TreeItem__populateNameToIndexLookupMap (line 24) | def _TreeItem__populateNameToIndexLookupMap(self): ... method addChild (line 25) | def addChild(self, childTreeItem): ... method deleteChild (line 26) | def deleteChild(self, childTreeItem): ... method getAttributeData (line 27) | def getAttributeData(self, attributeName: str, returnResolvedData: boo... method getAttributes (line 28) | def getAttributes(self) -> PyFnAttribute.Attribute: ... method getChildByName (line 29) | def getChildByName(self, locationName: str) -> TreeItem: ... method getChildBySceneGraphIndex (line 30) | def getChildBySceneGraphIndex(self, sceneGraphIndex): ... method getChildItems (line 31) | def getChildItems(self) -> list[TreeItem]: ... method getChildNames (line 32) | def getChildNames(self) -> list[str]: ... method getLocationData (line 33) | def getLocationData(self) -> PyFnGeolib.LocationData: ... method getLocationName (line 34) | def getLocationName(self) -> str: ... method getLocationPath (line 35) | def getLocationPath(self) -> str: ... method getLocationType (line 36) | def getLocationType(self) -> str | None: ... method getNumberOfChildren (line 37) | def getNumberOfChildren(self) -> int: ... method getParent (line 38) | def getParent(self) -> TreeItem | None: ... method getPotentialChildren (line 39) | def getPotentialChildren(self) -> list: ... method getSceneGraphIndexInParent (line 40) | def getSceneGraphIndexInParent(self): ... method getSceneGraphIndexOfChildTreeItem (line 41) | def getSceneGraphIndexOfChildTreeItem(self, childTreeItem): ... method getSceneGraphIndexOfLocationName (line 42) | def getSceneGraphIndexOfLocationName(self, locationName): ... method updateLocationData (line 43) | def updateLocationData(self, locationData: PyFnGeolib.LocationData): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphView.pyi class SceneGraphView (line 22) | class SceneGraphView: method __init__ (line 23) | def __init__(self, debugMode: bool = ..., parent: Incomplete | None = ... method GetStopAtLocationTypes (line 25) | def GetStopAtLocationTypes(cls) -> tuple[str, ...]: ... method Initialize (line 27) | def Initialize(cls): ... method SetStopAtLocationTypes (line 29) | def SetStopAtLocationTypes(cls, *locationTypes): ... method addAttributeDataItemType (line 30) | def addAttributeDataItemType(self, itemTypeClass: type): ... method addColumn (line 31) | def addColumn(self, columnName: str) -> SceneGraphColumn[UI4.Widgets.S... method addColumnSet (line 32) | def addColumnSet(self, columnSetName: str) -> SceneGraphColumnSet[UI4.... method addRule (line 33) | def addRule(self, ruleName: str): ... method addTopLevelLocation (line 34) | def addTopLevelLocation(self, topLevelLocationPath: str, index: Incomp... method addWorkingSetColumn (line 35) | def addWorkingSetColumn(self, workingSetName: str, columnIcon: Incompl... method allowMultipleSelection (line 36) | def allowMultipleSelection(self) -> bool | None: ... method applyColumnVisibilitySettings (line 37) | def applyColumnVisibilitySettings(self, columnVisibility: dict): ... method applyColumnWidthsSettings (line 38) | def applyColumnWidthsSettings(self, columnWidths: dict): ... method beginColumnConfiguration (line 39) | def beginColumnConfiguration(self): ... method clearExpandedLocationsRegistry (line 40) | def clearExpandedLocationsRegistry(self, clearCurrent: bool = ...): ... method clearTopLevelLocations (line 41) | def clearTopLevelLocations(self): ... method endColumnConfiguration (line 42) | def endColumnConfiguration(self): ... method frozenWhenHidden (line 43) | def frozenWhenHidden(self) -> bool | None: ... method getAllLocations (line 44) | def getAllLocations(self, visibleOnly: bool = ...) -> list[tuple | Non... method getChildLocations (line 45) | def getChildLocations(self, locationPath: str, topLevelLocationPath: s... method getChildNameByIndex (line 46) | def getChildNameByIndex(self, parentLocationPath, childIndex): ... method getColumnByName (line 47) | def getColumnByName(self, columnName: str) -> SceneGraphColumn[UI4.Wid... method getColumnPresetManager (line 48) | def getColumnPresetManager(self) -> ColumnPresetManager[UI4.Widgets.Sc... method getColumnVisibilitySettings (line 49) | def getColumnVisibilitySettings(self) -> dict: ... method getColumnWidthsSettings (line 50) | def getColumnWidthsSettings(self) -> dict: ... method getCurrentRules (line 51) | def getCurrentRules(self): ... method getNumberOfChildren (line 52) | def getNumberOfChildren(self, parentLocationPath): ... method getParent (line 53) | def getParent(self, locationPath: str) -> str | None: ... method getRootColumnSet (line 54) | def getRootColumnSet(self) -> SceneGraphColumnSet[UI4.Widgets.SceneGra... method getSceneGraphAttributes (line 55) | def getSceneGraphAttributes(self, locationPath: str, callback: Incompl... method getSceneGraphChildren (line 56) | def getSceneGraphChildren(self, parentLocationPath: str, callback: Inc... method getSelectedItems (line 57) | def getSelectedItems(self) -> list[TreeWidgetItem | None]: ... method getSelectedLocations (line 58) | def getSelectedLocations(self, sortBySceneGraphOrder: bool = ...) -> l... method getTopLevelLocations (line 59) | def getTopLevelLocations(self) -> list[str]: ... method getWidget (line 60) | def getWidget(self) -> PyQt5.QtWidgets.QWidget | None: ... method hideColumnSet (line 61) | def hideColumnSet(self, columnSetName: str): ... method interruptClientProcessing (line 62) | def interruptClientProcessing(self): ... method isFrozen (line 63) | def isFrozen(self) -> bool: ... method isLocationExpanded (line 64) | def isLocationExpanded(self, topLevelLocationPath: str, locationPath: ... method isProcessing (line 65) | def isProcessing(self) -> bool: ... method isStopping (line 66) | def isStopping(self) -> bool: ... method locationNamesPolished (line 67) | def locationNamesPolished(self) -> bool | None: ... method removeRule (line 68) | def removeRule(self, ruleName: str): ... method removeTopLevelLocation (line 69) | def removeTopLevelLocation(self, topLevelLocationPath: str): ... method saveExpandedLocations (line 70) | def saveExpandedLocations(self): ... method scrollToLocation (line 71) | def scrollToLocation(self, topLevelLocationPath: str, locationPath: st... method selectChildLocations (line 72) | def selectChildLocations(self, replaceSelection: bool = ...): ... method selectLocations (line 73) | def selectLocations(self, locations, replaceSelection: bool = ...): ... method selectParentLocations (line 74) | def selectParentLocations(self, replaceSelection: bool = ...): ... method setAboutToDragCallback (line 75) | def setAboutToDragCallback(self, callback: typing.Callable): ... method setAllowMultipleSelection (line 76) | def setAllowMultipleSelection(self, allowMultipleSelection: bool): ... method setContextMenuEventCallback (line 77) | def setContextMenuEventCallback(self, callback): ... method setDragMoveEventCallback (line 78) | def setDragMoveEventCallback(self, callback: typing.Callable): ... method setDropEventCallback (line 79) | def setDropEventCallback(self, callback: typing.Callable): ... method setExpandsOnDoubleClick (line 80) | def setExpandsOnDoubleClick(self, expandsOnDoubleClick: bool): ... method setFrozenWhenHidden (line 81) | def setFrozenWhenHidden(self, frozenWhenHidden: bool = ...): ... method setKeyPressEventCallback (line 82) | def setKeyPressEventCallback(self, callback: typing.Callable): ... method setLocationActive (line 83) | def setLocationActive(self, locationPath: str): ... method setLocationAddedOrUpdatedCallback (line 84) | def setLocationAddedOrUpdatedCallback(self, callback: typing.Callable)... method setLocationCollapsed (line 85) | def setLocationCollapsed(self, topLevelLocationPath: str, locationPath... method setLocationCollapsedCallback (line 86) | def setLocationCollapsedCallback(self, callback: typing.Callable): ... method setLocationDataProcessedCallback (line 87) | def setLocationDataProcessedCallback(self, callback: typing.Callable):... method setLocationExpanded (line 88) | def setLocationExpanded(self, topLevelLocationPath: str, locationPath:... method setLocationExpandedCallback (line 89) | def setLocationExpandedCallback(self, callback: typing.Callable): ... method setLocationExpandedRecursive (line 90) | def setLocationExpandedRecursive(self, topLevelLocationPath: str, loca... method setLocationNamePolishCallback (line 91) | def setLocationNamePolishCallback(self, callback: typing.Callable): ... method setLocationNamesPolished (line 92) | def setLocationNamesPolished(self, namesPolished: bool): ... method setLocationRemovedCallback (line 93) | def setLocationRemovedCallback(self, callback: typing.Callable): ... method setMaxEventsToProcess (line 94) | def setMaxEventsToProcess(self, maxEventsToProcess: int): ... method setOverrideParameterRequestCallback (line 95) | def setOverrideParameterRequestCallback(self, callback: typing.Callabl... method setRuleCriteria (line 96) | def setRuleCriteria(self, ruleName: str, criteriaName: str, criteria: ... method setRuleEvaluator (line 97) | def setRuleEvaluator(self, ruleName: str, evaluator: Evaluator[UI4.Wid... method setRuleMatchPolicy (line 98) | def setRuleMatchPolicy(self, ruleMatchPolicy: int): ... method setRuleTarget (line 99) | def setRuleTarget(self, ruleName: str, column: SceneGraphColumn[UI4.Wi... method setSelectionChangedCallback (line 100) | def setSelectionChangedCallback(self, callback: typing.Callable): ... method setSelectionState (line 101) | def setSelectionState(self, topLevelLocationPath: str, locationPath: s... method setStopRecursiveExpandAttributeNames (line 102) | def setStopRecursiveExpandAttributeNames(self, attributeNames: list[st... method setStopRecursiveExpandLocationTypes (line 103) | def setStopRecursiveExpandLocationTypes(self, locationTypes: list[str]... method setTerminalOps (line 104) | def setTerminalOps(self, terminalOpArgs): ... method setTopLevelDisplayIndex (line 105) | def setTopLevelDisplayIndex(self, locationPath: str, index: int): ... method setTopLevelLocations (line 106) | def setTopLevelLocations(self, topLevelLocationPaths: list[str]): ... method setUpdateViewportAutomatically (line 107) | def setUpdateViewportAutomatically(self, updateViewportAutomatically: ... method setViewNode (line 108) | def setViewNode(self, node: NodegraphAPI.Node | None, applyImplicitRes... method setViewOp (line 109) | def setViewOp(self, op: FnGeolibOp | None, applyImplicitResolvers: boo... method showColumnSet (line 110) | def showColumnSet(self, columnSetName: str): ... method showRuleConfigDialog (line 111) | def showRuleConfigDialog(self): ... method topLevelLocationRenamed (line 112) | def topLevelLocationRenamed(self, oldLocationPath, newLocationPath): ... method updateLocation (line 113) | def updateLocation(self, topLevelLocationPath: str, locationPath: str)... method updateLocationIcons (line 114) | def updateLocationIcons(self, topLevelLocationPath: str, locationPath:... method updateSelection (line 115) | def updateSelection(self, selectedLocations, deselectedLocations): ... method updateTerminalOps (line 116) | def updateTerminalOps(self, terminalOpArgs, txn: Incomplete | None = .... method updateViewport (line 117) | def updateViewport(self): ... method updateWidget (line 118) | def updateWidget(self): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphViewClientManager.pyi class SceneGraphViewClientManager (line 8) | class SceneGraphViewClientManager(ClientManager): method __init__ (line 9) | def __init__(self) -> None: ... method _SceneGraphViewClientManager__isLocationUnder (line 10) | def _SceneGraphViewClientManager__isLocationUnder(self, location: str,... method _getClientForLocation (line 11) | def _getClientForLocation(self, location: str, topLevelLocation: str |... method topLevelLocationAdded (line 12) | def topLevelLocationAdded(self, topLevelLocation: str): ... method topLevelLocationRemoved (line 13) | def topLevelLocationRemoved(self, topLevelLocation: str): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphViewColumn.pyi class BaseSceneGraphColumn (line 16) | class BaseSceneGraphColumn: method __init__ (line 17) | def __init__(self, name: str = ..., columnChangedCallback: typing.Opti... method callColumnChangedCallback (line 18) | def callColumnChangedCallback(self): ... method getColumnChangedCallback (line 19) | def getColumnChangedCallback(self) -> typing.Callable | None: ... method getIndex (line 20) | def getIndex(self) -> int: ... method getName (line 21) | def getName(self) -> str: ... method getParentSet (line 22) | def getParentSet(self) -> SceneGraphColumnSet[SceneGraphColumnSet] | N... method getParentSetNames (line 23) | def getParentSetNames(self) -> list[str]: ... method getParentSets (line 24) | def getParentSets(self) -> list[SceneGraphColumnSet[SceneGraphColumnSe... method isVisible (line 25) | def isVisible(self) -> bool: ... method setColumnChangedCallback (line 26) | def setColumnChangedCallback(self, callback: typing.Callable | None): ... method setIndex (line 27) | def setIndex(self, index: int): ... method setName (line 28) | def setName(self, name: str): ... method setParentSet (line 29) | def setParentSet(self, parentSet: SceneGraphColumnSet[SceneGraphColumn... method setVisible (line 30) | def setVisible(self, visible: bool): ... class SceneGraphColumn (line 32) | class SceneGraphColumn(BaseSceneGraphColumn): method __init__ (line 33) | def __init__(self, columnName: str = ..., columnChangedCallback: typin... method getAttributeName (line 34) | def getAttributeName(self) -> str | None: ... method getAttributeNames (line 35) | def getAttributeNames(self) -> list[str]: ... method getColorDisplayTypeName (line 37) | def getColorDisplayTypeName(cls) -> str: ... method getDataType (line 38) | def getDataType(self) -> int: ... method getDefaultDisplayTypeIndex (line 40) | def getDefaultDisplayTypeIndex(cls) -> int: ... method getDefaultDisplayTypeName (line 42) | def getDefaultDisplayTypeName(cls) -> str: ... method getFixedWidth (line 43) | def getFixedWidth(self) -> int | None: ... method getLookFileMaterialAssignmentCallback (line 44) | def getLookFileMaterialAssignmentCallback(self) -> typing.Callable | N... method getMasterMaterialCallbacks (line 45) | def getMasterMaterialCallbacks(self): ... method getMaximumWidth (line 46) | def getMaximumWidth(self) -> int | None: ... method getMinimumWidth (line 47) | def getMinimumWidth(self) -> int | None: ... method getProperties (line 48) | def getProperties(self) -> list[tuple[str, Any]]: ... method getSupportedDisplayTypes (line 50) | def getSupportedDisplayTypes(cls) -> list[str]: ... method getTemplateMaterialCallbacks (line 51) | def getTemplateMaterialCallbacks(self) -> tuple[typing.Callable, ...] ... method getTitle (line 52) | def getTitle(self) -> SceneGraphColumnTitle[SceneGraphColumnTitle]: ... method getTitleClickStyle (line 53) | def getTitleClickStyle(self) -> str: ... method getTitleClickedCallback (line 54) | def getTitleClickedCallback(self) -> typing.Callable | None: ... method getTitleIcon (line 55) | def getTitleIcon(self) -> PyQt5.QtGui.QIcon | None: ... method getTitleIconName (line 56) | def getTitleIconName(self) -> str: ... method getTitleStyle (line 57) | def getTitleStyle(self) -> str: ... method getTitleText (line 58) | def getTitleText(self) -> str: ... method getTitleToolTip (line 59) | def getTitleToolTip(self) -> str: ... method getWidth (line 60) | def getWidth(self) -> int: ... method isEditable (line 61) | def isEditable(self) -> bool: ... method isLocationName (line 62) | def isLocationName(self) -> bool: ... method isTitleToggledOn (line 63) | def isTitleToggledOn(self) -> bool: ... method isValueComparisonEnabled (line 64) | def isValueComparisonEnabled(self) -> bool: ... method setAttributeName (line 65) | def setAttributeName(self, attributeName: str, callCallback: bool = ..... method setAttributeNames (line 66) | def setAttributeNames(self, attributeNames: list[str]): ... method setDataType (line 67) | def setDataType(self, dataType: cls): ... method setEditable (line 68) | def setEditable(self, editable: bool): ... method setFixedWidth (line 69) | def setFixedWidth(self, fixedWidth: int | None): ... method setIsLocationName (line 70) | def setIsLocationName(self, isLocationName: bool): ... method setLookFileMaterialCallback (line 71) | def setLookFileMaterialCallback(self, lookFileMaterialAssignmentCallba... method setMasterMaterialCallbacks (line 72) | def setMasterMaterialCallbacks(self, masterMaterialsRequestCallback: t... method setMaximumWidth (line 73) | def setMaximumWidth(self, maximumWidth: int | None): ... method setMinimumWidth (line 74) | def setMinimumWidth(self, minimumWidth: int | None): ... method setProperty (line 75) | def setProperty(self, propertyName: str, propertyValue: object | None)... method setTemplateMaterialCallbacks (line 76) | def setTemplateMaterialCallbacks(self, templateMaterialsRequestCallbac... method setTitleClickStyle (line 77) | def setTitleClickStyle(self, titleClickStyle: str): ... method setTitleClickedCallback (line 78) | def setTitleClickedCallback(self, callback: typing.Callable | None): ... method setTitleIcon (line 79) | def setTitleIcon(self, icon: PyQt5.QtGui.QIcon | None): ... method setTitleIconName (line 80) | def setTitleIconName(self, titleIconName: str): ... method setTitleStyle (line 81) | def setTitleStyle(self, titleStyle: str): ... method setTitleText (line 82) | def setTitleText(self, titleText: str): ... method setTitleToggledOn (line 83) | def setTitleToggledOn(self, titleToggledOn: bool): ... method setTitleToolTip (line 84) | def setTitleToolTip(self, toolTip: str): ... method setValueComparisonEnabled (line 85) | def setValueComparisonEnabled(self, valueComparisonEnabled: bool): ... method setWidth (line 86) | def setWidth(self, width: int): ... method titleClicked (line 87) | def titleClicked(self, columnTitleRect: PyQt5.QtCore.QRect): ... class SceneGraphColumnSet (line 89) | class SceneGraphColumnSet(BaseSceneGraphColumn): method __init__ (line 91) | def __init__(self, setName: str = ..., columnChangedCallback: typing.O... method _SceneGraphColumnSet__applyColumnSettings (line 92) | def _SceneGraphColumnSet__applyColumnSettings(self, settings: dict, se... method _SceneGraphColumnSet__checkRecursionDepth (line 94) | def _SceneGraphColumnSet__checkRecursionDepth(depth: int): ... method _SceneGraphColumnSet__getChildByName (line 95) | def _SceneGraphColumnSet__getChildByName(self, childName: str, childTy... method _SceneGraphColumnSet__getColumnByIndex (line 96) | def _SceneGraphColumnSet__getColumnByIndex(self, columnIndex: int, vis... method _SceneGraphColumnSet__getColumnSettings (line 97) | def _SceneGraphColumnSet__getColumnSettings(self, settings: dict, getM... method addChild (line 98) | def addChild(self, child: BaseSceneGraphColumn[BaseSceneGraphColumn], ... method addColumn (line 99) | def addColumn(self, columnName: str) -> SceneGraphColumn[SceneGraphCol... method addColumnSet (line 100) | def addColumnSet(self, setName: str = ...) -> SceneGraphColumnSet[Scen... method addKeyboardShortcut (line 101) | def addKeyboardShortcut(self, shortcut: str | None | int | QKeySequenc... method applyColumnVisibilitySettings (line 102) | def applyColumnVisibilitySettings(self, columnVisibilitySettings: dict... method clearChildren (line 103) | def clearChildren(self): ... method getAttributeName (line 104) | def getAttributeName(self, columnIndex: int, visibleOnly: bool = ...) ... method getAttributeNames (line 105) | def getAttributeNames(self, columnIndex: int, visibleOnly: bool = ...)... method getChildByName (line 106) | def getChildByName(self, childName: str) -> Tuple[SceneGraphColumn[Sce... method getChildIndex (line 107) | def getChildIndex(self, child: BaseSceneGraphColumn[BaseSceneGraphColu... method getColumnByIndex (line 108) | def getColumnByIndex(self, columnIndex: int, visibleOnly: bool = ...) ... method getColumnByName (line 109) | def getColumnByName(self, columnName: str) -> BaseSceneGraphColumn[Bas... method getColumnCount (line 110) | def getColumnCount(self, visibleOnly: bool = ...) -> int: ... method getColumnSetByName (line 111) | def getColumnSetByName(self, columnSetName: str) -> SceneGraphColumnSe... method getColumnVisibilitySettings (line 112) | def getColumnVisibilitySettings(self) -> dict: ... method getColumns (line 113) | def getColumns(self, visibleOnly: bool = ...) -> list[BaseSceneGraphCo... method getDataType (line 114) | def getDataType(self, columnIndex: int, visibleOnly: bool = ...) -> in... method getNames (line 115) | def getNames(self, visibleOnly: bool = ...) -> list[str]: ... method getTitleText (line 116) | def getTitleText(self, columnIndex: int, visibleOnly: bool = ...) -> s... method getTitles (line 117) | def getTitles(self, visibleOnly: bool = ...) -> list[SceneGraphColumnT... method getWidth (line 118) | def getWidth(self, columnIndex: int, visibleOnly: bool = ...) -> int |... method getWidths (line 119) | def getWidths(self, visibleOnly: bool = ...) -> list[int]: ... method isEditable (line 120) | def isEditable(self, columnIndex: int, visibleOnly: bool = ...) -> boo... method isLocationNameColumn (line 121) | def isLocationNameColumn(self, columnIndex: int, visibleOnly: bool = .... method removeChild (line 122) | def removeChild(self, child: BaseSceneGraphColumn[BaseSceneGraphColumn... method removeKeyboardShortcut (line 123) | def removeKeyboardShortcut(self, shortcut: str | None | int | QKeySequ... method removeKeyboardShortcuts (line 124) | def removeKeyboardShortcuts(self): ... method setChildIndex (line 125) | def setChildIndex(self, child: BaseSceneGraphColumn[BaseSceneGraphColu... method setColumnChangedCallback (line 126) | def setColumnChangedCallback(self, callback: typing.Callable | None): ... class SceneGraphColumnTitle (line 128) | class SceneGraphColumnTitle: class ClickStyles (line 129) | class ClickStyles: method __init__ (line 137) | def __init__(self, text: str, iconName: str, style: str) -> None: ... method _SceneGraphColumnTitle__shouldShowIcon (line 138) | def _SceneGraphColumnTitle__shouldShowIcon(self) -> bool: ... method _SceneGraphColumnTitle__shouldShowText (line 139) | def _SceneGraphColumnTitle__shouldShowText(self) -> bool: ... method callClickedCallback (line 140) | def callClickedCallback(self, columnTitleRect: PyQt5.QtCore.QRect): ... method getClickStyle (line 141) | def getClickStyle(self) -> str: ... method getClickedCallback (line 142) | def getClickedCallback(self) -> typing.Callable | None: ... method getIcon (line 143) | def getIcon(self) -> PyQt5.QtGui.QIcon | None: ... method getIconName (line 144) | def getIconName(self) -> str: ... method getStyle (line 145) | def getStyle(self) -> str: ... method getText (line 146) | def getText(self) -> str: ... method getToolTip (line 147) | def getToolTip(self) -> str: ... method isToggledOn (line 148) | def isToggledOn(self) -> bool: ... method setClickStyle (line 149) | def setClickStyle(self, clickStyle: str): ... method setClickedCallback (line 150) | def setClickedCallback(self, callback: typing.Callable | None): ... method setIcon (line 151) | def setIcon(self, icon: PyQt5.QtGui.QIcon | None): ... method setIconName (line 152) | def setIconName(self, iconName: str): ... method setStyle (line 153) | def setStyle(self, style: str): ... method setText (line 154) | def setText(self, text: str): ... method setToggledOn (line 155) | def setToggledOn(self, toggledOn: bool): ... method setToolTip (line 156) | def setToolTip(self, toolTip: str): ... method setUpdateFunction (line 157) | def setUpdateFunction(self, updateFunction: typing.Callable | None, *a... function GetNonInformationalAttributeName (line 159) | def GetNonInformationalAttributeName(attributeNames: list[str]) -> str |... FILE: katana/stubs/UI4/Widgets/SceneGraphView/SceneGraphViewIconManager.pyi function GetIcon (line 11) | def GetIcon(iconName: str) -> PyQt5.QtGui.QIcon | None: ... function GetPixmap (line 12) | def GetPixmap(iconName: str, resolution: int = ..., mode: PyQt5.QtGui.QI... function RegisterIconOverrideCallback (line 13) | def RegisterIconOverrideCallback(callback: typing.Callable): ... function UnregisterIconOverrideCallback (line 14) | def UnregisterIconOverrideCallback(callback: typing.Callable): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/TreeWidgetItems.pyi class AttributeDataTreeWidgetItem (line 13) | class AttributeDataTreeWidgetItem(BaseTreeWidgetItem): method ConfigureDrag (line 17) | def ConfigureDrag(cls, draggedItems: list[LocationTreeWidgetItem], dra... method getAttributeName (line 19) | def getAttributeName(cls) -> str: ... method getLocationType (line 21) | def getLocationType(cls) -> str: ... method getSortID (line 22) | def getSortID(self): ... method shouldDrawGreyForeground (line 23) | def shouldDrawGreyForeground(self) -> bool: ... method updateDisplayData (line 24) | def updateDisplayData(self): ... class BaseTreeWidgetItem (line 26) | class BaseTreeWidgetItem(QT4Widgets.SortableTreeWidget.SortableTreeWidge... method __init__ (line 27) | def __init__(self, parent: PyQt5.QtWidgets.QTreeWidgetItem | None, han... method ConfigureDrag (line 29) | def ConfigureDrag(cls, draggedItems: list[BaseTreeWidgetItem], drag: P... method attributeDataChildCount (line 30) | def attributeDataChildCount(self): ... method getChildItems (line 31) | def getChildItems(self, visibleOnly: bool = ..., locationsOnly: bool =... method getChildSortID (line 32) | def getChildSortID(self, childName): ... method getHandle (line 33) | def getHandle(self): ... method getLocationPath (line 34) | def getLocationPath(self): ... method getNumChildSortIDs (line 35) | def getNumChildSortIDs(self) -> int: ... method getSortID (line 36) | def getSortID(self) -> int: ... method getTopLevelHandle (line 37) | def getTopLevelHandle(self): ... method getTopLevelIndex (line 38) | def getTopLevelIndex(self): ... method getTopLevelLocationPath (line 39) | def getTopLevelLocationPath(self): ... method inheritSortID (line 40) | def inheritSortID(self): ... method isAttributeDataItem (line 41) | def isAttributeDataItem(self) -> bool: ... method isAttributeDataType (line 43) | def isAttributeDataType(cls) -> bool: ... method isLocationItem (line 44) | def isLocationItem(self) -> bool: ... method isLocationType (line 46) | def isLocationType(cls) -> bool: ... method setAttributeDataChildren (line 47) | def setAttributeDataChildren(self, attributeDataChildHandles: dict): ... method setChildSortOrder (line 48) | def setChildSortOrder(self, childNames: list[str], updateChildren: boo... method setHandle (line 49) | def setHandle(self, handle): ... method setSortID (line 50) | def setSortID(self, sortId): ... method setTopLevelHandle (line 51) | def setTopLevelHandle(self, topLevelHandle): ... method setTopLevelIndex (line 52) | def setTopLevelIndex(self, topLevelIndex): ... method updateChildIndicator (line 53) | def updateChildIndicator(self): ... method __lt__ (line 54) | def __lt__(self, item) -> bool: ... class LocationTreeWidgetItem (line 56) | class LocationTreeWidgetItem(BaseTreeWidgetItem): method ConfigureDrag (line 59) | def ConfigureDrag(cls, draggedItems: list[LocationTreeWidgetItem], dra... method getLocationType (line 60) | def getLocationType(self) -> str: ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/TreeWidgetViewLink.pyi class ExpandedLocationsRegistry (line 40) | class ExpandedLocationsRegistry: method __init__ (line 41) | def __init__(self) -> None: ... method clear (line 42) | def clear(self, clearCurrent: bool = ...): ... method getCurrentlyExpandedLocations (line 43) | def getCurrentlyExpandedLocations(self) -> set[tuple]: ... method renameLocation (line 44) | def renameLocation(self, oldLocationPath: str, newLocationPath: str): ... method resetCurrentlyExpandedLocations (line 45) | def resetCurrentlyExpandedLocations(self): ... method setLocationCollapsed (line 46) | def setLocationCollapsed(self, locationPath: str, topLevelLocationPath... method setLocationExpanded (line 47) | def setLocationExpanded(self, locationPath: str, topLevelLocationPath)... method wasLocationExpanded (line 48) | def wasLocationExpanded(self, locationPath: str, topLevelLocationPath:... method __len__ (line 49) | def __len__(self) -> int: ... class TreeWidget (line 51) | class TreeWidget(SortableTreeWidget): method __init__ (line 55) | def __init__(self, contextMenuEventHandler: typing.Callable, keyPressE... method _TreeWidget__on_aboutToDrag (line 56) | def _TreeWidget__on_aboutToDrag(self, draggedItems: list[LocationTreeW... method _TreeWidget__on_customContextMenuRequested (line 57) | def _TreeWidget__on_customContextMenuRequested(self, pos: PyQt5.QtGui.... method _TreeWidget__on_dragMoveEvent (line 58) | def _TreeWidget__on_dragMoveEvent(self, event: PyQt5.QtGui.QDragMoveEv... method _TreeWidget__on_dropEvent (line 59) | def _TreeWidget__on_dropEvent(self, event: PyQt5.QtGui.QDragMoveEvent,... method _TreeWidget__updateWidgetFromFont (line 60) | def _TreeWidget__updateWidgetFromFont(self): ... method _getCorrespondingPointInNameColumn (line 61) | def _getCorrespondingPointInNameColumn(self, point: PyQt5.QtCore.QPoin... method event (line 62) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method fontChange (line 63) | def fontChange(self, oldFont: PyQt5.QtGui.QFont): ... method hideEvent (line 64) | def hideEvent(self, event: PyQt5.QtGui.QHideEvent): ... method indexAt (line 65) | def indexAt(self, point: PyQt5.QtCore.QPoint) -> PyQt5.QtCore.QModelIn... method itemDelegateForColumn (line 66) | def itemDelegateForColumn(self, column): ... method keyPressEvent (line 67) | def keyPressEvent(self, keyEvent: PyQt5.QtGui.QKeyEvent): ... method mousePressEvent (line 68) | def mousePressEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method resizeColumnToContents (line 69) | def resizeColumnToContents(self, column: int): ... method selectionCommand (line 70) | def selectionCommand(self, index: PyQt5.QtCore.QModelIndex, event: Inc... method setItemDelegateForColumn (line 71) | def setItemDelegateForColumn(self, column, delegate): ... method showEvent (line 72) | def showEvent(self, event: PyQt5.QtGui.QShowEvent): ... method visualRect (line 73) | def visualRect(self, index: PyQt5.QtCore.QModelIndex) -> PyQt5.QtCore.... class TreeWidgetException (line 75) | class TreeWidgetException(Exception): method __init__ (line 76) | def __init__(self, errorMessage: str) -> None: ... class TreeWidgetViewLink (line 78) | class TreeWidgetViewLink(ViewLink): method __init__ (line 87) | def __init__(self, bridge: Bridge[UI4.Widgets.SceneGraphView.Bridge.Br... method GetStopAtLocationTypes (line 89) | def GetStopAtLocationTypes(cls) -> tuple[str, ...]: ... method SetStopAtLocationTypes (line 91) | def SetStopAtLocationTypes(cls, *locationTypes): ... method _TreeWidgetViewLink__GetCapitalizedWords (line 93) | def _TreeWidgetViewLink__GetCapitalizedWords(cls, text: str, joiner: s... method _TreeWidgetViewLink__aboutToDragEventHandler (line 94) | def _TreeWidgetViewLink__aboutToDragEventHandler(self, draggedItems, d... method _TreeWidgetViewLink__addChildLocationsToSelectionActionCallback (line 95) | def _TreeWidgetViewLink__addChildLocationsToSelectionActionCallback(se... method _TreeWidgetViewLink__addParentLocationsToSelectionActionCallback (line 96) | def _TreeWidgetViewLink__addParentLocationsToSelectionActionCallback(s... method _TreeWidgetViewLink__buildParameterItemDelegatesDictionary (line 97) | def _TreeWidgetViewLink__buildParameterItemDelegatesDictionary(self, h... method _TreeWidgetViewLink__collapseBranchesActionCallback (line 98) | def _TreeWidgetViewLink__collapseBranchesActionCallback(self): ... method _TreeWidgetViewLink__collapseBranchesToMultipleActionCallback (line 99) | def _TreeWidgetViewLink__collapseBranchesToMultipleActionCallback(self... method _TreeWidgetViewLink__collapseLocationsActionCallback (line 100) | def _TreeWidgetViewLink__collapseLocationsActionCallback(self): ... method _TreeWidgetViewLink__contextMenuEventHandler (line 101) | def _TreeWidgetViewLink__contextMenuEventHandler(self, event): ... method _TreeWidgetViewLink__deleteLocationItem (line 102) | def _TreeWidgetViewLink__deleteLocationItem(self, locationItem, subTre... method _TreeWidgetViewLink__dragMoveEventHandler (line 103) | def _TreeWidgetViewLink__dragMoveEventHandler(self, dragMoveEvent, dra... method _TreeWidgetViewLink__dropEventHandler (line 104) | def _TreeWidgetViewLink__dropEventHandler(self, dropEvent, droppedItem... method _TreeWidgetViewLink__expandBranchesActionCallback (line 105) | def _TreeWidgetViewLink__expandBranchesActionCallback(self): ... method _TreeWidgetViewLink__expandBranchesToMultipleActionCallback (line 106) | def _TreeWidgetViewLink__expandBranchesToMultipleActionCallback(self):... method _TreeWidgetViewLink__expandLocationsActionCallback (line 107) | def _TreeWidgetViewLink__expandLocationsActionCallback(self): ... method _TreeWidgetViewLink__expandToAndSelectProxyChildrenCallback (line 108) | def _TreeWidgetViewLink__expandToAndSelectProxyChildrenCallback(self):... method _TreeWidgetViewLink__fontChangeEventHandler (line 109) | def _TreeWidgetViewLink__fontChangeEventHandler(self): ... method _TreeWidgetViewLink__getAncestorLocationsOfType (line 110) | def _TreeWidgetViewLink__getAncestorLocationsOfType(self, locations, t... method _TreeWidgetViewLink__getHandlesForSelectedItems (line 111) | def _TreeWidgetViewLink__getHandlesForSelectedItems(self, returnMinima... method _TreeWidgetViewLink__getHandlesForTopLevelItems (line 112) | def _TreeWidgetViewLink__getHandlesForTopLevelItems(self) -> list[None... method _TreeWidgetViewLink__getParentLocationItem (line 113) | def _TreeWidgetViewLink__getParentLocationItem(self, locationPath, sub... method _TreeWidgetViewLink__getSubTreeByPath (line 114) | def _TreeWidgetViewLink__getSubTreeByPath(self, topLevelLocationPath: ... method _TreeWidgetViewLink__isItemExpandedTo (line 115) | def _TreeWidgetViewLink__isItemExpandedTo(self, treeWidgetItem: PyQt5.... method _TreeWidgetViewLink__keyPressEventHandler (line 116) | def _TreeWidgetViewLink__keyPressEventHandler(self, event): ... method _TreeWidgetViewLink__moveSelectionDownActionCallback (line 117) | def _TreeWidgetViewLink__moveSelectionDownActionCallback(self, replace... method _TreeWidgetViewLink__moveSelectionUpActionCallback (line 118) | def _TreeWidgetViewLink__moveSelectionUpActionCallback(self, replaceSe... method _TreeWidgetViewLink__onNewScene (line 119) | def _TreeWidgetViewLink__onNewScene(self, **kwargs): ... method _TreeWidgetViewLink__onSceneLoad (line 120) | def _TreeWidgetViewLink__onSceneLoad(self, **kwargs): ... method _TreeWidgetViewLink__on_cacheManager_flush (line 121) | def _TreeWidgetViewLink__on_cacheManager_flush(self): ... method _TreeWidgetViewLink__on_event_idle_updateItemDelegates (line 122) | def _TreeWidgetViewLink__on_event_idle_updateItemDelegates(self, event... method _TreeWidgetViewLink__on_sceneGraph_locationRenamed (line 123) | def _TreeWidgetViewLink__on_sceneGraph_locationRenamed(self, eventType... method _TreeWidgetViewLink__on_treeWidgetHeader_sectionMoved (line 124) | def _TreeWidgetViewLink__on_treeWidgetHeader_sectionMoved(self, logica... method _TreeWidgetViewLink__on_treeWidgetHeader_sectionPressed (line 125) | def _TreeWidgetViewLink__on_treeWidgetHeader_sectionPressed(self, logi... method _TreeWidgetViewLink__on_treeWidgetHeader_sectionResized (line 126) | def _TreeWidgetViewLink__on_treeWidgetHeader_sectionResized(self, logi... method _TreeWidgetViewLink__on_treeWidget_destroyed (line 127) | def _TreeWidgetViewLink__on_treeWidget_destroyed(self): ... method _TreeWidgetViewLink__on_treeWidget_hide (line 128) | def _TreeWidgetViewLink__on_treeWidget_hide(self): ... method _TreeWidgetViewLink__on_treeWidget_itemCollapsed (line 129) | def _TreeWidgetViewLink__on_treeWidget_itemCollapsed(self, item): ... method _TreeWidgetViewLink__on_treeWidget_itemDoubleClicked (line 130) | def _TreeWidgetViewLink__on_treeWidget_itemDoubleClicked(self, item, c... method _TreeWidgetViewLink__on_treeWidget_itemExpanded (line 131) | def _TreeWidgetViewLink__on_treeWidget_itemExpanded(self, item): ... method _TreeWidgetViewLink__on_treeWidget_itemSelectionChanged (line 132) | def _TreeWidgetViewLink__on_treeWidget_itemSelectionChanged(self): ... method _TreeWidgetViewLink__on_treeWidget_show (line 133) | def _TreeWidgetViewLink__on_treeWidget_show(self): ... method _TreeWidgetViewLink__recursiveShowItems (line 134) | def _TreeWidgetViewLink__recursiveShowItems(self, locationItem: Locati... method _TreeWidgetViewLink__requestOverrideParameters (line 135) | def _TreeWidgetViewLink__requestOverrideParameters(self, overrideParam... method _TreeWidgetViewLink__selectChildLocationsActionCallback (line 136) | def _TreeWidgetViewLink__selectChildLocationsActionCallback(self, repl... method _TreeWidgetViewLink__selectLocationsByCallback (line 137) | def _TreeWidgetViewLink__selectLocationsByCallback(self, callback, rep... method _TreeWidgetViewLink__selectParentLocationsActionCallback (line 138) | def _TreeWidgetViewLink__selectParentLocationsActionCallback(self, rep... method _TreeWidgetViewLink__showLocationItem (line 139) | def _TreeWidgetViewLink__showLocationItem(self, locationItem: Location... method _TreeWidgetViewLink__sortItemChildren (line 140) | def _TreeWidgetViewLink__sortItemChildren(self, treeItem: LocationItem... method _TreeWidgetViewLink__updateItemChildList (line 141) | def _TreeWidgetViewLink__updateItemChildList(self, treeItem, newItem: ... method _TreeWidgetViewLink__updateItemDelegatesForLocations (line 142) | def _TreeWidgetViewLink__updateItemDelegatesForLocations(self, locatio... method _TreeWidgetViewLink__updateLocationItems (line 143) | def _TreeWidgetViewLink__updateLocationItems(self, locationItems: list... method _TreeWidgetViewLink__updateParameterItemDelegateOverrideParameters (line 144) | def _TreeWidgetViewLink__updateParameterItemDelegateOverrideParameters... method _TreeWidgetViewLink__updateTreeWidgetItem (line 145) | def _TreeWidgetViewLink__updateTreeWidgetItem(self, treeWidgetItem, ha... method addOrUpdateLocation (line 146) | def addOrUpdateLocation(self, handle, topLevelHandle, potentialChildre... method addOrUpdateTopLevelLocation (line 147) | def addOrUpdateTopLevelLocation(self, topLevelHandle, potentialChildre... method allowMultipleSelection (line 148) | def allowMultipleSelection(self) -> bool: ... method clearExpandedLocationsRegistry (line 149) | def clearExpandedLocationsRegistry(self, clearCurrent: bool = ...): ... method collapseLocation (line 150) | def collapseLocation(self, handle, topLevelHandle): ... method evaluateFilterRules (line 151) | def evaluateFilterRules(self, handle: Incomplete | None = ..., topLeve... method expandLocation (line 152) | def expandLocation(self, handle, topLevelHandle): ... method frozenWhenHidden (line 153) | def frozenWhenHidden(self) -> bool: ... method getAllLocations (line 154) | def getAllLocations(self, visibleOnly: bool = ...) -> list[tuple[str, ... method getChildLocations (line 155) | def getChildLocations(self, locationPath, topLevelLocationPath, visibl... method getItemDelegateTerminalOps (line 156) | def getItemDelegateTerminalOps(self): ... method getOverrideNodeAndParameterName (line 157) | def getOverrideNodeAndParameterName(self, locationPath: str, attribute... method getSelectedItems (line 158) | def getSelectedItems(self): ... method getSelectedLocations (line 159) | def getSelectedLocations(self, sortBySceneGraphOrder: bool = ...): ... method getUpdateSuppressor (line 160) | def getUpdateSuppressor(self): ... method getWidget (line 161) | def getWidget(self): ... method hideAttributeValuePopupWidget (line 162) | def hideAttributeValuePopupWidget(self, force: bool = ...): ... method isLocationExpanded (line 163) | def isLocationExpanded(self, handle, topLevelHandle): ... method registerKeyboardShortcuts (line 165) | def registerKeyboardShortcuts(cls): ... method registerKeyboardShortcutsForStopAtLocationTypes (line 167) | def registerKeyboardShortcutsForStopAtLocationTypes(cls): ... method removeLocation (line 168) | def removeLocation(self, handle, topLevelHandle, removeFromParent: boo... method removeTopLevelLocation (line 169) | def removeTopLevelLocation(self, topLevelHandle): ... method resetModel (line 170) | def resetModel(self): ... method saveExpandedLocations (line 171) | def saveExpandedLocations(self): ... method scrollToLocation (line 172) | def scrollToLocation(self, handle, topLevelHandle): ... method selectChildLocations (line 173) | def selectChildLocations(self, replaceSelection: bool = ...): ... method selectLocations (line 174) | def selectLocations(self, locations, replaceSelection: bool = ...): ... method selectParentLocations (line 175) | def selectParentLocations(self, replaceSelection: bool = ...): ... method setAboutToDragCallback (line 176) | def setAboutToDragCallback(self, callback): ... method setAllowMultipleSelection (line 177) | def setAllowMultipleSelection(self, allowMultipleSelection: bool): ... method setAttributeDataChildren (line 178) | def setAttributeDataChildren(self, handle, topLevelHandle, attributeDa... method setColumnTitles (line 179) | def setColumnTitles(self, columnTitles: list[SceneGraphColumnTitle[Sce... method setColumnWidths (line 180) | def setColumnWidths(self, columnWidths): ... method setContextMenuEventCallback (line 181) | def setContextMenuEventCallback(self, callback): ... method setDragMoveEventCallback (line 182) | def setDragMoveEventCallback(self, callback): ... method setDropEventCallback (line 183) | def setDropEventCallback(self, callback): ... method setExpandsOnDoubleClick (line 184) | def setExpandsOnDoubleClick(self, expandsOnDoubleClick): ... method setFrozenWhenHidden (line 185) | def setFrozenWhenHidden(self, frozenWhenHidden: bool = ...): ... method setKeyPressEventCallback (line 186) | def setKeyPressEventCallback(self, callback): ... method setOverrideParameterRequestCallback (line 187) | def setOverrideParameterRequestCallback(self, callback): ... method setSelectionChangedCallback (line 188) | def setSelectionChangedCallback(self, callback): ... method setSelectionState (line 189) | def setSelectionState(self, topLevelLocationPath, locationPath, select... method showAttributeValuePopupWidget (line 190) | def showAttributeValuePopupWidget(self, index: PyQt5.QtCore.QModelInde... method sortChildrenUnderLocation (line 191) | def sortChildrenUnderLocation(self, handle, topLevelHandle): ... method sortTopLevelLocations (line 192) | def sortTopLevelLocations(self): ... method updateItemDelegates (line 193) | def updateItemDelegates(self): ... method updateLocationIcons (line 194) | def updateLocationIcons(self, handle, topLevelHandle): ... method updateSelection (line 195) | def updateSelection(self, selectedLocations, deselectedLocations): ... method updateViewport (line 196) | def updateViewport(self): ... method updateWidget (line 197) | def updateWidget(self): ... FILE: katana/stubs/UI4/Widgets/SceneGraphView/ViewLink.pyi class ViewLink (line 9) | class ViewLink(abc.ABC): method addOrUpdateLocation (line 12) | def addOrUpdateLocation(self, handle, topLevelHandle): ... method addOrUpdateTopLevelLocation (line 13) | def addOrUpdateTopLevelLocation(self, topLevelHandle): ... method allowMultipleSelection (line 14) | def allowMultipleSelection(self) -> bool: ... method clearExpandedLocationsRegistry (line 15) | def clearExpandedLocationsRegistry(self, clearCurrent: bool = ...): ... method collapseLocation (line 16) | def collapseLocation(self, handle, topLevelHandle): ... method evaluateFilterRules (line 17) | def evaluateFilterRules(self, handle: Incomplete | None = ..., topLeve... method expandLocation (line 18) | def expandLocation(self, handle, topLevelHandle): ... method frozenWhenHidden (line 19) | def frozenWhenHidden(self) -> bool: ... method getAllLocations (line 20) | def getAllLocations(self): ... method getChildLocations (line 21) | def getChildLocations(self, locationPath, topLevelLocationPath, visibl... method getOverrideNodeAndParameterName (line 22) | def getOverrideNodeAndParameterName(self, locationPath: str, attribute... method getSelectedLocations (line 23) | def getSelectedLocations(self): ... method getUpdateSuppressor (line 24) | def getUpdateSuppressor(self): ... method getWidget (line 25) | def getWidget(self): ... method isLocationExpanded (line 26) | def isLocationExpanded(self, handle, topLevelHandle) -> bool: ... method removeLocation (line 27) | def removeLocation(self, handle, topLevelHandle): ... method removeTopLevelLocation (line 28) | def removeTopLevelLocation(self, topLevelHandle): ... method resetModel (line 29) | def resetModel(self): ... method saveExpandedLocations (line 30) | def saveExpandedLocations(self): ... method scrollToLocation (line 31) | def scrollToLocation(self, handle: SceneGraphHandle, topLevelHandle: S... method selectChildLocations (line 32) | def selectChildLocations(self, replaceSelection: bool = ...): ... method selectLocations (line 33) | def selectLocations(self, locations, replaceSelection: bool = ...): ... method selectParentLocations (line 34) | def selectParentLocations(self, replaceSelection: bool = ...): ... method setAboutToDragCallback (line 35) | def setAboutToDragCallback(self, callback): ... method setAllowMultipleSelection (line 36) | def setAllowMultipleSelection(self, allowMultipleSelection: bool): ... method setAttributeDataChildren (line 37) | def setAttributeDataChildren(self, handle: SceneGraphHandle, topLevelH... method setColumnTitles (line 38) | def setColumnTitles(self, columnTitleInfo: list[SceneGraphViewColumn.S... method setColumnWidths (line 39) | def setColumnWidths(self, columnWidths): ... method setContextMenuEventCallback (line 40) | def setContextMenuEventCallback(self, callback): ... method setDragMoveEventCallback (line 41) | def setDragMoveEventCallback(self, callback: typing.Callable): ... method setDropEventCallback (line 42) | def setDropEventCallback(self, callback: typing.Callable): ... method setExpandsOnDoubleClick (line 43) | def setExpandsOnDoubleClick(self, expandsOnDoubleClick: bool): ... method setFrozenWhenHidden (line 44) | def setFrozenWhenHidden(self, frozenWhenHidden: bool = ...): ... method setKeyPressEventCallback (line 45) | def setKeyPressEventCallback(self, callback): ... method setOverrideParameterRequestCallback (line 46) | def setOverrideParameterRequestCallback(self, callback: typing.Callabl... method setSelectionChangedCallback (line 47) | def setSelectionChangedCallback(self, callback): ... method setSelectionState (line 48) | def setSelectionState(self, topLevelLocationPath, locationPath, select... method sortChildrenUnderLocation (line 49) | def sortChildrenUnderLocation(self, handle: SceneGraphHandle, topLevel... method sortTopLevelLocations (line 50) | def sortTopLevelLocations(self): ... method updateItemDelegates (line 51) | def updateItemDelegates(self): ... method updateLocationIcons (line 52) | def updateLocationIcons(self, handle, topLevelHandle): ... method updateSelection (line 53) | def updateSelection(self, selectedLocations, deselectedLocations): ... method updateViewport (line 54) | def updateViewport(self): ... FILE: katana/stubs/UI4/Widgets/ScrollAreaMemory.pyi class ScrollAreaMemory (line 5) | class ScrollAreaMemory: method __init__ (line 6) | def __init__(self, target) -> None: ... method __del__ (line 7) | def __del__(self) -> None: ... FILE: katana/stubs/UI4/Widgets/ServiceProviderListWidget.pyi class ServiceProviderItemDelegate (line 13) | class ServiceProviderItemDelegate(PyQt5.QtWidgets.QStyledItemDelegate): method __init__ (line 16) | def __init__(self, listWidget, parent) -> None: ... method paint (line 17) | def paint(self, painter: PyQt5.QtWidgets.QPainter, option: PyQt5.QtWid... method sizeHint (line 18) | def sizeHint(self, option: PyQt5.QtWidgets.QStyleOptionViewItem, index... class ServiceProviderListWidget (line 20) | class ServiceProviderListWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 28) | def __init__(self, parent: PyQt5.QtWidgets.QWidget) -> None: ... method PixmapForService (line 30) | def PixmapForService(cls, service): ... method ServiceIDForService (line 32) | def ServiceIDForService(cls, service): ... method ServiceNameForService (line 34) | def ServiceNameForService(cls, service: PyServiceProviderRegistry.Serv... method _ServiceProviderListWidget__idle (line 35) | def _ServiceProviderListWidget__idle(self, *args, **kwargs): ... method _ServiceProviderListWidget__setupUI (line 36) | def _ServiceProviderListWidget__setupUI(self): ... method _ServiceProviderListWidget__updateModel (line 37) | def _ServiceProviderListWidget__updateModel(self): ... method _ServiceProviderListWidget__updateModelItem (line 38) | def _ServiceProviderListWidget__updateModelItem(self, serviceItem, ser... method hideEvent (line 39) | def hideEvent(self, event): ... method on_serviceSelectionModel_currentRowChanged (line 40) | def on_serviceSelectionModel_currentRowChanged(self, current: PyQt5.Qt... method showEvent (line 41) | def showEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/SetVersionFilterablePopup.pyi class SetVersionFilterablePopup (line 8) | class SetVersionFilterablePopup(QT4Widgets.FilterablePopupButton.Filtera... method __init__ (line 9) | def __init__(self, *args) -> None: ... method popupWithAsset (line 10) | def popupWithAsset(self, assetId, pos): ... FILE: katana/stubs/UI4/Widgets/ShaderComboBox.pyi class ShaderComboBox (line 10) | class ShaderComboBox(QT4FormWidgets.InputWidgets.InputComboBox): method __init__ (line 11) | def __init__(self, parent: QT4FormWidgets.FormWidget) -> None: ... method _ShaderComboBox__on_shaderFilterPopup_hide (line 12) | def _ShaderComboBox__on_shaderFilterPopup_hide(self): ... method _ShaderComboBox__on_shaderFilterPopup_itemChosen (line 13) | def _ShaderComboBox__on_shaderFilterPopup_itemChosen(self, text, meta)... method _ShaderComboBox__on_shaderFilterPopup_show (line 14) | def _ShaderComboBox__on_shaderFilterPopup_show(self): ... method keyPressEvent (line 15) | def keyPressEvent(self, event: PyQt5.QtGui.QKeyEvent): ... method showPopup (line 16) | def showPopup(self): ... FILE: katana/stubs/UI4/Widgets/ShelfButton.pyi class DataStoreAction (line 23) | class DataStoreAction(PyQt5.QtWidgets.QAction): method __init__ (line 25) | def __init__(self, text, parent, data) -> None: ... method _DataStoreAction__trigger (line 26) | def _DataStoreAction__trigger(self): ... class ItemCreateDialog (line 28) | class ItemCreateDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 29) | def __init__(self, shelf, parent) -> None: ... method _ItemCreateDialog__removeWarning (line 30) | def _ItemCreateDialog__removeWarning(self): ... method _ItemCreateDialog__showWarning (line 31) | def _ItemCreateDialog__showWarning(self, txt: str): ... method _ItemCreateDialog__validateShortcut (line 32) | def _ItemCreateDialog__validateShortcut(self, shortcut: str): ... method getResult (line 33) | def getResult(self): ... class ItemEditDialog (line 35) | class ItemEditDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 36) | def __init__(self, item) -> None: ... class ShelfButton (line 38) | class ShelfButton(FilterablePopupButton): method __init__ (line 45) | def __init__(self, parent, prefKey: Incomplete | None = ..., shelfQuer... method _ShelfButton__aboutToShow (line 46) | def _ShelfButton__aboutToShow(self): ... method _ShelfButton__addMenuAboutToShow (line 47) | def _ShelfButton__addMenuAboutToShow(self): ... method _ShelfButton__addShelf (line 48) | def _ShelfButton__addShelf(self, shelf, nameType): ... method _ShelfButton__addShelfItems (line 49) | def _ShelfButton__addShelfItems(self, shelf, shelfName): ... method _ShelfButton__addWarning (line 50) | def _ShelfButton__addWarning(self, issue: str, path: str, shelfName: s... method _ShelfButton__clearWarnings (line 51) | def _ShelfButton__clearWarnings(self): ... method _ShelfButton__deleteItem (line 52) | def _ShelfButton__deleteItem(self, data): ... method _ShelfButton__doChosen (line 53) | def _ShelfButton__doChosen(self, name, data, checkScope: bool = ...): ... method _ShelfButton__doFilterShelf (line 54) | def _ShelfButton__doFilterShelf(self, match, name, data): ... method _ShelfButton__formatWarningMessage (line 55) | def _ShelfButton__formatWarningMessage(self, issue: str) -> tuple: ... method _ShelfButton__getCurrentShelf (line 56) | def _ShelfButton__getCurrentShelf(self): ... method _ShelfButton__getKeyeventName (line 57) | def _ShelfButton__getKeyeventName(self, shelfName: str, itemUniqueName... method _ShelfButton__getShortcutForShelfItem (line 58) | def _ShelfButton__getShortcutForShelfItem(self, shelf: Shelves.Shelf, ... method _ShelfButton__isShortcutAlreadyInUse (line 59) | def _ShelfButton__isShortcutAlreadyInUse(self, shortcut): ... method _ShelfButton__newItem (line 60) | def _ShelfButton__newItem(self): ... method _ShelfButton__newShelf (line 61) | def _ShelfButton__newShelf(self): ... method _ShelfButton__popupWarningDialog (line 62) | def _ShelfButton__popupWarningDialog(self, title: str, issue: str): ... method _ShelfButton__queryShelves (line 63) | def _ShelfButton__queryShelves(self, forceReload: bool = ...): ... method _ShelfButton__registerKeyboardShortcut (line 64) | def _ShelfButton__registerKeyboardShortcut(self, shelf: PyUtil.Shelves... method _ShelfButton__reloadShelf (line 65) | def _ShelfButton__reloadShelf(self): ... method _ShelfButton__reloadShelfIfDirty (line 66) | def _ShelfButton__reloadShelfIfDirty(self): ... method _ShelfButton__rightClick (line 67) | def _ShelfButton__rightClick(self, event): ... method _ShelfButton__setInstancesDirty (line 68) | def _ShelfButton__setInstancesDirty(self): ... method _ShelfButton__shelfChanged (line 69) | def _ShelfButton__shelfChanged(self, eventName, eventId, *args): ... method _ShelfButton__shelfChosen (line 70) | def _ShelfButton__shelfChosen(self, index: Incomplete | None = ...): ... method _ShelfButton__shelfCreated (line 71) | def _ShelfButton__shelfCreated(self, eventName, eventID, shelf, **kwar... method _ShelfButton__unregisterKeyboardShortcut (line 72) | def _ShelfButton__unregisterKeyboardShortcut(self, shelf: PyUtil.Shelv... method _ShelfButton__updateChangedShortcuts (line 73) | def _ShelfButton__updateChangedShortcuts(self, shelf: Shelves.Shelf, i... method _ShelfButton__updateScope (line 74) | def _ShelfButton__updateScope(self, item: Shelves.ShelfItem, newScope:... method _ShelfButton__updateShelfItems (line 75) | def _ShelfButton__updateShelfItems(self): ... method _ShelfButton__viewSource (line 76) | def _ShelfButton__viewSource(self, data): ... method closeEvent (line 77) | def closeEvent(self, event: PyQt5.QtCore.QEvent): ... method enterEvent (line 78) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method executeShelfScript (line 80) | def executeShelfScript(widget: PyQt5.QtWidgets.QWidget, shortcut: str)... method getWarnings (line 81) | def getWarnings(self) -> dict: ... method keyboardShortcutPressed (line 82) | def keyboardShortcutPressed(self, shortcut): ... method leaveEvent (line 83) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method logWarnings (line 84) | def logWarnings(self, objectHash: str = ..., title: str = ..., popupDi... method setDirty (line 85) | def setDirty(self, dirty: bool = ...): ... method unregisterEventHandlers (line 86) | def unregisterEventHandlers(self): ... method validateKeyboardShortcut (line 87) | def validateKeyboardShortcut(self, shelfName: str, name: str, shortcut... class ShelfCreateDialog (line 89) | class ShelfCreateDialog(PyQt5.QtWidgets.QDialog): method __init__ (line 90) | def __init__(self) -> None: ... method getResult (line 91) | def getResult(self): ... FILE: katana/stubs/UI4/Widgets/SortableGroups.pyi class GroupPanel (line 10) | class GroupPanel(UI4.Widgets.SortablePanel.ParameterSortablePanel): method __init__ (line 11) | def __init__(self, parent, name, policy, factory, reorderable: bool = ... method getValuePolicy (line 12) | def getValuePolicy(self): ... method getWidget (line 13) | def getWidget(self): ... method setIndex (line 14) | def setIndex(self, index): ... method setLocked (line 15) | def setLocked(self, value): ... method updateWidgetState (line 16) | def updateWidgetState(self): ... class SortableGroupsFormWidget (line 18) | class SortableGroupsFormWidget(UI4.Widgets.SortablePanel.ParameterSortab... method __init__ (line 19) | def __init__(self, parent, policy, factory) -> None: ... method _SortableGroupsFormWidget__getNode (line 20) | def _SortableGroupsFormWidget__getNode(self): ... method _getPanelForPolicy (line 21) | def _getPanelForPolicy(self, vp): ... method addEntry (line 22) | def addEntry(self): ... method buildAddMenu (line 23) | def buildAddMenu(self, menu): ... method panelDeleted (line 24) | def panelDeleted(self, index): ... method panelReordered (line 25) | def panelReordered(self, oldPos, newPos): ... method updatePanelWidgets (line 26) | def updatePanelWidgets(self): ... method updatePanels (line 27) | def updatePanels(self): ... FILE: katana/stubs/UI4/Widgets/SortableListWidget.pyi class SortableListWidget (line 12) | class SortableListWidget(PyQt5.QtWidgets.QListWidget): method __init__ (line 25) | def __init__(self, parent) -> None: ... method _SortableListWidget__findToIndex (line 26) | def _SortableListWidget__findToIndex(self, event): ... method _SortableListWidget__startDrag (line 27) | def _SortableListWidget__startDrag(self): ... method _SortableListWidget__updateDragHilightBar (line 28) | def _SortableListWidget__updateDragHilightBar(self, event): ... method contextMenuEvent (line 29) | def contextMenuEvent(self, event): ... method customEvent (line 30) | def customEvent(self, event): ... method dragEnterEvent (line 31) | def dragEnterEvent(self, event): ... method dragLeaveEvent (line 32) | def dragLeaveEvent(self, event): ... method dragMoveEvent (line 33) | def dragMoveEvent(self, event): ... method dropEvent (line 34) | def dropEvent(self, event): ... method focusInEvent (line 35) | def focusInEvent(self, event): ... method getFullHeight (line 36) | def getFullHeight(self): ... method getFullWidth (line 37) | def getFullWidth(self): ... method isDraggable (line 38) | def isDraggable(self): ... method isItemDraggable (line 39) | def isItemDraggable(self, item): ... method isSorting (line 40) | def isSorting(self): ... method keyPressEvent (line 41) | def keyPressEvent(self, event): ... method mouseMoveEvent (line 42) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 43) | def mousePressEvent(self, event): ... method setDraggable (line 44) | def setDraggable(self, state): ... method setMultipleDragEnabled (line 45) | def setMultipleDragEnabled(self, state): ... method setPixmapHitTestEnabled (line 46) | def setPixmapHitTestEnabled(self, state): ... method sizeHint (line 47) | def sizeHint(self): ... method sort (line 48) | def sort(self, ascending: bool = ...): ... class SortableListWidgetItem (line 50) | class SortableListWidgetItem(PyQt5.QtWidgets.QListWidgetItem): method __init__ (line 51) | def __init__(self, listbox, text, pixmap: Incomplete | None = ..., dat... method _SortableListWidgetItem__measurePixmaps (line 52) | def _SortableListWidgetItem__measurePixmaps(self): ... method calcSizeHint (line 53) | def calcSizeHint(self): ... method getHiliteColor (line 54) | def getHiliteColor(self): ... method getItemData (line 55) | def getItemData(self): ... method getLabelColor (line 56) | def getLabelColor(self): ... method getPixmapSize (line 57) | def getPixmapSize(self): ... method getPixmaps (line 58) | def getPixmaps(self): ... method hitTest (line 59) | def hitTest(self, x, y): ... method setHiliteColor (line 60) | def setHiliteColor(self, color): ... method setItemData (line 61) | def setItemData(self, data): ... method setLabelColor (line 62) | def setLabelColor(self, color): ... method setPixmap (line 63) | def setPixmap(self, pixmap): ... method setPixmaps (line 64) | def setPixmaps(self, pixmaps): ... class SortableListWidgetItemDelegate (line 66) | class SortableListWidgetItemDelegate(PyQt5.QtWidgets.QItemDelegate): method paint (line 67) | def paint(self, painter, option, index): ... method sizeHint (line 68) | def sizeHint(self, option, index): ... FILE: katana/stubs/UI4/Widgets/SortablePanel.pyi class ParameterExpressionPanel (line 22) | class ParameterExpressionPanel(SortablePanelBase): method __init__ (line 23) | def __init__(self, parent, value: Incomplete | None = ...) -> None: ... method _ParameterExpressionPanel__triangleClicked (line 24) | def _ParameterExpressionPanel__triangleClicked(self, item, state): ... method getValue (line 25) | def getValue(self): ... method setResult (line 26) | def setResult(self, result, error: bool = ...): ... method setValue (line 27) | def setValue(self, value, final: bool = ...): ... method updateResultPalette (line 28) | def updateResultPalette(self, policy): ... class ParameterSortablePanel (line 30) | class ParameterSortablePanel(SortablePanelBase): method __init__ (line 31) | def __init__(self, parent, name, policy, factory, panelArgs: Incomplet... method getWidget (line 32) | def getWidget(self): ... class ParameterSortablePanelFormWidget (line 34) | class ParameterSortablePanelFormWidget(SortablePanelFormWidget): method __init__ (line 35) | def __init__(self, parent, policy, factory) -> None: ... method _getPanelForPolicy (line 36) | def _getPanelForPolicy(self, policy): ... method clearParameterChildren (line 37) | def clearParameterChildren(self): ... method panelDeleted (line 38) | def panelDeleted(self, index): ... method panelReordered (line 39) | def panelReordered(self, oldPos, newPos): ... method showPopdown (line 40) | def showPopdown(self, value): ... method updatePanels (line 41) | def updatePanels(self): ... class SortablePanelBase (line 43) | class SortablePanelBase(PanelWidget): ... class SortablePanelFormWidget (line 45) | class SortablePanelFormWidget(FormWidget): method __init__ (line 48) | def __init__(self, parent, policy, factory, showPopdown: bool = ...) -... method _SortablePanelFormWidget__addButtonDragEnterEvent (line 49) | def _SortablePanelFormWidget__addButtonDragEnterEvent(self, event): ... method _SortablePanelFormWidget__addButtonDropEvent (line 50) | def _SortablePanelFormWidget__addButtonDropEvent(self, event): ... method _SortablePanelFormWidget__addMenuCallback (line 51) | def _SortablePanelFormWidget__addMenuCallback(self): ... method _SortablePanelFormWidget__dragBoxContextMenuCallback (line 52) | def _SortablePanelFormWidget__dragBoxContextMenuCallback(self, index):... method _SortablePanelFormWidget__dragBoxContextMenuItemCallback (line 53) | def _SortablePanelFormWidget__dragBoxContextMenuItemCallback(self, ind... method _SortablePanelFormWidget__panelDragInProgress (line 54) | def _SortablePanelFormWidget__panelDragInProgress(self, index): ... method _SortablePanelFormWidget__panelValueChangedCallback (line 55) | def _SortablePanelFormWidget__panelValueChangedCallback(self, index): ... method _SortablePanelFormWidget__renumberPanels (line 56) | def _SortablePanelFormWidget__renumberPanels(self): ... method _allowUpdatePanels (line 57) | def _allowUpdatePanels(self, allow): ... method _buildControlWidget (line 58) | def _buildControlWidget(self, hbox): ... method _buildLabel (line 59) | def _buildLabel(self, labelText, pos: int = ...): ... method _isUpdatePanelsAllowed (line 60) | def _isUpdatePanelsAllowed(self): ... method _participatesInLabelAlignment (line 61) | def _participatesInLabelAlignment(self): ... method _popdownCreated (line 62) | def _popdownCreated(self, popdown): ... method _stealPanel (line 63) | def _stealPanel(self, w): ... method _thaw (line 64) | def _thaw(self): ... method _updatePanelsLater (line 65) | def _updatePanelsLater(self): ... method addButtonCheckDragEvent (line 66) | def addButtonCheckDragEvent(self, event): ... method addButtonDropEvent (line 67) | def addButtonDropEvent(self, event): ... method addPanel (line 68) | def addPanel(self, w): ... method buildAddMenu (line 69) | def buildAddMenu(self, menu): ... method checkMimeData (line 70) | def checkMimeData(self, mimeData): ... method deletePanel (line 71) | def deletePanel(self, index, notify: bool = ...): ... method destroyPanels (line 72) | def destroyPanels(self): ... method dragEnterEvent (line 73) | def dragEnterEvent(self, ev, resultList: Incomplete | None = ...): ... method dragLeaveEvent (line 74) | def dragLeaveEvent(self, ev): ... method dragMoveEvent (line 75) | def dragMoveEvent(self, ev, resultList: Incomplete | None = ...): ... method dropEvent (line 76) | def dropEvent(self, ev, resultList: Incomplete | None = ...): ... method ensurePanelVisible (line 77) | def ensurePanelVisible(self, index): ... method forceDragFinish (line 78) | def forceDragFinish(self): ... method getAddButton (line 79) | def getAddButton(self): ... method getNumPanels (line 80) | def getNumPanels(self): ... method getPanelFooterLayout (line 81) | def getPanelFooterLayout(self): ... method getPanelHeaderLayout (line 82) | def getPanelHeaderLayout(self): ... method getPanelLayout (line 83) | def getPanelLayout(self): ... method getPanels (line 84) | def getPanels(self): ... method getRawDragIndex (line 85) | def getRawDragIndex(self, pos): ... method getToolBarCenter (line 86) | def getToolBarCenter(self): ... method getToolBarLayout (line 87) | def getToolBarLayout(self): ... method getToolBarLeftLayout (line 88) | def getToolBarLeftLayout(self): ... method getToolBarRight (line 89) | def getToolBarRight(self): ... method insertPanel (line 90) | def insertPanel(self, w, index): ... method movePanel (line 91) | def movePanel(self, oldPos, newPos): ... method panelDeleted (line 92) | def panelDeleted(self, index): ... method panelReordered (line 93) | def panelReordered(self, oldPos, newPos): ... method panelValueChanged (line 94) | def panelValueChanged(self, index): ... method setAddPanelButtonName (line 95) | def setAddPanelButtonName(self, name): ... method setDragIndex (line 96) | def setDragIndex(self, index): ... method setDragMinIndex (line 97) | def setDragMinIndex(self, minIndex): ... method setLocked (line 98) | def setLocked(self, state, checkLockOps: bool = ...): ... method showPopdown (line 99) | def showPopdown(self, value): ... method updatePanels (line 100) | def updatePanels(self): ... method valueChangedEvent (line 101) | def valueChangedEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/SortableParams.pyi class SortableParamsFormWidget (line 8) | class SortableParamsFormWidget(UI4.Widgets.SortableGroups.SortableGroups... method __init__ (line 9) | def __init__(self, parent, policy, factory) -> None: ... method _SortableParamsFormWidget__menuAction (line 10) | def _SortableParamsFormWidget__menuAction(self, action): ... method buildAddMenu (line 11) | def buildAddMenu(self, menu): ... method updatePanelWidgets (line 12) | def updatePanelWidgets(self): ... FILE: katana/stubs/UI4/Widgets/StatefulMenu.pyi class StatefulAction (line 10) | class StatefulAction(PyQt5.QtWidgets.QAction): method __init__ (line 11) | def __init__(self, name, parent, data, extraSettings: dict = ...) -> N... method _StatefulAction__triggered (line 12) | def _StatefulAction__triggered(self, checked): ... method getData (line 13) | def getData(self): ... method updateState (line 14) | def updateState(self): ... class StatefulMenu (line 16) | class StatefulMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 17) | def __init__(self, title, parent: Incomplete | None = ...) -> None: ... method _StatefulMenu__update (line 18) | def _StatefulMenu__update(self): ... method build (line 19) | def build(self, data, extraSettings: dict = ...): ... method setUpdateOnShow (line 20) | def setUpdateOnShow(self, updateOnShow): ... function MergeStatefulMenuData (line 22) | def MergeStatefulMenuData(original, update): ... FILE: katana/stubs/UI4/Widgets/StopButton.pyi class SimpleStopWidget (line 9) | class SimpleStopWidget(ToolbarButton): method __init__ (line 12) | def __init__(self, parent, small: bool = ..., showPreselect: bool = ..... method _SimpleStopWidget__released (line 13) | def _SimpleStopWidget__released(self): ... method advanceTick (line 14) | def advanceTick(self): ... method getActive (line 15) | def getActive(self): ... method isClickable (line 16) | def isClickable(self): ... method isStopping (line 17) | def isStopping(self): ... method mousePressEvent (line 18) | def mousePressEvent(self, event): ... method resetButton (line 19) | def resetButton(self, frame: int = ..., disable: bool = ...): ... method setActive (line 20) | def setActive(self, active): ... method setClickable (line 21) | def setClickable(self, clickable): ... method setStopping (line 22) | def setStopping(self, stopping): ... class StopButton (line 24) | class StopButton(SimpleStopWidget): method __init__ (line 25) | def __init__(self, parent) -> None: ... method _StopButton__clickedCallback (line 26) | def _StopButton__clickedCallback(self): ... method connectToWorkQueue (line 27) | def connectToWorkQueue(self, workQueue): ... method getPixmapSize (line 28) | def getPixmapSize(self): ... method start (line 29) | def start(self): ... method startEvent (line 30) | def startEvent(self, eventName, eventId, **kwargs): ... method stop (line 31) | def stop(self): ... method stopEvent (line 32) | def stopEvent(self, eventName, eventId, **kwargs): ... method tickEvent (line 33) | def tickEvent(self, eventName, eventId, **kwargs): ... FILE: katana/stubs/UI4/Widgets/SwitchingBoxLayout.pyi class SwitchingBoxLayout (line 9) | class SwitchingBoxLayout(PyQt5.QtWidgets.QLayout): method __init__ (line 10) | def __init__(self) -> None: ... method addItem (line 11) | def addItem(self, item): ... method addLayout (line 12) | def addLayout(self, layout): ... method count (line 13) | def count(self): ... method expandingDirections (line 14) | def expandingDirections(self): ... method hasHeightForWidth (line 15) | def hasHeightForWidth(self): ... method heightForWidth (line 16) | def heightForWidth(self, w): ... method itemAt (line 17) | def itemAt(self, index): ... method minimumSize (line 18) | def minimumSize(self): ... method setGeometry (line 19) | def setGeometry(self, geometry: Incomplete | None = ...): ... method setSpacing (line 20) | def setSpacing(self, spacing, direction: Incomplete | None = ...): ... method sizeHint (line 21) | def sizeHint(self): ... method spacing (line 22) | def spacing(self, direction: Incomplete | None = ...): ... method takeAt (line 23) | def takeAt(self, index): ... FILE: katana/stubs/UI4/Widgets/TabDockWidget.pyi class TabDockWidget (line 13) | class TabDockWidget(PyQt5.QtWidgets.QDockWidget): method __init__ (line 16) | def __init__(self, tabWithTimeline: UI4.App.Tabs.TabWithTimeline, pare... method _TabDockWidget__on_detachTabButton_clicked (line 17) | def _TabDockWidget__on_detachTabButton_clicked(self): ... method _TabDockWidget__on_dockLocationChanged (line 18) | def _TabDockWidget__on_dockLocationChanged(self, area: PyQt5.QtCore.Qt... method _TabDockWidget__updateTitleBarButtons (line 19) | def _TabDockWidget__updateTitleBarButtons(self): ... method closeEvent (line 20) | def closeEvent(self, event: PyQt5.QtGui.QCloseEvent): ... method event (line 21) | def event(self, event: PyQt5.QtCore.QEvent) -> bool: ... method setWindowTitle (line 22) | def setWindowTitle(self, windowTitle: str): ... method windowTitle (line 23) | def windowTitle(self) -> str: ... FILE: katana/stubs/UI4/Widgets/ToolbarButton.pyi class LabeledToolbarButton (line 14) | class LabeledToolbarButton(PyQt5.QtWidgets.QWidget): class _ClickLabel (line 15) | class _ClickLabel(PyQt5.QtWidgets.QLabel): method mousePressEvent (line 17) | def mousePressEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method __init__ (line 19) | def __init__(self, label: str, parent: PyQt5.QtWidgets.QWidget | None,... method isOn (line 20) | def isOn(self) -> bool: ... method setOn (line 21) | def setOn(self, on: bool): ... class ToolbarButton (line 23) | class ToolbarButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 26) | def __init__(self, toolTip: str, parent: PyQt5.QtWidgets.QWidget | Non... method _ToolbarButton__actionToggled (line 27) | def _ToolbarButton__actionToggled(self): ... method disabledPixmap (line 28) | def disabledPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method disabledRolloverPixmap (line 29) | def disabledRolloverPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method enterEvent (line 30) | def enterEvent(self, event: PyQt5.QtCore.QEvent): ... method errorPixmap (line 31) | def errorPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method errorRolloverPixmap (line 32) | def errorRolloverPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method getButtonType (line 33) | def getButtonType(self) -> str: ... method isEnabled (line 34) | def isEnabled(self) -> bool: ... method isError (line 35) | def isError(self) -> bool: ... method isOn (line 36) | def isOn(self) -> bool: ... method leaveEvent (line 37) | def leaveEvent(self, event: PyQt5.QtCore.QEvent): ... method mousePressEvent (line 38) | def mousePressEvent(self, mouseEvent: PyQt5.QtGui.QMouseEvent): ... method normalPixmap (line 39) | def normalPixmap(self) -> PyQt5.QtGui.QPixmap: ... method onPixmap (line 40) | def onPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method onRolloverPixmap (line 41) | def onRolloverPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method press (line 42) | def press(self): ... method release (line 43) | def release(self): ... method rolloverPixmap (line 44) | def rolloverPixmap(self) -> PyQt5.QtGui.QPixmap | None: ... method setButtonType (line 45) | def setButtonType(self, buttonType: str): ... method setDisabled (line 46) | def setDisabled(self, disabled: bool): ... method setDisabledPixmap (line 47) | def setDisabledPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method setDisabledRolloverPixmap (line 48) | def setDisabledRolloverPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method setEnabled (line 49) | def setEnabled(self, enabled: bool): ... method setError (line 50) | def setError(self, error: bool, toolTip: Incomplete | None = ...): ... method setErrorPixmap (line 51) | def setErrorPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method setErrorRolloverPixmap (line 52) | def setErrorRolloverPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method setMenu (line 53) | def setMenu(self, menu): ... method setNormalPixmap (line 54) | def setNormalPixmap(self, p: PyQt5.QtGui.QPixmap): ... method setOn (line 55) | def setOn(self, on: bool): ... method setOnPixmap (line 56) | def setOnPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method setOnRolloverPixmap (line 57) | def setOnRolloverPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method setRolloverPixmap (line 58) | def setRolloverPixmap(self, p: PyQt5.QtGui.QPixmap | None): ... method toggle (line 59) | def toggle(self): ... method triggerAction (line 60) | def triggerAction(self): ... method update (line 61) | def update(self): ... FILE: katana/stubs/UI4/Widgets/ToolbarWidget.pyi class ToolbarWidget (line 11) | class ToolbarWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 13) | def __init__(self, parent) -> None: ... method _ToolbarWidget__toolbarChoiceTriggered_CB (line 14) | def _ToolbarWidget__toolbarChoiceTriggered_CB(self, action): ... method _ToolbarWidget__updateToolbar (line 15) | def _ToolbarWidget__updateToolbar(self): ... method addToolbar (line 16) | def addToolbar(self, toolbar): ... method popToolbar (line 17) | def popToolbar(self, toolbar): ... method removeToolbar (line 18) | def removeToolbar(self, toolbar): ... FILE: katana/stubs/UI4/Widgets/TreeWidget.pyi class TreeEditor (line 13) | class TreeEditor(PyQt5.QtWidgets.QLineEdit): method __init__ (line 15) | def __init__(self, parent, item, column, rect, value) -> None: ... method _TreeEditor__finished (line 16) | def _TreeEditor__finished(self, accepted): ... method focusOutEvent (line 17) | def focusOutEvent(self, event): ... method keyPressEvent (line 18) | def keyPressEvent(self, event): ... class TreeItem (line 20) | class TreeItem: method __init__ (line 21) | def __init__(self, parent, name: str = ..., index: int = ...) -> None:... method _TreeItem__setParent (line 22) | def _TreeItem__setParent(self, parent, index): ... method _TreeItem__unselectChildren (line 23) | def _TreeItem__unselectChildren(self): ... method _TreeItem__updateDescendentInfo (line 24) | def _TreeItem__updateDescendentInfo(self): ... method _setTreeWidget (line 25) | def _setTreeWidget(self, treeWidget): ... method addChild (line 26) | def addChild(self, child, index: int = ...): ... method childAtY (line 27) | def childAtY(self, y): ... method childByIndex (line 28) | def childByIndex(self, index): ... method childByName (line 29) | def childByName(self, name): ... method childCount (line 30) | def childCount(self): ... method childY (line 31) | def childY(self, item): ... method children (line 32) | def children(self): ... method depth (line 33) | def depth(self): ... method desiredColumnWidth (line 34) | def desiredColumnWidth(self, column): ... method expandable (line 35) | def expandable(self): ... method expanded (line 36) | def expanded(self): ... method getSortIndex (line 37) | def getSortIndex(self): ... method hasChildren (line 38) | def hasChildren(self): ... method height (line 39) | def height(self): ... method index (line 40) | def index(self): ... method itemCollapsed (line 41) | def itemCollapsed(self): ... method itemDoubleClicked (line 42) | def itemDoubleClicked(self, column): ... method itemExpanded (line 43) | def itemExpanded(self): ... method itemUpdated (line 44) | def itemUpdated(self, updateBelow: bool = ..., emitSignals: bool = ...... method iterChildren (line 45) | def iterChildren(self): ... method name (line 46) | def name(self): ... method paint (line 47) | def paint(self, painter, rect, palette, isCurrent, columnWidths): ... method paintCell (line 48) | def paintCell(self, painter, rect, palette, column): ... method parent (line 49) | def parent(self): ... method pixmap (line 50) | def pixmap(self, column): ... method selected (line 51) | def selected(self): ... method setExpandable (line 52) | def setExpandable(self, flag): ... method setExpanded (line 53) | def setExpanded(self, flag): ... method setHeight (line 54) | def setHeight(self, height): ... method setName (line 55) | def setName(self, name): ... method setPixmap (line 56) | def setPixmap(self, column, pixmap): ... method setSelected (line 57) | def setSelected(self, flag, emitSignals: bool = ...): ... method setText (line 58) | def setText(self, column, text): ... method setTextElideMode (line 59) | def setTextElideMode(self, column, mode): ... method sortChildren (line 60) | def sortChildren(self): ... method takeChild (line 61) | def takeChild(self, index): ... method takeChildren (line 62) | def takeChildren(self): ... method text (line 63) | def text(self, column): ... method textElideMode (line 64) | def textElideMode(self, column): ... method treeWidget (line 65) | def treeWidget(self): ... method updateVisibleDescendentHeight (line 66) | def updateVisibleDescendentHeight(self, walk: bool = ...): ... method visibleChildren (line 67) | def visibleChildren(self): ... method visibleDescendentHeight (line 68) | def visibleDescendentHeight(self): ... class TreeWidget (line 70) | class TreeWidget(PyQt5.QtWidgets.QAbstractScrollArea): method __init__ (line 76) | def __init__(self, *args) -> None: ... method _TreeWidget__addItemAndChildren (line 77) | def _TreeWidget__addItemAndChildren(self, item, itemSet, checkFn): ... method _TreeWidget__columnResize (line 78) | def _TreeWidget__columnResize(self, *args): ... method _TreeWidget__createPixmaps (line 79) | def _TreeWidget__createPixmaps(self): ... method _TreeWidget__drawItem (line 80) | def _TreeWidget__drawItem(self, item, rect, palette, p: Incomplete | N... method _TreeWidget__drawItemChildren (line 81) | def _TreeWidget__drawItemChildren(self, p, rect, item, palette, x, y):... method _TreeWidget__ensureVisible (line 82) | def _TreeWidget__ensureVisible(self, rect): ... method _TreeWidget__findNextItem (line 83) | def _TreeWidget__findNextItem(self, item): ... method _TreeWidget__findPrevItem (line 84) | def _TreeWidget__findPrevItem(self, item): ... method _TreeWidget__getPainter (line 85) | def _TreeWidget__getPainter(self): ... method _TreeWidget__idle_callback (line 86) | def _TreeWidget__idle_callback(self, *args, **kwargs): ... method _TreeWidget__intersectingItems (line 87) | def _TreeWidget__intersectingItems(self, rect, item, x, y, intersectLi... method _TreeWidget__itemAtY (line 88) | def _TreeWidget__itemAtY(self, y): ... method _TreeWidget__itemRect (line 89) | def _TreeWidget__itemRect(self, item): ... method _TreeWidget__positionHeader (line 90) | def _TreeWidget__positionHeader(self): ... method _TreeWidget__verticalActionTriggered (line 91) | def _TreeWidget__verticalActionTriggered(self, action): ... method _buildRootItem (line 92) | def _buildRootItem(self, parent, name): ... method clear (line 93) | def clear(self): ... method columnAtPosition (line 94) | def columnAtPosition(self, x): ... method columnStartPosition (line 95) | def columnStartPosition(self, col): ... method columnWidths (line 96) | def columnWidths(self): ... method contentsPos (line 97) | def contentsPos(self): ... method contentsSize (line 98) | def contentsSize(self): ... method contentsToViewport (line 99) | def contentsToViewport(self, pos): ... method drawItems (line 100) | def drawItems(self, p, rect): ... method event (line 101) | def event(self, event): ... method getCellRect (line 102) | def getCellRect(self, item, column): ... method getFullWidth (line 103) | def getFullWidth(self): ... method getMultiSelect (line 104) | def getMultiSelect(self): ... method header (line 105) | def header(self): ... method indentation (line 106) | def indentation(self): ... method intersectingItems (line 107) | def intersectingItems(self, rect): ... method itemAtPosition (line 108) | def itemAtPosition(self, pos): ... method itemCollapsed (line 109) | def itemCollapsed(self, item): ... method itemExpanded (line 110) | def itemExpanded(self, item): ... method itemUpdated (line 111) | def itemUpdated(self, item, updateBelow: bool = ..., emitSignals: bool... method keyPressEvent (line 112) | def keyPressEvent(self, event): ... method keyReleaseEvent (line 113) | def keyReleaseEvent(self, event): ... method mouseDoubleClickEvent (line 114) | def mouseDoubleClickEvent(self, event): ... method mouseMoveEvent (line 115) | def mouseMoveEvent(self, event): ... method mousePressEvent (line 116) | def mousePressEvent(self, event): ... method mouseReleaseEvent (line 117) | def mouseReleaseEvent(self, event): ... method paintEvent (line 118) | def paintEvent(self, event): ... method popupEdited (line 119) | def popupEdited(self, item, column, value): ... method popupEditor (line 120) | def popupEditor(self, item, column, value: Incomplete | None = ...): ... method resizeEvent (line 121) | def resizeEvent(self, event): ... method rootItem (line 122) | def rootItem(self): ... method scrollContentsBy (line 123) | def scrollContentsBy(self, dx, dy): ... method scrollToItem (line 124) | def scrollToItem(self, item): ... method selectAll (line 125) | def selectAll(self): ... method selection (line 126) | def selection(self): ... method setContentsPos (line 127) | def setContentsPos(self, pos): ... method setCurrentItem (line 128) | def setCurrentItem(self, item): ... method setHeaderLabels (line 129) | def setHeaderLabels(self, labels): ... method setHeaderVisible (line 130) | def setHeaderVisible(self, state): ... method setIndentation (line 131) | def setIndentation(self, indentation): ... method setMultiSelect (line 132) | def setMultiSelect(self, state): ... method setSelection (line 133) | def setSelection(self, newSelection): ... method updateContentsSize (line 134) | def updateContentsSize(self, item: Incomplete | None = ...): ... method updateContentsSizeOnIdle (line 135) | def updateContentsSizeOnIdle(self): ... method updateScrollBars (line 136) | def updateScrollBars(self, scrollContents: bool = ...): ... method updateVisibleDescendentHeightOnIdle (line 137) | def updateVisibleDescendentHeightOnIdle(self, item): ... method viewportToContents (line 138) | def viewportToContents(self, pos): ... method wheelEvent (line 139) | def wheelEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/TriangleButton.pyi class TriangleButton (line 9) | class TriangleButton(PyQt5.QtWidgets.QPushButton): method __init__ (line 10) | def __init__(self, parent) -> None: ... method _TriangleButton__doTimer (line 11) | def _TriangleButton__doTimer(self): ... method mousePressEvent (line 12) | def mousePressEvent(self, event): ... method paintEvent (line 13) | def paintEvent(self, event): ... method setColors (line 14) | def setColors(self, closedColor, openColor, repaint: bool = ...): ... method setExpanded (line 15) | def setExpanded(self, value): ... FILE: katana/stubs/UI4/Widgets/UpdateModeWidgets.pyi class UpdateModePopdownButton2D (line 17) | class UpdateModePopdownButton2D(_UpdateModePopdownButton): method _getGlobalUpdateMode (line 22) | def _getGlobalUpdateMode(self): ... method _registerEventHandlers (line 23) | def _registerEventHandlers(self): ... method _setGlobalUpdateMode (line 24) | def _setGlobalUpdateMode(self, updateMode): ... class UpdateModePopdownButton3D (line 26) | class UpdateModePopdownButton3D(_UpdateModePopdownButton): method _getGlobalUpdateMode (line 32) | def _getGlobalUpdateMode(self): ... method _registerEventHandlers (line 33) | def _registerEventHandlers(self): ... method _setGlobalUpdateMode (line 34) | def _setGlobalUpdateMode(self, updateMode): ... class UpdateModeWidget2D (line 36) | class UpdateModeWidget2D(_UpdateModeWidget): method _UpdateModeWidget2D__on_parameter_setValue (line 38) | def _UpdateModeWidget2D__on_parameter_setValue(self, args): ... method _createPopdownButton (line 39) | def _createPopdownButton(self): ... method _isUpdateModeManual (line 41) | def _isUpdateModeManual(updateMode): ... method _registerEventHandlers (line 42) | def _registerEventHandlers(self): ... method _triggerManualUpdate (line 43) | def _triggerManualUpdate(self): ... class UpdateModeWidget3D (line 45) | class UpdateModeWidget3D(_UpdateModeWidget): method _createPopdownButton (line 47) | def _createPopdownButton(self): ... method _isGlobalDirty (line 48) | def _isGlobalDirty(self): ... method _isUpdateModeManual (line 50) | def _isUpdateModeManual(updateMode): ... method _registerEventHandlers (line 51) | def _registerEventHandlers(self): ... method _triggerManualUpdate (line 52) | def _triggerManualUpdate(self): ... class _UpdateModePopdownButton (line 54) | class _UpdateModePopdownButton(ToolbarButton): method __init__ (line 62) | def __init__(self, parent, registerEventHandler: bool = ...) -> None: ... method _UpdateModePopdownButton__getUpdateModePixmap (line 64) | def _UpdateModePopdownButton__getUpdateModePixmap(cls, updateMode): ... method _UpdateModePopdownButton__on_menu_aboutToShow (line 65) | def _UpdateModePopdownButton__on_menu_aboutToShow(self): ... method _UpdateModePopdownButton__on_menu_triggered (line 66) | def _UpdateModePopdownButton__on_menu_triggered(self, action): ... method _getGlobalUpdateMode (line 67) | def _getGlobalUpdateMode(self): ... method _on_updateModeChanged (line 68) | def _on_updateModeChanged(self, *args, **kwargs): ... method _registerEventHandlers (line 69) | def _registerEventHandlers(self): ... method _setGlobalUpdateMode (line 70) | def _setGlobalUpdateMode(self, updateMode): ... method getUpdateMode (line 71) | def getUpdateMode(self): ... method setUpdateMode (line 72) | def setUpdateMode(self, updateMode): ... class _UpdateModeWidget (line 74) | class _UpdateModeWidget(PyQt5.QtWidgets.QWidget): method __init__ (line 82) | def __init__(self, parent, text: Incomplete | None = ...) -> None: ... method _createPopdownButton (line 83) | def _createPopdownButton(self): ... method _isGlobalDirty (line 84) | def _isGlobalDirty(self): ... method _on_dirtyStateChanged (line 85) | def _on_dirtyStateChanged(self, *args, **kwargs): ... method _on_updateButtonClicked (line 86) | def _on_updateButtonClicked(self, *args, **kwargs): ... method _on_updateModeChanged (line 87) | def _on_updateModeChanged(self, *args, **kwargs): ... method _registerEventHandlers (line 88) | def _registerEventHandlers(self): ... method _triggerManualUpdate (line 89) | def _triggerManualUpdate(self): ... method isDirty (line 90) | def isDirty(self): ... method setButtonType (line 91) | def setButtonType(self, buttonType: Incomplete | None = ...): ... method setDirty (line 92) | def setDirty(self, dirty): ... method updateState (line 93) | def updateState(self): ... FILE: katana/stubs/UI4/Widgets/VBoxLayoutResizer.pyi class VBoxLayoutResizer (line 9) | class VBoxLayoutResizer(BaseLayoutResizer): method __init__ (line 10) | def __init__(self, targetWidget: PyQt5.QtWidgets.QWidget, initialTarge... method mouseMoveEvent (line 11) | def mouseMoveEvent(self, event: PyQt5.QtGui.QMouseEvent): ... FILE: katana/stubs/UI4/Widgets/VPStateButton.pyi class VPStateButton (line 8) | class VPStateButton(ToolbarButton): method __init__ (line 9) | def __init__(self, parent) -> None: ... method _VPStateButton__clicked (line 10) | def _VPStateButton__clicked(self): ... method _VPStateButton__setDirty (line 11) | def _VPStateButton__setDirty(self, dirty): ... method _VPStateButton__updateCallback (line 12) | def _VPStateButton__updateCallback(self, args): ... FILE: katana/stubs/UI4/Widgets/VariablesPopup.pyi class VariablesPopup (line 13) | class VariablesPopup(PyQt5.QtWidgets.QFrame): method __init__ (line 16) | def __init__(self) -> None: ... method hideEvent (line 17) | def hideEvent(self, e): ... method popup (line 18) | def popup(self, globalPos): ... method showEvent (line 19) | def showEvent(self, e): ... class VariablesPopupButton (line 21) | class VariablesPopupButton(PyQt5.QtWidgets.QFrame): method __init__ (line 23) | def __init__(self, parent) -> None: ... method _VariablesPopupButton__clicked (line 24) | def _VariablesPopupButton__clicked(self): ... method _VariablesPopupButton__on_updateTextTimer_timeout (line 25) | def _VariablesPopupButton__on_updateTextTimer_timeout(self): ... method _VariablesPopupButton__popupHidden (line 26) | def _VariablesPopupButton__popupHidden(self): ... method _VariablesPopupButton__popupShow (line 27) | def _VariablesPopupButton__popupShow(self): ... method _VariablesPopupButton__possibleChange (line 28) | def _VariablesPopupButton__possibleChange(self, args): ... method _VariablesPopupButton__updateText (line 29) | def _VariablesPopupButton__updateText(self): ... method mousePressEvent (line 30) | def mousePressEvent(self, ev): ... FILE: katana/stubs/UI4/Widgets/VerticalDivider.pyi class VerticalDivider (line 8) | class VerticalDivider(PyQt5.QtWidgets.QFrame): method __init__ (line 9) | def __init__(self, *args) -> None: ... method paintEvent (line 10) | def paintEvent(self, event): ... FILE: katana/stubs/UI4/Widgets/ViewIndicatorLabel.pyi class ViewIndicatorLabel (line 7) | class ViewIndicatorLabel(IndicatorLabelFrame): method __init__ (line 8) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method setDisplay (line 9) | def setDisplay(self, editable: bool, message: str = ..., nodeName: str... FILE: katana/stubs/UI4/Widgets/ViewerWorkingSetButton.pyi class ViewerWorkingSetButton (line 13) | class ViewerWorkingSetButton(ToolbarButton): method __init__ (line 14) | def __init__(self, parent: PyQt5.QtWidgets.QWidget, viewerManager: Inc... method _ViewerWorkingSetButton__on_toggled (line 15) | def _ViewerWorkingSetButton__on_toggled(self): ... method _ViewerWorkingSetButton__on_viewer_visibilityFollowsWorkingSetChanged (line 16) | def _ViewerWorkingSetButton__on_viewer_visibilityFollowsWorkingSetChan... FILE: katana/stubs/UI4/Widgets/ViewportPane.pyi class ViewportPane (line 8) | class ViewportPane(PyQt5.QtWidgets.QFrame): method __init__ (line 10) | def __init__(self, parent: Incomplete | None = ...) -> None: ... FILE: katana/stubs/UI4/Widgets/ViewportWidget.pyi class ViewportWidget (line 20) | class ViewportWidget(PyQt5.QtWidgets.QOpenGLWidget): method __init__ (line 23) | def __init__(self, parent: PyQt5.QtWidgets.QWidget | None, viewport: V... method _ViewportWidget__getLocationFromDragOrDropEvent (line 24) | def _ViewportWidget__getLocationFromDragOrDropEvent(self, event: PyQt5... method _ViewportWidget__startDrag (line 25) | def _ViewportWidget__startDrag(self, event): ... method addCamera (line 26) | def addCamera(self, cameraType: str, name: str, settings: Incomplete |... method addLayer (line 27) | def addLayer(self, layerType: str, name: str) -> ViewportLayer: ... method dragEnterEvent (line 28) | def dragEnterEvent(self, event): ... method dropEvent (line 29) | def dropEvent(self, event): ... method event (line 30) | def event(self, event): ... method findBaseViewerTab (line 31) | def findBaseViewerTab(self) -> UI4.Tabs.BaseViewerTab | None: ... method getActiveCamera (line 32) | def getActiveCamera(self) -> ViewportCamera | None: ... method getCameraByIndex (line 33) | def getCameraByIndex(self, index: int) -> ViewportCamera | None: ... method getCameraByName (line 34) | def getCameraByName(self, name: str) -> ViewportCamera | None: ... method getCameraName (line 35) | def getCameraName(self, index: int) -> str | None: ... method getLayer (line 36) | def getLayer(self, name: str) -> ViewportLayer | None: ... method getLayerByIndex (line 37) | def getLayerByIndex(self, index: int) -> ViewportLayer | None: ... method getLayerName (line 38) | def getLayerName(self, index: int) -> str | None: ... method getName (line 39) | def getName(self): ... method getNumberOfCameras (line 40) | def getNumberOfCameras(self) -> int: ... method getNumberOfLayers (line 41) | def getNumberOfLayers(self) -> int: ... method getOption (line 42) | def getOption(self, optionId: int) -> PyFnAttribute.Attribute | None: ... method getOptionByName (line 43) | def getOptionByName(self, name: str) -> PyFnAttribute.Attribute | None... method getViewerDelegate (line 44) | def getViewerDelegate(self) -> ViewerAPI.ViewerDelegate: ... method getViewport (line 45) | def getViewport(self) -> ViewerAPI.Viewport: ... method initializeGL (line 46) | def initializeGL(self): ... method insertLayer (line 47) | def insertLayer(self, layerType: str, name: str, index: int) -> Viewpo... method isDirty (line 48) | def isDirty(self): ... method leaveEvent (line 49) | def leaveEvent(self, event): ... method mouseMoveEvent (line 50) | def mouseMoveEvent(self, event): ... method paintEngine (line 51) | def paintEngine(self): ... method paintGL (line 52) | def paintGL(self): ... method removeCamera (line 53) | def removeCamera(self, name: str): ... method removeCameraByIndex (line 54) | def removeCameraByIndex(self, index: int): ... method removeLayer (line 55) | def removeLayer(self, name: str): ... method removeLayerByIndex (line 56) | def removeLayerByIndex(self, index: int): ... method resizeGL (line 57) | def resizeGL(self, width, height): ... method setActiveCamera (line 58) | def setActiveCamera(self, camera: ViewportCamera): ... method setDirty (line 59) | def setDirty(self, dirty: bool): ... method setOption (line 60) | def setOption(self, optionId: int, attr: PyFnAttribute.Attribute): ... method setOptionByName (line 61) | def setOptionByName(self, name: str, attr: PyFnAttribute.Attribute): ... method setStartDragCallback (line 62) | def setStartDragCallback(self, callback: typing.Callable): ... method setUnhandledEventCallback (line 63) | def setUnhandledEventCallback(self, callback: typing.Callable): ... method setViewport (line 64) | def setViewport(self, viewport: ViewerAPI.Viewport | None): ... method updateBuiltInCamerasFromProjectSettings (line 65) | def updateBuiltInCamerasFromProjectSettings(self): ... method updateCameraFromProjectSettings (line 66) | def updateCameraFromProjectSettings(self, cameraName: str, isOrthograp... method writeToFile (line 67) | def writeToFile(self, filepath: str): ... FILE: katana/stubs/UI4/Widgets/WheelEventIgnoringTabBar.pyi class WheelEventIgnoringTabBar (line 8) | class WheelEventIgnoringTabBar(PyQt5.QtWidgets.QTabBar): method wheelEvent (line 9) | def wheelEvent(self, wheelEvent: PyQt5.QtGui.QWheelEvent): ... FILE: katana/stubs/UI4/Widgets/WidgetHilightBox.pyi class OpaqueWidget (line 11) | class OpaqueWidget(PyQt5.QtWidgets.QWidget): method paintEvent (line 12) | def paintEvent(self, event): ... class WidgetHilightBox (line 14) | class WidgetHilightBox(PyQt5.QtCore.QObject): method __init__ (line 15) | def __init__(self, target, width: int = ..., color: PyQt5.QtGui.QColor... method hide (line 16) | def hide(self): ... method setColor (line 17) | def setColor(self, color): ... method show (line 18) | def show(self): ... method snapToSize (line 19) | def snapToSize(self): ... method __del__ (line 20) | def __del__(self) -> None: ... FILE: katana/stubs/UI4/Widgets/WorkingSetWidgets.pyi class WorkingSetClearStateAction (line 23) | class WorkingSetClearStateAction(WorkingSetResetStateAction): method __init__ (line 24) | def __init__(self, text, workingSetName, locationPaths: Incomplete | N... class WorkingSetContextMenu (line 26) | class WorkingSetContextMenu(PyQt5.QtWidgets.QMenu): method __init__ (line 32) | def __init__(self, workingSetName: str, locationPathOrPaths: str | lis... method GetModifierKeyStringForState (line 34) | def GetModifierKeyStringForState(cls, state: State) -> str | None: ... method GetStateDisplayName (line 36) | def GetStateDisplayName(cls, text: str) -> str: ... method GetStateForEventModifiers (line 38) | def GetStateForEventModifiers(cls, eventModifiers): ... method GetStateForKeyboardModifiers (line 40) | def GetStateForKeyboardModifiers(cls, keyboardModifiers: PyQt5.QtCore.... class WorkingSetExpandBranchAction (line 42) | class WorkingSetExpandBranchAction(PyQt5.QtWidgets.QAction): method __init__ (line 43) | def __init__(self, text: str, workingSetName: str, locationPaths: Inco... method _WorkingSetExpandBranchAction__on_triggered (line 44) | def _WorkingSetExpandBranchAction__on_triggered(self): ... class WorkingSetIconManager (line 46) | class WorkingSetIconManager: method GetStateIcon (line 71) | def GetStateIcon(cls, stateName: str, resolution: Incomplete | None = ... method _WorkingSetIconManager__CreateCompositeStateIcon (line 73) | def _WorkingSetIconManager__CreateCompositeStateIcon(cls, stateIconCom... class WorkingSetIncludeProxyChildren (line 75) | class WorkingSetIncludeProxyChildren(PyQt5.QtWidgets.QDialog): method __init__ (line 76) | def __init__(self, locationPaths: list, workingSetName: str) -> None: ... method _WorkingSetIncludeProxyChildren__cleanup (line 77) | def _WorkingSetIncludeProxyChildren__cleanup(self): ... method _WorkingSetIncludeProxyChildren__idle (line 78) | def _WorkingSetIncludeProxyChildren__idle(self): ... method _WorkingSetIncludeProxyChildren__includeLocationsToWorkingSet (line 79) | def _WorkingSetIncludeProxyChildren__includeLocationsToWorkingSet(self... class WorkingSetResetStateAction (line 81) | class WorkingSetResetStateAction(PyQt5.QtWidgets.QAction): method __init__ (line 82) | def __init__(self, text: str, workingSetName: str, locationPaths: Inco... method _WorkingSetResetStateAction__on_triggered (line 83) | def _WorkingSetResetStateAction__on_triggered(self): ... class WorkingSetStateAction (line 85) | class WorkingSetStateAction(PyQt5.QtWidgets.QAction): method __init__ (line 86) | def __init__(self, state: State, locationPaths: list[str], workingSetN... method _WorkingSetStateAction__getActionObjectName (line 88) | def _WorkingSetStateAction__getActionObjectName(cls, state: State) -> ... method _WorkingSetStateAction__on_triggered (line 89) | def _WorkingSetStateAction__on_triggered(self): ... class WorkingSetStateCheckableAction (line 91) | class WorkingSetStateCheckableAction(WorkingSetStateAction): method __init__ (line 94) | def __init__(self, state: State, locationPaths: list[str], workingSetN... method _WorkingSetStateCheckableAction__getActionTextAndIcon (line 96) | def _WorkingSetStateCheckableAction__getActionTextAndIcon(cls, state: ... method isPartiallyChecked (line 97) | def isPartiallyChecked(self) -> bool: ... method isPartiallyEnabled (line 98) | def isPartiallyEnabled(self): ... method setPartiallyChecked (line 99) | def setPartiallyChecked(self, isPartiallyChecked: bool): ... method setPartiallyEnabled (line 100) | def setPartiallyEnabled(self, isPartiallyEnabled): ... FILE: katana/stubs/UI4/Widgets/__init__.pyi function Initialize (line 144) | def Initialize(): ... FILE: katana/stubs/Utils/Decorators.pyi function deprecated (line 5) | def deprecated(*args): ... FILE: katana/stubs/Utils/EventModule.pyi function RegisterDebugEventHandler (line 8) | def RegisterDebugEventHandler(): ... function SynchronousEventProcessingScope (line 9) | def SynchronousEventProcessingScope(): ... FILE: katana/stubs/Utils/EventModuleCommon.pyi function CallRegistrationCallbacks (line 18) | def CallRegistrationCallbacks(instance: object): ... function FilterEvent (line 19) | def FilterEvent(eventType, eventID, **kwargs): ... function GetAllRegisteredEventTypes (line 20) | def GetAllRegisteredEventTypes(): ... function GetNumRegisteredHandlersForEventType (line 21) | def GetNumRegisteredHandlersForEventType(eventType): ... function IsCollapsedHandlerRegisteredAfterEventLoop (line 22) | def IsCollapsedHandlerRegisteredAfterEventLoop(handler, eventType, event... function IsCollapsedRegistered (line 23) | def IsCollapsedRegistered(handler, eventType: Incomplete | None = ..., e... function IsEventFilterRegistered (line 24) | def IsEventFilterRegistered(eventFilter: typing.Callable) -> bool: ... function IsHandlerRegistered (line 25) | def IsHandlerRegistered(handler, eventType: Incomplete | None = ..., eve... function IsHandlerRegisteredAfterEventLoop (line 26) | def IsHandlerRegisteredAfterEventLoop(handler, eventType, eventID): ... function IsHandlerRegisteredForEventType (line 27) | def IsHandlerRegisteredForEventType(eventType, checkEventID: bool = ...)... function ProcessDeadHandlers (line 28) | def ProcessDeadHandlers(): ... function RegisterCollapsedHandler (line 29) | def RegisterCollapsedHandler(handler, eventType: Incomplete | None = ...... function RegisterEventFilter (line 30) | def RegisterEventFilter(eventFilter): ... function RegisterEventHandler (line 31) | def RegisterEventHandler(handler, eventType: Incomplete | None = ..., ev... function SetRegistrationCallbackForType (line 32) | def SetRegistrationCallbackForType(cls: type, callback: typing.Callable)... function UnregisterCollapsedHandler (line 33) | def UnregisterCollapsedHandler(handler, eventType: Incomplete | None = .... function UnregisterEventFilter (line 34) | def UnregisterEventFilter(eventFilter: typing.Callable): ... function UnregisterEventHandler (line 35) | def UnregisterEventHandler(handler, eventType: Incomplete | None = ..., ... function UnregisterObjectEventHandlers (line 36) | def UnregisterObjectEventHandlers(objectID: int): ... function _registerCollapsedHandler (line 37) | def _registerCollapsedHandler(handler, eventType, eventID): ... function _registerEventHandler (line 38) | def _registerEventHandler(handler, eventType, eventID): ... function _unregisterCollapsedHandler (line 39) | def _unregisterCollapsedHandler(handler, eventType, eventID): ... function _unregisterCollapsedHandlerReal (line 40) | def _unregisterCollapsedHandlerReal(handler, eventType, eventID): ... function _unregisterEventHandler (line 41) | def _unregisterEventHandler(handler, eventType, eventID): ... function _unregisterEventHandlerReal (line 42) | def _unregisterEventHandlerReal(handler, eventType, eventID): ... FILE: katana/stubs/Utils/EventModuleDefault.pyi function Initialize (line 11) | def Initialize(): ... function ProcessAllEvents (line 12) | def ProcessAllEvents(): ... function ProcessEvents (line 13) | def ProcessEvents() -> bool: ... function PumpIdleQueue (line 14) | def PumpIdleQueue(): ... function QueueEvent (line 15) | def QueueEvent(eventType: str, eventID: typing.Hashable, priority: int =... function QueuePriorityEvent (line 16) | def QueuePriorityEvent(eventType: str, eventID: typing.Hashable, **kwarg... function _handleEvents (line 17) | def _handleEvents(events: list[tuple]): ... function _invokeCollapsedDict (line 18) | def _invokeCollapsedDict(mask: tuple[str, object], args: list[tuple[str,... function _invokeHandlerDict (line 19) | def _invokeHandlerDict(mask: tuple[str, object], eventType: str, eventID... FILE: katana/stubs/Utils/EventModuleUI.pyi class KatanaEventReceiver (line 12) | class KatanaEventReceiver(PyQt5.QtCore.QObject): method __init__ (line 13) | def __init__(self) -> None: ... method _KatanaEventReceiver__invokeCollapsedDict (line 14) | def _KatanaEventReceiver__invokeCollapsedDict(self, handlersDict, args... method _KatanaEventReceiver__invokeHandlerDict (line 15) | def _KatanaEventReceiver__invokeHandlerDict(self, handlersDict, eventT... method _KatanaEventReceiver__on_collapsedEventsTimer_timeout (line 16) | def _KatanaEventReceiver__on_collapsedEventsTimer_timeout(self): ... method customEvent (line 17) | def customEvent(self, event: PyQt5.QtCore.QEvent): ... method initialize (line 18) | def initialize(self): ... method invokeCollapsedHandlers (line 19) | def invokeCollapsedHandlers(self): ... function Initialize (line 21) | def Initialize(): ... function ProcessAllEvents (line 22) | def ProcessAllEvents(): ... function ProcessEvents (line 23) | def ProcessEvents() -> bool: ... function PumpIdleQueue (line 24) | def PumpIdleQueue(): ... function QueueEvent (line 25) | def QueueEvent(eventType: str, eventID: typing.Hashable, priority: int =... function QueuePriorityEvent (line 26) | def QueuePriorityEvent(eventType: str, eventID: typing.Hashable, **kwarg... FILE: katana/stubs/Utils/Exceptions.pyi function GetExceptionMessage (line 5) | def GetExceptionMessage(exception: Exception | None) -> str: ... FILE: katana/stubs/Utils/MimeData.pyi function GetCollections (line 16) | def GetCollections(mimeDataOrDropEvent: PyQt5.QtCore.QMimeData | PyQt5.Q... function GetLocationPaths (line 17) | def GetLocationPaths(mimeDataOrDropEvent: PyQt5.QtCore.QMimeData | PyQt5... function GetNodes (line 18) | def GetNodes(mimeDataOrDropEvent: PyQt5.QtCore.QMimeData | PyQt5.QtGui.Q... function SetCollections (line 19) | def SetCollections(mimeData: PyQt5.QtCore.QMimeData, collectionMaps: lis... function SetLocationPaths (line 20) | def SetLocationPaths(mimeData: PyQt5.QtCore.QMimeData, locationPaths): ... function SetNodes (line 21) | def SetNodes(mimeDataOrDragObject: PyQt5.QtCore.QMimeData | PyQt5.QtGui.... FILE: katana/stubs/Utils/OpenGLGPUTiming.pyi function begin_timing (line 5) | def begin_timing(context): ... function end_timing (line 6) | def end_timing(context): ... function init_gpu_timing (line 7) | def init_gpu_timing(name): ... function render_timing_stats (line 8) | def render_timing_stats(layerStack): ... FILE: katana/stubs/Utils/OpenGLTraceMarker.pyi class Marker (line 5) | class Marker: method __init__ (line 6) | def __init__(self, markerText) -> None: ... method __del__ (line 7) | def __del__(self) -> None: ... function begin (line 9) | def begin(additionalText: str = ...): ... function end (line 10) | def end(): ... FILE: katana/stubs/Utils/Plugins.pyi class NoExceptionProxy (line 8) | class NoExceptionProxy: method __init__ (line 9) | def __init__(self, data) -> None: ... method __call__ (line 10) | def __call__(self, *args, **kwargs): ... method __getattr__ (line 11) | def __getattr__(self, name): ... method __getitem__ (line 12) | def __getitem__(self, value): ... class Plugin (line 14) | class Plugin: method __init__ (line 23) | def __init__(self, path, module, plugtype, apinum, name, data) -> None... function DefaultPaths (line 25) | def DefaultPaths(subdir: str = ...) -> list[str]: ... function ExpandPaths (line 26) | def ExpandPaths(path: str) -> list[str]: ... function Load (line 27) | def Load(plugtype: str, apinum: str | None, paths: list[str], reloadCach... function LoadModule (line 28) | def LoadModule(path: str, reloadCached: bool = ...) -> list[Plugin]: ... function Search (line 29) | def Search(plugins: list[Plugin], name: str) -> Plugin | None: ... FILE: katana/stubs/Utils/UndoStack.pyi class UndoEntry (line 6) | class UndoEntry: method __init__ (line 7) | def __init__(self, name) -> None: ... method getName (line 8) | def getName(self): ... method isValid (line 9) | def isValid(self) -> bool: ... method redo (line 10) | def redo(self): ... method setName (line 11) | def setName(self, name): ... method undo (line 12) | def undo(self): ... class _UndoGroupEntry (line 14) | class _UndoGroupEntry(UndoEntry): method __init__ (line 15) | def __init__(self, name: str = ...) -> None: ... method _UndoGroupEntry__nonzero (line 16) | def _UndoGroupEntry__nonzero(self): ... method addEntry (line 17) | def addEntry(self, entry: UndoEntry): ... method clear (line 18) | def clear(self): ... method getName (line 19) | def getName(self) -> str: ... method isValid (line 20) | def isValid(self): ... method redo (line 21) | def redo(self): ... method undo (line 22) | def undo(self): ... method __len__ (line 23) | def __len__(self) -> int: ... function AddEntry (line 25) | def AddEntry(entry: UndoEntry): ... function AddEntrySync (line 26) | def AddEntrySync(entry): ... function Clear (line 27) | def Clear(): ... function CloseGroup (line 28) | def CloseGroup(discard: bool = ...): ... function CloseGroupSync (line 29) | def CloseGroupSync(discard: bool = ...): ... function DisableCapture (line 30) | def DisableCapture(): ... function DisableCaptureSync (line 31) | def DisableCaptureSync(): ... function EnableCapture (line 32) | def EnableCapture(): ... function EnableCaptureSync (line 33) | def EnableCaptureSync(): ... function GetLastUndoName (line 34) | def GetLastUndoName() -> str: ... function GetNextRedoName (line 35) | def GetNextRedoName() -> str: ... function GetRedoNames (line 36) | def GetRedoNames() -> list[str]: ... function GetRedoSize (line 37) | def GetRedoSize() -> int: ... function GetUndoNames (line 38) | def GetUndoNames() -> list[str]: ... function GetUndoSize (line 39) | def GetUndoSize() -> int: ... function IsInsideGroup (line 40) | def IsInsideGroup() -> bool: ... function IsInsideGroupSync (line 41) | def IsInsideGroupSync(): ... function IsUndoEnabled (line 42) | def IsUndoEnabled() -> bool: ... function IsUndoEnabledSync (line 43) | def IsUndoEnabledSync(): ... function IsUndoInProgress (line 44) | def IsUndoInProgress(): ... function NoCaptureContext (line 45) | def NoCaptureContext(): ... function OpenGroup (line 46) | def OpenGroup(groupName: str = ...): ... function OpenGroupSync (line 47) | def OpenGroupSync(groupName): ... function Redo (line 48) | def Redo(): ... function RegisterCallback (line 49) | def RegisterCallback(callback): ... function RenameTopGroupSync (line 50) | def RenameTopGroupSync(name): ... function Undo (line 51) | def Undo(): ... function UndoInitAsync (line 52) | def UndoInitAsync(): ... FILE: katana/stubs/Utils/WeakMethod.pyi class WeakMethodBound (line 5) | class WeakMethodBound: method __init__ (line 6) | def __init__(self, f) -> None: ... method __bool__ (line 7) | def __bool__(self) -> bool: ... method __call__ (line 8) | def __call__(self, *args, **kwargs): ... method __eq__ (line 9) | def __eq__(self, other) -> bool: ... method __hash__ (line 10) | def __hash__(self) -> int: ... class WeakMethodFree (line 12) | class WeakMethodFree: method __init__ (line 13) | def __init__(self, f) -> None: ... method __bool__ (line 14) | def __bool__(self) -> bool: ... method __call__ (line 15) | def __call__(self, *args, **kwargs): ... method __eq__ (line 16) | def __eq__(self, other) -> bool: ... method __hash__ (line 17) | def __hash__(self) -> int: ... class WeakMethodIsDeadError (line 19) | class WeakMethodIsDeadError(TypeError): ... function WeakMethod (line 21) | def WeakMethod(f): ... FILE: katana/stubs/ViewerAPI/ImplicitOpsManager.pyi class ImplicitOpsManager (line 10) | class ImplicitOpsManager: method __init__ (line 11) | def __init__(self) -> None: ... method _ImplicitOpsManager__createOpChainFromOpInfo (line 12) | def _ImplicitOpsManager__createOpChainFromOpInfo(self, txn: PyFnGeolib... method _ImplicitOpsManager__initAfterImplicitOps (line 13) | def _ImplicitOpsManager__initAfterImplicitOps(self, txn: PyFnGeolib.Ge... method _ImplicitOpsManager__initBeforeImplicitOps (line 14) | def _ImplicitOpsManager__initBeforeImplicitOps(self, txn: PyFnGeolib.G... method _ImplicitOpsManager__initImplicitOps (line 15) | def _ImplicitOpsManager__initImplicitOps(self, txn: PyFnGeolib.GeolibR... method _ImplicitOpsManager__initOps (line 16) | def _ImplicitOpsManager__initOps(self): ... method applyAfterImplicitOps (line 17) | def applyAfterImplicitOps(self, txn, op): ... method applyBeforeImplicitOps (line 18) | def applyBeforeImplicitOps(self, txn, op): ... method applyImplicitOps (line 19) | def applyImplicitOps(self, txn, op): ... FILE: katana/stubs/ViewerAPI/ManipulatorBridge.pyi class ManipulatorBridge (line 14) | class ManipulatorBridge: method __init__ (line 15) | def __init__(self) -> None: ... method _ManipulatorBridge__attrToDict (line 16) | def _ManipulatorBridge__attrToDict(self, attrName, attr): ... method _ManipulatorBridge__createManipulatorPolicy (line 17) | def _ManipulatorBridge__createManipulatorPolicy(self, locationPath, at... method _ManipulatorBridge__getAttributeEditorAttr (line 18) | def _ManipulatorBridge__getAttributeEditorAttr(self, locationPath: str... method _ManipulatorBridge__getRootProducer (line 19) | def _ManipulatorBridge__getRootProducer(self): ... method _ManipulatorBridge__on_LiveAttributePolicyManager_flush (line 20) | def _ManipulatorBridge__on_LiveAttributePolicyManager_flush(self, *arg... method _ManipulatorBridge__requestManipulationCommitId (line 21) | def _ManipulatorBridge__requestManipulationCommitId(self): ... method _ManipulatorBridge__setManipulationCommitId (line 22) | def _ManipulatorBridge__setManipulationCommitId(self, commitId): ... method cleanupLiveAttributes (line 23) | def cleanupLiveAttributes(self, locationPath: str): ... method closeManipulationGroup (line 24) | def closeManipulationGroup(self, locationPath): ... method getManipulationCommitId (line 25) | def getManipulationCommitId(self): ... method isNodeEditable (line 27) | def isNodeEditable(nodeName: str) -> bool: ... method openManipulationGroup (line 28) | def openManipulationGroup(self, locationPath): ... method setValue (line 29) | def setValue(self, locationPath, attrName, attrValue, isFinal): ... method updateOp (line 30) | def updateOp(self, opId: int): ... method __del__ (line 31) | def __del__(self) -> None: ... FILE: katana/stubs/WorkQueue/WorkQueue.pyi class WorkQueue (line 8) | class WorkQueue: class QueueAbort (line 9) | class QueueAbort(Exception): ... method __init__ (line 10) | def __init__(self, busyProcess: Incomplete | None = ...) -> None: ... method _WorkQueue__disable (line 11) | def _WorkQueue__disable(self, cleanExit): ... method _WorkQueue__enable (line 12) | def _WorkQueue__enable(self): ... method _WorkQueue__idleCB (line 13) | def _WorkQueue__idleCB(self, *args, **kwargs): ... method addWork (line 14) | def addWork(self, fcn, *args, **kwargs): ... method addWorkToFront (line 15) | def addWorkToFront(self, fcn, *args, **kwargs): ... method busy (line 16) | def busy(self): ... method checkAbort (line 17) | def checkAbort(self): ... method empty (line 18) | def empty(self): ... method finishWork (line 19) | def finishWork(self): ... method report (line 20) | def report(self): ... method workCompletedCleanExit (line 21) | def workCompletedCleanExit(self): ... method workCompletedEarlyExit (line 22) | def workCompletedEarlyExit(self): ... FILE: katana/stubs/_FnKatanaCoreUI/__init__.pyi class Foundry (line 7) | class Foundry(sip.simplewrapper): class UI (line 8) | class UI(sip.simplewrapper): class FileBrowser (line 9) | class FileBrowser(PyQt5.QtWidgets.QWidget): method AddFavoriteDir (line 11) | def AddFavoriteDir(cls, *args, **kwargs): ... method RemoveFavoriteDir (line 13) | def RemoveFavoriteDir(cls, *args, **kwargs): ... method ResetFavorites (line 15) | def ResetFavorites(cls, *args, **kwargs): ... method ResetNonPersistentFavorites (line 17) | def ResetNonPersistentFavorites(cls, *args, **kwargs): ... method SetDefaultFavoritePaths (line 19) | def SetDefaultFavoritePaths(cls, *args, **kwargs): ... method SetPreferencesPath (line 21) | def SetPreferencesPath(cls, *args, **kwargs): ... method actionEvent (line 23) | def actionEvent(cls, *args, **kwargs): ... method changeEvent (line 25) | def changeEvent(cls, *args, **kwargs): ... method childEvent (line 27) | def childEvent(cls, *args, **kwargs): ... method closeEvent (line 29) | def closeEvent(cls, *args, **kwargs): ... method connectNotify (line 31) | def connectNotify(cls, *args, **kwargs): ... method contextMenuEvent (line 33) | def contextMenuEvent(cls, *args, **kwargs): ... method create (line 35) | def create(cls, *args, **kwargs): ... method customEvent (line 37) | def customEvent(cls, *args, **kwargs): ... method destroy (line 39) | def destroy(cls, *args, **kwargs): ... method disconnectNotify (line 41) | def disconnectNotify(cls, *args, **kwargs): ... method dragEnterEvent (line 43) | def dragEnterEvent(cls, *args, **kwargs): ... method dragLeaveEvent (line 45) | def dragLeaveEvent(cls, *args, **kwargs): ... method dragMoveEvent (line 47) | def dragMoveEvent(cls, *args, **kwargs): ... method dropEvent (line 49) | def dropEvent(cls, *args, **kwargs): ... method enterEvent (line 51) | def enterEvent(cls, *args, **kwargs): ... method event (line 53) | def event(cls, *args, **kwargs): ... method focusInEvent (line 55) | def focusInEvent(cls, *args, **kwargs): ... method focusNextChild (line 57) | def focusNextChild(cls, *args, **kwargs): ... method focusNextPrevChild (line 59) | def focusNextPrevChild(cls, *args, **kwargs): ... method focusOutEvent (line 61) | def focusOutEvent(cls, *args, **kwargs): ... method focusPreviousChild (line 63) | def focusPreviousChild(cls, *args, **kwargs): ... method hideEvent (line 65) | def hideEvent(cls, *args, **kwargs): ... method initPainter (line 67) | def initPainter(cls, *args, **kwargs): ... method inputMethodEvent (line 69) | def inputMethodEvent(cls, *args, **kwargs): ... method isSignalConnected (line 71) | def isSignalConnected(cls, *args, **kwargs): ... method keyPressEvent (line 73) | def keyPressEvent(cls, *args, **kwargs): ... method keyReleaseEvent (line 75) | def keyReleaseEvent(cls, *args, **kwargs): ... method leaveEvent (line 77) | def leaveEvent(cls, *args, **kwargs): ... method metric (line 79) | def metric(cls, *args, **kwargs): ... method mouseDoubleClickEvent (line 81) | def mouseDoubleClickEvent(cls, *args, **kwargs): ... method mouseMoveEvent (line 83) | def mouseMoveEvent(cls, *args, **kwargs): ... method mousePressEvent (line 85) | def mousePressEvent(cls, *args, **kwargs): ... method mouseReleaseEvent (line 87) | def mouseReleaseEvent(cls, *args, **kwargs): ... method moveEvent (line 89) | def moveEvent(cls, *args, **kwargs): ... method nativeEvent (line 91) | def nativeEvent(cls, *args, **kwargs): ... method paintEvent (line 93) | def paintEvent(cls, *args, **kwargs): ... method receivers (line 95) | def receivers(cls, *args, **kwargs): ... method refreshFavorites (line 97) | def refreshFavorites(cls, *args, **kwargs): ... method resizeEvent (line 99) | def resizeEvent(cls, *args, **kwargs): ... method selectedFiles (line 101) | def selectedFiles(cls, *args, **kwargs): ... method sender (line 103) | def sender(cls, *args, **kwargs): ... method senderSignalIndex (line 105) | def senderSignalIndex(cls, *args, **kwargs): ... method setButtonsVisible (line 107) | def setButtonsVisible(cls, *args, **kwargs): ... method setDirectory (line 109) | def setDirectory(cls, *args, **kwargs): ... method setFileSequenceEvaluator (line 111) | def setFileSequenceEvaluator(cls, *args, **kwargs): ... method setFilename (line 113) | def setFilename(cls, *args, **kwargs): ... method setFilters (line 115) | def setFilters(cls, *args, **kwargs): ... method setMayNotExist (line 117) | def setMayNotExist(cls, *args, **kwargs): ... method setSequencesEnabled (line 119) | def setSequencesEnabled(cls, *args, **kwargs): ... method setShowChooserTypes (line 121) | def setShowChooserTypes(cls, *args, **kwargs): ... method sharedPainter (line 123) | def sharedPainter(cls, *args, **kwargs): ... method showEvent (line 125) | def showEvent(cls, *args, **kwargs): ... method tabletEvent (line 127) | def tabletEvent(cls, *args, **kwargs): ... method timerEvent (line 129) | def timerEvent(cls, *args, **kwargs): ... method updateMicroFocus (line 131) | def updateMicroFocus(cls, *args, **kwargs): ... method wheelEvent (line 133) | def wheelEvent(cls, *args, **kwargs): ... class FileInfo (line 135) | class FileInfo(sip.wrapper): method fileName (line 137) | def fileName(cls, *args, **kwargs): ... method insertSequenceFile (line 139) | def insertSequenceFile(cls, *args, **kwargs): ... method setEndFrame (line 141) | def setEndFrame(cls, *args, **kwargs): ... method setSequenceName (line 143) | def setSequenceName(cls, *args, **kwargs): ... method setStartFrame (line 145) | def setStartFrame(cls, *args, **kwargs): ... class FileSequenceEvaluator (line 147) | class FileSequenceEvaluator(sip.wrapper): method buildFileSequence (line 149) | def buildFileSequence(cls, *args, **kwargs): ... method evaluateFiles (line 151) | def evaluateFiles(cls, *args, **kwargs): ... FILE: katana/stubs/_PyOpenColorIO/__init__.pyi class AllocationTransform (line 8) | class AllocationTransform(Transform): method __init__ (line 9) | def __init__(self, *args, **kwargs) -> None: ... method getAllocation (line 10) | def getAllocation(self) -> Any: ... method getNumVars (line 11) | def getNumVars(self, *args, **kwargs): ... method getVars (line 12) | def getVars(self) -> Any: ... method setAllocation (line 13) | def setAllocation(self, hwalloc) -> Any: ... method setVars (line 14) | def setVars(self, pyvars) -> Any: ... class Baker (line 16) | class Baker: method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method bake (line 18) | def bake(self, *args, **kwargs): ... method createEditableCopy (line 19) | def createEditableCopy(self, *args, **kwargs): ... method getConfig (line 20) | def getConfig(self, *args, **kwargs): ... method getCubeSize (line 21) | def getCubeSize(self, *args, **kwargs): ... method getFormat (line 22) | def getFormat(self, *args, **kwargs): ... method getFormatExtensionByIndex (line 23) | def getFormatExtensionByIndex(self, *args, **kwargs): ... method getFormatNameByIndex (line 24) | def getFormatNameByIndex(self, *args, **kwargs): ... method getInputSpace (line 25) | def getInputSpace(self, *args, **kwargs): ... method getLooks (line 26) | def getLooks(self, *args, **kwargs): ... method getMetadata (line 27) | def getMetadata(self, *args, **kwargs): ... method getNumFormats (line 28) | def getNumFormats(self, *args, **kwargs): ... method getShaperSize (line 29) | def getShaperSize(self, *args, **kwargs): ... method getShaperSpace (line 30) | def getShaperSpace(self, *args, **kwargs): ... method getTargetSpace (line 31) | def getTargetSpace(self, *args, **kwargs): ... method getType (line 32) | def getType(self, *args, **kwargs): ... method isEditable (line 33) | def isEditable(self, *args, **kwargs): ... method setConfig (line 34) | def setConfig(self, *args, **kwargs): ... method setCubeSize (line 35) | def setCubeSize(self, *args, **kwargs): ... method setFormat (line 36) | def setFormat(self, *args, **kwargs): ... method setInputSpace (line 37) | def setInputSpace(self, *args, **kwargs): ... method setLooks (line 38) | def setLooks(self, *args, **kwargs): ... method setMetadata (line 39) | def setMetadata(self, *args, **kwargs): ... method setShaperSize (line 40) | def setShaperSize(self, *args, **kwargs): ... method setShaperSpace (line 41) | def setShaperSpace(self, *args, **kwargs): ... method setTargetSpace (line 42) | def setTargetSpace(self, *args, **kwargs): ... method setType (line 43) | def setType(self, *args, **kwargs): ... class CDLTransform (line 45) | class CDLTransform(Transform): method __init__ (line 46) | def __init__(self, *args, **kwargs) -> None: ... method CreateFromFile (line 47) | def CreateFromFile(self, *args, **kwargs): ... method equals (line 48) | def equals(self, *args, **kwargs): ... method getDescription (line 49) | def getDescription(self) -> Any: ... method getID (line 50) | def getID(self) -> Any: ... method getOffset (line 51) | def getOffset(self, *args, **kwargs): ... method getPower (line 52) | def getPower(self, *args, **kwargs): ... method getSOP (line 53) | def getSOP(self, *args, **kwargs): ... method getSat (line 54) | def getSat(self, *args, **kwargs): ... method getSatLumaCoefs (line 55) | def getSatLumaCoefs(self, pyData) -> Any: ... method getSlope (line 56) | def getSlope(self, *args, **kwargs): ... method getXML (line 57) | def getXML(self, *args, **kwargs): ... method setDescription (line 58) | def setDescription(self, str) -> Any: ... method setID (line 59) | def setID(self, str) -> Any: ... method setOffset (line 60) | def setOffset(self, pyData) -> Any: ... method setPower (line 61) | def setPower(self, pyData) -> Any: ... method setSOP (line 62) | def setSOP(self, pyData) -> Any: ... method setSat (line 63) | def setSat(self, *args, **kwargs): ... method setSlope (line 64) | def setSlope(self, pyData) -> Any: ... method setXML (line 65) | def setXML(self, *args, **kwargs): ... class ColorSpace (line 67) | class ColorSpace: method __init__ (line 68) | def __init__(self, *args, **kwargs) -> None: ... method createEditableCopy (line 69) | def createEditableCopy(self, *args, **kwargs): ... method getAllocation (line 70) | def getAllocation(self, *args, **kwargs): ... method getAllocationVars (line 71) | def getAllocationVars(self, *args, **kwargs): ... method getBitDepth (line 72) | def getBitDepth(self, *args, **kwargs): ... method getDescription (line 73) | def getDescription(self, *args, **kwargs): ... method getEqualityGroup (line 74) | def getEqualityGroup(self, *args, **kwargs): ... method getFamily (line 75) | def getFamily(self, *args, **kwargs): ... method getName (line 76) | def getName(self, *args, **kwargs): ... method getTransform (line 77) | def getTransform(self, *args, **kwargs): ... method isData (line 78) | def isData(self, *args, **kwargs): ... method isEditable (line 79) | def isEditable(self, *args, **kwargs): ... method setAllocation (line 80) | def setAllocation(self, *args, **kwargs): ... method setAllocationVars (line 81) | def setAllocationVars(self, *args, **kwargs): ... method setBitDepth (line 82) | def setBitDepth(self, *args, **kwargs): ... method setDescription (line 83) | def setDescription(self, *args, **kwargs): ... method setEqualityGroup (line 84) | def setEqualityGroup(self, *args, **kwargs): ... method setFamily (line 85) | def setFamily(self, *args, **kwargs): ... method setIsData (line 86) | def setIsData(self, *args, **kwargs): ... method setName (line 87) | def setName(self, *args, **kwargs): ... method setTransform (line 88) | def setTransform(self, *args, **kwargs): ... class ColorSpaceTransform (line 90) | class ColorSpaceTransform(Transform): method __init__ (line 91) | def __init__(self, *args, **kwargs) -> None: ... method getDst (line 92) | def getDst(self) -> Any: ... method getSrc (line 93) | def getSrc(self) -> Any: ... method setDst (line 94) | def setDst(self, dstname) -> Any: ... method setSrc (line 95) | def setSrc(self, srcname) -> Any: ... class Config (line 97) | class Config: method __init__ (line 98) | def __init__(self, *args, **kwargs) -> None: ... method CreateFromEnv (line 100) | def CreateFromEnv(cls) -> Any: ... method CreateFromFile (line 102) | def CreateFromFile(cls, filename) -> Any: ... method CreateFromStream (line 104) | def CreateFromStream(cls, *args, **kwargs): ... method addColorSpace (line 105) | def addColorSpace(self, pyColorSpace) -> Any: ... method addDisplay (line 106) | def addDisplay(self, *args, **kwargs): ... method addEnvironmentVar (line 107) | def addEnvironmentVar(self, *args, **kwargs): ... method addLook (line 108) | def addLook(self, pylook) -> Any: ... method clearColorSpaces (line 109) | def clearColorSpaces(self) -> Any: ... method clearDisplays (line 110) | def clearDisplays(self) -> Any: ... method clearEnvironmentVars (line 111) | def clearEnvironmentVars(self, *args, **kwargs): ... method clearLook (line 112) | def clearLook(self, *args, **kwargs): ... method clearLooks (line 113) | def clearLooks(self) -> Any: ... method createEditableCopy (line 114) | def createEditableCopy(self) -> Any: ... method getActiveDisplays (line 115) | def getActiveDisplays(self) -> Any: ... method getActiveViews (line 116) | def getActiveViews(self) -> Any: ... method getCacheID (line 117) | def getCacheID(self, *args, **kwargs): ... method getColorSpace (line 118) | def getColorSpace(self, name) -> Any: ... method getColorSpaceNameByIndex (line 119) | def getColorSpaceNameByIndex(self, *args, **kwargs): ... method getColorSpaces (line 120) | def getColorSpaces(self) -> Any: ... method getCurrentContext (line 121) | def getCurrentContext(self) -> Any: ... method getDefaultDisplay (line 122) | def getDefaultDisplay(self) -> Any: ... method getDefaultLumaCoefs (line 123) | def getDefaultLumaCoefs(self) -> Any: ... method getDefaultView (line 124) | def getDefaultView(self, display) -> Any: ... method getDescription (line 125) | def getDescription(self) -> Any: ... method getDisplay (line 126) | def getDisplay(self, *args, **kwargs): ... method getDisplayColorSpaceName (line 127) | def getDisplayColorSpaceName(self, display, view) -> Any: ... method getDisplayLooks (line 128) | def getDisplayLooks(self, display, view) -> Any: ... method getDisplays (line 129) | def getDisplays(self) -> Any: ... method getEnvironmentVarDefault (line 130) | def getEnvironmentVarDefault(self, *args, **kwargs): ... method getEnvironmentVarDefaults (line 131) | def getEnvironmentVarDefaults(self, *args, **kwargs): ... method getEnvironmentVarNameByIndex (line 132) | def getEnvironmentVarNameByIndex(self, *args, **kwargs): ... method getIndexForColorSpace (line 133) | def getIndexForColorSpace(self, *args, **kwargs): ... method getLook (line 134) | def getLook(self, str) -> Any: ... method getLookNameByIndex (line 135) | def getLookNameByIndex(self, *args, **kwargs): ... method getLooks (line 136) | def getLooks(self) -> Any: ... method getNumColorSpaces (line 137) | def getNumColorSpaces(self, *args, **kwargs): ... method getNumDisplays (line 138) | def getNumDisplays(self, *args, **kwargs): ... method getNumEnvironmentVars (line 139) | def getNumEnvironmentVars(self, *args, **kwargs): ... method getNumLooks (line 140) | def getNumLooks(self, *args, **kwargs): ... method getNumRoles (line 141) | def getNumRoles(self, *args, **kwargs): ... method getNumViews (line 142) | def getNumViews(self, *args, **kwargs): ... method getProcessor (line 143) | def getProcessor(self, *args, **kwargs): ... method getRoleName (line 144) | def getRoleName(self, *args, **kwargs): ... method getSearchPath (line 145) | def getSearchPath(self) -> Any: ... method getView (line 146) | def getView(self, *args, **kwargs): ... method getViews (line 147) | def getViews(self, display) -> Any: ... method getWorkingDir (line 148) | def getWorkingDir(self) -> Any: ... method hasRole (line 149) | def hasRole(self, *args, **kwargs): ... method isEditable (line 150) | def isEditable(self) -> Any: ... method isStrictParsingEnabled (line 151) | def isStrictParsingEnabled(self, *args, **kwargs): ... method parseColorSpaceFromString (line 152) | def parseColorSpaceFromString(self, str) -> Any: ... method sanityCheck (line 153) | def sanityCheck(self) -> Any: ... method serialize (line 154) | def serialize(self) -> Any: ... method setActiveDisplays (line 155) | def setActiveDisplays(self, displays) -> Any: ... method setActiveViews (line 156) | def setActiveViews(self, views) -> Any: ... method setDefaultLumaCoefs (line 157) | def setDefaultLumaCoefs(self, pyCoef) -> Any: ... method setDescription (line 158) | def setDescription(self, desc) -> Any: ... method setRole (line 159) | def setRole(self, role, csname) -> Any: ... method setSearchPath (line 160) | def setSearchPath(self, path) -> Any: ... method setStrictParsingEnabled (line 161) | def setStrictParsingEnabled(self, *args, **kwargs): ... method setWorkingDir (line 162) | def setWorkingDir(self, path) -> Any: ... class Context (line 164) | class Context: method __init__ (line 165) | def __init__(self, *args, **kwargs) -> None: ... method clearStringVars (line 166) | def clearStringVars(self, *args, **kwargs): ... method createEditableCopy (line 167) | def createEditableCopy(self, *args, **kwargs): ... method getCacheID (line 168) | def getCacheID(self, *args, **kwargs): ... method getEnvironmentMode (line 169) | def getEnvironmentMode(self, *args, **kwargs): ... method getNumStringVars (line 170) | def getNumStringVars(self, *args, **kwargs): ... method getSearchPath (line 171) | def getSearchPath(self, *args, **kwargs): ... method getStringVar (line 172) | def getStringVar(self, *args, **kwargs): ... method getStringVarNameByIndex (line 173) | def getStringVarNameByIndex(self, *args, **kwargs): ... method getWorkingDir (line 174) | def getWorkingDir(self, *args, **kwargs): ... method isEditable (line 175) | def isEditable(self, *args, **kwargs): ... method loadEnvironment (line 176) | def loadEnvironment(self, *args, **kwargs): ... method resolveFileLocation (line 177) | def resolveFileLocation(self, *args, **kwargs): ... method resolveStringVar (line 178) | def resolveStringVar(self, *args, **kwargs): ... method setEnvironmentMode (line 179) | def setEnvironmentMode(self, *args, **kwargs): ... method setSearchPath (line 180) | def setSearchPath(self, *args, **kwargs): ... method setStringVar (line 181) | def setStringVar(self, *args, **kwargs): ... method setWorkingDir (line 182) | def setWorkingDir(self, *args, **kwargs): ... class DisplayTransform (line 184) | class DisplayTransform(Transform): method __init__ (line 185) | def __init__(self, *args, **kwargs) -> None: ... method getChannelView (line 186) | def getChannelView(self) -> Any: ... method getColorTimingCC (line 187) | def getColorTimingCC(self) -> Any: ... method getDisplay (line 188) | def getDisplay(self) -> Any: ... method getDisplayCC (line 189) | def getDisplayCC(self) -> Any: ... method getInputColorSpaceName (line 190) | def getInputColorSpaceName(self) -> Any: ... method getLinearCC (line 191) | def getLinearCC(self) -> Any: ... method getLooksOverride (line 192) | def getLooksOverride(self) -> Any: ... method getLooksOverrideEnabled (line 193) | def getLooksOverrideEnabled(self) -> Any: ... method getView (line 194) | def getView(self) -> Any: ... method setChannelView (line 195) | def setChannelView(self, pyCC) -> Any: ... method setColorTimingCC (line 196) | def setColorTimingCC(self, pyCC) -> Any: ... method setDisplay (line 197) | def setDisplay(self, str) -> Any: ... method setDisplayCC (line 198) | def setDisplayCC(self, pyCC) -> Any: ... method setInputColorSpaceName (line 199) | def setInputColorSpaceName(self, name) -> Any: ... method setLinearCC (line 200) | def setLinearCC(self, pyCC) -> Any: ... method setLooksOverride (line 201) | def setLooksOverride(self, str) -> Any: ... method setLooksOverrideEnabled (line 202) | def setLooksOverrideEnabled(self, enabled) -> Any: ... method setView (line 203) | def setView(self, str) -> Any: ... class Exception (line 205) | class Exception(Exception): ... class ExceptionMissingFile (line 207) | class ExceptionMissingFile(Exception): ... class ExponentTransform (line 209) | class ExponentTransform(Transform): method __init__ (line 210) | def __init__(self, *args, **kwargs) -> None: ... method getValue (line 211) | def getValue(self) -> Any: ... method setValue (line 212) | def setValue(self) -> Any: ... class FileTransform (line 214) | class FileTransform(Transform): method __init__ (line 215) | def __init__(self, *args, **kwargs) -> None: ... method getCCCId (line 216) | def getCCCId(self, *args, **kwargs): ... method getFormatExtensionByIndex (line 217) | def getFormatExtensionByIndex(self, *args, **kwargs): ... method getFormatNameByIndex (line 218) | def getFormatNameByIndex(self, *args, **kwargs): ... method getInterpolation (line 219) | def getInterpolation(self, *args, **kwargs): ... method getNumFormats (line 220) | def getNumFormats(self, *args, **kwargs): ... method getSrc (line 221) | def getSrc(self, *args, **kwargs): ... method setCCCId (line 222) | def setCCCId(self, *args, **kwargs): ... method setInterpolation (line 223) | def setInterpolation(self, *args, **kwargs): ... method setSrc (line 224) | def setSrc(self, *args, **kwargs): ... class GpuShaderDesc (line 226) | class GpuShaderDesc: method __init__ (line 227) | def __init__(self, *args, **kwargs) -> None: ... method getCacheID (line 228) | def getCacheID(self, *args, **kwargs): ... method getFunctionName (line 229) | def getFunctionName(self, *args, **kwargs): ... method getLanguage (line 230) | def getLanguage(self, *args, **kwargs): ... method getLut3DEdgeLen (line 231) | def getLut3DEdgeLen(self, *args, **kwargs): ... method setFunctionName (line 232) | def setFunctionName(self, *args, **kwargs): ... method setLanguage (line 233) | def setLanguage(self, *args, **kwargs): ... method setLut3DEdgeLen (line 234) | def setLut3DEdgeLen(self, *args, **kwargs): ... class GroupTransform (line 236) | class GroupTransform(Transform): method __init__ (line 237) | def __init__(self, *args, **kwargs) -> None: ... method clear (line 238) | def clear(self, *args, **kwargs): ... method empty (line 239) | def empty(self, *args, **kwargs): ... method getTransform (line 240) | def getTransform(self, *args, **kwargs): ... method getTransforms (line 241) | def getTransforms(self, *args, **kwargs): ... method push_back (line 242) | def push_back(self, *args, **kwargs): ... method setTransforms (line 243) | def setTransforms(self, *args, **kwargs): ... method size (line 244) | def size(self, *args, **kwargs): ... class LogTransform (line 246) | class LogTransform(Transform): method __init__ (line 247) | def __init__(self, *args, **kwargs) -> None: ... method getBase (line 248) | def getBase(self) -> Any: ... method setBase (line 249) | def setBase(self, base) -> Any: ... class Look (line 251) | class Look: method __init__ (line 252) | def __init__(self, *args, **kwargs) -> None: ... method createEditableCopy (line 253) | def createEditableCopy(self, *args, **kwargs): ... method getDescription (line 254) | def getDescription(self, *args, **kwargs): ... method getInverseTransform (line 255) | def getInverseTransform(self, *args, **kwargs): ... method getName (line 256) | def getName(self, *args, **kwargs): ... method getProcessSpace (line 257) | def getProcessSpace(self, *args, **kwargs): ... method getTransform (line 258) | def getTransform(self, *args, **kwargs): ... method isEditable (line 259) | def isEditable(self, *args, **kwargs): ... method setDescription (line 260) | def setDescription(self, *args, **kwargs): ... method setInverseTransform (line 261) | def setInverseTransform(self, *args, **kwargs): ... method setName (line 262) | def setName(self, *args, **kwargs): ... method setProcessSpace (line 263) | def setProcessSpace(self, *args, **kwargs): ... method setTransform (line 264) | def setTransform(self, *args, **kwargs): ... class LookTransform (line 266) | class LookTransform(Transform): method __init__ (line 267) | def __init__(self, *args, **kwargs) -> None: ... method getDst (line 268) | def getDst(self, *args, **kwargs): ... method getLooks (line 269) | def getLooks(self, *args, **kwargs): ... method getSrc (line 270) | def getSrc(self, *args, **kwargs): ... method setDst (line 271) | def setDst(self, *args, **kwargs): ... method setLooks (line 272) | def setLooks(self, *args, **kwargs): ... method setSrc (line 273) | def setSrc(self, *args, **kwargs): ... class MatrixTransform (line 275) | class MatrixTransform(Transform): method __init__ (line 276) | def __init__(self, *args, **kwargs) -> None: ... method Fit (line 278) | def Fit(cls, *args, **kwargs): ... method Identity (line 280) | def Identity(cls, *args, **kwargs): ... method Sat (line 282) | def Sat(cls, *args, **kwargs): ... method Scale (line 284) | def Scale(cls, *args, **kwargs): ... method View (line 286) | def View(cls, *args, **kwargs): ... method equals (line 287) | def equals(self, *args, **kwargs): ... method getMatrix (line 288) | def getMatrix(self, *args, **kwargs): ... method getOffset (line 289) | def getOffset(self, *args, **kwargs): ... method getValue (line 290) | def getValue(self, *args, **kwargs): ... method setMatrix (line 291) | def setMatrix(self, *args, **kwargs): ... method setOffset (line 292) | def setOffset(self, *args, **kwargs): ... method setValue (line 293) | def setValue(self, *args, **kwargs): ... class Processor (line 295) | class Processor: method __init__ (line 296) | def __init__(self, *args, **kwargs) -> None: ... method applyRGB (line 297) | def applyRGB(self, pixeldata) -> Any: ... method applyRGBA (line 298) | def applyRGBA(self, pixeldata) -> Any: ... method getCpuCacheID (line 299) | def getCpuCacheID(self) -> Any: ... method getGpuLut3D (line 300) | def getGpuLut3D(self, shaderDesc) -> Any: ... method getGpuLut3DCacheID (line 301) | def getGpuLut3DCacheID(self, shaderDesc) -> Any: ... method getGpuShaderText (line 302) | def getGpuShaderText(self, shaderDesc) -> Any: ... method getGpuShaderTextCacheID (line 303) | def getGpuShaderTextCacheID(self, shaderDesc) -> Any: ... method getMetadata (line 304) | def getMetadata(self) -> Any: ... method hasChannelCrosstalk (line 305) | def hasChannelCrosstalk(self) -> Any: ... method isNoOp (line 306) | def isNoOp(self) -> Any: ... class ProcessorMetadata (line 308) | class ProcessorMetadata: method __init__ (line 309) | def __init__(self, *args, **kwargs) -> None: ... method getFiles (line 310) | def getFiles(self) -> Any: ... method getLooks (line 311) | def getLooks(self) -> Any: ... class Transform (line 313) | class Transform: method __init__ (line 314) | def __init__(self, *args, **kwargs) -> None: ... method createEditableCopy (line 315) | def createEditableCopy(self, *args, **kwargs): ... method getDirection (line 316) | def getDirection(self, *args, **kwargs): ... method isEditable (line 317) | def isEditable(self, *args, **kwargs): ... method setDirection (line 318) | def setDirection(self, *args, **kwargs): ... function ClearAllCaches (line 320) | def ClearAllCaches(*args, **kwargs): ... function GetCurrentConfig (line 321) | def GetCurrentConfig(*args, **kwargs): ... function GetLoggingLevel (line 322) | def GetLoggingLevel(*args, **kwargs): ... function SetCurrentConfig (line 323) | def SetCurrentConfig(*args, **kwargs): ... function SetLoggingLevel (line 324) | def SetLoggingLevel(*args, **kwargs): ... FILE: katana/stubs/drawing_cmodule/__init__.pyi function GetFontFile (line 10) | def GetFontFile() -> str: ... function angleVector2D (line 11) | def angleVector2D(arg0: float, arg1: float, arg2: float, arg3: float) ->... function boundBoxBox (line 12) | def boundBoxBox(arg0: float, arg1: float, arg2: float, arg3: float, arg4... function insideVector2DBox (line 13) | def insideVector2DBox(arg0: float, arg1: float, arg2: float, arg3: float... function intersectBoxBox (line 14) | def intersectBoxBox(arg0: float, arg1: float, arg2: float, arg3: float, ... function intersectLineBox (line 15) | def intersectLineBox(arg0: float, arg1: float, arg2: float, arg3: float,... function intersectLines (line 16) | def intersectLines(arg0: float, arg1: float, arg2: float, arg3: float, a... function lengthVector2D (line 17) | def lengthVector2D(arg0: float, arg1: float) -> float: ... function nodeShape_clearAllHiddenPortLinks (line 18) | def nodeShape_clearAllHiddenPortLinks() -> None: ... function nodeShape_setPortLinkHidden (line 19) | def nodeShape_setPortLinkHidden(srcPort: NodegraphAPI_cmodule.Port, dstP... function nodeWorld_addNode (line 20) | def nodeWorld_addNode(node: NodegraphAPI_cmodule.Node, p: list[tuple[flo... function nodeWorld_draw (line 21) | def nodeWorld_draw(viewRoot: NodegraphAPI_cmodule.GroupNode, x: float, y... function nodeWorld_drawFloatingLink (line 22) | def nodeWorld_drawFloatingLink(viewRoot: NodegraphAPI_cmodule.GroupNode,... function nodeWorld_drawPreselect (line 23) | def nodeWorld_drawPreselect(viewRoot: NodegraphAPI_cmodule.GroupNode, x:... function nodeWorld_drawSelectedLink (line 24) | def nodeWorld_drawSelectedLink(viewRoot: NodegraphAPI_cmodule.GroupNode,... function nodeWorld_drawSelectedPort (line 25) | def nodeWorld_drawSelectedPort(viewRoot: NodegraphAPI_cmodule.GroupNode,... function nodeWorld_drawShadow (line 26) | def nodeWorld_drawShadow(l: float, b: float, r: float, t: float, w: floa... function nodeWorld_drawText (line 27) | def nodeWorld_drawText(text: str) -> None: ... function nodeWorld_findGroupNodeOfClick (line 28) | def nodeWorld_findGroupNodeOfClick(viewRoot: NodegraphAPI_cmodule.Node, ... function nodeWorld_flowText (line 29) | def nodeWorld_flowText(text: str, lineWidth: float) -> list[str]: ... function nodeWorld_getBounds (line 30) | def nodeWorld_getBounds(node: NodegraphAPI_cmodule.Node, useBasicDisplay... function nodeWorld_getBoundsOfListOfNodes (line 31) | def nodeWorld_getBoundsOfListOfNodes(nodes: list[NodegraphAPI_cmodule.No... function nodeWorld_getChildBounds (line 32) | def nodeWorld_getChildBounds(viewRoot: NodegraphAPI_cmodule.GroupNode) -... function nodeWorld_getFloatingOffset (line 33) | def nodeWorld_getFloatingOffset() -> tuple: ... function nodeWorld_getGroupNodeRelativeAndAbsoluteChildScales (line 34) | def nodeWorld_getGroupNodeRelativeAndAbsoluteChildScales(viewRoot: Nodeg... function nodeWorld_getLinkEndPoints (line 35) | def nodeWorld_getLinkEndPoints(viewRoot: NodegraphAPI_cmodule.GroupNode,... function nodeWorld_getNodeDehilitingMode (line 36) | def nodeWorld_getNodeDehilitingMode() -> int: ... function nodeWorld_getPortPosition (line 37) | def nodeWorld_getPortPosition(port: NodegraphAPI_cmodule.Port, viewScale... function nodeWorld_getShapeAttrAsNumber (line 38) | def nodeWorld_getShapeAttrAsNumber(node: NodegraphAPI_cmodule.Node, attr... function nodeWorld_getShapeAttrAsString (line 39) | def nodeWorld_getShapeAttrAsString(node: NodegraphAPI_cmodule.Node, attr... function nodeWorld_hitTestBox (line 40) | def nodeWorld_hitTestBox(viewRoot: NodegraphAPI_cmodule.GroupNode, l: fl... function nodeWorld_hitTestInset (line 41) | def nodeWorld_hitTestInset(group: NodegraphAPI_cmodule.GroupNode, x: flo... function nodeWorld_hitTestNode (line 42) | def nodeWorld_hitTestNode(viewRoot: NodegraphAPI_cmodule.GroupNode, node... function nodeWorld_hitTestPoint (line 43) | def nodeWorld_hitTestPoint(viewRoot: NodegraphAPI_cmodule.GroupNode, x: ... function nodeWorld_isLargePortAreaEnabled (line 44) | def nodeWorld_isLargePortAreaEnabled() -> bool: ... function nodeWorld_loadSceneIntoNodegraphSvgManager (line 45) | def nodeWorld_loadSceneIntoNodegraphSvgManager(id: str, path: str, opaci... function nodeWorld_mapFromWorldPositionToCurrentGroupWorldPosition (line 46) | def nodeWorld_mapFromWorldPositionToCurrentGroupWorldPosition(viewRoot: ... function nodeWorld_measureText (line 47) | def nodeWorld_measureText(text: str) -> tuple: ... function nodeWorld_moveNode (line 48) | def nodeWorld_moveNode(node: NodegraphAPI_cmodule.Node, p: list[tuple[fl... function nodeWorld_refreshAllViewMaskLinkColors (line 49) | def nodeWorld_refreshAllViewMaskLinkColors() -> None: ... function nodeWorld_refreshAllViewMasks (line 50) | def nodeWorld_refreshAllViewMasks() -> None: ... function nodeWorld_refreshNodeViewMaskFlags (line 51) | def nodeWorld_refreshNodeViewMaskFlags(node: NodegraphAPI_cmodule.Node) ... function nodeWorld_removeNode (line 52) | def nodeWorld_removeNode(node: NodegraphAPI_cmodule.Node) -> None: ... function nodeWorld_sceneIsLoadedIntoNodegraphSvgManager (line 53) | def nodeWorld_sceneIsLoadedIntoNodegraphSvgManager(id: str) -> bool: ... function nodeWorld_setExpressionLinksEnabled (line 54) | def nodeWorld_setExpressionLinksEnabled(arg0: bool) -> None: ... function nodeWorld_setFloatingOffset (line 55) | def nodeWorld_setFloatingOffset(groupNode: NodegraphAPI_cmodule.GroupNod... function nodeWorld_setLargePortAreaEnabled (line 56) | def nodeWorld_setLargePortAreaEnabled(enabled: bool) -> None: ... function nodeWorld_setLargePortAreaIncludeTypes (line 57) | def nodeWorld_setLargePortAreaIncludeTypes(includeInput: bool, includeOu... function nodeWorld_setLowContrastLookEnabled (line 58) | def nodeWorld_setLowContrastLookEnabled(arg0: bool) -> None: ... function nodeWorld_setNodeActive (line 59) | def nodeWorld_setNodeActive(node: NodegraphAPI_cmodule.Node) -> None: ... function nodeWorld_setNodeDehilitingEnabled (line 60) | def nodeWorld_setNodeDehilitingEnabled(arg0: bool) -> None: ... function nodeWorld_setNodeDehilitingMode (line 61) | def nodeWorld_setNodeDehilitingMode(arg0: int) -> None: ... function nodeWorld_setNodeState (line 62) | def nodeWorld_setNodeState(node: NodegraphAPI_cmodule.Node, viewed: bool... function nodeWorld_setNodeThumbnail (line 63) | def nodeWorld_setNodeThumbnail(node: NodegraphAPI_cmodule.Node, thumbnai... function nodeWorld_setNodeThumbnailEnabled (line 64) | def nodeWorld_setNodeThumbnailEnabled(node: NodegraphAPI_cmodule.Node, e... function nodeWorld_setParent (line 65) | def nodeWorld_setParent(node: NodegraphAPI_cmodule.Node, oldParent: Node... function nodeWorld_setShapeAttr (line 67) | def nodeWorld_setShapeAttr(node: NodegraphAPI_cmodule.Node, attr: str, v... function nodeWorld_setShapeAttr (line 69) | def nodeWorld_setShapeAttr(node: NodegraphAPI_cmodule.Node, attr: str, v... function nodeWorld_setShowNodeIcons (line 70) | def nodeWorld_setShowNodeIcons(show: bool) -> None: ... function nodeWorld_setViewMasksEnabled (line 71) | def nodeWorld_setViewMasksEnabled(enabled: bool) -> None: ... function nodeWorld_shouldLargePortAreaIncludeInputPorts (line 72) | def nodeWorld_shouldLargePortAreaIncludeInputPorts() -> bool: ... function nodeWorld_shouldLargePortAreaIncludeOutputPorts (line 73) | def nodeWorld_shouldLargePortAreaIncludeOutputPorts() -> bool: ... function nodeWorld_tranformPointToChildSpace (line 74) | def nodeWorld_tranformPointToChildSpace(group: NodegraphAPI_cmodule.Grou... function nodeWorld_updateNodeHiliteTableWithIncomingNodes (line 75) | def nodeWorld_updateNodeHiliteTableWithIncomingNodes(node: NodegraphAPI_... function normalizeVector2D (line 76) | def normalizeVector2D(arg0: float, arg1: float) -> tuple: ... function scaleBoxVector2D (line 77) | def scaleBoxVector2D(arg0: float, arg1: float, arg2: float, arg3: float,... function translateBoxVector2D (line 78) | def translateBoxVector2D(arg0: float, arg1: float, arg2: float, arg3: fl... FILE: mari/stubgen_mari.py class MariDocstringSignatureGenerator (line 24) | class MariDocstringSignatureGenerator(DocstringSignatureGenerator): method get_property_type (line 26) | def get_property_type( method get_function_sig (line 31) | def get_function_sig( class MariDocstringTypeFixer (line 57) | class MariDocstringTypeFixer(DocstringTypeFixer): method prepare_docstring (line 58) | def prepare_docstring(self, docstr: str) -> str: method get_full_name (line 62) | def get_full_name(self, obj_name: str) -> str: method cleanup_type (line 79) | def cleanup_type( class InspectionStubGenerator (line 95) | class InspectionStubGenerator(mypy.stubgenc.InspectionStubGenerator): method is_skipped_attribute (line 122) | def is_skipped_attribute(self, attr: str) -> bool: method get_obj_module (line 127) | def get_obj_module(self, obj: object) -> str | None: method get_type_fullname (line 136) | def get_type_fullname(self, typ: type) -> str: method get_sig_generators (line 147) | def get_sig_generators(self) -> list[SignatureGenerator]: method get_imports (line 154) | def get_imports(self) -> str: method get_members (line 163) | def get_members(self, obj: object) -> list[tuple[str, Any]]: function main (line 189) | def main(outdir: str): FILE: mari/stubs/mari-stubs/__init__.pyi class API (line 43) | class API(PySide2.QtCore.QObject): method __init__ (line 45) | def __init__(self, *args, **kwargs) -> None: ... method isNull (line 46) | def isNull(self, *args, **kwargs): ... method __bool__ (line 47) | def __bool__(self) -> bool: ... class Action (line 49) | class Action(API): method __init__ (line 52) | def __init__(self, *args, **kwargs) -> None: ... method addToSet (line 53) | def addToSet(self, SetName: str): ... method iconPath (line 54) | def iconPath(self) -> str: ... method isCheckable (line 55) | def isCheckable(self) -> bool: ... method isChecked (line 56) | def isChecked(self) -> bool: ... method isEnabled (line 57) | def isEnabled(self) -> bool: ... method name (line 58) | def name(self) -> str: ... method path (line 59) | def path(self) -> str: ... method removeFromSet (line 60) | def removeFromSet(self, SetName: str): ... method removeShortcut (line 61) | def removeShortcut(self, Group: ActionManager.ShortcutGroup = ...): ... method setCheckable (line 62) | def setCheckable(self, Checkable: bool): ... method setChecked (line 63) | def setChecked(self, Checked: bool): ... method setEnabled (line 64) | def setEnabled(self, Enabled: bool): ... method setIconPath (line 65) | def setIconPath(self, IconPath: str): ... method setShortcut (line 66) | def setShortcut(self, rString: str, Group: ActionManager.ShortcutGroup... method setStatusTip (line 67) | def setStatusTip(self, StatusTip: str): ... method setText (line 68) | def setText(self, NewText: str): ... method setToolTip (line 69) | def setToolTip(self, ToolTip: str): ... method setWhatsThis (line 70) | def setWhatsThis(self, WhatsThis: str): ... method shortcut (line 71) | def shortcut(self, Group: ActionManager.ShortcutGroup = ...) -> str: ... method statusTip (line 72) | def statusTip(self) -> str: ... method text (line 73) | def text(self) -> str: ... method toolTip (line 74) | def toolTip(self) -> str: ... method trigger (line 75) | def trigger(self): ... method whatsThis (line 76) | def whatsThis(self) -> str: ... method __bool__ (line 77) | def __bool__(self) -> bool: ... class ActionManager (line 79) | class ActionManager(API): class ShortcutGroup (line 80) | class ShortcutGroup: method __init__ (line 86) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 87) | def __add__(self, other): ... method __and__ (line 88) | def __and__(self, other): ... method __bool__ (line 89) | def __bool__(self) -> bool: ... method __eq__ (line 90) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 91) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 92) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 93) | def __hash__(self) -> int: ... method __index__ (line 94) | def __index__(self) -> int: ... method __int__ (line 95) | def __int__(self) -> int: ... method __le__ (line 96) | def __le__(self, other: object) -> bool: ... method __lt__ (line 97) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 98) | def __mul__(self, other): ... method __ne__ (line 99) | def __ne__(self, other: object) -> bool: ... method __or__ (line 100) | def __or__(self, other): ... method __pos__ (line 101) | def __pos__(self): ... method __radd__ (line 102) | def __radd__(self, other): ... method __rand__ (line 103) | def __rand__(self, other): ... method __rmul__ (line 104) | def __rmul__(self, other): ... method __ror__ (line 105) | def __ror__(self, other): ... method __rsub__ (line 106) | def __rsub__(self, other): ... method __rxor__ (line 107) | def __rxor__(self, other): ... method __sub__ (line 108) | def __sub__(self, other): ... method __xor__ (line 109) | def __xor__(self, other): ... method __init__ (line 113) | def __init__(self, *args, **kwargs) -> None: ... method actionFromShortcut (line 114) | def actionFromShortcut(self, Shortcut: str, Group: ShortcutGroup = ...... method addToSet (line 115) | def addToSet(self, SetName: str, pAction: Action): ... method create (line 116) | def create(self, rIdentifier: str, rCommand: str) -> ScriptAction: ... method disableSet (line 117) | def disableSet(self, SetName: str): ... method enableSet (line 118) | def enableSet(self, SetName: str): ... method find (line 119) | def find(self, rPath: str) -> Action: ... method get (line 120) | def get(self, rPath: str) -> Action: ... method list (line 121) | def list(self, rPath: str = ...) -> typing.List[str]: ... method loadUserShortcuts (line 122) | def loadUserShortcuts(self): ... method removeFromSet (line 123) | def removeFromSet(self, SetName: str, pAction: Action): ... method removeShortcut (line 124) | def removeShortcut(self, Path: str, Shortcut: str = ..., Group: Shortc... method removeShortcuts (line 125) | def removeShortcuts(self, Path: str, Group: ShortcutGroup = ...): ... method setShortcut (line 126) | def setShortcut(self, Path: str, Shortcut: str, Group: ShortcutGroup =... method sets (line 127) | def sets(self) -> typing.List[str]: ... method shortcut (line 128) | def shortcut(self, Path: str, Group: ShortcutGroup = ...) -> str: ... method shortcutIsInUse (line 129) | def shortcutIsInUse(self, Shortcut: str, Group: ShortcutGroup = ...) -... method shortcuts (line 130) | def shortcuts(self, Path: str, Group: ShortcutGroup = ...) -> typing.L... method __bool__ (line 131) | def __bool__(self) -> bool: ... class AdjustableLayer (line 133) | class AdjustableLayer(Layer): method __init__ (line 135) | def __init__(self, *args, **kwargs) -> None: ... method adjustmentStack (line 136) | def adjustmentStack(self) -> LayerStack: ... method hasAdjustmentStack (line 137) | def hasAdjustmentStack(self) -> bool: ... method isAdjustmentStackEnabled (line 138) | def isAdjustmentStackEnabled(self) -> bool: ... method makeAdjustmentStack (line 139) | def makeAdjustmentStack(self) -> LayerStack: ... method removeAdjustmentStack (line 140) | def removeAdjustmentStack(self): ... method setAdjustmentStackEnabled (line 141) | def setAdjustmentStackEnabled(self, Enabled: bool): ... method __bool__ (line 142) | def __bool__(self) -> bool: ... class AdjustmentLayer (line 144) | class AdjustmentLayer(Layer): method __init__ (line 146) | def __init__(self, *args, **kwargs) -> None: ... method getPrimaryAdjustmentParameter (line 147) | def getPrimaryAdjustmentParameter(self, ParameterName: str) -> variant... method getPrimaryAdjustmentParameterAsImage (line 148) | def getPrimaryAdjustmentParameterAsImage(self, ParameterName: str) -> ... method getSecondaryAdjustmentParameter (line 149) | def getSecondaryAdjustmentParameter(self, ParameterName: str) -> varia... method getSecondaryAdjustmentParameterAsImage (line 150) | def getSecondaryAdjustmentParameterAsImage(self, ParameterName: str) -... method hasSecondaryAdjustment (line 151) | def hasSecondaryAdjustment(self) -> bool: ... method makeSecondaryAdjustment (line 152) | def makeSecondaryAdjustment(self, AdjustmentKey: str): ... method primaryAdjustmentParameters (line 153) | def primaryAdjustmentParameters(self) -> typing.List[str]: ... method primaryAdjustmentType (line 154) | def primaryAdjustmentType(self) -> str: ... method removeSecondaryAdjustment (line 155) | def removeSecondaryAdjustment(self): ... method secondaryAdjustmentParameters (line 156) | def secondaryAdjustmentParameters(self) -> typing.List[str]: ... method secondaryAdjustmentType (line 157) | def secondaryAdjustmentType(self) -> str: ... method setPrimaryAdjustmentParameter (line 158) | def setPrimaryAdjustmentParameter(self, ParameterName: str, NewValue: ... method setSecondaryAdjustmentParameter (line 159) | def setSecondaryAdjustmentParameter(self, ParameterName: str, NewValue... method __bool__ (line 160) | def __bool__(self) -> bool: ... class AppVersion (line 162) | class AppVersion(API): class Stage (line 163) | class Stage: method __init__ (line 171) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 172) | def __add__(self, other): ... method __and__ (line 173) | def __and__(self, other): ... method __bool__ (line 174) | def __bool__(self) -> bool: ... method __eq__ (line 175) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 176) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 177) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 178) | def __hash__(self) -> int: ... method __index__ (line 179) | def __index__(self) -> int: ... method __int__ (line 180) | def __int__(self) -> int: ... method __le__ (line 181) | def __le__(self, other: object) -> bool: ... method __lt__ (line 182) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 183) | def __mul__(self, other): ... method __ne__ (line 184) | def __ne__(self, other: object) -> bool: ... method __or__ (line 185) | def __or__(self, other): ... method __pos__ (line 186) | def __pos__(self): ... method __radd__ (line 187) | def __radd__(self, other): ... method __rand__ (line 188) | def __rand__(self, other): ... method __rmul__ (line 189) | def __rmul__(self, other): ... method __ror__ (line 190) | def __ror__(self, other): ... method __rsub__ (line 191) | def __rsub__(self, other): ... method __rxor__ (line 192) | def __rxor__(self, other): ... method __sub__ (line 193) | def __sub__(self, other): ... method __xor__ (line 194) | def __xor__(self, other): ... method __init__ (line 200) | def __init__(self, *args, **kwargs) -> None: ... method date (line 201) | def date(self) -> str: ... method feature (line 202) | def feature(self): ... method info (line 203) | def info(self): ... method isLinux (line 204) | def isLinux(self) -> bool: ... method isMac (line 205) | def isMac(self) -> bool: ... method isWindows (line 206) | def isWindows(self) -> bool: ... method iteration (line 207) | def iteration(self): ... method major (line 208) | def major(self): ... method minor (line 209) | def minor(self): ... method number (line 210) | def number(self): ... method qt (line 211) | def qt(self) -> str: ... method revision (line 212) | def revision(self): ... method stage (line 213) | def stage(self): ... method string (line 214) | def string(self): ... method time (line 215) | def time(self) -> str: ... method __bool__ (line 216) | def __bool__(self) -> bool: ... class Application (line 218) | class Application(API): class DropTargetArea (line 219) | class DropTargetArea: method __init__ (line 228) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 229) | def __add__(self, other): ... method __and__ (line 230) | def __and__(self, other): ... method __bool__ (line 231) | def __bool__(self) -> bool: ... method __eq__ (line 232) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 233) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 234) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 235) | def __hash__(self) -> int: ... method __index__ (line 236) | def __index__(self) -> int: ... method __int__ (line 237) | def __int__(self) -> int: ... method __le__ (line 238) | def __le__(self, other: object) -> bool: ... method __lt__ (line 239) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 240) | def __mul__(self, other): ... method __ne__ (line 241) | def __ne__(self, other: object) -> bool: ... method __or__ (line 242) | def __or__(self, other): ... method __pos__ (line 243) | def __pos__(self): ... method __radd__ (line 244) | def __radd__(self, other): ... method __rand__ (line 245) | def __rand__(self, other): ... method __rmul__ (line 246) | def __rmul__(self, other): ... method __ror__ (line 247) | def __ror__(self, other): ... method __rsub__ (line 248) | def __rsub__(self, other): ... method __rxor__ (line 249) | def __rxor__(self, other): ... method __sub__ (line 250) | def __sub__(self, other): ... method __xor__ (line 251) | def __xor__(self, other): ... class ToolBarArea (line 253) | class ToolBarArea: method __init__ (line 261) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 262) | def __add__(self, other): ... method __and__ (line 263) | def __and__(self, other): ... method __bool__ (line 264) | def __bool__(self) -> bool: ... method __eq__ (line 265) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 266) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 267) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 268) | def __hash__(self) -> int: ... method __index__ (line 269) | def __index__(self) -> int: ... method __int__ (line 270) | def __int__(self) -> int: ... method __le__ (line 271) | def __le__(self, other: object) -> bool: ... method __lt__ (line 272) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 273) | def __mul__(self, other): ... method __ne__ (line 274) | def __ne__(self, other: object) -> bool: ... method __or__ (line 275) | def __or__(self, other): ... method __pos__ (line 276) | def __pos__(self): ... method __radd__ (line 277) | def __radd__(self, other): ... method __rand__ (line 278) | def __rand__(self, other): ... method __rmul__ (line 279) | def __rmul__(self, other): ... method __ror__ (line 280) | def __ror__(self, other): ... method __rsub__ (line 281) | def __rsub__(self, other): ... method __rxor__ (line 282) | def __rxor__(self, other): ... method __sub__ (line 283) | def __sub__(self, other): ... method __xor__ (line 284) | def __xor__(self, other): ... method __init__ (line 308) | def __init__(self, *args, **kwargs) -> None: ... method activateMainWindow (line 309) | def activateMainWindow(self): ... method addTab (line 310) | def addTab(self, Name: str, Widget: PySide2.QtWidgets.QWidget): ... method backgroundJobCaption (line 311) | def backgroundJobCaption(self, JobID: typing.SupportsInt) -> str: ... method backgroundJobIDs (line 312) | def backgroundJobIDs(self) -> typing.List[int]: ... method canvasHeight (line 313) | def canvasHeight(self): ... method canvasWidth (line 314) | def canvasWidth(self): ... method captureDesktop (line 315) | def captureDesktop(self) -> PySide2.QtWidgets.QPixmap: ... method clearScriptOutput (line 316) | def clearScriptOutput(self): ... method commandPortEnabled (line 317) | def commandPortEnabled(self) -> bool: ... method commandPortNumber (line 318) | def commandPortNumber(self): ... method createCustomDisplayWidget (line 319) | def createCustomDisplayWidget(self, Name: str, OffscreenBufferWidth: t... method createToolBar (line 320) | def createToolBar(self, Name: str, Area: ToolBarArea = ..., IsVisible:... method currentMeshPathInGeoLoader (line 321) | def currentMeshPathInGeoLoader(self) -> str: ... method decryptString (line 322) | def decryptString(self): ... method deleteToolBar (line 323) | def deleteToolBar(self, Name: str): ... method enableCommandPort (line 324) | def enableCommandPort(self): ... method encryptString (line 325) | def encryptString(self): ... method executeDialog (line 326) | def executeDialog(self, Dialog: PySide2.QtWidgets.QDialog) -> int: ... method exit (line 327) | def exit(self, ResultCode: typing.SupportsInt = ..., ConfirmIfProjectM... method findToolBar (line 328) | def findToolBar(self): ... method geometry (line 329) | def geometry(self) -> PySide2.QtWidgets.QRect: ... method getGeoPluginAttribute (line 330) | def getGeoPluginAttribute(self): ... method hasPendingPortCommands (line 331) | def hasPendingPortCommands(self) -> bool: ... method inRestrictedVersion (line 332) | def inRestrictedVersion(self) -> bool: ... method inTerminalMode (line 333) | def inTerminalMode(self) -> bool: ... method isBackgroundJobFinished (line 334) | def isBackgroundJobFinished(self, JobID: typing.SupportsInt) -> bool: ... method isFullScreen (line 335) | def isFullScreen(self) -> bool: ... method isMaximized (line 336) | def isMaximized(self) -> bool: ... method isMinimized (line 337) | def isMinimized(self) -> bool: ... method isProcessing (line 338) | def isProcessing(self) -> bool: ... method isRunning (line 339) | def isRunning(self) -> bool: ... method isSafeFeature_BypassUserEnvironmentResourceKeys_Enabled (line 340) | def isSafeFeature_BypassUserEnvironmentResourceKeys_Enabled(self) -> b... method lastDropData (line 341) | def lastDropData(self) -> variant: ... method launchArgs (line 342) | def launchArgs(self) -> typing.List[str]: ... method launchDir (line 343) | def launchDir(self) -> str: ... method loadLayout (line 344) | def loadLayout(self, Filename: str): ... method log (line 345) | def log(self, Message: str): ... method logFileName (line 346) | def logFileName(self) -> str: ... method maximize (line 347) | def maximize(self): ... method minimize (line 348) | def minimize(self): ... method numProcessingSteps (line 349) | def numProcessingSteps(self) -> int: ... method popupsAllowed (line 350) | def popupsAllowed(self) -> bool: ... method processEvents (line 351) | def processEvents(self): ... method progress (line 352) | def progress(self) -> int: ... method progressDescription (line 353) | def progressDescription(self) -> str: ... method quit (line 354) | def quit(self, ConfirmIfProjectModified: bool = ...): ... method registerCustomDropMimeType (line 355) | def registerCustomDropMimeType(self, MimeType: str, Target: DropTarget... method registerGeoPluginWidget (line 356) | def registerGeoPluginWidget(self, FileExtensions: typing.List[str], Wi... method removeTab (line 357) | def removeTab(self, Name: str): ... method restore (line 358) | def restore(self): ... method restoreCursor (line 359) | def restoreCursor(self): ... method resumeProcessing (line 360) | def resumeProcessing(self): ... method saveLayout (line 361) | def saveLayout(self, Filename: str): ... method setActiveTab (line 362) | def setActiveTab(self, Name: str): ... method setCommandPortNumber (line 363) | def setCommandPortNumber(self): ... method setFixedCanvasSize (line 364) | def setFixedCanvasSize(self, Width: typing.SupportsInt, Height: typing... method setFullScreen (line 365) | def setFullScreen(self, FullScreen: bool): ... method setGeoPluginAttribute (line 366) | def setGeoPluginAttribute(self): ... method setGeometry (line 367) | def setGeometry(self, Geom: PySide2.QtWidgets.QRect): ... method setNukeConnectionActive (line 368) | def setNukeConnectionActive(self, Active: bool, ConnectionInfo: str = ... method setProgress (line 369) | def setProgress(self, Progress: typing.SupportsInt): ... method setProgressDescription (line 370) | def setProgressDescription(self, Description: str): ... method setWaitCursor (line 371) | def setWaitCursor(self): ... method startProcessing (line 372) | def startProcessing(self, Description: str, NumSteps: typing.SupportsI... method stepProgress (line 373) | def stepProgress(self): ... method stopProcessing (line 374) | def stopProcessing(self): ... method suspendProcessing (line 375) | def suspendProcessing(self): ... method tabNames (line 376) | def tabNames(self): ... method toggleFullScreen (line 377) | def toggleFullScreen(self): ... method toolBar (line 378) | def toolBar(self): ... method version (line 379) | def version(self): ... method wasProcessingCanceled (line 380) | def wasProcessingCanceled(self) -> bool: ... method __bool__ (line 381) | def __bool__(self) -> bool: ... class BackdropNode (line 383) | class BackdropNode(Node): method __init__ (line 385) | def __init__(self, *args, **kwargs) -> None: ... method childNodes (line 386) | def childNodes(self) -> typing.List[Node]: ... method isBackdropNode (line 387) | def isBackdropNode(self) -> bool: ... method portListMode (line 388) | def portListMode(self): ... method selectChildNodes (line 389) | def selectChildNodes(self): ... method setNodeGraphSize (line 390) | def setNodeGraphSize(self, Size: PySide2.QtWidgets.QSizeF): ... method setPortListMode (line 391) | def setPortListMode(self): ... method __bool__ (line 392) | def __bool__(self) -> bool: ... class BakePointLayer (line 394) | class BakePointLayer(Layer): method __init__ (line 396) | def __init__(self, *args, **kwargs) -> None: ... method bake (line 397) | def bake(self): ... method bakedResult (line 398) | def bakedResult(self) -> ImageSet: ... method deleteBakedResult (line 399) | def deleteBakedResult(self): ... method hasBakedResult (line 400) | def hasBakedResult(self): ... method isBakedResultUpToDate (line 401) | def isBakedResultUpToDate(self): ... method setUseBaked (line 402) | def setUseBaked(self): ... method useBaked (line 403) | def useBaked(self): ... method __bool__ (line 404) | def __bool__(self) -> bool: ... class BakePointNode (line 406) | class BakePointNode(PaintNode): class BakePointNodeState (line 407) | class BakePointNodeState: method __init__ (line 414) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 415) | def __add__(self, other): ... method __and__ (line 416) | def __and__(self, other): ... method __bool__ (line 417) | def __bool__(self) -> bool: ... method __eq__ (line 418) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 419) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 420) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 421) | def __hash__(self) -> int: ... method __index__ (line 422) | def __index__(self) -> int: ... method __int__ (line 423) | def __int__(self) -> int: ... method __le__ (line 424) | def __le__(self, other: object) -> bool: ... method __lt__ (line 425) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 426) | def __mul__(self, other): ... method __ne__ (line 427) | def __ne__(self, other: object) -> bool: ... method __or__ (line 428) | def __or__(self, other): ... method __pos__ (line 429) | def __pos__(self): ... method __radd__ (line 430) | def __radd__(self, other): ... method __rand__ (line 431) | def __rand__(self, other): ... method __rmul__ (line 432) | def __rmul__(self, other): ... method __ror__ (line 433) | def __ror__(self, other): ... method __rsub__ (line 434) | def __rsub__(self, other): ... method __rxor__ (line 435) | def __rxor__(self, other): ... method __sub__ (line 436) | def __sub__(self, other): ... method __xor__ (line 437) | def __xor__(self, other): ... method __init__ (line 444) | def __init__(self, *args, **kwargs) -> None: ... method applyFilterCollection (line 445) | def applyFilterCollection(self): ... method bake (line 446) | def bake(self): ... method bakedResult (line 447) | def bakedResult(self) -> ImageSet: ... method connectSignals (line 448) | def connectSignals(self, *args, **kwargs): ... method deleteBakedResult (line 449) | def deleteBakedResult(self): ... method depth (line 450) | def depth(self) -> Image.Depth: ... method exportBakedResult (line 451) | def exportBakedResult(self, BakeOutOfDate: bool, Options: typing.Suppo... method exportOnBake (line 452) | def exportOnBake(self) -> bool: ... method exportPath (line 453) | def exportPath(self) -> str: ... method filterCollection (line 454) | def filterCollection(self) -> PostFilterCollection: ... method filterCollectionEnabled (line 455) | def filterCollectionEnabled(self) -> bool: ... method geoChannel (line 456) | def geoChannel(self) -> GeoChannel: ... method geoChannelName (line 457) | def geoChannelName(self) -> str: ... method hasBakedResult (line 458) | def hasBakedResult(self): ... method isBakePointNode (line 459) | def isBakePointNode(self) -> bool: ... method isBakedResultUpToDate (line 460) | def isBakedResultUpToDate(self): ... method limitBake (line 461) | def limitBake(self) -> bool: ... method limitBakeRange (line 462) | def limitBakeRange(self) -> UvIndexRangeList: ... method onBakeStateChanged (line 463) | def onBakeStateChanged(self, *args, **kwargs): ... method setExportOnBake (line 464) | def setExportOnBake(self, ExportOnBake: bool): ... method setExportPath (line 465) | def setExportPath(self, Path: str): ... method setFilterCollectionEnabled (line 466) | def setFilterCollectionEnabled(self, FilterCollectionEnabled: bool): ... method setGeoChannelName (line 467) | def setGeoChannelName(self, Alias: str): ... method setLimitBake (line 468) | def setLimitBake(self, LimitBake: bool): ... method setLimitBakeRange (line 469) | def setLimitBakeRange(self, LimitBakeRange: UvIndexRangeList): ... method setSyncToGeoChannel (line 470) | def setSyncToGeoChannel(self, Sync: bool): ... method syncGeoChannel (line 471) | def syncGeoChannel(self): ... method syncToGeoChannel (line 472) | def syncToGeoChannel(self) -> bool: ... method __bool__ (line 473) | def __bool__(self) -> bool: ... class BroadcastTeleportNode (line 475) | class BroadcastTeleportNode(TeleportNode): method __init__ (line 477) | def __init__(self, *args, **kwargs) -> None: ... method connectSignals (line 478) | def connectSignals(self, *args, **kwargs): ... method setChannelName (line 479) | def setChannelName(self, ChannelName: str): ... method __bool__ (line 480) | def __bool__(self) -> bool: ... class Camera (line 482) | class Camera(Metadata): class Type (line 483) | class Type: method __init__ (line 490) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 491) | def __add__(self, other): ... method __and__ (line 492) | def __and__(self, other): ... method __bool__ (line 493) | def __bool__(self) -> bool: ... method __eq__ (line 494) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 495) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 496) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 497) | def __hash__(self) -> int: ... method __index__ (line 498) | def __index__(self) -> int: ... method __int__ (line 499) | def __int__(self) -> int: ... method __le__ (line 500) | def __le__(self, other: object) -> bool: ... method __lt__ (line 501) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 502) | def __mul__(self, other): ... method __ne__ (line 503) | def __ne__(self, other: object) -> bool: ... method __or__ (line 504) | def __or__(self, other): ... method __pos__ (line 505) | def __pos__(self): ... method __radd__ (line 506) | def __radd__(self, other): ... method __rand__ (line 507) | def __rand__(self, other): ... method __rmul__ (line 508) | def __rmul__(self, other): ... method __ror__ (line 509) | def __ror__(self, other): ... method __rsub__ (line 510) | def __rsub__(self, other): ... method __rxor__ (line 511) | def __rxor__(self, other): ... method __sub__ (line 512) | def __sub__(self, other): ... method __xor__ (line 513) | def __xor__(self, other): ... method __init__ (line 520) | def __init__(self, *args, **kwargs) -> None: ... method adjustClipPlanes (line 521) | def adjustClipPlanes(self): ... method farClip (line 522) | def farClip(self): ... method fieldOfView (line 523) | def fieldOfView(self): ... method fieldOfViewX (line 524) | def fieldOfViewX(self): ... method fieldOfViewY (line 525) | def fieldOfViewY(self): ... method isAnimated (line 526) | def isAnimated(self) -> bool: ... method lookAt (line 527) | def lookAt(self): ... method name (line 528) | def name(self) -> str: ... method nearClip (line 529) | def nearClip(self): ... method perspectiveAspectRatio (line 530) | def perspectiveAspectRatio(self): ... method projectionMatrix (line 531) | def projectionMatrix(self, AspectRatio: float = ..., Frame: typing.Sup... method scale (line 532) | def scale(self) -> float: ... method setAnimated (line 533) | def setAnimated(self): ... method setFarClip (line 534) | def setFarClip(self): ... method setFieldOfView (line 535) | def setFieldOfView(self): ... method setFieldOfViewX (line 536) | def setFieldOfViewX(self): ... method setFieldOfViewY (line 537) | def setFieldOfViewY(self): ... method setLookAt (line 538) | def setLookAt(self): ... method setName (line 539) | def setName(self): ... method setNearClip (line 540) | def setNearClip(self): ... method setScale (line 541) | def setScale(self): ... method setTranslation (line 542) | def setTranslation(self): ... method setType (line 543) | def setType(self): ... method setUp (line 544) | def setUp(self): ... method translation (line 545) | def translation(self): ... method type (line 546) | def type(self) -> type: ... method up (line 547) | def up(self): ... method viewMatrix (line 548) | def viewMatrix(self, Frame: typing.SupportsInt = ...) -> variant: ... method viewport (line 549) | def viewport(self) -> PySide2.QtWidgets.QRect: ... method viewportAspectRatio (line 550) | def viewportAspectRatio(self) -> float: ... method __bool__ (line 551) | def __bool__(self) -> bool: ... class Canvas (line 553) | class Canvas(API): class PickSpace (line 554) | class PickSpace: method __init__ (line 560) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 561) | def __add__(self, other): ... method __and__ (line 562) | def __and__(self, other): ... method __bool__ (line 563) | def __bool__(self) -> bool: ... method __eq__ (line 564) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 565) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 566) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 567) | def __hash__(self) -> int: ... method __index__ (line 568) | def __index__(self) -> int: ... method __int__ (line 569) | def __int__(self) -> int: ... method __le__ (line 570) | def __le__(self, other: object) -> bool: ... method __lt__ (line 571) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 572) | def __mul__(self, other): ... method __ne__ (line 573) | def __ne__(self, other: object) -> bool: ... method __or__ (line 574) | def __or__(self, other): ... method __pos__ (line 575) | def __pos__(self): ... method __radd__ (line 576) | def __radd__(self, other): ... method __rand__ (line 577) | def __rand__(self, other): ... method __rmul__ (line 578) | def __rmul__(self, other): ... method __ror__ (line 579) | def __ror__(self, other): ... method __rsub__ (line 580) | def __rsub__(self, other): ... method __rxor__ (line 581) | def __rxor__(self, other): ... method __sub__ (line 582) | def __sub__(self, other): ... method __xor__ (line 583) | def __xor__(self, other): ... method __init__ (line 587) | def __init__(self, *args, **kwargs) -> None: ... method averageColor (line 588) | def averageColor(self, X: typing.SupportsInt, Y: typing.SupportsInt, W... method camera (line 589) | def camera(self) -> Camera: ... method capture (line 590) | def capture(self, Width: typing.SupportsInt = ..., Height: typing.Supp... method displayPropertyList (line 591) | def displayPropertyList(self) -> typing.List[str]: ... method getDisplayProperty (line 592) | def getDisplayProperty(self, PropertyKey: str) -> variant: ... method pickColor (line 593) | def pickColor(self, X: typing.SupportsInt, Y: typing.SupportsInt, Spac... method repaint (line 594) | def repaint(self): ... method requestRepaint (line 595) | def requestRepaint(self): ... method sceneCamera (line 596) | def sceneCamera(self) -> Camera: ... method setDisplayProperty (line 597) | def setDisplayProperty(self, PropertyKey: str, NewValue: variant): ... method size (line 598) | def size(self) -> PySide2.QtWidgets.QSize: ... method __bool__ (line 599) | def __bool__(self) -> bool: ... class CanvasManager (line 601) | class CanvasManager(PropertySource): class RenderState (line 602) | class RenderState: method __init__ (line 610) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 611) | def __add__(self, other): ... method __and__ (line 612) | def __and__(self, other): ... method __bool__ (line 613) | def __bool__(self) -> bool: ... method __eq__ (line 614) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 615) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 616) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 617) | def __hash__(self) -> int: ... method __index__ (line 618) | def __index__(self) -> int: ... method __int__ (line 619) | def __int__(self) -> int: ... method __le__ (line 620) | def __le__(self, other: object) -> bool: ... method __lt__ (line 621) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 622) | def __mul__(self, other): ... method __ne__ (line 623) | def __ne__(self, other: object) -> bool: ... method __or__ (line 624) | def __or__(self, other): ... method __pos__ (line 625) | def __pos__(self): ... method __radd__ (line 626) | def __radd__(self, other): ... method __rand__ (line 627) | def __rand__(self, other): ... method __rmul__ (line 628) | def __rmul__(self, other): ... method __ror__ (line 629) | def __ror__(self, other): ... method __rsub__ (line 630) | def __rsub__(self, other): ... method __rxor__ (line 631) | def __rxor__(self, other): ... method __sub__ (line 632) | def __sub__(self, other): ... method __xor__ (line 633) | def __xor__(self, other): ... method __init__ (line 644) | def __init__(self, *args, **kwargs) -> None: ... method current (line 645) | def current(self) -> Canvas: ... method fps (line 646) | def fps(self) -> float: ... method list (line 647) | def list(self) -> typing.List[Canvas]: ... method paintBuffer (line 648) | def paintBuffer(self) -> PaintBuffer: ... method pauseShaderCompiles (line 649) | def pauseShaderCompiles(self) -> bool: ... method setPauseShaderCompiles (line 650) | def setPauseShaderCompiles(self, Pause: bool): ... method size (line 651) | def size(self) -> typing.List[int]: ... method __bool__ (line 652) | def __bool__(self) -> bool: ... class Channel (line 654) | class Channel(LayerStack): class ConvertOption (line 655) | class ConvertOption: method __init__ (line 661) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 662) | def __add__(self, other): ... method __and__ (line 663) | def __and__(self, other): ... method __bool__ (line 664) | def __bool__(self) -> bool: ... method __eq__ (line 665) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 666) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 667) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 668) | def __hash__(self) -> int: ... method __index__ (line 669) | def __index__(self) -> int: ... method __int__ (line 670) | def __int__(self) -> int: ... method __le__ (line 671) | def __le__(self, other: object) -> bool: ... method __lt__ (line 672) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 673) | def __mul__(self, other): ... method __ne__ (line 674) | def __ne__(self, other: object) -> bool: ... method __or__ (line 675) | def __or__(self, other): ... method __pos__ (line 676) | def __pos__(self): ... method __radd__ (line 677) | def __radd__(self, other): ... method __rand__ (line 678) | def __rand__(self, other): ... method __rmul__ (line 679) | def __rmul__(self, other): ... method __ror__ (line 680) | def __ror__(self, other): ... method __rsub__ (line 681) | def __rsub__(self, other): ... method __rxor__ (line 682) | def __rxor__(self, other): ... method __sub__ (line 683) | def __sub__(self, other): ... method __xor__ (line 684) | def __xor__(self, other): ... class ResizeMetric (line 686) | class ResizeMetric: method __init__ (line 693) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 694) | def __add__(self, other): ... method __and__ (line 695) | def __and__(self, other): ... method __bool__ (line 696) | def __bool__(self) -> bool: ... method __eq__ (line 697) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 698) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 699) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 700) | def __hash__(self) -> int: ... method __index__ (line 701) | def __index__(self) -> int: ... method __int__ (line 702) | def __int__(self) -> int: ... method __le__ (line 703) | def __le__(self, other: object) -> bool: ... method __lt__ (line 704) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 705) | def __mul__(self, other): ... method __ne__ (line 706) | def __ne__(self, other: object) -> bool: ... method __or__ (line 707) | def __or__(self, other): ... method __pos__ (line 708) | def __pos__(self): ... method __radd__ (line 709) | def __radd__(self, other): ... method __rand__ (line 710) | def __rand__(self, other): ... method __rmul__ (line 711) | def __rmul__(self, other): ... method __ror__ (line 712) | def __ror__(self, other): ... method __rsub__ (line 713) | def __rsub__(self, other): ... method __rxor__ (line 714) | def __rxor__(self, other): ... method __sub__ (line 715) | def __sub__(self, other): ... method __xor__ (line 716) | def __xor__(self, other): ... method __init__ (line 730) | def __init__(self, *args, **kwargs) -> None: ... method bakeTo (line 731) | def bakeTo(self, TargetLayer: Layer, SelectedOnly: bool = ...) -> bool... method bleed (line 732) | def bleed(self) -> bool: ... method channelNode (line 733) | def channelNode(self) -> ChannelNode: ... method colorspaceConfig (line 734) | def colorspaceConfig(self) -> ColorspaceConfig: ... method convertColorSpaceTo (line 735) | def convertColorSpaceTo(self, NewColorSpace: str, Option: ConvertOptio... method createSnapshot (line 736) | def createSnapshot(self, Name: str, ID: str = ...) -> Snapshot: ... method currentLayer (line 737) | def currentLayer(self): ... method deleteSnapshot (line 738) | def deleteSnapshot(self, ShotToDelete: Snapshot): ... method depth (line 739) | def depth(self) -> Image.Depth: ... method exportToGeoChannel (line 740) | def exportToGeoChannel(self, GeoChannelName: str) -> bool: ... method fileSpace (line 741) | def fileSpace(self) -> Image.FileSpace: ... method findSnapshotWithID (line 742) | def findSnapshotWithID(self, ID: str) -> Snapshot: ... method flatten (line 743) | def flatten(self) -> Layer: ... method geoEntity (line 744) | def geoEntity(self) -> GeoEntity: ... method height (line 745) | def height(self, UVIndex: typing.SupportsInt = ...) -> int: ... method isLocked (line 746) | def isLocked(self) -> bool: ... method isPtex (line 747) | def isPtex(self): ... method isShaderStack (line 748) | def isShaderStack(self): ... method lock (line 749) | def lock(self): ... method makeCurrent (line 750) | def makeCurrent(self): ... method metricResize (line 751) | def metricResize(self, Metric: ResizeMetric, Value: float, UVIndexList... method name (line 752) | def name(self) -> str: ... method resize (line 753) | def resize(self, NewSize: ImageSet.Size, UVIndexList: typing.List[int]... method revertToSnapshot (line 754) | def revertToSnapshot(self, OldSnapshot: Snapshot): ... method scalarColorspaceConfig (line 755) | def scalarColorspaceConfig(self) -> ColorspaceConfig: ... method setBleed (line 756) | def setBleed(self, Bleed: bool): ... method setColorspaceConfig (line 757) | def setColorspaceConfig(self, Config: ColorspaceConfig): ... method setCurrentLayer (line 758) | def setCurrentLayer(self, NewCurrentLayer: Layer): ... method setDepth (line 759) | def setDepth(self, Depth: Image.Depth, Option: ConvertOption): ... method setFileSpace (line 760) | def setFileSpace(self, FileSpace: Image.FileSpace): ... method setLocked (line 761) | def setLocked(self): ... method setName (line 762) | def setName(self, NewName: str): ... method setScalarColorspaceConfig (line 763) | def setScalarColorspaceConfig(self, Config: ColorspaceConfig): ... method snapshotList (line 764) | def snapshotList(self) -> typing.List[Snapshot]: ... method unlock (line 765) | def unlock(self): ... method updateUvImageSizes (line 766) | def updateUvImageSizes(self): ... method width (line 767) | def width(self, UVIndex: typing.SupportsInt = ...) -> int: ... method __bool__ (line 768) | def __bool__(self) -> bool: ... class ChannelInfo (line 770) | class ChannelInfo(API): method __init__ (line 772) | def __init__(self, *args, **kwargs) -> None: ... method colorspaceConfig (line 773) | def colorspaceConfig(self) -> ColorspaceConfig: ... method depth (line 774) | def depth(self): ... method fileSpace (line 775) | def fileSpace(self): ... method fileTemplate (line 776) | def fileTemplate(self) -> str: ... method fillColor (line 777) | def fillColor(self): ... method height (line 778) | def height(self): ... method name (line 779) | def name(self): ... method path (line 780) | def path(self): ... method scalarColorspaceConfig (line 781) | def scalarColorspaceConfig(self) -> ColorspaceConfig: ... method setColorspaceConfig (line 782) | def setColorspaceConfig(self, Config: ColorspaceConfig): ... method setDepth (line 783) | def setDepth(self): ... method setFileSpace (line 784) | def setFileSpace(self): ... method setFileTemplate (line 785) | def setFileTemplate(self, rTemplate: str): ... method setFillColor (line 786) | def setFillColor(self): ... method setHeight (line 787) | def setHeight(self): ... method setName (line 788) | def setName(self): ... method setPath (line 789) | def setPath(self): ... method setScalarColorspaceConfig (line 790) | def setScalarColorspaceConfig(self, Config: ColorspaceConfig): ... method setShader (line 791) | def setShader(self, rShader: str): ... method setSize (line 792) | def setSize(self, WidthAndHeight: typing.SupportsInt): ... method setWidth (line 793) | def setWidth(self): ... method shader (line 794) | def shader(self): ... method size (line 795) | def size(self) -> int: ... method width (line 796) | def width(self): ... method __bool__ (line 797) | def __bool__(self) -> bool: ... class ChannelLayer (line 799) | class ChannelLayer(AdjustableLayer): method __init__ (line 801) | def __init__(self, *args, **kwargs) -> None: ... method channel (line 802) | def channel(self) -> Channel: ... method __bool__ (line 803) | def __bool__(self) -> bool: ... class ChannelNode (line 805) | class ChannelNode(BakePointNode): method __init__ (line 807) | def __init__(self, *args, **kwargs) -> None: ... method channel (line 808) | def channel(self) -> Channel: ... method isBakePointNode (line 809) | def isBakePointNode(self) -> bool: ... method __bool__ (line 810) | def __bool__(self) -> bool: ... class ChannelSnapshot (line 812) | class ChannelSnapshot(Snapshot): method __init__ (line 814) | def __init__(self, *args, **kwargs) -> None: ... method extract (line 815) | def extract(self, NewChannelName: str): ... method __bool__ (line 816) | def __bool__(self) -> bool: ... class Clock (line 818) | class Clock(API): class PlayDirection (line 819) | class PlayDirection: method __init__ (line 825) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 826) | def __add__(self, other): ... method __and__ (line 827) | def __and__(self, other): ... method __bool__ (line 828) | def __bool__(self) -> bool: ... method __eq__ (line 829) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 830) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 831) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 832) | def __hash__(self) -> int: ... method __index__ (line 833) | def __index__(self) -> int: ... method __int__ (line 834) | def __int__(self) -> int: ... method __le__ (line 835) | def __le__(self, other: object) -> bool: ... method __lt__ (line 836) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 837) | def __mul__(self, other): ... method __ne__ (line 838) | def __ne__(self, other: object) -> bool: ... method __or__ (line 839) | def __or__(self, other): ... method __pos__ (line 840) | def __pos__(self): ... method __radd__ (line 841) | def __radd__(self, other): ... method __rand__ (line 842) | def __rand__(self, other): ... method __rmul__ (line 843) | def __rmul__(self, other): ... method __ror__ (line 844) | def __ror__(self, other): ... method __rsub__ (line 845) | def __rsub__(self, other): ... method __rxor__ (line 846) | def __rxor__(self, other): ... method __sub__ (line 847) | def __sub__(self, other): ... method __xor__ (line 848) | def __xor__(self, other): ... class RepeatType (line 850) | class RepeatType: method __init__ (line 857) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 858) | def __add__(self, other): ... method __and__ (line 859) | def __and__(self, other): ... method __bool__ (line 860) | def __bool__(self) -> bool: ... method __eq__ (line 861) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 862) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 863) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 864) | def __hash__(self) -> int: ... method __index__ (line 865) | def __index__(self) -> int: ... method __int__ (line 866) | def __int__(self) -> int: ... method __le__ (line 867) | def __le__(self, other: object) -> bool: ... method __lt__ (line 868) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 869) | def __mul__(self, other): ... method __ne__ (line 870) | def __ne__(self, other: object) -> bool: ... method __or__ (line 871) | def __or__(self, other): ... method __pos__ (line 872) | def __pos__(self): ... method __radd__ (line 873) | def __radd__(self, other): ... method __rand__ (line 874) | def __rand__(self, other): ... method __rmul__ (line 875) | def __rmul__(self, other): ... method __ror__ (line 876) | def __ror__(self, other): ... method __rsub__ (line 877) | def __rsub__(self, other): ... method __rxor__ (line 878) | def __rxor__(self, other): ... method __sub__ (line 879) | def __sub__(self, other): ... method __xor__ (line 880) | def __xor__(self, other): ... method __init__ (line 891) | def __init__(self, *args, **kwargs) -> None: ... method frame (line 892) | def frame(self) -> int: ... method frameCount (line 893) | def frameCount(self) -> int: ... method frameRate (line 894) | def frameRate(self) -> int: ... method loopCount (line 895) | def loopCount(self) -> int: ... method play (line 896) | def play(self, Direction: PlayDirection = ...): ... method playing (line 897) | def playing(self) -> bool: ... method repeatType (line 898) | def repeatType(self) -> RepeatType: ... method reset (line 899) | def reset(self): ... method rewind (line 900) | def rewind(self): ... method setFrame (line 901) | def setFrame(self, Frame: typing.SupportsInt): ... method setFrameRange (line 902) | def setFrameRange(self, Start: typing.SupportsInt, End: typing.Support... method setFrameRate (line 903) | def setFrameRate(self, fps: typing.SupportsInt): ... method setRepeatType (line 904) | def setRepeatType(self, Type: RepeatType): ... method setSourceFrameRate (line 905) | def setSourceFrameRate(self, Fps: typing.SupportsInt): ... method sourceFrameRate (line 906) | def sourceFrameRate(self) -> int: ... method startFrame (line 907) | def startFrame(self) -> int: ... method stepBack (line 908) | def stepBack(self): ... method stepForward (line 909) | def stepForward(self): ... method stop (line 910) | def stop(self): ... method stopFrame (line 911) | def stopFrame(self) -> int: ... method time (line 912) | def time(self) -> str: ... method __bool__ (line 913) | def __bool__(self) -> bool: ... class Color (line 915) | class Color(API): method __init__ (line 917) | def __init__(self, *args, **kwargs) -> None: ... method a (line 918) | def a(self): ... method b (line 919) | def b(self): ... method exposure (line 920) | def exposure(self): ... method g (line 921) | def g(self): ... method h (line 922) | def h(self): ... method hsl (line 923) | def hsl(self): ... method hsla (line 924) | def hsla(self): ... method hsv (line 925) | def hsv(self): ... method hsva (line 926) | def hsva(self): ... method l (line 927) | def l(self): ... method lum (line 928) | def lum(self): ... method r (line 929) | def r(self): ... method rgb (line 930) | def rgb(self): ... method rgba (line 931) | def rgba(self): ... method s (line 932) | def s(self): ... method setA (line 933) | def setA(self): ... method setB (line 934) | def setB(self): ... method setG (line 935) | def setG(self): ... method setH (line 936) | def setH(self): ... method setHSL (line 937) | def setHSL(self): ... method setHSLA (line 938) | def setHSLA(self): ... method setHSV (line 939) | def setHSV(self): ... method setHSVA (line 940) | def setHSVA(self): ... method setL (line 941) | def setL(self): ... method setR (line 942) | def setR(self): ... method setRGB (line 943) | def setRGB(self): ... method setRGBA (line 944) | def setRGBA(self): ... method setS (line 945) | def setS(self): ... method setV (line 946) | def setV(self): ... method toString (line 947) | def toString(self): ... method userReadable (line 948) | def userReadable(self): ... method v (line 949) | def v(self): ... method __bool__ (line 950) | def __bool__(self) -> bool: ... class Colors (line 952) | class Colors(API): method __init__ (line 956) | def __init__(self, *args, **kwargs) -> None: ... method background (line 957) | def background(self) -> Color: ... method foreground (line 958) | def foreground(self) -> Color: ... method pick (line 959) | def pick(self, InitialColor: Color, ScalarPickingMode: bool = ...): ... method setBackground (line 960) | def setBackground(self, NewColor: Color): ... method setForeground (line 961) | def setForeground(self, NewColor: Color): ... method __bool__ (line 962) | def __bool__(self) -> bool: ... class ColorspaceConfig (line 964) | class ColorspaceConfig(API): class ColorspaceStage (line 965) | class ColorspaceStage: method __init__ (line 973) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 974) | def __add__(self, other): ... method __and__ (line 975) | def __and__(self, other): ... method __bool__ (line 976) | def __bool__(self) -> bool: ... method __eq__ (line 977) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 978) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 979) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 980) | def __hash__(self) -> int: ... method __index__ (line 981) | def __index__(self) -> int: ... method __int__ (line 982) | def __int__(self) -> int: ... method __le__ (line 983) | def __le__(self, other: object) -> bool: ... method __lt__ (line 984) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 985) | def __mul__(self, other): ... method __ne__ (line 986) | def __ne__(self, other: object) -> bool: ... method __or__ (line 987) | def __or__(self, other): ... method __pos__ (line 988) | def __pos__(self): ... method __radd__ (line 989) | def __radd__(self, other): ... method __rand__ (line 990) | def __rand__(self, other): ... method __rmul__ (line 991) | def __rmul__(self, other): ... method __ror__ (line 992) | def __ror__(self, other): ... method __rsub__ (line 993) | def __rsub__(self, other): ... method __rxor__ (line 994) | def __rxor__(self, other): ... method __sub__ (line 995) | def __sub__(self, other): ... method __xor__ (line 996) | def __xor__(self, other): ... class ColorspaceType (line 998) | class ColorspaceType: method __init__ (line 1006) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1007) | def __add__(self, other): ... method __and__ (line 1008) | def __and__(self, other): ... method __bool__ (line 1009) | def __bool__(self) -> bool: ... method __eq__ (line 1010) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1011) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1012) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1013) | def __hash__(self) -> int: ... method __index__ (line 1014) | def __index__(self) -> int: ... method __int__ (line 1015) | def __int__(self) -> int: ... method __le__ (line 1016) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1017) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1018) | def __mul__(self, other): ... method __ne__ (line 1019) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1020) | def __or__(self, other): ... method __pos__ (line 1021) | def __pos__(self): ... method __radd__ (line 1022) | def __radd__(self, other): ... method __rand__ (line 1023) | def __rand__(self, other): ... method __rmul__ (line 1024) | def __rmul__(self, other): ... method __ror__ (line 1025) | def __ror__(self, other): ... method __rsub__ (line 1026) | def __rsub__(self, other): ... method __rxor__ (line 1027) | def __rxor__(self, other): ... method __sub__ (line 1028) | def __sub__(self, other): ... method __xor__ (line 1029) | def __xor__(self, other): ... method __init__ (line 1039) | def __init__(self, *args, **kwargs) -> None: ... method automaticColorspace (line 1040) | def automaticColorspace(self, Stage: ColorspaceStage) -> str: ... method automaticType (line 1041) | def automaticType(self, Stage: ColorspaceStage) -> ColorspaceType: ... method availableColorspaces (line 1042) | def availableColorspaces(self, Stage: ColorspaceStage = ..., PrettyNam... method colorspace (line 1043) | def colorspace(self, Stage: ColorspaceStage) -> str: ... method defaultColorspace (line 1044) | def defaultColorspace(self, Stage: ColorspaceStage) -> str: ... method fileName (line 1045) | def fileName(self): ... method fromString (line 1046) | def fromString(self, Str: str): ... method isColorspaceValid (line 1047) | def isColorspaceValid(self, Colorspace: str, Stage: ColorspaceStage = ... method isFileCustom (line 1048) | def isFileCustom(self): ... method isFileValid (line 1049) | def isFileValid(self): ... method isValid (line 1050) | def isValid(self): ... method raw (line 1051) | def raw(self) -> bool: ... method reset (line 1052) | def reset(self): ... method resolveColorspace (line 1053) | def resolveColorspace(self, Stage: ColorspaceStage) -> str: ... method resolveRaw (line 1054) | def resolveRaw(self): ... method scalar (line 1055) | def scalar(self) -> bool: ... method setAutomaticColorspace (line 1056) | def setAutomaticColorspace(self, Stage: ColorspaceStage, Colorspace: s... method setAutomaticType (line 1057) | def setAutomaticType(self, Stage: ColorspaceStage, Type: ColorspaceTyp... method setColorspace (line 1058) | def setColorspace(self, Stage: ColorspaceStage, Colorspace: str): ... method setRaw (line 1059) | def setRaw(self, Enable: bool): ... method setScalar (line 1060) | def setScalar(self, Enable: bool): ... method toString (line 1061) | def toString(self) -> str: ... method __bool__ (line 1062) | def __bool__(self) -> bool: ... class ColorspaceDefaults (line 1064) | class ColorspaceDefaults(API): class ColorspaceTarget (line 1065) | class ColorspaceTarget: method __init__ (line 1079) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1080) | def __add__(self, other): ... method __and__ (line 1081) | def __and__(self, other): ... method __bool__ (line 1082) | def __bool__(self) -> bool: ... method __eq__ (line 1083) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1084) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1085) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1086) | def __hash__(self) -> int: ... method __index__ (line 1087) | def __index__(self) -> int: ... method __int__ (line 1088) | def __int__(self) -> int: ... method __le__ (line 1089) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1090) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1091) | def __mul__(self, other): ... method __ne__ (line 1092) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1093) | def __or__(self, other): ... method __pos__ (line 1094) | def __pos__(self): ... method __radd__ (line 1095) | def __radd__(self, other): ... method __rand__ (line 1096) | def __rand__(self, other): ... method __rmul__ (line 1097) | def __rmul__(self, other): ... method __ror__ (line 1098) | def __ror__(self, other): ... method __rsub__ (line 1099) | def __rsub__(self, other): ... method __rxor__ (line 1100) | def __rxor__(self, other): ... method __sub__ (line 1101) | def __sub__(self, other): ... method __xor__ (line 1102) | def __xor__(self, other): ... method __init__ (line 1114) | def __init__(self, *args, **kwargs) -> None: ... method availableColorspaces (line 1115) | def availableColorspaces(self, Target: ColorspaceTarget = ..., PrettyN... method colorManagementEnabled (line 1116) | def colorManagementEnabled(self): ... method colorspace (line 1117) | def colorspace(self, Target: ColorspaceTarget) -> str: ... method defaultColorspace (line 1118) | def defaultColorspace(self, Target: ColorspaceTarget) -> str: ... method fileName (line 1119) | def fileName(self): ... method hasColorspace (line 1120) | def hasColorspace(self, Colorspace: str) -> bool: ... method isFileCustom (line 1121) | def isFileCustom(self): ... method isFileValid (line 1122) | def isFileValid(self): ... method isValid (line 1123) | def isValid(self): ... method reset (line 1124) | def reset(self): ... method resolveColorspace (line 1125) | def resolveColorspace(self, Target: ColorspaceTarget) -> str: ... method setColorManagementEnabled (line 1126) | def setColorManagementEnabled(self, Enable: bool): ... method setColorspace (line 1127) | def setColorspace(self, Target: ColorspaceTarget, Colorspace: str): ... method setFileName (line 1128) | def setFileName(self, FileName: str): ... method __bool__ (line 1129) | def __bool__(self) -> bool: ... class ComboBox (line 1131) | class ComboBox(WidgetBase): method __init__ (line 1134) | def __init__(self, *args, **kwargs) -> None: ... method clear (line 1135) | def clear(self): ... method currentIndex (line 1136) | def currentIndex(self): ... method currentText (line 1137) | def currentText(self) -> str: ... method findText (line 1138) | def findText(self, Text: str): ... method setContents (line 1139) | def setContents(self, Values: typing.List[str]): ... method setCurrentIndex (line 1140) | def setCurrentIndex(self, Index: typing.SupportsInt): ... method setCurrentText (line 1141) | def setCurrentText(self, Value: str): ... method __bool__ (line 1142) | def __bool__(self) -> bool: ... class CustomLUTFilter (line 1144) | class CustomLUTFilter(PostFilter): method __init__ (line 1146) | def __init__(self, *args, **kwargs) -> None: ... method setData (line 1147) | def setData(self, Data: typing.List[Color]): ... method __bool__ (line 1148) | def __bool__(self) -> bool: ... class CustomProceduralLayer (line 1150) | class CustomProceduralLayer(AdjustableLayer): method __init__ (line 1152) | def __init__(self, *args, **kwargs) -> None: ... method convertToPaintable (line 1153) | def convertToPaintable(self, SelectedOnly: bool = ...): ... method customProceduralType (line 1154) | def customProceduralType(self) -> CustomProceduralNode.CustomProcedura... method geoChannels (line 1155) | def geoChannels(self) -> typing.List[str]: ... method missingGeoChannels (line 1156) | def missingGeoChannels(self) -> typing.List[str]: ... method nodeGraph (line 1157) | def nodeGraph(self) -> NodeGraph: ... method setCustomProceduralType (line 1158) | def setCustomProceduralType(self, Type: CustomProceduralNode.CustomPro... method __bool__ (line 1159) | def __bool__(self) -> bool: ... class CustomProceduralNode (line 1161) | class CustomProceduralNode(GroupNode): class CustomProceduralType (line 1162) | class CustomProceduralType: method __init__ (line 1169) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1170) | def __add__(self, other): ... method __and__ (line 1171) | def __and__(self, other): ... method __bool__ (line 1172) | def __bool__(self) -> bool: ... method __eq__ (line 1173) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1174) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1175) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1176) | def __hash__(self) -> int: ... method __index__ (line 1177) | def __index__(self) -> int: ... method __int__ (line 1178) | def __int__(self) -> int: ... method __le__ (line 1179) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1180) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1181) | def __mul__(self, other): ... method __ne__ (line 1182) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1183) | def __or__(self, other): ... method __pos__ (line 1184) | def __pos__(self): ... method __radd__ (line 1185) | def __radd__(self, other): ... method __rand__ (line 1186) | def __rand__(self, other): ... method __rmul__ (line 1187) | def __rmul__(self, other): ... method __ror__ (line 1188) | def __ror__(self, other): ... method __rsub__ (line 1189) | def __rsub__(self, other): ... method __rxor__ (line 1190) | def __rxor__(self, other): ... method __sub__ (line 1191) | def __sub__(self, other): ... method __xor__ (line 1192) | def __xor__(self, other): ... method __init__ (line 1198) | def __init__(cls, *args, **kwargs) -> None: ... method addCustomProceduralTag (line 1199) | def addCustomProceduralTag(self, Tag: str): ... method addCustomProceduralTags (line 1200) | def addCustomProceduralTags(self, Tags: typing.List[str]): ... method customProceduralTags (line 1201) | def customProceduralTags(self) -> typing.List[str]: ... method customProceduralType (line 1202) | def customProceduralType(self) -> CustomProceduralType: ... method exportCustomProcedural (line 1203) | def exportCustomProcedural(self, FileName: str, ThumbnailFileName: str... method geoChannels (line 1204) | def geoChannels(self) -> typing.List[str]: ... method missingGeoChannels (line 1205) | def missingGeoChannels(self) -> typing.List[str]: ... method readMetadataFromCustomProceduralFile (line 1207) | def readMetadataFromCustomProceduralFile(cls, CustomProceduralFilePath... method readSystemMetadataFromCustomProceduralFile (line 1209) | def readSystemMetadataFromCustomProceduralFile(cls, CustomProceduralFi... method readTagsFromCustomProceduralFile (line 1211) | def readTagsFromCustomProceduralFile(cls, CustomProceduralFilePath: st... method readThumbnailFromCustomProceduralFile (line 1213) | def readThumbnailFromCustomProceduralFile(cls, CustomProceduralFilePat... method removeCustomProceduralTag (line 1214) | def removeCustomProceduralTag(self, Tag: str): ... method removeCustomProceduralTags (line 1215) | def removeCustomProceduralTags(self, Tags: typing.List[str]): ... method setCustomProceduralTags (line 1216) | def setCustomProceduralTags(self, CustomProceduralTags: typing.List[st... method setCustomProceduralType (line 1217) | def setCustomProceduralType(self, Type: CustomProceduralType): ... method writeMetadataToCustomProceduralFile (line 1219) | def writeMetadataToCustomProceduralFile(cls, MetadataMap: PySide2.QtWi... method writeTagsToCustomProceduralFile (line 1221) | def writeTagsToCustomProceduralFile(cls, Tags: typing.List[str], Custo... method writeThumbnailToCustomProceduralFile (line 1223) | def writeThumbnailToCustomProceduralFile(cls, Thumbnail: PySide2.QtWid... method __bool__ (line 1224) | def __bool__(self) -> bool: ... class DDI (line 1226) | class DDI(API): method __init__ (line 1228) | def __init__(self, *args, **kwargs) -> None: ... method clearMemory (line 1229) | def clearMemory(self): ... method clearMemoryCache (line 1230) | def clearMemoryCache(self): ... method clearTraces (line 1231) | def clearTraces(self, Hash: str): ... method dataBlocks (line 1232) | def dataBlocks(self) -> int: ... method garbageCollect (line 1233) | def garbageCollect(self, UnusedPatches: bool = ...): ... method isLive (line 1234) | def isLive(self, Hash: str) -> bool: ... method liveBlocks (line 1235) | def liveBlocks(self) -> int: ... method liveBytes (line 1236) | def liveBytes(self): ... method memoryCacheSize (line 1237) | def memoryCacheSize(self) -> int: ... method profile (line 1238) | def profile(self, NumberOfBlocks: typing.SupportsInt = ..., BlockSize:... method setMemoryCacheSize (line 1239) | def setMemoryCacheSize(self, Size: typing.SupportsInt): ... method setTraceEnabled (line 1240) | def setTraceEnabled(self, Hash: str, Enabled: bool = ...): ... method traces (line 1241) | def traces(self, Hash: str) -> typing.List[str]: ... method __bool__ (line 1242) | def __bool__(self) -> bool: ... class Environment (line 1244) | class Environment(API): method __init__ (line 1248) | def __init__(self, *args, **kwargs) -> None: ... method exists (line 1249) | def exists(self, Name: str) -> bool: ... method get (line 1250) | def get(self, Name: str) -> str: ... method names (line 1251) | def names(self) -> typing.List[str]: ... method set (line 1252) | def set(self, Name: str, NewValue: str) -> bool: ... method unset (line 1253) | def unset(self, Name: str) -> bool: ... method __bool__ (line 1254) | def __bool__(self) -> bool: ... class EnvironmentLight (line 1256) | class EnvironmentLight(Light): class CubeImageType (line 1257) | class CubeImageType: method __init__ (line 1266) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1267) | def __add__(self, other): ... method __and__ (line 1268) | def __and__(self, other): ... method __bool__ (line 1269) | def __bool__(self) -> bool: ... method __eq__ (line 1270) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1271) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1272) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1273) | def __hash__(self) -> int: ... method __index__ (line 1274) | def __index__(self) -> int: ... method __int__ (line 1275) | def __int__(self) -> int: ... method __le__ (line 1276) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1277) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1278) | def __mul__(self, other): ... method __ne__ (line 1279) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1280) | def __or__(self, other): ... method __pos__ (line 1281) | def __pos__(self): ... method __radd__ (line 1282) | def __radd__(self, other): ... method __rand__ (line 1283) | def __rand__(self, other): ... method __rmul__ (line 1284) | def __rmul__(self, other): ... method __ror__ (line 1285) | def __ror__(self, other): ... method __rsub__ (line 1286) | def __rsub__(self, other): ... method __rxor__ (line 1287) | def __rxor__(self, other): ... method __sub__ (line 1288) | def __sub__(self, other): ... method __xor__ (line 1289) | def __xor__(self, other): ... class ImageUpAxis (line 1291) | class ImageUpAxis: method __init__ (line 1298) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1299) | def __add__(self, other): ... method __and__ (line 1300) | def __and__(self, other): ... method __bool__ (line 1301) | def __bool__(self) -> bool: ... method __eq__ (line 1302) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1303) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1304) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1305) | def __hash__(self) -> int: ... method __index__ (line 1306) | def __index__(self) -> int: ... method __int__ (line 1307) | def __int__(self) -> int: ... method __le__ (line 1308) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1309) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1310) | def __mul__(self, other): ... method __ne__ (line 1311) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1312) | def __or__(self, other): ... method __pos__ (line 1313) | def __pos__(self): ... method __radd__ (line 1314) | def __radd__(self, other): ... method __rand__ (line 1315) | def __rand__(self, other): ... method __rmul__ (line 1316) | def __rmul__(self, other): ... method __ror__ (line 1317) | def __ror__(self, other): ... method __rsub__ (line 1318) | def __rsub__(self, other): ... method __rxor__ (line 1319) | def __rxor__(self, other): ... method __sub__ (line 1320) | def __sub__(self, other): ... method __xor__ (line 1321) | def __xor__(self, other): ... class RotationMode (line 1323) | class RotationMode: method __init__ (line 1329) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1330) | def __add__(self, other): ... method __and__ (line 1331) | def __and__(self, other): ... method __bool__ (line 1332) | def __bool__(self) -> bool: ... method __eq__ (line 1333) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1334) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1335) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1336) | def __hash__(self) -> int: ... method __index__ (line 1337) | def __index__(self) -> int: ... method __int__ (line 1338) | def __int__(self) -> int: ... method __le__ (line 1339) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1340) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1341) | def __mul__(self, other): ... method __ne__ (line 1342) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1343) | def __or__(self, other): ... method __pos__ (line 1344) | def __pos__(self): ... method __radd__ (line 1345) | def __radd__(self, other): ... method __rand__ (line 1346) | def __rand__(self, other): ... method __rmul__ (line 1347) | def __rmul__(self, other): ... method __ror__ (line 1348) | def __ror__(self, other): ... method __rsub__ (line 1349) | def __rsub__(self, other): ... method __rxor__ (line 1350) | def __rxor__(self, other): ... method __sub__ (line 1351) | def __sub__(self, other): ... method __xor__ (line 1352) | def __xor__(self, other): ... method __init__ (line 1375) | def __init__(self, *args, **kwargs) -> None: ... method canvasBlur (line 1376) | def canvasBlur(self) -> float: ... method canvasDisplay (line 1377) | def canvasDisplay(self) -> bool: ... method clearCubeImageCache (line 1378) | def clearCubeImageCache(self): ... method clearLightCache (line 1379) | def clearLightCache(self): ... method cubeImage (line 1380) | def cubeImage(self) -> Image: ... method cubeImageFilename (line 1381) | def cubeImageFilename(self) -> str: ... method cubeImageResolution (line 1382) | def cubeImageResolution(self) -> int: ... method cubeImageType (line 1383) | def cubeImageType(self) -> CubeImageType: ... method cubeImageUpAxis (line 1384) | def cubeImageUpAxis(self) -> ImageUpAxis: ... method fixedTo (line 1385) | def fixedTo(self) -> FixedTo: ... method intensity (line 1386) | def intensity(self) -> float: ... method printLightCacheKeys (line 1387) | def printLightCacheKeys(self): ... method rotationUp (line 1388) | def rotationUp(self) -> float: ... method rotationUpMode (line 1389) | def rotationUpMode(self) -> RotationMode: ... method rotationUpSpeed (line 1390) | def rotationUpSpeed(self) -> float: ... method setCanvasBlur (line 1391) | def setCanvasBlur(self, Blur: float): ... method setCanvasDisplay (line 1392) | def setCanvasDisplay(self, Display: bool): ... method setCubeImage (line 1393) | def setCubeImage(self, rImage: variant, Type: CubeImageType): ... method setCubeImageResolution (line 1394) | def setCubeImageResolution(self, Resolution: typing.SupportsInt): ... method setCubeImageType (line 1395) | def setCubeImageType(self, Type: CubeImageType): ... method setCubeImageUpAxis (line 1396) | def setCubeImageUpAxis(self, Axis: ImageUpAxis): ... method setFixedTo (line 1397) | def setFixedTo(self, TargetType: FixedTo): ... method setIntensity (line 1398) | def setIntensity(self, Intensity: float): ... method setRotationUp (line 1399) | def setRotationUp(self, Angle: float): ... method setRotationUpMode (line 1400) | def setRotationUpMode(self, Mode: RotationMode): ... method setRotationUpSpeed (line 1401) | def setRotationUpSpeed(self, Speed: float): ... method __bool__ (line 1402) | def __bool__(self) -> bool: ... class Event (line 1404) | class Event(API): class EventCoordinateSpace (line 1405) | class EventCoordinateSpace: method __init__ (line 1412) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1413) | def __add__(self, other): ... method __and__ (line 1414) | def __and__(self, other): ... method __bool__ (line 1415) | def __bool__(self) -> bool: ... method __eq__ (line 1416) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1417) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1418) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1419) | def __hash__(self) -> int: ... method __index__ (line 1420) | def __index__(self) -> int: ... method __int__ (line 1421) | def __int__(self) -> int: ... method __le__ (line 1422) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1423) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1424) | def __mul__(self, other): ... method __ne__ (line 1425) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1426) | def __or__(self, other): ... method __pos__ (line 1427) | def __pos__(self): ... method __radd__ (line 1428) | def __radd__(self, other): ... method __rand__ (line 1429) | def __rand__(self, other): ... method __rmul__ (line 1430) | def __rmul__(self, other): ... method __ror__ (line 1431) | def __ror__(self, other): ... method __rsub__ (line 1432) | def __rsub__(self, other): ... method __rxor__ (line 1433) | def __rxor__(self, other): ... method __sub__ (line 1434) | def __sub__(self, other): ... method __xor__ (line 1435) | def __xor__(self, other): ... class EventType (line 1437) | class EventType: method __init__ (line 1452) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1453) | def __add__(self, other): ... method __and__ (line 1454) | def __and__(self, other): ... method __bool__ (line 1455) | def __bool__(self) -> bool: ... method __eq__ (line 1456) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1457) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1458) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1459) | def __hash__(self) -> int: ... method __index__ (line 1460) | def __index__(self) -> int: ... method __int__ (line 1461) | def __int__(self) -> int: ... method __le__ (line 1462) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1463) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1464) | def __mul__(self, other): ... method __ne__ (line 1465) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1466) | def __or__(self, other): ... method __pos__ (line 1467) | def __pos__(self): ... method __radd__ (line 1468) | def __radd__(self, other): ... method __rand__ (line 1469) | def __rand__(self, other): ... method __rmul__ (line 1470) | def __rmul__(self, other): ... method __ror__ (line 1471) | def __ror__(self, other): ... method __rsub__ (line 1472) | def __rsub__(self, other): ... method __rxor__ (line 1473) | def __rxor__(self, other): ... method __sub__ (line 1474) | def __sub__(self, other): ... method __xor__ (line 1475) | def __xor__(self, other): ... class KeyboardModifier (line 1477) | class KeyboardModifier: method __init__ (line 1488) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1489) | def __add__(self, other): ... method __and__ (line 1490) | def __and__(self, other): ... method __bool__ (line 1491) | def __bool__(self) -> bool: ... method __eq__ (line 1492) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1493) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1494) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1495) | def __hash__(self) -> int: ... method __index__ (line 1496) | def __index__(self) -> int: ... method __int__ (line 1497) | def __int__(self) -> int: ... method __le__ (line 1498) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1499) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1500) | def __mul__(self, other): ... method __ne__ (line 1501) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1502) | def __or__(self, other): ... method __pos__ (line 1503) | def __pos__(self): ... method __radd__ (line 1504) | def __radd__(self, other): ... method __rand__ (line 1505) | def __rand__(self, other): ... method __rmul__ (line 1506) | def __rmul__(self, other): ... method __ror__ (line 1507) | def __ror__(self, other): ... method __rsub__ (line 1508) | def __rsub__(self, other): ... method __rxor__ (line 1509) | def __rxor__(self, other): ... method __sub__ (line 1510) | def __sub__(self, other): ... method __xor__ (line 1511) | def __xor__(self, other): ... class MouseButton (line 1513) | class MouseButton: method __init__ (line 1523) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1524) | def __add__(self, other): ... method __and__ (line 1525) | def __and__(self, other): ... method __bool__ (line 1526) | def __bool__(self) -> bool: ... method __eq__ (line 1527) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1528) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1529) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1530) | def __hash__(self) -> int: ... method __index__ (line 1531) | def __index__(self) -> int: ... method __int__ (line 1532) | def __int__(self) -> int: ... method __le__ (line 1533) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1534) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1535) | def __mul__(self, other): ... method __ne__ (line 1536) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1537) | def __or__(self, other): ... method __pos__ (line 1538) | def __pos__(self): ... method __radd__ (line 1539) | def __radd__(self, other): ... method __rand__ (line 1540) | def __rand__(self, other): ... method __rmul__ (line 1541) | def __rmul__(self, other): ... method __ror__ (line 1542) | def __ror__(self, other): ... method __rsub__ (line 1543) | def __rsub__(self, other): ... method __rxor__ (line 1544) | def __rxor__(self, other): ... method __sub__ (line 1545) | def __sub__(self, other): ... method __xor__ (line 1546) | def __xor__(self, other): ... method __init__ (line 1576) | def __init__(self, *args, **kwargs) -> None: ... method eventFilter (line 1577) | def eventFilter(self, *args, **kwargs): ... method isPlaying (line 1578) | def isPlaying(self) -> bool: ... method recordPlay (line 1579) | def recordPlay(self): ... method recordStart (line 1580) | def recordStart(self, Space: EventCoordinateSpace = ..., Normalized: b... method recordStop (line 1581) | def recordStop(self): ... method recordString (line 1582) | def recordString(self) -> str: ... method sendKeyEvent (line 1583) | def sendKeyEvent(self, Type: EventType, Key: typing.SupportsInt, Modif... method sendMouseEvent (line 1584) | def sendMouseEvent(self, Type: EventType, Pos: PySide2.QtWidgets.QPoin... method sendTabletEvent (line 1585) | def sendTabletEvent(self, Type: EventType, Pos: PySide2.QtWidgets.QPoi... method __bool__ (line 1586) | def __bool__(self) -> bool: ... class ExportItem (line 1588) | class ExportItem(Metadata): method __init__ (line 1591) | def __init__(self, *args, **kwargs) -> None: ... method colorspace (line 1592) | def colorspace(self) -> str: ... method depth (line 1593) | def depth(self) -> str: ... method deserializeFromString (line 1594) | def deserializeFromString(self, XMLString: str): ... method errorStringList (line 1595) | def errorStringList(self) -> typing.List[str]: ... method exportEnabled (line 1596) | def exportEnabled(self) -> bool: ... method fileOptions (line 1597) | def fileOptions(self) -> variant: ... method fileOptionsString (line 1598) | def fileOptionsString(self) -> str: ... method fileTemplate (line 1599) | def fileTemplate(self) -> str: ... method geoEntity (line 1600) | def geoEntity(self): ... method onImageExported (line 1601) | def onImageExported(self, *args, **kwargs): ... method postProcessCommand (line 1602) | def postProcessCommand(self) -> str: ... method resolution (line 1603) | def resolution(self) -> str: ... method resolveExportFilePaths (line 1604) | def resolveExportFilePaths(self, RootPath: str = ...) -> typing.List[s... method resolveFileTemplate (line 1605) | def resolveFileTemplate(self, Overrides: variant = ...) -> str: ... method resolvedColorspace (line 1606) | def resolvedColorspace(self) -> str: ... method serializeToString (line 1607) | def serializeToString(self) -> str: ... method setColorspace (line 1608) | def setColorspace(self, Colorspace: str): ... method setDepth (line 1609) | def setDepth(self, Depth: str): ... method setErrorStringList (line 1610) | def setErrorStringList(self, ErrorStringList: typing.List[str]): ... method setExportEnabled (line 1611) | def setExportEnabled(self, ExportEnabled: bool): ... method setFileOptions (line 1612) | def setFileOptions(self, FileOptions: variant): ... method setFileTemplate (line 1613) | def setFileTemplate(self, FileTemplate: str): ... method setGeoEntity (line 1614) | def setGeoEntity(self, Entity: GeoEntity): ... method setPostProcessCommand (line 1615) | def setPostProcessCommand(self, PostProcessCommand: str): ... method setResolution (line 1616) | def setResolution(self, Resolution: str): ... method setSourceNode (line 1617) | def setSourceNode(self, SourceNode: Node): ... method setUvIndexList (line 1618) | def setUvIndexList(self, UVIndexList: typing.List[int]): ... method setWarningStringList (line 1619) | def setWarningStringList(self, WarningStringList: typing.List[str]): ... method sourceColorspace (line 1620) | def sourceColorspace(self) -> str: ... method sourceDepth (line 1621) | def sourceDepth(self) -> Image.Depth: ... method sourceDepthAsInternalFormat (line 1622) | def sourceDepthAsInternalFormat(self) -> int: ... method sourceNode (line 1623) | def sourceNode(self) -> Node: ... method sourceNodeName (line 1624) | def sourceNodeName(self) -> str: ... method sourceResolution (line 1625) | def sourceResolution(self) -> str: ... method uvIndexList (line 1626) | def uvIndexList(self) -> typing.List[int]: ... method warningStringList (line 1627) | def warningStringList(self) -> typing.List[str]: ... method __bool__ (line 1628) | def __bool__(self) -> bool: ... class ExportManager (line 1630) | class ExportManager(API): method __init__ (line 1636) | def __init__(self, *args, **kwargs) -> None: ... method addExportItem (line 1637) | def addExportItem(self, Item: ExportItem, Entity: GeoEntity): ... method checkExportItemIsValid (line 1638) | def checkExportItemIsValid(self, Item: ExportItem, Entity: GeoEntity) ... method colorspaceList (line 1639) | def colorspaceList(self) -> typing.List[str]: ... method depthList (line 1640) | def depthList(self) -> typing.List[str]: ... method exportItemList (line 1641) | def exportItemList(self, Entity: GeoEntity) -> typing.List[ExportItem]... method exportTextures (line 1642) | def exportTextures(self, ExportItems: typing.List[ExportItem], ExportR... method imageFileExtensionList (line 1643) | def imageFileExtensionList(self) -> typing.List[str]: ... method imageFileOptions (line 1644) | def imageFileOptions(self, Extension: str) -> variant: ... method imageFileOptionsWidget (line 1645) | def imageFileOptionsWidget(self, Extension: str) -> PySide2.QtWidgets.... method postProcessCommandList (line 1646) | def postProcessCommandList(self) -> typing.List[str]: ... method registerPostProcessCommand (line 1647) | def registerPostProcessCommand(self, Command: str): ... method removeExportItem (line 1648) | def removeExportItem(self, Item: ExportItem): ... method resolutionList (line 1649) | def resolutionList(self) -> typing.List[str]: ... method __bool__ (line 1650) | def __bool__(self) -> bool: ... class FaceSelectionGroup (line 1652) | class FaceSelectionGroup(SelectionGroup): method __init__ (line 1654) | def __init__(self, *args, **kwargs) -> None: ... method geoEntityList (line 1655) | def geoEntityList(self): ... method geoVersionList (line 1656) | def geoVersionList(self): ... method meshLocationToFaceSelectionIndexRangeListMap (line 1657) | def meshLocationToFaceSelectionIndexRangeListMap(self) -> dict[str, In... method __bool__ (line 1658) | def __bool__(self) -> bool: ... class FileLUTFilter (line 1660) | class FileLUTFilter(PostFilter): method __init__ (line 1662) | def __init__(self, *args, **kwargs) -> None: ... method filePath (line 1663) | def filePath(self) -> str: ... method setFilePath (line 1664) | def setFilePath(self, FilePath: str): ... method __bool__ (line 1665) | def __bool__(self) -> bool: ... class FileList (line 1667) | class FileList(API): class Type (line 1668) | class Type: method __init__ (line 1679) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1680) | def __add__(self, other): ... method __and__ (line 1681) | def __and__(self, other): ... method __bool__ (line 1682) | def __bool__(self) -> bool: ... method __eq__ (line 1683) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1684) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1685) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1686) | def __hash__(self) -> int: ... method __index__ (line 1687) | def __index__(self) -> int: ... method __int__ (line 1688) | def __int__(self) -> int: ... method __le__ (line 1689) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1690) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1691) | def __mul__(self, other): ... method __ne__ (line 1692) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1693) | def __or__(self, other): ... method __pos__ (line 1694) | def __pos__(self): ... method __radd__ (line 1695) | def __radd__(self, other): ... method __rand__ (line 1696) | def __rand__(self, other): ... method __rmul__ (line 1697) | def __rmul__(self, other): ... method __ror__ (line 1698) | def __ror__(self, other): ... method __rsub__ (line 1699) | def __rsub__(self, other): ... method __rxor__ (line 1700) | def __rxor__(self, other): ... method __sub__ (line 1701) | def __sub__(self, other): ... method __xor__ (line 1702) | def __xor__(self, other): ... method __init__ (line 1711) | def __init__(self, *args, **kwargs) -> None: ... method acceptNonExisting (line 1712) | def acceptNonExisting(self) -> bool: ... method append (line 1713) | def append(self, File: str): ... method at (line 1714) | def at(self, Index: typing.SupportsInt) -> str: ... method clear (line 1715) | def clear(self): ... method contains (line 1716) | def contains(self, File: str) -> bool: ... method count (line 1717) | def count(self) -> int: ... method defaultDirectory (line 1718) | def defaultDirectory(self) -> str: ... method filter (line 1719) | def filter(self) -> str: ... method insert (line 1720) | def insert(self, Index: typing.SupportsInt, File: str): ... method isEmpty (line 1721) | def isEmpty(self) -> bool: ... method pathKey (line 1722) | def pathKey(self) -> str: ... method pickedFile (line 1723) | def pickedFile(self) -> str: ... method removeAt (line 1724) | def removeAt(self, Index: typing.SupportsInt): ... method setAcceptNonExisting (line 1725) | def setAcceptNonExisting(self, AcceptNonExisting: bool): ... method setDefaultDirectory (line 1726) | def setDefaultDirectory(self, DefaultDirectory: str): ... method setFilter (line 1727) | def setFilter(self, Filter: str): ... method setPathKey (line 1728) | def setPathKey(self, PathKey: str): ... method setPickedFile (line 1729) | def setPickedFile(self, PickedFile: str): ... method setType (line 1730) | def setType(self, T: type): ... method type (line 1731) | def type(self) -> type: ... method __bool__ (line 1732) | def __bool__(self) -> bool: ... class FloatSlider (line 1734) | class FloatSlider(SliderBase): method __init__ (line 1737) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 1738) | def setValue(self, Value: float): ... method value (line 1739) | def value(self) -> float: ... method __bool__ (line 1740) | def __bool__(self) -> bool: ... class GLRender (line 1742) | class GLRender(API): class ShaderCompileResult (line 1743) | class ShaderCompileResult: method __init__ (line 1751) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1752) | def __add__(self, other): ... method __and__ (line 1753) | def __and__(self, other): ... method __bool__ (line 1754) | def __bool__(self) -> bool: ... method __eq__ (line 1755) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1756) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1757) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1758) | def __hash__(self) -> int: ... method __index__ (line 1759) | def __index__(self) -> int: ... method __int__ (line 1760) | def __int__(self) -> int: ... method __le__ (line 1761) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1762) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1763) | def __mul__(self, other): ... method __ne__ (line 1764) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1765) | def __or__(self, other): ... method __pos__ (line 1766) | def __pos__(self): ... method __radd__ (line 1767) | def __radd__(self, other): ... method __rand__ (line 1768) | def __rand__(self, other): ... method __rmul__ (line 1769) | def __rmul__(self, other): ... method __ror__ (line 1770) | def __ror__(self, other): ... method __rsub__ (line 1771) | def __rsub__(self, other): ... method __rxor__ (line 1772) | def __rxor__(self, other): ... method __sub__ (line 1773) | def __sub__(self, other): ... method __xor__ (line 1774) | def __xor__(self, other): ... method __init__ (line 1786) | def __init__(self, *args, **kwargs) -> None: ... method applyFilter (line 1787) | def applyFilter(self, Filter: PostFilter) -> bool: ... method clearError (line 1788) | def clearError(self): ... method createPostFilterCollection (line 1789) | def createPostFilterCollection(self, Name: str): ... method createQuickApplyGLSL (line 1790) | def createQuickApplyGLSL(self, Name: str, DefinitionsSnippet: str = ..... method currentPostFilterCollection (line 1791) | def currentPostFilterCollection(self): ... method deletePostFilterCollection (line 1792) | def deletePostFilterCollection(self, Collection: PostFilterCollection)... method deregisterCustomCubemapFile (line 1794) | def deregisterCustomCubemapFile(cls, UUID: str): ... method deregisterCustomImagemapFile (line 1796) | def deregisterCustomImagemapFile(cls, UUID: str): ... method findFilter (line 1797) | def findFilter(self, Name: str) -> PostFilter: ... method findPostFilterCollection (line 1798) | def findPostFilterCollection(self, Name: str) -> PostFilterCollection:... method findQuickApplyFilter (line 1799) | def findQuickApplyFilter(self, Name: str) -> PostFilter: ... method isCurrentGLShaderProgramValid (line 1800) | def isCurrentGLShaderProgramValid(self): ... method isPostProcessingEnabled (line 1801) | def isPostProcessingEnabled(self) -> bool: ... method platformInformation (line 1802) | def platformInformation(self): ... method postFilterCollectionNames (line 1803) | def postFilterCollectionNames(self) -> typing.List[str]: ... method postFilterCollections (line 1804) | def postFilterCollections(self) -> typing.List[PostFilterCollection]: ... method registerCustomAdjustmentLayerFromXMLFile (line 1806) | def registerCustomAdjustmentLayerFromXMLFile(cls, Name: str, FilePath:... method registerCustomBlendMode (line 1808) | def registerCustomBlendMode(cls, DisplayName: str, FunctionName: str, ... method registerCustomCodeFile (line 1810) | def registerCustomCodeFile(cls, UUID: str, FilePath: str): ... method registerCustomCubemapFile (line 1812) | def registerCustomCubemapFile(cls, UUID: str, FilePath: str, MinMipSiz... method registerCustomDiffuseShaderFromXMLFile (line 1814) | def registerCustomDiffuseShaderFromXMLFile(cls, Name: str, FilePath: s... method registerCustomHeaderFile (line 1816) | def registerCustomHeaderFile(cls, UUID: str, FilePath: str): ... method registerCustomImagemapFile (line 1818) | def registerCustomImagemapFile(cls, UUID: str, FilePath: str): ... method registerCustomLayeredShaderFromXMLFile (line 1820) | def registerCustomLayeredShaderFromXMLFile(cls, Name: str, FilePath: s... method registerCustomNodeFromXMLFile (line 1822) | def registerCustomNodeFromXMLFile(cls, Name: str, FilePath: str): ... method registerCustomProceduralLayerFromXMLFile (line 1824) | def registerCustomProceduralLayerFromXMLFile(cls, Name: str, FilePath:... method registerCustomSpecularShaderFromXMLFile (line 1826) | def registerCustomSpecularShaderFromXMLFile(cls, Name: str, FilePath: ... method registerCustomStandaloneShaderFromXMLFile (line 1828) | def registerCustomStandaloneShaderFromXMLFile(cls, Name: str, FilePath... method reloadXMLDefinitions (line 1829) | def reloadXMLDefinitions(self): ... method removeQuickApplyFilter (line 1830) | def removeQuickApplyFilter(self, Filter: PostFilter): ... method runGLSLCode (line 1831) | def runGLSLCode(self, GLSLCode: str, Destination: ImageSet, Source: Im... method setPostFilterCollection (line 1832) | def setPostFilterCollection(self, Collection: PostFilterCollection): ... method setPostProcessingEnabled (line 1833) | def setPostProcessingEnabled(self, Enabled: bool): ... method upgradeExistingShadersAndLayers (line 1834) | def upgradeExistingShadersAndLayers(self): ... method __bool__ (line 1835) | def __bool__(self) -> bool: ... class GLSLFilter (line 1837) | class GLSLFilter(PostFilter): class Clamp (line 1838) | class Clamp: method __init__ (line 1844) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1845) | def __add__(self, other): ... method __and__ (line 1846) | def __and__(self, other): ... method __bool__ (line 1847) | def __bool__(self) -> bool: ... method __eq__ (line 1848) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1849) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1850) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1851) | def __hash__(self) -> int: ... method __index__ (line 1852) | def __index__(self) -> int: ... method __int__ (line 1853) | def __int__(self) -> int: ... method __le__ (line 1854) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1855) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1856) | def __mul__(self, other): ... method __ne__ (line 1857) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1858) | def __or__(self, other): ... method __pos__ (line 1859) | def __pos__(self): ... method __radd__ (line 1860) | def __radd__(self, other): ... method __rand__ (line 1861) | def __rand__(self, other): ... method __rmul__ (line 1862) | def __rmul__(self, other): ... method __ror__ (line 1863) | def __ror__(self, other): ... method __rsub__ (line 1864) | def __rsub__(self, other): ... method __rxor__ (line 1865) | def __rxor__(self, other): ... method __sub__ (line 1866) | def __sub__(self, other): ... method __xor__ (line 1867) | def __xor__(self, other): ... class Filter (line 1869) | class Filter: method __init__ (line 1876) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1877) | def __add__(self, other): ... method __and__ (line 1878) | def __and__(self, other): ... method __bool__ (line 1879) | def __bool__(self) -> bool: ... method __eq__ (line 1880) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1881) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1882) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1883) | def __hash__(self) -> int: ... method __index__ (line 1884) | def __index__(self) -> int: ... method __int__ (line 1885) | def __int__(self) -> int: ... method __le__ (line 1886) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1887) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1888) | def __mul__(self, other): ... method __ne__ (line 1889) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1890) | def __or__(self, other): ... method __pos__ (line 1891) | def __pos__(self): ... method __radd__ (line 1892) | def __radd__(self, other): ... method __rand__ (line 1893) | def __rand__(self, other): ... method __rmul__ (line 1894) | def __rmul__(self, other): ... method __ror__ (line 1895) | def __ror__(self, other): ... method __rsub__ (line 1896) | def __rsub__(self, other): ... method __rxor__ (line 1897) | def __rxor__(self, other): ... method __sub__ (line 1898) | def __sub__(self, other): ... method __xor__ (line 1899) | def __xor__(self, other): ... class Format (line 1901) | class Format: method __init__ (line 1909) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1910) | def __add__(self, other): ... method __and__ (line 1911) | def __and__(self, other): ... method __bool__ (line 1912) | def __bool__(self) -> bool: ... method __eq__ (line 1913) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1914) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1915) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1916) | def __hash__(self) -> int: ... method __index__ (line 1917) | def __index__(self) -> int: ... method __int__ (line 1918) | def __int__(self) -> int: ... method __le__ (line 1919) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1920) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1921) | def __mul__(self, other): ... method __ne__ (line 1922) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1923) | def __or__(self, other): ... method __pos__ (line 1924) | def __pos__(self): ... method __radd__ (line 1925) | def __radd__(self, other): ... method __rand__ (line 1926) | def __rand__(self, other): ... method __rmul__ (line 1927) | def __rmul__(self, other): ... method __ror__ (line 1928) | def __ror__(self, other): ... method __rsub__ (line 1929) | def __rsub__(self, other): ... method __rxor__ (line 1930) | def __rxor__(self, other): ... method __sub__ (line 1931) | def __sub__(self, other): ... method __xor__ (line 1932) | def __xor__(self, other): ... method __init__ (line 1944) | def __init__(self, *args, **kwargs) -> None: ... method bodySnippet (line 1945) | def bodySnippet(self) -> str: ... method definitionsSnippet (line 1946) | def definitionsSnippet(self) -> str: ... method deleteTexture (line 1947) | def deleteTexture(self, SamplerName: str): ... method setBodySnippet (line 1948) | def setBodySnippet(self, BodySnippet: str): ... method setDefinitionsSnippet (line 1949) | def setDefinitionsSnippet(self, DefinitionsSnippet: str): ... method setTexture1D (line 1950) | def setTexture1D(self, SamplerName: str, Width: typing.SupportsInt, Da... method setTexture2D (line 1951) | def setTexture2D(self, SamplerName: str, Width: typing.SupportsInt, He... method setTexture3D (line 1952) | def setTexture3D(self, SamplerName: str, Width: typing.SupportsInt, He... method updateTexture1D (line 1953) | def updateTexture1D(self, SamplerName: str, Data: typing.List[float]):... method updateTexture2D (line 1954) | def updateTexture2D(self, SamplerName: str, Data: typing.List[float]):... method updateTexture3D (line 1955) | def updateTexture3D(self, SamplerName: str, Data: typing.List[float]):... method __bool__ (line 1956) | def __bool__(self) -> bool: ... class GLSLFilterFactory (line 1958) | class GLSLFilterFactory(API): method __init__ (line 1960) | def __init__(self, *args, **kwargs) -> None: ... method deregisterFilter (line 1961) | def deregisterFilter(self): ... method registerFilter (line 1962) | def registerFilter(self, CreateMenuEntries: bool = ..., IconPath: str ... method setupFilter (line 1963) | def setupFilter(self, Filter: GLSLFilter): ... method __bool__ (line 1964) | def __bool__(self) -> bool: ... class GeoChannel (line 1966) | class GeoChannel(Metadata): method __init__ (line 1970) | def __init__(self, *args, **kwargs) -> None: ... method aliases (line 1971) | def aliases(self) -> typing.List[str]: ... method geoChannelLayers (line 1972) | def geoChannelLayers(self) -> typing.List[Layer]: ... method geoChannelNodes (line 1973) | def geoChannelNodes(self) -> typing.List[GeoChannelNode]: ... method imageSet (line 1974) | def imageSet(self) -> ImageSet: ... method name (line 1975) | def name(self) -> str: ... method setAliases (line 1976) | def setAliases(self, Aliases: typing.List[str]): ... method setImageSet (line 1977) | def setImageSet(self, ImageSetObject: ImageSet): ... method setName (line 1978) | def setName(self, Name: str): ... method __bool__ (line 1979) | def __bool__(self) -> bool: ... class GeoChannelNode (line 1981) | class GeoChannelNode(Node): method __init__ (line 1984) | def __init__(self, *args, **kwargs) -> None: ... method geoChannelName (line 1985) | def geoChannelName(self): ... method isGeoChannelNode (line 1986) | def isGeoChannelNode(self) -> bool: ... method setGeoChannelName (line 1987) | def setGeoChannelName(self, Name: str): ... method __bool__ (line 1988) | def __bool__(self) -> bool: ... class GeoEntity (line 1990) | class GeoEntity(Lockable): class ChannelDestroyStrategy (line 1991) | class ChannelDestroyStrategy: method __init__ (line 1998) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1999) | def __add__(self, other): ... method __and__ (line 2000) | def __and__(self, other): ... method __bool__ (line 2001) | def __bool__(self) -> bool: ... method __eq__ (line 2002) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2003) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2004) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2005) | def __hash__(self) -> int: ... method __index__ (line 2006) | def __index__(self) -> int: ... method __int__ (line 2007) | def __int__(self) -> int: ... method __le__ (line 2008) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2009) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2010) | def __mul__(self, other): ... method __ne__ (line 2011) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2012) | def __or__(self, other): ... method __pos__ (line 2013) | def __pos__(self): ... method __radd__ (line 2014) | def __radd__(self, other): ... method __rand__ (line 2015) | def __rand__(self, other): ... method __rmul__ (line 2016) | def __rmul__(self, other): ... method __ror__ (line 2017) | def __ror__(self, other): ... method __rsub__ (line 2018) | def __rsub__(self, other): ... method __rxor__ (line 2019) | def __rxor__(self, other): ... method __sub__ (line 2020) | def __sub__(self, other): ... method __xor__ (line 2021) | def __xor__(self, other): ... class SystemShaderType (line 2023) | class SystemShaderType: method __init__ (line 2031) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2032) | def __add__(self, other): ... method __and__ (line 2033) | def __and__(self, other): ... method __bool__ (line 2034) | def __bool__(self) -> bool: ... method __eq__ (line 2035) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2036) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2037) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2038) | def __hash__(self) -> int: ... method __index__ (line 2039) | def __index__(self) -> int: ... method __int__ (line 2040) | def __int__(self) -> int: ... method __le__ (line 2041) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2042) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2043) | def __mul__(self, other): ... method __ne__ (line 2044) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2045) | def __or__(self, other): ... method __pos__ (line 2046) | def __pos__(self): ... method __radd__ (line 2047) | def __radd__(self, other): ... method __rand__ (line 2048) | def __rand__(self, other): ... method __rmul__ (line 2049) | def __rmul__(self, other): ... method __ror__ (line 2050) | def __ror__(self, other): ... method __rsub__ (line 2051) | def __rsub__(self, other): ... method __rxor__ (line 2052) | def __rxor__(self, other): ... method __sub__ (line 2053) | def __sub__(self, other): ... method __xor__ (line 2054) | def __xor__(self, other): ... method __init__ (line 2079) | def __init__(self, *args, **kwargs) -> None: ... method addLocator (line 2080) | def addLocator(self) -> LocatorEntity: ... method addVersion (line 2081) | def addVersion(self, Paths: variant, Name: str, Options: variant = ...... method boundingBoxLowerBounds (line 2082) | def boundingBoxLowerBounds(self) -> VectorN: ... method boundingBoxUpperBounds (line 2083) | def boundingBoxUpperBounds(self) -> VectorN: ... method boundingSphereCenter (line 2084) | def boundingSphereCenter(self) -> VectorN: ... method boundingSphereRadius (line 2085) | def boundingSphereRadius(self) -> float: ... method channel (line 2086) | def channel(self, ChannelName: str) -> Channel: ... method channelList (line 2087) | def channelList(self) -> typing.List[Channel]: ... method completePatchList (line 2088) | def completePatchList(self) -> typing.List[GeoPatch]: ... method createChannel (line 2089) | def createChannel(self, Name: str, Width: typing.SupportsInt, Height: ... method createDuplicateChannel (line 2090) | def createDuplicateChannel(self, ChannelToDuplicate: Channel, NewChann... method createDuplicateShader (line 2091) | def createDuplicateShader(self, ShaderToDuplicate: Shader, NewShaderNa... method createGeoChannel (line 2092) | def createGeoChannel(self) -> GeoChannel: ... method createLayeredShader (line 2093) | def createLayeredShader(self, Name: str, LayeredType: str) -> Shader: ... method createPtexChannel (line 2094) | def createPtexChannel(self, Name: str, Depth: typing.SupportsInt) -> C... method createStandaloneShader (line 2095) | def createStandaloneShader(self, Name: str, StandaloneType: str) -> Sh... method currentChannel (line 2096) | def currentChannel(self) -> Channel: ... method currentImageSet (line 2097) | def currentImageSet(self) -> ImageSet: ... method currentShader (line 2098) | def currentShader(self) -> Shader: ... method currentVersion (line 2099) | def currentVersion(self) -> GeoEntityVersion: ... method currentVersionName (line 2100) | def currentVersionName(self) -> str: ... method exportAsArchive (line 2101) | def exportAsArchive(self, DirPath: str): ... method findChannel (line 2102) | def findChannel(self, name: str) -> Channel: ... method findGeoChannel (line 2103) | def findGeoChannel(self, Alias: str) -> GeoChannel: ... method findImageSet (line 2104) | def findImageSet(self): ... method findShader (line 2105) | def findShader(self, Name: str) -> Shader: ... method generateSubdivision (line 2106) | def generateSubdivision(self, Options: dict[str, variant]) -> bool: ... method geoChannels (line 2107) | def geoChannels(self) -> typing.List[GeoChannel]: ... method hideLocator (line 2108) | def hideLocator(self): ... method imageSet (line 2109) | def imageSet(self): ... method imageSetList (line 2110) | def imageSetList(self) -> typing.List[ImageSet]: ... method imageSetNames (line 2111) | def imageSetNames(self) -> typing.List[str]: ... method importFromArchive (line 2112) | def importFromArchive(self, DirPath: str): ... method isPtex (line 2113) | def isPtex(self): ... method isSelected (line 2114) | def isSelected(self) -> bool: ... method maximumSubdivisionLevel (line 2115) | def maximumSubdivisionLevel(self): ... method missingGeoChannels (line 2116) | def missingGeoChannels(self) -> typing.List[str]: ... method name (line 2117) | def name(self) -> str: ... method nodeGraph (line 2118) | def nodeGraph(self) -> NodeGraph: ... method patch (line 2119) | def patch(self, UvIndex: typing.SupportsInt) -> GeoPatch: ... method patchImage (line 2120) | def patchImage(self, Patch: GeoPatch, pImageSet: ImageSet) -> Image: ... method patchList (line 2121) | def patchList(self) -> typing.List[GeoPatch]: ... method remapSubdivisionSettings (line 2122) | def remapSubdivisionSettings(self, Options: dict[str, variant]): ... method removeChannel (line 2123) | def removeChannel(self, ChannelToRemove: Channel, Strategy: ChannelDes... method removeGeoChannel (line 2124) | def removeGeoChannel(self, GeoChannelObject: GeoChannel): ... method removeShader (line 2125) | def removeShader(self, ShaderToRemove: Shader, RetractionMode: Shader.... method removeVersion (line 2126) | def removeVersion(self, VersionName: str): ... method renameVersion (line 2127) | def renameVersion(self, OldName: str, NewName: str): ... method save (line 2128) | def save(self, FileName: str, Format: str = ...): ... method selectedPatches (line 2129) | def selectedPatches(self) -> typing.List[GeoPatch]: ... method setCurrentChannel (line 2130) | def setCurrentChannel(self, NewCurrentChannel: Channel): ... method setCurrentImageSet (line 2131) | def setCurrentImageSet(self, NewCurrentImageSet: variant): ... method setCurrentShader (line 2132) | def setCurrentShader(self, NewCurrentShader: Shader): ... method setCurrentVersion (line 2133) | def setCurrentVersion(self, VersionName: str): ... method setName (line 2134) | def setName(self, NewName: str): ... method setSelected (line 2135) | def setSelected(self, Selected: bool): ... method setSubdivisionLevel (line 2136) | def setSubdivisionLevel(self, Level: typing.SupportsInt): ... method setTransform (line 2137) | def setTransform(self, pTransform: Matrix, Frame: typing.SupportsInt =... method shader (line 2138) | def shader(self, Name: str) -> Shader: ... method shaderLayeredTypeList (line 2140) | def shaderLayeredTypeList(cls, *args, **kwargs): ... method shaderList (line 2141) | def shaderList(self) -> typing.List[Shader]: ... method shaderStandaloneTypeList (line 2143) | def shaderStandaloneTypeList(cls, *args, **kwargs): ... method showLocator (line 2144) | def showLocator(self): ... method subdivisionBoundaryInterpolateMethod (line 2145) | def subdivisionBoundaryInterpolateMethod(self): ... method subdivisionCreasing (line 2146) | def subdivisionCreasing(self): ... method subdivisionFaceVaryingBoundaryInterpolateMethod (line 2147) | def subdivisionFaceVaryingBoundaryInterpolateMethod(self): ... method subdivisionScheme (line 2148) | def subdivisionScheme(self): ... method subdivisionSkippedMeshList (line 2149) | def subdivisionSkippedMeshList(self): ... method subdivisionTriangleSubdivisionRule (line 2150) | def subdivisionTriangleSubdivisionRule(self): ... method systemShader (line 2151) | def systemShader(self, Type: SystemShaderType) -> Shader: ... method transform (line 2152) | def transform(self, Frame: typing.SupportsInt) -> Matrix: ... method translation (line 2153) | def translation(self, Frame: typing.SupportsInt = ...) -> VectorN: ... method version (line 2154) | def version(self, VersionName: str) -> GeoEntityVersion: ... method versionList (line 2155) | def versionList(self) -> typing.List[GeoEntityVersion]: ... method versionNames (line 2156) | def versionNames(self) -> typing.List[str]: ... method __bool__ (line 2157) | def __bool__(self) -> bool: ... class GeoEntityVersion (line 2159) | class GeoEntityVersion(Metadata): method __init__ (line 2168) | def __init__(self, *args, **kwargs) -> None: ... method created (line 2169) | def created(self) -> PySide2.QtWidgets.QDateTime: ... method creator (line 2170) | def creator(self) -> str: ... method geoEntity (line 2171) | def geoEntity(self) -> GeoEntity: ... method geometryCount (line 2172) | def geometryCount(self) -> int: ... method load (line 2173) | def load(self) -> bool: ... method meshLocationToFaceCountMap (line 2174) | def meshLocationToFaceCountMap(self) -> dict[str, int]: ... method meshPaths (line 2175) | def meshPaths(self) -> typing.List[str]: ... method modified (line 2176) | def modified(self) -> PySide2.QtWidgets.QDateTime: ... method name (line 2177) | def name(self) -> str: ... method patchList (line 2178) | def patchList(self) -> typing.List[GeoPatch]: ... method path (line 2179) | def path(self) -> str: ... method setCreated (line 2180) | def setCreated(self, CreatedDate: PySide2.QtWidgets.QDateTime): ... method setCreator (line 2181) | def setCreator(self, Creator: str): ... method setMeshPaths (line 2182) | def setMeshPaths(self, Paths: typing.List[str]): ... method setModified (line 2183) | def setModified(self, ModifiedDate: PySide2.QtWidgets.QDateTime): ... method setName (line 2184) | def setName(self, NewName: str): ... method setPath (line 2185) | def setPath(self, Path: str): ... method setSettings (line 2186) | def setSettings(self, NewSettings: variant): ... method setSettingsString (line 2187) | def setSettingsString(self, SettingsString: str): ... method settings (line 2188) | def settings(self) -> variant: ... method settingsString (line 2189) | def settingsString(self) -> str: ... method sourceMeshLocationList (line 2190) | def sourceMeshLocationList(self) -> typing.List[str]: ... method __bool__ (line 2191) | def __bool__(self) -> bool: ... class GeoManager (line 2193) | class GeoManager(API): class CreateSelectionSetOptions (line 2194) | class CreateSelectionSetOptions: method __init__ (line 2200) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2201) | def __add__(self, other): ... method __and__ (line 2202) | def __and__(self, other): ... method __bool__ (line 2203) | def __bool__(self) -> bool: ... method __eq__ (line 2204) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2205) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2206) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2207) | def __hash__(self) -> int: ... method __index__ (line 2208) | def __index__(self) -> int: ... method __int__ (line 2209) | def __int__(self) -> int: ... method __le__ (line 2210) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2211) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2212) | def __mul__(self, other): ... method __ne__ (line 2213) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2214) | def __or__(self, other): ... method __pos__ (line 2215) | def __pos__(self): ... method __radd__ (line 2216) | def __radd__(self, other): ... method __rand__ (line 2217) | def __rand__(self, other): ... method __rmul__ (line 2218) | def __rmul__(self, other): ... method __ror__ (line 2219) | def __ror__(self, other): ... method __rsub__ (line 2220) | def __rsub__(self, other): ... method __rxor__ (line 2221) | def __rxor__(self, other): ... method __sub__ (line 2222) | def __sub__(self, other): ... method __xor__ (line 2223) | def __xor__(self, other): ... class GeometryImportFlags (line 2225) | class GeometryImportFlags: method __init__ (line 2231) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2232) | def __add__(self, other): ... method __and__ (line 2233) | def __and__(self, other): ... method __bool__ (line 2234) | def __bool__(self) -> bool: ... method __eq__ (line 2235) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2236) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2237) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2238) | def __hash__(self) -> int: ... method __index__ (line 2239) | def __index__(self) -> int: ... method __int__ (line 2240) | def __int__(self) -> int: ... method __le__ (line 2241) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2242) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2243) | def __mul__(self, other): ... method __ne__ (line 2244) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2245) | def __or__(self, other): ... method __pos__ (line 2246) | def __pos__(self): ... method __radd__ (line 2247) | def __radd__(self, other): ... method __rand__ (line 2248) | def __rand__(self, other): ... method __rmul__ (line 2249) | def __rmul__(self, other): ... method __ror__ (line 2250) | def __ror__(self, other): ... method __rsub__ (line 2251) | def __rsub__(self, other): ... method __rxor__ (line 2252) | def __rxor__(self, other): ... method __sub__ (line 2253) | def __sub__(self, other): ... method __xor__ (line 2254) | def __xor__(self, other): ... class MergeSelectionGroupWithSameNameType (line 2256) | class MergeSelectionGroupWithSameNameType: method __init__ (line 2262) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2263) | def __add__(self, other): ... method __and__ (line 2264) | def __and__(self, other): ... method __bool__ (line 2265) | def __bool__(self) -> bool: ... method __eq__ (line 2266) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2267) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2268) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2269) | def __hash__(self) -> int: ... method __index__ (line 2270) | def __index__(self) -> int: ... method __int__ (line 2271) | def __int__(self) -> int: ... method __le__ (line 2272) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2273) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2274) | def __mul__(self, other): ... method __ne__ (line 2275) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2276) | def __or__(self, other): ... method __pos__ (line 2277) | def __pos__(self): ... method __radd__ (line 2278) | def __radd__(self, other): ... method __rand__ (line 2279) | def __rand__(self, other): ... method __rmul__ (line 2280) | def __rmul__(self, other): ... method __ror__ (line 2281) | def __ror__(self, other): ... method __rsub__ (line 2282) | def __rsub__(self, other): ... method __rxor__ (line 2283) | def __rxor__(self, other): ... method __sub__ (line 2284) | def __sub__(self, other): ... method __xor__ (line 2285) | def __xor__(self, other): ... class MergeType (line 2287) | class MergeType: method __init__ (line 2293) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2294) | def __add__(self, other): ... method __and__ (line 2295) | def __and__(self, other): ... method __bool__ (line 2296) | def __bool__(self) -> bool: ... method __eq__ (line 2297) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2298) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2299) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2300) | def __hash__(self) -> int: ... method __index__ (line 2301) | def __index__(self) -> int: ... method __int__ (line 2302) | def __int__(self) -> int: ... method __le__ (line 2303) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2304) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2305) | def __mul__(self, other): ... method __ne__ (line 2306) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2307) | def __or__(self, other): ... method __pos__ (line 2308) | def __pos__(self): ... method __radd__ (line 2309) | def __radd__(self, other): ... method __rand__ (line 2310) | def __rand__(self, other): ... method __rmul__ (line 2311) | def __rmul__(self, other): ... method __ror__ (line 2312) | def __ror__(self, other): ... method __rsub__ (line 2313) | def __rsub__(self, other): ... method __rxor__ (line 2314) | def __rxor__(self, other): ... method __sub__ (line 2315) | def __sub__(self, other): ... method __xor__ (line 2316) | def __xor__(self, other): ... class NodeType (line 2318) | class NodeType: method __init__ (line 2328) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2329) | def __add__(self, other): ... method __and__ (line 2330) | def __and__(self, other): ... method __bool__ (line 2331) | def __bool__(self) -> bool: ... method __eq__ (line 2332) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2333) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2334) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2335) | def __hash__(self) -> int: ... method __index__ (line 2336) | def __index__(self) -> int: ... method __int__ (line 2337) | def __int__(self) -> int: ... method __le__ (line 2338) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2339) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2340) | def __mul__(self, other): ... method __ne__ (line 2341) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2342) | def __or__(self, other): ... method __pos__ (line 2343) | def __pos__(self): ... method __radd__ (line 2344) | def __radd__(self, other): ... method __rand__ (line 2345) | def __rand__(self, other): ... method __rmul__ (line 2346) | def __rmul__(self, other): ... method __ror__ (line 2347) | def __ror__(self, other): ... method __rsub__ (line 2348) | def __rsub__(self, other): ... method __rxor__ (line 2349) | def __rxor__(self, other): ... method __sub__ (line 2350) | def __sub__(self, other): ... method __xor__ (line 2351) | def __xor__(self, other): ... class OpenSubdivisionBoundaryInterpolation (line 2353) | class OpenSubdivisionBoundaryInterpolation: method __init__ (line 2360) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2361) | def __add__(self, other): ... method __and__ (line 2362) | def __and__(self, other): ... method __bool__ (line 2363) | def __bool__(self) -> bool: ... method __eq__ (line 2364) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2365) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2366) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2367) | def __hash__(self) -> int: ... method __index__ (line 2368) | def __index__(self) -> int: ... method __int__ (line 2369) | def __int__(self) -> int: ... method __le__ (line 2370) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2371) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2372) | def __mul__(self, other): ... method __ne__ (line 2373) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2374) | def __or__(self, other): ... method __pos__ (line 2375) | def __pos__(self): ... method __radd__ (line 2376) | def __radd__(self, other): ... method __rand__ (line 2377) | def __rand__(self, other): ... method __rmul__ (line 2378) | def __rmul__(self, other): ... method __ror__ (line 2379) | def __ror__(self, other): ... method __rsub__ (line 2380) | def __rsub__(self, other): ... method __rxor__ (line 2381) | def __rxor__(self, other): ... method __sub__ (line 2382) | def __sub__(self, other): ... method __xor__ (line 2383) | def __xor__(self, other): ... class OpenSubdivisionCreasingMethod (line 2385) | class OpenSubdivisionCreasingMethod: method __init__ (line 2391) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2392) | def __add__(self, other): ... method __and__ (line 2393) | def __and__(self, other): ... method __bool__ (line 2394) | def __bool__(self) -> bool: ... method __eq__ (line 2395) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2396) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2397) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2398) | def __hash__(self) -> int: ... method __index__ (line 2399) | def __index__(self) -> int: ... method __int__ (line 2400) | def __int__(self) -> int: ... method __le__ (line 2401) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2402) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2403) | def __mul__(self, other): ... method __ne__ (line 2404) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2405) | def __or__(self, other): ... method __pos__ (line 2406) | def __pos__(self): ... method __radd__ (line 2407) | def __radd__(self, other): ... method __rand__ (line 2408) | def __rand__(self, other): ... method __rmul__ (line 2409) | def __rmul__(self, other): ... method __ror__ (line 2410) | def __ror__(self, other): ... method __rsub__ (line 2411) | def __rsub__(self, other): ... method __rxor__ (line 2412) | def __rxor__(self, other): ... method __sub__ (line 2413) | def __sub__(self, other): ... method __xor__ (line 2414) | def __xor__(self, other): ... class OpenSubdivisionFaceVaryingInterpolation (line 2416) | class OpenSubdivisionFaceVaryingInterpolation: method __init__ (line 2426) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2427) | def __add__(self, other): ... method __and__ (line 2428) | def __and__(self, other): ... method __bool__ (line 2429) | def __bool__(self) -> bool: ... method __eq__ (line 2430) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2431) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2432) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2433) | def __hash__(self) -> int: ... method __index__ (line 2434) | def __index__(self) -> int: ... method __int__ (line 2435) | def __int__(self) -> int: ... method __le__ (line 2436) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2437) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2438) | def __mul__(self, other): ... method __ne__ (line 2439) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2440) | def __or__(self, other): ... method __pos__ (line 2441) | def __pos__(self): ... method __radd__ (line 2442) | def __radd__(self, other): ... method __rand__ (line 2443) | def __rand__(self, other): ... method __rmul__ (line 2444) | def __rmul__(self, other): ... method __ror__ (line 2445) | def __ror__(self, other): ... method __rsub__ (line 2446) | def __rsub__(self, other): ... method __rxor__ (line 2447) | def __rxor__(self, other): ... method __sub__ (line 2448) | def __sub__(self, other): ... method __xor__ (line 2449) | def __xor__(self, other): ... class OpenSubdivisionSchemeType (line 2451) | class OpenSubdivisionSchemeType: method __init__ (line 2458) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2459) | def __add__(self, other): ... method __and__ (line 2460) | def __and__(self, other): ... method __bool__ (line 2461) | def __bool__(self) -> bool: ... method __eq__ (line 2462) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2463) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2464) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2465) | def __hash__(self) -> int: ... method __index__ (line 2466) | def __index__(self) -> int: ... method __int__ (line 2467) | def __int__(self) -> int: ... method __le__ (line 2468) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2469) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2470) | def __mul__(self, other): ... method __ne__ (line 2471) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2472) | def __or__(self, other): ... method __pos__ (line 2473) | def __pos__(self): ... method __radd__ (line 2474) | def __radd__(self, other): ... method __rand__ (line 2475) | def __rand__(self, other): ... method __rmul__ (line 2476) | def __rmul__(self, other): ... method __ror__ (line 2477) | def __ror__(self, other): ... method __rsub__ (line 2478) | def __rsub__(self, other): ... method __rxor__ (line 2479) | def __rxor__(self, other): ... method __sub__ (line 2480) | def __sub__(self, other): ... method __xor__ (line 2481) | def __xor__(self, other): ... class OpenSubdivisionTriangleSubdivision (line 2483) | class OpenSubdivisionTriangleSubdivision: method __init__ (line 2489) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2490) | def __add__(self, other): ... method __and__ (line 2491) | def __and__(self, other): ... method __bool__ (line 2492) | def __bool__(self) -> bool: ... method __eq__ (line 2493) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2494) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2495) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2496) | def __hash__(self) -> int: ... method __index__ (line 2497) | def __index__(self) -> int: ... method __int__ (line 2498) | def __int__(self) -> int: ... method __le__ (line 2499) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2500) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2501) | def __mul__(self, other): ... method __ne__ (line 2502) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2503) | def __or__(self, other): ... method __pos__ (line 2504) | def __pos__(self): ... method __radd__ (line 2505) | def __radd__(self, other): ... method __rand__ (line 2506) | def __rand__(self, other): ... method __rmul__ (line 2507) | def __rmul__(self, other): ... method __ror__ (line 2508) | def __ror__(self, other): ... method __rsub__ (line 2509) | def __rsub__(self, other): ... method __rxor__ (line 2510) | def __rxor__(self, other): ... method __sub__ (line 2511) | def __sub__(self, other): ... method __xor__ (line 2512) | def __xor__(self, other): ... method __init__ (line 2547) | def __init__(self, *args, **kwargs) -> None: ... method addLocator (line 2548) | def addLocator(self, AddAsChildToSelectedObject: bool = ...) -> Locato... method current (line 2549) | def current(self) -> GeoEntity: ... method currentLocator (line 2550) | def currentLocator(self) -> LocatorEntity: ... method duplicateCurrentGeoEntity (line 2551) | def duplicateCurrentGeoEntity(self, DuplicateShaderNetwork: bool = ...... method duplicateGeoEntity (line 2552) | def duplicateGeoEntity(self, Object: GeoEntity, DuplicateShaderNetwork... method find (line 2553) | def find(self, Name: str) -> GeoEntity: ... method geometryOperationList (line 2554) | def geometryOperationList(self) -> typing.List[GeometryOperation]: ... method get (line 2555) | def get(self, Name: str) -> GeoEntity: ... method getAnimationTakes (line 2556) | def getAnimationTakes(self, Path: str) -> typing.List[str]: ... method getDefaultAnimationTake (line 2557) | def getDefaultAnimationTake(self, Path: str) -> str: ... method getFileContents (line 2558) | def getFileContents(self, Path: str) -> variant: ... method getFileFrameRange (line 2559) | def getFileFrameRange(self, Path: str, Take: str = ...) -> typing.List... method importFromArchive (line 2560) | def importFromArchive(self, DirPath: str): ... method list (line 2561) | def list(self) -> typing.List[GeoEntity]: ... method listLocators (line 2562) | def listLocators(self) -> typing.List[LocatorEntity]: ... method load (line 2563) | def load(self, Path: str, Options: variant = ..., ObjectsToLoad: varia... method names (line 2564) | def names(self) -> typing.List[str]: ... method recalculatePatchBounds (line 2565) | def recalculatePatchBounds(self): ... method remove (line 2566) | def remove(self, Name: str): ... method setCurrent (line 2567) | def setCurrent(self, Name: str): ... method supportedReadFormats (line 2568) | def supportedReadFormats(self) -> typing.List[str]: ... method __bool__ (line 2569) | def __bool__(self) -> bool: ... class GeoPatch (line 2571) | class GeoPatch(Lockable): method __init__ (line 2573) | def __init__(self, *args, **kwargs) -> None: ... method isLocked (line 2574) | def isLocked(self) -> bool: ... method isSelected (line 2575) | def isSelected(self) -> bool: ... method isValid (line 2576) | def isValid(self) -> bool: ... method isVisible (line 2577) | def isVisible(self) -> bool: ... method name (line 2578) | def name(self) -> str: ... method setLocked (line 2579) | def setLocked(self, Locked: bool): ... method setName (line 2580) | def setName(self, Name: str): ... method setSelected (line 2581) | def setSelected(self, Selected: bool): ... method setVisibility (line 2582) | def setVisibility(self, Visible: bool): ... method u (line 2583) | def u(self) -> int: ... method udim (line 2584) | def udim(self) -> int: ... method uv (line 2585) | def uv(self) -> PySide2.QtWidgets.QPoint: ... method uvIndex (line 2586) | def uvIndex(self) -> int: ... method v (line 2587) | def v(self) -> int: ... method __bool__ (line 2588) | def __bool__(self) -> bool: ... class GeometryOperation (line 2590) | class GeometryOperation(Metadata): method __init__ (line 2593) | def __init__(cls, *args, **kwargs) -> None: ... method execute (line 2594) | def execute(self, Operation: str, GeometryEntity: GeoEntity, GeoVersio... method name (line 2595) | def name(self) -> str: ... method operationDescription (line 2596) | def operationDescription(self, Name: str) -> str: ... method supportedOperations (line 2597) | def supportedOperations(self) -> typing.List[str]: ... method __bool__ (line 2598) | def __bool__(self) -> bool: ... class GraphLayer (line 2600) | class GraphLayer(AdjustableLayer): method __init__ (line 2602) | def __init__(self, *args, **kwargs) -> None: ... method convertToPaintable (line 2603) | def convertToPaintable(self, SelectedOnly: bool = ...): ... method nodeGraph (line 2604) | def nodeGraph(self) -> NodeGraph: ... method __bool__ (line 2605) | def __bool__(self) -> bool: ... class GroupLayer (line 2607) | class GroupLayer(AdjustableLayer): method __init__ (line 2609) | def __init__(self, *args, **kwargs) -> None: ... method flattenLayerGroup (line 2610) | def flattenLayerGroup(self) -> bool: ... method layerStack (line 2611) | def layerStack(self) -> LayerStack: ... method __bool__ (line 2612) | def __bool__(self) -> bool: ... class GroupNode (line 2614) | class GroupNode(Node): method __init__ (line 2616) | def __init__(self, *args, **kwargs) -> None: ... method childNodeGraph (line 2617) | def childNodeGraph(self) -> NodeGraph: ... method convertToCustomProcedural (line 2618) | def convertToCustomProcedural(self): ... method createKnob (line 2619) | def createKnob(self, KnobName: str, TargetNode: Node, TargetAttributeN... method deleteKnob (line 2620) | def deleteKnob(self, KnobName: str, TargetNode: Node, TargetAttributeN... method groupInputNode (line 2621) | def groupInputNode(self, InputName: str) -> Node: ... method groupOutputNode (line 2622) | def groupOutputNode(self, OutputName: str) -> Node: ... method isGroupNode (line 2623) | def isGroupNode(self) -> bool: ... method knobList (line 2624) | def knobList(self) -> typing.List[variant]: ... method linkKnobs (line 2625) | def linkKnobs(self, KnobName: str, TargetKnobNames: typing.List[str], ... method renameKnob (line 2626) | def renameKnob(self, OldName: str, NewName: str): ... method __bool__ (line 2627) | def __bool__(self) -> bool: ... class History (line 2629) | class History(API): method __init__ (line 2631) | def __init__(self, *args, **kwargs) -> None: ... method cancelMacro (line 2632) | def cancelMacro(self): ... method clear (line 2633) | def clear(self, ShowDialog: bool = ...): ... method isMacroActive (line 2634) | def isMacroActive(self) -> bool: ... method redo (line 2635) | def redo(self) -> bool: ... method startMacro (line 2636) | def startMacro(self, MacroName: str): ... method stopMacro (line 2637) | def stopMacro(self): ... method undo (line 2638) | def undo(self) -> bool: ... method __bool__ (line 2639) | def __bool__(self) -> bool: ... class Image (line 2641) | class Image(Metadata): class Depth (line 2642) | class Depth: method __init__ (line 2649) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2650) | def __add__(self, other): ... method __and__ (line 2651) | def __and__(self, other): ... method __bool__ (line 2652) | def __bool__(self) -> bool: ... method __eq__ (line 2653) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2654) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2655) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2656) | def __hash__(self) -> int: ... method __index__ (line 2657) | def __index__(self) -> int: ... method __int__ (line 2658) | def __int__(self) -> int: ... method __le__ (line 2659) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2660) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2661) | def __mul__(self, other): ... method __ne__ (line 2662) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2663) | def __or__(self, other): ... method __pos__ (line 2664) | def __pos__(self): ... method __radd__ (line 2665) | def __radd__(self, other): ... method __rand__ (line 2666) | def __rand__(self, other): ... method __rmul__ (line 2667) | def __rmul__(self, other): ... method __ror__ (line 2668) | def __ror__(self, other): ... method __rsub__ (line 2669) | def __rsub__(self, other): ... method __rxor__ (line 2670) | def __rxor__(self, other): ... method __sub__ (line 2671) | def __sub__(self, other): ... method __xor__ (line 2672) | def __xor__(self, other): ... class FileSpace (line 2674) | class FileSpace: method __init__ (line 2682) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2683) | def __add__(self, other): ... method __and__ (line 2684) | def __and__(self, other): ... method __bool__ (line 2685) | def __bool__(self) -> bool: ... method __eq__ (line 2686) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2687) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2688) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2689) | def __hash__(self) -> int: ... method __index__ (line 2690) | def __index__(self) -> int: ... method __int__ (line 2691) | def __int__(self) -> int: ... method __le__ (line 2692) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2694) | def __mul__(self, other): ... method __ne__ (line 2695) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2696) | def __or__(self, other): ... method __pos__ (line 2697) | def __pos__(self): ... method __radd__ (line 2698) | def __radd__(self, other): ... method __rand__ (line 2699) | def __rand__(self, other): ... method __rmul__ (line 2700) | def __rmul__(self, other): ... method __ror__ (line 2701) | def __ror__(self, other): ... method __rsub__ (line 2702) | def __rsub__(self, other): ... method __rxor__ (line 2703) | def __rxor__(self, other): ... method __sub__ (line 2704) | def __sub__(self, other): ... method __xor__ (line 2705) | def __xor__(self, other): ... class SaveOptions (line 2707) | class SaveOptions: method __init__ (line 2717) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2718) | def __add__(self, other): ... method __and__ (line 2719) | def __and__(self, other): ... method __bool__ (line 2720) | def __bool__(self) -> bool: ... method __eq__ (line 2721) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2722) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2723) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2724) | def __hash__(self) -> int: ... method __index__ (line 2725) | def __index__(self) -> int: ... method __int__ (line 2726) | def __int__(self) -> int: ... method __le__ (line 2727) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2728) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2729) | def __mul__(self, other): ... method __ne__ (line 2730) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2731) | def __or__(self, other): ... method __pos__ (line 2732) | def __pos__(self): ... method __radd__ (line 2733) | def __radd__(self, other): ... method __rand__ (line 2734) | def __rand__(self, other): ... method __rmul__ (line 2735) | def __rmul__(self, other): ... method __ror__ (line 2736) | def __ror__(self, other): ... method __rsub__ (line 2737) | def __rsub__(self, other): ... method __rxor__ (line 2738) | def __rxor__(self, other): ... method __sub__ (line 2739) | def __sub__(self, other): ... method __xor__ (line 2740) | def __xor__(self, other): ... method __init__ (line 2761) | def __init__(self, *args, **kwargs) -> None: ... method close (line 2762) | def close(self): ... method colorspaceConfig (line 2763) | def colorspaceConfig(self) -> ColorspaceConfig: ... method convertDepth (line 2764) | def convertDepth(self, Depth: Image.Depth): ... method copyFrom (line 2765) | def copyFrom(self, SourceImage: Image): ... method depth (line 2766) | def depth(self): ... method depthAsInternalFormat (line 2768) | def depthAsInternalFormat(cls, Depth: Image.Depth) -> int: ... method filePath (line 2769) | def filePath(self) -> str: ... method fileSpace (line 2770) | def fileSpace(self): ... method fill (line 2771) | def fill(self, FillColor: Color): ... method hash (line 2772) | def hash(self) -> str: ... method height (line 2773) | def height(self, MipMapLevel: typing.SupportsInt = ...) -> int: ... method isUniform (line 2774) | def isUniform(self) -> bool: ... method lastExportPath (line 2775) | def lastExportPath(self) -> str: ... method lastExportTime (line 2776) | def lastExportTime(self) -> PySide2.QtWidgets.QDateTime: ... method lastImportPath (line 2777) | def lastImportPath(self) -> str: ... method lastImportTime (line 2778) | def lastImportTime(self) -> PySide2.QtWidgets.QDateTime: ... method makeThumbnail (line 2779) | def makeThumbnail(self): ... method mipMapCount (line 2780) | def mipMapCount(self) -> int: ... method mostRelevantPath (line 2781) | def mostRelevantPath(self) -> str: ... method resize (line 2782) | def resize(self, NewSize: PySide2.QtWidgets.QSize): ... method saveAs (line 2783) | def saveAs(self, FileName: str, Options: variant = ..., SaveOpts: typi... method setColorspaceConfig (line 2784) | def setColorspaceConfig(self, Config: ColorspaceConfig): ... method setFileSpace (line 2785) | def setFileSpace(self): ... method setUniformColor (line 2786) | def setUniformColor(self, pUniformColor: Color): ... method size (line 2787) | def size(self, MipMapLevel: typing.SupportsInt = ...) -> typing.List[i... method thumbnail (line 2788) | def thumbnail(self): ... method transform (line 2789) | def transform(self, Collection: PostFilterCollection) -> bool: ... method uniformColor (line 2790) | def uniformColor(self) -> Color: ... method width (line 2791) | def width(self, MipMapLevel: typing.SupportsInt = ...) -> int: ... method __bool__ (line 2792) | def __bool__(self) -> bool: ... class ImageManager (line 2794) | class ImageManager(Metadata): class ImageAlphaProcessing (line 2795) | class ImageAlphaProcessing: method __init__ (line 2801) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2802) | def __add__(self, other): ... method __and__ (line 2803) | def __and__(self, other): ... method __bool__ (line 2804) | def __bool__(self) -> bool: ... method __eq__ (line 2805) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2806) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2807) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2808) | def __hash__(self) -> int: ... method __index__ (line 2809) | def __index__(self) -> int: ... method __int__ (line 2810) | def __int__(self) -> int: ... method __le__ (line 2811) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2812) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2813) | def __mul__(self, other): ... method __ne__ (line 2814) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2815) | def __or__(self, other): ... method __pos__ (line 2816) | def __pos__(self): ... method __radd__ (line 2817) | def __radd__(self, other): ... method __rand__ (line 2818) | def __rand__(self, other): ... method __rmul__ (line 2819) | def __rmul__(self, other): ... method __ror__ (line 2820) | def __ror__(self, other): ... method __rsub__ (line 2821) | def __rsub__(self, other): ... method __rxor__ (line 2822) | def __rxor__(self, other): ... method __sub__ (line 2823) | def __sub__(self, other): ... method __xor__ (line 2824) | def __xor__(self, other): ... class ImageColorSpaceConversionType (line 2826) | class ImageColorSpaceConversionType: method __init__ (line 2832) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2833) | def __add__(self, other): ... method __and__ (line 2834) | def __and__(self, other): ... method __bool__ (line 2835) | def __bool__(self) -> bool: ... method __eq__ (line 2836) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2837) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2838) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2839) | def __hash__(self) -> int: ... method __index__ (line 2840) | def __index__(self) -> int: ... method __int__ (line 2841) | def __int__(self) -> int: ... method __le__ (line 2842) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2843) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2844) | def __mul__(self, other): ... method __ne__ (line 2845) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2846) | def __or__(self, other): ... method __pos__ (line 2847) | def __pos__(self): ... method __radd__ (line 2848) | def __radd__(self, other): ... method __rand__ (line 2849) | def __rand__(self, other): ... method __rmul__ (line 2850) | def __rmul__(self, other): ... method __ror__ (line 2851) | def __ror__(self, other): ... method __rsub__ (line 2852) | def __rsub__(self, other): ... method __rxor__ (line 2853) | def __rxor__(self, other): ... method __sub__ (line 2854) | def __sub__(self, other): ... method __xor__ (line 2855) | def __xor__(self, other): ... method __init__ (line 2865) | def __init__(self, *args, **kwargs) -> None: ... method add (line 2866) | def add(self, ImageToAdd: Image, Name: str = ...): ... method addCategory (line 2867) | def addCategory(self, CategoryName: str): ... method addImage (line 2868) | def addImage(self, ImageToAdd: PySide2.QtWidgets.QImage, Name: str = .... method backgroundOpen (line 2869) | def backgroundOpen(self, Path: str, Config: ColorspaceConfig = ..., Al... method categories (line 2870) | def categories(self) -> typing.List[str]: ... method clearTraces (line 2871) | def clearTraces(self, PathOrHash: str): ... method compressionList (line 2872) | def compressionList(self, Extension: str) -> typing.List[str]: ... method currentCategory (line 2873) | def currentCategory(self) -> str: ... method defaultCompressionMethod (line 2874) | def defaultCompressionMethod(self, Extension: str) -> str: ... method defaultImageFormat (line 2875) | def defaultImageFormat(self, BitDepth: Image.Depth) -> str: ... method getImage (line 2876) | def getImage(self, Hash: str) -> Image: ... method imageOperationList (line 2877) | def imageOperationList(self) -> typing.List[ImageOperation]: ... method list (line 2878) | def list(self) -> typing.List[Image]: ... method open (line 2879) | def open(self, Path: str, Config: ColorspaceConfig = ..., AlphaProcess... method protocolSupported (line 2880) | def protocolSupported(self, Protocol: str) -> bool: ... method registerContextAction (line 2881) | def registerContextAction(self, MenuAction: PySide2.QtWidgets.QAction,... method registerProtocolHandler (line 2882) | def registerProtocolHandler(self, Protocol: str, Handler: ImageProtoco... method remove (line 2883) | def remove(self, ImageToRemove: Image): ... method removeCategory (line 2884) | def removeCategory(self, CategoryName: str) -> bool: ... method removeContextAction (line 2885) | def removeContextAction(self, MenuAction: PySide2.QtWidgets.QAction, C... method saveImages (line 2886) | def saveImages(self, Images: typing.List[Image], Path: str) -> bool: ... method selectCategory (line 2887) | def selectCategory(self, CategoryName: str) -> bool: ... method selected (line 2888) | def selected(self) -> typing.List[Image]: ... method setDefaultImageFormat (line 2889) | def setDefaultImageFormat(self, Format: str, BitDepth: Image.Depth): ... method setMetadata (line 2890) | def setMetadata(self, Name: str, Value: variant): ... method setTraceEnabled (line 2891) | def setTraceEnabled(self, PathOrHash: str, Enabled: bool = ...): ... method supportedReadFormats (line 2892) | def supportedReadFormats(self) -> typing.List[str]: ... method supportedTextureSizeList (line 2893) | def supportedTextureSizeList(self) -> typing.List[variant]: ... method supportedWriteFormats (line 2894) | def supportedWriteFormats(self): ... method traces (line 2895) | def traces(self, PathOrHash: str) -> typing.List[str]: ... method unregisterProtocolHandler (line 2896) | def unregisterProtocolHandler(self, Protocol: str): ... method __bool__ (line 2897) | def __bool__(self) -> bool: ... class ImageMimeDataInfo (line 2899) | class ImageMimeDataInfo(API): method __init__ (line 2901) | def __init__(self, *args, **kwargs) -> None: ... method colorspaceConfigString (line 2902) | def colorspaceConfigString(self) -> str: ... method fromMimeDataString (line 2904) | def fromMimeDataString(cls, MimeDataString: str) -> typing.List[ImageM... method path (line 2905) | def path(self) -> str: ... method __bool__ (line 2906) | def __bool__(self) -> bool: ... class ImageOperation (line 2908) | class ImageOperation(Metadata): method __init__ (line 2910) | def __init__(self, *args, **kwargs) -> None: ... method execute (line 2911) | def execute(self, Operation: str, Source: Image, ExtraParams: variant ... method name (line 2912) | def name(self) -> str: ... method operationDescription (line 2913) | def operationDescription(self, Name: str) -> str: ... method supportedOperations (line 2914) | def supportedOperations(self) -> typing.List[str]: ... method __bool__ (line 2915) | def __bool__(self) -> bool: ... class ImageProtocolHandler (line 2917) | class ImageProtocolHandler(Metadata): method __init__ (line 2919) | def __init__(self, *args, **kwargs) -> None: ... method load (line 2920) | def load(self, Location: str) -> str: ... method __bool__ (line 2921) | def __bool__(self) -> bool: ... class ImageSet (line 2923) | class ImageSet(Snapshotable): class ScaleChoice (line 2924) | class ScaleChoice: method __init__ (line 2930) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2931) | def __add__(self, other): ... method __and__ (line 2932) | def __and__(self, other): ... method __bool__ (line 2933) | def __bool__(self) -> bool: ... method __eq__ (line 2934) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2935) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2936) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2937) | def __hash__(self) -> int: ... method __index__ (line 2938) | def __index__(self) -> int: ... method __int__ (line 2939) | def __int__(self) -> int: ... method __le__ (line 2940) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2941) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2942) | def __mul__(self, other): ... method __ne__ (line 2943) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2944) | def __or__(self, other): ... method __pos__ (line 2945) | def __pos__(self): ... method __radd__ (line 2946) | def __radd__(self, other): ... method __rand__ (line 2947) | def __rand__(self, other): ... method __rmul__ (line 2948) | def __rmul__(self, other): ... method __ror__ (line 2949) | def __ror__(self, other): ... method __rsub__ (line 2950) | def __rsub__(self, other): ... method __rxor__ (line 2951) | def __rxor__(self, other): ... method __sub__ (line 2952) | def __sub__(self, other): ... method __xor__ (line 2953) | def __xor__(self, other): ... class Size (line 2955) | class Size: method __init__ (line 2970) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2971) | def __add__(self, other): ... method __and__ (line 2972) | def __and__(self, other): ... method __bool__ (line 2973) | def __bool__(self) -> bool: ... method __eq__ (line 2974) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2975) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2976) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2977) | def __hash__(self) -> int: ... method __index__ (line 2978) | def __index__(self) -> int: ... method __int__ (line 2979) | def __int__(self) -> int: ... method __le__ (line 2980) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2981) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2982) | def __mul__(self, other): ... method __ne__ (line 2983) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2984) | def __or__(self, other): ... method __pos__ (line 2985) | def __pos__(self): ... method __radd__ (line 2986) | def __radd__(self, other): ... method __rand__ (line 2987) | def __rand__(self, other): ... method __rmul__ (line 2988) | def __rmul__(self, other): ... method __ror__ (line 2989) | def __ror__(self, other): ... method __rsub__ (line 2990) | def __rsub__(self, other): ... method __rxor__ (line 2991) | def __rxor__(self, other): ... method __sub__ (line 2992) | def __sub__(self, other): ... method __xor__ (line 2993) | def __xor__(self, other): ... method __init__ (line 3009) | def __init__(self, *args, **kwargs) -> None: ... method addKeyFrame (line 3010) | def addKeyFrame(self, FrameNumber: typing.SupportsInt) -> bool: ... method calculateNewSize (line 3012) | def calculateNewSize(cls, *args, **kwargs): ... method createSnapshot (line 3013) | def createSnapshot(self, Name: str, ID: str = ...) -> Snapshot: ... method defaultKeyFrame (line 3014) | def defaultKeyFrame(self) -> int: ... method deleteSnapshot (line 3015) | def deleteSnapshot(self, ShotToDelete: Snapshot): ... method exportImages (line 3016) | def exportImages(self, PathAndTemplate: str, Options: typing.SupportsI... method findSnapshotWithID (line 3017) | def findSnapshotWithID(self, ID: str) -> Snapshot: ... method frameCount (line 3018) | def frameCount(self) -> int: ... method frames (line 3019) | def frames(self) -> typing.List[int]: ... method image (line 3020) | def image(self, UVIndex: typing.SupportsInt, Frame: typing.SupportsInt... method imageCount (line 3021) | def imageCount(self) -> int: ... method imageList (line 3022) | def imageList(self, Frame: typing.SupportsInt = ...) -> typing.List[Im... method importImages (line 3023) | def importImages(self, ImagePaths: variant, ScaleOption: ScaleChoice, ... method importImagesFromDict (line 3024) | def importImagesFromDict(self, ImagePaths: dict[Image, str], ScaleOpti... method internalScaleChoiceFromAPI (line 3026) | def internalScaleChoiceFromAPI(cls, *args, **kwargs): ... method isAnimated (line 3027) | def isAnimated(self) -> bool: ... method isPtex (line 3028) | def isPtex(self) -> bool: ... method name (line 3029) | def name(self): ... method removeKeyFrame (line 3030) | def removeKeyFrame(self): ... method resize (line 3031) | def resize(self, NewSize: ImageSet.Size, UVIndexList: typing.List[int]... method revertToSnapshot (line 3032) | def revertToSnapshot(self, OldSnapshot: Snapshot): ... method setName (line 3033) | def setName(self, NewName: str): ... method sizeFromQSize (line 3035) | def sizeFromQSize(cls, *args, **kwargs): ... method snapshotList (line 3036) | def snapshotList(self) -> typing.List[Snapshot]: ... method supportedWriteFormats (line 3037) | def supportedWriteFormats(self): ... method uvImageList (line 3038) | def uvImageList(self): ... method uvIndex (line 3039) | def uvIndex(self, UvImage: Image) -> int: ... method uvIndices (line 3040) | def uvIndices(self): ... method __bool__ (line 3041) | def __bool__(self) -> bool: ... class IndexRangeList (line 3043) | class IndexRangeList(API): method __init__ (line 3045) | def __init__(self, *args, **kwargs) -> None: ... method fromString (line 3046) | def fromString(self, RangeString: str) -> bool: ... method indexList (line 3047) | def indexList(self) -> typing.List[int]: ... method toString (line 3048) | def toString(self) -> str: ... method __bool__ (line 3049) | def __bool__(self) -> bool: ... class IndexRangeListWidget (line 3051) | class IndexRangeListWidget(WidgetBase): method __init__ (line 3055) | def __init__(self, *args, **kwargs) -> None: ... method setExtraControlsDisplayed (line 3056) | def setExtraControlsDisplayed(self, Display: bool): ... method setGeoEntity (line 3057) | def setGeoEntity(self, GeoEntityObject: GeoEntity): ... method setUdimMode (line 3058) | def setUdimMode(self, UdimMode: bool): ... method setValue (line 3059) | def setValue(self, Value: IndexRangeList): ... method udimMode (line 3060) | def udimMode(self) -> bool: ... method value (line 3061) | def value(self) -> IndexRangeList: ... method __bool__ (line 3062) | def __bool__(self) -> bool: ... class IntSlider (line 3064) | class IntSlider(SliderBase): method __init__ (line 3067) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 3068) | def setValue(self, Value: typing.SupportsInt): ... method value (line 3069) | def value(self) -> int: ... method __bool__ (line 3070) | def __bool__(self) -> bool: ... class Layer (line 3072) | class Layer(Metadata): class AdvancedBlendComponent (line 3073) | class AdvancedBlendComponent: method __init__ (line 3082) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3083) | def __add__(self, other): ... method __and__ (line 3084) | def __and__(self, other): ... method __bool__ (line 3085) | def __bool__(self) -> bool: ... method __eq__ (line 3086) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3087) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3088) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3089) | def __hash__(self) -> int: ... method __index__ (line 3090) | def __index__(self) -> int: ... method __int__ (line 3091) | def __int__(self) -> int: ... method __le__ (line 3092) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3093) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3094) | def __mul__(self, other): ... method __ne__ (line 3095) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3096) | def __or__(self, other): ... method __pos__ (line 3097) | def __pos__(self): ... method __radd__ (line 3098) | def __radd__(self, other): ... method __rand__ (line 3099) | def __rand__(self, other): ... method __rmul__ (line 3100) | def __rmul__(self, other): ... method __ror__ (line 3101) | def __ror__(self, other): ... method __rsub__ (line 3102) | def __rsub__(self, other): ... method __rxor__ (line 3103) | def __rxor__(self, other): ... method __sub__ (line 3104) | def __sub__(self, other): ... method __xor__ (line 3105) | def __xor__(self, other): ... class BlendMode (line 3107) | class BlendMode: method __init__ (line 3154) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3155) | def __add__(self, other): ... method __and__ (line 3156) | def __and__(self, other): ... method __bool__ (line 3157) | def __bool__(self) -> bool: ... method __eq__ (line 3158) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3159) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3160) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3161) | def __hash__(self) -> int: ... method __index__ (line 3162) | def __index__(self) -> int: ... method __int__ (line 3163) | def __int__(self) -> int: ... method __le__ (line 3164) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3165) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3166) | def __mul__(self, other): ... method __ne__ (line 3167) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3168) | def __or__(self, other): ... method __pos__ (line 3169) | def __pos__(self): ... method __radd__ (line 3170) | def __radd__(self, other): ... method __rand__ (line 3171) | def __rand__(self, other): ... method __rmul__ (line 3172) | def __rmul__(self, other): ... method __ror__ (line 3173) | def __ror__(self, other): ... method __rsub__ (line 3174) | def __rsub__(self, other): ... method __rxor__ (line 3175) | def __rxor__(self, other): ... method __sub__ (line 3176) | def __sub__(self, other): ... method __xor__ (line 3177) | def __xor__(self, other): ... class BlendType (line 3179) | class BlendType: method __init__ (line 3185) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3186) | def __add__(self, other): ... method __and__ (line 3187) | def __and__(self, other): ... method __bool__ (line 3188) | def __bool__(self) -> bool: ... method __eq__ (line 3189) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3190) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3191) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3192) | def __hash__(self) -> int: ... method __index__ (line 3193) | def __index__(self) -> int: ... method __int__ (line 3194) | def __int__(self) -> int: ... method __le__ (line 3195) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3196) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3197) | def __mul__(self, other): ... method __ne__ (line 3198) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3199) | def __or__(self, other): ... method __pos__ (line 3200) | def __pos__(self): ... method __radd__ (line 3201) | def __radd__(self, other): ... method __rand__ (line 3202) | def __rand__(self, other): ... method __rmul__ (line 3203) | def __rmul__(self, other): ... method __ror__ (line 3204) | def __ror__(self, other): ... method __rsub__ (line 3205) | def __rsub__(self, other): ... method __rxor__ (line 3206) | def __rxor__(self, other): ... method __sub__ (line 3207) | def __sub__(self, other): ... method __xor__ (line 3208) | def __xor__(self, other): ... class MaskType (line 3210) | class MaskType: method __init__ (line 3218) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3219) | def __add__(self, other): ... method __and__ (line 3220) | def __and__(self, other): ... method __bool__ (line 3221) | def __bool__(self) -> bool: ... method __eq__ (line 3222) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3223) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3224) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3225) | def __hash__(self) -> int: ... method __index__ (line 3226) | def __index__(self) -> int: ... method __int__ (line 3227) | def __int__(self) -> int: ... method __le__ (line 3228) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3229) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3230) | def __mul__(self, other): ... method __ne__ (line 3231) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3232) | def __or__(self, other): ... method __pos__ (line 3233) | def __pos__(self): ... method __radd__ (line 3234) | def __radd__(self, other): ... method __rand__ (line 3235) | def __rand__(self, other): ... method __rmul__ (line 3236) | def __rmul__(self, other): ... method __ror__ (line 3237) | def __ror__(self, other): ... method __rsub__ (line 3238) | def __rsub__(self, other): ... method __rxor__ (line 3239) | def __rxor__(self, other): ... method __sub__ (line 3240) | def __sub__(self, other): ... method __xor__ (line 3241) | def __xor__(self, other): ... class SwizzleDestination (line 3243) | class SwizzleDestination: method __init__ (line 3251) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3252) | def __add__(self, other): ... method __and__ (line 3253) | def __and__(self, other): ... method __bool__ (line 3254) | def __bool__(self) -> bool: ... method __eq__ (line 3255) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3256) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3257) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3258) | def __hash__(self) -> int: ... method __index__ (line 3259) | def __index__(self) -> int: ... method __int__ (line 3260) | def __int__(self) -> int: ... method __le__ (line 3261) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3262) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3263) | def __mul__(self, other): ... method __ne__ (line 3264) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3265) | def __or__(self, other): ... method __pos__ (line 3266) | def __pos__(self): ... method __radd__ (line 3267) | def __radd__(self, other): ... method __rand__ (line 3268) | def __rand__(self, other): ... method __rmul__ (line 3269) | def __rmul__(self, other): ... method __ror__ (line 3270) | def __ror__(self, other): ... method __rsub__ (line 3271) | def __rsub__(self, other): ... method __rxor__ (line 3272) | def __rxor__(self, other): ... method __sub__ (line 3273) | def __sub__(self, other): ... method __xor__ (line 3274) | def __xor__(self, other): ... class SwizzleSource (line 3276) | class SwizzleSource: method __init__ (line 3286) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3287) | def __add__(self, other): ... method __and__ (line 3288) | def __and__(self, other): ... method __bool__ (line 3289) | def __bool__(self) -> bool: ... method __eq__ (line 3290) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3291) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3292) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3293) | def __hash__(self) -> int: ... method __index__ (line 3294) | def __index__(self) -> int: ... method __int__ (line 3295) | def __int__(self) -> int: ... method __le__ (line 3296) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3297) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3298) | def __mul__(self, other): ... method __ne__ (line 3299) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3300) | def __or__(self, other): ... method __pos__ (line 3301) | def __pos__(self): ... method __radd__ (line 3302) | def __radd__(self, other): ... method __rand__ (line 3303) | def __rand__(self, other): ... method __rmul__ (line 3304) | def __rmul__(self, other): ... method __ror__ (line 3305) | def __ror__(self, other): ... method __rsub__ (line 3306) | def __rsub__(self, other): ... method __rxor__ (line 3307) | def __rxor__(self, other): ... method __sub__ (line 3308) | def __sub__(self, other): ... method __xor__ (line 3309) | def __xor__(self, other): ... method __init__ (line 3389) | def __init__(cls, *args, **kwargs) -> None: ... method activeCacheUpToHereParents (line 3390) | def activeCacheUpToHereParents(self) -> typing.List[Layer]: ... method advancedBlendComponentName (line 3392) | def advancedBlendComponentName(cls, Value: AdvancedBlendComponent) -> ... method advancedBlendComponentStr (line 3393) | def advancedBlendComponentStr(self) -> str: ... method blendAmount (line 3394) | def blendAmount(self) -> float: ... method blendAmountEnabled (line 3395) | def blendAmountEnabled(self) -> bool: ... method blendMode (line 3396) | def blendMode(self) -> BlendMode: ... method blendModeName (line 3398) | def blendModeName(cls, BlendModeValue: BlendMode) -> str: ... method blendModePath (line 3399) | def blendModePath(self) -> str: ... method blendModeStr (line 3400) | def blendModeStr(self) -> str: ... method blendType (line 3401) | def blendType(self) -> BlendType: ... method blendTypeName (line 3403) | def blendTypeName(cls, BlendTypeValue: BlendType) -> str: ... method blendTypeStr (line 3404) | def blendTypeStr(self) -> str: ... method cacheLayer (line 3405) | def cacheLayer(self): ... method cacheUpToHere (line 3406) | def cacheUpToHere(self): ... method cacheUpToHereParents (line 3407) | def cacheUpToHereParents(self) -> typing.List[Layer]: ... method close (line 3408) | def close(self): ... method colorTag (line 3409) | def colorTag(self) -> str: ... method colorTagNames (line 3411) | def colorTagNames(cls): ... method getAdvancedBlendComponent (line 3412) | def getAdvancedBlendComponent(self) -> AdvancedBlendComponent: ... method getLayerBelowBlendLut (line 3413) | def getLayerBelowBlendLut(self) -> variant: ... method getThisLayerBlendLut (line 3414) | def getThisLayerBlendLut(self) -> variant: ... method groupStack (line 3415) | def groupStack(self) -> LayerStack: ... method hasCacheUpToHere (line 3416) | def hasCacheUpToHere(self) -> bool: ... method hasLayerCache (line 3417) | def hasLayerCache(self) -> bool: ... method hasMask (line 3418) | def hasMask(self) -> bool: ... method hasMaskCustomProcedural (line 3419) | def hasMaskCustomProcedural(self) -> bool: ... method hasMaskStack (line 3420) | def hasMaskStack(self) -> bool: ... method hash (line 3421) | def hash(self, UVIndex: typing.SupportsInt = ...) -> str: ... method imageHash (line 3422) | def imageHash(self, UVIndex: typing.SupportsInt = ...) -> str: ... method isAdjustableLayer (line 3423) | def isAdjustableLayer(self) -> bool: ... method isAdjustmentLayer (line 3424) | def isAdjustmentLayer(self) -> bool: ... method isBakePointLayer (line 3425) | def isBakePointLayer(self) -> bool: ... method isCachedUpToHere (line 3426) | def isCachedUpToHere(self) -> bool: ... method isChannelLayer (line 3427) | def isChannelLayer(self) -> bool: ... method isChildOfActiveCacheUpToHere (line 3428) | def isChildOfActiveCacheUpToHere(self) -> bool: ... method isChildOfCacheUpToHere (line 3429) | def isChildOfCacheUpToHere(self) -> bool: ... method isCustomProceduralLayer (line 3430) | def isCustomProceduralLayer(self) -> bool: ... method isGraphLayer (line 3431) | def isGraphLayer(self) -> bool: ... method isGroupLayer (line 3432) | def isGroupLayer(self) -> bool: ... method isLayerCached (line 3433) | def isLayerCached(self) -> bool: ... method isLocked (line 3434) | def isLocked(self) -> bool: ... method isMaskEnabled (line 3435) | def isMaskEnabled(self) -> bool: ... method isModifiable (line 3436) | def isModifiable(self) -> bool: ... method isMultiChannelGroupLayer (line 3437) | def isMultiChannelGroupLayer(self) -> bool: ... method isMultiChannelMaterialLayer (line 3438) | def isMultiChannelMaterialLayer(self) -> bool: ... method isPaintableLayer (line 3439) | def isPaintableLayer(self) -> bool: ... method isProceduralLayer (line 3440) | def isProceduralLayer(self) -> bool: ... method isSelected (line 3441) | def isSelected(self) -> bool: ... method isShaderLayer (line 3442) | def isShaderLayer(self) -> bool: ... method isShared (line 3443) | def isShared(self) -> bool: ... method isVisible (line 3444) | def isVisible(self) -> bool: ... method layerNode (line 3445) | def layerNode(self) -> Node: ... method makeCurrent (line 3446) | def makeCurrent(self): ... method makeMask (line 3447) | def makeMask(self, Mask: MaskType = ..., Group: SelectionGroup = ...) ... method makeMaskCustomProcedural (line 3448) | def makeMaskCustomProcedural(self, FileName: str): ... method makeMaskStack (line 3449) | def makeMaskStack(self): ... method maskCustomProceduralNode (line 3450) | def maskCustomProceduralNode(self) -> CustomProceduralNode: ... method maskImageSet (line 3451) | def maskImageSet(self) -> ImageSet: ... method maskStack (line 3452) | def maskStack(self) -> LayerStack: ... method name (line 3453) | def name(self) -> str: ... method parents (line 3454) | def parents(self) -> typing.List[variant]: ... method removeMask (line 3455) | def removeMask(self): ... method setAdvancedBlendComponent (line 3456) | def setAdvancedBlendComponent(self, Component: AdvancedBlendComponent)... method setBlendAmount (line 3457) | def setBlendAmount(self, BlendAmount: float): ... method setBlendAmountEnabled (line 3458) | def setBlendAmountEnabled(self, Enabled: bool): ... method setBlendMode (line 3459) | def setBlendMode(self, BlendModeValue: variant): ... method setBlendType (line 3460) | def setBlendType(self, Type: BlendType): ... method setCachedUpToHere (line 3461) | def setCachedUpToHere(self, Cache: bool): ... method setColorTag (line 3462) | def setColorTag(self, ColorTag: str): ... method setLayerBelowBlendLut (line 3463) | def setLayerBelowBlendLut(self, NewLut: LookUpTable): ... method setLayerCached (line 3464) | def setLayerCached(self, Cache: bool): ... method setLocked (line 3465) | def setLocked(self, Locked: bool): ... method setMaskEnabled (line 3466) | def setMaskEnabled(self, Enabled: bool): ... method setMaskImageSet (line 3467) | def setMaskImageSet(self): ... method setMaskStack (line 3468) | def setMaskStack(self): ... method setName (line 3469) | def setName(self, NewName: str): ... method setSelected (line 3470) | def setSelected(self, Selected: bool): ... method setSwizzle (line 3471) | def setSwizzle(self, Dst: SwizzleDestination, Src: SwizzleSource): ... method setThisLayerBlendLut (line 3472) | def setThisLayerBlendLut(self, NewLut: LookUpTable): ... method setVisibility (line 3473) | def setVisibility(self, Visible: bool): ... method siblingSharedLayerList (line 3474) | def siblingSharedLayerList(self) -> typing.List[Layer]: ... method swizzle (line 3475) | def swizzle(self): ... method uncacheLayer (line 3476) | def uncacheLayer(self): ... method uncacheUpToHere (line 3477) | def uncacheUpToHere(self): ... method __bool__ (line 3478) | def __bool__(self) -> bool: ... class LayerStack (line 3480) | class LayerStack(Metadata): class ClearSelectionFlag (line 3481) | class ClearSelectionFlag: method __init__ (line 3489) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3490) | def __add__(self, other): ... method __and__ (line 3491) | def __and__(self, other): ... method __bool__ (line 3492) | def __bool__(self) -> bool: ... method __eq__ (line 3493) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3494) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3495) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3496) | def __hash__(self) -> int: ... method __index__ (line 3497) | def __index__(self) -> int: ... method __int__ (line 3498) | def __int__(self) -> int: ... method __le__ (line 3499) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3500) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3501) | def __mul__(self, other): ... method __ne__ (line 3502) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3503) | def __or__(self, other): ... method __pos__ (line 3504) | def __pos__(self): ... method __radd__ (line 3505) | def __radd__(self, other): ... method __rand__ (line 3506) | def __rand__(self, other): ... method __rmul__ (line 3507) | def __rmul__(self, other): ... method __ror__ (line 3508) | def __ror__(self, other): ... method __rsub__ (line 3509) | def __rsub__(self, other): ... method __rxor__ (line 3510) | def __rxor__(self, other): ... method __sub__ (line 3511) | def __sub__(self, other): ... method __xor__ (line 3512) | def __xor__(self, other): ... class LayerCreateFlag (line 3514) | class LayerCreateFlag: method __init__ (line 3524) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3525) | def __add__(self, other): ... method __and__ (line 3526) | def __and__(self, other): ... method __bool__ (line 3527) | def __bool__(self) -> bool: ... method __eq__ (line 3528) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3529) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3530) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3531) | def __hash__(self) -> int: ... method __index__ (line 3532) | def __index__(self) -> int: ... method __int__ (line 3533) | def __int__(self) -> int: ... method __le__ (line 3534) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3535) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3536) | def __mul__(self, other): ... method __ne__ (line 3537) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3538) | def __or__(self, other): ... method __pos__ (line 3539) | def __pos__(self): ... method __radd__ (line 3540) | def __radd__(self, other): ... method __rand__ (line 3541) | def __rand__(self, other): ... method __rmul__ (line 3542) | def __rmul__(self, other): ... method __ror__ (line 3543) | def __ror__(self, other): ... method __rsub__ (line 3544) | def __rsub__(self, other): ... method __rxor__ (line 3545) | def __rxor__(self, other): ... method __sub__ (line 3546) | def __sub__(self, other): ... method __xor__ (line 3547) | def __xor__(self, other): ... class LayerImportOption (line 3549) | class LayerImportOption: method __init__ (line 3557) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3558) | def __add__(self, other): ... method __and__ (line 3559) | def __and__(self, other): ... method __bool__ (line 3560) | def __bool__(self) -> bool: ... method __eq__ (line 3561) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3562) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3563) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3564) | def __hash__(self) -> int: ... method __index__ (line 3565) | def __index__(self) -> int: ... method __int__ (line 3566) | def __int__(self) -> int: ... method __le__ (line 3567) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3568) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3569) | def __mul__(self, other): ... method __ne__ (line 3570) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3571) | def __or__(self, other): ... method __pos__ (line 3572) | def __pos__(self): ... method __radd__ (line 3573) | def __radd__(self, other): ... method __rand__ (line 3574) | def __rand__(self, other): ... method __rmul__ (line 3575) | def __rmul__(self, other): ... method __ror__ (line 3576) | def __ror__(self, other): ... method __rsub__ (line 3577) | def __rsub__(self, other): ... method __rxor__ (line 3578) | def __rxor__(self, other): ... method __sub__ (line 3579) | def __sub__(self, other): ... method __xor__ (line 3580) | def __xor__(self, other): ... method __init__ (line 3597) | def __init__(cls, *args, **kwargs) -> None: ... method adjustmentLayerTypeList (line 3599) | def adjustmentLayerTypeList(cls, *args, **kwargs): ... method clearSelection (line 3600) | def clearSelection(self, Flags: typing.SupportsInt = ...): ... method createAdjustmentLayer (line 3601) | def createAdjustmentLayer(self, LayerName: str, PrimaryAdjustmentKey: ... method createBakePointLayer (line 3602) | def createBakePointLayer(self, LayerName: str, RefLayer: Layer = ..., ... method createChannelLayer (line 3603) | def createChannelLayer(self, LayerName: str, TargetChannel: Channel, R... method createCustomProceduralLayer (line 3604) | def createCustomProceduralLayer(self, LayerName: str, FilePath: str, R... method createGraphLayer (line 3605) | def createGraphLayer(self, LayerName: str, RefLayer: Layer = ..., Flag... method createGroupLayer (line 3606) | def createGroupLayer(self, LayerName: str, RefLayer: Layer = ..., Flag... method createMaterialLayer (line 3607) | def createMaterialLayer(self, LayerName: str, FilePath: str, RefLayer:... method createMultiChannelGroupLayer (line 3608) | def createMultiChannelGroupLayer(self, LayerName: str, RefLayer: Layer... method createPaintableLayer (line 3609) | def createPaintableLayer(self, LayerName: str, RefLayer: Layer = ..., ... method createProceduralLayer (line 3610) | def createProceduralLayer(self, LayerName: str, ProceduralKey: str, Re... method createShaderLayer (line 3611) | def createShaderLayer(self, LayerName: str, TargetShader: Shader, RefL... method duplicateLayers (line 3612) | def duplicateLayers(self, LayersToDuplicate: typing.List[Layer] = ...,... method exportImages (line 3613) | def exportImages(self, PathAndTemplate: str, Options: typing.SupportsI... method exportImagesFlattened (line 3614) | def exportImagesFlattened(self, PathAndTemplate: str, Options: typing.... method exportSelectedPatches (line 3615) | def exportSelectedPatches(self, PathAndTemplate: str, Options: typing.... method exportSelectedPatchesFlattened (line 3616) | def exportSelectedPatchesFlattened(self, PathAndTemplate: str, Options... method findLayer (line 3617) | def findLayer(self): ... method groupLayers (line 3618) | def groupLayers(self, LayersToGroup: typing.List[Layer] = ..., RefLaye... method hash (line 3619) | def hash(self, UVIndex: typing.SupportsInt = ...) -> str: ... method imageHash (line 3620) | def imageHash(self, UVIndex: typing.SupportsInt = ...) -> str: ... method importImages (line 3621) | def importImages(self, PathAndTemplate: str, ScaleOption: ImageSet.Sca... method layer (line 3622) | def layer(self, LayerName: str) -> Layer: ... method layerList (line 3623) | def layerList(self) -> typing.List[Layer]: ... method mergeLayers (line 3624) | def mergeLayers(self, LayersToMerge: typing.List[Layer] = ..., RefLaye... method moveLayer (line 3625) | def moveLayer(self, LayerToMove: Layer, RefLayer: Layer = ...): ... method moveLayerBelow (line 3626) | def moveLayerBelow(self, LayerToMove: Layer, RefLayer: Layer = ...): ... method name (line 3627) | def name(self) -> str: ... method proceduralLayerTypeList (line 3629) | def proceduralLayerTypeList(cls, *args, **kwargs): ... method removeLayers (line 3630) | def removeLayers(self, LayersToRemove: typing.List[Layer] = ...): ... method shareLayer (line 3631) | def shareLayer(self, LayerToShare: Layer, RefLayer: Layer = ..., Flags... method ungroupLayers (line 3632) | def ungroupLayers(self, GroupLayersToUngroup: typing.List[Layer] = ...... method __bool__ (line 3633) | def __bool__(self) -> bool: ... class Light (line 3635) | class Light(Metadata): class FixedTo (line 3636) | class FixedTo: method __init__ (line 3642) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3643) | def __add__(self, other): ... method __and__ (line 3644) | def __and__(self, other): ... method __bool__ (line 3645) | def __bool__(self) -> bool: ... method __eq__ (line 3646) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3647) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3648) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3649) | def __hash__(self) -> int: ... method __index__ (line 3650) | def __index__(self) -> int: ... method __int__ (line 3651) | def __int__(self) -> int: ... method __le__ (line 3652) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3653) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3654) | def __mul__(self, other): ... method __ne__ (line 3655) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3656) | def __or__(self, other): ... method __pos__ (line 3657) | def __pos__(self): ... method __radd__ (line 3658) | def __radd__(self, other): ... method __rand__ (line 3659) | def __rand__(self, other): ... method __rmul__ (line 3660) | def __rmul__(self, other): ... method __ror__ (line 3661) | def __ror__(self, other): ... method __rsub__ (line 3662) | def __rsub__(self, other): ... method __rxor__ (line 3663) | def __rxor__(self, other): ... method __sub__ (line 3664) | def __sub__(self, other): ... method __xor__ (line 3665) | def __xor__(self, other): ... method __init__ (line 3670) | def __init__(self, *args, **kwargs) -> None: ... method isEnvironmentLight (line 3671) | def isEnvironmentLight(self) -> bool: ... method isOn (line 3672) | def isOn(self) -> bool: ... method isPointLight (line 3673) | def isPointLight(self) -> bool: ... method name (line 3674) | def name(self) -> str: ... method setOn (line 3675) | def setOn(self, OnOrOff: bool): ... method __bool__ (line 3676) | def __bool__(self) -> bool: ... class LightManager (line 3678) | class LightManager(API): method __init__ (line 3680) | def __init__(self, *args, **kwargs) -> None: ... method current (line 3681) | def current(self) -> Light: ... method list (line 3682) | def list(self) -> typing.List[Light]: ... method selection (line 3683) | def selection(self) -> typing.List[Light]: ... method __bool__ (line 3684) | def __bool__(self) -> bool: ... class LineEdit (line 3686) | class LineEdit(WidgetBase): method __init__ (line 3690) | def __init__(self, *args, **kwargs) -> None: ... method addFloatValidator (line 3691) | def addFloatValidator(self, Minimum: float, Maximum: float, Precision:... method home (line 3692) | def home(self, Mark: bool): ... method isReadOnly (line 3693) | def isReadOnly(self): ... method setRange (line 3694) | def setRange(self, Range: typing.SupportsInt): ... method setReadOnly (line 3695) | def setReadOnly(self): ... method setText (line 3696) | def setText(self): ... method setValue (line 3697) | def setValue(self, Value: typing.SupportsInt): ... method text (line 3698) | def text(self): ... method __bool__ (line 3699) | def __bool__(self) -> bool: ... class LocatorEntity (line 3701) | class LocatorEntity(Lockable): method __init__ (line 3705) | def __init__(cls, *args, **kwargs) -> None: ... method addLocator (line 3706) | def addLocator(self) -> LocatorEntity: ... method hideLocator (line 3707) | def hideLocator(self): ... method isSelected (line 3708) | def isSelected(self) -> bool: ... method name (line 3709) | def name(self) -> str: ... method setName (line 3710) | def setName(self, NewName: str): ... method setSelected (line 3711) | def setSelected(self, Selected: bool): ... method setTransform (line 3712) | def setTransform(self, pTransform: Matrix, Frame: typing.SupportsInt =... method showLocator (line 3713) | def showLocator(self): ... method transform (line 3714) | def transform(self, Frame: typing.SupportsInt) -> Matrix: ... method translation (line 3715) | def translation(self, Frame: typing.SupportsInt = ...) -> VectorN: ... method __bool__ (line 3716) | def __bool__(self) -> bool: ... class LocatorList (line 3718) | class LocatorList(API): class LocatorListType (line 3719) | class LocatorListType: method __init__ (line 3728) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3729) | def __add__(self, other): ... method __and__ (line 3730) | def __and__(self, other): ... method __bool__ (line 3731) | def __bool__(self) -> bool: ... method __eq__ (line 3732) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3733) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3734) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3735) | def __hash__(self) -> int: ... method __index__ (line 3736) | def __index__(self) -> int: ... method __int__ (line 3737) | def __int__(self) -> int: ... method __le__ (line 3738) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3739) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3740) | def __mul__(self, other): ... method __ne__ (line 3741) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3742) | def __or__(self, other): ... method __pos__ (line 3743) | def __pos__(self): ... method __radd__ (line 3744) | def __radd__(self, other): ... method __rand__ (line 3745) | def __rand__(self, other): ... method __rmul__ (line 3746) | def __rmul__(self, other): ... method __ror__ (line 3747) | def __ror__(self, other): ... method __rsub__ (line 3748) | def __rsub__(self, other): ... method __rxor__ (line 3749) | def __rxor__(self, other): ... method __sub__ (line 3750) | def __sub__(self, other): ... method __xor__ (line 3751) | def __xor__(self, other): ... method __init__ (line 3758) | def __init__(self, *args, **kwargs) -> None: ... method currentLocator (line 3759) | def currentLocator(self) -> LocatorEntity: ... method internalLocatorList (line 3760) | def internalLocatorList(self, *args, **kwargs): ... method locatorType (line 3761) | def locatorType(self) -> LocatorListType: ... method locatorUUID (line 3762) | def locatorUUID(self, *args, **kwargs): ... method rotationVector (line 3763) | def rotationVector(self) -> VectorN: ... method scaleVector (line 3764) | def scaleVector(self) -> VectorN: ... method setCurrentLocator (line 3765) | def setCurrentLocator(self, Locator: LocatorEntity): ... method setCurrentProjector (line 3766) | def setCurrentProjector(self, ProjectorEntity: Projector): ... method setLocatorType (line 3767) | def setLocatorType(self, Type: LocatorListType): ... method setRotationVector (line 3768) | def setRotationVector(self, Vector: VectorN): ... method setScaleVector (line 3769) | def setScaleVector(self, Vector: VectorN): ... method setShowUI (line 3770) | def setShowUI(self, Value: bool): ... method setTranslationVector (line 3771) | def setTranslationVector(self, Vector: VectorN): ... method setWorldSpace (line 3772) | def setWorldSpace(self, Value: bool): ... method showUI (line 3773) | def showUI(self) -> bool: ... method translationVector (line 3774) | def translationVector(self) -> VectorN: ... method worldSpace (line 3775) | def worldSpace(self) -> bool: ... method __bool__ (line 3776) | def __bool__(self) -> bool: ... method __reduce__ (line 3777) | def __reduce__(self): ... class Lockable (line 3779) | class Lockable(Metadata): method __init__ (line 3783) | def __init__(self, *args, **kwargs) -> None: ... method hide (line 3784) | def hide(self): ... method isLocked (line 3785) | def isLocked(self) -> bool: ... method isVisible (line 3786) | def isVisible(self) -> bool: ... method lock (line 3787) | def lock(self): ... method setLocked (line 3788) | def setLocked(self): ... method setVisibility (line 3789) | def setVisibility(self, Visible: bool): ... method show (line 3790) | def show(self): ... method unlock (line 3791) | def unlock(self): ... method __bool__ (line 3792) | def __bool__(self) -> bool: ... class LookUpTable (line 3794) | class LookUpTable(API): method __init__ (line 3796) | def __init__(self, *args, **kwargs) -> None: ... method controlPoints (line 3797) | def controlPoints(self) -> typing.List[VectorN]: ... method controlPointsAsString (line 3798) | def controlPointsAsString(self) -> str: ... method invert (line 3799) | def invert(self): ... method isClamped (line 3800) | def isClamped(self) -> bool: ... method setClamped (line 3801) | def setClamped(self, Clamped: bool): ... method setControlPoints (line 3802) | def setControlPoints(self, ControlPoints: typing.List[VectorN]): ... method setControlPointsFromString (line 3803) | def setControlPointsFromString(self, ControlPointsString: str): ... method setLinear (line 3804) | def setLinear(self, ValueAtZero: float, ValueAtOne: float): ... method __bool__ (line 3805) | def __bool__(self) -> bool: ... class MaterialNode (line 3807) | class MaterialNode(GroupNode): method __init__ (line 3810) | def __init__(cls, *args, **kwargs) -> None: ... method addMaterialTag (line 3811) | def addMaterialTag(self, Tag: str): ... method addMaterialTags (line 3812) | def addMaterialTags(self, Tags: typing.List[str]): ... method exportMaterial (line 3813) | def exportMaterial(self, FileName: str, ThumbnailFileName: str = ...):... method geoChannels (line 3814) | def geoChannels(self) -> typing.List[str]: ... method materialTags (line 3815) | def materialTags(self) -> typing.List[str]: ... method missingGeoChannels (line 3816) | def missingGeoChannels(self) -> typing.List[str]: ... method readMetadataFromMaterialFile (line 3818) | def readMetadataFromMaterialFile(cls, MaterialFilePath: str) -> PySide... method readSystemMetadataFromMaterialFile (line 3820) | def readSystemMetadataFromMaterialFile(cls, MaterialFilePath: str) -> ... method readTagsFromMaterialFile (line 3822) | def readTagsFromMaterialFile(cls, MaterialFilePath: str) -> typing.Lis... method readThumbnailFromMaterialFile (line 3824) | def readThumbnailFromMaterialFile(cls, MaterialFilePath: str) -> PySid... method removeMaterialTag (line 3825) | def removeMaterialTag(self, Tag: str): ... method removeMaterialTags (line 3826) | def removeMaterialTags(self, Tags: typing.List[str]): ... method setMaterialTags (line 3827) | def setMaterialTags(self, MaterialTags: typing.List[str]): ... method shaderModel (line 3828) | def shaderModel(self) -> ShaderModel: ... method writeMetadataToMaterialFile (line 3830) | def writeMetadataToMaterialFile(cls, MetadataMap: PySide2.QtWidgets.QJ... method writeTagsToMaterialFile (line 3832) | def writeTagsToMaterialFile(cls, Tags: typing.List[str], MaterialFileP... method writeThumbnailToMaterialFile (line 3834) | def writeThumbnailToMaterialFile(cls, Thumbnail: PySide2.QtWidgets.QIm... method __bool__ (line 3835) | def __bool__(self) -> bool: ... class Matrix (line 3837) | class Matrix(API): method __init__ (line 3839) | def __init__(self, *args, **kwargs) -> None: ... method asList (line 3840) | def asList(self) -> tuple[float, ...]: ... method length (line 3841) | def length(self) -> int: ... method __bool__ (line 3842) | def __bool__(self) -> bool: ... class MenuManager (line 3844) | class MenuManager(API): method __init__ (line 3846) | def __init__(self, *args, **kwargs) -> None: ... method actions (line 3847) | def actions(self, rSet: str, rRoot: str, rSubMenu: str = ...) -> typin... method addAction (line 3848) | def addAction(self, pAction: Action, rPath: str, rAddBefore: str = ...... method addSeparator (line 3849) | def addSeparator(self, Path: str, rAddBefore: str = ...): ... method itemNames (line 3850) | def itemNames(self, rSet: str, rRoot: str, rSubMenu: str = ...) -> typ... method removeAction (line 3851) | def removeAction(self, pAction: Action, rFullPath: str): ... method roots (line 3852) | def roots(self, rSet: str) -> typing.List[str]: ... method sets (line 3853) | def sets(self) -> typing.List[str]: ... method submenus (line 3854) | def submenus(self, rSet: str, rRoot: str, rSubMenu: str = ...) -> typi... method __bool__ (line 3855) | def __bool__(self) -> bool: ... class MessageBox (line 3857) | class MessageBox(API): method __init__ (line 3859) | def __init__(self, *args, **kwargs) -> None: ... method critical (line 3861) | def critical(cls, *args, **kwargs): ... method information (line 3863) | def information(cls, *args, **kwargs): ... method question (line 3865) | def question(cls, *args, **kwargs): ... method warning (line 3867) | def warning(cls, *args, **kwargs): ... method __bool__ (line 3868) | def __bool__(self) -> bool: ... class Metadata (line 3870) | class Metadata(API): class MetadataFlag (line 3871) | class MetadataFlag: method __init__ (line 3881) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3882) | def __and__(self, other): ... method __bool__ (line 3883) | def __bool__(self) -> bool: ... method __eq__ (line 3884) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3885) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3886) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3887) | def __hash__(self) -> int: ... method __int__ (line 3888) | def __int__(self) -> int: ... method __invert__ (line 3889) | def __invert__(self): ... method __le__ (line 3890) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3891) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3892) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3893) | def __or__(self, other): ... method __rand__ (line 3894) | def __rand__(self, other): ... method __ror__ (line 3895) | def __ror__(self, other): ... method __rxor__ (line 3896) | def __rxor__(self, other): ... method __xor__ (line 3897) | def __xor__(self, other): ... class MetadataFlags (line 3899) | class MetadataFlags: method __init__ (line 3901) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3902) | def __and__(self, other): ... method __bool__ (line 3903) | def __bool__(self) -> bool: ... method __eq__ (line 3904) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3905) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3906) | def __gt__(self, other: object) -> bool: ... method __int__ (line 3907) | def __int__(self) -> int: ... method __invert__ (line 3908) | def __invert__(self): ... method __le__ (line 3909) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3910) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3911) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3912) | def __or__(self, other): ... method __rand__ (line 3913) | def __rand__(self, other): ... method __ror__ (line 3914) | def __ror__(self, other): ... method __rxor__ (line 3915) | def __rxor__(self, other): ... method __xor__ (line 3916) | def __xor__(self, other): ... class MetadataGroupHint (line 3918) | class MetadataGroupHint: method __init__ (line 3924) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3925) | def __and__(self, other): ... method __bool__ (line 3926) | def __bool__(self) -> bool: ... method __eq__ (line 3927) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3928) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3929) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3930) | def __hash__(self) -> int: ... method __int__ (line 3931) | def __int__(self) -> int: ... method __invert__ (line 3932) | def __invert__(self): ... method __le__ (line 3933) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3934) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3935) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3936) | def __or__(self, other): ... method __rand__ (line 3937) | def __rand__(self, other): ... method __ror__ (line 3938) | def __ror__(self, other): ... method __rxor__ (line 3939) | def __rxor__(self, other): ... method __xor__ (line 3940) | def __xor__(self, other): ... class MetadataGroupHints (line 3942) | class MetadataGroupHints: method __init__ (line 3944) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3945) | def __and__(self, other): ... method __bool__ (line 3946) | def __bool__(self) -> bool: ... method __eq__ (line 3947) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3948) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3949) | def __gt__(self, other: object) -> bool: ... method __int__ (line 3950) | def __int__(self) -> int: ... method __invert__ (line 3951) | def __invert__(self): ... method __le__ (line 3952) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3953) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3954) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3955) | def __or__(self, other): ... method __rand__ (line 3956) | def __rand__(self, other): ... method __ror__ (line 3957) | def __ror__(self, other): ... method __rxor__ (line 3958) | def __rxor__(self, other): ... method __xor__ (line 3959) | def __xor__(self, other): ... class MetadataTypeFlag (line 3961) | class MetadataTypeFlag: method __init__ (line 3968) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3969) | def __and__(self, other): ... method __bool__ (line 3970) | def __bool__(self) -> bool: ... method __eq__ (line 3971) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3972) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3973) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3974) | def __hash__(self) -> int: ... method __int__ (line 3975) | def __int__(self) -> int: ... method __invert__ (line 3976) | def __invert__(self): ... method __le__ (line 3977) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3978) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3979) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3980) | def __or__(self, other): ... method __rand__ (line 3981) | def __rand__(self, other): ... method __ror__ (line 3982) | def __ror__(self, other): ... method __rxor__ (line 3983) | def __rxor__(self, other): ... method __xor__ (line 3984) | def __xor__(self, other): ... class MetadataTypeFlags (line 3986) | class MetadataTypeFlags: method __init__ (line 3988) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3989) | def __and__(self, other): ... method __bool__ (line 3990) | def __bool__(self) -> bool: ... method __eq__ (line 3991) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3992) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3993) | def __gt__(self, other: object) -> bool: ... method __int__ (line 3994) | def __int__(self) -> int: ... method __invert__ (line 3995) | def __invert__(self): ... method __le__ (line 3996) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3997) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3998) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3999) | def __or__(self, other): ... method __rand__ (line 4000) | def __rand__(self, other): ... method __ror__ (line 4001) | def __ror__(self, other): ... method __rxor__ (line 4002) | def __rxor__(self, other): ... method __xor__ (line 4003) | def __xor__(self, other): ... method __init__ (line 4020) | def __init__(self, *args, **kwargs) -> None: ... method hasMetadata (line 4021) | def hasMetadata(self, Name: str) -> bool: ... method isSupportedMetadataType (line 4023) | def isSupportedMetadataType(cls, Value: variant) -> bool: ... method metadata (line 4024) | def metadata(self, Name: str) -> variant: ... method metadataAsImage (line 4025) | def metadataAsImage(self, Name: str) -> Image: ... method metadataDefault (line 4026) | def metadataDefault(self, Name: str) -> variant: ... method metadataDescription (line 4027) | def metadataDescription(self, Name: str) -> str: ... method metadataDisplayName (line 4028) | def metadataDisplayName(self, Name: str) -> str: ... method metadataFlags (line 4029) | def metadataFlags(self, Name: str) -> MetadataFlags: ... method metadataIsEnabled (line 4030) | def metadataIsEnabled(self, Name: str) -> bool: ... method metadataItemList (line 4031) | def metadataItemList(self, Name: str) -> typing.List[str]: ... method metadataMax (line 4032) | def metadataMax(self, Name: str) -> variant: ... method metadataMin (line 4033) | def metadataMin(self, Name: str) -> variant: ... method metadataNames (line 4034) | def metadataNames(self) -> typing.List[str]: ... method metadataStep (line 4035) | def metadataStep(self, Name: str) -> variant: ... method metadataTypeFlags (line 4036) | def metadataTypeFlags(self, Name: str) -> MetadataTypeFlags: ... method removeMetadata (line 4037) | def removeMetadata(self, Name: str): ... method setMetadata (line 4038) | def setMetadata(self, Name: str, Value: variant): ... method setMetadataDefault (line 4039) | def setMetadataDefault(self, Name: str, Default: variant): ... method setMetadataDescription (line 4040) | def setMetadataDescription(self, Name: str, Description: str): ... method setMetadataDisplayName (line 4041) | def setMetadataDisplayName(self, Name: str, DisplayName: str): ... method setMetadataEnabled (line 4042) | def setMetadataEnabled(self, Name: str, Enabled: bool): ... method setMetadataFlags (line 4043) | def setMetadataFlags(self, Name: str, Flags: MetadataFlags): ... method setMetadataGroupHints (line 4044) | def setMetadataGroupHints(self, Name: str, Hints: MetadataGroupHints):... method setMetadataItemList (line 4045) | def setMetadataItemList(self, Name: str, ItemList: typing.List[str]): ... method setMetadataRange (line 4046) | def setMetadataRange(self, Name: str, Min: variant, Max: variant): ... method setMetadataStep (line 4047) | def setMetadataStep(self, Name: str, Step: variant): ... method setMetadataTypeFlags (line 4048) | def setMetadataTypeFlags(self, Name: str, Flags: MetadataTypeFlags): ... method uuid (line 4049) | def uuid(self) -> str: ... method __bool__ (line 4050) | def __bool__(self) -> bool: ... class Miscellaneous (line 4052) | class Miscellaneous(API): method __init__ (line 4054) | def __init__(self, *args, **kwargs) -> None: ... method createIconFromPath (line 4055) | def createIconFromPath(self, Path: str) -> PySide2.QtWidgets.QIcon: ... method getExistingDirectory (line 4056) | def getExistingDirectory(self, Parent: PySide2.QtWidgets.QWidget = ...... method getMkdirCommand (line 4057) | def getMkdirCommand(self) -> str: ... method getOpenFileName (line 4058) | def getOpenFileName(self, Parent: PySide2.QtWidgets.QWidget = ..., Cap... method getSaveFileName (line 4059) | def getSaveFileName(self, Parent: PySide2.QtWidgets.QWidget = ..., Cap... method registerRegExpChannelNameExtractor (line 4060) | def registerRegExpChannelNameExtractor(self, RegExp: str): ... method setMkdirCommand (line 4061) | def setMkdirCommand(self, Command: str): ... method __bool__ (line 4062) | def __bool__(self) -> bool: ... class MultiChannelBakePointNode (line 4064) | class MultiChannelBakePointNode(GroupNode): method __init__ (line 4067) | def __init__(cls, *args, **kwargs) -> None: ... method bakeActive (line 4068) | def bakeActive(self): ... method bakePointNode (line 4069) | def bakePointNode(self, ShaderModelInputForBakePoint: ShaderModelInput... method bakeStreams (line 4070) | def bakeStreams(self, Streams: typing.List[ShaderModelInput]): ... method deleteBake (line 4071) | def deleteBake(self): ... method setLimitBake (line 4072) | def setLimitBake(self, LimitBake: bool): ... method setLimitBakeRange (line 4073) | def setLimitBakeRange(self, LimitBakeRange: UvIndexRangeList): ... method shaderModel (line 4074) | def shaderModel(self) -> ShaderModel: ... method streamBakePointNodes (line 4075) | def streamBakePointNodes(self) -> variant: ... method __bool__ (line 4076) | def __bool__(self) -> bool: ... class MultiChannelContainer (line 4078) | class MultiChannelContainer(Metadata): method __init__ (line 4081) | def __init__(cls, *args, **kwargs) -> None: ... method isVisible (line 4082) | def isVisible(self) -> bool: ... method setVisibility (line 4083) | def setVisibility(self, Visible: bool): ... method shaderModel (line 4084) | def shaderModel(self) -> ShaderModel: ... method streamList (line 4085) | def streamList(self) -> typing.List[MultiChannelLayer]: ... method __bool__ (line 4086) | def __bool__(self) -> bool: ... class MultiChannelGroup (line 4088) | class MultiChannelGroup(MultiChannelContainer): method __init__ (line 4091) | def __init__(cls, *args, **kwargs) -> None: ... method flattenLayerGroup (line 4092) | def flattenLayerGroup(self) -> typing.List[Layer]: ... method __bool__ (line 4093) | def __bool__(self) -> bool: ... class MultiChannelGroupLayer (line 4095) | class MultiChannelGroupLayer(MultiChannelLayer): method __init__ (line 4098) | def __init__(cls, *args, **kwargs) -> None: ... method container (line 4099) | def container(self) -> MultiChannelGroup: ... method layerStack (line 4100) | def layerStack(self) -> LayerStack: ... method __bool__ (line 4101) | def __bool__(self) -> bool: ... class MultiChannelLayer (line 4103) | class MultiChannelLayer(Layer): method __init__ (line 4106) | def __init__(cls, *args, **kwargs) -> None: ... method activeCacheUpToHereParents (line 4107) | def activeCacheUpToHereParents(self) -> typing.List[Layer]: ... method blendAmount (line 4108) | def blendAmount(self) -> float: ... method blendAmountEnabled (line 4109) | def blendAmountEnabled(self) -> bool: ... method blendMode (line 4110) | def blendMode(self) -> BlendMode: ... method blendModePath (line 4111) | def blendModePath(self) -> str: ... method blendModeStr (line 4112) | def blendModeStr(self) -> str: ... method blendType (line 4113) | def blendType(self) -> BlendType: ... method cacheUpToHereParents (line 4114) | def cacheUpToHereParents(self) -> typing.List[Layer]: ... method getAdvancedBlendComponent (line 4115) | def getAdvancedBlendComponent(self) -> AdvancedBlendComponent: ... method getLayerBelowBlendLut (line 4116) | def getLayerBelowBlendLut(self) -> variant: ... method getThisLayerBlendLut (line 4117) | def getThisLayerBlendLut(self) -> variant: ... method groupStack (line 4118) | def groupStack(self) -> LayerStack: ... method isChildOfActiveCacheUpToHere (line 4119) | def isChildOfActiveCacheUpToHere(self) -> bool: ... method isChildOfCacheUpToHere (line 4120) | def isChildOfCacheUpToHere(self) -> bool: ... method isMultiChannelGroupLayer (line 4121) | def isMultiChannelGroupLayer(self) -> bool: ... method isMultiChannelMaterialLayer (line 4122) | def isMultiChannelMaterialLayer(self) -> bool: ... method isVisible (line 4123) | def isVisible(self) -> bool: ... method parents (line 4124) | def parents(self) -> typing.List[variant]: ... method setAdvancedBlendComponent (line 4125) | def setAdvancedBlendComponent(self, Component: AdvancedBlendComponent)... method setBlendAmount (line 4126) | def setBlendAmount(self, BlendAmount: float): ... method setBlendAmountEnabled (line 4127) | def setBlendAmountEnabled(self, Enabled: bool): ... method setBlendMode (line 4128) | def setBlendMode(self, BlendModeValue: variant): ... method setBlendType (line 4129) | def setBlendType(self, Type: BlendType): ... method setLayerBelowBlendLut (line 4130) | def setLayerBelowBlendLut(self, NewLut: LookUpTable): ... method setSwizzle (line 4131) | def setSwizzle(self, Dst: SwizzleDestination, Src: SwizzleSource): ... method setThisLayerBlendLut (line 4132) | def setThisLayerBlendLut(self, NewLut: LookUpTable): ... method setVisibility (line 4133) | def setVisibility(self, Visible: bool): ... method streamName (line 4134) | def streamName(self) -> str: ... method swizzle (line 4135) | def swizzle(self): ... method __bool__ (line 4136) | def __bool__(self) -> bool: ... class MultiChannelMaterial (line 4138) | class MultiChannelMaterial(MultiChannelContainer): method __init__ (line 4141) | def __init__(cls, *args, **kwargs) -> None: ... method convertToPaintable (line 4142) | def convertToPaintable(self, SelectedOnly: bool = ...): ... method materialNode (line 4143) | def materialNode(self) -> MaterialNode: ... method __bool__ (line 4144) | def __bool__(self) -> bool: ... class MultiChannelMaterialLayer (line 4146) | class MultiChannelMaterialLayer(MultiChannelLayer): method __init__ (line 4149) | def __init__(cls, *args, **kwargs) -> None: ... method container (line 4150) | def container(self) -> MultiChannelMaterial: ... method __bool__ (line 4151) | def __bool__(self) -> bool: ... class Node (line 4153) | class Node(Metadata): class PortListMode (line 4154) | class PortListMode: method __init__ (line 4163) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4164) | def __add__(self, other): ... method __and__ (line 4165) | def __and__(self, other): ... method __bool__ (line 4166) | def __bool__(self) -> bool: ... method __eq__ (line 4167) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4168) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4169) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4170) | def __hash__(self) -> int: ... method __index__ (line 4171) | def __index__(self) -> int: ... method __int__ (line 4172) | def __int__(self) -> int: ... method __le__ (line 4173) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4174) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4175) | def __mul__(self, other): ... method __ne__ (line 4176) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4177) | def __or__(self, other): ... method __pos__ (line 4178) | def __pos__(self): ... method __radd__ (line 4179) | def __radd__(self, other): ... method __rand__ (line 4180) | def __rand__(self, other): ... method __rmul__ (line 4181) | def __rmul__(self, other): ... method __ror__ (line 4182) | def __ror__(self, other): ... method __rsub__ (line 4183) | def __rsub__(self, other): ... method __rxor__ (line 4184) | def __rxor__(self, other): ... method __sub__ (line 4185) | def __sub__(self, other): ... method __xor__ (line 4186) | def __xor__(self, other): ... method __init__ (line 4195) | def __init__(self, *args, **kwargs) -> None: ... method addNodeContext (line 4196) | def addNodeContext(self, Name: str, Context: NodeContext): ... method addTag (line 4197) | def addTag(self, Tag: str, ForceAdd: bool = ...): ... method attachViewer (line 4198) | def attachViewer(self, InputNumber: typing.SupportsInt = ...): ... method bake (line 4199) | def bake(self, Width: typing.SupportsInt, Height: typing.SupportsInt, ... method bypassInput (line 4200) | def bypassInput(self, OutputPoint: str = ...) -> int: ... method connectSignals (line 4201) | def connectSignals(self, *args, **kwargs): ... method exportToGeoChannel (line 4202) | def exportToGeoChannel(self, DestGeoChannel: GeoChannel, OutputPortNam... method focusInNodeGraph (line 4203) | def focusInNodeGraph(self): ... method getNodeGraphViewContextMeta (line 4204) | def getNodeGraphViewContextMeta(self, *args, **kwargs): ... method hasTag (line 4205) | def hasTag(self): ... method hash (line 4206) | def hash(self, UVIndex: typing.SupportsInt = ..., IgnoreChildren: bool... method inputConnection (line 4207) | def inputConnection(self, PortName: str) -> typing.List[variant]: ... method inputNode (line 4208) | def inputNode(self, PortName: str) -> Node: ... method inputPortCount (line 4209) | def inputPortCount(self) -> int: ... method inputPortName (line 4210) | def inputPortName(self): ... method inputPortNames (line 4211) | def inputPortNames(self) -> typing.List[str]: ... method isBackdropNode (line 4212) | def isBackdropNode(self) -> bool: ... method isBakePointNode (line 4213) | def isBakePointNode(self) -> bool: ... method isEnabled (line 4214) | def isEnabled(self) -> bool: ... method isGeoChannelNode (line 4215) | def isGeoChannelNode(self) -> bool: ... method isGroupNode (line 4216) | def isGroupNode(self) -> bool: ... method isPaintNode (line 4217) | def isPaintNode(self) -> bool: ... method isSelected (line 4218) | def isSelected(self) -> bool: ... method name (line 4219) | def name(self) -> str: ... method nodeContext (line 4220) | def nodeContext(self, Name: str) -> NodeContext: ... method nodeContextNames (line 4221) | def nodeContextNames(self) -> typing.List[str]: ... method nodeGraphPosition (line 4222) | def nodeGraphPosition(self) -> PySide2.QtWidgets.QPointF: ... method nodeGraphSize (line 4223) | def nodeGraphSize(self) -> PySide2.QtWidgets.QSizeF: ... method nodeInformation (line 4224) | def nodeInformation(self) -> str: ... method nodePath (line 4225) | def nodePath(self): ... method outputNodes (line 4226) | def outputNodes(self, PortName: str = ...) -> typing.List[variant]: ... method outputPortCount (line 4227) | def outputPortCount(self) -> int: ... method outputPortName (line 4228) | def outputPortName(self): ... method outputPortNames (line 4229) | def outputPortNames(self) -> typing.List[str]: ... method parentNodeGraph (line 4230) | def parentNodeGraph(self) -> NodeGraph: ... method portListMode (line 4231) | def portListMode(self): ... method printVersionHashSource (line 4232) | def printVersionHashSource(self): ... method removeNodeContext (line 4233) | def removeNodeContext(self, Name: str): ... method removeTag (line 4234) | def removeTag(self, Tag: str, ForceRemove: bool = ...): ... method setBypassInput (line 4235) | def setBypassInput(self, BypassInput: typing.SupportsInt): ... method setEnabled (line 4236) | def setEnabled(self, Enabled: bool): ... method setInputNode (line 4237) | def setInputNode(self, PortName: str, NodeToConnect: Node, OutputPortN... method setMetadata (line 4238) | def setMetadata(self, Name: str, Value: variant): ... method setName (line 4239) | def setName(self, NewName: str): ... method setNodeGraphPosition (line 4240) | def setNodeGraphPosition(self, Position: PySide2.QtWidgets.QPointF): ... method setPortListMode (line 4241) | def setPortListMode(self, Mode: PortListMode): ... method setSelected (line 4242) | def setSelected(self, Selected: bool): ... method setTypeID (line 4243) | def setTypeID(self, TypeID: str): ... method tagList (line 4244) | def tagList(self) -> typing.List[str]: ... method typeID (line 4245) | def typeID(self) -> str: ... method __bool__ (line 4246) | def __bool__(self) -> bool: ... class NodeContext (line 4248) | class NodeContext(Metadata): method __init__ (line 4250) | def __init__(self, *args, **kwargs) -> None: ... method metadataSupported (line 4251) | def metadataSupported(self, MetadataName: str): ... method setMetadataSupported (line 4252) | def setMetadataSupported(self, MetadataName: str, Supported: bool): ... method __bool__ (line 4253) | def __bool__(self) -> bool: ... class NodeGraph (line 4255) | class NodeGraph(Metadata): method __init__ (line 4258) | def __init__(self, *args, **kwargs) -> None: ... method addNode (line 4259) | def addNode(self, NodeToAdd: Node): ... method autoLayoutNodes (line 4260) | def autoLayoutNodes(self, Roots: typing.List[Node]): ... method bakeEmptyAndUpdateOutOfDateBakePoints (line 4261) | def bakeEmptyAndUpdateOutOfDateBakePoints(self): ... method bakeSelectedBakePoints (line 4262) | def bakeSelectedBakePoints(self): ... method createBakePointNode (line 4263) | def createBakePointNode(self, Width: typing.SupportsInt, Height: typin... method createChannelNode (line 4264) | def createChannelNode(self, Width: typing.SupportsInt, Height: typing.... method createMaterialTemplate (line 4265) | def createMaterialTemplate(self, Model: ShaderModel, CreateWithDefault... method createMultiChannelBakePointNode (line 4266) | def createMultiChannelBakePointNode(self, Model: ShaderModel, Width: t... method createMultiChannelBottomTransparencyNode (line 4267) | def createMultiChannelBottomTransparencyNode(self, Model: ShaderModel)... method createMultiChannelMergeNode (line 4268) | def createMultiChannelMergeNode(self, Model: ShaderModel): ... method createNode (line 4269) | def createNode(self, Type: str): ... method createPaintNode (line 4270) | def createPaintNode(self, Width: typing.SupportsInt, Height: typing.Su... method deleteNode (line 4271) | def deleteNode(self, NodeToDelete: Node): ... method exportNodesAsArchive (line 4272) | def exportNodesAsArchive(self, DirPath: str, Nodes: typing.List[Node],... method getAllUpstreamNodes (line 4274) | def getAllUpstreamNodes(cls, DestNode: Node) -> typing.List[Node]: ... method getUpstreamNodes (line 4276) | def getUpstreamNodes(cls, DestNode: Node) -> typing.List[Node]: ... method groupNodes (line 4277) | def groupNodes(self, Nodes: typing.List[Node]) -> GroupNode: ... method importCustomProcedural (line 4278) | def importCustomProcedural(self, FileName: str) -> Node: ... method importMaterial (line 4279) | def importMaterial(self, FileName: str) -> Node: ... method importNodesFromArchive (line 4280) | def importNodesFromArchive(self, DirPath: str, UuidsToLoad: typing.Lis... method load (line 4281) | def load(self, FilePath: str) -> typing.List[Node]: ... method nodeList (line 4282) | def nodeList(self, IncludeSystemNodes: bool = ...) -> typing.List[Node... method nodesFromString (line 4283) | def nodesFromString(self, String: str) -> typing.List[Node]: ... method nodesToString (line 4284) | def nodesToString(self, Nodes: typing.List[Node]) -> str: ... method nodesWithTag (line 4285) | def nodesWithTag(self, Tag: str) -> typing.List[Node]: ... method parentGeoEntity (line 4286) | def parentGeoEntity(self) -> GeoEntity: ... method parentGroupNode (line 4287) | def parentGroupNode(self) -> GroupNode: ... method removeNode (line 4288) | def removeNode(self, NodeToRemove: Node): ... method save (line 4289) | def save(self, FilePath: str, Nodes: typing.List[Node]): ... method selectedNodeList (line 4290) | def selectedNodeList(self, IncludeSystemNodes: bool = ...) -> typing.L... method setActiveViewerInput (line 4291) | def setActiveViewerInput(self, InputNumber: typing.SupportsInt): ... method teleportBroadcastChannelNameList (line 4292) | def teleportBroadcastChannelNameList(self) -> typing.List[str]: ... method teleportNodeBroadcastingOnChannel (line 4293) | def teleportNodeBroadcastingOnChannel(self): ... method teleportNodesListeningToChannel (line 4294) | def teleportNodesListeningToChannel(self): ... method topologicalSortTo (line 4296) | def topologicalSortTo(cls, DestNode: Node, ReverseOrder: bool = ...) -... method typeList (line 4297) | def typeList(self) -> typing.List[str]: ... method updateSelectedBakePoints (line 4298) | def updateSelectedBakePoints(self): ... method viewerNode (line 4299) | def viewerNode(self) -> Node: ... method willConnectionBreakDAG (line 4301) | def willConnectionBreakDAG(cls, SourceNode: Node, SourceNodeOutputPort... method __bool__ (line 4302) | def __bool__(self) -> bool: ... class NodeGraphPalette (line 4304) | class NodeGraphPalette(Palette): method __init__ (line 4306) | def __init__(self, *args, **kwargs) -> None: ... method closeTab (line 4307) | def closeTab(self, Index: typing.SupportsInt): ... method currentTabIndex (line 4308) | def currentTabIndex(self) -> int: ... method indexForNodeGraph (line 4309) | def indexForNodeGraph(self, NodeGraphObject: NodeGraph) -> int: ... method nodeGraphView (line 4310) | def nodeGraphView(self, TabIndex: typing.SupportsInt) -> NodeGraphView... method nodeGraphViewList (line 4311) | def nodeGraphViewList(self) -> typing.List[NodeGraphView]: ... method setCurrentTabIndex (line 4312) | def setCurrentTabIndex(self, Index: typing.SupportsInt): ... method __bool__ (line 4313) | def __bool__(self) -> bool: ... class NodeGraphView (line 4315) | class NodeGraphView(API): method __init__ (line 4317) | def __init__(self, *args, **kwargs) -> None: ... method center (line 4318) | def center(self) -> PySide2.QtWidgets.QPointF: ... method nodeGraph (line 4319) | def nodeGraph(self) -> NodeGraph: ... method posFromGlobalPos (line 4320) | def posFromGlobalPos(self, GlobalPos: PySide2.QtWidgets.QPoint) -> PyS... method setCenter (line 4321) | def setCenter(self, Center: PySide2.QtWidgets.QPointF): ... method setZoomLevel (line 4322) | def setZoomLevel(self, ZoomLevel: float): ... method zoomLevel (line 4323) | def zoomLevel(self) -> float: ... method __bool__ (line 4324) | def __bool__(self) -> bool: ... class NodeManager (line 4326) | class NodeManager(API): method __init__ (line 4333) | def __init__(self, *args, **kwargs) -> None: ... method __bool__ (line 4334) | def __bool__(self) -> bool: ... class ObjectSelectionGroup (line 4336) | class ObjectSelectionGroup(SelectionGroup): method __init__ (line 4338) | def __init__(self, *args, **kwargs) -> None: ... method geoEntityList (line 4339) | def geoEntityList(self) -> typing.List[GeoEntity]: ... method __bool__ (line 4340) | def __bool__(self) -> bool: ... class OpenColorIO (line 4342) | class OpenColorIO(API): class ColorPickerMode (line 4343) | class ColorPickerMode: method __init__ (line 4350) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4351) | def __add__(self, other): ... method __and__ (line 4352) | def __and__(self, other): ... method __bool__ (line 4353) | def __bool__(self) -> bool: ... method __eq__ (line 4354) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4355) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4356) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4357) | def __hash__(self) -> int: ... method __index__ (line 4358) | def __index__(self) -> int: ... method __int__ (line 4359) | def __int__(self) -> int: ... method __le__ (line 4360) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4361) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4362) | def __mul__(self, other): ... method __ne__ (line 4363) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4364) | def __or__(self, other): ... method __pos__ (line 4365) | def __pos__(self): ... method __radd__ (line 4366) | def __radd__(self, other): ... method __rand__ (line 4367) | def __rand__(self, other): ... method __rmul__ (line 4368) | def __rmul__(self, other): ... method __ror__ (line 4369) | def __ror__(self, other): ... method __rsub__ (line 4370) | def __rsub__(self, other): ... method __rxor__ (line 4371) | def __rxor__(self, other): ... method __sub__ (line 4372) | def __sub__(self, other): ... method __xor__ (line 4373) | def __xor__(self, other): ... method __init__ (line 4382) | def __init__(self, *args, **kwargs) -> None: ... method colorPickerMode (line 4383) | def colorPickerMode(self) -> ColorPickerMode: ... method colorspace (line 4384) | def colorspace(self, Config: str, Index: typing.SupportsInt) -> str: ... method colorspaceCount (line 4385) | def colorspaceCount(self, Config: str) -> int: ... method colorspacePrettyNames (line 4386) | def colorspacePrettyNames(self, Config: str) -> typing.List[str]: ... method configDescription (line 4387) | def configDescription(self, Config: str) -> str: ... method currentColorspaceConfig (line 4388) | def currentColorspaceConfig(self) -> ColorspaceConfig: ... method currentColorspaceDefaults (line 4389) | def currentColorspaceDefaults(self) -> ColorspaceDefaults: ... method defaultConfig (line 4390) | def defaultConfig(self) -> str: ... method get3DLutValuesFromDisplayViewTransform (line 4391) | def get3DLutValuesFromDisplayViewTransform(self, Config: str, Src: str... method get3DLutValuesFromFileTransform (line 4392) | def get3DLutValuesFromFileTransform(self, Config: str, Input: str, Out... method hasColorspace (line 4393) | def hasColorspace(self, Config: str, Name: str) -> bool: ... method hasRole (line 4394) | def hasRole(self, Config: str, Name: str) -> bool: ... method isConfigValid (line 4395) | def isConfigValid(self, Config: str) -> bool: ... method isShaderTransformAccurate (line 4396) | def isShaderTransformAccurate(self, Config: str, InputColorspace: str,... method isStandardConfig (line 4397) | def isStandardConfig(self, Name: str) -> bool: ... method isTargetScalar (line 4398) | def isTargetScalar(self) -> bool: ... method isTransformValid (line 4399) | def isTransformValid(self, Config: str, InputColorspace: str, OutputCo... method isViewerScalar (line 4400) | def isViewerScalar(self) -> bool: ... method lutSize (line 4401) | def lutSize(self) -> int: ... method parseColorspaceFromString (line 4402) | def parseColorspaceFromString(self, Config: str, Str: str) -> str: ... method registerConfigUiAllowlist (line 4403) | def registerConfigUiAllowlist(self, ConfigFilePath: str, Allowlist: ty... method role (line 4404) | def role(self, Config: str, Index: typing.SupportsInt) -> str: ... method roleCount (line 4405) | def roleCount(self, Config: str) -> int: ... method setColorPickerMode (line 4406) | def setColorPickerMode(self, Mode: ColorPickerMode): ... method setLutSize (line 4407) | def setLutSize(self): ... method setShaderTransformAccuracy (line 4408) | def setShaderTransformAccuracy(self, Config: str, InputColorspace: str... method setShaderTransformCode (line 4409) | def setShaderTransformCode(self, Config: str, InputColorspace: str, Ou... method shaderTransformUsesLut (line 4410) | def shaderTransformUsesLut(self, Config: str, InputColorspace: str, Ou... method standardConfigPath (line 4411) | def standardConfigPath(self, Config: str) -> str: ... method standardConfigs (line 4412) | def standardConfigs(self) -> typing.List[str]: ... method toColorspace (line 4413) | def toColorspace(self, Config: str, Role: str) -> str: ... method toPrettyName (line 4414) | def toPrettyName(self, Config: str, Name: str) -> str: ... method transformColor (line 4415) | def transformColor(self, Config: str, InputColorspace: str, OutputColo... method transformImage (line 4416) | def transformImage(self, Config: str, InputColorspace: str, OutputColo... method __bool__ (line 4417) | def __bool__(self) -> bool: ... class PaintBuffer (line 4419) | class PaintBuffer(PropertySource): class BufferDepth (line 4420) | class BufferDepth: method __init__ (line 4427) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4428) | def __add__(self, other): ... method __and__ (line 4429) | def __and__(self, other): ... method __bool__ (line 4430) | def __bool__(self) -> bool: ... method __eq__ (line 4431) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4432) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4433) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4434) | def __hash__(self) -> int: ... method __index__ (line 4435) | def __index__(self) -> int: ... method __int__ (line 4436) | def __int__(self) -> int: ... method __le__ (line 4437) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4438) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4439) | def __mul__(self, other): ... method __ne__ (line 4440) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4441) | def __or__(self, other): ... method __pos__ (line 4442) | def __pos__(self): ... method __radd__ (line 4443) | def __radd__(self, other): ... method __rand__ (line 4444) | def __rand__(self, other): ... method __rmul__ (line 4445) | def __rmul__(self, other): ... method __ror__ (line 4446) | def __ror__(self, other): ... method __rsub__ (line 4447) | def __rsub__(self, other): ... method __rxor__ (line 4448) | def __rxor__(self, other): ... method __sub__ (line 4449) | def __sub__(self, other): ... method __xor__ (line 4450) | def __xor__(self, other): ... class Mirroring (line 4452) | class Mirroring: method __init__ (line 4460) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4461) | def __add__(self, other): ... method __and__ (line 4462) | def __and__(self, other): ... method __bool__ (line 4463) | def __bool__(self) -> bool: ... method __eq__ (line 4464) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4465) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4466) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4467) | def __hash__(self) -> int: ... method __index__ (line 4468) | def __index__(self) -> int: ... method __int__ (line 4469) | def __int__(self) -> int: ... method __le__ (line 4470) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4471) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4472) | def __mul__(self, other): ... method __ne__ (line 4473) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4474) | def __or__(self, other): ... method __pos__ (line 4475) | def __pos__(self): ... method __radd__ (line 4476) | def __radd__(self, other): ... method __rand__ (line 4477) | def __rand__(self, other): ... method __rmul__ (line 4478) | def __rmul__(self, other): ... method __ror__ (line 4479) | def __ror__(self, other): ... method __rsub__ (line 4480) | def __rsub__(self, other): ... method __rxor__ (line 4481) | def __rxor__(self, other): ... method __sub__ (line 4482) | def __sub__(self, other): ... method __xor__ (line 4483) | def __xor__(self, other): ... method __init__ (line 4501) | def __init__(self, *args, **kwargs) -> None: ... method bake (line 4502) | def bake(self) -> bool: ... method bakeAndClear (line 4503) | def bakeAndClear(self) -> bool: ... method clampColors (line 4504) | def clampColors(self) -> bool: ... method clear (line 4505) | def clear(self): ... method compImage (line 4506) | def compImage(self): ... method depth (line 4507) | def depth(self) -> BufferDepth: ... method getPaint (line 4508) | def getPaint(self) -> PySide2.QtWidgets.QImage: ... method isDirty (line 4509) | def isDirty(self) -> bool: ... method loadPaint (line 4510) | def loadPaint(self, Paint: Image): ... method mirroring (line 4511) | def mirroring(self) -> Mirroring: ... method pickColor (line 4512) | def pickColor(self, x: typing.SupportsInt, y: typing.SupportsInt) -> C... method resolution (line 4513) | def resolution(self) -> PySide2.QtWidgets.QSize: ... method restoreContent (line 4514) | def restoreContent(self): ... method rotation (line 4515) | def rotation(self) -> float: ... method saveContent (line 4516) | def saveContent(self): ... method savePaint (line 4517) | def savePaint(self) -> Image: ... method scale (line 4518) | def scale(self) -> PySide2.QtWidgets.QSizeF: ... method setClampColors (line 4519) | def setClampColors(self, ClampColors: bool): ... method setDepth (line 4520) | def setDepth(self, Depth: BufferDepth): ... method setMirroring (line 4521) | def setMirroring(self, Mirror: Mirroring): ... method setPaint (line 4522) | def setPaint(self, PaintImage: PySide2.QtWidgets.QImage) -> bool: ... method setResolution (line 4523) | def setResolution(self): ... method setRotation (line 4524) | def setRotation(self, Angle: float): ... method setScale (line 4525) | def setScale(self, Size: PySide2.QtWidgets.QSizeF): ... method setTranslation (line 4526) | def setTranslation(self, Translation: PySide2.QtWidgets.QPointF): ... method supportedResolutions (line 4527) | def supportedResolutions(self) -> typing.List[PySide2.QtWidgets.QSize]... method translation (line 4528) | def translation(self) -> PySide2.QtWidgets.QPointF: ... method __bool__ (line 4529) | def __bool__(self) -> bool: ... class PaintNode (line 4531) | class PaintNode(Node): class ManagementType (line 4532) | class ManagementType: method __init__ (line 4538) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4539) | def __add__(self, other): ... method __and__ (line 4540) | def __and__(self, other): ... method __bool__ (line 4541) | def __bool__(self) -> bool: ... method __eq__ (line 4542) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4543) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4544) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4545) | def __hash__(self) -> int: ... method __index__ (line 4546) | def __index__(self) -> int: ... method __int__ (line 4547) | def __int__(self) -> int: ... method __le__ (line 4548) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4549) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4550) | def __mul__(self, other): ... method __ne__ (line 4551) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4552) | def __or__(self, other): ... method __pos__ (line 4553) | def __pos__(self): ... method __radd__ (line 4554) | def __radd__(self, other): ... method __rand__ (line 4555) | def __rand__(self, other): ... method __rmul__ (line 4556) | def __rmul__(self, other): ... method __ror__ (line 4557) | def __ror__(self, other): ... method __rsub__ (line 4558) | def __rsub__(self, other): ... method __rxor__ (line 4559) | def __rxor__(self, other): ... method __sub__ (line 4560) | def __sub__(self, other): ... method __xor__ (line 4561) | def __xor__(self, other): ... method __init__ (line 4571) | def __init__(self, *args, **kwargs) -> None: ... method bleed (line 4572) | def bleed(self) -> bool: ... method colorspaceConfig (line 4573) | def colorspaceConfig(self) -> ColorspaceConfig: ... method connectSignals (line 4574) | def connectSignals(self, *args, **kwargs): ... method depth (line 4575) | def depth(self): ... method fileSpace (line 4576) | def fileSpace(self) -> Image.FileSpace: ... method fillColor (line 4577) | def fillColor(self) -> Color: ... method imageSet (line 4578) | def imageSet(self) -> ImageSet: ... method isPaintNode (line 4579) | def isPaintNode(self) -> bool: ... method management (line 4580) | def management(self) -> ManagementType: ... method setBleed (line 4581) | def setBleed(self, Bleed: bool): ... method setColorspaceConfig (line 4582) | def setColorspaceConfig(self, Config: ColorspaceConfig): ... method setDepth (line 4583) | def setDepth(self, NewDepth: Image.Depth): ... method setFileSpace (line 4584) | def setFileSpace(self, FileSpace: Image.FileSpace): ... method setManagement (line 4585) | def setManagement(self, ManagedBy: ManagementType): ... method setSize (line 4586) | def setSize(self, NewSize: ImageSet.Size): ... method size (line 4587) | def size(self): ... method __bool__ (line 4588) | def __bool__(self) -> bool: ... class PaintableLayer (line 4590) | class PaintableLayer(AdjustableLayer): method __init__ (line 4592) | def __init__(self, *args, **kwargs) -> None: ... method bleed (line 4593) | def bleed(self) -> bool: ... method exportImages (line 4594) | def exportImages(self, PathAndTemplate: str, Options: typing.SupportsI... method exportSelectedPatches (line 4595) | def exportSelectedPatches(self, PathAndTemplate: str, Options: typing.... method imageSet (line 4596) | def imageSet(self) -> ImageSet: ... method importImages (line 4597) | def importImages(self, PathAndTemplate: str, ScaleOption: ImageSet.Sca... method setBleed (line 4598) | def setBleed(self, bleed: bool): ... method __bool__ (line 4599) | def __bool__(self) -> bool: ... class Palette (line 4601) | class Palette(WidgetBase): method __init__ (line 4603) | def __init__(self, *args, **kwargs) -> None: ... method bringToFront (line 4604) | def bringToFront(self): ... method fullName (line 4605) | def fullName(self) -> str: ... method helpURL (line 4606) | def helpURL(self) -> str: ... method name (line 4607) | def name(self) -> str: ... method setBodyWidget (line 4608) | def setBodyWidget(self, pBody: PySide2.QtWidgets.QWidget): ... method setCSHKey (line 4609) | def setCSHKey(self, Key: str): ... method setFullName (line 4610) | def setFullName(self, rName: str): ... method setShortName (line 4611) | def setShortName(self, rName: str): ... method shortName (line 4612) | def shortName(self) -> str: ... method showInFront (line 4613) | def showInFront(self): ... method __bool__ (line 4614) | def __bool__(self) -> bool: ... class PaletteManager (line 4616) | class PaletteManager(API): method __init__ (line 4618) | def __init__(self, *args, **kwargs) -> None: ... method create (line 4619) | def create(self, rName: str, pBodyWidget: PySide2.QtWidgets.QWidget): ... method createWithIcon (line 4620) | def createWithIcon(self, rName: str, rIconPath: str, pBodyWidget: PySi... method find (line 4621) | def find(self): ... method get (line 4622) | def get(self): ... method list (line 4623) | def list(self): ... method remove (line 4624) | def remove(self, rName: str): ... method __bool__ (line 4625) | def __bool__(self) -> bool: ... class Particle (line 4627) | class Particle(API): class ExportFlags (line 4628) | class ExportFlags: method __init__ (line 4648) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4649) | def __add__(self, other): ... method __and__ (line 4650) | def __and__(self, other): ... method __bool__ (line 4651) | def __bool__(self) -> bool: ... method __eq__ (line 4652) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4653) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4654) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4655) | def __hash__(self) -> int: ... method __index__ (line 4656) | def __index__(self) -> int: ... method __int__ (line 4657) | def __int__(self) -> int: ... method __le__ (line 4658) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4659) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4660) | def __mul__(self, other): ... method __ne__ (line 4661) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4662) | def __or__(self, other): ... method __pos__ (line 4663) | def __pos__(self): ... method __radd__ (line 4664) | def __radd__(self, other): ... method __rand__ (line 4665) | def __rand__(self, other): ... method __rmul__ (line 4666) | def __rmul__(self, other): ... method __ror__ (line 4667) | def __ror__(self, other): ... method __rsub__ (line 4668) | def __rsub__(self, other): ... method __rxor__ (line 4669) | def __rxor__(self, other): ... method __sub__ (line 4670) | def __sub__(self, other): ... method __xor__ (line 4671) | def __xor__(self, other): ... class ImportFlags (line 4673) | class ImportFlags: method __init__ (line 4682) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4683) | def __add__(self, other): ... method __and__ (line 4684) | def __and__(self, other): ... method __bool__ (line 4685) | def __bool__(self) -> bool: ... method __eq__ (line 4686) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4687) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4688) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4689) | def __hash__(self) -> int: ... method __index__ (line 4690) | def __index__(self) -> int: ... method __int__ (line 4691) | def __int__(self) -> int: ... method __le__ (line 4692) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4694) | def __mul__(self, other): ... method __ne__ (line 4695) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4696) | def __or__(self, other): ... method __pos__ (line 4697) | def __pos__(self): ... method __radd__ (line 4698) | def __radd__(self, other): ... method __rand__ (line 4699) | def __rand__(self, other): ... method __rmul__ (line 4700) | def __rmul__(self, other): ... method __ror__ (line 4701) | def __ror__(self, other): ... method __rsub__ (line 4702) | def __rsub__(self, other): ... method __rxor__ (line 4703) | def __rxor__(self, other): ... method __sub__ (line 4704) | def __sub__(self, other): ... method __xor__ (line 4705) | def __xor__(self, other): ... class InterpolationMethod (line 4707) | class InterpolationMethod: method __init__ (line 4715) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4716) | def __add__(self, other): ... method __and__ (line 4717) | def __and__(self, other): ... method __bool__ (line 4718) | def __bool__(self) -> bool: ... method __eq__ (line 4719) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4720) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4721) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4722) | def __hash__(self) -> int: ... method __index__ (line 4723) | def __index__(self) -> int: ... method __int__ (line 4724) | def __int__(self) -> int: ... method __le__ (line 4725) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4726) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4727) | def __mul__(self, other): ... method __ne__ (line 4728) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4729) | def __or__(self, other): ... method __pos__ (line 4730) | def __pos__(self): ... method __radd__ (line 4731) | def __radd__(self, other): ... method __rand__ (line 4732) | def __rand__(self, other): ... method __rmul__ (line 4733) | def __rmul__(self, other): ... method __ror__ (line 4734) | def __ror__(self, other): ... method __rsub__ (line 4735) | def __rsub__(self, other): ... method __rxor__ (line 4736) | def __rxor__(self, other): ... method __sub__ (line 4737) | def __sub__(self, other): ... method __xor__ (line 4738) | def __xor__(self, other): ... class RangeUnits (line 4740) | class RangeUnits: method __init__ (line 4747) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4748) | def __add__(self, other): ... method __and__ (line 4749) | def __and__(self, other): ... method __bool__ (line 4750) | def __bool__(self) -> bool: ... method __eq__ (line 4751) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4752) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4753) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4754) | def __hash__(self) -> int: ... method __index__ (line 4755) | def __index__(self) -> int: ... method __int__ (line 4756) | def __int__(self) -> int: ... method __le__ (line 4757) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4758) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4759) | def __mul__(self, other): ... method __ne__ (line 4760) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4761) | def __or__(self, other): ... method __pos__ (line 4762) | def __pos__(self): ... method __radd__ (line 4763) | def __radd__(self, other): ... method __rand__ (line 4764) | def __rand__(self, other): ... method __rmul__ (line 4765) | def __rmul__(self, other): ... method __ror__ (line 4766) | def __ror__(self, other): ... method __rsub__ (line 4767) | def __rsub__(self, other): ... method __rxor__ (line 4768) | def __rxor__(self, other): ... method __sub__ (line 4769) | def __sub__(self, other): ... method __xor__ (line 4770) | def __xor__(self, other): ... class SearchMethod (line 4772) | class SearchMethod: method __init__ (line 4780) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4781) | def __add__(self, other): ... method __and__ (line 4782) | def __and__(self, other): ... method __bool__ (line 4783) | def __bool__(self) -> bool: ... method __eq__ (line 4784) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4785) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4786) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4787) | def __hash__(self) -> int: ... method __index__ (line 4788) | def __index__(self) -> int: ... method __int__ (line 4789) | def __int__(self) -> int: ... method __le__ (line 4790) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4791) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4792) | def __mul__(self, other): ... method __ne__ (line 4793) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4794) | def __or__(self, other): ... method __pos__ (line 4795) | def __pos__(self): ... method __radd__ (line 4796) | def __radd__(self, other): ... method __rand__ (line 4797) | def __rand__(self, other): ... method __rmul__ (line 4798) | def __rmul__(self, other): ... method __ror__ (line 4799) | def __ror__(self, other): ... method __rsub__ (line 4800) | def __rsub__(self, other): ... method __rxor__ (line 4801) | def __rxor__(self, other): ... method __sub__ (line 4802) | def __sub__(self, other): ... method __xor__ (line 4803) | def __xor__(self, other): ... method __init__ (line 4837) | def __init__(self, *args, **kwargs) -> None: ... method availableOps (line 4838) | def availableOps(self, *args, **kwargs): ... method exportGeo (line 4839) | def exportGeo(self, *args, **kwargs): ... method exportImageSets (line 4840) | def exportImageSets(self, *args, **kwargs): ... method findOp (line 4841) | def findOp(self, *args, **kwargs): ... method importImageSets (line 4842) | def importImageSets(self, *args, **kwargs): ... method interpolationMethods (line 4843) | def interpolationMethods(self, *args, **kwargs): ... method rangeUnits (line 4844) | def rangeUnits(self, *args, **kwargs): ... method searchMethods (line 4845) | def searchMethods(self, *args, **kwargs): ... method supportedFileFormats (line 4846) | def supportedFileFormats(self, *args, **kwargs): ... method transferChannel (line 4847) | def transferChannel(self, *args, **kwargs): ... method transferImageSets (line 4848) | def transferImageSets(self, *args, **kwargs): ... method transferLayers (line 4849) | def transferLayers(self, *args, **kwargs): ... method __bool__ (line 4850) | def __bool__(self) -> bool: ... class ParticleOp (line 4852) | class ParticleOp(PropertySource): method __init__ (line 4854) | def __init__(self, *args, **kwargs) -> None: ... method description (line 4855) | def description(self, *args, **kwargs): ... method execute (line 4856) | def execute(self, *args, **kwargs): ... method name (line 4857) | def name(self, *args, **kwargs): ... method propertyWidget (line 4858) | def propertyWidget(self, *args, **kwargs): ... method __bool__ (line 4859) | def __bool__(self) -> bool: ... class PatchLinksManager (line 4861) | class PatchLinksManager(API): method __init__ (line 4868) | def __init__(self, *args, **kwargs) -> None: ... method canLinkImageInternals (line 4869) | def canLinkImageInternals(self, Images: typing.List[Image]) -> bool: ... method canLinkImages (line 4870) | def canLinkImages(self, Images: typing.List[Image], GroupName: str) ->... method canLinkPatchInternals (line 4871) | def canLinkPatchInternals(self, Patches: typing.List[GeoPatch], pImage... method canLinkPatches (line 4872) | def canLinkPatches(self, Patches: typing.List[GeoPatch], GroupName: st... method generateUniqueGroupName (line 4873) | def generateUniqueGroupName(self) -> str: ... method groupNames (line 4874) | def groupNames(self) -> typing.List[str]: ... method groupNamesForImageSet (line 4875) | def groupNamesForImageSet(self, pImageSet: ImageSet) -> typing.List[st... method imageGroup (line 4876) | def imageGroup(self, Img: Image) -> str: ... method images (line 4877) | def images(self, GroupName: str) -> typing.List[Image]: ... method isImageLinked (line 4878) | def isImageLinked(self, Img: Image) -> bool: ... method isPatchLinked (line 4879) | def isPatchLinked(self, Patch: GeoPatch, pImageSet: ImageSet) -> bool:... method linkImages (line 4880) | def linkImages(self, Images: typing.List[Image], GroupName: str): ... method linkPatches (line 4881) | def linkPatches(self, Patches: typing.List[GeoPatch], GroupName: str, ... method linkSelectedPatches (line 4882) | def linkSelectedPatches(self, GroupName: str, pImageSet: ImageSet): ... method linkedImages (line 4883) | def linkedImages(self, Img: Image) -> typing.List[Image]: ... method linkedPatches (line 4884) | def linkedPatches(self, Patch: GeoPatch, pImageSet: ImageSet = ...) ->... method patchGroup (line 4885) | def patchGroup(self, Patch: GeoPatch, pImageSet: ImageSet) -> str: ... method patches (line 4886) | def patches(self, GroupName: str, pImageSet: ImageSet = ...) -> typing... method removeGroup (line 4887) | def removeGroup(self, GroupName: str): ... method renameGroup (line 4888) | def renameGroup(self, OldName: str, NewName: str): ... method unlinkImage (line 4889) | def unlinkImage(self, Img: Image): ... method unlinkPatch (line 4890) | def unlinkPatch(self, Patch: GeoPatch, pImageSet: ImageSet): ... method unlinkSelectedPatches (line 4891) | def unlinkSelectedPatches(self, pImageSet: ImageSet): ... method __bool__ (line 4892) | def __bool__(self) -> bool: ... class PatchSelectionGroup (line 4894) | class PatchSelectionGroup(SelectionGroup): method __init__ (line 4896) | def __init__(self, *args, **kwargs) -> None: ... method patchList (line 4897) | def patchList(self) -> typing.List[GeoPatch]: ... method __bool__ (line 4898) | def __bool__(self) -> bool: ... class PointLight (line 4900) | class PointLight(Light): method __init__ (line 4902) | def __init__(self, *args, **kwargs) -> None: ... method ambient (line 4903) | def ambient(self) -> Color: ... method constantAttenuation (line 4904) | def constantAttenuation(self) -> float: ... method diffuse (line 4905) | def diffuse(self) -> Color: ... method fixedTo (line 4906) | def fixedTo(self) -> FixedTo: ... method intensity (line 4907) | def intensity(self) -> float: ... method linearAttenuation (line 4908) | def linearAttenuation(self) -> float: ... method position (line 4909) | def position(self, Frame: typing.SupportsInt = ...) -> VectorN: ... method quadraticAttenuation (line 4910) | def quadraticAttenuation(self) -> float: ... method renderShadows (line 4911) | def renderShadows(self) -> bool: ... method setAmbient (line 4912) | def setAmbient(self, NewColor: Color): ... method setConstantAttenuation (line 4913) | def setConstantAttenuation(self, Atten: float): ... method setDiffuse (line 4914) | def setDiffuse(self, NewColor: Color): ... method setFixedTo (line 4915) | def setFixedTo(self, TargetType: FixedTo): ... method setIntensity (line 4916) | def setIntensity(self, Intensity: float): ... method setLinearAttenuation (line 4917) | def setLinearAttenuation(self, Atten: float): ... method setPosition (line 4918) | def setPosition(self, pTranslation: VectorN): ... method setQuadraticAttenuation (line 4919) | def setQuadraticAttenuation(self, Atten: float): ... method setRenderShadows (line 4920) | def setRenderShadows(self, Render: bool): ... method setSpecular (line 4921) | def setSpecular(self, NewColor: Color): ... method setSpotCutoff (line 4922) | def setSpotCutoff(self, Cutoff: float): ... method setSpotDirection (line 4923) | def setSpotDirection(self, Direction: VectorN): ... method setSpotExponent (line 4924) | def setSpotExponent(self, Exponent: float): ... method specular (line 4925) | def specular(self) -> Color: ... method spotCutoff (line 4926) | def spotCutoff(self) -> float: ... method spotDirection (line 4927) | def spotDirection(self) -> VectorN: ... method spotExponent (line 4928) | def spotExponent(self) -> float: ... method __bool__ (line 4929) | def __bool__(self) -> bool: ... class PostFilter (line 4931) | class PostFilter(PropertySource): class PostFilterFlags (line 4932) | class PostFilterFlags: method __init__ (line 4938) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4939) | def __add__(self, other): ... method __and__ (line 4940) | def __and__(self, other): ... method __bool__ (line 4941) | def __bool__(self) -> bool: ... method __eq__ (line 4942) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4943) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4944) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4945) | def __hash__(self) -> int: ... method __index__ (line 4946) | def __index__(self) -> int: ... method __int__ (line 4947) | def __int__(self) -> int: ... method __le__ (line 4948) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4949) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4950) | def __mul__(self, other): ... method __ne__ (line 4951) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4952) | def __or__(self, other): ... method __pos__ (line 4953) | def __pos__(self): ... method __radd__ (line 4954) | def __radd__(self, other): ... method __rand__ (line 4955) | def __rand__(self, other): ... method __rmul__ (line 4956) | def __rmul__(self, other): ... method __ror__ (line 4957) | def __ror__(self, other): ... method __rsub__ (line 4958) | def __rsub__(self, other): ... method __rxor__ (line 4959) | def __rxor__(self, other): ... method __sub__ (line 4960) | def __sub__(self, other): ... method __xor__ (line 4961) | def __xor__(self, other): ... method __init__ (line 4966) | def __init__(self, *args, **kwargs) -> None: ... method enabled (line 4967) | def enabled(self) -> bool: ... method flags (line 4968) | def flags(self) -> int: ... method name (line 4969) | def name(self) -> str: ... method setEnabled (line 4970) | def setEnabled(self, Enabled: bool): ... method setFlags (line 4971) | def setFlags(self, Flags: typing.SupportsInt): ... method __bool__ (line 4972) | def __bool__(self) -> bool: ... class PostFilterCollection (line 4974) | class PostFilterCollection(Metadata): class PostFilterCollectionFlags (line 4975) | class PostFilterCollectionFlags: method __init__ (line 4982) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4983) | def __add__(self, other): ... method __and__ (line 4984) | def __and__(self, other): ... method __bool__ (line 4985) | def __bool__(self) -> bool: ... method __eq__ (line 4986) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4987) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4988) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4989) | def __hash__(self) -> int: ... method __index__ (line 4990) | def __index__(self) -> int: ... method __int__ (line 4991) | def __int__(self) -> int: ... method __le__ (line 4992) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4993) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4994) | def __mul__(self, other): ... method __ne__ (line 4995) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4996) | def __or__(self, other): ... method __pos__ (line 4997) | def __pos__(self): ... method __radd__ (line 4998) | def __radd__(self, other): ... method __rand__ (line 4999) | def __rand__(self, other): ... method __rmul__ (line 5000) | def __rmul__(self, other): ... method __ror__ (line 5001) | def __ror__(self, other): ... method __rsub__ (line 5002) | def __rsub__(self, other): ... method __rxor__ (line 5003) | def __rxor__(self, other): ... method __sub__ (line 5004) | def __sub__(self, other): ... method __xor__ (line 5005) | def __xor__(self, other): ... method __init__ (line 5010) | def __init__(self, *args, **kwargs) -> None: ... method addFilter (line 5011) | def addFilter(self, Name: str, Index: typing.SupportsInt = ...): ... method clear (line 5012) | def clear(self): ... method createCustomLUT (line 5013) | def createCustomLUT(self, Name: str, Index: typing.SupportsInt = ...) ... method createFileLUT (line 5014) | def createFileLUT(self, Name: str, Index: typing.SupportsInt = ...) ->... method createGLSL (line 5015) | def createGLSL(self, Name: str, DefinitionsSnippet: str = ..., BodySni... method filters (line 5016) | def filters(self) -> typing.List[PostFilter]: ... method find (line 5017) | def find(self, Name: str) -> PostFilter: ... method flags (line 5018) | def flags(self) -> int: ... method indexOf (line 5019) | def indexOf(self, Filter: PostFilter, StartAt: typing.SupportsInt = ..... method isReadOnly (line 5020) | def isReadOnly(self): ... method move (line 5021) | def move(self, Filter: PostFilter, Index: typing.SupportsInt): ... method name (line 5022) | def name(self) -> str: ... method remove (line 5023) | def remove(self, Filter: PostFilter): ... method setFlags (line 5024) | def setFlags(self, Flags: typing.SupportsInt): ... method setReadOnly (line 5025) | def setReadOnly(self): ... method size (line 5026) | def size(self): ... method __bool__ (line 5027) | def __bool__(self) -> bool: ... class Preferences (line 5029) | class Preferences(API): method __init__ (line 5031) | def __init__(self, *args, **kwargs) -> None: ... method event (line 5032) | def event(self, *args, **kwargs): ... method get (line 5033) | def get(self, Path: str) -> variant: ... method list (line 5034) | def list(self, Path: str = ...): ... method prettyPropertyName (line 5035) | def prettyPropertyName(self): ... method remove (line 5036) | def remove(self, Path: str): ... method set (line 5037) | def set(self, Path: str, Value: variant): ... method setChangedScript (line 5038) | def setChangedScript(self, Path: str, ChangedScript: str): ... method setDefault (line 5039) | def setDefault(self, Path: str, Default: variant): ... method setDisplayName (line 5040) | def setDisplayName(self, Path: str, DisplayName: str): ... method setItemList (line 5041) | def setItemList(self, Path: str, ItemList: typing.List[str]): ... method setRange (line 5042) | def setRange(self, Path: str, Min: variant, Max: variant): ... method setStep (line 5043) | def setStep(self, Path: str, Step: variant): ... method __bool__ (line 5044) | def __bool__(self) -> bool: ... class ProceduralLayer (line 5046) | class ProceduralLayer(AdjustableLayer): method __init__ (line 5048) | def __init__(self, *args, **kwargs) -> None: ... method convertToPaintable (line 5049) | def convertToPaintable(self, SelectedOnly: bool = ...): ... method exportImages (line 5050) | def exportImages(self, PathAndTemplate: str, Options: typing.SupportsI... method exportSelectedPatches (line 5051) | def exportSelectedPatches(self, PathAndTemplate: str, Options: typing.... method getProceduralParameter (line 5052) | def getProceduralParameter(self, ParameterName: str) -> variant: ... method getProceduralParameterAsImage (line 5053) | def getProceduralParameterAsImage(self, ParameterName: str) -> Image: ... method proceduralParameters (line 5054) | def proceduralParameters(self) -> typing.List[str]: ... method proceduralType (line 5055) | def proceduralType(self) -> str: ... method setProceduralParameter (line 5056) | def setProceduralParameter(self, ParameterName: str, NewValue: variant... method __bool__ (line 5057) | def __bool__(self) -> bool: ... class Project (line 5059) | class Project(PropertySource): class LightingMode (line 5060) | class LightingMode: method __init__ (line 5067) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5068) | def __add__(self, other): ... method __and__ (line 5069) | def __and__(self, other): ... method __bool__ (line 5070) | def __bool__(self) -> bool: ... method __eq__ (line 5071) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5072) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5073) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5074) | def __hash__(self) -> int: ... method __index__ (line 5075) | def __index__(self) -> int: ... method __int__ (line 5076) | def __int__(self) -> int: ... method __le__ (line 5077) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5078) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5079) | def __mul__(self, other): ... method __ne__ (line 5080) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5081) | def __or__(self, other): ... method __pos__ (line 5082) | def __pos__(self): ... method __radd__ (line 5083) | def __radd__(self, other): ... method __rand__ (line 5084) | def __rand__(self, other): ... method __rmul__ (line 5085) | def __rmul__(self, other): ... method __ror__ (line 5086) | def __ror__(self, other): ... method __rsub__ (line 5087) | def __rsub__(self, other): ... method __rxor__ (line 5088) | def __rxor__(self, other): ... method __sub__ (line 5089) | def __sub__(self, other): ... method __xor__ (line 5090) | def __xor__(self, other): ... method __init__ (line 5098) | def __init__(self, *args, **kwargs) -> None: ... method close (line 5099) | def close(self, ConfirmIfModified: bool = ...): ... method colorspaceDefaults (line 5100) | def colorspaceDefaults(self) -> ColorspaceDefaults: ... method info (line 5101) | def info(self) -> ProjectInfo: ... method isDirty (line 5102) | def isDirty(self) -> bool: ... method isModified (line 5103) | def isModified(self) -> bool: ... method isSaved (line 5104) | def isSaved(self) -> bool: ... method lightingMode (line 5105) | def lightingMode(self) -> LightingMode: ... method name (line 5106) | def name(self) -> str: ... method remapConfigColorspaces (line 5107) | def remapConfigColorspaces(self, ColorspaceRemappings: dict[str, varia... method removeInvalidImageTags (line 5108) | def removeInvalidImageTags(self) -> bool: ... method save (line 5109) | def save(self, ForceSave: bool = ...): ... method setColorspaceDefaults (line 5110) | def setColorspaceDefaults(self, Defaults: ColorspaceDefaults): ... method setLightingMode (line 5111) | def setLightingMode(self, Mode: LightingMode): ... method updatePatchResolutionInfo (line 5112) | def updatePatchResolutionInfo(self): ... method uuid (line 5113) | def uuid(self) -> str: ... method __bool__ (line 5114) | def __bool__(self) -> bool: ... class ProjectInfo (line 5116) | class ProjectInfo(Metadata): method __init__ (line 5118) | def __init__(self, *args, **kwargs) -> None: ... method addMetadataToToolTip (line 5119) | def addMetadataToToolTip(self, Name: str): ... method autosavePath (line 5120) | def autosavePath(self): ... method cacheDiskUsage (line 5121) | def cacheDiskUsage(self): ... method close (line 5122) | def close(self, ConfirmIfModified: bool = ...): ... method createdTime (line 5123) | def createdTime(self): ... method isEnabled (line 5124) | def isEnabled(self) -> bool: ... method isMinionProject (line 5125) | def isMinionProject(self) -> bool: ... method isNull (line 5126) | def isNull(self): ... method isOpen (line 5127) | def isOpen(self): ... method lastModifiedTime (line 5128) | def lastModifiedTime(self): ... method modelPath (line 5129) | def modelPath(self): ... method modelPathList (line 5130) | def modelPathList(self): ... method name (line 5131) | def name(self): ... method open (line 5132) | def open(self) -> Project: ... method projectDirectories (line 5133) | def projectDirectories(self): ... method projectPath (line 5134) | def projectPath(self): ... method recentIndex (line 5135) | def recentIndex(self) -> int: ... method removeMetadataFromToolTip (line 5136) | def removeMetadataFromToolTip(self, Name: str): ... method setEnabled (line 5137) | def setEnabled(self, Enabled: bool): ... method subcachePath (line 5138) | def subcachePath(self): ... method uuid (line 5139) | def uuid(self): ... method version (line 5140) | def version(self) -> str: ... method versionHistory (line 5141) | def versionHistory(self) -> str: ... method __bool__ (line 5142) | def __bool__(self) -> bool: ... class ProjectManager (line 5144) | class ProjectManager(API): class AllowedVersions (line 5145) | class AllowedVersions: method __init__ (line 5153) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5154) | def __add__(self, other): ... method __and__ (line 5155) | def __and__(self, other): ... method __bool__ (line 5156) | def __bool__(self) -> bool: ... method __eq__ (line 5157) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5158) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5159) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5160) | def __hash__(self) -> int: ... method __index__ (line 5161) | def __index__(self) -> int: ... method __int__ (line 5162) | def __int__(self) -> int: ... method __le__ (line 5163) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5164) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5165) | def __mul__(self, other): ... method __ne__ (line 5166) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5167) | def __or__(self, other): ... method __pos__ (line 5168) | def __pos__(self): ... method __radd__ (line 5169) | def __radd__(self, other): ... method __rand__ (line 5170) | def __rand__(self, other): ... method __rmul__ (line 5171) | def __rmul__(self, other): ... method __ror__ (line 5172) | def __ror__(self, other): ... method __rsub__ (line 5173) | def __rsub__(self, other): ... method __rxor__ (line 5174) | def __rxor__(self, other): ... method __sub__ (line 5175) | def __sub__(self, other): ... method __xor__ (line 5176) | def __xor__(self, other): ... class MeshOptions (line 5178) | class MeshOptions: method __init__ (line 5184) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5185) | def __add__(self, other): ... method __and__ (line 5186) | def __and__(self, other): ... method __bool__ (line 5187) | def __bool__(self) -> bool: ... method __eq__ (line 5188) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5189) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5190) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5191) | def __hash__(self) -> int: ... method __index__ (line 5192) | def __index__(self) -> int: ... method __int__ (line 5193) | def __int__(self) -> int: ... method __le__ (line 5194) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5195) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5196) | def __mul__(self, other): ... method __ne__ (line 5197) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5198) | def __or__(self, other): ... method __pos__ (line 5199) | def __pos__(self): ... method __radd__ (line 5200) | def __radd__(self, other): ... method __rand__ (line 5201) | def __rand__(self, other): ... method __rmul__ (line 5202) | def __rmul__(self, other): ... method __ror__ (line 5203) | def __ror__(self, other): ... method __rsub__ (line 5204) | def __rsub__(self, other): ... method __rxor__ (line 5205) | def __rxor__(self, other): ... method __sub__ (line 5206) | def __sub__(self, other): ... method __xor__ (line 5207) | def __xor__(self, other): ... class MultipleGeometryOptions (line 5209) | class MultipleGeometryOptions: method __init__ (line 5215) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5216) | def __add__(self, other): ... method __and__ (line 5217) | def __and__(self, other): ... method __bool__ (line 5218) | def __bool__(self) -> bool: ... method __eq__ (line 5219) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5220) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5221) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5222) | def __hash__(self) -> int: ... method __index__ (line 5223) | def __index__(self) -> int: ... method __int__ (line 5224) | def __int__(self) -> int: ... method __le__ (line 5225) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5226) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5227) | def __mul__(self, other): ... method __ne__ (line 5228) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5229) | def __or__(self, other): ... method __pos__ (line 5230) | def __pos__(self): ... method __radd__ (line 5231) | def __radd__(self, other): ... method __rand__ (line 5232) | def __rand__(self, other): ... method __rmul__ (line 5233) | def __rmul__(self, other): ... method __ror__ (line 5234) | def __ror__(self, other): ... method __rsub__ (line 5235) | def __rsub__(self, other): ... method __rxor__ (line 5236) | def __rxor__(self, other): ... method __sub__ (line 5237) | def __sub__(self, other): ... method __xor__ (line 5238) | def __xor__(self, other): ... class OCIOOptions (line 5240) | class OCIOOptions: method __init__ (line 5248) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5249) | def __add__(self, other): ... method __and__ (line 5250) | def __and__(self, other): ... method __bool__ (line 5251) | def __bool__(self) -> bool: ... method __eq__ (line 5252) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5253) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5254) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5255) | def __hash__(self) -> int: ... method __index__ (line 5256) | def __index__(self) -> int: ... method __int__ (line 5257) | def __int__(self) -> int: ... method __le__ (line 5258) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5259) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5260) | def __mul__(self, other): ... method __ne__ (line 5261) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5262) | def __or__(self, other): ... method __pos__ (line 5263) | def __pos__(self): ... method __radd__ (line 5264) | def __radd__(self, other): ... method __rand__ (line 5265) | def __rand__(self, other): ... method __rmul__ (line 5266) | def __rmul__(self, other): ... method __ror__ (line 5267) | def __ror__(self, other): ... method __rsub__ (line 5268) | def __rsub__(self, other): ... method __rxor__ (line 5269) | def __rxor__(self, other): ... method __sub__ (line 5270) | def __sub__(self, other): ... method __xor__ (line 5271) | def __xor__(self, other): ... class PtexFaceSizeScheme (line 5273) | class PtexFaceSizeScheme: method __init__ (line 5279) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5280) | def __add__(self, other): ... method __and__ (line 5281) | def __and__(self, other): ... method __bool__ (line 5282) | def __bool__(self) -> bool: ... method __eq__ (line 5283) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5284) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5285) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5286) | def __hash__(self) -> int: ... method __index__ (line 5287) | def __index__(self) -> int: ... method __int__ (line 5288) | def __int__(self) -> int: ... method __le__ (line 5289) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5290) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5291) | def __mul__(self, other): ... method __ne__ (line 5292) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5293) | def __or__(self, other): ... method __pos__ (line 5294) | def __pos__(self): ... method __radd__ (line 5295) | def __radd__(self, other): ... method __rand__ (line 5296) | def __rand__(self, other): ... method __rmul__ (line 5297) | def __rmul__(self, other): ... method __ror__ (line 5298) | def __ror__(self, other): ... method __rsub__ (line 5299) | def __rsub__(self, other): ... method __rxor__ (line 5300) | def __rxor__(self, other): ... method __sub__ (line 5301) | def __sub__(self, other): ... method __xor__ (line 5302) | def __xor__(self, other): ... class PtexFormat (line 5304) | class PtexFormat: method __init__ (line 5311) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5312) | def __add__(self, other): ... method __and__ (line 5313) | def __and__(self, other): ... method __bool__ (line 5314) | def __bool__(self) -> bool: ... method __eq__ (line 5315) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5316) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5317) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5318) | def __hash__(self) -> int: ... method __index__ (line 5319) | def __index__(self) -> int: ... method __int__ (line 5320) | def __int__(self) -> int: ... method __le__ (line 5321) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5322) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5323) | def __mul__(self, other): ... method __ne__ (line 5324) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5325) | def __or__(self, other): ... method __pos__ (line 5326) | def __pos__(self): ... method __radd__ (line 5327) | def __radd__(self, other): ... method __rand__ (line 5328) | def __rand__(self, other): ... method __rmul__ (line 5329) | def __rmul__(self, other): ... method __ror__ (line 5330) | def __ror__(self, other): ... method __rsub__ (line 5331) | def __rsub__(self, other): ... method __rxor__ (line 5332) | def __rxor__(self, other): ... method __sub__ (line 5333) | def __sub__(self, other): ... method __xor__ (line 5334) | def __xor__(self, other): ... method __init__ (line 5367) | def __init__(self, *args, **kwargs) -> None: ... method archive (line 5368) | def archive(self, rUUIDOrName: str, rTargetFileName: str): ... method cachePath (line 5369) | def cachePath(self) -> str: ... method close (line 5370) | def close(self, ConfirmIfModified: bool = ...): ... method copy (line 5371) | def copy(self, rUUIDOrName: str) -> ProjectInfo: ... method create (line 5372) | def create(self, Name: str, MeshPaths: variant, ChannelsToCreate: typi... method current (line 5373) | def current(self) -> Project: ... method duplicate (line 5374) | def duplicate(self, rUUIDOrName: str) -> ProjectInfo: ... method extract (line 5375) | def extract(self, rFileName: str) -> ProjectInfo: ... method find (line 5376) | def find(self, rUUIDOrName: str) -> ProjectInfo: ... method get (line 5377) | def get(self, rUUIDOrName: str) -> ProjectInfo: ... method list (line 5378) | def list(self) -> typing.List[ProjectInfo]: ... method names (line 5379) | def names(self) -> typing.List[str]: ... method open (line 5380) | def open(self, rUUIDOrName: str, Allowed: AllowedVersions = ..., OCIO:... method remove (line 5381) | def remove(self, rUUIDOrName: str): ... method rename (line 5382) | def rename(self, OldName: str, NewName: str): ... method showCreateDialog (line 5383) | def showCreateDialog(self): ... method __bool__ (line 5384) | def __bool__(self) -> bool: ... class ProjectionManager (line 5386) | class ProjectionManager(PropertySource): class MirrorPlane (line 5387) | class MirrorPlane: method __init__ (line 5394) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5395) | def __add__(self, other): ... method __and__ (line 5396) | def __and__(self, other): ... method __bool__ (line 5397) | def __bool__(self) -> bool: ... method __eq__ (line 5398) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5399) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5400) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5401) | def __hash__(self) -> int: ... method __index__ (line 5402) | def __index__(self) -> int: ... method __int__ (line 5403) | def __int__(self) -> int: ... method __le__ (line 5404) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5405) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5406) | def __mul__(self, other): ... method __ne__ (line 5407) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5408) | def __or__(self, other): ... method __pos__ (line 5409) | def __pos__(self): ... method __radd__ (line 5410) | def __radd__(self, other): ... method __rand__ (line 5411) | def __rand__(self, other): ... method __rmul__ (line 5412) | def __rmul__(self, other): ... method __ror__ (line 5413) | def __ror__(self, other): ... method __rsub__ (line 5414) | def __rsub__(self, other): ... method __rxor__ (line 5415) | def __rxor__(self, other): ... method __sub__ (line 5416) | def __sub__(self, other): ... method __xor__ (line 5417) | def __xor__(self, other): ... method __init__ (line 5422) | def __init__(self, *args, **kwargs) -> None: ... method debugOcclusionResult (line 5423) | def debugOcclusionResult(self): ... method mirrorAxis (line 5424) | def mirrorAxis(self): ... method mirrorProjectionEnabled (line 5425) | def mirrorProjectionEnabled(self): ... method paintingMode (line 5426) | def paintingMode(self) -> Layer.BlendMode: ... method paintingModeList (line 5427) | def paintingModeList(self) -> typing.List[Layer.BlendMode]: ... method paintingModePath (line 5428) | def paintingModePath(self) -> str: ... method paintingModePathList (line 5429) | def paintingModePathList(self) -> typing.List[str]: ... method paintingModeStr (line 5430) | def paintingModeStr(self) -> str: ... method paintingModeStrList (line 5431) | def paintingModeStrList(self) -> typing.List[str]: ... method setMirrorAxis (line 5432) | def setMirrorAxis(self): ... method setPaintingMode (line 5433) | def setPaintingMode(self, PaintingMode: variant): ... method toggleDebugDrawOcclusion (line 5434) | def toggleDebugDrawOcclusion(self): ... method __bool__ (line 5435) | def __bool__(self) -> bool: ... class Projector (line 5437) | class Projector(Metadata): class BitDepth (line 5438) | class BitDepth: method __init__ (line 5445) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5446) | def __add__(self, other): ... method __and__ (line 5447) | def __and__(self, other): ... method __bool__ (line 5448) | def __bool__(self) -> bool: ... method __eq__ (line 5449) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5450) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5451) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5452) | def __hash__(self) -> int: ... method __index__ (line 5453) | def __index__(self) -> int: ... method __int__ (line 5454) | def __int__(self) -> int: ... method __le__ (line 5455) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5456) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5457) | def __mul__(self, other): ... method __ne__ (line 5458) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5459) | def __or__(self, other): ... method __pos__ (line 5460) | def __pos__(self): ... method __radd__ (line 5461) | def __radd__(self, other): ... method __rand__ (line 5462) | def __rand__(self, other): ... method __rmul__ (line 5463) | def __rmul__(self, other): ... method __ror__ (line 5464) | def __ror__(self, other): ... method __rsub__ (line 5465) | def __rsub__(self, other): ... method __rxor__ (line 5466) | def __rxor__(self, other): ... method __sub__ (line 5467) | def __sub__(self, other): ... method __xor__ (line 5468) | def __xor__(self, other): ... class DepthProjectionMode (line 5470) | class DepthProjectionMode: method __init__ (line 5476) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5477) | def __add__(self, other): ... method __and__ (line 5478) | def __and__(self, other): ... method __bool__ (line 5479) | def __bool__(self) -> bool: ... method __eq__ (line 5480) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5481) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5482) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5483) | def __hash__(self) -> int: ... method __index__ (line 5484) | def __index__(self) -> int: ... method __int__ (line 5485) | def __int__(self) -> int: ... method __le__ (line 5486) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5487) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5488) | def __mul__(self, other): ... method __ne__ (line 5489) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5490) | def __or__(self, other): ... method __pos__ (line 5491) | def __pos__(self): ... method __radd__ (line 5492) | def __radd__(self, other): ... method __rand__ (line 5493) | def __rand__(self, other): ... method __rmul__ (line 5494) | def __rmul__(self, other): ... method __ror__ (line 5495) | def __ror__(self, other): ... method __rsub__ (line 5496) | def __rsub__(self, other): ... method __rxor__ (line 5497) | def __rxor__(self, other): ... method __sub__ (line 5498) | def __sub__(self, other): ... method __xor__ (line 5499) | def __xor__(self, other): ... class LightingMode (line 5501) | class LightingMode: method __init__ (line 5508) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5509) | def __add__(self, other): ... method __and__ (line 5510) | def __and__(self, other): ... method __bool__ (line 5511) | def __bool__(self) -> bool: ... method __eq__ (line 5512) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5513) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5514) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5515) | def __hash__(self) -> int: ... method __index__ (line 5516) | def __index__(self) -> int: ... method __int__ (line 5517) | def __int__(self) -> int: ... method __le__ (line 5518) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5519) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5520) | def __mul__(self, other): ... method __ne__ (line 5521) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5522) | def __or__(self, other): ... method __pos__ (line 5523) | def __pos__(self): ... method __radd__ (line 5524) | def __radd__(self, other): ... method __rand__ (line 5525) | def __rand__(self, other): ... method __rmul__ (line 5526) | def __rmul__(self, other): ... method __ror__ (line 5527) | def __ror__(self, other): ... method __rsub__ (line 5528) | def __rsub__(self, other): ... method __rxor__ (line 5529) | def __rxor__(self, other): ... method __sub__ (line 5530) | def __sub__(self, other): ... method __xor__ (line 5531) | def __xor__(self, other): ... method __init__ (line 5547) | def __init__(self, *args, **kwargs) -> None: ... method bitDepth (line 5548) | def bitDepth(self) -> BitDepth: ... method camera (line 5549) | def camera(self): ... method clampColors (line 5550) | def clampColors(self) -> bool: ... method colorspaceConfig (line 5551) | def colorspaceConfig(self) -> ColorspaceConfig: ... method depthProjectionMode (line 5552) | def depthProjectionMode(self) -> DepthProjectionMode: ... method exportColorspaceConfig (line 5553) | def exportColorspaceConfig(self) -> ColorspaceConfig: ... method exportOptions (line 5554) | def exportOptions(self) -> variant: ... method exportPath (line 5555) | def exportPath(self) -> str: ... method format (line 5556) | def format(self): ... method frameOffset (line 5557) | def frameOffset(self) -> int: ... method height (line 5558) | def height(self) -> int: ... method importColorspaceConfig (line 5559) | def importColorspaceConfig(self) -> ColorspaceConfig: ... method importFromFile (line 5560) | def importFromFile(self, Path: str = ...): ... method importPath (line 5561) | def importPath(self) -> str: ... method lightingMode (line 5562) | def lightingMode(self) -> LightingMode: ... method makeCurrent (line 5563) | def makeCurrent(self): ... method name (line 5564) | def name(self) -> str: ... method paintingMode (line 5565) | def paintingMode(self) -> Layer.BlendMode: ... method paintingModePath (line 5566) | def paintingModePath(self) -> str: ... method paintingModeStr (line 5567) | def paintingModeStr(self) -> str: ... method project (line 5568) | def project(self): ... method projectFromFile (line 5569) | def projectFromFile(self, Path: str = ...): ... method projectionMaskNameList (line 5570) | def projectionMaskNameList(self) -> typing.List[str]: ... method projectionMaskProperty (line 5571) | def projectionMaskProperty(self): ... method projectionMaskPropertyList (line 5572) | def projectionMaskPropertyList(self): ... method rotation (line 5573) | def rotation(self): ... method save (line 5574) | def save(self, FileName: str): ... method scale (line 5575) | def scale(self): ... method setBitDepth (line 5576) | def setBitDepth(self, Depth: BitDepth): ... method setClampColors (line 5577) | def setClampColors(self, ClampColors: bool): ... method setColorspaceConfig (line 5578) | def setColorspaceConfig(self, Config: ColorspaceConfig): ... method setDepthProjectionMode (line 5579) | def setDepthProjectionMode(self, ProjectionMode: DepthProjectionMode):... method setExportColorspaceConfig (line 5580) | def setExportColorspaceConfig(self, Config: ColorspaceConfig): ... method setExportOptions (line 5581) | def setExportOptions(self, Options: variant): ... method setExportPath (line 5582) | def setExportPath(self, Path: str): ... method setFormat (line 5583) | def setFormat(self): ... method setFrameOffset (line 5584) | def setFrameOffset(self, Offset: typing.SupportsInt): ... method setImportColorspaceConfig (line 5585) | def setImportColorspaceConfig(self, Config: ColorspaceConfig): ... method setImportPath (line 5586) | def setImportPath(self, Path: str): ... method setLightingMode (line 5587) | def setLightingMode(self, NewMode: LightingMode): ... method setName (line 5588) | def setName(self): ... method setPaintingMode (line 5589) | def setPaintingMode(self, PaintingMode: variant): ... method setProjectionMaskProperty (line 5590) | def setProjectionMaskProperty(self): ... method setRotation (line 5591) | def setRotation(self): ... method setScale (line 5592) | def setScale(self): ... method setSize (line 5593) | def setSize(self): ... method setTranslation (line 5594) | def setTranslation(self): ... method setUseShader (line 5595) | def setUseShader(self, UseShader: str): ... method translation (line 5596) | def translation(self): ... method unproject (line 5597) | def unproject(self, SaveOptions: typing.SupportsInt = ...): ... method unprojectToFile (line 5598) | def unprojectToFile(self, Path: str = ..., Options: variant = ..., Sav... method useShader (line 5599) | def useShader(self) -> str: ... method useShaderList (line 5600) | def useShaderList(self) -> typing.List[str]: ... method width (line 5601) | def width(self) -> int: ... method __bool__ (line 5602) | def __bool__(self) -> bool: ... class ProjectorManager (line 5604) | class ProjectorManager(API): method __init__ (line 5606) | def __init__(self, *args, **kwargs) -> None: ... method create (line 5607) | def create(self, Name: str): ... method current (line 5608) | def current(self) -> Projector: ... method find (line 5609) | def find(self, Name: str) -> Projector: ... method get (line 5610) | def get(self, Name: str) -> Projector: ... method list (line 5611) | def list(self) -> typing.List[Projector]: ... method load (line 5612) | def load(self, Path: str, Options: typing.List[str] = ..., CameraNames... method names (line 5613) | def names(self) -> typing.List[str]: ... method remove (line 5614) | def remove(self, Name: str): ... method selection (line 5615) | def selection(self) -> typing.List[Projector]: ... method setCurrent (line 5616) | def setCurrent(self, Current: Projector): ... method __bool__ (line 5617) | def __bool__(self) -> bool: ... class PropertySource (line 5619) | class PropertySource(Metadata): method __init__ (line 5621) | def __init__(self, *args, **kwargs) -> None: ... method canResetProperty (line 5622) | def canResetProperty(self, *args, **kwargs): ... method getProperty (line 5623) | def getProperty(self, *args, **kwargs): ... method propertiesList (line 5624) | def propertiesList(self, *args, **kwargs): ... method propertyDisplayName (line 5625) | def propertyDisplayName(self, *args, **kwargs): ... method propertyEnumValues (line 5626) | def propertyEnumValues(self, *args, **kwargs): ... method propertyHasMinMax (line 5627) | def propertyHasMinMax(self, *args, **kwargs): ... method propertyIsEnum (line 5628) | def propertyIsEnum(self, *args, **kwargs): ... method propertyIsReadOnly (line 5629) | def propertyIsReadOnly(self, *args, **kwargs): ... method propertyMinMax (line 5630) | def propertyMinMax(self, *args, **kwargs): ... method propertyTooltip (line 5631) | def propertyTooltip(self, *args, **kwargs): ... method resetProperty (line 5632) | def resetProperty(self, *args, **kwargs): ... method setProperty (line 5633) | def setProperty(self, *args, **kwargs): ... method __bool__ (line 5634) | def __bool__(self) -> bool: ... class Ptex (line 5636) | class Ptex(Metadata): class ResizeMethod (line 5637) | class ResizeMethod: method __init__ (line 5644) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5645) | def __add__(self, other): ... method __and__ (line 5646) | def __and__(self, other): ... method __bool__ (line 5647) | def __bool__(self) -> bool: ... method __eq__ (line 5648) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5649) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5650) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5651) | def __hash__(self) -> int: ... method __index__ (line 5652) | def __index__(self) -> int: ... method __int__ (line 5653) | def __int__(self) -> int: ... method __le__ (line 5654) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5655) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5656) | def __mul__(self, other): ... method __ne__ (line 5657) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5658) | def __or__(self, other): ... method __pos__ (line 5659) | def __pos__(self): ... method __radd__ (line 5660) | def __radd__(self, other): ... method __rand__ (line 5661) | def __rand__(self, other): ... method __rmul__ (line 5662) | def __rmul__(self, other): ... method __ror__ (line 5663) | def __ror__(self, other): ... method __rsub__ (line 5664) | def __rsub__(self, other): ... method __rxor__ (line 5665) | def __rxor__(self, other): ... method __sub__ (line 5666) | def __sub__(self, other): ... method __xor__ (line 5667) | def __xor__(self, other): ... method __init__ (line 5672) | def __init__(self, *args, **kwargs) -> None: ... method doubleFaceSize (line 5673) | def doubleFaceSize(self, FaceId: typing.SupportsInt): ... method exportToPtexFile (line 5674) | def exportToPtexFile(self, PtexPathName: str, IncludeGeo: bool, Includ... method faceSize (line 5675) | def faceSize(self, FaceId: typing.SupportsInt) -> PySide2.QtWidgets.QS... method floodFillFace (line 5676) | def floodFillFace(self, FaceId: typing.SupportsInt, FillColor: Color):... method geoFaceCount (line 5677) | def geoFaceCount(self) -> int: ... method halveFaceSize (line 5678) | def halveFaceSize(self, FaceId: typing.SupportsInt): ... method hash (line 5679) | def hash(self) -> str: ... method importFromPtexFile (line 5680) | def importFromPtexFile(self, PtexPathName: str, RemapQuads: bool, Meth... method resizeFace (line 5681) | def resizeFace(self, FaceId: typing.SupportsInt, NewSize: PySide2.QtWi... method resizeFaceToTexelDensity (line 5682) | def resizeFaceToTexelDensity(self, FaceId: typing.SupportsInt, Density... method validFaceSizes (line 5683) | def validFaceSizes(self) -> typing.List[int]: ... method __bool__ (line 5684) | def __bool__(self) -> bool: ... class ReceiverTeleportNode (line 5686) | class ReceiverTeleportNode(TeleportNode): method __init__ (line 5688) | def __init__(self, *args, **kwargs) -> None: ... method connectSignals (line 5689) | def connectSignals(self, *args, **kwargs): ... method setChannelName (line 5690) | def setChannelName(self, ChannelName: str): ... method __bool__ (line 5691) | def __bool__(self) -> bool: ... class ResourceInfo (line 5693) | class ResourceInfo(API): method __init__ (line 5696) | def __init__(self, *args, **kwargs) -> None: ... method bundledUsdPath (line 5698) | def bundledUsdPath(cls, *args, **kwargs): ... method cAPIDocPathKey (line 5700) | def cAPIDocPathKey(cls, *args, **kwargs): ... method cAPIExamplesPathKey (line 5702) | def cAPIExamplesPathKey(cls, *args, **kwargs): ... method certificatesPathKey (line 5704) | def certificatesPathKey(cls, *args, **kwargs): ... method colorPathKey (line 5706) | def colorPathKey(cls, *args, **kwargs): ... method configPathKey (line 5708) | def configPathKey(cls, *args, **kwargs): ... method createIcon (line 5709) | def createIcon(self, IconFileName: str) -> PySide2.QtWidgets.QIcon: ... method customPluginPaths (line 5710) | def customPluginPaths(self): ... method defaultArchivePathKey (line 5712) | def defaultArchivePathKey(cls, *args, **kwargs): ... method defaultCameraPathKey (line 5714) | def defaultCameraPathKey(cls, *args, **kwargs): ... method defaultExportPathKey (line 5716) | def defaultExportPathKey(cls, *args, **kwargs): ... method defaultGeometryPathKey (line 5718) | def defaultGeometryPathKey(cls, *args, **kwargs): ... method defaultImagePathKey (line 5720) | def defaultImagePathKey(cls, *args, **kwargs): ... method defaultImportPathKey (line 5722) | def defaultImportPathKey(cls, *args, **kwargs): ... method defaultRenderPathKey (line 5724) | def defaultRenderPathKey(cls, *args, **kwargs): ... method defaultShelfPathKey (line 5726) | def defaultShelfPathKey(cls, *args, **kwargs): ... method disableEnviromentKeyValues (line 5727) | def disableEnviromentKeyValues(self): ... method examplesPathKey (line 5729) | def examplesPathKey(cls, *args, **kwargs): ... method exportSequenceTemplate (line 5730) | def exportSequenceTemplate(self) -> str: ... method flattenedSequenceTemplate (line 5731) | def flattenedSequenceTemplate(self) -> str: ... method gradientPathKey (line 5733) | def gradientPathKey(cls, *args, **kwargs): ... method helpPathKey (line 5735) | def helpPathKey(cls, *args, **kwargs): ... method iconPathKey (line 5737) | def iconPathKey(cls, *args, **kwargs): ... method imagePathKey (line 5739) | def imagePathKey(cls, *args, **kwargs): ... method importSequenceTemplate (line 5740) | def importSequenceTemplate(self) -> str: ... method logoPathKey (line 5742) | def logoPathKey(cls, *args, **kwargs): ... method lutPathKey (line 5744) | def lutPathKey(cls, *args, **kwargs): ... method mediaPathKey (line 5746) | def mediaPathKey(cls, *args, **kwargs): ... method miscPathKey (line 5748) | def miscPathKey(cls, *args, **kwargs): ... method onlineHelpPathKey (line 5750) | def onlineHelpPathKey(cls, *args, **kwargs): ... method path (line 5751) | def path(self, Key: str) -> str: ... method pathList (line 5752) | def pathList(self, Key: str) -> typing.List[str]: ... method ptexFlattenedSequenceTemplate (line 5753) | def ptexFlattenedSequenceTemplate(self) -> str: ... method ptexSequenceTemplate (line 5754) | def ptexSequenceTemplate(self) -> str: ... method qtPluginsPathKey (line 5756) | def qtPluginsPathKey(cls, *args, **kwargs): ... method refreshAllPaths (line 5757) | def refreshAllPaths(self): ... method refreshPath (line 5758) | def refreshPath(self): ... method scriptDocPathKey (line 5760) | def scriptDocPathKey(cls, *args, **kwargs): ... method sequenceTemplate (line 5761) | def sequenceTemplate(self) -> str: ... method sequenceToken (line 5762) | def sequenceToken(self) -> str: ... method setExportSequenceTemplate (line 5763) | def setExportSequenceTemplate(self, Name: str): ... method setFlattenedSequenceTemplate (line 5764) | def setFlattenedSequenceTemplate(self, Name: str): ... method setImportSequenceTemplate (line 5765) | def setImportSequenceTemplate(self, Name: str): ... method setPath (line 5766) | def setPath(self, Key: str, NewPath: str): ... method setPathList (line 5767) | def setPathList(self, Key: str, NewPathList: typing.List[str]): ... method setPtexFlattenedSequenceTemplate (line 5768) | def setPtexFlattenedSequenceTemplate(self, Name: str): ... method setPtexSequenceTemplate (line 5769) | def setPtexSequenceTemplate(self, Name: str): ... method setSequenceTemplate (line 5770) | def setSequenceTemplate(self, Name: str): ... method setSequenceToken (line 5771) | def setSequenceToken(self, Token: str): ... method settingsFilePath (line 5772) | def settingsFilePath(self, Name: str) -> str: ... method settingsPathKey (line 5774) | def settingsPathKey(cls, *args, **kwargs): ... method shaderPathKey (line 5776) | def shaderPathKey(cls, *args, **kwargs): ... method showPDF (line 5777) | def showPDF(self, Path: str): ... method showURL (line 5778) | def showURL(self, Url: str): ... method sysScriptPathKey (line 5780) | def sysScriptPathKey(cls, *args, **kwargs): ... method testPathKey (line 5782) | def testPathKey(cls, *args, **kwargs): ... method userPathKey (line 5784) | def userPathKey(cls, *args, **kwargs): ... method userPluginsPathKey (line 5786) | def userPluginsPathKey(cls, *args, **kwargs): ... method userScriptPathKey (line 5788) | def userScriptPathKey(cls, *args, **kwargs): ... method __bool__ (line 5789) | def __bool__(self) -> bool: ... class ScriptAction (line 5791) | class ScriptAction(Action): method __init__ (line 5794) | def __init__(self, *args, **kwargs) -> None: ... method script (line 5795) | def script(self): ... method setScript (line 5796) | def setScript(self): ... method __bool__ (line 5797) | def __bool__(self) -> bool: ... class SelectionGroup (line 5799) | class SelectionGroup(Lockable): method __init__ (line 5802) | def __init__(self, *args, **kwargs) -> None: ... method entityName (line 5803) | def entityName(self) -> str: ... method name (line 5804) | def name(self) -> str: ... method selectionMode (line 5805) | def selectionMode(self) -> SelectionGroupManager.SelectionMode: ... method setEntityName (line 5806) | def setEntityName(self, name: str): ... method __bool__ (line 5807) | def __bool__(self) -> bool: ... class SelectionGroupManager (line 5809) | class SelectionGroupManager(API): class SelectionMode (line 5810) | class SelectionMode: method __init__ (line 5817) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5818) | def __add__(self, other): ... method __and__ (line 5819) | def __and__(self, other): ... method __bool__ (line 5820) | def __bool__(self) -> bool: ... method __eq__ (line 5821) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5822) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5823) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5824) | def __hash__(self) -> int: ... method __index__ (line 5825) | def __index__(self) -> int: ... method __int__ (line 5826) | def __int__(self) -> int: ... method __le__ (line 5827) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5828) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5829) | def __mul__(self, other): ... method __ne__ (line 5830) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5831) | def __or__(self, other): ... method __pos__ (line 5832) | def __pos__(self): ... method __radd__ (line 5833) | def __radd__(self, other): ... method __rand__ (line 5834) | def __rand__(self, other): ... method __rmul__ (line 5835) | def __rmul__(self, other): ... method __ror__ (line 5836) | def __ror__(self, other): ... method __rsub__ (line 5837) | def __rsub__(self, other): ... method __rxor__ (line 5838) | def __rxor__(self, other): ... method __sub__ (line 5839) | def __sub__(self, other): ... method __xor__ (line 5840) | def __xor__(self, other): ... method __init__ (line 5853) | def __init__(self, *args, **kwargs) -> None: ... method createSelectionGroupFromSelection (line 5854) | def createSelectionGroupFromSelection(self, name: str): ... method current (line 5855) | def current(self) -> SelectionGroup: ... method list (line 5856) | def list(self) -> typing.List[SelectionGroup]: ... method removeSelectionGroup (line 5857) | def removeSelectionGroup(self, group: SelectionGroup): ... method sceneSelectionMode (line 5858) | def sceneSelectionMode(self) -> SelectionMode: ... method select (line 5859) | def select(self, group: SelectionGroup): ... method selection (line 5860) | def selection(self) -> typing.List[SelectionGroup]: ... method setSelectionMode (line 5861) | def setSelectionMode(self, mode: SelectionMode): ... method __bool__ (line 5862) | def __bool__(self) -> bool: ... class Settings (line 5864) | class Settings(API): method __init__ (line 5866) | def __init__(self, *args, **kwargs) -> None: ... method beginGroup (line 5867) | def beginGroup(self, Prefix: str): ... method endGroup (line 5868) | def endGroup(self): ... method setValue (line 5869) | def setValue(self, Key: str, Value: variant): ... method value (line 5870) | def value(self, Key: str, DefaultValue: variant = ...) -> variant: ... method __bool__ (line 5871) | def __bool__(self) -> bool: ... class Shader (line 5873) | class Shader(Metadata): class ChannelSetMode (line 5874) | class ChannelSetMode: method __init__ (line 5883) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5884) | def __add__(self, other): ... method __and__ (line 5885) | def __and__(self, other): ... method __bool__ (line 5886) | def __bool__(self) -> bool: ... method __eq__ (line 5887) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5888) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5889) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5890) | def __hash__(self) -> int: ... method __index__ (line 5891) | def __index__(self) -> int: ... method __int__ (line 5892) | def __int__(self) -> int: ... method __le__ (line 5893) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5894) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5895) | def __mul__(self, other): ... method __ne__ (line 5896) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5897) | def __or__(self, other): ... method __pos__ (line 5898) | def __pos__(self): ... method __radd__ (line 5899) | def __radd__(self, other): ... method __rand__ (line 5900) | def __rand__(self, other): ... method __rmul__ (line 5901) | def __rmul__(self, other): ... method __ror__ (line 5902) | def __ror__(self, other): ... method __rsub__ (line 5903) | def __rsub__(self, other): ... method __rxor__ (line 5904) | def __rxor__(self, other): ... method __sub__ (line 5905) | def __sub__(self, other): ... method __xor__ (line 5906) | def __xor__(self, other): ... method __init__ (line 5915) | def __init__(self, *args, **kwargs) -> None: ... method channelList (line 5916) | def channelList(self) -> typing.List[Channel]: ... method diffuseType (line 5917) | def diffuseType(self) -> str: ... method getParameter (line 5918) | def getParameter(self, ParameterName: str) -> variant: ... method inputList (line 5919) | def inputList(self) -> typing.List[variant]: ... method inputNameList (line 5920) | def inputNameList(self) -> typing.List[str]: ... method isInputForShaderStacks (line 5921) | def isInputForShaderStacks(self): ... method isLayeredShader (line 5922) | def isLayeredShader(self): ... method isLocked (line 5923) | def isLocked(self) -> bool: ... method isStackShader (line 5924) | def isStackShader(self): ... method isSystemShader (line 5925) | def isSystemShader(self): ... method layeredType (line 5926) | def layeredType(self) -> str: ... method makeCurrent (line 5927) | def makeCurrent(self): ... method name (line 5928) | def name(self) -> str: ... method parameterNameList (line 5929) | def parameterNameList(self) -> typing.List[str]: ... method setInput (line 5930) | def setInput(self, InputName: str, Input: Channel, SetMode: ChannelSet... method setName (line 5931) | def setName(self, Name: str): ... method setParameter (line 5932) | def setParameter(self, ParameterName: str, NewValue: variant): ... method shaderModel (line 5933) | def shaderModel(self) -> ShaderModel: ... method shaderNode (line 5934) | def shaderNode(self) -> Node: ... method specularType (line 5935) | def specularType(self) -> str: ... method standaloneType (line 5936) | def standaloneType(self) -> str: ... method __bool__ (line 5937) | def __bool__(self) -> bool: ... class ShaderLayer (line 5939) | class ShaderLayer(AdjustableLayer): method __init__ (line 5941) | def __init__(self, *args, **kwargs) -> None: ... method shader (line 5942) | def shader(self) -> Shader: ... method __bool__ (line 5943) | def __bool__(self) -> bool: ... class ShaderModel (line 5945) | class ShaderModel(Metadata): method __init__ (line 5947) | def __init__(self, *args, **kwargs) -> None: ... method id (line 5948) | def id(self) -> str: ... method input (line 5949) | def input(self, InputName: str) -> ShaderModelInput: ... method inputNames (line 5950) | def inputNames(self) -> typing.List[str]: ... method inputs (line 5951) | def inputs(self) -> variant: ... method __bool__ (line 5952) | def __bool__(self) -> bool: ... class ShaderModelInput (line 5954) | class ShaderModelInput(Metadata): method __init__ (line 5956) | def __init__(self, *args, **kwargs) -> None: ... method defaultColor (line 5957) | def defaultColor(self) -> Color: ... method name (line 5958) | def name(self) -> str: ... method prettyName (line 5959) | def prettyName(self) -> str: ... method scalar (line 5960) | def scalar(self) -> bool: ... method setDefaultColor (line 5961) | def setDefaultColor(self, DefaultColor: Color): ... method shortName (line 5962) | def shortName(self) -> str: ... method __bool__ (line 5963) | def __bool__(self) -> bool: ... class ShaderModelManager (line 5965) | class ShaderModelManager(API): method __init__ (line 5967) | def __init__(self, *args, **kwargs) -> None: ... method list (line 5968) | def list(self) -> typing.List[ShaderModel]: ... method modelNames (line 5969) | def modelNames(self) -> typing.List[str]: ... method nodePathKey (line 5970) | def nodePathKey(self, Model: ShaderModel) -> str: ... method shaderModel (line 5971) | def shaderModel(self, Name: str) -> ShaderModel: ... method shaderNodePathKeys (line 5972) | def shaderNodePathKeys(self) -> typing.List[str]: ... method __bool__ (line 5973) | def __bool__(self) -> bool: ... class Shelf (line 5975) | class Shelf(Metadata): method __init__ (line 5987) | def __init__(self, *args, **kwargs) -> None: ... method createItem (line 5988) | def createItem(self, Item: variant, ForceImmediateLoad: bool = ...) ->... method exportTo (line 5989) | def exportTo(self, DirectoryPath: str, GenerateCatalog: bool): ... method find (line 5990) | def find(self): ... method importShelf (line 5991) | def importShelf(self, FileName: str): ... method isGrouped (line 5992) | def isGrouped(self) -> bool: ... method isSystemShelf (line 5993) | def isSystemShelf(self) -> bool: ... method list (line 5994) | def list(self) -> typing.List[ShelfItem]: ... method loadItem (line 5995) | def loadItem(self, FileName: str): ... method loadShelf (line 5996) | def loadShelf(self, FileName: str): ... method locked (line 5997) | def locked(self) -> bool: ... method name (line 5998) | def name(self) -> str: ... method path (line 5999) | def path(self) -> str: ... method removeItem (line 6000) | def removeItem(self, Item: ShelfItem) -> bool: ... method saveAs (line 6001) | def saveAs(self, rFileName: str): ... method setLocked (line 6002) | def setLocked(self, Locked: bool): ... method setName (line 6003) | def setName(self, NewName: str): ... method __bool__ (line 6004) | def __bool__(self) -> bool: ... class ShelfItem (line 6006) | class ShelfItem(Action): method __init__ (line 6008) | def __init__(self, *args, **kwargs) -> None: ... method data (line 6009) | def data(self) -> variant: ... method name (line 6010) | def name(self) -> str: ... method saveAs (line 6011) | def saveAs(self, rFileName: str): ... method setName (line 6012) | def setName(self, NewName: str): ... method setTags (line 6013) | def setTags(self): ... method tags (line 6014) | def tags(self) -> typing.List[str]: ... method type (line 6015) | def type(self) -> ShelfManager.ShelfItemType: ... method __bool__ (line 6016) | def __bool__(self) -> bool: ... class ShelfManager (line 6018) | class ShelfManager(API): class ShelfItemType (line 6019) | class ShelfItemType: method __init__ (line 6031) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6032) | def __add__(self, other): ... method __and__ (line 6033) | def __and__(self, other): ... method __bool__ (line 6034) | def __bool__(self) -> bool: ... method __eq__ (line 6035) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6036) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6037) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6038) | def __hash__(self) -> int: ... method __index__ (line 6039) | def __index__(self) -> int: ... method __int__ (line 6040) | def __int__(self) -> int: ... method __le__ (line 6041) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6042) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6043) | def __mul__(self, other): ... method __ne__ (line 6044) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6045) | def __or__(self, other): ... method __pos__ (line 6046) | def __pos__(self): ... method __radd__ (line 6047) | def __radd__(self, other): ... method __rand__ (line 6048) | def __rand__(self, other): ... method __rmul__ (line 6049) | def __rmul__(self, other): ... method __ror__ (line 6050) | def __ror__(self, other): ... method __rsub__ (line 6051) | def __rsub__(self, other): ... method __rxor__ (line 6052) | def __rxor__(self, other): ... method __sub__ (line 6053) | def __sub__(self, other): ... method __xor__ (line 6054) | def __xor__(self, other): ... method __init__ (line 6064) | def __init__(self, *args, **kwargs) -> None: ... method createShelf (line 6065) | def createShelf(self, ShelfName: str) -> Shelf: ... method find (line 6066) | def find(self, Name: str) -> Shelf: ... method groupShelf (line 6067) | def groupShelf(self, ShelfToGroup: Shelf, GroupPath: str): ... method list (line 6068) | def list(self) -> typing.List[Shelf]: ... method names (line 6069) | def names(self) -> typing.List[str]: ... method removeShelf (line 6070) | def removeShelf(self, ShelfToRemove: Shelf) -> bool: ... method search (line 6071) | def search(self, SearchKeyword: str, Shelves: typing.List[Shelf]) -> t... method ungroupShelf (line 6072) | def ungroupShelf(self, ShelfToUngroup: Shelf): ... method __bool__ (line 6073) | def __bool__(self) -> bool: ... class SliderBase (line 6075) | class SliderBase(WidgetBase): method __init__ (line 6077) | def __init__(self, *args, **kwargs) -> None: ... method hideSlider (line 6078) | def hideSlider(self): ... method hideValueEdit (line 6079) | def hideValueEdit(self): ... method logarithmic (line 6080) | def logarithmic(self) -> bool: ... method precision (line 6081) | def precision(self) -> int: ... method range (line 6082) | def range(self, Min: float, Max: float): ... method rangeMax (line 6083) | def rangeMax(self) -> float: ... method rangeMin (line 6084) | def rangeMin(self) -> float: ... method setLogarithmic (line 6085) | def setLogarithmic(self, IsLogarithmic: bool): ... method setPrecision (line 6086) | def setPrecision(self, NumDecimalPlaces: typing.SupportsInt): ... method setRange (line 6087) | def setRange(self, Min: float, Max: float): ... method setStepSize (line 6088) | def setStepSize(self, StepSize: float): ... method showSlider (line 6089) | def showSlider(self): ... method showValueEdit (line 6090) | def showValueEdit(self): ... method stepSize (line 6091) | def stepSize(self) -> float: ... method __bool__ (line 6092) | def __bool__(self) -> bool: ... class Snapshot (line 6094) | class Snapshot(Metadata): method __init__ (line 6101) | def __init__(self, *args, **kwargs) -> None: ... method creationDate (line 6102) | def creationDate(self) -> PySide2.QtWidgets.QDateTime: ... method creator (line 6103) | def creator(self) -> str: ... method hasPreview (line 6104) | def hasPreview(self) -> bool: ... method id (line 6105) | def id(self) -> str: ... method name (line 6106) | def name(self) -> str: ... method preview (line 6107) | def preview(self) -> PySide2.QtWidgets.QPixmap: ... method setCreationDate (line 6108) | def setCreationDate(self, DateTime: PySide2.QtWidgets.QDateTime): ... method setCreator (line 6109) | def setCreator(self, Creator: str): ... method setID (line 6110) | def setID(self, NewID: str): ... method setName (line 6111) | def setName(self, NewName: str): ... method setPreview (line 6112) | def setPreview(self, NewImage: PySide2.QtWidgets.QPixmap): ... method __bool__ (line 6113) | def __bool__(self) -> bool: ... class Snapshotable (line 6115) | class Snapshotable(Lockable): method __init__ (line 6119) | def __init__(self, *args, **kwargs) -> None: ... method createSnapshot (line 6120) | def createSnapshot(self, Name: str, ID: str = ...) -> Snapshot: ... method deleteSnapshot (line 6121) | def deleteSnapshot(self, ShotToDelete: Snapshot): ... method findSnapshotWithID (line 6122) | def findSnapshotWithID(self, ID: str) -> Snapshot: ... method revertToSnapshot (line 6123) | def revertToSnapshot(self, OldSnapshot: Snapshot): ... method snapshotList (line 6124) | def snapshotList(self) -> typing.List[Snapshot]: ... method __bool__ (line 6125) | def __bool__(self) -> bool: ... class TeleportNode (line 6127) | class TeleportNode(Node): method __init__ (line 6130) | def __init__(self, *args, **kwargs) -> None: ... method channelName (line 6131) | def channelName(self) -> str: ... method connectSignals (line 6132) | def connectSignals(self, *args, **kwargs): ... method setChannelName (line 6133) | def setChannelName(self): ... method __bool__ (line 6134) | def __bool__(self) -> bool: ... class Tool (line 6136) | class Tool(PropertySource): method __init__ (line 6138) | def __init__(self, *args, **kwargs) -> None: ... method cursor (line 6139) | def cursor(self) -> PySide2.QtWidgets.QCursor: ... method description (line 6140) | def description(self) -> str: ... method help (line 6141) | def help(self) -> str: ... method icon (line 6142) | def icon(self) -> PySide2.QtWidgets.QIcon: ... method iconActive (line 6143) | def iconActive(self) -> PySide2.QtWidgets.QIcon: ... method information (line 6144) | def information(self) -> str: ... method name (line 6145) | def name(self) -> str: ... method __bool__ (line 6146) | def __bool__(self) -> bool: ... class ToolBar (line 6148) | class ToolBar(WidgetBase): method __init__ (line 6150) | def __init__(self, *args, **kwargs) -> None: ... method actionsList (line 6151) | def actionsList(self): ... method addAction (line 6152) | def addAction(self, Path: str, Pos: typing.List[int] = ..., Removable:... method addActionBefore (line 6153) | def addActionBefore(self, Path: str, InsertBefore: PySide2.QtWidgets.Q... method addActionList (line 6154) | def addActionList(self, Actions: typing.List[str], Removable: bool): ... method addActionObject (line 6155) | def addActionObject(self, Object: PySide2.QtWidgets.QAction): ... method addSeparator (line 6156) | def addSeparator(self): ... method addWidget (line 6157) | def addWidget(self): ... method insertSeparator (line 6158) | def insertSeparator(self, Path: str): ... method insertWidget (line 6159) | def insertWidget(self): ... method isLocked (line 6160) | def isLocked(self) -> bool: ... method lock (line 6161) | def lock(self): ... method setLocked (line 6162) | def setLocked(self): ... method setSpacing (line 6163) | def setSpacing(self): ... method setVisibile (line 6164) | def setVisibile(self, Visible: bool): ... method spacing (line 6165) | def spacing(self): ... method unlock (line 6166) | def unlock(self): ... method __bool__ (line 6167) | def __bool__(self) -> bool: ... class ToolManager (line 6169) | class ToolManager(API): method __init__ (line 6171) | def __init__(self, *args, **kwargs) -> None: ... method current (line 6172) | def current(self) -> str: ... method currentHelpString (line 6173) | def currentHelpString(self) -> str: ... method currentTool (line 6174) | def currentTool(self) -> Tool: ... method getTool (line 6175) | def getTool(self, Name: str) -> Tool: ... method loadBrushes (line 6176) | def loadBrushes(self, Path: str): ... method names (line 6177) | def names(self) -> typing.List[str]: ... method setCurrent (line 6178) | def setCurrent(self, Name: str): ... method setCurrentTool (line 6179) | def setCurrentTool(self, NewTool: Tool): ... method toolsList (line 6180) | def toolsList(self) -> typing.List[Tool]: ... method __bool__ (line 6181) | def __bool__(self) -> bool: ... class UvIndexRangeList (line 6183) | class UvIndexRangeList(IndexRangeList): method __init__ (line 6185) | def __init__(self, *args, **kwargs) -> None: ... method fromString (line 6186) | def fromString(self, RangeString: str) -> bool: ... method toString (line 6187) | def toString(self) -> str: ... method udimList (line 6188) | def udimList(self) -> typing.List[int]: ... method uvIndexList (line 6189) | def uvIndexList(self) -> typing.List[int]: ... method __bool__ (line 6190) | def __bool__(self) -> bool: ... class VectorN (line 6192) | class VectorN(API): method __init__ (line 6194) | def __init__(self, *args, **kwargs) -> None: ... method asTuple (line 6195) | def asTuple(self) -> tuple[float, ...]: ... method length (line 6196) | def length(self) -> int: ... method size (line 6197) | def size(self) -> int: ... method w (line 6198) | def w(self): ... method x (line 6199) | def x(self): ... method y (line 6200) | def y(self): ... method z (line 6201) | def z(self): ... method __bool__ (line 6202) | def __bool__(self) -> bool: ... method __reduce__ (line 6203) | def __reduce__(self): ... class WidgetBase (line 6205) | class WidgetBase(API): method __init__ (line 6207) | def __init__(self, *args, **kwargs) -> None: ... method addToLayout (line 6208) | def addToLayout(self, Layout: PySide2.QtWidgets.QLayout): ... method blockSignals (line 6209) | def blockSignals(self, Block: bool) -> bool: ... method disable (line 6210) | def disable(self): ... method enable (line 6211) | def enable(self): ... method hide (line 6212) | def hide(self): ... method isEnabled (line 6213) | def isEnabled(self) -> bool: ... method isVisible (line 6214) | def isVisible(self) -> bool: ... method maximumHeight (line 6215) | def maximumHeight(self): ... method maximumWidth (line 6216) | def maximumWidth(self): ... method minimumHeight (line 6217) | def minimumHeight(self): ... method minimumWidth (line 6218) | def minimumWidth(self): ... method setEnabled (line 6219) | def setEnabled(self, Enable: bool): ... method setMaximumHeight (line 6220) | def setMaximumHeight(self): ... method setMaximumWidth (line 6221) | def setMaximumWidth(self): ... method setMinimumHeight (line 6222) | def setMinimumHeight(self): ... method setMinimumWidth (line 6223) | def setMinimumWidth(self): ... method setStatusTip (line 6224) | def setStatusTip(self): ... method setToolTip (line 6225) | def setToolTip(self): ... method setVisible (line 6226) | def setVisible(self, Visible: bool): ... method show (line 6227) | def show(self): ... method statusTip (line 6228) | def statusTip(self): ... method toolTip (line 6229) | def toolTip(self): ... method __bool__ (line 6230) | def __bool__(self) -> bool: ... FILE: mari/stubs/mari-stubs/current/__init__.pyi function geo (line 1) | def geo(): ... function channel (line 2) | def channel(): ... function layer (line 3) | def layer(): ... function nodeSelection (line 4) | def nodeSelection(): ... function shader (line 5) | def shader(): ... function geoVersion (line 6) | def geoVersion(): ... function canvas (line 7) | def canvas(): ... function light (line 8) | def light(): ... function projector (line 9) | def projector(): ... function project (line 10) | def project(): ... function tool (line 11) | def tool(): ... FILE: mari/stubs/mari-stubs/examples/action_manager.pyi function makeToolMenu (line 1) | def makeToolMenu() -> None: ... FILE: mari/stubs/mari-stubs/examples/asset_management.pyi function checkProjectAssetIDs (line 6) | def checkProjectAssetIDs() -> None: ... function printExportPath (line 7) | def printExportPath(Image) -> None: ... function printImportPath (line 8) | def printImportPath(Image) -> None: ... function processingImage (line 9) | def processingImage(Image) -> None: ... function exportCallbackFactory (line 10) | def exportCallbackFactory(m): ... function importCallbackFactory (line 11) | def importCallbackFactory(m): ... function aboutToProcessFactory (line 12) | def aboutToProcessFactory(m): ... function installIOHooks (line 13) | def installIOHooks() -> None: ... function addAssetIDs (line 14) | def addAssetIDs() -> None: ... function managedAddVersion (line 15) | def managedAddVersion() -> None: ... function checkForUpdates (line 16) | def checkForUpdates() -> None: ... function installHooks (line 17) | def installHooks(): ... FILE: mari/stubs/mari-stubs/examples/c_api_channel_export.pyi function onOKClicked (line 5) | def onOKClicked(dialog, export_path, images, name, resolution, include_m... function showDialog (line 6) | def showDialog(): ... FILE: mari/stubs/mari-stubs/examples/cameras.pyi function changeCurrentCameraPerspective (line 1) | def changeCurrentCameraPerspective() -> None: ... function changeCurrentCameraOrthographic (line 2) | def changeCurrentCameraOrthographic() -> None: ... function printAllCanvasesCameraInfo (line 3) | def printAllCanvasesCameraInfo() -> None: ... function printCameraInfo (line 4) | def printCameraInfo(camera) -> None: ... function printCurrentCameraInfo (line 5) | def printCurrentCameraInfo() -> None: ... FILE: mari/stubs/mari-stubs/examples/channels.pyi function showGeoPatchImageInfo (line 3) | def showGeoPatchImageInfo(obj) -> None: ... function showAllGeoPatchImageInfo (line 4) | def showAllGeoPatchImageInfo() -> None: ... function showLayerStackInfo (line 5) | def showLayerStackInfo(stack, indent_num_spaces: int = ...) -> None: ... function getColorspacePrettyName (line 6) | def getColorspacePrettyName(colorspace_config, stage): ... function showChannelInfo (line 7) | def showChannelInfo(channel) -> None: ... function showAllChannels (line 8) | def showAllChannels() -> None: ... function reimportImageSetPatches (line 9) | def reimportImageSetPatches(imgset, patches) -> None: ... function reimportCurrentPaintableLayer (line 10) | def reimportCurrentPaintableLayer() -> None: ... function linkCurrentChannels (line 11) | def linkCurrentChannels() -> None: ... FILE: mari/stubs/mari-stubs/examples/colorspace.pyi function getColorspacePrettyName (line 1) | def getColorspacePrettyName(colorspace_config, stage): ... function showColorspaceConfigInfo (line 2) | def showColorspaceConfigInfo(colorspace_config, indent_num_spaces) -> No... function showProjectInfo (line 3) | def showProjectInfo() -> None: ... function showChannelInfo (line 4) | def showChannelInfo() -> None: ... function showImageInfo (line 5) | def showImageInfo() -> None: ... function showProjectorInfo (line 6) | def showProjectorInfo() -> None: ... function showAllColorspaces (line 7) | def showAllColorspaces() -> None: ... function disableRawOnChannels (line 8) | def disableRawOnChannels() -> None: ... function disableRawOnImages (line 9) | def disableRawOnImages() -> None: ... function disableRawOnProjectors (line 10) | def disableRawOnProjectors() -> None: ... function disableRawOnProject (line 11) | def disableRawOnProject() -> None: ... function enablePreColorspaceProject (line 12) | def enablePreColorspaceProject() -> None: ... function switchColorspaceOnProject (line 13) | def switchColorspaceOnProject(ocio_config, from_colorspace, to_colorspac... function switchColorspaceOnConfig (line 14) | def switchColorspaceOnConfig(colorspace_config, ocio_config, from_colors... function switchColorspaceOnChannels (line 15) | def switchColorspaceOnChannels(ocio_config, from_colorspace, to_colorspa... function switchColorspaceOnImages (line 16) | def switchColorspaceOnImages(ocio_config, from_colorspace, to_colorspace... function switchColorspaceOnProjectors (line 17) | def switchColorspaceOnProjectors(ocio_config, from_colorspace, to_colors... function switchColorspaceOnAll (line 18) | def switchColorspaceOnAll(ocio_config, from_colorspace, to_colorspace) -... function convertSelectedImages (line 19) | def convertSelectedImages(ocio_config, output_colorspace) -> None: ... function registerOptimizedTransforms (line 20) | def registerOptimizedTransforms() -> None: ... FILE: mari/stubs/mari-stubs/examples/command_port.pyi class SendDialog (line 5) | class SendDialog(widgets.QDialog): method __init__ (line 7) | def __init__(self) -> None: ... method sendCommand (line 8) | def sendCommand(self): ... function showDialog (line 10) | def showDialog() -> None: ... function criticalError (line 11) | def criticalError(msg) -> None: ... FILE: mari/stubs/mari-stubs/examples/convert_channel.pyi function show (line 3) | def show() -> None: ... function onProjectOpened (line 4) | def onProjectOpened() -> None: ... function onProjectClosed (line 5) | def onProjectClosed() -> None: ... FILE: mari/stubs/mari-stubs/examples/create_blacksmith_project.pyi function createImportChannelInfo (line 3) | def createImportChannelInfo(channel_name, channel_path, channel_template... function loadObject (line 4) | def loadObject(object_path, channel_import_list: Incomplete | None = ...... function importNewChannel (line 5) | def importNewChannel(obj, channel_name, template) -> None: ... function createBlacksmithProject (line 6) | def createBlacksmithProject() -> None: ... FILE: mari/stubs/mari-stubs/examples/create_project.pyi function createBasic (line 1) | def createBasic() -> None: ... function createAndImport (line 2) | def createAndImport() -> None: ... FILE: mari/stubs/mari-stubs/examples/custom_layer.pyi function registerCustomAdjustmentLayer (line 1) | def registerCustomAdjustmentLayer() -> None: ... function registerCustomProceduralLayer (line 2) | def registerCustomProceduralLayer() -> None: ... FILE: mari/stubs/mari-stubs/examples/custom_shader.pyi function registerCustomDiffuseShader (line 1) | def registerCustomDiffuseShader() -> None: ... function registerCustomSpecularShader (line 2) | def registerCustomSpecularShader() -> None: ... function registerCustomStandaloneShader (line 3) | def registerCustomStandaloneShader() -> None: ... FILE: mari/stubs/mari-stubs/examples/drag_and_drop_callbacks.pyi function dragColorToNodeGraphDropCallback (line 1) | def dragColorToNodeGraphDropCallback(mimeType, dropTarget, mimeData, con... FILE: mari/stubs/mari-stubs/examples/export_dialog.pyi function getPaintableImageSetLayerNamePairs (line 5) | def getPaintableImageSetLayerNamePairs(obj): ... function export (line 6) | def export(ops, format) -> None: ... function onOKClicked (line 7) | def onOKClicked(dlg, ops, format) -> None: ... function setBold (line 8) | def setBold(widget) -> None: ... class DirBrowser (line 10) | class DirBrowser(widgets.QListWidget): method __init__ (line 11) | def __init__(self, title: str = ...) -> None: ... method addToLayout (line 12) | def addToLayout(self, layout) -> None: ... method updateContents (line 13) | def updateContents(self) -> None: ... method onItemDoubleClicked (line 14) | def onItemDoubleClicked(self, item) -> None: ... method getSelectedPaths (line 15) | def getSelectedPaths(self): ... class OpList (line 17) | class OpList(widgets.QListWidget): method __init__ (line 18) | def __init__(self, title: str = ...) -> None: ... method addToLayout (line 19) | def addToLayout(self, layout) -> None: ... method addOps (line 20) | def addOps(self, img_sets, dirs) -> None: ... method removeOps (line 21) | def removeOps(self) -> None: ... method ops (line 22) | def ops(self): ... class FormatsBox (line 24) | class FormatsBox(widgets.QComboBox): method __init__ (line 25) | def __init__(self, img_sets_widget, default_format: str = ...) -> None... method updateFormats (line 26) | def updateFormats(self, default_format: Incomplete | None = ...) -> No... function show (line 28) | def show(): ... FILE: mari/stubs/mari-stubs/examples/export_shelf.pyi class ExportShelfDialog (line 7) | class ExportShelfDialog(QtWidgets.QDialog): method __init__ (line 12) | def __init__(self, default_path) -> None: ... method showPathDialog (line 13) | def showPathDialog(self) -> None: ... method fillName (line 14) | def fillName(self, text) -> None: ... method getSelectedShelfName (line 15) | def getSelectedShelfName(self): ... method getPath (line 16) | def getPath(self): ... function run (line 18) | def run() -> None: ... FILE: mari/stubs/mari-stubs/examples/filters.pyi class OCIOFilterFactory (line 7) | class OCIOFilterFactory(mari.GLSLFilterFactory): method __init__ (line 8) | def __init__(self) -> None: ... method resolve_config_path (line 9) | def resolve_config_path(self, config_path): ... method setupFilter (line 10) | def setupFilter(self, filter) -> None: ... function registerCustomOcioFilter (line 12) | def registerCustomOcioFilter() -> None: ... function resetAdjustmentLevelClampToDefault (line 13) | def resetAdjustmentLevelClampToDefault() -> None: ... FILE: mari/stubs/mari-stubs/examples/image_filters.pyi function generate_pixels (line 12) | def generate_pixels() -> None: ... class NoiseFilterFactory (line 14) | class NoiseFilterFactory(mari.GLSLFilterFactory): method __init__ (line 15) | def __init__(self) -> None: ... method setupFilter (line 16) | def setupFilter(self, filter) -> None: ... function registerAddNoiseFilter (line 18) | def registerAddNoiseFilter() -> None: ... FILE: mari/stubs/mari-stubs/examples/layered_channels_for_layered_shaders.pyi class UpdateChannelLayers (line 3) | class UpdateChannelLayers: method __init__ (line 8) | def __init__(self, shader_parent) -> None: ... method collectShaders (line 9) | def collectShaders(self) -> None: ... method collectInputs (line 10) | def collectInputs(self) -> None: ... method assignInputs (line 11) | def assignInputs(self) -> None: ... method createLayerGroups_SetMaskStack (line 12) | def createLayerGroups_SetMaskStack(self, layer, mask): ... method createLayerGroups_SetMask (line 13) | def createLayerGroups_SetMask(self, layer, mask): ... method createLayerGroups (line 14) | def createLayerGroups(self) -> None: ... method update (line 15) | def update(self) -> None: ... function update (line 17) | def update() -> None: ... FILE: mari/stubs/mari-stubs/examples/layered_channels_from_layered_shaders.pyi class CreateChannelLayers (line 3) | class CreateChannelLayers: method __init__ (line 9) | def __init__(self, obj, shader_parent) -> None: ... method collectShaders (line 10) | def collectShaders(self) -> None: ... method collectInputs (line 12) | def collectInputs(self) -> None: ... method createChannels (line 13) | def createChannels(self) -> None: ... method update (line 14) | def update(self) -> None: ... function update (line 16) | def update() -> None: ... FILE: mari/stubs/mari-stubs/examples/layers.pyi function watchGeo (line 3) | def watchGeo(obj) -> None: ... function watchLayer (line 4) | def watchLayer(obj) -> None: ... function printChannelLayerInfo (line 5) | def printChannelLayerInfo(header, layer) -> None: ... function printGroupLayerInfo (line 6) | def printGroupLayerInfo(header, layer) -> None: ... function printAdjustmentStackLayerInfo (line 7) | def printAdjustmentStackLayerInfo(header, layer) -> None: ... function printMaskStackLayerInfo (line 8) | def printMaskStackLayerInfo(header, layer) -> None: ... function printImageInfo (line 9) | def printImageInfo(header, image) -> None: ... function printImageSetInfo (line 10) | def printImageSetInfo(header, image_set) -> None: ... function printPaintableLayerInfo (line 11) | def printPaintableLayerInfo(header, layer) -> None: ... function printMaskLayerInfo (line 12) | def printMaskLayerInfo(header, layer) -> None: ... function printProceduralLayerInfo (line 13) | def printProceduralLayerInfo(header, layer) -> None: ... function printShaderLayerInfo (line 14) | def printShaderLayerInfo(header, layer) -> None: ... function printAdjustmentLayerInfo (line 15) | def printAdjustmentLayerInfo(header, layer) -> None: ... function printLayerInfo (line 16) | def printLayerInfo(header, layer) -> None: ... function printAllLayersInfo (line 17) | def printAllLayersInfo() -> None: ... function printMaskStackLayerHashes (line 18) | def printMaskStackLayerHashes(header, layer, uv_index) -> None: ... function printAdjustmentStackLayerHashes (line 19) | def printAdjustmentStackLayerHashes(header, layer, uv_index) -> None: ... function printGroupLayerHashes (line 20) | def printGroupLayerHashes(header, layer, uv_index) -> None: ... function printLayerHashes (line 21) | def printLayerHashes(header, layer, uv_index) -> None: ... function printAllLayersHashes (line 22) | def printAllLayersHashes() -> None: ... function createLayers_ImageSetClear (line 30) | def createLayers_ImageSetClear(image_set, color) -> None: ... function createLayers_Channel (line 31) | def createLayers_Channel(geo_index, geo_name, channel) -> None: ... function createLayers (line 32) | def createLayers() -> None: ... FILE: mari/stubs/mari-stubs/examples/layers_NPMA_tiled_RGB.pyi function createLayerNPMATiledRGB (line 1) | def createLayerNPMATiledRGB() -> None: ... FILE: mari/stubs/mari-stubs/examples/layers_disable_all_amount_values.pyi function changeLayers (line 1) | def changeLayers(layers) -> None: ... function changeChannels (line 2) | def changeChannels() -> None: ... FILE: mari/stubs/mari-stubs/examples/lights.pyi function setupEnvironmentLightInfo (line 1) | def setupEnvironmentLightInfo() -> None: ... function printEnvironmentLightInfo (line 2) | def printEnvironmentLightInfo(light) -> None: ... function printPointLightInfo (line 3) | def printPointLightInfo(light) -> None: ... function printLightInfo (line 4) | def printLightInfo(light) -> None: ... function printCurrentLightInfo (line 5) | def printCurrentLightInfo() -> None: ... function printAllLightsInfo (line 6) | def printAllLightsInfo() -> None: ... function moveToCameraPosition (line 7) | def moveToCameraPosition() -> None: ... function registerActions (line 8) | def registerActions() -> None: ... FILE: mari/stubs/mari-stubs/examples/linked_patches.pyi function getCurrentLinkedPatches (line 3) | def getCurrentLinkedPatches(): ... function lookupUdimsFromPatches (line 4) | def lookupUdimsFromPatches(patches): ... function lookupPatchesFromUdims (line 5) | def lookupPatchesFromUdims(udims): ... function copyLinksFromCurrentImageSet (line 6) | def copyLinksFromCurrentImageSet() -> None: ... function getMaximumResolution (line 7) | def getMaximumResolution(images): ... function resizeImages (line 8) | def resizeImages(images, size) -> None: ... function pasteLinksToCurrentImageSet (line 9) | def pasteLinksToCurrentImageSet() -> None: ... function onCopyLinks (line 10) | def onCopyLinks() -> None: ... function onPasteLinks (line 11) | def onPasteLinks() -> None: ... FILE: mari/stubs/mari-stubs/examples/mGo.pyi function printMessage (line 7) | def printMessage(Str) -> None: ... function run_mGo (line 8) | def run_mGo(): ... function getProjects (line 9) | def getProjects(mayaHost, mGoPath) -> None: ... function importGEO (line 10) | def importGEO(sendMode, projectName, nameSpace, groups, FilePath, setR, ... function importCAM (line 11) | def importCAM(projectName, startTime, endTime, camFileName) -> None: ... FILE: mari/stubs/mari-stubs/examples/mGo_Shortcut_Actions.pyi function reload_mGo (line 3) | def reload_mGo() -> None: ... function starts_mGo (line 4) | def starts_mGo() -> None: ... function checkInputs (line 5) | def checkInputs(curShader, curChannel): ... function checkShader (line 6) | def checkShader(curShader): ... function syncChannels (line 7) | def syncChannels() -> None: ... function isolateCurrentShader (line 8) | def isolateCurrentShader() -> None: ... function isolateReset (line 9) | def isolateReset() -> None: ... function mGoHelp (line 10) | def mGoHelp() -> None: ... FILE: mari/stubs/mari-stubs/examples/maya_export.pyi function debugMsg (line 13) | def debugMsg(message) -> None: ... class UserCancelledException (line 15) | class UserCancelledException(Exception): ... function showUI (line 17) | def showUI(): ... function isProjectSuitable (line 18) | def isProjectSuitable(): ... function getProceduralLayers (line 19) | def getProceduralLayers(layer_stack): ... function getPaintableLayers (line 20) | def getPaintableLayers(layer_stack): ... function findParentLayerStack (line 21) | def findParentLayerStack(layer, layer_stack): ... function getMatchingLayers (line 22) | def getMatchingLayers(layer_stack, criterionFn): ... function updateFilter (line 23) | def updateFilter(filter_box, layer_list) -> None: ... class LayersToExportList (line 25) | class LayersToExportList(widgets.QListWidget): method __init__ (line 26) | def __init__(self, title: str = ...) -> None: ... method currentLayers (line 27) | def currentLayers(self): ... method addLayers (line 28) | def addLayers(self, layer_list) -> None: ... method removeLayers (line 29) | def removeLayers(self) -> None: ... function setBold (line 31) | def setBold(widget) -> None: ... function browseForFolder (line 32) | def browseForFolder() -> None: ... function clickedOK (line 33) | def clickedOK(ui, layers_to_export_widget, eight_bit, higher_bit, force_... function removeLayers (line 34) | def removeLayers(layers_to_remove) -> None: ... function makeBakedLayer (line 35) | def makeBakedLayer(layer_to_bake): ... function export (line 36) | def export(ui, layers_to_export, dirname, eight_bit_fmt, higher_bit_fmt,... class ProgressDialog (line 38) | class ProgressDialog(widgets.QDialog): method __init__ (line 44) | def __init__(self) -> None: ... method cancel (line 45) | def cancel(self) -> None: ... function getPadding (line 47) | def getPadding(num): ... function mayaGen (line 48) | def mayaGen(files_list, target_file_name, num_layers) -> None: ... FILE: mari/stubs/mari-stubs/examples/nodes.pyi function printNodeInfo (line 1) | def printNodeInfo(Node, Space, PrintAdvanced) -> None: ... function printSelectedNodesInfo (line 2) | def printSelectedNodesInfo() -> None: ... function printAllNodesInfo (line 3) | def printAllNodesInfo() -> None: ... function printAllBakePointNodesInfo (line 4) | def printAllBakePointNodesInfo() -> None: ... function bakeSelectedBakePointNodes (line 5) | def bakeSelectedBakePointNodes() -> None: ... function addStreamMetadataToMcbp (line 6) | def addStreamMetadataToMcbp() -> None: ... function printNodeTypes (line 7) | def printNodeTypes() -> None: ... function setupExampleNodegraph (line 8) | def setupExampleNodegraph() -> None: ... function registerActions (line 9) | def registerActions() -> None: ... FILE: mari/stubs/mari-stubs/examples/paint_buffer.pyi function bitDepthAsString (line 7) | def bitDepthAsString(depth): ... function drawSomePaint (line 8) | def drawSomePaint() -> None: ... function resizeBuffer (line 9) | def resizeBuffer(size_combo, size_label) -> None: ... function getPaint (line 10) | def getPaint(Label) -> None: ... function updatePaint (line 11) | def updatePaint() -> None: ... function updateBuffer (line 12) | def updateBuffer(depth_combo, depth_label) -> None: ... function updateRotation (line 13) | def updateRotation(rot) -> None: ... function updateScale (line 14) | def updateScale(x, y) -> None: ... function updateTranslate (line 15) | def updateTranslate(x, y) -> None: ... function setBold (line 16) | def setBold(widget) -> None: ... function paintBufferTest (line 17) | def paintBufferTest(): ... FILE: mari/stubs/mari-stubs/examples/post_processing_filters.pyi function storePostFilterCollection (line 6) | def storePostFilterCollection() -> None: ... function restorePostFilterCollection (line 7) | def restorePostFilterCollection() -> None: ... function register2DPostFilter (line 8) | def register2DPostFilter(): ... function makeTexture2D (line 9) | def makeTexture2D(width, height): ... function set2DPostFilter (line 10) | def set2DPostFilter() -> None: ... function register1DPostFilter (line 11) | def register1DPostFilter(): ... function makeTexture1D (line 12) | def makeTexture1D(width): ... function set1DPostFilter (line 13) | def set1DPostFilter() -> None: ... function register3DPostFilter (line 14) | def register3DPostFilter(): ... function makeTexture3D (line 15) | def makeTexture3D(width, height, depth): ... function set3DPostFilter (line 16) | def set3DPostFilter() -> None: ... function makeTexture3DUpdate (line 17) | def makeTexture3DUpdate(width, height, depth): ... function updatePostFilters (line 18) | def updatePostFilters() -> None: ... function registerFileLUTPostFilter (line 19) | def registerFileLUTPostFilter(): ... function setFileLUTPostFilter (line 20) | def setFileLUTPostFilter() -> None: ... function registerCustomLUTPostFilter (line 21) | def registerCustomLUTPostFilter(): ... function makeCustomLUT (line 22) | def makeCustomLUT(): ... function setCustomLUTPostFilter (line 23) | def setCustomLUTPostFilter() -> None: ... FILE: mari/stubs/mari-stubs/examples/projectors.pyi function printProjectorInfo (line 1) | def printProjectorInfo(projector) -> None: ... function printCurrentProjectorInfo (line 2) | def printCurrentProjectorInfo() -> None: ... function printAllProjectorsInfo (line 3) | def printAllProjectorsInfo() -> None: ... function createProjector (line 4) | def createProjector() -> None: ... function createTriplanarProjector (line 5) | def createTriplanarProjector() -> None: ... function changeCurrentProjector (line 6) | def changeCurrentProjector() -> None: ... FILE: mari/stubs/mari-stubs/examples/register_which_transforms.pyi class ColorspaceAnalyzer (line 1) | class ColorspaceAnalyzer: method __init__ (line 2) | def __init__(self, project) -> None: ... method printAll (line 3) | def printAll(self) -> None: ... method printProjectInfo (line 4) | def printProjectInfo(self) -> None: ... method printChannelInfo (line 5) | def printChannelInfo(self) -> None: ... method printImageInfo (line 6) | def printImageInfo(self) -> None: ... method printProjectorInfo (line 7) | def printProjectorInfo(self) -> None: ... method printShaderTransforms (line 8) | def printShaderTransforms(self) -> None: ... function runColorspaceAnalyzer (line 10) | def runColorspaceAnalyzer() -> None: ... FILE: mari/stubs/mari-stubs/examples/resource_info.pyi function dumpResourceInfo (line 1) | def dumpResourceInfo() -> None: ... function showCustomShaderAPIHelp (line 2) | def showCustomShaderAPIHelp() -> None: ... function showAPIHelp (line 3) | def showAPIHelp() -> None: ... function showCAPIHelp (line 4) | def showCAPIHelp() -> None: ... FILE: mari/stubs/mari-stubs/examples/selection_groups.pyi function printSelectionGroupInfo (line 1) | def printSelectionGroupInfo(selectionGroup) -> None: ... function printSelectionGroupManagerInfo (line 2) | def printSelectionGroupManagerInfo() -> None: ... function miscFunction (line 3) | def miscFunction(a) -> None: ... function printSelectionGroupAndA (line 4) | def printSelectionGroupAndA(group, a) -> None: ... function setupSignals (line 5) | def setupSignals() -> None: ... function registerActions (line 6) | def registerActions() -> None: ... FILE: mari/stubs/mari-stubs/examples/shaders.pyi function watchGeo (line 1) | def watchGeo(obj) -> None: ... function printAllShadersInfo (line 2) | def printAllShadersInfo() -> None: ... function createShaders (line 3) | def createShaders() -> None: ... FILE: mari/stubs/mari-stubs/examples/shaderstacks.pyi function createShaderStacks_ChannelShaderStack_AddShader (line 1) | def createShaderStacks_ChannelShaderStack_AddShader(obj, channel_shaders... function createShaderStacks_ChannelShaderStack (line 2) | def createShaderStacks_ChannelShaderStack(obj): ... function createShaderStacks_ChannelDiffuse (line 3) | def createShaderStacks_ChannelDiffuse(obj, channel_name, color): ... function createShaderStacks_ChannelMask (line 4) | def createShaderStacks_ChannelMask(obj): ... function createShaderStacks (line 5) | def createShaderStacks() -> None: ... FILE: mari/stubs/mari-stubs/examples/vector_brush.pyi function addAction (line 1) | def addAction(identifier, command, icon_filename, tip, whats_this): ... function setupVectorBrush (line 2) | def setupVectorBrush() -> None: ... FILE: mari/stubs/mari-stubs/examples/vector_channel.pyi function createVectorChannels (line 1) | def createVectorChannels() -> None: ... FILE: mari/stubs/mari-stubs/session/__init__.pyi function exportSession (line 4) | def exportSession(exportDir: Incomplete | None = ..., geoEntities: Incom... function importSession (line 5) | def importSession(sessionFilePath: Incomplete | None = ..., geoEntities:... function importChannels (line 6) | def importChannels() -> None: ... function importShaders (line 7) | def importShaders() -> None: ... function importNodeGraphs (line 8) | def importNodeGraphs() -> None: ... function registerFunction (line 9) | def registerFunction(method: Incomplete | None = ..., callFunction: Inco... function getRegisteredFunction (line 10) | def getRegisteredFunction(method: Incomplete | None = ...): ... FILE: mari/stubs/mari-stubs/session/exceptions.pyi class MariSessionError (line 1) | class MariSessionError(Exception): ... class MissingDependenciesError (line 3) | class MissingDependenciesError(MariSessionError): method __init__ (line 4) | def __init__(self, dependencies) -> None: ... method dependencies (line 6) | def dependencies(self): ... class NoPathProvidedError (line 8) | class NoPathProvidedError(MariSessionError): ... class NoProjectOpenError (line 9) | class NoProjectOpenError(MariSessionError): ... class ProcessCanceledError (line 10) | class ProcessCanceledError(MariSessionError): ... class InaccessiblePathError (line 12) | class InaccessiblePathError(MariSessionError): method __init__ (line 13) | def __init__(self, path) -> None: ... class InTerminalModeError (line 15) | class InTerminalModeError(MariSessionError): ... class NoParentProjectError (line 16) | class NoParentProjectError(MariSessionError): ... class NotAMariProjectError (line 18) | class NotAMariProjectError(MariSessionError): method __init__ (line 19) | def __init__(self, sessionType) -> None: ... class NoGeoEntitySelectedError (line 21) | class NoGeoEntitySelectedError(MariSessionError): ... class NotAGeoEntityError (line 23) | class NotAGeoEntityError(MariSessionError): method __init__ (line 24) | def __init__(self, obj) -> None: ... class NoGeometryDataError (line 26) | class NoGeometryDataError(MariSessionError): ... FILE: mari/stubs/mari-stubs/session/preferences.pyi class MessageType (line 4) | class MessageType: class Preferences (line 10) | class Preferences(PySide2.QtCore.QObject): method __init__ (line 12) | def __init__(self) -> None: ... FILE: mari/stubs/mari-stubs/session/types/adjustable_layer.pyi class AdjustableLayer (line 5) | class AdjustableLayer(Layer): method __init__ (line 8) | def __init__(self, name, parent) -> None: ... method adjustmentStack (line 10) | def adjustmentStack(self): ... method adjustmentStack (line 12) | def adjustmentStack(self, adjustmentStack) -> None: ... method asDict (line 13) | def asDict(self, includeDict: Incomplete | None = ...): ... method fromDict (line 15) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 17) | def fromMariObject(cls, mariObject, parent): ... method makeChildren (line 18) | def makeChildren(self, finishedCallback=...) -> None: ... method walk (line 19) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/adjustment_layer.pyi class AdjustmentLayer (line 4) | class AdjustmentLayer(Layer): method __init__ (line 10) | def __init__(self, name, parent) -> None: ... method asDict (line 11) | def asDict(self, includeDict: Incomplete | None = ...): ... method checkTypeExists (line 12) | def checkTypeExists(self): ... method configureMariObject (line 13) | def configureMariObject(self) -> None: ... method createMariObject (line 15) | def createMariObject(self) -> None: ... method fromDict (line 17) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 19) | def fromMariObject(cls, mariObject, parent): ... FILE: mari/stubs/mari-stubs/session/types/camera.pyi class Camera (line 5) | class Camera(Metadata): method __init__ (line 18) | def __init__(self, name, parent) -> None: ... method asDict (line 19) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObjectBasics (line 20) | def configureMariObjectBasics(self) -> None: ... method fromDict (line 22) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 24) | def fromMariObject(cls, mariObject, parent): ... method make (line 26) | def make(self, finishedCallback=...) -> None: ... method walk (line 27) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/channel.pyi class Channel (line 4) | class Channel(LayerStack): method __init__ (line 18) | def __init__(self, name, parent) -> None: ... method asDict (line 19) | def asDict(self, includeDict: Incomplete | None = ...): ... method renameShaderLayers (line 20) | def renameShaderLayers(self, sourceLayers, geoEntity): ... method fromDict (line 22) | def fromDict(cls, dataDict, parent, sourceFilePath, skipChildren: bool... method fromMariObject (line 24) | def fromMariObject(cls, mariObject, parent, skipChildren: bool = ...):... method make (line 26) | def make(self, makeLayers: bool = ..., finishedCallback=..., skipFinis... method patchResolutions (line 27) | def patchResolutions(self, uvIndexes, mariObject): ... method remapPatchUvIndexes (line 28) | def remapPatchUvIndexes(self, uvIndexesMap) -> None: ... method instantiateChildren (line 29) | def instantiateChildren(self) -> None: ... method isNewFormat (line 30) | def isNewFormat(self): ... method setNodeUuidRemap (line 31) | def setNodeUuidRemap(self, nodeUuidRemap) -> None: ... FILE: mari/stubs/mari-stubs/session/types/channel_layer.pyi class ChannelLayer (line 4) | class ChannelLayer(AdjustableLayer): method __init__ (line 6) | def __init__(self, name, parent) -> None: ... method dependencies (line 8) | def dependencies(self): ... method asDict (line 9) | def asDict(self, includeDict: Incomplete | None = ...): ... method createMariObject (line 11) | def createMariObject(self) -> None: ... method fromDict (line 13) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 15) | def fromMariObject(cls, mariObject, parent): ... FILE: mari/stubs/mari-stubs/session/types/container/path.pyi class Path (line 3) | class Path(storage.Storage): method __init__ (line 5) | def __init__(self, value) -> None: ... FILE: mari/stubs/mari-stubs/session/types/container/storage.pyi class Storage (line 3) | class Storage: method __init__ (line 5) | def __init__(self, value) -> None: ... FILE: mari/stubs/mari-stubs/session/types/container/utils.pyi function getStorageValues (line 1) | def getStorageValues(object): ... FILE: mari/stubs/mari-stubs/session/types/entity_node_graph.pyi class EntityNodeGraph (line 5) | class EntityNodeGraph(Metadata): method __init__ (line 9) | def __init__(self, name, parent) -> None: ... method asDict (line 10) | def asDict(self, includeDict: Incomplete | None = ...): ... method fromDict (line 12) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 14) | def fromMariObject(cls, mariObject, parent): ... method make (line 16) | def make(self, finishedCallback=...) -> None: ... method walk (line 17) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/environment_light.pyi class EnvironmentLight (line 5) | class EnvironmentLight(Light): method __init__ (line 18) | def __init__(self, name, parent) -> None: ... method addImage (line 19) | def addImage(self, image) -> None: ... method removeImage (line 20) | def removeImage(self, image) -> None: ... method asDict (line 21) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObject (line 22) | def configureMariObject(self) -> None: ... method createMariObject (line 23) | def createMariObject(self) -> None: ... method fromDict (line 25) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 27) | def fromMariObject(cls, mariObject, parent): ... method walk (line 28) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/geo_entity.pyi class GeoEntity (line 5) | class GeoEntity(Metadata): method __init__ (line 10) | def __init__(self, name, parent) -> None: ... method channels (line 12) | def channels(self): ... method fullName (line 14) | def fullName(self): ... method shaders (line 16) | def shaders(self): ... method uvIndexes (line 18) | def uvIndexes(self): ... method udims (line 20) | def udims(self): ... method patches (line 22) | def patches(self): ... method versions (line 24) | def versions(self): ... method entityNodeGraphs (line 26) | def entityNodeGraphs(self): ... method hasSelectedPatches (line 28) | def hasSelectedPatches(self): ... method addChannel (line 29) | def addChannel(self, channel) -> None: ... method addShader (line 30) | def addShader(self, shader) -> None: ... method addGeoPatch (line 31) | def addGeoPatch(self, patch) -> None: ... method addGeoEntityVersion (line 32) | def addGeoEntityVersion(self, version) -> None: ... method addEntityNodeGraph (line 33) | def addEntityNodeGraph(self, entityNodeGraph) -> None: ... method asDict (line 34) | def asDict(self, includeDict: Incomplete | None = ...): ... method copyChannels (line 35) | def copyChannels(self, sourceChannels, uvIndexesMap: Incomplete | None... method copyShaders (line 36) | def copyShaders(self, sourceShaders): ... method copyEntityNodeGraphs (line 37) | def copyEntityNodeGraphs(self, sourceEntityNodeGraphs): ... method export (line 38) | def export(self, exportDir) -> None: ... method fromDict (line 40) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 42) | def fromMariObject(cls, mariObject, parent): ... method fromSelected (line 44) | def fromSelected(cls): ... method listFromSession (line 46) | def listFromSession(cls): ... method make (line 48) | def make(self, finishedCallback=...) -> None: ... method makeChannels (line 49) | def makeChannels(self, ignoreExisting: bool = ..., selectedLayers: boo... method makeShaders (line 50) | def makeShaders(self, ignoreExisting: bool = ..., ignoreShaderInputs: ... method makeEntityNodeGraphs (line 51) | def makeEntityNodeGraphs(self, finishedCallback=...) -> None: ... method walk (line 52) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... method isNewFormat (line 53) | def isNewFormat(self): ... FILE: mari/stubs/mari-stubs/session/types/geo_entity_version.pyi class GeoEntityVersion (line 5) | class GeoEntityVersion(Metadata): method __init__ (line 12) | def __init__(self, name, parent) -> None: ... method uvIndexes (line 14) | def uvIndexes(self): ... method asDict (line 15) | def asDict(self, includeDict: Incomplete | None = ...): ... method export (line 16) | def export(self, exportDir) -> None: ... method fromDict (line 18) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 20) | def fromMariObject(cls, mariObject, parent): ... method make (line 22) | def make(self, finishedCallback=...) -> None: ... method walk (line 23) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/geo_patch.pyi class GeoPatch (line 5) | class GeoPatch(Metadata): method __init__ (line 15) | def __init__(self, name, parent) -> None: ... method asDict (line 16) | def asDict(self, includeDict: Incomplete | None = ...): ... method fromDict (line 18) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 20) | def fromMariObject(cls, mariObject, parent): ... method walk (line 21) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/graph_layer.pyi class GraphLayer (line 4) | class GraphLayer(AdjustableLayer): method __init__ (line 5) | def __init__(self, name, parent) -> None: ... method nodeGraph (line 7) | def nodeGraph(self): ... method addNodeGraph (line 8) | def addNodeGraph(self, nodeGraph) -> None: ... method asDict (line 9) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObject (line 10) | def configureMariObject(self) -> None: ... method createMariObject (line 12) | def createMariObject(self) -> None: ... method fromDict (line 14) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 16) | def fromMariObject(cls, mariObject, parent): ... FILE: mari/stubs/mari-stubs/session/types/group_layer.pyi class GroupLayer (line 5) | class GroupLayer(AdjustableLayer): method __init__ (line 6) | def __init__(self, name, parent) -> None: ... method layerStack (line 8) | def layerStack(self): ... method layerStack (line 10) | def layerStack(self, layerStack) -> None: ... method asDict (line 11) | def asDict(self, includeDict: Incomplete | None = ...): ... method createMariObject (line 13) | def createMariObject(self) -> None: ... method fromDict (line 15) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 17) | def fromMariObject(cls, mariObject, parent): ... method makeChildren (line 18) | def makeChildren(self, finishedCallback=...) -> None: ... method walk (line 19) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/image.pyi class Image (line 5) | class Image(Metadata): method __init__ (line 12) | def __init__(self, name, parent) -> None: ... method filePath (line 14) | def filePath(self): ... method asDict (line 15) | def asDict(self, includeDict: Incomplete | None = ...): ... method export (line 16) | def export(self, exportDir, exported) -> None: ... method fromDict (line 18) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 20) | def fromMariObject(cls, mariObject, parent, uvIndex): ... method load (line 22) | def load(self, finishedCallback=...) -> None: ... method walk (line 23) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/image_set.pyi class ImageSet (line 5) | class ImageSet(Metadata): method __init__ (line 7) | def __init__(self, name, parent) -> None: ... method images (line 9) | def images(self): ... method isMakeable (line 11) | def isMakeable(self): ... method addImage (line 12) | def addImage(self, image) -> None: ... method removeImage (line 13) | def removeImage(self, image) -> None: ... method asDict (line 14) | def asDict(self, includeDict: Incomplete | None = ...): ... method fromDict (line 16) | def fromDict(cls, dataDict, parent, sourceFilePath, skipChildren: bool... method fromMariObject (line 18) | def fromMariObject(cls, mariObject, parent, skipChildren: bool = ...):... method instantiateChildren (line 19) | def instantiateChildren(self) -> None: ... method loadImages (line 20) | def loadImages(self, finishedCallback=...) -> None: ... method walk (line 21) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/layer.pyi class Layer (line 6) | class Layer(Metadata): method __init__ (line 34) | def __init__(self, name, parent) -> None: ... method maskImageSet (line 36) | def maskImageSet(self): ... method maskImageSet (line 38) | def maskImageSet(self, maskImageSet) -> None: ... method maskStack (line 40) | def maskStack(self): ... method maskStack (line 42) | def maskStack(self, maskStack) -> None: ... method asDict (line 43) | def asDict(self, includeDict: Incomplete | None = ...): ... method cache (line 44) | def cache(self) -> None: ... method configureMariObject (line 45) | def configureMariObject(self) -> None: ... method configureMariObjectBasics (line 46) | def configureMariObjectBasics(self) -> None: ... method createMariObject (line 48) | def createMariObject(self): ... method fromDict (line 50) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 52) | def fromMariObject(cls, mariObject, parent): ... method getParameter (line 53) | def getParameter(self, parameterValue): ... method make (line 54) | def make(self, finishedCallback=...) -> None: ... method makeChildren (line 55) | def makeChildren(self, finishedCallback=...) -> None: ... method makeMask (line 56) | def makeMask(self, finishedCallback=...) -> None: ... method setParameter (line 57) | def setParameter(self, parameterDict): ... method walk (line 58) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/layer_stack.pyi class LayerStack (line 5) | class LayerStack(Metadata): method __init__ (line 6) | def __init__(self, name, parent) -> None: ... method layers (line 8) | def layers(self): ... method addLayer (line 9) | def addLayer(self, layer) -> None: ... method asDict (line 10) | def asDict(self, includeDict: Incomplete | None = ...): ... method fromDict (line 12) | def fromDict(cls, dataDict, parent, sourceFilePath, skipChildren: bool... method fromMariObject (line 14) | def fromMariObject(cls, mariObject, parent, skipChildren: bool = ...):... method instantiateChildren (line 15) | def instantiateChildren(self) -> None: ... method makeLayers (line 16) | def makeLayers(self, selectedLayers: bool = ..., finishedCallback=...)... method walk (line 17) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/light.pyi class Light (line 6) | class Light(Metadata): method __init__ (line 10) | def __init__(self, name, parent) -> None: ... method asDict (line 11) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObject (line 12) | def configureMariObject(self) -> None: ... method configureMariObjectBasics (line 13) | def configureMariObjectBasics(self) -> None: ... method createMariObject (line 15) | def createMariObject(self): ... method fromDict (line 17) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 19) | def fromMariObject(cls, mariObject, parent): ... method make (line 21) | def make(self, finishedCallback=...) -> None: ... method walk (line 22) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/mari_entity.pyi class MariEntity (line 6) | class MariEntity(ABCMetaClass): method __init__ (line 7) | def __init__(self, name, parent) -> None: ... method __deepcopy__ (line 8) | def __deepcopy__(self, memo): ... method dependencies (line 10) | def dependencies(self): ... method fullName (line 12) | def fullName(self): ... method isMakeable (line 14) | def isMakeable(self): ... method mariObject (line 16) | def mariObject(self): ... method mariObject (line 18) | def mariObject(self, mariObject) -> None: ... method name (line 20) | def name(self): ... method name (line 22) | def name(self, name) -> None: ... method parent (line 24) | def parent(self): ... method parent (line 26) | def parent(self, parent) -> None: ... method parentChannel (line 28) | def parentChannel(self): ... method parentGeoEntity (line 30) | def parentGeoEntity(self): ... method parentLayer (line 32) | def parentLayer(self): ... method parentProject (line 34) | def parentProject(self): ... method parentShader (line 36) | def parentShader(self): ... method sanitizedName (line 38) | def sanitizedName(self): ... method sourceDict (line 40) | def sourceDict(self): ... method sourceDict (line 42) | def sourceDict(self, sourceDict) -> None: ... method sourceDir (line 44) | def sourceDir(self): ... method sourceImageDir (line 46) | def sourceImageDir(self): ... method sourceFilePath (line 48) | def sourceFilePath(self): ... method sourceFilePath (line 50) | def sourceFilePath(self, sourceFilePath) -> None: ... method treeDiagram (line 52) | def treeDiagram(self) -> None: ... method uid (line 54) | def uid(self): ... method addToCheckPaths (line 55) | def addToCheckPaths(self, paths): ... method asDict (line 57) | def asDict(self, includeDict: Incomplete | None = ...): ... method exportStep (line 58) | def exportStep(self) -> None: ... method findBySourceUID (line 59) | def findBySourceUID(self, uid): ... method findByUID (line 60) | def findByUID(self, uid): ... method findByUUID (line 61) | def findByUUID(self, uuid): ... method fromDict (line 63) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method walk (line 65) | def walk(self, depth: int = ...): ... FILE: mari/stubs/mari-stubs/session/types/metadata.pyi class Metadata (line 4) | class Metadata(MariEntity): method __init__ (line 15) | def __init__(self, name, parent) -> None: ... method __eq__ (line 16) | def __eq__(self, other): ... method __hash__ (line 17) | def __hash__(self): ... method __ne__ (line 18) | def __ne__(self, other): ... method applyMetadata (line 19) | def applyMetadata(self, finishedCallback=...) -> None: ... method asDict (line 20) | def asDict(self, includeDict: Incomplete | None = ...): ... method findByUUID (line 21) | def findByUUID(self, uuid): ... method fromDict (line 23) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 25) | def fromMariObject(cls, mariObject, parent, name: Incomplete | None = ... method getUUID (line 27) | def getUUID(self, mariEntity): ... FILE: mari/stubs/mari-stubs/session/types/multichannel_layer.pyi class MultiChannelLayer (line 3) | class MultiChannelLayer(Layer): method __init__ (line 4) | def __init__(self, name, parent) -> None: ... method streamName (line 6) | def streamName(self): ... method streamName (line 8) | def streamName(self, streamName) -> None: ... method createMariObject (line 9) | def createMariObject(self) -> None: ... FILE: mari/stubs/mari-stubs/session/types/node_graph.pyi class NodeGraph (line 5) | class NodeGraph(Metadata): method __init__ (line 7) | def __init__(self, name, parent) -> None: ... method asDict (line 8) | def asDict(self, includeDict: Incomplete | None = ...): ... method fromDict (line 10) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 12) | def fromMariObject(cls, mariObject, parent): ... method make (line 14) | def make(self, finishedCallback=...) -> None: ... method walk (line 15) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/paintable_layer.pyi class PaintableLayer (line 5) | class PaintableLayer(AdjustableLayer): method __init__ (line 7) | def __init__(self, name, parent) -> None: ... method asDict (line 8) | def asDict(self, includeDict: Incomplete | None = ...): ... method createMariObject (line 10) | def createMariObject(self) -> None: ... method fromDict (line 12) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 14) | def fromMariObject(cls, mariObject, parent): ... method makeChildren (line 15) | def makeChildren(self, finishedCallback=...) -> None: ... method walk (line 16) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/point_light.pyi class PointLight (line 5) | class PointLight(Light): method __init__ (line 19) | def __init__(self, name, parent) -> None: ... method asDict (line 20) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObject (line 21) | def configureMariObject(self) -> None: ... method createMariObject (line 22) | def createMariObject(self) -> None: ... method fromDict (line 24) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 26) | def fromMariObject(cls, mariObject, parent): ... method walk (line 27) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/procedural_layer.pyi class ProceduralLayer (line 4) | class ProceduralLayer(AdjustableLayer): method __init__ (line 7) | def __init__(self, name, parent) -> None: ... method asDict (line 8) | def asDict(self, includeDict: Incomplete | None = ...): ... method checkTypeExists (line 9) | def checkTypeExists(self): ... method configureMariObject (line 10) | def configureMariObject(self) -> None: ... method createMariObject (line 12) | def createMariObject(self) -> None: ... method fromDict (line 14) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 16) | def fromMariObject(cls, mariObject, parent): ... FILE: mari/stubs/mari-stubs/session/types/project.pyi class Project (line 5) | class Project(Metadata): method __init__ (line 6) | def __init__(self, name, parent) -> None: ... method geoEntities (line 8) | def geoEntities(self): ... method images (line 10) | def images(self): ... method lights (line 12) | def lights(self): ... method projectors (line 14) | def projectors(self): ... method cameras (line 16) | def cameras(self): ... method addGeoEntity (line 17) | def addGeoEntity(self, geoEntity) -> None: ... method addImage (line 18) | def addImage(self, image) -> None: ... method addLight (line 19) | def addLight(self, light) -> None: ... method addProjector (line 20) | def addProjector(self, projector) -> None: ... method addCamera (line 21) | def addCamera(self, camera) -> None: ... method asDict (line 22) | def asDict(self, includeDict: Incomplete | None = ...): ... method copyGeoEntities (line 23) | def copyGeoEntities(self, sourceGeoEntities): ... method fromMSF (line 25) | def fromMSF(self, filePath): ... method fromDict (line 27) | def fromDict(cls, dataDict, sourceFilePath, skipChildren: bool = ...):... method fromSession (line 29) | def fromSession(cls): ... method instantiateChildren (line 30) | def instantiateChildren(self) -> None: ... method make (line 31) | def make(self, finishedCallback=...) -> None: ... method merge (line 33) | def merge(self, sourceProject, geoEntities: Incomplete | None = ...) -... method walk (line 34) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/projector.pyi class Projector (line 5) | class Projector(Metadata): method __init__ (line 22) | def __init__(self, name, parent) -> None: ... method camera (line 24) | def camera(self): ... method addCamera (line 25) | def addCamera(self, camera) -> None: ... method asDict (line 26) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObjectBasics (line 27) | def configureMariObjectBasics(self) -> None: ... method fromDict (line 29) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 31) | def fromMariObject(cls, mariObject, parent): ... method instantiateChildren (line 32) | def instantiateChildren(self) -> None: ... method make (line 34) | def make(self, finishedCallback=...) -> None: ... method walk (line 35) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... FILE: mari/stubs/mari-stubs/session/types/shader.pyi class Shader (line 5) | class Shader(Metadata): method __init__ (line 17) | def __init__(self, name, parent) -> None: ... method channels (line 19) | def channels(self): ... method uvIndexes (line 21) | def uvIndexes(self): ... method addChannel (line 22) | def addChannel(self, channel) -> None: ... method asDict (line 23) | def asDict(self, includeDict: Incomplete | None = ...): ... method checkTypeExists (line 24) | def checkTypeExists(self): ... method configureMariObject (line 25) | def configureMariObject(self, ignoreShaderInputs: bool = ...) -> None:... method configureMariObjectBasics (line 26) | def configureMariObjectBasics(self) -> None: ... method createTemporaryShader (line 28) | def createTemporaryShader(self) -> None: ... method fromDict (line 30) | def fromDict(cls, dataDict, parent, sourceFilePath, skipChildren: bool... method fromMariObject (line 32) | def fromMariObject(cls, mariObject, parent, skipChildren: bool = ...):... method instantiateChildren (line 33) | def instantiateChildren(self) -> None: ... method make (line 34) | def make(self, makeChannels: bool = ..., ignoreShaderInputs: bool = ..... method makeChannels (line 35) | def makeChannels(self, ignoreExisting: bool = ..., ignoreShaderInputs:... method renameChannels (line 36) | def renameChannels(self, sourceChannels, geoEntity, uvIndexesMap: Inco... method walk (line 37) | def walk(self, depth: int = ...) -> Generator[Incomplete, None, None]:... method isNewFormat (line 38) | def isNewFormat(self): ... method setNodeUuidRemap (line 39) | def setNodeUuidRemap(self, nodeUuidRemap) -> None: ... FILE: mari/stubs/mari-stubs/session/types/shader_layer.pyi class ShaderLayer (line 4) | class ShaderLayer(AdjustableLayer): method __init__ (line 6) | def __init__(self, name, parent) -> None: ... method dependencies (line 8) | def dependencies(self): ... method asDict (line 9) | def asDict(self, includeDict: Incomplete | None = ...): ... method configureMariObject (line 10) | def configureMariObject(self) -> None: ... method createMariObject (line 12) | def createMariObject(self) -> None: ... method fromDict (line 14) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 16) | def fromMariObject(cls, mariObject, parent): ... FILE: mari/stubs/mari-stubs/session/types/sibling_shared_layer.pyi class SiblingSharedLayer (line 4) | class SiblingSharedLayer(Layer): method __init__ (line 6) | def __init__(self, name, parent) -> None: ... method dependencies (line 8) | def dependencies(self): ... method asDict (line 9) | def asDict(self, includeDict: Incomplete | None = ...): ... method createMariObject (line 11) | def createMariObject(self) -> None: ... method fromDict (line 13) | def fromDict(cls, dataDict, parent, sourceFilePath): ... method fromMariObject (line 15) | def fromMariObject(cls, mariObject, parent): ... method makeMask (line 16) | def makeMask(self, finishedCallback=...) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/change_path_dialog.pyi class ChangePathDialog (line 4) | class ChangePathDialog(QtWidgets.QDialog): method __init__ (line 12) | def __init__(self, title, path, filterTypes, ignoreButtons: bool = ...... method returnPath (line 13) | def returnPath(self): ... method setIgnore (line 14) | def setIgnore(self) -> None: ... method setIgnoreAll (line 15) | def setIgnoreAll(self) -> None: ... method selectFile (line 16) | def selectFile(self) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/channel_dialog.pyi class ChannelDialog (line 4) | class ChannelDialog(QtWidgets.QDialog): method __init__ (line 7) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method importChannels (line 8) | def importChannels(self) -> None: ... method onEntityImportFinished (line 9) | def onEntityImportFinished(self, mariEntity) -> None: ... method selectImportFile (line 10) | def selectImportFile(self): ... FILE: mari/stubs/mari-stubs/session/ui/export_dialog.pyi class ExportDialog (line 4) | class ExportDialog(QtWidgets.QDialog): method __init__ (line 6) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method exportEntities (line 7) | def exportEntities(self, exportDir, fileName: Incomplete | None = ...)... method checkInaccessibleGeoPaths (line 8) | def checkInaccessibleGeoPaths(self, geoEntities): ... method checkInaccessibleLayerPaths (line 9) | def checkInaccessibleLayerPaths(self, channels): ... method getExportDir (line 10) | def getExportDir(self): ... method getFileName (line 11) | def getFileName(self): ... method onEntityExportFinished (line 12) | def onEntityExportFinished(self, mariEntity) -> None: ... method setPathConfirmationEnabled (line 13) | def setPathConfirmationEnabled(self, enabled) -> None: ... method showExportDirDialog (line 14) | def showExportDirDialog(self) -> None: ... method getExportLists (line 15) | def getExportLists(self): ... method backgroundJobsRunningChanged (line 16) | def backgroundJobsRunningChanged(self, areJobsRunning) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/import_dialog.pyi class ImportDialog (line 4) | class ImportDialog(QtWidgets.QDialog): method __init__ (line 8) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method checkInaccessibleGeoPaths (line 9) | def checkInaccessibleGeoPaths(self): ... method checkProjectWithoutGeometries (line 10) | def checkProjectWithoutGeometries(self): ... method importProject (line 11) | def importProject(self, filePath) -> None: ... method getImportFile (line 12) | def getImportFile(self): ... method onEntityImportFinished (line 13) | def onEntityImportFinished(self, mariEntity) -> None: ... method selectImportFile (line 14) | def selectImportFile(self) -> None: ... method setProgressTotalSteps (line 15) | def setProgressTotalSteps(self) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/message_dialog.pyi class MessageDialog (line 4) | class MessageDialog(QtWidgets.QMessageBox): method __init__ (line 5) | def __init__(self, title, subject, info: Incomplete | None = ..., deta... FILE: mari/stubs/mari-stubs/session/ui/node_graph_dialog.pyi class NodeGraphDialog (line 4) | class NodeGraphDialog(QtWidgets.QDialog): method __init__ (line 7) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method importNodeGraphs (line 8) | def importNodeGraphs(self) -> None: ... method onEntityImportFinished (line 9) | def onEntityImportFinished(self, mariEntity) -> None: ... method selectImportFile (line 10) | def selectImportFile(self): ... FILE: mari/stubs/mari-stubs/session/ui/patch_export_options_dialog.pyi class PatchExportOptionsDialog (line 3) | class PatchExportOptionsDialog(QtWidgets.QDialog): method __init__ (line 4) | def __init__(self, geoEntity, parent) -> None: ... method selectedPatches (line 6) | def selectedPatches(self): ... method selectedPatches (line 8) | def selectedPatches(self, selectedPatches) -> None: ... method selectedPatchesText (line 10) | def selectedPatchesText(self): ... FILE: mari/stubs/mari-stubs/session/ui/patch_grid_widget.pyi class PatchGridWidget (line 3) | class PatchGridWidget(QtWidgets.QFrame): method __init__ (line 4) | def __init__(self, parent, geoEntity) -> None: ... method onSelectionChanged (line 5) | def onSelectionChanged(self) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/patch_item.pyi class PatchItem (line 3) | class PatchItem(QtWidgets.QGraphicsItemGroup): method __init__ (line 4) | def __init__(self, patch, pixmap, scene) -> None: ... method patch (line 6) | def patch(self): ... method onSelectionChanged (line 7) | def onSelectionChanged(self) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/patch_selector_dialog.pyi class PatchSelectorDialog (line 3) | class PatchSelectorDialog(QtWidgets.QDialog): method __init__ (line 4) | def __init__(self, parent, geoEntity) -> None: ... method selectedPatches (line 6) | def selectedPatches(self): ... method selectedPatches (line 8) | def selectedPatches(self, selectedPatches) -> None: ... FILE: mari/stubs/mari-stubs/session/ui/shader_dialog.pyi class ShaderDialog (line 4) | class ShaderDialog(QtWidgets.QDialog): method __init__ (line 7) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method importShaders (line 8) | def importShaders(self) -> None: ... method onEntityImportFinished (line 9) | def onEntityImportFinished(self, mariEntity) -> None: ... method selectImportFile (line 10) | def selectImportFile(self): ... FILE: mari/stubs/mari-stubs/session/ui/utils.pyi function showErrorDialog (line 3) | def showErrorDialog(windowTitle, subject, err, detail: Incomplete | None... function showMissingCustomEntitiesDialog (line 4) | def showMissingCustomEntitiesDialog(windowTitle, missingCustomEntities):... function showMissingDependenciesDialog (line 5) | def showMissingDependenciesDialog(windowTitle, dependencies) -> None: ... function showCanceledDialog (line 6) | def showCanceledDialog(windowTitle, Message) -> None: ... function getPixmap (line 7) | def getPixmap(filePath, size=...): ... function convertPixmapToGrayscale (line 8) | def convertPixmapToGrayscale(pixmap): ... FILE: mari/stubs/mari-stubs/session/utils/export_session.pyi class ExportSession (line 3) | class ExportSession: method __init__ (line 4) | def __init__(self, sessionType, exportDir, geoEntities=..., geoVersion... method start (line 21) | def start(self) -> None: ... FILE: mari/stubs/mari-stubs/session/utils/import_session.pyi class ImportSession (line 3) | class ImportSession: method __init__ (line 4) | def __init__(self, filePath, finishedCallback=...) -> None: ... method merge (line 10) | def merge(self, geoEntities: Incomplete | None = ...) -> None: ... method start (line 11) | def start(self) -> None: ... method cancel (line 12) | def cancel(self) -> None: ... FILE: mari/stubs/mari-stubs/session/utils/misc.pyi function copyFile (line 3) | def copyFile(pathFrom, pathTo) -> None: ... function createExportDir (line 4) | def createExportDir(exportDirPath, created): ... function findAndExportImage (line 5) | def findAndExportImage(sessionType, path, imageExportDir): ... function findByMariObject (line 6) | def findByMariObject(sessionType, mariObject): ... function findExcludedDependencies (line 7) | def findExcludedDependencies(mariEntities): ... function findDependencies (line 8) | def findDependencies(mariEntity): ... function findExternalDependencies (line 9) | def findExternalDependencies(mariEntity): ... function findInaccessiblePaths (line 10) | def findInaccessiblePaths(mariEntities): ... function findMissingCustomEntities (line 11) | def findMissingCustomEntities(mariEntities): ... function findTextureImages (line 12) | def findTextureImages(sessionType, geoEntities: Incomplete | None = ...,... function hashFile (line 13) | def hashFile(filePath): ... function hashString (line 14) | def hashString(val): ... function areLightsNamesDefault (line 15) | def areLightsNamesDefault(lights): ... FILE: mari/stubs/mari-stubs/session/utils/temp_dir.pyi class TempDir (line 3) | class TempDir: method __init__ (line 4) | def __init__(self, tempDir: Incomplete | None = ..., cleanup: bool = .... method __del__ (line 5) | def __del__(self) -> None: ... method path (line 7) | def path(self): ... FILE: mari/stubs/mari-stubs/system/_modo_contexts.pyi function addNodeContext (line 5) | def addNodeContext(node) -> None: ... FILE: mari/stubs/mari-stubs/system/_modo_session.pyi function isModoclAlive (line 9) | def isModoclAlive(): ... class ModoLaunchError (line 11) | class ModoLaunchError(Exception): method __init__ (line 13) | def __init__(self, message) -> None: ... class CancelNotification (line 15) | class CancelNotification(Exception): method __init__ (line 17) | def __init__(self, message) -> None: ... class ModoSockLogger (line 19) | class ModoSockLogger: method __init__ (line 26) | def __init__(self, modoSock, tempdir) -> None: ... method startDryrun (line 27) | def startDryrun(self) -> None: ... method finishDryrun (line 28) | def finishDryrun(self) -> None: ... method setProgressObject (line 29) | def setProgressObject(self, progressObject) -> None: ... method eval (line 30) | def eval(self, expression): ... method eval1 (line 31) | def eval1(self, expression): ... method close (line 32) | def close(self): ... class RenderSetup (line 34) | class RenderSetup: method __init__ (line 43) | def __init__(self, tempdir) -> None: ... class BakeSetup (line 45) | class BakeSetup: method __init__ (line 53) | def __init__(self, tempdir) -> None: ... class ModoSession (line 55) | class ModoSession(PySide2.QtCore.QObject): method __init__ (line 63) | def __init__(self) -> None: ... method setPausePreview (line 64) | def setPausePreview(self, pausePreview) -> None: ... method defaultModoLoc (line 65) | def defaultModoLoc(self): ... method renderByModo (line 66) | def renderByModo(self, path, flatten, render, progressObject: Incomple... method sendBakeParameters (line 67) | def sendBakeParameters(self) -> None: ... method bakeByModo (line 68) | def bakeByModo(self, path) -> None: ... method analyze (line 69) | def analyze(self, path): ... method openForBake (line 70) | def openForBake(self, path, analyze): ... method setModoBinLoc (line 71) | def setModoBinLoc(self, newLoc) -> None: ... method closeScenes (line 72) | def closeScenes(self) -> None: ... method closeModo (line 73) | def closeModo(self) -> None: ... FILE: mari/stubs/mari-stubs/system/_modo_ui.pyi class ProgressObject (line 15) | class ProgressObject: method __init__ (line 17) | def __init__(self, label) -> None: ... method __enter__ (line 18) | def __enter__(self): ... method __exit__ (line 19) | def __exit__(self, type, value, traceback) -> None: ... method setMaximum (line 20) | def setMaximum(self, maximum) -> None: ... method tick (line 21) | def tick(self) -> None: ... method wasCanceled (line 22) | def wasCanceled(self): ... class ResolutionCombobox (line 24) | class ResolutionCombobox(widgets.QComboBox): method __init__ (line 25) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method reset (line 26) | def reset(self) -> None: ... method width (line 27) | def width(self): ... method height (line 28) | def height(self): ... class DepthCombobox (line 30) | class DepthCombobox(widgets.QComboBox): method __init__ (line 31) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method reset (line 32) | def reset(self) -> None: ... method depth (line 33) | def depth(self): ... class FileLookupWidget (line 35) | class FileLookupWidget(widgets.QWidget): method __init__ (line 42) | def __init__(self, dialogText, dialogFilter, dialogSaveMode: bool = ..... method text (line 43) | def text(self): ... method setText (line 44) | def setText(self, text) -> None: ... class ModoPreviewWidget (line 46) | class ModoPreviewWidget(widgets.QWidget): method __init__ (line 48) | def __init__(self) -> None: ... method setPausePreview (line 49) | def setPausePreview(self, checked) -> None: ... function convertToReadableDistance (line 51) | def convertToReadableDistance(value): ... function isInteger (line 52) | def isInteger(text): ... function validate (line 53) | def validate(): ... class ModoBakeSettingsWidgetItemDelegate (line 55) | class ModoBakeSettingsWidgetItemDelegate(widgets.QStyledItemDelegate): method __init__ (line 56) | def __init__(self, parent) -> None: ... method createEditor (line 57) | def createEditor(self, parent, option, index): ... method setModelData (line 58) | def setModelData(self, editor, model, index) -> None: ... class ModoBakeSettingsWidget (line 60) | class ModoBakeSettingsWidget(widgets.QWidget): method __init__ (line 73) | def __init__(self, modoPreviewWidget) -> None: ... method setVisible (line 74) | def setVisible(self, visible) -> None: ... method reset (line 75) | def reset(self) -> None: ... method refreshCombobox (line 76) | def refreshCombobox(self) -> None: ... method onFileChanged (line 77) | def onFileChanged(self, path) -> None: ... method selectedPath (line 78) | def selectedPath(self): ... method analyze (line 79) | def analyze(self) -> None: ... method bakeByModo (line 80) | def bakeByModo(self) -> None: ... method onCellChanged (line 81) | def onCellChanged(self) -> None: ... method closeModo (line 82) | def closeModo(self) -> None: ... class ChannelAssignmentAddDialog (line 84) | class ChannelAssignmentAddDialog(widgets.QDialog): method __init__ (line 87) | def __init__(self) -> None: ... method currentPair (line 88) | def currentPair(self): ... class ChannelAssignmentWidget (line 90) | class ChannelAssignmentWidget(widgets.QWidget): method __init__ (line 92) | def __init__(self) -> None: ... method addChannelAssignment (line 93) | def addChannelAssignment(self) -> None: ... method removeChannelAssignment (line 94) | def removeChannelAssignment(self) -> None: ... method saveChannelAssignments (line 95) | def saveChannelAssignments(self) -> None: ... method loadChannelAssignments (line 96) | def loadChannelAssignments(self, geoEntity) -> None: ... method channelAssignments (line 97) | def channelAssignments(self): ... class ModoRenderSettingsWidget (line 99) | class ModoRenderSettingsWidget(widgets.QWidget): method __init__ (line 112) | def __init__(self, modoPreviewWidget) -> None: ... method setVisible (line 113) | def setVisible(self, visible) -> None: ... method reset (line 114) | def reset(self) -> None: ... method sendResources (line 115) | def sendResources(self) -> None: ... method renderByModo (line 116) | def renderByModo(self) -> None: ... method selectedPath (line 117) | def selectedPath(self): ... method renderWidth (line 118) | def renderWidth(self): ... method renderHeight (line 119) | def renderHeight(self): ... method renderSavePath (line 120) | def renderSavePath(self): ... method lxoSavePath (line 121) | def lxoSavePath(self): ... method saveSettings (line 122) | def saveSettings(self) -> None: ... method loadSettings (line 123) | def loadSettings(self, geoEntity) -> None: ... method refreshCombobox (line 124) | def refreshCombobox(self) -> None: ... class ModoSettingsWidget (line 126) | class ModoSettingsWidget(widgets.QWidget): method __init__ (line 132) | def __init__(self) -> None: ... class ModoControlWidget (line 134) | class ModoControlWidget(widgets.QWidget): method __init__ (line 138) | def __init__(self) -> None: ... method reset (line 139) | def reset(self) -> None: ... FILE: mari/stubs/mari-stubs/system/_modo_utils.pyi function isProcessRunning (line 1) | def isProcessRunning(pid): ... function monitorAndTeminateProcess (line 2) | def monitorAndTeminateProcess(parentPID, childPID) -> None: ... function callDetached (line 3) | def callDetached(function, *arg) -> None: ... FILE: mari/stubs/mari-stubs/system/_modosock.pyi class ModoSockError (line 3) | class ModoSockError(Exception): ... class ModoError (line 5) | class ModoError(ModoSockError): method __init__ (line 8) | def __init__(self, command, value) -> None: ... method get_error (line 9) | def get_error(self): ... class UnrecognisedLineError (line 11) | class UnrecognisedLineError(ModoSockError): method __init__ (line 15) | def __init__(self, command, prevline, currline) -> None: ... method get_error (line 16) | def get_error(self): ... class ModoSock (line 18) | class ModoSock: method __init__ (line 21) | def __init__(self, host, port) -> None: ... method close (line 22) | def close(self) -> None: ... method eval (line 23) | def eval(self, command) -> None: ... method eval1 (line 24) | def eval1(self, command): ... method evalN (line 25) | def evalN(self, command): ... FILE: mari/stubs/mari-stubs/system/_ocio_toolbar.pyi class OcioToolBar (line 11) | class OcioToolBar: method __init__ (line 12) | def __init__(self) -> None: ... method setColorManagementEnabled (line 13) | def setColorManagementEnabled(self, value) -> None: ... method isColorManagementEnabled (line 14) | def isColorManagementEnabled(self): ... method isEnabled (line 15) | def isEnabled(self, filter_collection: Incomplete | None = ...): ... method setViewerScalar (line 16) | def setViewerScalar(self, value) -> None: ... method updateToggleColorManagementActionTooltip (line 17) | def updateToggleColorManagementActionTooltip(self) -> None: ... method setColorspaceDefaults (line 18) | def setColorspaceDefaults(self, value) -> None: ... method setConfigPath (line 19) | def setConfigPath(self, value, update_metadata: bool = ..., display_me... method configPath (line 20) | def configPath(self): ... method selectConfig (line 21) | def selectConfig(self) -> None: ... method setInputColorspacePath (line 22) | def setInputColorspacePath(self, value, update_widget: bool = ..., upd... method setInputColorspace (line 23) | def setInputColorspace(self, value, update_widget: bool = ..., update_... method resolveInputColorspace (line 24) | def resolveInputColorspace(self): ... method inputColorspaceDefault (line 25) | def inputColorspaceDefault(self, defaults): ... method resolvePrettyName (line 26) | def resolvePrettyName(self, name): ... method setLUTPath (line 27) | def setLUTPath(self, value, update_metadata: bool = ..., force_shader_... method lutPath (line 28) | def lutPath(self): ... method resetLUT (line 29) | def resetLUT(self, force_shader_build: bool = ...) -> None: ... method selectLUT (line 30) | def selectLUT(self) -> None: ... method setExtrapolateEnabled (line 31) | def setExtrapolateEnabled(self, value, update_widget: bool = ..., upda... method setColorDisplay (line 32) | def setColorDisplay(self, value, update_widget: bool = ..., update_met... method setScalarDisplay (line 33) | def setScalarDisplay(self, value, update_widget: bool = ..., update_me... method setSwizzle (line 34) | def setSwizzle(self, value, update_widget: bool = ..., update_metadata... method setGain (line 35) | def setGain(self, value, update_widget: bool = ..., update_metadata: b... method setGamma (line 36) | def setGamma(self, value, update_widget: bool = ..., update_metadata: ... method updateLUTSize (line 37) | def updateLUTSize(self) -> None: ... method updateFStopCenter (line 38) | def updateFStopCenter(self) -> None: ... method gainFilterFlagsChanged (line 39) | def gainFilterFlagsChanged(self, flags) -> None: ... method lutFilterFlagsChanged (line 40) | def lutFilterFlagsChanged(self, flags) -> None: ... method displayFilterFlagsChanged (line 41) | def displayFilterFlagsChanged(self, flags) -> None: ... method isGainFilterEnabled (line 42) | def isGainFilterEnabled(self): ... method isLUTFilterEnabled (line 43) | def isLUTFilterEnabled(self): ... method isDisplayFilterEnabled (line 44) | def isDisplayFilterEnabled(self): ... function metadataValueChanged (line 46) | def metadataValueChanged(name, value) -> None: ... FILE: mari/stubs/mari-stubs/system/_particle_channel_transfer.pyi class ChannelOptionsTab (line 10) | class ChannelOptionsTab(OptionsTab): method __init__ (line 17) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method sourceChannels (line 18) | def sourceChannels(self): ... method destinationSize (line 19) | def destinationSize(self): ... class ChannelTransferDialog (line 21) | class ChannelTransferDialog(TransferDialog): method __init__ (line 24) | def __init__(self, parent: Incomplete | None = ...) -> None: ... class ChannelTransferListWidgetItem (line 26) | class ChannelTransferListWidgetItem(QListWidgetItem): method __init__ (line 27) | def __init__(self, channel) -> None: ... method channel (line 28) | def channel(self): ... class ChannelTransferListWidget (line 30) | class ChannelTransferListWidget(QListWidget): method __init__ (line 31) | def __init__(self) -> None: ... method populateChannels (line 32) | def populateChannels(self, channels) -> None: ... method showAll (line 33) | def showAll(self) -> None: ... method showSelected (line 34) | def showSelected(self, source) -> None: ... method hideSelected (line 35) | def hideSelected(self) -> None: ... method hideAll (line 36) | def hideAll(self) -> None: ... method channels (line 37) | def channels(self): ... function showDialog (line 39) | def showDialog() -> None: ... FILE: mari/stubs/mari-stubs/system/_particle_layer_transfer.pyi class LayerOptionsTab (line 11) | class LayerOptionsTab(OptionsTab): method __init__ (line 17) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method sourceChannel (line 18) | def sourceChannel(self): ... method destinationChannel (line 19) | def destinationChannel(self): ... method sourceLayers (line 20) | def sourceLayers(self): ... method createIncompleteGroups (line 21) | def createIncompleteGroups(self, source_layers, destination_layers, de... class LayerTransferDialog (line 23) | class LayerTransferDialog(TransferDialog): method __init__ (line 26) | def __init__(self, parent: Incomplete | None = ...) -> None: ... class LayerTransferTreeWidgetItem (line 28) | class LayerTransferTreeWidgetItem(QTreeWidgetItem): method __init__ (line 29) | def __init__(self, source_layer) -> None: ... method sourceLayer (line 30) | def sourceLayer(self): ... method destinationLayer (line 31) | def destinationLayer(self): ... method hasSelectedChildren (line 32) | def hasSelectedChildren(self): ... method hasHiddenChildren (line 33) | def hasHiddenChildren(self): ... method isIncompleteGroup (line 34) | def isIncompleteGroup(self): ... method showAll (line 35) | def showAll(self) -> None: ... method showSelected (line 36) | def showSelected(self, source) -> None: ... method hideSelected (line 37) | def hideSelected(self) -> None: ... method hideAll (line 38) | def hideAll(self) -> None: ... method sourceLayers (line 39) | def sourceLayers(self): ... method createEmptyIncompleteGroups (line 40) | def createEmptyIncompleteGroups(self, source_layers, destination_layer... method populateIncompleteGroups (line 41) | def populateIncompleteGroups(self) -> None: ... method moveIncompleteGroups (line 42) | def moveIncompleteGroups(self, parent_stack, ref_layer) -> None: ... class LayerTransferTreeWidget (line 44) | class LayerTransferTreeWidget(QTreeWidget): method __init__ (line 45) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method populateSourceLayers (line 46) | def populateSourceLayers(self, source_channel) -> None: ... method showAll (line 47) | def showAll(self) -> None: ... method showSelected (line 48) | def showSelected(self, source) -> None: ... method hideSelected (line 49) | def hideSelected(self) -> None: ... method hideAll (line 50) | def hideAll(self) -> None: ... method sourceLayers (line 51) | def sourceLayers(self): ... method createIncompleteGroups (line 52) | def createIncompleteGroups(self, source_layers, destination_layers, de... function showDialog (line 54) | def showDialog() -> None: ... FILE: mari/stubs/mari-stubs/system/_particle_ops.pyi class ParticleOpDialog (line 6) | class ParticleOpDialog(PySide2.QtWidgets.QDialog): method __init__ (line 10) | def __init__(self, op_name, parent: Incomplete | None = ...) -> None: ... method op (line 11) | def op(self): ... function showDialog (line 13) | def showDialog(op_name) -> None: ... FILE: mari/stubs/mari-stubs/system/_particle_transfer.pyi class OptionsTab (line 19) | class OptionsTab(QWidget): method __init__ (line 30) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method sourceGeo (line 31) | def sourceGeo(self): ... method sourceVersion (line 32) | def sourceVersion(self): ... method destinationGeo (line 33) | def destinationGeo(self): ... method destinationVersion (line 34) | def destinationVersion(self): ... class AdvancedTab (line 36) | class AdvancedTab(QWidget): method __init__ (line 59) | def __init__(self, options, parent: Incomplete | None = ...) -> None: ... method sourceFrame (line 60) | def sourceFrame(self): ... method sourcePatches (line 61) | def sourcePatches(self): ... method sourceVisibleOnly (line 62) | def sourceVisibleOnly(self): ... method sourceSelectedOnly (line 63) | def sourceSelectedOnly(self): ... method destinationFrame (line 64) | def destinationFrame(self): ... method destinationPatches (line 65) | def destinationPatches(self): ... method destinationVisibleOnly (line 66) | def destinationVisibleOnly(self): ... method destinationSelectedOnly (line 67) | def destinationSelectedOnly(self): ... method searchMethod (line 68) | def searchMethod(self): ... method interpolationMethod (line 69) | def interpolationMethod(self): ... method sampleCount (line 70) | def sampleCount(self): ... method centerPositions (line 71) | def centerPositions(self): ... method flatten (line 72) | def flatten(self): ... method bleedEdges (line 73) | def bleedEdges(self): ... method searchUnits (line 74) | def searchUnits(self): ... method searchRange (line 75) | def searchRange(self): ... method fillColor (line 76) | def fillColor(self): ... method loadSettings (line 77) | def loadSettings(self) -> None: ... method saveSettings (line 78) | def saveSettings(self) -> None: ... class TransferDialog (line 80) | class TransferDialog(mari.utils.Dialog): method __init__ (line 86) | def __init__(self, title, parent: Incomplete | None = ...) -> None: ... method options (line 87) | def options(self): ... method advancedOptions (line 88) | def advancedOptions(self): ... class EntityComboBox (line 90) | class EntityComboBox(QComboBox): method __init__ (line 91) | def __init__(self) -> None: ... method addEntity (line 92) | def addEntity(self, entity) -> None: ... method setCurrentEntity (line 93) | def setCurrentEntity(self, entity) -> None: ... method currentEntity (line 94) | def currentEntity(self): ... class PatchWidget (line 96) | class PatchWidget(QWidget): method __init__ (line 100) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method setPatches (line 102) | def setPatches(self, patches) -> None: ... method uvIndices (line 103) | def uvIndices(self): ... FILE: mari/stubs/mari-stubs/system/_setup.pyi function setUp (line 1) | def setUp() -> None: ... function reduceEnum (line 2) | def reduceEnum(enum): ... function registerPickleLogic (line 3) | def registerPickleLogic() -> None: ... FILE: mari/stubs/mari-stubs/system/_test.pyi function docExampleTests (line 1) | def docExampleTests(className: str = ...) -> None: ... FILE: mari/stubs/mari-stubs/system/bake_new_layer.pyi function bakeOnNewLayer (line 1) | def bakeOnNewLayer() -> None: ... FILE: mari/stubs/mari-stubs/system/base_item_model.pyi class BaseItem (line 5) | class BaseItem: method __init__ (line 7) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method loadChildItems (line 8) | def loadChildItems(self) -> None: ... method addChildItem (line 9) | def addChildItem(self, item, atIndex: Incomplete | None = ...) -> None... method childCount (line 10) | def childCount(self, forceLoad: bool = ...): ... method getChildItemAtIndex (line 11) | def getChildItemAtIndex(self, index): ... method getIndexOfChildItem (line 12) | def getIndexOfChildItem(self, childItem): ... method columnCount (line 13) | def columnCount(self): ... method data (line 14) | def data(self, column: int = ..., role=...) -> None: ... method hasChildItems (line 15) | def hasChildItems(self): ... method modelIndex (line 16) | def modelIndex(self, column: int = ...): ... method flags (line 17) | def flags(self, column): ... method setValue (line 18) | def setValue(self, value, column: int = ...): ... method reset (line 19) | def reset(self) -> None: ... method clear (line 20) | def clear(self) -> None: ... method iterChildItems (line 21) | def iterChildItems(self) -> Generator[Incomplete, None, None]: ... method parentItem (line 23) | def parentItem(self): ... method model (line 25) | def model(self): ... class BaseItemModel (line 27) | class BaseItemModel(core.QAbstractItemModel): method __init__ (line 28) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method getItemFromIndex (line 29) | def getItemFromIndex(self, index): ... method index (line 30) | def index(self, row, column, parent=...): ... method parent (line 31) | def parent(self, index): ... method rowCount (line 32) | def rowCount(self, parent: Incomplete | None = ...): ... method columnCount (line 33) | def columnCount(self, parent: Incomplete | None = ...): ... method flags (line 34) | def flags(self, index): ... method data (line 35) | def data(self, index, role=...): ... method setData (line 36) | def setData(self, index, value, role=...): ... method batchSetData (line 37) | def batchSetData(self, indices, value, role=...): ... class BaseItemModelProxy (line 39) | class BaseItemModelProxy(core.QSortFilterProxyModel): method __init__ (line 40) | def __init__(self, model, parent: Incomplete | None = ...) -> None: ... method model (line 42) | def model(self): ... method getItemFromIndex (line 43) | def getItemFromIndex(self, index): ... FILE: mari/stubs/mari-stubs/system/batch_export_dialog.pyi function registerCustomTabWidgetCallback (line 16) | def registerCustomTabWidgetCallback(tab_name, tab_widget_callback) -> No... function deregisterCustomTabWidgetCallback (line 17) | def deregisterCustomTabWidgetCallback(tab_name) -> None: ... function fileExtension (line 18) | def fileExtension(fileTemplate): ... function replaceExtension (line 19) | def replaceExtension(fileTemplate, extension): ... function resolveSourceIndex (line 20) | def resolveSourceIndex(index): ... function debugLog (line 21) | def debugLog(message) -> None: ... function loadListValueFromSettings (line 22) | def loadListValueFromSettings(setting_path): ... class FileOptionsDialog (line 24) | class FileOptionsDialog(widgets.QDialog): method __init__ (line 31) | def __init__(self, fileExtensions, parent: Incomplete | None = ...) ->... method getFileOptions (line 32) | def getFileOptions(self, file_extension): ... method getSaveOptions (line 33) | def getSaveOptions(self): ... method setSaveOptions (line 34) | def setSaveOptions(self, item) -> None: ... method getFileExtension (line 35) | def getFileExtension(self): ... method onFileExtensionComboBoxCurrentTextChanged (line 36) | def onFileExtensionComboBoxCurrentTextChanged(self, text) -> None: ... class ComboBoxDelegate (line 38) | class ComboBoxDelegate(widgets.QStyledItemDelegate): method createEditor (line 39) | def createEditor(self, parent, option, index): ... method setEditorData (line 40) | def setEditorData(self, editor, index) -> None: ... method setModelData (line 41) | def setModelData(self, editor, model, index) -> None: ... method updateEditorGeometry (line 42) | def updateEditorGeometry(self, editor, option, index) -> None: ... method finishEdit (line 43) | def finishEdit(self) -> None: ... class ExportItemModel (line 45) | class ExportItemModel(core.QAbstractItemModel): method __init__ (line 51) | def __init__(self, geoEntities, view) -> None: ... method onDataChanged (line 52) | def onDataChanged(self) -> None: ... method exportItemList (line 53) | def exportItemList(self, geoEntity): ... method flags (line 54) | def flags(self, index): ... method rowCount (line 55) | def rowCount(self, parent=...): ... method columnCount (line 56) | def columnCount(self, parent=...): ... method index (line 57) | def index(self, row, column, parent=...): ... method parent (line 58) | def parent(self, index): ... method headerData (line 59) | def headerData(self, section, orientation, role): ... method setData (line 60) | def setData(self, index, value, role): ... method generateTokenTemplateTooltip (line 61) | def generateTokenTemplateTooltip(self, AddExtra): ... method data (line 62) | def data(self, index, role): ... method updateStatus (line 63) | def updateStatus(self, checkCollisionAcrossObjects: bool = ...) -> Non... class ExportItemFilterModel (line 65) | class ExportItemFilterModel(core.QSortFilterProxyModel): method __init__ (line 66) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method filterAcceptsRow (line 67) | def filterAcceptsRow(self, sourceRow, sourceParent): ... class AddExportItemDialog (line 69) | class AddExportItemDialog(widgets.QDialog): method __init__ (line 74) | def __init__(self, geoEntity, parent: Incomplete | None = ...) -> None... method findBakePointNodes (line 75) | def findBakePointNodes(self, nodeGraph, bakePointList, channelNodeSet,... method selectedNodes (line 76) | def selectedNodes(self): ... class ExportManagerView (line 78) | class ExportManagerView(widgets.QTableView): method selectionChanged (line 79) | def selectionChanged(self, selected, deselected): ... class ExportDialog (line 81) | class ExportDialog(widgets.QDialog): method __init__ (line 84) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method closeEvent (line 85) | def closeEvent(self, event) -> None: ... method addTabWidgets (line 87) | def addTabWidgets(self) -> None: ... method closeTabWidgets (line 88) | def closeTabWidgets(self) -> None: ... class ExportWidget (line 90) | class ExportWidget(widgets.QWidget): method __init__ (line 106) | def __init__(self, parent) -> None: ... method getOverrides (line 107) | def getOverrides(self): ... method acceptParentDialog (line 108) | def acceptParentDialog(self) -> None: ... method onCustomContextMenuRequested (line 109) | def onCustomContextMenuRequested(self, pos) -> None: ... method onObjectNameComboBoxCurrentIndexChanged (line 110) | def onObjectNameComboBoxCurrentIndexChanged(self, index) -> None: ... method onExportRootPathLookupButtonPressed (line 111) | def onExportRootPathLookupButtonPressed(self) -> None: ... method itemsHaveOverwriteWarnings (line 112) | def itemsHaveOverwriteWarnings(self, exportItems): ... method onExportCurrentObjectButtonPressed (line 113) | def onExportCurrentObjectButtonPressed(self) -> None: ... method exportSelected (line 114) | def exportSelected(self) -> None: ... method onExportAllButtonPressed (line 115) | def onExportAllButtonPressed(self) -> None: ... method checkSelected (line 116) | def checkSelected(self) -> None: ... method uncheckSelected (line 117) | def uncheckSelected(self) -> None: ... method onSaveAndClosePressed (line 118) | def onSaveAndClosePressed(self) -> None: ... method onCloseTab (line 119) | def onCloseTab(self) -> None: ... method onAddExportItemButtonPressed (line 120) | def onAddExportItemButtonPressed(self) -> None: ... method removeSelected (line 121) | def removeSelected(self) -> None: ... method onSaveExportSettingsButton (line 122) | def onSaveExportSettingsButton(self) -> None: ... method onLoadExportSettingsButton (line 123) | def onLoadExportSettingsButton(self) -> None: ... method currentGeoEntity (line 124) | def currentGeoEntity(self): ... method loadRootPaths (line 125) | def loadRootPaths(self): ... method saveRootPaths (line 126) | def saveRootPaths(self) -> None: ... function showExportDialog (line 128) | def showExportDialog() -> None: ... function addButtonToToolbar (line 129) | def addButtonToToolbar() -> None: ... FILE: mari/stubs/mari-stubs/system/material_ingest.pyi class TextureSet (line 15) | class TextureSet: method __init__ (line 20) | def __init__(self, shader_model) -> None: ... method name (line 22) | def name(self): ... method shaderModel (line 24) | def shaderModel(self): ... method thumbnail (line 26) | def thumbnail(self): ... method iterStreams (line 27) | def iterStreams(self, enabled_only: bool = ...) -> Generator[Incomplet... method setStreamData (line 28) | def setStreamData(self, stream_name, data_type, value) -> None: ... method getStreamData (line 29) | def getStreamData(self, stream_name, data_type): ... method setName (line 30) | def setName(self, name) -> None: ... method setThumbnail (line 31) | def setThumbnail(self, thumbnail) -> None: ... method printContents (line 32) | def printContents(self) -> None: ... method to_dict (line 33) | def to_dict(self): ... method from_dict (line 35) | def from_dict(texture_set_data): ... function duplicateTextureSet (line 37) | def duplicateTextureSet(reference_texture_set): ... function generateSupportedImageExtensionList (line 38) | def generateSupportedImageExtensionList() -> None: ... function isValidImageFile (line 39) | def isValidImageFile(root, filename): ... function getTextureFilenamePattern (line 40) | def getTextureFilenamePattern(template, stream_name_patterns, case_sensi... function getThumbnailFilenamePattern (line 41) | def getThumbnailFilenamePattern(template, name): ... function findThumbnailFile (line 42) | def findThumbnailFile(pattern, root_path, name, case_sensitive): ... function getPathPartCount (line 43) | def getPathPartCount(filename_template): ... function getFilePathToMatch (line 44) | def getFilePathToMatch(filename, root_path_parts, path_part_count): ... function findTextureSetImages (line 45) | def findTextureSetImages(root_path, texture_set_template, filename_templ... function createMaterialFromTextureSet (line 46) | def createMaterialFromTextureSet(texture_set, procedural_type, material_... FILE: mari/stubs/mari-stubs/system/material_ingest_dialog.pyi function getColorspaceIcon (line 47) | def getColorspaceIcon(colorspace_mode): ... function sanitiseText (line 48) | def sanitiseText(text): ... class StreamItem (line 50) | class StreamItem(base_item_model.BaseItem): method __init__ (line 52) | def __init__(self, stream, parent: Incomplete | None = ...) -> None: ... method name (line 54) | def name(self): ... method stream (line 56) | def stream(self): ... method enabled (line 58) | def enabled(self): ... method namingPatterns (line 60) | def namingPatterns(self): ... method color (line 62) | def color(self): ... method isEdited (line 64) | def isEdited(self): ... method clearData (line 65) | def clearData(self) -> None: ... method setEdited (line 66) | def setEdited(self, value) -> None: ... method data (line 67) | def data(self, column: int = ..., role=...): ... method flags (line 68) | def flags(self, column): ... method setValue (line 69) | def setValue(self, value, column: int = ...): ... method isStreamNamesInList (line 70) | def isStreamNamesInList(self, list_of_names): ... class ShaderModelItem (line 72) | class ShaderModelItem(base_item_model.BaseItem): method __init__ (line 74) | def __init__(self, shader_model, parent: Incomplete | None = ...) -> N... method shaderModel (line 76) | def shaderModel(self): ... method isEdited (line 78) | def isEdited(self): ... method setEdited (line 79) | def setEdited(self, value) -> None: ... method flags (line 80) | def flags(self, column): ... method data (line 81) | def data(self, column: int = ..., role=...): ... method loadChildItems (line 82) | def loadChildItems(self) -> None: ... method clearData (line 83) | def clearData(self) -> None: ... class ShaderModelsRoot (line 85) | class ShaderModelsRoot(base_item_model.BaseItem): method loadChildItems (line 86) | def loadChildItems(self) -> None: ... class StreamConfigModel (line 88) | class StreamConfigModel(base_item_model.BaseItemModel): method __init__ (line 89) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method rootItem (line 91) | def rootItem(self): ... method parentWidget (line 92) | def parentWidget(self): ... method headerData (line 93) | def headerData(self, section, orientation, role=...): ... method saveSettings (line 94) | def saveSettings(self) -> None: ... method loadSettings (line 95) | def loadSettings(self) -> None: ... method clearSettings (line 96) | def clearSettings(self) -> None: ... method toString (line 97) | def toString(self): ... method setDataFromString (line 98) | def setDataFromString(self, xml_string) -> None: ... class StreamViewMenu (line 100) | class StreamViewMenu(widgets.QMenu): method __init__ (line 104) | def __init__(self, index, parent: Incomplete | None = ...) -> None: ... class StreamView (line 106) | class StreamView(widgets.QTableView): method __init__ (line 107) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method selectionChanged (line 108) | def selectionChanged(self, selected, deselected): ... method setContextMenuCallback (line 109) | def setContextMenuCallback(self, context_menu_callback) -> None: ... method contextMenuEvent (line 110) | def contextMenuEvent(self, event): ... method mouseDoubleClickEvent (line 111) | def mouseDoubleClickEvent(self, event) -> None: ... class TextureSetStreamItem (line 113) | class TextureSetStreamItem(base_item_model.BaseItem): method __init__ (line 114) | def __init__(self, stream, parent: Incomplete | None = ...) -> None: ... method getStreamFilename (line 115) | def getStreamFilename(self): ... method flags (line 116) | def flags(self, column): ... method data (line 117) | def data(self, column: int = ..., role=...): ... class TextureSetItem (line 119) | class TextureSetItem(base_item_model.BaseItem): method __init__ (line 121) | def __init__(self, texture_set, parent: Incomplete | None = ...) -> No... method textureSet (line 123) | def textureSet(self): ... method flags (line 124) | def flags(self, column): ... method data (line 125) | def data(self, column: int = ..., role=...): ... method loadChildItems (line 126) | def loadChildItems(self) -> None: ... class TextureSetResultsModel (line 128) | class TextureSetResultsModel(base_item_model.BaseItemModel): method __init__ (line 129) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method rootItem (line 131) | def rootItem(self): ... method rootPath (line 133) | def rootPath(self): ... method showRelativePaths (line 135) | def showRelativePaths(self): ... method showEmptyStreams (line 137) | def showEmptyStreams(self): ... method parentWidget (line 138) | def parentWidget(self): ... method setShowRelativePaths (line 139) | def setShowRelativePaths(self, state) -> None: ... method setShowEmptyStreams (line 140) | def setShowEmptyStreams(self, state) -> None: ... method setRootPath (line 141) | def setRootPath(self, root_path) -> None: ... method clear (line 142) | def clear(self) -> None: ... method textureSets (line 143) | def textureSets(self): ... method setTextureSets (line 144) | def setTextureSets(self, texture_sets) -> None: ... class TextureSetsProxy (line 146) | class TextureSetsProxy(base_item_model.BaseItemModelProxy): method headerData (line 147) | def headerData(self, section, orientation, role=...): ... method lessThan (line 148) | def lessThan(self, left_index, right_index): ... class TextureSetProxy (line 150) | class TextureSetProxy(base_item_model.BaseItemModelProxy): method headerData (line 151) | def headerData(self, section, orientation, role=...): ... method filterAcceptsRow (line 152) | def filterAcceptsRow(self, source_row, source_parent): ... class TextureSetSearchResultsDialog (line 154) | class TextureSetSearchResultsDialog(widgets.QDialog): method __init__ (line 155) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method setRootPath (line 156) | def setRootPath(self, root_path) -> None: ... method setTextureSets (line 157) | def setTextureSets(self, texture_sets) -> None: ... method textureSetTemplate (line 158) | def textureSetTemplate(self): ... method setTextureSetTemplate (line 159) | def setTextureSetTemplate(self, texture_set_template) -> None: ... method saveSettings (line 160) | def saveSettings(self) -> None: ... method accept (line 161) | def accept(self): ... method displayResults (line 163) | def displayResults(cls, texture_sets, texture_set_template, root_path:... class MaterialIngestWidget (line 165) | class MaterialIngestWidget(widgets.QWidget): method __init__ (line 193) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method findTemplates (line 194) | def findTemplates(self): ... method loadItems (line 195) | def loadItems(self, control): ... method saveItems (line 196) | def saveItems(self, control) -> None: ... method onMaterialTemplateButtonClicked (line 197) | def onMaterialTemplateButtonClicked(self) -> None: ... method onRootPathButtonClicked (line 198) | def onRootPathButtonClicked(self) -> None: ... method onExportPathButtonClicked (line 199) | def onExportPathButtonClicked(self) -> None: ... method onMaterialTemplateComboBoxCurrentIndexChanged (line 200) | def onMaterialTemplateComboBoxCurrentIndexChanged(self, index) -> None... method onShaderModelComboBoxCurrentIndexChanged (line 201) | def onShaderModelComboBoxCurrentIndexChanged(self, index) -> None: ... method onPresetsComboBoxCurrentIndexChanged (line 202) | def onPresetsComboBoxCurrentIndexChanged(self, index) -> None: ... method onIngestMethodComboBoxCurrentIndexChanged (line 203) | def onIngestMethodComboBoxCurrentIndexChanged(self, index) -> None: ... method onChangeSelectedCheckState (line 204) | def onChangeSelectedCheckState(self, state) -> None: ... method onSetColor (line 205) | def onSetColor(self, index) -> None: ... method onResetToShortNames (line 206) | def onResetToShortNames(self, index) -> None: ... method presetDialogSearchPath (line 207) | def presetDialogSearchPath(self): ... method onSavePresetButtonClicked (line 208) | def onSavePresetButtonClicked(self) -> None: ... method onLoadPresetButtonClicked (line 209) | def onLoadPresetButtonClicked(self) -> None: ... method onClearPresetButtonClicked (line 210) | def onClearPresetButtonClicked(self) -> None: ... method onAddShelfComboBoxCurrentIndexChanged (line 211) | def onAddShelfComboBoxCurrentIndexChanged(self, index) -> None: ... method onNewShelfTextBoxEditingFinished (line 212) | def onNewShelfTextBoxEditingFinished(self) -> None: ... method onPresetControlEdited (line 213) | def onPresetControlEdited(self) -> None: ... method validateNewShelfName (line 214) | def validateNewShelfName(self): ... method displayPresetError (line 215) | def displayPresetError(self, preset_path_with_issue, error_message) ->... method loadPreset (line 216) | def loadPreset(self, preset_path): ... method addUserPreset (line 217) | def addUserPreset(self, ingest_preset_path, set_current: bool = ...) -... method populatePresetComboBox (line 218) | def populatePresetComboBox(self): ... method populateShelfComboBox (line 219) | def populateShelfComboBox(self, last_used_shelf) -> None: ... method launchStreamViewContextMenu (line 220) | def launchStreamViewContextMenu(self, event) -> None: ... method setStatus (line 221) | def setStatus(self, message) -> None: ... method setProgress (line 222) | def setProgress(self, value, total) -> None: ... method setBusy (line 223) | def setBusy(self) -> None: ... method getElidedText (line 224) | def getElidedText(self, text, widget): ... method getItemFromControl (line 225) | def getItemFromControl(self, control, index: Incomplete | None = ...):... method overwriteCheck (line 226) | def overwriteCheck(self, texture_sets): ... method isProcessCancelled (line 227) | def isProcessCancelled(self): ... method generateTextureSetTemplate (line 228) | def generateTextureSetTemplate(self): ... method createMaterials (line 229) | def createMaterials(self, failed_to_export, failed_to_import): ... method shelfForImport (line 230) | def shelfForImport(self): ... method validateFieldData (line 231) | def validateFieldData(self): ... method onCreateMaterialsClicked (line 232) | def onCreateMaterialsClicked(self) -> None: ... method saveSettings (line 233) | def saveSettings(self) -> None: ... method onCloseButtonClicked (line 234) | def onCloseButtonClicked(self) -> None: ... method windowClosed (line 235) | def windowClosed(self) -> None: ... method resizeComboBoxContents (line 236) | def resizeComboBoxContents(self) -> None: ... method resizeEvent (line 237) | def resizeEvent(self, event) -> None: ... class MaterialIngestDialog (line 239) | class MaterialIngestDialog(widgets.QDialog): method __init__ (line 241) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method closeEvent (line 242) | def closeEvent(self, event): ... function showMaterialIngestDialog (line 244) | def showMaterialIngestDialog() -> None: ... function savePreferences (line 245) | def savePreferences() -> None: ... FILE: mari/stubs/mari-stubs/system/megascans.pyi class FlowingVerticalLayout (line 16) | class FlowingVerticalLayout(QtWidgets.QLayout): method __init__ (line 18) | def __init__(self, parent: Incomplete | None = ..., margin: int = ...,... method __del__ (line 19) | def __del__(self) -> None: ... method addItem (line 20) | def addItem(self, item) -> None: ... method count (line 21) | def count(self): ... method itemAt (line 22) | def itemAt(self, index): ... method takeAt (line 23) | def takeAt(self, index): ... method expandingDirections (line 24) | def expandingDirections(self): ... method hasHeightForWidth (line 25) | def hasHeightForWidth(self): ... method heightForWidth (line 26) | def heightForWidth(self, width): ... method setGeometry (line 27) | def setGeometry(self, rect) -> None: ... method sizeHint (line 28) | def sizeHint(self): ... method minimumSize (line 29) | def minimumSize(self): ... method doLayout (line 30) | def doLayout(self, rect, testOnly): ... class ThumbnailSourceModel (line 32) | class ThumbnailSourceModel(QtCore.QAbstractListModel): method __init__ (line 34) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method rowCount (line 35) | def rowCount(self, parent=...): ... method data (line 36) | def data(self, index, role=...): ... method addItem (line 37) | def addItem(self, megascanPath, previewPath): ... method clearAll (line 38) | def clearAll(self): ... method flags (line 39) | def flags(self, column): ... method mimeData (line 40) | def mimeData(self, Indices): ... method mimeTypes (line 41) | def mimeTypes(self): ... method dataAsVariantMap (line 42) | def dataAsVariantMap(self, Indices, AddUrl): ... class ThumbnailProxyModel (line 44) | class ThumbnailProxyModel(QtCore.QSortFilterProxyModel): method __init__ (line 47) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method setSearchFilters (line 48) | def setSearchFilters(self, filterList, category) -> None: ... method filterAcceptsRow (line 49) | def filterAcceptsRow(self, row, parent): ... class EnterAwareComboBox (line 51) | class EnterAwareComboBox(QtWidgets.QComboBox): method __init__ (line 54) | def __init__(self, parent: Incomplete | None = ...) -> None: ... method setCompleter (line 56) | def setCompleter(self, completer) -> None: ... method keyPressEvent (line 57) | def keyPressEvent(self, event): ... class HoverButton (line 59) | class HoverButton(QtWidgets.QPushButton): method __init__ (line 61) | def __init__(self, icon, text, parent: Incomplete | None = ...) -> Non... method enterEvent (line 62) | def enterEvent(self, event) -> None: ... method leaveEvent (line 63) | def leaveEvent(self, event) -> None: ... class MegaScansThumbnailDelegate (line 65) | class MegaScansThumbnailDelegate(QtWidgets.QStyledItemDelegate): method __init__ (line 66) | def __init__(self, parent: Incomplete | None = ..., *args) -> None: ... method paint (line 67) | def paint(self, painter, option, index) -> None: ... class MegascansViewerWidget (line 69) | class MegascansViewerWidget(QtWidgets.QWidget): method __init__ (line 91) | def __init__(self) -> None: ... method repoRootChanged (line 94) | def repoRootChanged(self) -> None: ... method chooseMegascansRepo (line 95) | def chooseMegascansRepo(self) -> None: ... method registerPreferences (line 96) | def registerPreferences(self) -> None: ... method loadPreferences (line 97) | def loadPreferences(self) -> None: ... method savePreferences (line 98) | def savePreferences(self) -> None: ... method onViewContextMenuRequested (line 99) | def onViewContextMenuRequested(self, Pos) -> None: ... method addScansToImageManager (line 100) | def addScansToImageManager(self) -> None: ... method adjustThumbnailSize (line 101) | def adjustThumbnailSize(self, value) -> None: ... method filterTypeChanged (line 102) | def filterTypeChanged(self) -> None: ... method completerActivated (line 103) | def completerActivated(self, Text) -> None: ... method filterActivated (line 104) | def filterActivated(self, Index) -> None: ... method filterEnterPressed (line 105) | def filterEnterPressed(self, Text) -> None: ... method filterCleared (line 106) | def filterCleared(self) -> None: ... method processFilter (line 107) | def processFilter(self, filterText) -> None: ... method hoveredOverButton (line 108) | def hoveredOverButton(self, inside) -> None: ... method filterList (line 109) | def filterList(self): ... method updateFilterList (line 110) | def updateFilterList(self) -> None: ... method filterButtonClicked (line 111) | def filterButtonClicked(self) -> None: ... method addThumbnailItem (line 112) | def addThumbnailItem(self, megascanPath, previewPath) -> None: ... method clearStatus (line 113) | def clearStatus(self) -> None: ... method updateStatus (line 114) | def updateStatus(self, Text) -> None: ... method parseMegascansRepo (line 115) | def parseMegascansRepo(self) -> None: ... method updateUI (line 116) | def updateUI(self) -> None: ... method elapsedTime (line 117) | def elapsedTime(self): ... method completeParse (line 118) | def completeParse(self) -> None: ... method triggerParser (line 119) | def triggerParser(self) -> None: ... FILE: mari/stubs/mari-stubs/system/megascans_parser.pyi class Megascan (line 8) | class Megascan: method __init__ (line 21) | def __init__(self) -> None: ... method isSupportedFormat (line 22) | def isSupportedFormat(self, format): ... method setName (line 23) | def setName(self, name) -> None: ... method setPreviewPath (line 24) | def setPreviewPath(self, previewPath) -> None: ... method setId (line 25) | def setId(self, id) -> None: ... method addCategory (line 26) | def addCategory(self, category) -> None: ... method addTag (line 27) | def addTag(self, tag) -> None: ... method addFilter (line 28) | def addFilter(self, tag) -> None: ... method setJsonPath (line 30) | def setJsonPath(self, value) -> None: ... method setImageCount (line 32) | def setImageCount(self, imageCount) -> None: ... method addToolTip (line 33) | def addToolTip(self, tooltip) -> None: ... method toolTipText (line 34) | def toolTipText(self): ... method setUrlList (line 35) | def setUrlList(self, urlList) -> None: ... method addToIdMap (line 36) | def addToIdMap(self, imageFileName) -> None: ... method addColorspace (line 37) | def addColorspace(self, imageFileName, bitDepth, colorspace) -> None: ... class MegascanFormatError (line 39) | class MegascanFormatError(Exception): method __init__ (line 40) | def __init__(self, message) -> None: ... class MegascanV1 (line 42) | class MegascanV1(Megascan): method __init__ (line 43) | def __init__(self) -> None: ... method fromJson (line 45) | def fromJson(cls, jsonPath, previewPath): ... class MegascanV2 (line 47) | class MegascanV2(Megascan): method __init__ (line 48) | def __init__(self) -> None: ... method fromJson (line 50) | def fromJson(cls, jsonPath, previewPath): ... class ThreadedParser (line 52) | class ThreadedParser(QtCore.QThread): method __init__ (line 59) | def __init__(self, root, parent: Incomplete | None = ...) -> None: ... method setRootPath (line 60) | def setRootPath(self, root) -> None: ... method stop (line 61) | def stop(self) -> None: ... method __del__ (line 62) | def __del__(self) -> None: ... method run (line 63) | def run(self) -> None: ... FILE: mari/stubs/mari-stubs/system/nuke_bridge.pyi class CancelledError (line 5) | class CancelledError(RuntimeError): ... class FromNuke (line 7) | class FromNuke: method __init__ (line 13) | def __init__(self, data_src) -> None: ... method startNewProject (line 14) | def startNewProject(self, channel_desc=..., meta_options=...): ... method getDefaultProjectorSize (line 16) | def getDefaultProjectorSize(image_data): ... method createProjectors (line 17) | def createProjectors(self) -> None: ... class ProjectionSettingsUI (line 19) | class ProjectionSettingsUI(widgets.QDialog): method __init__ (line 26) | def __init__(self, projector_data, geo_list) -> None: ... method addOption (line 27) | def addOption(self, label, widget, tooltip) -> None: ... method addSeparator (line 28) | def addSeparator(self): ... function errorMsg (line 30) | def errorMsg(message) -> None: ... function debugMsg (line 31) | def debugMsg(message) -> None: ... function setDebug (line 32) | def setDebug(enabled) -> None: ... function getNukeHostAndPort (line 33) | def getNukeHostAndPort(): ... function getMariHostAndPort (line 34) | def getMariHostAndPort(): ... function hostNamesMatch (line 35) | def hostNamesMatch(host1, host2): ... function setNukeHost (line 36) | def setNukeHost(name, port, pid) -> None: ... function disconnectFromNuke (line 37) | def disconnectFromNuke(notify_nuke) -> None: ... function sendToNuke (line 38) | def sendToNuke(nuke_cmd, ignore_failure: bool = ...): ... function setCurrentMariFor (line 39) | def setCurrentMariFor(nuke_pid, is_current, nuke_version: str = ...) -> ... function processResponse (line 40) | def processResponse(nuke_version) -> None: ... function getNumericVersion (line 41) | def getNumericVersion(version_str): ... function responseTimerExpired (line 42) | def responseTimerExpired() -> None: ... function checkAndCall (line 43) | def checkAndCall(function_call_text) -> None: ... function exportUVPatchTextures (line 44) | def exportUVPatchTextures(obj_chan_list, use_socket, output_path: Incomp... function exportAllChannelsUVPatchTextures (line 45) | def exportAllChannelsUVPatchTextures(use_socket, output_path: Incomplete... function exportCurrentChannelUVPatchTextures (line 46) | def exportCurrentChannelUVPatchTextures(use_socket, output_path: Incompl... function exportUnproject (line 47) | def exportUnproject(projector, output_path: Incomplete | None = ..., use... function getDataDir (line 48) | def getDataDir(): ... function loadImages (line 49) | def loadImages(img_list) -> None: ... function getCamData (line 50) | def getCamData(projector): ... function exportProjectors (line 51) | def exportProjectors(export_all: bool = ..., use_socket: bool = ...) -> ... function createProjectorForCurrentView (line 52) | def createProjectorForCurrentView(): ... function exportCurrentView (line 53) | def exportCurrentView(use_socket: bool = ...) -> None: ... function setLUT (line 54) | def setLUT(lut) -> None: ... function importNMBFile (line 55) | def importNMBFile() -> None: ... function exportUnprojectCurrent (line 56) | def exportUnprojectCurrent(use_socket, unique: bool = ...) -> None: ... function launchNuke (line 57) | def launchNuke(): ... function registerPreferences (line 58) | def registerPreferences() -> None: ... function loadPreferences (line 59) | def loadPreferences() -> None: ... function savePreferences (line 60) | def savePreferences() -> None: ... function updateAndSavePreferences (line 61) | def updateAndSavePreferences() -> None: ... function hostPreferenceChanged (line 62) | def hostPreferenceChanged() -> None: ... function portPreferenceChanged (line 63) | def portPreferenceChanged() -> None: ... function pathPreferenceChanged (line 64) | def pathPreferenceChanged() -> None: ... function flatLightingPreferenceChanged (line 65) | def flatLightingPreferenceChanged() -> None: ... function init (line 66) | def init(): ... FILE: mari/stubs/mari-stubs/system/snapshots.pyi function getAllChannels (line 8) | def getAllChannels(): ... function getAllUVChannels (line 9) | def getAllUVChannels(): ... function isPtexProject (line 10) | def isPtexProject(): ... function hasMultiChannelLayer (line 11) | def hasMultiChannelLayer(layer_stack): ... function getShotsInAllChannels (line 12) | def getShotsInAllChannels(): ... function snapshotChannels (line 13) | def snapshotChannels(channel_list, shot_name): ... function snapshotAllChannels (line 14) | def snapshotAllChannels(shot_name) -> None: ... function showNewSnapshotGUI (line 15) | def showNewSnapshotGUI(channels=..., title: str = ...) -> None: ... function checkForAutosnapshot (line 16) | def checkForAutosnapshot() -> None: ... function deleteAll (line 17) | def deleteAll(confirm: bool = ...) -> None: ... function disconnectNoLogs (line 18) | def disconnectNoLogs(signal, response) -> None: ... class SnapshotUI (line 20) | class SnapshotUI(widgets.QWidget): method __init__ (line 21) | def __init__(self) -> None: ... function clearOrBakePaint (line 23) | def clearOrBakePaint() -> None: ... FILE: mari/stubs/mari-stubs/system/textureSets.pyi class TextureSetsTabWidget (line 5) | class TextureSetsTabWidget(QtWidgets.QTabWidget): method __init__ (line 8) | def __init__(self) -> None: ... method repoRootChanged (line 9) | def repoRootChanged(self) -> None: ... function makePalette (line 11) | def makePalette() -> None: ... FILE: mari/stubs/mari-stubs/utils/misc.pyi class Dialog (line 6) | class Dialog(PySide2.QtWidgets.QDialog): method __init__ (line 7) | def __init__(self, parent: Incomplete | None = ..., flags=...) -> None... method hideEvent (line 8) | def hideEvent(self, event) -> None: ... method showEvent (line 10) | def showEvent(self, event) -> None: ... function messageAndLog (line 12) | def messageAndLog(text, title: str = ..., ui: bool = ..., console: bool ... function message (line 13) | def message(text, title: str = ..., buttons=..., icon=..., details: Inco... function messageResult (line 14) | def messageResult(text, title: str = ..., buttons=..., icon=..., details... function execDialog (line 15) | def execDialog(dlg): ... function reloadAll (line 16) | def reloadAll() -> None: ... function incName (line 17) | def incName(name): ... function getUniqueName (line 18) | def getUniqueName(name_base, name_list): ... function getOpenFileName (line 19) | def getOpenFileName(parent: Incomplete | None = ..., caption: str = ...,... function getSaveFileName (line 20) | def getSaveFileName(parent: Incomplete | None = ..., caption: str = ...,... function getExistingDirectory (line 21) | def getExistingDirectory(parent: Incomplete | None = ..., caption: str =... function setTimer (line 22) | def setTimer(interval_sec, func, single_shot: bool = ...): ... function createCustomDisplayWidget (line 23) | def createCustomDisplayWidget(display_name, width, height): ... function checkProjectAndGeoValidity (line 24) | def checkProjectAndGeoValidity(): ... function mariPlainIcon (line 25) | def mariPlainIcon(fileName): ... function mariDisabledIcon (line 26) | def mariDisabledIcon(fileName): ... function mariIcon (line 27) | def mariIcon(fileName): ... class PushButtonIconSetter (line 29) | class PushButtonIconSetter(core.QObject): method __init__ (line 33) | def __init__(self, pushButton, icon) -> None: ... method eventFilter (line 34) | def eventFilter(self, watched, event): ... class PushButton (line 36) | class PushButton(widgets.QPushButton): method __init__ (line 38) | def __init__(self, icon, text) -> None: ... function isFileReadable (line 40) | def isFileReadable(root, filename): ... FILE: mari/stubs/mari-stubs/utils/node_generator.pyi class Node (line 3) | class Node: method __init__ (line 7) | def __init__(self, name, shortName: Incomplete | None = ...) -> None: ... method setName (line 10) | def setName(self, name, shortName) -> None: ... method addInput (line 11) | def addInput(self, name, pos, defaultGlsl=...) -> None: ... method addAttrib (line 12) | def addAttrib(self, name, kind, minimum, maximum, default: Incomplete ... method setGlsl (line 13) | def setGlsl(self, code) -> None: ... method toString (line 14) | def toString(self): ... method save (line 15) | def save(self, name: Incomplete | None = ...): ... FILE: mari/stubs/mari-stubs/utils/ocio.pyi class MessageType (line 6) | class MessageType: function printMessage (line 12) | def printMessage(type, message) -> None: ... function configFileFilter (line 13) | def configFileFilter(): ... function lutFileFilter (line 14) | def lutFileFilter(): ... function registerFStopCenterChanged (line 57) | def registerFStopCenterChanged(function) -> None: ... function convertExposureToGain (line 58) | def convertExposureToGain(exposure): ... function convertGainToExposure (line 59) | def convertGainToExposure(gain): ... function convertExposureToFStop (line 60) | def convertExposureToFStop(exposure): ... function convertGainToFStop (line 61) | def convertGainToFStop(gain): ... function buildEmptyFilter (line 62) | def buildEmptyFilter(filter) -> None: ... function buildProcessorFilter (line 63) | def buildProcessorFilter(processor, filter, filter_cache_id, texture_cac... function loadConfig (line 64) | def loadConfig(path, display_message_box: bool = ..., message_box_title:... function defaultInputColorspace (line 65) | def defaultInputColorspace(config): ... function activeViewDisplays (line 66) | def activeViewDisplays(config): ... function defaultViewDisplay (line 67) | def defaultViewDisplay(config, scalar): ... function buildSavePath (line 68) | def buildSavePath(path): ... function buildLoadPath (line 69) | def buildLoadPath(path): ... FILE: mari/stubs/mari-stubs/utils/redirector.pyi class StreamRedirector (line 3) | class StreamRedirector: method __init__ (line 5) | def __init__(self, stream) -> None: ... method close (line 6) | def close(self) -> None: ... method stream (line 7) | def stream(self): ... class InputStreamRedirector (line 9) | class InputStreamRedirector(StreamRedirector): method readline (line 10) | def readline(self): ... FILE: mari/stubs/mari-stubs/utils/show_help.pyi class CustomHelp (line 3) | class CustomHelp: method __new__ (line 4) | def __new__(cls): ... method getURL (line 5) | def getURL(self, obj): ... method __call__ (line 6) | def __call__(self, obj: Incomplete | None = ...) -> None: ... function getAutoCompletionCandidates (line 8) | def getAutoCompletionCandidates(expression): ... FILE: mari/stubs/mari-stubs/utils/signal_helpers.pyi function connect (line 3) | def connect(signal, response): ... function disconnect (line 4) | def disconnect(signal, response): ... class SignalsBlocker (line 6) | class SignalsBlocker: method __init__ (line 7) | def __init__(self, widgets) -> None: ... method __enter__ (line 8) | def __enter__(self) -> None: ... method __exit__ (line 9) | def __exit__(self, exc_type, exc_val, exc_tb) -> None: ... class SignalBlocker (line 11) | class SignalBlocker(SignalsBlocker): method __init__ (line 12) | def __init__(self, widget) -> None: ... FILE: mari/stubs/mari-stubs/utils/ui.pyi function registerDropDataCallback (line 1) | def registerDropDataCallback(callback, mimeType, dropTarget) -> None: ... FILE: maya/stubgen_maya.py function _is_protected_module (line 81) | def _is_protected_module(name: str) -> bool: function _get_fixed_type_name (line 96) | def _get_fixed_type_name(name: str) -> str: function _fix_type_if_needed (line 124) | def _fix_type_if_needed(type_: str) -> str: function _strip_arguments (line 150) | def _strip_arguments(omit: set[str], sigs: Iterable[FunctionSig]) -> lis... function flag_has_mode (line 176) | def flag_has_mode(flag_info, mode): class MayaCmdAdvSignatureGenerator (line 180) | class MayaCmdAdvSignatureGenerator(AdvancedSignatureGenerator): class _ApiDocstringGenerator (line 278) | class _ApiDocstringGenerator(DocstringSignatureGenerator): method _get_fixed_arg_type_name (line 375) | def _get_fixed_arg_type_name( method _get_fixed_return_type_name (line 407) | def _get_fixed_return_type_name(self, type_name: str | None, context: ... method _get_fixed_signature (line 433) | def _get_fixed_signature(self, sig: FunctionSig, context: str) -> Func... method _get_matching_function_sigs (line 473) | def _get_matching_function_sigs( method _get_mismatched_function_sigs (line 545) | def _get_mismatched_function_sigs( method get_function_sig (line 602) | def get_function_sig( class MayaCmdSignatureGenerator (line 664) | class MayaCmdSignatureGenerator(SignatureGenerator): method __init__ (line 685) | def __init__(self): method get_function_sig (line 694) | def get_function_sig( method _mel_type_to_python_type (line 738) | def _mel_type_to_python_type(self, typ, as_result=False) -> str: method _get_arg_type (line 767) | def _get_arg_type( method _get_args (line 785) | def _get_args(self, cmd_flags) -> list[ArgSig]: method _get_edit_overloads (line 813) | def _get_edit_overloads(self, name: str, flags: _FlagsType) -> list[Fu... method _get_exists_overloads (line 854) | def _get_exists_overloads(self, name: str, flags) -> list[FunctionSig]: method _get_query_overloads (line 894) | def _get_query_overloads(self, name: str, flags: _FlagsType) -> list[F... class CmdsStubGenerator (line 927) | class CmdsStubGenerator(mypy.stubgenc.InspectionStubGenerator): method get_sig_generators (line 928) | def get_sig_generators(self) -> list[SignatureGenerator]: method get_obj_module (line 936) | def get_obj_module(self, obj: object) -> str | None: method is_function (line 943) | def is_function(self, obj: object) -> bool: method get_members (line 947) | def get_members(self, obj: object) -> list[tuple[str, Any]]: method set_defined_names (line 952) | def set_defined_names(self, defined_names: set[str]) -> None: class MelStubGenerator (line 958) | class MelStubGenerator(mypy.stubgenc.InspectionStubGenerator): method get_obj_module (line 959) | def get_obj_module(self, obj: object) -> str | None: method is_function (line 966) | def is_function(self, obj: object) -> bool: class APIStubGenerator (line 970) | class APIStubGenerator(mypy.stubgenc.InspectionStubGenerator): method __init__ (line 971) | def __init__( method _initialize_maya_imports (line 1001) | def _initialize_maya_imports(self) -> None: method _get_external_module_members (line 1030) | def _get_external_module_members( method get_sig_generators (line 1070) | def get_sig_generators(self) -> list[SignatureGenerator]: method process_inferred_sigs (line 1073) | def process_inferred_sigs(self, inferred: list[FunctionSig]) -> None: method strip_or_import (line 1100) | def strip_or_import(self, type_name: str) -> str: method get_obj_module (line 1107) | def get_obj_module(self, obj: object) -> str | None: method is_function (line 1116) | def is_function(self, obj: object) -> bool: method is_method (line 1120) | def is_method(self, class_info: ClassInfo, name: str, obj: object) -> ... method is_classmethod (line 1132) | def is_classmethod(self, class_info: ClassInfo, name: str, obj: object... class UFESignatureGenerator (line 1139) | class UFESignatureGenerator(AdvancedSignatureGenerator): method process_sig (line 1162) | def process_sig( class UFEStubGenerator (line 1170) | class UFEStubGenerator(mypy.stubgenc.InspectionStubGenerator): method get_sig_generators (line 1171) | def get_sig_generators(self) -> list[SignatureGenerator]: method get_members (line 1178) | def get_members(self, obj: object) -> list[tuple[str, Any]]: method set_defined_names (line 1187) | def set_defined_names(self, defined_names: set[str]) -> None: FILE: maya/stubs/maya-stubs/OpenMaya.pyi class _SwigNonDynamicMeta (line 4) | class _SwigNonDynamicMeta(type): class charPtr (line 7) | class charPtr: method __swig_destroy__ (line 11) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 13) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 15) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 17) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 19) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class intPtr (line 21) | class intPtr: method __swig_destroy__ (line 25) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 27) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 29) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 31) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 33) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class shortPtr (line 35) | class shortPtr: method __swig_destroy__ (line 39) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 41) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 43) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 45) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 47) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class floatPtr (line 49) | class floatPtr: method __swig_destroy__ (line 53) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 55) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 57) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 59) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 61) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class doublePtr (line 63) | class doublePtr: method __swig_destroy__ (line 67) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 69) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 71) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 73) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 75) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class boolPtr (line 77) | class boolPtr: method __swig_destroy__ (line 81) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 83) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 85) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 87) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 89) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uIntPtr (line 91) | class uIntPtr: method __swig_destroy__ (line 95) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 97) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 99) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 101) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 103) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uCharPtr (line 105) | class uCharPtr: method __swig_destroy__ (line 109) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 111) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 113) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 115) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 117) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array3dInt (line 119) | class array3dInt: method __swig_destroy__ (line 123) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 125) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 127) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 129) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array4dInt (line 131) | class array4dInt: method __swig_destroy__ (line 135) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 137) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 139) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 141) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array2dFloat (line 143) | class array2dFloat: method __swig_destroy__ (line 147) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 149) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 151) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 153) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array3dFloat (line 155) | class array3dFloat: method __swig_destroy__ (line 159) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 161) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 163) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 165) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array4dFloat (line 167) | class array4dFloat: method __swig_destroy__ (line 171) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 173) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 175) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 177) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array2dDouble (line 179) | class array2dDouble: method __swig_destroy__ (line 183) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 185) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 187) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 189) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array3dDouble (line 191) | class array3dDouble: method __swig_destroy__ (line 195) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 197) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 199) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 201) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class array4dDouble (line 203) | class array4dDouble: method __swig_destroy__ (line 207) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 209) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 211) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getptr (line 213) | def getptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFn (line 215) | class MFn: method __swig_destroy__ (line 1435) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MSpace (line 1445) | class MSpace: method __swig_destroy__ (line 1456) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MObject (line 1458) | class MObject: method __swig_destroy__ (line 1463) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hasFn (line 1465) | def hasFn(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isNull (line 1467) | def isNull(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method apiType (line 1469) | def apiType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method apiTypeStr (line 1471) | def apiTypeStr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method __eq__ (line 1473) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 1475) | def __ne__(cls, other: object) -> bool: ... method assign (line 1477) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MAngle (line 1480) | class MAngle: method __swig_destroy__ (line 1490) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 1492) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method unit (line 1494) | def unit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method value (line 1496) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setUnit (line 1498) | def setUnit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setValue (line 1500) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asUnits (line 1502) | def asUnits(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asRadians (line 1504) | def asRadians(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asDegrees (line 1506) | def asDegrees(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asAngMinutes (line 1508) | def asAngMinutes(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asAngSeconds (line 1510) | def asAngSeconds(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method uiUnit (line 1512) | def uiUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUIUnit (line 1514) | def setUIUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method internalUnit (line 1516) | def internalUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method internalToUI (line 1518) | def internalToUI(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uiToInternal (line 1520) | def uiToInternal(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 1522) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setInternalUnit (line 1524) | def setInternalUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomp... class MArgParser (line 1526) | class MArgParser: method __swig_destroy__ (line 1530) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 1532) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isFlagSet (line 1534) | def isFlagSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isEdit (line 1536) | def isEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isQuery (line 1538) | def isQuery(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method numberOfFlagsUsed (line 1540) | def numberOfFlagsUsed(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numberOfFlagUses (line 1542) | def numberOfFlagUses(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method flagArgumentBool (line 1544) | def flagArgumentBool(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method flagArgumentInt (line 1546) | def flagArgumentInt(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method flagArgumentDouble (line 1548) | def flagArgumentDouble(cls, *args: Incomplete, **kwargs: Incomplete) -... method flagArgumentString (line 1550) | def flagArgumentString(cls, *args: Incomplete, **kwargs: Incomplete) -... method flagArgumentMDistance (line 1552) | def flagArgumentMDistance(cls, *args: Incomplete, **kwargs: Incomplete... method flagArgumentMAngle (line 1554) | def flagArgumentMAngle(cls, *args: Incomplete, **kwargs: Incomplete) -... method flagArgumentMTime (line 1556) | def flagArgumentMTime(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getFlagArgumentPosition (line 1558) | def getFlagArgumentPosition(cls, *args: Incomplete, **kwargs: Incomple... method getFlagArgumentList (line 1560) | def getFlagArgumentList(cls, *args: Incomplete, **kwargs: Incomplete) ... method commandArgumentBool (line 1562) | def commandArgumentBool(cls, *args: Incomplete, **kwargs: Incomplete) ... method commandArgumentInt (line 1564) | def commandArgumentInt(cls, *args: Incomplete, **kwargs: Incomplete) -... method commandArgumentDouble (line 1566) | def commandArgumentDouble(cls, *args: Incomplete, **kwargs: Incomplete... method commandArgumentString (line 1568) | def commandArgumentString(cls, *args: Incomplete, **kwargs: Incomplete... method commandArgumentMDistance (line 1570) | def commandArgumentMDistance(cls, *args: Incomplete, **kwargs: Incompl... method commandArgumentMAngle (line 1572) | def commandArgumentMAngle(cls, *args: Incomplete, **kwargs: Incomplete... method commandArgumentMTime (line 1574) | def commandArgumentMTime(cls, *args: Incomplete, **kwargs: Incomplete)... method getObjects (line 1576) | def getObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 1578) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MArgDatabase (line 1580) | class MArgDatabase(MArgParser): method assign (line 1584) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 1586) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getFlagArgument (line 1588) | def getFlagArgument(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getCommandArgument (line 1590) | def getCommandArgument(cls, *args: Incomplete, **kwargs: Incomplete) -... method getObjects (line 1592) | def getObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 1594) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MArgList (line 1596) | class MArgList: method __swig_destroy__ (line 1601) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method length (line 1603) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asBool (line 1605) | def asBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asInt (line 1607) | def asInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method asDouble (line 1609) | def asDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asString (line 1611) | def asString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asDistance (line 1613) | def asDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asAngle (line 1615) | def asAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asTime (line 1617) | def asTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asVector (line 1619) | def asVector(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asPoint (line 1621) | def asPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asMatrix (line 1623) | def asMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asIntArray (line 1625) | def asIntArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asDoubleArray (line 1627) | def asDoubleArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asStringArray (line 1629) | def asStringArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method assign (line 1631) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method flagIndex (line 1633) | def flagIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method addArg (line 1635) | def addArg(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 1637) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MArrayDataBuilder (line 1639) | class MArrayDataBuilder: method addLast (line 1643) | def addLast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method addElement (line 1645) | def addElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addLastArray (line 1647) | def addLastArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method addElementArray (line 1649) | def addElementArray(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method removeElement (line 1651) | def removeElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method elementCount (line 1653) | def elementCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method growArray (line 1655) | def growArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setGrowSize (line 1657) | def setGrowSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method assign (line 1659) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 1661) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1663) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MArrayDataHandle (line 1665) | class MArrayDataHandle: method inputValue (line 1669) | def inputValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method outputValue (line 1671) | def outputValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method inputArrayValue (line 1673) | def inputArrayValue(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method outputArrayValue (line 1675) | def outputArrayValue(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method next (line 1677) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method elementCount (line 1679) | def elementCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method elementIndex (line 1681) | def elementIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method jumpToElement (line 1683) | def jumpToElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method jumpToArrayElement (line 1685) | def jumpToArrayElement(cls, *args: Incomplete, **kwargs: Incomplete) -... method setClean (line 1687) | def setClean(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setAllClean (line 1689) | def setAllClean(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method builder (line 1691) | def builder(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 1693) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method assign (line 1695) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 1697) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1699) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MAttributeIndex (line 1701) | class MAttributeIndex: method __swig_destroy__ (line 1707) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1709) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method hasRange (line 1711) | def hasRange(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method hasValidRange (line 1713) | def hasValidRange(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method hasLowerBound (line 1715) | def hasLowerBound(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method hasUpperBound (line 1717) | def hasUpperBound(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getLower (line 1719) | def getLower(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getUpper (line 1721) | def getUpper(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isBounded (line 1723) | def isBounded(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getValue (line 1725) | def getValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setType (line 1727) | def setType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setValue (line 1729) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setLower (line 1731) | def setLower(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setUpper (line 1733) | def setUpper(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method assign (line 1735) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 1737) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 1739) | def __ne__(cls, other: object) -> bool: ... method className (line 1741) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAttributeSpecArray (line 1743) | class MAttributeSpecArray: method __swig_destroy__ (line 1747) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 1749) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 1751) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 1753) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 1755) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 1757) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 1759) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 1761) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 1763) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 1765) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 1767) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 1769) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 1771) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 1773) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAttributeSpec (line 1775) | class MAttributeSpec: method __swig_destroy__ (line 1779) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method name (line 1781) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method dimensions (line 1783) | def dimensions(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setName (line 1785) | def setName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setDimensions (line 1787) | def setDimensions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method assign (line 1789) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __getitem__ (line 1791) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __eq__ (line 1793) | def __eq__(cls, other: object) -> bool: ... method className (line 1795) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAttributePattern (line 1797) | class MAttributePattern: method assign (line 1801) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 1803) | def __eq__(cls, other: object) -> bool: ... method __swig_destroy__ (line 1805) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method findPattern (line 1807) | def findPattern(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method attrPatternCount (line 1809) | def attrPatternCount(*args: Incomplete, **kwargs: Incomplete) -> Incom... method attrPattern (line 1811) | def attrPattern(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method name (line 1813) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method rootAttrCount (line 1815) | def rootAttrCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rootAttr (line 1817) | def rootAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method removeRootAttr (line 1819) | def removeRootAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addRootAttr (line 1821) | def addRootAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 1823) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAttributePatternArray (line 1825) | class MAttributePatternArray: method __swig_destroy__ (line 1829) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 1831) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 1833) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 1835) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 1837) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 1839) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 1841) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 1843) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 1845) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 1847) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 1849) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 1851) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 1853) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 1855) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MBoundingBox (line 1857) | class MBoundingBox: method __swig_destroy__ (line 1861) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method clear (line 1863) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method transformUsing (line 1865) | def transformUsing(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method expand (line 1867) | def expand(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method contains (line 1869) | def contains(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method intersects (line 1871) | def intersects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method width (line 1873) | def width(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method height (line 1875) | def height(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method depth (line 1877) | def depth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method center (line 1879) | def center(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method min (line 1881) | def min(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method max (line 1883) | def max(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method assign (line 1885) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MCacheConfigRuleRegistry (line 1887) | class MCacheConfigRuleRegistry: method registerFilter (line 1891) | def registerFilter(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method unregisterFilter (line 1893) | def unregisterFilter(*args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 1895) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setRegisteringCallableScript (line 1897) | def setRegisteringCallableScript(*args: Incomplete, **kwargs: Incomple... method registeringCallableScript (line 1899) | def registeringCallableScript(*args: Incomplete, **kwargs: Incomplete)... class MCacheFormatDescription (line 1901) | class MCacheFormatDescription: method setDistribution (line 1917) | def setDistribution(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setTimePerFrame (line 1919) | def setTimePerFrame(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method addDescriptionInfo (line 1921) | def addDescriptionInfo(cls, *args: Incomplete, **kwargs: Incomplete) -... method addChannel (line 1923) | def addChannel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getDistribution (line 1925) | def getDistribution(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getTimePerFrame (line 1927) | def getTimePerFrame(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getStartAndEndTimes (line 1929) | def getStartAndEndTimes(cls, *args: Incomplete, **kwargs: Incomplete) ... method getDescriptionInfo (line 1931) | def getDescriptionInfo(cls, *args: Incomplete, **kwargs: Incomplete) -... method getNumChannels (line 1933) | def getNumChannels(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getChannelName (line 1935) | def getChannelName(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getChannelInterpretation (line 1937) | def getChannelInterpretation(cls, *args: Incomplete, **kwargs: Incompl... method getChannelDataType (line 1939) | def getChannelDataType(cls, *args: Incomplete, **kwargs: Incomplete) -... method getChannelSamplingType (line 1941) | def getChannelSamplingType(cls, *args: Incomplete, **kwargs: Incomplet... method getChannelSamplingRate (line 1943) | def getChannelSamplingRate(cls, *args: Incomplete, **kwargs: Incomplet... method getChannelStartTime (line 1945) | def getChannelStartTime(cls, *args: Incomplete, **kwargs: Incomplete) ... method getChannelEndTime (line 1947) | def getChannelEndTime(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 1949) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MCacheSchemaAttributesIteratorSentinel (line 1951) | class MCacheSchemaAttributesIteratorSentinel: method __swig_destroy__ (line 1955) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MCacheSchemaAttributesIterator (line 1957) | class MCacheSchemaAttributesIterator: method assign (line 1961) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 1963) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 1965) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method done (line 1967) | def done(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method advance (line 1969) | def advance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MCacheSchemaAttributesRange (line 1971) | class MCacheSchemaAttributesRange: method begin (line 1975) | def begin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method end (line 1977) | def end(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MCacheSchema (line 1979) | class MCacheSchema: method attributes (line 1983) | def attributes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method reset (line 1985) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method add (line 1987) | def add(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MCallbackIdArray (line 1989) | class MCallbackIdArray: method __swig_destroy__ (line 1993) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 1995) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 1997) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 1999) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 2001) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 2003) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 2005) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 2007) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 2009) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 2011) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 2013) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 2015) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 2017) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 2019) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MMessageNode (line 2021) | class MMessageNode: method __swig_destroy__ (line 2032) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MMessage (line 2034) | class MMessage: method removeCallback (line 2041) | def removeCallback(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method removeCallbacks (line 2043) | def removeCallbacks(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method currentCallbackId (line 2045) | def currentCallbackId(*args: Incomplete, **kwargs: Incomplete) -> Inco... method nodeCallbacks (line 2047) | def nodeCallbacks(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setRegisteringCallableScript (line 2049) | def setRegisteringCallableScript(*args: Incomplete, **kwargs: Incomple... method registeringCallableScript (line 2051) | def registeringCallableScript(*args: Incomplete, **kwargs: Incomplete)... method stopRegisteringCallableScript (line 2053) | def stopRegisteringCallableScript(*args: Incomplete, **kwargs: Incompl... method setCallableInfo (line 2055) | def setCallableInfo(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method getCallableInfo (line 2057) | def getCallableInfo(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method stealCallableInfo (line 2059) | def stealCallableInfo(*args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 2061) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 2063) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MCloudWebService (line 2065) | class MCloudWebService: method login (line 2069) | def login(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method logout (line 2071) | def logout(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isLoggedIn (line 2073) | def isLoggedIn(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isLoginValid (line 2075) | def isLoginValid(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getLoginUserName (line 2077) | def getLoginUserName(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getOxygenID (line 2079) | def getOxygenID(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUserEmail (line 2081) | def getUserEmail(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method initializeWebServices (line 2083) | def initializeWebServices(*args: Incomplete, **kwargs: Incomplete) -> ... method className (line 2085) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method removeCallback (line 2087) | def removeCallback(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method getOAuth2AccessToken (line 2089) | def getOAuth2AccessToken(*args: Incomplete, **kwargs: Incomplete) -> I... method setCallback (line 2091) | def setCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MColorArray (line 2093) | class MColorArray: method __swig_destroy__ (line 2097) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 2099) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 2101) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 2103) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 2105) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 2107) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 2109) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 2111) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 2113) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 2115) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 2117) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 2119) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 2121) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 2123) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 2125) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MColor (line 2127) | class MColor: method __swig_destroy__ (line 2144) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 2146) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __call__ (line 2148) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __getitem__ (line 2150) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __imul__ (line 2152) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 2154) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 2156) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __add__ (line 2158) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __neg__ (line 2160) | def __neg__(cls) -> Incomplete: ... method __sub__ (line 2162) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 2164) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 2166) | def __ne__(cls, other: object) -> bool: ... method get (line 2168) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 2170) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MCommandMessage (line 2172) | class MCommandMessage(MMessage): method addCommandCallback (line 2185) | def addCommandCallback(*args: Incomplete, **kwargs: Incomplete) -> Inc... method addCommandOutputCallback (line 2187) | def addCommandOutputCallback(*args: Incomplete, **kwargs: Incomplete) ... method addCommandOutputFilterCallback (line 2189) | def addCommandOutputFilterCallback(*args: Incomplete, **kwargs: Incomp... method className (line 2191) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method addProcCallback (line 2193) | def addProcCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method __swig_destroy__ (line 2195) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MCommandResult (line 2197) | class MCommandResult: method __swig_destroy__ (line 2214) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method resultType (line 2216) | def resultType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method stringResult (line 2218) | def stringResult(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getResult (line 2220) | def getResult(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 2222) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MComputation (line 2224) | class MComputation: method __swig_destroy__ (line 2228) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method beginComputation (line 2230) | def beginComputation(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isInterruptRequested (line 2232) | def isInterruptRequested(cls, *args: Incomplete, **kwargs: Incomplete)... method endComputation (line 2234) | def endComputation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setProgressRange (line 2236) | def setProgressRange(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method progressMin (line 2238) | def progressMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method progressMax (line 2240) | def progressMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setProgress (line 2242) | def setProgress(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method progress (line 2244) | def progress(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setProgressStatus (line 2246) | def setProgressStatus(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 2248) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MConditionMessage (line 2250) | class MConditionMessage(MMessage): method addConditionCallback (line 2254) | def addConditionCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method getConditionNames (line 2256) | def getConditionNames(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getConditionState (line 2258) | def getConditionState(*args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 2260) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 2262) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MContainerMessage (line 2264) | class MContainerMessage(MMessage): method addPublishAttrCallback (line 2268) | def addPublishAttrCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addBoundAttrCallback (line 2270) | def addBoundAttrCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method className (line 2272) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 2274) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MCurveAttribute (line 2276) | class MCurveAttribute: method assign (line 2280) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 2282) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getNumEntries (line 2284) | def getNumEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getEntries (line 2286) | def getEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addEntries (line 2288) | def addEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method deleteEntries (line 2290) | def deleteEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setValueAtIndex (line 2292) | def setValueAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setPositionAtIndex (line 2294) | def setPositionAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -... method getValuesAtPositions (line 2296) | def getValuesAtPositions(cls, *args: Incomplete, **kwargs: Incomplete)... method getValueAtPosition (line 2298) | def getValueAtPosition(cls, *args: Incomplete, **kwargs: Incomplete) -... method sampleValueCurve (line 2300) | def sampleValueCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hasIndex (line 2302) | def hasIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method sort (line 2304) | def sort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method pack (line 2306) | def pack(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setCurve (line 2308) | def setCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method createCurveAttr (line 2310) | def createCurveAttr(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method createCurve (line 2312) | def createCurve(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 2314) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDagMessage (line 2316) | class MDagMessage(MMessage): method addParentAddedCallback (line 2367) | def addParentAddedCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addParentAddedDagPathCallback (line 2369) | def addParentAddedDagPathCallback(*args: Incomplete, **kwargs: Incompl... method addParentRemovedCallback (line 2371) | def addParentRemovedCallback(*args: Incomplete, **kwargs: Incomplete) ... method addParentRemovedDagPathCallback (line 2373) | def addParentRemovedDagPathCallback(*args: Incomplete, **kwargs: Incom... method addChildAddedCallback (line 2375) | def addChildAddedCallback(*args: Incomplete, **kwargs: Incomplete) -> ... method addChildAddedDagPathCallback (line 2377) | def addChildAddedDagPathCallback(*args: Incomplete, **kwargs: Incomple... method addChildRemovedCallback (line 2379) | def addChildRemovedCallback(*args: Incomplete, **kwargs: Incomplete) -... method addChildRemovedDagPathCallback (line 2381) | def addChildRemovedDagPathCallback(*args: Incomplete, **kwargs: Incomp... method addChildReorderedCallback (line 2383) | def addChildReorderedCallback(*args: Incomplete, **kwargs: Incomplete)... method addChildReorderedDagPathCallback (line 2385) | def addChildReorderedDagPathCallback(*args: Incomplete, **kwargs: Inco... method addDagCallback (line 2387) | def addDagCallback(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method addDagDagPathCallback (line 2389) | def addDagDagPathCallback(*args: Incomplete, **kwargs: Incomplete) -> ... method addAllDagChangesCallback (line 2391) | def addAllDagChangesCallback(*args: Incomplete, **kwargs: Incomplete) ... method addAllDagChangesDagPathCallback (line 2393) | def addAllDagChangesDagPathCallback(*args: Incomplete, **kwargs: Incom... method addInstanceAddedCallback (line 2395) | def addInstanceAddedCallback(*args: Incomplete, **kwargs: Incomplete) ... method addInstanceAddedDagPathCallback (line 2397) | def addInstanceAddedDagPathCallback(*args: Incomplete, **kwargs: Incom... method addInstanceRemovedCallback (line 2399) | def addInstanceRemovedCallback(*args: Incomplete, **kwargs: Incomplete... method addInstanceRemovedDagPathCallback (line 2401) | def addInstanceRemovedDagPathCallback(*args: Incomplete, **kwargs: Inc... method addMatrixModifiedCallback (line 2403) | def addMatrixModifiedCallback(*args: Incomplete, **kwargs: Incomplete)... method addWorldMatrixModifiedCallback (line 2405) | def addWorldMatrixModifiedCallback(*args: Incomplete, **kwargs: Incomp... method className (line 2407) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 2409) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MMeshIntersector (line 2411) | class MMeshIntersector: method __swig_destroy__ (line 2415) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method create (line 2417) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isCreated (line 2419) | def isCreated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getClosestPoint (line 2421) | def getClosestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 2423) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPointOnMesh (line 2425) | class MPointOnMesh: method getPoint (line 2429) | def getPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getNormal (line 2431) | def getNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getBarycentricCoords (line 2433) | def getBarycentricCoords(cls, *args: Incomplete, **kwargs: Incomplete)... method faceIndex (line 2435) | def faceIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method triangleIndex (line 2437) | def triangleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method __swig_destroy__ (line 2439) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MMeshSmoothOptions (line 2441) | class MMeshSmoothOptions: method __swig_destroy__ (line 2465) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setDivisions (line 2467) | def setDivisions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method divisions (line 2469) | def divisions(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setSmoothness (line 2471) | def setSmoothness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method smoothness (line 2473) | def smoothness(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setSmoothUVs (line 2475) | def setSmoothUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method smoothUVs (line 2477) | def smoothUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setPropEdgeHardness (line 2479) | def setPropEdgeHardness(cls, *args: Incomplete, **kwargs: Incomplete) ... method propEdgeHardness (line 2481) | def propEdgeHardness(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setKeepBorderEdge (line 2483) | def setKeepBorderEdge(cls, *args: Incomplete, **kwargs: Incomplete) ->... method keepBorderEdge (line 2485) | def keepBorderEdge(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setKeepHardEdge (line 2487) | def setKeepHardEdge(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method keepHardEdge (line 2489) | def keepHardEdge(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setBoundaryRule (line 2491) | def setBoundaryRule(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method boundaryRule (line 2493) | def boundaryRule(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setOpenSubdivVertexBoundary (line 2495) | def setOpenSubdivVertexBoundary(cls, *args: Incomplete, **kwargs: Inco... method openSubdivVertexBoundary (line 2497) | def openSubdivVertexBoundary(cls, *args: Incomplete, **kwargs: Incompl... method setOpenSubdivFaceVaryingBoundary (line 2499) | def setOpenSubdivFaceVaryingBoundary(cls, *args: Incomplete, **kwargs:... method openSubdivFaceVaryingBoundary (line 2501) | def openSubdivFaceVaryingBoundary(cls, *args: Incomplete, **kwargs: In... method setOpenSubdivSmoothTriangles (line 2503) | def setOpenSubdivSmoothTriangles(cls, *args: Incomplete, **kwargs: Inc... method openSubdivSmoothTriangles (line 2505) | def openSubdivSmoothTriangles(cls, *args: Incomplete, **kwargs: Incomp... method setOpenSubdivCreaseMethod (line 2507) | def setOpenSubdivCreaseMethod(cls, *args: Incomplete, **kwargs: Incomp... method openSubdivCreaseMethod (line 2509) | def openSubdivCreaseMethod(cls, *args: Incomplete, **kwargs: Incomplet... method setSubdivisionType (line 2511) | def setSubdivisionType(cls, *args: Incomplete, **kwargs: Incomplete) -... method subdivisionType (line 2513) | def subdivisionType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 2515) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDGModifier (line 2517) | class MDGModifier: method __swig_destroy__ (line 2521) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method createNode (line 2523) | def createNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method deleteNode (line 2525) | def deleteNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method renameNode (line 2527) | def renameNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setNodeLockState (line 2529) | def setNodeLockState(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method connect (line 2531) | def connect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method disconnect (line 2533) | def disconnect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method renameAttribute (line 2535) | def renameAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method addExtensionAttribute (line 2537) | def addExtensionAttribute(cls, *args: Incomplete, **kwargs: Incomplete... method removeExtensionAttribute (line 2539) | def removeExtensionAttribute(cls, *args: Incomplete, **kwargs: Incompl... method removeExtensionAttributeIfUnset (line 2541) | def removeExtensionAttributeIfUnset(cls, *args: Incomplete, **kwargs: ... method linkExtensionAttributeToPlugin (line 2543) | def linkExtensionAttributeToPlugin(cls, *args: Incomplete, **kwargs: I... method unlinkExtensionAttributeFromPlugin (line 2545) | def unlinkExtensionAttributeFromPlugin(cls, *args: Incomplete, **kwarg... method commandToExecute (line 2547) | def commandToExecute(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method newPlugValue (line 2549) | def newPlugValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method newPlugValueBool (line 2551) | def newPlugValueBool(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method newPlugValueChar (line 2553) | def newPlugValueChar(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method newPlugValueDouble (line 2555) | def newPlugValueDouble(cls, *args: Incomplete, **kwargs: Incomplete) -... method newPlugValueFloat (line 2557) | def newPlugValueFloat(cls, *args: Incomplete, **kwargs: Incomplete) ->... method newPlugValueInt (line 2559) | def newPlugValueInt(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method newPlugValueInt64 (line 2561) | def newPlugValueInt64(cls, *args: Incomplete, **kwargs: Incomplete) ->... method newPlugValueMAngle (line 2563) | def newPlugValueMAngle(cls, *args: Incomplete, **kwargs: Incomplete) -... method newPlugValueMDistance (line 2565) | def newPlugValueMDistance(cls, *args: Incomplete, **kwargs: Incomplete... method newPlugValueMTime (line 2567) | def newPlugValueMTime(cls, *args: Incomplete, **kwargs: Incomplete) ->... method newPlugValueShort (line 2569) | def newPlugValueShort(cls, *args: Incomplete, **kwargs: Incomplete) ->... method newPlugValueString (line 2571) | def newPlugValueString(cls, *args: Incomplete, **kwargs: Incomplete) -... method removeMultiInstance (line 2573) | def removeMultiInstance(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMetadata (line 2575) | def setMetadata(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deleteMetadata (line 2577) | def deleteMetadata(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method doIt (line 2579) | def doIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method undoIt (line 2581) | def undoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 2583) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method addAttribute (line 2585) | def addAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method removeAttribute (line 2587) | def removeAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method pythonCommandToExecute (line 2589) | def pythonCommandToExecute(cls, *args: Incomplete, **kwargs: Incomplet... class MDagModifier (line 2591) | class MDagModifier(MDGModifier): method __swig_destroy__ (line 2595) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method createNode (line 2597) | def createNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method reparentNode (line 2599) | def reparentNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 2601) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDagPathArray (line 2603) | class MDagPathArray: method __swig_destroy__ (line 2607) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 2609) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 2611) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 2613) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 2615) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 2617) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 2619) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 2621) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 2623) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 2625) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 2627) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 2629) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 2631) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 2633) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDAGDrawOverrideInfo (line 2635) | class MDAGDrawOverrideInfo: method __swig_destroy__ (line 2651) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MDagPath (line 2653) | class MDagPath: method __swig_destroy__ (line 2657) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getAllPathsTo (line 2659) | def getAllPathsTo(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method matchTransform (line 2661) | def matchTransform(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method getAllPathsBelow (line 2663) | def getAllPathsBelow(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hasFn (line 2665) | def hasFn(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method apiType (line 2667) | def apiType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isValid (line 2669) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method node (line 2671) | def node(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method transform (line 2673) | def transform(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 2675) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method extendToShape (line 2677) | def extendToShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method extendToShapeDirectlyBelow (line 2679) | def extendToShapeDirectlyBelow(cls, *args: Incomplete, **kwargs: Incom... method numberOfShapesDirectlyBelow (line 2681) | def numberOfShapesDirectlyBelow(cls, *args: Incomplete, **kwargs: Inco... method push (line 2683) | def push(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method pop (line 2685) | def pop(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method childCount (line 2687) | def childCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method child (line 2689) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method inclusiveMatrix (line 2691) | def inclusiveMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method exclusiveMatrix (line 2693) | def exclusiveMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method inclusiveMatrixInverse (line 2695) | def inclusiveMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplet... method exclusiveMatrixInverse (line 2697) | def exclusiveMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplet... method assign (line 2699) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 2701) | def __eq__(cls, other: object) -> bool: ... method set (line 2703) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method pathCount (line 2705) | def pathCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getPath (line 2707) | def getPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method fullPathName (line 2709) | def fullPathName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method partialPathName (line 2711) | def partialPathName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isInstanced (line 2713) | def isInstanced(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method instanceNumber (line 2715) | def instanceNumber(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isVisible (line 2717) | def isVisible(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isTemplated (line 2719) | def isTemplated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getDrawOverrideInfo (line 2721) | def getDrawOverrideInfo(cls, *args: Incomplete, **kwargs: Incomplete) ... method getDisplayStatus (line 2723) | def getDisplayStatus(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 2725) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getAPathTo (line 2727) | def getAPathTo(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MDataBlock (line 2729) | class MDataBlock: method __swig_destroy__ (line 2733) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method inputValue (line 2735) | def inputValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method outputValue (line 2737) | def outputValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method inputArrayValue (line 2739) | def inputArrayValue(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method outputArrayValue (line 2741) | def outputArrayValue(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setClean (line 2743) | def setClean(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isClean (line 2745) | def isClean(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method context (line 2747) | def context(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setContext (line 2749) | def setContext(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 2751) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDGContext (line 2753) | class MDGContext: method __swig_destroy__ (line 2758) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isNormal (line 2760) | def isNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getTime (line 2762) | def getTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method assign (line 2764) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 2766) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method current (line 2768) | def current(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isCurrent (line 2770) | def isCurrent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method makeCurrent (line 2772) | def makeCurrent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MDGContextGuard (line 2774) | class MDGContextGuard: method __swig_destroy__ (line 2778) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MDGMessage (line 2781) | class MDGMessage(MMessage): method addTimeChangeCallback (line 2785) | def addTimeChangeCallback(*args: Incomplete, **kwargs: Incomplete) -> ... method addDelayedTimeChangeCallback (line 2787) | def addDelayedTimeChangeCallback(*args: Incomplete, **kwargs: Incomple... method addDelayedTimeChangeRunupCallback (line 2789) | def addDelayedTimeChangeRunupCallback(*args: Incomplete, **kwargs: Inc... method addForceUpdateCallback (line 2791) | def addForceUpdateCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addNodeAddedCallback (line 2793) | def addNodeAddedCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method addNodeRemovedCallback (line 2795) | def addNodeRemovedCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addConnectionCallback (line 2797) | def addConnectionCallback(*args: Incomplete, **kwargs: Incomplete) -> ... method addPreConnectionCallback (line 2799) | def addPreConnectionCallback(*args: Incomplete, **kwargs: Incomplete) ... method addNodeChangeUuidCheckCallback (line 2801) | def addNodeChangeUuidCheckCallback(*args: Incomplete, **kwargs: Incomp... method __swig_destroy__ (line 2803) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MCameraSetMessage (line 2805) | class MCameraSetMessage(MMessage): method addCameraLayerCallback (line 2809) | def addCameraLayerCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addCameraChangedCallback (line 2811) | def addCameraChangedCallback(*args: Incomplete, **kwargs: Incomplete) ... method className (line 2813) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 2815) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MCameraMessage (line 2817) | class MCameraMessage(MMessage): method addBeginManipulationCallback (line 2821) | def addBeginManipulationCallback(*args: Incomplete, **kwargs: Incomple... method addEndManipulationCallback (line 2823) | def addEndManipulationCallback(*args: Incomplete, **kwargs: Incomplete... method className (line 2825) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 2827) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MDistance (line 2829) | class MDistance: method __swig_destroy__ (line 2843) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 2845) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method unit (line 2847) | def unit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method value (line 2849) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setUnit (line 2851) | def setUnit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setValue (line 2853) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asUnits (line 2855) | def asUnits(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asInches (line 2857) | def asInches(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asFeet (line 2859) | def asFeet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asYards (line 2861) | def asYards(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asMiles (line 2863) | def asMiles(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asMillimeters (line 2865) | def asMillimeters(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asCentimeters (line 2867) | def asCentimeters(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asKilometers (line 2869) | def asKilometers(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asMeters (line 2871) | def asMeters(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method uiUnit (line 2873) | def uiUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUIUnit (line 2875) | def setUIUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method internalUnit (line 2877) | def internalUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method internalToUI (line 2879) | def internalToUI(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uiToInternal (line 2881) | def uiToInternal(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 2883) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setInternalUnit (line 2885) | def setInternalUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomp... class MDoubleArray (line 2887) | class MDoubleArray: method __swig_destroy__ (line 2891) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 2893) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 2895) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 2897) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 2899) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 2901) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 2903) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 2905) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 2907) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 2909) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 2911) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 2913) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 2915) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 2917) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 2919) | def __len__(cls) -> int: ... method __setitem__ (line 2921) | def __setitem__(cls, index: Incomplete, object: Incomplete) -> None: ... method __getitem__ (line 2923) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __delitem__ (line 2925) | def __delitem__(cls, other: Incomplete) -> None: ... method __eq__ (line 2927) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 2929) | def __ne__(cls, other: object) -> bool: ... method __add__ (line 2931) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __radd__ (line 2933) | def __radd__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 2935) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... class MEulerRotation (line 2938) | class MEulerRotation: method __swig_destroy__ (line 2953) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 2955) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setValue (line 2957) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asQuaternion (line 2959) | def asQuaternion(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asMatrix (line 2961) | def asMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asVector (line 2963) | def asVector(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __add__ (line 2965) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 2967) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 2969) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 2971) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __neg__ (line 2973) | def __neg__(cls) -> Incomplete: ... method __mul__ (line 2975) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 2977) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 2979) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 2981) | def __ne__(cls, other: object) -> bool: ... method isEquivalent (line 2983) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isZero (line 2985) | def isZero(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method incrementalRotateBy (line 2987) | def incrementalRotateBy(cls, *args: Incomplete, **kwargs: Incomplete) ... method inverse (line 2989) | def inverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method invertIt (line 2991) | def invertIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method reorder (line 2993) | def reorder(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method reorderIt (line 2995) | def reorderIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method bound (line 2997) | def bound(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method boundIt (line 2999) | def boundIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method alternateSolution (line 3001) | def alternateSolution(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setToAlternateSolution (line 3003) | def setToAlternateSolution(cls, *args: Incomplete, **kwargs: Incomplet... method closestSolution (line 3005) | def closestSolution(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setToClosestSolution (line 3007) | def setToClosestSolution(cls, *args: Incomplete, **kwargs: Incomplete)... method closestCut (line 3009) | def closestCut(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setToClosestCut (line 3011) | def setToClosestCut(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method decompose (line 3013) | def decompose(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 3015) | def __len__(cls) -> int: ... method __getitem__ (line 3017) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... class MEventMessage (line 3019) | class MEventMessage(MMessage): method addEventCallback (line 3023) | def addEventCallback(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getEventNames (line 3025) | def getEventNames(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 3027) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 3029) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MEvaluationManager (line 3031) | class MEvaluationManager: method graphConstructionActive (line 3035) | def graphConstructionActive(*args: Incomplete, **kwargs: Incomplete) -... method evaluationManagerActive (line 3037) | def evaluationManagerActive(*args: Incomplete, **kwargs: Incomplete) -... method evaluationInExecution (line 3039) | def evaluationInExecution(*args: Incomplete, **kwargs: Incomplete) -> ... method className (line 3041) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MEvaluationNode (line 3043) | class MEvaluationNode: method __swig_destroy__ (line 3047) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method parentCount (line 3049) | def parentCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method parent (line 3051) | def parent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method childCount (line 3053) | def childCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method child (line 3055) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method iterator (line 3057) | def iterator(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method dirtyPlugExists (line 3059) | def dirtyPlugExists(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method dirtyPlug (line 3061) | def dirtyPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method dependencyNode (line 3063) | def dependencyNode(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method datablock (line 3065) | def datablock(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method connect (line 3067) | def connect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method skipEvaluation (line 3069) | def skipEvaluation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method skippingEvaluation (line 3071) | def skippingEvaluation(cls, *args: Incomplete, **kwargs: Incomplete) -... method className (line 3073) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MEvaluationNodeIterator (line 3075) | class MEvaluationNodeIterator: method __swig_destroy__ (line 3079) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 3081) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method plug (line 3083) | def plug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 3085) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 3087) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 3089) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method className (line 3091) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFileIO (line 3093) | class MFileIO: method __swig_destroy__ (line 3142) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method currentFile (line 3144) | def currentFile(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setCurrentFile (line 3146) | def setCurrentFile(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method fileType (line 3148) | def fileType(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getFileTypes (line 3150) | def getFileTypes(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method newFile (line 3152) | def newFile(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method open (line 3154) | def open(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method save (line 3156) | def save(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method saveAs (line 3158) | def saveAs(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method importFile (line 3160) | def importFile(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method exportSelected (line 3162) | def exportSelected(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method exportAll (line 3164) | def exportAll(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method exportAnimFromReference (line 3166) | def exportAnimFromReference(*args: Incomplete, **kwargs: Incomplete) -... method exportSelectedAnimFromReference (line 3168) | def exportSelectedAnimFromReference(*args: Incomplete, **kwargs: Incom... method exportAnim (line 3170) | def exportAnim(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method exportSelectedAnim (line 3172) | def exportSelectedAnim(*args: Incomplete, **kwargs: Incomplete) -> Inc... method exportAsReference (line 3174) | def exportAsReference(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getReferences (line 3176) | def getReferences(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method getFiles (line 3178) | def getFiles(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getReferenceNodes (line 3180) | def getReferenceNodes(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getReferenceConnectionsMade (line 3182) | def getReferenceConnectionsMade(*args: Incomplete, **kwargs: Incomplet... method getReferenceConnectionsBroken (line 3184) | def getReferenceConnectionsBroken(*args: Incomplete, **kwargs: Incompl... method reference (line 3186) | def reference(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method removeReference (line 3188) | def removeReference(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method isReadingFile (line 3190) | def isReadingFile(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method isWritingFile (line 3192) | def isWritingFile(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method isOpeningFile (line 3194) | def isOpeningFile(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method isNewingFile (line 3196) | def isNewingFile(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isSavingReference (line 3198) | def isSavingReference(*args: Incomplete, **kwargs: Incomplete) -> Inco... method mustRenameToSave (line 3200) | def mustRenameToSave(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setMustRenameToSave (line 3202) | def setMustRenameToSave(*args: Incomplete, **kwargs: Incomplete) -> In... method mustRenameToSaveMsg (line 3204) | def mustRenameToSaveMsg(*args: Incomplete, **kwargs: Incomplete) -> In... method setMustRenameToSaveMsg (line 3206) | def setMustRenameToSaveMsg(*args: Incomplete, **kwargs: Incomplete) ->... method beforeOpenFilename (line 3208) | def beforeOpenFilename(*args: Incomplete, **kwargs: Incomplete) -> Inc... method beforeImportFilename (line 3210) | def beforeImportFilename(*args: Incomplete, **kwargs: Incomplete) -> I... method beforeSaveFilename (line 3212) | def beforeSaveFilename(*args: Incomplete, **kwargs: Incomplete) -> Inc... method beforeExportFilename (line 3214) | def beforeExportFilename(*args: Incomplete, **kwargs: Incomplete) -> I... method beforeReferenceFilename (line 3216) | def beforeReferenceFilename(*args: Incomplete, **kwargs: Incomplete) -... method beforeOpenUserFileTranslator (line 3218) | def beforeOpenUserFileTranslator(*args: Incomplete, **kwargs: Incomple... method beforeImportUserFileTranslator (line 3220) | def beforeImportUserFileTranslator(*args: Incomplete, **kwargs: Incomp... method beforeSaveUserFileTranslator (line 3222) | def beforeSaveUserFileTranslator(*args: Incomplete, **kwargs: Incomple... method beforeExportUserFileTranslator (line 3224) | def beforeExportUserFileTranslator(*args: Incomplete, **kwargs: Incomp... method beforeReferenceUserFileTranslator (line 3226) | def beforeReferenceUserFileTranslator(*args: Incomplete, **kwargs: Inc... method exportType (line 3228) | def exportType(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getLastTempFile (line 3230) | def getLastTempFile(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method getErrorStatus (line 3232) | def getErrorStatus(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method resetError (line 3234) | def resetError(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setError (line 3236) | def setError(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method loadReference (line 3238) | def loadReference(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method loadReferenceByNode (line 3240) | def loadReferenceByNode(*args: Incomplete, **kwargs: Incomplete) -> In... method unloadReference (line 3242) | def unloadReference(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method unloadReferenceByNode (line 3244) | def unloadReferenceByNode(*args: Incomplete, **kwargs: Incomplete) -> ... method getReferenceFileByNode (line 3246) | def getReferenceFileByNode(*args: Incomplete, **kwargs: Incomplete) ->... method cleanReference (line 3248) | def cleanReference(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method saveReference (line 3250) | def saveReference(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method fileCurrentlyLoading (line 3252) | def fileCurrentlyLoading(*args: Incomplete, **kwargs: Incomplete) -> I... method isImportingFile (line 3254) | def isImportingFile(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method isReferencingFile (line 3256) | def isReferencingFile(*args: Incomplete, **kwargs: Incomplete) -> Inco... method currentlyReadingFileVersion (line 3258) | def currentlyReadingFileVersion(*args: Incomplete, **kwargs: Incomplet... method latestMayaFileVersion (line 3260) | def latestMayaFileVersion(*args: Incomplete, **kwargs: Incomplete) -> ... method className (line 3262) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFileObject (line 3264) | class MFileObject: method __swig_destroy__ (line 3277) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 3279) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setRawName (line 3281) | def setRawName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setRawPath (line 3283) | def setRawPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setRawFullName (line 3285) | def setRawFullName(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setRawURI (line 3287) | def setRawURI(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method overrideResolvedFullName (line 3289) | def overrideResolvedFullName(cls, *args: Incomplete, **kwargs: Incompl... method rawName (line 3291) | def rawName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method rawPath (line 3293) | def rawPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method rawFullName (line 3295) | def rawFullName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rawURI (line 3297) | def rawURI(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method expandedPath (line 3299) | def expandedPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method expandedFullName (line 3301) | def expandedFullName(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method resolvedName (line 3303) | def resolvedName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method resolvedPath (line 3305) | def resolvedPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method resolvedFullName (line 3307) | def resolvedFullName(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method pathCount (line 3309) | def pathCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method ithPath (line 3311) | def ithPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method ithFullName (line 3313) | def ithFullName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method exists (line 3315) | def exists(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isSet (line 3317) | def isSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setResolveMethod (line 3319) | def setResolveMethod(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method resolveMethod (line 3321) | def resolveMethod(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setName (line 3323) | def setName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setFullName (line 3325) | def setFullName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method name (line 3327) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method path (line 3329) | def path(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method fullName (line 3331) | def fullName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isAbsolutePath (line 3333) | def isAbsolutePath(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method getResolvedFullName (line 3335) | def getResolvedFullName(*args: Incomplete, **kwargs: Incomplete) -> In... class MFloatArray (line 3337) | class MFloatArray: method __swig_destroy__ (line 3341) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 3343) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 3345) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 3347) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 3349) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 3351) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 3353) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 3355) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 3357) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 3359) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 3361) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 3363) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 3365) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 3367) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 3369) | def __len__(cls) -> int: ... method __setitem__ (line 3371) | def __setitem__(cls, index: Incomplete, object: Incomplete) -> None: ... method __getitem__ (line 3373) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __delitem__ (line 3375) | def __delitem__(cls, other: Incomplete) -> None: ... method __eq__ (line 3377) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 3379) | def __ne__(cls, other: object) -> bool: ... method __add__ (line 3381) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __radd__ (line 3383) | def __radd__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 3385) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... class MFloatMatrix (line 3388) | class MFloatMatrix: method __swig_destroy__ (line 3393) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 3395) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __call__ (line 3397) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __getitem__ (line 3399) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method get (line 3401) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method transpose (line 3403) | def transpose(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setToIdentity (line 3405) | def setToIdentity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setToProduct (line 3407) | def setToProduct(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method __iadd__ (line 3409) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __add__ (line 3411) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 3413) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 3415) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 3417) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 3419) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 3421) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 3423) | def __ne__(cls, other: object) -> bool: ... method inverse (line 3425) | def inverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method adjoint (line 3427) | def adjoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method homogenize (line 3429) | def homogenize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method det4x4 (line 3431) | def det4x4(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method det3x3 (line 3433) | def det3x3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isEquivalent (line 3435) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 3437) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFloatPointArray (line 3439) | class MFloatPointArray: method __swig_destroy__ (line 3443) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 3445) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 3447) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 3449) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 3451) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 3453) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 3455) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 3457) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 3459) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 3461) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 3463) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 3465) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 3467) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 3469) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 3471) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFloatPoint (line 3474) | class MFloatPoint: method __swig_destroy__ (line 3485) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 3487) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setCast (line 3489) | def setCast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method assign (line 3491) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __call__ (line 3493) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __add__ (line 3495) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 3497) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 3499) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 3501) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 3503) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 3505) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 3507) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 3509) | def __ne__(cls, other: object) -> bool: ... method cartesianize (line 3511) | def cartesianize(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method rationalize (line 3513) | def rationalize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method homogenize (line 3515) | def homogenize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method distanceTo (line 3517) | def distanceTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isEquivalent (line 3519) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 3521) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 3523) | def __len__(cls) -> int: ... method __getitem__ (line 3525) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... class MFloatVectorArray (line 3527) | class MFloatVectorArray: method __swig_destroy__ (line 3531) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 3533) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 3535) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 3537) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 3539) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 3541) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 3543) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 3545) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 3547) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 3549) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 3551) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 3553) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 3555) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 3557) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 3559) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFloatVector (line 3562) | class MFloatVector: method __swig_destroy__ (line 3581) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 3583) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __call__ (line 3585) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __getitem__ (line 3587) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __xor__ (line 3589) | def __xor__(cls, other: Incomplete) -> Incomplete: ... method __add__ (line 3591) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 3593) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __neg__ (line 3595) | def __neg__(cls) -> Incomplete: ... method __sub__ (line 3597) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 3599) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 3601) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 3603) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __ne__ (line 3605) | def __ne__(cls, other: object) -> bool: ... method __eq__ (line 3607) | def __eq__(cls, other: object) -> bool: ... method get (line 3609) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 3611) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method normal (line 3613) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method normalize (line 3615) | def normalize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method angle (line 3617) | def angle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isEquivalent (line 3619) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isParallel (line 3621) | def isParallel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnBase (line 3623) | class MFnBase: method __swig_destroy__ (line 3627) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3629) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method hasObj (line 3631) | def hasObj(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method object (line 3633) | def object(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setObject (line 3635) | def setObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 3637) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method typeString (line 3639) | def typeString(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isValid (line 3641) | def isValid(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnDependencyNode (line 3643) | class MFnDependencyNode(MFnBase): method __swig_destroy__ (line 3669) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 3671) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 3673) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method typeId (line 3675) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method typeName (line 3677) | def typeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method name (line 3679) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method absoluteName (line 3681) | def absoluteName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method uniqueName (line 3683) | def uniqueName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method pluginName (line 3685) | def pluginName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setName (line 3687) | def setName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uuid (line 3689) | def uuid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUuid (line 3691) | def setUuid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getConnections (line 3693) | def getConnections(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method attributeCount (line 3695) | def attributeCount(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method reorderedAttribute (line 3697) | def reorderedAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -... method attribute (line 3699) | def attribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method attributeClass (line 3701) | def attributeClass(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getAffectedAttributes (line 3703) | def getAffectedAttributes(cls, *args: Incomplete, **kwargs: Incomplete... method getAffectedByAttributes (line 3705) | def getAffectedByAttributes(cls, *args: Incomplete, **kwargs: Incomple... method findPlug (line 3707) | def findPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method userNode (line 3709) | def userNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isFromReferencedFile (line 3711) | def isFromReferencedFile(cls, *args: Incomplete, **kwargs: Incomplete)... method isShared (line 3713) | def isShared(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isTrackingEdits (line 3715) | def isTrackingEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method hasUniqueName (line 3717) | def hasUniqueName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method parentNamespace (line 3719) | def parentNamespace(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isLocked (line 3721) | def isLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setLocked (line 3723) | def setLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method classification (line 3725) | def classification(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method isNewAttribute (line 3727) | def isNewAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method allocateFlag (line 3729) | def allocateFlag(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method deallocateFlag (line 3731) | def deallocateFlag(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method deallocateAllFlags (line 3733) | def deallocateAllFlags(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setFlag (line 3735) | def setFlag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isFlagSet (line 3737) | def isFlagSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isDefaultNode (line 3739) | def isDefaultNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDoNotWrite (line 3741) | def setDoNotWrite(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method canBeWritten (line 3743) | def canBeWritten(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method hasAttribute (line 3745) | def hasAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getAliasAttr (line 3747) | def getAliasAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setAlias (line 3749) | def setAlias(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method findAlias (line 3751) | def findAlias(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getAliasList (line 3753) | def getAliasList(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method plugsAlias (line 3755) | def plugsAlias(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setIcon (line 3757) | def setIcon(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method icon (line 3759) | def icon(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getExternalContent (line 3761) | def getExternalContent(cls, *args: Incomplete, **kwargs: Incomplete) -... method addExternalContentForFileAttr (line 3763) | def addExternalContentForFileAttr(cls, *args: Incomplete, **kwargs: In... method setExternalContentForFileAttr (line 3765) | def setExternalContentForFileAttr(cls, *args: Incomplete, **kwargs: In... method setExternalContent (line 3767) | def setExternalContent(cls, *args: Incomplete, **kwargs: Incomplete) -... method affectsAnimation (line 3769) | def affectsAnimation(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setAffectsAnimation (line 3771) | def setAffectsAnimation(cls, *args: Incomplete, **kwargs: Incomplete) ... method enableDGTiming (line 3773) | def enableDGTiming(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method dgTimerOn (line 3775) | def dgTimerOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method dgTimerOff (line 3777) | def dgTimerOff(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method dgTimerQueryState (line 3779) | def dgTimerQueryState(cls, *args: Incomplete, **kwargs: Incomplete) ->... method dgTimerReset (line 3781) | def dgTimerReset(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method dgTimer (line 3783) | def dgTimer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method dgCallbacks (line 3785) | def dgCallbacks(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method dgCallbackIds (line 3787) | def dgCallbackIds(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addAttribute (line 3789) | def addAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method removeAttribute (line 3791) | def removeAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnDagNode (line 3793) | class MFnDagNode(MFnDependencyNode): method __swig_destroy__ (line 3801) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 3803) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 3805) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method parentCount (line 3807) | def parentCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method parent (line 3809) | def parent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addChild (line 3811) | def addChild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method removeChild (line 3813) | def removeChild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method removeChildAt (line 3815) | def removeChildAt(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method childCount (line 3817) | def childCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method child (line 3819) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method dagRoot (line 3821) | def dagRoot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasParent (line 3823) | def hasParent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasChild (line 3825) | def hasChild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isChildOf (line 3827) | def isChildOf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isParentOf (line 3829) | def isParentOf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method inUnderWorld (line 3831) | def inUnderWorld(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method inModel (line 3833) | def inModel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isInstanceable (line 3835) | def isInstanceable(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setInstanceable (line 3837) | def setInstanceable(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isInstanced (line 3839) | def isInstanced(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isInstancedAttribute (line 3841) | def isInstancedAttribute(cls, *args: Incomplete, **kwargs: Incomplete)... method instanceCount (line 3843) | def instanceCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method duplicate (line 3845) | def duplicate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getPath (line 3847) | def getPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getAllPaths (line 3849) | def getAllPaths(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method fullPathName (line 3851) | def fullPathName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method partialPathName (line 3853) | def partialPathName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method transformationMatrix (line 3855) | def transformationMatrix(cls, *args: Incomplete, **kwargs: Incomplete)... method isIntermediateObject (line 3857) | def isIntermediateObject(cls, *args: Incomplete, **kwargs: Incomplete)... method setIntermediateObject (line 3859) | def setIntermediateObject(cls, *args: Incomplete, **kwargs: Incomplete... method objectColor (line 3861) | def objectColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method usingObjectColor (line 3863) | def usingObjectColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setUseObjectColor (line 3865) | def setUseObjectColor(cls, *args: Incomplete, **kwargs: Incomplete) ->... method objectColorType (line 3867) | def objectColorType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setObjectColorType (line 3869) | def setObjectColorType(cls, *args: Incomplete, **kwargs: Incomplete) -... method setObjectColor (line 3871) | def setObjectColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method objectColorRGB (line 3873) | def objectColorRGB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method objectColorIndex (line 3875) | def objectColorIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hiliteColor (line 3877) | def hiliteColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method usingHiliteColor (line 3879) | def usingHiliteColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method dormantColor (line 3881) | def dormantColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method activeColor (line 3883) | def activeColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method drawOverrideEnabled (line 3885) | def drawOverrideEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ... method drawOverrideIsReference (line 3887) | def drawOverrideIsReference(cls, *args: Incomplete, **kwargs: Incomple... method drawOverrideIsTemplate (line 3889) | def drawOverrideIsTemplate(cls, *args: Incomplete, **kwargs: Incomplet... method drawOverrideColor (line 3891) | def drawOverrideColor(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedSetsAndMembers (line 3893) | def getConnectedSetsAndMembers(cls, *args: Incomplete, **kwargs: Incom... method boundingBox (line 3895) | def boundingBox(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method dagPath (line 3897) | def dagPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setObject (line 3899) | def setObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method model (line 3901) | def model(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method objectGroupComponent (line 3903) | def objectGroupComponent(cls, *args: Incomplete, **kwargs: Incomplete)... class MFnAssembly (line 3905) | class MFnAssembly(MFnDagNode): method __swig_destroy__ (line 3909) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 3911) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getTopLevelAssemblies (line 3913) | def getTopLevelAssemblies(*args: Incomplete, **kwargs: Incomplete) -> ... method createRepresentation (line 3915) | def createRepresentation(cls, *args: Incomplete, **kwargs: Incomplete)... method postLoad (line 3917) | def postLoad(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method activate (line 3919) | def activate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getActive (line 3921) | def getActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method activateNonRecursive (line 3923) | def activateNonRecursive(cls, *args: Incomplete, **kwargs: Incomplete)... method canActivate (line 3925) | def canActivate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isActive (line 3927) | def isActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getInitialRep (line 3929) | def getInitialRep(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getRepresentations (line 3931) | def getRepresentations(cls, *args: Incomplete, **kwargs: Incomplete) -... method getRepType (line 3933) | def getRepType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getRepLabel (line 3935) | def getRepLabel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method repTypes (line 3937) | def repTypes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method deleteRepresentation (line 3939) | def deleteRepresentation(cls, *args: Incomplete, **kwargs: Incomplete)... method deleteAllRepresentations (line 3941) | def deleteAllRepresentations(cls, *args: Incomplete, **kwargs: Incompl... method getRepNamespace (line 3943) | def getRepNamespace(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setRepName (line 3945) | def setRepName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setRepLabel (line 3947) | def setRepLabel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method importFile (line 3949) | def importFile(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getAbsoluteRepNamespace (line 3951) | def getAbsoluteRepNamespace(cls, *args: Incomplete, **kwargs: Incomple... method isTopLevel (line 3953) | def isTopLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method supportsEdits (line 3955) | def supportsEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method supportsMemberChanges (line 3957) | def supportsMemberChanges(cls, *args: Incomplete, **kwargs: Incomplete... method canRepApplyEdits (line 3959) | def canRepApplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method handlesAddEdits (line 3961) | def handlesAddEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getParentAssembly (line 3963) | def getParentAssembly(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getSubAssemblies (line 3965) | def getSubAssemblies(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnTransform (line 3967) | class MFnTransform(MFnDagNode): method __swig_destroy__ (line 3995) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 3997) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 3999) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method transformation (line 4001) | def transformation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method set (line 4003) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method resetTransformation (line 4005) | def resetTransformation(cls, *args: Incomplete, **kwargs: Incomplete) ... method getTranslation (line 4007) | def getTranslation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setTranslation (line 4009) | def setTranslation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method translateBy (line 4011) | def translateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getScale (line 4013) | def getScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setScale (line 4015) | def setScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method scaleBy (line 4017) | def scaleBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method scalePivot (line 4019) | def scalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setScalePivot (line 4021) | def setScalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method scalePivotTranslation (line 4023) | def scalePivotTranslation(cls, *args: Incomplete, **kwargs: Incomplete... method setScalePivotTranslation (line 4025) | def setScalePivotTranslation(cls, *args: Incomplete, **kwargs: Incompl... method getShear (line 4027) | def getShear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setShear (line 4029) | def setShear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method shearBy (line 4031) | def shearBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method rotatePivot (line 4033) | def rotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotatePivot (line 4035) | def setRotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method rotatePivotTranslation (line 4037) | def rotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomplet... method setRotatePivotTranslation (line 4039) | def setRotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomp... method getRotationQuaternion (line 4041) | def getRotationQuaternion(cls, *args: Incomplete, **kwargs: Incomplete... method setRotationQuaternion (line 4043) | def setRotationQuaternion(cls, *args: Incomplete, **kwargs: Incomplete... method rotateByQuaternion (line 4045) | def rotateByQuaternion(cls, *args: Incomplete, **kwargs: Incomplete) -... method rotateBy (line 4047) | def rotateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotateOrientation (line 4049) | def rotateOrientation(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setRotateOrientation (line 4051) | def setRotateOrientation(cls, *args: Incomplete, **kwargs: Incomplete)... method rotationOrder (line 4053) | def rotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setRotationOrder (line 4055) | def setRotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method restPosition (line 4057) | def restPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setRestPosition (line 4059) | def setRestPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method resetFromRestPosition (line 4061) | def resetFromRestPosition(cls, *args: Incomplete, **kwargs: Incomplete... method clearRestPosition (line 4063) | def clearRestPosition(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isLimited (line 4065) | def isLimited(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method limitValue (line 4067) | def limitValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setLimit (line 4069) | def setLimit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method enableLimit (line 4071) | def enableLimit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method balanceTransformation (line 4073) | def balanceTransformation(*args: Incomplete, **kwargs: Incomplete) -> ... method getRotation (line 4075) | def getRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotation (line 4077) | def setRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translation (line 4079) | def translation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnContainerNode (line 4081) | class MFnContainerNode(MFnDependencyNode): method __swig_destroy__ (line 4088) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4090) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getPublishedPlugs (line 4092) | def getPublishedPlugs(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getPublishedNames (line 4094) | def getPublishedNames(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getMembers (line 4096) | def getMembers(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getSubcontainers (line 4098) | def getSubcontainers(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getParentContainer (line 4100) | def getParentContainer(cls, *args: Incomplete, **kwargs: Incomplete) -... method getRootTransform (line 4102) | def getRootTransform(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getPublishedNodes (line 4104) | def getPublishedNodes(cls, *args: Incomplete, **kwargs: Incomplete) ->... method clear (line 4106) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method makeCurrent (line 4108) | def makeCurrent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isCurrent (line 4110) | def isCurrent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getCurrentAsMObject (line 4112) | def getCurrentAsMObject(*args: Incomplete, **kwargs: Incomplete) -> In... class MFnLight (line 4114) | class MFnLight(MFnDagNode): method __swig_destroy__ (line 4118) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4120) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method color (line 4122) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setColor (line 4124) | def setColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method intensity (line 4126) | def intensity(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setIntensity (line 4128) | def setIntensity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method useRayTraceShadows (line 4130) | def useRayTraceShadows(cls, *args: Incomplete, **kwargs: Incomplete) -... method setUseRayTraceShadows (line 4132) | def setUseRayTraceShadows(cls, *args: Incomplete, **kwargs: Incomplete... method shadowColor (line 4134) | def shadowColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setShadowColor (line 4136) | def setShadowColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method centerOfIllumination (line 4138) | def centerOfIllumination(cls, *args: Incomplete, **kwargs: Incomplete)... method setCenterOfIllumination (line 4140) | def setCenterOfIllumination(cls, *args: Incomplete, **kwargs: Incomple... method numShadowSamples (line 4142) | def numShadowSamples(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setNumShadowSamples (line 4144) | def setNumShadowSamples(cls, *args: Incomplete, **kwargs: Incomplete) ... method rayDepthLimit (line 4146) | def rayDepthLimit(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setRayDepthLimit (line 4148) | def setRayDepthLimit(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method opticalFXvisibility (line 4150) | def opticalFXvisibility(cls, *args: Incomplete, **kwargs: Incomplete) ... method setOpticalFXvisibility (line 4152) | def setOpticalFXvisibility(cls, *args: Incomplete, **kwargs: Incomplet... method lightIntensity (line 4154) | def lightIntensity(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method lightDirection (line 4156) | def lightDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method lightAmbient (line 4158) | def lightAmbient(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method lightDiffuse (line 4160) | def lightDiffuse(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method lightSpecular (line 4162) | def lightSpecular(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnAmbientLight (line 4164) | class MFnAmbientLight(MFnLight): method __swig_destroy__ (line 4168) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4170) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4172) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method ambientShade (line 4174) | def ambientShade(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setAmbientShade (line 4176) | def setAmbientShade(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method castSoftShadows (line 4178) | def castSoftShadows(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setCastSoftShadows (line 4180) | def setCastSoftShadows(cls, *args: Incomplete, **kwargs: Incomplete) -... method shadowRadius (line 4182) | def shadowRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setShadowRadius (line 4184) | def setShadowRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnAnisotropyShader (line 4186) | class MFnAnisotropyShader(MFnDependencyNode): method __swig_destroy__ (line 4190) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4192) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4194) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method tangentUCamera (line 4196) | def tangentUCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setTangentUCamera (line 4198) | def setTangentUCamera(cls, *args: Incomplete, **kwargs: Incomplete) ->... method tangentVCamera (line 4200) | def tangentVCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setTangentVCamera (line 4202) | def setTangentVCamera(cls, *args: Incomplete, **kwargs: Incomplete) ->... method correlationX (line 4204) | def correlationX(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCorrelationX (line 4206) | def setCorrelationX(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method correlationY (line 4208) | def correlationY(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCorrelationY (line 4210) | def setCorrelationY(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method roughness (line 4212) | def roughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setRoughness (line 4214) | def setRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method rotateAngle (line 4216) | def rotateAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotateAngle (line 4218) | def setRotateAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method refractiveIndex (line 4220) | def refractiveIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setRefractiveIndex (line 4222) | def setRefractiveIndex(cls, *args: Incomplete, **kwargs: Incomplete) -... method anisotropicReflectivity (line 4224) | def anisotropicReflectivity(cls, *args: Incomplete, **kwargs: Incomple... method setAnisotropicReflectivity (line 4226) | def setAnisotropicReflectivity(cls, *args: Incomplete, **kwargs: Incom... class MFnNonAmbientLight (line 4228) | class MFnNonAmbientLight(MFnLight): method __swig_destroy__ (line 4232) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4234) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method decayRate (line 4236) | def decayRate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setDecayRate (line 4238) | def setDecayRate(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnNonExtendedLight (line 4240) | class MFnNonExtendedLight(MFnNonAmbientLight): method __swig_destroy__ (line 4244) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4246) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method shadowRadius (line 4248) | def shadowRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setShadowRadius (line 4250) | def setShadowRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method castSoftShadows (line 4252) | def castSoftShadows(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setCastSoftShadows (line 4254) | def setCastSoftShadows(cls, *args: Incomplete, **kwargs: Incomplete) -... method useDepthMapShadows (line 4256) | def useDepthMapShadows(cls, *args: Incomplete, **kwargs: Incomplete) -... method setUseDepthMapShadows (line 4258) | def setUseDepthMapShadows(cls, *args: Incomplete, **kwargs: Incomplete... method depthMapFilterSize (line 4260) | def depthMapFilterSize(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDepthMapFilterSize (line 4262) | def setDepthMapFilterSize(cls, *args: Incomplete, **kwargs: Incomplete... method depthMapResolution (line 4264) | def depthMapResolution(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDepthMapResolution (line 4266) | def setDepthMapResolution(cls, *args: Incomplete, **kwargs: Incomplete... method depthMapBias (line 4268) | def depthMapBias(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDepthMapBias (line 4270) | def setDepthMapBias(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method useDepthMapAutoFocus (line 4272) | def useDepthMapAutoFocus(cls, *args: Incomplete, **kwargs: Incomplete)... method setUseDepthMapAutoFocus (line 4274) | def setUseDepthMapAutoFocus(cls, *args: Incomplete, **kwargs: Incomple... method depthMapWidthFocus (line 4276) | def depthMapWidthFocus(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDepthMapWidthFocus (line 4278) | def setDepthMapWidthFocus(cls, *args: Incomplete, **kwargs: Incomplete... method depthMapFocus (line 4280) | def depthMapFocus(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDepthMapFocus (line 4282) | def setDepthMapFocus(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnAreaLight (line 4284) | class MFnAreaLight(MFnNonExtendedLight): method __swig_destroy__ (line 4288) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4290) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4292) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnData (line 4294) | class MFnData(MFnBase): method __swig_destroy__ (line 4325) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4327) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnArrayAttrsData (line 4329) | class MFnArrayAttrsData(MFnData): method __swig_destroy__ (line 4339) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4341) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 4343) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method count (line 4345) | def count(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method list (line 4347) | def list(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method checkArrayExist (line 4349) | def checkArrayExist(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method vectorArray (line 4351) | def vectorArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method doubleArray (line 4353) | def doubleArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method intArray (line 4355) | def intArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method stringArray (line 4357) | def stringArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method create (line 4359) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getVectorData (line 4361) | def getVectorData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDoubleData (line 4363) | def getDoubleData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getIntData (line 4365) | def getIntData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getStringData (line 4367) | def getStringData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnAttribute (line 4369) | class MFnAttribute(MFnBase): method __swig_destroy__ (line 4376) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4378) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isReadable (line 4380) | def isReadable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isWritable (line 4382) | def isWritable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isConnectable (line 4384) | def isConnectable(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isStorable (line 4386) | def isStorable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isCached (line 4388) | def isCached(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isArray (line 4390) | def isArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method indexMatters (line 4392) | def indexMatters(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isKeyable (line 4394) | def isKeyable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isChannelBoxFlagSet (line 4396) | def isChannelBoxFlagSet(cls, *args: Incomplete, **kwargs: Incomplete) ... method isHidden (line 4398) | def isHidden(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isUsedAsColor (line 4400) | def isUsedAsColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isIndeterminant (line 4402) | def isIndeterminant(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isRenderSource (line 4404) | def isRenderSource(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isDynamic (line 4406) | def isDynamic(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isExtension (line 4408) | def isExtension(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isWorldSpace (line 4410) | def isWorldSpace(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isAffectsWorldSpace (line 4412) | def isAffectsWorldSpace(cls, *args: Incomplete, **kwargs: Incomplete) ... method isUsedAsFilename (line 4414) | def isUsedAsFilename(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method affectsAppearance (line 4416) | def affectsAppearance(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isProxyAttribute (line 4418) | def isProxyAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isEnforcingUniqueName (line 4420) | def isEnforcingUniqueName(cls, *args: Incomplete, **kwargs: Incomplete... method disconnectBehavior (line 4422) | def disconnectBehavior(cls, *args: Incomplete, **kwargs: Incomplete) -... method usesArrayDataBuilder (line 4424) | def usesArrayDataBuilder(cls, *args: Incomplete, **kwargs: Incomplete)... method internal (line 4426) | def internal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setReadable (line 4428) | def setReadable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setWritable (line 4430) | def setWritable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setConnectable (line 4432) | def setConnectable(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setStorable (line 4434) | def setStorable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCached (line 4436) | def setCached(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setArray (line 4438) | def setArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setIndexMatters (line 4440) | def setIndexMatters(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setKeyable (line 4442) | def setKeyable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setChannelBox (line 4444) | def setChannelBox(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setHidden (line 4446) | def setHidden(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setUsedAsColor (line 4448) | def setUsedAsColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setIndeterminant (line 4450) | def setIndeterminant(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setRenderSource (line 4452) | def setRenderSource(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setWorldSpace (line 4454) | def setWorldSpace(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setAffectsWorldSpace (line 4456) | def setAffectsWorldSpace(cls, *args: Incomplete, **kwargs: Incomplete)... method setUsedAsFilename (line 4458) | def setUsedAsFilename(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setAffectsAppearance (line 4460) | def setAffectsAppearance(cls, *args: Incomplete, **kwargs: Incomplete)... method setProxyAttribute (line 4462) | def setProxyAttribute(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setEnforcingUniqueName (line 4464) | def setEnforcingUniqueName(cls, *args: Incomplete, **kwargs: Incomplet... method setDisconnectBehavior (line 4466) | def setDisconnectBehavior(cls, *args: Incomplete, **kwargs: Incomplete... method setUsesArrayDataBuilder (line 4468) | def setUsesArrayDataBuilder(cls, *args: Incomplete, **kwargs: Incomple... method setInternal (line 4470) | def setInternal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setNiceNameOverride (line 4472) | def setNiceNameOverride(cls, *args: Incomplete, **kwargs: Incomplete) ... method acceptsAttribute (line 4474) | def acceptsAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method accepts (line 4476) | def accepts(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method parent (line 4478) | def parent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method name (line 4480) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method shortName (line 4482) | def shortName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method pathName (line 4484) | def pathName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getAddAttrCmd (line 4486) | def getAddAttrCmd(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addToCategory (line 4488) | def addToCategory(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method removeFromCategory (line 4490) | def removeFromCategory(cls, *args: Incomplete, **kwargs: Incomplete) -... method hasCategory (line 4492) | def hasCategory(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getCategories (line 4494) | def getCategories(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnLambertShader (line 4496) | class MFnLambertShader(MFnDependencyNode): method __swig_destroy__ (line 4500) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4502) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4504) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method refractedRayDepthLimit (line 4506) | def refractedRayDepthLimit(cls, *args: Incomplete, **kwargs: Incomplet... method setRefractedRayDepthLimit (line 4508) | def setRefractedRayDepthLimit(cls, *args: Incomplete, **kwargs: Incomp... method refractiveIndex (line 4510) | def refractiveIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setRefractiveIndex (line 4512) | def setRefractiveIndex(cls, *args: Incomplete, **kwargs: Incomplete) -... method rtRefractedColor (line 4514) | def rtRefractedColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setRtRefractedColor (line 4516) | def setRtRefractedColor(cls, *args: Incomplete, **kwargs: Incomplete) ... method diffuseCoeff (line 4518) | def diffuseCoeff(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDiffuseCoeff (line 4520) | def setDiffuseCoeff(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method color (line 4522) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setColor (line 4524) | def setColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method transparency (line 4526) | def transparency(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setTransparency (line 4528) | def setTransparency(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method ambientColor (line 4530) | def ambientColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setAmbientColor (line 4532) | def setAmbientColor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method incandescence (line 4534) | def incandescence(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setIncandescence (line 4536) | def setIncandescence(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method translucenceCoeff (line 4538) | def translucenceCoeff(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setTranslucenceCoeff (line 4540) | def setTranslucenceCoeff(cls, *args: Incomplete, **kwargs: Incomplete)... method glowIntensity (line 4542) | def glowIntensity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setGlowIntensity (line 4544) | def setGlowIntensity(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hideSource (line 4546) | def hideSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setHideSource (line 4548) | def setHideSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnReflectShader (line 4550) | class MFnReflectShader(MFnLambertShader): method __swig_destroy__ (line 4554) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4556) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reflectedRayDepthLimit (line 4558) | def reflectedRayDepthLimit(cls, *args: Incomplete, **kwargs: Incomplet... method setReflectedRayDepthLimit (line 4560) | def setReflectedRayDepthLimit(cls, *args: Incomplete, **kwargs: Incomp... method specularColor (line 4562) | def specularColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setSpecularColor (line 4564) | def setSpecularColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reflectivity (line 4566) | def reflectivity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setReflectivity (line 4568) | def setReflectivity(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method reflectedColor (line 4570) | def reflectedColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setReflectedColor (line 4572) | def setReflectedColor(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MFnBlinnShader (line 4574) | class MFnBlinnShader(MFnReflectShader): method __swig_destroy__ (line 4578) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4580) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4582) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method eccentricity (line 4584) | def eccentricity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setEccentricity (line 4586) | def setEccentricity(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method specularRollOff (line 4588) | def specularRollOff(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSpecularRollOff (line 4590) | def setSpecularRollOff(cls, *args: Incomplete, **kwargs: Incomplete) -... class MFnReference (line 4592) | class MFnReference(MFnDependencyNode): method __swig_destroy__ (line 4596) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4598) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isValidReference (line 4600) | def isValidReference(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method fileName (line 4602) | def fileName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method associatedNamespace (line 4604) | def associatedNamespace(cls, *args: Incomplete, **kwargs: Incomplete) ... method parentFileName (line 4606) | def parentFileName(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method parentReference (line 4608) | def parentReference(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method parentAssembly (line 4610) | def parentAssembly(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method containsNode (line 4612) | def containsNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method containsNodeExactly (line 4614) | def containsNodeExactly(cls, *args: Incomplete, **kwargs: Incomplete) ... method nodes (line 4616) | def nodes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isLoaded (line 4618) | def isLoaded(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isLocked (line 4620) | def isLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isExportEditsFile (line 4622) | def isExportEditsFile(cls, *args: Incomplete, **kwargs: Incomplete) ->... method ignoreReferenceEdits (line 4624) | def ignoreReferenceEdits(*args: Incomplete, **kwargs: Incomplete) -> I... method setIgnoreReferenceEdits (line 4626) | def setIgnoreReferenceEdits(*args: Incomplete, **kwargs: Incomplete) -... class MFnCamera (line 4628) | class MFnCamera(MFnDagNode): method __swig_destroy__ (line 4639) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4641) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4643) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method eyePoint (line 4645) | def eyePoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method viewDirection (line 4647) | def viewDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method upDirection (line 4649) | def upDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rightDirection (line 4651) | def rightDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method centerOfInterestPoint (line 4653) | def centerOfInterestPoint(cls, *args: Incomplete, **kwargs: Incomplete... method set (line 4655) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setEyePoint (line 4657) | def setEyePoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCenterOfInterestPoint (line 4659) | def setCenterOfInterestPoint(cls, *args: Incomplete, **kwargs: Incompl... method hasSamePerspective (line 4661) | def hasSamePerspective(cls, *args: Incomplete, **kwargs: Incomplete) -... method copyViewFrom (line 4663) | def copyViewFrom(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getFilmFrustum (line 4665) | def getFilmFrustum(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getPortFieldOfView (line 4667) | def getPortFieldOfView(cls, *args: Incomplete, **kwargs: Incomplete) -... method getViewParameters (line 4669) | def getViewParameters(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getViewingFrustum (line 4671) | def getViewingFrustum(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getRenderingFrustum (line 4673) | def getRenderingFrustum(cls, *args: Incomplete, **kwargs: Incomplete) ... method setHorizontalFilmAperture (line 4675) | def setHorizontalFilmAperture(cls, *args: Incomplete, **kwargs: Incomp... method horizontalFilmAperture (line 4677) | def horizontalFilmAperture(cls, *args: Incomplete, **kwargs: Incomplet... method setVerticalFilmAperture (line 4679) | def setVerticalFilmAperture(cls, *args: Incomplete, **kwargs: Incomple... method verticalFilmAperture (line 4681) | def verticalFilmAperture(cls, *args: Incomplete, **kwargs: Incomplete)... method getFilmApertureLimits (line 4683) | def getFilmApertureLimits(cls, *args: Incomplete, **kwargs: Incomplete... method setAspectRatio (line 4685) | def setAspectRatio(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method aspectRatio (line 4687) | def aspectRatio(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getAspectRatioLimits (line 4689) | def getAspectRatioLimits(cls, *args: Incomplete, **kwargs: Incomplete)... method setVerticalLock (line 4691) | def setVerticalLock(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isVerticalLock (line 4693) | def isVerticalLock(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method horizontalFilmOffset (line 4695) | def horizontalFilmOffset(cls, *args: Incomplete, **kwargs: Incomplete)... method setHorizontalFilmOffset (line 4697) | def setHorizontalFilmOffset(cls, *args: Incomplete, **kwargs: Incomple... method verticalFilmOffset (line 4699) | def verticalFilmOffset(cls, *args: Incomplete, **kwargs: Incomplete) -... method setVerticalFilmOffset (line 4701) | def setVerticalFilmOffset(cls, *args: Incomplete, **kwargs: Incomplete... method shakeEnabled (line 4703) | def shakeEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setShakeEnabled (line 4705) | def setShakeEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method horizontalShake (line 4707) | def horizontalShake(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setHorizontalShake (line 4709) | def setHorizontalShake(cls, *args: Incomplete, **kwargs: Incomplete) -... method verticalShake (line 4711) | def verticalShake(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setVerticalShake (line 4713) | def setVerticalShake(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method shakeOverscanEnabled (line 4715) | def shakeOverscanEnabled(cls, *args: Incomplete, **kwargs: Incomplete)... method setShakeOverscanEnabled (line 4717) | def setShakeOverscanEnabled(cls, *args: Incomplete, **kwargs: Incomple... method shakeOverscan (line 4719) | def shakeOverscan(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setShakeOverscan (line 4721) | def setShakeOverscan(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method panZoomEnabled (line 4723) | def panZoomEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setPanZoomEnabled (line 4725) | def setPanZoomEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ->... method renderPanZoom (line 4727) | def renderPanZoom(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setRenderPanZoom (line 4729) | def setRenderPanZoom(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method horizontalPan (line 4731) | def horizontalPan(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setHorizontalPan (line 4733) | def setHorizontalPan(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method verticalPan (line 4735) | def verticalPan(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setVerticalPan (line 4737) | def setVerticalPan(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method zoom (line 4739) | def zoom(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setZoom (line 4741) | def setZoom(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method stereoHITEnabled (line 4743) | def stereoHITEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setStereoHITEnabled (line 4745) | def setStereoHITEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ... method stereoHIT (line 4747) | def stereoHIT(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setStereoHIT (line 4749) | def setStereoHIT(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setFilmFit (line 4751) | def setFilmFit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method filmFit (line 4753) | def filmFit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setFilmFitOffset (line 4755) | def setFilmFitOffset(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method filmFitOffset (line 4757) | def filmFitOffset(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setOverscan (line 4759) | def setOverscan(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method overscan (line 4761) | def overscan(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setHorizontalRollPivot (line 4763) | def setHorizontalRollPivot(cls, *args: Incomplete, **kwargs: Incomplet... method horizontalRollPivot (line 4765) | def horizontalRollPivot(cls, *args: Incomplete, **kwargs: Incomplete) ... method setVerticalRollPivot (line 4767) | def setVerticalRollPivot(cls, *args: Incomplete, **kwargs: Incomplete)... method verticalRollPivot (line 4769) | def verticalRollPivot(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setFilmRollValue (line 4771) | def setFilmRollValue(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method filmRollValue (line 4773) | def filmRollValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setFilmRollOrder (line 4775) | def setFilmRollOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method filmRollOrder (line 4777) | def filmRollOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setPreScale (line 4779) | def setPreScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method preScale (line 4781) | def preScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPostScale (line 4783) | def setPostScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method postScale (line 4785) | def postScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setFilmTranslateH (line 4787) | def setFilmTranslateH(cls, *args: Incomplete, **kwargs: Incomplete) ->... method filmTranslateH (line 4789) | def filmTranslateH(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setFilmTranslateV (line 4791) | def setFilmTranslateV(cls, *args: Incomplete, **kwargs: Incomplete) ->... method filmTranslateV (line 4793) | def filmTranslateV(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDisplayGateMask (line 4795) | def setDisplayGateMask(cls, *args: Incomplete, **kwargs: Incomplete) -... method isDisplayGateMask (line 4797) | def isDisplayGateMask(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setDisplayFilmGate (line 4799) | def setDisplayFilmGate(cls, *args: Incomplete, **kwargs: Incomplete) -... method isDisplayFilmGate (line 4801) | def isDisplayFilmGate(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setHorizontalFieldOfView (line 4803) | def setHorizontalFieldOfView(cls, *args: Incomplete, **kwargs: Incompl... method horizontalFieldOfView (line 4805) | def horizontalFieldOfView(cls, *args: Incomplete, **kwargs: Incomplete... method setVerticalFieldOfView (line 4807) | def setVerticalFieldOfView(cls, *args: Incomplete, **kwargs: Incomplet... method verticalFieldOfView (line 4809) | def verticalFieldOfView(cls, *args: Incomplete, **kwargs: Incomplete) ... method setFocalLength (line 4811) | def setFocalLength(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method focalLength (line 4813) | def focalLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getFocalLengthLimits (line 4815) | def getFocalLengthLimits(cls, *args: Incomplete, **kwargs: Incomplete)... method setLensSqueezeRatio (line 4817) | def setLensSqueezeRatio(cls, *args: Incomplete, **kwargs: Incomplete) ... method lensSqueezeRatio (line 4819) | def lensSqueezeRatio(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setClippingPlanes (line 4821) | def setClippingPlanes(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isClippingPlanes (line 4823) | def isClippingPlanes(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setNearClippingPlane (line 4825) | def setNearClippingPlane(cls, *args: Incomplete, **kwargs: Incomplete)... method nearClippingPlane (line 4827) | def nearClippingPlane(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setFarClippingPlane (line 4829) | def setFarClippingPlane(cls, *args: Incomplete, **kwargs: Incomplete) ... method farClippingPlane (line 4831) | def farClippingPlane(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setNearFarClippingPlanes (line 4833) | def setNearFarClippingPlanes(cls, *args: Incomplete, **kwargs: Incompl... method setDepthOfField (line 4835) | def setDepthOfField(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isDepthOfField (line 4837) | def isDepthOfField(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setFStop (line 4839) | def setFStop(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method fStop (line 4841) | def fStop(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setFocusDistance (line 4843) | def setFocusDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method focusDistance (line 4845) | def focusDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setNearFocusDistance (line 4847) | def setNearFocusDistance(cls, *args: Incomplete, **kwargs: Incomplete)... method nearFocusDistance (line 4849) | def nearFocusDistance(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setFarFocusDistance (line 4851) | def setFarFocusDistance(cls, *args: Incomplete, **kwargs: Incomplete) ... method farFocusDistance (line 4853) | def farFocusDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method computeDepthOfField (line 4855) | def computeDepthOfField(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMotionBlur (line 4857) | def setMotionBlur(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isMotionBlur (line 4859) | def isMotionBlur(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setShutterAngle (line 4861) | def setShutterAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method shutterAngle (line 4863) | def shutterAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCenterOfInterest (line 4865) | def setCenterOfInterest(cls, *args: Incomplete, **kwargs: Incomplete) ... method centerOfInterest (line 4867) | def centerOfInterest(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setIsOrtho (line 4869) | def setIsOrtho(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isOrtho (line 4871) | def isOrtho(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setOrthoWidth (line 4873) | def setOrthoWidth(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method orthoWidth (line 4875) | def orthoWidth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setCameraScale (line 4877) | def setCameraScale(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method cameraScale (line 4879) | def cameraScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setTumblePivot (line 4881) | def setTumblePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method tumblePivot (line 4883) | def tumblePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method unnormalizedNearClippingPlane (line 4885) | def unnormalizedNearClippingPlane(cls, *args: Incomplete, **kwargs: In... method unnormalizedFarClippingPlane (line 4887) | def unnormalizedFarClippingPlane(cls, *args: Incomplete, **kwargs: Inc... method setUsePivotAsLocalSpace (line 4889) | def setUsePivotAsLocalSpace(cls, *args: Incomplete, **kwargs: Incomple... method usePivotAsLocalSpace (line 4891) | def usePivotAsLocalSpace(cls, *args: Incomplete, **kwargs: Incomplete)... method postProjectionMatrix (line 4893) | def postProjectionMatrix(cls, *args: Incomplete, **kwargs: Incomplete)... method projectionMatrix (line 4895) | def projectionMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnComponent (line 4897) | class MFnComponent(MFnBase): method __swig_destroy__ (line 4901) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4903) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method elementCount (line 4905) | def elementCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method componentType (line 4907) | def componentType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isEmpty (line 4909) | def isEmpty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isEqual (line 4911) | def isEqual(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isComplete (line 4913) | def isComplete(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setComplete (line 4915) | def setComplete(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasWeights (line 4917) | def hasWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method weight (line 4919) | def weight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setWeight (line 4921) | def setWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setWeights (line 4923) | def setWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnComponentListData (line 4925) | class MFnComponentListData(MFnData): method __swig_destroy__ (line 4929) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4931) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 4933) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method has (line 4935) | def has(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __getitem__ (line 4937) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method add (line 4939) | def add(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method remove (line 4941) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method clear (line 4943) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 4945) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnCompoundAttribute (line 4947) | class MFnCompoundAttribute(MFnAttribute): method __swig_destroy__ (line 4951) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4953) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4955) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addChild (line 4957) | def addChild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method removeChild (line 4959) | def removeChild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numChildren (line 4961) | def numChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method child (line 4963) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getAddAttrCmds (line 4965) | def getAddAttrCmds(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnDirectionalLight (line 4967) | class MFnDirectionalLight(MFnNonExtendedLight): method __swig_destroy__ (line 4971) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4973) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4975) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method shadowAngle (line 4977) | def shadowAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setShadowAngle (line 4979) | def setShadowAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method useLightPosition (line 4981) | def useLightPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setUseLightPosition (line 4983) | def setUseLightPosition(cls, *args: Incomplete, **kwargs: Incomplete) ... class MFnCameraSet (line 4985) | class MFnCameraSet(MFnDependencyNode): method __swig_destroy__ (line 4989) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4991) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 4993) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method appendLayer (line 4995) | def appendLayer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method insertLayer (line 4997) | def insertLayer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deleteLayer (line 4999) | def deleteLayer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method clear (line 5001) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getNumLayers (line 5003) | def getNumLayers(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setLayerCamera (line 5005) | def setLayerCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getLayerCamera (line 5007) | def getLayerCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setLayerSceneData (line 5009) | def setLayerSceneData(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getLayerSceneData (line 5011) | def getLayerSceneData(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setLayerActive (line 5013) | def setLayerActive(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isLayerActive (line 5015) | def isLayerActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setLayerOrder (line 5017) | def setLayerOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getLayerOrder (line 5019) | def getLayerOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getSortedIndices (line 5021) | def getSortedIndices(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setLayerClearDepthValue (line 5023) | def setLayerClearDepthValue(cls, *args: Incomplete, **kwargs: Incomple... method getLayerClearDepthValue (line 5025) | def getLayerClearDepthValue(cls, *args: Incomplete, **kwargs: Incomple... class MFnDoubleArrayData (line 5027) | class MFnDoubleArrayData(MFnData): method __swig_destroy__ (line 5031) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5033) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 5035) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __getitem__ (line 5037) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method copyTo (line 5039) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 5041) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 5043) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 5045) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnDoubleIndexedComponent (line 5047) | class MFnDoubleIndexedComponent(MFnComponent): method __swig_destroy__ (line 5051) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5053) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5055) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addElement (line 5057) | def addElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addElements (line 5059) | def addElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getElement (line 5061) | def getElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getElements (line 5063) | def getElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCompleteData (line 5065) | def setCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getCompleteData (line 5067) | def getCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnEnumAttribute (line 5069) | class MFnEnumAttribute(MFnAttribute): method __swig_destroy__ (line 5073) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5075) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5077) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addField (line 5079) | def addField(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method fieldName (line 5081) | def fieldName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method fieldIndex (line 5083) | def fieldIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getMin (line 5085) | def getMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getMax (line 5087) | def getMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setDefault (line 5089) | def setDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getDefault (line 5091) | def getDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method defaultValue (line 5093) | def defaultValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnExpression (line 5095) | class MFnExpression(MFnDependencyNode): method __swig_destroy__ (line 5102) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5104) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5106) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method expression (line 5108) | def expression(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setExpression (line 5110) | def setExpression(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDefaultObject (line 5112) | def getDefaultObject(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setDefaultObject (line 5114) | def setDefaultObject(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isAnimated (line 5116) | def isAnimated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setAnimated (line 5118) | def setAnimated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method evaluate (line 5120) | def evaluate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method unitConversion (line 5122) | def unitConversion(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setUnitConversion (line 5124) | def setUnitConversion(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MFnFloatArrayData (line 5126) | class MFnFloatArrayData(MFnData): method __swig_destroy__ (line 5130) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5132) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 5134) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __getitem__ (line 5136) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method copyTo (line 5138) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 5140) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 5142) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 5144) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnGenericAttribute (line 5146) | class MFnGenericAttribute(MFnAttribute): method __swig_destroy__ (line 5150) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5152) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5154) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addDataAccept (line 5156) | def addDataAccept(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addNumericDataAccept (line 5158) | def addNumericDataAccept(cls, *args: Incomplete, **kwargs: Incomplete)... method addAccept (line 5160) | def addAccept(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method removeDataAccept (line 5162) | def removeDataAccept(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method removeNumericDataAccept (line 5164) | def removeNumericDataAccept(cls, *args: Incomplete, **kwargs: Incomple... method removeAccept (line 5166) | def removeAccept(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnGeometryData (line 5168) | class MFnGeometryData(MFnData): method __swig_destroy__ (line 5182) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5184) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setMatrix (line 5186) | def setMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getMatrix (line 5188) | def getMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method matrixIsIdentity (line 5190) | def matrixIsIdentity(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method matrixIsNotIdentity (line 5192) | def matrixIsNotIdentity(cls, *args: Incomplete, **kwargs: Incomplete) ... method hasObjectGroup (line 5194) | def hasObjectGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addObjectGroup (line 5196) | def addObjectGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method removeObjectGroup (line 5198) | def removeObjectGroup(cls, *args: Incomplete, **kwargs: Incomplete) ->... method changeObjectGroupId (line 5200) | def changeObjectGroupId(cls, *args: Incomplete, **kwargs: Incomplete) ... method objectGroupCount (line 5202) | def objectGroupCount(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method objectGroup (line 5204) | def objectGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method objectGroupType (line 5206) | def objectGroupType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method objectGroupComponent (line 5208) | def objectGroupComponent(cls, *args: Incomplete, **kwargs: Incomplete)... method setObjectGroupComponent (line 5210) | def setObjectGroupComponent(cls, *args: Incomplete, **kwargs: Incomple... method addObjectGroupComponent (line 5212) | def addObjectGroupComponent(cls, *args: Incomplete, **kwargs: Incomple... method removeObjectGroupComponent (line 5214) | def removeObjectGroupComponent(cls, *args: Incomplete, **kwargs: Incom... method objectGroupSubsetState (line 5216) | def objectGroupSubsetState(cls, *args: Incomplete, **kwargs: Incomplet... method copyObjectGroups (line 5218) | def copyObjectGroups(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method componentTags (line 5220) | def componentTags(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method hasComponentTag (line 5222) | def hasComponentTag(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method addComponentTag (line 5224) | def addComponentTag(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method removeComponentTag (line 5226) | def removeComponentTag(cls, *args: Incomplete, **kwargs: Incomplete) -... method renameComponentTag (line 5228) | def renameComponentTag(cls, *args: Incomplete, **kwargs: Incomplete) -... method componentTagContents (line 5230) | def componentTagContents(cls, *args: Incomplete, **kwargs: Incomplete)... method setComponentTagContents (line 5232) | def setComponentTagContents(cls, *args: Incomplete, **kwargs: Incomple... method componentTagType (line 5234) | def componentTagType(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method componentTagCategory (line 5236) | def componentTagCategory(cls, *args: Incomplete, **kwargs: Incomplete)... method componentTagExpressionSubsetState (line 5238) | def componentTagExpressionSubsetState(cls, *args: Incomplete, **kwargs... method resolveComponentTagExpression (line 5240) | def resolveComponentTagExpression(cls, *args: Incomplete, **kwargs: In... class MFnIntArrayData (line 5242) | class MFnIntArrayData(MFnData): method __swig_destroy__ (line 5246) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5248) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 5250) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __getitem__ (line 5252) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method copyTo (line 5254) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 5256) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 5258) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 5260) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnLatticeData (line 5262) | class MFnLatticeData(MFnGeometryData): method __swig_destroy__ (line 5266) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5268) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5270) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method lattice (line 5272) | def lattice(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnLayeredShader (line 5274) | class MFnLayeredShader(MFnDependencyNode): method __swig_destroy__ (line 5278) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5280) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5282) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method compositingFlag (line 5284) | def compositingFlag(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setCompositingFlag (line 5286) | def setCompositingFlag(cls, *args: Incomplete, **kwargs: Incomplete) -... method color (line 5288) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setColor (line 5290) | def setColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method transparency (line 5292) | def transparency(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setTransparency (line 5294) | def setTransparency(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glowColor (line 5296) | def glowColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setGlowColor (line 5298) | def setGlowColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method hardwareColor (line 5300) | def hardwareColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setHardwareColor (line 5302) | def setHardwareColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hardwareShader (line 5304) | def hardwareShader(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setHardwareShader (line 5306) | def setHardwareShader(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MFnLightDataAttribute (line 5308) | class MFnLightDataAttribute(MFnAttribute): method __swig_destroy__ (line 5312) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5314) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5316) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getDefault (line 5318) | def getDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDefault (line 5320) | def setDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method child (line 5322) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MFnMatrixArrayData (line 5324) | class MFnMatrixArrayData(MFnData): method __swig_destroy__ (line 5328) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5330) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 5332) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 5334) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 5336) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 5338) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 5340) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnMatrixAttribute (line 5342) | class MFnMatrixAttribute(MFnAttribute): method __swig_destroy__ (line 5348) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5350) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5352) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getDefault (line 5354) | def getDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDefault (line 5356) | def setDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnMatrixData (line 5358) | class MFnMatrixData(MFnData): method __swig_destroy__ (line 5362) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5364) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isTransformation (line 5366) | def isTransformation(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method transformation (line 5368) | def transformation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method matrix (line 5370) | def matrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 5372) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5374) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnMeshData (line 5376) | class MFnMeshData(MFnGeometryData): method __swig_destroy__ (line 5380) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5382) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5384) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnMesh (line 5389) | class MFnMesh(MFnDagNode): method __swig_destroy__ (line 5408) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5410) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getSmoothMeshDisplayOptions (line 5412) | def getSmoothMeshDisplayOptions(cls, *args: Incomplete, **kwargs: Inco... method setSmoothMeshDisplayOptions (line 5414) | def setSmoothMeshDisplayOptions(cls, *args: Incomplete, **kwargs: Inco... method addPolygon (line 5416) | def addPolygon(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addHoles (line 5418) | def addHoles(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method deleteFace (line 5420) | def deleteFace(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method deleteEdge (line 5422) | def deleteEdge(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method deleteVertex (line 5424) | def deleteVertex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method split (line 5426) | def split(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method subdivideFaces (line 5428) | def subdivideFaces(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method subdivideEdges (line 5430) | def subdivideEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method extrudeFaces (line 5432) | def extrudeFaces(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method extrudeEdges (line 5434) | def extrudeEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method duplicateFaces (line 5436) | def duplicateFaces(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method extractFaces (line 5438) | def extractFaces(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method collapseFaces (line 5440) | def collapseFaces(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method collapseEdges (line 5442) | def collapseEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method numVertices (line 5444) | def numVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numEdges (line 5446) | def numEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numPolygons (line 5448) | def numPolygons(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numFaceVertices (line 5450) | def numFaceVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method polygonVertexCount (line 5452) | def polygonVertexCount(cls, *args: Incomplete, **kwargs: Incomplete) -... method numUVs (line 5454) | def numUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method numColors (line 5456) | def numColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method numNormals (line 5458) | def numNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasColorChannels (line 5460) | def hasColorChannels(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hasAlphaChannels (line 5462) | def hasAlphaChannels(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getColorRepresentation (line 5464) | def getColorRepresentation(cls, *args: Incomplete, **kwargs: Incomplet... method isColorClamped (line 5466) | def isColorClamped(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setIsColorClamped (line 5468) | def setIsColorClamped(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getTriangles (line 5470) | def getTriangles(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getTriangleOffsets (line 5472) | def getTriangleOffsets(cls, *args: Incomplete, **kwargs: Incomplete) -... method booleanOp (line 5474) | def booleanOp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method booleanOps (line 5476) | def booleanOps(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method uniformGridParams (line 5478) | def uniformGridParams(*args: Incomplete, **kwargs: Incomplete) -> Inco... method autoUniformGridParams (line 5480) | def autoUniformGridParams(*args: Incomplete, **kwargs: Incomplete) -> ... method closestIntersection (line 5482) | def closestIntersection(cls, *args: Incomplete, **kwargs: Incomplete) ... method anyIntersection (line 5484) | def anyIntersection(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method allIntersections (line 5486) | def allIntersections(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sortIntersectionFaceTriIds (line 5488) | def sortIntersectionFaceTriIds(cls, *args: Incomplete, **kwargs: Incom... method freeCachedIntersectionAccelerator (line 5490) | def freeCachedIntersectionAccelerator(cls, *args: Incomplete, **kwargs... method cachedIntersectionAcceleratorInfo (line 5492) | def cachedIntersectionAcceleratorInfo(cls, *args: Incomplete, **kwargs... method globalIntersectionAcceleratorsInfo (line 5494) | def globalIntersectionAcceleratorsInfo(*args: Incomplete, **kwargs: In... method clearGlobalIntersectionAcceleratorInfo (line 5496) | def clearGlobalIntersectionAcceleratorInfo(*args: Incomplete, **kwargs... method intersect (line 5498) | def intersect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getClosestPointAndNormal (line 5500) | def getClosestPointAndNormal(cls, *args: Incomplete, **kwargs: Incompl... method getClosestPoint (line 5502) | def getClosestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getClosestNormal (line 5504) | def getClosestNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getClosestUVs (line 5506) | def getClosestUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method intersectFaceAtUV (line 5508) | def intersectFaceAtUV(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedShaders (line 5510) | def getConnectedShaders(cls, *args: Incomplete, **kwargs: Incomplete) ... method copy (line 5512) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method updateSurface (line 5514) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method syncObject (line 5516) | def syncObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getRawPoints (line 5518) | def getRawPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getRawDoublePoints (line 5520) | def getRawDoublePoints(cls, *args: Incomplete, **kwargs: Incomplete) -... method getRawNormals (line 5522) | def getRawNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getRawUVs (line 5524) | def getRawUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getPoints (line 5526) | def getPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setPoints (line 5528) | def setPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getVertices (line 5530) | def getVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPolygonVertices (line 5532) | def getPolygonVertices(cls, *args: Incomplete, **kwargs: Incomplete) -... method getPolygonTriangleVertices (line 5534) | def getPolygonTriangleVertices(cls, *args: Incomplete, **kwargs: Incom... method setPoint (line 5536) | def setPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getPoint (line 5538) | def getPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getNormals (line 5540) | def getNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setNormals (line 5542) | def setNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getFaceVertexNormal (line 5544) | def getFaceVertexNormal(cls, *args: Incomplete, **kwargs: Incomplete) ... method getFaceVertexNormals (line 5546) | def getFaceVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete)... method getNormalIds (line 5548) | def getNormalIds(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getFaceNormalIds (line 5550) | def getFaceNormalIds(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setFaceVertexNormal (line 5552) | def setFaceVertexNormal(cls, *args: Incomplete, **kwargs: Incomplete) ... method setVertexNormal (line 5554) | def setVertexNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setFaceVertexNormals (line 5556) | def setFaceVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete)... method setVertexNormals (line 5558) | def setVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getVertexNormal (line 5560) | def getVertexNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getVertexNormals (line 5562) | def getVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getPolygonNormal (line 5564) | def getPolygonNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isNormalLocked (line 5566) | def isNormalLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method lockVertexNormals (line 5568) | def lockVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete) ->... method lockFaceVertexNormals (line 5570) | def lockFaceVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete... method unlockVertexNormals (line 5572) | def unlockVertexNormals(cls, *args: Incomplete, **kwargs: Incomplete) ... method unlockFaceVertexNormals (line 5574) | def unlockFaceVertexNormals(cls, *args: Incomplete, **kwargs: Incomple... method getTangentId (line 5576) | def getTangentId(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getTangents (line 5578) | def getTangents(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getFaceVertexTangent (line 5580) | def getFaceVertexTangent(cls, *args: Incomplete, **kwargs: Incomplete)... method getFaceVertexTangents (line 5582) | def getFaceVertexTangents(cls, *args: Incomplete, **kwargs: Incomplete... method getBinormals (line 5584) | def getBinormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getFaceVertexBinormal (line 5586) | def getFaceVertexBinormal(cls, *args: Incomplete, **kwargs: Incomplete... method getFaceVertexBinormals (line 5588) | def getFaceVertexBinormals(cls, *args: Incomplete, **kwargs: Incomplet... method isRightHandedTangent (line 5590) | def isRightHandedTangent(cls, *args: Incomplete, **kwargs: Incomplete)... method isPolygonConvex (line 5592) | def isPolygonConvex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method edgeBorderInfo (line 5594) | def edgeBorderInfo(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getUVBorderEdges (line 5596) | def getUVBorderEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getEdgeVertices (line 5598) | def getEdgeVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isEdgeSmooth (line 5600) | def isEdgeSmooth(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setEdgeSmoothing (line 5602) | def setEdgeSmoothing(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setEdgeSmoothings (line 5604) | def setEdgeSmoothings(cls, *args: Incomplete, **kwargs: Incomplete) ->... method cleanupEdgeSmoothing (line 5606) | def cleanupEdgeSmoothing(cls, *args: Incomplete, **kwargs: Incomplete)... method getCreaseEdges (line 5608) | def getCreaseEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setCreaseEdges (line 5610) | def setCreaseEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getInvisibleFaces (line 5612) | def getInvisibleFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setInvisibleFaces (line 5614) | def setInvisibleFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getCreaseVertices (line 5616) | def getCreaseVertices(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setCreaseVertices (line 5618) | def setCreaseVertices(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numUVSets (line 5620) | def numUVSets(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method createUVSetWithName (line 5622) | def createUVSetWithName(cls, *args: Incomplete, **kwargs: Incomplete) ... method createUVSetDataMeshWithName (line 5624) | def createUVSetDataMeshWithName(cls, *args: Incomplete, **kwargs: Inco... method copyUVSetWithName (line 5626) | def copyUVSetWithName(cls, *args: Incomplete, **kwargs: Incomplete) ->... method renameUVSet (line 5628) | def renameUVSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deleteUVSet (line 5630) | def deleteUVSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCurrentUVSetName (line 5632) | def setCurrentUVSetName(cls, *args: Incomplete, **kwargs: Incomplete) ... method currentUVSetName (line 5634) | def currentUVSetName(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getUVSetNames (line 5636) | def getUVSetNames(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getUVSetFamilyNames (line 5638) | def getUVSetFamilyNames(cls, *args: Incomplete, **kwargs: Incomplete) ... method getUVSetsInFamily (line 5640) | def getUVSetsInFamily(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isUVSetPerInstance (line 5642) | def isUVSetPerInstance(cls, *args: Incomplete, **kwargs: Incomplete) -... method getFaceUVSetNames (line 5644) | def getFaceUVSetNames(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getAssociatedUVSetTextures (line 5646) | def getAssociatedUVSetTextures(cls, *args: Incomplete, **kwargs: Incom... method getAssociatedUVSetInstances (line 5648) | def getAssociatedUVSetInstances(cls, *args: Incomplete, **kwargs: Inco... method setUVs (line 5650) | def setUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setSomeUVs (line 5652) | def setSomeUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getUVs (line 5654) | def getUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUV (line 5656) | def setUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getUV (line 5658) | def getUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getPointAtUV (line 5660) | def getPointAtUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getPointsAtUV (line 5662) | def getPointsAtUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getUVAtPoint (line 5664) | def getUVAtPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getAxisAtPoint (line 5666) | def getAxisAtPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getPolygonUV (line 5668) | def getPolygonUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getPolygonUVid (line 5670) | def getPolygonUVid(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method assignUV (line 5672) | def assignUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method assignUVs (line 5674) | def assignUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method clearUVs (line 5676) | def clearUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getAssignedUVs (line 5678) | def getAssignedUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getUvShellsIds (line 5680) | def getUvShellsIds(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getMeshShellsIds (line 5682) | def getMeshShellsIds(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getPinUVs (line 5684) | def getPinUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setPinUVs (line 5686) | def setPinUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isPolygonUVReversed (line 5688) | def isPolygonUVReversed(cls, *args: Incomplete, **kwargs: Incomplete) ... method numColorSets (line 5690) | def numColorSets(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method deleteColorSet (line 5692) | def deleteColorSet(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setCurrentColorSetName (line 5694) | def setCurrentColorSetName(cls, *args: Incomplete, **kwargs: Incomplet... method currentColorSetName (line 5696) | def currentColorSetName(cls, *args: Incomplete, **kwargs: Incomplete) ... method getColorSetNames (line 5698) | def getColorSetNames(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getColorSetFamilyNames (line 5700) | def getColorSetFamilyNames(cls, *args: Incomplete, **kwargs: Incomplet... method getColorSetsInFamily (line 5702) | def getColorSetsInFamily(cls, *args: Incomplete, **kwargs: Incomplete)... method isColorSetPerInstance (line 5704) | def isColorSetPerInstance(cls, *args: Incomplete, **kwargs: Incomplete... method getAssociatedColorSetInstances (line 5706) | def getAssociatedColorSetInstances(cls, *args: Incomplete, **kwargs: I... method setFaceColor (line 5708) | def setFaceColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setVertexColor (line 5710) | def setVertexColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setFaceVertexColor (line 5712) | def setFaceVertexColor(cls, *args: Incomplete, **kwargs: Incomplete) -... method setFaceColors (line 5714) | def setFaceColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setVertexColors (line 5716) | def setVertexColors(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setFaceVertexColors (line 5718) | def setFaceVertexColors(cls, *args: Incomplete, **kwargs: Incomplete) ... method removeFaceColors (line 5720) | def removeFaceColors(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method removeVertexColors (line 5722) | def removeVertexColors(cls, *args: Incomplete, **kwargs: Incomplete) -... method removeFaceVertexColors (line 5724) | def removeFaceVertexColors(cls, *args: Incomplete, **kwargs: Incomplet... method getVertexColors (line 5726) | def getVertexColors(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getFaceVertexColors (line 5728) | def getFaceVertexColors(cls, *args: Incomplete, **kwargs: Incomplete) ... method getFaceVertexColorIndex (line 5730) | def getFaceVertexColorIndex(cls, *args: Incomplete, **kwargs: Incomple... method setColors (line 5732) | def setColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setSomeColors (line 5734) | def setSomeColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getColors (line 5736) | def getColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getColorIndex (line 5738) | def getColorIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setColor (line 5740) | def setColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColor (line 5742) | def getColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method assignColor (line 5744) | def assignColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method assignColors (line 5746) | def assignColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method clearColors (line 5748) | def clearColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method displayColors (line 5750) | def displayColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDisplayColors (line 5752) | def setDisplayColors(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getHoles (line 5754) | def getHoles(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method onBoundary (line 5756) | def onBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isBlindDataTypeUsed (line 5758) | def isBlindDataTypeUsed(cls, *args: Incomplete, **kwargs: Incomplete) ... method createBlindDataType (line 5760) | def createBlindDataType(cls, *args: Incomplete, **kwargs: Incomplete) ... method hasBlindDataComponentId (line 5762) | def hasBlindDataComponentId(cls, *args: Incomplete, **kwargs: Incomple... method hasBlindData (line 5764) | def hasBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getBlindDataTypes (line 5766) | def getBlindDataTypes(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getBlindDataAttrNames (line 5768) | def getBlindDataAttrNames(cls, *args: Incomplete, **kwargs: Incomplete... method getFaceVertexBlindDataIndex (line 5770) | def getFaceVertexBlindDataIndex(cls, *args: Incomplete, **kwargs: Inco... method getBlindDataFaceVertexIndices (line 5772) | def getBlindDataFaceVertexIndices(cls, *args: Incomplete, **kwargs: In... method getIntBlindData (line 5774) | def getIntBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getFloatBlindData (line 5776) | def getFloatBlindData(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getDoubleBlindData (line 5778) | def getDoubleBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -... method getBoolBlindData (line 5780) | def getBoolBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method stringBlindDataComponentId (line 5782) | def stringBlindDataComponentId(cls, *args: Incomplete, **kwargs: Incom... method getStringBlindData (line 5784) | def getStringBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -... method binaryBlindDataComponentId (line 5786) | def binaryBlindDataComponentId(cls, *args: Incomplete, **kwargs: Incom... method getBinaryBlindData (line 5788) | def getBinaryBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -... method setIntBlindData (line 5790) | def setIntBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setFloatBlindData (line 5792) | def setFloatBlindData(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setDoubleBlindData (line 5794) | def setDoubleBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -... method setBoolBlindData (line 5796) | def setBoolBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setStringBlindData (line 5798) | def setStringBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -... method setBinaryBlindData (line 5800) | def setBinaryBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -... method clearBlindData (line 5802) | def clearBlindData(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method componentTypeName (line 5804) | def componentTypeName(*args: Incomplete, **kwargs: Incomplete) -> Inco... method componentTypeFromName (line 5806) | def componentTypeFromName(*args: Incomplete, **kwargs: Incomplete) -> ... method setCheckSamePointTwice (line 5808) | def setCheckSamePointTwice(cls, *args: Incomplete, **kwargs: Incomplet... method getCheckSamePointTwice (line 5810) | def getCheckSamePointTwice(cls, *args: Incomplete, **kwargs: Incomplet... method copyInPlace (line 5812) | def copyInPlace(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method polyTriangulate (line 5814) | def polyTriangulate(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method createColorSetWithName (line 5816) | def createColorSetWithName(cls, *args: Incomplete, **kwargs: Incomplet... method generateSmoothMesh (line 5818) | def generateSmoothMesh(cls, *args: Incomplete, **kwargs: Incomplete) -... method createColorSetDataMesh (line 5820) | def createColorSetDataMesh(cls, *args: Incomplete, **kwargs: Incomplet... method createColorSetWithNameDataMesh (line 5822) | def createColorSetWithNameDataMesh(cls, *args: Incomplete, **kwargs: I... method create (line 5824) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method createInPlace (line 5826) | def createInPlace(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MMeshIsectAccelParams (line 5828) | class MMeshIsectAccelParams: method __swig_destroy__ (line 5832) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnMessageAttribute (line 5834) | class MFnMessageAttribute(MFnAttribute): method __swig_destroy__ (line 5838) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5840) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5842) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnNumericAttribute (line 5844) | class MFnNumericAttribute(MFnAttribute): method __swig_destroy__ (line 5848) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5850) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method createColor (line 5852) | def createColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method createPoint (line 5854) | def createPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method createAddr (line 5856) | def createAddr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method create (line 5858) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method unitType (line 5860) | def unitType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method child (line 5862) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method hasMin (line 5864) | def hasMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method hasMax (line 5866) | def hasMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method hasSoftMin (line 5868) | def hasSoftMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasSoftMax (line 5870) | def hasSoftMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getMin (line 5872) | def getMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getMax (line 5874) | def getMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getSoftMin (line 5876) | def getSoftMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getSoftMax (line 5878) | def getSoftMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMin (line 5880) | def setMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setMax (line 5882) | def setMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setSoftMin (line 5884) | def setSoftMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setSoftMax (line 5886) | def setSoftMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getDefault (line 5888) | def getDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDefault (line 5890) | def setDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnNumericData (line 5892) | class MFnNumericData(MFnData): method __swig_destroy__ (line 5919) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5921) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5923) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method numericType (line 5925) | def numericType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getData2Short (line 5927) | def getData2Short(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getData2Int (line 5929) | def getData2Int(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getData2Float (line 5931) | def getData2Float(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getData2Double (line 5933) | def getData2Double(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getData3Short (line 5935) | def getData3Short(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getData3Int (line 5937) | def getData3Int(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getData3Float (line 5939) | def getData3Float(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getData3Double (line 5941) | def getData3Double(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getData4Double (line 5943) | def getData4Double(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setData2Short (line 5945) | def setData2Short(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setData2Int (line 5947) | def setData2Int(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setData2Float (line 5949) | def setData2Float(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setData2Double (line 5951) | def setData2Double(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setData3Short (line 5953) | def setData3Short(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setData3Int (line 5955) | def setData3Int(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setData3Float (line 5957) | def setData3Float(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setData3Double (line 5959) | def setData3Double(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setData4Double (line 5961) | def setData4Double(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnNurbsCurveData (line 5963) | class MFnNurbsCurveData(MFnGeometryData): method __swig_destroy__ (line 5967) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5969) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 5971) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnNurbsCurve (line 5974) | class MFnNurbsCurve(MFnDagNode): method __swig_destroy__ (line 5983) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 5985) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method createWithEditPoints (line 5987) | def createWithEditPoints(cls, *args: Incomplete, **kwargs: Incomplete)... method create (line 5989) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 5991) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reverse (line 5993) | def reverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method makeMultipleEndKnots (line 5995) | def makeMultipleEndKnots(cls, *args: Incomplete, **kwargs: Incomplete)... method cv (line 5997) | def cv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getCV (line 5999) | def getCV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setCV (line 6001) | def setCV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method form (line 6003) | def form(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method degree (line 6005) | def degree(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method numCVs (line 6007) | def numCVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method numSpans (line 6009) | def numSpans(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numKnots (line 6011) | def numKnots(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getKnotDomain (line 6013) | def getKnotDomain(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getKnots (line 6015) | def getKnots(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setKnots (line 6017) | def setKnots(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setKnot (line 6019) | def setKnot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method cvs (line 6021) | def cvs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getCVs (line 6023) | def getCVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setCVs (line 6025) | def setCVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method knot (line 6027) | def knot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method removeKnot (line 6029) | def removeKnot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isPointOnCurve (line 6031) | def isPointOnCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getPointAtParam (line 6033) | def getPointAtParam(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getParamAtPoint (line 6035) | def getParamAtPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isParamOnCurve (line 6037) | def isParamOnCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method normal (line 6039) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method tangent (line 6041) | def tangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getDerivativesAtParm (line 6043) | def getDerivativesAtParm(cls, *args: Incomplete, **kwargs: Incomplete)... method isPlanar (line 6045) | def isPlanar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method closestPoint (line 6047) | def closestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method distanceToPoint (line 6049) | def distanceToPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method area (line 6051) | def area(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 6053) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method findParamFromLength (line 6055) | def findParamFromLength(cls, *args: Incomplete, **kwargs: Incomplete) ... method findLengthFromParam (line 6057) | def findLengthFromParam(cls, *args: Incomplete, **kwargs: Incomplete) ... method hasHistoryOnCreate (line 6059) | def hasHistoryOnCreate(cls, *args: Incomplete, **kwargs: Incomplete) -... method updateCurve (line 6061) | def updateCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rebuild (line 6063) | def rebuild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnNurbsSurfaceData (line 6065) | class MFnNurbsSurfaceData(MFnGeometryData): method __swig_destroy__ (line 6069) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6071) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6073) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnNurbsSurface (line 6075) | class MFnNurbsSurface(MFnDagNode): method __swig_destroy__ (line 6089) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6091) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6093) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 6095) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getDataObject (line 6097) | def getDataObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method cv (line 6099) | def cv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method cvsInU (line 6101) | def cvsInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method cvsInV (line 6103) | def cvsInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getCVs (line 6105) | def getCVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setCVs (line 6107) | def setCVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getCV (line 6109) | def getCV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setCV (line 6111) | def setCV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method formInU (line 6113) | def formInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method formInV (line 6115) | def formInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isBezier (line 6117) | def isBezier(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isUniform (line 6119) | def isUniform(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isKnotU (line 6121) | def isKnotU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isKnotV (line 6123) | def isKnotV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isParamOnSurface (line 6125) | def isParamOnSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getKnotDomain (line 6127) | def getKnotDomain(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method degreeU (line 6129) | def degreeU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method degreeV (line 6131) | def degreeV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method numSpansInU (line 6133) | def numSpansInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numSpansInV (line 6135) | def numSpansInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numNonZeroSpansInU (line 6137) | def numNonZeroSpansInU(cls, *args: Incomplete, **kwargs: Incomplete) -... method numNonZeroSpansInV (line 6139) | def numNonZeroSpansInV(cls, *args: Incomplete, **kwargs: Incomplete) -... method numCVsInU (line 6141) | def numCVsInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method numCVsInV (line 6143) | def numCVsInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method numKnotsInU (line 6145) | def numKnotsInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numKnotsInV (line 6147) | def numKnotsInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getKnotsInU (line 6149) | def getKnotsInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getKnotsInV (line 6151) | def getKnotsInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setKnotsInU (line 6153) | def setKnotsInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setKnotsInV (line 6155) | def setKnotsInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method knotInU (line 6157) | def knotInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method knotInV (line 6159) | def knotInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setKnotInU (line 6161) | def setKnotInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setKnotInV (line 6163) | def setKnotInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method removeKnotInU (line 6165) | def removeKnotInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method removeKnotInV (line 6167) | def removeKnotInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method removeOneKnotInU (line 6169) | def removeOneKnotInU(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method removeOneKnotInV (line 6171) | def removeOneKnotInV(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method normal (line 6173) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getTangents (line 6175) | def getTangents(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getDerivativesAtParm (line 6177) | def getDerivativesAtParm(cls, *args: Incomplete, **kwargs: Incomplete)... method isFoldedOnBispan (line 6179) | def isFoldedOnBispan(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method area (line 6181) | def area(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method closestPoint (line 6183) | def closestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isPointOnSurface (line 6185) | def isPointOnSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getPointAtParam (line 6187) | def getPointAtParam(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method distanceToPoint (line 6189) | def distanceToPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method intersect (line 6191) | def intersect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasHistoryOnCreate (line 6193) | def hasHistoryOnCreate(cls, *args: Incomplete, **kwargs: Incomplete) -... method updateSurface (line 6195) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isTrimmedSurface (line 6197) | def isTrimmedSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method numRegions (line 6199) | def numRegions(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isFlipNorm (line 6201) | def isFlipNorm(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method numBoundaries (line 6203) | def numBoundaries(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method boundaryType (line 6205) | def boundaryType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method numEdges (line 6207) | def numEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method edge (line 6209) | def edge(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isPointInTrimmedRegion (line 6211) | def isPointInTrimmedRegion(cls, *args: Incomplete, **kwargs: Incomplet... method getTrimBoundaries (line 6213) | def getTrimBoundaries(cls, *args: Incomplete, **kwargs: Incomplete) ->... method trimWithBoundaries (line 6215) | def trimWithBoundaries(cls, *args: Incomplete, **kwargs: Incomplete) -... method projectCurve (line 6217) | def projectCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method trim (line 6219) | def trim(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method numPatches (line 6221) | def numPatches(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method numPatchesInU (line 6223) | def numPatchesInU(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method numPatchesInV (line 6225) | def numPatchesInV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method numUVs (line 6227) | def numUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUVs (line 6229) | def setUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVs (line 6231) | def getUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUV (line 6233) | def setUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getUV (line 6235) | def getUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getPatchUV (line 6237) | def getPatchUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getPatchUVs (line 6239) | def getPatchUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPatchUVid (line 6241) | def getPatchUVid(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method assignUV (line 6243) | def assignUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method assignUVs (line 6245) | def assignUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method clearUVs (line 6247) | def clearUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getAssignedUVs (line 6249) | def getAssignedUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getConnectedShaders (line 6251) | def getConnectedShaders(cls, *args: Incomplete, **kwargs: Incomplete) ... method getParamAtPoint (line 6253) | def getParamAtPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method tesselate (line 6255) | def tesselate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MFnPartition (line 6257) | class MFnPartition(MFnDependencyNode): method __swig_destroy__ (line 6267) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6269) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6271) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isRenderPartition (line 6273) | def isRenderPartition(cls, *args: Incomplete, **kwargs: Incomplete) ->... method addMember (line 6275) | def addMember(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method removeMember (line 6277) | def removeMember(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnPhongEShader (line 6279) | class MFnPhongEShader(MFnDependencyNode): method __swig_destroy__ (line 6283) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6285) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6287) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method roughness (line 6289) | def roughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setRoughness (line 6291) | def setRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method highlightSize (line 6293) | def highlightSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setHighlightSize (line 6295) | def setHighlightSize(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method whiteness (line 6297) | def whiteness(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setWhiteness (line 6299) | def setWhiteness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnPhongShader (line 6301) | class MFnPhongShader(MFnReflectShader): method __swig_destroy__ (line 6305) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6307) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6309) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method cosPower (line 6311) | def cosPower(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setCosPower (line 6313) | def setCosPower(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnPluginData (line 6315) | class MFnPluginData(MFnData): method __swig_destroy__ (line 6319) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6321) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method typeId (line 6323) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method data (line 6325) | def data(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method constData (line 6327) | def constData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method create (line 6329) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnPointArrayData (line 6331) | class MFnPointArrayData(MFnData): method __swig_destroy__ (line 6335) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6337) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 6339) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 6341) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 6343) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 6345) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 6347) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnPointLight (line 6349) | class MFnPointLight(MFnNonExtendedLight): method __swig_destroy__ (line 6353) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6355) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6357) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnSet (line 6359) | class MFnSet(MFnDependencyNode): method __swig_destroy__ (line 6369) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6371) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6373) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUnion (line 6375) | def getUnion(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getIntersection (line 6377) | def getIntersection(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method clear (line 6379) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getMembers (line 6381) | def getMembers(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addMember (line 6383) | def addMember(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method addMembers (line 6385) | def addMembers(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method removeMember (line 6387) | def removeMember(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method removeMembers (line 6389) | def removeMembers(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isMember (line 6391) | def isMember(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method intersectsWith (line 6393) | def intersectsWith(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method hasRestrictions (line 6395) | def hasRestrictions(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method restriction (line 6397) | def restriction(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method annotation (line 6399) | def annotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setAnnotation (line 6401) | def setAnnotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getMemberPaths (line 6403) | def getMemberPaths(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnSingleIndexedComponent (line 6405) | class MFnSingleIndexedComponent(MFnComponent): method __swig_destroy__ (line 6409) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6411) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6413) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addElement (line 6415) | def addElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addElements (line 6417) | def addElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method elementMax (line 6419) | def elementMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method element (line 6421) | def element(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getElements (line 6423) | def getElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCompleteData (line 6425) | def setCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getCompleteData (line 6427) | def getCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnSphereData (line 6429) | class MFnSphereData(MFnData): method __swig_destroy__ (line 6433) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6435) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6437) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method radius (line 6439) | def radius(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setRadius (line 6441) | def setRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MFnSpotLight (line 6443) | class MFnSpotLight(MFnNonExtendedLight): method __swig_destroy__ (line 6454) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6456) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6458) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method coneAngle (line 6460) | def coneAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setConeAngle (line 6462) | def setConeAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method penumbraAngle (line 6464) | def penumbraAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setPenumbraAngle (line 6466) | def setPenumbraAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method dropOff (line 6468) | def dropOff(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setDropOff (line 6470) | def setDropOff(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method barnDoors (line 6472) | def barnDoors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setBarnDoors (line 6474) | def setBarnDoors(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method barnDoorAngle (line 6476) | def barnDoorAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setBarnDoorAngle (line 6478) | def setBarnDoorAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method useDecayRegions (line 6480) | def useDecayRegions(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setUseDecayRegions (line 6482) | def setUseDecayRegions(cls, *args: Incomplete, **kwargs: Incomplete) -... method startDistance (line 6484) | def startDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setStartDistance (line 6486) | def setStartDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method endDistance (line 6488) | def endDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setEndDistance (line 6490) | def setEndDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnStandardSurfaceShader (line 6492) | class MFnStandardSurfaceShader(MFnDependencyNode): method __swig_destroy__ (line 6496) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6498) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6500) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method base (line 6502) | def base(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setBase (line 6504) | def setBase(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method baseColor (line 6506) | def baseColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setBaseColor (line 6508) | def setBaseColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method diffuseRoughness (line 6510) | def diffuseRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setDiffuseRoughness (line 6512) | def setDiffuseRoughness(cls, *args: Incomplete, **kwargs: Incomplete) ... method metalness (line 6514) | def metalness(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMetalness (line 6516) | def setMetalness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method specular (line 6518) | def specular(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setSpecular (line 6520) | def setSpecular(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method specularColor (line 6522) | def specularColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setSpecularColor (line 6524) | def setSpecularColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method specularRoughness (line 6526) | def specularRoughness(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setSpecularRoughness (line 6528) | def setSpecularRoughness(cls, *args: Incomplete, **kwargs: Incomplete)... method specularIOR (line 6530) | def specularIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSpecularIOR (line 6532) | def setSpecularIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method specularAnisotropy (line 6534) | def specularAnisotropy(cls, *args: Incomplete, **kwargs: Incomplete) -... method setSpecularAnisotropy (line 6536) | def setSpecularAnisotropy(cls, *args: Incomplete, **kwargs: Incomplete... method specularRotation (line 6538) | def specularRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setSpecularRotation (line 6540) | def setSpecularRotation(cls, *args: Incomplete, **kwargs: Incomplete) ... method transmission (line 6542) | def transmission(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setTransmission (line 6544) | def setTransmission(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method transmissionColor (line 6546) | def transmissionColor(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setTransmissionColor (line 6548) | def setTransmissionColor(cls, *args: Incomplete, **kwargs: Incomplete)... method transmissionDepth (line 6550) | def transmissionDepth(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setTransmissionDepth (line 6552) | def setTransmissionDepth(cls, *args: Incomplete, **kwargs: Incomplete)... method transmissionScatter (line 6554) | def transmissionScatter(cls, *args: Incomplete, **kwargs: Incomplete) ... method setTransmissionScatter (line 6556) | def setTransmissionScatter(cls, *args: Incomplete, **kwargs: Incomplet... method transmissionScatterAnisotropy (line 6558) | def transmissionScatterAnisotropy(cls, *args: Incomplete, **kwargs: In... method setTransmissionScatterAnisotropy (line 6560) | def setTransmissionScatterAnisotropy(cls, *args: Incomplete, **kwargs:... method transmissionDispersion (line 6562) | def transmissionDispersion(cls, *args: Incomplete, **kwargs: Incomplet... method setTransmissionDispersion (line 6564) | def setTransmissionDispersion(cls, *args: Incomplete, **kwargs: Incomp... method transmissionExtraRoughness (line 6566) | def transmissionExtraRoughness(cls, *args: Incomplete, **kwargs: Incom... method setTransmissionExtraRoughness (line 6568) | def setTransmissionExtraRoughness(cls, *args: Incomplete, **kwargs: In... method subsurface (line 6570) | def subsurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setSubsurface (line 6572) | def setSubsurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method subsurfaceColor (line 6574) | def subsurfaceColor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSubsurfaceColor (line 6576) | def setSubsurfaceColor(cls, *args: Incomplete, **kwargs: Incomplete) -... method subsurfaceRadius (line 6578) | def subsurfaceRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setSubsurfaceRadius (line 6580) | def setSubsurfaceRadius(cls, *args: Incomplete, **kwargs: Incomplete) ... method subsurfaceScale (line 6582) | def subsurfaceScale(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSubsurfaceScale (line 6584) | def setSubsurfaceScale(cls, *args: Incomplete, **kwargs: Incomplete) -... method subsurfaceAnisotropy (line 6586) | def subsurfaceAnisotropy(cls, *args: Incomplete, **kwargs: Incomplete)... method setSubsurfaceAnisotropy (line 6588) | def setSubsurfaceAnisotropy(cls, *args: Incomplete, **kwargs: Incomple... method coat (line 6590) | def coat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setCoat (line 6592) | def setCoat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method coatColor (line 6594) | def coatColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setCoatColor (line 6596) | def setCoatColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method coatRoughness (line 6598) | def coatRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setCoatRoughness (line 6600) | def setCoatRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method coatIOR (line 6602) | def coatIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setCoatIOR (line 6604) | def setCoatIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method coatAnisotropy (line 6606) | def coatAnisotropy(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setCoatAnisotropy (line 6608) | def setCoatAnisotropy(cls, *args: Incomplete, **kwargs: Incomplete) ->... method coatRotation (line 6610) | def coatRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCoatRotation (line 6612) | def setCoatRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method coatAffectColor (line 6614) | def coatAffectColor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setCoatAffectColor (line 6616) | def setCoatAffectColor(cls, *args: Incomplete, **kwargs: Incomplete) -... method coatAffectRoughness (line 6618) | def coatAffectRoughness(cls, *args: Incomplete, **kwargs: Incomplete) ... method setCoatAffectRoughness (line 6620) | def setCoatAffectRoughness(cls, *args: Incomplete, **kwargs: Incomplet... method sheen (line 6622) | def sheen(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSheen (line 6624) | def setSheen(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method sheenColor (line 6626) | def sheenColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setSheenColor (line 6628) | def setSheenColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method sheenRoughness (line 6630) | def sheenRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setSheenRoughness (line 6632) | def setSheenRoughness(cls, *args: Incomplete, **kwargs: Incomplete) ->... method emission (line 6634) | def emission(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setEmission (line 6636) | def setEmission(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method emissionColor (line 6638) | def emissionColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setEmissionColor (line 6640) | def setEmissionColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method thinFilmThickness (line 6642) | def thinFilmThickness(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setThinFilmThickness (line 6644) | def setThinFilmThickness(cls, *args: Incomplete, **kwargs: Incomplete)... method thinFilmIOR (line 6646) | def thinFilmIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setThinFilmIOR (line 6648) | def setThinFilmIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method thinWalled (line 6650) | def thinWalled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setThinWalled (line 6652) | def setThinWalled(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method opacity (line 6654) | def opacity(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setOpacity (line 6656) | def setOpacity(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnOpenPBRSurfaceShader (line 6658) | class MFnOpenPBRSurfaceShader(MFnDependencyNode): method __swig_destroy__ (line 6662) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6664) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6666) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method baseWeight (line 6668) | def baseWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setBaseWeight (line 6670) | def setBaseWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method baseColor (line 6672) | def baseColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setBaseColor (line 6674) | def setBaseColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method baseDiffuseRoughness (line 6676) | def baseDiffuseRoughness(cls, *args: Incomplete, **kwargs: Incomplete)... method setBaseDiffuseRoughness (line 6678) | def setBaseDiffuseRoughness(cls, *args: Incomplete, **kwargs: Incomple... method baseMetalness (line 6680) | def baseMetalness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setBaseMetalness (line 6682) | def setBaseMetalness(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method specularWeight (line 6684) | def specularWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setSpecularWeight (line 6686) | def setSpecularWeight(cls, *args: Incomplete, **kwargs: Incomplete) ->... method specularColor (line 6688) | def specularColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setSpecularColor (line 6690) | def setSpecularColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method specularRoughness (line 6692) | def specularRoughness(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setSpecularRoughness (line 6694) | def setSpecularRoughness(cls, *args: Incomplete, **kwargs: Incomplete)... method specularIOR (line 6696) | def specularIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSpecularIOR (line 6698) | def setSpecularIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method specularRoughnessAnisotropy (line 6700) | def specularRoughnessAnisotropy(cls, *args: Incomplete, **kwargs: Inco... method setSpecularRoughnessAnisotropy (line 6702) | def setSpecularRoughnessAnisotropy(cls, *args: Incomplete, **kwargs: I... method transmissionWeight (line 6704) | def transmissionWeight(cls, *args: Incomplete, **kwargs: Incomplete) -... method setTransmissionWeight (line 6706) | def setTransmissionWeight(cls, *args: Incomplete, **kwargs: Incomplete... method transmissionColor (line 6708) | def transmissionColor(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setTransmissionColor (line 6710) | def setTransmissionColor(cls, *args: Incomplete, **kwargs: Incomplete)... method transmissionDepth (line 6712) | def transmissionDepth(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setTransmissionDepth (line 6714) | def setTransmissionDepth(cls, *args: Incomplete, **kwargs: Incomplete)... method transmissionScatter (line 6716) | def transmissionScatter(cls, *args: Incomplete, **kwargs: Incomplete) ... method setTransmissionScatter (line 6718) | def setTransmissionScatter(cls, *args: Incomplete, **kwargs: Incomplet... method transmissionScatterAnisotropy (line 6720) | def transmissionScatterAnisotropy(cls, *args: Incomplete, **kwargs: In... method setTransmissionScatterAnisotropy (line 6722) | def setTransmissionScatterAnisotropy(cls, *args: Incomplete, **kwargs:... method transmissionDispersionScale (line 6724) | def transmissionDispersionScale(cls, *args: Incomplete, **kwargs: Inco... method setTransmissionDispersionScale (line 6726) | def setTransmissionDispersionScale(cls, *args: Incomplete, **kwargs: I... method transmissionDispersionAbbeNumber (line 6728) | def transmissionDispersionAbbeNumber(cls, *args: Incomplete, **kwargs:... method setTransmissionDispersionAbbeNumber (line 6730) | def setTransmissionDispersionAbbeNumber(cls, *args: Incomplete, **kwar... method subsurfaceWeight (line 6732) | def subsurfaceWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setSubsurfaceWeight (line 6734) | def setSubsurfaceWeight(cls, *args: Incomplete, **kwargs: Incomplete) ... method subsurfaceColor (line 6736) | def subsurfaceColor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSubsurfaceColor (line 6738) | def setSubsurfaceColor(cls, *args: Incomplete, **kwargs: Incomplete) -... method subsurfaceRadius (line 6740) | def subsurfaceRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setSubsurfaceRadius (line 6742) | def setSubsurfaceRadius(cls, *args: Incomplete, **kwargs: Incomplete) ... method subsurfaceRadiusScale (line 6744) | def subsurfaceRadiusScale(cls, *args: Incomplete, **kwargs: Incomplete... method setSubsurfaceRadiusScale (line 6746) | def setSubsurfaceRadiusScale(cls, *args: Incomplete, **kwargs: Incompl... method subsurfaceScatterAnisotropy (line 6748) | def subsurfaceScatterAnisotropy(cls, *args: Incomplete, **kwargs: Inco... method setSubsurfaceScatterAnisotropy (line 6750) | def setSubsurfaceScatterAnisotropy(cls, *args: Incomplete, **kwargs: I... method fuzzWeight (line 6752) | def fuzzWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setFuzzWeight (line 6754) | def setFuzzWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method fuzzColor (line 6756) | def fuzzColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setFuzzColor (line 6758) | def setFuzzColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method fuzzRoughness (line 6760) | def fuzzRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setFuzzRoughness (line 6762) | def setFuzzRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method coatWeight (line 6764) | def coatWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setCoatWeight (line 6766) | def setCoatWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method coatColor (line 6768) | def coatColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setCoatColor (line 6770) | def setCoatColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method coatRoughness (line 6772) | def coatRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setCoatRoughness (line 6774) | def setCoatRoughness(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method coatRoughnessAnisotropy (line 6776) | def coatRoughnessAnisotropy(cls, *args: Incomplete, **kwargs: Incomple... method setCoatRoughnessAnisotropy (line 6778) | def setCoatRoughnessAnisotropy(cls, *args: Incomplete, **kwargs: Incom... method coatIOR (line 6780) | def coatIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setCoatIOR (line 6782) | def setCoatIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method coatDarkening (line 6784) | def coatDarkening(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setCoatDarkening (line 6786) | def setCoatDarkening(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method thinFilmWeight (line 6788) | def thinFilmWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setThinFilmWeight (line 6790) | def setThinFilmWeight(cls, *args: Incomplete, **kwargs: Incomplete) ->... method thinFilmThickness (line 6792) | def thinFilmThickness(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setThinFilmThickness (line 6794) | def setThinFilmThickness(cls, *args: Incomplete, **kwargs: Incomplete)... method thinFilmIOR (line 6796) | def thinFilmIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setThinFilmIOR (line 6798) | def setThinFilmIOR(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method emissionLuminance (line 6800) | def emissionLuminance(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setEmissionLuminance (line 6802) | def setEmissionLuminance(cls, *args: Incomplete, **kwargs: Incomplete)... method emissionColor (line 6804) | def emissionColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setEmissionColor (line 6806) | def setEmissionColor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method geometryOpacity (line 6808) | def geometryOpacity(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setGeometryOpacity (line 6810) | def setGeometryOpacity(cls, *args: Incomplete, **kwargs: Incomplete) -... method geometryThinWalled (line 6812) | def geometryThinWalled(cls, *args: Incomplete, **kwargs: Incomplete) -... method setGeometryThinWalled (line 6814) | def setGeometryThinWalled(cls, *args: Incomplete, **kwargs: Incomplete... class MFnStringArrayData (line 6816) | class MFnStringArrayData(MFnData): method __swig_destroy__ (line 6820) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6822) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 6824) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 6826) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 6828) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 6830) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 6832) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __getitem__ (line 6834) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... class MFnStringData (line 6836) | class MFnStringData(MFnData): method __swig_destroy__ (line 6840) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6842) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method string (line 6844) | def string(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 6846) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6848) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnSubdData (line 6850) | class MFnSubdData(MFnGeometryData): method __swig_destroy__ (line 6854) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6856) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 6858) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnSubd (line 6862) | class MFnSubd(MFnDagNode): method __swig_destroy__ (line 6866) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 6868) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method createBaseMesh (line 6870) | def createBaseMesh(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method copy (line 6872) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method collapse (line 6874) | def collapse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method vertexBaseMeshAdd (line 6876) | def vertexBaseMeshAdd(cls, *args: Incomplete, **kwargs: Incomplete) ->... method polygonBaseMeshAdd (line 6878) | def polygonBaseMeshAdd(cls, *args: Incomplete, **kwargs: Incomplete) -... method polygonBaseMeshAddWithUVs (line 6880) | def polygonBaseMeshAddWithUVs(cls, *args: Incomplete, **kwargs: Incomp... method editsPending (line 6882) | def editsPending(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method editsUpdateAll (line 6884) | def editsUpdateAll(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method levelMaxCurrent (line 6886) | def levelMaxCurrent(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method levelMaxAllowed (line 6888) | def levelMaxAllowed(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method levelFullySubdivideTo (line 6890) | def levelFullySubdivideTo(cls, *args: Incomplete, **kwargs: Incomplete... method vertexCount (line 6892) | def vertexCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method vertexIdFromBaseVertexIndex (line 6894) | def vertexIdFromBaseVertexIndex(cls, *args: Incomplete, **kwargs: Inco... method vertexBaseIndexFromVertexId (line 6896) | def vertexBaseIndexFromVertexId(cls, *args: Incomplete, **kwargs: Inco... method vertexEditsGetAllNonBase (line 6898) | def vertexEditsGetAllNonBase(cls, *args: Incomplete, **kwargs: Incompl... method vertexEditsSetAllNonBase (line 6900) | def vertexEditsSetAllNonBase(cls, *args: Incomplete, **kwargs: Incompl... method vertexEditsClearAllNonBase (line 6902) | def vertexEditsClearAllNonBase(cls, *args: Incomplete, **kwargs: Incom... method vertexPositionGet (line 6904) | def vertexPositionGet(cls, *args: Incomplete, **kwargs: Incomplete) ->... method vertexEditGet (line 6906) | def vertexEditGet(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method vertexPositionGetNoEdit (line 6908) | def vertexPositionGetNoEdit(cls, *args: Incomplete, **kwargs: Incomple... method vertexPositionSet (line 6910) | def vertexPositionSet(cls, *args: Incomplete, **kwargs: Incomplete) ->... method vertexEditSet (line 6912) | def vertexEditSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method vertexBaseMeshGet (line 6914) | def vertexBaseMeshGet(cls, *args: Incomplete, **kwargs: Incomplete) ->... method vertexBaseMeshSet (line 6916) | def vertexBaseMeshSet(cls, *args: Incomplete, **kwargs: Incomplete) ->... method vertexBaseMeshGetWithId (line 6918) | def vertexBaseMeshGetWithId(cls, *args: Incomplete, **kwargs: Incomple... method vertexBaseMeshSetWithId (line 6920) | def vertexBaseMeshSetWithId(cls, *args: Incomplete, **kwargs: Incomple... method vertexValence (line 6922) | def vertexValence(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method vertexNormal (line 6924) | def vertexNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method vertexAdjacentVertices (line 6926) | def vertexAdjacentVertices(cls, *args: Incomplete, **kwargs: Incomplet... method vertexIncidentEdges (line 6928) | def vertexIncidentEdges(cls, *args: Incomplete, **kwargs: Incomplete) ... method vertexIncidentPolygons (line 6930) | def vertexIncidentPolygons(cls, *args: Incomplete, **kwargs: Incomplet... method vertexIsBoundary (line 6932) | def vertexIsBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method vertexIsValid (line 6934) | def vertexIsValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method vertexIsCreased (line 6936) | def vertexIsCreased(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method vertexCreaseRelevant (line 6938) | def vertexCreaseRelevant(cls, *args: Incomplete, **kwargs: Incomplete)... method vertexSetCrease (line 6940) | def vertexSetCrease(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method vertexChildren (line 6942) | def vertexChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method creasesGetAll (line 6944) | def creasesGetAll(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method creasesSetAll (line 6946) | def creasesSetAll(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method creasesClearAll (line 6948) | def creasesClearAll(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method updateAllEditsAndCreases (line 6950) | def updateAllEditsAndCreases(cls, *args: Incomplete, **kwargs: Incompl... method edgeCount (line 6952) | def edgeCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method edgeBetween (line 6954) | def edgeBetween(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method edgeVertices (line 6956) | def edgeVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method edgeAdjacentPolygon (line 6958) | def edgeAdjacentPolygon(cls, *args: Incomplete, **kwargs: Incomplete) ... method edgeIsBoundary (line 6960) | def edgeIsBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method edgeIsValid (line 6962) | def edgeIsValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method edgeIsCreased (line 6964) | def edgeIsCreased(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method edgeCreaseRelevant (line 6966) | def edgeCreaseRelevant(cls, *args: Incomplete, **kwargs: Incomplete) -... method edgeSetCrease (line 6968) | def edgeSetCrease(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method edgeChildren (line 6970) | def edgeChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method polygonCount (line 6972) | def polygonCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method polygonCountMaxWithGivenBaseMesh (line 6974) | def polygonCountMaxWithGivenBaseMesh(cls, *args: Incomplete, **kwargs:... method polygonVertexCount (line 6976) | def polygonVertexCount(cls, *args: Incomplete, **kwargs: Incomplete) -... method polygonVertices (line 6978) | def polygonVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method polygonEdgeCount (line 6980) | def polygonEdgeCount(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method polygonEdges (line 6982) | def polygonEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method polygonIsValid (line 6984) | def polygonIsValid(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method polygonHasChildren (line 6986) | def polygonHasChildren(cls, *args: Incomplete, **kwargs: Incomplete) -... method polygonChildren (line 6988) | def polygonChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method polygonSubdivide (line 6990) | def polygonSubdivide(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method polygonSetUseUVs (line 6992) | def polygonSetUseUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method polygonHasVertexUVs (line 6994) | def polygonHasVertexUVs(cls, *args: Incomplete, **kwargs: Incomplete) ... method polygonGetVertexUVs (line 6996) | def polygonGetVertexUVs(cls, *args: Incomplete, **kwargs: Incomplete) ... method polygonSetVertexUVs (line 6998) | def polygonSetVertexUVs(cls, *args: Incomplete, **kwargs: Incomplete) ... method polygonGetCenterUV (line 7000) | def polygonGetCenterUV(cls, *args: Incomplete, **kwargs: Incomplete) -... method evaluatePosition (line 7002) | def evaluatePosition(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method evaluateNormal (line 7004) | def evaluateNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method evaluatePositionAndNormal (line 7006) | def evaluatePositionAndNormal(cls, *args: Incomplete, **kwargs: Incomp... method getCubicSpline (line 7008) | def getCubicSpline(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getConnectedShaders (line 7010) | def getConnectedShaders(cls, *args: Incomplete, **kwargs: Incomplete) ... method tesselate (line 7012) | def tesselate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method tessellateViaNurbs (line 7014) | def tessellateViaNurbs(cls, *args: Incomplete, **kwargs: Incomplete) -... method convertToNurbs (line 7016) | def convertToNurbs(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method updateSubdSurface (line 7018) | def updateSubdSurface(cls, *args: Incomplete, **kwargs: Incomplete) ->... method vertexBaseMeshAddWithIndex (line 7020) | def vertexBaseMeshAddWithIndex(cls, *args: Incomplete, **kwargs: Incom... class MFnSubdNames (line 7022) | class MFnSubdNames: method __swig_destroy__ (line 7026) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method base (line 7028) | def base(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method first (line 7030) | def first(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method level (line 7032) | def level(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method path (line 7034) | def path(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method corner (line 7036) | def corner(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method fromMUint64 (line 7038) | def fromMUint64(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method toMUint64 (line 7040) | def toMUint64(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method baseFaceId (line 7042) | def baseFaceId(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method baseFaceIndex (line 7044) | def baseFaceIndex(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method baseFaceIndexFromId (line 7046) | def baseFaceIndexFromId(*args: Incomplete, **kwargs: Incomplete) -> In... method levelOneFaceId (line 7048) | def levelOneFaceId(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method levelOneFaceAsLong (line 7050) | def levelOneFaceAsLong(*args: Incomplete, **kwargs: Incomplete) -> Inc... method levelOneFaceIndexFromId (line 7052) | def levelOneFaceIndexFromId(*args: Incomplete, **kwargs: Incomplete) -... method levelOneFaceIdFromLong (line 7054) | def levelOneFaceIdFromLong(*args: Incomplete, **kwargs: Incomplete) ->... method levelOneFaceIdFromIndex (line 7056) | def levelOneFaceIdFromIndex(*args: Incomplete, **kwargs: Incomplete) -... method baseFaceIdFromLong (line 7058) | def baseFaceIdFromLong(*args: Incomplete, **kwargs: Incomplete) -> Inc... method baseFaceIdFromIndex (line 7060) | def baseFaceIdFromIndex(*args: Incomplete, **kwargs: Incomplete) -> In... method parentFaceId (line 7062) | def parentFaceId(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method nonBaseFaceVertices (line 7064) | def nonBaseFaceVertices(*args: Incomplete, **kwargs: Incomplete) -> In... method nonBaseFaceEdges (line 7066) | def nonBaseFaceEdges(*args: Incomplete, **kwargs: Incomplete) -> Incom... method fromSelectionIndices (line 7068) | def fromSelectionIndices(*args: Incomplete, **kwargs: Incomplete) -> I... method toSelectionIndices (line 7070) | def toSelectionIndices(*args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 7072) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnTripleIndexedComponent (line 7074) | class MFnTripleIndexedComponent(MFnComponent): method __swig_destroy__ (line 7078) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7080) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 7082) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addElement (line 7084) | def addElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addElements (line 7086) | def addElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getElement (line 7088) | def getElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getElements (line 7090) | def getElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCompleteData (line 7092) | def setCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getCompleteData (line 7094) | def getCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnTypedAttribute (line 7096) | class MFnTypedAttribute(MFnAttribute): method __swig_destroy__ (line 7100) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7102) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 7104) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method attrType (line 7106) | def attrType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getDefault (line 7108) | def getDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDefault (line 7110) | def setDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnUInt64ArrayData (line 7112) | class MFnUInt64ArrayData(MFnData): method __swig_destroy__ (line 7116) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7118) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 7120) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 7122) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 7124) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 7126) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 7128) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnUint64SingleIndexedComponent (line 7130) | class MFnUint64SingleIndexedComponent(MFnComponent): method __swig_destroy__ (line 7134) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7136) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 7138) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addElement (line 7140) | def addElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addElements (line 7142) | def addElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method element (line 7144) | def element(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getElements (line 7146) | def getElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setCompleteData (line 7148) | def setCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getCompleteData (line 7150) | def getCompleteData(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnUnitAttribute (line 7152) | class MFnUnitAttribute(MFnAttribute): method __swig_destroy__ (line 7161) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7163) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 7165) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method unitType (line 7167) | def unitType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method hasMin (line 7169) | def hasMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method hasMax (line 7171) | def hasMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method hasSoftMin (line 7173) | def hasSoftMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasSoftMax (line 7175) | def hasSoftMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getMin (line 7177) | def getMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getMax (line 7179) | def getMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getSoftMin (line 7181) | def getSoftMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getSoftMax (line 7183) | def getSoftMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMin (line 7185) | def setMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setMax (line 7187) | def setMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setSoftMin (line 7189) | def setSoftMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setSoftMax (line 7191) | def setSoftMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getDefault (line 7193) | def getDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDefault (line 7195) | def setDefault(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnVectorArrayData (line 7197) | class MFnVectorArrayData(MFnData): method __swig_destroy__ (line 7201) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7203) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 7205) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 7207) | def copyTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 7209) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method array (line 7211) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method create (line 7213) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnVolumeLight (line 7215) | class MFnVolumeLight(MFnPointLight): method __swig_destroy__ (line 7226) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7228) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 7230) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method lightShape (line 7232) | def lightShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setLightShape (line 7234) | def setLightShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method volumeLightDirection (line 7236) | def volumeLightDirection(cls, *args: Incomplete, **kwargs: Incomplete)... method setVolumeLightDirection (line 7238) | def setVolumeLightDirection(cls, *args: Incomplete, **kwargs: Incomple... method arc (line 7240) | def arc(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setArc (line 7242) | def setArc(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method coneEndRadius (line 7244) | def coneEndRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setConeEndRadius (line 7246) | def setConeEndRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method emitAmbient (line 7248) | def emitAmbient(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setEmitAmbient (line 7250) | def setEmitAmbient(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method colorRamp (line 7252) | def colorRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method penumbraRamp (line 7254) | def penumbraRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method shadowAngle (line 7256) | def shadowAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setShadowAngle (line 7258) | def setShadowAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MGlobal (line 7260) | class MGlobal: method mayaName (line 7282) | def mayaName(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method mayaVersion (line 7284) | def mayaVersion(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method apiVersion (line 7286) | def apiVersion(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isCustomVersion (line 7288) | def isCustomVersion(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method mayaFeatureSet (line 7290) | def mayaFeatureSet(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method customVersionString (line 7292) | def customVersionString(*args: Incomplete, **kwargs: Incomplete) -> In... method customVersionMajor (line 7294) | def customVersionMajor(*args: Incomplete, **kwargs: Incomplete) -> Inc... method customVersionMinor (line 7296) | def customVersionMinor(*args: Incomplete, **kwargs: Incomplete) -> Inc... method customVersionClient (line 7298) | def customVersionClient(*args: Incomplete, **kwargs: Incomplete) -> In... method customVersion (line 7300) | def customVersion(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method getAbsolutePathToResources (line 7302) | def getAbsolutePathToResources(*args: Incomplete, **kwargs: Incomplete... method isDefaultLanguage (line 7304) | def isDefaultLanguage(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getUILanguage (line 7306) | def getUILanguage(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method mayaState (line 7308) | def mayaState(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isInCrashHandler (line 7310) | def isInCrashHandler(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getFunctionSetList (line 7312) | def getFunctionSetList(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getAssociatedSets (line 7314) | def getAssociatedSets(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getSelectionListByName (line 7316) | def getSelectionListByName(*args: Incomplete, **kwargs: Incomplete) ->... method getActiveSelectionList (line 7318) | def getActiveSelectionList(*args: Incomplete, **kwargs: Incomplete) ->... method getRichSelection (line 7320) | def getRichSelection(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getLiveList (line 7322) | def getLiveList(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getHiliteList (line 7324) | def getHiliteList(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setHiliteList (line 7326) | def setHiliteList(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setActiveSelectionList (line 7328) | def setActiveSelectionList(*args: Incomplete, **kwargs: Incomplete) ->... method setRichSelection (line 7330) | def setRichSelection(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setDisplayCVs (line 7332) | def setDisplayCVs(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method selectCommand (line 7334) | def selectCommand(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method selectByName (line 7336) | def selectByName(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method unselectByName (line 7338) | def unselectByName(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method select (line 7340) | def select(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method unselect (line 7342) | def unselect(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method selectFromScreen (line 7344) | def selectFromScreen(*args: Incomplete, **kwargs: Incomplete) -> Incom... method selectionMethod (line 7346) | def selectionMethod(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method selectionMode (line 7348) | def selectionMode(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setSelectionMode (line 7350) | def setSelectionMode(*args: Incomplete, **kwargs: Incomplete) -> Incom... method objectSelectionMask (line 7352) | def objectSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> In... method setObjectSelectionMask (line 7354) | def setObjectSelectionMask(*args: Incomplete, **kwargs: Incomplete) ->... method componentSelectionMask (line 7356) | def componentSelectionMask(*args: Incomplete, **kwargs: Incomplete) ->... method setComponentSelectionMask (line 7358) | def setComponentSelectionMask(*args: Incomplete, **kwargs: Incomplete)... method animSelectionMask (line 7360) | def animSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> Inco... method setAnimSelectionMask (line 7362) | def setAnimSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> I... method miscSelectionMask (line 7364) | def miscSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> Inco... method setMiscSelectionMask (line 7366) | def setMiscSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> I... method clearSelectionList (line 7368) | def clearSelectionList(*args: Incomplete, **kwargs: Incomplete) -> Inc... method isSelected (line 7370) | def isSelected(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method trackSelectionOrderEnabled (line 7372) | def trackSelectionOrderEnabled(*args: Incomplete, **kwargs: Incomplete... method setTrackSelectionOrderEnabled (line 7374) | def setTrackSelectionOrderEnabled(*args: Incomplete, **kwargs: Incompl... method getPreselectionHiliteList (line 7376) | def getPreselectionHiliteList(*args: Incomplete, **kwargs: Incomplete)... method setPreselectionHiliteList (line 7378) | def setPreselectionHiliteList(*args: Incomplete, **kwargs: Incomplete)... method currentToolContext (line 7380) | def currentToolContext(*args: Incomplete, **kwargs: Incomplete) -> Inc... method viewFrame (line 7382) | def viewFrame(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method sourceFile (line 7384) | def sourceFile(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method executeCommandOnIdle (line 7386) | def executeCommandOnIdle(*args: Incomplete, **kwargs: Incomplete) -> I... method executeCommand (line 7388) | def executeCommand(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method executeCommandStringResult (line 7390) | def executeCommandStringResult(*args: Incomplete, **kwargs: Incomplete... method executePythonCommandStringResult (line 7392) | def executePythonCommandStringResult(*args: Incomplete, **kwargs: Inco... method executePythonCommand (line 7394) | def executePythonCommand(*args: Incomplete, **kwargs: Incomplete) -> I... method executePythonCommandOnIdle (line 7396) | def executePythonCommandOnIdle(*args: Incomplete, **kwargs: Incomplete... method addToModel (line 7398) | def addToModel(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method addToModelAt (line 7400) | def addToModelAt(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method removeFromModel (line 7402) | def removeFromModel(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method deleteNode (line 7404) | def deleteNode(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setYAxisUp (line 7406) | def setYAxisUp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setZAxisUp (line 7408) | def setZAxisUp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isYAxisUp (line 7410) | def isYAxisUp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isZAxisUp (line 7412) | def isZAxisUp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method upAxis (line 7414) | def upAxis(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method displayInfo (line 7416) | def displayInfo(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method displayWarning (line 7418) | def displayWarning(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method displayError (line 7420) | def displayError(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setDisableStow (line 7422) | def setDisableStow(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method disableStow (line 7424) | def disableStow(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method optionVarIntValue (line 7426) | def optionVarIntValue(*args: Incomplete, **kwargs: Incomplete) -> Inco... method optionVarDoubleValue (line 7428) | def optionVarDoubleValue(*args: Incomplete, **kwargs: Incomplete) -> I... method optionVarStringValue (line 7430) | def optionVarStringValue(*args: Incomplete, **kwargs: Incomplete) -> I... method setOptionVarValue (line 7432) | def setOptionVarValue(*args: Incomplete, **kwargs: Incomplete) -> Inco... method initOptionVar (line 7434) | def initOptionVar(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method removeOptionVar (line 7436) | def removeOptionVar(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method optionVarExists (line 7438) | def optionVarExists(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method defaultErrorLogPathName (line 7440) | def defaultErrorLogPathName(*args: Incomplete, **kwargs: Incomplete) -... method resetToDefaultErrorLogPathName (line 7442) | def resetToDefaultErrorLogPathName(*args: Incomplete, **kwargs: Incomp... method setErrorLogPathName (line 7444) | def setErrorLogPathName(*args: Incomplete, **kwargs: Incomplete) -> In... method errorLogPathName (line 7446) | def errorLogPathName(*args: Incomplete, **kwargs: Incomplete) -> Incom... method startErrorLogging (line 7448) | def startErrorLogging(*args: Incomplete, **kwargs: Incomplete) -> Inco... method errorLoggingIsOn (line 7450) | def errorLoggingIsOn(*args: Incomplete, **kwargs: Incomplete) -> Incom... method stopErrorLogging (line 7452) | def stopErrorLogging(*args: Incomplete, **kwargs: Incomplete) -> Incom... method closeErrorLog (line 7454) | def closeErrorLog(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method doErrorLogEntry (line 7456) | def doErrorLogEntry(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method isUndoing (line 7458) | def isUndoing(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isRedoing (line 7460) | def isRedoing(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 7462) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MIffFile (line 7464) | class MIffFile: method __swig_destroy__ (line 7468) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method open (line 7470) | def open(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method close (line 7472) | def close(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isActive (line 7474) | def isActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method beginReadGroup (line 7476) | def beginReadGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method endReadGroup (line 7478) | def endReadGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getChunk (line 7480) | def getChunk(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method beginGet (line 7482) | def beginGet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method endGet (line 7484) | def endGet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method get (line 7486) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method iffGetShort (line 7488) | def iffGetShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method iffGetInt (line 7490) | def iffGetInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method iffGetFloat (line 7492) | def iffGetFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 7494) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MIffTag (line 7496) | class MIffTag: method __swig_destroy__ (line 7512) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __eq__ (line 7514) | def __eq__(cls, other: object) -> bool: ... class MImageFileInfo (line 7516) | class MImageFileInfo: method width (line 7530) | def width(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method height (line 7532) | def height(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method channels (line 7534) | def channels(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numberOfImages (line 7536) | def numberOfImages(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method pixelType (line 7538) | def pixelType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method imageType (line 7540) | def imageType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hardwareType (line 7542) | def hardwareType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method hasAlpha (line 7544) | def hasAlpha(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method hasMipMaps (line 7546) | def hasMipMaps(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method __swig_destroy__ (line 7548) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MImage (line 7550) | class MImage: method __swig_destroy__ (line 7561) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method create (line 7563) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method readFromFile (line 7565) | def readFromFile(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method readFromTextureNode (line 7567) | def readFromTextureNode(cls, *args: Incomplete, **kwargs: Incomplete) ... method getSize (line 7569) | def getSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method pixelType (line 7571) | def pixelType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method pixels (line 7573) | def pixels(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method floatPixels (line 7575) | def floatPixels(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setPixels (line 7577) | def setPixels(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setFloatPixels (line 7579) | def setFloatPixels(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method depth (line 7581) | def depth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getDepthMapSize (line 7583) | def getDepthMapSize(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getDepthMapRange (line 7585) | def getDepthMapRange(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setDepthMap (line 7587) | def setDepthMap(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method depthMap (line 7589) | def depthMap(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method readDepthMap (line 7591) | def readDepthMap(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method resize (line 7593) | def resize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method filterExists (line 7595) | def filterExists(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method filter (line 7597) | def filter(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method writeToFile (line 7599) | def writeToFile(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method writeToFileWithDepth (line 7601) | def writeToFileWithDepth(cls, *args: Incomplete, **kwargs: Incomplete)... method release (line 7603) | def release(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method verticalFlip (line 7605) | def verticalFlip(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setRGBA (line 7607) | def setRGBA(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isRGBA (line 7609) | def isRGBA(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method haveDepth (line 7611) | def haveDepth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method convertPixelFormat (line 7613) | def convertPixelFormat(cls, *args: Incomplete, **kwargs: Incomplete) -... method className (line 7615) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MIntArray (line 7617) | class MIntArray: method __swig_destroy__ (line 7621) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 7623) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 7625) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 7627) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 7629) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 7631) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 7633) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 7635) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 7637) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 7639) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 7641) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 7643) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 7645) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 7647) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 7649) | def __len__(cls) -> int: ... method __setitem__ (line 7651) | def __setitem__(cls, index: Incomplete, object: Incomplete) -> None: ... method __getitem__ (line 7653) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __delitem__ (line 7655) | def __delitem__(cls, other: Incomplete) -> None: ... method __eq__ (line 7657) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 7659) | def __ne__(cls, other: object) -> bool: ... method __add__ (line 7661) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __radd__ (line 7663) | def __radd__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 7665) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... class MInt64Array (line 7667) | class MInt64Array: method __swig_destroy__ (line 7671) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 7673) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 7675) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 7677) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 7679) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 7681) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 7683) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 7685) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 7687) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 7689) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 7691) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 7693) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 7695) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 7697) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 7699) | def __len__(cls) -> int: ... method __setitem__ (line 7701) | def __setitem__(cls, index: Incomplete, object: Incomplete) -> None: ... method __getitem__ (line 7703) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __delitem__ (line 7705) | def __delitem__(cls, other: Incomplete) -> None: ... method __eq__ (line 7707) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 7709) | def __ne__(cls, other: object) -> bool: ... method __add__ (line 7711) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __radd__ (line 7713) | def __radd__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 7715) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... class MItCurveCV (line 7717) | class MItCurveCV: method __swig_destroy__ (line 7721) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 7723) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 7725) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 7727) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method position (line 7729) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPosition (line 7731) | def setPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translateBy (line 7733) | def translateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method index (line 7735) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cv (line 7737) | def cv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method currentItem (line 7739) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasHistoryOnCreate (line 7741) | def hasHistoryOnCreate(cls, *args: Incomplete, **kwargs: Incomplete) -... method updateCurve (line 7743) | def updateCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 7745) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 7747) | def __next__(cls) -> Incomplete: ... class MItDag (line 7749) | class MItDag: method reset (line 7756) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method item (line 7758) | def item(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method currentItem (line 7760) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method next (line 7762) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method prune (line 7764) | def prune(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isDone (line 7766) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method root (line 7768) | def root(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method depth (line 7770) | def depth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getType (line 7772) | def getType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getPath (line 7774) | def getPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getAllPaths (line 7776) | def getAllPaths(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method fullPathName (line 7778) | def fullPathName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method partialPathName (line 7780) | def partialPathName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isInstanced (line 7782) | def isInstanced(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method instanceCount (line 7784) | def instanceCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method traverseUnderWorld (line 7786) | def traverseUnderWorld(cls, *args: Incomplete, **kwargs: Incomplete) -... method willTraverseUnderWorld (line 7788) | def willTraverseUnderWorld(cls, *args: Incomplete, **kwargs: Incomplet... method __swig_destroy__ (line 7790) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 7792) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 7794) | def __next__(cls) -> Incomplete: ... class MItDependencyGraph (line 7796) | class MItDependencyGraph: method __swig_destroy__ (line 7809) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 7811) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method resetTo (line 7813) | def resetTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method rootNode (line 7815) | def rootNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rootPlug (line 7817) | def rootPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method currentFilter (line 7819) | def currentFilter(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setCurrentFilter (line 7821) | def setCurrentFilter(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method resetFilter (line 7823) | def resetFilter(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isPruningOnFilter (line 7825) | def isPruningOnFilter(cls, *args: Incomplete, **kwargs: Incomplete) ->... method enablePruningOnFilter (line 7827) | def enablePruningOnFilter(cls, *args: Incomplete, **kwargs: Incomplete... method disablePruningOnFilter (line 7829) | def disablePruningOnFilter(cls, *args: Incomplete, **kwargs: Incomplet... method isDirectionDownStream (line 7831) | def isDirectionDownStream(cls, *args: Incomplete, **kwargs: Incomplete... method currentDirection (line 7833) | def currentDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method toggleDirection (line 7835) | def toggleDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isTraversalDepthFirst (line 7837) | def isTraversalDepthFirst(cls, *args: Incomplete, **kwargs: Incomplete... method currentTraversal (line 7839) | def currentTraversal(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method toggleTraversal (line 7841) | def toggleTraversal(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method atNodeLevel (line 7843) | def atNodeLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method currentLevel (line 7845) | def currentLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method currentRelationship (line 7847) | def currentRelationship(cls, *args: Incomplete, **kwargs: Incomplete) ... method setCurrentRelationship (line 7849) | def setCurrentRelationship(cls, *args: Incomplete, **kwargs: Incomplet... method setTraversalOverWorldSpaceDependents (line 7851) | def setTraversalOverWorldSpaceDependents(cls, *args: Incomplete, **kwa... method isTraversingOverWorldSpaceDependents (line 7853) | def isTraversingOverWorldSpaceDependents(cls, *args: Incomplete, **kwa... method toggleLevel (line 7855) | def toggleLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method next (line 7857) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 7859) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method prune (line 7861) | def prune(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method thisNode (line 7863) | def thisNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method currentItem (line 7865) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method thisNodeHasUnknownType (line 7867) | def thisNodeHasUnknownType(cls, *args: Incomplete, **kwargs: Incomplet... method thisPlug (line 7869) | def thisPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method previousPlug (line 7871) | def previousPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getNodesVisited (line 7873) | def getNodesVisited(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getPlugsVisited (line 7875) | def getPlugsVisited(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getNodePath (line 7877) | def getNodePath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPlugPath (line 7879) | def getPlugPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method nodeDepth (line 7881) | def nodeDepth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 7883) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 7885) | def __next__(cls) -> Incomplete: ... class MItDependencyNodes (line 7887) | class MItDependencyNodes: method __swig_destroy__ (line 7891) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 7893) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method thisNode (line 7895) | def thisNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method next (line 7897) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 7899) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method item (line 7901) | def item(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 7903) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 7905) | def __next__(cls) -> Incomplete: ... class MItEdits (line 7907) | class MItEdits: method __swig_destroy__ (line 7915) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 7917) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method next (line 7919) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 7921) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isReverse (line 7923) | def isReverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method currentEditString (line 7925) | def currentEditString(cls, *args: Incomplete, **kwargs: Incomplete) ->... method currentEditType (line 7927) | def currentEditType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method removeCurrentEdit (line 7929) | def removeCurrentEdit(cls, *args: Incomplete, **kwargs: Incomplete) ->... method edit (line 7931) | def edit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method addRemoveAttrEdit (line 7933) | def addRemoveAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setAttrEdit (line 7935) | def setAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method parentingEdit (line 7937) | def parentingEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method fcurveEdit (line 7939) | def fcurveEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method connectDisconnectEdit (line 7941) | def connectDisconnectEdit(cls, *args: Incomplete, **kwargs: Incomplete... method className (line 7943) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 7945) | def __next__(cls) -> Incomplete: ... class MIteratorType (line 7947) | class MIteratorType: method __swig_destroy__ (line 7954) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setFilterType (line 7956) | def setFilterType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setFilterList (line 7958) | def setFilterList(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setObjectType (line 7960) | def setObjectType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getFilterType (line 7962) | def getFilterType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getFilterList (line 7964) | def getFilterList(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getObjectType (line 7966) | def getObjectType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method filterListEnabled (line 7968) | def filterListEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MItGeometry (line 7970) | class MItGeometry: method __swig_destroy__ (line 7974) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 7976) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 7978) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method position (line 7980) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method normal (line 7982) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setPosition (line 7984) | def setPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method weight (line 7986) | def weight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method index (line 7988) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method positionIndex (line 7990) | def positionIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method component (line 7992) | def component(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method currentItem (line 7994) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method count (line 7996) | def count(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method exactCount (line 7998) | def exactCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method reset (line 8000) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method allPositions (line 8002) | def allPositions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setAllPositions (line 8004) | def setAllPositions(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 8006) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8008) | def __next__(cls) -> Incomplete: ... class MItInstancer (line 8010) | class MItInstancer: method __swig_destroy__ (line 8014) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 8016) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method next (line 8018) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method nextParticle (line 8020) | def nextParticle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method nextInstancer (line 8022) | def nextInstancer(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isDone (line 8024) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method instancer (line 8026) | def instancer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method instancerPath (line 8028) | def instancerPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method path (line 8030) | def path(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method matrix (line 8032) | def matrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method instancerId (line 8034) | def instancerId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method particleId (line 8036) | def particleId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method pathId (line 8038) | def pathId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 8040) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8042) | def __next__(cls) -> Incomplete: ... class MItMeshEdge (line 8044) | class MItMeshEdge: method __swig_destroy__ (line 8048) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 8050) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 8052) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 8054) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method count (line 8056) | def count(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method center (line 8058) | def center(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method point (line 8060) | def point(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setPoint (line 8062) | def setPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isSmooth (line 8064) | def isSmooth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setSmoothing (line 8066) | def setSmoothing(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method cleanupSmoothing (line 8068) | def cleanupSmoothing(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method index (line 8070) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method edge (line 8072) | def edge(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method currentItem (line 8074) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method updateSurface (line 8076) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method geomChanged (line 8078) | def geomChanged(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setIndex (line 8080) | def setIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getConnectedFaces (line 8082) | def getConnectedFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedEdges (line 8084) | def getConnectedEdges(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numConnectedFaces (line 8086) | def numConnectedFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numConnectedEdges (line 8088) | def numConnectedEdges(cls, *args: Incomplete, **kwargs: Incomplete) ->... method connectedToFace (line 8090) | def connectedToFace(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method connectedToEdge (line 8092) | def connectedToEdge(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method onBoundary (line 8094) | def onBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getLength (line 8096) | def getLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 8098) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8100) | def __next__(cls) -> Incomplete: ... class MItMeshFaceVertex (line 8102) | class MItMeshFaceVertex: method __swig_destroy__ (line 8106) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 8108) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 8110) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 8112) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method vertId (line 8114) | def vertId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method faceId (line 8116) | def faceId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method faceVertId (line 8118) | def faceVertId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method faceVertex (line 8120) | def faceVertex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method currentItem (line 8122) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method position (line 8124) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getNormal (line 8126) | def getNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method normalId (line 8128) | def normalId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method tangentId (line 8130) | def tangentId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getTangent (line 8132) | def getTangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getBinormal (line 8134) | def getBinormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasUVs (line 8136) | def hasUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUV (line 8138) | def getUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getUVIndex (line 8140) | def getUVIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasColor (line 8142) | def hasColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColor (line 8144) | def getColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColorIndex (line 8146) | def getColorIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method updateSurface (line 8148) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method geomChanged (line 8150) | def geomChanged(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setIndex (line 8152) | def setIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 8154) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8156) | def __next__(cls) -> Incomplete: ... class MItMeshPolygon (line 8158) | class MItMeshPolygon: method __swig_destroy__ (line 8162) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 8164) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 8166) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 8168) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method count (line 8170) | def count(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method polygonVertexCount (line 8172) | def polygonVertexCount(cls, *args: Incomplete, **kwargs: Incomplete) -... method center (line 8174) | def center(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method polygon (line 8176) | def polygon(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method currentItem (line 8178) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method index (line 8180) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setIndex (line 8182) | def setIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method vertexIndex (line 8184) | def vertexIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getVertices (line 8186) | def getVertices(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method point (line 8188) | def point(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getPoints (line 8190) | def getPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setPoint (line 8192) | def setPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPoints (line 8194) | def setPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method normalIndex (line 8196) | def normalIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getNormal (line 8198) | def getNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getNormals (line 8200) | def getNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method tangentIndex (line 8202) | def tangentIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method hasUVs (line 8204) | def hasUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUV (line 8206) | def setUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getUV (line 8208) | def getUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setUVs (line 8210) | def setUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVs (line 8212) | def getUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getPointAtUV (line 8214) | def getPointAtUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getAxisAtUV (line 8216) | def getAxisAtUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getUVAtPoint (line 8218) | def getUVAtPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getUVIndex (line 8220) | def getUVIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getUVSetNames (line 8222) | def getUVSetNames(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method hasColor (line 8224) | def hasColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColor (line 8226) | def getColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColors (line 8228) | def getColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method numColors (line 8230) | def numColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getColorIndex (line 8232) | def getColorIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getColorIndices (line 8234) | def getColorIndices(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method hasValidTriangulation (line 8236) | def hasValidTriangulation(cls, *args: Incomplete, **kwargs: Incomplete... method numTriangles (line 8238) | def numTriangles(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getTriangle (line 8240) | def getTriangle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getTriangles (line 8242) | def getTriangles(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method updateSurface (line 8244) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method geomChanged (line 8246) | def geomChanged(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getEdges (line 8248) | def getEdges(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getConnectedFaces (line 8250) | def getConnectedFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedEdges (line 8252) | def getConnectedEdges(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedVertices (line 8254) | def getConnectedVertices(cls, *args: Incomplete, **kwargs: Incomplete)... method isConnectedToFace (line 8256) | def isConnectedToFace(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isConnectedToEdge (line 8258) | def isConnectedToEdge(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isConnectedToVertex (line 8260) | def isConnectedToVertex(cls, *args: Incomplete, **kwargs: Incomplete) ... method numConnectedFaces (line 8262) | def numConnectedFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numConnectedEdges (line 8264) | def numConnectedEdges(cls, *args: Incomplete, **kwargs: Incomplete) ->... method onBoundary (line 8266) | def onBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getArea (line 8268) | def getArea(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method zeroArea (line 8270) | def zeroArea(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getUVArea (line 8272) | def getUVArea(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method zeroUVArea (line 8274) | def zeroUVArea(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isConvex (line 8276) | def isConvex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isStarlike (line 8278) | def isStarlike(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isLamina (line 8280) | def isLamina(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isHoled (line 8282) | def isHoled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isPlanar (line 8284) | def isPlanar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isUVReversed (line 8286) | def isUVReversed(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 8288) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8290) | def __next__(cls) -> Incomplete: ... class MItMeshVertex (line 8292) | class MItMeshVertex: method __swig_destroy__ (line 8296) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 8298) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 8300) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 8302) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method count (line 8304) | def count(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method index (line 8306) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method vertex (line 8308) | def vertex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method currentItem (line 8310) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method position (line 8312) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPosition (line 8314) | def setPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translateBy (line 8316) | def translateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getNormal (line 8318) | def getNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getNormals (line 8320) | def getNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getNormalIndices (line 8322) | def getNormalIndices(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method numUVs (line 8324) | def numUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUV (line 8326) | def setUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getUV (line 8328) | def getUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setUVs (line 8330) | def setUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVs (line 8332) | def getUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVIndices (line 8334) | def getUVIndices(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method updateSurface (line 8336) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method geomChanged (line 8338) | def geomChanged(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setIndex (line 8340) | def setIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getConnectedFaces (line 8342) | def getConnectedFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedEdges (line 8344) | def getConnectedEdges(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getConnectedVertices (line 8346) | def getConnectedVertices(cls, *args: Incomplete, **kwargs: Incomplete)... method numConnectedFaces (line 8348) | def numConnectedFaces(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numConnectedEdges (line 8350) | def numConnectedEdges(cls, *args: Incomplete, **kwargs: Incomplete) ->... method connectedToFace (line 8352) | def connectedToFace(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method connectedToEdge (line 8354) | def connectedToEdge(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getOppositeVertex (line 8356) | def getOppositeVertex(cls, *args: Incomplete, **kwargs: Incomplete) ->... method onBoundary (line 8358) | def onBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasColor (line 8360) | def hasColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColor (line 8362) | def getColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColors (line 8364) | def getColors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getColorIndices (line 8366) | def getColorIndices(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 8368) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8370) | def __next__(cls) -> Incomplete: ... class MItSelectionList (line 8372) | class MItSelectionList: method isDone (line 8381) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 8383) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 8385) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getDependNode (line 8387) | def getDependNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDagPath (line 8389) | def getDagPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getPlug (line 8391) | def getPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getStrings (line 8393) | def getStrings(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method itemType (line 8395) | def itemType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setFilter (line 8397) | def setFilter(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasComponents (line 8399) | def hasComponents(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method __swig_destroy__ (line 8401) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 8403) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8405) | def __next__(cls) -> Incomplete: ... class MItSubdEdge (line 8407) | class MItSubdEdge: method __swig_destroy__ (line 8411) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 8413) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method next (line 8415) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 8417) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isValid (line 8419) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method level (line 8421) | def level(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setLevel (line 8423) | def setLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method index (line 8425) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isSharp (line 8427) | def isSharp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setSharpness (line 8429) | def setSharpness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isBoundary (line 8431) | def isBoundary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 8433) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8435) | def __next__(cls) -> Incomplete: ... class MItSubdFace (line 8437) | class MItSubdFace: method __swig_destroy__ (line 8441) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 8443) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method next (line 8445) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 8447) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isValid (line 8449) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method level (line 8451) | def level(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setLevel (line 8453) | def setLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method index (line 8455) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method className (line 8457) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8459) | def __next__(cls) -> Incomplete: ... class MItSubdVertex (line 8461) | class MItSubdVertex: method __swig_destroy__ (line 8465) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 8467) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 8469) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 8471) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method level (line 8473) | def level(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setLevel (line 8475) | def setLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isValid (line 8477) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method index (line 8479) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method className (line 8481) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8483) | def __next__(cls) -> Incomplete: ... class MItSurfaceCV (line 8485) | class MItSurfaceCV: method __swig_destroy__ (line 8489) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 8491) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isRowDone (line 8493) | def isRowDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method next (line 8495) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method nextRow (line 8497) | def nextRow(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method reset (line 8499) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method position (line 8501) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPosition (line 8503) | def setPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translateBy (line 8505) | def translateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method index (line 8507) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getIndex (line 8509) | def getIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method cv (line 8511) | def cv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method currentItem (line 8513) | def currentItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasHistoryOnCreate (line 8515) | def hasHistoryOnCreate(cls, *args: Incomplete, **kwargs: Incomplete) -... method updateSurface (line 8517) | def updateSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 8519) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 8521) | def __next__(cls) -> Incomplete: ... class MLockMessage (line 8523) | class MLockMessage(MMessage): method setNodeLockQueryCallback (line 8556) | def setNodeLockQueryCallback(*args: Incomplete, **kwargs: Incomplete) ... method setNodeLockDAGQueryCallback (line 8558) | def setNodeLockDAGQueryCallback(*args: Incomplete, **kwargs: Incomplet... method setPlugLockQueryCallback (line 8560) | def setPlugLockQueryCallback(*args: Incomplete, **kwargs: Incomplete) ... method className (line 8562) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 8564) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MMatrix (line 8567) | class MMatrix: method __swig_destroy__ (line 8573) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 8575) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __call__ (line 8577) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __getitem__ (line 8579) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method get (line 8581) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method transpose (line 8583) | def transpose(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setToIdentity (line 8585) | def setToIdentity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setToProduct (line 8587) | def setToProduct(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method __iadd__ (line 8589) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __add__ (line 8591) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 8593) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 8595) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 8597) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 8599) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 8601) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 8603) | def __ne__(cls, other: object) -> bool: ... method inverse (line 8605) | def inverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method adjoint (line 8607) | def adjoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method homogenize (line 8609) | def homogenize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method det4x4 (line 8611) | def det4x4(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method det3x3 (line 8613) | def det3x3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isEquivalent (line 8615) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isSingular (line 8617) | def isSingular(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 8619) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MMatrixArray (line 8621) | class MMatrixArray: method __swig_destroy__ (line 8625) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 8627) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 8629) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 8631) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 8633) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 8635) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 8637) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 8639) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 8641) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 8643) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 8645) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 8647) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 8649) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 8651) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MModelMessage (line 8653) | class MModelMessage(MMessage): method addCallback (line 8658) | def addCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addBeforeDuplicateCallback (line 8660) | def addBeforeDuplicateCallback(*args: Incomplete, **kwargs: Incomplete... method addPostDuplicateNodeListCallback (line 8662) | def addPostDuplicateNodeListCallback(*args: Incomplete, **kwargs: Inco... method addAfterDuplicateCallback (line 8664) | def addAfterDuplicateCallback(*args: Incomplete, **kwargs: Incomplete)... method addNodeAddedToModelCallback (line 8666) | def addNodeAddedToModelCallback(*args: Incomplete, **kwargs: Incomplet... method addNodeRemovedFromModelCallback (line 8668) | def addNodeRemovedFromModelCallback(*args: Incomplete, **kwargs: Incom... method className (line 8670) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 8672) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MNamespace (line 8674) | class MNamespace: method addNamespace (line 8678) | def addNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method validateName (line 8680) | def validateName(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method currentNamespace (line 8682) | def currentNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setCurrentNamespace (line 8684) | def setCurrentNamespace(*args: Incomplete, **kwargs: Incomplete) -> In... method getNamespaces (line 8686) | def getNamespaces(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method namespaceExists (line 8688) | def namespaceExists(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method parentNamespace (line 8690) | def parentNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method removeNamespace (line 8692) | def removeNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method renameNamespace (line 8694) | def renameNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method getNamespaceObjects (line 8696) | def getNamespaceObjects(*args: Incomplete, **kwargs: Incomplete) -> In... method moveNamespace (line 8698) | def moveNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method rootNamespace (line 8700) | def rootNamespace(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method relativeNames (line 8702) | def relativeNames(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setRelativeNames (line 8704) | def setRelativeNames(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getNamespaceFromName (line 8706) | def getNamespaceFromName(*args: Incomplete, **kwargs: Incomplete) -> I... method stripNamespaceFromName (line 8708) | def stripNamespaceFromName(*args: Incomplete, **kwargs: Incomplete) ->... method makeNamepathAbsolute (line 8710) | def makeNamepathAbsolute(*args: Incomplete, **kwargs: Incomplete) -> I... method className (line 8712) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 8714) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MNodeCacheDisablingInfo (line 8716) | class MNodeCacheDisablingInfo: method setCacheDisabled (line 8720) | def setCacheDisabled(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getCacheDisabled (line 8722) | def getCacheDisabled(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setReason (line 8724) | def setReason(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMitigation (line 8726) | def setMitigation(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method reset (line 8728) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MNodeCacheDisablingInfoHelper (line 8730) | class MNodeCacheDisablingInfoHelper: method setUnsafeNode (line 8739) | def setUnsafeNode(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setUnsafeValue (line 8741) | def setUnsafeValue(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method testAnimatedAttribute (line 8743) | def testAnimatedAttribute(*args: Incomplete, **kwargs: Incomplete) -> ... method testBooleanAttribute (line 8745) | def testBooleanAttribute(*args: Incomplete, **kwargs: Incomplete) -> I... method __swig_destroy__ (line 8747) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MNodeCacheSetupInfo (line 8749) | class MNodeCacheSetupInfo: method setPreference (line 8757) | def setPreference(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getPreference (line 8759) | def getPreference(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setRequirement (line 8761) | def setRequirement(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getRequirement (line 8763) | def getRequirement(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MNodeClass (line 8765) | class MNodeClass: method typeId (line 8769) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method typeName (line 8771) | def typeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method classification (line 8773) | def classification(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addToClassification (line 8775) | def addToClassification(cls, *args: Incomplete, **kwargs: Incomplete) ... method removeFromClassification (line 8777) | def removeFromClassification(cls, *args: Incomplete, **kwargs: Incompl... method pluginName (line 8779) | def pluginName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addExtensionAttribute (line 8781) | def addExtensionAttribute(cls, *args: Incomplete, **kwargs: Incomplete... method removeExtensionAttribute (line 8783) | def removeExtensionAttribute(cls, *args: Incomplete, **kwargs: Incompl... method removeExtensionAttributeIfUnset (line 8785) | def removeExtensionAttributeIfUnset(cls, *args: Incomplete, **kwargs: ... method getAttributes (line 8787) | def getAttributes(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method attributeCount (line 8789) | def attributeCount(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method attribute (line 8791) | def attribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasAttribute (line 8793) | def hasAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 8795) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 8797) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MNodeMessage (line 8799) | class MNodeMessage(MMessage): method addAttributeChangedCallback (line 8823) | def addAttributeChangedCallback(*args: Incomplete, **kwargs: Incomplet... method addAttributeAddedOrRemovedCallback (line 8825) | def addAttributeAddedOrRemovedCallback(*args: Incomplete, **kwargs: In... method addNodeDirtyCallback (line 8827) | def addNodeDirtyCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method addNodeDirtyPlugCallback (line 8829) | def addNodeDirtyPlugCallback(*args: Incomplete, **kwargs: Incomplete) ... method addNameChangedCallback (line 8831) | def addNameChangedCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addUuidChangedCallback (line 8833) | def addUuidChangedCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addNodeAboutToDeleteCallback (line 8835) | def addNodeAboutToDeleteCallback(*args: Incomplete, **kwargs: Incomple... method addNodePreRemovalCallback (line 8837) | def addNodePreRemovalCallback(*args: Incomplete, **kwargs: Incomplete)... method addNodeDestroyedCallback (line 8839) | def addNodeDestroyedCallback(*args: Incomplete, **kwargs: Incomplete) ... method addKeyableChangeOverride (line 8841) | def addKeyableChangeOverride(*args: Incomplete, **kwargs: Incomplete) ... method className (line 8843) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 8845) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MNurbsIntersector (line 8847) | class MNurbsIntersector: method __swig_destroy__ (line 8851) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method create (line 8853) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isCreated (line 8855) | def isCreated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getClosestPoint (line 8857) | def getClosestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getIntersects (line 8859) | def getIntersects(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getIntersect (line 8861) | def getIntersect(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 8863) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPointOnNurbs (line 8865) | class MPointOnNurbs: method assign (line 8869) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getPoint (line 8871) | def getPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getUV (line 8873) | def getUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method __swig_destroy__ (line 8875) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MObjectArray (line 8877) | class MObjectArray: method __swig_destroy__ (line 8882) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 8884) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 8886) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 8888) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 8890) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 8892) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 8894) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 8896) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 8898) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 8900) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 8902) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 8904) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 8906) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MObjectHandle (line 8908) | class MObjectHandle: method __swig_destroy__ (line 8912) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method object (line 8914) | def object(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method objectRef (line 8916) | def objectRef(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hashCode (line 8918) | def hashCode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isValid (line 8920) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isAlive (line 8922) | def isAlive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method __eq__ (line 8924) | def __eq__(cls, other: object) -> bool: ... # type: ignore[valid-type] method __ne__ (line 8926) | def __ne__(cls, other: object) -> bool: ... # type: ignore[valid-type] method assign (line 8928) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method objectHashCode (line 8930) | def objectHashCode(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method __hash__ (line 8932) | def __hash__(cls) -> int: ... class MObjectSetMessage (line 8934) | class MObjectSetMessage(MMessage): method addSetMembersModifiedCallback (line 8938) | def addSetMembersModifiedCallback(*args: Incomplete, **kwargs: Incompl... method className (line 8940) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 8942) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MPlugArray (line 8944) | class MPlugArray: method __swig_destroy__ (line 8948) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 8950) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 8952) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 8954) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 8956) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 8958) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 8960) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 8962) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 8964) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 8966) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 8968) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 8970) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 8972) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 8974) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPlug (line 8976) | class MPlug: method __swig_destroy__ (line 8987) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setAttribute (line 8989) | def setAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method attribute (line 8991) | def attribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method node (line 8993) | def node(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method name (line 8995) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method partialName (line 8997) | def partialName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getSetAttrCmds (line 8999) | def getSetAttrCmds(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isNetworked (line 9001) | def isNetworked(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isArray (line 9003) | def isArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isElement (line 9005) | def isElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isCompound (line 9007) | def isCompound(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isChild (line 9009) | def isChild(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isProcedural (line 9011) | def isProcedural(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method logicalIndex (line 9013) | def logicalIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isProxy (line 9015) | def isProxy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method selectAncestorLogicalIndex (line 9017) | def selectAncestorLogicalIndex(cls, *args: Incomplete, **kwargs: Incom... method getExistingArrayAttributeIndices (line 9019) | def getExistingArrayAttributeIndices(cls, *args: Incomplete, **kwargs:... method numElements (line 9021) | def numElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method evaluateNumElements (line 9023) | def evaluateNumElements(cls, *args: Incomplete, **kwargs: Incomplete) ... method numChildren (line 9025) | def numChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numConnectedElements (line 9027) | def numConnectedElements(cls, *args: Incomplete, **kwargs: Incomplete)... method numConnectedChildren (line 9029) | def numConnectedChildren(cls, *args: Incomplete, **kwargs: Incomplete)... method child (line 9031) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method parent (line 9033) | def parent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method array (line 9035) | def array(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method elementByLogicalIndex (line 9037) | def elementByLogicalIndex(cls, *args: Incomplete, **kwargs: Incomplete... method elementByPhysicalIndex (line 9039) | def elementByPhysicalIndex(cls, *args: Incomplete, **kwargs: Incomplet... method connectionByPhysicalIndex (line 9041) | def connectionByPhysicalIndex(cls, *args: Incomplete, **kwargs: Incomp... method connectedTo (line 9043) | def connectedTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isConnected (line 9045) | def isConnected(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method source (line 9047) | def source(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method destinations (line 9049) | def destinations(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method sourceWithConversion (line 9051) | def sourceWithConversion(cls, *args: Incomplete, **kwargs: Incomplete)... method destinationsWithConversions (line 9053) | def destinationsWithConversions(cls, *args: Incomplete, **kwargs: Inco... method isKeyable (line 9055) | def isKeyable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setKeyable (line 9057) | def setKeyable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isLocked (line 9059) | def isLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setLocked (line 9061) | def setLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isChannelBoxFlagSet (line 9063) | def isChannelBoxFlagSet(cls, *args: Incomplete, **kwargs: Incomplete) ... method setChannelBox (line 9065) | def setChannelBox(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isCachingFlagSet (line 9067) | def isCachingFlagSet(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setCaching (line 9069) | def setCaching(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isNull (line 9071) | def isNull(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method info (line 9073) | def info(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isFromReferencedFile (line 9075) | def isFromReferencedFile(cls, *args: Incomplete, **kwargs: Incomplete)... method isDynamic (line 9077) | def isDynamic(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isIgnoredWhenRendering (line 9079) | def isIgnoredWhenRendering(cls, *args: Incomplete, **kwargs: Incomplet... method isDefaultValue (line 9081) | def isDefaultValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isFreeToChange (line 9083) | def isFreeToChange(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method constructHandle (line 9085) | def constructHandle(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method destructHandle (line 9087) | def destructHandle(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setMObject (line 9089) | def setMObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMPxData (line 9091) | def setMPxData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMDataHandle (line 9093) | def setMDataHandle(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDouble (line 9095) | def setDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setFloat (line 9097) | def setFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setInt64 (line 9099) | def setInt64(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setInt (line 9101) | def setInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setShort (line 9103) | def setShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setBool (line 9105) | def setBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setMDistance (line 9107) | def setMDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setMAngle (line 9109) | def setMAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMTime (line 9111) | def setMTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setChar (line 9113) | def setChar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setString (line 9115) | def setString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method proxied (line 9117) | def proxied(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method assign (line 9119) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __getitem__ (line 9121) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method isExactlyEqual (line 9123) | def isExactlyEqual(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method __eq__ (line 9125) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 9127) | def __ne__(cls, other: object) -> bool: ... method setNumElements (line 9129) | def setNumElements(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isSource (line 9131) | def isSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isDestination (line 9133) | def isDestination(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 9135) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method asMObject (line 9137) | def asMObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asMDataHandle (line 9139) | def asMDataHandle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asDouble (line 9141) | def asDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asFloat (line 9143) | def asFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asInt64 (line 9145) | def asInt64(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asInt (line 9147) | def asInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method asShort (line 9149) | def asShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asBool (line 9151) | def asBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asMDistance (line 9153) | def asMDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asMAngle (line 9155) | def asMAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asMTime (line 9157) | def asMTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asChar (line 9159) | def asChar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asString (line 9161) | def asString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MPlane (line 9163) | class MPlane: method normal (line 9167) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setPlane (line 9169) | def setPlane(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method distance (line 9171) | def distance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method directedDistance (line 9173) | def directedDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 9175) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 9177) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MPointArray (line 9179) | class MPointArray: method __swig_destroy__ (line 9183) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 9185) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 9187) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 9189) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 9191) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 9193) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 9195) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 9197) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 9199) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 9201) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 9203) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 9205) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 9207) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 9209) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 9211) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPoint (line 9214) | class MPoint: method __swig_destroy__ (line 9225) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method get (line 9227) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __call__ (line 9229) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method assign (line 9231) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __add__ (line 9233) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 9235) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 9237) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 9239) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 9241) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 9243) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 9245) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 9247) | def __ne__(cls, other: object) -> bool: ... method cartesianize (line 9249) | def cartesianize(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method rationalize (line 9251) | def rationalize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method homogenize (line 9253) | def homogenize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method distanceTo (line 9255) | def distanceTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isEquivalent (line 9257) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 9259) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 9261) | def __len__(cls) -> int: ... method __getitem__ (line 9263) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... class MPolyMessage (line 9265) | class MPolyMessage(MMessage): method addPolyComponentIdChangedCallback (line 9279) | def addPolyComponentIdChangedCallback(*args: Incomplete, **kwargs: Inc... method addPolyTopologyChangedCallback (line 9281) | def addPolyTopologyChangedCallback(*args: Incomplete, **kwargs: Incomp... method addUVSetChangedCallback (line 9283) | def addUVSetChangedCallback(*args: Incomplete, **kwargs: Incomplete) -... method addColorSetChangedCallback (line 9285) | def addColorSetChangedCallback(*args: Incomplete, **kwargs: Incomplete... method deletedId (line 9287) | def deletedId(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 9289) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 9291) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MScriptUtil (line 9293) | class MScriptUtil: method __swig_destroy__ (line 9297) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method createFromInt (line 9299) | def createFromInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method createFromDouble (line 9301) | def createFromDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method createFromList (line 9303) | def createFromList(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method asInt (line 9305) | def asInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method asShort (line 9307) | def asShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asFloat (line 9309) | def asFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asDouble (line 9311) | def asDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asUint (line 9313) | def asUint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asBool (line 9315) | def asBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asIntPtr (line 9317) | def asIntPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asShortPtr (line 9319) | def asShortPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asUshortPtr (line 9321) | def asUshortPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asFloatPtr (line 9323) | def asFloatPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asDoublePtr (line 9325) | def asDoublePtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asUintPtr (line 9327) | def asUintPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asBoolPtr (line 9329) | def asBoolPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asCharPtr (line 9331) | def asCharPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asUcharPtr (line 9333) | def asUcharPtr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asInt2Ptr (line 9335) | def asInt2Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asInt3Ptr (line 9337) | def asInt3Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asInt4Ptr (line 9339) | def asInt4Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asShort2Ptr (line 9341) | def asShort2Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asShort3Ptr (line 9343) | def asShort3Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asShort4Ptr (line 9345) | def asShort4Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asFloat2Ptr (line 9347) | def asFloat2Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asFloat3Ptr (line 9349) | def asFloat3Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asFloat4Ptr (line 9351) | def asFloat4Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asDouble2Ptr (line 9353) | def asDouble2Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asDouble3Ptr (line 9355) | def asDouble3Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asDouble4Ptr (line 9357) | def asDouble4Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asUint2Ptr (line 9359) | def asUint2Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asUint3Ptr (line 9361) | def asUint3Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asUint4Ptr (line 9363) | def asUint4Ptr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setInt (line 9365) | def setInt(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setShort (line 9367) | def setShort(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setFloat (line 9369) | def setFloat(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setDouble (line 9371) | def setDouble(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUint (line 9373) | def setUint(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setBool (line 9375) | def setBool(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setChar (line 9377) | def setChar(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUchar (line 9379) | def setUchar(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getInt (line 9381) | def getInt(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getShort (line 9383) | def getShort(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getFloat (line 9385) | def getFloat(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getDouble (line 9387) | def getDouble(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getUint (line 9389) | def getUint(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getBool (line 9391) | def getBool(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getChar (line 9393) | def getChar(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getUchar (line 9395) | def getUchar(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setIntArray (line 9397) | def setIntArray(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setShortArray (line 9399) | def setShortArray(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setFloatArray (line 9401) | def setFloatArray(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDoubleArray (line 9403) | def setDoubleArray(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method setUintArray (line 9405) | def setUintArray(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setUshortArray (line 9407) | def setUshortArray(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method setBoolArray (line 9409) | def setBoolArray(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setCharArray (line 9411) | def setCharArray(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setUcharArray (line 9413) | def setUcharArray(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method getIntArrayItem (line 9415) | def getIntArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method getShortArrayItem (line 9417) | def getShortArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getFloatArrayItem (line 9419) | def getFloatArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getDoubleArrayItem (line 9421) | def getDoubleArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getUintArrayItem (line 9423) | def getUintArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getUshortArrayItem (line 9425) | def getUshortArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getBoolArrayItem (line 9427) | def getBoolArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getCharArrayItem (line 9429) | def getCharArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getUcharArrayItem (line 9431) | def getUcharArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method createMatrixFromList (line 9433) | def createMatrixFromList(*args: Incomplete, **kwargs: Incomplete) -> I... method createFloatMatrixFromList (line 9435) | def createFloatMatrixFromList(*args: Incomplete, **kwargs: Incomplete)... method createIntArrayFromList (line 9437) | def createIntArrayFromList(*args: Incomplete, **kwargs: Incomplete) ->... method createFloatArrayFromList (line 9439) | def createFloatArrayFromList(*args: Incomplete, **kwargs: Incomplete) ... method getInt2ArrayItem (line 9441) | def getInt2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setInt2ArrayItem (line 9443) | def setInt2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getInt3ArrayItem (line 9445) | def getInt3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setInt3ArrayItem (line 9447) | def setInt3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getInt4ArrayItem (line 9449) | def getInt4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setInt4ArrayItem (line 9451) | def setInt4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getShort2ArrayItem (line 9453) | def getShort2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setShort2ArrayItem (line 9455) | def setShort2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getShort3ArrayItem (line 9457) | def getShort3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setShort3ArrayItem (line 9459) | def setShort3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getShort4ArrayItem (line 9461) | def getShort4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setShort4ArrayItem (line 9463) | def setShort4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getFloat2ArrayItem (line 9465) | def getFloat2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setFloat2ArrayItem (line 9467) | def setFloat2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getFloat3ArrayItem (line 9469) | def getFloat3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setFloat3ArrayItem (line 9471) | def setFloat3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getFloat4ArrayItem (line 9473) | def getFloat4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method setFloat4ArrayItem (line 9475) | def setFloat4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getDouble2ArrayItem (line 9477) | def getDouble2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> In... method setDouble2ArrayItem (line 9479) | def setDouble2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> In... method getDouble3ArrayItem (line 9481) | def getDouble3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> In... method setDouble3ArrayItem (line 9483) | def setDouble3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> In... method getDouble4ArrayItem (line 9485) | def getDouble4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> In... method setDouble4ArrayItem (line 9487) | def setDouble4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> In... method getUint2ArrayItem (line 9489) | def getUint2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method setUint2ArrayItem (line 9491) | def setUint2ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getUint3ArrayItem (line 9493) | def getUint3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method setUint3ArrayItem (line 9495) | def setUint3ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getUint4ArrayItem (line 9497) | def getUint4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... method setUint4ArrayItem (line 9499) | def setUint4ArrayItem(*args: Incomplete, **kwargs: Incomplete) -> Inco... class MQuaternion (line 9502) | class MQuaternion: method __swig_destroy__ (line 9511) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 9513) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asMatrix (line 9515) | def asMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asEulerRotation (line 9517) | def asEulerRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setAxisAngle (line 9519) | def setAxisAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getAxisAngle (line 9521) | def getAxisAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setToXAxis (line 9523) | def setToXAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setToYAxis (line 9525) | def setToYAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setToZAxis (line 9527) | def setToZAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method get (line 9529) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __add__ (line 9531) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 9533) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 9535) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 9537) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __neg__ (line 9539) | def __neg__(cls) -> Incomplete: ... method negateIt (line 9541) | def negateIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __eq__ (line 9543) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 9545) | def __ne__(cls, other: object) -> bool: ... method isEquivalent (line 9547) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method scaleIt (line 9549) | def scaleIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method normal (line 9551) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method normalizeIt (line 9553) | def normalizeIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method conjugate (line 9555) | def conjugate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method conjugateIt (line 9557) | def conjugateIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method inverse (line 9559) | def inverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method invertIt (line 9561) | def invertIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method log (line 9563) | def log(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method exp (line 9565) | def exp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 9567) | def __len__(cls) -> int: ... method __getitem__ (line 9569) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... class MRampAttribute (line 9571) | class MRampAttribute: method assign (line 9579) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 9581) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getNumEntries (line 9583) | def getNumEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getEntries (line 9585) | def getEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addEntries (line 9587) | def addEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method deleteEntries (line 9589) | def deleteEntries(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setColorAtIndex (line 9591) | def setColorAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setValueAtIndex (line 9593) | def setValueAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setPositionAtIndex (line 9595) | def setPositionAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -... method setInterpolationAtIndex (line 9597) | def setInterpolationAtIndex(cls, *args: Incomplete, **kwargs: Incomple... method isColorRamp (line 9599) | def isColorRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isCurveRamp (line 9601) | def isCurveRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasIndex (line 9603) | def hasIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method sort (line 9605) | def sort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method pack (line 9607) | def pack(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setRamp (line 9609) | def setRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method createCurveRamp (line 9611) | def createCurveRamp(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method createColorRamp (line 9613) | def createColorRamp(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method createRamp (line 9615) | def createRamp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method className (line 9617) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getColorAtPosition (line 9619) | def getColorAtPosition(cls, *args: Incomplete, **kwargs: Incomplete) -... method getValueAtPosition (line 9621) | def getValueAtPosition(cls, *args: Incomplete, **kwargs: Incomplete) -... method sampleColorRamp (line 9623) | def sampleColorRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method sampleValueRamp (line 9625) | def sampleValueRamp(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MRenderPassDef (line 9627) | class MRenderPassDef: method __swig_destroy__ (line 9631) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getImplementation (line 9633) | def getImplementation(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getID (line 9635) | def getID(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getName (line 9637) | def getName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getGroup (line 9639) | def getGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getDescription (line 9641) | def getDescription(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getAttributeType (line 9643) | def getAttributeType(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addFloatParameter (line 9645) | def addFloatParameter(cls, *args: Incomplete, **kwargs: Incomplete) ->... method addDoubleParameter (line 9647) | def addDoubleParameter(cls, *args: Incomplete, **kwargs: Incomplete) -... method addIntParameter (line 9649) | def addIntParameter(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 9651) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MRenderPassRegistry (line 9653) | class MRenderPassRegistry: method getRenderPassDefinition (line 9657) | def getRenderPassDefinition(*args: Incomplete, **kwargs: Incomplete) -... method registerRenderPassDefinition (line 9659) | def registerRenderPassDefinition(*args: Incomplete, **kwargs: Incomple... method className (line 9661) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MEdit (line 9663) | class MEdit: method __swig_destroy__ (line 9673) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method editType (line 9675) | def editType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getString (line 9677) | def getString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isApplied (line 9679) | def isApplied(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isFailed (line 9681) | def isFailed(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isTopLevel (line 9683) | def isTopLevel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setApplied (line 9685) | def setApplied(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setFailed (line 9687) | def setFailed(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasEditData (line 9689) | def hasEditData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method matches (line 9691) | def matches(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 9693) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAddRemoveAttrEdit (line 9695) | class MAddRemoveAttrEdit(MEdit): method __swig_destroy__ (line 9699) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method node (line 9701) | def node(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method attributeName (line 9703) | def attributeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method nodeName (line 9705) | def nodeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isAttributeAdded (line 9707) | def isAttributeAdded(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 9709) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MConnectDisconnectAttrEdit (line 9711) | class MConnectDisconnectAttrEdit(MEdit): method __swig_destroy__ (line 9715) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method srcPlug (line 9717) | def srcPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method dstPlug (line 9719) | def dstPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method srcPlugName (line 9721) | def srcPlugName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method dstPlugName (line 9723) | def dstPlugName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isConnection (line 9725) | def isConnection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 9727) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFcurveEdit (line 9729) | class MFcurveEdit(MEdit): method fcurve (line 9733) | def fcurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method fcurveName (line 9735) | def fcurveName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 9737) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 9739) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MRichSelection (line 9741) | class MRichSelection: method __swig_destroy__ (line 9745) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getSelection (line 9747) | def getSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getSymmetry (line 9749) | def getSymmetry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getSymmetryMatrix (line 9751) | def getSymmetryMatrix(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getSymmetryPlane (line 9753) | def getSymmetryPlane(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method clear (line 9755) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSelection (line 9757) | def setSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 9759) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method assign (line 9761) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MSceneMessage (line 9763) | class MSceneMessage(MMessage): method addCallback (line 9820) | def addCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addCheckCallback (line 9822) | def addCheckCallback(*args: Incomplete, **kwargs: Incomplete) -> Incom... method addCheckFileCallback (line 9824) | def addCheckFileCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method addStringArrayCallback (line 9826) | def addStringArrayCallback(*args: Incomplete, **kwargs: Incomplete) ->... method addReferenceCallback (line 9828) | def addReferenceCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method addCheckReferenceCallback (line 9830) | def addCheckReferenceCallback(*args: Incomplete, **kwargs: Incomplete)... method addConnectionFailedCallback (line 9832) | def addConnectionFailedCallback(*args: Incomplete, **kwargs: Incomplet... method addNamespaceRenamedCallback (line 9834) | def addNamespaceRenamedCallback(*args: Incomplete, **kwargs: Incomplet... method className (line 9836) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 9838) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MSelectionList (line 9840) | class MSelectionList: method __swig_destroy__ (line 9847) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method clear (line 9849) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isEmpty (line 9851) | def isEmpty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method length (line 9853) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getDependNode (line 9855) | def getDependNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDagPath (line 9857) | def getDagPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getPlug (line 9859) | def getPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method add (line 9861) | def add(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method remove (line 9863) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method replace (line 9865) | def replace(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasItem (line 9867) | def hasItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasItemPartly (line 9869) | def hasItemPartly(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method toggle (line 9871) | def toggle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method assign (line 9873) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method merge (line 9875) | def merge(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method intersect (line 9877) | def intersect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getSelectionStrings (line 9879) | def getSelectionStrings(cls, *args: Incomplete, **kwargs: Incomplete) ... method className (line 9881) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MSelectionMask (line 9883) | class MSelectionMask: method __swig_destroy__ (line 9971) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setMask (line 9973) | def setMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method addMask (line 9975) | def addMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method intersects (line 9977) | def intersects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method __or__ (line 9979) | def __or__(cls, other: Incomplete) -> Incomplete: ... method assign (line 9981) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method registerSelectionType (line 9983) | def registerSelectionType(*args: Incomplete, **kwargs: Incomplete) -> ... method deregisterSelectionType (line 9985) | def deregisterSelectionType(*args: Incomplete, **kwargs: Incomplete) -... method getSelectionTypePriority (line 9987) | def getSelectionTypePriority(*args: Incomplete, **kwargs: Incomplete) ... class MParentingEdit (line 9989) | class MParentingEdit(MEdit): method __swig_destroy__ (line 9993) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method parentedObject (line 9995) | def parentedObject(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method parent (line 9997) | def parent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method parentedObjectName (line 9999) | def parentedObjectName(cls, *args: Incomplete, **kwargs: Incomplete) -... method parentName (line 10001) | def parentName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 10003) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MSetAttrEdit (line 10005) | class MSetAttrEdit(MEdit): method __swig_destroy__ (line 10009) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method plug (line 10011) | def plug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method plugName (line 10013) | def plugName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 10015) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MStreamUtils (line 10017) | class MStreamUtils: method stdErrorStream (line 10021) | def stdErrorStream(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method stdOutStream (line 10023) | def stdOutStream(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method writeChar (line 10025) | def writeChar(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method writeCharBuffer (line 10027) | def writeCharBuffer(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method writeInt (line 10029) | def writeInt(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method writeFloat (line 10031) | def writeFloat(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method writeDouble (line 10033) | def writeDouble(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method readChar (line 10035) | def readChar(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method readCharBuffer (line 10037) | def readCharBuffer(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method readInt (line 10039) | def readInt(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method readFloat (line 10041) | def readFloat(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method readDouble (line 10043) | def readDouble(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method __swig_destroy__ (line 10045) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MSyntax (line 10047) | class MSyntax: method __swig_destroy__ (line 10068) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10070) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addFlag (line 10072) | def addFlag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method makeFlagMultiUse (line 10074) | def makeFlagMultiUse(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method makeFlagQueryWithFullArgs (line 10076) | def makeFlagQueryWithFullArgs(cls, *args: Incomplete, **kwargs: Incomp... method addArg (line 10078) | def addArg(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method useSelectionAsDefault (line 10080) | def useSelectionAsDefault(cls, *args: Incomplete, **kwargs: Incomplete... method setObjectType (line 10082) | def setObjectType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setMinObjects (line 10084) | def setMinObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setMaxObjects (line 10086) | def setMaxObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method enableQuery (line 10088) | def enableQuery(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method enableEdit (line 10090) | def enableEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method minObjects (line 10092) | def minObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method maxObjects (line 10094) | def maxObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method canQuery (line 10096) | def canQuery(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method canEdit (line 10098) | def canEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 10100) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTesselationParams (line 10102) | class MTesselationParams: method __swig_destroy__ (line 10128) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setFormatType (line 10130) | def setFormatType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setOutputType (line 10132) | def setOutputType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setTriangleCount (line 10134) | def setTriangleCount(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setStdChordHeightRatio (line 10136) | def setStdChordHeightRatio(cls, *args: Incomplete, **kwargs: Incomplet... method setStdFractionalTolerance (line 10138) | def setStdFractionalTolerance(cls, *args: Incomplete, **kwargs: Incomp... method setStdMinEdgeLength (line 10140) | def setStdMinEdgeLength(cls, *args: Incomplete, **kwargs: Incomplete) ... method setSubdivisionFlag (line 10142) | def setSubdivisionFlag(cls, *args: Incomplete, **kwargs: Incomplete) -... method setFitTolerance (line 10144) | def setFitTolerance(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setChordHeightRatio (line 10146) | def setChordHeightRatio(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMinEdgeLength (line 10148) | def setMinEdgeLength(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setMaxEdgeLength (line 10150) | def setMaxEdgeLength(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setMaxNumberPolys (line 10152) | def setMaxNumberPolys(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setMaxSubdivisionLevel (line 10154) | def setMaxSubdivisionLevel(cls, *args: Incomplete, **kwargs: Incomplet... method setMinScreenSize (line 10156) | def setMinScreenSize(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setWorldspaceToScreenTransform (line 10158) | def setWorldspaceToScreenTransform(cls, *args: Incomplete, **kwargs: I... method setMaxUVRectangleSize (line 10160) | def setMaxUVRectangleSize(cls, *args: Incomplete, **kwargs: Incomplete... method setRelativeFitTolerance (line 10162) | def setRelativeFitTolerance(cls, *args: Incomplete, **kwargs: Incomple... method setEdgeSmoothFactor (line 10164) | def setEdgeSmoothFactor(cls, *args: Incomplete, **kwargs: Incomplete) ... method set3DDelta (line 10166) | def set3DDelta(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setUIsoparmType (line 10168) | def setUIsoparmType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setVIsoparmType (line 10170) | def setVIsoparmType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setUNumber (line 10172) | def setUNumber(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setVNumber (line 10174) | def setVNumber(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setBoundingBoxDiagonal (line 10176) | def setBoundingBoxDiagonal(cls, *args: Incomplete, **kwargs: Incomplet... method setUDistanceFraction (line 10178) | def setUDistanceFraction(cls, *args: Incomplete, **kwargs: Incomplete)... method setVDistanceFraction (line 10180) | def setVDistanceFraction(cls, *args: Incomplete, **kwargs: Incomplete)... method assign (line 10182) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 10184) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTimeArray (line 10186) | class MTimeArray: method __swig_destroy__ (line 10190) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 10192) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method set (line 10194) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 10196) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 10198) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 10200) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 10202) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 10204) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method clear (line 10206) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 10208) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 10210) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method assign (line 10212) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 10214) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 10216) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTime (line 10218) | class MTime: method __swig_destroy__ (line 10287) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method unit (line 10289) | def unit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method value (line 10291) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setUnit (line 10293) | def setUnit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setValue (line 10295) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asUnits (line 10297) | def asUnits(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uiUnit (line 10299) | def uiUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUIUnit (line 10301) | def setUIUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method assign (line 10303) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 10305) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10307) | def __ne__(cls, other: object) -> bool: ... method __le__ (line 10309) | def __le__(cls, other: object) -> bool: ... method __ge__ (line 10311) | def __ge__(cls, other: object) -> bool: ... method __lt__ (line 10313) | def __lt__(cls, other: object) -> bool: ... method __gt__ (line 10315) | def __gt__(cls, other: object) -> bool: ... method __add__ (line 10317) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 10319) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 10321) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __isub__ (line 10323) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 10325) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 10327) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method className (line 10329) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method ticksPerSecond (line 10331) | def ticksPerSecond(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method copy (line 10333) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTimer (line 10335) | class MTimer: method __swig_destroy__ (line 10339) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method beginTimer (line 10341) | def beginTimer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method endTimer (line 10343) | def endTimer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method elapsedTime (line 10345) | def elapsedTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method assign (line 10347) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 10349) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10351) | def __ne__(cls, other: object) -> bool: ... method clear (line 10353) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MClosedTimeInterval (line 10355) | class MClosedTimeInterval: method empty (line 10361) | def empty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method __swig_destroy__ (line 10363) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MTimeRange (line 10365) | class MTimeRange: method __swig_destroy__ (line 10369) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10371) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method contains (line 10373) | def contains(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method intersects (line 10375) | def intersects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method empty (line 10377) | def empty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method bounds (line 10379) | def bounds(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __or__ (line 10381) | def __or__(cls, other: Incomplete) -> Incomplete: ... method __eq__ (line 10383) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10385) | def __ne__(cls, other: object) -> bool: ... class MTimerMessage (line 10387) | class MTimerMessage(MMessage): method addTimerCallback (line 10391) | def addTimerCallback(*args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 10393) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSleepCallback (line 10395) | def setSleepCallback(*args: Incomplete, **kwargs: Incomplete) -> Incom... method sleepCallback (line 10397) | def sleepCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method __swig_destroy__ (line 10399) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MTransformationMatrix (line 10402) | class MTransformationMatrix: method __swig_destroy__ (line 10415) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10417) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asMatrix (line 10419) | def asMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asMatrixInverse (line 10421) | def asMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method asScaleMatrix (line 10423) | def asScaleMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asRotateMatrix (line 10425) | def asRotateMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getScale (line 10427) | def getScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setScale (line 10429) | def setScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addScale (line 10431) | def addScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotation (line 10433) | def rotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method eulerRotation (line 10435) | def eulerRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rotateTo (line 10437) | def rotateTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotateBy (line 10439) | def rotateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addRotationQuaternion (line 10441) | def addRotationQuaternion(cls, *args: Incomplete, **kwargs: Incomplete... method addRotation (line 10443) | def addRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rotationOrder (line 10445) | def rotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method reorderRotation (line 10447) | def reorderRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setToRotationAxis (line 10449) | def setToRotationAxis(cls, *args: Incomplete, **kwargs: Incomplete) ->... method rotationOrientation (line 10451) | def rotationOrientation(cls, *args: Incomplete, **kwargs: Incomplete) ... method setRotationOrientation (line 10453) | def setRotationOrientation(cls, *args: Incomplete, **kwargs: Incomplet... method getTranslation (line 10455) | def getTranslation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setTranslation (line 10457) | def setTranslation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addTranslation (line 10459) | def addTranslation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setShear (line 10461) | def setShear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getShear (line 10463) | def getShear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addShear (line 10465) | def addShear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method scalePivot (line 10467) | def scalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setScalePivot (line 10469) | def setScalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method scalePivotTranslation (line 10471) | def scalePivotTranslation(cls, *args: Incomplete, **kwargs: Incomplete... method setScalePivotTranslation (line 10473) | def setScalePivotTranslation(cls, *args: Incomplete, **kwargs: Incompl... method rotatePivot (line 10475) | def rotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotatePivot (line 10477) | def setRotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method rotatePivotTranslation (line 10479) | def rotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomplet... method setRotatePivotTranslation (line 10481) | def setRotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomp... method isEquivalent (line 10483) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method __eq__ (line 10485) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10487) | def __ne__(cls, other: object) -> bool: ... method getRotation (line 10489) | def getRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotation (line 10491) | def setRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getRotationQuaternion (line 10493) | def getRotationQuaternion(cls, *args: Incomplete, **kwargs: Incomplete... method setRotationQuaternion (line 10495) | def setRotationQuaternion(cls, *args: Incomplete, **kwargs: Incomplete... method translation (line 10497) | def translation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 10499) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTrimBoundaryArray (line 10501) | class MTrimBoundaryArray: method __swig_destroy__ (line 10505) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reserve (line 10507) | def reserve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method length (line 10509) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method size (line 10511) | def size(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __getitem__ (line 10513) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method get (line 10515) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method set (line 10517) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method insert (line 10519) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 10521) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 10523) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method clear (line 10525) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getMergedBoundary (line 10527) | def getMergedBoundary(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 10529) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTypeId (line 10531) | class MTypeId: method __swig_destroy__ (line 10535) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10537) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 10539) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10541) | def __ne__(cls, other: object) -> bool: ... method id (line 10543) | def id(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 10545) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MUint64Array (line 10547) | class MUint64Array: method __swig_destroy__ (line 10551) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10553) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 10555) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 10557) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 10559) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 10561) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 10563) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 10565) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 10567) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 10569) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 10571) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 10573) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 10575) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 10577) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __len__ (line 10579) | def __len__(cls) -> int: ... method __setitem__ (line 10581) | def __setitem__(cls, index: Incomplete, object: Incomplete) -> None: ... method __getitem__ (line 10583) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __delitem__ (line 10585) | def __delitem__(cls, other: Incomplete) -> None: ... method __eq__ (line 10587) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10589) | def __ne__(cls, other: object) -> bool: ... method __add__ (line 10591) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __radd__ (line 10593) | def __radd__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 10595) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... class MUintArray (line 10597) | class MUintArray: method __swig_destroy__ (line 10601) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10603) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 10605) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 10607) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 10609) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 10611) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 10613) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 10615) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 10617) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 10619) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 10621) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 10623) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 10625) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method __len__ (line 10627) | def __len__(cls) -> int: ... method __setitem__ (line 10629) | def __setitem__(cls, index: Incomplete, object: Incomplete) -> None: ... method __getitem__ (line 10631) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __delitem__ (line 10633) | def __delitem__(cls, other: Incomplete) -> None: ... method __eq__ (line 10635) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10637) | def __ne__(cls, other: object) -> bool: ... method __add__ (line 10639) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __radd__ (line 10641) | def __radd__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 10643) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method className (line 10645) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MURI (line 10647) | class MURI: method __swig_destroy__ (line 10651) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10653) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 10655) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10657) | def __ne__(cls, other: object) -> bool: ... method copy (line 10659) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setURI (line 10661) | def setURI(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setScheme (line 10663) | def setScheme(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setPath (line 10665) | def setPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setFragment (line 10667) | def setFragment(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setFileName (line 10669) | def setFileName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setDirectory (line 10671) | def setDirectory(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setAuthority (line 10673) | def setAuthority(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setUserInfo (line 10675) | def setUserInfo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setUserName (line 10677) | def setUserName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setPassword (line 10679) | def setPassword(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setHost (line 10681) | def setHost(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setPort (line 10683) | def setPort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method addQueryItem (line 10685) | def addQueryItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setQueryDelimiters (line 10687) | def setQueryDelimiters(cls, *args: Incomplete, **kwargs: Incomplete) -... method asString (line 10689) | def asString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getScheme (line 10691) | def getScheme(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getPath (line 10693) | def getPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getFragment (line 10695) | def getFragment(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getFileName (line 10697) | def getFileName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getDirectory (line 10699) | def getDirectory(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getAuthority (line 10701) | def getAuthority(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getUserInfo (line 10703) | def getUserInfo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getUserName (line 10705) | def getUserName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPassword (line 10707) | def getPassword(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getHost (line 10709) | def getHost(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getPort (line 10711) | def getPort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getAllQueryItemKeys (line 10713) | def getAllQueryItemKeys(cls, *args: Incomplete, **kwargs: Incomplete) ... method getQueryItemValue (line 10715) | def getQueryItemValue(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getAllQueryItemValues (line 10717) | def getAllQueryItemValues(cls, *args: Incomplete, **kwargs: Incomplete... method getQueryValueDelimiter (line 10719) | def getQueryValueDelimiter(cls, *args: Incomplete, **kwargs: Incomplet... method getQueryPairDelimiter (line 10721) | def getQueryPairDelimiter(cls, *args: Incomplete, **kwargs: Incomplete... method removeQueryItem (line 10723) | def removeQueryItem(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method removeAllQueryItems (line 10725) | def removeAllQueryItems(cls, *args: Incomplete, **kwargs: Incomplete) ... method isEmpty (line 10727) | def isEmpty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isValid (line 10729) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method clear (line 10731) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isValidURI (line 10733) | def isValidURI(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method className (line 10735) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MUserData (line 10737) | class MUserData: method __swig_destroy__ (line 10741) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method deleteAfterUse (line 10743) | def deleteAfterUse(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDeleteAfterUse (line 10745) | def setDeleteAfterUse(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 10747) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MUserEventMessage (line 10749) | class MUserEventMessage(MMessage): method registerUserEvent (line 10753) | def registerUserEvent(*args: Incomplete, **kwargs: Incomplete) -> Inco... method isUserEvent (line 10755) | def isUserEvent(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method deregisterUserEvent (line 10757) | def deregisterUserEvent(*args: Incomplete, **kwargs: Incomplete) -> In... method addUserEventCallback (line 10759) | def addUserEventCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method postUserEvent (line 10761) | def postUserEvent(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 10763) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 10765) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MUuid (line 10767) | class MUuid: method __swig_destroy__ (line 10771) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10773) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 10775) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 10777) | def __ne__(cls, other: object) -> bool: ... method get (line 10779) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method asString (line 10781) | def asString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method copy (line 10783) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method valid (line 10785) | def valid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method generate (line 10787) | def generate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 10789) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MVectorArray (line 10791) | class MVectorArray: method __swig_destroy__ (line 10795) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 10797) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 10799) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 10801) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 10803) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 10805) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 10807) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 10809) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 10811) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 10813) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 10815) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method get (line 10817) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setSizeIncrement (line 10819) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 10821) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 10823) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MVector (line 10826) | class MVector: method __swig_destroy__ (line 10849) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10851) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __call__ (line 10853) | def __call__(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method __getitem__ (line 10855) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method __xor__ (line 10857) | def __xor__(cls, other: Incomplete) -> Incomplete: ... method __add__ (line 10859) | def __add__(cls, other: Incomplete) -> Incomplete: ... method __iadd__ (line 10861) | def __iadd__(cls, other: Incomplete) -> Incomplete: ... method __neg__ (line 10863) | def __neg__(cls) -> Incomplete: ... method __isub__ (line 10865) | def __isub__(cls, other: Incomplete) -> Incomplete: ... method __sub__ (line 10867) | def __sub__(cls, other: Incomplete) -> Incomplete: ... method __mul__ (line 10869) | def __mul__(cls, other: Incomplete) -> Incomplete: ... method __imul__ (line 10871) | def __imul__(cls, other: Incomplete) -> Incomplete: ... method __ne__ (line 10873) | def __ne__(cls, other: object) -> bool: ... method __eq__ (line 10875) | def __eq__(cls, other: object) -> bool: ... method rotateBy (line 10877) | def rotateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotateTo (line 10879) | def rotateTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method get (line 10881) | def get(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method length (line 10883) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method normal (line 10885) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method normalize (line 10887) | def normalize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method angle (line 10889) | def angle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isEquivalent (line 10891) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isParallel (line 10893) | def isParallel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method transformAsNormal (line 10895) | def transformAsNormal(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MWeight (line 10897) | class MWeight: method __swig_destroy__ (line 10901) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 10903) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method influence (line 10905) | def influence(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method seam (line 10907) | def seam(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setInfluence (line 10909) | def setInfluence(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setSeam (line 10911) | def setSeam(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 10913) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDataHandle (line 10915) | class MDataHandle: method isNumeric (line 10919) | def isNumeric(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isGeneric (line 10921) | def isGeneric(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method numericType (line 10923) | def numericType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method type (line 10925) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method typeId (line 10927) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method acceptedTypeIds (line 10929) | def acceptedTypeIds(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method data (line 10931) | def data(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method copy (line 10933) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method copyWritable (line 10935) | def copyWritable(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method attribute (line 10937) | def attribute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setClean (line 10939) | def setClean(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asBool (line 10941) | def asBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asChar (line 10943) | def asChar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asUChar (line 10945) | def asUChar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asShort (line 10947) | def asShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asLong (line 10949) | def asLong(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asInt (line 10951) | def asInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method asInt64 (line 10953) | def asInt64(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asAddr (line 10955) | def asAddr(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asFloat (line 10957) | def asFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asDouble (line 10959) | def asDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asDistance (line 10961) | def asDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asAngle (line 10963) | def asAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asTime (line 10965) | def asTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asShort2 (line 10967) | def asShort2(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asLong2 (line 10969) | def asLong2(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asInt2 (line 10971) | def asInt2(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asFloat2 (line 10973) | def asFloat2(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asDouble2 (line 10975) | def asDouble2(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asShort3 (line 10977) | def asShort3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asLong3 (line 10979) | def asLong3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asInt3 (line 10981) | def asInt3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asFloat3 (line 10983) | def asFloat3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asDouble3 (line 10985) | def asDouble3(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asDouble4 (line 10987) | def asDouble4(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asVector (line 10989) | def asVector(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asFloatVector (line 10991) | def asFloatVector(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asMatrix (line 10993) | def asMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asFloatMatrix (line 10995) | def asFloatMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asString (line 10997) | def asString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asNurbsCurve (line 10999) | def asNurbsCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asNurbsSurface (line 11001) | def asNurbsSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method asMesh (line 11003) | def asMesh(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asSubdSurface (line 11005) | def asSubdSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asNurbsCurveTransformed (line 11007) | def asNurbsCurveTransformed(cls, *args: Incomplete, **kwargs: Incomple... method asNurbsSurfaceTransformed (line 11009) | def asNurbsSurfaceTransformed(cls, *args: Incomplete, **kwargs: Incomp... method asMeshTransformed (line 11011) | def asMeshTransformed(cls, *args: Incomplete, **kwargs: Incomplete) ->... method asSubdSurfaceTransformed (line 11013) | def asSubdSurfaceTransformed(cls, *args: Incomplete, **kwargs: Incompl... method asFalloffFunction (line 11015) | def asFalloffFunction(cls, *args: Incomplete, **kwargs: Incomplete) ->... method geometryTransformMatrix (line 11017) | def geometryTransformMatrix(cls, *args: Incomplete, **kwargs: Incomple... method asPluginData (line 11019) | def asPluginData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setBool (line 11021) | def setBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setChar (line 11023) | def setChar(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setShort (line 11025) | def setShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setInt (line 11027) | def setInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setInt64 (line 11029) | def setInt64(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setFloat (line 11031) | def setFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDouble (line 11033) | def setDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMMatrix (line 11035) | def setMMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMFloatMatrix (line 11037) | def setMFloatMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setMVector (line 11039) | def setMVector(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMFloatVector (line 11041) | def setMFloatVector(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setMDistance (line 11043) | def setMDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setMAngle (line 11045) | def setMAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMTime (line 11047) | def setMTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method set2Short (line 11049) | def set2Short(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method set2Int (line 11051) | def set2Int(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set2Float (line 11053) | def set2Float(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method set2Double (line 11055) | def set2Double(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method set3Short (line 11057) | def set3Short(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method set3Int (line 11059) | def set3Int(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set3Float (line 11061) | def set3Float(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method set3Double (line 11063) | def set3Double(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method set4Double (line 11065) | def set4Double(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setString (line 11067) | def setString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMObject (line 11069) | def setMObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMPxData (line 11071) | def setMPxData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asGenericBool (line 11073) | def asGenericBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asGenericChar (line 11075) | def asGenericChar(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asGenericDouble (line 11077) | def asGenericDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method asGenericFloat (line 11079) | def asGenericFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method asGenericShort (line 11081) | def asGenericShort(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method asGenericInt (line 11083) | def asGenericInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asGenericInt64 (line 11085) | def asGenericInt64(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setGenericBool (line 11087) | def setGenericBool(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setGenericChar (line 11089) | def setGenericChar(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setGenericDouble (line 11091) | def setGenericDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setGenericFloat (line 11093) | def setGenericFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setGenericShort (line 11095) | def setGenericShort(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setGenericInt (line 11097) | def setGenericInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setGenericInt64 (line 11099) | def setGenericInt64(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method child (line 11101) | def child(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method datablock (line 11103) | def datablock(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method assign (line 11105) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 11107) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 11109) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MProfiler (line 11111) | class MProfiler: method removeCategory (line 11134) | def removeCategory(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method getCategoryIndex (line 11136) | def getCategoryIndex(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getCategoryName (line 11138) | def getCategoryName(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method getCategoryInfo (line 11140) | def getCategoryInfo(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method categoryRecording (line 11142) | def categoryRecording(*args: Incomplete, **kwargs: Incomplete) -> Inco... method setCategoryRecording (line 11144) | def setCategoryRecording(*args: Incomplete, **kwargs: Incomplete) -> I... method signalEvent (line 11146) | def signalEvent(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method eventEnd (line 11148) | def eventEnd(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getEventCount (line 11150) | def getEventCount(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method getEventTime (line 11152) | def getEventTime(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getEventDuration (line 11154) | def getEventDuration(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getEventName (line 11156) | def getEventName(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getDescription (line 11158) | def getDescription(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method getEventCategory (line 11160) | def getEventCategory(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getThreadId (line 11162) | def getThreadId(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getCPUId (line 11164) | def getCPUId(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isSignalEvent (line 11166) | def isSignalEvent(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method getColor (line 11168) | def getColor(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getThreadDuration (line 11170) | def getThreadDuration(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getBufferSize (line 11172) | def getBufferSize(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setBufferSize (line 11174) | def setBufferSize(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method recordingActive (line 11176) | def recordingActive(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method eventDataAvailable (line 11178) | def eventDataAvailable(*args: Incomplete, **kwargs: Incomplete) -> Inc... method resetRecording (line 11180) | def resetRecording(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method setRecordingActive (line 11182) | def setRecordingActive(*args: Incomplete, **kwargs: Incomplete) -> Inc... method saveRecording (line 11184) | def saveRecording(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method loadRecording (line 11186) | def loadRecording(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method isDataFromFile (line 11188) | def isDataFromFile(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method getNumberOfCPUs (line 11190) | def getNumberOfCPUs(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 11192) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method addCategory (line 11194) | def addCategory(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getAllCategories (line 11196) | def getAllCategories(*args: Incomplete, **kwargs: Incomplete) -> Incom... method eventBegin (line 11198) | def eventBegin(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MProfilingScope (line 11200) | class MProfilingScope: method __swig_destroy__ (line 11204) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 11206) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... function intRefValue (line 11208) | def intRefValue(ptr: Incomplete) -> Incomplete: ... function shortRefValue (line 11209) | def shortRefValue(ptr: Incomplete) -> Incomplete: ... function floatRefValue (line 11210) | def floatRefValue(ptr: Incomplete) -> Incomplete: ... function doubleRefValue (line 11211) | def doubleRefValue(ptr: Incomplete) -> Incomplete: ... function charRefValue (line 11212) | def charRefValue(ptr: Incomplete) -> Incomplete: ... function boolRefValue (line 11213) | def boolRefValue(ptr: Incomplete) -> Incomplete: ... function uIntRefValue (line 11214) | def uIntRefValue(ptr: Incomplete) -> Incomplete: ... function uCharRefValue (line 11215) | def uCharRefValue(ptr: Incomplete) -> Incomplete: ... function setRefValue (line 11216) | def setRefValue(refObject: Incomplete, value: Incomplete) -> Incomplete:... function createIntRef (line 11217) | def createIntRef() -> Incomplete: ... function createShortRef (line 11218) | def createShortRef() -> Incomplete: ... function createFloatRef (line 11219) | def createFloatRef() -> Incomplete: ... function createDoubleRef (line 11220) | def createDoubleRef() -> Incomplete: ... function createCharRef (line 11221) | def createCharRef() -> Incomplete: ... function createBoolRef (line 11222) | def createBoolRef() -> Incomplete: ... function createUIntRef (line 11223) | def createUIntRef() -> Incomplete: ... function createUCharRef (line 11224) | def createUCharRef() -> Incomplete: ... function MProfilingContextManager (line 11225) | def MProfilingContextManager(*args: Incomplete, **kwds: Incomplete) -> I... FILE: maya/stubs/maya-stubs/OpenMayaAnim.pyi class _SwigNonDynamicMeta (line 5) | class _SwigNonDynamicMeta(type): class charPtr (line 8) | class charPtr: method __swig_destroy__ (line 12) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 14) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 16) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 18) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 20) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class intPtr (line 22) | class intPtr: method __swig_destroy__ (line 26) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 28) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 30) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 32) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 34) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class shortPtr (line 36) | class shortPtr: method __swig_destroy__ (line 40) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 42) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 44) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 46) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 48) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class floatPtr (line 50) | class floatPtr: method __swig_destroy__ (line 54) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 56) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 58) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 60) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 62) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class doublePtr (line 64) | class doublePtr: method __swig_destroy__ (line 68) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 70) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 72) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 74) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 76) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class boolPtr (line 78) | class boolPtr: method __swig_destroy__ (line 82) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 84) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 86) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 88) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 90) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uIntPtr (line 92) | class uIntPtr: method __swig_destroy__ (line 96) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 98) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 100) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 102) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 104) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uCharPtr (line 106) | class uCharPtr: method __swig_destroy__ (line 110) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 112) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 114) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 116) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 118) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MAnimControl (line 120) | class MAnimControl: method __swig_destroy__ (line 129) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isValid (line 131) | def isValid(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method playbackMode (line 133) | def playbackMode(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setPlaybackMode (line 135) | def setPlaybackMode(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method viewMode (line 137) | def viewMode(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setViewMode (line 139) | def setViewMode(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method playbackBy (line 141) | def playbackBy(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setPlaybackBy (line 143) | def setPlaybackBy(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method minTime (line 145) | def minTime(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method maxTime (line 147) | def maxTime(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setMinTime (line 149) | def setMinTime(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setMaxTime (line 151) | def setMaxTime(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setMinMaxTime (line 153) | def setMinMaxTime(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method animationStartTime (line 155) | def animationStartTime(*args: Incomplete, **kwargs: Incomplete) -> Inc... method animationEndTime (line 157) | def animationEndTime(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setAnimationStartTime (line 159) | def setAnimationStartTime(*args: Incomplete, **kwargs: Incomplete) -> ... method setAnimationEndTime (line 161) | def setAnimationEndTime(*args: Incomplete, **kwargs: Incomplete) -> In... method setAnimationStartEndTime (line 163) | def setAnimationStartEndTime(*args: Incomplete, **kwargs: Incomplete) ... method currentTime (line 165) | def currentTime(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setCurrentTime (line 167) | def setCurrentTime(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method playbackSpeed (line 169) | def playbackSpeed(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPlaybackSpeed (line 171) | def setPlaybackSpeed(*args: Incomplete, **kwargs: Incomplete) -> Incom... method playForward (line 173) | def playForward(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method playBackward (line 175) | def playBackward(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isPlaying (line 177) | def isPlaying(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isScrubbing (line 179) | def isScrubbing(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method stop (line 181) | def stop(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method autoKeyMode (line 183) | def autoKeyMode(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setAutoKeyMode (line 185) | def setAutoKeyMode(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method globalInTangentType (line 187) | def globalInTangentType(*args: Incomplete, **kwargs: Incomplete) -> In... method setGlobalInTangentType (line 189) | def setGlobalInTangentType(*args: Incomplete, **kwargs: Incomplete) ->... method globalOutTangentType (line 191) | def globalOutTangentType(*args: Incomplete, **kwargs: Incomplete) -> I... method setGlobalOutTangentType (line 193) | def setGlobalOutTangentType(*args: Incomplete, **kwargs: Incomplete) -... method weightedTangents (line 195) | def weightedTangents(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setWeightedTangents (line 197) | def setWeightedTangents(*args: Incomplete, **kwargs: Incomplete) -> In... class MAnimCurveChange (line 199) | class MAnimCurveChange: method __swig_destroy__ (line 203) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method undoIt (line 205) | def undoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method redoIt (line 207) | def redoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isInteractive (line 209) | def isInteractive(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setInteractive (line 211) | def setInteractive(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method className (line 213) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAnimCurveClipboard (line 215) | class MAnimCurveClipboard: method __swig_destroy__ (line 219) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method theAPIClipboard (line 221) | def theAPIClipboard(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method set (line 223) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 225) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isEmpty (line 227) | def isEmpty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method clipboardItems (line 229) | def clipboardItems(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method startTime (line 231) | def startTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method endTime (line 233) | def endTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method startUnitlessInput (line 235) | def startUnitlessInput(cls, *args: Incomplete, **kwargs: Incomplete) -... method endUnitlessInput (line 237) | def endUnitlessInput(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MAnimCurveClipboardItemArray (line 239) | class MAnimCurveClipboardItemArray: method __swig_destroy__ (line 243) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 245) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method set (line 247) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 249) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 251) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 253) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 255) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 257) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method clear (line 259) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 261) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 263) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isValid (line 265) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method assign (line 267) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 269) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 271) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAnimCurveClipboardItem (line 273) | class MAnimCurveClipboardItem: method __swig_destroy__ (line 277) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method animCurve (line 279) | def animCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getAddressingInfo (line 281) | def getAddressingInfo(cls, *args: Incomplete, **kwargs: Incomplete) ->... method fullAttributeName (line 283) | def fullAttributeName(cls, *args: Incomplete, **kwargs: Incomplete) ->... method leafAttributeName (line 285) | def leafAttributeName(cls, *args: Incomplete, **kwargs: Incomplete) ->... method nodeName (line 287) | def nodeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method animCurveType (line 289) | def animCurveType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setAnimCurve (line 291) | def setAnimCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setAddressingInfo (line 293) | def setAddressingInfo(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setNameInfo (line 295) | def setNameInfo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method assign (line 297) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 299) | def __eq__(cls, other: object) -> bool: ... method className (line 301) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MAnimMessage (line 303) | class MAnimMessage(maya.OpenMaya.MMessage): method addAnimCurveEditedCallback (line 307) | def addAnimCurveEditedCallback(*args: Incomplete, **kwargs: Incomplete... method addAnimKeyframeEditedCallback (line 309) | def addAnimKeyframeEditedCallback(*args: Incomplete, **kwargs: Incompl... method addNodeAnimKeyframeEditedCallback (line 311) | def addNodeAnimKeyframeEditedCallback(*args: Incomplete, **kwargs: Inc... method addAnimKeyframeEditCheckCallback (line 313) | def addAnimKeyframeEditCheckCallback(*args: Incomplete, **kwargs: Inco... method addPreBakeResultsCallback (line 315) | def addPreBakeResultsCallback(*args: Incomplete, **kwargs: Incomplete)... method addPostBakeResultsCallback (line 317) | def addPostBakeResultsCallback(*args: Incomplete, **kwargs: Incomplete... method addDisableImplicitControlCallback (line 319) | def addDisableImplicitControlCallback(*args: Incomplete, **kwargs: Inc... method flushAnimKeyframeEditedCallbacks (line 321) | def flushAnimKeyframeEditedCallbacks(*args: Incomplete, **kwargs: Inco... method className (line 323) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 325) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MAnimUtil (line 327) | class MAnimUtil: method isAnimated (line 331) | def isAnimated(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method findAnimatedPlugs (line 333) | def findAnimatedPlugs(*args: Incomplete, **kwargs: Incomplete) -> Inco... method findAnimation (line 335) | def findAnimation(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method findSetDrivenKeyAnimation (line 337) | def findSetDrivenKeyAnimation(*args: Incomplete, **kwargs: Incomplete)... method findConstraint (line 339) | def findConstraint(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method findAnimatablePlugs (line 341) | def findAnimatablePlugs(*args: Incomplete, **kwargs: Incomplete) -> In... method findAnimationLayers (line 343) | def findAnimationLayers(*args: Incomplete, **kwargs: Incomplete) -> In... method className (line 345) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnAnimCurve (line 347) | class MFnAnimCurve(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 391) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 393) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 395) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method animCurveType (line 397) | def animCurveType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method timedAnimCurveTypeForPlug (line 399) | def timedAnimCurveTypeForPlug(cls, *args: Incomplete, **kwargs: Incomp... method unitlessAnimCurveTypeForPlug (line 401) | def unitlessAnimCurveTypeForPlug(cls, *args: Incomplete, **kwargs: Inc... method evaluate (line 403) | def evaluate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isStatic (line 405) | def isStatic(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numKeyframes (line 407) | def numKeyframes(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method numKeys (line 409) | def numKeys(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 411) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addKeyframe (line 413) | def addKeyframe(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method addKey (line 415) | def addKey(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addKeys (line 417) | def addKeys(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method addKeysWithTangents (line 419) | def addKeysWithTangents(cls, *args: Incomplete, **kwargs: Incomplete) ... method insertKey (line 421) | def insertKey(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method find (line 423) | def find(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method findClosest (line 425) | def findClosest(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method time (line 427) | def time(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method value (line 429) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method quaternionW (line 431) | def quaternionW(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method unitlessInput (line 433) | def unitlessInput(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setValue (line 435) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setQuaternionW (line 437) | def setQuaternionW(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setTime (line 439) | def setTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setUnitlessInput (line 441) | def setUnitlessInput(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isTimeInput (line 443) | def isTimeInput(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isUnitlessInput (line 445) | def isUnitlessInput(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method inTangentType (line 447) | def inTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method outTangentType (line 449) | def outTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setInTangentType (line 451) | def setInTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setOutTangentType (line 453) | def setOutTangentType(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setTangentTypes (line 455) | def setTangentTypes(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setTangent (line 457) | def setTangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setAngle (line 459) | def setAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setWeight (line 461) | def setWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method weightsLocked (line 463) | def weightsLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method tangentsLocked (line 465) | def tangentsLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setWeightsLocked (line 467) | def setWeightsLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setTangentsLocked (line 469) | def setTangentsLocked(cls, *args: Incomplete, **kwargs: Incomplete) ->... method preInfinityType (line 471) | def preInfinityType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method postInfinityType (line 473) | def postInfinityType(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setPreInfinityType (line 475) | def setPreInfinityType(cls, *args: Incomplete, **kwargs: Incomplete) -... method setPostInfinityType (line 477) | def setPostInfinityType(cls, *args: Incomplete, **kwargs: Incomplete) ... method isWeighted (line 479) | def isWeighted(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setIsWeighted (line 481) | def setIsWeighted(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isBreakdown (line 483) | def isBreakdown(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setIsBreakdown (line 485) | def setIsBreakdown(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getTangent (line 487) | def getTangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnBlendShapeDeformer (line 489) | class MFnBlendShapeDeformer(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 501) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 503) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 505) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addBaseObject (line 507) | def addBaseObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getBaseObjects (line 509) | def getBaseObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addTarget (line 511) | def addTarget(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method removeTarget (line 513) | def removeTarget(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getTargets (line 515) | def getTargets(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method numWeights (line 517) | def numWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method weightIndexList (line 519) | def weightIndexList(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method targetItemIndexList (line 521) | def targetItemIndexList(cls, *args: Incomplete, **kwargs: Incomplete) ... method weight (line 523) | def weight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setWeight (line 525) | def setWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method envelope (line 527) | def envelope(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setEnvelope (line 529) | def setEnvelope(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method origin (line 531) | def origin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setOrigin (line 533) | def setOrigin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method historyLocation (line 535) | def historyLocation(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnCharacter (line 537) | class MFnCharacter(maya.OpenMaya.MFnSet): method __swig_destroy__ (line 541) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 543) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method attachSourceToCharacter (line 545) | def attachSourceToCharacter(cls, *args: Incomplete, **kwargs: Incomple... method attachInstanceToCharacter (line 547) | def attachInstanceToCharacter(cls, *args: Incomplete, **kwargs: Incomp... method addCurveToClip (line 549) | def addCurveToClip(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method createBlend (line 551) | def createBlend(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method blendExists (line 553) | def blendExists(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method removeBlend (line 555) | def removeBlend(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getCharacterThatOwnsPlug (line 557) | def getCharacterThatOwnsPlug(cls, *args: Incomplete, **kwargs: Incompl... method getMemberPlugs (line 559) | def getMemberPlugs(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getSubCharacters (line 561) | def getSubCharacters(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getClipScheduler (line 563) | def getClipScheduler(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getScheduledClipCount (line 565) | def getScheduledClipCount(cls, *args: Incomplete, **kwargs: Incomplete... method getScheduledClip (line 567) | def getScheduledClip(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getSourceClipCount (line 569) | def getSourceClipCount(cls, *args: Incomplete, **kwargs: Incomplete) -... method getSourceClip (line 571) | def getSourceClip(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getBlendCount (line 573) | def getBlendCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getBlend (line 575) | def getBlend(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getBlendClips (line 577) | def getBlendClips(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnClip (line 579) | class MFnClip(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 583) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 585) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method createSourceClip (line 587) | def createSourceClip(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method createInstancedClip (line 589) | def createInstancedClip(cls, *args: Incomplete, **kwargs: Incomplete) ... method isInstancedClip (line 591) | def isInstancedClip(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isPose (line 593) | def isPose(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method sourceClip (line 595) | def sourceClip(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getPreCycle (line 597) | def getPreCycle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPostCycle (line 599) | def getPostCycle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getCycle (line 601) | def getCycle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getWeight (line 603) | def getWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getScale (line 605) | def getScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getAbsolute (line 607) | def getAbsolute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getEnabled (line 609) | def getEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getStartFrame (line 611) | def getStartFrame(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getSourceStart (line 613) | def getSourceStart(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getSourceDuration (line 615) | def getSourceDuration(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getMemberAnimCurves (line 617) | def getMemberAnimCurves(cls, *args: Incomplete, **kwargs: Incomplete) ... method getAbsoluteChannelSettings (line 619) | def getAbsoluteChannelSettings(cls, *args: Incomplete, **kwargs: Incom... method getTrack (line 621) | def getTrack(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPoseClip (line 623) | def setPoseClip(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setPreCycle (line 625) | def setPreCycle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setPostCycle (line 627) | def setPostCycle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCycle (line 629) | def setCycle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setWeight (line 631) | def setWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setScale (line 633) | def setScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setAbsolute (line 635) | def setAbsolute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setEnabled (line 637) | def setEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setStartFrame (line 639) | def setStartFrame(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setSourceData (line 641) | def setSourceData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setTrack (line 643) | def setTrack(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setAbsoluteChannelSettings (line 645) | def setAbsoluteChannelSettings(cls, *args: Incomplete, **kwargs: Incom... class MFnGeometryFilter (line 647) | class MFnGeometryFilter(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 651) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 653) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getInputGeometry (line 655) | def getInputGeometry(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getOutputGeometry (line 657) | def getOutputGeometry(cls, *args: Incomplete, **kwargs: Incomplete) ->... method inputShapeAtIndex (line 659) | def inputShapeAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) ->... method outputShapeAtIndex (line 661) | def outputShapeAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -... method indexForOutputShape (line 663) | def indexForOutputShape(cls, *args: Incomplete, **kwargs: Incomplete) ... method getPathAtIndex (line 665) | def getPathAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method indexForGroupId (line 667) | def indexForGroupId(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method groupIdAtIndex (line 669) | def groupIdAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method numOutputConnections (line 671) | def numOutputConnections(cls, *args: Incomplete, **kwargs: Incomplete)... method indexForOutputConnection (line 673) | def indexForOutputConnection(cls, *args: Incomplete, **kwargs: Incompl... method deformerSet (line 675) | def deformerSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method envelope (line 677) | def envelope(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setEnvelope (line 679) | def setEnvelope(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getComponentAtIndex (line 681) | def getComponentAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) ... method getIndexMapper (line 683) | def getIndexMapper(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnHikEffector (line 685) | class MFnHikEffector(maya.OpenMaya.MFnTransform): method __swig_destroy__ (line 689) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 691) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 693) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getPivotOffset (line 695) | def getPivotOffset(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setPivotOffset (line 697) | def setPivotOffset(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getEffColor (line 699) | def getEffColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setEffColor (line 701) | def setEffColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getAuxiliaryEffectors (line 703) | def getAuxiliaryEffectors(cls, *args: Incomplete, **kwargs: Incomplete... class MFnIkEffector (line 705) | class MFnIkEffector(maya.OpenMaya.MFnTransform): method __swig_destroy__ (line 709) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 711) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 713) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnIkHandle (line 715) | class MFnIkHandle(maya.OpenMaya.MFnTransform): method __swig_destroy__ (line 722) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 724) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 726) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getStartJoint (line 728) | def getStartJoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setStartJoint (line 730) | def setStartJoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getEffector (line 732) | def getEffector(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setEffector (line 734) | def setEffector(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setStartJointAndEffector (line 736) | def setStartJointAndEffector(cls, *args: Incomplete, **kwargs: Incompl... method priority (line 738) | def priority(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPriority (line 740) | def setPriority(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method stickiness (line 742) | def stickiness(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setStickiness (line 744) | def setStickiness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method weight (line 746) | def weight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setWeight (line 748) | def setWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method poWeight (line 750) | def poWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPOWeight (line 752) | def setPOWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method solver (line 754) | def solver(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setSolver (line 756) | def setSolver(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MFnIkJoint (line 758) | class MFnIkJoint(maya.OpenMaya.MFnTransform): method __swig_destroy__ (line 766) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 768) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 770) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getOrientation (line 772) | def getOrientation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setOrientation (line 774) | def setOrientation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getScaleOrientation (line 776) | def getScaleOrientation(cls, *args: Incomplete, **kwargs: Incomplete) ... method setScaleOrientation (line 778) | def setScaleOrientation(cls, *args: Incomplete, **kwargs: Incomplete) ... method getSegmentScale (line 780) | def getSegmentScale(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSegmentScale (line 782) | def setSegmentScale(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getStiffness (line 784) | def getStiffness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setStiffness (line 786) | def setStiffness(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getPreferredAngle (line 788) | def getPreferredAngle(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setPreferredAngle (line 790) | def setPreferredAngle(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getDegreesOfFreedom (line 792) | def getDegreesOfFreedom(cls, *args: Incomplete, **kwargs: Incomplete) ... method setDegreesOfFreedom (line 794) | def setDegreesOfFreedom(cls, *args: Incomplete, **kwargs: Incomplete) ... method minRotateDampXRange (line 796) | def minRotateDampXRange(cls, *args: Incomplete, **kwargs: Incomplete) ... method minRotateDampYRange (line 798) | def minRotateDampYRange(cls, *args: Incomplete, **kwargs: Incomplete) ... method minRotateDampZRange (line 800) | def minRotateDampZRange(cls, *args: Incomplete, **kwargs: Incomplete) ... method maxRotateDampXRange (line 802) | def maxRotateDampXRange(cls, *args: Incomplete, **kwargs: Incomplete) ... method maxRotateDampYRange (line 804) | def maxRotateDampYRange(cls, *args: Incomplete, **kwargs: Incomplete) ... method maxRotateDampZRange (line 806) | def maxRotateDampZRange(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMinRotateDampXRange (line 808) | def setMinRotateDampXRange(cls, *args: Incomplete, **kwargs: Incomplet... method setMinRotateDampYRange (line 810) | def setMinRotateDampYRange(cls, *args: Incomplete, **kwargs: Incomplet... method setMinRotateDampZRange (line 812) | def setMinRotateDampZRange(cls, *args: Incomplete, **kwargs: Incomplet... method setMaxRotateDampXRange (line 814) | def setMaxRotateDampXRange(cls, *args: Incomplete, **kwargs: Incomplet... method setMaxRotateDampYRange (line 816) | def setMaxRotateDampYRange(cls, *args: Incomplete, **kwargs: Incomplet... method setMaxRotateDampZRange (line 818) | def setMaxRotateDampZRange(cls, *args: Incomplete, **kwargs: Incomplet... method minRotateDampXStrength (line 820) | def minRotateDampXStrength(cls, *args: Incomplete, **kwargs: Incomplet... method minRotateDampYStrength (line 822) | def minRotateDampYStrength(cls, *args: Incomplete, **kwargs: Incomplet... method minRotateDampZStrength (line 824) | def minRotateDampZStrength(cls, *args: Incomplete, **kwargs: Incomplet... method maxRotateDampXStrength (line 826) | def maxRotateDampXStrength(cls, *args: Incomplete, **kwargs: Incomplet... method maxRotateDampYStrength (line 828) | def maxRotateDampYStrength(cls, *args: Incomplete, **kwargs: Incomplet... method maxRotateDampZStrength (line 830) | def maxRotateDampZStrength(cls, *args: Incomplete, **kwargs: Incomplet... method setMinRotateDampXStrength (line 832) | def setMinRotateDampXStrength(cls, *args: Incomplete, **kwargs: Incomp... method setMinRotateDampYStrength (line 834) | def setMinRotateDampYStrength(cls, *args: Incomplete, **kwargs: Incomp... method setMinRotateDampZStrength (line 836) | def setMinRotateDampZStrength(cls, *args: Incomplete, **kwargs: Incomp... method setMaxRotateDampXStrength (line 838) | def setMaxRotateDampXStrength(cls, *args: Incomplete, **kwargs: Incomp... method setMaxRotateDampYStrength (line 840) | def setMaxRotateDampYStrength(cls, *args: Incomplete, **kwargs: Incomp... method setMaxRotateDampZStrength (line 842) | def setMaxRotateDampZStrength(cls, *args: Incomplete, **kwargs: Incomp... method hikJointName (line 844) | def hikJointName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getPreferedAngle (line 846) | def getPreferedAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setPreferedAngle (line 848) | def setPreferedAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnIkSolver (line 850) | class MFnIkSolver(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 854) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 856) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method maxIterations (line 858) | def maxIterations(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setMaxIterations (line 860) | def setMaxIterations(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method tolerance (line 862) | def tolerance(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setTolerance (line 864) | def setTolerance(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnKeyframeDelta (line 866) | class MFnKeyframeDelta(maya.OpenMaya.MFnBase): method __swig_destroy__ (line 870) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 872) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method paramCurve (line 874) | def paramCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method keyIndex (line 876) | def keyIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MFnKeyframeDeltaAddRemove (line 878) | class MFnKeyframeDeltaAddRemove(MFnKeyframeDelta): method __swig_destroy__ (line 885) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 887) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method deltaType (line 889) | def deltaType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method value (line 891) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method time (line 893) | def time(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method replacedValue (line 895) | def replacedValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnKeyframeDeltaBlockAddRemove (line 897) | class MFnKeyframeDeltaBlockAddRemove(MFnKeyframeDelta): method __swig_destroy__ (line 903) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 905) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method deltaType (line 907) | def deltaType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method startTime (line 909) | def startTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method endTime (line 911) | def endTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method numKeys (line 913) | def numKeys(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getValues (line 915) | def getValues(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getTimes (line 917) | def getTimes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MFnKeyframeDeltaBreakdown (line 919) | class MFnKeyframeDeltaBreakdown(MFnKeyframeDelta): method __swig_destroy__ (line 923) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 925) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method wasBreakdown (line 927) | def wasBreakdown(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isBreakdown (line 929) | def isBreakdown(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnKeyframeDeltaInfType (line 931) | class MFnKeyframeDeltaInfType(MFnKeyframeDelta): method __swig_destroy__ (line 935) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 937) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method previousInfinityType (line 939) | def previousInfinityType(cls, *args: Incomplete, **kwargs: Incomplete)... method currentInfinityType (line 941) | def currentInfinityType(cls, *args: Incomplete, **kwargs: Incomplete) ... method isPreInfinity (line 943) | def isPreInfinity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnKeyframeDeltaMove (line 945) | class MFnKeyframeDeltaMove(MFnKeyframeDelta): method __swig_destroy__ (line 949) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 951) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method previousTime (line 953) | def previousTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method currentTime (line 955) | def currentTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method previousValue (line 957) | def previousValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method currentValue (line 959) | def currentValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method previousIndex (line 961) | def previousIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnKeyframeDeltaScale (line 963) | class MFnKeyframeDeltaScale(MFnKeyframeDelta): method __swig_destroy__ (line 967) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 969) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method startTime (line 971) | def startTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method endTime (line 973) | def endTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method currentStartTime (line 975) | def currentStartTime(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method currentEndTime (line 977) | def currentEndTime(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method pivotTime (line 979) | def pivotTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MFnKeyframeDeltaTangent (line 981) | class MFnKeyframeDeltaTangent(MFnKeyframeDelta): method __swig_destroy__ (line 985) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 987) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method previousTangentType (line 989) | def previousTangentType(cls, *args: Incomplete, **kwargs: Incomplete) ... method currentTangentType (line 991) | def currentTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -... method getPreviousPosition (line 993) | def getPreviousPosition(cls, *args: Incomplete, **kwargs: Incomplete) ... method getCurrentPosition (line 995) | def getCurrentPosition(cls, *args: Incomplete, **kwargs: Incomplete) -... method isInTangent (line 997) | def isInTangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnKeyframeDeltaWeighted (line 999) | class MFnKeyframeDeltaWeighted(MFnKeyframeDelta): method __swig_destroy__ (line 1003) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1005) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method wasWeighted (line 1007) | def wasWeighted(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnLatticeDeformer (line 1009) | class MFnLatticeDeformer(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 1013) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1015) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1017) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addGeometry (line 1019) | def addGeometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method removeGeometry (line 1021) | def removeGeometry(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getAffectedGeometry (line 1023) | def getAffectedGeometry(cls, *args: Incomplete, **kwargs: Incomplete) ... method getDivisions (line 1025) | def getDivisions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDivisions (line 1027) | def setDivisions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method resetLattice (line 1029) | def resetLattice(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method deformLattice (line 1031) | def deformLattice(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method baseLattice (line 1033) | def baseLattice(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnLattice (line 1035) | class MFnLattice(maya.OpenMaya.MFnDagNode): method __swig_destroy__ (line 1039) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1041) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1043) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method reset (line 1045) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getDivisions (line 1047) | def getDivisions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDivisions (line 1049) | def setDivisions(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method point (line 1051) | def point(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MFnMotionPath (line 1053) | class MFnMotionPath(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 1060) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1062) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1064) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setPathObject (line 1066) | def setPathObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method pathObject (line 1068) | def pathObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addAnimatedObject (line 1070) | def addAnimatedObject(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getAnimatedObjects (line 1072) | def getAnimatedObjects(cls, *args: Incomplete, **kwargs: Incomplete) -... method setFollow (line 1074) | def setFollow(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method follow (line 1076) | def follow(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setFollowAxis (line 1078) | def setFollowAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method followAxis (line 1080) | def followAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setUpAxis (line 1082) | def setUpAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method upAxis (line 1084) | def upAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setBank (line 1086) | def setBank(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method bank (line 1088) | def bank(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setBankScale (line 1090) | def setBankScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method bankScale (line 1092) | def bankScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setBankThreshold (line 1094) | def setBankThreshold(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method bankThreshold (line 1096) | def bankThreshold(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setUseNormal (line 1098) | def setUseNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method useNormal (line 1100) | def useNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setInverseNormal (line 1102) | def setInverseNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method inverseNormal (line 1104) | def inverseNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setUStart (line 1106) | def setUStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setUEnd (line 1108) | def setUEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uStart (line 1110) | def uStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method uEnd (line 1112) | def uEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUTimeStart (line 1114) | def setUTimeStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setUTimeEnd (line 1116) | def setUTimeEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method uTimeStart (line 1118) | def uTimeStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method uTimeEnd (line 1120) | def uTimeEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numPositionMarkers (line 1122) | def numPositionMarkers(cls, *args: Incomplete, **kwargs: Incomplete) -... method getPositionMarker (line 1124) | def getPositionMarker(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numOrientationMarkers (line 1126) | def numOrientationMarkers(cls, *args: Incomplete, **kwargs: Incomplete... method getOrientationMarker (line 1128) | def getOrientationMarker(cls, *args: Incomplete, **kwargs: Incomplete)... class MFnSkinCluster (line 1130) | class MFnSkinCluster(MFnGeometryFilter): method __swig_destroy__ (line 1134) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1136) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method indexForInfluenceObject (line 1138) | def indexForInfluenceObject(cls, *args: Incomplete, **kwargs: Incomple... method influenceObjects (line 1140) | def influenceObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getWeights (line 1142) | def getWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setWeights (line 1144) | def setWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getPointsAffectedByInfluence (line 1146) | def getPointsAffectedByInfluence(cls, *args: Incomplete, **kwargs: Inc... method getBlendWeights (line 1148) | def getBlendWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setBlendWeights (line 1150) | def setBlendWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnWeightGeometryFilter (line 1152) | class MFnWeightGeometryFilter(MFnGeometryFilter): method __swig_destroy__ (line 1156) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1158) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getWeights (line 1160) | def getWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setWeight (line 1162) | def setWeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method weightPlugStrings (line 1164) | def weightPlugStrings(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getWeightPlugStrings (line 1166) | def getWeightPlugStrings(cls, *args: Incomplete, **kwargs: Incomplete)... method getEnvelopeWeights (line 1168) | def getEnvelopeWeights(cls, *args: Incomplete, **kwargs: Incomplete) -... class MFnWireDeformer (line 1170) | class MFnWireDeformer(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 1174) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1176) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1178) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method addGeometry (line 1180) | def addGeometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method removeGeometry (line 1182) | def removeGeometry(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getAffectedGeometry (line 1184) | def getAffectedGeometry(cls, *args: Incomplete, **kwargs: Incomplete) ... method numWires (line 1186) | def numWires(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addWire (line 1188) | def addWire(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method wire (line 1190) | def wire(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method wireDropOffDistance (line 1192) | def wireDropOffDistance(cls, *args: Incomplete, **kwargs: Incomplete) ... method setWireDropOffDistance (line 1194) | def setWireDropOffDistance(cls, *args: Incomplete, **kwargs: Incomplet... method wireScale (line 1196) | def wireScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setWireScale (line 1198) | def setWireScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method holdingShape (line 1200) | def holdingShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setHoldingShape (line 1202) | def setHoldingShape(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method envelope (line 1204) | def envelope(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setEnvelope (line 1206) | def setEnvelope(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rotation (line 1208) | def rotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setRotation (line 1210) | def setRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method localIntensity (line 1212) | def localIntensity(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setLocalIntensity (line 1214) | def setLocalIntensity(cls, *args: Incomplete, **kwargs: Incomplete) ->... method crossingEffect (line 1216) | def crossingEffect(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setCrossingEffect (line 1218) | def setCrossingEffect(cls, *args: Incomplete, **kwargs: Incomplete) ->... method numDropoffLocators (line 1220) | def numDropoffLocators(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDropoffLocator (line 1222) | def setDropoffLocator(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getDropoffLocator (line 1224) | def getDropoffLocator(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MIkHandleGroup (line 1226) | class MIkHandleGroup: method __swig_destroy__ (line 1230) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method priority (line 1232) | def priority(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method solverID (line 1234) | def solverID(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method solverPriority (line 1236) | def solverPriority(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setPriority (line 1238) | def setPriority(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSolverID (line 1240) | def setSolverID(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method checkEffectorAtGoal (line 1242) | def checkEffectorAtGoal(cls, *args: Incomplete, **kwargs: Incomplete) ... method solve (line 1244) | def solve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method dofCount (line 1246) | def dofCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method handleCount (line 1248) | def handleCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method handle (line 1250) | def handle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 1252) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MIkSystem (line 1254) | class MIkSystem: method findSolver (line 1258) | def findSolver(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getSolvers (line 1260) | def getSolvers(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isGlobalSnap (line 1262) | def isGlobalSnap(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setGlobalSnap (line 1264) | def setGlobalSnap(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method isGlobalSolve (line 1266) | def isGlobalSolve(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method setGlobalSolve (line 1268) | def setGlobalSolve(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 1270) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1272) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MItKeyframe (line 1274) | class MItKeyframe: method __swig_destroy__ (line 1293) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reset (line 1295) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method next (line 1297) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isDone (line 1299) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method time (line 1301) | def time(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setTime (line 1303) | def setTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method value (line 1305) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setValue (line 1307) | def setValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method inTangentType (line 1309) | def inTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method outTangentType (line 1311) | def outTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setInTangentType (line 1313) | def setInTangentType(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setOutTangentType (line 1315) | def setOutTangentType(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getTangentOut (line 1317) | def getTangentOut(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getTangentIn (line 1319) | def getTangentIn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method tangentsLocked (line 1321) | def tangentsLocked(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setTangentsLocked (line 1323) | def setTangentsLocked(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 1325) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 1327) | def __next__(cls) -> Incomplete: ... FILE: maya/stubs/maya-stubs/OpenMayaMPx.pyi class _SwigNonDynamicMeta (line 6) | class _SwigNonDynamicMeta(type): class charPtr (line 9) | class charPtr: method __swig_destroy__ (line 13) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 15) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 17) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 19) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 21) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class intPtr (line 23) | class intPtr: method __swig_destroy__ (line 27) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 29) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 31) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 33) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 35) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class shortPtr (line 37) | class shortPtr: method __swig_destroy__ (line 41) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 43) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 45) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 47) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 49) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class floatPtr (line 51) | class floatPtr: method __swig_destroy__ (line 55) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 57) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 59) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 61) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 63) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class doublePtr (line 65) | class doublePtr: method __swig_destroy__ (line 69) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 71) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 73) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 75) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 77) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class boolPtr (line 79) | class boolPtr: method __swig_destroy__ (line 83) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 85) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 87) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 89) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 91) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uIntPtr (line 93) | class uIntPtr: method __swig_destroy__ (line 97) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 99) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 101) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 103) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 105) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uCharPtr (line 107) | class uCharPtr: method __swig_destroy__ (line 111) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 113) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 115) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 117) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 119) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MFnPlugin (line 122) | class MFnPlugin(maya.OpenMaya.MFnBase): method __swig_destroy__ (line 132) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method vendor (line 134) | def vendor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method version (line 136) | def version(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method apiVersion (line 138) | def apiVersion(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method name (line 140) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method loadPath (line 142) | def loadPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setName (line 144) | def setName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setVersion (line 146) | def setVersion(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method registerCommand (line 148) | def registerCommand(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method deregisterCommand (line 150) | def deregisterCommand(cls, *args: Incomplete, **kwargs: Incomplete) ->... method registerControlCommand (line 152) | def registerControlCommand(cls, *args: Incomplete, **kwargs: Incomplet... method deregisterControlCommand (line 154) | def deregisterControlCommand(cls, *args: Incomplete, **kwargs: Incompl... method registerModelEditorCommand (line 156) | def registerModelEditorCommand(cls, *args: Incomplete, **kwargs: Incom... method deregisterModelEditorCommand (line 158) | def deregisterModelEditorCommand(cls, *args: Incomplete, **kwargs: Inc... method registerConstraintCommand (line 160) | def registerConstraintCommand(cls, *args: Incomplete, **kwargs: Incomp... method deregisterConstraintCommand (line 162) | def deregisterConstraintCommand(cls, *args: Incomplete, **kwargs: Inco... method registerContextCommand (line 164) | def registerContextCommand(cls, *args: Incomplete, **kwargs: Incomplet... method deregisterContextCommand (line 166) | def deregisterContextCommand(cls, *args: Incomplete, **kwargs: Incompl... method registerNode (line 168) | def registerNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method deregisterNode (line 170) | def deregisterNode(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method registerEvaluator (line 172) | def registerEvaluator(cls, *args: Incomplete, **kwargs: Incomplete) ->... method deregisterEvaluator (line 174) | def deregisterEvaluator(cls, *args: Incomplete, **kwargs: Incomplete) ... method registerTopologyEvaluator (line 176) | def registerTopologyEvaluator(cls, *args: Incomplete, **kwargs: Incomp... method deregisterTopologyEvaluator (line 178) | def deregisterTopologyEvaluator(cls, *args: Incomplete, **kwargs: Inco... method registerShape (line 180) | def registerShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method registerTransform (line 182) | def registerTransform(cls, *args: Incomplete, **kwargs: Incomplete) ->... method registerData (line 184) | def registerData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method deregisterData (line 186) | def deregisterData(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method registerDevice (line 188) | def registerDevice(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method deregisterDevice (line 190) | def deregisterDevice(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method registerFileTranslator (line 192) | def registerFileTranslator(cls, *args: Incomplete, **kwargs: Incomplet... method deregisterFileTranslator (line 194) | def deregisterFileTranslator(cls, *args: Incomplete, **kwargs: Incompl... method registerURIFileResolver (line 196) | def registerURIFileResolver(cls, *args: Incomplete, **kwargs: Incomple... method deregisterURIFileResolver (line 198) | def deregisterURIFileResolver(cls, *args: Incomplete, **kwargs: Incomp... method registerIkSolver (line 200) | def registerIkSolver(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method deregisterIkSolver (line 202) | def deregisterIkSolver(cls, *args: Incomplete, **kwargs: Incomplete) -... method registerCacheFormat (line 204) | def registerCacheFormat(cls, *args: Incomplete, **kwargs: Incomplete) ... method deregisterCacheFormat (line 206) | def deregisterCacheFormat(cls, *args: Incomplete, **kwargs: Incomplete... method registerUIStrings (line 208) | def registerUIStrings(cls, *args: Incomplete, **kwargs: Incomplete) ->... method registerUI (line 210) | def registerUI(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method registerDragAndDropBehavior (line 212) | def registerDragAndDropBehavior(cls, *args: Incomplete, **kwargs: Inco... method deregisterDragAndDropBehavior (line 214) | def deregisterDragAndDropBehavior(cls, *args: Incomplete, **kwargs: In... method registerImageFile (line 216) | def registerImageFile(cls, *args: Incomplete, **kwargs: Incomplete) ->... method deregisterImageFile (line 218) | def deregisterImageFile(cls, *args: Incomplete, **kwargs: Incomplete) ... method registerRenderPassImpl (line 220) | def registerRenderPassImpl(cls, *args: Incomplete, **kwargs: Incomplet... method deregisterRenderPassImpl (line 222) | def deregisterRenderPassImpl(cls, *args: Incomplete, **kwargs: Incompl... method registerAttributePatternFactory (line 224) | def registerAttributePatternFactory(cls, *args: Incomplete, **kwargs: ... method deregisterAttributePatternFactory (line 226) | def deregisterAttributePatternFactory(cls, *args: Incomplete, **kwargs... method registerAnimCurveInterpolator (line 228) | def registerAnimCurveInterpolator(cls, *args: Incomplete, **kwargs: In... method deregisterAnimCurveInterpolator (line 230) | def deregisterAnimCurveInterpolator(cls, *args: Incomplete, **kwargs: ... method registerDisplayFilter (line 232) | def registerDisplayFilter(cls, *args: Incomplete, **kwargs: Incomplete... method deregisterDisplayFilter (line 234) | def deregisterDisplayFilter(cls, *args: Incomplete, **kwargs: Incomple... method registerRenderer (line 236) | def registerRenderer(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method deregisterRenderer (line 238) | def deregisterRenderer(cls, *args: Incomplete, **kwargs: Incomplete) -... method findPlugin (line 240) | def findPlugin(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isNodeRegistered (line 242) | def isNodeRegistered(*args: Incomplete, **kwargs: Incomplete) -> Incom... method matrixTypeIdFromXformId (line 244) | def matrixTypeIdFromXformId(cls, *args: Incomplete, **kwargs: Incomple... method addMenuItem (line 246) | def addMenuItem(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method removeMenuItem (line 248) | def removeMenuItem(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method registerMaterialInfo (line 250) | def registerMaterialInfo(cls, *args: Incomplete, **kwargs: Incomplete)... method unregisterMaterialInfo (line 252) | def unregisterMaterialInfo(cls, *args: Incomplete, **kwargs: Incomplet... method registerBakeEngine (line 254) | def registerBakeEngine(cls, *args: Incomplete, **kwargs: Incomplete) -... method unregisterBakeEngine (line 256) | def unregisterBakeEngine(cls, *args: Incomplete, **kwargs: Incomplete)... method setRegisteringCallableScript (line 258) | def setRegisteringCallableScript(*args: Incomplete, **kwargs: Incomple... method registeringCallableScript (line 260) | def registeringCallableScript(*args: Incomplete, **kwargs: Incomplete)... method setCallableInfo (line 262) | def setCallableInfo(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getCallableInfo (line 264) | def getCallableInfo(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 266) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxNode (line 269) | class MPxNode: method __swig_destroy__ (line 318) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method postConstructor (line 320) | def postConstructor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method compute (line 322) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getInternalValue (line 324) | def getInternalValue(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setInternalValue (line 326) | def setInternalValue(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method copyInternalData (line 328) | def copyInternalData(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method legalConnection (line 330) | def legalConnection(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method legalDisconnection (line 332) | def legalDisconnection(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDependentsDirty (line 334) | def setDependentsDirty(cls, *args: Incomplete, **kwargs: Incomplete) -... method preEvaluation (line 336) | def preEvaluation(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method postEvaluation (line 338) | def postEvaluation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method schedulingType (line 340) | def schedulingType(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getCacheSetup (line 342) | def getCacheSetup(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method configCache (line 344) | def configCache(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method transformInvalidationRange (line 346) | def transformInvalidationRange(cls, *args: Incomplete, **kwargs: Incom... method hasInvalidationRangeTransformation (line 348) | def hasInvalidationRangeTransformation(cls, *args: Incomplete, **kwarg... method connectionMade (line 350) | def connectionMade(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method connectionBroken (line 352) | def connectionBroken(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method dependsOn (line 354) | def dependsOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isPassiveOutput (line 356) | def isPassiveOutput(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method shouldSave (line 358) | def shouldSave(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method passThroughToOne (line 360) | def passThroughToOne(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method passThroughToMany (line 362) | def passThroughToMany(cls, *args: Incomplete, **kwargs: Incomplete) ->... method type (line 364) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isAbstractClass (line 366) | def isAbstractClass(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isTrackingTopology (line 368) | def isTrackingTopology(cls, *args: Incomplete, **kwargs: Incomplete) -... method addAttribute (line 370) | def addAttribute(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method inheritAttributesFrom (line 372) | def inheritAttributesFrom(*args: Incomplete, **kwargs: Incomplete) -> ... method attributeAffects (line 374) | def attributeAffects(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getFilesToArchive (line 376) | def getFilesToArchive(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getExternalContent (line 378) | def getExternalContent(cls, *args: Incomplete, **kwargs: Incomplete) -... method addExternalContentForFileAttr (line 380) | def addExternalContentForFileAttr(cls, *args: Incomplete, **kwargs: In... method setExternalContentForFileAttr (line 382) | def setExternalContentForFileAttr(cls, *args: Incomplete, **kwargs: In... method setExternalContent (line 384) | def setExternalContent(cls, *args: Incomplete, **kwargs: Incomplete) -... method className (line 386) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method typeId (line 388) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method typeName (line 390) | def typeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method name (line 392) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method thisMObject (line 394) | def thisMObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setExistWithoutInConnections (line 396) | def setExistWithoutInConnections(cls, *args: Incomplete, **kwargs: Inc... method existWithoutInConnections (line 398) | def existWithoutInConnections(cls, *args: Incomplete, **kwargs: Incomp... method setExistWithoutOutConnections (line 400) | def setExistWithoutOutConnections(cls, *args: Incomplete, **kwargs: In... method existWithoutOutConnections (line 402) | def existWithoutOutConnections(cls, *args: Incomplete, **kwargs: Incom... method getInternalValueInContext (line 404) | def getInternalValueInContext(cls, *args: Incomplete, **kwargs: Incomp... method setInternalValueInContext (line 406) | def setInternalValueInContext(cls, *args: Incomplete, **kwargs: Incomp... method internalArrayCount (line 408) | def internalArrayCount(cls, *args: Incomplete, **kwargs: Incomplete) -... class MPxCommand (line 410) | class MPxCommand: method __swig_destroy__ (line 419) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doIt (line 421) | def doIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method undoIt (line 423) | def undoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method redoIt (line 425) | def redoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isUndoable (line 427) | def isUndoable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasSyntax (line 429) | def hasSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method syntax (line 431) | def syntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isHistoryOn (line 433) | def isHistoryOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method commandString (line 435) | def commandString(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setHistoryOn (line 437) | def setHistoryOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCommandString (line 439) | def setCommandString(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method displayInfo (line 441) | def displayInfo(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method displayWarning (line 443) | def displayWarning(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method displayError (line 445) | def displayError(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method clearResult (line 447) | def clearResult(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setResult (line 449) | def setResult(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method appendToResult (line 451) | def appendToResult(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method isCurrentResultArray (line 453) | def isCurrentResultArray(*args: Incomplete, **kwargs: Incomplete) -> I... method currentResultType (line 455) | def currentResultType(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getCurrentResult (line 457) | def getCurrentResult(*args: Incomplete, **kwargs: Incomplete) -> Incom... method currentIntResult (line 459) | def currentIntResult(*args: Incomplete, **kwargs: Incomplete) -> Incom... method currentDoubleResult (line 461) | def currentDoubleResult(*args: Incomplete, **kwargs: Incomplete) -> In... method currentStringResult (line 463) | def currentStringResult(*args: Incomplete, **kwargs: Incomplete) -> In... method className (line 465) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUndoable (line 467) | def setUndoable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MPxAttributePatternFactory (line 469) | class MPxAttributePatternFactory: method __swig_destroy__ (line 474) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method createPatternsFromString (line 476) | def createPatternsFromString(cls, *args: Incomplete, **kwargs: Incompl... method createPatternsFromFile (line 478) | def createPatternsFromFile(cls, *args: Incomplete, **kwargs: Incomplet... method name (line 480) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 482) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxBakeEngine (line 484) | class MPxBakeEngine: method __swig_destroy__ (line 489) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setNeedTransparency (line 491) | def setNeedTransparency(cls, *args: Incomplete, **kwargs: Incomplete) ... method getUVRange (line 493) | def getUVRange(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method bake (line 495) | def bake(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxSurfaceShape (line 497) | class MPxSurfaceShape(MPxNode): method __swig_destroy__ (line 559) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 561) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isBounded (line 563) | def isBounded(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method boundingBox (line 565) | def boundingBox(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method evalNodeAffectsDrawDb (line 567) | def evalNodeAffectsDrawDb(cls, *args: Incomplete, **kwargs: Incomplete... method transformUsing (line 569) | def transformUsing(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method tweakUsing (line 571) | def tweakUsing(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method convertToTweakNodePlug (line 573) | def convertToTweakNodePlug(cls, *args: Incomplete, **kwargs: Incomplet... method weightedTransformUsing (line 575) | def weightedTransformUsing(cls, *args: Incomplete, **kwargs: Incomplet... method weightedTweakUsing (line 577) | def weightedTweakUsing(cls, *args: Incomplete, **kwargs: Incomplete) -... method vertexOffsetDirection (line 579) | def vertexOffsetDirection(cls, *args: Incomplete, **kwargs: Incomplete... method newControlPointComponent (line 581) | def newControlPointComponent(cls, *args: Incomplete, **kwargs: Incompl... method componentToPlugs (line 583) | def componentToPlugs(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method match (line 585) | def match(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method matchComponent (line 587) | def matchComponent(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getShapeSelectionMask (line 589) | def getShapeSelectionMask(cls, *args: Incomplete, **kwargs: Incomplete... method getComponentSelectionMask (line 591) | def getComponentSelectionMask(cls, *args: Incomplete, **kwargs: Incomp... method createFullVertexGroup (line 593) | def createFullVertexGroup(cls, *args: Incomplete, **kwargs: Incomplete... method createFullRenderGroup (line 595) | def createFullRenderGroup(cls, *args: Incomplete, **kwargs: Incomplete... method renderGroupComponentType (line 597) | def renderGroupComponentType(cls, *args: Incomplete, **kwargs: Incompl... method deleteComponents (line 599) | def deleteComponents(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method undeleteComponents (line 601) | def undeleteComponents(cls, *args: Incomplete, **kwargs: Incomplete) -... method localShapeInAttr (line 603) | def localShapeInAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method localShapeOutAttr (line 605) | def localShapeOutAttr(cls, *args: Incomplete, **kwargs: Incomplete) ->... method worldShapeOutAttr (line 607) | def worldShapeOutAttr(cls, *args: Incomplete, **kwargs: Incomplete) ->... method cachedShapeAttr (line 609) | def cachedShapeAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method geometryData (line 611) | def geometryData(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method canMakeLive (line 613) | def canMakeLive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method closestPoint (line 615) | def closestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method pointAtParm (line 617) | def pointAtParm(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method geometryIteratorSetup (line 619) | def geometryIteratorSetup(cls, *args: Incomplete, **kwargs: Incomplete... method acceptsGeometryIterator (line 621) | def acceptsGeometryIterator(cls, *args: Incomplete, **kwargs: Incomple... method excludeAsPluginShape (line 623) | def excludeAsPluginShape(cls, *args: Incomplete, **kwargs: Incomplete)... method extendSelectionFromComponents (line 625) | def extendSelectionFromComponents(cls, *args: Incomplete, **kwargs: In... method activeComponents (line 627) | def activeComponents(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method hasActiveComponents (line 629) | def hasActiveComponents(cls, *args: Incomplete, **kwargs: Incomplete) ... method childChanged (line 631) | def childChanged(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isRenderable (line 633) | def isRenderable(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setRenderable (line 635) | def setRenderable(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getWorldMatrix (line 637) | def getWorldMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method className (line 639) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxComponentShape (line 641) | class MPxComponentShape(MPxSurfaceShape): method transformUsing (line 646) | def transformUsing(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method componentToPlugs (line 648) | def componentToPlugs(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method match (line 650) | def match(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method createFullVertexGroup (line 652) | def createFullVertexGroup(cls, *args: Incomplete, **kwargs: Incomplete... method localShapeInAttr (line 654) | def localShapeInAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getControlPoints (line 656) | def getControlPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setControlPoints (line 658) | def setControlPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __swig_destroy__ (line 660) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MPxData (line 662) | class MPxData: method __swig_destroy__ (line 670) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method readASCII (line 672) | def readASCII(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method readBinary (line 674) | def readBinary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method writeASCII (line 676) | def writeASCII(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method writeBinary (line 678) | def writeBinary(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method copy (line 680) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method typeId (line 682) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method name (line 684) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxCameraSet (line 686) | class MPxCameraSet(MPxNode): method __swig_destroy__ (line 696) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 698) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 700) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxEditData (line 702) | class MPxEditData: method __swig_destroy__ (line 709) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isEqual (line 711) | def isEqual(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isLessThan (line 713) | def isLessThan(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 715) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method performIsEqual (line 717) | def performIsEqual(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method performIsLessThan (line 719) | def performIsLessThan(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MExternalContentInfoTable (line 721) | class MExternalContentInfoTable: method __swig_destroy__ (line 725) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addResolvedEntry (line 727) | def addResolvedEntry(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addUnresolvedEntry (line 729) | def addUnresolvedEntry(cls, *args: Incomplete, **kwargs: Incomplete) -... method length (line 731) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getInfoByKey (line 733) | def getInfoByKey(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getEntryByIndex (line 735) | def getEntryByIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MExternalContentLocationTable (line 737) | class MExternalContentLocationTable: method __swig_destroy__ (line 741) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addEntry (line 743) | def addEntry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method length (line 745) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getLocationByKey (line 747) | def getLocationByKey(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getEntryByIndex (line 749) | def getEntryByIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MPxFileResolver (line 751) | class MPxFileResolver: method __swig_destroy__ (line 758) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method resolveURI (line 760) | def resolveURI(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method resolveURIWithContext (line 762) | def resolveURIWithContext(cls, *args: Incomplete, **kwargs: Incomplete... method uriScheme (line 764) | def uriScheme(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method resolverName (line 766) | def resolverName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 768) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method performAfterSaveURI (line 770) | def performAfterSaveURI(cls, *args: Incomplete, **kwargs: Incomplete) ... method findURIResolverByScheme (line 772) | def findURIResolverByScheme(*args: Incomplete, **kwargs: Incomplete) -... method findURIResolverByName (line 774) | def findURIResolverByName(*args: Incomplete, **kwargs: Incomplete) -> ... method getURIResolversByScheme (line 776) | def getURIResolversByScheme(*args: Incomplete, **kwargs: Incomplete) -... method getURIResolversByName (line 778) | def getURIResolversByName(*args: Incomplete, **kwargs: Incomplete) -> ... method numURIResolvers (line 780) | def numURIResolvers(*args: Incomplete, **kwargs: Incomplete) -> Incomp... class MPxFileTranslator (line 782) | class MPxFileTranslator: method __swig_destroy__ (line 797) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method reader (line 799) | def reader(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method writer (line 801) | def writer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method haveReadMethod (line 803) | def haveReadMethod(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method haveWriteMethod (line 805) | def haveWriteMethod(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method haveNamespaceSupport (line 807) | def haveNamespaceSupport(cls, *args: Incomplete, **kwargs: Incomplete)... method haveReferenceMethod (line 809) | def haveReferenceMethod(cls, *args: Incomplete, **kwargs: Incomplete) ... method allowMultipleFileOptimization (line 811) | def allowMultipleFileOptimization(cls, *args: Incomplete, **kwargs: In... method defaultExtension (line 813) | def defaultExtension(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method filter (line 815) | def filter(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method canBeOpened (line 817) | def canBeOpened(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method identifyFile (line 819) | def identifyFile(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method fileAccessMode (line 821) | def fileAccessMode(*args: Incomplete, **kwargs: Incomplete) -> Incompl... class MPxGeometryData (line 823) | class MPxGeometryData(MPxData): method __swig_destroy__ (line 828) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method iterator (line 830) | def iterator(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method updateCompleteVertexGroup (line 832) | def updateCompleteVertexGroup(cls, *args: Incomplete, **kwargs: Incomp... method deleteComponent (line 834) | def deleteComponent(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method deleteComponentsFromGroups (line 836) | def deleteComponentsFromGroups(cls, *args: Incomplete, **kwargs: Incom... method smartCopy (line 838) | def smartCopy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method copy (line 840) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method typeId (line 842) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method name (line 844) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setMatrix (line 846) | def setMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method matrix (line 848) | def matrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MPxGeometryIterator (line 850) | class MPxGeometryIterator: method __swig_destroy__ (line 855) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 857) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 859) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 861) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method component (line 863) | def component(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasPoints (line 865) | def hasPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method iteratorCount (line 867) | def iteratorCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method point (line 869) | def point(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setPoint (line 871) | def setPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setPointGetNext (line 873) | def setPointGetNext(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method index (line 875) | def index(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method hasNormals (line 877) | def hasNormals(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method indexUnsimplified (line 879) | def indexUnsimplified(cls, *args: Incomplete, **kwargs: Incomplete) ->... method currentPoint (line 881) | def currentPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCurrentPoint (line 883) | def setCurrentPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method maxPoints (line 885) | def maxPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMaxPoints (line 887) | def setMaxPoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setObject (line 889) | def setObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method geometry (line 891) | def geometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 893) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __next__ (line 895) | def __next__(cls) -> Incomplete: ... class MPxImageFile (line 897) | class MPxImageFile: method __swig_destroy__ (line 902) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method open (line 904) | def open(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method load (line 906) | def load(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method glLoad (line 908) | def glLoad(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method close (line 910) | def close(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MPxImagePlane (line 912) | class MPxImagePlane(MPxNode): method __swig_destroy__ (line 970) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 972) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method loadImageMap (line 974) | def loadImageMap(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method exactImageFile (line 976) | def exactImageFile(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method refreshImage (line 978) | def refreshImage(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setImageDirty (line 980) | def setImageDirty(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 982) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxMayaAsciiFilterOutput (line 984) | class MPxMayaAsciiFilterOutput: method __lshift__ (line 988) | def __lshift__(cls, other: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 990) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MPxMayaAsciiFilter (line 992) | class MPxMayaAsciiFilter(MPxFileTranslator): method __swig_destroy__ (line 997) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method haveWriteMethod (line 999) | def haveWriteMethod(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method haveReadMethod (line 1001) | def haveReadMethod(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method reader (line 1003) | def reader(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method writer (line 1005) | def writer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method processReadOptions (line 1007) | def processReadOptions(cls, *args: Incomplete, **kwargs: Incomplete) -... method processWriteOptions (line 1009) | def processWriteOptions(cls, *args: Incomplete, **kwargs: Incomplete) ... method writesRequirements (line 1011) | def writesRequirements(cls, *args: Incomplete, **kwargs: Incomplete) -... method writesMetadata (line 1013) | def writesMetadata(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method writesCreateNode (line 1015) | def writesCreateNode(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method writesSetAttr (line 1017) | def writesSetAttr(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method writesConnectAttr (line 1019) | def writesConnectAttr(cls, *args: Incomplete, **kwargs: Incomplete) ->... method writesDisconnectAttr (line 1021) | def writesDisconnectAttr(cls, *args: Incomplete, **kwargs: Incomplete)... method writesParentNode (line 1023) | def writesParentNode(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method writesSelectNode (line 1025) | def writesSelectNode(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method writesFileReference (line 1027) | def writesFileReference(cls, *args: Incomplete, **kwargs: Incomplete) ... method writePostHeader (line 1029) | def writePostHeader(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method writePostRequires (line 1031) | def writePostRequires(cls, *args: Incomplete, **kwargs: Incomplete) ->... method writePreCreateNodesBlock (line 1033) | def writePreCreateNodesBlock(cls, *args: Incomplete, **kwargs: Incompl... method writePostCreateNodesBlock (line 1035) | def writePostCreateNodesBlock(cls, *args: Incomplete, **kwargs: Incomp... method writePreConnectAttrsBlock (line 1037) | def writePreConnectAttrsBlock(cls, *args: Incomplete, **kwargs: Incomp... method writePostConnectAttrsBlock (line 1039) | def writePostConnectAttrsBlock(cls, *args: Incomplete, **kwargs: Incom... method writePreTrailer (line 1041) | def writePreTrailer(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MPxObjectSet (line 1043) | class MPxObjectSet(MPxNode): method __swig_destroy__ (line 1061) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1063) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method canBeDeleted (line 1065) | def canBeDeleted(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method className (line 1067) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxAssembly (line 1069) | class MPxAssembly(MPxNode): method __swig_destroy__ (line 1074) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1076) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method createRepresentation (line 1078) | def createRepresentation(cls, *args: Incomplete, **kwargs: Incomplete)... method activate (line 1080) | def activate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getActive (line 1082) | def getActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isActive (line 1084) | def isActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getRepresentations (line 1086) | def getRepresentations(cls, *args: Incomplete, **kwargs: Incomplete) -... method getRepType (line 1088) | def getRepType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getRepLabel (line 1090) | def getRepLabel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method repTypes (line 1092) | def repTypes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method deleteRepresentation (line 1094) | def deleteRepresentation(cls, *args: Incomplete, **kwargs: Incomplete)... method deleteAllRepresentations (line 1096) | def deleteAllRepresentations(cls, *args: Incomplete, **kwargs: Incompl... method getRepNamespace (line 1098) | def getRepNamespace(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method updateRepNamespace (line 1100) | def updateRepNamespace(cls, *args: Incomplete, **kwargs: Incomplete) -... method setRepName (line 1102) | def setRepName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setRepLabel (line 1104) | def setRepLabel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method supportsEdits (line 1106) | def supportsEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method supportsMemberChanges (line 1108) | def supportsMemberChanges(cls, *args: Incomplete, **kwargs: Incomplete... method canRepApplyEdits (line 1110) | def canRepApplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method handlesAddEdits (line 1112) | def handlesAddEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method addEdits (line 1114) | def addEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method beforeSave (line 1116) | def beforeSave(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method postLoad (line 1118) | def postLoad(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method memberAdded (line 1120) | def memberAdded(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method memberRemoved (line 1122) | def memberRemoved(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method performActivate (line 1124) | def performActivate(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method performInactivate (line 1126) | def performInactivate(cls, *args: Incomplete, **kwargs: Incomplete) ->... method activateRep (line 1128) | def activateRep(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method inactivateRep (line 1130) | def inactivateRep(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method postActivateRep (line 1132) | def postActivateRep(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method preApplyEdits (line 1134) | def preApplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method preUnapplyEdits (line 1136) | def preUnapplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method postApplyEdits (line 1138) | def postApplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method postUnapplyEdits (line 1140) | def postUnapplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1142) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getInstancePtr (line 1144) | def getInstancePtr(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setInstancePtr (line 1146) | def setInstancePtr(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method activating (line 1148) | def activating(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addSetAttrEdit (line 1150) | def addSetAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addConnectAttrEdit (line 1152) | def addConnectAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete) -... method addDisconnectAttrEdit (line 1154) | def addDisconnectAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete... method addDeleteAttrEdit (line 1156) | def addDeleteAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete) ->... method addAddAttrEdit (line 1158) | def addAddAttrEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addParentEdit (line 1160) | def addParentEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getInitialRep (line 1162) | def getInitialRep(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MPxRepresentation (line 1164) | class MPxRepresentation: method __swig_destroy__ (line 1169) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method activate (line 1171) | def activate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method inactivate (line 1173) | def inactivate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getType (line 1175) | def getType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getName (line 1177) | def getName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method canApplyEdits (line 1179) | def canApplyEdits(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getExternalContent (line 1181) | def getExternalContent(cls, *args: Incomplete, **kwargs: Incomplete) -... method setExternalContent (line 1183) | def setExternalContent(cls, *args: Incomplete, **kwargs: Incomplete) -... class MPxPolyTrg (line 1185) | class MPxPolyTrg(MPxNode): method __swig_destroy__ (line 1190) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method postConstructor (line 1192) | def postConstructor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method compute (line 1194) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isAbstractClass (line 1196) | def isAbstractClass(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method registerTrgFunction (line 1198) | def registerTrgFunction(cls, *args: Incomplete, **kwargs: Incomplete) ... method unregisterTrgFunction (line 1200) | def unregisterTrgFunction(cls, *args: Incomplete, **kwargs: Incomplete... class MPxTransformationMatrix (line 1202) | class MPxTransformationMatrix: method __swig_destroy__ (line 1209) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method copyValues (line 1211) | def copyValues(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method typeId (line 1213) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method assign (line 1215) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 1217) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 1219) | def __ne__(cls, other: object) -> bool: ... method isEquivalent (line 1221) | def isEquivalent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method reverse (line 1223) | def reverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method transformBy (line 1225) | def transformBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method asMatrixInverse (line 1227) | def asMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method asScaleMatrix (line 1229) | def asScaleMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asScaleMatrixInverse (line 1231) | def asScaleMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplete)... method asRotateMatrix (line 1233) | def asRotateMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method asRotateMatrixInverse (line 1235) | def asRotateMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplete... method asMatrix (line 1237) | def asMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asInterpolationMatrix (line 1239) | def asInterpolationMatrix(cls, *args: Incomplete, **kwargs: Incomplete... method asTransformationMatrix (line 1241) | def asTransformationMatrix(cls, *args: Incomplete, **kwargs: Incomplet... method translation (line 1243) | def translation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translateTo (line 1245) | def translateTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translateBy (line 1247) | def translateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rotation (line 1249) | def rotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method eulerRotation (line 1251) | def eulerRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rotateTo (line 1253) | def rotateTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotateBy (line 1255) | def rotateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotationOrder (line 1257) | def rotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setRotationOrder (line 1259) | def setRotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method rotateOrientation (line 1261) | def rotateOrientation(cls, *args: Incomplete, **kwargs: Incomplete) ->... method eulerRotateOrientation (line 1263) | def eulerRotateOrientation(cls, *args: Incomplete, **kwargs: Incomplet... method setRotateOrientation (line 1265) | def setRotateOrientation(cls, *args: Incomplete, **kwargs: Incomplete)... method preRotation (line 1267) | def preRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method scale (line 1269) | def scale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method scaleTo (line 1271) | def scaleTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method scaleBy (line 1273) | def scaleBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method shear (line 1275) | def shear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method shearTo (line 1277) | def shearTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method shearBy (line 1279) | def shearBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method scalePivot (line 1281) | def scalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setScalePivot (line 1283) | def setScalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method scalePivotTranslation (line 1285) | def scalePivotTranslation(cls, *args: Incomplete, **kwargs: Incomplete... method setScalePivotTranslation (line 1287) | def setScalePivotTranslation(cls, *args: Incomplete, **kwargs: Incompl... method rotatePivot (line 1289) | def rotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotatePivot (line 1291) | def setRotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method rotatePivotTranslation (line 1293) | def rotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomplet... method setRotatePivotTranslation (line 1295) | def setRotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomp... method unSquishIt (line 1297) | def unSquishIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method unSquishMatrix (line 1299) | def unSquishMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method creator (line 1301) | def creator(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method convertTransformationRotationOrder (line 1303) | def convertTransformationRotationOrder(*args: Incomplete, **kwargs: In... method convertEulerRotationOrder (line 1305) | def convertEulerRotationOrder(*args: Incomplete, **kwargs: Incomplete)... method decomposeMatrix (line 1307) | def decomposeMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MPxTransform (line 1309) | class MPxTransform(MPxNode): method assign (line 1477) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 1479) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method postConstructor (line 1481) | def postConstructor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method type (line 1483) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method createTransformationMatrix (line 1485) | def createTransformationMatrix(cls, *args: Incomplete, **kwargs: Incom... method isBounded (line 1487) | def isBounded(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method boundingBox (line 1489) | def boundingBox(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method treatAsTransform (line 1491) | def treatAsTransform(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method transformationMatrix (line 1493) | def transformationMatrix(cls, *args: Incomplete, **kwargs: Incomplete)... method transformationMatrixPtr (line 1495) | def transformationMatrixPtr(cls, *args: Incomplete, **kwargs: Incomple... method resetTransformation (line 1497) | def resetTransformation(cls, *args: Incomplete, **kwargs: Incomplete) ... method compute (line 1499) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method computeLocalTransformation (line 1501) | def computeLocalTransformation(cls, *args: Incomplete, **kwargs: Incom... method clearLimits (line 1503) | def clearLimits(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isLimited (line 1505) | def isLimited(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method limitValue (line 1507) | def limitValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setLimit (line 1509) | def setLimit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method enableLimit (line 1511) | def enableLimit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPreRotation (line 1513) | def getPreRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method mustCallValidateAndSet (line 1515) | def mustCallValidateAndSet(*args: Incomplete, **kwargs: Incomplete) ->... method setNonAffineMatricesEnabled (line 1517) | def setNonAffineMatricesEnabled(*args: Incomplete, **kwargs: Incomplet... method isNonAffineMatricesEnabled (line 1519) | def isNonAffineMatricesEnabled(*args: Incomplete, **kwargs: Incomplete... method copyInternalData (line 1521) | def copyInternalData(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method applyTranslationLimits (line 1523) | def applyTranslationLimits(cls, *args: Incomplete, **kwargs: Incomplet... method applyTranslationLocks (line 1525) | def applyTranslationLocks(cls, *args: Incomplete, **kwargs: Incomplete... method applyRotationLimits (line 1527) | def applyRotationLimits(cls, *args: Incomplete, **kwargs: Incomplete) ... method applyRotationLocks (line 1529) | def applyRotationLocks(cls, *args: Incomplete, **kwargs: Incomplete) -... method applyScaleLimits (line 1531) | def applyScaleLimits(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method applyScaleLocks (line 1533) | def applyScaleLocks(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method applyShearLocks (line 1535) | def applyShearLocks(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method applyRotateOrientationLocks (line 1537) | def applyRotateOrientationLocks(cls, *args: Incomplete, **kwargs: Inco... method applyScaleLocksPivot (line 1539) | def applyScaleLocksPivot(cls, *args: Incomplete, **kwargs: Incomplete)... method applyRotatePivotLocks (line 1541) | def applyRotatePivotLocks(cls, *args: Incomplete, **kwargs: Incomplete... method applyScaleLocksPivotTranslate (line 1543) | def applyScaleLocksPivotTranslate(cls, *args: Incomplete, **kwargs: In... method applyRotatePivotLocksTranslate (line 1545) | def applyRotatePivotLocksTranslate(cls, *args: Incomplete, **kwargs: I... method checkAndSetTranslation (line 1547) | def checkAndSetTranslation(cls, *args: Incomplete, **kwargs: Incomplet... method checkAndSetRotation (line 1549) | def checkAndSetRotation(cls, *args: Incomplete, **kwargs: Incomplete) ... method checkAndSetScale (line 1551) | def checkAndSetScale(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method checkAndSetShear (line 1553) | def checkAndSetShear(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method checkAndSetRotateOrientation (line 1555) | def checkAndSetRotateOrientation(cls, *args: Incomplete, **kwargs: Inc... method checkAndSetRotatePivot (line 1557) | def checkAndSetRotatePivot(cls, *args: Incomplete, **kwargs: Incomplet... method checkAndSetRotatePivotTranslation (line 1559) | def checkAndSetRotatePivotTranslation(cls, *args: Incomplete, **kwargs... method checkAndSetScalePivot (line 1561) | def checkAndSetScalePivot(cls, *args: Incomplete, **kwargs: Incomplete... method checkAndSetScalePivotTranslation (line 1563) | def checkAndSetScalePivotTranslation(cls, *args: Incomplete, **kwargs:... method className (line 1565) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method validateAndSetValue (line 1567) | def validateAndSetValue(cls, *args: Incomplete, **kwargs: Incomplete) ... method updateMatrixAttrs (line 1569) | def updateMatrixAttrs(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getMatrix (line 1571) | def getMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getMatrixInverse (line 1573) | def getMatrixInverse(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getTranslation (line 1575) | def getTranslation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method translateTo (line 1577) | def translateTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method translateBy (line 1579) | def translateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getRotation (line 1581) | def getRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getEulerRotation (line 1583) | def getEulerRotation(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method rotateTo (line 1585) | def rotateTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method rotateBy (line 1587) | def rotateBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getScale (line 1589) | def getScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method scaleTo (line 1591) | def scaleTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method scaleBy (line 1593) | def scaleBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getShear (line 1595) | def getShear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method shearTo (line 1597) | def shearTo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method shearBy (line 1599) | def shearBy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getScalePivot (line 1601) | def getScalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getRotatePivot (line 1603) | def getRotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getScalePivotTranslation (line 1605) | def getScalePivotTranslation(cls, *args: Incomplete, **kwargs: Incompl... method getRotatePivotTranslation (line 1607) | def getRotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomp... method setScalePivot (line 1609) | def setScalePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setScalePivotTranslation (line 1611) | def setScalePivotTranslation(cls, *args: Incomplete, **kwargs: Incompl... method setRotatePivot (line 1613) | def setRotatePivot(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setRotatePivotTranslation (line 1615) | def setRotatePivotTranslation(cls, *args: Incomplete, **kwargs: Incomp... method getRotationOrder (line 1617) | def getRotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setRotationOrder (line 1619) | def setRotationOrder(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getRotateOrientation (line 1621) | def getRotateOrientation(cls, *args: Incomplete, **kwargs: Incomplete)... method setRotateOrientation (line 1623) | def setRotateOrientation(cls, *args: Incomplete, **kwargs: Incomplete)... class MPxPolyTweakUVCommand (line 1625) | class MPxPolyTweakUVCommand(MPxCommand): method __swig_destroy__ (line 1630) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method parseSyntax (line 1632) | def parseSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getTweakedUVs (line 1634) | def getTweakedUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method newSyntax (line 1636) | def newSyntax(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxMultiPolyTweakUVCommand (line 1638) | class MPxMultiPolyTweakUVCommand(MPxCommand): method __swig_destroy__ (line 1643) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method parseSyntax (line 1645) | def parseSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method newSyntax (line 1647) | def newSyntax(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method preProcessUVs (line 1649) | def preProcessUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getTweakedUVs (line 1651) | def getTweakedUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MaterialInputData (line 1653) | class MaterialInputData: method __swig_destroy__ (line 1663) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MPxMaterialInformation (line 1665) | class MPxMaterialInformation: method __swig_destroy__ (line 1673) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method useMaterialAsTexture (line 1675) | def useMaterialAsTexture(cls, *args: Incomplete, **kwargs: Incomplete)... method materialInfoIsDirty (line 1677) | def materialInfoIsDirty(cls, *args: Incomplete, **kwargs: Incomplete) ... method connectAsTexture (line 1679) | def connectAsTexture(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method textureDisconnected (line 1681) | def textureDisconnected(cls, *args: Incomplete, **kwargs: Incomplete) ... method computeMaterial (line 1683) | def computeMaterial(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MPxCacheFormat (line 1685) | class MPxCacheFormat: method __swig_destroy__ (line 1693) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method open (line 1695) | def open(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method close (line 1697) | def close(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isValid (line 1699) | def isValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method rewind (line 1701) | def rewind(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method extension (line 1703) | def extension(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method readHeader (line 1705) | def readHeader(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method writeHeader (line 1707) | def writeHeader(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method beginWriteChunk (line 1709) | def beginWriteChunk(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method endWriteChunk (line 1711) | def endWriteChunk(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method beginReadChunk (line 1713) | def beginReadChunk(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method endReadChunk (line 1715) | def endReadChunk(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method writeTime (line 1717) | def writeTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method readTime (line 1719) | def readTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method findTime (line 1721) | def findTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method readNextTime (line 1723) | def readNextTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method readArraySize (line 1725) | def readArraySize(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method writeDoubleArray (line 1727) | def writeDoubleArray(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method writeFloatArray (line 1729) | def writeFloatArray(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method writeIntArray (line 1731) | def writeIntArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method writeDoubleVectorArray (line 1733) | def writeDoubleVectorArray(cls, *args: Incomplete, **kwargs: Incomplet... method writeFloatVectorArray (line 1735) | def writeFloatVectorArray(cls, *args: Incomplete, **kwargs: Incomplete... method writeInt32 (line 1737) | def writeInt32(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method readDoubleArray (line 1739) | def readDoubleArray(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method readFloatArray (line 1741) | def readFloatArray(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method readIntArray (line 1743) | def readIntArray(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method readDoubleVectorArray (line 1745) | def readDoubleVectorArray(cls, *args: Incomplete, **kwargs: Incomplete... method readFloatVectorArray (line 1747) | def readFloatVectorArray(cls, *args: Incomplete, **kwargs: Incomplete)... method readInt32 (line 1749) | def readInt32(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method writeChannelName (line 1751) | def writeChannelName(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method findChannelName (line 1753) | def findChannelName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method readChannelName (line 1755) | def readChannelName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method handlesDescription (line 1757) | def handlesDescription(cls, *args: Incomplete, **kwargs: Incomplete) -... method readDescription (line 1759) | def readDescription(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method writeDescription (line 1761) | def writeDescription(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1763) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxCacheConfigRuleFilter (line 1765) | class MPxCacheConfigRuleFilter: method __swig_destroy__ (line 1770) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method preRulesExecution (line 1772) | def preRulesExecution(cls, *args: Incomplete, **kwargs: Incomplete) ->... method postRulesExecution (line 1774) | def postRulesExecution(cls, *args: Incomplete, **kwargs: Incomplete) -... method isMatch (line 1776) | def isMatch(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MPxGeometryFilter (line 1778) | class MPxGeometryFilter(MPxNode): method __swig_destroy__ (line 1796) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1798) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method prepareDeform (line 1800) | def prepareDeform(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method deform (line 1802) | def deform(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method accessoryAttribute (line 1804) | def accessoryAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -... method accessoryNodeSetup (line 1806) | def accessoryNodeSetup(cls, *args: Incomplete, **kwargs: Incomplete) -... method setUseExistingConnectionWhenSetEditing (line 1808) | def setUseExistingConnectionWhenSetEditing(cls, *args: Incomplete, **k... method setDeformationDetails (line 1810) | def setDeformationDetails(cls, *args: Incomplete, **kwargs: Incomplete... method getDeformationDetails (line 1812) | def getDeformationDetails(cls, *args: Incomplete, **kwargs: Incomplete... method setModifiedCallback (line 1814) | def setModifiedCallback(cls, *args: Incomplete, **kwargs: Incomplete) ... method indexMapper (line 1816) | def indexMapper(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getGeometryIterator (line 1818) | def getGeometryIterator(cls, *args: Incomplete, **kwargs: Incomplete) ... method getFixedSetupData (line 1820) | def getFixedSetupData(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 1822) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxDeformerNode (line 1824) | class MPxDeformerNode(MPxGeometryFilter): method __swig_destroy__ (line 1831) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1833) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method weightValue (line 1835) | def weightValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method envelopeWeights (line 1837) | def envelopeWeights(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setUseExistingConnectionWhenSetEditing (line 1839) | def setUseExistingConnectionWhenSetEditing(cls, *args: Incomplete, **k... method setDeformationDetails (line 1841) | def setDeformationDetails(cls, *args: Incomplete, **kwargs: Incomplete... method getDeformationDetails (line 1843) | def getDeformationDetails(cls, *args: Incomplete, **kwargs: Incomplete... method indexMapper (line 1845) | def indexMapper(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 1847) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxSkinCluster (line 1849) | class MPxSkinCluster(MPxGeometryFilter): method __swig_destroy__ (line 1858) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1860) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method weightValue (line 1862) | def weightValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 1864) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxBlendShape (line 1866) | class MPxBlendShape(MPxGeometryFilter): method __swig_destroy__ (line 1879) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1881) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method deformData (line 1883) | def deformData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 1885) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxIkSolverNode (line 1887) | class MPxIkSolverNode(MPxNode): method __swig_destroy__ (line 1892) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 1894) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method preSolve (line 1896) | def preSolve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method doSolve (line 1898) | def doSolve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method postSolve (line 1900) | def postSolve(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method solverTypeName (line 1902) | def solverTypeName(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method rotatePlane (line 1904) | def rotatePlane(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRotatePlane (line 1906) | def setRotatePlane(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method singleChainOnly (line 1908) | def singleChainOnly(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSingleChainOnly (line 1910) | def setSingleChainOnly(cls, *args: Incomplete, **kwargs: Incomplete) -... method positionOnly (line 1912) | def positionOnly(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setPositionOnly (line 1914) | def setPositionOnly(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method supportJointLimits (line 1916) | def supportJointLimits(cls, *args: Incomplete, **kwargs: Incomplete) -... method setSupportJointLimits (line 1918) | def setSupportJointLimits(cls, *args: Incomplete, **kwargs: Incomplete... method uniqueSolution (line 1920) | def uniqueSolution(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setUniqueSolution (line 1922) | def setUniqueSolution(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isSingleChainOnly (line 1924) | def isSingleChainOnly(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isPositionOnly (line 1926) | def isPositionOnly(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method hasJointLimitSupport (line 1928) | def hasJointLimitSupport(cls, *args: Incomplete, **kwargs: Incomplete)... method hasUniqueSolution (line 1930) | def hasUniqueSolution(cls, *args: Incomplete, **kwargs: Incomplete) ->... method groupHandlesByTopology (line 1932) | def groupHandlesByTopology(cls, *args: Incomplete, **kwargs: Incomplet... method setFuncValueTolerance (line 1934) | def setFuncValueTolerance(cls, *args: Incomplete, **kwargs: Incomplete... method setMaxIterations (line 1936) | def setMaxIterations(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method handleGroup (line 1938) | def handleGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setHandleGroup (line 1940) | def setHandleGroup(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method toWorldSpace (line 1942) | def toWorldSpace(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method toSolverSpace (line 1944) | def toSolverSpace(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method funcValueTolerance (line 1946) | def funcValueTolerance(cls, *args: Incomplete, **kwargs: Incomplete) -... method maxIterations (line 1948) | def maxIterations(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method snapHandle (line 1950) | def snapHandle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isAttributeCreatedBySolver (line 1952) | def isAttributeCreatedBySolver(cls, *args: Incomplete, **kwargs: Incom... method create (line 1954) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 1956) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxAnimCurveInterpolator (line 1958) | class MPxAnimCurveInterpolator: method __swig_destroy__ (line 1965) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method initialize (line 1967) | def initialize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method evaluate (line 1969) | def evaluate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method typeId (line 1971) | def typeId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method typeName (line 1973) | def typeName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MPxConstraint (line 1975) | class MPxConstraint(MPxNode): method __swig_destroy__ (line 1987) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method weightAttribute (line 1989) | def weightAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method targetAttribute (line 1991) | def targetAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method constraintRotateOrderAttribute (line 1993) | def constraintRotateOrderAttribute(cls, *args: Incomplete, **kwargs: I... method className (line 1995) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method passiveOutputAttribute (line 1997) | def passiveOutputAttribute(cls, *args: Incomplete, **kwargs: Incomplet... method getOutputAttributes (line 1999) | def getOutputAttributes(cls, *args: Incomplete, **kwargs: Incomplete) ... class MPxConstraintCommand (line 2001) | class MPxConstraintCommand(MPxCommand): method __swig_destroy__ (line 2009) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doIt (line 2011) | def doIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method undoIt (line 2013) | def undoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method redoIt (line 2015) | def redoIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method appendSyntax (line 2017) | def appendSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method constraintNode (line 2019) | def constraintNode(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method parseArgs (line 2021) | def parseArgs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method doEdit (line 2023) | def doEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method doCreate (line 2025) | def doCreate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method doQuery (line 2027) | def doQuery(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method createdConstraint (line 2029) | def createdConstraint(cls, *args: Incomplete, **kwargs: Incomplete) ->... method supportsOffset (line 2031) | def supportsOffset(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method hasVectorFlags (line 2033) | def hasVectorFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method constraintTypeId (line 2035) | def constraintTypeId(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method targetType (line 2037) | def targetType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method aimVectorAttribute (line 2039) | def aimVectorAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -... method upVectorAttribute (line 2041) | def upVectorAttribute(cls, *args: Incomplete, **kwargs: Incomplete) ->... method worldUpMatrixAttribute (line 2043) | def worldUpMatrixAttribute(cls, *args: Incomplete, **kwargs: Incomplet... method worldUpTypeAttribute (line 2045) | def worldUpTypeAttribute(cls, *args: Incomplete, **kwargs: Incomplete)... method worldUpVectorAttribute (line 2047) | def worldUpVectorAttribute(cls, *args: Incomplete, **kwargs: Incomplet... method offsetAttribute (line 2049) | def offsetAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method constraintInstancedAttribute (line 2051) | def constraintInstancedAttribute(cls, *args: Incomplete, **kwargs: Inc... method constraintOutputAttribute (line 2053) | def constraintOutputAttribute(cls, *args: Incomplete, **kwargs: Incomp... method constraintRestAttribute (line 2055) | def constraintRestAttribute(cls, *args: Incomplete, **kwargs: Incomple... method constraintEnableRestAttribute (line 2057) | def constraintEnableRestAttribute(cls, *args: Incomplete, **kwargs: In... method constraintTargetInstancedAttribute (line 2059) | def constraintTargetInstancedAttribute(cls, *args: Incomplete, **kwarg... method constraintTargetAttribute (line 2061) | def constraintTargetAttribute(cls, *args: Incomplete, **kwargs: Incomp... method constraintTargetWeightAttribute (line 2063) | def constraintTargetWeightAttribute(cls, *args: Incomplete, **kwargs: ... method objectAttribute (line 2065) | def objectAttribute(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getObjectAttributesArray (line 2067) | def getObjectAttributesArray(cls, *args: Incomplete, **kwargs: Incompl... method handleNewTargets (line 2069) | def handleNewTargets(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method connectTarget (line 2071) | def connectTarget(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method connectObjectAndConstraint (line 2073) | def connectObjectAndConstraint(cls, *args: Incomplete, **kwargs: Incom... method setRestPosition (line 2075) | def setRestPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MPxMotionPathNode (line 2077) | class MPxMotionPathNode(MPxNode): method __swig_destroy__ (line 2122) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 2124) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method position (line 2126) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getVectors (line 2128) | def getVectors(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method banking (line 2130) | def banking(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method evaluatePath (line 2132) | def evaluatePath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method parametricToFractional (line 2134) | def parametricToFractional(cls, *args: Incomplete, **kwargs: Incomplet... method fractionalToParametric (line 2136) | def fractionalToParametric(cls, *args: Incomplete, **kwargs: Incomplet... method wraparoundFractionalValue (line 2138) | def wraparoundFractionalValue(cls, *args: Incomplete, **kwargs: Incomp... method matrix (line 2140) | def matrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MPx3dModelView (line 2142) | class MPx3dModelView: method __swig_destroy__ (line 2158) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method name (line 2160) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method viewType (line 2162) | def viewType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method preMultipleDraw (line 2164) | def preMultipleDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method postMultipleDraw (line 2166) | def postMultipleDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method preMultipleDrawPass (line 2168) | def preMultipleDrawPass(cls, *args: Incomplete, **kwargs: Incomplete) ... method postMultipleDrawPass (line 2170) | def postMultipleDrawPass(cls, *args: Incomplete, **kwargs: Incomplete)... method okForMultipleDraw (line 2172) | def okForMultipleDraw(cls, *args: Incomplete, **kwargs: Incomplete) ->... method multipleDrawPassCount (line 2174) | def multipleDrawPassCount(cls, *args: Incomplete, **kwargs: Incomplete... method multipleDrawEnabled (line 2176) | def multipleDrawEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMultipleDrawEnable (line 2178) | def setMultipleDrawEnable(cls, *args: Incomplete, **kwargs: Incomplete... method destroyOnPanelDestruction (line 2180) | def destroyOnPanelDestruction(cls, *args: Incomplete, **kwargs: Incomp... method setDestroyOnPanelDestruction (line 2182) | def setDestroyOnPanelDestruction(cls, *args: Incomplete, **kwargs: Inc... method updateViewingParameters (line 2184) | def updateViewingParameters(cls, *args: Incomplete, **kwargs: Incomple... method removingCamera (line 2186) | def removingCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDoUpdateOnMove (line 2188) | def setDoUpdateOnMove(cls, *args: Incomplete, **kwargs: Incomplete) ->... method doUpdateOnMove (line 2190) | def doUpdateOnMove(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method refresh (line 2192) | def refresh(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method drawText (line 2194) | def drawText(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method beginGL (line 2196) | def beginGL(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method endGL (line 2198) | def endGL(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setCameraInDraw (line 2200) | def setCameraInDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setDrawCameraOverride (line 2202) | def setDrawCameraOverride(cls, *args: Incomplete, **kwargs: Incomplete... method setCamera (line 2204) | def setCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getCamera (line 2206) | def getCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setCameraSet (line 2208) | def setCameraSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getCameraSet (line 2210) | def getCameraSet(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCurrentCameraSetCamera (line 2212) | def setCurrentCameraSetCamera(cls, *args: Incomplete, **kwargs: Incomp... method getCurrentCameraSetCamera (line 2214) | def getCurrentCameraSetCamera(cls, *args: Incomplete, **kwargs: Incomp... method getCameraHUDName (line 2216) | def getCameraHUDName(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setDisplayHUD (line 2218) | def setDisplayHUD(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method displayHUD (line 2220) | def displayHUD(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method drawHUDNow (line 2222) | def drawHUDNow(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDrawAdornments (line 2224) | def setDrawAdornments(cls, *args: Incomplete, **kwargs: Incomplete) ->... method drawAdornments (line 2226) | def drawAdornments(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method drawAdornmentsNow (line 2228) | def drawAdornmentsNow(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setDisplayAxis (line 2230) | def setDisplayAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method displayAxisOn (line 2232) | def displayAxisOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDisplayAxisAtOrigin (line 2234) | def setDisplayAxisAtOrigin(cls, *args: Incomplete, **kwargs: Incomplet... method displayAxisAtOriginOn (line 2236) | def displayAxisAtOriginOn(cls, *args: Incomplete, **kwargs: Incomplete... method setDisplayCameraAnnotation (line 2238) | def setDisplayCameraAnnotation(cls, *args: Incomplete, **kwargs: Incom... method displayCameraAnnotationOn (line 2240) | def displayCameraAnnotationOn(cls, *args: Incomplete, **kwargs: Incomp... method isVisible (line 2242) | def isVisible(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method displayStyle (line 2244) | def displayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isShadeActiveOnly (line 2246) | def isShadeActiveOnly(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setDisplayStyle (line 2248) | def setDisplayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method portWidth (line 2250) | def portWidth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method portHeight (line 2252) | def portHeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method beginXorDrawing (line 2254) | def beginXorDrawing(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method endXorDrawing (line 2256) | def endXorDrawing(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDrawColor (line 2258) | def setDrawColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method numDormantColors (line 2260) | def numDormantColors(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method numActiveColors (line 2262) | def numActiveColors(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method numUserDefinedColors (line 2264) | def numUserDefinedColors(cls, *args: Incomplete, **kwargs: Incomplete)... method setUserDefinedColor (line 2266) | def setUserDefinedColor(cls, *args: Incomplete, **kwargs: Incomplete) ... method userDefinedColorIndex (line 2268) | def userDefinedColorIndex(cls, *args: Incomplete, **kwargs: Incomplete... method isBackgroundGradient (line 2270) | def isBackgroundGradient(cls, *args: Incomplete, **kwargs: Incomplete)... method templateColor (line 2272) | def templateColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method backgroundColor (line 2274) | def backgroundColor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method backgroundColorTop (line 2276) | def backgroundColorTop(cls, *args: Incomplete, **kwargs: Incomplete) -... method backgroundColorBottom (line 2278) | def backgroundColorBottom(cls, *args: Incomplete, **kwargs: Incomplete... method colorAtIndex (line 2280) | def colorAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getColorIndexAndTable (line 2282) | def getColorIndexAndTable(cls, *args: Incomplete, **kwargs: Incomplete... method viewToWorld (line 2284) | def viewToWorld(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method viewToObjectSpace (line 2286) | def viewToObjectSpace(cls, *args: Incomplete, **kwargs: Incomplete) ->... method worldToView (line 2288) | def worldToView(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setObjectDisplay (line 2290) | def setObjectDisplay(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method objectDisplay (line 2292) | def objectDisplay(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setBackfaceCulling (line 2294) | def setBackfaceCulling(cls, *args: Incomplete, **kwargs: Incomplete) -... method isBackfaceCulling (line 2296) | def isBackfaceCulling(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setWireframeOnShaded (line 2298) | def setWireframeOnShaded(cls, *args: Incomplete, **kwargs: Incomplete)... method isWireframeOnShaded (line 2300) | def isWireframeOnShaded(cls, *args: Incomplete, **kwargs: Incomplete) ... method setXrayEnabled (line 2302) | def setXrayEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isXrayEnabled (line 2304) | def isXrayEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setTextureDisplayEnabled (line 2306) | def setTextureDisplayEnabled(cls, *args: Incomplete, **kwargs: Incompl... method isTextureDisplayEnabled (line 2308) | def isTextureDisplayEnabled(cls, *args: Incomplete, **kwargs: Incomple... method setTwoSidedLighting (line 2310) | def setTwoSidedLighting(cls, *args: Incomplete, **kwargs: Incomplete) ... method isTwoSidedLighting (line 2312) | def isTwoSidedLighting(cls, *args: Incomplete, **kwargs: Incomplete) -... method setLightingMode (line 2314) | def setLightingMode(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method lightingMode (line 2316) | def lightingMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setFogEnabled (line 2318) | def setFogEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isFogEnabled (line 2320) | def isFogEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method fogSource (line 2322) | def fogSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setFogSource (line 2324) | def setFogSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method fogMode (line 2326) | def fogMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setFogMode (line 2328) | def setFogMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method fogDensity (line 2330) | def fogDensity(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setFogDensity (line 2332) | def setFogDensity(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method fogStart (line 2334) | def fogStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setFogStart (line 2336) | def setFogStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method fogEnd (line 2338) | def fogEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setFogEnd (line 2340) | def setFogEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method fogColor (line 2342) | def fogColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setFogColor (line 2344) | def setFogColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isBackgroundFogEnabled (line 2346) | def isBackgroundFogEnabled(cls, *args: Incomplete, **kwargs: Incomplet... method setBackgroundFogEnabled (line 2348) | def setBackgroundFogEnabled(cls, *args: Incomplete, **kwargs: Incomple... method viewSelectedPrefix (line 2350) | def viewSelectedPrefix(cls, *args: Incomplete, **kwargs: Incomplete) -... method setViewSelectedPrefix (line 2352) | def setViewSelectedPrefix(cls, *args: Incomplete, **kwargs: Incomplete... method viewSelected (line 2354) | def viewSelected(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setViewSelected (line 2356) | def setViewSelected(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method viewSelectedSet (line 2358) | def viewSelectedSet(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setViewSelectedSet (line 2360) | def setViewSelectedSet(cls, *args: Incomplete, **kwargs: Incomplete) -... method getObjectsToView (line 2362) | def getObjectsToView(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setObjectsToView (line 2364) | def setObjectsToView(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method viewIsFiltered (line 2366) | def viewIsFiltered(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method filteredObjectList (line 2368) | def filteredObjectList(cls, *args: Incomplete, **kwargs: Incomplete) -... method hasStereoBufferSupport (line 2370) | def hasStereoBufferSupport(cls, *args: Incomplete, **kwargs: Incomplet... method getAsM3dView (line 2372) | def getAsM3dView(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getModelView (line 2374) | def getModelView(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method wantStereoGLBuffer (line 2376) | def wantStereoGLBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -... method setInStereoDrawMode (line 2378) | def setInStereoDrawMode(cls, *args: Incomplete, **kwargs: Incomplete) ... method customDrawEnabled (line 2380) | def customDrawEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setCustomDrawEnable (line 2382) | def setCustomDrawEnable(cls, *args: Incomplete, **kwargs: Incomplete) ... method customDraw (line 2384) | def customDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method drawOnePass (line 2386) | def drawOnePass(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method requestOkForDraw (line 2388) | def requestOkForDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method processDraw (line 2390) | def processDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method handleDraw (line 2392) | def handleDraw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setDrawInterrupt (line 2394) | def setDrawInterrupt(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method drawInterrupt (line 2396) | def drawInterrupt(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setIncludeInvisible (line 2398) | def setIncludeInvisible(cls, *args: Incomplete, **kwargs: Incomplete) ... method includeInvisible (line 2400) | def includeInvisible(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 2402) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxContext (line 2404) | class MPxContext: method __swig_destroy__ (line 2412) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method toolOnSetup (line 2414) | def toolOnSetup(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method toolOffCleanup (line 2416) | def toolOffCleanup(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method doPress (line 2418) | def doPress(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method doRelease (line 2420) | def doRelease(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method doDrag (line 2422) | def doDrag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method doHold (line 2424) | def doHold(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method doPtrMoved (line 2426) | def doPtrMoved(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method doEnterRegion (line 2428) | def doEnterRegion(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method helpStateHasChanged (line 2430) | def helpStateHasChanged(cls, *args: Incomplete, **kwargs: Incomplete) ... method deleteAction (line 2432) | def deleteAction(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method completeAction (line 2434) | def completeAction(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addManipulator (line 2436) | def addManipulator(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method deleteManipulators (line 2438) | def deleteManipulators(cls, *args: Incomplete, **kwargs: Incomplete) -... method setImage (line 2440) | def setImage(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method image (line 2442) | def image(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method inAlternateContext (line 2444) | def inAlternateContext(cls, *args: Incomplete, **kwargs: Incomplete) -... method newToolCommand (line 2446) | def newToolCommand(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method abortAction (line 2448) | def abortAction(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method processNumericalInput (line 2450) | def processNumericalInput(cls, *args: Incomplete, **kwargs: Incomplete... method feedbackNumericalInput (line 2452) | def feedbackNumericalInput(cls, *args: Incomplete, **kwargs: Incomplet... method argTypeNumericalInput (line 2454) | def argTypeNumericalInput(cls, *args: Incomplete, **kwargs: Incomplete... method stringClassName (line 2456) | def stringClassName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 2458) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method doExitRegion (line 2460) | def doExitRegion(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MPxContextCommand (line 2462) | class MPxContextCommand: method __swig_destroy__ (line 2467) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doEditFlags (line 2469) | def doEditFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method doQueryFlags (line 2471) | def doQueryFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method makeObj (line 2473) | def makeObj(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method appendSyntax (line 2475) | def appendSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setResult (line 2477) | def setResult(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 2479) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxControlCommand (line 2481) | class MPxControlCommand: method __swig_destroy__ (line 2486) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method makeControl (line 2488) | def makeControl(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method doEditFlags (line 2490) | def doEditFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method doQueryFlags (line 2492) | def doQueryFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method appendSyntax (line 2494) | def appendSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method skipFlagForCreate (line 2496) | def skipFlagForCreate(cls, *args: Incomplete, **kwargs: Incomplete) ->... method clearResult (line 2498) | def clearResult(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setResult (line 2500) | def setResult(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 2502) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxDragAndDropBehavior (line 2504) | class MPxDragAndDropBehavior: method __swig_destroy__ (line 2509) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method shouldBeUsedFor (line 2511) | def shouldBeUsedFor(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method connectAttrToAttr (line 2513) | def connectAttrToAttr(cls, *args: Incomplete, **kwargs: Incomplete) ->... method connectAttrToNode (line 2515) | def connectAttrToNode(cls, *args: Incomplete, **kwargs: Incomplete) ->... method connectNodeToAttr (line 2517) | def connectNodeToAttr(cls, *args: Incomplete, **kwargs: Incomplete) ->... method connectNodeToNode (line 2519) | def connectNodeToNode(cls, *args: Incomplete, **kwargs: Incomplete) ->... method className (line 2521) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxGlBuffer (line 2523) | class MPxGlBuffer: method __swig_destroy__ (line 2528) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method openFbo (line 2530) | def openFbo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method closeFbo (line 2532) | def closeFbo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method bindFbo (line 2534) | def bindFbo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method unbindFbo (line 2536) | def unbindFbo(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method beginBufferNotify (line 2538) | def beginBufferNotify(cls, *args: Incomplete, **kwargs: Incomplete) ->... method endBufferNotify (line 2540) | def endBufferNotify(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method className (line 2542) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxLocatorNode (line 2544) | class MPxLocatorNode(MPxNode): method __swig_destroy__ (line 2595) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 2597) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method draw (line 2599) | def draw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isBounded (line 2601) | def isBounded(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method boundingBox (line 2603) | def boundingBox(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getCacheSetup (line 2605) | def getCacheSetup(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method color (line 2607) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method colorRGB (line 2609) | def colorRGB(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method excludeAsLocator (line 2611) | def excludeAsLocator(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isTransparent (line 2613) | def isTransparent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method drawLast (line 2615) | def drawLast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method useClosestPointForSelection (line 2617) | def useClosestPointForSelection(cls, *args: Incomplete, **kwargs: Inco... method closestPoint (line 2619) | def closestPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getShapeSelectionMask (line 2621) | def getShapeSelectionMask(cls, *args: Incomplete, **kwargs: Incomplete... method className (line 2623) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxManipContainer (line 2625) | class MPxManipContainer(MPxNode): method __swig_destroy__ (line 2641) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 2643) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method initialize (line 2645) | def initialize(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method newManipulator (line 2647) | def newManipulator(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method draw (line 2649) | def draw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method connectToDependNode (line 2651) | def connectToDependNode(cls, *args: Incomplete, **kwargs: Incomplete) ... method createChildren (line 2653) | def createChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addFreePointTriadManip (line 2655) | def addFreePointTriadManip(cls, *args: Incomplete, **kwargs: Incomplet... method addDirectionManip (line 2657) | def addDirectionManip(cls, *args: Incomplete, **kwargs: Incomplete) ->... method addDistanceManip (line 2659) | def addDistanceManip(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addPointOnCurveManip (line 2661) | def addPointOnCurveManip(cls, *args: Incomplete, **kwargs: Incomplete)... method addPointOnSurfaceManip (line 2663) | def addPointOnSurfaceManip(cls, *args: Incomplete, **kwargs: Incomplet... method addDiscManip (line 2665) | def addDiscManip(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method addCircleSweepManip (line 2667) | def addCircleSweepManip(cls, *args: Incomplete, **kwargs: Incomplete) ... method addToggleManip (line 2669) | def addToggleManip(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addStateManip (line 2671) | def addStateManip(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addCurveSegmentManip (line 2673) | def addCurveSegmentManip(cls, *args: Incomplete, **kwargs: Incomplete)... method addRotateManip (line 2675) | def addRotateManip(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addScaleManip (line 2677) | def addScaleManip(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addMPxManipulatorNode (line 2679) | def addMPxManipulatorNode(cls, *args: Incomplete, **kwargs: Incomplete... method isManipActive (line 2681) | def isManipActive(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method finishAddingManips (line 2683) | def finishAddingManips(cls, *args: Incomplete, **kwargs: Incomplete) -... method addToManipConnectTable (line 2685) | def addToManipConnectTable(*args: Incomplete, **kwargs: Incomplete) ->... method removeFromManipConnectTable (line 2687) | def removeFromManipConnectTable(*args: Incomplete, **kwargs: Incomplet... method plugToManipConversion (line 2689) | def plugToManipConversion(cls, *args: Incomplete, **kwargs: Incomplete... method manipToPlugConversion (line 2691) | def manipToPlugConversion(cls, *args: Incomplete, **kwargs: Incomplete... method addPlugToManipConversion (line 2693) | def addPlugToManipConversion(cls, *args: Incomplete, **kwargs: Incompl... method addManipToPlugConversion (line 2695) | def addManipToPlugConversion(cls, *args: Incomplete, **kwargs: Incompl... method addPlugToInViewEditor (line 2697) | def addPlugToInViewEditor(cls, *args: Incomplete, **kwargs: Incomplete... method getConverterManipValue (line 2699) | def getConverterManipValue(cls, *args: Incomplete, **kwargs: Incomplet... method getConverterPlugValue (line 2701) | def getConverterPlugValue(cls, *args: Incomplete, **kwargs: Incomplete... method doPress (line 2703) | def doPress(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method doDrag (line 2705) | def doDrag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method doRelease (line 2707) | def doRelease(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 2709) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxMidiInputDevice (line 2711) | class MPxMidiInputDevice: method __swig_destroy__ (line 2716) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method openDevice (line 2718) | def openDevice(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method closeDevice (line 2720) | def closeDevice(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method nameAxes (line 2722) | def nameAxes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method nameButtons (line 2724) | def nameButtons(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deviceState (line 2726) | def deviceState(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method sendMessage (line 2728) | def sendMessage(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getMessage (line 2730) | def getMessage(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method doButtonEvents (line 2732) | def doButtonEvents(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method doMovementEvents (line 2734) | def doMovementEvents(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 2736) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxModelEditorCommand (line 2738) | class MPxModelEditorCommand: method __swig_destroy__ (line 2743) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doEditFlags (line 2745) | def doEditFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method doQueryFlags (line 2747) | def doQueryFlags(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method appendSyntax (line 2749) | def appendSyntax(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method skipFlagForCreate (line 2751) | def skipFlagForCreate(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setResult (line 2753) | def setResult(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method editorCommandName (line 2755) | def editorCommandName(cls, *args: Incomplete, **kwargs: Incomplete) ->... method editorMenuScriptName (line 2757) | def editorMenuScriptName(cls, *args: Incomplete, **kwargs: Incomplete)... method makeModelView (line 2759) | def makeModelView(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method modelView (line 2761) | def modelView(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 2763) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxSelectionContext (line 2765) | class MPxSelectionContext(MPxContext): method __swig_destroy__ (line 2770) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doPress (line 2772) | def doPress(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method doRelease (line 2774) | def doRelease(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method doDrag (line 2776) | def doDrag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method doHold (line 2778) | def doHold(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method helpStateHasChanged (line 2780) | def helpStateHasChanged(cls, *args: Incomplete, **kwargs: Incomplete) ... method addManipulator (line 2782) | def addManipulator(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method deleteManipulators (line 2784) | def deleteManipulators(cls, *args: Incomplete, **kwargs: Incomplete) -... method setAllowPreSelectHilight (line 2786) | def setAllowPreSelectHilight(cls, *args: Incomplete, **kwargs: Incompl... method setAllowSoftSelect (line 2788) | def setAllowSoftSelect(cls, *args: Incomplete, **kwargs: Incomplete) -... method setAllowSymmetry (line 2790) | def setAllowSymmetry(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setAllowDoubleClickAction (line 2792) | def setAllowDoubleClickAction(cls, *args: Incomplete, **kwargs: Incomp... method setAllowPaintSelect (line 2794) | def setAllowPaintSelect(cls, *args: Incomplete, **kwargs: Incomplete) ... method setImage (line 2796) | def setImage(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method image (line 2798) | def image(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method newToolCommand (line 2800) | def newToolCommand(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method abortAction (line 2802) | def abortAction(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method processNumericalInput (line 2804) | def processNumericalInput(cls, *args: Incomplete, **kwargs: Incomplete... method feedbackNumericalInput (line 2806) | def feedbackNumericalInput(cls, *args: Incomplete, **kwargs: Incomplet... method argTypeNumericalInput (line 2808) | def argTypeNumericalInput(cls, *args: Incomplete, **kwargs: Incomplete... method className (line 2810) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxSurfaceShapeUI (line 2812) | class MPxSurfaceShapeUI: method __swig_destroy__ (line 2821) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getDrawData (line 2823) | def getDrawData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getDrawRequests (line 2825) | def getDrawRequests(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method draw (line 2827) | def draw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method select (line 2829) | def select(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method snap (line 2831) | def snap(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method canDrawUV (line 2833) | def canDrawUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method drawUV (line 2835) | def drawUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method selectUV (line 2837) | def selectUV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method surfaceShape (line 2839) | def surfaceShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method material (line 2841) | def material(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method materials (line 2843) | def materials(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method surfaceShapeUI (line 2845) | def surfaceShapeUI(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 2847) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxTexContext (line 2849) | class MPxTexContext(MPxContext): method __swig_destroy__ (line 2854) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method viewToPort (line 2856) | def viewToPort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method portToView (line 2858) | def portToView(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method viewRect (line 2860) | def viewRect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method portSize (line 2862) | def portSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getMarqueeSelection (line 2864) | def getMarqueeSelection(*args: Incomplete, **kwargs: Incomplete) -> In... method className (line 2866) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method newToolCommand (line 2868) | def newToolCommand(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MPxToolCommand (line 2870) | class MPxToolCommand(MPxCommand): method __swig_destroy__ (line 2875) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doIt (line 2877) | def doIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method cancel (line 2879) | def cancel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method finalize (line 2881) | def finalize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 2883) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxPolyTweakUVInteractiveCommand (line 2885) | class MPxPolyTweakUVInteractiveCommand(MPxToolCommand): method __swig_destroy__ (line 2890) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setUVs (line 2892) | def setUVs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isUndoable (line 2894) | def isUndoable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method doIt (line 2896) | def doIt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method cancel (line 2898) | def cancel(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method finalize (line 2900) | def finalize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 2902) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxUIControl (line 2904) | class MPxUIControl: method __swig_destroy__ (line 2909) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 2911) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxUITableControl (line 2913) | class MPxUITableControl(MPxUIControl): method __swig_destroy__ (line 2922) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method redrawLabels (line 2924) | def redrawLabels(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method redrawCells (line 2926) | def redrawCells(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method addToSelection (line 2928) | def addToSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method removeFromSelection (line 2930) | def removeFromSelection(cls, *args: Incomplete, **kwargs: Incomplete) ... method clearSelection (line 2932) | def clearSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setSelection (line 2934) | def setSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setNumberOfRows (line 2936) | def setNumberOfRows(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method numberOfRows (line 2938) | def numberOfRows(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setNumberOfColumns (line 2940) | def setNumberOfColumns(cls, *args: Incomplete, **kwargs: Incomplete) -... method numberOfColumns (line 2942) | def numberOfColumns(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method suspendUpdates (line 2944) | def suspendUpdates(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isSelected (line 2946) | def isSelected(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method collapseOrExpandRow (line 2948) | def collapseOrExpandRow(cls, *args: Incomplete, **kwargs: Incomplete) ... method className (line 2950) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method cellString (line 2952) | def cellString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method labelString (line 2954) | def labelString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method allowEdit (line 2956) | def allowEdit(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method allowSelection (line 2958) | def allowSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getCellColor (line 2960) | def getCellColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MPxHwShaderNode (line 2962) | class MPxHwShaderNode(MPxNode): method __swig_destroy__ (line 2998) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3000) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method bind (line 3002) | def bind(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method unbind (line 3004) | def unbind(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method geometry (line 3006) | def geometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glBind (line 3008) | def glBind(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method glUnbind (line 3010) | def glUnbind(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glGeometry (line 3012) | def glGeometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method supportsBatching (line 3014) | def supportsBatching(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method invertTexCoords (line 3016) | def invertTexCoords(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method currentPath (line 3018) | def currentPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method dirtyMask (line 3020) | def dirtyMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method normalsPerVertex (line 3022) | def normalsPerVertex(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method colorsPerVertex (line 3024) | def colorsPerVertex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method texCoordsPerVertex (line 3026) | def texCoordsPerVertex(cls, *args: Incomplete, **kwargs: Incomplete) -... method hasTransparency (line 3028) | def hasTransparency(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method provideVertexIDs (line 3030) | def provideVertexIDs(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method provideFaceIDs (line 3032) | def provideFaceIDs(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method provideLocalUVCoord (line 3034) | def provideLocalUVCoord(cls, *args: Incomplete, **kwargs: Incomplete) ... method transparencyOptions (line 3036) | def transparencyOptions(cls, *args: Incomplete, **kwargs: Incomplete) ... method renderSwatchImage (line 3038) | def renderSwatchImage(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getHwShaderNodePtr (line 3040) | def getHwShaderNodePtr(*args: Incomplete, **kwargs: Incomplete) -> Inc... method currentShadingEngine (line 3042) | def currentShadingEngine(cls, *args: Incomplete, **kwargs: Incomplete)... method className (line 3044) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxHardwareShader (line 3046) | class MPxHardwareShader(MPxNode): method __swig_destroy__ (line 3058) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3060) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setVaryingParameters (line 3062) | def setVaryingParameters(cls, *args: Incomplete, **kwargs: Incomplete)... method setUniformParameters (line 3064) | def setUniformParameters(cls, *args: Incomplete, **kwargs: Incomplete)... method render (line 3066) | def render(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method transparencyOptions (line 3068) | def transparencyOptions(cls, *args: Incomplete, **kwargs: Incomplete) ... method profile (line 3070) | def profile(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method renderSwatchImage (line 3072) | def renderSwatchImage(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getHardwareShaderPtr (line 3074) | def getHardwareShaderPtr(*args: Incomplete, **kwargs: Incomplete) -> I... method findResource (line 3076) | def findResource(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 3078) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxManipulatorNode (line 3080) | class MPxManipulatorNode(MPxNode): method __swig_destroy__ (line 3086) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method connectToDependNode (line 3088) | def connectToDependNode(cls, *args: Incomplete, **kwargs: Incomplete) ... method draw (line 3090) | def draw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method doPress (line 3092) | def doPress(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method doDrag (line 3094) | def doDrag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method doRelease (line 3096) | def doRelease(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method doMove (line 3098) | def doMove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method finishAddingManips (line 3100) | def finishAddingManips(cls, *args: Incomplete, **kwargs: Incomplete) -... method colorAndName (line 3102) | def colorAndName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method shouldDrawHandleAsSelected (line 3104) | def shouldDrawHandleAsSelected(cls, *args: Incomplete, **kwargs: Incom... method setHandleColor (line 3106) | def setHandleColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glFirstHandle (line 3108) | def glFirstHandle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glActiveName (line 3110) | def glActiveName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method mouseRay (line 3112) | def mouseRay(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method mouseRayWorld (line 3114) | def mouseRayWorld(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method mousePosition (line 3116) | def mousePosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method mouseDown (line 3118) | def mouseDown(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method mouseUp (line 3120) | def mouseUp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method registerForMouseMove (line 3122) | def registerForMouseMove(cls, *args: Incomplete, **kwargs: Incomplete)... method deregisterForMouseMove (line 3124) | def deregisterForMouseMove(cls, *args: Incomplete, **kwargs: Incomplet... method addDoubleValue (line 3126) | def addDoubleValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addPointValue (line 3128) | def addPointValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addVectorValue (line 3130) | def addVectorValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDoubleValue (line 3132) | def setDoubleValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setPointValue (line 3134) | def setPointValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setVectorValue (line 3136) | def setVectorValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getDoubleValue (line 3138) | def getDoubleValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getPointValue (line 3140) | def getPointValue(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getVectorValue (line 3142) | def getVectorValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method connectPlugToValue (line 3144) | def connectPlugToValue(cls, *args: Incomplete, **kwargs: Incomplete) -... method newManipulator (line 3146) | def newManipulator(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method addDependentPlug (line 3148) | def addDependentPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method dependentPlugsReset (line 3150) | def dependentPlugsReset(cls, *args: Incomplete, **kwargs: Incomplete) ... method mainColor (line 3152) | def mainColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method xColor (line 3154) | def xColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method yColor (line 3156) | def yColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method zColor (line 3158) | def zColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method prevColor (line 3160) | def prevColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method lineColor (line 3162) | def lineColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method dimmedColor (line 3164) | def dimmedColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method selectedColor (line 3166) | def selectedColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method labelColor (line 3168) | def labelColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method labelBackgroundColor (line 3170) | def labelBackgroundColor(cls, *args: Incomplete, **kwargs: Incomplete)... method getInstancePtr (line 3172) | def getInstancePtr(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setInstancePtr (line 3174) | def setInstancePtr(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method className (line 3176) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxEmitterNode (line 3178) | class MPxEmitterNode(MPxNode): method __swig_destroy__ (line 3216) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3218) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method compute (line 3220) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method draw (line 3222) | def draw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getEmitterType (line 3224) | def getEmitterType(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getOwnerShape (line 3226) | def getOwnerShape(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getCurrentTime (line 3228) | def getCurrentTime(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getStartTime (line 3230) | def getStartTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getDeltaTime (line 3232) | def getDeltaTime(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getRandomSeed (line 3234) | def getRandomSeed(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getRandomState (line 3236) | def getRandomState(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setRandomState (line 3238) | def setRandomState(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method resetRandomState (line 3240) | def resetRandomState(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method randgen (line 3242) | def randgen(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getRate (line 3244) | def getRate(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getMinDistance (line 3246) | def getMinDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getMaxDistance (line 3248) | def getMaxDistance(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getWorldPosition (line 3250) | def getWorldPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getWorldMatrix (line 3252) | def getWorldMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method volumePrimitiveBoundingBox (line 3254) | def volumePrimitiveBoundingBox(cls, *args: Incomplete, **kwargs: Incom... method volumePrimitivePointInside (line 3256) | def volumePrimitivePointInside(cls, *args: Incomplete, **kwargs: Incom... method volumePrimitiveDistanceFromAxis (line 3258) | def volumePrimitiveDistanceFromAxis(cls, *args: Incomplete, **kwargs: ... method hasValidEmission2dTexture (line 3260) | def hasValidEmission2dTexture(cls, *args: Incomplete, **kwargs: Incomp... method evalEmission2dTexture (line 3262) | def evalEmission2dTexture(cls, *args: Incomplete, **kwargs: Incomplete... method className (line 3264) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxFieldNode (line 3266) | class MPxFieldNode(MPxNode): method __swig_destroy__ (line 3292) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3294) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method compute (line 3296) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getForceAtPoint (line 3298) | def getForceAtPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method iconSizeAndOrigin (line 3300) | def iconSizeAndOrigin(cls, *args: Incomplete, **kwargs: Incomplete) ->... method iconBitmap (line 3302) | def iconBitmap(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method draw (line 3304) | def draw(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method falloffCurve (line 3306) | def falloffCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isFalloffCurveConstantOne (line 3308) | def isFalloffCurveConstantOne(cls, *args: Incomplete, **kwargs: Incomp... method className (line 3310) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxFluidEmitterNode (line 3312) | class MPxFluidEmitterNode(MPxEmitterNode): method __swig_destroy__ (line 3329) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3331) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method compute (line 3333) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method fluidEmitter (line 3335) | def fluidEmitter(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method fluidDensityEmission (line 3337) | def fluidDensityEmission(cls, *args: Incomplete, **kwargs: Incomplete)... method fluidHeatEmission (line 3339) | def fluidHeatEmission(cls, *args: Incomplete, **kwargs: Incomplete) ->... method fluidFuelEmission (line 3341) | def fluidFuelEmission(cls, *args: Incomplete, **kwargs: Incomplete) ->... method fluidEmitColor (line 3343) | def fluidEmitColor(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method fluidColor (line 3345) | def fluidColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method fluidDropoff (line 3347) | def fluidDropoff(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method turbulence (line 3349) | def turbulence(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method fluidJitter (line 3351) | def fluidJitter(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 3353) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxSpringNode (line 3355) | class MPxSpringNode(MPxNode): method __swig_destroy__ (line 3363) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3365) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method applySpringLaw (line 3367) | def applySpringLaw(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method className (line 3369) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxParticleAttributeMapperNode (line 3371) | class MPxParticleAttributeMapperNode(MPxNode): method __swig_destroy__ (line 3388) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method type (line 3390) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method compute (line 3392) | def compute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method className (line 3394) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MPxRenderPassImpl (line 3396) | class MPxRenderPassImpl: method __swig_destroy__ (line 3422) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isCompatible (line 3424) | def isCompatible(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method typesSupported (line 3426) | def typesSupported(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getDefaultType (line 3428) | def getDefaultType(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getNumChannels (line 3430) | def getNumChannels(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method frameBufferSemantic (line 3432) | def frameBufferSemantic(cls, *args: Incomplete, **kwargs: Incomplete) ... method perLightPassContributionSupported (line 3434) | def perLightPassContributionSupported(cls, *args: Incomplete, **kwargs... function asMPxPtr (line 3435) | def asMPxPtr(mpxObj: Incomplete) -> Incomplete: ... function asHashable (line 3436) | def asHashable(mpxObj: Incomplete) -> Incomplete: ... FILE: maya/stubs/maya-stubs/OpenMayaRender.pyi class _SwigNonDynamicMeta (line 5) | class _SwigNonDynamicMeta(type): class charPtr (line 8) | class charPtr: method __swig_destroy__ (line 12) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 14) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 16) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 18) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 20) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class intPtr (line 22) | class intPtr: method __swig_destroy__ (line 26) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 28) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 30) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 32) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 34) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class shortPtr (line 36) | class shortPtr: method __swig_destroy__ (line 40) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 42) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 44) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 46) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 48) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class floatPtr (line 50) | class floatPtr: method __swig_destroy__ (line 54) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 56) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 58) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 60) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 62) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class doublePtr (line 64) | class doublePtr: method __swig_destroy__ (line 68) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 70) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 72) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 74) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 76) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class boolPtr (line 78) | class boolPtr: method __swig_destroy__ (line 82) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 84) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 86) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 88) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 90) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uIntPtr (line 92) | class uIntPtr: method __swig_destroy__ (line 96) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 98) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 100) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 102) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 104) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uCharPtr (line 106) | class uCharPtr: method __swig_destroy__ (line 110) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 112) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 114) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 116) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 118) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MColorMixingSpaceHelper (line 120) | class MColorMixingSpaceHelper: method __swig_destroy__ (line 126) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method refresh (line 128) | def refresh(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getMixingSpaceNames (line 130) | def getMixingSpaceNames(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMixingSpace (line 132) | def setMixingSpace(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method mixingSpace (line 134) | def mixingSpace(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method mixingSpaceHasViews (line 136) | def mixingSpaceHasViews(cls, *args: Incomplete, **kwargs: Incomplete) ... method getViewNames (line 138) | def getViewNames(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setView (line 140) | def setView(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method view (line 142) | def view(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method applyMixingTransform (line 144) | def applyMixingTransform(cls, *args: Incomplete, **kwargs: Incomplete)... method mixingToSlider (line 146) | def mixingToSlider(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method sliderToMixing (line 148) | def sliderToMixing(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MColorPickerCallback (line 150) | class MColorPickerCallback: method __swig_destroy__ (line 154) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getColor (line 156) | def getColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getKey (line 158) | def getKey(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 160) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MColorPickerUtilities (line 162) | class MColorPickerUtilities: method isRegisteredToColorPicking (line 168) | def isRegisteredToColorPicking(*args: Incomplete, **kwargs: Incomplete... method doRegisterToColorPicking (line 170) | def doRegisterToColorPicking(*args: Incomplete, **kwargs: Incomplete) ... method unregisterFromColorPicking (line 172) | def unregisterFromColorPicking(*args: Incomplete, **kwargs: Incomplete... method applyViewTransform (line 174) | def applyViewTransform(*args: Incomplete, **kwargs: Incomplete) -> Inc... method grabColor (line 176) | def grabColor(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 178) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MCommonRenderSettingsData (line 180) | class MCommonRenderSettingsData: method __swig_destroy__ (line 215) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isAnimated (line 217) | def isAnimated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isMovieFormat (line 219) | def isMovieFormat(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setPassName (line 221) | def setPassName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setFieldName (line 223) | def setFieldName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getImageName (line 225) | def getImageName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method shouldRenderFrameAtTime (line 227) | def shouldRenderFrameAtTime(cls, *args: Incomplete, **kwargs: Incomple... method getBufferName (line 229) | def getBufferName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getPreRenderFrameCmd (line 231) | def getPreRenderFrameCmd(*args: Incomplete, **kwargs: Incomplete) -> I... method getPostRenderFrameCmd (line 233) | def getPostRenderFrameCmd(*args: Incomplete, **kwargs: Incomplete) -> ... method className (line 235) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MD3D9Renderer (line 237) | class MD3D9Renderer: method makeSwatchContextCurrent (line 241) | def makeSwatchContextCurrent(cls, *args: Incomplete, **kwargs: Incompl... method setBackgroundColor (line 243) | def setBackgroundColor(cls, *args: Incomplete, **kwargs: Incomplete) -... method readSwatchContextPixels (line 245) | def readSwatchContextPixels(cls, *args: Incomplete, **kwargs: Incomple... method getD3D9Device (line 247) | def getD3D9Device(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method theRenderer (line 249) | def theRenderer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 251) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MDrawProcedureBase (line 253) | class MDrawProcedureBase: method __swig_destroy__ (line 257) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method execute (line 259) | def execute(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setEnabled (line 261) | def setEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method enabled (line 263) | def enabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setName (line 265) | def setName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method name (line 267) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnRenderLayer (line 269) | class MFnRenderLayer(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 273) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 275) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method inLayer (line 277) | def inLayer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method layerChildren (line 279) | def layerChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method inCurrentRenderLayer (line 281) | def inCurrentRenderLayer(cls, *args: Incomplete, **kwargs: Incomplete)... method listMembers (line 283) | def listMembers(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isPlugAdjusted (line 285) | def isPlugAdjusted(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method adjustmentPlug (line 287) | def adjustmentPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method externalRenderPasses (line 289) | def externalRenderPasses(cls, *args: Incomplete, **kwargs: Incomplete)... method passHasObject (line 291) | def passHasObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method passHasLight (line 293) | def passHasLight(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method findLayerByName (line 295) | def findLayerByName(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method defaultRenderLayer (line 297) | def defaultRenderLayer(*args: Incomplete, **kwargs: Incomplete) -> Inc... method listAllRenderLayers (line 299) | def listAllRenderLayers(*args: Incomplete, **kwargs: Incomplete) -> In... method currentLayer (line 301) | def currentLayer(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnRenderPass (line 303) | class MFnRenderPass(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 307) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 309) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setImplementation (line 311) | def setImplementation(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getImplementation (line 313) | def getImplementation(cls, *args: Incomplete, **kwargs: Incomplete) ->... method frameBufferType (line 315) | def frameBufferType(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method frameBufferChannels (line 317) | def frameBufferChannels(cls, *args: Incomplete, **kwargs: Incomplete) ... method usesFiltering (line 319) | def usesFiltering(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method passID (line 321) | def passID(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method customTokenString (line 323) | def customTokenString(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MFnImageSource (line 325) | class MFnImageSource(maya.OpenMaya.MFnDependencyNode): method __swig_destroy__ (line 329) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 331) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getImageName (line 333) | def getImageName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method sourceLayer (line 335) | def sourceLayer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method sourceCamera (line 337) | def sourceCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MGeometryData (line 339) | class MGeometryData: method __swig_destroy__ (line 371) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method objectName (line 373) | def objectName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method uniqueID (line 375) | def uniqueID(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method dataType (line 377) | def dataType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method elementType (line 379) | def elementType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method elementTypeSize (line 381) | def elementTypeSize(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method elementSize (line 383) | def elementSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method elementCount (line 385) | def elementCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method data (line 387) | def data(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setCollectionNumber (line 389) | def setCollectionNumber(cls, *args: Incomplete, **kwargs: Incomplete) ... method collectionNumber (line 391) | def collectionNumber(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setObjectOwnsData (line 393) | def setObjectOwnsData(cls, *args: Incomplete, **kwargs: Incomplete) ->... method objectOwnsData (line 395) | def objectOwnsData(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MGeometryLegacy (line 397) | class MGeometryLegacy: method __swig_destroy__ (line 401) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 403) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method primitiveArrayCount (line 405) | def primitiveArrayCount(cls, *args: Incomplete, **kwargs: Incomplete) ... method primitiveArray (line 407) | def primitiveArray(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method position (line 409) | def position(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method normal (line 411) | def normal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method componentId (line 413) | def componentId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method texCoord (line 415) | def texCoord(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method color (line 417) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method tangent (line 419) | def tangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method binormal (line 421) | def binormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method data (line 423) | def data(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MGeometryList (line 425) | class MGeometryList: method __swig_destroy__ (line 438) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDone (line 440) | def isDone(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method next (line 442) | def next(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method reset (line 444) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method length (line 446) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setCurrentElement (line 448) | def setCurrentElement(cls, *args: Incomplete, **kwargs: Incomplete) ->... method geometry (line 450) | def geometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method objectToWorldMatrix (line 452) | def objectToWorldMatrix(cls, *args: Incomplete, **kwargs: Incomplete) ... method projectionMatrix (line 454) | def projectionMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method viewMatrix (line 456) | def viewMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method path (line 458) | def path(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method cullMode (line 460) | def cullMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addLast (line 462) | def addLast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MGeometryManager (line 464) | class MGeometryManager: method getGeometry (line 471) | def getGeometry(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method referenceDefaultGeometry (line 473) | def referenceDefaultGeometry(*args: Incomplete, **kwargs: Incomplete) ... method dereferenceDefaultGeometry (line 475) | def dereferenceDefaultGeometry(*args: Incomplete, **kwargs: Incomplete... method className (line 477) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MGeometryPrimitive (line 479) | class MGeometryPrimitive: method __swig_destroy__ (line 495) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method uniqueID (line 497) | def uniqueID(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method drawPrimitiveType (line 499) | def drawPrimitiveType(cls, *args: Incomplete, **kwargs: Incomplete) ->... method elementCount (line 501) | def elementCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method dataType (line 503) | def dataType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method data (line 505) | def data(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MGeometryRequirementsLegacy (line 507) | class MGeometryRequirementsLegacy: method __swig_destroy__ (line 511) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addPosition (line 513) | def addPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method addComponentId (line 515) | def addComponentId(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method addNormal (line 517) | def addNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method addTexCoord (line 519) | def addTexCoord(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method addTangent (line 521) | def addTangent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addBinormal (line 523) | def addBinormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method addColor (line 525) | def addColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addFaceOffsets (line 527) | def addFaceOffsets(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MUniformParameter (line 529) | class MUniformParameter: method __swig_destroy__ (line 604) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 606) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method name (line 608) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method type (line 610) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method semantic (line 612) | def semantic(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numRows (line 614) | def numRows(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method numColumns (line 616) | def numColumns(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method numElements (line 618) | def numElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method userData (line 620) | def userData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setRangeMin (line 622) | def setRangeMin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setRangeMax (line 624) | def setRangeMax(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSoftRangeMin (line 626) | def setSoftRangeMin(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSoftRangeMax (line 628) | def setSoftRangeMax(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setUIHidden (line 630) | def setUIHidden(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method UIHidden (line 632) | def UIHidden(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setEnumFieldNames (line 634) | def setEnumFieldNames(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setKeyable (line 636) | def setKeyable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method keyable (line 638) | def keyable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isATexture (line 640) | def isATexture(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method hasChanged (line 642) | def hasChanged(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getAsFloatArray (line 644) | def getAsFloatArray(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setAsFloatArray (line 646) | def setAsFloatArray(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getAsFloat (line 648) | def getAsFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setAsFloat (line 650) | def setAsFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getAsString (line 652) | def getAsString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setAsString (line 654) | def setAsString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getAsBool (line 656) | def getAsBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setAsBool (line 658) | def setAsBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getAsInt (line 660) | def getAsInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setAsInt (line 662) | def setAsInt(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setUINiceName (line 664) | def setUINiceName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getPlug (line 666) | def getPlug(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getSource (line 668) | def getSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setDirty (line 670) | def setDirty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MUniformParameterList (line 672) | class MUniformParameterList: method __swig_destroy__ (line 676) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method append (line 678) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method length (line 680) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setLength (line 682) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getElement (line 684) | def getElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setElement (line 686) | def setElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method assign (line 688) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MVaryingParameter (line 690) | class MVaryingParameter: method __swig_destroy__ (line 712) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 714) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method name (line 716) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method type (line 718) | def type(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method semantic (line 720) | def semantic(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method semanticName (line 722) | def semanticName(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method destinationSet (line 724) | def destinationSet(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method dimension (line 726) | def dimension(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getBuffer (line 728) | def getBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getSourceType (line 730) | def getSourceType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getSourceSetName (line 732) | def getSourceSetName(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setSource (line 734) | def setSource(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getElementSize (line 736) | def getElementSize(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getMaximumStride (line 738) | def getMaximumStride(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method addElement (line 740) | def addElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method numElements (line 742) | def numElements(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getElement (line 744) | def getElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method removeElements (line 746) | def removeElements(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getUpdateId (line 748) | def getUpdateId(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MVaryingParameterList (line 750) | class MVaryingParameterList: method __swig_destroy__ (line 754) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method append (line 756) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method length (line 758) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setLength (line 760) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getElement (line 762) | def getElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setElement (line 764) | def setElement(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method assign (line 766) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MGLFunctionTable (line 2534) | class MGLFunctionTable: method glClear (line 2545) | def glClear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glClearAccum (line 2547) | def glClearAccum(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glClearColor (line 2549) | def glClearColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glClearDepth (line 2551) | def glClearDepth(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glClearIndex (line 2553) | def glClearIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glClearStencil (line 2555) | def glClearStencil(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glSampleCoverage (line 2557) | def glSampleCoverage(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method extensionExists (line 2559) | def extensionExists(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method numTexUnits (line 2561) | def numTexUnits(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numTexInterpolants (line 2563) | def numTexInterpolants(cls, *args: Incomplete, **kwargs: Incomplete) -... method numTexImageUnits (line 2565) | def numTexImageUnits(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method maxTextureSize (line 2567) | def maxTextureSize(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method maxVertexAttributes (line 2569) | def maxVertexAttributes(cls, *args: Incomplete, **kwargs: Incomplete) ... method glAccum (line 2571) | def glAccum(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glAlphaFunc (line 2573) | def glAlphaFunc(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glAreTexturesResident (line 2575) | def glAreTexturesResident(cls, *args: Incomplete, **kwargs: Incomplete... method glArrayElement (line 2577) | def glArrayElement(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glBegin (line 2579) | def glBegin(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glBindTexture (line 2581) | def glBindTexture(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glBitmap (line 2583) | def glBitmap(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glBlendFunc (line 2585) | def glBlendFunc(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glCallList (line 2587) | def glCallList(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glCallLists (line 2589) | def glCallLists(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glClipPlane (line 2591) | def glClipPlane(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColor3b (line 2593) | def glColor3b(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor3bv (line 2595) | def glColor3bv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3d (line 2597) | def glColor3d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor3dv (line 2599) | def glColor3dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3f (line 2601) | def glColor3f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor3fv (line 2603) | def glColor3fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3i (line 2605) | def glColor3i(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor3iv (line 2607) | def glColor3iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3s (line 2609) | def glColor3s(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor3sv (line 2611) | def glColor3sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3ub (line 2613) | def glColor3ub(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3ubv (line 2615) | def glColor3ubv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColor3ui (line 2617) | def glColor3ui(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3uiv (line 2619) | def glColor3uiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColor3us (line 2621) | def glColor3us(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor3usv (line 2623) | def glColor3usv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColor4b (line 2625) | def glColor4b(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor4bv (line 2627) | def glColor4bv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4d (line 2629) | def glColor4d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor4dv (line 2631) | def glColor4dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4f (line 2633) | def glColor4f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor4fv (line 2635) | def glColor4fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4i (line 2637) | def glColor4i(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor4iv (line 2639) | def glColor4iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4s (line 2641) | def glColor4s(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glColor4sv (line 2643) | def glColor4sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4ub (line 2645) | def glColor4ub(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4ubv (line 2647) | def glColor4ubv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColor4ui (line 2649) | def glColor4ui(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4uiv (line 2651) | def glColor4uiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColor4us (line 2653) | def glColor4us(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glColor4usv (line 2655) | def glColor4usv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColorMask (line 2657) | def glColorMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glColorMaterial (line 2659) | def glColorMaterial(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glColorPointer (line 2661) | def glColorPointer(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glCopyPixels (line 2663) | def glCopyPixels(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glCopyTexImage1D (line 2665) | def glCopyTexImage1D(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glCopyTexImage2D (line 2667) | def glCopyTexImage2D(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glCopyTexSubImage1D (line 2669) | def glCopyTexSubImage1D(cls, *args: Incomplete, **kwargs: Incomplete) ... method glCopyTexSubImage2D (line 2671) | def glCopyTexSubImage2D(cls, *args: Incomplete, **kwargs: Incomplete) ... method glCullFace (line 2673) | def glCullFace(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glDeleteLists (line 2675) | def glDeleteLists(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glDeleteTextures (line 2677) | def glDeleteTextures(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glDepthFunc (line 2679) | def glDepthFunc(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glDepthMask (line 2681) | def glDepthMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glDepthRange (line 2683) | def glDepthRange(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glDisable (line 2685) | def glDisable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glDisableClientState (line 2687) | def glDisableClientState(cls, *args: Incomplete, **kwargs: Incomplete)... method glDrawArrays (line 2689) | def glDrawArrays(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glDrawBuffer (line 2691) | def glDrawBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glDrawElements (line 2693) | def glDrawElements(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glDrawPixels (line 2695) | def glDrawPixels(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glEdgeFlag (line 2697) | def glEdgeFlag(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glEdgeFlagPointer (line 2699) | def glEdgeFlagPointer(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glEdgeFlagv (line 2701) | def glEdgeFlagv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glEnable (line 2703) | def glEnable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glEnableClientState (line 2705) | def glEnableClientState(cls, *args: Incomplete, **kwargs: Incomplete) ... method glEnd (line 2707) | def glEnd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method glEndList (line 2709) | def glEndList(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glEvalCoord1d (line 2711) | def glEvalCoord1d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glEvalCoord1dv (line 2713) | def glEvalCoord1dv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glEvalCoord1f (line 2715) | def glEvalCoord1f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glEvalCoord1fv (line 2717) | def glEvalCoord1fv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glEvalCoord2d (line 2719) | def glEvalCoord2d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glEvalCoord2dv (line 2721) | def glEvalCoord2dv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glEvalCoord2f (line 2723) | def glEvalCoord2f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glEvalCoord2fv (line 2725) | def glEvalCoord2fv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glEvalMesh1 (line 2727) | def glEvalMesh1(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glEvalMesh2 (line 2729) | def glEvalMesh2(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glEvalPoint1 (line 2731) | def glEvalPoint1(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glEvalPoint2 (line 2733) | def glEvalPoint2(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glFeedbackBuffer (line 2735) | def glFeedbackBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glFinish (line 2737) | def glFinish(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glFlush (line 2739) | def glFlush(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glFogf (line 2741) | def glFogf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method glFogfv (line 2743) | def glFogfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glFogi (line 2745) | def glFogi(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method glFogiv (line 2747) | def glFogiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glFrontFace (line 2749) | def glFrontFace(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glFrustum (line 2751) | def glFrustum(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glGenLists (line 2753) | def glGenLists(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glGenTextures (line 2755) | def glGenTextures(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetBooleanv (line 2757) | def glGetBooleanv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetClipPlane (line 2759) | def glGetClipPlane(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glGetDoublev (line 2761) | def glGetDoublev(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glGetError (line 2763) | def glGetError(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glGetFloatv (line 2765) | def glGetFloatv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glGetIntegerv (line 2767) | def glGetIntegerv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetLightfv (line 2769) | def glGetLightfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glGetLightiv (line 2771) | def glGetLightiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glGetMapdv (line 2773) | def glGetMapdv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glGetMapfv (line 2775) | def glGetMapfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glGetMapiv (line 2777) | def glGetMapiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glGetMaterialfv (line 2779) | def glGetMaterialfv(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glGetMaterialiv (line 2781) | def glGetMaterialiv(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glGetPixelMapfv (line 2783) | def glGetPixelMapfv(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glGetPixelMapuiv (line 2785) | def glGetPixelMapuiv(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glGetPixelMapusv (line 2787) | def glGetPixelMapusv(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glGetPointerv (line 2789) | def glGetPointerv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetPolygonStipple (line 2791) | def glGetPolygonStipple(cls, *args: Incomplete, **kwargs: Incomplete) ... method glGetString (line 2793) | def glGetString(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glGetTexEnvfv (line 2795) | def glGetTexEnvfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetTexEnviv (line 2797) | def glGetTexEnviv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetTexGendv (line 2799) | def glGetTexGendv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetTexGenfv (line 2801) | def glGetTexGenfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetTexGeniv (line 2803) | def glGetTexGeniv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetTexImage (line 2805) | def glGetTexImage(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetTexLevelParameterfv (line 2807) | def glGetTexLevelParameterfv(cls, *args: Incomplete, **kwargs: Incompl... method glGetTexLevelParameteriv (line 2809) | def glGetTexLevelParameteriv(cls, *args: Incomplete, **kwargs: Incompl... method glGetTexParameterfv (line 2811) | def glGetTexParameterfv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glGetTexParameteriv (line 2813) | def glGetTexParameteriv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glHint (line 2815) | def glHint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method glIndexMask (line 2817) | def glIndexMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glIndexPointer (line 2819) | def glIndexPointer(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glIndexd (line 2821) | def glIndexd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glIndexdv (line 2823) | def glIndexdv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glIndexf (line 2825) | def glIndexf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glIndexfv (line 2827) | def glIndexfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glIndexi (line 2829) | def glIndexi(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glIndexiv (line 2831) | def glIndexiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glIndexs (line 2833) | def glIndexs(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glIndexsv (line 2835) | def glIndexsv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glIndexub (line 2837) | def glIndexub(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glIndexubv (line 2839) | def glIndexubv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glInitNames (line 2841) | def glInitNames(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glInterleavedArrays (line 2843) | def glInterleavedArrays(cls, *args: Incomplete, **kwargs: Incomplete) ... method glIsEnabled (line 2845) | def glIsEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glIsList (line 2847) | def glIsList(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glIsTexture (line 2849) | def glIsTexture(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glLightModelf (line 2851) | def glLightModelf(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glLightModelfv (line 2853) | def glLightModelfv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glLightModeli (line 2855) | def glLightModeli(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glLightModeliv (line 2857) | def glLightModeliv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glLightf (line 2859) | def glLightf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glLightfv (line 2861) | def glLightfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glLighti (line 2863) | def glLighti(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glLightiv (line 2865) | def glLightiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glLineStipple (line 2867) | def glLineStipple(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glLineWidth (line 2869) | def glLineWidth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glListBase (line 2871) | def glListBase(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glLoadIdentity (line 2873) | def glLoadIdentity(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glLoadMatrixd (line 2875) | def glLoadMatrixd(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glLoadMatrixf (line 2877) | def glLoadMatrixf(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glLoadName (line 2879) | def glLoadName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glLogicOp (line 2881) | def glLogicOp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glMap1d (line 2883) | def glMap1d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glMap1f (line 2885) | def glMap1f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glMap2d (line 2887) | def glMap2d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glMap2f (line 2889) | def glMap2f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glMapGrid1d (line 2891) | def glMapGrid1d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glMapGrid1f (line 2893) | def glMapGrid1f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glMapGrid2d (line 2895) | def glMapGrid2d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glMapGrid2f (line 2897) | def glMapGrid2f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glMaterialf (line 2899) | def glMaterialf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glMaterialfv (line 2901) | def glMaterialfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glMateriali (line 2903) | def glMateriali(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glMaterialiv (line 2905) | def glMaterialiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glMatrixMode (line 2907) | def glMatrixMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glMultMatrixd (line 2909) | def glMultMatrixd(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glMultMatrixf (line 2911) | def glMultMatrixf(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glNewList (line 2913) | def glNewList(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glNormal3b (line 2915) | def glNormal3b(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glNormal3bv (line 2917) | def glNormal3bv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glNormal3d (line 2919) | def glNormal3d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glNormal3dv (line 2921) | def glNormal3dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glNormal3f (line 2923) | def glNormal3f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glNormal3fv (line 2925) | def glNormal3fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glNormal3i (line 2927) | def glNormal3i(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glNormal3iv (line 2929) | def glNormal3iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glNormal3s (line 2931) | def glNormal3s(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glNormal3sv (line 2933) | def glNormal3sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glNormalPointer (line 2935) | def glNormalPointer(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glOrtho (line 2937) | def glOrtho(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glPassThrough (line 2939) | def glPassThrough(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glPixelMapfv (line 2941) | def glPixelMapfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glPixelMapuiv (line 2943) | def glPixelMapuiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glPixelMapusv (line 2945) | def glPixelMapusv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glPixelStoref (line 2947) | def glPixelStoref(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glPixelStorei (line 2949) | def glPixelStorei(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glPixelTransferf (line 2951) | def glPixelTransferf(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glPixelTransferi (line 2953) | def glPixelTransferi(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glPixelZoom (line 2955) | def glPixelZoom(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glPointSize (line 2957) | def glPointSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glPolygonMode (line 2959) | def glPolygonMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glPolygonOffset (line 2961) | def glPolygonOffset(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glPolygonStipple (line 2963) | def glPolygonStipple(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glPopAttrib (line 2965) | def glPopAttrib(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glPopClientAttrib (line 2967) | def glPopClientAttrib(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glPopMatrix (line 2969) | def glPopMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glPopName (line 2971) | def glPopName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glPrioritizeTextures (line 2973) | def glPrioritizeTextures(cls, *args: Incomplete, **kwargs: Incomplete)... method glPushAttrib (line 2975) | def glPushAttrib(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glPushClientAttrib (line 2977) | def glPushClientAttrib(cls, *args: Incomplete, **kwargs: Incomplete) -... method glPushMatrix (line 2979) | def glPushMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glPushName (line 2981) | def glPushName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glRasterPos2d (line 2983) | def glRasterPos2d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos2dv (line 2985) | def glRasterPos2dv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos2f (line 2987) | def glRasterPos2f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos2fv (line 2989) | def glRasterPos2fv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos2i (line 2991) | def glRasterPos2i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos2iv (line 2993) | def glRasterPos2iv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos2s (line 2995) | def glRasterPos2s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos2sv (line 2997) | def glRasterPos2sv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos3d (line 2999) | def glRasterPos3d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos3dv (line 3001) | def glRasterPos3dv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos3f (line 3003) | def glRasterPos3f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos3fv (line 3005) | def glRasterPos3fv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos3i (line 3007) | def glRasterPos3i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos3iv (line 3009) | def glRasterPos3iv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos3s (line 3011) | def glRasterPos3s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos3sv (line 3013) | def glRasterPos3sv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos4d (line 3015) | def glRasterPos4d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos4dv (line 3017) | def glRasterPos4dv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos4f (line 3019) | def glRasterPos4f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos4fv (line 3021) | def glRasterPos4fv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos4i (line 3023) | def glRasterPos4i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos4iv (line 3025) | def glRasterPos4iv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glRasterPos4s (line 3027) | def glRasterPos4s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glRasterPos4sv (line 3029) | def glRasterPos4sv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glReadBuffer (line 3031) | def glReadBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glReadPixels (line 3033) | def glReadPixels(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glRectd (line 3035) | def glRectd(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glRectdv (line 3037) | def glRectdv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glRectf (line 3039) | def glRectf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glRectfv (line 3041) | def glRectfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glRecti (line 3043) | def glRecti(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glRectiv (line 3045) | def glRectiv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glRects (line 3047) | def glRects(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method glRectsv (line 3049) | def glRectsv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glRenderMode (line 3051) | def glRenderMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glRotated (line 3053) | def glRotated(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glRotatef (line 3055) | def glRotatef(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glScaled (line 3057) | def glScaled(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glScalef (line 3059) | def glScalef(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method glScissor (line 3061) | def glScissor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glSelectBuffer (line 3063) | def glSelectBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glShadeModel (line 3065) | def glShadeModel(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glStencilFunc (line 3067) | def glStencilFunc(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glStencilMask (line 3069) | def glStencilMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glStencilOp (line 3071) | def glStencilOp(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glTexCoord1d (line 3073) | def glTexCoord1d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord1dv (line 3075) | def glTexCoord1dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord1f (line 3077) | def glTexCoord1f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord1fv (line 3079) | def glTexCoord1fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord1i (line 3081) | def glTexCoord1i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord1iv (line 3083) | def glTexCoord1iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord1s (line 3085) | def glTexCoord1s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord1sv (line 3087) | def glTexCoord1sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord2d (line 3089) | def glTexCoord2d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord2dv (line 3091) | def glTexCoord2dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord2f (line 3093) | def glTexCoord2f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord2fv (line 3095) | def glTexCoord2fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord2i (line 3097) | def glTexCoord2i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord2iv (line 3099) | def glTexCoord2iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord2s (line 3101) | def glTexCoord2s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord2sv (line 3103) | def glTexCoord2sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord3d (line 3105) | def glTexCoord3d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord3dv (line 3107) | def glTexCoord3dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord3f (line 3109) | def glTexCoord3f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord3fv (line 3111) | def glTexCoord3fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord3i (line 3113) | def glTexCoord3i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord3iv (line 3115) | def glTexCoord3iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord3s (line 3117) | def glTexCoord3s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord3sv (line 3119) | def glTexCoord3sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord4d (line 3121) | def glTexCoord4d(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord4dv (line 3123) | def glTexCoord4dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord4f (line 3125) | def glTexCoord4f(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord4fv (line 3127) | def glTexCoord4fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord4i (line 3129) | def glTexCoord4i(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord4iv (line 3131) | def glTexCoord4iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoord4s (line 3133) | def glTexCoord4s(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexCoord4sv (line 3135) | def glTexCoord4sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glTexCoordPointer (line 3137) | def glTexCoordPointer(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glTexEnvf (line 3139) | def glTexEnvf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glTexEnvfv (line 3141) | def glTexEnvfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glTexEnvi (line 3143) | def glTexEnvi(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glTexEnviv (line 3145) | def glTexEnviv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glTexGend (line 3147) | def glTexGend(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glTexGendv (line 3149) | def glTexGendv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glTexGenf (line 3151) | def glTexGenf(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glTexGenfv (line 3153) | def glTexGenfv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glTexGeni (line 3155) | def glTexGeni(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method glTexGeniv (line 3157) | def glTexGeniv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glTexImage1D (line 3159) | def glTexImage1D(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexImage2D (line 3161) | def glTexImage2D(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexParameterf (line 3163) | def glTexParameterf(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glTexParameterfv (line 3165) | def glTexParameterfv(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glTexParameteri (line 3167) | def glTexParameteri(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glTexParameteriv (line 3169) | def glTexParameteriv(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glTexSubImage1D (line 3171) | def glTexSubImage1D(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glTexSubImage2D (line 3173) | def glTexSubImage2D(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glTranslated (line 3175) | def glTranslated(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTranslatef (line 3177) | def glTranslatef(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glVertex2d (line 3179) | def glVertex2d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex2dv (line 3181) | def glVertex2dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex2f (line 3183) | def glVertex2f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex2fv (line 3185) | def glVertex2fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex2i (line 3187) | def glVertex2i(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex2iv (line 3189) | def glVertex2iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex2s (line 3191) | def glVertex2s(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex2sv (line 3193) | def glVertex2sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex3d (line 3195) | def glVertex3d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex3dv (line 3197) | def glVertex3dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex3f (line 3199) | def glVertex3f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex3fv (line 3201) | def glVertex3fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex3i (line 3203) | def glVertex3i(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex3iv (line 3205) | def glVertex3iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex3s (line 3207) | def glVertex3s(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex3sv (line 3209) | def glVertex3sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex4d (line 3211) | def glVertex4d(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex4dv (line 3213) | def glVertex4dv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex4f (line 3215) | def glVertex4f(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex4fv (line 3217) | def glVertex4fv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex4i (line 3219) | def glVertex4i(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex4iv (line 3221) | def glVertex4iv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertex4s (line 3223) | def glVertex4s(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glVertex4sv (line 3225) | def glVertex4sv(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glVertexPointer (line 3227) | def glVertexPointer(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glViewport (line 3229) | def glViewport(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method glDrawRangeElements (line 3231) | def glDrawRangeElements(cls, *args: Incomplete, **kwargs: Incomplete) ... method glTexImage3D (line 3233) | def glTexImage3D(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTexSubImage3D (line 3235) | def glTexSubImage3D(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glCopyTexSubImage3D (line 3237) | def glCopyTexSubImage3D(cls, *args: Incomplete, **kwargs: Incomplete) ... method glMultiTexCoord1d (line 3239) | def glMultiTexCoord1d(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord1dv (line 3241) | def glMultiTexCoord1dv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord1f (line 3243) | def glMultiTexCoord1f(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord1fv (line 3245) | def glMultiTexCoord1fv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord1i (line 3247) | def glMultiTexCoord1i(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord1iv (line 3249) | def glMultiTexCoord1iv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord1s (line 3251) | def glMultiTexCoord1s(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord1sv (line 3253) | def glMultiTexCoord1sv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord2d (line 3255) | def glMultiTexCoord2d(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord2dv (line 3257) | def glMultiTexCoord2dv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord2f (line 3259) | def glMultiTexCoord2f(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord2fv (line 3261) | def glMultiTexCoord2fv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord2i (line 3263) | def glMultiTexCoord2i(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord2iv (line 3265) | def glMultiTexCoord2iv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord2s (line 3267) | def glMultiTexCoord2s(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord2sv (line 3269) | def glMultiTexCoord2sv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord3d (line 3271) | def glMultiTexCoord3d(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord3dv (line 3273) | def glMultiTexCoord3dv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord3f (line 3275) | def glMultiTexCoord3f(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord3fv (line 3277) | def glMultiTexCoord3fv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord3i (line 3279) | def glMultiTexCoord3i(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord3iv (line 3281) | def glMultiTexCoord3iv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord3s (line 3283) | def glMultiTexCoord3s(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord3sv (line 3285) | def glMultiTexCoord3sv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord4d (line 3287) | def glMultiTexCoord4d(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord4dv (line 3289) | def glMultiTexCoord4dv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord4f (line 3291) | def glMultiTexCoord4f(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord4fv (line 3293) | def glMultiTexCoord4fv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord4i (line 3295) | def glMultiTexCoord4i(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord4iv (line 3297) | def glMultiTexCoord4iv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glMultiTexCoord4s (line 3299) | def glMultiTexCoord4s(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiTexCoord4sv (line 3301) | def glMultiTexCoord4sv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glActiveTexture (line 3303) | def glActiveTexture(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glClientActiveTexture (line 3305) | def glClientActiveTexture(cls, *args: Incomplete, **kwargs: Incomplete... method glCompressedTexImage1D (line 3307) | def glCompressedTexImage1D(cls, *args: Incomplete, **kwargs: Incomplet... method glCompressedTexImage2D (line 3309) | def glCompressedTexImage2D(cls, *args: Incomplete, **kwargs: Incomplet... method glCompressedTexImage3D (line 3311) | def glCompressedTexImage3D(cls, *args: Incomplete, **kwargs: Incomplet... method glCompressedTexSubImage1D (line 3313) | def glCompressedTexSubImage1D(cls, *args: Incomplete, **kwargs: Incomp... method glCompressedTexSubImage2D (line 3315) | def glCompressedTexSubImage2D(cls, *args: Incomplete, **kwargs: Incomp... method glCompressedTexSubImage3D (line 3317) | def glCompressedTexSubImage3D(cls, *args: Incomplete, **kwargs: Incomp... method glGetCompressedTexImage (line 3319) | def glGetCompressedTexImage(cls, *args: Incomplete, **kwargs: Incomple... method glLoadTransposeMatrixf (line 3321) | def glLoadTransposeMatrixf(cls, *args: Incomplete, **kwargs: Incomplet... method glLoadTransposeMatrixd (line 3323) | def glLoadTransposeMatrixd(cls, *args: Incomplete, **kwargs: Incomplet... method glMultTransposeMatrixf (line 3325) | def glMultTransposeMatrixf(cls, *args: Incomplete, **kwargs: Incomplet... method glMultTransposeMatrixd (line 3327) | def glMultTransposeMatrixd(cls, *args: Incomplete, **kwargs: Incomplet... method glMultiDrawArrays (line 3329) | def glMultiDrawArrays(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glMultiDrawElements (line 3331) | def glMultiDrawElements(cls, *args: Incomplete, **kwargs: Incomplete) ... method glBlendEquationEXT (line 3333) | def glBlendEquationEXT(cls, *args: Incomplete, **kwargs: Incomplete) -... method glPointParameterf (line 3335) | def glPointParameterf(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glPointParameterfv (line 3337) | def glPointParameterfv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glLoadTransposeMatrixfARB (line 3339) | def glLoadTransposeMatrixfARB(cls, *args: Incomplete, **kwargs: Incomp... method glLoadTransposeMatrixdARB (line 3341) | def glLoadTransposeMatrixdARB(cls, *args: Incomplete, **kwargs: Incomp... method glMultTransposeMatrixfARB (line 3343) | def glMultTransposeMatrixfARB(cls, *args: Incomplete, **kwargs: Incomp... method glMultTransposeMatrixdARB (line 3345) | def glMultTransposeMatrixdARB(cls, *args: Incomplete, **kwargs: Incomp... method glVertexAttrib1s (line 3347) | def glVertexAttrib1s(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib1f (line 3349) | def glVertexAttrib1f(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib1d (line 3351) | def glVertexAttrib1d(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib2s (line 3353) | def glVertexAttrib2s(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib2f (line 3355) | def glVertexAttrib2f(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib2d (line 3357) | def glVertexAttrib2d(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib3s (line 3359) | def glVertexAttrib3s(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib3f (line 3361) | def glVertexAttrib3f(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib3d (line 3363) | def glVertexAttrib3d(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib4s (line 3365) | def glVertexAttrib4s(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib4f (line 3367) | def glVertexAttrib4f(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib4d (line 3369) | def glVertexAttrib4d(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glVertexAttrib4Nub (line 3371) | def glVertexAttrib4Nub(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib1sv (line 3373) | def glVertexAttrib1sv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib1fv (line 3375) | def glVertexAttrib1fv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib1dv (line 3377) | def glVertexAttrib1dv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib2sv (line 3379) | def glVertexAttrib2sv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib2fv (line 3381) | def glVertexAttrib2fv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib2dv (line 3383) | def glVertexAttrib2dv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib3sv (line 3385) | def glVertexAttrib3sv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib3fv (line 3387) | def glVertexAttrib3fv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib3dv (line 3389) | def glVertexAttrib3dv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib4bv (line 3391) | def glVertexAttrib4bv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib4sv (line 3393) | def glVertexAttrib4sv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib4iv (line 3395) | def glVertexAttrib4iv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib4ubv (line 3397) | def glVertexAttrib4ubv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4usv (line 3399) | def glVertexAttrib4usv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4uiv (line 3401) | def glVertexAttrib4uiv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4fv (line 3403) | def glVertexAttrib4fv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib4dv (line 3405) | def glVertexAttrib4dv(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glVertexAttrib4Nbv (line 3407) | def glVertexAttrib4Nbv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4Nsv (line 3409) | def glVertexAttrib4Nsv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4Niv (line 3411) | def glVertexAttrib4Niv(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4Nubv (line 3413) | def glVertexAttrib4Nubv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib4Nusv (line 3415) | def glVertexAttrib4Nusv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib4Nuiv (line 3417) | def glVertexAttrib4Nuiv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttribPointer (line 3419) | def glVertexAttribPointer(cls, *args: Incomplete, **kwargs: Incomplete... method glEnableVertexAttribArray (line 3421) | def glEnableVertexAttribArray(cls, *args: Incomplete, **kwargs: Incomp... method glDisableVertexAttribArray (line 3423) | def glDisableVertexAttribArray(cls, *args: Incomplete, **kwargs: Incom... method glProgramString (line 3425) | def glProgramString(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glBindProgram (line 3427) | def glBindProgram(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glDeletePrograms (line 3429) | def glDeletePrograms(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glGenPrograms (line 3431) | def glGenPrograms(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glProgramEnvParameter4d (line 3433) | def glProgramEnvParameter4d(cls, *args: Incomplete, **kwargs: Incomple... method glProgramEnvParameter4dv (line 3435) | def glProgramEnvParameter4dv(cls, *args: Incomplete, **kwargs: Incompl... method glProgramEnvParameter4f (line 3437) | def glProgramEnvParameter4f(cls, *args: Incomplete, **kwargs: Incomple... method glProgramEnvParameter4fv (line 3439) | def glProgramEnvParameter4fv(cls, *args: Incomplete, **kwargs: Incompl... method glProgramLocalParameter4d (line 3441) | def glProgramLocalParameter4d(cls, *args: Incomplete, **kwargs: Incomp... method glProgramLocalParameter4dv (line 3443) | def glProgramLocalParameter4dv(cls, *args: Incomplete, **kwargs: Incom... method glProgramLocalParameter4f (line 3445) | def glProgramLocalParameter4f(cls, *args: Incomplete, **kwargs: Incomp... method glProgramLocalParameter4fv (line 3447) | def glProgramLocalParameter4fv(cls, *args: Incomplete, **kwargs: Incom... method glGetProgramEnvParameterdv (line 3449) | def glGetProgramEnvParameterdv(cls, *args: Incomplete, **kwargs: Incom... method glGetProgramEnvParameterfv (line 3451) | def glGetProgramEnvParameterfv(cls, *args: Incomplete, **kwargs: Incom... method glGetProgramLocalParameterdv (line 3453) | def glGetProgramLocalParameterdv(cls, *args: Incomplete, **kwargs: Inc... method glGetProgramLocalParameterfv (line 3455) | def glGetProgramLocalParameterfv(cls, *args: Incomplete, **kwargs: Inc... method glGetProgramiv (line 3457) | def glGetProgramiv(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glGetProgramString (line 3459) | def glGetProgramString(cls, *args: Incomplete, **kwargs: Incomplete) -... method glGetVertexAttribdv (line 3461) | def glGetVertexAttribdv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glGetVertexAttribfv (line 3463) | def glGetVertexAttribfv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glGetVertexAttribiv (line 3465) | def glGetVertexAttribiv(cls, *args: Incomplete, **kwargs: Incomplete) ... method glGetVertexAttribPointerv (line 3467) | def glGetVertexAttribPointerv(cls, *args: Incomplete, **kwargs: Incomp... method glIsProgram (line 3469) | def glIsProgram(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glGenFragmentShadersATI (line 3471) | def glGenFragmentShadersATI(cls, *args: Incomplete, **kwargs: Incomple... method glBindFragmentShaderATI (line 3473) | def glBindFragmentShaderATI(cls, *args: Incomplete, **kwargs: Incomple... method glDeleteFragmentShaderATI (line 3475) | def glDeleteFragmentShaderATI(cls, *args: Incomplete, **kwargs: Incomp... method glBeginFragmentShaderATI (line 3477) | def glBeginFragmentShaderATI(cls, *args: Incomplete, **kwargs: Incompl... method glEndFragmentShaderATI (line 3479) | def glEndFragmentShaderATI(cls, *args: Incomplete, **kwargs: Incomplet... method glPassTexCoordATI (line 3481) | def glPassTexCoordATI(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glSampleMapATI (line 3483) | def glSampleMapATI(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glColorFragmentOp1ATI (line 3485) | def glColorFragmentOp1ATI(cls, *args: Incomplete, **kwargs: Incomplete... method glColorFragmentOp2ATI (line 3487) | def glColorFragmentOp2ATI(cls, *args: Incomplete, **kwargs: Incomplete... method glColorFragmentOp3ATI (line 3489) | def glColorFragmentOp3ATI(cls, *args: Incomplete, **kwargs: Incomplete... method glAlphaFragmentOp1ATI (line 3491) | def glAlphaFragmentOp1ATI(cls, *args: Incomplete, **kwargs: Incomplete... method glAlphaFragmentOp2ATI (line 3493) | def glAlphaFragmentOp2ATI(cls, *args: Incomplete, **kwargs: Incomplete... method glAlphaFragmentOp3ATI (line 3495) | def glAlphaFragmentOp3ATI(cls, *args: Incomplete, **kwargs: Incomplete... method glSetFragmentShaderConstantATI (line 3497) | def glSetFragmentShaderConstantATI(cls, *args: Incomplete, **kwargs: I... method glPNTrianglesiATI (line 3499) | def glPNTrianglesiATI(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glPNTrianglesfATI (line 3501) | def glPNTrianglesfATI(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glLockArraysEXT (line 3503) | def glLockArraysEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUnlockArraysEXT (line 3505) | def glUnlockArraysEXT(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glCullParameterdvEXT (line 3507) | def glCullParameterdvEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glCullParameterfvEXT (line 3509) | def glCullParameterfvEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glSecondaryColor3bEXT (line 3511) | def glSecondaryColor3bEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glSecondaryColor3bvEXT (line 3513) | def glSecondaryColor3bvEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3dEXT (line 3515) | def glSecondaryColor3dEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glSecondaryColor3dvEXT (line 3517) | def glSecondaryColor3dvEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3fEXT (line 3519) | def glSecondaryColor3fEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glSecondaryColor3fvEXT (line 3521) | def glSecondaryColor3fvEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3iEXT (line 3523) | def glSecondaryColor3iEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glSecondaryColor3ivEXT (line 3525) | def glSecondaryColor3ivEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3sEXT (line 3527) | def glSecondaryColor3sEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glSecondaryColor3svEXT (line 3529) | def glSecondaryColor3svEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3ubEXT (line 3531) | def glSecondaryColor3ubEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3ubvEXT (line 3533) | def glSecondaryColor3ubvEXT(cls, *args: Incomplete, **kwargs: Incomple... method glSecondaryColor3uiEXT (line 3535) | def glSecondaryColor3uiEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3uivEXT (line 3537) | def glSecondaryColor3uivEXT(cls, *args: Incomplete, **kwargs: Incomple... method glSecondaryColor3usEXT (line 3539) | def glSecondaryColor3usEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glSecondaryColor3usvEXT (line 3541) | def glSecondaryColor3usvEXT(cls, *args: Incomplete, **kwargs: Incomple... method glSecondaryColorPointerEXT (line 3543) | def glSecondaryColorPointerEXT(cls, *args: Incomplete, **kwargs: Incom... method glFogCoordfEXT (line 3545) | def glFogCoordfEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glFogCoordfvEXT (line 3547) | def glFogCoordfvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glFogCoorddEXT (line 3549) | def glFogCoorddEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glFogCoorddvEXT (line 3551) | def glFogCoorddvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glFogCoordPointerEXT (line 3553) | def glFogCoordPointerEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glBeginVertexShaderEXT (line 3555) | def glBeginVertexShaderEXT(cls, *args: Incomplete, **kwargs: Incomplet... method glEndVertexShaderEXT (line 3557) | def glEndVertexShaderEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glBindVertexShaderEXT (line 3559) | def glBindVertexShaderEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glGenVertexShadersEXT (line 3561) | def glGenVertexShadersEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glDeleteVertexShaderEXT (line 3563) | def glDeleteVertexShaderEXT(cls, *args: Incomplete, **kwargs: Incomple... method glShaderOp1EXT (line 3565) | def glShaderOp1EXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glShaderOp2EXT (line 3567) | def glShaderOp2EXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glShaderOp3EXT (line 3569) | def glShaderOp3EXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glSwizzleEXT (line 3571) | def glSwizzleEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glWriteMaskEXT (line 3573) | def glWriteMaskEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glInsertComponentEXT (line 3575) | def glInsertComponentEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glExtractComponentEXT (line 3577) | def glExtractComponentEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glGenSymbolsEXT (line 3579) | def glGenSymbolsEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glSetInvariantEXT (line 3581) | def glSetInvariantEXT(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glSetLocalConstantEXT (line 3583) | def glSetLocalConstantEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glVariantbvEXT (line 3585) | def glVariantbvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glVariantsvEXT (line 3587) | def glVariantsvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glVariantivEXT (line 3589) | def glVariantivEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glVariantfvEXT (line 3591) | def glVariantfvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glVariantdvEXT (line 3593) | def glVariantdvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glVariantubvEXT (line 3595) | def glVariantubvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glVariantusvEXT (line 3597) | def glVariantusvEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glVariantuivEXT (line 3599) | def glVariantuivEXT(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glVariantPointerEXT (line 3601) | def glVariantPointerEXT(cls, *args: Incomplete, **kwargs: Incomplete) ... method glEnableVariantClientStateEXT (line 3603) | def glEnableVariantClientStateEXT(cls, *args: Incomplete, **kwargs: In... method glDisableVariantClientStateEXT (line 3605) | def glDisableVariantClientStateEXT(cls, *args: Incomplete, **kwargs: I... method glBindLightParameterEXT (line 3607) | def glBindLightParameterEXT(cls, *args: Incomplete, **kwargs: Incomple... method glBindMaterialParameterEXT (line 3609) | def glBindMaterialParameterEXT(cls, *args: Incomplete, **kwargs: Incom... method glBindTexGenParameterEXT (line 3611) | def glBindTexGenParameterEXT(cls, *args: Incomplete, **kwargs: Incompl... method glBindTextureUnitParameterEXT (line 3613) | def glBindTextureUnitParameterEXT(cls, *args: Incomplete, **kwargs: In... method glBindParameterEXT (line 3615) | def glBindParameterEXT(cls, *args: Incomplete, **kwargs: Incomplete) -... method glIsVariantEnabledEXT (line 3617) | def glIsVariantEnabledEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glGetVariantBooleanvEXT (line 3619) | def glGetVariantBooleanvEXT(cls, *args: Incomplete, **kwargs: Incomple... method glGetVariantIntegervEXT (line 3621) | def glGetVariantIntegervEXT(cls, *args: Incomplete, **kwargs: Incomple... method glGetVariantFloatvEXT (line 3623) | def glGetVariantFloatvEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glGetVariantPointervEXT (line 3625) | def glGetVariantPointervEXT(cls, *args: Incomplete, **kwargs: Incomple... method glGetInvariantBooleanvEXT (line 3627) | def glGetInvariantBooleanvEXT(cls, *args: Incomplete, **kwargs: Incomp... method glGetInvariantIntegervEXT (line 3629) | def glGetInvariantIntegervEXT(cls, *args: Incomplete, **kwargs: Incomp... method glGetInvariantFloatvEXT (line 3631) | def glGetInvariantFloatvEXT(cls, *args: Incomplete, **kwargs: Incomple... method glGetLocalConstantBooleanvEXT (line 3633) | def glGetLocalConstantBooleanvEXT(cls, *args: Incomplete, **kwargs: In... method glGetLocalConstantIntegervEXT (line 3635) | def glGetLocalConstantIntegervEXT(cls, *args: Incomplete, **kwargs: In... method glGetLocalConstantFloatvEXT (line 3637) | def glGetLocalConstantFloatvEXT(cls, *args: Incomplete, **kwargs: Inco... method glVertexWeightfEXT (line 3639) | def glVertexWeightfEXT(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexWeightfvEXT (line 3641) | def glVertexWeightfvEXT(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexWeightPointerEXT (line 3643) | def glVertexWeightPointerEXT(cls, *args: Incomplete, **kwargs: Incompl... method glFlushVertexArrayRangeNV (line 3645) | def glFlushVertexArrayRangeNV(cls, *args: Incomplete, **kwargs: Incomp... method glVertexArrayRangeNV (line 3647) | def glVertexArrayRangeNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glBindProgramNV (line 3649) | def glBindProgramNV(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glDeleteProgramsNV (line 3651) | def glDeleteProgramsNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glExecuteProgramNV (line 3653) | def glExecuteProgramNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glGenProgramsNV (line 3655) | def glGenProgramsNV(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glAreProgramsResidentNV (line 3657) | def glAreProgramsResidentNV(cls, *args: Incomplete, **kwargs: Incomple... method glRequestResidentProgramsNV (line 3659) | def glRequestResidentProgramsNV(cls, *args: Incomplete, **kwargs: Inco... method glGetProgramParameterfvNV (line 3661) | def glGetProgramParameterfvNV(cls, *args: Incomplete, **kwargs: Incomp... method glGetProgramParameterdvNV (line 3663) | def glGetProgramParameterdvNV(cls, *args: Incomplete, **kwargs: Incomp... method glGetProgramivNV (line 3665) | def glGetProgramivNV(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glGetProgramStringNV (line 3667) | def glGetProgramStringNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glGetTrackMatrixivNV (line 3669) | def glGetTrackMatrixivNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glGetVertexAttribdvNV (line 3671) | def glGetVertexAttribdvNV(cls, *args: Incomplete, **kwargs: Incomplete... method glGetVertexAttribfvNV (line 3673) | def glGetVertexAttribfvNV(cls, *args: Incomplete, **kwargs: Incomplete... method glGetVertexAttribivNV (line 3675) | def glGetVertexAttribivNV(cls, *args: Incomplete, **kwargs: Incomplete... method glGetVertexAttribPointervNV (line 3677) | def glGetVertexAttribPointervNV(cls, *args: Incomplete, **kwargs: Inco... method glIsProgramNV (line 3679) | def glIsProgramNV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glLoadProgramNV (line 3681) | def glLoadProgramNV(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glProgramParameter4fNV (line 3683) | def glProgramParameter4fNV(cls, *args: Incomplete, **kwargs: Incomplet... method glProgramParameter4dNV (line 3685) | def glProgramParameter4dNV(cls, *args: Incomplete, **kwargs: Incomplet... method glProgramParameter4dvNV (line 3687) | def glProgramParameter4dvNV(cls, *args: Incomplete, **kwargs: Incomple... method glProgramParameter4fvNV (line 3689) | def glProgramParameter4fvNV(cls, *args: Incomplete, **kwargs: Incomple... method glProgramParameters4dvNV (line 3691) | def glProgramParameters4dvNV(cls, *args: Incomplete, **kwargs: Incompl... method glProgramParameters4fvNV (line 3693) | def glProgramParameters4fvNV(cls, *args: Incomplete, **kwargs: Incompl... method glTrackMatrixNV (line 3695) | def glTrackMatrixNV(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glVertexAttribPointerNV (line 3697) | def glVertexAttribPointerNV(cls, *args: Incomplete, **kwargs: Incomple... method glVertexAttrib1sNV (line 3699) | def glVertexAttrib1sNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib1fNV (line 3701) | def glVertexAttrib1fNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib1dNV (line 3703) | def glVertexAttrib1dNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib2sNV (line 3705) | def glVertexAttrib2sNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib2fNV (line 3707) | def glVertexAttrib2fNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib2dNV (line 3709) | def glVertexAttrib2dNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib3sNV (line 3711) | def glVertexAttrib3sNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib3fNV (line 3713) | def glVertexAttrib3fNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib3dNV (line 3715) | def glVertexAttrib3dNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4sNV (line 3717) | def glVertexAttrib4sNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4fNV (line 3719) | def glVertexAttrib4fNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4dNV (line 3721) | def glVertexAttrib4dNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glVertexAttrib4ubNV (line 3723) | def glVertexAttrib4ubNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib1svNV (line 3725) | def glVertexAttrib1svNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib1fvNV (line 3727) | def glVertexAttrib1fvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib1dvNV (line 3729) | def glVertexAttrib1dvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib2svNV (line 3731) | def glVertexAttrib2svNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib2fvNV (line 3733) | def glVertexAttrib2fvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib2dvNV (line 3735) | def glVertexAttrib2dvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib3svNV (line 3737) | def glVertexAttrib3svNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib3fvNV (line 3739) | def glVertexAttrib3fvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib3dvNV (line 3741) | def glVertexAttrib3dvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib4svNV (line 3743) | def glVertexAttrib4svNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib4fvNV (line 3745) | def glVertexAttrib4fvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib4dvNV (line 3747) | def glVertexAttrib4dvNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glVertexAttrib4ubvNV (line 3749) | def glVertexAttrib4ubvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs1svNV (line 3751) | def glVertexAttribs1svNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs1fvNV (line 3753) | def glVertexAttribs1fvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs1dvNV (line 3755) | def glVertexAttribs1dvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs2svNV (line 3757) | def glVertexAttribs2svNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs2fvNV (line 3759) | def glVertexAttribs2fvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs2dvNV (line 3761) | def glVertexAttribs2dvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs3svNV (line 3763) | def glVertexAttribs3svNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs3fvNV (line 3765) | def glVertexAttribs3fvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs3dvNV (line 3767) | def glVertexAttribs3dvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs4svNV (line 3769) | def glVertexAttribs4svNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs4fvNV (line 3771) | def glVertexAttribs4fvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs4dvNV (line 3773) | def glVertexAttribs4dvNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glVertexAttribs4ubvNV (line 3775) | def glVertexAttribs4ubvNV(cls, *args: Incomplete, **kwargs: Incomplete... method glGenFencesNV (line 3777) | def glGenFencesNV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glDeleteFencesNV (line 3779) | def glDeleteFencesNV(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glSetFenceNV (line 3781) | def glSetFenceNV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glTestFenceNV (line 3783) | def glTestFenceNV(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glFinishFenceNV (line 3785) | def glFinishFenceNV(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glIsFenceNV (line 3787) | def glIsFenceNV(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method glGetFenceivNV (line 3789) | def glGetFenceivNV(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glCombinerParameterfvNV (line 3791) | def glCombinerParameterfvNV(cls, *args: Incomplete, **kwargs: Incomple... method glCombinerParameterfNV (line 3793) | def glCombinerParameterfNV(cls, *args: Incomplete, **kwargs: Incomplet... method glCombinerParameterivNV (line 3795) | def glCombinerParameterivNV(cls, *args: Incomplete, **kwargs: Incomple... method glCombinerParameteriNV (line 3797) | def glCombinerParameteriNV(cls, *args: Incomplete, **kwargs: Incomplet... method glCombinerInputNV (line 3799) | def glCombinerInputNV(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glCombinerOutputNV (line 3801) | def glCombinerOutputNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glFinalCombinerInputNV (line 3803) | def glFinalCombinerInputNV(cls, *args: Incomplete, **kwargs: Incomplet... method glGetCombinerInputParameterfvNV (line 3805) | def glGetCombinerInputParameterfvNV(cls, *args: Incomplete, **kwargs: ... method glGetCombinerInputParameterivNV (line 3807) | def glGetCombinerInputParameterivNV(cls, *args: Incomplete, **kwargs: ... method glGetCombinerOutputParameterfvNV (line 3809) | def glGetCombinerOutputParameterfvNV(cls, *args: Incomplete, **kwargs:... method glGetCombinerOutputParameterivNV (line 3811) | def glGetCombinerOutputParameterivNV(cls, *args: Incomplete, **kwargs:... method glGetFinalCombinerInputParameterfvNV (line 3813) | def glGetFinalCombinerInputParameterfvNV(cls, *args: Incomplete, **kwa... method glGetFinalCombinerInputParameterivNV (line 3815) | def glGetFinalCombinerInputParameterivNV(cls, *args: Incomplete, **kwa... method glGenOcclusionQueriesNV (line 3817) | def glGenOcclusionQueriesNV(cls, *args: Incomplete, **kwargs: Incomple... method glDeleteOcclusionQueriesNV (line 3819) | def glDeleteOcclusionQueriesNV(cls, *args: Incomplete, **kwargs: Incom... method glIsOcclusionQueryNV (line 3821) | def glIsOcclusionQueryNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glBeginOcclusionQueryNV (line 3823) | def glBeginOcclusionQueryNV(cls, *args: Incomplete, **kwargs: Incomple... method glEndOcclusionQueryNV (line 3825) | def glEndOcclusionQueryNV(cls, *args: Incomplete, **kwargs: Incomplete... method glGetOcclusionQueryivNV (line 3827) | def glGetOcclusionQueryivNV(cls, *args: Incomplete, **kwargs: Incomple... method glGetOcclusionQueryuivNV (line 3829) | def glGetOcclusionQueryuivNV(cls, *args: Incomplete, **kwargs: Incompl... method glPrimitiveRestartNV (line 3831) | def glPrimitiveRestartNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glPrimitiveRestartIndexNV (line 3833) | def glPrimitiveRestartIndexNV(cls, *args: Incomplete, **kwargs: Incomp... method glGenQueriesARB (line 3835) | def glGenQueriesARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glDeleteQueriesARB (line 3837) | def glDeleteQueriesARB(cls, *args: Incomplete, **kwargs: Incomplete) -... method glIsQueryARB (line 3839) | def glIsQueryARB(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method glBeginQueryARB (line 3841) | def glBeginQueryARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glEndQueryARB (line 3843) | def glEndQueryARB(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glGetQueryivARB (line 3845) | def glGetQueryivARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glGetQueryObjectivARB (line 3847) | def glGetQueryObjectivARB(cls, *args: Incomplete, **kwargs: Incomplete... method glGetQueryObjectuivARB (line 3849) | def glGetQueryObjectuivARB(cls, *args: Incomplete, **kwargs: Incomplet... method glBindBufferARB (line 3851) | def glBindBufferARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glDeleteBuffersARB (line 3853) | def glDeleteBuffersARB(cls, *args: Incomplete, **kwargs: Incomplete) -... method glGenBuffersARB (line 3855) | def glGenBuffersARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glIsBufferARB (line 3857) | def glIsBufferARB(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method glBufferDataARB (line 3859) | def glBufferDataARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glBufferSubDataARB (line 3861) | def glBufferSubDataARB(cls, *args: Incomplete, **kwargs: Incomplete) -... method glGetBufferSubDataARB (line 3863) | def glGetBufferSubDataARB(cls, *args: Incomplete, **kwargs: Incomplete... method glMapBufferARB (line 3865) | def glMapBufferARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUnmapBufferARB (line 3867) | def glUnmapBufferARB(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glGetBufferParameterivARB (line 3869) | def glGetBufferParameterivARB(cls, *args: Incomplete, **kwargs: Incomp... method glGetBufferPointervARB (line 3871) | def glGetBufferPointervARB(cls, *args: Incomplete, **kwargs: Incomplet... method glDeleteObjectARB (line 3873) | def glDeleteObjectARB(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glGetHandleARB (line 3875) | def glGetHandleARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glDetachObjectARB (line 3877) | def glDetachObjectARB(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glCreateShaderObjectARB (line 3879) | def glCreateShaderObjectARB(cls, *args: Incomplete, **kwargs: Incomple... method glShaderSourceARB (line 3881) | def glShaderSourceARB(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glCompileShaderARB (line 3883) | def glCompileShaderARB(cls, *args: Incomplete, **kwargs: Incomplete) -... method glCreateProgramObjectARB (line 3885) | def glCreateProgramObjectARB(cls, *args: Incomplete, **kwargs: Incompl... method glAttachObjectARB (line 3887) | def glAttachObjectARB(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glLinkProgramARB (line 3889) | def glLinkProgramARB(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method glUseProgramObjectARB (line 3891) | def glUseProgramObjectARB(cls, *args: Incomplete, **kwargs: Incomplete... method glValidateProgramARB (line 3893) | def glValidateProgramARB(cls, *args: Incomplete, **kwargs: Incomplete)... method glUniform1fARB (line 3895) | def glUniform1fARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform2fARB (line 3897) | def glUniform2fARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform3fARB (line 3899) | def glUniform3fARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform4fARB (line 3901) | def glUniform4fARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform1iARB (line 3903) | def glUniform1iARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform2iARB (line 3905) | def glUniform2iARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform3iARB (line 3907) | def glUniform3iARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform4iARB (line 3909) | def glUniform4iARB(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method glUniform1fvARB (line 3911) | def glUniform1fvARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform2fvARB (line 3913) | def glUniform2fvARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform3fvARB (line 3915) | def glUniform3fvARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform4fvARB (line 3917) | def glUniform4fvARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform1ivARB (line 3919) | def glUniform1ivARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform2ivARB (line 3921) | def glUniform2ivARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform3ivARB (line 3923) | def glUniform3ivARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniform4ivARB (line 3925) | def glUniform4ivARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glUniformMatrix2fvARB (line 3927) | def glUniformMatrix2fvARB(cls, *args: Incomplete, **kwargs: Incomplete... method glUniformMatrix3fvARB (line 3929) | def glUniformMatrix3fvARB(cls, *args: Incomplete, **kwargs: Incomplete... method glUniformMatrix4fvARB (line 3931) | def glUniformMatrix4fvARB(cls, *args: Incomplete, **kwargs: Incomplete... method glGetObjectParameterfvARB (line 3933) | def glGetObjectParameterfvARB(cls, *args: Incomplete, **kwargs: Incomp... method glGetObjectParameterivARB (line 3935) | def glGetObjectParameterivARB(cls, *args: Incomplete, **kwargs: Incomp... method glGetInfoLogARB (line 3937) | def glGetInfoLogARB(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method glGetAttachedObjectsARB (line 3939) | def glGetAttachedObjectsARB(cls, *args: Incomplete, **kwargs: Incomple... method glGetUniformLocationARB (line 3941) | def glGetUniformLocationARB(cls, *args: Incomplete, **kwargs: Incomple... method glGetActiveUniformARB (line 3943) | def glGetActiveUniformARB(cls, *args: Incomplete, **kwargs: Incomplete... method glGetUniformfvARB (line 3945) | def glGetUniformfvARB(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glGetUniformivARB (line 3947) | def glGetUniformivARB(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glGetShaderSourceARB (line 3949) | def glGetShaderSourceARB(cls, *args: Incomplete, **kwargs: Incomplete)... method glBindAttribLocationARB (line 3951) | def glBindAttribLocationARB(cls, *args: Incomplete, **kwargs: Incomple... method glGetActiveAttribARB (line 3953) | def glGetActiveAttribARB(cls, *args: Incomplete, **kwargs: Incomplete)... method glGetAttribLocationARB (line 3955) | def glGetAttribLocationARB(cls, *args: Incomplete, **kwargs: Incomplet... method glIsRenderbufferEXT (line 3957) | def glIsRenderbufferEXT(cls, *args: Incomplete, **kwargs: Incomplete) ... method glBindRenderbufferEXT (line 3959) | def glBindRenderbufferEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glDeleteRenderbuffersEXT (line 3961) | def glDeleteRenderbuffersEXT(cls, *args: Incomplete, **kwargs: Incompl... method glGenRenderbuffersEXT (line 3963) | def glGenRenderbuffersEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glRenderbufferStorageEXT (line 3965) | def glRenderbufferStorageEXT(cls, *args: Incomplete, **kwargs: Incompl... method glGetRenderbufferParameterivEXT (line 3967) | def glGetRenderbufferParameterivEXT(cls, *args: Incomplete, **kwargs: ... method glIsFramebufferEXT (line 3969) | def glIsFramebufferEXT(cls, *args: Incomplete, **kwargs: Incomplete) -... method glBindFramebufferEXT (line 3971) | def glBindFramebufferEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glDeleteFramebuffersEXT (line 3973) | def glDeleteFramebuffersEXT(cls, *args: Incomplete, **kwargs: Incomple... method glGenFramebuffersEXT (line 3975) | def glGenFramebuffersEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glCheckFramebufferStatusEXT (line 3977) | def glCheckFramebufferStatusEXT(cls, *args: Incomplete, **kwargs: Inco... method glFramebufferTexture1DEXT (line 3979) | def glFramebufferTexture1DEXT(cls, *args: Incomplete, **kwargs: Incomp... method glFramebufferTexture2DEXT (line 3981) | def glFramebufferTexture2DEXT(cls, *args: Incomplete, **kwargs: Incomp... method glFramebufferTexture3DEXT (line 3983) | def glFramebufferTexture3DEXT(cls, *args: Incomplete, **kwargs: Incomp... method glFramebufferRenderbufferEXT (line 3985) | def glFramebufferRenderbufferEXT(cls, *args: Incomplete, **kwargs: Inc... method glGetFramebufferAttachmentParameterivEXT (line 3987) | def glGetFramebufferAttachmentParameterivEXT(cls, *args: Incomplete, *... method glGenerateMipmapEXT (line 3989) | def glGenerateMipmapEXT(cls, *args: Incomplete, **kwargs: Incomplete) ... method glBlitFramebufferEXT (line 3991) | def glBlitFramebufferEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glActiveVaryingNV (line 3993) | def glActiveVaryingNV(cls, *args: Incomplete, **kwargs: Incomplete) ->... method glBeginTransformFeedbackNV (line 3995) | def glBeginTransformFeedbackNV(cls, *args: Incomplete, **kwargs: Incom... method glBindBufferBaseNV (line 3997) | def glBindBufferBaseNV(cls, *args: Incomplete, **kwargs: Incomplete) -... method glBindBufferOffsetNV (line 3999) | def glBindBufferOffsetNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glBindBufferRangeNV (line 4001) | def glBindBufferRangeNV(cls, *args: Incomplete, **kwargs: Incomplete) ... method glEndTransformFeedbackNV (line 4003) | def glEndTransformFeedbackNV(cls, *args: Incomplete, **kwargs: Incompl... method glGetActiveVaryingNV (line 4005) | def glGetActiveVaryingNV(cls, *args: Incomplete, **kwargs: Incomplete)... method glGetTransformFeedbackVaryingNV (line 4007) | def glGetTransformFeedbackVaryingNV(cls, *args: Incomplete, **kwargs: ... method glGetVaryingLocationNV (line 4009) | def glGetVaryingLocationNV(cls, *args: Incomplete, **kwargs: Incomplet... method glTransformFeedbackAttribsNV (line 4011) | def glTransformFeedbackAttribsNV(cls, *args: Incomplete, **kwargs: Inc... method glTransformFeedbackVaryingsNV (line 4013) | def glTransformFeedbackVaryingsNV(cls, *args: Incomplete, **kwargs: In... method glBeginTransformFeedbackEXT (line 4015) | def glBeginTransformFeedbackEXT(cls, *args: Incomplete, **kwargs: Inco... method glBindBufferBaseEXT (line 4017) | def glBindBufferBaseEXT(cls, *args: Incomplete, **kwargs: Incomplete) ... method glBindBufferOffsetEXT (line 4019) | def glBindBufferOffsetEXT(cls, *args: Incomplete, **kwargs: Incomplete... method glBindBufferRangeEXT (line 4021) | def glBindBufferRangeEXT(cls, *args: Incomplete, **kwargs: Incomplete)... method glEndTransformFeedbackEXT (line 4023) | def glEndTransformFeedbackEXT(cls, *args: Incomplete, **kwargs: Incomp... method glGetTransformFeedbackVaryingEXT (line 4025) | def glGetTransformFeedbackVaryingEXT(cls, *args: Incomplete, **kwargs:... method glTransformFeedbackVaryingsEXT (line 4027) | def glTransformFeedbackVaryingsEXT(cls, *args: Incomplete, **kwargs: I... class MHardwareRenderer (line 4029) | class MHardwareRenderer: method theRenderer (line 4048) | def theRenderer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method backEndString (line 4050) | def backEndString(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addDrawProcedure (line 4052) | def addDrawProcedure(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method removeDrawProcedure (line 4054) | def removeDrawProcedure(cls, *args: Incomplete, **kwargs: Incomplete) ... method insertDrawProcedure (line 4056) | def insertDrawProcedure(cls, *args: Incomplete, **kwargs: Incomplete) ... method getDrawProcedureCount (line 4058) | def getDrawProcedureCount(cls, *args: Incomplete, **kwargs: Incomplete... method getDrawProcedureListNames (line 4060) | def getDrawProcedureListNames(cls, *args: Incomplete, **kwargs: Incomp... method findDrawProcedure (line 4062) | def findDrawProcedure(cls, *args: Incomplete, **kwargs: Incomplete) ->... method makeResourceContextCurrent (line 4064) | def makeResourceContextCurrent(cls, *args: Incomplete, **kwargs: Incom... method getBufferSize (line 4066) | def getBufferSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getColorBufferPixelFormat (line 4068) | def getColorBufferPixelFormat(cls, *args: Incomplete, **kwargs: Incomp... method getDepthBufferPixelFormat (line 4070) | def getDepthBufferPixelFormat(cls, *args: Incomplete, **kwargs: Incomp... method getCurrentExposureNumber (line 4072) | def getCurrentExposureNumber(cls, *args: Incomplete, **kwargs: Incompl... method getTotalExposureCount (line 4074) | def getTotalExposureCount(cls, *args: Incomplete, **kwargs: Incomplete... method restoreCurrent (line 4076) | def restoreCurrent(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method makeSwatchContextCurrent (line 4078) | def makeSwatchContextCurrent(cls, *args: Incomplete, **kwargs: Incompl... method readSwatchContextPixels (line 4080) | def readSwatchContextPixels(cls, *args: Incomplete, **kwargs: Incomple... method referenceDefaultGeometry (line 4082) | def referenceDefaultGeometry(cls, *args: Incomplete, **kwargs: Incompl... method dereferenceGeometry (line 4084) | def dereferenceGeometry(cls, *args: Incomplete, **kwargs: Incomplete) ... method getSwatchOrthoCameraSetting (line 4086) | def getSwatchOrthoCameraSetting(cls, *args: Incomplete, **kwargs: Inco... method getSwatchPerspectiveCameraSetting (line 4088) | def getSwatchPerspectiveCameraSetting(cls, *args: Incomplete, **kwargs... method getSwatchPerspectiveCameraTranslation (line 4090) | def getSwatchPerspectiveCameraTranslation(cls, *args: Incomplete, **kw... method getSwatchLightDirection (line 4092) | def getSwatchLightDirection(cls, *args: Incomplete, **kwargs: Incomple... method drawSwatchBackGroundQuads (line 4094) | def drawSwatchBackGroundQuads(cls, *args: Incomplete, **kwargs: Incomp... method glFunctionTable (line 4096) | def glFunctionTable(cls, *args: Incomplete, **kwargs: Incomplete) -> I... class MHwrCallback (line 4098) | class MHwrCallback: method __swig_destroy__ (line 4102) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method deviceNew (line 4104) | def deviceNew(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method deviceLost (line 4106) | def deviceLost(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method deviceReset (line 4108) | def deviceReset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deviceDeleted (line 4110) | def deviceDeleted(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method addCallback (line 4112) | def addCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method removeCallback (line 4114) | def removeCallback(*args: Incomplete, **kwargs: Incomplete) -> Incompl... class MHwTextureManager (line 4116) | class MHwTextureManager: method registerTextureFile (line 4120) | def registerTextureFile(*args: Incomplete, **kwargs: Incomplete) -> In... method deregisterTextureFile (line 4122) | def deregisterTextureFile(*args: Incomplete, **kwargs: Incomplete) -> ... method textureFile (line 4124) | def textureFile(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method glBind (line 4126) | def glBind(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 4128) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MLightLinks (line 4130) | class MLightLinks: method __swig_destroy__ (line 4134) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method parseLinks (line 4136) | def parseLinks(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getLinkedLights (line 4138) | def getLinkedLights(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getLinkedObjects (line 4140) | def getLinkedObjects(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getIgnoredLights (line 4142) | def getIgnoredLights(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getIgnoredObjects (line 4144) | def getIgnoredObjects(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getShadowLinkedLights (line 4146) | def getShadowLinkedLights(cls, *args: Incomplete, **kwargs: Incomplete... method getShadowLinkedObjects (line 4148) | def getShadowLinkedObjects(cls, *args: Incomplete, **kwargs: Incomplet... method getShadowIgnoredLights (line 4150) | def getShadowIgnoredLights(cls, *args: Incomplete, **kwargs: Incomplet... method getShadowIgnoredObjects (line 4152) | def getShadowIgnoredObjects(cls, *args: Incomplete, **kwargs: Incomple... class MRenderData (line 4154) | class MRenderData: method worldToScreen (line 4176) | def worldToScreen(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method screenToWorld (line 4178) | def screenToWorld(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method __swig_destroy__ (line 4180) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MRenderingInfo (line 4182) | class MRenderingInfo: method originX (line 4186) | def originX(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method originY (line 4188) | def originY(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method width (line 4190) | def width(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method height (line 4192) | def height(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method renderingAPI (line 4194) | def renderingAPI(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method renderingVersion (line 4196) | def renderingVersion(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method cameraPath (line 4198) | def cameraPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method renderTarget (line 4200) | def renderTarget(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method viewMatrix (line 4202) | def viewMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method projectionMatrix (line 4204) | def projectionMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MRenderProfile (line 4206) | class MRenderProfile: method __swig_destroy__ (line 4213) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method numberOfRenderers (line 4215) | def numberOfRenderers(cls, *args: Incomplete, **kwargs: Incomplete) ->... method addRenderer (line 4217) | def addRenderer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasRenderer (line 4219) | def hasRenderer(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MRenderSetup (line 4221) | class MRenderSetup: method className (line 4225) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getEnabledSelectedNodeNames (line 4227) | def getEnabledSelectedNodeNames(*args: Incomplete, **kwargs: Incomplet... class MRenderSetupPrivate (line 4229) | class MRenderSetupPrivate: method className (line 4233) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MRenderShadowData (line 4235) | class MRenderShadowData: method worldToZbuffer (line 4254) | def worldToZbuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method zbufferToWorld (line 4256) | def zbufferToWorld(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method __swig_destroy__ (line 4258) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MRenderTargetLegacy (line 4260) | class MRenderTargetLegacy: method width (line 4264) | def width(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method height (line 4266) | def height(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method makeTargetCurrent (line 4268) | def makeTargetCurrent(cls, *args: Incomplete, **kwargs: Incomplete) ->... method writeColorBuffer (line 4270) | def writeColorBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MRenderUtil (line 4272) | class MRenderUtil: method mayaRenderState (line 4287) | def mayaRenderState(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method raytrace (line 4289) | def raytrace(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method raytraceFirstGeometryIntersections (line 4291) | def raytraceFirstGeometryIntersections(*args: Incomplete, **kwargs: In... method sampleShadingNetwork (line 4293) | def sampleShadingNetwork(*args: Incomplete, **kwargs: Incomplete) -> I... method generatingIprFile (line 4295) | def generatingIprFile(*args: Incomplete, **kwargs: Incomplete) -> Inco... method relativeFileName (line 4297) | def relativeFileName(*args: Incomplete, **kwargs: Incomplete) -> Incom... method exactFileTextureName (line 4299) | def exactFileTextureName(*args: Incomplete, **kwargs: Incomplete) -> I... method convertPsdFile (line 4301) | def convertPsdFile(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method exactImagePlaneFileName (line 4303) | def exactImagePlaneFileName(*args: Incomplete, **kwargs: Incomplete) -... method inCurrentRenderLayer (line 4305) | def inCurrentRenderLayer(*args: Incomplete, **kwargs: Incomplete) -> I... method renderPass (line 4307) | def renderPass(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method mainBeautyPassCustomTokenString (line 4309) | def mainBeautyPassCustomTokenString(*args: Incomplete, **kwargs: Incom... method mainBeautyPassName (line 4311) | def mainBeautyPassName(*args: Incomplete, **kwargs: Incomplete) -> Inc... method diffuseReflectance (line 4313) | def diffuseReflectance(*args: Incomplete, **kwargs: Incomplete) -> Inc... method maximumSpecularReflection (line 4315) | def maximumSpecularReflection(*args: Incomplete, **kwargs: Incomplete)... method lightAttenuation (line 4317) | def lightAttenuation(*args: Incomplete, **kwargs: Incomplete) -> Incom... method hemisphereCoverage (line 4319) | def hemisphereCoverage(*args: Incomplete, **kwargs: Incomplete) -> Inc... method sendRenderProgressInfo (line 4321) | def sendRenderProgressInfo(*args: Incomplete, **kwargs: Incomplete) ->... method getCommonRenderSettings (line 4323) | def getCommonRenderSettings(*args: Incomplete, **kwargs: Incomplete) -... method renderObjectItem (line 4325) | def renderObjectItem(*args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 4327) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method eval2dTexture (line 4329) | def eval2dTexture(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method noiseTableSize (line 4331) | def noiseTableSize(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method noiseTableCubeSide (line 4333) | def noiseTableCubeSide(*args: Incomplete, **kwargs: Incomplete) -> Inc... method valueInNoiseTable (line 4335) | def valueInNoiseTable(*args: Incomplete, **kwargs: Incomplete) -> Inco... method noise1 (line 4337) | def noise1(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method noise2 (line 4339) | def noise2(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method noise3 (line 4341) | def noise3(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method noise4 (line 4343) | def noise4(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class RV_PIXEL (line 4345) | class RV_PIXEL: method __swig_destroy__ (line 4353) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class RV_AOV (line 4355) | class RV_AOV: method __swig_destroy__ (line 4362) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MRenderView (line 4364) | class MRenderView: method doesRenderEditorExist (line 4368) | def doesRenderEditorExist(*args: Incomplete, **kwargs: Incomplete) -> ... method setCurrentCamera (line 4370) | def setCurrentCamera(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getRenderRegion (line 4372) | def getRenderRegion(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method startRender (line 4374) | def startRender(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method startRegionRender (line 4376) | def startRegionRender(*args: Incomplete, **kwargs: Incomplete) -> Inco... method updatePixels (line 4378) | def updatePixels(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method refresh (line 4380) | def refresh(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method endRender (line 4382) | def endRender(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setDrawTileBoundary (line 4384) | def setDrawTileBoundary(*args: Incomplete, **kwargs: Incomplete) -> In... method className (line 4386) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 4388) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MSwatchRenderBase (line 4390) | class MSwatchRenderBase: method __swig_destroy__ (line 4394) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method doIteration (line 4396) | def doIteration(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method renderParallel (line 4398) | def renderParallel(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method cancelParallelRendering (line 4400) | def cancelParallelRendering(cls, *args: Incomplete, **kwargs: Incomple... method swatchNode (line 4402) | def swatchNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method node (line 4404) | def node(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method resolution (line 4406) | def resolution(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method image (line 4408) | def image(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setRenderQuality (line 4410) | def setRenderQuality(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method renderQuality (line 4412) | def renderQuality(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method cancelCurrentSwatchRender (line 4414) | def cancelCurrentSwatchRender(*args: Incomplete, **kwargs: Incomplete)... method enableSwatchRender (line 4416) | def enableSwatchRender(*args: Incomplete, **kwargs: Incomplete) -> Inc... class MSwatchRenderRegister (line 4418) | class MSwatchRenderRegister: method registerSwatchRender (line 4422) | def registerSwatchRender(*args: Incomplete, **kwargs: Incomplete) -> I... method unregisterSwatchRender (line 4424) | def unregisterSwatchRender(*args: Incomplete, **kwargs: Incomplete) ->... method __swig_destroy__ (line 4426) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MViewportRenderer (line 4428) | class MViewportRenderer: method __swig_destroy__ (line 4473) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method initialize (line 4475) | def initialize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method uninitialize (line 4477) | def uninitialize(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method render (line 4479) | def render(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method nativelySupports (line 4481) | def nativelySupports(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method override (line 4483) | def override(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method overrideThenStandardExclusion (line 4485) | def overrideThenStandardExclusion(cls, *args: Incomplete, **kwargs: In... method registerRenderer (line 4487) | def registerRenderer(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method deregisterRenderer (line 4489) | def deregisterRenderer(cls, *args: Incomplete, **kwargs: Incomplete) -... method name (line 4491) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method UIname (line 4493) | def UIname(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUIName (line 4495) | def setUIName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method renderingOverride (line 4497) | def renderingOverride(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setRenderingOverride (line 4499) | def setRenderingOverride(cls, *args: Incomplete, **kwargs: Incomplete)... class MRenderCallback (line 4501) | class MRenderCallback: method __swig_destroy__ (line 4506) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method shadowCastCallback (line 4508) | def shadowCastCallback(cls, *args: Incomplete, **kwargs: Incomplete) -... method renderCallback (line 4510) | def renderCallback(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method postProcessCallback (line 4512) | def postProcessCallback(cls, *args: Incomplete, **kwargs: Incomplete) ... method addCallback (line 4514) | def addCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method removeCallback (line 4516) | def removeCallback(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method addRenderTileCallback (line 4518) | def addRenderTileCallback(*args: Incomplete, **kwargs: Incomplete) -> ... method className (line 4520) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... FILE: maya/stubs/maya-stubs/OpenMayaUI.pyi class _SwigNonDynamicMeta (line 6) | class _SwigNonDynamicMeta(type): class charPtr (line 9) | class charPtr: method __swig_destroy__ (line 13) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 15) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 17) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 19) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 21) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class intPtr (line 23) | class intPtr: method __swig_destroy__ (line 27) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 29) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 31) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 33) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 35) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class shortPtr (line 37) | class shortPtr: method __swig_destroy__ (line 41) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 43) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 45) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 47) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 49) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class floatPtr (line 51) | class floatPtr: method __swig_destroy__ (line 55) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 57) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 59) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 61) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 63) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class doublePtr (line 65) | class doublePtr: method __swig_destroy__ (line 69) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 71) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 73) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 75) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 77) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class boolPtr (line 79) | class boolPtr: method __swig_destroy__ (line 83) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 85) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 87) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 89) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 91) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uIntPtr (line 93) | class uIntPtr: method __swig_destroy__ (line 97) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 99) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 101) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 103) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 105) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class uCharPtr (line 107) | class uCharPtr: method __swig_destroy__ (line 111) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 113) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method value (line 115) | def value(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cast (line 117) | def cast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method frompointer (line 119) | def frompointer(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class M3dView (line 121) | class M3dView: method assign (line 196) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __swig_destroy__ (line 198) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method active3dView (line 200) | def active3dView(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method numberOf3dViews (line 202) | def numberOf3dViews(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method get3dView (line 204) | def get3dView(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method displayStatus (line 206) | def displayStatus(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method makeSharedContextCurrent (line 208) | def makeSharedContextCurrent(cls, *args: Incomplete, **kwargs: Incompl... method display (line 210) | def display(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method deviceContext (line 212) | def deviceContext(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method applicationShell (line 214) | def applicationShell(*args: Incomplete, **kwargs: Incomplete) -> Incom... method getScreenPosition (line 216) | def getScreenPosition(cls, *args: Incomplete, **kwargs: Incomplete) ->... method widget (line 218) | def widget(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method window (line 220) | def window(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method portWidth (line 222) | def portWidth(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method portHeight (line 224) | def portHeight(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method devicePixelRatio (line 226) | def devicePixelRatio(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isVisible (line 228) | def isVisible(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method playblastPortWidth (line 230) | def playblastPortWidth(cls, *args: Incomplete, **kwargs: Incomplete) -... method playblastPortHeight (line 232) | def playblastPortHeight(cls, *args: Incomplete, **kwargs: Incomplete) ... method pushViewport (line 234) | def pushViewport(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method popViewport (line 236) | def popViewport(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method viewport (line 238) | def viewport(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method beginGL (line 240) | def beginGL(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method endGL (line 242) | def endGL(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method beginSelect (line 244) | def beginSelect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method endSelect (line 246) | def endSelect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method selectMode (line 248) | def selectMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method textureMode (line 250) | def textureMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method loadName (line 252) | def loadName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method pushName (line 254) | def pushName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method popName (line 256) | def popName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method initNames (line 258) | def initNames(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method beginXorDrawing (line 260) | def beginXorDrawing(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method endXorDrawing (line 262) | def endXorDrawing(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDrawColor (line 264) | def setDrawColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDrawColorAndAlpha (line 266) | def setDrawColorAndAlpha(cls, *args: Incomplete, **kwargs: Incomplete)... method numDormantColors (line 268) | def numDormantColors(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method numActiveColors (line 270) | def numActiveColors(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method numUserDefinedColors (line 272) | def numUserDefinedColors(cls, *args: Incomplete, **kwargs: Incomplete)... method setUserDefinedColor (line 274) | def setUserDefinedColor(cls, *args: Incomplete, **kwargs: Incomplete) ... method userDefinedColorIndex (line 276) | def userDefinedColorIndex(cls, *args: Incomplete, **kwargs: Incomplete... method colorAtIndex (line 278) | def colorAtIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getColorIndexAndTable (line 280) | def getColorIndexAndTable(cls, *args: Incomplete, **kwargs: Incomplete... method colorMask (line 282) | def colorMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setColorMask (line 284) | def setColorMask(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isBackgroundGradient (line 286) | def isBackgroundGradient(*args: Incomplete, **kwargs: Incomplete) -> I... method templateColor (line 288) | def templateColor(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method backgroundColor (line 290) | def backgroundColor(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method backgroundColorTop (line 292) | def backgroundColorTop(*args: Incomplete, **kwargs: Incomplete) -> Inc... method backgroundColorBottom (line 294) | def backgroundColorBottom(*args: Incomplete, **kwargs: Incomplete) -> ... method liveColor (line 296) | def liveColor(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method referenceLayerColor (line 298) | def referenceLayerColor(*args: Incomplete, **kwargs: Incomplete) -> In... method activeTemplateColor (line 300) | def activeTemplateColor(*args: Incomplete, **kwargs: Incomplete) -> In... method leadColor (line 302) | def leadColor(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method hiliteColor (line 304) | def hiliteColor(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method activeAffectedColor (line 306) | def activeAffectedColor(*args: Incomplete, **kwargs: Incomplete) -> In... method drawText (line 308) | def drawText(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getCamera (line 310) | def getCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setCamera (line 312) | def setCamera(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method scheduleRefreshAllViews (line 314) | def scheduleRefreshAllViews(*args: Incomplete, **kwargs: Incomplete) -... method scheduleRefresh (line 316) | def scheduleRefresh(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method refresh (line 318) | def refresh(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getLightCount (line 320) | def getLightCount(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getLightingMode (line 322) | def getLightingMode(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method getLightPath (line 324) | def getLightPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isLightVisible (line 326) | def isLightVisible(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getLightIndex (line 328) | def getLightIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method viewToWorld (line 330) | def viewToWorld(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method viewToObjectSpace (line 332) | def viewToObjectSpace(cls, *args: Incomplete, **kwargs: Incomplete) ->... method worldToView (line 334) | def worldToView(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method projectionMatrix (line 336) | def projectionMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method modelViewMatrix (line 338) | def modelViewMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method viewSelectedPrefix (line 340) | def viewSelectedPrefix(cls, *args: Incomplete, **kwargs: Incomplete) -... method setViewSelectedPrefix (line 342) | def setViewSelectedPrefix(cls, *args: Incomplete, **kwargs: Incomplete... method showViewSelectedChildren (line 344) | def showViewSelectedChildren(cls, *args: Incomplete, **kwargs: Incompl... method setShowViewSelectedChildren (line 346) | def setShowViewSelectedChildren(cls, *args: Incomplete, **kwargs: Inco... method getM3dViewFromModelPanel (line 348) | def getM3dViewFromModelPanel(*args: Incomplete, **kwargs: Incomplete) ... method getM3dViewFromModelEditor (line 350) | def getM3dViewFromModelEditor(*args: Incomplete, **kwargs: Incomplete)... method displayStyle (line 352) | def displayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isShadeActiveOnly (line 354) | def isShadeActiveOnly(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setDisplayStyle (line 356) | def setDisplayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setObjectDisplay (line 358) | def setObjectDisplay(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method objectDisplay (line 360) | def objectDisplay(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setPluginObjectDisplay (line 362) | def setPluginObjectDisplay(cls, *args: Incomplete, **kwargs: Incomplet... method pluginObjectDisplay (line 364) | def pluginObjectDisplay(cls, *args: Incomplete, **kwargs: Incomplete) ... method getRendererName (line 366) | def getRendererName(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method rendererString (line 368) | def rendererString(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method wireframeOnlyInShadedMode (line 370) | def wireframeOnlyInShadedMode(cls, *args: Incomplete, **kwargs: Incomp... method wireframeOnShaded (line 372) | def wireframeOnShaded(cls, *args: Incomplete, **kwargs: Incomplete) ->... method xray (line 374) | def xray(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method xrayJoints (line 376) | def xrayJoints(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method twoSidedLighting (line 378) | def twoSidedLighting(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method readColorBuffer (line 380) | def readColorBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method writeColorBuffer (line 382) | def writeColorBuffer(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method readDepthMap (line 384) | def readDepthMap(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method readBufferTo2dTexture (line 386) | def readBufferTo2dTexture(cls, *args: Incomplete, **kwargs: Incomplete... method usingMipmappedTextures (line 388) | def usingMipmappedTextures(cls, *args: Incomplete, **kwargs: Incomplet... method usingDefaultMaterial (line 390) | def usingDefaultMaterial(cls, *args: Incomplete, **kwargs: Incomplete)... method setDisallowPolygonOffset (line 392) | def setDisallowPolygonOffset(cls, *args: Incomplete, **kwargs: Incompl... method disallowPolygonOffset (line 394) | def disallowPolygonOffset(cls, *args: Incomplete, **kwargs: Incomplete... method updateViewingParameters (line 396) | def updateViewingParameters(cls, *args: Incomplete, **kwargs: Incomple... method multipleDrawEnabled (line 398) | def multipleDrawEnabled(cls, *args: Incomplete, **kwargs: Incomplete) ... method setMultipleDrawEnable (line 400) | def setMultipleDrawEnable(cls, *args: Incomplete, **kwargs: Incomplete... method multipleDrawPassCount (line 402) | def multipleDrawPassCount(cls, *args: Incomplete, **kwargs: Incomplete... method setMultipleDrawPassCount (line 404) | def setMultipleDrawPassCount(cls, *args: Incomplete, **kwargs: Incompl... method beginProjMatrixOverride (line 406) | def beginProjMatrixOverride(cls, *args: Incomplete, **kwargs: Incomple... method endProjMatrixOverride (line 408) | def endProjMatrixOverride(cls, *args: Incomplete, **kwargs: Incomplete... method setRenderOverrideName (line 410) | def setRenderOverrideName(cls, *args: Incomplete, **kwargs: Incomplete... method renderOverrideName (line 412) | def renderOverrideName(cls, *args: Incomplete, **kwargs: Incomplete) -... method setObjectListFilterName (line 414) | def setObjectListFilterName(cls, *args: Incomplete, **kwargs: Incomple... method objectListFilterName (line 416) | def objectListFilterName(cls, *args: Incomplete, **kwargs: Incomplete)... method setShowObjectFilterNameInHUD (line 418) | def setShowObjectFilterNameInHUD(cls, *args: Incomplete, **kwargs: Inc... method showObjectFilterNameInHUD (line 420) | def showObjectFilterNameInHUD(cls, *args: Incomplete, **kwargs: Incomp... method viewIsFiltered (line 422) | def viewIsFiltered(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method filteredObjectList (line 424) | def filteredObjectList(cls, *args: Incomplete, **kwargs: Incomplete) -... method className (line 426) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MCursor (line 428) | class MCursor: method __swig_destroy__ (line 439) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 441) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method __eq__ (line 443) | def __eq__(cls, other: object) -> bool: ... method __ne__ (line 445) | def __ne__(cls, other: object) -> bool: ... class MDeviceChannel (line 448) | class MDeviceChannel: method __swig_destroy__ (line 452) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method name (line 454) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method longName (line 456) | def longName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method axisIndex (line 458) | def axisIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasChildren (line 460) | def hasChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method parent (line 462) | def parent(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method childByIndex (line 464) | def childByIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method numChildren (line 466) | def numChildren(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MDeviceState (line 468) | class MDeviceState: method __swig_destroy__ (line 472) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method devicePosition (line 474) | def devicePosition(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDevicePosition (line 476) | def setDevicePosition(cls, *args: Incomplete, **kwargs: Incomplete) ->... method buttonState (line 478) | def buttonState(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setButtonState (line 480) | def setButtonState(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method maxAxis (line 482) | def maxAxis(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isNull (line 484) | def isNull(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MDrawData (line 486) | class MDrawData: method __swig_destroy__ (line 490) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method geometry (line 492) | def geometry(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method className (line 494) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDrawInfo (line 496) | class MDrawInfo: method __swig_destroy__ (line 500) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getPrototype (line 502) | def getPrototype(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method view (line 504) | def view(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method multiPath (line 506) | def multiPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMultiPath (line 508) | def setMultiPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method projectionMatrix (line 510) | def projectionMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method inclusiveMatrix (line 512) | def inclusiveMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method displayStyle (line 514) | def displayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method displayStatus (line 516) | def displayStatus(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method objectDisplayStatus (line 518) | def objectDisplayStatus(cls, *args: Incomplete, **kwargs: Incomplete) ... method pluginObjectDisplayStatus (line 520) | def pluginObjectDisplayStatus(cls, *args: Incomplete, **kwargs: Incomp... method inSelect (line 522) | def inSelect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method inUserInteraction (line 524) | def inUserInteraction(cls, *args: Incomplete, **kwargs: Incomplete) ->... method userChangingViewContext (line 526) | def userChangingViewContext(cls, *args: Incomplete, **kwargs: Incomple... method completelyInside (line 528) | def completelyInside(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method canDrawComponent (line 530) | def canDrawComponent(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 532) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDrawRequest (line 534) | class MDrawRequest: method __swig_destroy__ (line 538) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method view (line 540) | def view(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setView (line 542) | def setView(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method multiPath (line 544) | def multiPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setMultiPath (line 546) | def setMultiPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method component (line 548) | def component(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setComponent (line 550) | def setComponent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method drawData (line 552) | def drawData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDrawData (line 554) | def setDrawData(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method displayStatus (line 556) | def displayStatus(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDisplayStatus (line 558) | def setDisplayStatus(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method displayCulling (line 560) | def displayCulling(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDisplayCulling (line 562) | def setDisplayCulling(cls, *args: Incomplete, **kwargs: Incomplete) ->... method displayCullOpposite (line 564) | def displayCullOpposite(cls, *args: Incomplete, **kwargs: Incomplete) ... method setDisplayCullOpposite (line 566) | def setDisplayCullOpposite(cls, *args: Incomplete, **kwargs: Incomplet... method displayStyle (line 568) | def displayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDisplayStyle (line 570) | def setDisplayStyle(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method color (line 572) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setColor (line 574) | def setColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method material (line 576) | def material(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setMaterial (line 578) | def setMaterial(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isTransparent (line 580) | def isTransparent(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setIsTransparent (line 582) | def setIsTransparent(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method drawLast (line 584) | def drawLast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDrawLast (line 586) | def setDrawLast(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method token (line 588) | def token(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setToken (line 590) | def setToken(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method matrix (line 592) | def matrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setMatrix (line 594) | def setMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method assign (line 596) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 598) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDrawRequestQueue (line 600) | class MDrawRequestQueue: method __swig_destroy__ (line 604) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isEmpty (line 606) | def isEmpty(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method add (line 608) | def add(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method remove (line 610) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method assign (line 612) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 614) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MDrawTraversal (line 616) | class MDrawTraversal: method __swig_destroy__ (line 622) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method traverse (line 624) | def traverse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method filterNode (line 626) | def filterNode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setOrthoFrustum (line 628) | def setOrthoFrustum(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setPerspFrustum (line 630) | def setPerspFrustum(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setFrustum (line 632) | def setFrustum(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method frustumValid (line 634) | def frustumValid(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setLeafLevelCulling (line 636) | def setLeafLevelCulling(cls, *args: Incomplete, **kwargs: Incomplete) ... method leafLevelCulling (line 638) | def leafLevelCulling(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method enableFiltering (line 640) | def enableFiltering(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method filteringEnabled (line 642) | def filteringEnabled(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method numberOfItems (line 644) | def numberOfItems(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method itemPath (line 646) | def itemPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method itemHasStatus (line 648) | def itemHasStatus(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MEvent (line 650) | class MEvent: method __swig_destroy__ (line 658) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getPosition (line 660) | def getPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setPosition (line 662) | def setPosition(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getWindowPosition (line 664) | def getWindowPosition(cls, *args: Incomplete, **kwargs: Incomplete) ->... method mouseButton (line 666) | def mouseButton(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isModifierKeyRelease (line 668) | def isModifierKeyRelease(cls, *args: Incomplete, **kwargs: Incomplete)... method modifiers (line 670) | def modifiers(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setModifiers (line 672) | def setModifiers(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isModifierNone (line 674) | def isModifierNone(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method isModifierShift (line 676) | def isModifierShift(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method isModifierControl (line 678) | def isModifierControl(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isModifierLeftMouseButton (line 680) | def isModifierLeftMouseButton(cls, *args: Incomplete, **kwargs: Incomp... method isModifierMiddleMouseButton (line 682) | def isModifierMiddleMouseButton(cls, *args: Incomplete, **kwargs: Inco... method className (line 684) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MExternalDropData (line 686) | class MExternalDropData: method hasText (line 698) | def hasText(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method text (line 700) | def text(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method hasUrls (line 702) | def hasUrls(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method urls (line 704) | def urls(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method hasHtml (line 706) | def hasHtml(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method html (line 708) | def html(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method hasColor (line 710) | def hasColor(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method color (line 712) | def color(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method hasImage (line 714) | def hasImage(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method image (line 716) | def image(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method formats (line 718) | def formats(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasFormat (line 720) | def hasFormat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method dataSize (line 722) | def dataSize(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method mouseButtons (line 724) | def mouseButtons(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method keyboardModifiers (line 726) | def keyboardModifiers(cls, *args: Incomplete, **kwargs: Incomplete) ->... method __swig_destroy__ (line 728) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFeedbackLine (line 730) | class MFeedbackLine: method setFormat (line 734) | def setFormat(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setTitle (line 736) | def setTitle(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setValue (line 738) | def setValue(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 740) | def clear(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method showFeedback (line 742) | def showFeedback(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setShowFeedback (line 744) | def setShowFeedback(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 746) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 748) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnManip3D (line 750) | class MFnManip3D(maya.OpenMaya.MFnTransform): method __swig_destroy__ (line 754) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 756) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method isVisible (line 758) | def isVisible(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setVisible (line 760) | def setVisible(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method manipScale (line 762) | def manipScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setManipScale (line 764) | def setManipScale(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isOptimizePlaybackOn (line 766) | def isOptimizePlaybackOn(cls, *args: Incomplete, **kwargs: Incomplete)... method setOptimizePlayback (line 768) | def setOptimizePlayback(cls, *args: Incomplete, **kwargs: Incomplete) ... method globalSize (line 770) | def globalSize(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setGlobalSize (line 772) | def setGlobalSize(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method handleSize (line 774) | def handleSize(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setHandleSize (line 776) | def setHandleSize(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method lineSize (line 778) | def lineSize(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLineSize (line 780) | def setLineSize(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method deleteManipulator (line 782) | def deleteManipulator(*args: Incomplete, **kwargs: Incomplete) -> Inco... method drawPlaneHandles (line 784) | def drawPlaneHandles(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setDrawPlaneHandles (line 786) | def setDrawPlaneHandles(*args: Incomplete, **kwargs: Incomplete) -> In... method rotateXYZValue (line 788) | def rotateXYZValue(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnCircleSweepManip (line 790) | class MFnCircleSweepManip(MFnManip3D): method __swig_destroy__ (line 794) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 796) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 798) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToAnglePlug (line 800) | def connectToAnglePlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method setCenterPoint (line 802) | def setCenterPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setStartPoint (line 804) | def setStartPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setEndPoint (line 806) | def setEndPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setNormal (line 808) | def setNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setRadius (line 810) | def setRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setAngle (line 812) | def setAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDrawAsArc (line 814) | def setDrawAsArc(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method startPoint (line 816) | def startPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method endPoint (line 818) | def endPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method centerIndex (line 820) | def centerIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method axisIndex (line 822) | def axisIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method angleIndex (line 824) | def angleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method startCircleIndex (line 826) | def startCircleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method endCircleIndex (line 828) | def endCircleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnCurveSegmentManip (line 830) | class MFnCurveSegmentManip(MFnManip3D): method __swig_destroy__ (line 834) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 836) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 838) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToCurvePlug (line 840) | def connectToCurvePlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method connectToStartParamPlug (line 842) | def connectToStartParamPlug(cls, *args: Incomplete, **kwargs: Incomple... method connectToEndParamPlug (line 844) | def connectToEndParamPlug(cls, *args: Incomplete, **kwargs: Incomplete... method setStartParameter (line 846) | def setStartParameter(cls, *args: Incomplete, **kwargs: Incomplete) ->... method setEndParameter (line 848) | def setEndParameter(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method startParameter (line 850) | def startParameter(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method endParameter (line 852) | def endParameter(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method curveIndex (line 854) | def curveIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method startParamIndex (line 856) | def startParamIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method endParamIndex (line 858) | def endParamIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnDirectionManip (line 860) | class MFnDirectionManip(MFnManip3D): method __swig_destroy__ (line 864) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 866) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 868) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToDirectionPlug (line 870) | def connectToDirectionPlug(cls, *args: Incomplete, **kwargs: Incomplet... method setNormalizeDirection (line 872) | def setNormalizeDirection(cls, *args: Incomplete, **kwargs: Incomplete... method setDrawStart (line 874) | def setDrawStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setStartPoint (line 876) | def setStartPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDirection (line 878) | def setDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method startPointIndex (line 880) | def startPointIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method endPointIndex (line 882) | def endPointIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method directionIndex (line 884) | def directionIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> In... class MFnDiscManip (line 886) | class MFnDiscManip(MFnManip3D): method __swig_destroy__ (line 890) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 892) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 894) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToAnglePlug (line 896) | def connectToAnglePlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method setCenterPoint (line 898) | def setCenterPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setNormal (line 900) | def setNormal(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setRadius (line 902) | def setRadius(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setAngle (line 904) | def setAngle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method centerIndex (line 906) | def centerIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method axisIndex (line 908) | def axisIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method angleIndex (line 910) | def angleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnDistanceManip (line 912) | class MFnDistanceManip(MFnManip3D): method __swig_destroy__ (line 916) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 918) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 920) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToDistancePlug (line 922) | def connectToDistancePlug(cls, *args: Incomplete, **kwargs: Incomplete... method setStartPoint (line 924) | def setStartPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDirection (line 926) | def setDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDrawStart (line 928) | def setDrawStart(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setDrawLine (line 930) | def setDrawLine(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setScalingFactor (line 932) | def setScalingFactor(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method isDrawStartOn (line 934) | def isDrawStartOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isDrawLineOn (line 936) | def isDrawLineOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method scalingFactor (line 938) | def scalingFactor(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method distanceIndex (line 940) | def distanceIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method directionIndex (line 942) | def directionIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method startPointIndex (line 944) | def startPointIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method currentPointIndex (line 946) | def currentPointIndex(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MFnFreePointTriadManip (line 948) | class MFnFreePointTriadManip(MFnManip3D): method __swig_destroy__ (line 956) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 958) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 960) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToPointPlug (line 962) | def connectToPointPlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDrawAxes (line 964) | def setDrawAxes(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSnapMode (line 966) | def setSnapMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setKeyframeAll (line 968) | def setKeyframeAll(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDrawArrowHead (line 970) | def setDrawArrowHead(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method setGlobalTriadPlane (line 972) | def setGlobalTriadPlane(cls, *args: Incomplete, **kwargs: Incomplete) ... method setPoint (line 974) | def setPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDirection (line 976) | def setDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isDrawAxesOn (line 978) | def isDrawAxesOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isSnapModeOn (line 980) | def isSnapModeOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isKeyframeAllOn (line 982) | def isKeyframeAllOn(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method pointIndex (line 984) | def pointIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnPointOnCurveManip (line 986) | class MFnPointOnCurveManip(MFnManip3D): method __swig_destroy__ (line 990) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 992) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 994) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToCurvePlug (line 996) | def connectToCurvePlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method connectToParamPlug (line 998) | def connectToParamPlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDrawCurve (line 1000) | def setDrawCurve(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setParameter (line 1002) | def setParameter(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isDrawCurveOn (line 1004) | def isDrawCurveOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method parameter (line 1006) | def parameter(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method curvePoint (line 1008) | def curvePoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method curveIndex (line 1010) | def curveIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method paramIndex (line 1012) | def paramIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnPointOnSurfaceManip (line 1014) | class MFnPointOnSurfaceManip(MFnManip3D): method __swig_destroy__ (line 1018) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1020) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1022) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToSurfacePlug (line 1024) | def connectToSurfacePlug(cls, *args: Incomplete, **kwargs: Incomplete)... method connectToParamPlug (line 1026) | def connectToParamPlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method setDrawSurface (line 1028) | def setDrawSurface(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setDrawArrows (line 1030) | def setDrawArrows(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setParameters (line 1032) | def setParameters(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getParameters (line 1034) | def getParameters(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isDrawSurfaceOn (line 1036) | def isDrawSurfaceOn(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method surfaceIndex (line 1038) | def surfaceIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method paramIndex (line 1040) | def paramIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnRotateManip (line 1042) | class MFnRotateManip(MFnManip3D): method __swig_destroy__ (line 1049) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1051) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1053) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToRotationPlug (line 1055) | def connectToRotationPlug(cls, *args: Incomplete, **kwargs: Incomplete... method connectToRotationCenterPlug (line 1057) | def connectToRotationCenterPlug(cls, *args: Incomplete, **kwargs: Inco... method setInitialRotation (line 1059) | def setInitialRotation(cls, *args: Incomplete, **kwargs: Incomplete) -... method displayWithNode (line 1061) | def displayWithNode(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setRotateMode (line 1063) | def setRotateMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rotateMode (line 1065) | def rotateMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setSnapMode (line 1067) | def setSnapMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isSnapModeOn (line 1069) | def isSnapModeOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setSnapIncrement (line 1071) | def setSnapIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method snapIncrement (line 1073) | def snapIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rotationIndex (line 1075) | def rotationIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rotationCenterIndex (line 1077) | def rotationCenterIndex(cls, *args: Incomplete, **kwargs: Incomplete) ... method setRotationCenter (line 1079) | def setRotationCenter(cls, *args: Incomplete, **kwargs: Incomplete) ->... class MFnScaleManip (line 1081) | class MFnScaleManip(MFnManip3D): method __swig_destroy__ (line 1087) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1089) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1091) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToScalePlug (line 1093) | def connectToScalePlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method connectToScaleCenterPlug (line 1095) | def connectToScaleCenterPlug(cls, *args: Incomplete, **kwargs: Incompl... method setInitialScale (line 1097) | def setInitialScale(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method displayWithNode (line 1099) | def displayWithNode(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setSnapMode (line 1101) | def setSnapMode(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isSnapModeOn (line 1103) | def isSnapModeOn(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setSnapIncrement (line 1105) | def setSnapIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method snapIncrement (line 1107) | def snapIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setOrientation (line 1109) | def setOrientation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method getOrientation (line 1111) | def getOrientation(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method setOrientationMode (line 1113) | def setOrientationMode(cls, *args: Incomplete, **kwargs: Incomplete) -... method getOrientationMode (line 1115) | def getOrientationMode(cls, *args: Incomplete, **kwargs: Incomplete) -... method scaleIndex (line 1117) | def scaleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method scaleCenterIndex (line 1119) | def scaleCenterIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MFnStateManip (line 1121) | class MFnStateManip(MFnManip3D): method __swig_destroy__ (line 1125) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1127) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1129) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToStatePlug (line 1131) | def connectToStatePlug(cls, *args: Incomplete, **kwargs: Incomplete) -... method setInitialState (line 1133) | def setInitialState(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setMaxStates (line 1135) | def setMaxStates(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method maxStates (line 1137) | def maxStates(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method state (line 1139) | def state(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method positionIndex (line 1141) | def positionIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method stateIndex (line 1143) | def stateIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnToggleManip (line 1145) | class MFnToggleManip(MFnManip3D): method __swig_destroy__ (line 1149) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1151) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method create (line 1153) | def create(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectToTogglePlug (line 1155) | def connectToTogglePlug(cls, *args: Incomplete, **kwargs: Incomplete) ... method startPoint (line 1157) | def startPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method direction (line 1159) | def direction(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 1161) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method toggle (line 1163) | def toggle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method startPointIndex (line 1165) | def startPointIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method directionIndex (line 1167) | def directionIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> In... method lengthIndex (line 1169) | def lengthIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method toggleIndex (line 1171) | def toggleIndex(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setStartPoint (line 1173) | def setStartPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDirection (line 1175) | def setDirection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setLength (line 1177) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setToggle (line 1179) | def setToggle(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MFnToolContext (line 1181) | class MFnToolContext(maya.OpenMaya.MFnBase): method __swig_destroy__ (line 1185) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method className (line 1187) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method name (line 1189) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method title (line 1191) | def title(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MPanelCanvasInfo (line 1193) | class MPanelCanvasInfo: method __swig_destroy__ (line 1197) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getViewportBounds (line 1199) | def getViewportBounds(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getViewportSize (line 1201) | def getViewportSize(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setViewportBounds (line 1203) | def setViewportBounds(cls, *args: Incomplete, **kwargs: Incomplete) ->... method supportsUIDrawing (line 1205) | def supportsUIDrawing(cls, *args: Incomplete, **kwargs: Incomplete) ->... method reset (line 1207) | def reset(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method name (line 1209) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 1211) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MGraphEditorInfo (line 1213) | class MGraphEditorInfo(MPanelCanvasInfo): method __swig_destroy__ (line 1221) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method getAnimCurveNodes (line 1223) | def getAnimCurveNodes(cls, *args: Incomplete, **kwargs: Incomplete) ->... method isStackedViewportMode (line 1225) | def isStackedViewportMode(cls, *args: Incomplete, **kwargs: Incomplete... method isNormalizedViewportMode (line 1227) | def isNormalizedViewportMode(cls, *args: Incomplete, **kwargs: Incompl... method className (line 1229) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MHWShaderSwatchGenerator (line 1231) | class MHWShaderSwatchGenerator(maya.OpenMayaRender.MSwatchRenderBase): method createObj (line 1235) | def createObj(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method initialize (line 1237) | def initialize(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getSwatchBackgroundColor (line 1239) | def getSwatchBackgroundColor(*args: Incomplete, **kwargs: Incomplete) ... method __swig_destroy__ (line 1241) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MManipData (line 1243) | class MManipData: method __swig_destroy__ (line 1247) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method assign (line 1249) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isSimple (line 1251) | def isSimple(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asBool (line 1253) | def asBool(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asShort (line 1255) | def asShort(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asLong (line 1257) | def asLong(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asUnsigned (line 1259) | def asUnsigned(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asFloat (line 1261) | def asFloat(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asDouble (line 1263) | def asDouble(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asMObject (line 1265) | def asMObject(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method className (line 1267) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MMaterial (line 1269) | class MMaterial: method __swig_destroy__ (line 1289) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method evaluateMaterial (line 1291) | def evaluateMaterial(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method evaluateShininess (line 1293) | def evaluateShininess(cls, *args: Incomplete, **kwargs: Incomplete) ->... method evaluateDiffuse (line 1295) | def evaluateDiffuse(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method evaluateEmission (line 1297) | def evaluateEmission(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method evaluateSpecular (line 1299) | def evaluateSpecular(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method evaluateTexture (line 1301) | def evaluateTexture(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method materialIsTextured (line 1303) | def materialIsTextured(cls, *args: Incomplete, **kwargs: Incomplete) -... method setMaterial (line 1305) | def setMaterial(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getShininess (line 1307) | def getShininess(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getDiffuse (line 1309) | def getDiffuse(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getEmission (line 1311) | def getEmission(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getSpecular (line 1313) | def getSpecular(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getHasTransparency (line 1315) | def getHasTransparency(cls, *args: Incomplete, **kwargs: Incomplete) -... method applyTexture (line 1317) | def applyTexture(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method textureImage (line 1319) | def textureImage(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getHwShaderNode (line 1321) | def getHwShaderNode(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method defaultMaterial (line 1323) | def defaultMaterial(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method shadingEngine (line 1325) | def shadingEngine(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 1327) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method evaluateTextureTransformation (line 1329) | def evaluateTextureTransformation(cls, *args: Incomplete, **kwargs: In... method getTextureTransformation (line 1331) | def getTextureTransformation(cls, *args: Incomplete, **kwargs: Incompl... class MMaterialArray (line 1333) | class MMaterialArray: method __swig_destroy__ (line 1337) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method __getitem__ (line 1339) | def __getitem__(cls, index: Incomplete) -> Incomplete: ... method assign (line 1341) | def assign(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method set (line 1343) | def set(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setLength (line 1345) | def setLength(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method length (line 1347) | def length(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method remove (line 1349) | def remove(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 1351) | def insert(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method append (line 1353) | def append(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copy (line 1355) | def copy(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method clear (line 1357) | def clear(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method setSizeIncrement (line 1359) | def setSizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method sizeIncrement (line 1361) | def sizeIncrement(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method className (line 1363) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MProgressWindow (line 1365) | class MProgressWindow: method reserve (line 1369) | def reserve(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method startProgress (line 1371) | def startProgress(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method endProgress (line 1373) | def endProgress(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setProgressRange (line 1375) | def setProgressRange(*args: Incomplete, **kwargs: Incomplete) -> Incom... method setProgressMin (line 1377) | def setProgressMin(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method setProgressMax (line 1379) | def setProgressMax(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method progressMin (line 1381) | def progressMin(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method progressMax (line 1383) | def progressMax(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setProgress (line 1385) | def setProgress(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method advanceProgress (line 1387) | def advanceProgress(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method progress (line 1389) | def progress(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setTitle (line 1391) | def setTitle(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method title (line 1393) | def title(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setProgressStatus (line 1395) | def setProgressStatus(*args: Incomplete, **kwargs: Incomplete) -> Inco... method progressStatus (line 1397) | def progressStatus(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method setInterruptable (line 1399) | def setInterruptable(*args: Incomplete, **kwargs: Incomplete) -> Incom... method isInterruptable (line 1401) | def isInterruptable(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method isCancelled (line 1403) | def isCancelled(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method className (line 1405) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1407) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MQtUtil (line 1409) | class MQtUtil: method findControl (line 1413) | def findControl(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method findLayout (line 1415) | def findLayout(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method findMenuItem (line 1417) | def findMenuItem(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method findWindow (line 1419) | def findWindow(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method fullName (line 1421) | def fullName(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method getCurrentParent (line 1423) | def getCurrentParent(*args: Incomplete, **kwargs: Incomplete) -> Incom... method createPixmap (line 1425) | def createPixmap(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method createCursor (line 1427) | def createCursor(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method createIcon (line 1429) | def createIcon(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getLayoutChildren (line 1431) | def getLayoutChildren(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getParent (line 1433) | def getParent(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method addWidgetToMayaLayout (line 1435) | def addWidgetToMayaLayout(*args: Incomplete, **kwargs: Incomplete) -> ... method registerUIType (line 1437) | def registerUIType(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method deregisterUIType (line 1439) | def deregisterUIType(*args: Incomplete, **kwargs: Incomplete) -> Incom... method mainWindow (line 1441) | def mainWindow(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method resourceGLContext (line 1443) | def resourceGLContext(*args: Incomplete, **kwargs: Incomplete) -> Inco... method nativeWindow (line 1445) | def nativeWindow(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method toMString (line 1447) | def toMString(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method toQString (line 1449) | def toQString(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method dpiScale (line 1451) | def dpiScale(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method newClocaleValidator (line 1453) | def newClocaleValidator(*args: Incomplete, **kwargs: Incomplete) -> In... method className (line 1455) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1457) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MSelectInfo (line 1459) | class MSelectInfo(MDrawInfo): method __swig_destroy__ (line 1463) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method view (line 1465) | def view(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method singleSelection (line 1467) | def singleSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method selectClosest (line 1469) | def selectClosest(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method selectable (line 1471) | def selectable(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method selectableComponent (line 1473) | def selectableComponent(cls, *args: Incomplete, **kwargs: Incomplete) ... method selectRect (line 1475) | def selectRect(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isRay (line 1477) | def isRay(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method getAlignmentMatrix (line 1479) | def getAlignmentMatrix(cls, *args: Incomplete, **kwargs: Incomplete) -... method getLocalRay (line 1481) | def getLocalRay(cls, *args: Incomplete, **kwargs: Incomplete) -> Incom... method selectForHilite (line 1483) | def selectForHilite(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method selectOnHilitedOnly (line 1485) | def selectOnHilitedOnly(cls, *args: Incomplete, **kwargs: Incomplete) ... method highestPriority (line 1487) | def highestPriority(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setHighestPriority (line 1489) | def setHighestPriority(cls, *args: Incomplete, **kwargs: Incomplete) -... method addSelection (line 1491) | def addSelection(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setSnapPoint (line 1493) | def setSnapPoint(cls, *args: Incomplete, **kwargs: Incomplete) -> Inco... method selectPath (line 1495) | def selectPath(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method className (line 1497) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MTextureEditorDrawInfo (line 1499) | class MTextureEditorDrawInfo: method __swig_destroy__ (line 1511) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method drawingFunction (line 1513) | def drawingFunction(cls, *args: Incomplete, **kwargs: Incomplete) -> I... method setDrawingFunction (line 1515) | def setDrawingFunction(cls, *args: Incomplete, **kwargs: Incomplete) -... method className (line 1517) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MToolsInfo (line 1519) | class MToolsInfo: method setDirtyFlag (line 1523) | def setDirtyFlag(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method resetDirtyFlag (line 1525) | def resetDirtyFlag(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method isDirty (line 1527) | def isDirty(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method className (line 1529) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1531) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MUiMessage (line 1533) | class MUiMessage(maya.OpenMaya.MMessage): method addUiDeletedCallback (line 1537) | def addUiDeletedCallback(*args: Incomplete, **kwargs: Incomplete) -> I... method addCameraChangedCallback (line 1539) | def addCameraChangedCallback(*args: Incomplete, **kwargs: Incomplete) ... method add3dViewDestroyMsgCallback (line 1541) | def add3dViewDestroyMsgCallback(*args: Incomplete, **kwargs: Incomplet... method add3dViewPreRenderMsgCallback (line 1543) | def add3dViewPreRenderMsgCallback(*args: Incomplete, **kwargs: Incompl... method add3dViewPostRenderMsgCallback (line 1545) | def add3dViewPostRenderMsgCallback(*args: Incomplete, **kwargs: Incomp... method add3dViewPreMultipleDrawPassMsgCallback (line 1547) | def add3dViewPreMultipleDrawPassMsgCallback(*args: Incomplete, **kwarg... method add3dViewPostMultipleDrawPassMsgCallback (line 1549) | def add3dViewPostMultipleDrawPassMsgCallback(*args: Incomplete, **kwar... method add3dViewRendererChangedCallback (line 1551) | def add3dViewRendererChangedCallback(*args: Incomplete, **kwargs: Inco... method add3dViewRenderOverrideChangedCallback (line 1553) | def add3dViewRenderOverrideChangedCallback(*args: Incomplete, **kwargs... method className (line 1555) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1557) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MPaintMessage (line 1559) | class MPaintMessage(maya.OpenMaya.MMessage): method addVertexColorCallback (line 1563) | def addVertexColorCallback(*args: Incomplete, **kwargs: Incomplete) ->... method className (line 1565) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method __swig_destroy__ (line 1567) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... class MObjectListFilter (line 1569) | class MObjectListFilter: method __swig_destroy__ (line 1578) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method requireListUpdate (line 1580) | def requireListUpdate(cls, *args: Incomplete, **kwargs: Incomplete) ->... method getList (line 1582) | def getList(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method dependentOnSceneUpdates (line 1584) | def dependentOnSceneUpdates(cls, *args: Incomplete, **kwargs: Incomple... method setFilterType (line 1586) | def setFilterType(cls, *args: Incomplete, **kwargs: Incomplete) -> Inc... method filterType (line 1588) | def filterType(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method name (line 1590) | def name(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method UIname (line 1592) | def UIname(cls, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUIName (line 1594) | def setUIName(cls, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method registerFilter (line 1596) | def registerFilter(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method deregisterFilter (line 1598) | def deregisterFilter(*args: Incomplete, **kwargs: Incomplete) -> Incom... method className (line 1600) | def className(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MExternalDropCallback (line 1602) | class MExternalDropCallback: method __swig_destroy__ (line 1610) | def __swig_destroy__(cls, *args: Incomplete, **kwargs: Incomplete) -> ... method externalDropCallback (line 1612) | def externalDropCallback(cls, *args: Incomplete, **kwargs: Incomplete)... method addCallback (line 1614) | def addCallback(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method removeCallback (line 1616) | def removeCallback(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method addUFEItemCallback (line 1618) | def addUFEItemCallback(*args: Incomplete, **kwargs: Incomplete) -> Inc... method removeUFEItemCallback (line 1620) | def removeUFEItemCallback(*args: Incomplete, **kwargs: Incomplete) -> ... FILE: maya/stubs/maya-stubs/api/MDGContextGuard.pyi class MDGContextGuard (line 6) | class MDGContextGuard: FILE: maya/stubs/maya-stubs/api/OpenMaya.pyi class MAngle (line 13) | class MAngle: method __init__ (line 22) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method asUnits (line 23) | def asUnits(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asRadians (line 24) | def asRadians(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asDegrees (line 25) | def asDegrees(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asAngMinutes (line 26) | def asAngMinutes(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asAngSeconds (line 27) | def asAngSeconds(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method uiUnit (line 29) | def uiUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUIUnit (line 31) | def setUIUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method internalUnit (line 33) | def internalUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method internalToUI (line 35) | def internalToUI(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uiToInternal (line 37) | def uiToInternal(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MArgList (line 39) | class MArgList: method __init__ (line 41) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 42) | def __len__(self) -> int: ... method addArg (line 43) | def addArg(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asAngle (line 44) | def asAngle(self, index: Incomplete) -> MAngle: ... method asBool (line 45) | def asBool(self, index: Incomplete) -> bool: ... method asDistance (line 46) | def asDistance(self, index: Incomplete) -> MDistance: ... method asDouble (line 47) | def asDouble(self, index: Incomplete) -> float: ... method asDoubleArray (line 48) | def asDoubleArray(self, index: Incomplete) -> MDoubleArray: ... method asFloat (line 49) | def asFloat(self, index: Incomplete) -> float: ... method asInt (line 50) | def asInt(self, index: Incomplete) -> int: ... method asIntArray (line 51) | def asIntArray(self, index: Incomplete) -> MIntArray: ... method asMatrix (line 52) | def asMatrix(self, index: Incomplete) -> MMatrix: ... method asPoint (line 53) | def asPoint(self, index: Incomplete) -> MPoint: ... method asString (line 54) | def asString(self, index: Incomplete) -> str: ... method asStringArray (line 55) | def asStringArray(self, index: Incomplete) -> list[str]: ... method asTime (line 56) | def asTime(self, index: Incomplete) -> MTime: ... method asVector (line 57) | def asVector(self, index: Incomplete) -> MVector: ... method flagIndex (line 58) | def flagIndex(self, shortFlag: Incomplete, longFlag: Incomplete = ...)... method lastArgUsed (line 59) | def lastArgUsed(self) -> int: ... class MArgParser (line 61) | class MArgParser: method __init__ (line 65) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method commandArgumentBool (line 66) | def commandArgumentBool(self, argIndex: Incomplete) -> bool: ... method commandArgumentDouble (line 67) | def commandArgumentDouble(self, *args: Incomplete, **kwargs: Incomplet... method commandArgumentFloat (line 68) | def commandArgumentFloat(self, argIndex: Incomplete) -> float: ... method commandArgumentInt (line 69) | def commandArgumentInt(self, argIndex: Incomplete) -> int: ... method commandArgumentMAngle (line 70) | def commandArgumentMAngle(self, argIndex: Incomplete) -> MAngle: ... method commandArgumentMDistance (line 71) | def commandArgumentMDistance(self, argIndex: Incomplete) -> MDistance:... method commandArgumentMTime (line 72) | def commandArgumentMTime(self, argIndex: Incomplete) -> MTime: ... method commandArgumentString (line 73) | def commandArgumentString(self, argIndex: Incomplete) -> str: ... method flagArgumentBool (line 74) | def flagArgumentBool(self, flagName: Incomplete, argIndex: Incomplete)... method flagArgumentDouble (line 75) | def flagArgumentDouble(self, flagName: Incomplete, argIndex: Incomplet... method flagArgumentFloat (line 76) | def flagArgumentFloat(self, flagName: Incomplete, argIndex: Incomplete... method flagArgumentInt (line 77) | def flagArgumentInt(self, flagName: Incomplete, argIndex: Incomplete) ... method flagArgumentMAngle (line 78) | def flagArgumentMAngle(self, flagName: Incomplete, argIndex: Incomplet... method flagArgumentMDistance (line 79) | def flagArgumentMDistance(self, flagName: Incomplete, argIndex: Incomp... method flagArgumentMTime (line 80) | def flagArgumentMTime(self, flagName: Incomplete, argIndex: Incomplete... method flagArgumentString (line 81) | def flagArgumentString(self, flagName: Incomplete, argIndex: Incomplet... method getFlagArgumentList (line 82) | def getFlagArgumentList(self, flagName: Incomplete, occurrence: Incomp... method getFlagArgumentPosition (line 83) | def getFlagArgumentPosition(self, flagName: Incomplete, occurrence: In... method getObjectStrings (line 84) | def getObjectStrings(self) -> tuple[str, ...]: ... method isFlagSet (line 85) | def isFlagSet(self, flagName: Incomplete) -> bool: ... method numberOfFlagUses (line 86) | def numberOfFlagUses(self, flagName: Incomplete) -> int: ... class MArgDatabase (line 88) | class MArgDatabase(MArgParser): method __init__ (line 89) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method commandArgumentMSelectionList (line 90) | def commandArgumentMSelectionList(self, argIndex: Incomplete) -> MSele... method flagArgumentMSelectionList (line 91) | def flagArgumentMSelectionList(self, flagName: Incomplete, argIndex: I... method getObjectList (line 92) | def getObjectList(self) -> MSelectionList: ... class MArrayDataBuilder (line 94) | class MArrayDataBuilder: method __init__ (line 95) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 96) | def __len__(self) -> int: ... method addElement (line 97) | def addElement(self, index: int) -> MDataHandle: ... method addElementArray (line 98) | def addElementArray(self, index: int) -> MArrayDataHandle: ... method addLast (line 99) | def addLast(self) -> MDataHandle: ... method addLastArray (line 100) | def addLastArray(self) -> MArrayDataHandle: ... method copy (line 101) | def copy(self, source: MArrayDataBuilder) -> Self: ... method growArray (line 102) | def growArray(self, amount: int) -> Self: ... method removeElement (line 103) | def removeElement(self, index: int) -> Self: ... method setGrowSize (line 104) | def setGrowSize(self, size: int) -> Self: ... class MArrayDataHandle (line 106) | class MArrayDataHandle: method __init__ (line 107) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 108) | def __len__(self) -> int: ... method builder (line 109) | def builder(self) -> MArrayDataBuilder: ... method copy (line 110) | def copy(self, source: MArrayDataHandle) -> Self: ... method elementLogicalIndex (line 111) | def elementLogicalIndex(self) -> int: ... method inputArrayValue (line 112) | def inputArrayValue(self) -> MArrayDataHandle: ... method inputValue (line 113) | def inputValue(self) -> MDataHandle: ... method isDone (line 114) | def isDone(self) -> bool: ... method jumpToPhysicalElement (line 115) | def jumpToPhysicalElement(self, position: int) -> Self: ... method jumpToLogicalElement (line 116) | def jumpToLogicalElement(self, index: int) -> Self: ... method next (line 117) | def next(self) -> bool: ... method outputArrayValue (line 118) | def outputArrayValue(self) -> MArrayDataHandle: ... method outputValue (line 119) | def outputValue(self) -> MDataHandle: ... method set (line 120) | def set(self, builder: MArrayDataBuilder) -> Self: ... method setAllClean (line 121) | def setAllClean(self) -> Self: ... method setClean (line 122) | def setClean(self) -> Self: ... class MAttributePattern (line 124) | class MAttributePattern: method __init__ (line 125) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method name (line 126) | def name(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method rootAttrCount (line 127) | def rootAttrCount(self, *args: Incomplete, **kwargs: Incomplete) -> In... method rootAttr (line 128) | def rootAttr(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method removeRootAttr (line 129) | def removeRootAttr(self, *args: Incomplete, **kwargs: Incomplete) -> I... method addRootAttr (line 130) | def addRootAttr(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method attrPatternCount (line 132) | def attrPatternCount(*args: Incomplete, **kwargs: Incomplete) -> Incom... method attrPattern (line 134) | def attrPattern(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method findPattern (line 136) | def findPattern(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MAttributeIndex (line 138) | class MAttributeIndex: method __lt__ (line 141) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 142) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 143) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 144) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 145) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 146) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 147) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method copy (line 148) | def copy(self, source: MAttributeIndex) -> Self: ... method getLower (line 149) | def getLower(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getUpper (line 150) | def getUpper(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getValue (line 151) | def getValue(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasLowerBound (line 152) | def hasLowerBound(self) -> bool: ... method hasRange (line 153) | def hasRange(self) -> bool: ... method hasUpperBound (line 154) | def hasUpperBound(self) -> bool: ... method hasValidRange (line 155) | def hasValidRange(self) -> bool: ... method isBounded (line 156) | def isBounded(self) -> bool: ... method setLower (line 157) | def setLower(self, value: Incomplete) -> Self: ... method setType (line 158) | def setType(self, type: int) -> Self: ... method setUpper (line 159) | def setUpper(self, value: Incomplete) -> Self: ... method setValue (line 160) | def setValue(self, value: Incomplete) -> Self: ... method type (line 161) | def type(self) -> int: ... class MAttributeSpec (line 163) | class MAttributeSpec: method __lt__ (line 166) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 167) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 168) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 169) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 170) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 171) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 172) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 173) | def __len__(self) -> int: ... method __getitem__ (line 174) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method copy (line 175) | def copy(self, source: MAttributeSpec) -> Self: ... class MAttributeSpecArray (line 177) | class MAttributeSpecArray: method __init__ (line 179) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 180) | def __len__(self) -> int: ... method __getitem__ (line 181) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 182) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 183) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 184) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 185) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 186) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 187) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 188) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 189) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 190) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 191) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 192) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 193) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 194) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 195) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MBoundingBox (line 197) | class MBoundingBox: method __init__ (line 204) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method clear (line 205) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method transformUsing (line 206) | def transformUsing(self, *args: Incomplete, **kwargs: Incomplete) -> I... method expand (line 207) | def expand(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method contains (line 208) | def contains(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method intersects (line 209) | def intersects(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MCacheSchema (line 211) | class MCacheSchema: method __init__ (line 212) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method add (line 213) | def add(self, attribute: MObject) -> Self: ... method reset (line 214) | def reset(self) -> Any: ... class MNodeCacheDisablingInfo (line 216) | class MNodeCacheDisablingInfo: method __init__ (line 217) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setCacheDisabled (line 218) | def setCacheDisabled(self, bool: Incomplete) -> Any: ... method getCacheDisabled (line 219) | def getCacheDisabled(self) -> bool: ... method setReason (line 220) | def setReason(self, reason: Incomplete) -> Any: ... method setMitigation (line 221) | def setMitigation(self, mitigation: Incomplete) -> Any: ... method reset (line 222) | def reset(self) -> Any: ... class MNodeCacheSetupInfo (line 224) | class MNodeCacheSetupInfo: method __init__ (line 229) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getPreference (line 230) | def getPreference(self, PreferenceFlag: Incomplete) -> bool: ... method setPreference (line 231) | def setPreference(self, PreferenceFlag: Incomplete, bool: Incomplete) ... method getRequirement (line 232) | def getRequirement(self, RequirementFlag: Incomplete) -> bool: ... method setRequirement (line 233) | def setRequirement(self, RequirementFlag: Incomplete, bool: Incomplete... class MCallbackIdArray (line 235) | class MCallbackIdArray: method __init__ (line 237) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 238) | def __len__(self) -> int: ... method __getitem__ (line 239) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 240) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 241) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 242) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 243) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 244) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 245) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 246) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 247) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 248) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 249) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 250) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 251) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 252) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 253) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MColor (line 255) | class MColor: method __lt__ (line 268) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 269) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 270) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 271) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 272) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 273) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 274) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 275) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 276) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 277) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 278) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 279) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 280) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __truediv__ (line 281) | def __truediv__(self, value: Incomplete) -> Incomplete: ... method __rtruediv__ (line 282) | def __rtruediv__(self, value: Incomplete) -> Incomplete: ... method __itruediv__ (line 283) | def __itruediv__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 284) | def __len__(self) -> int: ... method __getitem__ (line 285) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 286) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 287) | def __delitem__(self, key: Incomplete) -> None: ... method getColor (line 288) | def getColor(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setColor (line 289) | def setColor(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MColorArray (line 291) | class MColorArray: method __init__ (line 293) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 294) | def __len__(self) -> int: ... method __getitem__ (line 295) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 296) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 297) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 298) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 299) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 300) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 301) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 302) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 303) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 304) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 305) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 306) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 307) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 308) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 309) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MDAGDrawOverrideInfo (line 311) | class MDAGDrawOverrideInfo: method __init__ (line 324) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MDagPath (line 326) | class MDagPath: method __lt__ (line 327) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 328) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 329) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 330) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 331) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 332) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 333) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getAllPathsTo (line 335) | def getAllPathsTo(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method getAPathTo (line 337) | def getAPathTo(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method matchTransform (line 339) | def matchTransform(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method apiType (line 340) | def apiType(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method child (line 341) | def child(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method childCount (line 342) | def childCount(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method exclusiveMatrix (line 343) | def exclusiveMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> ... method exclusiveMatrixInverse (line 344) | def exclusiveMatrixInverse(self, *args: Incomplete, **kwargs: Incomple... method extendToShape (line 345) | def extendToShape(self, *args: Incomplete, **kwargs: Incomplete) -> In... method fullPathName (line 346) | def fullPathName(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDisplayStatus (line 347) | def getDisplayStatus(self, *args: Incomplete, **kwargs: Incomplete) ->... method getDrawOverrideInfo (line 348) | def getDrawOverrideInfo(self, *args: Incomplete, **kwargs: Incomplete)... method getPath (line 349) | def getPath(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method hasFn (line 350) | def hasFn(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method inclusiveMatrix (line 351) | def inclusiveMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> ... method inclusiveMatrixInverse (line 352) | def inclusiveMatrixInverse(self, *args: Incomplete, **kwargs: Incomple... method instanceNumber (line 353) | def instanceNumber(self, *args: Incomplete, **kwargs: Incomplete) -> I... method isInstanced (line 354) | def isInstanced(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isTemplated (line 355) | def isTemplated(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isValid (line 356) | def isValid(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isVisible (line 357) | def isVisible(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method length (line 358) | def length(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method node (line 359) | def node(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method numberOfShapesDirectlyBelow (line 360) | def numberOfShapesDirectlyBelow(self, *args: Incomplete, **kwargs: Inc... method partialPathName (line 361) | def partialPathName(self, *args: Incomplete, **kwargs: Incomplete) -> ... method pathCount (line 362) | def pathCount(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method pop (line 363) | def pop(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method push (line 364) | def push(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method set (line 365) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method transform (line 366) | def transform(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MDagPathArray (line 368) | class MDagPathArray: method __init__ (line 370) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 371) | def __len__(self) -> int: ... method __getitem__ (line 372) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 373) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 374) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 375) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 376) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 377) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 378) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 379) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 380) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 381) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 382) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 383) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 384) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 385) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 386) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MDGContext (line 388) | class MDGContext: method __init__ (line 390) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method copy (line 391) | def copy(self, source: MDGContext) -> Self: ... method getTime (line 392) | def getTime(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method isCurrent (line 393) | def isCurrent(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isNormal (line 394) | def isNormal(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method current (line 396) | def current(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method makeCurrent (line 397) | def makeCurrent(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MDGModifier (line 399) | class MDGModifier: method __init__ (line 400) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addAttribute (line 401) | def addAttribute(self, MObjectnode: Incomplete, MObjectattribute: Inco... method addExtensionAttribute (line 402) | def addExtensionAttribute(self, MNodeClassnodeClass: Incomplete, MObje... method commandToExecute (line 404) | def commandToExecute(self, command: Incomplete) -> Self: ... method commandToExecute (line 406) | def commandToExecute(self) -> Any: ... method commandToExecute (line 408) | def commandToExecute(self) -> Any: ... # type: ignore[overload-cannot... method connect (line 409) | def connect(self, MPlugsource: Incomplete, MPlugdest: Incomplete) -> S... method createNode (line 411) | def createNode(self, typeName: Incomplete) -> MObject: ... method createNode (line 413) | def createNode(self, MTypeIdtypeId: Incomplete) -> MObject: ... method deleteNode (line 415) | def deleteNode(self) -> Any: ... method deleteNode (line 417) | def deleteNode(self) -> Any: ... # type: ignore[overload-cannot-match] method disconnect (line 418) | def disconnect(self, MPlugsource: Incomplete, MPlugdest: Incomplete) -... method doIt (line 420) | def doIt(self) -> Self: ... method doIt (line 422) | def doIt(self) -> Any: ... # type: ignore[overload-cannot-match] method doIt (line 424) | def doIt(self) -> Any: ... # type: ignore[overload-cannot-match] method doIt (line 426) | def doIt(self) -> Any: ... # type: ignore[overload-cannot-match] method linkExtensionAttributeToPlugin (line 427) | def linkExtensionAttributeToPlugin(self, MObjectplugin: Incomplete, MO... method newPlugValue (line 428) | def newPlugValue(self, MPlugplug: Incomplete, MObjectvalue: Incomplete... method newPlugValueBool (line 429) | def newPlugValueBool(self, MPlugplug: Incomplete, boolvalue: Incomplet... method newPlugValueChar (line 430) | def newPlugValueChar(self, MPlugplug: Incomplete, intvalue: Incomplete... method newPlugValueDouble (line 431) | def newPlugValueDouble(self, MPlugplug: Incomplete, floatvalue: Incomp... method newPlugValueFloat (line 432) | def newPlugValueFloat(self, MPlugplug: Incomplete, floatvalue: Incompl... method newPlugValueInt (line 433) | def newPlugValueInt(self, MPlugplug: Incomplete, intvalue: Incomplete)... method newPlugValueMAngle (line 434) | def newPlugValueMAngle(self, MPlugplug: Incomplete, MAnglevalue: Incom... method newPlugValueMDistance (line 435) | def newPlugValueMDistance(self, MPlugplug: Incomplete, MDistancevalue:... method newPlugValueMTime (line 436) | def newPlugValueMTime(self, MPlugplug: Incomplete, MTimevalue: Incompl... method newPlugValueShort (line 437) | def newPlugValueShort(self, MPlugplug: Incomplete, intvalue: Incomplet... method newPlugValueString (line 438) | def newPlugValueString(self, MPlugplug: Incomplete, stringvalue: Incom... method pythonCommandToExecute (line 439) | def pythonCommandToExecute(self) -> Any: ... method removeAttribute (line 440) | def removeAttribute(self, MObjectnode: Incomplete, MObjectattribute: I... method removeExtensionAttribute (line 441) | def removeExtensionAttribute(self, MNodeClassnodeClass: Incomplete, MO... method removeExtensionAttributeIfUnset (line 442) | def removeExtensionAttributeIfUnset(self, *args: Incomplete, **kwargs:... method removeMultiInstance (line 443) | def removeMultiInstance(self, MPlugplug: Incomplete, boolbreakConnecti... method renameAttribute (line 444) | def renameAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> ... method renameNode (line 445) | def renameNode(self, MObjectnode: Incomplete, stringnewName: Incomplet... method setNodeLockState (line 446) | def setNodeLockState(self, MObjectnode: Incomplete, boolnewState: Inco... method undoIt (line 447) | def undoIt(self) -> Self: ... method unlinkExtensionAttributeFromPlugin (line 448) | def unlinkExtensionAttributeFromPlugin(self, *args: Incomplete, **kwar... class MDagModifier (line 450) | class MDagModifier(MDGModifier): method __init__ (line 451) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method createNode (line 453) | def createNode(self, typeName: Incomplete, parent: Incomplete = ...) -... method createNode (line 455) | def createNode(self, typeId: Incomplete, parent: Incomplete = ...) -> ... method reparentNode (line 456) | def reparentNode(self, MObjectnode: Incomplete, newParent: Incomplete ... class MDataBlock (line 458) | class MDataBlock: method __init__ (line 459) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method context (line 460) | def context(self) -> MDGContext: ... method inputArrayValue (line 462) | def inputArrayValue(self, plug: MPlug) -> MArrayDataHandle: ... method inputArrayValue (line 464) | def inputArrayValue(self, attribute: MObject) -> MArrayDataHandle: ... method inputValue (line 466) | def inputValue(self, plug: MPlug) -> MDataHandle: ... method inputValue (line 468) | def inputValue(self, attribute: MObject) -> MDataHandle: ... method isClean (line 470) | def isClean(self, plug: MPlug) -> bool: ... method isClean (line 472) | def isClean(self, attribute: MObject) -> bool: ... method outputArrayValue (line 474) | def outputArrayValue(self, plug: MPlug) -> MArrayDataHandle: ... method outputArrayValue (line 476) | def outputArrayValue(self, attribute: MObject) -> MArrayDataHandle: ... method outputValue (line 478) | def outputValue(self, plug: MPlug) -> MDataHandle: ... method outputValue (line 480) | def outputValue(self, attribute: MObject) -> MDataHandle: ... method setClean (line 482) | def setClean(self, plug: MPlug) -> Self: ... method setClean (line 484) | def setClean(self, attribute: MObject) -> Self: ... method setContext (line 485) | def setContext(self, ctx: MDGContext) -> Self: ... class MDataHandle (line 487) | class MDataHandle: method __init__ (line 488) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acceptedTypeIds (line 489) | def acceptedTypeIds(self) -> arrayofMTypeIds: ... # type: ignore[name... method asAddr (line 490) | def asAddr(self) -> float: ... method asAngle (line 491) | def asAngle(self) -> MAngle: ... method asBool (line 492) | def asBool(self) -> bool: ... method asChar (line 493) | def asChar(self) -> int: ... method asDistance (line 494) | def asDistance(self) -> MDistance: ... method asDouble (line 495) | def asDouble(self) -> float: ... method asDouble2 (line 496) | def asDouble2(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asDouble3 (line 497) | def asDouble3(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asDouble4 (line 498) | def asDouble4(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asFloat (line 499) | def asFloat(self) -> float: ... method asFloat2 (line 500) | def asFloat2(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asFloat3 (line 501) | def asFloat3(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asFloatMatrix (line 502) | def asFloatMatrix(self) -> MFloatMatrix: ... method asFloatVector (line 503) | def asFloatVector(self) -> MFloatVector: ... method asGenericBool (line 504) | def asGenericBool(self) -> bool: ... method asGenericChar (line 505) | def asGenericChar(self) -> int: ... method asGenericDouble (line 506) | def asGenericDouble(self) -> float: ... method asGenericFloat (line 507) | def asGenericFloat(self) -> float: ... method asGenericInt (line 508) | def asGenericInt(self) -> int: ... method asGenericShort (line 509) | def asGenericShort(self) -> int: ... method asInt (line 510) | def asInt(self) -> int: ... method asInt2 (line 511) | def asInt2(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asInt3 (line 512) | def asInt3(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asMatrix (line 513) | def asMatrix(self) -> MMatrix: ... method asMesh (line 514) | def asMesh(self) -> MObject: ... method asMeshTransformed (line 515) | def asMeshTransformed(self) -> MObject: ... method asNurbsCurve (line 516) | def asNurbsCurve(self) -> MObject: ... method asNurbsCurveTransformed (line 517) | def asNurbsCurveTransformed(self) -> MObject: ... method asNurbsSurface (line 518) | def asNurbsSurface(self) -> MObject: ... method asNurbsSurfaceTransformed (line 519) | def asNurbsSurfaceTransformed(self) -> MObject: ... method asPluginData (line 520) | def asPluginData(self) -> MPxData: ... method asShort (line 521) | def asShort(self) -> int: ... method asShort2 (line 522) | def asShort2(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asShort3 (line 523) | def asShort3(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asString (line 524) | def asString(self) -> str: ... method asSubdSurface (line 525) | def asSubdSurface(self) -> MObject: ... method asSubdSurfaceTransformed (line 526) | def asSubdSurfaceTransformed(self) -> MObject: ... method asTime (line 527) | def asTime(self) -> MTime: ... method asUChar (line 528) | def asUChar(self) -> int: ... method asVector (line 529) | def asVector(self) -> MVector: ... method child (line 531) | def child(self, MPlug: Incomplete) -> MDataHandle: ... method child (line 533) | def child(self, MObject: Incomplete) -> MDataHandle: ... method copy (line 534) | def copy(self, src: MDataHandle) -> Self: ... method copyWritable (line 535) | def copyWritable(self, src: MDataHandle) -> Self: ... method data (line 536) | def data(self) -> MObject: ... method geometryTransformMatrix (line 537) | def geometryTransformMatrix(self) -> MMatrix: ... method isGeneric (line 538) | def isGeneric(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isNumeric (line 539) | def isNumeric(self) -> bool: ... method numericType (line 540) | def numericType(self) -> int: ... method set2Double (line 541) | def set2Double(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method set2Float (line 542) | def set2Float(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method set2Int (line 543) | def set2Int(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method set2Short (line 544) | def set2Short(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method set3Double (line 545) | def set3Double(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method set4Double (line 546) | def set4Double(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method set3Float (line 547) | def set3Float(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method set3Int (line 548) | def set3Int(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method set3Short (line 549) | def set3Short(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setBool (line 550) | def setBool(self, bool: Incomplete) -> Self: ... method setChar (line 551) | def setChar(self, int: int) -> Self: ... method setClean (line 552) | def setClean(self) -> Self: ... method setDouble (line 553) | def setDouble(self, float: Incomplete) -> Self: ... method setFloat (line 554) | def setFloat(self, float: Incomplete) -> Self: ... method setGenericBool (line 555) | def setGenericBool(self, bool: Incomplete, force: Incomplete) -> Self:... method setGenericChar (line 556) | def setGenericChar(self, int: int, force: Incomplete) -> Self: ... method setGenericDouble (line 557) | def setGenericDouble(self, float: Incomplete, force: Incomplete) -> Se... method setGenericFloat (line 558) | def setGenericFloat(self, float: Incomplete, force: Incomplete) -> Sel... method setGenericInt (line 559) | def setGenericInt(self, int: int, force: Incomplete) -> Self: ... method setGenericShort (line 560) | def setGenericShort(self, int: int, force: Incomplete) -> Self: ... method setInt (line 561) | def setInt(self, int: int) -> Self: ... method setMAngle (line 562) | def setMAngle(self, MAngle: Incomplete) -> Self: ... method setMDistance (line 563) | def setMDistance(self, MDistance: Incomplete) -> Self: ... method setMFloatMatrix (line 564) | def setMFloatMatrix(self, MFloatMatrix: Incomplete) -> Self: ... method setMFloatVector (line 565) | def setMFloatVector(self, MFloatVector: Incomplete) -> Self: ... method setMMatrix (line 566) | def setMMatrix(self, MMatrix: Incomplete) -> Self: ... method setMObject (line 567) | def setMObject(self, MObject: Incomplete) -> Self: ... method setMPxData (line 568) | def setMPxData(self, MPxData: Incomplete) -> Self: ... method setMTime (line 569) | def setMTime(self, MTime: Incomplete) -> Self: ... method setMVector (line 570) | def setMVector(self, MVector: Incomplete) -> Self: ... method setShort (line 571) | def setShort(self, int: int) -> Self: ... method setString (line 572) | def setString(self, string: str) -> Self: ... method type (line 573) | def type(self) -> int: ... method typeId (line 574) | def typeId(self) -> MTypeId: ... method datablock (line 575) | def datablock(self) -> MDataBlock: ... class MDistance (line 577) | class MDistance: method __init__ (line 590) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method uiUnit (line 592) | def uiUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUIUnit (line 594) | def setUIUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method internalUnit (line 596) | def internalUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method internalToUI (line 598) | def internalToUI(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method uiToInternal (line 600) | def uiToInternal(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asUnits (line 601) | def asUnits(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asInches (line 602) | def asInches(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asFeet (line 603) | def asFeet(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asYards (line 604) | def asYards(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asMiles (line 605) | def asMiles(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asMillimeters (line 606) | def asMillimeters(self, *args: Incomplete, **kwargs: Incomplete) -> In... method asCentimeters (line 607) | def asCentimeters(self, *args: Incomplete, **kwargs: Incomplete) -> In... method asKilometers (line 608) | def asKilometers(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asMeters (line 609) | def asMeters(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MDoubleArray (line 611) | class MDoubleArray: method __init__ (line 613) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 614) | def __len__(self) -> int: ... method __getitem__ (line 615) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 616) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 617) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 618) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 619) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 620) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 621) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 622) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 623) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 624) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 625) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 626) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 627) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 628) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 629) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MEulerRotation (line 631) | class MEulerRotation: method __lt__ (line 644) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 645) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 646) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 647) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 648) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 649) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 650) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 651) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 652) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 653) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 654) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 655) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 656) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __neg__ (line 657) | def __neg__(self) -> Incomplete: ... method __iadd__ (line 658) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 659) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 660) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 661) | def __len__(self) -> int: ... method __getitem__ (line 662) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 663) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 664) | def __delitem__(self, key: Incomplete) -> None: ... method computeAlternateSolution (line 666) | def computeAlternateSolution(*args: Incomplete, **kwargs: Incomplete) ... method computeBound (line 668) | def computeBound(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method computeClosestCut (line 670) | def computeClosestCut(*args: Incomplete, **kwargs: Incomplete) -> Inco... method computeClosestSolution (line 672) | def computeClosestSolution(*args: Incomplete, **kwargs: Incomplete) ->... method decompose (line 674) | def decompose(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method alternateSolution (line 675) | def alternateSolution(self, *args: Incomplete, **kwargs: Incomplete) -... method asMatrix (line 676) | def asMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asQuaternion (line 677) | def asQuaternion(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method asVector (line 678) | def asVector(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method bound (line 679) | def bound(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method boundIt (line 680) | def boundIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method closestCut (line 681) | def closestCut(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method closestSolution (line 682) | def closestSolution(self, *args: Incomplete, **kwargs: Incomplete) -> ... method incrementalRotateBy (line 683) | def incrementalRotateBy(self, *args: Incomplete, **kwargs: Incomplete)... method inverse (line 684) | def inverse(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method invertIt (line 685) | def invertIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isEquivalent (line 686) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isZero (line 687) | def isZero(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method reorder (line 688) | def reorder(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method reorderIt (line 689) | def reorderIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setToAlternateSolution (line 690) | def setToAlternateSolution(self, *args: Incomplete, **kwargs: Incomple... method setToClosestCut (line 691) | def setToClosestCut(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setToClosestSolution (line 692) | def setToClosestSolution(self, *args: Incomplete, **kwargs: Incomplete... method setValue (line 693) | def setValue(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MEvaluationNode (line 695) | class MEvaluationNode: method __init__ (line 696) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iterator (line 697) | def iterator(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method dirtyPlugExists (line 698) | def dirtyPlugExists(self, *args: Incomplete, **kwargs: Incomplete) -> ... method dirtyPlug (line 699) | def dirtyPlug(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method dependencyNode (line 700) | def dependencyNode(self, *args: Incomplete, **kwargs: Incomplete) -> I... method datablock (line 701) | def datablock(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MEvaluationNodeIterator (line 703) | class MEvaluationNodeIterator: method __init__ (line 704) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method plug (line 705) | def plug(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method isDone (line 706) | def isDone(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method next (line 707) | def next(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method reset (line 708) | def reset(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... class MExternalContentInfoTable (line 710) | class MExternalContentInfoTable: method __init__ (line 711) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 712) | def __len__(self) -> int: ... method __getitem__ (line 713) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method addResolvedEntry (line 714) | def addResolvedEntry(self, key: str, unresolvedLocation: Incomplete, r... method addUnresolvedEntry (line 715) | def addUnresolvedEntry(self, key: str, unresolvedLocation: str, contex... method getEntry (line 716) | def getEntry(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getInfo (line 717) | def getInfo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MExternalContentLocationTable (line 719) | class MExternalContentLocationTable: method __init__ (line 720) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 721) | def __len__(self) -> int: ... method __getitem__ (line 722) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method addEntry (line 723) | def addEntry(self, key: str, location: Incomplete) -> Self: ... method getEntry (line 724) | def getEntry(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getLocation (line 725) | def getLocation(self, key: str) -> str: ... class MFileObject (line 727) | class MFileObject: method __init__ (line 738) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method copy (line 739) | def copy(self, source: MFileObject) -> Self: ... method exists (line 740) | def exists(self, index: int = ...) -> bool: ... method expandedFullName (line 741) | def expandedFullName(self) -> str: ... method expandedPath (line 742) | def expandedPath(self) -> str: ... method fullName (line 743) | def fullName(self, index: int) -> str: ... method getResolvedFullName (line 745) | def getResolvedFullName(rawFullName: str) -> str: ... method getResolvedFullNameAndExistsStatus (line 747) | def getResolvedFullNameAndExistsStatus(*args: Incomplete, **kwargs: In... method isAbsolutePath (line 749) | def isAbsolutePath(fileName: str) -> bool: ... method isSet (line 750) | def isSet(self) -> bool: ... method overrideResolvedFullName (line 751) | def overrideResolvedFullName(self, fullFileName: Incomplete, reresolve... method path (line 752) | def path(self, index: int) -> str: ... method pathCount (line 753) | def pathCount(self) -> int: ... method rawFullName (line 754) | def rawFullName(self) -> str: ... method rawName (line 755) | def rawName(self) -> str: ... method rawPath (line 756) | def rawPath(self) -> str: ... method rawURI (line 757) | def rawURI(self) -> MURI: ... method resolvedFullName (line 758) | def resolvedFullName(self) -> str: ... method resolvedName (line 759) | def resolvedName(self) -> str: ... method resolvedPath (line 760) | def resolvedPath(self) -> str: ... method setRawFullName (line 761) | def setRawFullName(self, fullFileName: str) -> Self: ... method setRawName (line 762) | def setRawName(self, fileName: str) -> Self: ... method setRawPath (line 763) | def setRawPath(self, pathName: str) -> Self: ... method setRawURI (line 764) | def setRawURI(self, uri: string | MURI) -> Self: ... # type: ignore[n... class MFloatArray (line 766) | class MFloatArray: method __init__ (line 768) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 769) | def __len__(self) -> int: ... method __getitem__ (line 770) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 771) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 772) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 773) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 774) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 775) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 776) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 777) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 778) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 779) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 780) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 781) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 782) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 783) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 784) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFloatMatrix (line 786) | class MFloatMatrix: method __lt__ (line 788) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 789) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 790) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 791) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 792) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 793) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 794) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 795) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 796) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 797) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 798) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 799) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 800) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 801) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 802) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 803) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 804) | def __len__(self) -> int: ... method __getitem__ (line 805) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 806) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 807) | def __delitem__(self, key: Incomplete) -> None: ... method getElement (line 808) | def getElement(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setElement (line 809) | def setElement(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setToIdentity (line 810) | def setToIdentity(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setToProduct (line 811) | def setToProduct(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method transpose (line 812) | def transpose(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method inverse (line 813) | def inverse(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method adjoint (line 814) | def adjoint(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method homogenize (line 815) | def homogenize(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method det4x4 (line 816) | def det4x4(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method det3x3 (line 817) | def det3x3(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isEquivalent (line 818) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFloatPoint (line 820) | class MFloatPoint: method __lt__ (line 827) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 828) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 829) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 830) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 831) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 832) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 833) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 834) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 835) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 836) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 837) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 838) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 839) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 840) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 841) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 842) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __truediv__ (line 843) | def __truediv__(self, value: Incomplete) -> Incomplete: ... method __rtruediv__ (line 844) | def __rtruediv__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 845) | def __len__(self) -> int: ... method __getitem__ (line 846) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 847) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 848) | def __delitem__(self, key: Incomplete) -> None: ... method cartesianize (line 849) | def cartesianize(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rationalize (line 850) | def rationalize(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method homogenize (line 851) | def homogenize(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method distanceTo (line 852) | def distanceTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isEquivalent (line 853) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFloatPointArray (line 855) | class MFloatPointArray: method __init__ (line 857) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 858) | def __len__(self) -> int: ... method __getitem__ (line 859) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 860) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 861) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 862) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 863) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 864) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 865) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 866) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 867) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 868) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 869) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 870) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 871) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 872) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 873) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFloatVector (line 875) | class MFloatVector: method __lt__ (line 888) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 889) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 890) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 891) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 892) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 893) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 894) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 895) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 896) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 897) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 898) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 899) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 900) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __neg__ (line 901) | def __neg__(self) -> Incomplete: ... method __xor__ (line 902) | def __xor__(self, value: Incomplete) -> Incomplete: ... method __rxor__ (line 903) | def __rxor__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 904) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 905) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 906) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __truediv__ (line 907) | def __truediv__(self, value: Incomplete) -> Incomplete: ... method __rtruediv__ (line 908) | def __rtruediv__(self, value: Incomplete) -> Incomplete: ... method __itruediv__ (line 909) | def __itruediv__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 910) | def __len__(self) -> int: ... method __getitem__ (line 911) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 912) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 913) | def __delitem__(self, key: Incomplete) -> None: ... method length (line 914) | def length(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method normal (line 915) | def normal(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method normalize (line 916) | def normalize(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method transformAsNormal (line 917) | def transformAsNormal(self, *args: Incomplete, **kwargs: Incomplete) -... method angle (line 918) | def angle(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isEquivalent (line 919) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isParallel (line 920) | def isParallel(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFloatVectorArray (line 922) | class MFloatVectorArray: method __init__ (line 924) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 925) | def __len__(self) -> int: ... method __getitem__ (line 926) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 927) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 928) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 929) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 930) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 931) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 932) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 933) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 934) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 935) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 936) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 937) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 938) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 939) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 940) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFn (line 942) | class MFn: class MFnBase (line 2154) | class MFnBase: method __init__ (line 2155) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method hasObj (line 2156) | def hasObj(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method object (line 2157) | def object(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setObject (line 2158) | def setObject(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method type (line 2159) | def type(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MFnAttribute (line 2161) | class MFnAttribute(MFnBase): method __init__ (line 2192) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acceptsAttribute (line 2193) | def acceptsAttribute(self, *args: Incomplete, **kwargs: Incomplete) ->... method accepts (line 2194) | def accepts(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method addToCategory (line 2195) | def addToCategory(self, *args: Incomplete, **kwargs: Incomplete) -> In... method getAddAttrCmd (line 2196) | def getAddAttrCmd(self, *args: Incomplete, **kwargs: Incomplete) -> In... method pathName (line 2197) | def pathName(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasCategory (line 2198) | def hasCategory(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setNiceNameOverride (line 2199) | def setNiceNameOverride(self, *args: Incomplete, **kwargs: Incomplete)... class MFnCompoundAttribute (line 2201) | class MFnCompoundAttribute(MFnAttribute): method __init__ (line 2202) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addChild (line 2203) | def addChild(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method child (line 2204) | def child(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method create (line 2205) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getAddAttrCmds (line 2206) | def getAddAttrCmds(self, *args: Incomplete, **kwargs: Incomplete) -> I... method numChildren (line 2207) | def numChildren(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method removeChild (line 2208) | def removeChild(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnEnumAttribute (line 2210) | class MFnEnumAttribute(MFnAttribute): method __init__ (line 2212) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addField (line 2213) | def addField(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method create (line 2214) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method fieldName (line 2215) | def fieldName(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method fieldValue (line 2216) | def fieldValue(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getMax (line 2217) | def getMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getMin (line 2218) | def getMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setDefaultByName (line 2219) | def setDefaultByName(self, *args: Incomplete, **kwargs: Incomplete) ->... class MFnGenericAttribute (line 2221) | class MFnGenericAttribute(MFnAttribute): method __init__ (line 2222) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addDataType (line 2223) | def addDataType(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method addNumericType (line 2224) | def addNumericType(self, *args: Incomplete, **kwargs: Incomplete) -> I... method addTypeId (line 2225) | def addTypeId(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method create (line 2226) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method removeDataType (line 2227) | def removeDataType(self, *args: Incomplete, **kwargs: Incomplete) -> I... method removeNumericType (line 2228) | def removeNumericType(self, *args: Incomplete, **kwargs: Incomplete) -... method removeTypeId (line 2229) | def removeTypeId(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MFnLightDataAttribute (line 2231) | class MFnLightDataAttribute(MFnAttribute): method __init__ (line 2233) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method child (line 2234) | def child(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method create (line 2235) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnMatrixAttribute (line 2237) | class MFnMatrixAttribute(MFnAttribute): method __init__ (line 2241) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2242) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnMessageAttribute (line 2244) | class MFnMessageAttribute(MFnAttribute): method __init__ (line 2245) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2246) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnNumericAttribute (line 2248) | class MFnNumericAttribute(MFnAttribute): method __init__ (line 2250) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method child (line 2251) | def child(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method create (line 2252) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method createAddr (line 2253) | def createAddr(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method createColor (line 2254) | def createColor(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method createPoint (line 2255) | def createPoint(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getMax (line 2256) | def getMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getMin (line 2257) | def getMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getSoftMax (line 2258) | def getSoftMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getSoftMin (line 2259) | def getSoftMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasMax (line 2260) | def hasMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasMin (line 2261) | def hasMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasSoftMax (line 2262) | def hasSoftMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasSoftMin (line 2263) | def hasSoftMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method numericType (line 2264) | def numericType(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setMax (line 2265) | def setMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setMin (line 2266) | def setMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setSoftMax (line 2267) | def setSoftMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSoftMin (line 2268) | def setSoftMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MFnTypedAttribute (line 2270) | class MFnTypedAttribute(MFnAttribute): method __init__ (line 2272) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method attrType (line 2273) | def attrType(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method create (line 2274) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnUnitAttribute (line 2276) | class MFnUnitAttribute(MFnAttribute): method __init__ (line 2283) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2284) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getMax (line 2285) | def getMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getMin (line 2286) | def getMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getSoftMax (line 2287) | def getSoftMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getSoftMin (line 2288) | def getSoftMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasMax (line 2289) | def hasMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasMin (line 2290) | def hasMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method hasSoftMax (line 2291) | def hasSoftMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasSoftMin (line 2292) | def hasSoftMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setMax (line 2293) | def setMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setMin (line 2294) | def setMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setSoftMax (line 2295) | def setSoftMax(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSoftMin (line 2296) | def setSoftMin(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method unitType (line 2297) | def unitType(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MFnComponent (line 2299) | class MFnComponent(MFnBase): method __init__ (line 2305) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method isEqual (line 2306) | def isEqual(self, MObjectother: Incomplete) -> bool: ... method weight (line 2307) | def weight(self, index: Incomplete) -> MWeight: ... class MFnDoubleIndexedComponent (line 2309) | class MFnDoubleIndexedComponent(MFnComponent): method __init__ (line 2310) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addElement (line 2311) | def addElement(self, uIndex: Incomplete, vIndex: Incomplete) -> Self: ... method addElements (line 2312) | def addElements(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method create (line 2313) | def create(self, MFnTypeconstant: Incomplete) -> MObject: ... method getCompleteData (line 2314) | def getCompleteData(self, *args: Incomplete, **kwargs: Incomplete) -> ... method getElement (line 2315) | def getElement(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getElements (line 2316) | def getElements(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCompleteData (line 2317) | def setCompleteData(self, numU: Incomplete, numV: Incomplete) -> Self:... class MFnSingleIndexedComponent (line 2319) | class MFnSingleIndexedComponent(MFnComponent): method __init__ (line 2321) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addElement (line 2322) | def addElement(self, intelement: Incomplete) -> Self: ... method addElements (line 2323) | def addElements(self, MIntArray: Incomplete) -> Self: ... method create (line 2324) | def create(self, MFnTypeconstant: Incomplete) -> MObject: ... method element (line 2325) | def element(self, index: Incomplete) -> int: ... method getCompleteData (line 2326) | def getCompleteData(self) -> int: ... method getElements (line 2327) | def getElements(self) -> MIntArray: ... method setCompleteData (line 2328) | def setCompleteData(self, numElements: Incomplete) -> Self: ... class MFnTripleIndexedComponent (line 2330) | class MFnTripleIndexedComponent(MFnComponent): method __init__ (line 2331) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addElement (line 2332) | def addElement(self, sIndex: Incomplete, tIndex: Incomplete, uIndex: I... method addElements (line 2333) | def addElements(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method create (line 2334) | def create(self, MFnTypeconstant: Incomplete) -> MObject: ... method getCompleteData (line 2335) | def getCompleteData(self, *args: Incomplete, **kwargs: Incomplete) -> ... method getElement (line 2336) | def getElement(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getElements (line 2337) | def getElements(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setCompleteData (line 2338) | def setCompleteData(self, numS: Incomplete, numT: Incomplete, numU: In... class MFnData (line 2340) | class MFnData(MFnBase): method __init__ (line 2368) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MFnComponentListData (line 2370) | class MFnComponentListData(MFnData): method __init__ (line 2371) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method add (line 2372) | def add(self, MObject: Incomplete) -> Self: ... method clear (line 2373) | def clear(self) -> Self: ... method create (line 2374) | def create(self) -> MObject: ... method get (line 2375) | def get(self, index: Incomplete) -> MObject: ... method length (line 2376) | def length(self) -> int: ... method has (line 2377) | def has(self, MObject: Incomplete) -> bool: ... method remove (line 2379) | def remove(self, MObject: Incomplete) -> Self: ... method remove (line 2381) | def remove(self, index: Incomplete) -> Self: ... class MFnDoubleArrayData (line 2383) | class MFnDoubleArrayData(MFnData): method __init__ (line 2384) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2385) | def __len__(self) -> int: ... method __getitem__ (line 2386) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2387) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2388) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2389) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 2390) | def copyTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method create (line 2391) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2392) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnGeometryData (line 2394) | class MFnGeometryData(MFnData): method __init__ (line 2409) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addObjectGroup (line 2410) | def addObjectGroup(self, id: Incomplete) -> Self: ... method addObjectGroupComponent (line 2411) | def addObjectGroupComponent(self, id: Incomplete, MObjectcomponent: In... method changeObjectGroupId (line 2412) | def changeObjectGroupId(self, sourceId: Incomplete, destId: Incomplete... method copyObjectGroups (line 2413) | def copyObjectGroups(self, MObjectinGeom: Incomplete) -> Self: ... method hasObjectGroup (line 2414) | def hasObjectGroup(self, id: Incomplete) -> Self: ... method objectGroup (line 2415) | def objectGroup(self, index: Incomplete) -> int: ... method objectGroupComponent (line 2416) | def objectGroupComponent(self, id: Incomplete) -> MObject: ... method objectGroupType (line 2417) | def objectGroupType(self, id: Incomplete) -> MFnTypeconstant: ... # t... method removeObjectGroup (line 2418) | def removeObjectGroup(self, id: Incomplete) -> Self: ... method removeObjectGroupComponent (line 2419) | def removeObjectGroupComponent(self, id: Incomplete, MObjectcomponent:... method setObjectGroupComponent (line 2420) | def setObjectGroupComponent(self, id: Incomplete, MObjectcomponent: In... method hasComponentTag (line 2421) | def hasComponentTag(self, key: Incomplete) -> bool: ... method addComponentTag (line 2422) | def addComponentTag(self, key: Incomplete) -> Self: ... method removeComponentTag (line 2423) | def removeComponentTag(self, key: Incomplete) -> Self: ... method renameComponentTag (line 2424) | def renameComponentTag(self, key: Incomplete, newKey: Incomplete) -> S... method componentTagType (line 2425) | def componentTagType(self, key: Incomplete) -> MFnTypeconstant: ... #... method setComponentTagContents (line 2426) | def setComponentTagContents(self, key: Incomplete, MObjectcomponent: I... method componentTagContents (line 2427) | def componentTagContents(self, key: Incomplete) -> MObject: ... method componentTags (line 2428) | def componentTags(self) -> MObject: ... method objectGroupSubsetState (line 2429) | def objectGroupSubsetState(self, *args: Incomplete, **kwargs: Incomple... method componentTagExpressionSubsetState (line 2430) | def componentTagExpressionSubsetState(self, *args: Incomplete, **kwarg... method resolveComponentTagExpression (line 2431) | def resolveComponentTagExpression(self, key: Incomplete, ctg: Incomple... class MFnMeshData (line 2433) | class MFnMeshData(MFnGeometryData): method __init__ (line 2434) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2435) | def create(self) -> MObject: ... class MFnNurbsCurveData (line 2437) | class MFnNurbsCurveData(MFnGeometryData): method __init__ (line 2438) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2439) | def create(self) -> MObject: ... class MFnNurbsSurfaceData (line 2441) | class MFnNurbsSurfaceData(MFnGeometryData): method __init__ (line 2442) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2443) | def create(self) -> MObject: ... class MFnIntArrayData (line 2445) | class MFnIntArrayData(MFnData): method __init__ (line 2446) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2447) | def __len__(self) -> int: ... method __getitem__ (line 2448) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2449) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2450) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2451) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 2452) | def copyTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method create (line 2453) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2454) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnMatrixArrayData (line 2456) | class MFnMatrixArrayData(MFnData): method __init__ (line 2457) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2458) | def __len__(self) -> int: ... method __getitem__ (line 2459) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2460) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2461) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2462) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 2463) | def copyTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method create (line 2464) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2465) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnMatrixData (line 2467) | class MFnMatrixData(MFnData): method __init__ (line 2468) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2469) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isTransformation (line 2470) | def isTransformation(self, *args: Incomplete, **kwargs: Incomplete) ->... method matrix (line 2471) | def matrix(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2472) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method transformation (line 2473) | def transformation(self, *args: Incomplete, **kwargs: Incomplete) -> I... class MFnNumericData (line 2475) | class MFnNumericData(MFnData): method __init__ (line 2499) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2500) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getData (line 2501) | def getData(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method numericType (line 2502) | def numericType(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setData (line 2503) | def setData(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MFnPointArrayData (line 2505) | class MFnPointArrayData(MFnData): method __init__ (line 2506) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2507) | def __len__(self) -> int: ... method __getitem__ (line 2508) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2509) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2510) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2511) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 2512) | def copyTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method create (line 2513) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2514) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnStringData (line 2516) | class MFnStringData(MFnData): method __init__ (line 2517) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 2518) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2519) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method string (line 2520) | def string(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnStringArrayData (line 2522) | class MFnStringArrayData(MFnData): method __init__ (line 2523) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2524) | def __len__(self) -> int: ... method __getitem__ (line 2525) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2526) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2527) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2528) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method create (line 2529) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2530) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnUInt64ArrayData (line 2532) | class MFnUInt64ArrayData(MFnData): method __init__ (line 2533) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2534) | def __len__(self) -> int: ... method __getitem__ (line 2535) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2536) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2537) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2538) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 2539) | def copyTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method create (line 2540) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2541) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnVectorArrayData (line 2543) | class MFnVectorArrayData(MFnData): method __init__ (line 2544) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 2545) | def __len__(self) -> int: ... method __getitem__ (line 2546) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 2547) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 2548) | def __delitem__(self, key: Incomplete) -> None: ... method array (line 2549) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method copyTo (line 2550) | def copyTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method create (line 2551) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method set (line 2552) | def set(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MFnDependencyNode (line 2554) | class MFnDependencyNode(MFnBase): method __init__ (line 2585) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method allocateFlag (line 2587) | def allocateFlag(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method classification (line 2589) | def classification(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method deallocateAllFlags (line 2591) | def deallocateAllFlags(*args: Incomplete, **kwargs: Incomplete) -> Inc... method deallocateFlag (line 2593) | def deallocateFlag(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method absoluteName (line 2594) | def absoluteName(self) -> Any: ... method uniqueName (line 2595) | def uniqueName(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method addAttribute (line 2596) | def addAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method affectsAnimation (line 2597) | def affectsAnimation(self, *args: Incomplete, **kwargs: Incomplete) ->... method attribute (line 2598) | def attribute(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method attributeClass (line 2599) | def attributeClass(self, *args: Incomplete, **kwargs: Incomplete) -> I... method attributeCount (line 2600) | def attributeCount(self, *args: Incomplete, **kwargs: Incomplete) -> I... method canBeWritten (line 2601) | def canBeWritten(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method create (line 2602) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method dgCallbackIds (line 2603) | def dgCallbackIds(self, *args: Incomplete, **kwargs: Incomplete) -> In... method dgCallbacks (line 2604) | def dgCallbacks(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method dgTimer (line 2605) | def dgTimer(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method dgTimerOff (line 2606) | def dgTimerOff(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method dgTimerOn (line 2607) | def dgTimerOn(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method dgTimerQueryState (line 2608) | def dgTimerQueryState(self, *args: Incomplete, **kwargs: Incomplete) -... method dgTimerReset (line 2609) | def dgTimerReset(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method findAlias (line 2610) | def findAlias(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method findPlug (line 2611) | def findPlug(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getAffectedAttributes (line 2612) | def getAffectedAttributes(self, *args: Incomplete, **kwargs: Incomplet... method getAffectingAttributes (line 2613) | def getAffectingAttributes(self, *args: Incomplete, **kwargs: Incomple... method getAliasAttr (line 2614) | def getAliasAttr(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getAliasList (line 2615) | def getAliasList(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getConnections (line 2616) | def getConnections(self, *args: Incomplete, **kwargs: Incomplete) -> I... method hasAttribute (line 2617) | def hasAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method hasUniqueName (line 2618) | def hasUniqueName(self, *args: Incomplete, **kwargs: Incomplete) -> In... method isFlagSet (line 2619) | def isFlagSet(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isNewAttribute (line 2620) | def isNewAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> I... method isTrackingEdits (line 2621) | def isTrackingEdits(self, *args: Incomplete, **kwargs: Incomplete) -> ... method name (line 2622) | def name(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method plugsAlias (line 2623) | def plugsAlias(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method removeAttribute (line 2624) | def removeAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> ... method reorderedAttribute (line 2625) | def reorderedAttribute(self, *args: Incomplete, **kwargs: Incomplete) ... method setAffectsAnimation (line 2626) | def setAffectsAnimation(self, *args: Incomplete, **kwargs: Incomplete)... method setAlias (line 2627) | def setAlias(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setDoNotWrite (line 2628) | def setDoNotWrite(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setFlag (line 2629) | def setFlag(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setName (line 2630) | def setName(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setUuid (line 2631) | def setUuid(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method userNode (line 2632) | def userNode(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method uuid (line 2633) | def uuid(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method addExternalContentForFileAttr (line 2634) | def addExternalContentForFileAttr(self, *args: Incomplete, **kwargs: I... method getExternalContent (line 2635) | def getExternalContent(self, *args: Incomplete, **kwargs: Incomplete) ... method setExternalContent (line 2636) | def setExternalContent(self, *args: Incomplete, **kwargs: Incomplete) ... method setExternalContentForFileAttr (line 2637) | def setExternalContentForFileAttr(self, *args: Incomplete, **kwargs: I... class MFnDagNode (line 2639) | class MFnDagNode(MFnDependencyNode): method __init__ (line 2650) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addChild (line 2651) | def addChild(self, node: Incomplete, index: Incomplete = ..., keepExis... method child (line 2652) | def child(self, index: Incomplete) -> MObject: ... method childCount (line 2653) | def childCount(self) -> int: ... method create (line 2654) | def create(self, type: Incomplete, name: Incomplete = ..., parent: Inc... method dagPath (line 2655) | def dagPath(self) -> MDagPath: ... method dagRoot (line 2656) | def dagRoot(self) -> MObject: ... method duplicate (line 2657) | def duplicate(self, instance: Incomplete = ..., instanceLeaf: Incomple... method fullPathName (line 2658) | def fullPathName(self) -> str: ... method getAllPaths (line 2659) | def getAllPaths(self) -> MDagPathArray: ... method getConnectedSetsAndMembers (line 2660) | def getConnectedSetsAndMembers(self, *args: Incomplete, **kwargs: Inco... method getPath (line 2661) | def getPath(self) -> MDagPath: ... method hasChild (line 2662) | def hasChild(self, node: Incomplete) -> bool: ... method hasParent (line 2663) | def hasParent(self, node: Incomplete) -> bool: ... method instanceCount (line 2664) | def instanceCount(self, indirect: Incomplete) -> int: ... method isChildOf (line 2665) | def isChildOf(self, node: Incomplete) -> bool: ... method isInstanced (line 2666) | def isInstanced(self, indirect: Incomplete = ...) -> bool: ... method isInstancedAttribute (line 2667) | def isInstancedAttribute(self, attr: Incomplete) -> bool: ... method isParentOf (line 2668) | def isParentOf(self, node: Incomplete) -> bool: ... method parent (line 2669) | def parent(self, index: Incomplete) -> MObject: ... method parentCount (line 2670) | def parentCount(self) -> int: ... method partialPathName (line 2671) | def partialPathName(self) -> str: ... method removeChild (line 2672) | def removeChild(self, node: Incomplete) -> Self: ... method removeChildAt (line 2673) | def removeChildAt(self, index: Incomplete) -> Self: ... method setObject (line 2674) | def setObject(self, MObjectorMDagPath: Incomplete) -> Self: ... method transformationMatrix (line 2675) | def transformationMatrix(self) -> MMatrix: ... class MFnAssembly (line 2677) | class MFnAssembly(MFnDagNode): method __init__ (line 2678) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getTopLevelAssemblies (line 2680) | def getTopLevelAssemblies() -> MObjectArray: ... method createRepresentation (line 2681) | def createRepresentation(self, *args: Incomplete, **kwargs: Incomplete... method getRepresentations (line 2682) | def getRepresentations(self, *args: Incomplete, **kwargs: Incomplete) ... method getParentAssembly (line 2683) | def getParentAssembly(self) -> MObject: ... method getSubAssemblies (line 2684) | def getSubAssemblies(self) -> MObjectArray: ... method postLoad (line 2686) | def postLoad(self) -> Self: ... method postLoad (line 2688) | def postLoad(self) -> Any: ... # type: ignore[overload-cannot-match] method postLoad (line 2690) | def postLoad(self) -> Any: ... # type: ignore[overload-cannot-match] method activate (line 2691) | def activate(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getActive (line 2692) | def getActive(self) -> str: ... method activateNonRecursive (line 2694) | def activateNonRecursive(self) -> Any: ... method activateNonRecursive (line 2696) | def activateNonRecursive(self) -> Any: ... # type: ignore[overload-ca... method canActivate (line 2698) | def canActivate(self) -> bool: ... method canActivate (line 2700) | def canActivate(self) -> Any: ... # type: ignore[overload-cannot-match] method isActive (line 2701) | def isActive(self, representation: Incomplete) -> bool: ... method getInitialRep (line 2702) | def getInitialRep(self, *args: Incomplete, **kwargs: Incomplete) -> In... method getRepType (line 2703) | def getRepType(self, representation: Incomplete) -> str: ... method getRepLabel (line 2704) | def getRepLabel(self, representation: Incomplete) -> str: ... method setRepName (line 2705) | def setRepName(self, representation: Incomplete, newName: Incomplete) ... method setRepLabel (line 2706) | def setRepLabel(self, representation: Incomplete, label: Incomplete) -... method repTypes (line 2707) | def repTypes(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method canRepApplyEdits (line 2708) | def canRepApplyEdits(self, representation: Incomplete) -> bool: ... method deleteRepresentation (line 2709) | def deleteRepresentation(self, representation: Incomplete) -> Self: ... method deleteAllRepresentations (line 2710) | def deleteAllRepresentations(self) -> Self: ... method isTopLevel (line 2711) | def isTopLevel(self) -> bool: ... method supportsEdits (line 2712) | def supportsEdits(self) -> bool: ... method supportsMemberChanges (line 2714) | def supportsMemberChanges(self) -> bool: ... method supportsMemberChanges (line 2716) | def supportsMemberChanges(self) -> Any: ... # type: ignore[overload-c... method getRepNamespace (line 2717) | def getRepNamespace(self) -> str: ... method importFile (line 2718) | def importFile(self) -> Any: ... method getAbsoluteRepNamespace (line 2719) | def getAbsoluteRepNamespace(self) -> str: ... method handlesAddEdits (line 2720) | def handlesAddEdits(self) -> bool: ... class MFnCamera (line 2722) | class MFnCamera(MFnDagNode): method __init__ (line 2777) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method aspectRatio (line 2778) | def aspectRatio(self) -> float: ... method centerOfInterestPoint (line 2779) | def centerOfInterestPoint(self, space: MSpace = ...) -> MPoint: ... method computeDepthOfField (line 2780) | def computeDepthOfField(self, nearLimit: float = ...) -> Self: ... method copyViewFrom (line 2781) | def copyViewFrom(self, otherCamera: MDagPath) -> Self: ... method create (line 2782) | def create(self, parent: MObject = ...) -> MObject: ... # type: ignor... method eyePoint (line 2783) | def eyePoint(self, space: MSpace = ...) -> MPoint: ... method getAspectRatioLimits (line 2784) | def getAspectRatioLimits(self, *args: Incomplete, **kwargs: Incomplete... method getFilmApertureLimits (line 2785) | def getFilmApertureLimits(self, *args: Incomplete, **kwargs: Incomplet... method getFilmFrustum (line 2786) | def getFilmFrustum(self, *args: Incomplete, **kwargs: Incomplete) -> I... method getFilmFrustumCorners (line 2787) | def getFilmFrustumCorners(self, distance: float, applyPanZoom: bool = ... method getFocalLengthLimits (line 2788) | def getFocalLengthLimits(self, *args: Incomplete, **kwargs: Incomplete... method getPortFieldOfView (line 2789) | def getPortFieldOfView(self, *args: Incomplete, **kwargs: Incomplete) ... method getRenderingFrustum (line 2790) | def getRenderingFrustum(self, *args: Incomplete, **kwargs: Incomplete)... method getViewParameters (line 2791) | def getViewParameters(self, *args: Incomplete, **kwargs: Incomplete) -... method getViewingFrustum (line 2792) | def getViewingFrustum(self, *args: Incomplete, **kwargs: Incomplete) -... method hasSamePerspective (line 2793) | def hasSamePerspective(self, otherCamera: MDagPath) -> bool: ... method horizontalFieldOfView (line 2794) | def horizontalFieldOfView(self) -> float: ... method isOrtho (line 2795) | def isOrtho(self) -> bool: ... method postProjectionMatrix (line 2796) | def postProjectionMatrix(self, context: MDGContext = ...) -> MFloatMat... method projectionMatrix (line 2797) | def projectionMatrix(self, context: MDGContext = ...) -> MFloatMatrix:... method rightDirection (line 2798) | def rightDirection(self, space: MSpace = ...) -> MVector: ... method set (line 2799) | def set(self, wsEyeLocation: MPoint, wsViewDirection: MVector, wsUpDir... method setAspectRatio (line 2800) | def setAspectRatio(self, aspectRatio: float) -> Self: ... method setCenterOfInterestPoint (line 2801) | def setCenterOfInterestPoint(self, centerOfInterest: MPoint, space: MS... method setEyePoint (line 2802) | def setEyePoint(self, eyeLocation: MPoint, space: MSpace = ...) -> Sel... method setHorizontalFieldOfView (line 2803) | def setHorizontalFieldOfView(self, fov: float) -> Self: ... method setIsOrtho (line 2804) | def setIsOrtho(self, orthoState: bool, useDist: float = ...) -> Self: ... method setNearFarClippingPlanes (line 2805) | def setNearFarClippingPlanes(self, near: float, far: float) -> Self: ... method setVerticalFieldOfView (line 2806) | def setVerticalFieldOfView(self, fov: float) -> Self: ... method upDirection (line 2807) | def upDirection(self, space: MSpace = ...) -> MVector: ... method verticalFieldOfView (line 2808) | def verticalFieldOfView(self) -> float: ... method viewDirection (line 2809) | def viewDirection(self, space: MSpace = ...) -> MVector: ... class MFnContainerNode (line 2811) | class MFnContainerNode(MFnDependencyNode): method __init__ (line 2815) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getCurrentAsMObject (line 2817) | def getCurrentAsMObject() -> MObject: ... method getPublishedPlugs (line 2818) | def getPublishedPlugs(self, *args: Incomplete, **kwargs: Incomplete) -... method getPublishedNames (line 2819) | def getPublishedNames(self, *args: Incomplete, **kwargs: Incomplete) -... method getMembers (line 2820) | def getMembers(self) -> MObjectArray: ... method getSubcontainers (line 2821) | def getSubcontainers(self) -> MObjectArray: ... method getParentContainer (line 2822) | def getParentContainer(self) -> MObject: ... method getRootTransform (line 2823) | def getRootTransform(self) -> MObject: ... method getPublishedNodes (line 2824) | def getPublishedNodes(self, *args: Incomplete, **kwargs: Incomplete) -... method isCurrent (line 2825) | def isCurrent(self) -> bool: ... method makeCurrent (line 2826) | def makeCurrent(self, isCurrent: None) -> Self: ... method clear (line 2827) | def clear(self) -> Any: ... class MFnMesh (line 2829) | class MFnMesh(MFnDagNode): method __init__ (line 2857) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method autoUniformGridParams (line 2859) | def autoUniformGridParams() -> MMeshIsectAccelParams: ... method clearGlobalIntersectionAcceleratorInfo (line 2861) | def clearGlobalIntersectionAcceleratorInfo() -> Any: ... method globalIntersectionAcceleratorsInfo (line 2863) | def globalIntersectionAcceleratorsInfo() -> str: ... method uniformGridParams (line 2865) | def uniformGridParams(xDiv: Incomplete, yDiv: Incomplete, zDiv: Incomp... method addHoles (line 2866) | def addHoles(self, faceIndex: Incomplete, vertices: Incomplete, loopCo... method addPolygon (line 2867) | def addPolygon(self, vertices: Incomplete, mergeVertices: Incomplete =... method allIntersections (line 2868) | def allIntersections(self) -> Any: ... method anyIntersection (line 2869) | def anyIntersection(self) -> Any: ... method assignColor (line 2870) | def assignColor(self, faceId: Incomplete, vertexIndex: Incomplete, col... method assignColors (line 2871) | def assignColors(self, colorIds: Incomplete, colorSet: str = ...) -> S... method assignUV (line 2872) | def assignUV(self, faceId: Incomplete, vertexIndex: Incomplete, uvId: ... method assignUVs (line 2873) | def assignUVs(self, uvCounts: Incomplete, uvIds: Incomplete, uvSet: st... method booleanOp (line 2874) | def booleanOp(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method booleanOps (line 2875) | def booleanOps(self, BooleanOperationconstant: Incomplete, MObjectArra... method cachedIntersectionAcceleratorInfo (line 2876) | def cachedIntersectionAcceleratorInfo(self) -> str: ... method cleanupEdgeSmoothing (line 2877) | def cleanupEdgeSmoothing(self) -> Self: ... method clearBlindData (line 2879) | def clearBlindData(self, compType: Incomplete) -> Self: ... method clearBlindData (line 2881) | def clearBlindData(self, compType: Incomplete, blindDataId: Incomplete... method clearColors (line 2883) | def clearColors(self, colorSet: str = ...) -> Self: ... method clearColors (line 2885) | def clearColors(self) -> Any: ... # type: ignore[overload-cannot-match] method clearUVs (line 2887) | def clearUVs(self, uvSet: str = ...) -> Self: ... method clearUVs (line 2889) | def clearUVs(self) -> Any: ... # type: ignore[overload-cannot-match] method closestIntersection (line 2890) | def closestIntersection(self, *args: Incomplete, **kwargs: Incomplete)... method collapseEdges (line 2891) | def collapseEdges(self, seqofint: Incomplete) -> Self: ... method collapseFaces (line 2892) | def collapseFaces(self, seqofint: Incomplete) -> Self: ... method copy (line 2893) | def copy(self, MObject: Incomplete, parent: Incomplete = ...) -> MObje... method copyInPlace (line 2894) | def copyInPlace(self, MObject: Incomplete) -> Self: ... method copyUVSet (line 2895) | def copyUVSet(self, fromName: Incomplete, toName: Incomplete, modifier... method create (line 2896) | def create(self) -> Any: ... # type: ignore[override] method createBlindDataType (line 2897) | def createBlindDataType(self, *args: Incomplete, **kwargs: Incomplete)... method createColorSet (line 2898) | def createColorSet(self, name: Incomplete, clamped: Incomplete, rep: I... method createInPlace (line 2899) | def createInPlace(self, *args: Incomplete, **kwargs: Incomplete) -> In... method createUVSet (line 2900) | def createUVSet(self, name: Incomplete, modifier: MDGModifier = ..., i... method currentColorSetName (line 2901) | def currentColorSetName(self, instance: Incomplete = ...) -> str: ... method currentUVSetName (line 2902) | def currentUVSetName(self, instance: Incomplete = ...) -> str: ... method deleteColorSet (line 2903) | def deleteColorSet(self, colorSet: str, modifier: MDGModifier = ..., c... method deleteUVSet (line 2904) | def deleteUVSet(self, uvSet: str, modifier: MDGModifier = ..., current... method deleteEdge (line 2905) | def deleteEdge(self, edgeId: Incomplete, modifier: MDGModifier = ...) ... method deleteFace (line 2906) | def deleteFace(self, faceId: Incomplete, modifier: MDGModifier = ...) ... method deleteVertex (line 2907) | def deleteVertex(self, vertexId: Incomplete, modifier: MDGModifier = .... method duplicateFaces (line 2908) | def duplicateFaces(self, faces: Incomplete, translation: Incomplete = ... method extractFaces (line 2909) | def extractFaces(self, faces: Incomplete, translation: Incomplete = ..... method extrudeEdges (line 2910) | def extrudeEdges(self, edges: Incomplete, extrusionCount: Incomplete =... method extrudeFaces (line 2911) | def extrudeFaces(self, faces: Incomplete, extrusionCount: Incomplete =... method freeCachedIntersectionAccelerator (line 2912) | def freeCachedIntersectionAccelerator(self) -> Self: ... method generateSmoothMesh (line 2913) | def generateSmoothMesh(self, parent: Incomplete = ..., options: Incomp... method getAssignedUVs (line 2914) | def getAssignedUVs(self, *args: Incomplete, **kwargs: Incomplete) -> I... method getAssociatedColorSetInstances (line 2915) | def getAssociatedColorSetInstances(self, colorSet: str) -> MIntArray: ... method getAssociatedUVSetInstances (line 2916) | def getAssociatedUVSetInstances(self, uvSet: str) -> MIntArray: ... method getAssociatedUVSetTextures (line 2917) | def getAssociatedUVSetTextures(self, uvSet: str) -> MObjectArray: ... method getBinaryBlindData (line 2919) | def getBinaryBlindData(self, compId: Incomplete, compType: Incomplete,... method getBinaryBlindData (line 2921) | def getBinaryBlindData(self, compType: Incomplete, blindDataId: Incomp... method getBinormals (line 2922) | def getBinormals(self, space: MSpace = ..., uvSet: str = ...) -> MFloa... method getBlindDataAttrNames (line 2923) | def getBlindDataAttrNames(self, *args: Incomplete, **kwargs: Incomplet... method getBlindDataTypes (line 2924) | def getBlindDataTypes(self, MFnTypeconstant: Incomplete) -> MIntArray:... method getBoolBlindData (line 2925) | def getBoolBlindData(self, compId: Incomplete, compType: Incomplete, b... method getClosestUVs (line 2926) | def getClosestUVs(self, u: Incomplete, v: Incomplete, uvSet: str = ...... method intersectFaceAtUV (line 2927) | def intersectFaceAtUV(self, u: Incomplete, v: Incomplete, uvSet: str =... method getClosestNormal (line 2928) | def getClosestNormal(self, *args: Incomplete, **kwargs: Incomplete) ->... method getClosestPoint (line 2929) | def getClosestPoint(self, *args: Incomplete, **kwargs: Incomplete) -> ... method getClosestPointAndNormal (line 2930) | def getClosestPointAndNormal(self, MPoint: Incomplete, space: MSpace =... method getColor (line 2931) | def getColor(self, colorId: Incomplete, colorSet: str = ...) -> MColor... method getColorIndex (line 2932) | def getColorIndex(self, faceId: Incomplete, localVertexId: Incomplete,... method getColorRepresentation (line 2933) | def getColorRepresentation(self, colorSet: str) -> ColorRepresentation... method getColors (line 2934) | def getColors(self, colorSet: str = ...) -> MColorArray: ... method getColorSetFamilyNames (line 2935) | def getColorSetFamilyNames(self, *args: Incomplete, **kwargs: Incomple... method getColorSetNames (line 2936) | def getColorSetNames(self, *args: Incomplete, **kwargs: Incomplete) ->... method getColorSetsInFamily (line 2937) | def getColorSetsInFamily(self, *args: Incomplete, **kwargs: Incomplete... method getConnectedShaders (line 2938) | def getConnectedShaders(self, *args: Incomplete, **kwargs: Incomplete)... method getCreaseEdges (line 2939) | def getCreaseEdges(self, *args: Incomplete, **kwargs: Incomplete) -> I... method getCreaseVertices (line 2940) | def getCreaseVertices(self, *args: Incomplete, **kwargs: Incomplete) -... method getDoubleBlindData (line 2941) | def getDoubleBlindData(self, compId: Incomplete, compType: Incomplete,... method getEdgeVertices (line 2942) | def getEdgeVertices(self, *args: Incomplete, **kwargs: Incomplete) -> ... method getFaceAndVertexIndices (line 2943) | def getFaceAndVertexIndices(self, *args: Incomplete, **kwargs: Incompl... method getFaceNormalIds (line 2944) | def getFaceNormalIds(self, faceId: Incomplete) -> MIntArray: ... method getFaceUVSetNames (line 2945) | def getFaceUVSetNames(self, *args: Incomplete, **kwargs: Incomplete) -... method getFaceVertexBinormal (line 2946) | def getFaceVertexBinormal(self, faceId: Incomplete, vertexId: Incomple... method getFaceVertexBinormals (line 2947) | def getFaceVertexBinormals(self, faceId: Incomplete, space: MSpace = .... method getFaceVertexColors (line 2948) | def getFaceVertexColors(self, colorSet: str = ..., defaultUnsetColor: ... method getFaceVertexIndex (line 2949) | def getFaceVertexIndex(self, faceId: Incomplete, vertexIndex: Incomple... method getFaceVertexNormal (line 2950) | def getFaceVertexNormal(self, faceId: Incomplete, vertexId: Incomplete... method getFaceVertexNormals (line 2951) | def getFaceVertexNormals(self, faceId: Incomplete, space: MSpace = ...... method getFaceVertexTangent (line 2952) | def getFaceVertexTangent(self, faceId: Incomplete, vertexId: Incomplet... method getFaceVertexTangents (line 2953) | def getFaceVertexTangents(self, faceId: Incomplete, space: MSpace = ..... method getFloatBlindData (line 2954) | def getFloatBlindData(self, compId: Incomplete, compType: Incomplete, ... method getFloatPoints (line 2955) | def getFloatPoints(self, space: MSpace = ...) -> MFloatPointArray: ... method getHoles (line 2956) | def getHoles(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method getIntBlindData (line 2957) | def getIntBlindData(self, compId: Incomplete, compType: Incomplete, bl... method getInvisibleFaces (line 2958) | def getInvisibleFaces(self) -> MUintArray: ... method getNormalIds (line 2959) | def getNormalIds(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getNormals (line 2960) | def getNormals(self, space: MSpace = ...) -> MFloatVectorArray: ... method getPoint (line 2961) | def getPoint(self, vertexId: Incomplete, space: MSpace = ...) -> MPoin... method getPointAtUV (line 2962) | def getPointAtUV(self, faceId: Incomplete, u: Incomplete, v: Incomplet... method getPointsAtUV (line 2963) | def getPointsAtUV(self, *args: Incomplete, **kwargs: Incomplete) -> In... method getPoints (line 2964) | def getPoints(self, space: MSpace = ...) -> MPointArray: ... method getPolygonNormal (line 2965) | def getPolygonNormal(self, polygonId: Incomplete, space: MSpace = ...)... method getPolygonTriangleVertices (line 2966) | def getPolygonTriangleVertices(self, *args: Incomplete, **kwargs: Inco... method getPolygonUV (line 2967) | def getPolygonUV(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getPolygonUVid (line 2968) | def getPolygonUVid(self, polygonId: Incomplete, vertexId: Incomplete, ... method getPolygonVertices (line 2969) | def getPolygonVertices(self, polygonId: Incomplete) -> MIntArray: ... method getSmoothMeshDisplayOptions (line 2970) | def getSmoothMeshDisplayOptions(self) -> MMeshSmoothOptions: ... method getStringBlindData (line 2972) | def getStringBlindData(self, compId: Incomplete, compType: Incomplete,... method getStringBlindData (line 2974) | def getStringBlindData(self, compType: Incomplete, blindDataId: Incomp... method getTangentId (line 2975) | def getTangentId(self, faceId: Incomplete, vertexId: Incomplete) -> in... method getTangents (line 2976) | def getTangents(self, space: MSpace = ..., uvSet: str = ...) -> MFloat... method getTriangles (line 2977) | def getTriangles(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getUV (line 2978) | def getUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVAtPoint (line 2979) | def getUVAtPoint(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getUVs (line 2980) | def getUVs(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getUVSetFamilyNames (line 2981) | def getUVSetFamilyNames(self, *args: Incomplete, **kwargs: Incomplete)... method getUVSetNames (line 2982) | def getUVSetNames(self, *args: Incomplete, **kwargs: Incomplete) -> In... method getUVSetsInFamily (line 2983) | def getUVSetsInFamily(self, *args: Incomplete, **kwargs: Incomplete) -... method getUvShellsIds (line 2984) | def getUvShellsIds(self, *args: Incomplete, **kwargs: Incomplete) -> I... method getMeshShellsIds (line 2985) | def getMeshShellsIds(self, *args: Incomplete, **kwargs: Incomplete) ->... method getVertexColors (line 2986) | def getVertexColors(self, colorSet: str = ..., defaultUnsetColor: Inco... method getVertexNormal (line 2987) | def getVertexNormal(self, vertexId: Incomplete, angleWeighted: Incompl... method getVertexNormals (line 2988) | def getVertexNormals(self, angleWeighted: Incomplete, space: MSpace = ... method getVertices (line 2989) | def getVertices(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getTriangleOffsets (line 2990) | def getTriangleOffsets(self, *args: Incomplete, **kwargs: Incomplete) ... method hasAlphaChannels (line 2991) | def hasAlphaChannels(self, colorSet: str) -> bool: ... method hasBlindData (line 2992) | def hasBlindData(self, compType: Incomplete, compId: Incomplete = ...,... method hasColorChannels (line 2993) | def hasColorChannels(self, colorSet: str) -> bool: ... method isBlindDataTypeUsed (line 2994) | def isBlindDataTypeUsed(self, blindDataId: Incomplete) -> bool: ... method isColorClamped (line 2995) | def isColorClamped(self, colorSet: str) -> bool: ... method isColorSetPerInstance (line 2996) | def isColorSetPerInstance(self, colorSet: str) -> bool: ... method edgeBorderInfo (line 2997) | def edgeBorderInfo(self, *args: Incomplete, **kwargs: Incomplete) -> I... method getUVBorderEdges (line 2998) | def getUVBorderEdges(self, setId: Incomplete) -> MIntArray: ... method isEdgeSmooth (line 2999) | def isEdgeSmooth(self, edgeId: Incomplete) -> bool: ... method isNormalLocked (line 3000) | def isNormalLocked(self, normalId: Incomplete) -> bool: ... method isPolygonConvex (line 3001) | def isPolygonConvex(self, faceId: Incomplete) -> bool: ... method isPolygonUVReversed (line 3002) | def isPolygonUVReversed(self, faceId: Incomplete) -> bool: ... method isRightHandedTangent (line 3003) | def isRightHandedTangent(self, tangentId: Incomplete, uvSet: str = ...... method isUVSetPerInstance (line 3004) | def isUVSetPerInstance(self, uvSet: str) -> bool: ... method lockFaceVertexNormals (line 3005) | def lockFaceVertexNormals(self, seqoffaceIds: Incomplete, seqofvertIds... method lockVertexNormals (line 3006) | def lockVertexNormals(self, sequenceofvertIds: Incomplete) -> Self: ... method numColors (line 3007) | def numColors(self, colorSet: str = ...) -> int: ... method numUVs (line 3008) | def numUVs(self, uvSet: str = ...) -> int: ... method onBoundary (line 3009) | def onBoundary(self, faceId: Incomplete) -> bool: ... method polygonVertexCount (line 3010) | def polygonVertexCount(self, faceId: Incomplete) -> int: ... method removeFaceColors (line 3011) | def removeFaceColors(self, seqoffaceIds: Incomplete) -> Self: ... method removeFaceVertexColors (line 3012) | def removeFaceVertexColors(self, seqoffaceIds: Incomplete, seqofvertex... method removeVertexColors (line 3013) | def removeVertexColors(self, seqofvertexIds: Incomplete) -> Self: ... method renameUVSet (line 3014) | def renameUVSet(self, origName: Incomplete, newName: Incomplete, modif... method setBinaryBlindData (line 3016) | def setBinaryBlindData(self, compId: Incomplete, compType: Incomplete,... method setBinaryBlindData (line 3018) | def setBinaryBlindData(self, seqofcompId: Incomplete, compType: Incomp... method setBoolBlindData (line 3020) | def setBoolBlindData(self, compId: Incomplete, compType: Incomplete, b... method setBoolBlindData (line 3022) | def setBoolBlindData(self, seqofcompId: Incomplete, compType: Incomple... method setColor (line 3023) | def setColor(self, colorId: Incomplete, MColor: Incomplete, colorSet: ... method setColors (line 3024) | def setColors(self, seqofMColor: Incomplete, colorSet: str = ..., rep:... method setCreaseEdges (line 3025) | def setCreaseEdges(self, edgeIds: Incomplete, seqoffloat: Incomplete) ... method setCreaseVertices (line 3026) | def setCreaseVertices(self, edgeIds: Incomplete, seqoffloat: Incomplet... method setCurrentColorSetName (line 3027) | def setCurrentColorSetName(self, colorSet: str, modifier: MDGModifier ... method setCurrentUVSetName (line 3028) | def setCurrentUVSetName(self, uvSet: str, modifier: MDGModifier = ...,... method setDoubleBlindData (line 3030) | def setDoubleBlindData(self, compId: Incomplete, compType: Incomplete,... method setDoubleBlindData (line 3032) | def setDoubleBlindData(self, seqofcompId: Incomplete, compType: Incomp... method setEdgeSmoothing (line 3034) | def setEdgeSmoothing(self, edgeId: Incomplete, smooth: Incomplete = ..... method setEdgeSmoothing (line 3036) | def setEdgeSmoothing(self) -> Any: ... method setEdgeSmoothings (line 3038) | def setEdgeSmoothings(self, edgeIds: Incomplete, smooths: Incomplete) ... method setEdgeSmoothings (line 3040) | def setEdgeSmoothings(self) -> Any: ... method setFaceColor (line 3041) | def setFaceColor(self, color: Incomplete, faceId: Incomplete, rep: Inc... method setFaceColors (line 3042) | def setFaceColors(self, colors: Incomplete, faceIds: Incomplete, rep: ... method setFaceVertexColor (line 3043) | def setFaceVertexColor(self, color: Incomplete, faceId: Incomplete, ve... method setFaceVertexColors (line 3044) | def setFaceVertexColors(self, colors: Incomplete, faceIds: Incomplete,... method setFaceVertexNormal (line 3045) | def setFaceVertexNormal(self, normal: Incomplete, faceId: Incomplete, ... method setFaceVertexNormals (line 3046) | def setFaceVertexNormals(self, *args: Incomplete, **kwargs: Incomplete... method setFloatBlindData (line 3048) | def setFloatBlindData(self, compId: Incomplete, compType: Incomplete, ... method setFloatBlindData (line 3050) | def setFloatBlindData(self, seqofcompId: Incomplete, compType: Incompl... method setIntBlindData (line 3052) | def setIntBlindData(self, compId: Incomplete, compType: Incomplete, bl... method setIntBlindData (line 3054) | def setIntBlindData(self, seqofcompId: Incomplete, compType: Incomplet... method setInvisibleFaces (line 3055) | def setInvisibleFaces(self, faceIds: Incomplete, makeVisible: Incomple... method setIsColorClamped (line 3056) | def setIsColorClamped(self, colorSet: str, clamped: Incomplete) -> Sel... method setNormals (line 3057) | def setNormals(self, normals: Incomplete, space: MSpace = ...) -> Self... method setPoint (line 3059) | def setPoint(self, vertexId: Incomplete, MPoint: Incomplete, space: MS... method setPoint (line 3061) | def setPoint(self) -> Any: ... method setPoints (line 3062) | def setPoints(self, points: Incomplete, space: MSpace = ...) -> Self: ... method setSmoothMeshDisplayOptions (line 3063) | def setSmoothMeshDisplayOptions(self, MMeshSmoothOptions: Incomplete) ... method setSomeColors (line 3064) | def setSomeColors(self, colorIds: Incomplete, colors: Incomplete, colo... method setSomeUVs (line 3065) | def setSomeUVs(self, uvIds: Incomplete, uValues: Incomplete, vValues: ... method setStringBlindData (line 3067) | def setStringBlindData(self, compId: Incomplete, compType: Incomplete,... method setStringBlindData (line 3069) | def setStringBlindData(self, seqofcompId: Incomplete, compType: Incomp... method setUV (line 3070) | def setUV(self, uvId: Incomplete, u: Incomplete, v: Incomplete, uvSet:... method setUVs (line 3071) | def setUVs(self, uValues: Incomplete, vValues: Incomplete, uvSet: str ... method setVertexColor (line 3072) | def setVertexColor(self, color: Incomplete, vertexId: Incomplete, modi... method setVertexColors (line 3073) | def setVertexColors(self, colors: Incomplete, vertexIds: Incomplete, m... method setVertexNormal (line 3074) | def setVertexNormal(self, normal: Incomplete, vertexId: Incomplete, sp... method setVertexNormals (line 3075) | def setVertexNormals(self, *args: Incomplete, **kwargs: Incomplete) ->... method sortIntersectionFaceTriIds (line 3076) | def sortIntersectionFaceTriIds(self, faceIds: Incomplete, triIds: Inco... method split (line 3077) | def split(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method subdivideEdges (line 3078) | def subdivideEdges(self, edges: Incomplete, numDivisions: Incomplete) ... method subdivideFaces (line 3079) | def subdivideFaces(self, faces: Incomplete, numDivisions: Incomplete) ... method syncObject (line 3080) | def syncObject(self) -> Self: ... method unlockFaceVertexNormals (line 3081) | def unlockFaceVertexNormals(self, seqoffaceIds: Incomplete, seqofvertI... method unlockVertexNormals (line 3082) | def unlockVertexNormals(self, sequenceofvertIds: Incomplete) -> Self: ... method updateSurface (line 3083) | def updateSurface(self) -> Self: ... class MFnNurbsCurve (line 3085) | class MFnNurbsCurve(MFnDagNode): method __init__ (line 3102) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method area (line 3103) | def area(self, tolerance: float = ...) -> float: ... method closestPoint (line 3104) | def closestPoint(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method copy (line 3105) | def copy(self, source: Incomplete, parent: MObject = ...) -> MObject: ... method create (line 3107) | def create(self, cvs: Incomplete, knots: Incomplete, degree: int, form... method create (line 3109) | def create(self, subCurves: Incomplete, parent: MObject = ...) -> Self... method createWithEditPoints (line 3110) | def createWithEditPoints(self, eps: Incomplete, degree: int, form: int... method cvPosition (line 3112) | def cvPosition(self, index: int, space: MSpace = ...) -> MPoint: ... method cvPositions (line 3113) | def cvPositions(self, space: MSpace = ...) -> MPointArray: ... method cvs (line 3114) | def cvs(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method distanceToPoint (line 3115) | def distanceToPoint(self, point: MPoint, space: MSpace = ...) -> float... method findParamFromLength (line 3116) | def findParamFromLength(self, length: float, tolerance: float = ...) -... method findLengthFromParam (line 3117) | def findLengthFromParam(self, param: float) -> float: ... method getDerivativesAtParam (line 3118) | def getDerivativesAtParam(self, *args: Incomplete, **kwargs: Incomplet... method getParamAtPoint (line 3119) | def getParamAtPoint(self, point: MPoint, tolerance: float = ..., space... method getPointAtParam (line 3120) | def getPointAtParam(self, param: float, space: MSpace = ...) -> MPoint... method isParamOnCurve (line 3121) | def isParamOnCurve(self, param: float) -> bool: ... method isPointOnCurve (line 3122) | def isPointOnCurve(self, point: MPoint, tolerance: float = ..., space:... method knot (line 3123) | def knot(self, index: int) -> float: ... method knots (line 3124) | def knots(self) -> MDoubleArray: ... method length (line 3125) | def length(self, tolerance: float = ...) -> float: ... method makeMultipleEndKnots (line 3126) | def makeMultipleEndKnots(self) -> Self: ... method normal (line 3127) | def normal(self, param: float, space: MSpace = ...) -> MVector: ... method removeKnot (line 3128) | def removeKnot(self, param: float, removeAll: bool = ...) -> Self: ... method reverse (line 3129) | def reverse(self) -> Self: ... method setCVPosition (line 3130) | def setCVPosition(self, index: int, point: MPoint, space: MSpace = ...... method setCVPositions (line 3131) | def setCVPositions(self, points: Incomplete, space: MSpace = ...) -> S... method setKnot (line 3132) | def setKnot(self, index: int, param: float) -> Self: ... method setKnots (line 3133) | def setKnots(self, params: Incomplete, startIndex: int, endIndex: int)... method tangent (line 3134) | def tangent(self, param: float, space: MSpace = ...) -> MVector: ... method updateCurve (line 3135) | def updateCurve(self) -> Self: ... class MFnNurbsSurface (line 3137) | class MFnNurbsSurface(MFnDagNode): method __init__ (line 3174) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method area (line 3175) | def area(self, space: MSpace = ..., tolerance: Incomplete = ...) -> fl... method assignUV (line 3176) | def assignUV(self, patchId: int, cornerIndex: int, uvId: int) -> Self:... method assignUVs (line 3177) | def assignUVs(self, uvCounts: Incomplete, uvIds: Incomplete) -> Self: ... method boundaryType (line 3178) | def boundaryType(self, region: int, boundary: int) -> int: ... method clearUVs (line 3179) | def clearUVs(self) -> Self: ... method closestPoint (line 3180) | def closestPoint(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method copy (line 3181) | def copy(self, source: MObject, parent: MObject = ...) -> MObject: ... method create (line 3182) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method cv (line 3183) | def cv(self, uIndex: int, vIndex: int) -> MObject: ... method cvPosition (line 3184) | def cvPosition(self, uIndex: int, vIndex: int, space: MSpace = ...) ->... method cvPositions (line 3185) | def cvPositions(self, space: MSpace = ...) -> MPointArray: ... method cvsInU (line 3186) | def cvsInU(self, startUIndex: int, endUIndex: int, vIndex: int) -> MOb... method cvsInV (line 3187) | def cvsInV(self, startVIndex: int, endVIndex: int, uIndex: int) -> MOb... method distanceToPoint (line 3188) | def distanceToPoint(self, point: MPoint, space: MSpace = ...) -> float... method edge (line 3190) | def edge(self, region: int, boundary: int, edge: int, paramEdge: bool ... method edge (line 3192) | def edge(self, int: int) -> Any: ... method getAssignedUVs (line 3193) | def getAssignedUVs(self, *args: Incomplete, **kwargs: Incomplete) -> I... method getConnectedShaders (line 3194) | def getConnectedShaders(self, *args: Incomplete, **kwargs: Incomplete)... method getDerivativesAtParam (line 3195) | def getDerivativesAtParam(self, uParam: float, vParam: float, space: M... method getParamAtPoint (line 3196) | def getParamAtPoint(self, *args: Incomplete, **kwargs: Incomplete) -> ... method getPatchUV (line 3197) | def getPatchUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getPatchUVid (line 3198) | def getPatchUVid(self, patchId: int, cornerIndex: int) -> int: ... method getPatchUVs (line 3199) | def getPatchUVs(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getPointAtParam (line 3200) | def getPointAtParam(self, uParam: Incomplete, vParam: Incomplete, spac... method getUV (line 3201) | def getUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVs (line 3202) | def getUVs(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method intersect (line 3203) | def intersect(self, rayStart: MPoint, rayDir: MVector, tolerance: floa... method isFlipNorm (line 3205) | def isFlipNorm(self, region: Incomplete) -> bool: ... method isKnotU (line 3206) | def isKnotU(self, param: float) -> bool: ... method isKnotV (line 3207) | def isKnotV(self, param: float) -> bool: ... method isParamOnSurface (line 3208) | def isParamOnSurface(self, uParam: float, vParam: float) -> bool: ... method isPointInTrimmedRegion (line 3209) | def isPointInTrimmedRegion(self, uParam: float, vParam: float) -> bool... method isPointOnSurface (line 3210) | def isPointOnSurface(self, point: MPoint, tolerance: float = ..., spac... method knotInU (line 3211) | def knotInU(self, index: int) -> float: ... method knotInV (line 3212) | def knotInV(self, index: int) -> float: ... method knotsInU (line 3213) | def knotsInU(self) -> MDoubleArray: ... method knotsInV (line 3214) | def knotsInV(self) -> MDoubleArray: ... method normal (line 3215) | def normal(self, uParam: float, vParam: float, space: MSpace = ...) ->... method numBoundaries (line 3216) | def numBoundaries(self, region: int) -> int: ... method numEdges (line 3217) | def numEdges(self, region: int, boundary: int) -> int: ... method projectCurve (line 3218) | def projectCurve(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method removeKnotInU (line 3219) | def removeKnotInU(self, param: float, removeAll: bool = ...) -> Self: ... method removeKnotInV (line 3220) | def removeKnotInV(self, param: float, removeAll: bool = ...) -> Self: ... method removeOneKnotInU (line 3221) | def removeOneKnotInU(self, param: float) -> Self: ... method removeOneKnotInV (line 3222) | def removeOneKnotInV(self, param: float) -> Self: ... method setCVPosition (line 3223) | def setCVPosition(self, uIndex: Incomplete, vIndex: Incomplete, point:... method setCVPositions (line 3224) | def setCVPositions(self, points: Incomplete, space: MSpace = ...) -> S... method setKnotInU (line 3225) | def setKnotInU(self, index: int, param: float) -> Self: ... method setKnotInV (line 3226) | def setKnotInV(self, index: int, param: float) -> Self: ... method setKnotsInU (line 3227) | def setKnotsInU(self, params: Incomplete, startIndex: int, endIndex: i... method setKnotsInV (line 3228) | def setKnotsInV(self, params: Incomplete, startIndex: int, endIndex: i... method setUV (line 3229) | def setUV(self, uvId: int, u: float, v: float) -> Self: ... method setUVs (line 3230) | def setUVs(self, uList: Incomplete, vList: Incomplete) -> Self: ... method tangents (line 3231) | def tangents(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method trim (line 3232) | def trim(self, regionsToKeepU: Incomplete, regionsToKeepV: Incomplete,... method updateSurface (line 3233) | def updateSurface(self) -> Self: ... class MFnReference (line 3235) | class MFnReference(MFnDependencyNode): method __init__ (line 3236) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method isValidReference (line 3237) | def isValidReference(self) -> bool: ... method fileName (line 3238) | def fileName(self, boolresolvedName: Incomplete, boolincludePath: Inco... method associatedNamespace (line 3239) | def associatedNamespace(self, boolshortName: Incomplete) -> str: ... method parentFileName (line 3240) | def parentFileName(self, boolresolvedName: Incomplete, boolincludePath... method parentReference (line 3241) | def parentReference(self) -> MObject: ... method parentAssembly (line 3242) | def parentAssembly(self) -> MObject: ... method containsNode (line 3243) | def containsNode(self, MObject: Incomplete) -> bool: ... method containsNodeExactly (line 3244) | def containsNodeExactly(self, MObject: Incomplete) -> bool: ... method nodes (line 3245) | def nodes(self) -> MObjectArray: ... method isLoaded (line 3246) | def isLoaded(self) -> bool: ... method isLocked (line 3247) | def isLocked(self) -> bool: ... method isExportEditsFile (line 3248) | def isExportEditsFile(self) -> bool: ... method ignoreReferenceEdits (line 3250) | def ignoreReferenceEdits() -> bool: ... method setIgnoreReferenceEdits (line 3252) | def setIgnoreReferenceEdits(bool: Incomplete) -> None: ... class MFnSet (line 3254) | class MFnSet(MFnDependencyNode): # type: ignore[no-redef] method __init__ (line 3261) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 3262) | def create(self, members: MSelectionList, restriction: MFnSet.Restrict... method getUnion (line 3263) | def getUnion(self, otherSet: s) -> MSelectionList: ... # type: ignore... method getIntersection (line 3264) | def getIntersection(self, otherSet: s) -> MSelectionList: ... # type:... method clear (line 3265) | def clear(self) -> Self: ... method getMembers (line 3266) | def getMembers(self, flatten: bool) -> MSelectionList: ... method addMember (line 3267) | def addMember(self, object: Incomplete) -> Self: ... method addMembers (line 3268) | def addMembers(self, MSelectionList: Incomplete) -> Self: ... method removeMember (line 3269) | def removeMember(self, object: Incomplete) -> Self: ... method removeMembers (line 3270) | def removeMembers(self, MSelectionList: Incomplete) -> Self: ... method isMember (line 3271) | def isMember(self, object: Incomplete) -> bool: ... method intersectsWith (line 3272) | def intersectsWith(self, otherSet: Incomplete) -> Self: ... method hasRestrictions (line 3273) | def hasRestrictions(self) -> bool: ... method restriction (line 3274) | def restriction(self) -> MFnSet.Restriction: ... method annotation (line 3275) | def annotation(self) -> str: ... method setAnnotation (line 3276) | def setAnnotation(self, annotation: Incomplete) -> Self: ... method getMemberPaths (line 3277) | def getMemberPaths(self, shading: bool) -> MDagPathArray: ... class MFnTransform (line 3279) | class MFnTransform(MFnDagNode): method __init__ (line 3304) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method balanceTransformation (line 3306) | def balanceTransformation(*args: Incomplete, **kwargs: Incomplete) -> ... method clearRestPosition (line 3307) | def clearRestPosition(self, *args: Incomplete, **kwargs: Incomplete) -... method create (line 3308) | def create(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method enableLimit (line 3309) | def enableLimit(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isLimited (line 3310) | def isLimited(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method limitValue (line 3311) | def limitValue(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method resetFromRestPosition (line 3312) | def resetFromRestPosition(self, *args: Incomplete, **kwargs: Incomplet... method resetTransformation (line 3313) | def resetTransformation(self, *args: Incomplete, **kwargs: Incomplete)... method restPosition (line 3314) | def restPosition(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rotateBy (line 3315) | def rotateBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method rotateByComponents (line 3316) | def rotateByComponents(self, *args: Incomplete, **kwargs: Incomplete) ... method rotatePivot (line 3317) | def rotatePivot(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method rotatePivotTranslation (line 3318) | def rotatePivotTranslation(self, *args: Incomplete, **kwargs: Incomple... method rotation (line 3319) | def rotation(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method rotationComponents (line 3320) | def rotationComponents(self, *args: Incomplete, **kwargs: Incomplete) ... method rotationOrder (line 3321) | def rotationOrder(self, *args: Incomplete, **kwargs: Incomplete) -> In... method rotateOrientation (line 3322) | def rotateOrientation(self, *args: Incomplete, **kwargs: Incomplete) -... method scale (line 3323) | def scale(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method scaleBy (line 3324) | def scaleBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method scalePivot (line 3325) | def scalePivot(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method scalePivotTranslation (line 3326) | def scalePivotTranslation(self, *args: Incomplete, **kwargs: Incomplet... method setLimit (line 3327) | def setLimit(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setRestPosition (line 3328) | def setRestPosition(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setRotatePivot (line 3329) | def setRotatePivot(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setRotatePivotTranslation (line 3330) | def setRotatePivotTranslation(self, *args: Incomplete, **kwargs: Incom... method setRotation (line 3331) | def setRotation(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setRotationComponents (line 3332) | def setRotationComponents(self, *args: Incomplete, **kwargs: Incomplet... method setRotationOrder (line 3333) | def setRotationOrder(self, *args: Incomplete, **kwargs: Incomplete) ->... method setRotateOrientation (line 3334) | def setRotateOrientation(self, *args: Incomplete, **kwargs: Incomplete... method setScale (line 3335) | def setScale(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setScalePivot (line 3336) | def setScalePivot(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setScalePivotTranslation (line 3337) | def setScalePivotTranslation(self, *args: Incomplete, **kwargs: Incomp... method setShear (line 3338) | def setShear(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setTransformation (line 3339) | def setTransformation(self, *args: Incomplete, **kwargs: Incomplete) -... method setTranslation (line 3340) | def setTranslation(self, *args: Incomplete, **kwargs: Incomplete) -> I... method shear (line 3341) | def shear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method shearBy (line 3342) | def shearBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method transformation (line 3343) | def transformation(self, *args: Incomplete, **kwargs: Incomplete) -> I... method translateBy (line 3344) | def translateBy(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method translation (line 3345) | def translation(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MFnPlugin (line 3347) | class MFnPlugin(MFnBase): method __init__ (line 3349) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method apiVersion (line 3350) | def apiVersion(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deregisterAttributePatternFactory (line 3351) | def deregisterAttributePatternFactory(self, *args: Incomplete, **kwarg... method deregisterCommand (line 3352) | def deregisterCommand(self, *args: Incomplete, **kwargs: Incomplete) -... method deregisterData (line 3353) | def deregisterData(self, *args: Incomplete, **kwargs: Incomplete) -> I... method deregisterDragAndDropBehavior (line 3354) | def deregisterDragAndDropBehavior(self, *args: Incomplete, **kwargs: I... method deregisterNode (line 3355) | def deregisterNode(self, *args: Incomplete, **kwargs: Incomplete) -> I... method deregisterContextCommand (line 3356) | def deregisterContextCommand(self, *args: Incomplete, **kwargs: Incomp... method findPlugin (line 3358) | def findPlugin(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method loadPath (line 3359) | def loadPath(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method name (line 3360) | def name(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method registerAttributePatternFactory (line 3361) | def registerAttributePatternFactory(self, *args: Incomplete, **kwargs:... method registerCommand (line 3362) | def registerCommand(self, *args: Incomplete, **kwargs: Incomplete) -> ... method registerContextCommand (line 3363) | def registerContextCommand(self, *args: Incomplete, **kwargs: Incomple... method registerData (line 3364) | def registerData(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method registerDragAndDropBehavior (line 3365) | def registerDragAndDropBehavior(self, *args: Incomplete, **kwargs: Inc... method registerNode (line 3366) | def registerNode(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method registerShape (line 3367) | def registerShape(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setName (line 3368) | def setName(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method vendor (line 3369) | def vendor(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MFnPluginData (line 3371) | class MFnPluginData(MFnData): method __init__ (line 3372) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method typeId (line 3373) | def typeId(self) -> MTypeId: ... method data (line 3374) | def data(self) -> MPxData: ... method create (line 3375) | def create(self, id: MTypeId) -> MObject: ... class MGlobal (line 3377) | class MGlobal: method animSelectionMask (line 3395) | def animSelectionMask() -> MSelectionMask: ... method componentSelectionMask (line 3397) | def componentSelectionMask() -> MSelectionMask: ... method displayError (line 3399) | def displayError(msg: Incomplete) -> None: ... method displayInfo (line 3401) | def displayInfo(msg: Incomplete) -> None: ... method displayWarning (line 3403) | def displayWarning(msg: Incomplete) -> None: ... method getActiveSelectionList (line 3405) | def getActiveSelectionList(orderedSelectionIfAvailable: Incomplete = .... method getFunctionSetList (line 3407) | def getFunctionSetList(*args: Incomplete, **kwargs: Incomplete) -> Inc... method getRichSelection (line 3409) | def getRichSelection(defaultToActiveSelection: Incomplete = ...) -> MR... method getSelectionListByName (line 3411) | def getSelectionListByName(name: Incomplete) -> MSelectionList: ... method miscSelectionMask (line 3413) | def miscSelectionMask() -> MSelectionMask: ... method objectSelectionMask (line 3415) | def objectSelectionMask() -> MSelectionMask: ... method selectionMode (line 3417) | def selectionMode() -> int: ... method setActiveSelectionList (line 3419) | def setActiveSelectionList(MSelectionList: Incomplete, listAdjustment:... method setAnimSelectionMask (line 3421) | def setAnimSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> I... method setComponentSelectionMask (line 3423) | def setComponentSelectionMask(*args: Incomplete, **kwargs: Incomplete)... method setMiscSelectionMask (line 3425) | def setMiscSelectionMask(*args: Incomplete, **kwargs: Incomplete) -> I... method setObjectSelectionMask (line 3427) | def setObjectSelectionMask(*args: Incomplete, **kwargs: Incomplete) ->... method setRichSelection (line 3429) | def setRichSelection(MRichSelection: Incomplete) -> None: ... method setSelectionMode (line 3431) | def setSelectionMode(int: int) -> None: ... method isUndoing (line 3433) | def isUndoing() -> bool: ... method isRedoing (line 3435) | def isRedoing() -> bool: ... method mayaName (line 3437) | def mayaName() -> str: ... method mayaVersion (line 3439) | def mayaVersion() -> str: ... method apiVersion (line 3441) | def apiVersion() -> int: ... method mayaFeatureSet (line 3443) | def mayaFeatureSet() -> int: ... method mayaState (line 3445) | def mayaState() -> int: ... method getLiveList (line 3447) | def getLiveList() -> MSelectionList: ... method getHiliteList (line 3449) | def getHiliteList() -> MSelectionList: ... method setHiliteList (line 3451) | def setHiliteList(MSelectionList: Incomplete) -> None: ... method getPreselectionHiliteList (line 3453) | def getPreselectionHiliteList() -> MSelectionList: ... method setPreselectionHiliteList (line 3455) | def setPreselectionHiliteList(MSelectionList: Incomplete) -> None: ... method selectCommand (line 3457) | def selectCommand(MSelectionList: Incomplete, listAdjustment: Incomple... method selectByName (line 3459) | def selectByName(string: str, listAdjustment: Incomplete = ...) -> Non... method unselectByName (line 3461) | def unselectByName(string: str) -> None: ... method unselect (line 3464) | def unselect(MObject: Incomplete) -> None: ... method unselect (line 3467) | def unselect(MDagPath: Incomplete, MObject: Incomplete) -> None: ... method selectFromScreen (line 3469) | def selectFromScreen(*args: Incomplete, **kwargs: Incomplete) -> Incom... method isSelected (line 3471) | def isSelected(MObject: Incomplete) -> bool: ... method selectionMethod (line 3473) | def selectionMethod() -> int: ... method clearSelectionList (line 3475) | def clearSelectionList() -> None: ... method trackSelectionOrderEnabled (line 3477) | def trackSelectionOrderEnabled() -> bool: ... method setTrackSelectionOrderEnabled (line 3479) | def setTrackSelectionOrderEnabled() -> None: ... method addToModel (line 3481) | def addToModel(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method addToModelAt (line 3483) | def addToModelAt(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method removeFromModel (line 3485) | def removeFromModel(MObject: Incomplete) -> None: ... method deleteNode (line 3487) | def deleteNode(MObject: Incomplete) -> None: ... method executeCommandOnIdle (line 3489) | def executeCommandOnIdle(string: str, booldisplayEnabled: Incomplete =... method executeCommandStringResult (line 3491) | def executeCommandStringResult(string: str, booldisplayEnabled: Incomp... method optionVarIntValue (line 3493) | def optionVarIntValue(string: str) -> int: ... method optionVarDoubleValue (line 3495) | def optionVarDoubleValue(string: str) -> float: ... method optionVarStringValue (line 3497) | def optionVarStringValue(string: str) -> str: ... method setOptionVarValue (line 3500) | def setOptionVarValue(string: str, int: int) -> bool: ... method setOptionVarValue (line 3503) | def setOptionVarValue(stringname: Incomplete, double: Incomplete) -> b... method setOptionVarValue (line 3506) | def setOptionVarValue(stringname: Incomplete, string: str) -> bool: ... method initOptionVar (line 3509) | def initOptionVar(stringname: Incomplete, int: int, stringcategory: In... method initOptionVar (line 3512) | def initOptionVar(stringname: Incomplete, double: Incomplete, stringca... method initOptionVar (line 3515) | def initOptionVar(stringname: Incomplete, string: str, stringcategory:... method removeOptionVar (line 3517) | def removeOptionVar(string: str) -> None: ... method optionVarExists (line 3519) | def optionVarExists(string: str) -> bool: ... method resetToDefaultErrorLogPathName (line 3521) | def resetToDefaultErrorLogPathName() -> None: ... method defaultErrorLogPathName (line 3523) | def defaultErrorLogPathName() -> str: ... method setErrorLogPathName (line 3525) | def setErrorLogPathName(string: str) -> None: ... method errorLogPathName (line 3527) | def errorLogPathName() -> str: ... method errorLoggingIsOn (line 3529) | def errorLoggingIsOn() -> bool: ... method startErrorLogging (line 3532) | def startErrorLogging() -> None: ... method startErrorLogging (line 3535) | def startErrorLogging(string: str) -> Any: ... method stopErrorLogging (line 3537) | def stopErrorLogging() -> None: ... method closeErrorLog (line 3539) | def closeErrorLog() -> None: ... method doErrorLogEntry (line 3541) | def doErrorLogEntry(string: str) -> bool: ... method getAbsolutePathToResources (line 3543) | def getAbsolutePathToResources() -> str: ... method disableStow (line 3545) | def disableStow() -> bool: ... method setDisableStow (line 3547) | def setDisableStow(bool: Incomplete) -> None: ... method sourceFile (line 3549) | def sourceFile(string: str) -> None: ... method setDisplayCVs (line 3551) | def setDisplayCVs(MSelectionList: Incomplete, bool: Incomplete) -> Non... method getAssociatedSets (line 3553) | def getAssociatedSets(MSelectionList: Incomplete) -> list: ... method viewFrame (line 3556) | def viewFrame(double: Incomplete) -> None: ... method viewFrame (line 3559) | def viewFrame(MTime: Incomplete) -> None: ... method currentToolContext (line 3561) | def currentToolContext() -> MObject: ... method setYAxisUp (line 3563) | def setYAxisUp() -> None: ... method isYAxisUp (line 3565) | def isYAxisUp() -> bool: ... method setZAxisUp (line 3567) | def setZAxisUp() -> None: ... method isZAxisUp (line 3569) | def isZAxisUp() -> bool: ... method upAxis (line 3571) | def upAxis() -> MVector: ... method className (line 3573) | def className() -> str: ... class MImage (line 3575) | class MImage: method __init__ (line 3583) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method pixelType (line 3584) | def pixelType(self) -> int: ... method depth (line 3586) | def depth(self) -> int: ... method depth (line 3588) | def depth(self, inbytes: Incomplete) -> Any: ... method isRGBA (line 3589) | def isRGBA(self) -> bool: ... method setRGBA (line 3590) | def setRGBA(self, bool: Incomplete) -> Self: ... method pixels (line 3591) | def pixels(self) -> float: ... method floatPixels (line 3592) | def floatPixels(self) -> float: ... method haveDepth (line 3593) | def haveDepth(self) -> bool: ... method depthMap (line 3594) | def depthMap(self) -> float: ... method release (line 3595) | def release(self) -> Self: ... method verticalFlip (line 3596) | def verticalFlip(self) -> bool: ... method create (line 3597) | def create(self, width: int, height: int, channels: int = ..., type: I... method getSize (line 3598) | def getSize(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method resize (line 3599) | def resize(self, width: int, height: int, preserveAspectRatio: bool = ... method setPixels (line 3600) | def setPixels(self, pixels: list[bytes], width: int, height: int) -> S... method setFloatPixels (line 3601) | def setFloatPixels(self, pixels: Incomplete, width: int, height: int, ... method getDepthMapSize (line 3602) | def getDepthMapSize(self, *args: Incomplete, **kwargs: Incomplete) -> ... method getDepthMapRange (line 3603) | def getDepthMapRange(self, *args: Incomplete, **kwargs: Incomplete) ->... method setDepthMap (line 3604) | def setDepthMap(self, depth: MFloatArray, width: int, heigth: Incomple... method filterExists (line 3606) | def filterExists(sourceFormat: MImageFilterFormat, targetFormat: MImag... method filter (line 3607) | def filter(self, sourceFormat: MImageFilterFormat, targetFormat: float... method readFromFile (line 3608) | def readFromFile(self, pathname: str, type: MPixelType = ...) -> Self:... method readFromTextureNode (line 3609) | def readFromTextureNode(self, fileTextureObject: MObject, type: MPixel... method readDepthMap (line 3610) | def readDepthMap(self, pathname: Incomplete) -> Self: ... method writeToFile (line 3611) | def writeToFile(self, pathname: Incomplete, outputFormat: Incomplete =... method writeToFileWithDepth (line 3612) | def writeToFileWithDepth(self, pathname: Incomplete, outputFormat: Inc... class MIntArray (line 3614) | class MIntArray: method __init__ (line 3616) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 3617) | def __len__(self) -> int: ... method __getitem__ (line 3618) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 3619) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 3620) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 3621) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 3622) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 3623) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 3624) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 3625) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 3626) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 3627) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 3628) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 3629) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 3630) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 3631) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 3632) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MInt64Array (line 3634) | class MInt64Array: method __init__ (line 3636) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 3637) | def __len__(self) -> int: ... method __getitem__ (line 3638) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 3639) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 3640) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 3641) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 3642) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 3643) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 3644) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 3645) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 3646) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 3647) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 3648) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 3649) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 3650) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 3651) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 3652) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MItCurveCV (line 3654) | class MItCurveCV: method __iter__ (line 3655) | def __iter__(self) -> Incomplete: ... method __next__ (line 3656) | def __next__(self) -> Incomplete: ... method __init__ (line 3657) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method isDone (line 3658) | def isDone(self) -> bool: ... method next (line 3659) | def next(self) -> Self: ... method reset (line 3661) | def reset(self, curve: MObject) -> Self: ... method reset (line 3663) | def reset(self, curve: MDagPath, component: MObject = ...) -> Self: ... method position (line 3664) | def position(self) -> MPoint: ... method setPosition (line 3665) | def setPosition(self, point: MPoint, space: MSpace = ...) -> Self: ... method translateBy (line 3666) | def translateBy(self, vector: MVector, space: MSpace = ...) -> Self: ... method index (line 3667) | def index(self) -> int: ... method currentItem (line 3668) | def currentItem(self) -> MObject: ... method hasHistoryOnCreate (line 3669) | def hasHistoryOnCreate(self) -> bool: ... method updateCurve (line 3670) | def updateCurve(self) -> Self: ... class MItDag (line 3672) | class MItDag: # type: ignore[no-redef] method __iter__ (line 3677) | def __iter__(self) -> Incomplete: ... method __next__ (line 3678) | def __next__(self) -> Incomplete: ... method __init__ (line 3679) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3680) | def iternext(self) -> Self: ... method iter (line 3681) | def iter(self) -> Self: ... method currentItem (line 3682) | def currentItem(self) -> MObject: ... method depth (line 3683) | def depth(self) -> int: ... method fullPathName (line 3684) | def fullPathName(self) -> str: ... method getAllPaths (line 3685) | def getAllPaths(self) -> MDagPathArray: ... method getPath (line 3686) | def getPath(self) -> MDagPath: ... method instanceCount (line 3687) | def instanceCount(self, total: Incomplete) -> int: ... method isDone (line 3688) | def isDone(self) -> bool: ... method isInstanced (line 3689) | def isInstanced(self, indirect: bool = ...) -> bool: ... method next (line 3690) | def next(self) -> Self: ... method partialPathName (line 3691) | def partialPathName(self) -> str: ... method prune (line 3692) | def prune(self) -> Self: ... method reset (line 3694) | def reset(self) -> Self: ... method reset (line 3696) | def reset(self, rootObject: Incomplete, traversalType: Incomplete = ..... method reset (line 3698) | def reset(self, rootPath: Incomplete, traversalType: Incomplete = ...,... method reset (line 3700) | def reset(self, dagInfoObject: Incomplete, rootObjectORrootPath: Incom... method root (line 3702) | def root(self) -> MObject: ... method root (line 3704) | def root(self, startnode: Incomplete) -> Any: ... method traversalType (line 3705) | def traversalType(self) -> MItDag.TraversalType: ... class MItDependencyGraph (line 3707) | class MItDependencyGraph: method __iter__ (line 3725) | def __iter__(self) -> Incomplete: ... method __next__ (line 3726) | def __next__(self) -> Incomplete: ... method __init__ (line 3727) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3728) | def iternext(self) -> Self: ... method iter (line 3729) | def iter(self) -> Self: ... method currentNode (line 3730) | def currentNode(self) -> MObject: ... method currentNodeHasUnknownType (line 3731) | def currentNodeHasUnknownType(self) -> bool: ... method currentPlug (line 3732) | def currentPlug(self) -> MPlug: ... method getNodePath (line 3733) | def getNodePath(self) -> MObjectArray: ... method getNodesVisited (line 3734) | def getNodesVisited(self) -> MObjectArray: ... method getPlugPath (line 3735) | def getPlugPath(self) -> MPlugArray: ... method getPlugsVisited (line 3736) | def getPlugsVisited(self) -> MPlugArray: ... method isDone (line 3737) | def isDone(self) -> bool: ... method next (line 3738) | def next(self) -> Self: ... method previousPlug (line 3739) | def previousPlug(self) -> MPlug: ... method prune (line 3740) | def prune(self) -> Self: ... method reset (line 3741) | def reset(self) -> Self: ... method resetFilter (line 3742) | def resetFilter(self) -> Self: ... method resetTo (line 3744) | def resetTo(self, rootObject: Incomplete, filter: Incomplete = ..., di... method resetTo (line 3746) | def resetTo(self, rootPlug: Incomplete, filter: Incomplete = ..., dire... method resetTo (line 3748) | def resetTo(self, infoObject: Incomplete, rootObjectORrootPlug: Incomp... method rootNode (line 3749) | def rootNode(self) -> MObject: ... method rootPlug (line 3750) | def rootPlug(self) -> MPlug: ... class MItDependencyNodes (line 3752) | class MItDependencyNodes: method __iter__ (line 3753) | def __iter__(self) -> Incomplete: ... method __next__ (line 3754) | def __next__(self) -> Incomplete: ... method __init__ (line 3755) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3756) | def iternext(self) -> Self: ... method iter (line 3757) | def iter(self) -> Self: ... method thisNode (line 3758) | def thisNode(self) -> MObject: ... method isDone (line 3759) | def isDone(self) -> bool: ... method next (line 3760) | def next(self) -> Self: ... method reset (line 3762) | def reset(self) -> Self: ... method reset (line 3764) | def reset(self, filterType: Incomplete = ...) -> Self: ... method reset (line 3766) | def reset(self, dagInfoObject: Incomplete) -> Self: ... class MItGeometry (line 3768) | class MItGeometry: method __iter__ (line 3769) | def __iter__(self) -> Incomplete: ... method __next__ (line 3770) | def __next__(self) -> Incomplete: ... method __init__ (line 3771) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3772) | def iternext(self) -> Self: ... method iter (line 3773) | def iter(self) -> Self: ... method isDone (line 3774) | def isDone(self) -> bool: ... method next (line 3775) | def next(self) -> Self: ... method position (line 3776) | def position(self) -> MPoint: ... method normal (line 3777) | def normal(self) -> MVector: ... method setPosition (line 3778) | def setPosition(self) -> MStatus: ... # type: ignore[name-defined] method weight (line 3779) | def weight(self) -> MWeight: ... method index (line 3780) | def index(self) -> int: ... method component (line 3781) | def component(self) -> MObject: ... method currentItem (line 3782) | def currentItem(self) -> MObject: ... method count (line 3783) | def count(self) -> int: ... method exactCount (line 3784) | def exactCount(self) -> int: ... method reset (line 3785) | def reset(self) -> Self: ... method allPositions (line 3786) | def allPositions(self) -> MStatus: ... # type: ignore[name-defined] method setAllPositions (line 3787) | def setAllPositions(self) -> MStatus: ... # type: ignore[name-defined] class MIteratorType (line 3789) | class MIteratorType: method __init__ (line 3797) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MItMeshEdge (line 3799) | class MItMeshEdge: method __iter__ (line 3801) | def __iter__(self) -> Incomplete: ... method __next__ (line 3802) | def __next__(self) -> Incomplete: ... method __init__ (line 3803) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3804) | def iternext(self) -> Self: ... method iter (line 3805) | def iter(self) -> Self: ... method center (line 3806) | def center(self, space: MSpace = ...) -> MPoint: ... method connectedToEdge (line 3807) | def connectedToEdge(self, index: int) -> bool: ... method connectedToFace (line 3808) | def connectedToFace(self, index: int) -> bool: ... method count (line 3809) | def count(self) -> int: ... method currentItem (line 3810) | def currentItem(self) -> MObject: ... method geomChanged (line 3811) | def geomChanged(self) -> Self: ... method getConnectedEdges (line 3812) | def getConnectedEdges(self) -> MIntArray: ... method getConnectedFaces (line 3813) | def getConnectedFaces(self) -> MIntArray: ... method index (line 3814) | def index(self) -> int: ... method isDone (line 3815) | def isDone(self) -> bool: ... method length (line 3816) | def length(self, space: MSpace = ...) -> float: ... method next (line 3817) | def next(self) -> Self: ... method numConnectedEdges (line 3818) | def numConnectedEdges(self) -> int: ... method numConnectedFaces (line 3819) | def numConnectedFaces(self) -> int: ... method onBoundary (line 3820) | def onBoundary(self) -> bool: ... method point (line 3821) | def point(self, whichVertex: Literal[0] | Literal[1], space: MSpace = ... method reset (line 3823) | def reset(self, mesh: MObject) -> Self: ... method reset (line 3825) | def reset(self, mesh: MDagPath, component: MObject = ...) -> Self: ... method setIndex (line 3826) | def setIndex(self, index: int) -> int: ... method setPoint (line 3827) | def setPoint(self, point: MPoint, whichVertex: Literal[0] | Literal[1]... method updateSurface (line 3828) | def updateSurface(self) -> Self: ... method vertexId (line 3829) | def vertexId(self, whichVertex: Literal[0] | Literal[1]) -> int: ... class MItMeshFaceVertex (line 3831) | class MItMeshFaceVertex: method __iter__ (line 3832) | def __iter__(self) -> Incomplete: ... method __next__ (line 3833) | def __next__(self) -> Incomplete: ... method __init__ (line 3834) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3835) | def iternext(self) -> Self: ... method iter (line 3836) | def iter(self) -> Self: ... method currentItem (line 3837) | def currentItem(self) -> MObject: ... method faceId (line 3838) | def faceId(self) -> int: ... method faceVertexId (line 3839) | def faceVertexId(self) -> int: ... method geomChanged (line 3840) | def geomChanged(self) -> Self: ... method getBinormal (line 3841) | def getBinormal(self, space: MSpace = ..., uvSet: str = ...) -> MVecto... method getColor (line 3842) | def getColor(self, colorSetName: Incomplete = ...) -> MColor: ... method getColorIndex (line 3843) | def getColorIndex(self, colorSetName: Incomplete = ...) -> int: ... method getNormal (line 3844) | def getNormal(self, space: MSpace = ...) -> MVector: ... method getTangent (line 3845) | def getTangent(self, space: MSpace = ..., uvSet: str = ...) -> MVector... method getUV (line 3846) | def getUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVIndex (line 3847) | def getUVIndex(self, uvSet: str = ...) -> int: ... method hasColor (line 3848) | def hasColor(self) -> bool: ... method hasUVs (line 3849) | def hasUVs(self, uvSet: str = ...) -> bool: ... method isDone (line 3850) | def isDone(self) -> bool: ... method next (line 3851) | def next(self) -> Self: ... method normalId (line 3852) | def normalId(self) -> int: ... method position (line 3853) | def position(self, space: MSpace = ...) -> MPoint: ... method reset (line 3855) | def reset(self, mesh: MObject) -> Self: ... method reset (line 3857) | def reset(self, mesh: MDagPath, component: MObject = ...) -> Self: ... method setIndex (line 3858) | def setIndex(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method tangentId (line 3859) | def tangentId(self) -> int: ... method updateSurface (line 3860) | def updateSurface(self) -> Self: ... method vertexId (line 3861) | def vertexId(self) -> int: ... class MItMeshPolygon (line 3863) | class MItMeshPolygon: method __iter__ (line 3864) | def __iter__(self) -> Incomplete: ... method __next__ (line 3865) | def __next__(self) -> Incomplete: ... method __init__ (line 3866) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3867) | def iternext(self) -> Self: ... method iter (line 3868) | def iter(self) -> Self: ... method center (line 3869) | def center(self, space: MSpace = ...) -> MPoint: ... method count (line 3870) | def count(self) -> int: ... method currentItem (line 3871) | def currentItem(self) -> MObject: ... method geomChanged (line 3872) | def geomChanged(self) -> Self: ... method getArea (line 3873) | def getArea(self, space: MSpace = ...) -> float: ... method getColor (line 3875) | def getColor(self, colorSetName: str = ...) -> MColor: ... method getColor (line 3877) | def getColor(self, vertexIndex: Incomplete) -> MColor: ... method getColorIndex (line 3878) | def getColorIndex(self, vertexIndex: int, colorSetName: str = ...) -> ... method getColorIndices (line 3879) | def getColorIndices(self, colorSetName: str = ...) -> MIntArray: ... method getColors (line 3880) | def getColors(self, colorSetName: str = ...) -> MColorArray: ... method getConnectedEdges (line 3881) | def getConnectedEdges(self) -> MIntArray: ... method getConnectedFaces (line 3882) | def getConnectedFaces(self) -> MIntArray: ... method getConnectedVertices (line 3883) | def getConnectedVertices(self) -> MIntArray: ... method getEdges (line 3884) | def getEdges(self) -> MIntArray: ... method getNormal (line 3885) | def getNormal(self, space: MSpace = ...) -> MVector: ... method getNormals (line 3886) | def getNormals(self, space: MSpace = ...) -> MVectorArray: ... method getPointAtUV (line 3887) | def getPointAtUV(self, uvPoint: [float, float], space: MSpace = ..., u... method getPoints (line 3888) | def getPoints(self, space: MSpace = ...) -> MPointArray: ... method getTriangle (line 3889) | def getTriangle(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method getTriangles (line 3890) | def getTriangles(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getUV (line 3891) | def getUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVArea (line 3892) | def getUVArea(self, uvSet: str = ...) -> float: ... method getUVAtPoint (line 3893) | def getUVAtPoint(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getUVIndex (line 3894) | def getUVIndex(self, vertex: int, uvSet: str = ...) -> int: ... method getUVIndexAndValue (line 3895) | def getUVIndexAndValue(self, *args: Incomplete, **kwargs: Incomplete) ... method getUVSetNames (line 3896) | def getUVSetNames(self) -> list[str]: ... method getUVs (line 3897) | def getUVs(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method getVertices (line 3898) | def getVertices(self) -> MIntArray: ... method hasColor (line 3900) | def hasColor(self) -> bool: ... method hasColor (line 3902) | def hasColor(self, localVertexIndex: int) -> bool: ... method hasUVs (line 3903) | def hasUVs(self, uvSet: str = ...) -> bool: ... method hasValidTriangulation (line 3904) | def hasValidTriangulation(self) -> bool: ... method index (line 3905) | def index(self) -> int: ... method isConnectedToEdge (line 3906) | def isConnectedToEdge(self, index: int) -> bool: ... method isConnectedToFace (line 3907) | def isConnectedToFace(self, index: int) -> bool: ... method isConnectedToVertex (line 3908) | def isConnectedToVertex(self, index: int) -> bool: ... method isConvex (line 3909) | def isConvex(self) -> bool: ... method isDone (line 3910) | def isDone(self) -> bool: ... method isHoled (line 3911) | def isHoled(self) -> bool: ... method isLamina (line 3912) | def isLamina(self) -> bool: ... method isPlanar (line 3913) | def isPlanar(self) -> bool: ... method isStarlike (line 3914) | def isStarlike(self) -> bool: ... method isUVReversed (line 3915) | def isUVReversed(self, faceId: Incomplete) -> bool: ... method next (line 3916) | def next(self) -> Self: ... method normalIndex (line 3917) | def normalIndex(self, vertex: Incomplete) -> int: ... method numColors (line 3918) | def numColors(self, colorSetName: str = ...) -> int: ... method numConnectedEdges (line 3919) | def numConnectedEdges(self) -> int: ... method numConnectedFaces (line 3920) | def numConnectedFaces(self) -> int: ... method numTriangles (line 3921) | def numTriangles(self) -> int: ... method onBoundary (line 3922) | def onBoundary(self) -> bool: ... method point (line 3923) | def point(self, index: int, space: MSpace = ...) -> MPoint: ... method polygonVertexCount (line 3924) | def polygonVertexCount(self) -> int: ... method reset (line 3926) | def reset(self, polyObject: MObject) -> Self: ... method reset (line 3928) | def reset(self, polyObject: mesh, component: faces = ...) -> Self: ...... method setIndex (line 3929) | def setIndex(self, index: int) -> int: ... method setPoint (line 3930) | def setPoint(self, point: MPoint, index: int, space: MSpace = ...) -> ... method setPoints (line 3931) | def setPoints(self, pointArray: MPointArray, space: MSpace = ...) -> S... method setUV (line 3932) | def setUV(self, vertexId: int, uvPoint: [float, float], uvSet: str = .... method setUVs (line 3933) | def setUVs(self, uArray: MFloatArray, vArray: MFloatArray, uvSet: str ... method tangentIndex (line 3934) | def tangentIndex(self, localVertexIndex: int) -> int: ... method updateSurface (line 3935) | def updateSurface(self) -> Self: ... method vertexIndex (line 3936) | def vertexIndex(self, index: int) -> int: ... method zeroArea (line 3937) | def zeroArea(self) -> bool: ... method zeroUVArea (line 3938) | def zeroUVArea(self, uvSet: str = ...) -> bool: ... class MItMeshVertex (line 3940) | class MItMeshVertex: method __iter__ (line 3941) | def __iter__(self) -> Incomplete: ... method __next__ (line 3942) | def __next__(self) -> Incomplete: ... method __init__ (line 3943) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 3944) | def iternext(self) -> Self: ... method iter (line 3945) | def iter(self) -> Self: ... method count (line 3946) | def count(self) -> int: ... method currentItem (line 3947) | def currentItem(self) -> MObject: ... method geomChanged (line 3948) | def geomChanged(self) -> Self: ... method getConnectedEdges (line 3949) | def getConnectedEdges(self) -> MIntArray: ... method getConnectedFaces (line 3950) | def getConnectedFaces(self) -> MIntArray: ... method getConnectedVertices (line 3951) | def getConnectedVertices(self) -> MIntArray: ... method getNormal (line 3953) | def getNormal(self, space: MSpace = ...) -> MVector: ... method getNormal (line 3955) | def getNormal(self, faceIndex: int, space: MSpace = ...) -> MVector: ... method getNormals (line 3956) | def getNormals(self, space: MSpace = ...) -> MVectorArray: ... method getNormalIndices (line 3957) | def getNormalIndices(self) -> MIntArray: ... method getUV (line 3958) | def getUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method getUVIndices (line 3959) | def getUVIndices(self, uvSet: str = ...) -> MIntArray: ... method getUVs (line 3960) | def getUVs(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method index (line 3961) | def index(self) -> int: ... method connectedToEdge (line 3962) | def connectedToEdge(self, index: int) -> bool: ... method connectedToFace (line 3963) | def connectedToFace(self, index: int) -> bool: ... method getColor (line 3965) | def getColor(self, colorSetName: str = ...) -> MColor: ... method getColor (line 3967) | def getColor(self, faceIndex: Incomplete, colorSetName: str = ...) -> ... method getColorIndices (line 3968) | def getColorIndices(self, colorSetName: str = ...) -> MIntArray: ... method getColors (line 3969) | def getColors(self, colorSetName: str = ...) -> MColorArray: ... method getOppositeVertex (line 3970) | def getOppositeVertex(self, edgeId: int) -> int: ... method hasColor (line 3972) | def hasColor(self) -> bool: ... method hasColor (line 3974) | def hasColor(self, index: int) -> bool: ... method isDone (line 3975) | def isDone(self) -> bool: ... method next (line 3976) | def next(self) -> Self: ... method numConnectedEdges (line 3977) | def numConnectedEdges(self) -> int: ... method numConnectedFaces (line 3978) | def numConnectedFaces(self) -> int: ... method numUVs (line 3979) | def numUVs(self, uvSet: str = ...) -> int: ... method onBoundary (line 3980) | def onBoundary(self) -> bool: ... method position (line 3981) | def position(self, space: MSpace = ...) -> MPoint: ... method reset (line 3983) | def reset(self, polyObject: MObject) -> Self: ... method reset (line 3985) | def reset(self, polyObject: mesh, component: MObject = ...) -> Self: .... method setIndex (line 3986) | def setIndex(self, index: int) -> int: ... method setPosition (line 3987) | def setPosition(self, point: MPoint, space: MSpace = ...) -> Self: ... method setUV (line 3988) | def setUV(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setUVs (line 3989) | def setUVs(self, uArray: MFloatArray, vArray: MFloatArray, faceIds: MI... method translateBy (line 3990) | def translateBy(self, vector: MVector, space: MSpace = ...) -> Self: ... method updateSurface (line 3991) | def updateSurface(self) -> Self: ... class MItSelectionList (line 3993) | class MItSelectionList: method __iter__ (line 3999) | def __iter__(self) -> Incomplete: ... method __next__ (line 4000) | def __next__(self) -> Incomplete: ... method __init__ (line 4001) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 4002) | def iternext(self) -> Self: ... method iter (line 4003) | def iter(self) -> Self: ... method getDagPath (line 4004) | def getDagPath(self) -> MDagPath: ... method getComponent (line 4005) | def getComponent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDependNode (line 4006) | def getDependNode(self) -> MObject: ... method getPlug (line 4007) | def getPlug(self) -> MPlug: ... method getStrings (line 4008) | def getStrings(self) -> list[str]: ... method hasComponents (line 4009) | def hasComponents(self) -> bool: ... method isDone (line 4010) | def isDone(self) -> bool: ... method itemType (line 4011) | def itemType(self) -> int: ... method next (line 4012) | def next(self) -> Self: ... method reset (line 4013) | def reset(self) -> Self: ... method setFilter (line 4014) | def setFilter(self, filter: Incomplete) -> Self: ... class MItSurfaceCV (line 4016) | class MItSurfaceCV: method __iter__ (line 4017) | def __iter__(self) -> Incomplete: ... method __next__ (line 4018) | def __next__(self) -> Incomplete: ... method __init__ (line 4019) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method iternext (line 4020) | def iternext(self) -> Self: ... method iter (line 4021) | def iter(self) -> Self: ... method hasHistoryOnCreate (line 4022) | def hasHistoryOnCreate(self) -> bool: ... method currentItem (line 4023) | def currentItem(self) -> MObject: ... method index (line 4024) | def index(self) -> int: ... method uvIndices (line 4025) | def uvIndices(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isDone (line 4026) | def isDone(self) -> bool: ... method isRowDone (line 4027) | def isRowDone(self) -> bool: ... method next (line 4028) | def next(self) -> Self: ... method nextRow (line 4029) | def nextRow(self) -> Self: ... method position (line 4030) | def position(self, space: MSpace = ...) -> MPoint: ... method reset (line 4032) | def reset(self, surface: MObject, useURows: bool = ...) -> Self: ... method reset (line 4034) | def reset(self, surface: MDagPath, component: MObject, useURows: bool ... method setPosition (line 4035) | def setPosition(self, point: MPoint, space: MSpace = ...) -> Self: ... method translateBy (line 4036) | def translateBy(self, vector: MVector, space: MSpace = ...) -> Self: ... method updateSurface (line 4037) | def updateSurface(self) -> Self: ... class MMatrix (line 4039) | class MMatrix: method __lt__ (line 4042) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 4043) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 4044) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 4045) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 4046) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 4047) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 4048) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 4049) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 4050) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 4051) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 4052) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 4053) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 4054) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 4055) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 4056) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 4057) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 4058) | def __len__(self) -> int: ... method __getitem__ (line 4059) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 4060) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 4061) | def __delitem__(self, key: Incomplete) -> None: ... method getElement (line 4062) | def getElement(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setElement (line 4063) | def setElement(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setToIdentity (line 4064) | def setToIdentity(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setToProduct (line 4065) | def setToProduct(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method transpose (line 4066) | def transpose(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method inverse (line 4067) | def inverse(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method adjoint (line 4068) | def adjoint(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method homogenize (line 4069) | def homogenize(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method det4x4 (line 4070) | def det4x4(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method det3x3 (line 4071) | def det3x3(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isEquivalent (line 4072) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isSingular (line 4073) | def isSingular(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MMatrixArray (line 4075) | class MMatrixArray: method __init__ (line 4077) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 4078) | def __len__(self) -> int: ... method __getitem__ (line 4079) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 4080) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 4081) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 4082) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 4083) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 4084) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 4085) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 4086) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 4087) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 4088) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 4089) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 4090) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 4091) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 4092) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 4093) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MMeshIntersector (line 4095) | class MMeshIntersector: method __init__ (line 4097) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 4098) | def create(self, mesh: Incomplete, matrix: Incomplete) -> Self: ... method getClosestPoint (line 4099) | def getClosestPoint(self, referencePoint: Incomplete, maxDistance: Inc... class MMeshIsectAccelParams (line 4101) | class MMeshIsectAccelParams: method __init__ (line 4102) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MMeshSmoothOptions (line 4104) | class MMeshSmoothOptions: method __init__ (line 4123) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MMessage (line 4125) | class MMessage: method currentCallbackId (line 4130) | def currentCallbackId() -> id: ... # type: ignore[valid-type] method nodeCallbacks (line 4132) | def nodeCallbacks(node: MObject) -> ids: ... # type: ignore[name-defi... method removeCallback (line 4134) | def removeCallback(id: MCallbackId) -> None: ... # type: ignore[name-... method removeCallbacks (line 4136) | def removeCallbacks(ids: Incomplete) -> None: ... class MCameraMessage (line 4138) | class MCameraMessage(MMessage): method addBeginManipulationCallback (line 4140) | def addBeginManipulationCallback(node: MObject, function: Incomplete, ... method addEndManipulationCallback (line 4142) | def addEndManipulationCallback(node: MObject, function: Incomplete, cl... class MCommandMessage (line 4144) | class MCommandMessage(MMessage): method addCommandCallback (line 4155) | def addCommandCallback(function: Incomplete, clientData: Incomplete = ... method addProcCallback (line 4157) | def addProcCallback(function: Incomplete, clientData: Incomplete = ...... method addCommandOutputCallback (line 4159) | def addCommandOutputCallback(function: Incomplete, clientData: Incompl... method addCommandOutputFilterCallback (line 4161) | def addCommandOutputFilterCallback(function: Incomplete, clientData: I... class MConditionMessage (line 4163) | class MConditionMessage(MMessage): method addConditionCallback (line 4165) | def addConditionCallback(conditionName: str, function: Incomplete, cli... method getConditionNames (line 4167) | def getConditionNames(*args: Incomplete, **kwargs: Incomplete) -> Inco... method getConditionState (line 4169) | def getConditionState(name: str) -> bool: ... class MContainerMessage (line 4171) | class MContainerMessage(MMessage): method addPublishAttrCallback (line 4173) | def addPublishAttrCallback(function: Incomplete, clientData: Incomplet... method addBoundAttrCallback (line 4175) | def addBoundAttrCallback(function: Incomplete, clientData: Incomplete ... class MDagMessage (line 4177) | class MDagMessage(MMessage): method addParentAddedCallback (line 4226) | def addParentAddedCallback(function: Incomplete, clientData: Incomplet... method addParentAddedDagPathCallback (line 4228) | def addParentAddedDagPathCallback(node: MDagPath, function: Incomplete... method addParentRemovedCallback (line 4230) | def addParentRemovedCallback(function: Incomplete, clientData: Incompl... method addParentRemovedDagPathCallback (line 4232) | def addParentRemovedDagPathCallback(node: MDagPath, function: Incomple... method addChildAddedCallback (line 4234) | def addChildAddedCallback(function: Incomplete, clientData: Incomplete... method addChildAddedDagPathCallback (line 4236) | def addChildAddedDagPathCallback(node: MDagPath, function: Incomplete,... method addChildRemovedCallback (line 4238) | def addChildRemovedCallback(function: Incomplete, clientData: Incomple... method addChildRemovedDagPathCallback (line 4240) | def addChildRemovedDagPathCallback(node: MDagPath, function: Incomplet... method addChildReorderedCallback (line 4242) | def addChildReorderedCallback(function: Incomplete, clientData: Incomp... method addChildReorderedDagPathCallback (line 4244) | def addChildReorderedDagPathCallback(node: MDagPath, function: Incompl... method addDagCallback (line 4246) | def addDagCallback(msgType: DagMessage, function: Incomplete, clientDa... method addDagDagPathCallback (line 4248) | def addDagDagPathCallback(node: MDagPath, msgType: DagMessage, functio... method addAllDagChangesCallback (line 4250) | def addAllDagChangesCallback(function: Incomplete, clientData: Incompl... method addAllDagChangesDagPathCallback (line 4252) | def addAllDagChangesDagPathCallback(node: MDagPath, function: Incomple... method addInstanceAddedCallback (line 4254) | def addInstanceAddedCallback(function: Incomplete, clientData: Incompl... method addInstanceAddedDagPathCallback (line 4256) | def addInstanceAddedDagPathCallback(node: MDagPath, function: Incomple... method addInstanceRemovedCallback (line 4258) | def addInstanceRemovedCallback(function: Incomplete, clientData: Incom... method addInstanceRemovedDagPathCallback (line 4260) | def addInstanceRemovedDagPathCallback(node: MDagPath, function: Incomp... method addWorldMatrixModifiedCallback (line 4262) | def addWorldMatrixModifiedCallback(*args: Incomplete, **kwargs: Incomp... method addMatrixModifiedCallback (line 4264) | def addMatrixModifiedCallback(*args: Incomplete, **kwargs: Incomplete)... class MDGMessage (line 4266) | class MDGMessage(MMessage): method addTimeChangeCallback (line 4268) | def addTimeChangeCallback(function: Incomplete, clientData: Incomplete... method addDelayedTimeChangeCallback (line 4270) | def addDelayedTimeChangeCallback(function: Incomplete, clientData: Inc... method addDelayedTimeChangeRunupCallback (line 4272) | def addDelayedTimeChangeRunupCallback(function: Incomplete, clientData... method addForceUpdateCallback (line 4274) | def addForceUpdateCallback(function: Incomplete, clientData: Incomplet... method addNodeAddedCallback (line 4276) | def addNodeAddedCallback(function: Incomplete, nodeType: str, clientDa... method addNodeRemovedCallback (line 4278) | def addNodeRemovedCallback(function: Incomplete, nodeType: str, client... method addPreConnectionCallback (line 4280) | def addPreConnectionCallback(function: Incomplete, clientData: Incompl... method addConnectionCallback (line 4282) | def addConnectionCallback(function: Incomplete, clientData: Incomplete... method addNodeChangeUuidCheckCallback (line 4284) | def addNodeChangeUuidCheckCallback(function: Incomplete, clientData: I... class MEventMessage (line 4286) | class MEventMessage(MMessage): method addEventCallback (line 4288) | def addEventCallback(eventName: str, function: Incomplete, clientData:... method getEventNames (line 4290) | def getEventNames(*args: Incomplete, **kwargs: Incomplete) -> Incomple... class MLockMessage (line 4292) | class MLockMessage(MMessage): method setNodeLockDAGQueryCallback (line 4323) | def setNodeLockDAGQueryCallback(dagPath: MDagPath, function: Incomplet... method setNodeLockQueryCallback (line 4325) | def setNodeLockQueryCallback(*args: Incomplete, **kwargs: Incomplete) ... method setPlugLockQueryCallback (line 4327) | def setPlugLockQueryCallback(*args: Incomplete, **kwargs: Incomplete) ... class MModelMessage (line 4329) | class MModelMessage(MMessage): method addPostDuplicateNodeListCallback (line 4332) | def addPostDuplicateNodeListCallback(function: Incomplete, clientData:... method addAfterDuplicateCallback (line 4334) | def addAfterDuplicateCallback(function: Incomplete, clientData: Incomp... method addBeforeDuplicateCallback (line 4336) | def addBeforeDuplicateCallback(function: Incomplete, clientData: Incom... method addCallback (line 4338) | def addCallback(message: Incomplete, function: Incomplete, clientData:... method addNodeAddedToModelCallback (line 4340) | def addNodeAddedToModelCallback(dagNode: MObject, function: Incomplete... method addNodeRemovedFromModelCallback (line 4342) | def addNodeRemovedFromModelCallback(dagNode: MObject, function: Incomp... class MNodeMessage (line 4344) | class MNodeMessage(MMessage): method addAttributeAddedOrRemovedCallback (line 4366) | def addAttributeAddedOrRemovedCallback(node: MObject, function: Incomp... method addAttributeChangedCallback (line 4368) | def addAttributeChangedCallback(node: MObject, function: Incomplete, c... method addKeyableChangeOverride (line 4370) | def addKeyableChangeOverride(plug: MPlug, function: Incomplete, client... method addNameChangedCallback (line 4372) | def addNameChangedCallback(node: MObject, function: Incomplete, client... method addNodeAboutToDeleteCallback (line 4374) | def addNodeAboutToDeleteCallback(node: MObject, function: Incomplete, ... method addNodeDestroyedCallback (line 4376) | def addNodeDestroyedCallback(node: MObject, function: Incomplete, clie... method addNodeDirtyCallback (line 4378) | def addNodeDirtyCallback(node: MObject, function: Incomplete, clientDa... method addNodeDirtyPlugCallback (line 4380) | def addNodeDirtyPlugCallback(node: MObject, function: Incomplete, clie... method addNodePreRemovalCallback (line 4382) | def addNodePreRemovalCallback(node: MObject, function: Incomplete, cli... method addUuidChangedCallback (line 4384) | def addUuidChangedCallback(node: MObject, function: Incomplete, client... class MObjectSetMessage (line 4386) | class MObjectSetMessage(MMessage): method addSetMembersModifiedCallback (line 4388) | def addSetMembersModifiedCallback(node: MObject, function: Incomplete,... class MPolyMessage (line 4390) | class MPolyMessage(MMessage): method addPolyComponentIdChangedCallback (line 4392) | def addPolyComponentIdChangedCallback(*args: Incomplete, **kwargs: Inc... method addPolyTopologyChangedCallback (line 4394) | def addPolyTopologyChangedCallback(node: MObject, function: Incomplete... class MSceneMessage (line 4396) | class MSceneMessage(MMessage): method addCallback (line 4451) | def addCallback(message: Incomplete, function: Incomplete, clientData:... method addCheckCallback (line 4453) | def addCheckCallback(message: Incomplete, function: Incomplete, client... method addCheckFileCallback (line 4455) | def addCheckFileCallback(message: Incomplete, function: Incomplete, cl... method addCheckReferenceCallback (line 4457) | def addCheckReferenceCallback(message: Incomplete, function: Incomplet... method addConnectionFailedCallback (line 4459) | def addConnectionFailedCallback(function: Incomplete, clientData: Inco... method addNamespaceRenamedCallback (line 4461) | def addNamespaceRenamedCallback(function: Incomplete, clientData: Inco... method addReferenceCallback (line 4463) | def addReferenceCallback(message: Incomplete, function: Incomplete, cl... method addStringArrayCallback (line 4465) | def addStringArrayCallback(message: Incomplete, function: Incomplete, ... class MTimerMessage (line 4467) | class MTimerMessage(MMessage): method addTimerCallback (line 4469) | def addTimerCallback(period: float, function: Incomplete, clientData: ... class MUserEventMessage (line 4471) | class MUserEventMessage(MMessage): method registerUserEvent (line 4473) | def registerUserEvent(eventName: str) -> Any: ... method isUserEvent (line 4475) | def isUserEvent(eventName: str) -> bool: ... method deregisterUserEvent (line 4477) | def deregisterUserEvent(eventName: str) -> Any: ... method postUserEvent (line 4479) | def postUserEvent(eventName: str, clientData: Incomplete = ...) -> Any... method addUserEventCallback (line 4481) | def addUserEventCallback(eventName: str, function: Incomplete, clientD... class MNamespace (line 4483) | class MNamespace: method addNamespace (line 4485) | def addNamespace(MStringname: Incomplete, MStringparent: Incomplete = ... method validateName (line 4487) | def validateName(MStringname: Incomplete) -> str: ... method currentNamespace (line 4489) | def currentNamespace() -> str: ... method setCurrentNamespace (line 4491) | def setCurrentNamespace(MStringname: Incomplete) -> str: ... method getNamespaces (line 4493) | def getNamespaces(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method namespaceExists (line 4495) | def namespaceExists(MStringname: Incomplete) -> bool: ... method parentNamespace (line 4497) | def parentNamespace() -> str: ... method removeNamespace (line 4499) | def removeNamespace(MStringname: Incomplete, boolremoveContents: Incom... method renameNamespace (line 4501) | def renameNamespace(MStringoldName: Incomplete, MStringnewName: Incomp... method getNamespaceObjects (line 4503) | def getNamespaceObjects(MStringparentNamespace: Incomplete, boolrecurs... method moveNamespace (line 4505) | def moveNamespace(MStringsrc: Incomplete, MStringdst: Incomplete, bool... method rootNamespace (line 4507) | def rootNamespace() -> str: ... method relativeNames (line 4509) | def relativeNames() -> bool: ... method setRelativeNames (line 4511) | def setRelativeNames(boolnewState: Incomplete) -> Any: ... method getNamespaceFromName (line 4513) | def getNamespaceFromName(MStringfullName: Incomplete) -> str: ... method stripNamespaceFromName (line 4515) | def stripNamespaceFromName(MStringfullName: Incomplete) -> str: ... method makeNamepathAbsolute (line 4517) | def makeNamepathAbsolute(MStringfullName: Incomplete) -> str: ... class MNodeClass (line 4519) | class MNodeClass: method __init__ (line 4525) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addExtensionAttribute (line 4526) | def addExtensionAttribute(self, *args: Incomplete, **kwargs: Incomplet... method attribute (line 4527) | def attribute(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method getAttributes (line 4528) | def getAttributes(self, *args: Incomplete, **kwargs: Incomplete) -> In... method hasAttribute (line 4529) | def hasAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method removeExtensionAttribute (line 4530) | def removeExtensionAttribute(self, *args: Incomplete, **kwargs: Incomp... method removeExtensionAttributeIfUnset (line 4531) | def removeExtensionAttributeIfUnset(self, *args: Incomplete, **kwargs:... class MObject (line 4533) | class MObject: method __lt__ (line 4536) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 4537) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 4538) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 4539) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 4540) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 4541) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 4542) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method hasFn (line 4543) | def hasFn(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isNull (line 4544) | def isNull(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method apiType (line 4545) | def apiType(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MObjectArray (line 4547) | class MObjectArray: method __init__ (line 4549) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 4550) | def __len__(self) -> int: ... method __getitem__ (line 4551) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 4552) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 4553) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 4554) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 4555) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 4556) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 4557) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 4558) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 4559) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 4560) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 4561) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 4562) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 4563) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 4564) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 4565) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MObjectHandle (line 4567) | class MObjectHandle: method __hash__ (line 4568) | def __hash__(self) -> int: ... method __lt__ (line 4569) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 4570) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 4571) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 4572) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 4573) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 4574) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 4575) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method assign (line 4576) | def assign(self, source: None) -> Self: ... method hashCode (line 4577) | def hashCode(self) -> int: ... method isAlive (line 4578) | def isAlive(self) -> bool: ... method isValid (line 4579) | def isValid(self) -> bool: ... method object (line 4580) | def object(self) -> MObject: ... class MPlane (line 4582) | class MPlane: method __init__ (line 4583) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method distance (line 4584) | def distance(self) -> float: ... method distanceToPoint (line 4585) | def distanceToPoint(self, point: MVector, signed: bool = ...) -> float... method normal (line 4586) | def normal(self) -> MVector: ... method setPlane (line 4588) | def setPlane(self, a: float, b: float, c: float, d: float) -> Self: ... method setPlane (line 4590) | def setPlane(self, n: MVector, d: float) -> Self: ... class MPlug (line 4592) | class MPlug: method __lt__ (line 4619) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 4620) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 4621) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 4622) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 4623) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 4624) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 4625) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method array (line 4626) | def array(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asBool (line 4627) | def asBool(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asChar (line 4628) | def asChar(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method asDouble (line 4629) | def asDouble(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asFloat (line 4630) | def asFloat(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asInt (line 4631) | def asInt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method asMAngle (line 4632) | def asMAngle(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asMDistance (line 4633) | def asMDistance(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asMObject (line 4634) | def asMObject(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method asMDataHandle (line 4635) | def asMDataHandle(self, *args: Incomplete, **kwargs: Incomplete) -> In... method asMTime (line 4636) | def asMTime(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asShort (line 4637) | def asShort(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method asString (line 4638) | def asString(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method attribute (line 4639) | def attribute(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method child (line 4640) | def child(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method connectedTo (line 4641) | def connectedTo(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method source (line 4642) | def source(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method sourceWithConversion (line 4644) | def sourceWithConversion(self) -> Any: ... method sourceWithConversion (line 4646) | def sourceWithConversion(self) -> Any: ... # type: ignore[overload-ca... method destinations (line 4647) | def destinations(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method destinationsWithConversions (line 4648) | def destinationsWithConversions(self) -> Any: ... method connectionByPhysicalIndex (line 4649) | def connectionByPhysicalIndex(self, *args: Incomplete, **kwargs: Incom... method constructHandle (line 4650) | def constructHandle(self, *args: Incomplete, **kwargs: Incomplete) -> ... method copy (line 4651) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method destructHandle (line 4652) | def destructHandle(self, *args: Incomplete, **kwargs: Incomplete) -> I... method elementByLogicalIndex (line 4653) | def elementByLogicalIndex(self, *args: Incomplete, **kwargs: Incomplet... method elementByPhysicalIndex (line 4654) | def elementByPhysicalIndex(self, *args: Incomplete, **kwargs: Incomple... method evaluateNumElements (line 4655) | def evaluateNumElements(self, *args: Incomplete, **kwargs: Incomplete)... method getExistingArrayAttributeIndices (line 4656) | def getExistingArrayAttributeIndices(self, *args: Incomplete, **kwargs... method getSetAttrCmds (line 4657) | def getSetAttrCmds(self, *args: Incomplete, **kwargs: Incomplete) -> I... method isDefaultValue (line 4658) | def isDefaultValue(self, *args: Incomplete, **kwargs: Incomplete) -> I... method isFreeToChange (line 4659) | def isFreeToChange(self, *args: Incomplete, **kwargs: Incomplete) -> I... method logicalIndex (line 4660) | def logicalIndex(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method name (line 4661) | def name(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method node (line 4662) | def node(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method numChildren (line 4663) | def numChildren(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method numConnectedChildren (line 4664) | def numConnectedChildren(self, *args: Incomplete, **kwargs: Incomplete... method numConnectedElements (line 4665) | def numConnectedElements(self, *args: Incomplete, **kwargs: Incomplete... method numElements (line 4666) | def numElements(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method parent (line 4667) | def parent(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method partialName (line 4668) | def partialName(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method selectAncestorLogicalIndex (line 4669) | def selectAncestorLogicalIndex(self, *args: Incomplete, **kwargs: Inco... method setAttribute (line 4670) | def setAttribute(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setBool (line 4671) | def setBool(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setChar (line 4672) | def setChar(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setDouble (line 4673) | def setDouble(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setFloat (line 4674) | def setFloat(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setInt (line 4675) | def setInt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setMAngle (line 4676) | def setMAngle(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method setMDataHandle (line 4677) | def setMDataHandle(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setMDistance (line 4678) | def setMDistance(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setMObject (line 4679) | def setMObject(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method proxied (line 4680) | def proxied(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method setMPxData (line 4681) | def setMPxData(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setMTime (line 4682) | def setMTime(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setNumElements (line 4683) | def setNumElements(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setShort (line 4684) | def setShort(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setString (line 4685) | def setString(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method isExactlyEqual (line 4686) | def isExactlyEqual(self, *args: Incomplete, **kwargs: Incomplete) -> I... class MPlugArray (line 4688) | class MPlugArray: method __init__ (line 4690) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 4691) | def __len__(self) -> int: ... method __getitem__ (line 4692) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 4693) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 4694) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 4695) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 4696) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 4697) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 4698) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 4699) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 4700) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 4701) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 4702) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 4703) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 4704) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 4705) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 4706) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MPoint (line 4708) | class MPoint: method __lt__ (line 4715) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 4716) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 4717) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 4718) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 4719) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 4720) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 4721) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 4722) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 4723) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 4724) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 4725) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 4726) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 4727) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 4728) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 4729) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 4730) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __truediv__ (line 4731) | def __truediv__(self, value: Incomplete) -> Incomplete: ... method __rtruediv__ (line 4732) | def __rtruediv__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 4733) | def __len__(self) -> int: ... method __getitem__ (line 4734) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 4735) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 4736) | def __delitem__(self, key: Incomplete) -> None: ... method cartesianize (line 4737) | def cartesianize(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method rationalize (line 4738) | def rationalize(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method homogenize (line 4739) | def homogenize(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method distanceTo (line 4740) | def distanceTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method isEquivalent (line 4741) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... class MPointArray (line 4743) | class MPointArray: method __init__ (line 4745) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 4746) | def __len__(self) -> int: ... method __getitem__ (line 4747) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 4748) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 4749) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 4750) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 4751) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 4752) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 4753) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 4754) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 4755) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 4756) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 4757) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 4758) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 4759) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 4760) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 4761) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MPointOnMesh (line 4763) | class MPointOnMesh: method __init__ (line 4769) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPxAttributePatternFactory (line 4771) | class MPxAttributePatternFactory: method __init__ (line 4772) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPxCommand (line 4774) | class MPxCommand: method __init__ (line 4781) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method doIt (line 4782) | def doIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method undoIt (line 4783) | def undoIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method redoIt (line 4784) | def redoIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method isUndoable (line 4785) | def isUndoable(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method hasSyntax (line 4786) | def hasSyntax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method syntax (line 4787) | def syntax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method displayInfo (line 4789) | def displayInfo(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method displayWarning (line 4791) | def displayWarning(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method displayError (line 4793) | def displayError(*args: Incomplete, **kwargs: Incomplete) -> Incomplet... method clearResult (line 4795) | def clearResult(*args: Incomplete, **kwargs: Incomplete) -> Incomplete... method setResult (line 4797) | def setResult(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method appendToResult (line 4799) | def appendToResult(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method currentResultType (line 4801) | def currentResultType(*args: Incomplete, **kwargs: Incomplete) -> Inco... method isCurrentResultArray (line 4803) | def isCurrentResultArray(*args: Incomplete, **kwargs: Incomplete) -> I... method currentResult (line 4805) | def currentResult(*args: Incomplete, **kwargs: Incomplete) -> Incomple... class MPxData (line 4807) | class MPxData: method __init__ (line 4811) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method readASCII (line 4812) | def readASCII(self, argList: int, endOfTheLastParsedElement: Incomplet... method readBinary (line 4813) | def readBinary(self, _in: bytearray, length: int) -> int: ... method writeASCII (line 4814) | def writeASCII(self) -> str: ... method writeBinary (line 4815) | def writeBinary(self) -> bytearray: ... method copy (line 4816) | def copy(self, src: MPxData) -> Self: ... method typeId (line 4817) | def typeId(self) -> MTypeId: ... method name (line 4818) | def name(self) -> str: ... class MPxGeometryData (line 4820) | class MPxGeometryData(MPxData): method __init__ (line 4822) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method deleteComponent (line 4823) | def deleteComponent(self, compList: MObjectArray) -> bool: ... method deleteComponentsFromGroups (line 4824) | def deleteComponentsFromGroups(self, compList: MObjectArray, groupIdAr... method getMatrix (line 4825) | def getMatrix(self, matrix: MMatrix) -> bool: ... method iterator (line 4826) | def iterator(self, componentList: MObjectArray, component: MObject, us... method smartCopy (line 4827) | def smartCopy(self, srcGeom: MPxGeometryData) -> Self: ... method updateCompleteVertexGroup (line 4828) | def updateCompleteVertexGroup(self, component: MObject) -> bool: ... class MPxGeometryIterator (line 4830) | class MPxGeometryIterator: method __iter__ (line 4833) | def __iter__(self) -> Incomplete: ... method __next__ (line 4834) | def __next__(self) -> Incomplete: ... method __init__ (line 4835) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method component (line 4836) | def component(self) -> MObject: ... method geometry (line 4837) | def geometry(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method hasNormals (line 4838) | def hasNormals(self) -> bool: ... method hasPoints (line 4839) | def hasPoints(self) -> bool: ... method index (line 4840) | def index(self) -> int: ... method indexUnsimplified (line 4841) | def indexUnsimplified(self) -> int: ... method isDone (line 4842) | def isDone(self) -> bool: ... method iteratorCount (line 4843) | def iteratorCount(self) -> int: ... method next (line 4844) | def next(self) -> Self: ... method point (line 4845) | def point(self) -> MPoint: ... method reset (line 4846) | def reset(self) -> Self: ... method setObject (line 4847) | def setObject(self, shape: MPxSurfaceShape) -> Self: ... method setPoint (line 4848) | def setPoint(self, point: MPoint) -> Self: ... method setPointGetNext (line 4849) | def setPointGetNext(self, point: MPoint) -> int: ... class MPxNode (line 4851) | class MPxNode: method __init__ (line 4883) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addAttribute (line 4886) | def addAttribute(attr: MObject) -> None: ... method addAttribute (line 4889) | def addAttribute() -> Any: ... method attributeAffects (line 4891) | def attributeAffects(whenChanges: MObject, isAffected: MObject) -> Non... method compute (line 4892) | def compute(self, plug: MPlug, dataBlock: Incomplete) -> Self: ... method preEvaluation (line 4893) | def preEvaluation(self, context: MDGContext, evalNode: Incomplete) -> ... method postEvaluation (line 4894) | def postEvaluation(self, context: MDGContext, evalNode: Incomplete, ev... method getCacheSetup (line 4895) | def getCacheSetup(self, evalNode: MEvaluationNode, disablingInfo: MNod... method configCache (line 4896) | def configCache(self, evalNode: MEvaluationNode, schema: MCacheSchema)... method transformInvalidationRange (line 4897) | def transformInvalidationRange(self, plug: Incomplete, timeRange: Inco... method hasInvalidationRangeTransformation (line 4898) | def hasInvalidationRangeTransformation(self) -> bool: ... method connectionBroken (line 4899) | def connectionBroken(self, plug: MPlug, otherPlug: MPlug, asSrc: bool)... method connectionMade (line 4900) | def connectionMade(self, plug: MPlug, otherPlug: MPlug, asSrc: bool) -... method copyInternalData (line 4901) | def copyInternalData(self, node: MPxNode) -> Self: ... method dependsOn (line 4902) | def dependsOn(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method doNotWrite (line 4903) | def doNotWrite(self) -> bool: ... method existWithoutInConnections (line 4904) | def existWithoutInConnections(self) -> bool: ... method existWithoutOutConnections (line 4905) | def existWithoutOutConnections(self) -> bool: ... method forceCache (line 4906) | def forceCache(self, ctx: MDGContext = ...) -> MDataBlock: ... method getFilesToArchive (line 4907) | def getFilesToArchive(self, shortName: bool = ..., unresolvedName: boo... method getInternalValue (line 4908) | def getInternalValue(self, plug: MPlug, dataHandle: MDataHandle) -> bo... method getInternalValueInContext (line 4909) | def getInternalValueInContext(self, plug: MPlug, dataHandle: MDataHand... method inheritAttributesFrom (line 4911) | def inheritAttributesFrom(parentClassName: str) -> None: ... method internalArrayCount (line 4913) | def internalArrayCount(self, plug: MPlug) -> int: ... method internalArrayCount (line 4915) | def internalArrayCount(self, plug: MPlug, ctx: MDGContext) -> int[OBSO... method isAbstractClass (line 4916) | def isAbstractClass(self) -> bool: ... method isPassiveOutput (line 4917) | def isPassiveOutput(self, plug: MPlug) -> bool: ... method legalConnection (line 4918) | def legalConnection(self, *args: Incomplete, **kwargs: Incomplete) -> ... method legalDisconnection (line 4919) | def legalDisconnection(self, *args: Incomplete, **kwargs: Incomplete) ... method passThroughToMany (line 4920) | def passThroughToMany(self, plug: MPlug, plugArray: MPlugArray) -> boo... method passThroughToOne (line 4921) | def passThroughToOne(self, plug: MPlug) -> plug: ... # type: ignore[n... method postConstructor (line 4922) | def postConstructor(self) -> Self: ... method setDependentsDirty (line 4924) | def setDependentsDirty(self, plug: MPlug, plugArray: Incomplete) -> Se... method setDependentsDirty (line 4926) | def setDependentsDirty(self) -> Any: ... method setDependentsDirty (line 4928) | def setDependentsDirty(self) -> Any: ... # type: ignore[overload-cann... method setDoNotWrite (line 4929) | def setDoNotWrite(self, bool: Incomplete) -> Self: ... method setExistWithoutInConnections (line 4930) | def setExistWithoutInConnections(self, bool: Incomplete) -> bool: ... method setExistWithoutOutConnections (line 4931) | def setExistWithoutOutConnections(self, bool: Incomplete) -> bool: ... method setInternalValue (line 4932) | def setInternalValue(self, plug: MPlug, dataHandle: MDataHandle) -> bo... method setInternalValueInContext (line 4933) | def setInternalValueInContext(self, plug: MPlug, dataHandle: MDataHand... method setMPSafe (line 4934) | def setMPSafe(self, bool: Incomplete) -> Self: ... method shouldSave (line 4935) | def shouldSave(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method thisMObject (line 4936) | def thisMObject(self) -> MObject: ... method type (line 4937) | def type(self) -> int: ... method typeId (line 4938) | def typeId(self) -> MTypeId: ... method typeName (line 4939) | def typeName(self) -> str: ... method name (line 4940) | def name(self) -> str: ... method addExternalContentForFileAttr (line 4941) | def addExternalContentForFileAttr(self, table: MExternalContentInfoTab... method getExternalContent (line 4942) | def getExternalContent(self, table: MExternalContentInfoTable) -> Self... method setExternalContent (line 4943) | def setExternalContent(self, table: Incomplete) -> Self: ... method setExternalContentForFileAttr (line 4944) | def setExternalContentForFileAttr(self, attr: MObject, table: MExterna... class MPxSurfaceShape (line 4946) | class MPxSurfaceShape(MPxNode): method __init__ (line 5004) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acceptsGeometryIterator (line 5005) | def acceptsGeometryIterator(self, component: MObject, writeable: bool ... method activeComponents (line 5006) | def activeComponents(self) -> MObjectArray: ... method boundingBox (line 5007) | def boundingBox(self) -> MBoundingBox: ... method cachedShapeAttr (line 5008) | def cachedShapeAttr(self) -> MObject: ... method canMakeLive (line 5009) | def canMakeLive(self) -> bool: ... method childChanged (line 5010) | def childChanged(self, state: int = ...) -> Self: ... method closestPoint (line 5012) | def closestPoint(self, toThisPoint: MPoint, theClosestPoint: MPoint, t... method closestPoint (line 5014) | def closestPoint(self, raySource: MPoint, rayDirection: MVector, theCl... method componentToPlugs (line 5015) | def componentToPlugs(self, component: MObject, selectionList: Incomple... method convertToTweakNodePlug (line 5016) | def convertToTweakNodePlug(self, plug: MPlug) -> bool: ... method createFullRenderGroup (line 5017) | def createFullRenderGroup(self) -> MObject: ... method createFullVertexGroup (line 5018) | def createFullVertexGroup(self) -> MObject: ... method deleteComponents (line 5019) | def deleteComponents(self, componentList: MObjectArray, undoInfo: MDou... method excludeAsPluginShape (line 5021) | def excludeAsPluginShape(self) -> bool: ... method excludeAsPluginShape (line 5023) | def excludeAsPluginShape(self) -> Any: ... # type: ignore[overload-ca... method geometryData (line 5024) | def geometryData(self) -> MObject: ... method geometryIteratorSetup (line 5025) | def geometryIteratorSetup(self, componentList: MObjectArray, component... method getComponentSelectionMask (line 5026) | def getComponentSelectionMask(self) -> MSelectionMask: ... method getShapeSelectionMask (line 5027) | def getShapeSelectionMask(self) -> MSelectionMask: ... method getWorldMatrix (line 5028) | def getWorldMatrix(self, block: MDataBlock, instanceGeom: int) -> MMat... method hasActiveComponents (line 5029) | def hasActiveComponents(self) -> bool: ... method isBounded (line 5030) | def isBounded(self) -> bool: ... method localShapeInAttr (line 5031) | def localShapeInAttr(self) -> MObject: ... method localShapeOutAttr (line 5032) | def localShapeOutAttr(self) -> MObject: ... method match (line 5033) | def match(self, mask: MSelectionMask, componentList: MObjectArray) -> ... method matchComponent (line 5034) | def matchComponent(self, item: MSelectionList, spec: MAttributeSpecArr... method newControlPointComponent (line 5035) | def newControlPointComponent(self) -> MObject: ... method pointAtParm (line 5036) | def pointAtParm(self, atThisParm: MPoint, evaluatedPoint: MPoint) -> b... method renderGroupComponentType (line 5037) | def renderGroupComponentType(self) -> int: ... method transformUsing (line 5038) | def transformUsing(self, matrix: MMatrix, componentList: MObjectArray,... method tweakUsing (line 5039) | def tweakUsing(self, matrix: MMatrix, componentList: MObjectArray, cac... method undeleteComponents (line 5040) | def undeleteComponents(self, componentList: MObjectArray, undoInfo: MD... method vertexOffsetDirection (line 5041) | def vertexOffsetDirection(self, component: MObject, direction: MVector... method weightedTransformUsing (line 5042) | def weightedTransformUsing(self, xform: MTransformationMatrix, space: ... method weightedTweakUsing (line 5043) | def weightedTweakUsing(self, xform: MTransformationMatrix, space: MSpa... method worldShapeOutAttr (line 5044) | def worldShapeOutAttr(self) -> MObject: ... class MQuaternion (line 5046) | class MQuaternion: method __lt__ (line 5053) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5054) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5055) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5056) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5057) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5058) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5059) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 5060) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 5061) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 5062) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 5063) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5064) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5065) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __neg__ (line 5066) | def __neg__(self) -> Incomplete: ... method __imul__ (line 5067) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 5068) | def __len__(self) -> int: ... method __getitem__ (line 5069) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 5070) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 5071) | def __delitem__(self, key: Incomplete) -> None: ... method slerp (line 5073) | def slerp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method squad (line 5075) | def squad(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method squadPt (line 5077) | def squadPt(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method asAxisAngle (line 5078) | def asAxisAngle(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method asEulerRotation (line 5079) | def asEulerRotation(self, *args: Incomplete, **kwargs: Incomplete) -> ... method asMatrix (line 5080) | def asMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method conjugate (line 5081) | def conjugate(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method conjugateIt (line 5082) | def conjugateIt(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method exp (line 5083) | def exp(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method inverse (line 5084) | def inverse(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method invertIt (line 5085) | def invertIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method isEquivalent (line 5086) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method log (line 5087) | def log(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method negateIt (line 5088) | def negateIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method normal (line 5089) | def normal(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method normalizeIt (line 5090) | def normalizeIt(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setToXAxis (line 5091) | def setToXAxis(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setToYAxis (line 5092) | def setToYAxis(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setToZAxis (line 5093) | def setToZAxis(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setValue (line 5094) | def setValue(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MRampAttribute (line 5096) | class MRampAttribute: method __init__ (line 5103) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method createColorRamp (line 5105) | def createColorRamp(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method createCurveRamp (line 5107) | def createCurveRamp(*args: Incomplete, **kwargs: Incomplete) -> Incomp... method createRamp (line 5109) | def createRamp(*args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method addEntries (line 5110) | def addEntries(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method deleteEntries (line 5111) | def deleteEntries(self, *args: Incomplete, **kwargs: Incomplete) -> In... method getEntries (line 5112) | def getEntries(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method getValueAtPosition (line 5113) | def getValueAtPosition(self, *args: Incomplete, **kwargs: Incomplete) ... method numEntries (line 5114) | def numEntries(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setInterpolationAtIndex (line 5115) | def setInterpolationAtIndex(self, *args: Incomplete, **kwargs: Incompl... method setPositionAtIndex (line 5116) | def setPositionAtIndex(self, *args: Incomplete, **kwargs: Incomplete) ... method setValueAtIndex (line 5117) | def setValueAtIndex(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setRamp (line 5118) | def setRamp(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method pack (line 5119) | def pack(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method hasIndex (line 5120) | def hasIndex(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method sort (line 5121) | def sort(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... class MRichSelection (line 5123) | class MRichSelection: method __init__ (line 5124) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method clear (line 5125) | def clear(self) -> Self: ... method getRawSymmetryMatrix (line 5126) | def getRawSymmetryMatrix(self, *args: Incomplete, **kwargs: Incomplete... method getSelection (line 5127) | def getSelection(self) -> MSelectionList: ... method getSymmetry (line 5128) | def getSymmetry(self) -> MSelectionList: ... method getSymmetryMatrix (line 5129) | def getSymmetryMatrix(self, MDagPath: Incomplete, space: MSpace) -> MM... method getSymmetryPlane (line 5130) | def getSymmetryPlane(self, MDagPath: Incomplete, space: MSpace) -> MPl... method setSelection (line 5131) | def setSelection(self, MSelectionList: Incomplete) -> Self: ... class MSelectionList (line 5133) | class MSelectionList: method __init__ (line 5137) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method add (line 5139) | def add(self, pattern: Incomplete, searchChildNamespaces: Incomplete =... method add (line 5141) | def add(self, item: Incomplete, mergeWithExisting: Incomplete = ...) -... method clear (line 5142) | def clear(self) -> Self: ... method copy (line 5143) | def copy(self, src: Incomplete) -> Self: ... method getComponent (line 5144) | def getComponent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getDagPath (line 5145) | def getDagPath(self, index: Incomplete) -> MDagPath: ... method getDependNode (line 5146) | def getDependNode(self, index: Incomplete) -> MObject: ... method getPlug (line 5147) | def getPlug(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method getSelectionStrings (line 5148) | def getSelectionStrings(self, *args: Incomplete, **kwargs: Incomplete)... method hasItem (line 5149) | def hasItem(self, item: Incomplete) -> bool: ... method hasItemPartly (line 5150) | def hasItemPartly(self, dagPath: Incomplete, component: Incomplete) ->... method isEmpty (line 5151) | def isEmpty(self) -> bool: ... method length (line 5152) | def length(self) -> int: ... method merge (line 5154) | def merge(self, other: Incomplete, strategy: Incomplete = ...) -> Self... method merge (line 5156) | def merge(self, dagPath: Incomplete, component: Incomplete, strategy: ... method remove (line 5157) | def remove(self, index: Incomplete) -> Self: ... method replace (line 5158) | def replace(self, index: Incomplete, newItem: Incomplete) -> Self: ... method toggle (line 5159) | def toggle(self, dagPath: Incomplete, component: Incomplete) -> Self: ... method intersect (line 5160) | def intersect(self, other: Incomplete, expandToLeaves: Incomplete = ..... class MSelectionMask (line 5162) | class MSelectionMask: method __init__ (line 5247) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addMask (line 5248) | def addMask(self, selType: int) -> Self: ... method copy (line 5249) | def copy(self, source: MSelectionMask) -> Self: ... method deregisterSelectionType (line 5251) | def deregisterSelectionType(selTypeName: str) -> bool: ... method getSelectionTypePriority (line 5253) | def getSelectionTypePriority(selTypeName: str) -> int: ... method intersects (line 5255) | def intersects(self, mask: MSelectionMask) -> bool: ... method intersects (line 5257) | def intersects(self, selType: int) -> bool: ... method registerSelectionType (line 5260) | def registerSelectionType(selTypeName: str, priority: int = ...) -> bo... method registerSelectionType (line 5263) | def registerSelectionType() -> Any: ... method registerSelectionType (line 5266) | def registerSelectionType() -> Any: ... # type: ignore[overload-canno... method setMask (line 5268) | def setMask(self, mask: MSelectionMask) -> Self: ... method setMask (line 5270) | def setMask(self, selType: int) -> Self: ... class MSpace (line 5272) | class MSpace: class MSyntax (line 5281) | class MSyntax: method __init__ (line 5301) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addArg (line 5302) | def addArg(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method addFlag (line 5303) | def addFlag(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method makeFlagMultiUse (line 5304) | def makeFlagMultiUse(self, *args: Incomplete, **kwargs: Incomplete) ->... method makeFlagQueryWithFullArgs (line 5305) | def makeFlagQueryWithFullArgs(self, *args: Incomplete, **kwargs: Incom... method maxObjects (line 5306) | def maxObjects(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method minObjects (line 5307) | def minObjects(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setMaxObjects (line 5308) | def setMaxObjects(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setMinObjects (line 5309) | def setMinObjects(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setObjectType (line 5310) | def setObjectType(self, *args: Incomplete, **kwargs: Incomplete) -> In... method useSelectionAsDefault (line 5311) | def useSelectionAsDefault(self, *args: Incomplete, **kwargs: Incomplet... class MTime (line 5313) | class MTime: method __lt__ (line 5377) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5378) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5379) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5380) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5381) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5382) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5383) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 5384) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 5385) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 5386) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 5387) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5388) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5389) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 5390) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 5391) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 5392) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __truediv__ (line 5393) | def __truediv__(self, value: Incomplete) -> Incomplete: ... method __rtruediv__ (line 5394) | def __rtruediv__(self, value: Incomplete) -> Incomplete: ... method __itruediv__ (line 5395) | def __itruediv__(self, value: Incomplete) -> Incomplete: ... method uiUnit (line 5397) | def uiUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method setUIUnit (line 5399) | def setUIUnit(*args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... method ticksPerSecond (line 5401) | def ticksPerSecond(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method asUnits (line 5402) | def asUnits(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... class MTimeArray (line 5404) | class MTimeArray: method __init__ (line 5406) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 5407) | def __len__(self) -> int: ... method __getitem__ (line 5408) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 5409) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 5410) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 5411) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5412) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5413) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 5414) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 5415) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 5416) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 5417) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 5418) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 5419) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 5420) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 5421) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 5422) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MTimeRange (line 5424) | class MTimeRange: method __lt__ (line 5425) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5426) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5427) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5428) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5429) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5430) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5431) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __or__ (line 5432) | def __or__(self, value: Incomplete) -> Incomplete: ... method __ror__ (line 5433) | def __ror__(self, value: Incomplete) -> Incomplete: ... method empty (line 5434) | def empty(self) -> bool: ... method contains (line 5435) | def contains(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method intersects (line 5436) | def intersects(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... class MTransformationMatrix (line 5438) | class MTransformationMatrix: method __lt__ (line 5449) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5450) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5451) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5452) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5453) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5454) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5455) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method asMatrix (line 5456) | def asMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method asMatrixInverse (line 5457) | def asMatrixInverse(self, *args: Incomplete, **kwargs: Incomplete) -> ... method asRotateMatrix (line 5458) | def asRotateMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> I... method asScaleMatrix (line 5459) | def asScaleMatrix(self, *args: Incomplete, **kwargs: Incomplete) -> In... method isEquivalent (line 5460) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method reorderRotation (line 5461) | def reorderRotation(self, *args: Incomplete, **kwargs: Incomplete) -> ... method rotateBy (line 5462) | def rotateBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method rotateByComponents (line 5463) | def rotateByComponents(self, *args: Incomplete, **kwargs: Incomplete) ... method rotatePivot (line 5464) | def rotatePivot(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method rotatePivotTranslation (line 5465) | def rotatePivotTranslation(self, *args: Incomplete, **kwargs: Incomple... method rotation (line 5466) | def rotation(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method rotationComponents (line 5467) | def rotationComponents(self, *args: Incomplete, **kwargs: Incomplete) ... method rotationOrder (line 5468) | def rotationOrder(self, *args: Incomplete, **kwargs: Incomplete) -> In... method rotationOrientation (line 5469) | def rotationOrientation(self, *args: Incomplete, **kwargs: Incomplete)... method scale (line 5470) | def scale(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method scaleBy (line 5471) | def scaleBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method scalePivot (line 5472) | def scalePivot(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method scalePivotTranslation (line 5473) | def scalePivotTranslation(self, *args: Incomplete, **kwargs: Incomplet... method setRotatePivot (line 5474) | def setRotatePivot(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setRotatePivotTranslation (line 5475) | def setRotatePivotTranslation(self, *args: Incomplete, **kwargs: Incom... method setRotation (line 5476) | def setRotation(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method setRotationComponents (line 5477) | def setRotationComponents(self, *args: Incomplete, **kwargs: Incomplet... method setRotationOrientation (line 5478) | def setRotationOrientation(self, *args: Incomplete, **kwargs: Incomple... method setScale (line 5479) | def setScale(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setScalePivot (line 5480) | def setScalePivot(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setScalePivotTranslation (line 5481) | def setScalePivotTranslation(self, *args: Incomplete, **kwargs: Incomp... method setShear (line 5482) | def setShear(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method setTranslation (line 5483) | def setTranslation(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setToRotationAxis (line 5484) | def setToRotationAxis(self, *args: Incomplete, **kwargs: Incomplete) -... method shear (line 5485) | def shear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method shearBy (line 5486) | def shearBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method translateBy (line 5487) | def translateBy(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method translation (line 5488) | def translation(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... class MTypeId (line 5490) | class MTypeId: method __lt__ (line 5491) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5492) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5493) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5494) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5495) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5496) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5497) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method id (line 5498) | def id(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete: ... class MUint64Array (line 5500) | class MUint64Array: method __init__ (line 5502) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 5503) | def __len__(self) -> int: ... method __getitem__ (line 5504) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 5505) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 5506) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 5507) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5508) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5509) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 5510) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 5511) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 5512) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 5513) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 5514) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 5515) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 5516) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 5517) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 5518) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MUintArray (line 5520) | class MUintArray: method __init__ (line 5522) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 5523) | def __len__(self) -> int: ... method __getitem__ (line 5524) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 5525) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 5526) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 5527) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5528) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5529) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 5530) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 5531) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 5532) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 5533) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 5534) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 5535) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 5536) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 5537) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 5538) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MUserData (line 5540) | class MUserData: method __init__ (line 5541) | def __init__(self, deleteAfterUse: Incomplete = ..., legacy: Incomplet... method deleteAfterUse (line 5542) | def deleteAfterUse(self) -> bool: ... method setDeleteAfterUse (line 5543) | def setDeleteAfterUse(self, bool: Incomplete) -> Self: ... class MURI (line 5545) | class MURI: method __lt__ (line 5546) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5547) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5548) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5549) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5550) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5551) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5552) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method isValidURI (line 5554) | def isValidURI(uri: Incomplete) -> bool: ... method asString (line 5555) | def asString(self) -> str: ... method getScheme (line 5556) | def getScheme(self) -> str: ... method getPath (line 5557) | def getPath(self) -> str: ... method getFragment (line 5558) | def getFragment(self) -> str: ... method getFileName (line 5559) | def getFileName(self, boolincludeExtension: Incomplete = ...) -> str: ... method getDirectory (line 5560) | def getDirectory(self) -> str: ... method getAuthority (line 5561) | def getAuthority(self) -> str: ... method getUserInfo (line 5562) | def getUserInfo(self) -> str: ... method getUserName (line 5563) | def getUserName(self) -> str: ... method getPassword (line 5564) | def getPassword(self) -> str: ... method getHost (line 5565) | def getHost(self) -> str: ... method getPort (line 5566) | def getPort(self) -> int: ... method getAllQueryItemKeys (line 5567) | def getAllQueryItemKeys(self) -> array: ... # type: ignore[name-defined] method getQueryItemValue (line 5568) | def getQueryItemValue(self, key: Incomplete) -> str: ... method getAllQueryItemValues (line 5569) | def getAllQueryItemValues(self, key: Incomplete) -> array: ... # type... method getQueryValueDelimiter (line 5570) | def getQueryValueDelimiter(self) -> str: ... method getQueryPairDelimiter (line 5571) | def getQueryPairDelimiter(self) -> str: ... method setScheme (line 5572) | def setScheme(self, string: str) -> Self: ... method setPath (line 5573) | def setPath(self, string: str) -> Self: ... method setFragment (line 5574) | def setFragment(self, string: str) -> Self: ... method setFileName (line 5575) | def setFileName(self, string: str) -> Self: ... method setDirectory (line 5576) | def setDirectory(self, string: str) -> Self: ... method setAuthority (line 5577) | def setAuthority(self, string: str) -> Self: ... method setUserInfo (line 5578) | def setUserInfo(self, string: str) -> Self: ... method setUserName (line 5579) | def setUserName(self, string: str) -> Self: ... method setPassword (line 5580) | def setPassword(self, string: str) -> Self: ... method setHost (line 5581) | def setHost(self, string: str) -> Self: ... method setPort (line 5582) | def setPort(self, int: int) -> Self: ... method addQueryItem (line 5583) | def addQueryItem(self, key: Incomplete, value: Incomplete) -> Self: ... method setQueryDelimiters (line 5584) | def setQueryDelimiters(self, valueDelimiter: Incomplete, pairDelimiter... method removeQueryItem (line 5585) | def removeQueryItem(self, int: int) -> Self: ... method removeAllQueryItems (line 5586) | def removeAllQueryItems(self, int: int) -> Self: ... method copy (line 5587) | def copy(self, source: MURI) -> Self: ... method setURI (line 5588) | def setURI(self, uri: Incomplete) -> Self: ... method isEmpty (line 5589) | def isEmpty(self) -> bool: ... method isValid (line 5590) | def isValid(self) -> bool: ... method clear (line 5591) | def clear(self) -> Self: ... class MUuid (line 5593) | class MUuid: method __lt__ (line 5594) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5595) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5596) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5597) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5598) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5599) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5600) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method asString (line 5601) | def asString(self) -> str: ... method copy (line 5602) | def copy(self, source: MUuid) -> Self: ... method valid (line 5603) | def valid(self) -> bool: ... method generate (line 5604) | def generate(self) -> Self: ... class MVector (line 5606) | class MVector: method __lt__ (line 5623) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 5624) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 5625) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 5626) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 5627) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 5628) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 5629) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __add__ (line 5630) | def __add__(self, value: Incomplete) -> Incomplete: ... method __radd__ (line 5631) | def __radd__(self, value: Incomplete) -> Incomplete: ... method __sub__ (line 5632) | def __sub__(self, value: Incomplete) -> Incomplete: ... method __rsub__ (line 5633) | def __rsub__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5634) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5635) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __neg__ (line 5636) | def __neg__(self) -> Incomplete: ... method __xor__ (line 5637) | def __xor__(self, value: Incomplete) -> Incomplete: ... method __rxor__ (line 5638) | def __rxor__(self, value: Incomplete) -> Incomplete: ... method __iadd__ (line 5639) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __isub__ (line 5640) | def __isub__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 5641) | def __imul__(self, value: Incomplete) -> Incomplete: ... method __truediv__ (line 5642) | def __truediv__(self, value: Incomplete) -> Incomplete: ... method __rtruediv__ (line 5643) | def __rtruediv__(self, value: Incomplete) -> Incomplete: ... method __itruediv__ (line 5644) | def __itruediv__(self, value: Incomplete) -> Incomplete: ... method __len__ (line 5645) | def __len__(self) -> int: ... method __getitem__ (line 5646) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 5647) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 5648) | def __delitem__(self, key: Incomplete) -> None: ... method length (line 5649) | def length(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method normal (line 5650) | def normal(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method normalize (line 5651) | def normalize(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method transformAsNormal (line 5652) | def transformAsNormal(self, *args: Incomplete, **kwargs: Incomplete) -... method angle (line 5653) | def angle(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method isEquivalent (line 5654) | def isEquivalent(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method isParallel (line 5655) | def isParallel(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method rotateBy (line 5656) | def rotateBy(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method rotateTo (line 5657) | def rotateTo(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... class MVectorArray (line 5659) | class MVectorArray: method __init__ (line 5661) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 5662) | def __len__(self) -> int: ... method __getitem__ (line 5663) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method __setitem__ (line 5664) | def __setitem__(self, key: Incomplete, value: Incomplete) -> None: ... method __delitem__ (line 5665) | def __delitem__(self, key: Incomplete) -> None: ... method __add__ (line 5666) | def __add__(self, value: Incomplete) -> Incomplete: ... method __mul__ (line 5667) | def __mul__(self, value: Incomplete) -> Incomplete: ... method __rmul__ (line 5668) | def __rmul__(self, value: Incomplete) -> Incomplete: ... method __contains__ (line 5669) | def __contains__(self, key: Incomplete) -> bool: ... method __iadd__ (line 5670) | def __iadd__(self, value: Incomplete) -> Incomplete: ... method __imul__ (line 5671) | def __imul__(self, value: Incomplete) -> Incomplete: ... method append (line 5672) | def append(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method copy (line 5673) | def copy(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method clear (line 5674) | def clear(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete... method insert (line 5675) | def insert(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method remove (line 5676) | def remove(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setLength (line 5677) | def setLength(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MWeight (line 5679) | class MWeight: method __init__ (line 5682) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... FILE: maya/stubs/maya-stubs/api/OpenMayaAnim.pyi class MAnimControl (line 12) | class MAnimControl: method playbackMode (line 19) | def playbackMode() -> int: ... method setPlaybackMode (line 21) | def setPlaybackMode(int: int) -> None: ... method viewMode (line 23) | def viewMode() -> int: ... method setViewMode (line 25) | def setViewMode(int: int) -> None: ... method playbackBy (line 27) | def playbackBy() -> float: ... method setPlaybackBy (line 29) | def setPlaybackBy(float: Incomplete) -> None: ... method minTime (line 31) | def minTime() -> MTime: ... method maxTime (line 33) | def maxTime() -> MTime: ... method setMinTime (line 35) | def setMinTime(MTime: Incomplete) -> None: ... method setMaxTime (line 37) | def setMaxTime(MTime: Incomplete) -> None: ... method setMinMaxTime (line 39) | def setMinMaxTime(*args: Incomplete, **kwargs: Incomplete) -> Incomple... method animationStartTime (line 41) | def animationStartTime() -> MTime: ... method animationEndTime (line 43) | def animationEndTime() -> MTime: ... method setAnimationStartTime (line 45) | def setAnimationStartTime(MTime: Incomplete) -> None: ... method setAnimationEndTime (line 47) | def setAnimationEndTime(MTime: Incomplete) -> None: ... method setAnimationStartEndTime (line 49) | def setAnimationStartEndTime(*args: Incomplete, **kwargs: Incomplete) ... method currentTime (line 51) | def currentTime() -> MTime: ... method setCurrentTime (line 53) | def setCurrentTime(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method playbackSpeed (line 55) | def playbackSpeed() -> float: ... method setPlaybackSpeed (line 57) | def setPlaybackSpeed(float: Incomplete) -> None: ... method playForward (line 59) | def playForward() -> None: ... method playBackward (line 61) | def playBackward() -> None: ... method isPlaying (line 63) | def isPlaying() -> bool: ... method isScrubbing (line 65) | def isScrubbing() -> bool: ... method stop (line 67) | def stop() -> None: ... method autoKeyMode (line 69) | def autoKeyMode() -> bool: ... method setAutoKeyMode (line 71) | def setAutoKeyMode(bool: Incomplete) -> None: ... method globalInTangentType (line 73) | def globalInTangentType() -> int: ... method setGlobalInTangentType (line 75) | def setGlobalInTangentType(int: int) -> None: ... method globalOutTangentType (line 77) | def globalOutTangentType() -> int: ... method setGlobalOutTangentType (line 79) | def setGlobalOutTangentType(int: int) -> None: ... method weightedTangents (line 81) | def weightedTangents() -> bool: ... method setWeightedTangents (line 83) | def setWeightedTangents(bool: Incomplete) -> None: ... class MAnimCurveChange (line 85) | class MAnimCurveChange: method __init__ (line 86) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method redoIt (line 87) | def redoIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method undoIt (line 88) | def undoIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MAnimCurveClipboard (line 90) | class MAnimCurveClipboard: method __init__ (line 97) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method clear (line 98) | def clear(self) -> Self: ... method clipboardItems (line 99) | def clipboardItems(self) -> MAnimCurveClipboardItemArray: ... method set (line 101) | def set(self, clipboard: Incomplete) -> Self: ... method set (line 103) | def set(self, items: Incomplete) -> Self: ... method set (line 105) | def set(self, items: Incomplete, startTime: Incomplete, endTime: Incom... class MAnimCurveClipboardItem (line 107) | class MAnimCurveClipboardItem: method __init__ (line 112) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getAddressingInfo (line 113) | def getAddressingInfo(self, *args: Incomplete, **kwargs: Incomplete) -... method setAnimCurve (line 114) | def setAnimCurve(self, object: Incomplete) -> Self: ... method setAddressingInfo (line 115) | def setAddressingInfo(self, rowCount: Incomplete, childCount: Incomple... method setNameInfo (line 116) | def setNameInfo(self, nodeName: Incomplete, fullName: Incomplete, leaf... method animCurveType (line 117) | def animCurveType(self) -> MFnAnimCurve.AnimCurveType: ... class MAnimMessage (line 119) | class MAnimMessage(maya.api.OpenMaya.MMessage): method addAnimCurveEditedCallback (line 121) | def addAnimCurveEditedCallback(function: Incomplete, clientData: Incom... method addAnimKeyframeEditedCallback (line 123) | def addAnimKeyframeEditedCallback(function: Incomplete, clientData: In... method addAnimKeyframeEditCheckCallback (line 125) | def addAnimKeyframeEditCheckCallback(function: Incomplete, clientData:... method addNodeAnimKeyframeEditedCallback (line 127) | def addNodeAnimKeyframeEditedCallback(animNode: MObject, function: Inc... method addPreBakeResultsCallback (line 129) | def addPreBakeResultsCallback(function: Incomplete, clientData: Incomp... method addPostBakeResultsCallback (line 131) | def addPostBakeResultsCallback(function: Incomplete, clientData: Incom... method addDisableImplicitControlCallback (line 133) | def addDisableImplicitControlCallback(function: Incomplete, clientData... method flushAnimKeyframeEditedCallbacks (line 135) | def flushAnimKeyframeEditedCallbacks() -> None: ... class MAnimUtil (line 137) | class MAnimUtil: method isAnimated (line 140) | def isAnimated(MObject: Incomplete, bool: Incomplete) -> bool: ... method isAnimated (line 143) | def isAnimated(MDagPath: Incomplete, bool: Incomplete) -> bool: ... method isAnimated (line 146) | def isAnimated(MPlug: Incomplete, bool: Incomplete) -> bool: ... method isAnimated (line 149) | def isAnimated(MSelectionListselectionList: Incomplete, boolcheckParen... method findAnimatedPlugs (line 152) | def findAnimatedPlugs(MObject: Incomplete, bool: Incomplete) -> MPlugA... method findAnimatedPlugs (line 155) | def findAnimatedPlugs(MDagPath: Incomplete, bool: Incomplete) -> MPlug... method findAnimatedPlugs (line 158) | def findAnimatedPlugs(MSelectionListselectionList: Incomplete, boolche... method findAnimation (line 160) | def findAnimation(MPlug: Incomplete) -> MObjectArray: ... method findSetDrivenKeyAnimation (line 162) | def findSetDrivenKeyAnimation(*args: Incomplete, **kwargs: Incomplete)... method findConstraint (line 164) | def findConstraint(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method findAnimatablePlugs (line 166) | def findAnimatablePlugs(MSelectionList: Incomplete) -> MPlugArray: ... class MFnAnimCurve (line 168) | class MFnAnimCurve(maya.api.OpenMaya.MFnDependencyNode): # type: ignore... method __init__ (line 217) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 219) | def create(self, node: Incomplete, attribute: Incomplete, animCurveTyp... method create (line 221) | def create(self, plug: Incomplete, animCurveType: Incomplete = ...) ->... method timedAnimCurveTypeForPlug (line 222) | def timedAnimCurveTypeForPlug(self, plug: Incomplete) -> AnimCurveType... method unitlessAnimCurveTypeForPlug (line 223) | def unitlessAnimCurveTypeForPlug(self, plug: Incomplete) -> AnimCurveT... method evaluate (line 224) | def evaluate(self, at: Incomplete) -> value: ... # type: ignore[name-... method remove (line 225) | def remove(self, index: Incomplete, change: Incomplete = ...) -> Self:... method addKey (line 226) | def addKey(self, at: Incomplete, value: Incomplete, tangentInType: Inc... method addKeys (line 227) | def addKeys(self, times: Incomplete, values: Incomplete, tangentInType... method insertKey (line 228) | def insertKey(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method addKeysWithTangents (line 229) | def addKeysWithTangents(self, times: Incomplete, values: Incomplete, t... method find (line 230) | def find(self, at: Incomplete) -> int: ... method findClosest (line 231) | def findClosest(self, at: Incomplete) -> int: ... method input (line 232) | def input(self, index: Incomplete) -> MTimeordouble: ... # type: igno... method value (line 233) | def value(self, index: Incomplete) -> float: ... method quaternionW (line 234) | def quaternionW(self, index: Incomplete) -> float: ... method setValue (line 235) | def setValue(self, index: Incomplete, value: Incomplete, change: Incom... method setQuaternionW (line 236) | def setQuaternionW(self, index: Incomplete, quaternionW: Incomplete, c... method setInput (line 237) | def setInput(self, index: Incomplete, at: Incomplete, change: Incomple... method inTangentType (line 238) | def inTangentType(self, index: Incomplete) -> TangentType: ... # type... method outTangentType (line 239) | def outTangentType(self, index: Incomplete) -> TangentType: ... # typ... method setInTangentType (line 240) | def setInTangentType(self, index: Incomplete, tangentType: Incomplete,... method setOutTangentType (line 241) | def setOutTangentType(self, index: Incomplete, tangentType: Incomplete... method setTangentTypes (line 242) | def setTangentTypes(self, indexArray: Incomplete, tangentInType: Incom... method getTangentXY (line 243) | def getTangentXY(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getTangentAngleWeight (line 244) | def getTangentAngleWeight(self, *args: Incomplete, **kwargs: Incomplet... method setTangent (line 245) | def setTangent(self, index: Incomplete, xOrAngle: Incomplete, yOrWeigh... method setAngle (line 246) | def setAngle(self, index: Incomplete, setAngle: Incomplete, isInTangen... method setWeight (line 247) | def setWeight(self, index: Incomplete, weight: Incomplete, isInTangent... method weightsLocked (line 248) | def weightsLocked(self, index: Incomplete) -> bool: ... method tangentsLocked (line 249) | def tangentsLocked(self, index: Incomplete) -> bool: ... method setWeightsLocked (line 250) | def setWeightsLocked(self, index: Incomplete, locked: Incomplete, chan... method setTangentsLocked (line 251) | def setTangentsLocked(self, index: Incomplete, locked: Incomplete, cha... method setIsWeighted (line 252) | def setIsWeighted(self, isWeighted: Incomplete, change: Incomplete = .... method isBreakdown (line 253) | def isBreakdown(self, index: Incomplete) -> bool: ... method setIsBreakdown (line 254) | def setIsBreakdown(self, index: Incomplete, isBreakdown: Incomplete, c... method setPreInfinityType (line 255) | def setPreInfinityType(self, infinityType: Incomplete, change: Incompl... method setPostInfinityType (line 256) | def setPostInfinityType(self, infinityType: Incomplete, change: Incomp... class MFnGeometryFilter (line 258) | class MFnGeometryFilter(maya.api.OpenMaya.MFnDependencyNode): method __init__ (line 261) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getInputGeometry (line 262) | def getInputGeometry(self) -> MObjectArray: ... method getOutputGeometry (line 263) | def getOutputGeometry(self) -> MObjectArray: ... method getPathAtIndex (line 264) | def getPathAtIndex(self, plugIndex: int) -> MDagPath: ... method groupIdAtIndex (line 265) | def groupIdAtIndex(self, plugIndex: int) -> float: ... method indexForGroupId (line 266) | def indexForGroupId(self, groupId: int) -> plugIndex: ... # type: ign... method indexForOutputConnection (line 267) | def indexForOutputConnection(self, connIndex: int) -> plugIndex: ... ... method indexForOutputShape (line 268) | def indexForOutputShape(self, shape: MObject) -> plugIndex: ... # typ... method inputShapeAtIndex (line 269) | def inputShapeAtIndex(self, plugIndex: int) -> MObject: ... method numOutputConnections (line 270) | def numOutputConnections(self) -> float: ... method outputShapeAtIndex (line 271) | def outputShapeAtIndex(self, index: Incomplete) -> MObject: ... method getComponentAtIndex (line 272) | def getComponentAtIndex(self, index: Incomplete) -> MObject: ... class MFnWeightGeometryFilter (line 274) | class MFnWeightGeometryFilter(MFnGeometryFilter): method __init__ (line 275) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getWeights (line 277) | def getWeights(self, index: Incomplete, components: MObject) -> MFloat... method getWeights (line 279) | def getWeights(self, path: MDagPath, components: MObject) -> MFloatArr... method setWeight (line 281) | def setWeight(self, path: MDagPath, index: int, components: MObject, w... method setWeight (line 283) | def setWeight(self, path: MDagPath, index: int, components: MObject, v... method setWeight (line 285) | def setWeight(self, path: MDagPath, components: MObject, weight: float... method setWeight (line 287) | def setWeight(self, path: MDagPath, components: MObject, values: MFloa... method getEnvelopeWeights (line 288) | def getEnvelopeWeights(self, index: int) -> MFloatArray: ... method weightPlugStrings (line 289) | def weightPlugStrings(self, list: MSelectionList) -> str: ... method getWeightPlugStrings (line 290) | def getWeightPlugStrings(self, *args: Incomplete, **kwargs: Incomplete... class MFnIkJoint (line 292) | class MFnIkJoint(maya.api.OpenMaya.MFnTransform): method __init__ (line 293) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method create (line 294) | def create(self, parent: Incomplete = ...) -> newjointnodeMObject: ...... method degreesOfFreedom (line 295) | def degreesOfFreedom(self, *args: Incomplete, **kwargs: Incomplete) ->... method hikJointName (line 296) | def hikJointName(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method maxRotateDampXRange (line 297) | def maxRotateDampXRange(self, *args: Incomplete, **kwargs: Incomplete)... method maxRotateDampXStrength (line 298) | def maxRotateDampXStrength(self, *args: Incomplete, **kwargs: Incomple... method maxRotateDampYRange (line 299) | def maxRotateDampYRange(self, *args: Incomplete, **kwargs: Incomplete)... method maxRotateDampYStrength (line 300) | def maxRotateDampYStrength(self, *args: Incomplete, **kwargs: Incomple... method maxRotateDampZRange (line 301) | def maxRotateDampZRange(self, *args: Incomplete, **kwargs: Incomplete)... method maxRotateDampZStrength (line 302) | def maxRotateDampZStrength(self, *args: Incomplete, **kwargs: Incomple... method minRotateDampXRange (line 303) | def minRotateDampXRange(self, *args: Incomplete, **kwargs: Incomplete)... method minRotateDampXStrength (line 304) | def minRotateDampXStrength(self, *args: Incomplete, **kwargs: Incomple... method minRotateDampYRange (line 305) | def minRotateDampYRange(self, *args: Incomplete, **kwargs: Incomplete)... method minRotateDampYStrength (line 306) | def minRotateDampYStrength(self, *args: Incomplete, **kwargs: Incomple... method minRotateDampZRange (line 307) | def minRotateDampZRange(self, *args: Incomplete, **kwargs: Incomplete)... method minRotateDampZStrength (line 308) | def minRotateDampZStrength(self, *args: Incomplete, **kwargs: Incomple... method orientation (line 309) | def orientation(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method orientationComponents (line 310) | def orientationComponents(self, *args: Incomplete, **kwargs: Incomplet... method preferredAngle (line 311) | def preferredAngle(self, *args: Incomplete, **kwargs: Incomplete) -> I... method scaleOrientation (line 312) | def scaleOrientation(self, *args: Incomplete, **kwargs: Incomplete) ->... method segmentScale (line 313) | def segmentScale(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDegreesOfFreedom (line 314) | def setDegreesOfFreedom(self, *args: Incomplete, **kwargs: Incomplete)... method setMaxRotateDampXRange (line 315) | def setMaxRotateDampXRange(self, *args: Incomplete, **kwargs: Incomple... method setMaxRotateDampXStrength (line 316) | def setMaxRotateDampXStrength(self, *args: Incomplete, **kwargs: Incom... method setMaxRotateDampYRange (line 317) | def setMaxRotateDampYRange(self, *args: Incomplete, **kwargs: Incomple... method setMaxRotateDampYStrength (line 318) | def setMaxRotateDampYStrength(self, *args: Incomplete, **kwargs: Incom... method setMaxRotateDampZRange (line 319) | def setMaxRotateDampZRange(self, *args: Incomplete, **kwargs: Incomple... method setMaxRotateDampZStrength (line 320) | def setMaxRotateDampZStrength(self, *args: Incomplete, **kwargs: Incom... method setMinRotateDampXRange (line 321) | def setMinRotateDampXRange(self, *args: Incomplete, **kwargs: Incomple... method setMinRotateDampXStrength (line 322) | def setMinRotateDampXStrength(self, *args: Incomplete, **kwargs: Incom... method setMinRotateDampYRange (line 323) | def setMinRotateDampYRange(self, *args: Incomplete, **kwargs: Incomple... method setMinRotateDampYStrength (line 324) | def setMinRotateDampYStrength(self, *args: Incomplete, **kwargs: Incom... method setMinRotateDampZRange (line 325) | def setMinRotateDampZRange(self, *args: Incomplete, **kwargs: Incomple... method setMinRotateDampZStrength (line 326) | def setMinRotateDampZStrength(self, *args: Incomplete, **kwargs: Incom... method setOrientation (line 327) | def setOrientation(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setPreferredAngle (line 328) | def setPreferredAngle(self, *args: Incomplete, **kwargs: Incomplete) -... method setScaleOrientation (line 329) | def setScaleOrientation(self, *args: Incomplete, **kwargs: Incomplete)... method setSegmentScale (line 330) | def setSegmentScale(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setStiffness (line 331) | def setStiffness(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method stiffness (line 332) | def stiffness(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... class MFnSkinCluster (line 334) | class MFnSkinCluster(MFnGeometryFilter): method __init__ (line 335) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getBlendWeights (line 336) | def getBlendWeights(self, shape: MDagPath, components: MObject) -> MDo... method getPointsAffectedByInfluence (line 337) | def getPointsAffectedByInfluence(self, *args: Incomplete, **kwargs: In... method getWeights (line 339) | def getWeights(self, shape: MDagPath, components: MObject, influence: ... method getWeights (line 341) | def getWeights(self, shape: MDagPath, components: MObject, influences:... method indexForInfluenceObject (line 342) | def indexForInfluenceObject(self, influenceObj: MObject) -> float: ... method influenceObjects (line 343) | def influenceObjects(self) -> MDagPathArray: ... method setBlendWeights (line 344) | def setBlendWeights(self, shape: MDagPath, components: MObject, weight... method setWeights (line 346) | def setWeights(self, shape: MDagPath, components: MObject, influence: ... method setWeights (line 348) | def setWeights(self, shape: MDagPath, components: MObject, influences:... FILE: maya/stubs/maya-stubs/api/OpenMayaRender.pyi class MColorManagementUtilities (line 12) | class MColorManagementUtilities: method getColorTransformData (line 14) | def getColorTransformData(*args: Incomplete, **kwargs: Incomplete) -> ... method getColorTransformCacheIdForInputSpace (line 16) | def getColorTransformCacheIdForInputSpace(inputSpaceName: str) -> tran... method getColorTransformCacheIdForOutputTransform (line 18) | def getColorTransformCacheIdForOutputTransform() -> transformId: ... ... method isColorManagementEnabled (line 20) | def isColorManagementEnabled() -> bool: ... method isColorManagementAvailable (line 22) | def isColorManagementAvailable() -> bool: ... class MComponentDataIndexing (line 24) | class MComponentDataIndexing: method __init__ (line 26) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method indices (line 27) | def indices(self) -> MUintArray: ... method componentType (line 28) | def componentType(self) -> MComponentType: ... # type: ignore[name-de... method setComponentType (line 29) | def setComponentType(self, MComponentType: Incomplete) -> Self: ... class MComponentDataIndexingList (line 31) | class MComponentDataIndexingList: method __init__ (line 32) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 33) | def __len__(self) -> int: ... method __getitem__ (line 34) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 35) | def append(self, MComponentDataIndexing: Incomplete) -> bool: ... method remove (line 36) | def remove(self, index: Incomplete) -> bool: ... method clear (line 37) | def clear(self) -> Self: ... class MFrameContext (line 39) | class MFrameContext: method __init__ (line 151) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method semanticToMatrixType (line 153) | def semanticToMatrixType(string: str) -> int: ... method getMatrix (line 154) | def getMatrix(self, int: int) -> MMatrix: ... method semanticToTupleType (line 156) | def semanticToTupleType(string: str) -> int: ... method getTuple (line 157) | def getTuple(self, int: int) -> MDoubleArray: ... method getViewportDimensions (line 158) | def getViewportDimensions(self, *args: Incomplete, **kwargs: Incomplet... method getGlobalLineWidth (line 159) | def getGlobalLineWidth(self) -> float: ... method getCurrentCameraPath (line 160) | def getCurrentCameraPath(self) -> MDagPath: ... method getCurrentColorRenderTarget (line 161) | def getCurrentColorRenderTarget(self) -> MRenderTarget: ... method getCurrentDepthRenderTarget (line 162) | def getCurrentDepthRenderTarget(self) -> MRenderTarget: ... method objectTypeExclusions (line 163) | def objectTypeExclusions(self) -> float: ... method classificationExclusions (line 164) | def classificationExclusions(self, *args: Incomplete, **kwargs: Incomp... method getDisplayStyle (line 165) | def getDisplayStyle(self) -> int: ... method getLightingMode (line 166) | def getLightingMode(self) -> int: ... method getLightLimit (line 167) | def getLightLimit(self) -> int: ... method getPostEffectEnabled (line 168) | def getPostEffectEnabled(self, int: int) -> bool: ... method getTransparencyAlgorithm (line 169) | def getTransparencyAlgorithm(self) -> int: ... method inUserInteraction (line 171) | def inUserInteraction() -> bool: ... method userChangingViewContext (line 173) | def userChangingViewContext() -> bool: ... method wireOnShadedMode (line 175) | def wireOnShadedMode() -> int: ... method shadeTemplates (line 177) | def shadeTemplates() -> bool: ... method renderingDestination (line 178) | def renderingDestination(self, *args: Incomplete, **kwargs: Incomplete... method getEnvironmentParameters (line 179) | def getEnvironmentParameters(self, *args: Incomplete, **kwargs: Incomp... method getDOFParameters (line 180) | def getDOFParameters(self, *args: Incomplete, **kwargs: Incomplete) ->... method getBackgroundParameters (line 181) | def getBackgroundParameters(self, *args: Incomplete, **kwargs: Incompl... method getHwFogParameters (line 182) | def getHwFogParameters(self, *args: Incomplete, **kwargs: Incomplete) ... method getRenderOverrideInformation (line 183) | def getRenderOverrideInformation(self, *args: Incomplete, **kwargs: In... class MLightParameterInformation (line 185) | class MLightParameterInformation: method __init__ (line 221) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method parameterList (line 222) | def parameterList(self) -> list[str]: ... method parameterType (line 223) | def parameterType(self, string: str) -> int: ... method parameterSemantic (line 224) | def parameterSemantic(self, string: str) -> int: ... method parameterNames (line 225) | def parameterNames(self, int: int) -> list[str]: ... method arrayParameterCount (line 226) | def arrayParameterCount(self, string: str) -> int: ... method getParameter (line 227) | def getParameter(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method getParameterTextureHandle (line 228) | def getParameterTextureHandle(self, *args: Incomplete, **kwargs: Incom... method lightType (line 229) | def lightType(self) -> str: ... method lightPath (line 230) | def lightPath(self) -> MDagPath: ... class MPassContext (line 232) | class MPassContext: method __init__ (line 261) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method passIdentifier (line 262) | def passIdentifier(self) -> str: ... method passSemantics (line 263) | def passSemantics(self) -> list[str]: ... method hasShaderOverride (line 264) | def hasShaderOverride(self) -> bool: ... method shaderOverrideInstance (line 265) | def shaderOverrideInstance(self) -> MShaderInstance: ... class MDrawContext (line 267) | class MDrawContext(MFrameContext): method __init__ (line 270) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getFrameStamp (line 271) | def getFrameStamp(self) -> float: ... method getSceneBox (line 272) | def getSceneBox(self) -> MBoundingBox: ... method getFrustumBox (line 273) | def getFrustumBox(self) -> MBoundingBox: ... method getRenderTargetSize (line 274) | def getRenderTargetSize(self, *args: Incomplete, **kwargs: Incomplete)... method getDepthRange (line 275) | def getDepthRange(self, *args: Incomplete, **kwargs: Incomplete) -> In... method viewDirectionAlongNegZ (line 276) | def viewDirectionAlongNegZ(self) -> bool: ... method numberOfActiveLights (line 277) | def numberOfActiveLights(self, lightFilter: Incomplete = ...) -> int: ... method getLightInformation (line 278) | def getLightInformation(self, *args: Incomplete, **kwargs: Incomplete)... method getLightParameterInformation (line 279) | def getLightParameterInformation(self, lightNumber: Incomplete, lightF... method getStateManager (line 280) | def getStateManager(self) -> MStateManager: ... method getPassContext (line 281) | def getPassContext(self) -> MPassContext: ... method copyCurrentColorRenderTarget (line 282) | def copyCurrentColorRenderTarget(self, string: str) -> MRenderTarget: ... method copyCurrentDepthRenderTarget (line 283) | def copyCurrentDepthRenderTarget(self, string: str) -> MRenderTarget: ... method copyCurrentColorRenderTargetToTexture (line 284) | def copyCurrentColorRenderTargetToTexture(self) -> MTexture: ... method copyCurrentDepthRenderTargetToTexture (line 285) | def copyCurrentDepthRenderTargetToTexture(self) -> MTexture: ... class MDrawRegistry (line 287) | class MDrawRegistry: method deregisterComponentConverter (line 289) | def deregisterComponentConverter(renderItemName: Incomplete) -> None: ... method deregisterDrawOverrideCreator (line 291) | def deregisterDrawOverrideCreator(drawClassification: Incomplete, regi... method deregisterGeometryOverrideCreator (line 293) | def deregisterGeometryOverrideCreator(drawClassification: Incomplete, ... method deregisterImagePlaneOverrideCreator (line 295) | def deregisterImagePlaneOverrideCreator(drawClassification: Incomplete... method deregisterIndexBufferMutator (line 297) | def deregisterIndexBufferMutator(primitiveType: Incomplete) -> None: ... method deregisterPrimitiveGenerator (line 299) | def deregisterPrimitiveGenerator(primitiveType: Incomplete) -> None: ... method deregisterShaderOverrideCreator (line 301) | def deregisterShaderOverrideCreator(drawClassification: Incomplete, re... method deregisterShadingNodeOverrideCreator (line 303) | def deregisterShadingNodeOverrideCreator(drawClassification: Incomplet... method deregisterSubSceneOverrideCreator (line 305) | def deregisterSubSceneOverrideCreator(drawClassification: Incomplete, ... method deregisterSurfaceShadingNodeOverrideCreator (line 307) | def deregisterSurfaceShadingNodeOverrideCreator(drawClassification: In... method deregisterVertexBufferGenerator (line 309) | def deregisterVertexBufferGenerator(bufferName: Incomplete) -> None: ... method deregisterVertexBufferMutator (line 311) | def deregisterVertexBufferMutator(bufferName: Incomplete) -> None: ... method registerComponentConverter (line 313) | def registerComponentConverter(renderItemName: Incomplete, creator: In... method registerDrawOverrideCreator (line 315) | def registerDrawOverrideCreator(drawClassification: Incomplete, regist... method registerGeometryOverrideCreator (line 317) | def registerGeometryOverrideCreator(drawClassification: Incomplete, re... method registerImagePlaneOverrideCreator (line 319) | def registerImagePlaneOverrideCreator(drawClassification: Incomplete, ... method registerIndexBufferMutator (line 321) | def registerIndexBufferMutator(primitiveType: Incomplete, creator: Inc... method registerPrimitiveGenerator (line 323) | def registerPrimitiveGenerator(primitiveType: Incomplete, creator: Inc... method registerShaderOverrideCreator (line 325) | def registerShaderOverrideCreator(drawClassification: Incomplete, regi... method registerShadingNodeOverrideCreator (line 327) | def registerShadingNodeOverrideCreator(drawClassification: Incomplete,... method registerSubSceneOverrideCreator (line 329) | def registerSubSceneOverrideCreator(drawClassification: Incomplete, re... method registerSurfaceShadingNodeOverrideCreator (line 331) | def registerSurfaceShadingNodeOverrideCreator(drawClassification: Inco... method registerVertexBufferGenerator (line 333) | def registerVertexBufferGenerator(bufferName: Incomplete, creator: Inc... method registerVertexBufferMutator (line 335) | def registerVertexBufferMutator(bufferName: Incomplete, creator: Incom... class MFragmentManager (line 337) | class MFragmentManager: method __init__ (line 344) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addFragmentGraphFromBuffer (line 345) | def addFragmentGraphFromBuffer(self, buffer: Incomplete) -> str: ... method addFragmentGraphFromFile (line 346) | def addFragmentGraphFromFile(self, fileName: Incomplete) -> str: ... method addFragmentPath (line 347) | def addFragmentPath(self, path: Incomplete) -> bool: ... method addShadeFragmentFromBuffer (line 348) | def addShadeFragmentFromBuffer(self, buffer: Incomplete, hidden: Incom... method addShadeFragmentFromFile (line 349) | def addShadeFragmentFromFile(self, fileName: Incomplete, hidden: Incom... method fragmentList (line 350) | def fragmentList(self) -> list[str]: ... method getEffectOutputDirectory (line 351) | def getEffectOutputDirectory(self) -> str: ... method getFragmentXML (line 353) | def getFragmentXML(self, fragmentName: Incomplete) -> str: ... method getFragmentXML (line 355) | def getFragmentXML(self, shadingNode: Incomplete, includeUpstreamNodes... method getIntermediateGraphOutputDirectory (line 356) | def getIntermediateGraphOutputDirectory(self) -> str: ... method hasFragment (line 357) | def hasFragment(self, string: str) -> bool: ... method removeFragment (line 358) | def removeFragment(self, fragmentName: Incomplete) -> bool: ... method setEffectOutputDirectory (line 359) | def setEffectOutputDirectory(self, string: str) -> Self: ... method setIntermediateGraphOutputDirectory (line 360) | def setIntermediateGraphOutputDirectory(self, string: str) -> Self: ... method addAutomaticShaderStageInput (line 361) | def addAutomaticShaderStageInput(self, *args: Incomplete, **kwargs: In... method removeAutomaticShaderStageInput (line 362) | def removeAutomaticShaderStageInput(self, int: int, string: str) -> bo... method addDomainShaderInputNameMapping (line 363) | def addDomainShaderInputNameMapping(self, *args: Incomplete, **kwargs:... method removeDomainShaderInputNameMapping (line 364) | def removeDomainShaderInputNameMapping(self, string: str) -> bool: ... method findDomainShaderInputName (line 365) | def findDomainShaderInputName(self, string: str) -> str: ... method getColorManagementFragmentInfo (line 366) | def getColorManagementFragmentInfo(self, *args: Incomplete, **kwargs: ... class MGeometryExtractor (line 368) | class MGeometryExtractor: method __init__ (line 372) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method minimumBufferSize (line 374) | def minimumBufferSize(primitiveCount: int, primitive: int, primitiveSt... method populateIndexBuffer (line 375) | def populateIndexBuffer(self, data: buffer, primitiveCount: int, index... method populateVertexBuffer (line 376) | def populateVertexBuffer(self, data: buffer, vertexCount: int, bufferD... method primitiveCount (line 377) | def primitiveCount(self, indexDesc: MIndexBufferDescriptor) -> int: ... method vertexCount (line 378) | def vertexCount(self) -> int: ... class MGeometry (line 380) | class MGeometry: method __init__ (line 416) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addIndexBuffer (line 417) | def addIndexBuffer(self, MIndexBuffer: Incomplete) -> bool: ... method addVertexBuffer (line 418) | def addVertexBuffer(self, MVertexBuffer: Incomplete) -> bool: ... method createIndexBuffer (line 419) | def createIndexBuffer(self, int: int) -> MIndexBuffer: ... method createVertexBuffer (line 420) | def createVertexBuffer(self, MVertexBufferDescriptor: Incomplete) -> M... method dataTypeString (line 422) | def dataTypeString(int: int) -> str: ... method deleteIndexBuffer (line 423) | def deleteIndexBuffer(self, int: int) -> bool: ... method deleteVertexBuffer (line 424) | def deleteVertexBuffer(self, int: int) -> bool: ... method drawModeString (line 426) | def drawModeString(int: int) -> str: ... method indexBuffer (line 427) | def indexBuffer(self, int: int) -> MIndexBuffer: ... method indexBufferCount (line 428) | def indexBufferCount(self) -> int: ... method primitiveString (line 430) | def primitiveString(int: int) -> str: ... method semanticString (line 432) | def semanticString(int: int) -> str: ... method vertexBuffer (line 433) | def vertexBuffer(self, int: int) -> MVertexBuffer: ... method vertexBufferCount (line 434) | def vertexBufferCount(self) -> int: ... class MVertexBufferDescriptor (line 436) | class MVertexBufferDescriptor: method __init__ (line 445) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MVertexBufferDescriptorList (line 447) | class MVertexBufferDescriptorList: method __init__ (line 448) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 449) | def __len__(self) -> int: ... method __getitem__ (line 450) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 451) | def append(self, MVertexBufferDescriptor: Incomplete) -> bool: ... method clear (line 452) | def clear(self) -> Self: ... method remove (line 453) | def remove(self, index: Incomplete) -> bool: ... class MVertexBuffer (line 455) | class MVertexBuffer: method __init__ (line 456) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acquire (line 457) | def acquire(self, size: int, writeOnly: bool) -> float: ... method commit (line 458) | def commit(self, long: Incomplete) -> Self: ... method descriptor (line 459) | def descriptor(self) -> MVertexBufferDescriptor: ... method hasCustomResourceHandle (line 460) | def hasCustomResourceHandle(self) -> bool: ... method lockResourceHandle (line 462) | def lockResourceHandle(self) -> Self: ... method lockResourceHandle (line 464) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 466) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 468) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 470) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 472) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method map (line 473) | def map(self) -> float: ... method resourceHandle (line 474) | def resourceHandle(self) -> float: ... method setResourceHandle (line 475) | def setResourceHandle(self, long: Incomplete, int: int) -> Self: ... method unload (line 476) | def unload(self) -> Self: ... method unlockResourceHandle (line 477) | def unlockResourceHandle(self) -> Self: ... method unmap (line 478) | def unmap(self) -> Self: ... method update (line 479) | def update(self, buffer: long, destOffset: Incomplete, numVerts: int, ... method vertexCount (line 480) | def vertexCount(self) -> int: ... class MVertexBufferArray (line 482) | class MVertexBufferArray: method __init__ (line 483) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 484) | def __len__(self) -> int: ... method __getitem__ (line 485) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 486) | def append(self, MVertexBuffer: Incomplete, name: Incomplete) -> Self:... method clear (line 487) | def clear(self) -> Self: ... method getBuffer (line 488) | def getBuffer(self, string: str) -> MVertexBuffer: ... method getName (line 489) | def getName(self, int: int) -> str: ... class MIndexBufferDescriptor (line 491) | class MIndexBufferDescriptor: method __init__ (line 513) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MIndexBufferDescriptorList (line 515) | class MIndexBufferDescriptorList: method __init__ (line 516) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 517) | def __len__(self) -> int: ... method __getitem__ (line 518) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 519) | def append(self, MIndexBufferDescriptor: Incomplete) -> bool: ... method clear (line 520) | def clear(self) -> Self: ... method remove (line 521) | def remove(self, index: Incomplete) -> bool: ... class MIndexBuffer (line 523) | class MIndexBuffer: method __init__ (line 524) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acquire (line 525) | def acquire(self, size: int, writeOnly: bool) -> float: ... method commit (line 526) | def commit(self, long: Incomplete) -> Self: ... method dataType (line 527) | def dataType(self) -> int: ... method hasCustomResourceHandle (line 528) | def hasCustomResourceHandle(self) -> bool: ... method lockResourceHandle (line 530) | def lockResourceHandle(self) -> Self: ... method lockResourceHandle (line 532) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 534) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 536) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 538) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method lockResourceHandle (line 540) | def lockResourceHandle(self) -> Any: ... # type: ignore[overload-cann... method map (line 541) | def map(self) -> float: ... method resourceHandle (line 542) | def resourceHandle(self) -> float: ... method setResourceHandle (line 543) | def setResourceHandle(self, *args: Incomplete, **kwargs: Incomplete) -... method size (line 544) | def size(self) -> int: ... method unload (line 545) | def unload(self) -> Self: ... method unlockResourceHandle (line 546) | def unlockResourceHandle(self) -> Self: ... method unmap (line 547) | def unmap(self) -> Self: ... method update (line 548) | def update(self, buffer: long, destOffset: Incomplete, numIndices: int... class MGeometryIndexMapping (line 550) | class MGeometryIndexMapping: method __init__ (line 551) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method component (line 552) | def component(self, int: int) -> MObject: ... method dagPath (line 553) | def dagPath(self, int: int) -> MDagPath: ... method geometryCount (line 554) | def geometryCount(self) -> int: ... method indexLength (line 555) | def indexLength(self, int: int) -> int: ... method indexStart (line 556) | def indexStart(self, int: int) -> int: ... class MRenderItem (line 558) | class MRenderItem: # type: ignore[no-redef] method __init__ (line 578) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method associateWithIndexBuffer (line 579) | def associateWithIndexBuffer(self, MIndexBuffer: Incomplete) -> bool: ... method availableShaderParameters (line 580) | def availableShaderParameters(self) -> list[str]: ... method boundingBox (line 581) | def boundingBox(self, space: Space = ...) -> MBoundingBox: ... # type... method setBoundingBox (line 582) | def setBoundingBox(self, bounds: MBoundingBox) -> Self: ... method castsShadows (line 583) | def castsShadows(self) -> bool: ... method wantConsolidation (line 584) | def wantConsolidation(self) -> bool: ... method getDefaultMaterialHandling (line 585) | def getDefaultMaterialHandling(self) -> MRenderItem.DefaultMaterialFil... method isCompatibleWithMayaInstancer (line 586) | def isCompatibleWithMayaInstancer(self) -> bool: ... method component (line 587) | def component(self) -> MObject: ... method shadingComponent (line 588) | def shadingComponent(self) -> MObject: ... method setAllowIsolateSelectCopy (line 589) | def setAllowIsolateSelectCopy(self, bool: Incomplete) -> Self: ... method allowIsolateSelectCopy (line 590) | def allowIsolateSelectCopy(self) -> bool: ... method isIsolateSelectCopy (line 591) | def isIsolateSelectCopy(self) -> bool: ... method create (line 594) | def create(name: Incomplete, type: int, primitive: int) -> MRenderItem... method create (line 597) | def create(item: MRenderItem) -> MRenderItem: ... method customData (line 598) | def customData(self) -> MUserData: ... method getCustomData (line 599) | def getCustomData(self) -> MUserData: ... method depthPriority (line 600) | def depthPriority(self) -> int: ... method destroy (line 602) | def destroy(item: Incomplete) -> None: ... method drawMode (line 603) | def drawMode(self) -> int: ... method enable (line 604) | def enable(self, bool: Incomplete) -> Self: ... method excludedFromPostEffects (line 605) | def excludedFromPostEffects(self) -> bool: ... method excludedFromDefaultMaterialOverride (line 606) | def excludedFromDefaultMaterialOverride(self) -> bool: ... method geometry (line 607) | def geometry(self) -> MGeometry: ... method getShader (line 608) | def getShader(self) -> MShaderInstance: ... method getShaderParameters (line 609) | def getShaderParameters(self, *args: Incomplete, **kwargs: Incomplete)... method isConsolidated (line 610) | def isConsolidated(self) -> bool: ... method isEnabled (line 611) | def isEnabled(self) -> bool: ... method isShaderFromNode (line 612) | def isShaderFromNode(self) -> bool: ... method name (line 613) | def name(self) -> str: ... method primitive (line 614) | def primitive(self) -> int: ... method primitiveAndStride (line 615) | def primitiveAndStride(self, *args: Incomplete, **kwargs: Incomplete) ... method setPrimitive (line 616) | def setPrimitive(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method receivesShadows (line 617) | def receivesShadows(self) -> bool: ... method requiredVertexBuffers (line 618) | def requiredVertexBuffers(self) -> MVertexBufferDescriptorList: ... method selectionMask (line 619) | def selectionMask(self) -> MSelectionMask: ... method setCastsShadows (line 620) | def setCastsShadows(self, bool: Incomplete) -> Self: ... method setWantConsolidation (line 621) | def setWantConsolidation(self, bool: Incomplete) -> Self: ... method setDefaultMaterialHandling (line 622) | def setDefaultMaterialHandling(self, *args: Incomplete, **kwargs: Inco... method setCompatibleWithMayaInstancer (line 623) | def setCompatibleWithMayaInstancer(self, bool: Incomplete) -> Self: ... method setCustomData (line 624) | def setCustomData(self, MUserData: Incomplete) -> Self: ... method setDepthPriority (line 625) | def setDepthPriority(self, int: int) -> Self: ... method setDrawMode (line 626) | def setDrawMode(self, int: int) -> Self: ... method setExcludedFromPostEffects (line 627) | def setExcludedFromPostEffects(self, bool: Incomplete) -> Self: ... method setExcludedFromDefaultMaterialOverride (line 628) | def setExcludedFromDefaultMaterialOverride(self, bool: Incomplete) -> ... method setMatrix (line 629) | def setMatrix(self, MMatrix: Incomplete) -> bool: ... method setReceivesShadows (line 630) | def setReceivesShadows(self, bool: Incomplete) -> Self: ... method setSelectionMask (line 631) | def setSelectionMask(self, *args: Incomplete, **kwargs: Incomplete) ->... method setShader (line 632) | def setShader(self, shader: MShaderInstance, customStreamName: str = .... method setShaderFromNode (line 633) | def setShaderFromNode(self, shaderNode: MObject, shapePath: MDagPath, ... method setTreatAsTransparent (line 634) | def setTreatAsTransparent(self, bool: Incomplete) -> Self: ... method setWantSubSceneConsolidation (line 635) | def setWantSubSceneConsolidation(self, bool: Incomplete) -> Self: ... method sourceDagPath (line 636) | def sourceDagPath(self) -> MDagPath: ... method sourceIndexMapping (line 637) | def sourceIndexMapping(self) -> MGeometryIndexMapping: ... method type (line 638) | def type(self) -> int: ... method wantSubSceneConsolidation (line 639) | def wantSubSceneConsolidation(self) -> bool: ... method objectTypeExclusionFlag (line 640) | def objectTypeExclusionFlag(self) -> float: ... method setObjectTypeExclusionFlag (line 641) | def setObjectTypeExclusionFlag(self, long: Incomplete) -> Self: ... class MRenderItemList (line 643) | class MRenderItemList: method __init__ (line 644) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 645) | def __len__(self) -> int: ... method __getitem__ (line 646) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 647) | def append(self, MVertexBufferDescriptor: Incomplete) -> bool: ... method clear (line 648) | def clear(self) -> Self: ... method indexOf (line 650) | def indexOf(self, name: str) -> int: ... method indexOf (line 652) | def indexOf(self, name: str, type: int) -> int: ... method indexOf (line 654) | def indexOf(self, name: str, primitive: int, mode: int) -> int: ... method remove (line 655) | def remove(self, index: Incomplete) -> bool: ... class MGeometryRequirements (line 657) | class MGeometryRequirements: method __init__ (line 658) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addIndexingRequirement (line 659) | def addIndexingRequirement(self, MIndexBufferDescriptor: Incomplete) -... method addVertexRequirement (line 660) | def addVertexRequirement(self, MVertexBufferDescriptor: Incomplete) ->... method indexingRequirements (line 661) | def indexingRequirements(self) -> MIndexBufferDescriptorList: ... method vertexRequirements (line 662) | def vertexRequirements(self) -> MVertexBufferDescriptorList: ... class MGeometryUtilities (line 664) | class MGeometryUtilities: method acquireReferenceGeometry (line 681) | def acquireReferenceGeometry(shape: int, requirements: MGeometryRequir... method displayStatus (line 683) | def displayStatus(path: MDagPath) -> DisplayStatus: ... # type: ignor... method releaseReferenceGeometry (line 685) | def releaseReferenceGeometry(geometry: MGeometry) -> None: ... method wireframeColor (line 687) | def wireframeColor(path: MDagPath) -> MColor: ... class MPxComponentConverter (line 689) | class MPxComponentConverter: method __init__ (line 690) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addIntersection (line 691) | def addIntersection(self, intersection: MIntersection) -> Self: ... method component (line 692) | def component(self) -> MObject: ... method initialize (line 693) | def initialize(self, renderItem: MRenderItem) -> Self: ... method selectionMask (line 694) | def selectionMask(self) -> MSelectionMask: ... class MPxDrawOverride (line 696) | class MPxDrawOverride: method __init__ (line 697) | def __init__(self, obj: Incomplete, callback: Incomplete, isAlwaysDirt... method addUIDrawables (line 698) | def addUIDrawables(self, objPath: MDagPath, drawManager: MUIDrawManage... method boundingBox (line 699) | def boundingBox(self, objPath: MDagPath, cameraPath: MDagPath) -> MBou... method disableInternalBoundingBoxDraw (line 700) | def disableInternalBoundingBoxDraw(self) -> bool: ... method excludedFromPostEffects (line 701) | def excludedFromPostEffects(self) -> bool: ... method isTransparent (line 702) | def isTransparent(self) -> bool: ... method hasUIDrawables (line 703) | def hasUIDrawables(self) -> bool: ... method isBounded (line 704) | def isBounded(self, objPath: MDagPath, cameraPath: MDagPath) -> bool: ... method prepareForDraw (line 705) | def prepareForDraw(self, objPath: MDagPath, cameraPath: MDagPath, fram... method refineSelectionPath (line 706) | def refineSelectionPath(self, selectInfo: MSelectionInfo, hitItem: MRe... method supportedDrawAPIs (line 707) | def supportedDrawAPIs(self) -> DrawAPI: ... # type: ignore[name-defined] method transform (line 708) | def transform(self, objPath: MDagPath, cameraPath: MDagPath) -> MMatri... method wantUserSelection (line 709) | def wantUserSelection(self) -> bool: ... method userSelect (line 710) | def userSelect(self, selectInfo: MSelectionInfo, drawContext: Incomple... method updateSelectionGranularity (line 711) | def updateSelectionGranularity(self, path: Incomplete, selectionContex... method pointSnappingActive (line 713) | def pointSnappingActive() -> bool: ... method traceCallSequence (line 714) | def traceCallSequence(self) -> bool: ... method handleTraceMessage (line 715) | def handleTraceMessage(self, message: Incomplete) -> Self: ... class MPxGeometryOverride (line 717) | class MPxGeometryOverride: method __init__ (line 718) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addUIDrawables (line 719) | def addUIDrawables(self, path: MDagPath, drawManager: MUIDrawManager, ... method cleanUp (line 720) | def cleanUp(self) -> Self: ... method hasUIDrawables (line 721) | def hasUIDrawables(self) -> bool: ... method isIndexingDirty (line 722) | def isIndexingDirty(self, item: MRenderItem) -> bool: ... method isStreamDirty (line 723) | def isStreamDirty(self, desc: MVertexBufferDescriptor) -> bool: ... method pointSnappingActive (line 725) | def pointSnappingActive() -> bool: ... method populateGeometry (line 726) | def populateGeometry(self, requirements: MGeometryRequirements, render... method refineSelectionPath (line 727) | def refineSelectionPath(self, selectInfo: MSelectionInfo, hitItem: MRe... method supportedDrawAPIs (line 728) | def supportedDrawAPIs(self) -> DrawAPI: ... # type: ignore[name-defined] method configCache (line 729) | def configCache(self, evalNode: MEvaluationNode, schema: MCacheSchema)... method updateDG (line 730) | def updateDG(self) -> Self: ... method updateRenderItems (line 731) | def updateRenderItems(self, path: MDagPath, list: MRenderItemList) -> ... method requiresUpdateRenderItems (line 732) | def requiresUpdateRenderItems(self, path: MDagPath) -> bool: ... method requiresGeometryUpdate (line 733) | def requiresGeometryUpdate(self) -> bool: ... method supportsEvaluationManagerParallelUpdate (line 734) | def supportsEvaluationManagerParallelUpdate(self) -> bool: ... method supportsVP2CustomCaching (line 735) | def supportsVP2CustomCaching(self) -> bool: ... method updateSelectionGranularity (line 736) | def updateSelectionGranularity(self, path: Incomplete, selectionContex... method traceCallSequence (line 737) | def traceCallSequence(self) -> bool: ... method handleTraceMessage (line 738) | def handleTraceMessage(self, message: Incomplete) -> Self: ... method getFrameContext (line 739) | def getFrameContext(self) -> MFrameContext: ... class MPxImagePlaneOverride (line 741) | class MPxImagePlaneOverride: method __init__ (line 742) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method supportedDrawAPIs (line 743) | def supportedDrawAPIs(self) -> DrawAPI: ... # type: ignore[name-defined] class MPxIndexBufferMutator (line 745) | class MPxIndexBufferMutator: method __init__ (line 746) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method mutateIndexing (line 747) | def mutateIndexing(self, *args: Incomplete, **kwargs: Incomplete) -> I... class MPxPrimitiveGenerator (line 749) | class MPxPrimitiveGenerator: method __init__ (line 750) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method computeIndexCount (line 751) | def computeIndexCount(self, object: MObject, component: MObject) -> in... method generateIndexing (line 752) | def generateIndexing(self, *args: Incomplete, **kwargs: Incomplete) ->... class MInitContext (line 754) | class MInitContext: method __init__ (line 757) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MInitFeedback (line 759) | class MInitFeedback: method __init__ (line 761) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPxShaderOverride (line 763) | class MPxShaderOverride: method __init__ (line 764) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method activateKey (line 765) | def activateKey(self, context: Incomplete, key: Incomplete) -> Self: ... method addGeometryRequirement (line 766) | def addGeometryRequirement(self, MVertexBufferDescriptor: Incomplete) ... method addGeometryRequirements (line 767) | def addGeometryRequirements(self, MVertexBufferDescriptorList: Incompl... method addIndexingRequirement (line 768) | def addIndexingRequirement(self, MIndexBufferDescriptor: Incomplete) -... method addShaderSignature (line 769) | def addShaderSignature(self, *args: Incomplete, **kwargs: Incomplete) ... method boundingBoxExtraScale (line 770) | def boundingBoxExtraScale(self) -> float: ... method draw (line 771) | def draw(self, context: MDrawContext, renderItemList: MRenderItemList)... method drawGeometry (line 772) | def drawGeometry(self, MDrawContext: Incomplete) -> Self: ... method endUpdate (line 773) | def endUpdate(self) -> Self: ... method handlesConsolidatedGeometry (line 774) | def handlesConsolidatedGeometry(self) -> bool: ... method handlesDraw (line 775) | def handlesDraw(self, context: Incomplete) -> bool: ... method initialize (line 777) | def initialize(self, shader: Incomplete) -> str: ... method initialize (line 779) | def initialize(self, initContext: Incomplete, initFeedback: Incomplete... method initialize2 (line 780) | def initialize2(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isTransparent (line 781) | def isTransparent(self) -> bool: ... method nonTexturedShaderInstance (line 782) | def nonTexturedShaderInstance(self, *args: Incomplete, **kwargs: Incom... method overridesDrawState (line 783) | def overridesDrawState(self) -> bool: ... method overridesNonMaterialItems (line 784) | def overridesNonMaterialItems(self) -> bool: ... method rebuildAlways (line 785) | def rebuildAlways(self) -> bool: ... method setGeometryRequirements (line 786) | def setGeometryRequirements(self, MShaderInstance: Incomplete) -> Self... method shaderInstance (line 787) | def shaderInstance(self) -> MShaderInstance: ... method supportedDrawAPIs (line 788) | def supportedDrawAPIs(self) -> DrawAPI: ... # type: ignore[name-defined] method supportsAdvancedTransparency (line 789) | def supportsAdvancedTransparency(self) -> bool: ... method terminateKey (line 790) | def terminateKey(self, context: Incomplete, key: Incomplete) -> Self: ... method updateDG (line 791) | def updateDG(self, object: Incomplete) -> Self: ... method updateDevice (line 792) | def updateDevice(self) -> Self: ... class MAttributeParameterMapping (line 794) | class MAttributeParameterMapping: method __init__ (line 795) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method allowConnection (line 796) | def allowConnection(self) -> bool: ... method allowRename (line 797) | def allowRename(self) -> bool: ... method attributeName (line 798) | def attributeName(self) -> str: ... method parameterName (line 799) | def parameterName(self) -> str: ... method resolvedParameterName (line 800) | def resolvedParameterName(self) -> str: ... class MAttributeParameterMappingList (line 802) | class MAttributeParameterMappingList: method __init__ (line 803) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 804) | def __len__(self) -> int: ... method __getitem__ (line 805) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 806) | def append(self, MAttributeParameterMapping: Incomplete) -> Self: ... method clear (line 807) | def clear(self) -> Self: ... method findByAttributeName (line 808) | def findByAttributeName(self, attributeName: Incomplete) -> MAttribute... method findByParameterName (line 809) | def findByParameterName(self, parameterName: Incomplete) -> MAttribute... class MPxShadingNodeOverride (line 811) | class MPxShadingNodeOverride: method __init__ (line 812) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method allowConnections (line 813) | def allowConnections(self) -> bool: ... method fragmentName (line 814) | def fragmentName(self) -> str: ... method getCustomMappings (line 815) | def getCustomMappings(self, mappings: MAttributeParameterMappingList) ... method outputForConnection (line 816) | def outputForConnection(self, sourcePlug: MPlug, destinationPlug: MPlu... method supportedDrawAPIs (line 817) | def supportedDrawAPIs(self) -> DrawAPI: ... # type: ignore[name-defined] method updateDG (line 818) | def updateDG(self) -> Self: ... method updateShader (line 820) | def updateShader(self, shader: MShaderInstance, mappings: MAttributePa... method updateShader (line 822) | def updateShader(self) -> Any: ... method valueChangeRequiresFragmentRebuild (line 823) | def valueChangeRequiresFragmentRebuild(self, plug: MPlug) -> bool: ... class MSubSceneContainerIterator (line 825) | class MSubSceneContainerIterator: method __init__ (line 826) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method destroy (line 827) | def destroy(self) -> Self: ... method next (line 828) | def next(self) -> MRenderItem: ... method reset (line 829) | def reset(self) -> Self: ... class MSubSceneContainer (line 831) | class MSubSceneContainer: method __init__ (line 832) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 833) | def __len__(self) -> int: ... method add (line 834) | def add(self, item: MRenderItem) -> bool: ... method clear (line 835) | def clear(self) -> Self: ... method count (line 836) | def count(self) -> int: ... method find (line 837) | def find(self, name: str) -> MRenderItem: ... method getIterator (line 838) | def getIterator(self) -> MSubSceneContainerIterator: ... method remove (line 839) | def remove(self, name: str) -> bool: ... class MPxSubSceneOverride (line 841) | class MPxSubSceneOverride: method __init__ (line 842) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method areUIDrawablesDirty (line 843) | def areUIDrawablesDirty(self) -> bool: ... method hasUIDrawables (line 844) | def hasUIDrawables(self) -> bool: ... method addUIDrawables (line 845) | def addUIDrawables(self, drawManager: Incomplete, frameContext: Incomp... method setAllowTransparentInstances (line 846) | def setAllowTransparentInstances(self, renderItem: Incomplete, transfo... method addInstanceTransform (line 847) | def addInstanceTransform(self, renderItem: MRenderItem, transform: MMa... method furtherUpdateRequired (line 848) | def furtherUpdateRequired(self, frameContext: MFrameContext) -> bool: ... method getSelectionPath (line 849) | def getSelectionPath(self, renderItem: MRenderItem, dagPath: MDagPath)... method getInstancedSelectionPath (line 850) | def getInstancedSelectionPath(self, renderItem: MRenderItem, intersect... method pointSnappingActive (line 852) | def pointSnappingActive() -> bool: ... method removeAllInstances (line 853) | def removeAllInstances(self, renderItem: MRenderItem) -> Self: ... method removeExtraInstanceData (line 854) | def removeExtraInstanceData(self, renderItem: MRenderItem, parameterNa... method removeInstance (line 855) | def removeInstance(self, renderItem: MRenderItem, instanceId: int) -> ... method requiresUpdate (line 856) | def requiresUpdate(self, container: MSubSceneContainer, frameContext: ... method setExtraInstanceData (line 857) | def setExtraInstanceData(self, renderItem: MRenderItem, parameterName:... method setGeometryForRenderItem (line 858) | def setGeometryForRenderItem(self, renderItem: MRenderItem, vertexBuff... method setInstanceTransformArray (line 859) | def setInstanceTransformArray(self, renderItem: MRenderItem, matrixArr... method supportedDrawAPIs (line 860) | def supportedDrawAPIs(self) -> DrawAPI: ... # type: ignore[name-defined] method update (line 861) | def update(self, container: MSubSceneContainer, frameContext: MFrameCo... method updateInstanceTransform (line 862) | def updateInstanceTransform(self, renderItem: MRenderItem, instanceId:... method updateSelectionGranularity (line 863) | def updateSelectionGranularity(self, path: Incomplete, selectionContex... class MPxSurfaceShadingNodeOverride (line 865) | class MPxSurfaceShadingNodeOverride(MPxShadingNodeOverride): method __init__ (line 866) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method bumpAttribute (line 867) | def bumpAttribute(self) -> str: ... method primaryColorParameter (line 868) | def primaryColorParameter(self) -> str: ... method transparencyParameter (line 869) | def transparencyParameter(self) -> str: ... class MPxVertexBufferGenerator (line 871) | class MPxVertexBufferGenerator: method __init__ (line 872) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method createVertexStream (line 873) | def createVertexStream(self, object: MObject, vertexBuffer: MVertexBuf... method getSourceIndexing (line 874) | def getSourceIndexing(self, object: MObject, sourceIndexing: MComponen... method getSourceStreams (line 875) | def getSourceStreams(self, object: MObject, sourceStreams: Incomplete)... class MPxVertexBufferMutator (line 877) | class MPxVertexBufferMutator: method __init__ (line 878) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method modifyVertexStream (line 879) | def modifyVertexStream(self, object: MObject, vertexBuffer: MVertexBuf... class MRenderTargetDescription (line 881) | class MRenderTargetDescription: method __init__ (line 882) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method name (line 883) | def name(self) -> str: ... method width (line 884) | def width(self) -> int: ... method height (line 885) | def height(self) -> int: ... method multiSampleCount (line 886) | def multiSampleCount(self) -> int: ... method rasterFormat (line 887) | def rasterFormat(self) -> int: ... method arraySliceCount (line 888) | def arraySliceCount(self) -> int: ... method isCubeMap (line 889) | def isCubeMap(self) -> bool: ... method allowsUnorderedAccess (line 890) | def allowsUnorderedAccess(self) -> bool: ... method setName (line 891) | def setName(self, string: str) -> Self: ... method setWidth (line 892) | def setWidth(self, int: int) -> Self: ... method setHeight (line 893) | def setHeight(self, int: int) -> Self: ... method setMultiSampleCount (line 894) | def setMultiSampleCount(self, int: int) -> Self: ... method setRasterFormat (line 895) | def setRasterFormat(self, int: int) -> Self: ... method setArraySliceCount (line 896) | def setArraySliceCount(self, int: int) -> Self: ... method setIsCubeMap (line 897) | def setIsCubeMap(self, bool: Incomplete) -> Self: ... method setAllowsUnorderedAccess (line 898) | def setAllowsUnorderedAccess(self, bool: Incomplete) -> Self: ... method compatibleWithDescription (line 899) | def compatibleWithDescription(self, MRenderTargetDescription: Incomple... class MRenderTarget (line 901) | class MRenderTarget: method __init__ (line 902) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method updateDescription (line 903) | def updateDescription(self, MRenderTargetDescription: Incomplete) -> S... method targetDescription (line 904) | def targetDescription(self) -> MRenderTargetDescription: ... method resourceHandle (line 905) | def resourceHandle(self) -> float: ... method rawData (line 906) | def rawData(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method freeRawData (line 908) | def freeRawData(long: Incomplete) -> None: ... class MRenderTargetManager (line 910) | class MRenderTargetManager: method __init__ (line 911) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acquireRenderTarget (line 912) | def acquireRenderTarget(self, MRenderTargetDescription: Incomplete) ->... method acquireRenderTargetFromScreen (line 913) | def acquireRenderTargetFromScreen(self, string: str) -> MRenderTarget:... method formatSupportsSRGBWrite (line 914) | def formatSupportsSRGBWrite(self, int: int) -> bool: ... method releaseRenderTarget (line 915) | def releaseRenderTarget(self, MRenderTarget: Incomplete) -> Self: ... class MRenderProfile (line 917) | class MRenderProfile: method __init__ (line 921) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addRenderer (line 922) | def addRenderer(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method hasRenderer (line 923) | def hasRenderer(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method numberOfRenderers (line 924) | def numberOfRenderers(self) -> int: ... class MRenderUtilities (line 926) | class MRenderUtilities: method acquireSwatchDrawContext (line 935) | def acquireSwatchDrawContext() -> MDrawContext: ... method acquireSwatchDrawContext (line 938) | def acquireSwatchDrawContext(colorTarget: MRenderTarget) -> MDrawConte... method acquireSwatchDrawContext (line 941) | def acquireSwatchDrawContext(colorTarget: MRenderTarget, depthTarget: ... method acquireUVTextureDrawContext (line 944) | def acquireUVTextureDrawContext() -> MDrawContext: ... method acquireUVTextureDrawContext (line 947) | def acquireUVTextureDrawContext(colorTarget: MRenderTarget) -> MDrawCo... method acquireUVTextureDrawContext (line 950) | def acquireUVTextureDrawContext(colorTarget: MRenderTarget, depthTarge... method blitTargetToGL (line 952) | def blitTargetToGL(target: MRenderTarget, region: None, unfiltered: bo... method blitTargetToImage (line 954) | def blitTargetToImage(target: MRenderTarget, image: MImage) -> None: ... method drawSimpleMesh (line 956) | def drawSimpleMesh(context: MDrawContext, vertexBuffer: MVertexBuffer,... method releaseDrawContext (line 959) | def releaseDrawContext(context: MDrawContext) -> None: ... method releaseDrawContext (line 962) | def releaseDrawContext(context: MDrawContext, releaseTargets: bool) ->... method renderMaterialViewerGeometry (line 964) | def renderMaterialViewerGeometry(shape: str, shaderNode: MObject, imag... method swatchBackgroundColor (line 966) | def swatchBackgroundColor() -> MColor: ... class MSelectionContext (line 968) | class MSelectionContext: method __init__ (line 976) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MIntersection (line 978) | class MIntersection: method __init__ (line 985) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MSelectionInfo (line 987) | class MSelectionInfo: method __init__ (line 997) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method selectForHilite (line 998) | def selectForHilite(self, mask: MSelectionMask) -> bool: ... method selectable (line 999) | def selectable(self, mask: MSelectionMask) -> bool: ... method selectableComponent (line 1000) | def selectableComponent(self, displayed: bool, mask: MSelectionMask) -... class MShaderCompileMacro (line 1002) | class MShaderCompileMacro: method __init__ (line 1005) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MTextureAssignment (line 1007) | class MTextureAssignment: method __init__ (line 1009) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MRenderTargetAssignment (line 1011) | class MRenderTargetAssignment: method __init__ (line 1013) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MShaderInstance (line 1015) | class MShaderInstance: method __init__ (line 1046) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method activatePass (line 1047) | def activatePass(self, MDrawContext: Incomplete, int: int) -> Self: ... method addInputFragment (line 1048) | def addInputFragment(self, fragmentName: str, outputName: str, inputNa... method addInputFragmentForMultiParams (line 1049) | def addInputFragmentForMultiParams(self, fragmentName: str, uniqueName... method addOutputFragment (line 1050) | def addOutputFragment(self, fragmentName: str, inputName: str) -> Self... method annotation (line 1051) | def annotation(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method bind (line 1052) | def bind(self, MDrawContext: Incomplete) -> Self: ... method clone (line 1053) | def clone(self) -> MShaderInstance: ... method createShaderInstanceWithColorManagementFragment (line 1054) | def createShaderInstanceWithColorManagementFragment(self, inputColorSp... method addColorManagementTextures (line 1055) | def addColorManagementTextures(self) -> Self: ... method getPassCount (line 1056) | def getPassCount(self, MDrawContext: Incomplete) -> int: ... method isArrayParameter (line 1057) | def isArrayParameter(self, string: str) -> bool: ... method getArraySize (line 1058) | def getArraySize(self, string: str) -> int: ... method isTransparent (line 1059) | def isTransparent(self) -> bool: ... method parameterDefaultValue (line 1060) | def parameterDefaultValue(self, *args: Incomplete, **kwargs: Incomplet... method parameterList (line 1061) | def parameterList(self) -> list[str]: ... method parameterSemantic (line 1062) | def parameterSemantic(self, parameterName: Incomplete) -> str: ... method parameterType (line 1063) | def parameterType(self, string: str) -> int: ... method passAnnotation (line 1064) | def passAnnotation(self, *args: Incomplete, **kwargs: Incomplete) -> I... method postDrawCallback (line 1065) | def postDrawCallback(self, *args: Incomplete, **kwargs: Incomplete) ->... method preDrawCallback (line 1066) | def preDrawCallback(self, *args: Incomplete, **kwargs: Incomplete) -> ... method resourceName (line 1067) | def resourceName(self, parameterName: Incomplete) -> str: ... method semantic (line 1068) | def semantic(self, string: str) -> str: ... method isVaryingParameter (line 1069) | def isVaryingParameter(self, string: str) -> bool: ... method setArrayParameter (line 1071) | def setArrayParameter(self, parameterName: Incomplete, sequenceofbool:... method setArrayParameter (line 1073) | def setArrayParameter(self, parameterName: Incomplete, sequenceofint: ... method setArrayParameter (line 1075) | def setArrayParameter(self, parameterName: Incomplete, sequenceoffloat... method setArrayParameter (line 1077) | def setArrayParameter(self, parameterName: Incomplete, sequenceofMMatr... method setIsTransparent (line 1078) | def setIsTransparent(self, bool: Incomplete) -> Self: ... method setAsVarying (line 1079) | def setAsVarying(self, parameterName: Incomplete, bool: Incomplete) ->... method setSemantic (line 1080) | def setSemantic(self, parameterName: Incomplete, string: str) -> Self:... method renameParameter (line 1081) | def renameParameter(self, parameterName: Incomplete, string: str) -> S... method setParameter (line 1083) | def setParameter(self, parameterName: Incomplete, bool: Incomplete) ->... method setParameter (line 1085) | def setParameter(self, parameterName: Incomplete, int: int) -> Self: ... method setParameter (line 1087) | def setParameter(self, parameterName: Incomplete, float: Incomplete) -... method setParameter (line 1089) | def setParameter(self, parameterName: Incomplete, listoffloat: Incompl... method setParameter (line 1091) | def setParameter(self, parameterName: Incomplete, MFloatVector: Incomp... method setParameter (line 1093) | def setParameter(self, parameterName: Incomplete, MMatrix: Incomplete)... method setParameter (line 1095) | def setParameter(self, parameterName: Incomplete, MFloatMatrix: Incomp... method setParameter (line 1097) | def setParameter(self, parameterName: Incomplete, MTexture: Incomplete... method setParameter (line 1099) | def setParameter(self, parameterName: Incomplete, MRenderTarget: Incom... method setParameter (line 1101) | def setParameter(self, parameterName: Incomplete, MSamplerState: Incom... method techniqueNames (line 1102) | def techniqueNames(self) -> list[str]: ... method techniqueAnnotation (line 1103) | def techniqueAnnotation(self, *args: Incomplete, **kwargs: Incomplete)... method uiName (line 1104) | def uiName(self, parameterName: Incomplete) -> str: ... method uiWidget (line 1105) | def uiWidget(self, parameterName: Incomplete) -> str: ... method unbind (line 1106) | def unbind(self, MDrawContext: Incomplete) -> Self: ... method updateParameters (line 1107) | def updateParameters(self, MDrawContext: Incomplete) -> Self: ... method requiredVertexBuffers (line 1108) | def requiredVertexBuffers(self, MVertexBufferDescriptorList: Incomplet... method writeEffectSourceToFile (line 1109) | def writeEffectSourceToFile(self, filePath: Incomplete) -> Self: ... class MShaderManager (line 1111) | class MShaderManager: method __init__ (line 1140) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addShaderIncludePath (line 1141) | def addShaderIncludePath(self, string: str) -> Self: ... method addShaderPath (line 1142) | def addShaderPath(self, string: str) -> Self: ... method getEffectsBufferShader (line 1143) | def getEffectsBufferShader(self, buffer: Incomplete, size: int, techni... method getEffectsFileShader (line 1144) | def getEffectsFileShader(self, effecsFileName: Incomplete, techniqueNa... method getEffectsTechniques (line 1145) | def getEffectsTechniques(self, effecsFileName: Incomplete, macros: Inc... method getFragmentShader (line 1146) | def getFragmentShader(self, fragmentName: str, structOutputName: str, ... method getShaderFromNode (line 1147) | def getShaderFromNode(self, shaderNode: MObject, shapePath: MDagPath, ... method getStockShader (line 1148) | def getStockShader(self, shaderId: int, preCb: function = ..., postCb:... method isSupportedShaderSemantic (line 1150) | def isSupportedShaderSemantic(string: str) -> bool: ... method releaseShader (line 1151) | def releaseShader(self, MShaderInstance: Incomplete) -> None: ... method clearEffectCache (line 1152) | def clearEffectCache(self) -> Self: ... method removeEffectFromCache (line 1153) | def removeEffectFromCache(self, effecsFileName: Incomplete, techniqueN... method shaderIncludePaths (line 1154) | def shaderIncludePaths(self) -> list[str]: ... method shaderPaths (line 1155) | def shaderPaths(self) -> list[str]: ... method getLastError (line 1157) | def getLastError() -> str: ... method getLastErrorSource (line 1159) | def getLastErrorSource(displayLineNumber: bool = ..., filterSource: s ... class MStateManager (line 1161) | class MStateManager: method __init__ (line 1176) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method acquireBlendState (line 1178) | def acquireBlendState(MBlendStateDesc: Incomplete) -> MBlendState: ... method releaseBlendState (line 1180) | def releaseBlendState(MBlendState: Incomplete) -> None: ... method setBlendState (line 1181) | def setBlendState(self, MBlendState: Incomplete) -> Self: ... method getBlendState (line 1182) | def getBlendState(self) -> MBlendState: ... method acquireRasterizerState (line 1184) | def acquireRasterizerState(MRasterizerStateDesc: Incomplete) -> MRaste... method releaseRasterizerState (line 1186) | def releaseRasterizerState(MRasterizerState: Incomplete) -> None: ... method setRasterizerState (line 1187) | def setRasterizerState(self, MRasterizerState: Incomplete) -> Self: ... method getRasterizerState (line 1188) | def getRasterizerState(self) -> MRasterizerState: ... method acquireDepthStencilState (line 1190) | def acquireDepthStencilState(MDepthStencilStateDesc: Incomplete) -> MD... method releaseDepthStencilState (line 1192) | def releaseDepthStencilState(MDepthStencilState: Incomplete) -> None: ... method setDepthStencilState (line 1193) | def setDepthStencilState(self, MDepthStencilState: Incomplete) -> Self... method getDepthStencilState (line 1194) | def getDepthStencilState(self) -> MDepthStencilState: ... method acquireSamplerState (line 1196) | def acquireSamplerState(MSamplerStateDesc: Incomplete) -> MSamplerStat... method releaseSamplerState (line 1198) | def releaseSamplerState(MSamplerState: Incomplete) -> None: ... method setSamplerState (line 1199) | def setSamplerState(self, shader: ShaderType, samplerIndex: int, sampl... method getSamplerState (line 1200) | def getSamplerState(self, shader: ShaderType, samplerIndex: int) -> MS... method getMaxSamplerCount (line 1202) | def getMaxSamplerCount() -> int: ... class MBlendState (line 1204) | class MBlendState: method __init__ (line 1233) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method desc (line 1234) | def desc(self) -> MBlendStateDesc: ... method resourceHandle (line 1235) | def resourceHandle(self) -> float: ... class MTargetBlendDesc (line 1237) | class MTargetBlendDesc: method __init__ (line 1246) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setDefaults (line 1247) | def setDefaults(self) -> Self: ... class MBlendStateDesc (line 1249) | class MBlendStateDesc: method __init__ (line 1255) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setDefaults (line 1256) | def setDefaults(self) -> Self: ... class MRasterizerState (line 1258) | class MRasterizerState: method __init__ (line 1264) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method desc (line 1265) | def desc(self) -> MRasterizerStateDesc: ... method resourceHandle (line 1266) | def resourceHandle(self) -> float: ... class MRasterizerStateDesc (line 1268) | class MRasterizerStateDesc: method __init__ (line 1280) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setDefaults (line 1281) | def setDefaults(self) -> Self: ... class MDepthStencilState (line 1283) | class MDepthStencilState: method __init__ (line 1292) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method desc (line 1293) | def desc(self) -> MDepthStencilStateDesc: ... method resourceHandle (line 1294) | def resourceHandle(self) -> float: ... class MStencilOpDesc (line 1296) | class MStencilOpDesc: method __init__ (line 1301) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setDefaults (line 1302) | def setDefaults(self) -> Self: ... class MDepthStencilStateDesc (line 1304) | class MDepthStencilStateDesc: method __init__ (line 1314) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setDefaults (line 1315) | def setDefaults(self) -> Self: ... class MSamplerState (line 1317) | class MSamplerState: method __init__ (line 1331) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method desc (line 1332) | def desc(self) -> MSamplerStateDesc: ... method resourceHandle (line 1333) | def resourceHandle(self) -> float: ... class MSamplerStateDesc (line 1335) | class MSamplerStateDesc: method __init__ (line 1348) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setDefaults (line 1349) | def setDefaults(self) -> Self: ... class MSwatchRenderBase (line 1351) | class MSwatchRenderBase: method __init__ (line 1353) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method cancelCurrentSwatchRender (line 1355) | def cancelCurrentSwatchRender() -> None: ... method cancelParallelRendering (line 1356) | def cancelParallelRendering(self) -> Self: ... method doIteration (line 1357) | def doIteration(self) -> bool: ... method finishParallelRender (line 1358) | def finishParallelRender(self) -> Self: ... method image (line 1359) | def image(self) -> MImage: ... method node (line 1360) | def node(self) -> MObject: ... method renderParallel (line 1361) | def renderParallel(self) -> bool: ... method resolution (line 1362) | def resolution(self) -> int: ... method swatchNode (line 1363) | def swatchNode(self) -> MObject: ... class MTextureDescription (line 1365) | class MTextureDescription: method __init__ (line 1392) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method setToDefault2DTexture (line 1393) | def setToDefault2DTexture(self) -> Self: ... class MDepthNormalizationDescription (line 1395) | class MDepthNormalizationDescription: method __init__ (line 1400) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MTextureUpdateRegion (line 1402) | class MTextureUpdateRegion: method __init__ (line 1409) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MTexture (line 1411) | class MTexture: method __init__ (line 1412) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method hasAlpha (line 1413) | def hasAlpha(self) -> bool: ... method setHasAlpha (line 1414) | def setHasAlpha(self, bool: Incomplete) -> Self: ... method hasZeroAlpha (line 1415) | def hasZeroAlpha(self) -> bool: ... method setHasZeroAlpha (line 1416) | def setHasZeroAlpha(self, bool: Incomplete) -> Self: ... method hasTransparentAlpha (line 1417) | def hasTransparentAlpha(self) -> bool: ... method setHasTransparentAlpha (line 1418) | def setHasTransparentAlpha(self, bool: Incomplete) -> Self: ... method resourceHandle (line 1419) | def resourceHandle(self) -> float: ... method name (line 1420) | def name(self) -> str: ... method bytesPerPixel (line 1421) | def bytesPerPixel(self) -> int: ... method textureDescription (line 1422) | def textureDescription(self) -> MTextureDescription: ... method rawData (line 1423) | def rawData(self, *args: Incomplete, **kwargs: Incomplete) -> Incomple... method freeRawData (line 1425) | def freeRawData(long: Incomplete) -> None: ... method update (line 1426) | def update(self, pixelData: Incomplete, generateMipMaps: bool, rowPitc... class MTextureManager (line 1428) | class MTextureManager: method __init__ (line 1429) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addImagePath (line 1430) | def addImagePath(self, string: str) -> Self: ... method imagePaths (line 1431) | def imagePaths(self) -> list[str]: ... method acquireTexture (line 1433) | def acquireTexture(self, filePath: str, mipmapLevels: Incomplete = ...... method acquireTexture (line 1435) | def acquireTexture(self, filePath: Incomplete, contextNodeFullName: In... method acquireTexture (line 1437) | def acquireTexture(self, textureName: str, plug: Incomplete, width: In... method acquireTexture (line 1439) | def acquireTexture(self, textureName: Incomplete, textureDesc: Incompl... method acquireTiledTexture (line 1440) | def acquireTiledTexture(self, *args: Incomplete, **kwargs: Incomplete)... method acquireDepthTexture (line 1442) | def acquireDepthTexture(self, textureName: str, image: MImage, generat... method acquireDepthTexture (line 1444) | def acquireDepthTexture(self, textureName: str, pixelData: Incomplete,... method releaseTexture (line 1445) | def releaseTexture(self, MTexture: Incomplete) -> Self: ... method saveTexture (line 1446) | def saveTexture(self, MTexture: Incomplete, string: str) -> Self: ... class MUniformParameter (line 1448) | class MUniformParameter: method __init__ (line 1528) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method asBool (line 1529) | def asBool(self, context: MDrawContext) -> bool: ... method asFloat (line 1530) | def asFloat(self, context: MDrawContext) -> float: ... method asFloatArray (line 1531) | def asFloatArray(self, context: MDrawContext) -> tuple[float, ...]: ... method asInt (line 1532) | def asInt(self, context: MDrawContext) -> int: ... method asString (line 1533) | def asString(self, context: MDrawContext) -> str: ... method copy (line 1534) | def copy(self, source: MUniformParameter) -> Self: ... method hasChanged (line 1535) | def hasChanged(self, context: MDrawContext) -> bool: ... method isATexture (line 1536) | def isATexture(self) -> bool: ... method name (line 1537) | def name(self) -> str: ... method numColumns (line 1538) | def numColumns(self) -> int: ... method numElements (line 1539) | def numElements(self) -> int: ... method numRows (line 1540) | def numRows(self) -> int: ... method plug (line 1541) | def plug(self) -> MPlug: ... method semantic (line 1542) | def semantic(self) -> int: ... method setBool (line 1543) | def setBool(self, value: bool) -> Self: ... method setDirty (line 1544) | def setDirty(self) -> Self: ... method setFloat (line 1545) | def setFloat(self, value: float) -> Self: ... method setFloatArray (line 1546) | def setFloatArray(self, value: s) -> Self: ... # type: ignore[name-de... method setInt (line 1547) | def setInt(self, value: int) -> Self: ... method setString (line 1548) | def setString(self, value: str) -> Self: ... method source (line 1549) | def source(self) -> MPlug: ... method type (line 1550) | def type(self) -> int: ... method userData (line 1551) | def userData(self) -> int: ... class MUniformParameterList (line 1553) | class MUniformParameterList: method __init__ (line 1554) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 1555) | def __len__(self) -> int: ... method __getitem__ (line 1556) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 1557) | def append(self, element: MUniformParameter) -> bool: ... method copy (line 1558) | def copy(self, source: MUniformParameterList) -> Self: ... method setElement (line 1559) | def setElement(self, n: int, element: MUniformParameter) -> bool: ... method setLength (line 1560) | def setLength(self, length: int) -> bool: ... class MVaryingParameter (line 1562) | class MVaryingParameter: method __init__ (line 1581) | def __init__(self) -> None: ... method addElement (line 1582) | def addElement(self, child: MVaryingParameter) -> Self: ... method copy (line 1583) | def copy(self, source: MVaryingParameter) -> Self: ... method destinationSetName (line 1584) | def destinationSetName(self) -> str: ... method dimension (line 1585) | def dimension(self) -> int: ... method elementSize (line 1586) | def elementSize(self) -> int: ... method getElement (line 1587) | def getElement(self, index: int) -> MVaryingParameter: ... method maximumStride (line 1588) | def maximumStride(self) -> int: ... method name (line 1589) | def name(self) -> str: ... method numElements (line 1590) | def numElements(self) -> int: ... method removeElements (line 1591) | def removeElements(self) -> Self: ... method semantic (line 1592) | def semantic(self) -> int: ... method semanticName (line 1593) | def semanticName(self) -> str: ... method setSource (line 1594) | def setSource(self, semantic: Incomplete, name: str) -> Self: ... method sourceSetName (line 1595) | def sourceSetName(self) -> str: ... method sourceSemantic (line 1596) | def sourceSemantic(self) -> int: ... method type (line 1597) | def type(self) -> int: ... method updateId (line 1598) | def updateId(self) -> int: ... class MVaryingParameterList (line 1600) | class MVaryingParameterList: method __init__ (line 1601) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 1602) | def __len__(self) -> int: ... method __getitem__ (line 1603) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 1604) | def append(self, element: MVaryingParameter) -> bool: ... method copy (line 1605) | def copy(self, source: MVaryingParameterList) -> Self: ... method setElement (line 1606) | def setElement(self, n: int, element: MVaryingParameter) -> bool: ... method setLength (line 1607) | def setLength(self, length: int) -> bool: ... class MRenderer (line 1609) | class MRenderer: method GPUDeviceHandle (line 1690) | def GPUDeviceHandle() -> float: ... method GPUmaximumPrimitiveCount (line 1692) | def GPUmaximumPrimitiveCount() -> int: ... method GPUmaximumVertexBufferSize (line 1694) | def GPUmaximumVertexBufferSize() -> int: ... method activeRenderOverride (line 1696) | def activeRenderOverride() -> str: ... method copyTargetToScreen (line 1698) | def copyTargetToScreen(MRenderTarget: Incomplete) -> bool: ... method render (line 1700) | def render(sourceName: str, targetList: Incomplete) -> bool: ... method deregisterOverride (line 1702) | def deregisterOverride(MRenderOverride: Incomplete) -> None: ... method disableChangeManagementUntilNextRefresh (line 1704) | def disableChangeManagementUntilNextRefresh() -> None: ... method drawAPI (line 1706) | def drawAPI() -> int: ... method drawAPIIsOpenGL (line 1708) | def drawAPIIsOpenGL() -> bool: ... method drawAPIVersion (line 1710) | def drawAPIVersion() -> int: ... method findRenderOverride (line 1712) | def findRenderOverride(string: str) -> MRenderOverride: ... method getFragmentManager (line 1714) | def getFragmentManager() -> MFragmentManager: ... method getRenderTargetManager (line 1716) | def getRenderTargetManager() -> MRenderTargetManager: ... method getShaderManager (line 1718) | def getShaderManager() -> MShaderManager: ... method getTextureManager (line 1720) | def getTextureManager() -> MTextureManager: ... method outputTargetSize (line 1722) | def outputTargetSize(*args: Incomplete, **kwargs: Incomplete) -> Incom... method registerOverride (line 1724) | def registerOverride(MRenderOverride: Incomplete) -> None: ... method renderOverrideCount (line 1726) | def renderOverrideCount() -> int: ... method renderOverrideName (line 1728) | def renderOverrideName() -> str: ... method setGeometryDrawDirty (line 1730) | def setGeometryDrawDirty(object: MObject, topologyChanged: bool = ...)... method setLightRequiresShadows (line 1732) | def setLightRequiresShadows(object: MObject, flag: bool) -> bool: ... method needEvaluateAllLights (line 1734) | def needEvaluateAllLights() -> None: ... method setLightsAndShadowsDirty (line 1736) | def setLightsAndShadowsDirty() -> None: ... method setRenderOverrideName (line 1738) | def setRenderOverrideName(string: str) -> bool: ... class MCameraOverride (line 1740) | class MCameraOverride: method __init__ (line 1752) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MRenderOperation (line 1754) | class MRenderOperation: method __init__ (line 1762) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method enableSRGBWrite (line 1763) | def enableSRGBWrite(self) -> bool: ... method name (line 1764) | def name(self) -> str: ... method operationType (line 1765) | def operationType(self) -> int: ... method targetOverrideList (line 1766) | def targetOverrideList(self) -> listofMRenderTarget: ... # type: igno... method viewportRectangleOverride (line 1767) | def viewportRectangleOverride(self) -> MFloatPoint: ... class MUserRenderOperation (line 1769) | class MUserRenderOperation(MRenderOperation): method __init__ (line 1770) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addUIDrawables (line 1771) | def addUIDrawables(self, drawManager: MUIDrawManager, frameContext: MF... method cameraOverride (line 1772) | def cameraOverride(self) -> MCameraOverride: ... method hasUIDrawables (line 1773) | def hasUIDrawables(self) -> bool: ... method requiresLightData (line 1774) | def requiresLightData(self) -> bool: ... method requiresResetDeviceStates (line 1775) | def requiresResetDeviceStates(self) -> bool: ... class MHUDRender (line 1777) | class MHUDRender(MRenderOperation): method __init__ (line 1778) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addUIDrawables (line 1779) | def addUIDrawables(self, drawManager2D: tuple[0, 0], frameContext: MFr... method hasUIDrawables (line 1780) | def hasUIDrawables(self) -> bool: ... method name (line 1781) | def name(self) -> str: ... class MPresentTarget (line 1783) | class MPresentTarget(MRenderOperation): method __init__ (line 1787) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method presentDepth (line 1788) | def presentDepth(self) -> bool: ... method setPresentDepth (line 1789) | def setPresentDepth(self, bool: Incomplete) -> Self: ... method setTargetBackBuffer (line 1790) | def setTargetBackBuffer(self, int: int) -> Self: ... method targetBackBuffer (line 1791) | def targetBackBuffer(self) -> int: ... class MClearOperation (line 1793) | class MClearOperation(MRenderOperation): method __init__ (line 1799) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method clearColor (line 1800) | def clearColor(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method clearColor2 (line 1801) | def clearColor2(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method clearDepth (line 1802) | def clearDepth(self) -> float: ... method clearGradient (line 1803) | def clearGradient(self) -> bool: ... method clearStencil (line 1804) | def clearStencil(self) -> int: ... method mask (line 1805) | def mask(self) -> int: ... method overridesColors (line 1806) | def overridesColors(self) -> bool: ... method setClearColor (line 1807) | def setClearColor(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setClearColor2 (line 1808) | def setClearColor2(self, *args: Incomplete, **kwargs: Incomplete) -> I... method setClearDepth (line 1809) | def setClearDepth(self, float: Incomplete) -> Self: ... method setClearGradient (line 1810) | def setClearGradient(self, bool: Incomplete) -> Self: ... method setClearStencil (line 1811) | def setClearStencil(self, int: int) -> Self: ... method setMask (line 1812) | def setMask(self, int: int) -> Self: ... method setOverridesColors (line 1813) | def setOverridesColors(self, bool: Incomplete) -> Self: ... class MSceneRender (line 1815) | class MSceneRender(MRenderOperation): method __init__ (line 1883) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addPostUIDrawables (line 1884) | def addPostUIDrawables(self, drawManager: MUIDrawManager, frameContext... method addPreUIDrawables (line 1885) | def addPreUIDrawables(self, drawManager: MUIDrawManager, frameContext:... method cameraOverride (line 1886) | def cameraOverride(self) -> MCameraOverride: ... method clearOperation (line 1887) | def clearOperation(self) -> MClearOperation: ... method cullingOverride (line 1888) | def cullingOverride(self) -> int: ... method displayModeOverride (line 1889) | def displayModeOverride(self) -> int: ... method fragmentName (line 1890) | def fragmentName(self) -> str: ... method hasUIDrawables (line 1891) | def hasUIDrawables(self) -> bool: ... method lightModeOverride (line 1892) | def lightModeOverride(self) -> int: ... method objectSetOverride (line 1893) | def objectSetOverride(self) -> MSelectionList: ... method getParameters (line 1894) | def getParameters(self) -> MRenderParameters: ... method getObjectTypeExclusions (line 1895) | def getObjectTypeExclusions(self) -> float: ... method objectTypeExclusions (line 1896) | def objectTypeExclusions(self) -> int: ... method postEffectsOverride (line 1897) | def postEffectsOverride(self) -> int: ... method postRender (line 1898) | def postRender(self) -> Self: ... method postSceneRender (line 1899) | def postSceneRender(self, context: MDrawContext) -> Self: ... method preRender (line 1900) | def preRender(self) -> Self: ... method preSceneRender (line 1901) | def preSceneRender(self, context: MDrawContext) -> Self: ... method renderFilterOverride (line 1902) | def renderFilterOverride(self) -> int: ... method shaderOverride (line 1903) | def shaderOverride(self) -> MShaderInstance: ... method shadowEnableOverride (line 1904) | def shadowEnableOverride(self, *args: Incomplete, **kwargs: Incomplete... class MQuadRender (line 1906) | class MQuadRender(MRenderOperation): method __init__ (line 1908) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method blendStateOverride (line 1909) | def blendStateOverride(self) -> MBlendState: ... method clearOperation (line 1910) | def clearOperation(self) -> MClearOperation: ... method depthStencilStateOverride (line 1911) | def depthStencilStateOverride(self) -> MDepthStencilState: ... method rasterizerStateOverride (line 1912) | def rasterizerStateOverride(self) -> MRasterizerState: ... method shader (line 1913) | def shader(self) -> MShaderInstance: ... class MRenderOverride (line 1915) | class MRenderOverride: method __init__ (line 1916) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method cleanup (line 1917) | def cleanup(self) -> Self: ... method name (line 1918) | def name(self) -> str: ... method nextRenderOperation (line 1919) | def nextRenderOperation(self) -> bool: ... method renderOperation (line 1920) | def renderOperation(self) -> MRenderOperation: ... method setup (line 1921) | def setup(self, destination: Incomplete) -> Self: ... method startOperationIterator (line 1922) | def startOperationIterator(self) -> bool: ... method supportedDrawAPIs (line 1923) | def supportedDrawAPIs(self) -> int: ... method uiName (line 1924) | def uiName(self) -> str: ... method getFrameContext (line 1925) | def getFrameContext(self) -> MFrameContext: ... method select (line 1926) | def select(self, frameContext: MFrameContext, selectInfo: MSelectionIn... class MRenderParameters (line 1928) | class MRenderParameters: method __init__ (line 1929) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method isArrayParameter (line 1930) | def isArrayParameter(self, string: str) -> bool: ... method parameterList (line 1931) | def parameterList(self) -> list[str]: ... method parameterType (line 1932) | def parameterType(self, string: str) -> int: ... method semantic (line 1933) | def semantic(self, string: str) -> str: ... method setArrayParameter (line 1935) | def setArrayParameter(self, parameterName: Incomplete, sequenceofbool:... method setArrayParameter (line 1937) | def setArrayParameter(self, parameterName: Incomplete, sequenceofint: ... method setArrayParameter (line 1939) | def setArrayParameter(self, parameterName: Incomplete, sequenceoffloat... method setArrayParameter (line 1941) | def setArrayParameter(self, parameterName: Incomplete, sequenceofMMatr... method setParameter (line 1943) | def setParameter(self, parameterName: Incomplete, bool: Incomplete) ->... method setParameter (line 1945) | def setParameter(self, parameterName: Incomplete, int: int) -> Self: ... method setParameter (line 1947) | def setParameter(self, parameterName: Incomplete, float: Incomplete) -... method setParameter (line 1949) | def setParameter(self, parameterName: Incomplete, listoffloat: Incompl... method setParameter (line 1951) | def setParameter(self, parameterName: Incomplete, MFloatVector: Incomp... method setParameter (line 1953) | def setParameter(self, parameterName: Incomplete, MMatrix: Incomplete)... method setParameter (line 1955) | def setParameter(self, parameterName: Incomplete, MFloatMatrix: Incomp... method setParameter (line 1957) | def setParameter(self, parameterName: Incomplete, MTextureAssignment: ... method setParameter (line 1959) | def setParameter(self, parameterName: Incomplete, MRenderTargetAssignm... method setParameter (line 1961) | def setParameter(self, parameterName: Incomplete, MSamplerState: Incom... method getParameter (line 1963) | def getParameter(self, parameterName: Incomplete, bool: Incomplete) ->... method getParameter (line 1965) | def getParameter(self, parameterName: Incomplete, int: int) -> Self: ... method getParameter (line 1967) | def getParameter(self, parameterName: Incomplete, float: Incomplete) -... method getParameter (line 1969) | def getParameter(self, parameterName: Incomplete, listoffloat: Incompl... method getParameter (line 1971) | def getParameter(self, parameterName: Incomplete, MFloatVector: Incomp... method getParameter (line 1973) | def getParameter(self, parameterName: Incomplete, MMatrix: Incomplete)... method getParameter (line 1975) | def getParameter(self, parameterName: Incomplete, MFloatMatrix: Incomp... method getParameter (line 1977) | def getParameter(self, parameterName: Incomplete, MTextureAssignment: ... method getParameter (line 1979) | def getParameter(self, parameterName: Incomplete, MRenderTargetAssignm... method getParameter (line 1981) | def getParameter(self, parameterName: Incomplete, MSamplerStateDesc: I... FILE: maya/stubs/maya-stubs/api/OpenMayaUI.pyi class M3dView (line 15) | class M3dView: # type: ignore[no-redef] method __init__ (line 87) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method display (line 88) | def display(self) -> float: ... method deviceContext (line 89) | def deviceContext(self) -> float: ... method active3dView (line 91) | def active3dView() -> M3dView: ... method activeAffectedColor (line 93) | def activeAffectedColor() -> MColor: ... method activeTemplateColor (line 95) | def activeTemplateColor() -> MColor: ... method applicationShell (line 97) | def applicationShell() -> float: ... method backgroundColor (line 99) | def backgroundColor() -> MColor: ... method backgroundColorBottom (line 101) | def backgroundColorBottom() -> MColor: ... method backgroundColorTop (line 103) | def backgroundColorTop() -> MColor: ... method beginGL (line 104) | def beginGL(self) -> Self: ... method beginProjMatrixOverride (line 105) | def beginProjMatrixOverride(self, projectionMatrix: MMatrix) -> Self: ... method beginSelect (line 106) | def beginSelect(self, buffer: bytearray = ..., size: int = ...) -> Sel... method beginXorDrawing (line 108) | def beginXorDrawing(self, drawOrthographic: bool = ..., disableDepthTe... method beginXorDrawing (line 110) | def beginXorDrawing(self) -> Any: ... # type: ignore[overload-cannot-... method colorAtIndex (line 111) | def colorAtIndex(self, index: int, table: int = ...) -> MColor: ... method colorMask (line 112) | def colorMask(self, *args: Incomplete, **kwargs: Incomplete) -> Incomp... method disallowPolygonOffset (line 113) | def disallowPolygonOffset(self) -> bool: ... method displayStatus (line 115) | def displayStatus(path: MDagPath) -> int: ... method displayStyle (line 116) | def displayStyle(self) -> int: ... method drawText (line 117) | def drawText(self, text: str, position: MPoint, textPosition: int = ..... method endGL (line 118) | def endGL(self) -> Self: ... method endProjMatrixOverride (line 119) | def endProjMatrixOverride(self) -> Self: ... method endSelect (line 120) | def endSelect(self) -> int: ... method endXorDrawing (line 122) | def endXorDrawing(self) -> Self: ... method endXorDrawing (line 124) | def endXorDrawing(self) -> Any: ... # type: ignore[overload-cannot-ma... method get3dView (line 126) | def get3dView(index: int) -> M3dView: ... method getCamera (line 127) | def getCamera(self) -> MDagPath: ... method getColorIndexAndTable (line 128) | def getColorIndexAndTable(self, *args: Incomplete, **kwargs: Incomplet... method getLightCount (line 129) | def getLightCount(self, visible: bool = ...) -> int: ... method getLightIndex (line 130) | def getLightIndex(self, lightNumber: int) -> int: ... method getLightPath (line 131) | def getLightPath(self, lightNumber: int) -> MDagPath: ... method getLightingMode (line 132) | def getLightingMode(self) -> int: ... method getM3dViewFromModelEditor (line 134) | def getM3dViewFromModelEditor(name: str) -> M3dView: ... method getM3dViewFromModelPanel (line 136) | def getM3dViewFromModelPanel(name: str) -> M3dView: ... method getRendererName (line 137) | def getRendererName(self) -> int: ... method getScreenPosition (line 138) | def getScreenPosition(self, *args: Incomplete, **kwargs: Incomplete) -... method hiliteColor (line 140) | def hiliteColor() -> MColor: ... method initNames (line 141) | def initNames(self) -> Self: ... method isBackgroundGradient (line 143) | def isBackgroundGradient() -> bool: ... method isLightVisible (line 144) | def isLightVisible(self, lightNumber: int) -> bool: ... method isShadeActiveOnly (line 145) | def isShadeActiveOnly(self) -> bool: ... method isVisible (line 146) | def isVisible(self) -> bool: ... method leadColor (line 148) | def leadColor() -> MColor: ... method liveColor (line 150) | def liveColor() -> MColor: ... method loadName (line 151) | def loadName(self, int: int) -> Self: ... method modelViewMatrix (line 152) | def modelViewMatrix(self) -> MMatrix: ... method multipleDrawEnabled (line 153) | def multipleDrawEnabled(self) -> bool: ... method multipleDrawPassCount (line 154) | def multipleDrawPassCount(self) -> int: ... method numActiveColors (line 155) | def numActiveColors(self) -> int: ... method numDormantColors (line 156) | def numDormantColors(self) -> int: ... method numUserDefinedColors (line 157) | def numUserDefinedColors(self) -> int: ... method numberOf3dViews (line 159) | def numberOf3dViews() -> int: ... method objectDisplay (line 160) | def objectDisplay(self) -> int: ... method objectListFilterName (line 161) | def objectListFilterName(self) -> str: ... method playblastPortHeight (line 162) | def playblastPortHeight(self) -> int: ... method playblastPortWidth (line 163) | def playblastPortWidth(self) -> int: ... method pluginObjectDisplay (line 164) | def pluginObjectDisplay(self, pluginDisplayFilter: str) -> bool: ... method popName (line 165) | def popName(self) -> Self: ... method popViewport (line 166) | def popViewport(self) -> Self: ... method portHeight (line 167) | def portHeight(self) -> int: ... method portWidth (line 168) | def portWidth(self) -> int: ... method projectionMatrix (line 169) | def projectionMatrix(self) -> MMatrix: ... method pushName (line 170) | def pushName(self, int: int) -> Self: ... method pushViewport (line 171) | def pushViewport(self, x: Incomplete, y: Incomplete, width: int, heigh... method readBufferTo2dTexture (line 172) | def readBufferTo2dTexture(self, x: int, y: int, width: int, height: in... method readColorBuffer (line 173) | def readColorBuffer(self, image: MImage, readRGBA: bool = ...) -> Self... method readDepthMap (line 174) | def readDepthMap(self, x: int, y: int, width: int, heigth: Incomplete,... method referenceLayerColor (line 176) | def referenceLayerColor() -> MColor: ... method refresh (line 177) | def refresh(self, all: bool = ..., force: bool = ..., offscreen: bool ... method renderOverrideName (line 178) | def renderOverrideName(self) -> str: ... method rendererString (line 179) | def rendererString(self) -> str: ... method scheduleRefresh (line 180) | def scheduleRefresh(self) -> Self: ... method scheduleRefreshAllViews (line 182) | def scheduleRefreshAllViews() -> None: ... method selectMode (line 183) | def selectMode(self) -> bool: ... method setCamera (line 184) | def setCamera(self, camera: MDagPath) -> Self: ... method setColorMask (line 185) | def setColorMask(self, r: bool, g: bool, b: bool, a: bool) -> Self: ... method setDisallowPolygonOffset (line 186) | def setDisallowPolygonOffset(self, v: bool) -> Self: ... method setDisplayStyle (line 187) | def setDisplayStyle(self, style: int, activeOnly: Incomplete = ...) ->... method setDrawColor (line 189) | def setDrawColor(self, index: int, table: int = ...) -> Self: ... method setDrawColor (line 191) | def setDrawColor(self, color: MColor) -> Self: ... method setDrawColorAndAlpha (line 192) | def setDrawColorAndAlpha(self, color: MColor) -> Self: ... method setMultipleDrawEnable (line 193) | def setMultipleDrawEnable(self, enable: bool) -> Self: ... method setMultipleDrawPassCount (line 194) | def setMultipleDrawPassCount(self, count: int) -> Self: ... method setObjectDisplay (line 195) | def setObjectDisplay(self, displayMask: int) -> Self: ... method setObjectListFilterName (line 196) | def setObjectListFilterName(self, name: str) -> Self: ... method setPluginObjectDisplay (line 197) | def setPluginObjectDisplay(self, pluginDisplayFilter: str, on: bool) -... method setRenderOverrideName (line 198) | def setRenderOverrideName(self, name: str) -> Self: ... method setShowObjectFilterNameInHUD (line 199) | def setShowObjectFilterNameInHUD(self, show: bool) -> Self: ... method setShowViewSelectedChildren (line 200) | def setShowViewSelectedChildren(self, show: bool) -> Self: ... method setUserDefinedColor (line 201) | def setUserDefinedColor(self, index: int, color: MColor) -> Self: ... method setViewSelectedPrefix (line 202) | def setViewSelectedPrefix(self, prefix: str) -> Self: ... method showObjectFilterNameInHUD (line 203) | def showObjectFilterNameInHUD(self) -> bool: ... method showViewSelectedChildren (line 204) | def showViewSelectedChildren(self) -> bool: ... method templateColor (line 206) | def templateColor() -> MColor: ... method textureMode (line 207) | def textureMode(self) -> bool: ... method twoSidedLighting (line 208) | def twoSidedLighting(self) -> bool: ... method updateViewingParameters (line 209) | def updateViewingParameters(self) -> Self: ... method userDefinedColorIndex (line 210) | def userDefinedColorIndex(self, index: int) -> int: ... method usingDefaultMaterial (line 211) | def usingDefaultMaterial(self) -> bool: ... method usingMipmappedTextures (line 212) | def usingMipmappedTextures(self) -> bool: ... method viewSelectedPrefix (line 213) | def viewSelectedPrefix(self) -> str: ... method viewToObjectSpace (line 214) | def viewToObjectSpace(self, x_pos: int, y_pos: int, localMatrixInverse... method viewToWorld (line 216) | def viewToWorld(self, x_pos: int, y_pos: int, worldPt: MPoint, worldVe... method viewToWorld (line 218) | def viewToWorld(self, x_pos: int, y_pos: int, nearClipPt: MPoint, farC... method viewport (line 219) | def viewport(self, *args: Incomplete, **kwargs: Incomplete) -> Incompl... method widget (line 220) | def widget(self) -> float: ... method window (line 221) | def window(self) -> float: ... method wireframeOnShaded (line 222) | def wireframeOnShaded(self) -> bool: ... method wireframeOnlyInShadedMode (line 223) | def wireframeOnlyInShadedMode(self) -> bool: ... method worldToView (line 224) | def worldToView(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method writeColorBuffer (line 225) | def writeColorBuffer(self, image: MImage, x: X = ..., y: Y = ...) -> S... method xray (line 226) | def xray(self) -> bool: ... method xrayJoints (line 227) | def xrayJoints(self) -> bool: ... method viewIsFiltered (line 228) | def viewIsFiltered(self) -> bool: ... method filteredObjectList (line 229) | def filteredObjectList(self) -> MSelectionList: ... class MCursor (line 231) | class MCursor: method __lt__ (line 238) | def __lt__(self, value: Incomplete) -> bool: ... method __le__ (line 239) | def __le__(self, value: Incomplete) -> bool: ... method __eq__ (line 240) | def __eq__(self, value: Incomplete) -> bool: ... method __ne__ (line 241) | def __ne__(self, value: Incomplete) -> bool: ... method __gt__ (line 242) | def __gt__(self, value: Incomplete) -> bool: ... method __ge__ (line 243) | def __ge__(self, value: Incomplete) -> bool: ... method __init__ (line 244) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MDrawData (line 246) | class MDrawData: method __init__ (line 247) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method geometry (line 248) | def geometry(self) -> float: ... class MDrawInfo (line 250) | class MDrawInfo: method __init__ (line 251) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method canDrawComponent (line 252) | def canDrawComponent(self, isDisplayOn: bool, compMask: Incomplete) ->... method completelyInside (line 253) | def completelyInside(self) -> bool: ... method displayStatus (line 255) | def displayStatus(self) -> int: ... method displayStatus (line 257) | def displayStatus(self) -> Any: ... # type: ignore[overload-cannot-ma... method displayStyle (line 259) | def displayStyle(self) -> int: ... method displayStyle (line 261) | def displayStyle(self) -> Any: ... # type: ignore[overload-cannot-match] method getPrototype (line 262) | def getPrototype(self, drawHandler: MPxSurfaceShapeUI) -> MDrawRequest... method inSelect (line 263) | def inSelect(self) -> bool: ... method inUserInteraction (line 264) | def inUserInteraction(self) -> bool: ... method inclusiveMatrix (line 265) | def inclusiveMatrix(self) -> MMatrix: ... method multiPath (line 266) | def multiPath(self) -> MDagPath: ... method objectDisplayStatus (line 267) | def objectDisplayStatus(self, displayObj: int) -> bool: ... method pluginObjectDisplayStatus (line 268) | def pluginObjectDisplayStatus(self, pluginDisplayFilter: str) -> bool:... method projectionMatrix (line 269) | def projectionMatrix(self) -> MMatrix: ... method setMultiPath (line 270) | def setMultiPath(self, path: MDagPath) -> Self: ... method userChangingViewContext (line 271) | def userChangingViewContext(self) -> bool: ... method view (line 272) | def view(self) -> M3dView: ... class MDrawRequest (line 274) | class MDrawRequest: method __init__ (line 289) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method planeColor (line 290) | def planeColor(self, table: int) -> int: ... method setPlaneColor (line 291) | def setPlaneColor(self, value: int, table: int) -> Self: ... class MEvent (line 293) | class MEvent: method __init__ (line 300) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getWindowPosition (line 301) | def getWindowPosition(self, *args: Incomplete, **kwargs: Incomplete) -... method mouseButton (line 302) | def mouseButton(self) -> mouseButtonType: ... # type: ignore[name-def... method isModifierKeyRelease (line 303) | def isModifierKeyRelease(self) -> bool: ... method isModifierNone (line 304) | def isModifierNone(self) -> bool: ... method isModifierShift (line 305) | def isModifierShift(self) -> bool: ... method isModifierControl (line 306) | def isModifierControl(self) -> bool: ... method isModifierLeftMouseButton (line 307) | def isModifierLeftMouseButton(self) -> bool: ... method isModifierMiddleMouseButton (line 308) | def isModifierMiddleMouseButton(self) -> bool: ... class MFnManip3D (line 310) | class MFnManip3D(maya.api.OpenMaya.MFnTransform): method __init__ (line 314) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method deleteManipulator (line 316) | def deleteManipulator(manip: MObject) -> None: ... method globalSize (line 318) | def globalSize() -> float: ... method handleSize (line 320) | def handleSize() -> float: ... method lineSize (line 322) | def lineSize() -> float: ... method rotateXYZValue (line 323) | def rotateXYZValue(self, valIndex: int) -> MEulerRotation: ... method drawPlaneHandles (line 325) | def drawPlaneHandles() -> bool: ... method setGlobalSize (line 327) | def setGlobalSize(float: Incomplete) -> None: ... method setHandleSize (line 329) | def setHandleSize(float: Incomplete) -> None: ... method setLineSize (line 331) | def setLineSize(float: Incomplete) -> None: ... method setDrawPlaneHandles (line 333) | def setDrawPlaneHandles(bool: Incomplete) -> None: ... class MFnCircleSweepManip (line 335) | class MFnCircleSweepManip(MFnManip3D): method __init__ (line 338) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method angleIndex (line 339) | def angleIndex(self) -> int: ... method axisIndex (line 340) | def axisIndex(self) -> int: ... method centerIndex (line 341) | def centerIndex(self) -> int: ... method connectToAnglePlug (line 342) | def connectToAnglePlug(self, anglePlug: MPlug) -> Self: ... method create (line 343) | def create(self, manipName: str = ..., angleName: str = ...) -> MObjec... method endCircleIndex (line 344) | def endCircleIndex(self) -> int: ... method setAngle (line 345) | def setAngle(self, angle: MAngle) -> Self: ... method setCenterPoint (line 346) | def setCenterPoint(self, centerPoint: MPoint) -> Self: ... method setDrawAsArc (line 347) | def setDrawAsArc(self, state: bool) -> Self: ... method setNormal (line 348) | def setNormal(self, normal: MVector) -> Self: ... method setRadius (line 349) | def setRadius(self, radius: float) -> Self: ... method startCircleIndex (line 350) | def startCircleIndex(self) -> int: ... class MFnCurveSegmentManip (line 352) | class MFnCurveSegmentManip(MFnManip3D): method __init__ (line 355) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToCurvePlug (line 356) | def connectToCurvePlug(self, curvePlug: MPlug) -> Self: ... method connectToEndParamPlug (line 357) | def connectToEndParamPlug(self, endParamPlug: MPlug) -> Self: ... method connectToStartParamPlug (line 358) | def connectToStartParamPlug(self, startParamPlug: MPlug) -> Self: ... method create (line 359) | def create(self, manipName: str = ..., startParamName: str = ..., endP... method curveIndex (line 360) | def curveIndex(self) -> int: ... method endParamIndex (line 361) | def endParamIndex(self) -> int: ... method startParamIndex (line 362) | def startParamIndex(self) -> int: ... class MFnDirectionManip (line 364) | class MFnDirectionManip(MFnManip3D): method __init__ (line 365) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToDirectionPlug (line 366) | def connectToDirectionPlug(self, directionPlug: MPlug) -> Self: ... method create (line 367) | def create(self, manipName: str = ..., directionName: str = ...) -> MO... method directionIndex (line 368) | def directionIndex(self) -> int: ... method endPointIndex (line 369) | def endPointIndex(self) -> int: ... method setDirection (line 370) | def setDirection(self, direction: MVector) -> Self: ... method setDrawStart (line 371) | def setDrawStart(self, bool: Incomplete) -> Self: ... method setNormalizeDirection (line 372) | def setNormalizeDirection(self, bool: Incomplete) -> Self: ... method setStartPoint (line 373) | def setStartPoint(self, startPoint: MPoint) -> Self: ... method startPointIndex (line 374) | def startPointIndex(self) -> int: ... class MFnDiscManip (line 376) | class MFnDiscManip(MFnManip3D): method __init__ (line 377) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method angleIndex (line 378) | def angleIndex(self) -> int: ... method axisIndex (line 379) | def axisIndex(self) -> int: ... method centerIndex (line 380) | def centerIndex(self) -> int: ... method connectToAnglePlug (line 381) | def connectToAnglePlug(self, directionPlug: Incomplete) -> Self: ... method create (line 382) | def create(self, manipName: str = ..., angleName: str = ...) -> MObjec... method setAngle (line 383) | def setAngle(self, angle: MAngle) -> Self: ... method setCenterPoint (line 384) | def setCenterPoint(self, centerPoint: MPoint) -> Self: ... method setNormal (line 385) | def setNormal(self, normal: MVector) -> Self: ... method setRadius (line 386) | def setRadius(self, radius: float) -> Self: ... class MFnDistanceManip (line 388) | class MFnDistanceManip(MFnManip3D): method __init__ (line 392) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToDistancePlug (line 393) | def connectToDistancePlug(self, directionPlug: Incomplete) -> Self: ... method create (line 394) | def create(self, manipName: str = ..., distanceName: str = ...) -> MOb... method currentPointIndex (line 395) | def currentPointIndex(self) -> int: ... method directionIndex (line 396) | def directionIndex(self) -> int: ... method distanceIndex (line 397) | def distanceIndex(self) -> int: ... method setDirection (line 398) | def setDirection(self, direction: MVector) -> Self: ... method setStartPoint (line 399) | def setStartPoint(self, startPoint: MPoint) -> Self: ... method startPointIndex (line 400) | def startPointIndex(self) -> int: ... class MFnFreePointTriadManip (line 402) | class MFnFreePointTriadManip(MFnManip3D): method __init__ (line 410) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToPointPlug (line 411) | def connectToPointPlug(self, pointPlug: MPlug) -> Self: ... method create (line 412) | def create(self, manipName: str = ..., pointName: str = ...) -> MObjec... method pointIndex (line 413) | def pointIndex(self) -> int: ... method setDirection (line 414) | def setDirection(self, direction: MVector) -> Self: ... method setDrawArrowHead (line 415) | def setDrawArrowHead(self, state: bool) -> Self: ... method setGlobalTriadPlane (line 416) | def setGlobalTriadPlane(self, whichPlane: int) -> Self: ... method setPoint (line 417) | def setPoint(self, pointValue: MPoint) -> Self: ... class MFnPointOnCurveManip (line 419) | class MFnPointOnCurveManip(MFnManip3D): method __init__ (line 422) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToCurvePlug (line 423) | def connectToCurvePlug(self, curvePlug: MPlug) -> Self: ... method connectToParamPlug (line 424) | def connectToParamPlug(self, paramPlug: MPlug) -> Self: ... method create (line 425) | def create(self, manipName: str = ..., paramName: str = ...) -> MObjec... method curveIndex (line 426) | def curveIndex(self) -> int: ... method curvePoint (line 427) | def curvePoint(self) -> MPoint: ... method paramIndex (line 428) | def paramIndex(self) -> int: ... class MFnPointOnSurfaceManip (line 430) | class MFnPointOnSurfaceManip(MFnManip3D): method __init__ (line 434) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToParamPlug (line 435) | def connectToParamPlug(self, paramPlug: MPlug) -> Self: ... method connectToSurfacePlug (line 436) | def connectToSurfacePlug(self, surfacePlug: MPlug) -> Self: ... method create (line 437) | def create(self, manipName: str = ..., paramName: str = ...) -> MObjec... method paramIndex (line 438) | def paramIndex(self) -> int: ... method setDrawArrows (line 439) | def setDrawArrows(self, state: bool) -> Self: ... method surfaceIndex (line 440) | def surfaceIndex(self) -> int: ... class MFnRotateManip (line 442) | class MFnRotateManip(MFnManip3D): method __init__ (line 449) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToRotationCenterPlug (line 450) | def connectToRotationCenterPlug(self, rotationCenterPlug: MPlug) -> Se... method connectToRotationPlug (line 451) | def connectToRotationPlug(self, rotationPlug: MPlug) -> Self: ... method create (line 452) | def create(self, manipName: str = ..., rotationName: str = ...) -> MOb... method displayWithNode (line 453) | def displayWithNode(self, node: MObject) -> Self: ... method rotationCenterIndex (line 454) | def rotationCenterIndex(self) -> int: ... method rotationIndex (line 455) | def rotationIndex(self) -> int: ... method setInitialRotation (line 456) | def setInitialRotation(self, rotation: MEulerRotation) -> Self: ... method setRotationCenter (line 457) | def setRotationCenter(self, rotationCenter: MPoint) -> Self: ... class MFnScaleManip (line 459) | class MFnScaleManip(MFnManip3D): method __init__ (line 466) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToScaleCenterPlug (line 467) | def connectToScaleCenterPlug(self, scaleCenterPlug: MPlug) -> Self: ... method connectToScalePlug (line 468) | def connectToScalePlug(self, scalePlug: MPlug) -> Self: ... method create (line 469) | def create(self, manipName: str = ..., scaleName: str = ...) -> MObjec... method displayWithNode (line 470) | def displayWithNode(self, node: MObject) -> Self: ... method scaleCenterIndex (line 471) | def scaleCenterIndex(self) -> int: ... method scaleIndex (line 472) | def scaleIndex(self) -> int: ... method setInitialScale (line 473) | def setInitialScale(self, scale: MVector) -> Self: ... class MFnStateManip (line 475) | class MFnStateManip(MFnManip3D): method __init__ (line 477) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToStatePlug (line 478) | def connectToStatePlug(self, statePlug: MPlug) -> Self: ... method create (line 479) | def create(self, manipName: str = ..., stateName: str = ...) -> MObjec... method positionIndex (line 480) | def positionIndex(self) -> int: ... method setInitialState (line 481) | def setInitialState(self, initialState: int) -> Self: ... method state (line 482) | def state(self) -> int: ... method stateIndex (line 483) | def stateIndex(self) -> int: ... class MFnToggleManip (line 485) | class MFnToggleManip(MFnManip3D): method __init__ (line 490) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method connectToTogglePlug (line 491) | def connectToTogglePlug(self, togglePlug: MPlug) -> Self: ... method create (line 492) | def create(self, manipName: str = ..., toggleName: str = ...) -> MObje... method directionIndex (line 493) | def directionIndex(self) -> int: ... method lengthIndex (line 494) | def lengthIndex(self) -> int: ... method startPointIndex (line 495) | def startPointIndex(self) -> int: ... method toggleIndex (line 496) | def toggleIndex(self) -> int: ... class MHWShaderSwatchGenerator (line 498) | class MHWShaderSwatchGenerator(maya.api.OpenMayaRender.MSwatchRenderBase): method __init__ (line 499) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method createObj (line 501) | def createObj(obj: MObject, renderObj: int, res: Incomplete) -> MSwatc... method doIteration (line 502) | def doIteration(self) -> bool: ... method getSwatchBackgroundColor (line 504) | def getSwatchBackgroundColor() -> MColor: ... method initialize (line 506) | def initialize() -> str: ... class MManipData (line 508) | class MManipData: method __init__ (line 509) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method asBool (line 510) | def asBool(self) -> bool: ... method asDouble (line 511) | def asDouble(self) -> float: ... method asFloat (line 512) | def asFloat(self) -> float: ... method asLong (line 513) | def asLong(self) -> int: ... method asMObject (line 514) | def asMObject(self) -> int: ... method asShort (line 515) | def asShort(self) -> int: ... method asUnsigned (line 516) | def asUnsigned(self) -> int: ... method isSimple (line 517) | def isSimple(self) -> bool: ... class MMaterial (line 519) | class MMaterial: method __init__ (line 536) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method applyTexture (line 537) | def applyTexture(self, view: M3dView, data: MDrawData) -> Self: ... method defaultMaterial (line 539) | def defaultMaterial() -> MMaterial: ... method evaluateDiffuse (line 540) | def evaluateDiffuse(self) -> Self: ... method evaluateEmission (line 541) | def evaluateEmission(self) -> Self: ... method evaluateMaterial (line 542) | def evaluateMaterial(self, view: M3dView, path: MDagPath) -> Self: ... method evaluateShininess (line 543) | def evaluateShininess(self) -> Self: ... method evaluateSpecular (line 544) | def evaluateSpecular(self) -> Self: ... method evaluateTexture (line 545) | def evaluateTexture(self, data: MDrawData) -> Self: ... method getDiffuse (line 546) | def getDiffuse(self) -> MColor: ... method getEmission (line 547) | def getEmission(self) -> MColor: ... method getHasTransparency (line 548) | def getHasTransparency(self) -> bool: ... method getHwShaderNode (line 549) | def getHwShaderNode(self) -> MPxHwShaderNode: ... method getShininess (line 550) | def getShininess(self) -> float: ... method getSpecular (line 551) | def getSpecular(self) -> MColor: ... method getTextureTransformation (line 552) | def getTextureTransformation(self, data: MDrawData, texXform: MMatrix)... method materialIsTextured (line 553) | def materialIsTextured(self) -> bool: ... method setMaterial (line 554) | def setMaterial(self, path: MDagPath, hasTransparency: bool) -> Self: ... method shadingEngine (line 555) | def shadingEngine(self) -> MObject: ... method textureImage (line 556) | def textureImage(self, image: MImage, color: tuple[1, 1, 1, 1], chan: ... class MMaterialArray (line 558) | class MMaterialArray: method __init__ (line 560) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method __len__ (line 561) | def __len__(self) -> int: ... method __getitem__ (line 562) | def __getitem__(self, key: Incomplete) -> Incomplete: ... method append (line 563) | def append(self, element: MMaterial) -> Self: ... method clear (line 564) | def clear(self) -> Self: ... method copy (line 565) | def copy(self, source: MMaterialArray) -> Self: ... method insert (line 566) | def insert(self, element: MMaterial, index: int) -> Self: ... method remove (line 567) | def remove(self, index: int) -> Self: ... method set (line 568) | def set(self, element: MMaterial, index: int) -> Self: ... method setLength (line 569) | def setLength(self, length: int) -> Self: ... class MPaintMessage (line 571) | class MPaintMessage(maya.api.OpenMaya.MMessage): method addVertexColorCallback (line 573) | def addVertexColorCallback(function: Incomplete, clientData: Incomplet... class MPanelCanvas (line 575) | class MPanelCanvas: method __init__ (line 587) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addPrimitive (line 588) | def addPrimitive(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method createFloatVertexBuffer (line 589) | def createFloatVertexBuffer(self, tVals: Incomplete, yVals: Incomplete... method createTimeVertexBuffer (line 590) | def createTimeVertexBuffer(self, tVals: Incomplete, yVals: Incomplete,... method createPrimitive (line 591) | def createPrimitive(self, primType: Incomplete, bufferId: Incomplete, ... method destroyVertexBuffer (line 592) | def destroyVertexBuffer(self, bufferId: Incomplete) -> Any: ... method destroyPrimitive (line 593) | def destroyPrimitive(self, primitiveId: Incomplete) -> Any: ... method isAutoRefresh (line 594) | def isAutoRefresh(self) -> bool: ... method isLayerVisible (line 595) | def isLayerVisible(self, int: int) -> bool: ... method registerDrawUICallback (line 596) | def registerDrawUICallback(self, layer: Incomplete, cb: Incomplete, cl... method removePrimitive (line 597) | def removePrimitive(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setLayerVisible (line 598) | def setLayerVisible(self, int: int, bool: Incomplete) -> Any: ... method refresh (line 599) | def refresh(self) -> Any: ... method setAutoRefresh (line 600) | def setAutoRefresh(self) -> Any: ... method supportsUIDrawing (line 601) | def supportsUIDrawing(self) -> bool: ... method isValid (line 602) | def isValid(self) -> bool: ... method unregisterDrawUICallback (line 603) | def unregisterDrawUICallback(self, callbackId: Incomplete) -> Any: ... class MDrawProperties (line 605) | class MDrawProperties: method __init__ (line 610) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPanelCanvasInfo (line 612) | class MPanelCanvasInfo: method __init__ (line 613) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method getViewportBounds (line 614) | def getViewportBounds(self) -> Any: ... method getViewportSize (line 615) | def getViewportSize(self) -> Any: ... method name (line 616) | def name(self) -> str: ... method setViewportBounds (line 617) | def setViewportBounds(self, bounds: Incomplete) -> Any: ... method supportsUIDrawing (line 618) | def supportsUIDrawing(self) -> bool: ... class RenderParameters (line 620) | class RenderParameters: method __init__ (line 624) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPxHardwareShader (line 626) | class MPxHardwareShader(maya.api.OpenMaya.MPxNode): method __init__ (line 634) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method findResource (line 636) | def findResource(name: Incomplete, shaderPath: Incomplete) -> str: ... method getAvailableImages (line 637) | def getAvailableImages(self, *args: Incomplete, **kwargs: Incomplete) ... method getHardwareShader (line 639) | def getHardwareShader(object: MObject) -> TODO: ... # type: ignore[na... method profile (line 640) | def profile(self) -> MRenderProfile: ... method renderImage (line 641) | def renderImage(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method renderSwatchImage (line 642) | def renderSwatchImage(self, image: MImage) -> Self: ... method setUniformParameters (line 643) | def setUniformParameters(self, parameters: MUniformParameterList, rema... method setVaryingParameters (line 644) | def setVaryingParameters(self, parameters: MUniformParameterList, rema... method transparencyOptions (line 645) | def transparencyOptions(self) -> int: ... class ShaderContext (line 647) | class ShaderContext: method __init__ (line 650) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPxHwShaderNode (line 652) | class MPxHwShaderNode(maya.api.OpenMaya.MPxNode): method __init__ (line 684) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method bind (line 685) | def bind(self, request: MDrawRequest, view: M3dView) -> Self: ... method colorsPerVertex (line 687) | def colorsPerVertex(self) -> int: ... method colorsPerVertex (line 689) | def colorsPerVertex(self) -> Any: ... # type: ignore[overload-cannot-... method currentPath (line 690) | def currentPath(self) -> MDagPath: ... method currentShadingEngine (line 691) | def currentShadingEngine(self) -> MObject: ... method dirtyMask (line 692) | def dirtyMask(self) -> int: ... method geometry (line 693) | def geometry(self, request: MDrawRequest, view: M3dView, prim: int, wr... method getAvailableImages (line 694) | def getAvailableImages(self, *args: Incomplete, **kwargs: Incomplete) ... method getColorSetNames (line 695) | def getColorSetNames(self, names: Incomplete) -> int: ... method getHwShaderNode (line 697) | def getHwShaderNode(object: MObject) -> MPxHwShaderNode: ... method getTexCoordSetNames (line 698) | def getTexCoordSetNames(self, names: Incomplete) -> int: ... method glBind (line 699) | def glBind(self, shapePath: MDagPath) -> Self: ... method glGeometry (line 700) | def glGeometry(self, shapePath: MDagPath, prim: Incomplete, writable: ... method glUnbind (line 701) | def glUnbind(self, shapePath: MDagPath) -> Self: ... method hasTransparency (line 702) | def hasTransparency(self) -> bool: ... method invertTexCoords (line 703) | def invertTexCoords(self) -> bool: ... method normalsPerVertex (line 705) | def normalsPerVertex(self) -> int: ... method normalsPerVertex (line 707) | def normalsPerVertex(self) -> Any: ... # type: ignore[overload-cannot... method provideVertexIDs (line 708) | def provideVertexIDs(self) -> bool: ... method renderImage (line 709) | def renderImage(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method renderSwatchImage (line 710) | def renderSwatchImage(self, *args: Incomplete, **kwargs: Incomplete) -... method supportsBatching (line 711) | def supportsBatching(self) -> bool: ... method texCoordsPerVertex (line 713) | def texCoordsPerVertex(self) -> int: ... method texCoordsPerVertex (line 715) | def texCoordsPerVertex(self) -> Any: ... # type: ignore[overload-cann... method transparencyOptions (line 716) | def transparencyOptions(self) -> int: ... method unbind (line 717) | def unbind(self, request: MDrawRequest, view: M3dView) -> Self: ... class MPxLocatorNode (line 719) | class MPxLocatorNode(maya.api.OpenMaya.MPxNode): method __init__ (line 766) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method boundingBox (line 767) | def boundingBox(self) -> MBoundingBox: ... method closestPoint (line 768) | def closestPoint(self, rayPoint: MPoint, rayDir: MVector) -> MPoint: ... method color (line 769) | def color(self, status: Incomplete) -> int: ... method colorRGB (line 770) | def colorRGB(self, status: Incomplete) -> MColor: ... method draw (line 771) | def draw(self, view: M3dView, path: Incomplete, style: int, status: in... method drawLast (line 772) | def drawLast(self) -> bool: ... method excludeAsLocator (line 773) | def excludeAsLocator(self) -> bool: ... method isBounded (line 774) | def isBounded(self) -> bool: ... method isTransparent (line 775) | def isTransparent(self) -> bool: ... method useClosestPointForSelection (line 776) | def useClosestPointForSelection(self) -> bool: ... method getShapeSelectionMask (line 777) | def getShapeSelectionMask(self) -> MSelectionMask: ... class MPxManipContainer (line 779) | class MPxManipContainer(maya.api.OpenMaya.MPxNode): method __init__ (line 780) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addCircleSweepManip (line 781) | def addCircleSweepManip(self, manipName: str, angleName: str) -> MDagP... method addCurveSegmentManip (line 782) | def addCurveSegmentManip(self, manipName: str, startParamName: str, en... method addDirectionManip (line 783) | def addDirectionManip(self, manipName: str, directionName: str) -> MDa... method addDiscManip (line 784) | def addDiscManip(self, manipName: str, angleName: str) -> MDagPath: ... method addDistanceManip (line 785) | def addDistanceManip(self, manipName: str, distanceName: str) -> MDagP... method addFreePointTriadManip (line 786) | def addFreePointTriadManip(self, manipName: str, pointName: str) -> MD... method addManipToPlugConversion (line 788) | def addManipToPlugConversion(self, plug: MPlug) -> int: ... method addManipToPlugConversion (line 790) | def addManipToPlugConversion(self) -> Any: ... method addManipToPlugConversion (line 792) | def addManipToPlugConversion(self) -> Any: ... # type: ignore[overloa... method addMPxManipulatorNode (line 793) | def addMPxManipulatorNode(self, manipTypeName: str, manipName: str, pr... method addPlugToInViewEditor (line 794) | def addPlugToInViewEditor(self, plug: MPlug) -> Any: ... method addPlugToManipConversion (line 795) | def addPlugToManipConversion(self, manipIndex: int) -> Any: ... method addPointOnCurveManip (line 796) | def addPointOnCurveManip(self, manipName: str, paramName: str) -> MDag... method addPointOnSurfaceManip (line 797) | def addPointOnSurfaceManip(self, manipName: str, paramName: str) -> MD... method addRotateManip (line 798) | def addRotateManip(self, manipName: str, rotationName: str) -> MDagPat... method addScaleManip (line 799) | def addScaleManip(self, manipName: str, scaleName: str) -> MDagPath: ... method addStateManip (line 800) | def addStateManip(self, manipName: str, stateName: str) -> MDagPath: ... method addToggleManip (line 801) | def addToggleManip(self, manipName: str, toggleName: str) -> MDagPath:... method addToManipConnectTable (line 803) | def addToManipConnectTable(typeId: Incomplete) -> Any: ... method connectToDependNode (line 804) | def connectToDependNode(self, node: MObject) -> None: ... method createChildren (line 805) | def createChildren(self) -> None: ... method doPress (line 806) | def doPress(self) -> None: ... method doDrag (line 807) | def doDrag(self) -> None: ... method doRelease (line 808) | def doRelease(self) -> None: ... method draw (line 809) | def draw(self, view: M3dView, path: MDagPath, style: M3dView.DisplaySt... method drawUI (line 810) | def drawUI(self, drawManager: MUIDrawManager, frameContext: MFrameCont... method finishAddingManips (line 811) | def finishAddingManips(self) -> Any: ... method getConverterManipDoubleValue (line 812) | def getConverterManipDoubleValue(self) -> float: ... method getConverterManipMEulerRotationValue (line 813) | def getConverterManipMEulerRotationValue(self) -> MEulereRotation: ...... method getConverterManipMMatrixValue (line 814) | def getConverterManipMMatrixValue(self) -> MMatrix: ... method getConverterManipMPointValue (line 815) | def getConverterManipMPointValue(self) -> MPoint: ... method getConverterManipMTransformationMatrixValue (line 816) | def getConverterManipMTransformationMatrixValue(self) -> MTransformati... method getConverterManipMVectorValue (line 817) | def getConverterManipMVectorValue(self) -> MVector: ... method getConverterManipUIntValue (line 818) | def getConverterManipUIntValue(self) -> int: ... method getConverterManipValues (line 819) | def getConverterManipValues(self, *args: Incomplete, **kwargs: Incompl... method getConverterPlugDoubleValue (line 820) | def getConverterPlugDoubleValue(self) -> float: ... method getConverterPlugMEulerRotationValue (line 821) | def getConverterPlugMEulerRotationValue(self) -> MEulerRotation: ... method getConverterPlugMMatrixValue (line 822) | def getConverterPlugMMatrixValue(self) -> MMatrix: ... method getConverterPlugMPointValue (line 823) | def getConverterPlugMPointValue(self) -> MPoint: ... method getConverterPlugMVectorValue (line 824) | def getConverterPlugMVectorValue(self) -> MVector: ... method getConverterPlugValues (line 825) | def getConverterPlugValues(self, *args: Incomplete, **kwargs: Incomple... method initialize (line 827) | def initialize() -> None: ... method isManipActive (line 828) | def isManipActive(self, manipName: Incomplete, stateName: Incomplete) ... method manipToPlugConversion (line 829) | def manipToPlugConversion(self, manipIndex: int) -> MManipData: ... method newManipulator (line 831) | def newManipulator(*args: Incomplete, **kwargs: Incomplete) -> Incompl... method plugToManipConversion (line 832) | def plugToManipConversion(self, manipIndex: Incomplete) -> MManipData:... method preDrawUI (line 833) | def preDrawUI(self, view: M3dView) -> None: ... method removeFromManipConnectTable (line 835) | def removeFromManipConnectTable(typeId: Incomplete) -> Any: ... class MPxSurfaceShapeUI (line 837) | class MPxSurfaceShapeUI: method __init__ (line 842) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method canDrawUV (line 843) | def canDrawUV(self) -> bool: ... method drawUV (line 844) | def drawUV(self, view: M3dView, info: MTextureEditorDrawInfo) -> Self:... method material (line 845) | def material(self, path: Incomplete) -> MMaterial: ... method materials (line 846) | def materials(self, path: MDagPath, componentFilter: Incomplete, mater... method select (line 847) | def select(self, selectInfo: MSelectInfo, selectionList: MSelectionLis... method selectUV (line 848) | def selectUV(self, view: M3dView, selType: int, xmin: int, ymin: int, ... method snap (line 849) | def snap(self, snapInfo: MSelectInfo) -> bool: ... method surfaceShape (line 850) | def surfaceShape(self) -> MPxSurfaceShape: ... method surfaceShapeUI (line 852) | def surfaceShapeUI(path: MDagPath) -> MPxSurfaceShapeUI: ... class MPxDragAndDropBehavior (line 854) | class MPxDragAndDropBehavior: method __init__ (line 855) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method shouldBeUsedFor (line 856) | def shouldBeUsedFor(self, sourceNode: MObject, destinationNode: MObjec... method connectAttrToAttr (line 857) | def connectAttrToAttr(self, sourcePlug: MPlug, destinationPlug: MPlug,... method connectAttrToNode (line 858) | def connectAttrToNode(self, sourcePlug: MPlug, destinationNode: MObjec... method connectNodeToAttr (line 859) | def connectNodeToAttr(self, sourceNode: MObject, destinationPlug: MPlu... method connectNodeToNode (line 860) | def connectNodeToNode(self, sourceNode: MObject, destinationNode: MObj... class MPxContext (line 862) | class MPxContext: method __init__ (line 866) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method toolOnSetup (line 867) | def toolOnSetup(self, event: MEvent) -> None: ... method toolOffCleanup (line 868) | def toolOffCleanup(self) -> None: ... method doPress (line 869) | def doPress(self, event: MEvent, drawMgr: Incomplete, context: Incompl... method doRelease (line 870) | def doRelease(self, event: MEvent, drawMgr: Incomplete, context: Incom... method doDrag (line 871) | def doDrag(self, event: MEvent, drawMgr: Incomplete, context: Incomple... method doHold (line 872) | def doHold(self, event: MEvent, drawMgr: Incomplete, context: Incomple... method drawFeedback (line 873) | def drawFeedback(self, event: Incomplete, drawMgr: Incomplete, context... method doPtrMoved (line 874) | def doPtrMoved(self, event: MEvent, drawMgr: Incomplete, context: Inco... method doPressLegacy (line 875) | def doPressLegacy(self, event: MEvent) -> None: ... method doReleaseLegacy (line 876) | def doReleaseLegacy(self, event: MEvent) -> None: ... method doDragLegacy (line 877) | def doDragLegacy(self, event: MEvent) -> None: ... method doHoldLegacy (line 878) | def doHoldLegacy(self, event: MEvent) -> None: ... method doPtrMovedLegacy (line 879) | def doPtrMovedLegacy(self, event: MEvent) -> None: ... method doEnterRegion (line 880) | def doEnterRegion(self, event: MEvent) -> None: ... method doExitRegion (line 881) | def doExitRegion(self, event: MEvent) -> None: ... method helpStateHasChanged (line 882) | def helpStateHasChanged(self, event: MEvent) -> None: ... method deleteAction (line 883) | def deleteAction(self) -> None: ... method completeAction (line 884) | def completeAction(self) -> None: ... method addManipulator (line 885) | def addManipulator(self, manipulator: MObject) -> None: ... method deleteManipulators (line 886) | def deleteManipulators(self) -> None: ... method setImage (line 887) | def setImage(self, image: str, index: ImageIndex) -> Self: ... # type... method image (line 888) | def image(self, index: ImageIndex) -> str: ... # type: ignore[name-de... method abortAction (line 889) | def abortAction(self) -> None: ... method processNumericalInput (line 890) | def processNumericalInput(self, values: MDoubleArray, flags: MIntArray... method feedbackNumericalInput (line 891) | def feedbackNumericalInput(self) -> bool: ... method argTypeNumericalInput (line 892) | def argTypeNumericalInput(self, index: int) -> MSyntax.MArgType: ... method setHelpString (line 893) | def setHelpString(self, str: str) -> Self: ... method setTitleString (line 894) | def setTitleString(self, str: str) -> Self: ... method setCursor (line 895) | def setCursor(self, newCursor: MCursor) -> Self: ... method beginMarquee (line 896) | def beginMarquee(self, event: MEvent) -> Self: ... method dragMarquee (line 897) | def dragMarquee(self, event: MEvent) -> Self: ... method releaseMarquee (line 898) | def releaseMarquee(self, *args: Incomplete, **kwargs: Incomplete) -> I... method newToolCommand (line 899) | def newToolCommand(self) -> MPxToolCommand: ... method stringClassName (line 901) | def stringClassName(self) -> str: ... method stringClassName (line 903) | def stringClassName(self: Incomplete) -> Any: ... method inAlternateContext (line 904) | def inAlternateContext(self) -> bool: ... class MPxContextCommand (line 906) | class MPxContextCommand: method __init__ (line 907) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method doEditFlags (line 908) | def doEditFlags(self) -> None: ... method doQueryFlags (line 909) | def doQueryFlags(self) -> None: ... method makeObj (line 911) | def makeObj(self) -> MPxContext: ... method makeObj (line 913) | def makeObj(self: Incomplete) -> Any: ... method appendSyntax (line 914) | def appendSyntax(self) -> None: ... method parser (line 915) | def parser(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... method setResult (line 916) | def setResult(self) -> None: ... method syntax (line 917) | def syntax(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplet... class MSelectInfo (line 919) | class MSelectInfo(MDrawInfo): method __init__ (line 921) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addSelection (line 922) | def addSelection(self, item: MSelectionList, point: MPoint, list: s, p... method getAlignmentMatrix (line 923) | def getAlignmentMatrix(self) -> MMatrix: ... method getLocalRay (line 924) | def getLocalRay(self, *args: Incomplete, **kwargs: Incomplete) -> Inco... method isRay (line 925) | def isRay(self) -> bool: ... method selectClosest (line 926) | def selectClosest(self) -> bool: ... method selectForHilite (line 927) | def selectForHilite(self, mask: MSelectionMask) -> bool: ... method selectOnHilitedOnly (line 928) | def selectOnHilitedOnly(self) -> bool: ... method selectPath (line 929) | def selectPath(self) -> MDagPath: ... method selectRect (line 930) | def selectRect(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method selectable (line 931) | def selectable(self, mask: MSelectionMask) -> bool: ... method selectableComponent (line 932) | def selectableComponent(self, displayed: bool, mask: MSelectionMask) -... method setSnapPoint (line 934) | def setSnapPoint(self, point: MPoint) -> bool: ... method setSnapPoint (line 936) | def setSnapPoint(self) -> Any: ... method singleSelection (line 937) | def singleSelection(self) -> bool: ... method view (line 938) | def view(self) -> M3dView: ... class MPxSelectionContext (line 940) | class MPxSelectionContext(MPxContext): method __init__ (line 941) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method addManipulator (line 942) | def addManipulator(self, manipulator: MObject) -> None: ... method deleteManipulators (line 943) | def deleteManipulators(self) -> None: ... method setAllowPreSelectHilight (line 944) | def setAllowPreSelectHilight(self) -> None: ... method setAllowSoftSelect (line 945) | def setAllowSoftSelect(self) -> None: ... method setAllowSymmetry (line 946) | def setAllowSymmetry(self) -> None: ... method setAllowDoubleClickAction (line 947) | def setAllowDoubleClickAction(self) -> None: ... method setAllowPaintSelect (line 948) | def setAllowPaintSelect(self) -> None: ... method doDragLegacy (line 949) | def doDragLegacy(self, event: MEvent) -> None: ... method doHoldLegacy (line 950) | def doHoldLegacy(self, event: MEvent) -> None: ... method doPressLegacy (line 951) | def doPressLegacy(self, event: MEvent) -> None: ... method doReleaseLegacy (line 952) | def doReleaseLegacy(self, event: MEvent) -> None: ... method doDrag (line 953) | def doDrag(self, event: MEvent, drawManager: MUIDrawManager, frameCont... method doHold (line 954) | def doHold(self, event: MEvent, drawManager: MUIDrawManager, frameCont... method doPress (line 955) | def doPress(self, event: MEvent, drawManager: MUIDrawManager, frameCon... method doRelease (line 956) | def doRelease(self, event: MEvent, drawManager: MUIDrawManager, frameC... method helpStateHasChanged (line 957) | def helpStateHasChanged(self, event: MEvent) -> None: ... method abortAction (line 958) | def abortAction(self) -> None: ... method processNumericalInput (line 959) | def processNumericalInput(self, values: MDoubleArray, flags: MIntArray... method feedbackNumericalInput (line 960) | def feedbackNumericalInput(self) -> bool: ... method argTypeNumericalInput (line 961) | def argTypeNumericalInput(self, index: int) -> MSyntax.MArgType: ... method setImage (line 962) | def setImage(self, image: str, index: ImageIndex) -> Self: ... # type... method image (line 963) | def image(self, index: ImageIndex) -> str: ... # type: ignore[name-de... method isSelecting (line 964) | def isSelecting(self) -> bool: ... method startPoint (line 965) | def startPoint(self) -> MPoint: ... method lastDragPoint (line 966) | def lastDragPoint(self) -> MPoint: ... method newToolCommand (line 967) | def newToolCommand(self) -> MPxToolCommand: ... class MTextureEditorDrawInfo (line 969) | class MTextureEditorDrawInfo: method __init__ (line 979) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... class MPxToolCommand (line 981) | class MPxToolCommand(maya.api.OpenMaya.MPxCommand): method __init__ (line 982) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method doIt (line 983) | def doIt(self, *args: Incomplete, **kwargs: Incomplete) -> Incomplete:... method cancel (line 984) | def cancel(self) -> None: ... method finalize (line 985) | def finalize(self) -> None: ... method doFinalize (line 986) | def doFinalize(self) -> None: ... class MUiMessage (line 988) | class MUiMessage(maya.api.OpenMaya.MMessage): method addUiDeletedCallback (line 990) | def addUiDeletedCallback(uiName: str, function: Incomplete, clientData... method addCameraChangedCallback (line 992) | def addCameraChangedCallback(panelName: str, function: Incomplete, cli... method add3dViewDestroyMsgCallback (line 994) | def add3dViewDestroyMsgCallback(panelName: str, function: Incomplete, ... method add3dViewPreRenderMsgCallback (line 996) | def add3dViewPreRenderMsgCallback(panelName: str, function: Incomplete... method add3dViewPostRenderMsgCallback (line 998) | def add3dViewPostRenderMsgCallback(panelName: str, function: Incomplet... method add3dViewRendererChangedCallback (line 1000) | def add3dViewRendererChangedCallback(panelName: str, function: Incompl... method add3dViewRenderOverrideChangedCallback (line 1002) | def add3dViewRenderOverrideChangedCallback(panelName: str, function: I... class MTimeSliderCustomDrawManager (line 1004) | class MTimeSliderCustomDrawManager: method __init__ (line 1008) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... method registerCustomDrawOn (line 1009) | def registerCustomDrawOn(self, *args: Incomplete, **kwargs: Incomplete... method registerCustomDrawOutside (line 1010) | def registerCustomDrawOutside(self, *args: Incomplete, **kwargs: Incom... method setDrawPrimitives (line 1011) | def setDrawPrimitives(self, *args: Incomplete, **kwargs: Incomplete) -... method clearDrawPrimitives (line 1012) | def clearDrawPrimitives(self, *args: Incomplete, **kwargs: Incomplete)... method deregisterCustomDraw (line 1013) | def deregisterCustomDraw(self, *args: Incomplete, **kwargs: Incomplete... method setDrawVisible (line 1014) | def setDrawVisible(self, *args: Incomplete, **kwargs: Incomplete) -> I... method requestTimeSliderRedraw (line 1015) | def requestTimeSliderRedraw(self, *args: Incomplete, **kwargs: Incompl... method setBackgroundColor (line 1016) | def setBackgroundColor(self, *args: Incomplete, **kwargs: Incomplete) ... method setDrawLayer (line 1017) | def setDrawLayer(self, *args: Incomplete, **kwargs: Incomplete) -> Inc... method setDrawHeight (line 1018) | def setDrawHeight(self, *args: Incomplete, **kwargs: Incomplete) -> In... method setDrawLocation (line 1019) | def setDrawLocation(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setDrawPriority (line 1020) | def setDrawPriority(self, *args: Incomplete, **kwargs: Incomplete) -> ... method setStartPrimitiveEditFunction (line 1021) | def setStartPrimitiveEditFunction(self, *args: Incomplete, **kwargs: I... method setEditPrimitiveFunction (line 1022) | def setEditPrimitiveFunction(self, *args: Incomplete, **kwargs: Incomp... method setStopPrimitiveEditFunction (line 1023) | def setStopPrimitiveEditFunction(self, *args: Incomplete, **kwargs: In... method setTooltip (line 1024) | def setTooltip(self, *args: Incomplete, **kwargs: Incomplete) -> Incom... method setSetCopyPrimitivesFunction (line 1025) | def setSetCopyPrimitivesFunction(self, *args: Incomplete, **kwargs: In... class MTimeSliderDrawPrimitive (line 1027) | class MTimeSliderDrawPrimitive: method __init__ (line 1047) | def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ... FILE: maya/stubs/maya-stubs/api/_OpenMaya_py2.pyi function getStringResource (line 5) | def getStringResource(*args: Incomplete, **kwargs: Incomplete) -> Incomp... function registerStringResource (line 6) | def registerStringResource(*args: Incomplete, **kwargs: Incomplete) -> I... function registerStringResources (line 7) | def registerStringResources(*args: Incomplete, **kwargs: Incomplete) -> ... FILE: maya/stubs/maya-stubs/cmds/__init__.pyi function ATOMTemplate (line 3) | def ATOMTemplate(*args, **keywords): ... function AbortCurrentTool (line 4) | def AbortCurrentTool(*args, **keywords): ... function ActivateGlobalScreenSlider (line 5) | def ActivateGlobalScreenSlider(*args, **keywords): ... function ActivateGlobalScreenSliderModeMarkingMenu (line 6) | def ActivateGlobalScreenSliderModeMarkingMenu(*args, **keywords): ... function ActivateViewport20 (line 7) | def ActivateViewport20(*args, **keywords): ... function AddAnimationOffset (line 8) | def AddAnimationOffset(*args, **keywords): ... function AddAnimationOffsetOptions (line 9) | def AddAnimationOffsetOptions(*args, **keywords): ... function AddAttribute (line 10) | def AddAttribute(*args, **keywords): ... function AddBlendShape (line 11) | def AddBlendShape(*args, **keywords): ... function AddBlendShapeOptions (line 12) | def AddBlendShapeOptions(*args, **keywords): ... function AddBoatLocator (line 13) | def AddBoatLocator(*args, **keywords): ... function AddBoatLocatorOptions (line 14) | def AddBoatLocatorOptions(*args, **keywords): ... function AddCombinationTarget (line 15) | def AddCombinationTarget(*args, **keywords): ... function AddCombinationTargetOptions (line 16) | def AddCombinationTargetOptions(*args, **keywords): ... function AddCurvesToHairSystem (line 17) | def AddCurvesToHairSystem(*args, **keywords): ... function AddDivisions (line 18) | def AddDivisions(*args, **keywords): ... function AddDivisionsOptions (line 19) | def AddDivisionsOptions(*args, **keywords): ... function AddDynamicBuoy (line 20) | def AddDynamicBuoy(*args, **keywords): ... function AddDynamicBuoyOptions (line 21) | def AddDynamicBuoyOptions(*args, **keywords): ... function AddEdgeDivisions (line 22) | def AddEdgeDivisions(*args, **keywords): ... function AddEdgeDivisionsOptions (line 23) | def AddEdgeDivisionsOptions(*args, **keywords): ... function AddFaceDivisions (line 24) | def AddFaceDivisions(*args, **keywords): ... function AddFaceDivisionsOptions (line 25) | def AddFaceDivisionsOptions(*args, **keywords): ... function AddFloorContactPlane (line 26) | def AddFloorContactPlane(*args, **keywords): ... function AddHolder (line 27) | def AddHolder(*args, **keywords): ... function AddHolderOptions (line 28) | def AddHolderOptions(*args, **keywords): ... function AddInBetweenTargetShape (line 29) | def AddInBetweenTargetShape(*args, **keywords): ... function AddInBetweenTargetShapeOptions (line 30) | def AddInBetweenTargetShapeOptions(*args, **keywords): ... function AddInfluence (line 31) | def AddInfluence(*args, **keywords): ... function AddInfluenceOptions (line 32) | def AddInfluenceOptions(*args, **keywords): ... function AddKeyToolActivate (line 33) | def AddKeyToolActivate(*args, **keywords): ... function AddKeyToolDeactivate (line 34) | def AddKeyToolDeactivate(*args, **keywords): ... function AddKeysTool (line 35) | def AddKeysTool(*args, **keywords): ... function AddKeysToolOptions (line 36) | def AddKeysToolOptions(*args, **keywords): ... function AddOceanDynamicLocator (line 37) | def AddOceanDynamicLocator(*args, **keywords): ... function AddOceanDynamicLocatorOptions (line 38) | def AddOceanDynamicLocatorOptions(*args, **keywords): ... function AddOceanPreviewPlane (line 39) | def AddOceanPreviewPlane(*args, **keywords): ... function AddOceanSurfaceLocator (line 40) | def AddOceanSurfaceLocator(*args, **keywords): ... function AddPfxToHairSystem (line 41) | def AddPfxToHairSystem(*args, **keywords): ... function AddPointsTool (line 42) | def AddPointsTool(*args, **keywords): ... function AddPondBoatLocator (line 43) | def AddPondBoatLocator(*args, **keywords): ... function AddPondBoatLocatorOptions (line 44) | def AddPondBoatLocatorOptions(*args, **keywords): ... function AddPondDynamicBuoy (line 45) | def AddPondDynamicBuoy(*args, **keywords): ... function AddPondDynamicBuoyOptions (line 46) | def AddPondDynamicBuoyOptions(*args, **keywords): ... function AddPondDynamicLocator (line 47) | def AddPondDynamicLocator(*args, **keywords): ... function AddPondDynamicLocatorOptions (line 48) | def AddPondDynamicLocatorOptions(*args, **keywords): ... function AddPondSurfaceLocator (line 49) | def AddPondSurfaceLocator(*args, **keywords): ... function AddSelectionAsCombinationTarget (line 50) | def AddSelectionAsCombinationTarget(*args, **keywords): ... function AddSelectionAsCombinationTargetOptions (line 51) | def AddSelectionAsCombinationTargetOptions(*args, **keywords): ... function AddSelectionAsInBetweenTargetShape (line 52) | def AddSelectionAsInBetweenTargetShape(*args, **keywords): ... function AddSelectionAsInBetweenTargetShapeOptions (line 53) | def AddSelectionAsInBetweenTargetShapeOptions(*args, **keywords): ... function AddSelectionAsTargetShape (line 54) | def AddSelectionAsTargetShape(*args, **keywords): ... function AddSelectionAsTargetShapeOptions (line 55) | def AddSelectionAsTargetShapeOptions(*args, **keywords): ... function AddShrinkWrapSurfaces (line 56) | def AddShrinkWrapSurfaces(*args, **keywords): ... function AddTargetShape (line 57) | def AddTargetShape(*args, **keywords): ... function AddTargetShapeOptions (line 58) | def AddTargetShapeOptions(*args, **keywords): ... function AddTimeWarp (line 59) | def AddTimeWarp(*args, **keywords): ... function AddToCharacterSet (line 60) | def AddToCharacterSet(*args, **keywords): ... function AddToContainer (line 61) | def AddToContainer(*args, **keywords): ... function AddToContainerOptions (line 62) | def AddToContainerOptions(*args, **keywords): ... function AddToCurrentScene3dsMax (line 63) | def AddToCurrentScene3dsMax(*args, **keywords): ... function AddToCurrentSceneFlame (line 64) | def AddToCurrentSceneFlame(*args, **keywords): ... function AddToCurrentSceneFlare (line 65) | def AddToCurrentSceneFlare(*args, **keywords): ... function AddToCurrentSceneMotionBuilder (line 66) | def AddToCurrentSceneMotionBuilder(*args, **keywords): ... function AddToCurrentSceneMudbox (line 67) | def AddToCurrentSceneMudbox(*args, **keywords): ... function AddTweak (line 68) | def AddTweak(*args, **keywords): ... function AddWire (line 69) | def AddWire(*args, **keywords): ... function AddWireOptions (line 70) | def AddWireOptions(*args, **keywords): ... function AddWrapInfluence (line 71) | def AddWrapInfluence(*args, **keywords): ... function AffectSelectedObject (line 72) | def AffectSelectedObject(*args, **keywords): ... function AimConstraint (line 73) | def AimConstraint(*args, **keywords): ... function AimConstraintOptions (line 74) | def AimConstraintOptions(*args, **keywords): ... function Air (line 75) | def Air(*args, **keywords): ... function AirOptions (line 76) | def AirOptions(*args, **keywords): ... function AlignCameraToPolygon (line 77) | def AlignCameraToPolygon(*args, **keywords): ... function AlignCurve (line 78) | def AlignCurve(*args, **keywords): ... function AlignCurveOptions (line 79) | def AlignCurveOptions(*args, **keywords): ... function AlignObjects (line 80) | def AlignObjects(*args, **keywords): ... function AlignSurfaces (line 81) | def AlignSurfaces(*args, **keywords): ... function AlignSurfacesOptions (line 82) | def AlignSurfacesOptions(*args, **keywords): ... function AlignUV (line 83) | def AlignUV(*args, **keywords): ... function AlignUVOptions (line 84) | def AlignUVOptions(*args, **keywords): ... function AnimLayerRelationshipEditor (line 85) | def AnimLayerRelationshipEditor(*args, **keywords): ... function AnimationSnapshot (line 86) | def AnimationSnapshot(*args, **keywords): ... function AnimationSnapshotOptions (line 87) | def AnimationSnapshotOptions(*args, **keywords): ... function AnimationSweep (line 88) | def AnimationSweep(*args, **keywords): ... function AnimationSweepOptions (line 89) | def AnimationSweepOptions(*args, **keywords): ... function AnimationTurntable (line 90) | def AnimationTurntable(*args, **keywords): ... function AnimationTurntableOptions (line 91) | def AnimationTurntableOptions(*args, **keywords): ... function AppHome (line 92) | def AppHome(*args, **keywords): ... function AppendToHairCache (line 93) | def AppendToHairCache(*args, **keywords): ... function AppendToHairCacheOptions (line 94) | def AppendToHairCacheOptions(*args, **keywords): ... function AppendToPolygonTool (line 95) | def AppendToPolygonTool(*args, **keywords): ... function AppendToPolygonToolOptions (line 96) | def AppendToPolygonToolOptions(*args, **keywords): ... function ApplySettingsToLastStroke (line 97) | def ApplySettingsToLastStroke(*args, **keywords): ... function ApplySettingsToSelectedStroke (line 98) | def ApplySettingsToSelectedStroke(*args, **keywords): ... function ArcLengthTool (line 99) | def ArcLengthTool(*args, **keywords): ... function ArchiveScene (line 100) | def ArchiveScene(*args, **keywords): ... function ArchiveSceneOptions (line 101) | def ArchiveSceneOptions(*args, **keywords): ... function Art3dPaintTool (line 102) | def Art3dPaintTool(*args, **keywords): ... function Art3dPaintToolOptions (line 103) | def Art3dPaintToolOptions(*args, **keywords): ... function ArtPaintAttrTool (line 104) | def ArtPaintAttrTool(*args, **keywords): ... function ArtPaintAttrToolOptions (line 105) | def ArtPaintAttrToolOptions(*args, **keywords): ... function ArtPaintBlendShapeWeightsTool (line 106) | def ArtPaintBlendShapeWeightsTool(*args, **keywords): ... function ArtPaintBlendShapeWeightsToolOptions (line 107) | def ArtPaintBlendShapeWeightsToolOptions(*args, **keywords): ... function ArtPaintSelectTool (line 108) | def ArtPaintSelectTool(*args, **keywords): ... function ArtPaintSelectToolOptions (line 109) | def ArtPaintSelectToolOptions(*args, **keywords): ... function ArtPaintSkinWeightsTool (line 110) | def ArtPaintSkinWeightsTool(*args, **keywords): ... function ArtPaintSkinWeightsToolOptions (line 111) | def ArtPaintSkinWeightsToolOptions(*args, **keywords): ... function AssetEditor (line 112) | def AssetEditor(*args, **keywords): ... function AssignBrushToHairSystem (line 113) | def AssignBrushToHairSystem(*args, **keywords): ... function AssignBrushToPfxToon (line 114) | def AssignBrushToPfxToon(*args, **keywords): ... function AssignHairConstraint (line 115) | def AssignHairConstraint(*args, **keywords): ... function AssignHairConstraintOptions (line 116) | def AssignHairConstraintOptions(*args, **keywords): ... function AssignNewMaterial (line 117) | def AssignNewMaterial(*args, **keywords): ... function AssignNewPfxToon (line 118) | def AssignNewPfxToon(*args, **keywords): ... function AssignNewSet (line 119) | def AssignNewSet(*args, **keywords): ... function AssignOfflineFile (line 120) | def AssignOfflineFile(*args, **keywords): ... function AssignOfflineFileFromRefEd (line 121) | def AssignOfflineFileFromRefEd(*args, **keywords): ... function AssignOfflineFileFromRefEdOptions (line 122) | def AssignOfflineFileFromRefEdOptions(*args, **keywords): ... function AssignOfflineFileOptions (line 123) | def AssignOfflineFileOptions(*args, **keywords): ... function AssignTemplate (line 124) | def AssignTemplate(*args, **keywords): ... function AssignTemplateOptions (line 125) | def AssignTemplateOptions(*args, **keywords): ... function AssignToonShaderCircleHighlight (line 126) | def AssignToonShaderCircleHighlight(*args, **keywords): ... function AssignToonShaderDarkProfile (line 127) | def AssignToonShaderDarkProfile(*args, **keywords): ... function AssignToonShaderLightAngle (line 128) | def AssignToonShaderLightAngle(*args, **keywords): ... function AssignToonShaderRimLight (line 129) | def AssignToonShaderRimLight(*args, **keywords): ... function AssignToonShaderShadedBrightness (line 130) | def AssignToonShaderShadedBrightness(*args, **keywords): ... function AssignToonShaderSolid (line 131) | def AssignToonShaderSolid(*args, **keywords): ... function AssignToonShaderThreeToneBrightness (line 132) | def AssignToonShaderThreeToneBrightness(*args, **keywords): ... function AssumePreferredAngle (line 133) | def AssumePreferredAngle(*args, **keywords): ... function AssumePreferredAngleOptions (line 134) | def AssumePreferredAngleOptions(*args, **keywords): ... function AttachBrushToCurves (line 135) | def AttachBrushToCurves(*args, **keywords): ... function AttachCurve (line 136) | def AttachCurve(*args, **keywords): ... function AttachCurveOptions (line 137) | def AttachCurveOptions(*args, **keywords): ... function AttachSelectedAsSourceField (line 138) | def AttachSelectedAsSourceField(*args, **keywords): ... function AttachSubdivSurface (line 139) | def AttachSubdivSurface(*args, **keywords): ... function AttachSubdivSurfaceOptions (line 140) | def AttachSubdivSurfaceOptions(*args, **keywords): ... function AttachSurfaceWithoutMoving (line 141) | def AttachSurfaceWithoutMoving(*args, **keywords): ... function AttachSurfaces (line 142) | def AttachSurfaces(*args, **keywords): ... function AttachSurfacesOptions (line 143) | def AttachSurfacesOptions(*args, **keywords): ... function AttachToPath (line 144) | def AttachToPath(*args, **keywords): ... function AttachToPathOptions (line 145) | def AttachToPathOptions(*args, **keywords): ... function AttributeEditor (line 146) | def AttributeEditor(*args, **keywords): ... function AutoPaintMarkingMenu (line 147) | def AutoPaintMarkingMenu(*args, **keywords): ... function AutoPaintMarkingMenuPopDown (line 148) | def AutoPaintMarkingMenuPopDown(*args, **keywords): ... function AutoProjection (line 149) | def AutoProjection(*args, **keywords): ... function AutoProjectionOptions (line 150) | def AutoProjectionOptions(*args, **keywords): ... function AutoSeamUVs (line 151) | def AutoSeamUVs(*args, **keywords): ... function AutoSeamUVsOptions (line 152) | def AutoSeamUVsOptions(*args, **keywords): ... function AutobindContainer (line 153) | def AutobindContainer(*args, **keywords): ... function AutobindContainerOptions (line 154) | def AutobindContainerOptions(*args, **keywords): ... function AveragePolygonNormals (line 155) | def AveragePolygonNormals(*args, **keywords): ... function AveragePolygonNormalsOptions (line 156) | def AveragePolygonNormalsOptions(*args, **keywords): ... function AverageVertex (line 157) | def AverageVertex(*args, **keywords): ... function BakeAllNonDefHistory (line 158) | def BakeAllNonDefHistory(*args, **keywords): ... function BakeChannel (line 159) | def BakeChannel(*args, **keywords): ... function BakeChannelOptions (line 160) | def BakeChannelOptions(*args, **keywords): ... function BakeCustomPivot (line 161) | def BakeCustomPivot(*args, **keywords): ... function BakeCustomPivotOptions (line 162) | def BakeCustomPivotOptions(*args, **keywords): ... function BakeDeformerTool (line 163) | def BakeDeformerTool(*args, **keywords): ... function BakeNonDefHistory (line 164) | def BakeNonDefHistory(*args, **keywords): ... function BakeNonDefHistoryOptions (line 165) | def BakeNonDefHistoryOptions(*args, **keywords): ... function BakeSimulation (line 166) | def BakeSimulation(*args, **keywords): ... function BakeSimulationOptions (line 167) | def BakeSimulationOptions(*args, **keywords): ... function BakeSpringAnimation (line 168) | def BakeSpringAnimation(*args, **keywords): ... function BakeSpringAnimationOptions (line 169) | def BakeSpringAnimationOptions(*args, **keywords): ... function BakeSurfaceToTexture (line 170) | def BakeSurfaceToTexture(*args, **keywords): ... function BakeTopologyToTargets (line 171) | def BakeTopologyToTargets(*args, **keywords): ... function BaseLevelComponentDisplay (line 172) | def BaseLevelComponentDisplay(*args, **keywords): ... function BatchBake (line 173) | def BatchBake(*args, **keywords): ... function BatchBakeOptions (line 174) | def BatchBakeOptions(*args, **keywords): ... function BatchRender (line 175) | def BatchRender(*args, **keywords): ... function BatchRenderOptions (line 176) | def BatchRenderOptions(*args, **keywords): ... function Bend (line 177) | def Bend(*args, **keywords): ... function BendCurves (line 178) | def BendCurves(*args, **keywords): ... function BendCurvesOptions (line 179) | def BendCurvesOptions(*args, **keywords): ... function BendOptions (line 180) | def BendOptions(*args, **keywords): ... function BestPlaneTexturingTool (line 181) | def BestPlaneTexturingTool(*args, **keywords): ... function Bevel (line 182) | def Bevel(*args, **keywords): ... function BevelOptions (line 183) | def BevelOptions(*args, **keywords): ... function BevelPlus (line 184) | def BevelPlus(*args, **keywords): ... function BevelPlusOptions (line 185) | def BevelPlusOptions(*args, **keywords): ... function BevelPolygon (line 186) | def BevelPolygon(*args, **keywords): ... function BevelPolygonOptions (line 187) | def BevelPolygonOptions(*args, **keywords): ... function BezierCurveToNurbs (line 188) | def BezierCurveToNurbs(*args, **keywords): ... function BezierPresetBezier (line 189) | def BezierPresetBezier(*args, **keywords): ... function BezierPresetBezierCorner (line 190) | def BezierPresetBezierCorner(*args, **keywords): ... function BezierPresetCorner (line 191) | def BezierPresetCorner(*args, **keywords): ... function BezierSetAnchorBroken (line 192) | def BezierSetAnchorBroken(*args, **keywords): ... function BezierSetAnchorEven (line 193) | def BezierSetAnchorEven(*args, **keywords): ... function BezierSetAnchorSmooth (line 194) | def BezierSetAnchorSmooth(*args, **keywords): ... function BezierSetAnchorUneven (line 195) | def BezierSetAnchorUneven(*args, **keywords): ... function Birail1 (line 196) | def Birail1(*args, **keywords): ... function Birail1Options (line 197) | def Birail1Options(*args, **keywords): ... function Birail2 (line 198) | def Birail2(*args, **keywords): ... function Birail2Options (line 199) | def Birail2Options(*args, **keywords): ... function Birail3 (line 200) | def Birail3(*args, **keywords): ... function Birail3Options (line 201) | def Birail3Options(*args, **keywords): ... function BlendShapeEditor (line 202) | def BlendShapeEditor(*args, **keywords): ... function BlindDataEditor (line 203) | def BlindDataEditor(*args, **keywords): ... function BluePencilActivateBrushSize (line 204) | def BluePencilActivateBrushSize(*args, **keywords): ... function BluePencilActivateGhostNext (line 205) | def BluePencilActivateGhostNext(*args, **keywords): ... function BluePencilActivateGhostPrevious (line 206) | def BluePencilActivateGhostPrevious(*args, **keywords): ... function BluePencilActivateOpacity (line 207) | def BluePencilActivateOpacity(*args, **keywords): ... function BluePencilArrowTool (line 208) | def BluePencilArrowTool(*args, **keywords): ... function BluePencilBrushTool (line 209) | def BluePencilBrushTool(*args, **keywords): ... function BluePencilDeactivateBrushSize (line 210) | def BluePencilDeactivateBrushSize(*args, **keywords): ... function BluePencilDeactivateGhostNext (line 211) | def BluePencilDeactivateGhostNext(*args, **keywords): ... function BluePencilDeactivateGhostPrevious (line 212) | def BluePencilDeactivateGhostPrevious(*args, **keywords): ... function BluePencilDeactivateOpacity (line 213) | def BluePencilDeactivateOpacity(*args, **keywords): ... function BluePencilEllipseTool (line 214) | def BluePencilEllipseTool(*args, **keywords): ... function BluePencilEraserTool (line 215) | def BluePencilEraserTool(*args, **keywords): ... function BluePencilLineTool (line 216) | def BluePencilLineTool(*args, **keywords): ... function BluePencilPencilTool (line 217) | def BluePencilPencilTool(*args, **keywords): ... function BluePencilRectangleTool (line 218) | def BluePencilRectangleTool(*args, **keywords): ... function BluePencilRetimeBackward (line 219) | def BluePencilRetimeBackward(*args, **keywords): ... function BluePencilRetimeForward (line 220) | def BluePencilRetimeForward(*args, **keywords): ... function BluePencilTextTool (line 221) | def BluePencilTextTool(*args, **keywords): ... function BluePencilTransform (line 222) | def BluePencilTransform(*args, **keywords): ... function BookmarkManager (line 223) | def BookmarkManager(*args, **keywords): ... function BooleanAddSelectedObjects (line 224) | def BooleanAddSelectedObjects(*args, **keywords): ... function BothProxySubdivDisplay (line 225) | def BothProxySubdivDisplay(*args, **keywords): ... function Boundary (line 226) | def Boundary(*args, **keywords): ... function BoundaryOptions (line 227) | def BoundaryOptions(*args, **keywords): ... function BreakLightLinks (line 228) | def BreakLightLinks(*args, **keywords): ... function BreakRigidBodyConnection (line 229) | def BreakRigidBodyConnection(*args, **keywords): ... function BreakShadowLinks (line 230) | def BreakShadowLinks(*args, **keywords): ... function BreakStereoRigs (line 231) | def BreakStereoRigs(*args, **keywords): ... function BreakTangent (line 232) | def BreakTangent(*args, **keywords): ... function BreakTangents (line 233) | def BreakTangents(*args, **keywords): ... function BridgeEdge (line 234) | def BridgeEdge(*args, **keywords): ... function BridgeEdgeOptions (line 235) | def BridgeEdgeOptions(*args, **keywords): ... function BridgeOrFill (line 236) | def BridgeOrFill(*args, **keywords): ... function BrushAnimationMarkingMenu (line 237) | def BrushAnimationMarkingMenu(*args, **keywords): ... function BrushAnimationMarkingMenuPopDown (line 238) | def BrushAnimationMarkingMenuPopDown(*args, **keywords): ... function BrushPresetBlend (line 239) | def BrushPresetBlend(*args, **keywords): ... function BrushPresetBlendOff (line 240) | def BrushPresetBlendOff(*args, **keywords): ... function BrushPresetBlendShading (line 241) | def BrushPresetBlendShading(*args, **keywords): ... function BrushPresetBlendShadingOff (line 242) | def BrushPresetBlendShadingOff(*args, **keywords): ... function BrushPresetBlendShape (line 243) | def BrushPresetBlendShape(*args, **keywords): ... function BrushPresetBlendShapeOff (line 244) | def BrushPresetBlendShapeOff(*args, **keywords): ... function BrushPresetReplaceShading (line 245) | def BrushPresetReplaceShading(*args, **keywords): ... function BrushPresetReplaceShadingOff (line 246) | def BrushPresetReplaceShadingOff(*args, **keywords): ... function BufferCurveSnapshot (line 247) | def BufferCurveSnapshot(*args, **keywords): ... function CVCurveTool (line 248) | def CVCurveTool(*args, **keywords): ... function CVCurveToolOptions (line 249) | def CVCurveToolOptions(*args, **keywords): ... function CVHardness (line 250) | def CVHardness(*args, **keywords): ... function CVHardnessOptions (line 251) | def CVHardnessOptions(*args, **keywords): ... function CameraModeOrthographic (line 252) | def CameraModeOrthographic(*args, **keywords): ... function CameraModePerspective (line 253) | def CameraModePerspective(*args, **keywords): ... function CameraModeToggle (line 254) | def CameraModeToggle(*args, **keywords): ... function CameraRemoveAll (line 255) | def CameraRemoveAll(*args, **keywords): ... function CameraRemoveAllForAll (line 256) | def CameraRemoveAllForAll(*args, **keywords): ... function CameraRemoveFromExclusive (line 257) | def CameraRemoveFromExclusive(*args, **keywords): ... function CameraRemoveFromHidden (line 258) | def CameraRemoveFromHidden(*args, **keywords): ... function CameraSetEditor (line 259) | def CameraSetEditor(*args, **keywords): ... function CancelBatchRender (line 260) | def CancelBatchRender(*args, **keywords): ... function CenterPivot (line 261) | def CenterPivot(*args, **keywords): ... function CenterViewOfSelection (line 262) | def CenterViewOfSelection(*args, **keywords): ... function ChamferVertex (line 263) | def ChamferVertex(*args, **keywords): ... function ChamferVertexOptions (line 264) | def ChamferVertexOptions(*args, **keywords): ... function ChangeAnimPrefs (line 265) | def ChangeAnimPrefs(*args, **keywords): ... function ChangeColorPrefs (line 266) | def ChangeColorPrefs(*args, **keywords): ... function ChangeEdgeWidth (line 267) | def ChangeEdgeWidth(*args, **keywords): ... function ChangeNormalSize (line 268) | def ChangeNormalSize(*args, **keywords): ... function ChangeUIPrefs (line 269) | def ChangeUIPrefs(*args, **keywords): ... function ChangeUVSize (line 270) | def ChangeUVSize(*args, **keywords): ... function ChangeVertexSize (line 271) | def ChangeVertexSize(*args, **keywords): ... function ChannelControlEditor (line 272) | def ChannelControlEditor(*args, **keywords): ... function CharacterAnimationEditor (line 273) | def CharacterAnimationEditor(*args, **keywords): ... function CharacterMapper (line 274) | def CharacterMapper(*args, **keywords): ... function CharacterSetEditor (line 275) | def CharacterSetEditor(*args, **keywords): ... function CircularFillet (line 276) | def CircularFillet(*args, **keywords): ... function CircularFilletOptions (line 277) | def CircularFilletOptions(*args, **keywords): ... function CleanupPolygon (line 278) | def CleanupPolygon(*args, **keywords): ... function CleanupPolygonOptions (line 279) | def CleanupPolygonOptions(*args, **keywords): ... function ClearBluePencilFrame (line 280) | def ClearBluePencilFrame(*args, **keywords): ... function ClearCurrentCharacterList (line 281) | def ClearCurrentCharacterList(*args, **keywords): ... function ClearCurrentContainer (line 282) | def ClearCurrentContainer(*args, **keywords): ... function ClearInitialState (line 283) | def ClearInitialState(*args, **keywords): ... function ClearPaintEffectsView (line 284) | def ClearPaintEffectsView(*args, **keywords): ... function CloseFrontWindow (line 285) | def CloseFrontWindow(*args, **keywords): ... function ClosestPointOn (line 286) | def ClosestPointOn(*args, **keywords): ... function ClosestPointOnOptions (line 287) | def ClosestPointOnOptions(*args, **keywords): ... function ClusterCurve (line 288) | def ClusterCurve(*args, **keywords): ... function CoarseLevelComponentDisplay (line 289) | def CoarseLevelComponentDisplay(*args, **keywords): ... function CoarsenSelectedComponents (line 290) | def CoarsenSelectedComponents(*args, **keywords): ... function CoarserSubdivLevel (line 291) | def CoarserSubdivLevel(*args, **keywords): ... function CollapseSubdivSurfaceHierarchy (line 292) | def CollapseSubdivSurfaceHierarchy(*args, **keywords): ... function CollapseSubdivSurfaceHierarchyOptions (line 293) | def CollapseSubdivSurfaceHierarchyOptions(*args, **keywords): ... function ColorPreferencesWindow (line 294) | def ColorPreferencesWindow(*args, **keywords): ... function CombinePolygons (line 295) | def CombinePolygons(*args, **keywords): ... function CombinePolygonsOptions (line 296) | def CombinePolygonsOptions(*args, **keywords): ... function CommandShell (line 297) | def CommandShell(*args, **keywords): ... function CommandWindow (line 298) | def CommandWindow(*args, **keywords): ... function CompleteCurrentTool (line 299) | def CompleteCurrentTool(*args, **keywords): ... function ComponentEditor (line 300) | def ComponentEditor(*args, **keywords): ... function ConformPolygon (line 301) | def ConformPolygon(*args, **keywords): ... function ConformPolygonNormals (line 302) | def ConformPolygonNormals(*args, **keywords): ... function ConformPolygonOptions (line 303) | def ConformPolygonOptions(*args, **keywords): ... function ConnectComponents (line 304) | def ConnectComponents(*args, **keywords): ... function ConnectComponentsOptions (line 305) | def ConnectComponentsOptions(*args, **keywords): ... function ConnectJoint (line 306) | def ConnectJoint(*args, **keywords): ... function ConnectJointOptions (line 307) | def ConnectJointOptions(*args, **keywords): ... function ConnectNodeToIKFK (line 308) | def ConnectNodeToIKFK(*args, **keywords): ... function ConnectToTime (line 309) | def ConnectToTime(*args, **keywords): ... function ConnectionEditor (line 310) | def ConnectionEditor(*args, **keywords): ... function ContentBrowserLayout (line 311) | def ContentBrowserLayout(*args, **keywords): ... function ContentBrowserWindow (line 312) | def ContentBrowserWindow(*args, **keywords): ... function ConvertHairSelectionToConstraints (line 313) | def ConvertHairSelectionToConstraints(*args, **keywords): ... function ConvertHairSelectionToCurrentPositions (line 314) | def ConvertHairSelectionToCurrentPositions(*args, **keywords): ... function ConvertHairSelectionToFollicles (line 315) | def ConvertHairSelectionToFollicles(*args, **keywords): ... function ConvertHairSelectionToHairSystems (line 316) | def ConvertHairSelectionToHairSystems(*args, **keywords): ... function ConvertHairSelectionToRestCurveEndCVs (line 317) | def ConvertHairSelectionToRestCurveEndCVs(*args, **keywords): ... function ConvertHairSelectionToRestCurves (line 318) | def ConvertHairSelectionToRestCurves(*args, **keywords): ... function ConvertHairSelectionToStartAndRestCurveEndCVs (line 319) | def ConvertHairSelectionToStartAndRestCurveEndCVs(*args, **keywords): ... function ConvertHairSelectionToStartCurveEndCVs (line 320) | def ConvertHairSelectionToStartCurveEndCVs(*args, **keywords): ... function ConvertHairSelectionToStartCurves (line 321) | def ConvertHairSelectionToStartCurves(*args, **keywords): ... function ConvertInstanceToObject (line 322) | def ConvertInstanceToObject(*args, **keywords): ... function ConvertPaintEffectsToPoly (line 323) | def ConvertPaintEffectsToPoly(*args, **keywords): ... function ConvertPaintEffectsToPolyOptions (line 324) | def ConvertPaintEffectsToPolyOptions(*args, **keywords): ... function ConvertSelectionToContainedEdges (line 325) | def ConvertSelectionToContainedEdges(*args, **keywords): ... function ConvertSelectionToContainedFaces (line 326) | def ConvertSelectionToContainedFaces(*args, **keywords): ... function ConvertSelectionToEdgePerimeter (line 327) | def ConvertSelectionToEdgePerimeter(*args, **keywords): ... function ConvertSelectionToEdges (line 328) | def ConvertSelectionToEdges(*args, **keywords): ... function ConvertSelectionToFacePerimeter (line 329) | def ConvertSelectionToFacePerimeter(*args, **keywords): ... function ConvertSelectionToFaces (line 330) | def ConvertSelectionToFaces(*args, **keywords): ... function ConvertSelectionToShell (line 331) | def ConvertSelectionToShell(*args, **keywords): ... function ConvertSelectionToShellBorder (line 332) | def ConvertSelectionToShellBorder(*args, **keywords): ... function ConvertSelectionToUVBorder (line 333) | def ConvertSelectionToUVBorder(*args, **keywords): ... function ConvertSelectionToUVEdgeLoop (line 334) | def ConvertSelectionToUVEdgeLoop(*args, **keywords): ... function ConvertSelectionToUVPerimeter (line 335) | def ConvertSelectionToUVPerimeter(*args, **keywords): ... function ConvertSelectionToUVShell (line 336) | def ConvertSelectionToUVShell(*args, **keywords): ... function ConvertSelectionToUVShellBorder (line 337) | def ConvertSelectionToUVShellBorder(*args, **keywords): ... function ConvertSelectionToUVs (line 338) | def ConvertSelectionToUVs(*args, **keywords): ... function ConvertSelectionToVertexFaces (line 339) | def ConvertSelectionToVertexFaces(*args, **keywords): ... function ConvertSelectionToVertexPerimeter (line 340) | def ConvertSelectionToVertexPerimeter(*args, **keywords): ... function ConvertSelectionToVertices (line 341) | def ConvertSelectionToVertices(*args, **keywords): ... function ConvertToBreakdown (line 342) | def ConvertToBreakdown(*args, **keywords): ... function ConvertToFrozen (line 343) | def ConvertToFrozen(*args, **keywords): ... function ConvertToKey (line 344) | def ConvertToKey(*args, **keywords): ... function ConvertTypeCapsToCurves (line 345) | def ConvertTypeCapsToCurves(*args, **keywords): ... function CopyBluePencilFrame (line 346) | def CopyBluePencilFrame(*args, **keywords): ... function CopyFlexor (line 347) | def CopyFlexor(*args, **keywords): ... function CopyKeys (line 348) | def CopyKeys(*args, **keywords): ... function CopyKeysOptions (line 349) | def CopyKeysOptions(*args, **keywords): ... function CopyMeshAttributes (line 350) | def CopyMeshAttributes(*args, **keywords): ... function CopySelected (line 351) | def CopySelected(*args, **keywords): ... function CopySkinWeights (line 352) | def CopySkinWeights(*args, **keywords): ... function CopySkinWeightsOptions (line 353) | def CopySkinWeightsOptions(*args, **keywords): ... function CopyUVs (line 354) | def CopyUVs(*args, **keywords): ... function CopyUVsToUVSet (line 355) | def CopyUVsToUVSet(*args, **keywords): ... function CopyUVsToUVSetOptions (line 356) | def CopyUVsToUVSetOptions(*args, **keywords): ... function CopyVertexSkinWeights (line 357) | def CopyVertexSkinWeights(*args, **keywords): ... function CopyVertexWeights (line 358) | def CopyVertexWeights(*args, **keywords): ... function CopyVertexWeightsOptions (line 359) | def CopyVertexWeightsOptions(*args, **keywords): ... function CreaseProxyEdgeTool (line 360) | def CreaseProxyEdgeTool(*args, **keywords): ... function CreaseProxyEdgeToolOptions (line 361) | def CreaseProxyEdgeToolOptions(*args, **keywords): ... function Create2DContainer (line 362) | def Create2DContainer(*args, **keywords): ... function Create2DContainerEmitter (line 363) | def Create2DContainerEmitter(*args, **keywords): ... function Create2DContainerEmitterOptions (line 364) | def Create2DContainerEmitterOptions(*args, **keywords): ... function Create2DContainerOptions (line 365) | def Create2DContainerOptions(*args, **keywords): ... function Create3DContainer (line 366) | def Create3DContainer(*args, **keywords): ... function Create3DContainerEmitter (line 367) | def Create3DContainerEmitter(*args, **keywords): ... function Create3DContainerEmitterOptions (line 368) | def Create3DContainerEmitterOptions(*args, **keywords): ... function Create3DContainerOptions (line 369) | def Create3DContainerOptions(*args, **keywords): ... function CreateActiveRigidBody (line 370) | def CreateActiveRigidBody(*args, **keywords): ... function CreateActiveRigidBodyOptions (line 371) | def CreateActiveRigidBodyOptions(*args, **keywords): ... function CreateAmbientLight (line 372) | def CreateAmbientLight(*args, **keywords): ... function CreateAmbientLightOptions (line 373) | def CreateAmbientLightOptions(*args, **keywords): ... function CreateAnnotateNode (line 374) | def CreateAnnotateNode(*args, **keywords): ... function CreateAreaLight (line 375) | def CreateAreaLight(*args, **keywords): ... function CreateAreaLightOptions (line 376) | def CreateAreaLightOptions(*args, **keywords): ... function CreateBarrierConstraint (line 377) | def CreateBarrierConstraint(*args, **keywords): ... function CreateBarrierConstraintOptions (line 378) | def CreateBarrierConstraintOptions(*args, **keywords): ... function CreateBezierCurveTool (line 379) | def CreateBezierCurveTool(*args, **keywords): ... function CreateBezierCurveToolOptions (line 380) | def CreateBezierCurveToolOptions(*args, **keywords): ... function CreateBindingSet (line 381) | def CreateBindingSet(*args, **keywords): ... function CreateBlendShape (line 382) | def CreateBlendShape(*args, **keywords): ... function CreateBlendShapeOptions (line 383) | def CreateBlendShapeOptions(*args, **keywords): ... function CreateCameraAim (line 384) | def CreateCameraAim(*args, **keywords): ... function CreateCameraAimOptions (line 385) | def CreateCameraAimOptions(*args, **keywords): ... function CreateCameraAimUp (line 386) | def CreateCameraAimUp(*args, **keywords): ... function CreateCameraAimUpOptions (line 387) | def CreateCameraAimUpOptions(*args, **keywords): ... function CreateCameraFromView (line 388) | def CreateCameraFromView(*args, **keywords): ... function CreateCameraOnly (line 389) | def CreateCameraOnly(*args, **keywords): ... function CreateCameraOnlyOptions (line 390) | def CreateCameraOnlyOptions(*args, **keywords): ... function CreateCharacter (line 391) | def CreateCharacter(*args, **keywords): ... function CreateCharacterOptions (line 392) | def CreateCharacterOptions(*args, **keywords): ... function CreateClip (line 393) | def CreateClip(*args, **keywords): ... function CreateClipOptions (line 394) | def CreateClipOptions(*args, **keywords): ... function CreateCluster (line 395) | def CreateCluster(*args, **keywords): ... function CreateClusterOptions (line 396) | def CreateClusterOptions(*args, **keywords): ... function CreateConstraint (line 397) | def CreateConstraint(*args, **keywords): ... function CreateConstraintClip (line 398) | def CreateConstraintClip(*args, **keywords): ... function CreateConstraintClipOptions (line 399) | def CreateConstraintClipOptions(*args, **keywords): ... function CreateConstraintOptions (line 400) | def CreateConstraintOptions(*args, **keywords): ... function CreateConstructionPlane (line 401) | def CreateConstructionPlane(*args, **keywords): ... function CreateConstructionPlaneOptions (line 402) | def CreateConstructionPlaneOptions(*args, **keywords): ... function CreateContainer (line 403) | def CreateContainer(*args, **keywords): ... function CreateContainerOptions (line 404) | def CreateContainerOptions(*args, **keywords): ... function CreateControlRig (line 405) | def CreateControlRig(*args, **keywords): ... function CreateCreaseSet (line 406) | def CreateCreaseSet(*args, **keywords): ... function CreateCreaseSetOptions (line 407) | def CreateCreaseSetOptions(*args, **keywords): ... function CreateCurveField (line 408) | def CreateCurveField(*args, **keywords): ... function CreateCurveFromPoly (line 409) | def CreateCurveFromPoly(*args, **keywords): ... function CreateCurveFromPolyOptions (line 410) | def CreateCurveFromPolyOptions(*args, **keywords): ... function CreateCustomSet (line 411) | def CreateCustomSet(*args, **keywords): ... function CreateDagContainer (line 412) | def CreateDagContainer(*args, **keywords): ... function CreateDagContainerOptions (line 413) | def CreateDagContainerOptions(*args, **keywords): ... function CreateDirectionalLight (line 414) | def CreateDirectionalLight(*args, **keywords): ... function CreateDirectionalLightOptions (line 415) | def CreateDirectionalLightOptions(*args, **keywords): ... function CreateDiskCache (line 416) | def CreateDiskCache(*args, **keywords): ... function CreateDiskCacheOptions (line 417) | def CreateDiskCacheOptions(*args, **keywords): ... function CreateEmitter (line 418) | def CreateEmitter(*args, **keywords): ... function CreateEmitterOptions (line 419) | def CreateEmitterOptions(*args, **keywords): ... function CreateEmptyGroup (line 420) | def CreateEmptyGroup(*args, **keywords): ... function CreateEmptySet (line 421) | def CreateEmptySet(*args, **keywords): ... function CreateEmptySetOptions (line 422) | def CreateEmptySetOptions(*args, **keywords): ... function CreateEmptyUVSet (line 423) | def CreateEmptyUVSet(*args, **keywords): ... function CreateEmptyUVSetOptions (line 424) | def CreateEmptyUVSetOptions(*args, **keywords): ... function CreateExpressionClip (line 425) | def CreateExpressionClip(*args, **keywords): ... function CreateExpressionClipOptions (line 426) | def CreateExpressionClipOptions(*args, **keywords): ... function CreateFlexorWindow (line 427) | def CreateFlexorWindow(*args, **keywords): ... function CreateFluidCache (line 428) | def CreateFluidCache(*args, **keywords): ... function CreateFluidCacheOptions (line 429) | def CreateFluidCacheOptions(*args, **keywords): ... function CreateHair (line 430) | def CreateHair(*args, **keywords): ... function CreateHairCache (line 431) | def CreateHairCache(*args, **keywords): ... function CreateHairCacheOptions (line 432) | def CreateHairCacheOptions(*args, **keywords): ... function CreateHairOptions (line 433) | def CreateHairOptions(*args, **keywords): ... function CreateHingeConstraint (line 434) | def CreateHingeConstraint(*args, **keywords): ... function CreateHingeConstraintOptions (line 435) | def CreateHingeConstraintOptions(*args, **keywords): ... function CreateIllustratorCurves (line 436) | def CreateIllustratorCurves(*args, **keywords): ... function CreateIllustratorCurvesOptions (line 437) | def CreateIllustratorCurvesOptions(*args, **keywords): ... function CreateImagePlane (line 438) | def CreateImagePlane(*args, **keywords): ... function CreateImagePlaneOptions (line 439) | def CreateImagePlaneOptions(*args, **keywords): ... function CreateJiggleDeformer (line 440) | def CreateJiggleDeformer(*args, **keywords): ... function CreateJiggleOptions (line 441) | def CreateJiggleOptions(*args, **keywords): ... function CreateLattice (line 442) | def CreateLattice(*args, **keywords): ... function CreateLatticeOptions (line 443) | def CreateLatticeOptions(*args, **keywords): ... function CreateLineModifier (line 444) | def CreateLineModifier(*args, **keywords): ... function CreateLocator (line 445) | def CreateLocator(*args, **keywords): ... function CreateMotionTrail (line 446) | def CreateMotionTrail(*args, **keywords): ... function CreateMotionTrailOptions (line 447) | def CreateMotionTrailOptions(*args, **keywords): ... function CreateMultiStereoRig (line 448) | def CreateMultiStereoRig(*args, **keywords): ... function CreateNSoftBody (line 449) | def CreateNSoftBody(*args, **keywords): ... function CreateNSoftBodyOptions (line 450) | def CreateNSoftBodyOptions(*args, **keywords): ... function CreateNURBSCircle (line 451) | def CreateNURBSCircle(*args, **keywords): ... function CreateNURBSCircleOptions (line 452) | def CreateNURBSCircleOptions(*args, **keywords): ... function CreateNURBSCone (line 453) | def CreateNURBSCone(*args, **keywords): ... function CreateNURBSConeOptions (line 454) | def CreateNURBSConeOptions(*args, **keywords): ... function CreateNURBSCube (line 455) | def CreateNURBSCube(*args, **keywords): ... function CreateNURBSCubeOptions (line 456) | def CreateNURBSCubeOptions(*args, **keywords): ... function CreateNURBSCylinder (line 457) | def CreateNURBSCylinder(*args, **keywords): ... function CreateNURBSCylinderOptions (line 458) | def CreateNURBSCylinderOptions(*args, **keywords): ... function CreateNURBSPlane (line 459) | def CreateNURBSPlane(*args, **keywords): ... function CreateNURBSPlaneOptions (line 460) | def CreateNURBSPlaneOptions(*args, **keywords): ... function CreateNURBSSphere (line 461) | def CreateNURBSSphere(*args, **keywords): ... function CreateNURBSSphereOptions (line 462) | def CreateNURBSSphereOptions(*args, **keywords): ... function CreateNURBSSquare (line 463) | def CreateNURBSSquare(*args, **keywords): ... function CreateNURBSSquareOptions (line 464) | def CreateNURBSSquareOptions(*args, **keywords): ... function CreateNURBSTorus (line 465) | def CreateNURBSTorus(*args, **keywords): ... function CreateNURBSTorusOptions (line 466) | def CreateNURBSTorusOptions(*args, **keywords): ... function CreateNailConstraint (line 467) | def CreateNailConstraint(*args, **keywords): ... function CreateNailConstraintOptions (line 468) | def CreateNailConstraintOptions(*args, **keywords): ... function CreateNodeWindow (line 469) | def CreateNodeWindow(*args, **keywords): ... function CreateOcean (line 470) | def CreateOcean(*args, **keywords): ... function CreateOceanOptions (line 471) | def CreateOceanOptions(*args, **keywords): ... function CreateOceanWake (line 472) | def CreateOceanWake(*args, **keywords): ... function CreateOceanWakeOptions (line 473) | def CreateOceanWakeOptions(*args, **keywords): ... function CreatePSDTextureItem (line 474) | def CreatePSDTextureItem(*args, **keywords): ... function CreateParticleDiskCache (line 475) | def CreateParticleDiskCache(*args, **keywords): ... function CreateParticleDiskCacheOptions (line 476) | def CreateParticleDiskCacheOptions(*args, **keywords): ... function CreatePartition (line 477) | def CreatePartition(*args, **keywords): ... function CreatePartitionOptions (line 478) | def CreatePartitionOptions(*args, **keywords): ... function CreatePassiveRigidBody (line 479) | def CreatePassiveRigidBody(*args, **keywords): ... function CreatePassiveRigidBodyOptions (line 480) | def CreatePassiveRigidBodyOptions(*args, **keywords): ... function CreatePinConstraint (line 481) | def CreatePinConstraint(*args, **keywords): ... function CreatePinConstraintOptions (line 482) | def CreatePinConstraintOptions(*args, **keywords): ... function CreatePlatonicSolid (line 483) | def CreatePlatonicSolid(*args, **keywords): ... function CreatePlatonicSolidOptions (line 484) | def CreatePlatonicSolidOptions(*args, **keywords): ... function CreatePointLight (line 485) | def CreatePointLight(*args, **keywords): ... function CreatePointLightOptions (line 486) | def CreatePointLightOptions(*args, **keywords): ... function CreatePolyFromPreview (line 487) | def CreatePolyFromPreview(*args, **keywords): ... function CreatePolygonAxis (line 488) | def CreatePolygonAxis(*args, **keywords): ... function CreatePolygonAxisOptions (line 489) | def CreatePolygonAxisOptions(*args, **keywords): ... function CreatePolygonCone (line 490) | def CreatePolygonCone(*args, **keywords): ... function CreatePolygonConeOptions (line 491) | def CreatePolygonConeOptions(*args, **keywords): ... function CreatePolygonCube (line 492) | def CreatePolygonCube(*args, **keywords): ... function CreatePolygonCubeOptions (line 493) | def CreatePolygonCubeOptions(*args, **keywords): ... function CreatePolygonCylinder (line 494) | def CreatePolygonCylinder(*args, **keywords): ... function CreatePolygonCylinderOptions (line 495) | def CreatePolygonCylinderOptions(*args, **keywords): ... function CreatePolygonDisc (line 496) | def CreatePolygonDisc(*args, **keywords): ... function CreatePolygonDiscOptions (line 497) | def CreatePolygonDiscOptions(*args, **keywords): ... function CreatePolygonGear (line 498) | def CreatePolygonGear(*args, **keywords): ... function CreatePolygonGearOptions (line 499) | def CreatePolygonGearOptions(*args, **keywords): ... function CreatePolygonHelix (line 500) | def CreatePolygonHelix(*args, **keywords): ... function CreatePolygonHelixOptions (line 501) | def CreatePolygonHelixOptions(*args, **keywords): ... function CreatePolygonPipe (line 502) | def CreatePolygonPipe(*args, **keywords): ... function CreatePolygonPipeOptions (line 503) | def CreatePolygonPipeOptions(*args, **keywords): ... function CreatePolygonPlane (line 504) | def CreatePolygonPlane(*args, **keywords): ... function CreatePolygonPlaneOptions (line 505) | def CreatePolygonPlaneOptions(*args, **keywords): ... function CreatePolygonPlatonic (line 506) | def CreatePolygonPlatonic(*args, **keywords): ... function CreatePolygonPlatonicOptions (line 507) | def CreatePolygonPlatonicOptions(*args, **keywords): ... function CreatePolygonPrism (line 508) | def CreatePolygonPrism(*args, **keywords): ... function CreatePolygonPrismOptions (line 509) | def CreatePolygonPrismOptions(*args, **keywords): ... function CreatePolygonPyramid (line 510) | def CreatePolygonPyramid(*args, **keywords): ... function CreatePolygonPyramidOptions (line 511) | def CreatePolygonPyramidOptions(*args, **keywords): ... function CreatePolygonSVG (line 512) | def CreatePolygonSVG(*args, **keywords): ... function CreatePolygonSoccerBall (line 513) | def CreatePolygonSoccerBall(*args, **keywords): ... function CreatePolygonSoccerBallOptions (line 514) | def CreatePolygonSoccerBallOptions(*args, **keywords): ... function CreatePolygonSphere (line 515) | def CreatePolygonSphere(*args, **keywords): ... function CreatePolygonSphereOptions (line 516) | def CreatePolygonSphereOptions(*args, **keywords): ... function CreatePolygonSphericalHarmonics (line 517) | def CreatePolygonSphericalHarmonics(*args, **keywords): ... function CreatePolygonSphericalHarmonicsOptions (line 518) | def CreatePolygonSphericalHarmonicsOptions(*args, **keywords): ... function CreatePolygonSuperEllipse (line 519) | def CreatePolygonSuperEllipse(*args, **keywords): ... function CreatePolygonSuperEllipseOptions (line 520) | def CreatePolygonSuperEllipseOptions(*args, **keywords): ... function CreatePolygonTool (line 521) | def CreatePolygonTool(*args, **keywords): ... function CreatePolygonToolOptions (line 522) | def CreatePolygonToolOptions(*args, **keywords): ... function CreatePolygonTorus (line 523) | def CreatePolygonTorus(*args, **keywords): ... function CreatePolygonTorusOptions (line 524) | def CreatePolygonTorusOptions(*args, **keywords): ... function CreatePolygonType (line 525) | def CreatePolygonType(*args, **keywords): ... function CreatePolygonUltraShape (line 526) | def CreatePolygonUltraShape(*args, **keywords): ... function CreatePolygonUltraShapeOptions (line 527) | def CreatePolygonUltraShapeOptions(*args, **keywords): ... function CreatePond (line 528) | def CreatePond(*args, **keywords): ... function CreatePondOptions (line 529) | def CreatePondOptions(*args, **keywords): ... function CreatePose (line 530) | def CreatePose(*args, **keywords): ... function CreatePoseInterpolator (line 531) | def CreatePoseInterpolator(*args, **keywords): ... function CreatePoseInterpolatorOptions (line 532) | def CreatePoseInterpolatorOptions(*args, **keywords): ... function CreatePoseOptions (line 533) | def CreatePoseOptions(*args, **keywords): ... function CreateQuickSelectSet (line 534) | def CreateQuickSelectSet(*args, **keywords): ... function CreateReference (line 535) | def CreateReference(*args, **keywords): ... function CreateReferenceOptions (line 536) | def CreateReferenceOptions(*args, **keywords): ... function CreateRigidBodySolver (line 537) | def CreateRigidBodySolver(*args, **keywords): ... function CreateSculptDeformer (line 538) | def CreateSculptDeformer(*args, **keywords): ... function CreateSculptDeformerOptions (line 539) | def CreateSculptDeformerOptions(*args, **keywords): ... function CreateSet (line 540) | def CreateSet(*args, **keywords): ... function CreateSetOptions (line 541) | def CreateSetOptions(*args, **keywords): ... function CreateShot (line 542) | def CreateShot(*args, **keywords): ... function CreateShotOptions (line 543) | def CreateShotOptions(*args, **keywords): ... function CreateShrinkWrap (line 544) | def CreateShrinkWrap(*args, **keywords): ... function CreateShrinkWrapOptions (line 545) | def CreateShrinkWrapOptions(*args, **keywords): ... function CreateSoftBody (line 546) | def CreateSoftBody(*args, **keywords): ... function CreateSoftBodyOptions (line 547) | def CreateSoftBodyOptions(*args, **keywords): ... function CreateSpotLight (line 548) | def CreateSpotLight(*args, **keywords): ... function CreateSpotLightOptions (line 549) | def CreateSpotLightOptions(*args, **keywords): ... function CreateSpring (line 550) | def CreateSpring(*args, **keywords): ... function CreateSpringConstraint (line 551) | def CreateSpringConstraint(*args, **keywords): ... function CreateSpringConstraintOptions (line 552) | def CreateSpringConstraintOptions(*args, **keywords): ... function CreateSpringOptions (line 553) | def CreateSpringOptions(*args, **keywords): ... function CreateStereoRig (line 554) | def CreateStereoRig(*args, **keywords): ... function CreateSubCharacter (line 555) | def CreateSubCharacter(*args, **keywords): ... function CreateSubCharacterOptions (line 556) | def CreateSubCharacterOptions(*args, **keywords): ... function CreateSubdivCone (line 557) | def CreateSubdivCone(*args, **keywords): ... function CreateSubdivCube (line 558) | def CreateSubdivCube(*args, **keywords): ... function CreateSubdivCylinder (line 559) | def CreateSubdivCylinder(*args, **keywords): ... function CreateSubdivPlane (line 560) | def CreateSubdivPlane(*args, **keywords): ... function CreateSubdivRegion (line 561) | def CreateSubdivRegion(*args, **keywords): ... function CreateSubdivSphere (line 562) | def CreateSubdivSphere(*args, **keywords): ... function CreateSubdivSurface (line 563) | def CreateSubdivSurface(*args, **keywords): ... function CreateSubdivSurfaceOptions (line 564) | def CreateSubdivSurfaceOptions(*args, **keywords): ... function CreateSubdivSurfacePoly (line 565) | def CreateSubdivSurfacePoly(*args, **keywords): ... function CreateSubdivSurfacePolyOptions (line 566) | def CreateSubdivSurfacePolyOptions(*args, **keywords): ... function CreateSubdivTorus (line 567) | def CreateSubdivTorus(*args, **keywords): ... function CreateSweepMesh (line 568) | def CreateSweepMesh(*args, **keywords): ... function CreateSweepMeshOptions (line 569) | def CreateSweepMeshOptions(*args, **keywords): ... function CreateText (line 570) | def CreateText(*args, **keywords): ... function CreateTextOptions (line 571) | def CreateTextOptions(*args, **keywords): ... function CreateTextureDeformer (line 572) | def CreateTextureDeformer(*args, **keywords): ... function CreateTextureDeformerOptions (line 573) | def CreateTextureDeformerOptions(*args, **keywords): ... function CreateTextureReferenceObject (line 574) | def CreateTextureReferenceObject(*args, **keywords): ... function CreateTimeSliderBookmark (line 575) | def CreateTimeSliderBookmark(*args, **keywords): ... function CreateUVShellAlongBorder (line 576) | def CreateUVShellAlongBorder(*args, **keywords): ... function CreateUVsBasedOnCamera (line 577) | def CreateUVsBasedOnCamera(*args, **keywords): ... function CreateUVsBasedOnCameraOptions (line 578) | def CreateUVsBasedOnCameraOptions(*args, **keywords): ... function CreateVolumeCone (line 579) | def CreateVolumeCone(*args, **keywords): ... function CreateVolumeCube (line 580) | def CreateVolumeCube(*args, **keywords): ... function CreateVolumeLight (line 581) | def CreateVolumeLight(*args, **keywords): ... function CreateVolumeLightOptions (line 582) | def CreateVolumeLightOptions(*args, **keywords): ... function CreateVolumeSphere (line 583) | def CreateVolumeSphere(*args, **keywords): ... function CreateWake (line 584) | def CreateWake(*args, **keywords): ... function CreateWakeOptions (line 585) | def CreateWakeOptions(*args, **keywords): ... function CreateWrap (line 586) | def CreateWrap(*args, **keywords): ... function CreateWrapOptions (line 587) | def CreateWrapOptions(*args, **keywords): ... function CurlCurves (line 588) | def CurlCurves(*args, **keywords): ... function CurlCurvesOptions (line 589) | def CurlCurvesOptions(*args, **keywords): ... function CurveEditTool (line 590) | def CurveEditTool(*args, **keywords): ... function CurveFillet (line 591) | def CurveFillet(*args, **keywords): ... function CurveFilletOptions (line 592) | def CurveFilletOptions(*args, **keywords): ... function CurveFlow (line 593) | def CurveFlow(*args, **keywords): ... function CurveFlowOptions (line 594) | def CurveFlowOptions(*args, **keywords): ... function CurveSmoothnessCoarse (line 595) | def CurveSmoothnessCoarse(*args, **keywords): ... function CurveSmoothnessFine (line 596) | def CurveSmoothnessFine(*args, **keywords): ... function CurveSmoothnessMedium (line 597) | def CurveSmoothnessMedium(*args, **keywords): ... function CurveSmoothnessRough (line 598) | def CurveSmoothnessRough(*args, **keywords): ... function CurveUtilitiesMarkingMenu (line 599) | def CurveUtilitiesMarkingMenu(*args, **keywords): ... function CurveUtilitiesMarkingMenuPopDown (line 600) | def CurveUtilitiesMarkingMenuPopDown(*args, **keywords): ... function CurveWarp (line 601) | def CurveWarp(*args, **keywords): ... function CustomNURBSComponentsOptions (line 602) | def CustomNURBSComponentsOptions(*args, **keywords): ... function CustomNURBSSmoothness (line 603) | def CustomNURBSSmoothness(*args, **keywords): ... function CustomNURBSSmoothnessOptions (line 604) | def CustomNURBSSmoothnessOptions(*args, **keywords): ... function CustomPolygonDisplay (line 605) | def CustomPolygonDisplay(*args, **keywords): ... function CustomPolygonDisplayOptions (line 606) | def CustomPolygonDisplayOptions(*args, **keywords): ... function CutBluePencilFrame (line 607) | def CutBluePencilFrame(*args, **keywords): ... function CutCurve (line 608) | def CutCurve(*args, **keywords): ... function CutCurveOptions (line 609) | def CutCurveOptions(*args, **keywords): ... function CutKeys (line 610) | def CutKeys(*args, **keywords): ... function CutKeysOptions (line 611) | def CutKeysOptions(*args, **keywords): ... function CutPolygon (line 612) | def CutPolygon(*args, **keywords): ... function CutPolygonOptions (line 613) | def CutPolygonOptions(*args, **keywords): ... function CutSelected (line 614) | def CutSelected(*args, **keywords): ... function CutUVs (line 615) | def CutUVs(*args, **keywords): ... function CutUVs3D (line 616) | def CutUVs3D(*args, **keywords): ... function CutUVsWithoutHotkey (line 617) | def CutUVsWithoutHotkey(*args, **keywords): ... function CycleBackgroundColor (line 618) | def CycleBackgroundColor(*args, **keywords): ... function CycleDisplayMode (line 619) | def CycleDisplayMode(*args, **keywords): ... function CycleIKHandleStickyState (line 620) | def CycleIKHandleStickyState(*args, **keywords): ... function CycleThroughCameras (line 621) | def CycleThroughCameras(*args, **keywords): ... function DeactivateGlobalScreenSlider (line 622) | def DeactivateGlobalScreenSlider(*args, **keywords): ... function DeactivateGlobalScreenSliderModeMarkingMenu (line 623) | def DeactivateGlobalScreenSliderModeMarkingMenu(*args, **keywords): ... function DecreaseCheckerDensity (line 624) | def DecreaseCheckerDensity(*args, **keywords): ... function DecreaseExposureCoarse (line 625) | def DecreaseExposureCoarse(*args, **keywords): ... function DecreaseExposureFine (line 626) | def DecreaseExposureFine(*args, **keywords): ... function DecreaseGammaCoarse (line 627) | def DecreaseGammaCoarse(*args, **keywords): ... function DecreaseGammaFine (line 628) | def DecreaseGammaFine(*args, **keywords): ... function DecreaseManipulatorSize (line 629) | def DecreaseManipulatorSize(*args, **keywords): ... function DecrementFluidCenter (line 630) | def DecrementFluidCenter(*args, **keywords): ... function DefaultQualityDisplay (line 631) | def DefaultQualityDisplay(*args, **keywords): ... function DeformerSetEditor (line 632) | def DeformerSetEditor(*args, **keywords): ... function Delete (line 633) | def Delete(*args, **keywords): ... function DeleteAllBookmarks (line 634) | def DeleteAllBookmarks(*args, **keywords): ... function DeleteAllCameras (line 635) | def DeleteAllCameras(*args, **keywords): ... function DeleteAllChannels (line 636) | def DeleteAllChannels(*args, **keywords): ... function DeleteAllClips (line 637) | def DeleteAllClips(*args, **keywords): ... function DeleteAllClusters (line 638) | def DeleteAllClusters(*args, **keywords): ... function DeleteAllConstraints (line 639) | def DeleteAllConstraints(*args, **keywords): ... function DeleteAllContainers (line 640) | def DeleteAllContainers(*args, **keywords): ... function DeleteAllControllers (line 641) | def DeleteAllControllers(*args, **keywords): ... function DeleteAllDynamicConstraints (line 642) | def DeleteAllDynamicConstraints(*args, **keywords): ... function DeleteAllExpressions (line 643) | def DeleteAllExpressions(*args, **keywords): ... function DeleteAllFluids (line 644) | def DeleteAllFluids(*args, **keywords): ... function DeleteAllFurs (line 645) | def DeleteAllFurs(*args, **keywords): ... function DeleteAllHistory (line 646) | def DeleteAllHistory(*args, **keywords): ... function DeleteAllIKHandles (line 647) | def DeleteAllIKHandles(*args, **keywords): ... function DeleteAllImagePlanes (line 648) | def DeleteAllImagePlanes(*args, **keywords): ... function DeleteAllJoints (line 649) | def DeleteAllJoints(*args, **keywords): ... function DeleteAllLattices (line 650) | def DeleteAllLattices(*args, **keywords): ... function DeleteAllLights (line 651) | def DeleteAllLights(*args, **keywords): ... function DeleteAllMotionPaths (line 652) | def DeleteAllMotionPaths(*args, **keywords): ... function DeleteAllNCloths (line 653) | def DeleteAllNCloths(*args, **keywords): ... function DeleteAllNParticles (line 654) | def DeleteAllNParticles(*args, **keywords): ... function DeleteAllNRigids (line 655) | def DeleteAllNRigids(*args, **keywords): ... function DeleteAllNonLinearDeformers (line 656) | def DeleteAllNonLinearDeformers(*args, **keywords): ... function DeleteAllParticles (line 657) | def DeleteAllParticles(*args, **keywords): ... function DeleteAllPoses (line 658) | def DeleteAllPoses(*args, **keywords): ... function DeleteAllRigidBodies (line 659) | def DeleteAllRigidBodies(*args, **keywords): ... function DeleteAllRigidConstraints (line 660) | def DeleteAllRigidConstraints(*args, **keywords): ... function DeleteAllSculptObjects (line 661) | def DeleteAllSculptObjects(*args, **keywords): ... function DeleteAllShadingGroupsAndMaterials (line 662) | def DeleteAllShadingGroupsAndMaterials(*args, **keywords): ... function DeleteAllSounds (line 663) | def DeleteAllSounds(*args, **keywords): ... function DeleteAllStaticChannels (line 664) | def DeleteAllStaticChannels(*args, **keywords): ... function DeleteAllStrokes (line 665) | def DeleteAllStrokes(*args, **keywords): ... function DeleteAllWires (line 666) | def DeleteAllWires(*args, **keywords): ... function DeleteAttribute (line 667) | def DeleteAttribute(*args, **keywords): ... function DeleteBluePencilFrame (line 668) | def DeleteBluePencilFrame(*args, **keywords): ... function DeleteChannels (line 669) | def DeleteChannels(*args, **keywords): ... function DeleteChannelsOptions (line 670) | def DeleteChannelsOptions(*args, **keywords): ... function DeleteConstraints (line 671) | def DeleteConstraints(*args, **keywords): ... function DeleteCurrentBookmark (line 672) | def DeleteCurrentBookmark(*args, **keywords): ... function DeleteCurrentColorSet (line 673) | def DeleteCurrentColorSet(*args, **keywords): ... function DeleteCurrentSet (line 674) | def DeleteCurrentSet(*args, **keywords): ... function DeleteCurrentUVSet (line 675) | def DeleteCurrentUVSet(*args, **keywords): ... function DeleteCurrentWorkspace (line 676) | def DeleteCurrentWorkspace(*args, **keywords): ... function DeleteCustomSet (line 677) | def DeleteCustomSet(*args, **keywords): ... function DeleteEdge (line 678) | def DeleteEdge(*args, **keywords): ... function DeleteEntireHairSystem (line 679) | def DeleteEntireHairSystem(*args, **keywords): ... function DeleteExpressions (line 680) | def DeleteExpressions(*args, **keywords): ... function DeleteExpressionsOptions (line 681) | def DeleteExpressionsOptions(*args, **keywords): ... function DeleteHair (line 682) | def DeleteHair(*args, **keywords): ... function DeleteHairCache (line 683) | def DeleteHairCache(*args, **keywords): ... function DeleteHistory (line 684) | def DeleteHistory(*args, **keywords): ... function DeleteKeys (line 685) | def DeleteKeys(*args, **keywords): ... function DeleteKeysOptions (line 686) | def DeleteKeysOptions(*args, **keywords): ... function DeleteMemoryCaching (line 687) | def DeleteMemoryCaching(*args, **keywords): ... function DeleteMotionPaths (line 688) | def DeleteMotionPaths(*args, **keywords): ... function DeletePolyElements (line 689) | def DeletePolyElements(*args, **keywords): ... function DeleteRigidBodies (line 690) | def DeleteRigidBodies(*args, **keywords): ... function DeleteSelectedContainers (line 691) | def DeleteSelectedContainers(*args, **keywords): ... function DeleteStaticChannels (line 692) | def DeleteStaticChannels(*args, **keywords): ... function DeleteStaticChannelsOptions (line 693) | def DeleteStaticChannelsOptions(*args, **keywords): ... function DeleteSurfaceFlow (line 694) | def DeleteSurfaceFlow(*args, **keywords): ... function DeleteSurfaceFlowOptions (line 695) | def DeleteSurfaceFlowOptions(*args, **keywords): ... function DeleteTextureReferenceObject (line 696) | def DeleteTextureReferenceObject(*args, **keywords): ... function DeleteTimeWarp (line 697) | def DeleteTimeWarp(*args, **keywords): ... function DeleteUVs (line 698) | def DeleteUVs(*args, **keywords): ... function DeleteUVsWithoutHotkey (line 699) | def DeleteUVsWithoutHotkey(*args, **keywords): ... function DeleteUnknownNodes (line 700) | def DeleteUnknownNodes(*args, **keywords): ... function DeleteVertex (line 701) | def DeleteVertex(*args, **keywords): ... function DeltaMush (line 702) | def DeltaMush(*args, **keywords): ... function DeltaMushOptions (line 703) | def DeltaMushOptions(*args, **keywords): ... function DetachComponent (line 704) | def DetachComponent(*args, **keywords): ... function DetachCurve (line 705) | def DetachCurve(*args, **keywords): ... function DetachCurveOptions (line 706) | def DetachCurveOptions(*args, **keywords): ... function DetachEdgeComponent (line 707) | def DetachEdgeComponent(*args, **keywords): ... function DetachSkeleton (line 708) | def DetachSkeleton(*args, **keywords): ... function DetachSkeletonJoints (line 709) | def DetachSkeletonJoints(*args, **keywords): ... function DetachSkin (line 710) | def DetachSkin(*args, **keywords): ... function DetachSkinOptions (line 711) | def DetachSkinOptions(*args, **keywords): ... function DetachSurfaces (line 712) | def DetachSurfaces(*args, **keywords): ... function DetachSurfacesOptions (line 713) | def DetachSurfacesOptions(*args, **keywords): ... function DetachVertexComponent (line 714) | def DetachVertexComponent(*args, **keywords): ... function DeviceEditor (line 715) | def DeviceEditor(*args, **keywords): ... function DisableAll (line 716) | def DisableAll(*args, **keywords): ... function DisableAllCaches (line 717) | def DisableAllCaches(*args, **keywords): ... function DisableAllGeometryCache (line 718) | def DisableAllGeometryCache(*args, **keywords): ... function DisableConstraints (line 719) | def DisableConstraints(*args, **keywords): ... function DisableExpressions (line 720) | def DisableExpressions(*args, **keywords): ... function DisableFluids (line 721) | def DisableFluids(*args, **keywords): ... function DisableGlobalStitch (line 722) | def DisableGlobalStitch(*args, **keywords): ... function DisableIKSolvers (line 723) | def DisableIKSolvers(*args, **keywords): ... function DisableMemoryCaching (line 724) | def DisableMemoryCaching(*args, **keywords): ... function DisableParticles (line 725) | def DisableParticles(*args, **keywords): ... function DisableRigidBodies (line 726) | def DisableRigidBodies(*args, **keywords): ... function DisableSelectedIKHandles (line 727) | def DisableSelectedIKHandles(*args, **keywords): ... function DisableSnapshots (line 728) | def DisableSnapshots(*args, **keywords): ... function DisableTimeChangeUndoConsolidation (line 729) | def DisableTimeChangeUndoConsolidation(*args, **keywords): ... function DisableWeightNrm (line 730) | def DisableWeightNrm(*args, **keywords): ... function DisableWeightNrmOptions (line 731) | def DisableWeightNrmOptions(*args, **keywords): ... function DisconnectJoint (line 732) | def DisconnectJoint(*args, **keywords): ... function DisplacementToPolygon (line 733) | def DisplacementToPolygon(*args, **keywords): ... function DisplayCurrentHairCurves (line 734) | def DisplayCurrentHairCurves(*args, **keywords): ... function DisplayHairCurves (line 735) | def DisplayHairCurves(*args, **keywords): ... function DisplayHairCurvesCurrentAndRest (line 736) | def DisplayHairCurvesCurrentAndRest(*args, **keywords): ... function DisplayHairCurvesCurrentAndStart (line 737) | def DisplayHairCurvesCurrentAndStart(*args, **keywords): ... function DisplayHairCurvesRestPosition (line 738) | def DisplayHairCurvesRestPosition(*args, **keywords): ... function DisplayHairCurvesStart (line 739) | def DisplayHairCurvesStart(*args, **keywords): ... function DisplayIntermediateObjects (line 740) | def DisplayIntermediateObjects(*args, **keywords): ... function DisplayLayerEditorWindow (line 741) | def DisplayLayerEditorWindow(*args, **keywords): ... function DisplayLight (line 742) | def DisplayLight(*args, **keywords): ... function DisplayShaded (line 743) | def DisplayShaded(*args, **keywords): ... function DisplayShadedAndTextured (line 744) | def DisplayShadedAndTextured(*args, **keywords): ... function DisplayShadingMarkingMenu (line 745) | def DisplayShadingMarkingMenu(*args, **keywords): ... function DisplayShadingMarkingMenuPopDown (line 746) | def DisplayShadingMarkingMenuPopDown(*args, **keywords): ... function DisplaySmoothShaded (line 747) | def DisplaySmoothShaded(*args, **keywords): ... function DisplayUVShaded (line 748) | def DisplayUVShaded(*args, **keywords): ... function DisplayUVWireframe (line 749) | def DisplayUVWireframe(*args, **keywords): ... function DisplayViewport (line 750) | def DisplayViewport(*args, **keywords): ... function DisplayWireframe (line 751) | def DisplayWireframe(*args, **keywords): ... function DistanceTool (line 752) | def DistanceTool(*args, **keywords): ... function DistributeShells (line 753) | def DistributeShells(*args, **keywords): ... function DistributeShellsOptions (line 754) | def DistributeShellsOptions(*args, **keywords): ... function DistributeUVs (line 755) | def DistributeUVs(*args, **keywords): ... function DistributeUVsOptions (line 756) | def DistributeUVsOptions(*args, **keywords): ... function DollyTool (line 757) | def DollyTool(*args, **keywords): ... function DopeSheetAddInbetween (line 758) | def DopeSheetAddInbetween(*args, **keywords): ... function DopeSheetBakeChannel (line 759) | def DopeSheetBakeChannel(*args, **keywords): ... function DopeSheetBakeChannelOptions (line 760) | def DopeSheetBakeChannelOptions(*args, **keywords): ... function DopeSheetCenterCurrentTime (line 761) | def DopeSheetCenterCurrentTime(*args, **keywords): ... function DopeSheetEditor (line 762) | def DopeSheetEditor(*args, **keywords): ... function DopeSheetFrameAll (line 763) | def DopeSheetFrameAll(*args, **keywords): ... function DopeSheetFramePlaybackRange (line 764) | def DopeSheetFramePlaybackRange(*args, **keywords): ... function DopeSheetFrameSelected (line 765) | def DopeSheetFrameSelected(*args, **keywords): ... function DopeSheetInsertKeysTool (line 766) | def DopeSheetInsertKeysTool(*args, **keywords): ... function DopeSheetInsertKeysToolOptions (line 767) | def DopeSheetInsertKeysToolOptions(*args, **keywords): ... function DopeSheetLockChannel (line 768) | def DopeSheetLockChannel(*args, **keywords): ... function DopeSheetMoveNearestPickedKey (line 769) | def DopeSheetMoveNearestPickedKey(*args, **keywords): ... function DopeSheetMoveNearestPickedKeyOptions (line 770) | def DopeSheetMoveNearestPickedKeyOptions(*args, **keywords): ... function DopeSheetRemoveInbetween (line 771) | def DopeSheetRemoveInbetween(*args, **keywords): ... function DopeSheetSelectKeys (line 772) | def DopeSheetSelectKeys(*args, **keywords): ... function DopeSheetUnlockChannel (line 773) | def DopeSheetUnlockChannel(*args, **keywords): ... function Drag (line 774) | def Drag(*args, **keywords): ... function DragOptions (line 775) | def DragOptions(*args, **keywords): ... function Duplicate (line 776) | def Duplicate(*args, **keywords): ... function DuplicateBluePencilFrame (line 777) | def DuplicateBluePencilFrame(*args, **keywords): ... function DuplicateCurve (line 778) | def DuplicateCurve(*args, **keywords): ... function DuplicateCurveOptions (line 779) | def DuplicateCurveOptions(*args, **keywords): ... function DuplicateEdges (line 780) | def DuplicateEdges(*args, **keywords): ... function DuplicateEdgesOptions (line 781) | def DuplicateEdgesOptions(*args, **keywords): ... function DuplicateFace (line 782) | def DuplicateFace(*args, **keywords): ... function DuplicateFaceOptions (line 783) | def DuplicateFaceOptions(*args, **keywords): ... function DuplicateNURBSPatches (line 784) | def DuplicateNURBSPatches(*args, **keywords): ... function DuplicateNURBSPatchesOptions (line 785) | def DuplicateNURBSPatchesOptions(*args, **keywords): ... function DuplicateSpecial (line 786) | def DuplicateSpecial(*args, **keywords): ... function DuplicateSpecialOptions (line 787) | def DuplicateSpecialOptions(*args, **keywords): ... function DuplicateWithTransform (line 788) | def DuplicateWithTransform(*args, **keywords): ... function DynamicRelationshipEditor (line 789) | def DynamicRelationshipEditor(*args, **keywords): ... function EPCurveTool (line 790) | def EPCurveTool(*args, **keywords): ... function EPCurveToolOptions (line 791) | def EPCurveToolOptions(*args, **keywords): ... function EditAssignedSet (line 792) | def EditAssignedSet(*args, **keywords): ... function EditBookmark (line 793) | def EditBookmark(*args, **keywords): ... function EditCharacterAttributes (line 794) | def EditCharacterAttributes(*args, **keywords): ... function EditFluidResolution (line 795) | def EditFluidResolution(*args, **keywords): ... function EditFluidResolutionOptions (line 796) | def EditFluidResolutionOptions(*args, **keywords): ... function EditMembershipTool (line 797) | def EditMembershipTool(*args, **keywords): ... function EditNormalizationGroups (line 798) | def EditNormalizationGroups(*args, **keywords): ... function EditOversamplingForCacheSettings (line 799) | def EditOversamplingForCacheSettings(*args, **keywords): ... function EditPSDTextureItem (line 800) | def EditPSDTextureItem(*args, **keywords): ... function EditPolygonType (line 801) | def EditPolygonType(*args, **keywords): ... function EditTexture (line 802) | def EditTexture(*args, **keywords): ... function EmitFluidFromObject (line 803) | def EmitFluidFromObject(*args, **keywords): ... function EmitFluidFromObjectOptions (line 804) | def EmitFluidFromObjectOptions(*args, **keywords): ... function EmitFromObject (line 805) | def EmitFromObject(*args, **keywords): ... function EmitFromObjectOptions (line 806) | def EmitFromObjectOptions(*args, **keywords): ... function EnableAll (line 807) | def EnableAll(*args, **keywords): ... function EnableAllCaches (line 808) | def EnableAllCaches(*args, **keywords): ... function EnableAllGeometryCache (line 809) | def EnableAllGeometryCache(*args, **keywords): ... function EnableConstraints (line 810) | def EnableConstraints(*args, **keywords): ... function EnableDynamicConstraints (line 811) | def EnableDynamicConstraints(*args, **keywords): ... function EnableExpressions (line 812) | def EnableExpressions(*args, **keywords): ... function EnableFluids (line 813) | def EnableFluids(*args, **keywords): ... function EnableGlobalStitch (line 814) | def EnableGlobalStitch(*args, **keywords): ... function EnableIKSolvers (line 815) | def EnableIKSolvers(*args, **keywords): ... function EnableMemoryCaching (line 816) | def EnableMemoryCaching(*args, **keywords): ... function EnableNCloths (line 817) | def EnableNCloths(*args, **keywords): ... function EnableNParticles (line 818) | def EnableNParticles(*args, **keywords): ... function EnableNRigids (line 819) | def EnableNRigids(*args, **keywords): ... function EnableNucleuses (line 820) | def EnableNucleuses(*args, **keywords): ... function EnableParticles (line 821) | def EnableParticles(*args, **keywords): ... function EnableRigidBodies (line 822) | def EnableRigidBodies(*args, **keywords): ... function EnableSelectTool (line 823) | def EnableSelectTool(*args, **keywords): ... function EnableSelectedIKHandles (line 824) | def EnableSelectedIKHandles(*args, **keywords): ... function EnableSnapshots (line 825) | def EnableSnapshots(*args, **keywords): ... function EnableTimeChangeUndoConsolidation (line 826) | def EnableTimeChangeUndoConsolidation(*args, **keywords): ... function EnableTimeWarp (line 827) | def EnableTimeWarp(*args, **keywords): ... function EnableWeightNrm (line 828) | def EnableWeightNrm(*args, **keywords): ... function EnableWeightNrmOptions (line 829) | def EnableWeightNrmOptions(*args, **keywords): ... function EnableWeightPostNrm (line 830) | def EnableWeightPostNrm(*args, **keywords): ... function EnableWeightPostNrmOptions (line 831) | def EnableWeightPostNrmOptions(*args, **keywords): ... function EnterConnectTool (line 832) | def EnterConnectTool(*args, **keywords): ... function EnterEditMode (line 833) | def EnterEditMode(*args, **keywords): ... function EnterEditModePress (line 834) | def EnterEditModePress(*args, **keywords): ... function EnterEditModeRelease (line 835) | def EnterEditModeRelease(*args, **keywords): ... function EvaluationToolkit (line 836) | def EvaluationToolkit(*args, **keywords): ... function ExpandSelectedComponents (line 837) | def ExpandSelectedComponents(*args, **keywords): ... function Export (line 838) | def Export(*args, **keywords): ... function ExportAllChannelSets (line 839) | def ExportAllChannelSets(*args, **keywords): ... function ExportAnim (line 840) | def ExportAnim(*args, **keywords): ... function ExportBluePencilFrames (line 841) | def ExportBluePencilFrames(*args, **keywords): ... function ExportChannelSets (line 842) | def ExportChannelSets(*args, **keywords): ... function ExportDeformerWeights (line 843) | def ExportDeformerWeights(*args, **keywords): ... function ExportDeformerWeightsOptions (line 844) | def ExportDeformerWeightsOptions(*args, **keywords): ... function ExportOfflineFile (line 845) | def ExportOfflineFile(*args, **keywords): ... function ExportOfflineFileFromRefEd (line 846) | def ExportOfflineFileFromRefEd(*args, **keywords): ... function ExportOfflineFileFromRefEdOptions (line 847) | def ExportOfflineFileFromRefEdOptions(*args, **keywords): ... function ExportOfflineFileOptions (line 848) | def ExportOfflineFileOptions(*args, **keywords): ... function ExportOptions (line 849) | def ExportOptions(*args, **keywords): ... function ExportProxyContainer (line 850) | def ExportProxyContainer(*args, **keywords): ... function ExportProxyContainerOptions (line 851) | def ExportProxyContainerOptions(*args, **keywords): ... function ExportSelection (line 852) | def ExportSelection(*args, **keywords): ... function ExportSelectionOptions (line 853) | def ExportSelectionOptions(*args, **keywords): ... function ExportSkinWeightMaps (line 854) | def ExportSkinWeightMaps(*args, **keywords): ... function ExportSkinWeightMapsOptions (line 855) | def ExportSkinWeightMapsOptions(*args, **keywords): ... function ExpressionEditor (line 856) | def ExpressionEditor(*args, **keywords): ... function ExtendCurve (line 857) | def ExtendCurve(*args, **keywords): ... function ExtendCurveOnSurface (line 858) | def ExtendCurveOnSurface(*args, **keywords): ... function ExtendCurveOnSurfaceOptions (line 859) | def ExtendCurveOnSurfaceOptions(*args, **keywords): ... function ExtendCurveOptions (line 860) | def ExtendCurveOptions(*args, **keywords): ... function ExtendFluid (line 861) | def ExtendFluid(*args, **keywords): ... function ExtendFluidOptions (line 862) | def ExtendFluidOptions(*args, **keywords): ... function ExtendSurfaces (line 863) | def ExtendSurfaces(*args, **keywords): ... function ExtendSurfacesOptions (line 864) | def ExtendSurfacesOptions(*args, **keywords): ... function ExtractFace (line 865) | def ExtractFace(*args, **keywords): ... function ExtractFaceOptions (line 866) | def ExtractFaceOptions(*args, **keywords): ... function ExtractSubdivSurfaceVertices (line 867) | def ExtractSubdivSurfaceVertices(*args, **keywords): ... function ExtractSubdivSurfaceVerticesOptions (line 868) | def ExtractSubdivSurfaceVerticesOptions(*args, **keywords): ... function Extrude (line 869) | def Extrude(*args, **keywords): ... function ExtrudeEdge (line 870) | def ExtrudeEdge(*args, **keywords): ... function ExtrudeEdgeOptions (line 871) | def ExtrudeEdgeOptions(*args, **keywords): ... function ExtrudeFace (line 872) | def ExtrudeFace(*args, **keywords): ... function ExtrudeFaceOptions (line 873) | def ExtrudeFaceOptions(*args, **keywords): ... function ExtrudeOptions (line 874) | def ExtrudeOptions(*args, **keywords): ... function ExtrudeVertex (line 875) | def ExtrudeVertex(*args, **keywords): ... function ExtrudeVertexOptions (line 876) | def ExtrudeVertexOptions(*args, **keywords): ... function FBIKLabelArm (line 877) | def FBIKLabelArm(*args, **keywords): ... function FBIKLabelBigToe (line 878) | def FBIKLabelBigToe(*args, **keywords): ... function FBIKLabelCenter (line 879) | def FBIKLabelCenter(*args, **keywords): ... function FBIKLabelCollar (line 880) | def FBIKLabelCollar(*args, **keywords): ... function FBIKLabelElbow (line 881) | def FBIKLabelElbow(*args, **keywords): ... function FBIKLabelExtraFinger (line 882) | def FBIKLabelExtraFinger(*args, **keywords): ... function FBIKLabelFingerBase (line 883) | def FBIKLabelFingerBase(*args, **keywords): ... function FBIKLabelFoot (line 884) | def FBIKLabelFoot(*args, **keywords): ... function FBIKLabelFootThumb (line 885) | def FBIKLabelFootThumb(*args, **keywords): ... function FBIKLabelHand (line 886) | def FBIKLabelHand(*args, **keywords): ... function FBIKLabelHead (line 887) | def FBIKLabelHead(*args, **keywords): ... function FBIKLabelHip (line 888) | def FBIKLabelHip(*args, **keywords): ... function FBIKLabelIndex (line 889) | def FBIKLabelIndex(*args, **keywords): ... function FBIKLabelIndexToe (line 890) | def FBIKLabelIndexToe(*args, **keywords): ... function FBIKLabelKnee (line 891) | def FBIKLabelKnee(*args, **keywords): ... function FBIKLabelLeft (line 892) | def FBIKLabelLeft(*args, **keywords): ... function FBIKLabelLeg (line 893) | def FBIKLabelLeg(*args, **keywords): ... function FBIKLabelMiddleFinger (line 894) | def FBIKLabelMiddleFinger(*args, **keywords): ... function FBIKLabelMiddleToe (line 895) | def FBIKLabelMiddleToe(*args, **keywords): ... function FBIKLabelNeck (line 896) | def FBIKLabelNeck(*args, **keywords): ... function FBIKLabelNone (line 897) | def FBIKLabelNone(*args, **keywords): ... function FBIKLabelPinky (line 898) | def FBIKLabelPinky(*args, **keywords): ... function FBIKLabelPinkyToe (line 899) | def FBIKLabelPinkyToe(*args, **keywords): ... function FBIKLabelRight (line 900) | def FBIKLabelRight(*args, **keywords): ... function FBIKLabelRingFinger (line 901) | def FBIKLabelRingFinger(*args, **keywords): ... function FBIKLabelRingToe (line 902) | def FBIKLabelRingToe(*args, **keywords): ... function FBIKLabelRoot (line 903) | def FBIKLabelRoot(*args, **keywords): ... function FBIKLabelShoulder (line 904) | def FBIKLabelShoulder(*args, **keywords): ... function FBIKLabelSpine (line 905) | def FBIKLabelSpine(*args, **keywords): ... function FBIKLabelThumb (line 906) | def FBIKLabelThumb(*args, **keywords): ... function FBIKLabelToeBase (line 907) | def FBIKLabelToeBase(*args, **keywords): ... function FilePathEditor (line 908) | def FilePathEditor(*args, **keywords): ... function FillHole (line 909) | def FillHole(*args, **keywords): ... function FilletBlendTool (line 910) | def FilletBlendTool(*args, **keywords): ... function FilletBlendToolOptions (line 911) | def FilletBlendToolOptions(*args, **keywords): ... function FineLevelComponentDisplay (line 912) | def FineLevelComponentDisplay(*args, **keywords): ... function Fire (line 913) | def Fire(*args, **keywords): ... function FireOptions (line 914) | def FireOptions(*args, **keywords): ... function Fireworks (line 915) | def Fireworks(*args, **keywords): ... function FireworksOptions (line 916) | def FireworksOptions(*args, **keywords): ... function FitBSpline (line 917) | def FitBSpline(*args, **keywords): ... function FitBSplineOptions (line 918) | def FitBSplineOptions(*args, **keywords): ... function Flare (line 919) | def Flare(*args, **keywords): ... function FlareOptions (line 920) | def FlareOptions(*args, **keywords): ... function FlipMesh (line 921) | def FlipMesh(*args, **keywords): ... function FlipTriangleEdge (line 922) | def FlipTriangleEdge(*args, **keywords): ... function FlipTubeDirection (line 923) | def FlipTubeDirection(*args, **keywords): ... function FlipUVs (line 924) | def FlipUVs(*args, **keywords): ... function FlipUVsOptions (line 925) | def FlipUVsOptions(*args, **keywords): ... function FloatSelectedObjects (line 926) | def FloatSelectedObjects(*args, **keywords): ... function FloatSelectedObjectsOptions (line 927) | def FloatSelectedObjectsOptions(*args, **keywords): ... function FloatSelectedPondObjects (line 928) | def FloatSelectedPondObjects(*args, **keywords): ... function FloatSelectedPondObjectsOptions (line 929) | def FloatSelectedPondObjectsOptions(*args, **keywords): ... function FloodSurfaces (line 930) | def FloodSurfaces(*args, **keywords): ... function FlowPathObject (line 931) | def FlowPathObject(*args, **keywords): ... function FlowPathObjectOptions (line 932) | def FlowPathObjectOptions(*args, **keywords): ... function FluidEmitter (line 933) | def FluidEmitter(*args, **keywords): ... function FluidEmitterOptions (line 934) | def FluidEmitterOptions(*args, **keywords): ... function FluidGradients (line 935) | def FluidGradients(*args, **keywords): ... function FluidGradientsOptions (line 936) | def FluidGradientsOptions(*args, **keywords): ... function FluidsToPolygons (line 937) | def FluidsToPolygons(*args, **keywords): ... function FourViewArrangement (line 938) | def FourViewArrangement(*args, **keywords): ... function FourViewLayout (line 939) | def FourViewLayout(*args, **keywords): ... function FrameAll (line 940) | def FrameAll(*args, **keywords): ... function FrameAllInAllViews (line 941) | def FrameAllInAllViews(*args, **keywords): ... function FrameNextTimeSliderBookmark (line 942) | def FrameNextTimeSliderBookmark(*args, **keywords): ... function FramePreviousTimeSliderBookmark (line 943) | def FramePreviousTimeSliderBookmark(*args, **keywords): ... function FrameSelected (line 944) | def FrameSelected(*args, **keywords): ... function FrameSelected2 (line 945) | def FrameSelected2(*args, **keywords): ... function FrameSelectedInAllViews (line 946) | def FrameSelectedInAllViews(*args, **keywords): ... function FrameSelectedWithoutChildren (line 947) | def FrameSelectedWithoutChildren(*args, **keywords): ... function FrameSelectedWithoutChildrenInAllViews (line 948) | def FrameSelectedWithoutChildrenInAllViews(*args, **keywords): ... function FrameTimeSliderBookmark (line 949) | def FrameTimeSliderBookmark(*args, **keywords): ... function FreeTangentWeight (line 950) | def FreeTangentWeight(*args, **keywords): ... function FreeformFillet (line 951) | def FreeformFillet(*args, **keywords): ... function FreeformFilletOptions (line 952) | def FreeformFilletOptions(*args, **keywords): ... function FreezeTransformations (line 953) | def FreezeTransformations(*args, **keywords): ... function FreezeTransformationsOptions (line 954) | def FreezeTransformationsOptions(*args, **keywords): ... function FrontPerspViewLayout (line 955) | def FrontPerspViewLayout(*args, **keywords): ... function FullCreaseSubdivSurface (line 956) | def FullCreaseSubdivSurface(*args, **keywords): ... function FullHotboxDisplay (line 957) | def FullHotboxDisplay(*args, **keywords): ... function GameExporterWnd (line 958) | def GameExporterWnd(*args, **keywords): ... function GeometryConstraint (line 959) | def GeometryConstraint(*args, **keywords): ... function GeometryConstraintOptions (line 960) | def GeometryConstraintOptions(*args, **keywords): ... function GeometryToBoundingBox (line 961) | def GeometryToBoundingBox(*args, **keywords): ... function GeometryToBoundingBoxOptions (line 962) | def GeometryToBoundingBoxOptions(*args, **keywords): ... function GetCartoonExample (line 963) | def GetCartoonExample(*args, **keywords): ... function GetFluidExample (line 964) | def GetFluidExample(*args, **keywords): ... function GetHairExample (line 965) | def GetHairExample(*args, **keywords): ... function GetOceanPondExample (line 966) | def GetOceanPondExample(*args, **keywords): ... function GetSettingsFromSelectedStroke (line 967) | def GetSettingsFromSelectedStroke(*args, **keywords): ... function GetToonExample (line 968) | def GetToonExample(*args, **keywords): ... function GlobalDiskCacheControl (line 969) | def GlobalDiskCacheControl(*args, **keywords): ... function GlobalStitch (line 970) | def GlobalStitch(*args, **keywords): ... function GlobalStitchOptions (line 971) | def GlobalStitchOptions(*args, **keywords): ... function GoToBindPose (line 972) | def GoToBindPose(*args, **keywords): ... function GoToBindPoseOptions (line 973) | def GoToBindPoseOptions(*args, **keywords): ... function GoToDefaultView (line 974) | def GoToDefaultView(*args, **keywords): ... function GoToMaxFrame (line 975) | def GoToMaxFrame(*args, **keywords): ... function GoToMinFrame (line 976) | def GoToMinFrame(*args, **keywords): ... function GoToNextDrivenKey (line 977) | def GoToNextDrivenKey(*args, **keywords): ... function GoToPreviousDrivenKey (line 978) | def GoToPreviousDrivenKey(*args, **keywords): ... function GoToWorkingFrame (line 979) | def GoToWorkingFrame(*args, **keywords): ... function Goal (line 980) | def Goal(*args, **keywords): ... function GoalOptions (line 981) | def GoalOptions(*args, **keywords): ... function GraphCopy (line 982) | def GraphCopy(*args, **keywords): ... function GraphCopyOptions (line 983) | def GraphCopyOptions(*args, **keywords): ... function GraphCut (line 984) | def GraphCut(*args, **keywords): ... function GraphCutOptions (line 985) | def GraphCutOptions(*args, **keywords): ... function GraphDelete (line 986) | def GraphDelete(*args, **keywords): ... function GraphDeleteOptions (line 987) | def GraphDeleteOptions(*args, **keywords): ... function GraphEditor (line 988) | def GraphEditor(*args, **keywords): ... function GraphEditorAbsoluteView (line 989) | def GraphEditorAbsoluteView(*args, **keywords): ... function GraphEditorAddInbetween (line 990) | def GraphEditorAddInbetween(*args, **keywords): ... function GraphEditorAlwaysDisplayTangents (line 991) | def GraphEditorAlwaysDisplayTangents(*args, **keywords): ... function GraphEditorDisableCurveSelection (line 992) | def GraphEditorDisableCurveSelection(*args, **keywords): ... function GraphEditorDisplayTangentActive (line 993) | def GraphEditorDisplayTangentActive(*args, **keywords): ... function GraphEditorDisplayValues (line 994) | def GraphEditorDisplayValues(*args, **keywords): ... function GraphEditorEnableCurveSelection (line 995) | def GraphEditorEnableCurveSelection(*args, **keywords): ... function GraphEditorFrameAll (line 996) | def GraphEditorFrameAll(*args, **keywords): ... function GraphEditorFrameCenterView (line 997) | def GraphEditorFrameCenterView(*args, **keywords): ... function GraphEditorFramePlaybackRange (line 998) | def GraphEditorFramePlaybackRange(*args, **keywords): ... function GraphEditorFrameSelected (line 999) | def GraphEditorFrameSelected(*args, **keywords): ... function GraphEditorLockChannel (line 1000) | def GraphEditorLockChannel(*args, **keywords): ... function GraphEditorNeverDisplayTangents (line 1001) | def GraphEditorNeverDisplayTangents(*args, **keywords): ... function GraphEditorNormalizedView (line 1002) | def GraphEditorNormalizedView(*args, **keywords): ... function GraphEditorRemoveInbetween (line 1003) | def GraphEditorRemoveInbetween(*args, **keywords): ... function GraphEditorStackedView (line 1004) | def GraphEditorStackedView(*args, **keywords): ... function GraphEditorUnlockChannel (line 1005) | def GraphEditorUnlockChannel(*args, **keywords): ... function GraphEditorValueLinesToggle (line 1006) | def GraphEditorValueLinesToggle(*args, **keywords): ... function GraphPaste (line 1007) | def GraphPaste(*args, **keywords): ... function GraphPasteOptions (line 1008) | def GraphPasteOptions(*args, **keywords): ... function GraphSnap (line 1009) | def GraphSnap(*args, **keywords): ... function GraphSnapOptions (line 1010) | def GraphSnapOptions(*args, **keywords): ... function Gravity (line 1011) | def Gravity(*args, **keywords): ... function GravityOptions (line 1012) | def GravityOptions(*args, **keywords): ... function GridOptions (line 1013) | def GridOptions(*args, **keywords): ... function GridUV (line 1014) | def GridUV(*args, **keywords): ... function GridUVOptions (line 1015) | def GridUVOptions(*args, **keywords): ... function Group (line 1016) | def Group(*args, **keywords): ... function GroupOptions (line 1017) | def GroupOptions(*args, **keywords): ... function GrowLoopPolygonSelectionRegion (line 1018) | def GrowLoopPolygonSelectionRegion(*args, **keywords): ... function GrowPolygonSelectionRegion (line 1019) | def GrowPolygonSelectionRegion(*args, **keywords): ... function HIKBodyPartMode (line 1020) | def HIKBodyPartMode(*args, **keywords): ... function HIKCharacterControlsTool (line 1021) | def HIKCharacterControlsTool(*args, **keywords): ... function HIKCycleMode (line 1022) | def HIKCycleMode(*args, **keywords): ... function HIKFullBodyMode (line 1023) | def HIKFullBodyMode(*args, **keywords): ... function HIKLiveConnectionTool (line 1024) | def HIKLiveConnectionTool(*args, **keywords): ... function HIKPinRotate (line 1025) | def HIKPinRotate(*args, **keywords): ... function HIKPinTranslate (line 1026) | def HIKPinTranslate(*args, **keywords): ... function HIKSelectedMode (line 1027) | def HIKSelectedMode(*args, **keywords): ... function HIKSetBodyPartKey (line 1028) | def HIKSetBodyPartKey(*args, **keywords): ... function HIKSetFullBodyKey (line 1029) | def HIKSetFullBodyKey(*args, **keywords): ... function HIKSetSelectionKey (line 1030) | def HIKSetSelectionKey(*args, **keywords): ... function HIKToggleReleasePinning (line 1031) | def HIKToggleReleasePinning(*args, **keywords): ... function HairScaleTool (line 1032) | def HairScaleTool(*args, **keywords): ... function HairUVSetLinkingEditor (line 1033) | def HairUVSetLinkingEditor(*args, **keywords): ... function HardwareRenderBuffer (line 1034) | def HardwareRenderBuffer(*args, **keywords): ... function Help (line 1035) | def Help(*args, **keywords): ... function HideAll (line 1036) | def HideAll(*args, **keywords): ... function HideAllLabels (line 1037) | def HideAllLabels(*args, **keywords): ... function HideBoundingBox (line 1038) | def HideBoundingBox(*args, **keywords): ... function HideCameraManipulators (line 1039) | def HideCameraManipulators(*args, **keywords): ... function HideCameras (line 1040) | def HideCameras(*args, **keywords): ... function HideClusters (line 1041) | def HideClusters(*args, **keywords): ... function HideControllers (line 1042) | def HideControllers(*args, **keywords): ... function HideDeformers (line 1043) | def HideDeformers(*args, **keywords): ... function HideDeformingGeometry (line 1044) | def HideDeformingGeometry(*args, **keywords): ... function HideDynamicConstraints (line 1045) | def HideDynamicConstraints(*args, **keywords): ... function HideFluids (line 1046) | def HideFluids(*args, **keywords): ... function HideFollicles (line 1047) | def HideFollicles(*args, **keywords): ... function HideFur (line 1048) | def HideFur(*args, **keywords): ... function HideGeometry (line 1049) | def HideGeometry(*args, **keywords): ... function HideHairSystems (line 1050) | def HideHairSystems(*args, **keywords): ... function HideHotbox (line 1051) | def HideHotbox(*args, **keywords): ... function HideIKHandles (line 1052) | def HideIKHandles(*args, **keywords): ... function HideIntermediateObjects (line 1053) | def HideIntermediateObjects(*args, **keywords): ... function HideJoints (line 1054) | def HideJoints(*args, **keywords): ... function HideKinematics (line 1055) | def HideKinematics(*args, **keywords): ... function HideLattices (line 1056) | def HideLattices(*args, **keywords): ... function HideLightManipulators (line 1057) | def HideLightManipulators(*args, **keywords): ... function HideLights (line 1058) | def HideLights(*args, **keywords): ... function HideManipulators (line 1059) | def HideManipulators(*args, **keywords): ... function HideMarkers (line 1060) | def HideMarkers(*args, **keywords): ... function HideNCloths (line 1061) | def HideNCloths(*args, **keywords): ... function HideNParticles (line 1062) | def HideNParticles(*args, **keywords): ... function HideNRigids (line 1063) | def HideNRigids(*args, **keywords): ... function HideNURBSCurves (line 1064) | def HideNURBSCurves(*args, **keywords): ... function HideNURBSSurfaces (line 1065) | def HideNURBSSurfaces(*args, **keywords): ... function HideNonlinears (line 1066) | def HideNonlinears(*args, **keywords): ... function HideObjectGeometry (line 1067) | def HideObjectGeometry(*args, **keywords): ... function HidePlanes (line 1068) | def HidePlanes(*args, **keywords): ... function HidePolygonSurfaces (line 1069) | def HidePolygonSurfaces(*args, **keywords): ... function HideSculptObjects (line 1070) | def HideSculptObjects(*args, **keywords): ... function HideSelectedObjects (line 1071) | def HideSelectedObjects(*args, **keywords): ... function HideSmoothSkinInfluences (line 1072) | def HideSmoothSkinInfluences(*args, **keywords): ... function HideStrokeControlCurves (line 1073) | def HideStrokeControlCurves(*args, **keywords): ... function HideStrokePathCurves (line 1074) | def HideStrokePathCurves(*args, **keywords): ... function HideStrokes (line 1075) | def HideStrokes(*args, **keywords): ... function HideSubdivSurfaces (line 1076) | def HideSubdivSurfaces(*args, **keywords): ... function HideTexturePlacements (line 1077) | def HideTexturePlacements(*args, **keywords): ... function HideUIElements (line 1078) | def HideUIElements(*args, **keywords): ... function HideUnselectedCVs (line 1079) | def HideUnselectedCVs(*args, **keywords): ... function HideUnselectedObjects (line 1080) | def HideUnselectedObjects(*args, **keywords): ... function HideWrapInfluences (line 1081) | def HideWrapInfluences(*args, **keywords): ... function HighQualityDisplay (line 1082) | def HighQualityDisplay(*args, **keywords): ... function HighlightWhatsNew (line 1083) | def HighlightWhatsNew(*args, **keywords): ... function HoldCurrentKeys (line 1084) | def HoldCurrentKeys(*args, **keywords): ... function HotkeyPreferencesWindow (line 1085) | def HotkeyPreferencesWindow(*args, **keywords): ... function HyperGraphPanelRedoViewChange (line 1086) | def HyperGraphPanelRedoViewChange(*args, **keywords): ... function HyperGraphPanelUndoViewChange (line 1087) | def HyperGraphPanelUndoViewChange(*args, **keywords): ... function HypergraphDGWindow (line 1088) | def HypergraphDGWindow(*args, **keywords): ... function HypergraphDecreaseDepth (line 1089) | def HypergraphDecreaseDepth(*args, **keywords): ... function HypergraphHierarchyWindow (line 1090) | def HypergraphHierarchyWindow(*args, **keywords): ... function HypergraphIncreaseDepth (line 1091) | def HypergraphIncreaseDepth(*args, **keywords): ... function HypergraphWindow (line 1092) | def HypergraphWindow(*args, **keywords): ... function HypershadeCloseActiveTab (line 1093) | def HypershadeCloseActiveTab(*args, **keywords): ... function HypershadeCloseAllTabs (line 1094) | def HypershadeCloseAllTabs(*args, **keywords): ... function HypershadeCollapseAsset (line 1095) | def HypershadeCollapseAsset(*args, **keywords): ... function HypershadeConnectSelected (line 1096) | def HypershadeConnectSelected(*args, **keywords): ... function HypershadeConvertPSDToFileTexture (line 1097) | def HypershadeConvertPSDToFileTexture(*args, **keywords): ... function HypershadeConvertPSDToLayeredTexture (line 1098) | def HypershadeConvertPSDToLayeredTexture(*args, **keywords): ... function HypershadeConvertToFileTexture (line 1099) | def HypershadeConvertToFileTexture(*args, **keywords): ... function HypershadeConvertToFileTextureOptionBox (line 1100) | def HypershadeConvertToFileTextureOptionBox(*args, **keywords): ... function HypershadeCreateAsset (line 1101) | def HypershadeCreateAsset(*args, **keywords): ... function HypershadeCreateContainerOptions (line 1102) | def HypershadeCreateContainerOptions(*args, **keywords): ... function HypershadeCreateNewTab (line 1103) | def HypershadeCreateNewTab(*args, **keywords): ... function HypershadeCreatePSDFile (line 1104) | def HypershadeCreatePSDFile(*args, **keywords): ... function HypershadeCreateTab (line 1105) | def HypershadeCreateTab(*args, **keywords): ... function HypershadeDeleteAllBakeSets (line 1106) | def HypershadeDeleteAllBakeSets(*args, **keywords): ... function HypershadeDeleteAllCamerasAndImagePlanes (line 1107) | def HypershadeDeleteAllCamerasAndImagePlanes(*args, **keywords): ... function HypershadeDeleteAllLights (line 1108) | def HypershadeDeleteAllLights(*args, **keywords): ... function HypershadeDeleteAllShadingGroupsAndMaterials (line 1109) | def HypershadeDeleteAllShadingGroupsAndMaterials(*args, **keywords): ... function HypershadeDeleteAllTextures (line 1110) | def HypershadeDeleteAllTextures(*args, **keywords): ... function HypershadeDeleteAllUtilities (line 1111) | def HypershadeDeleteAllUtilities(*args, **keywords): ... function HypershadeDeleteDuplicateShadingNetworks (line 1112) | def HypershadeDeleteDuplicateShadingNetworks(*args, **keywords): ... function HypershadeDeleteNodes (line 1113) | def HypershadeDeleteNodes(*args, **keywords): ... function HypershadeDeleteSelected (line 1114) | def HypershadeDeleteSelected(*args, **keywords): ... function HypershadeDeleteUnusedNodes (line 1115) | def HypershadeDeleteUnusedNodes(*args, **keywords): ... function HypershadeDisplayAllShapes (line 1116) | def HypershadeDisplayAllShapes(*args, **keywords): ... function HypershadeDisplayAsExtraLargeSwatches (line 1117) | def HypershadeDisplayAsExtraLargeSwatches(*args, **keywords): ... function HypershadeDisplayAsIcons (line 1118) | def HypershadeDisplayAsIcons(*args, **keywords): ... function HypershadeDisplayAsLargeSwatches (line 1119) | def HypershadeDisplayAsLargeSwatches(*args, **keywords): ... function HypershadeDisplayAsList (line 1120) | def HypershadeDisplayAsList(*args, **keywords): ... function HypershadeDisplayAsMediumSwatches (line 1121) | def HypershadeDisplayAsMediumSwatches(*args, **keywords): ... function HypershadeDisplayAsSmallSwatches (line 1122) | def HypershadeDisplayAsSmallSwatches(*args, **keywords): ... function HypershadeDisplayInterestingShapes (line 1123) | def HypershadeDisplayInterestingShapes(*args, **keywords): ... function HypershadeDisplayNoShapes (line 1124) | def HypershadeDisplayNoShapes(*args, **keywords): ... function HypershadeDuplicateShadingNetwork (line 1125) | def HypershadeDuplicateShadingNetwork(*args, **keywords): ... function HypershadeDuplicateWithConnections (line 1126) | def HypershadeDuplicateWithConnections(*args, **keywords): ... function HypershadeDuplicateWithoutNetwork (line 1127) | def HypershadeDuplicateWithoutNetwork(*args, **keywords): ... function HypershadeEditPSDFile (line 1128) | def HypershadeEditPSDFile(*args, **keywords): ... function HypershadeEditTexture (line 1129) | def HypershadeEditTexture(*args, **keywords): ... function HypershadeExpandAsset (line 1130) | def HypershadeExpandAsset(*args, **keywords): ... function HypershadeExportSelectedNetwork (line 1131) | def HypershadeExportSelectedNetwork(*args, **keywords): ... function HypershadeFrameAll (line 1132) | def HypershadeFrameAll(*args, **keywords): ... function HypershadeFrameSelected (line 1133) | def HypershadeFrameSelected(*args, **keywords): ... function HypershadeGraphAddSelected (line 1134) | def HypershadeGraphAddSelected(*args, **keywords): ... function HypershadeGraphClearGraph (line 1135) | def HypershadeGraphClearGraph(*args, **keywords): ... function HypershadeGraphDownstream (line 1136) | def HypershadeGraphDownstream(*args, **keywords): ... function HypershadeGraphMaterialsOnSelectedObjects (line 1137) | def HypershadeGraphMaterialsOnSelectedObjects(*args, **keywords): ... function HypershadeGraphRearrange (line 1138) | def HypershadeGraphRearrange(*args, **keywords): ... function HypershadeGraphRemoveDownstream (line 1139) | def HypershadeGraphRemoveDownstream(*args, **keywords): ... function HypershadeGraphRemoveSelected (line 1140) | def HypershadeGraphRemoveSelected(*args, **keywords): ... function HypershadeGraphRemoveUnselected (line 1141) | def HypershadeGraphRemoveUnselected(*args, **keywords): ... function HypershadeGraphRemoveUpstream (line 1142) | def HypershadeGraphRemoveUpstream(*args, **keywords): ... function HypershadeGraphUpDownstream (line 1143) | def HypershadeGraphUpDownstream(*args, **keywords): ... function HypershadeGraphUpstream (line 1144) | def HypershadeGraphUpstream(*args, **keywords): ... function HypershadeGridToggleSnap (line 1145) | def HypershadeGridToggleSnap(*args, **keywords): ... function HypershadeGridToggleVisibility (line 1146) | def HypershadeGridToggleVisibility(*args, **keywords): ... function HypershadeHideAttributes (line 1147) | def HypershadeHideAttributes(*args, **keywords): ... function HypershadeImport (line 1148) | def HypershadeImport(*args, **keywords): ... function HypershadeIncreaseTraversalDepth (line 1149) | def HypershadeIncreaseTraversalDepth(*args, **keywords): ... function HypershadeMoveTabDown (line 1150) | def HypershadeMoveTabDown(*args, **keywords): ... function HypershadeMoveTabLeft (line 1151) | def HypershadeMoveTabLeft(*args, **keywords): ... function HypershadeMoveTabRight (line 1152) | def HypershadeMoveTabRight(*args, **keywords): ... function HypershadeMoveTabUp (line 1153) | def HypershadeMoveTabUp(*args, **keywords): ... function HypershadeOpenBinsWindow (line 1154) | def HypershadeOpenBinsWindow(*args, **keywords): ... function HypershadeOpenBrowserWindow (line 1155) | def HypershadeOpenBrowserWindow(*args, **keywords): ... function HypershadeOpenConnectWindow (line 1156) | def HypershadeOpenConnectWindow(*args, **keywords): ... function HypershadeOpenCreateWindow (line 1157) | def HypershadeOpenCreateWindow(*args, **keywords): ... function HypershadeOpenGraphEditorWindow (line 1158) | def HypershadeOpenGraphEditorWindow(*args, **keywords): ... function HypershadeOpenMaterialViewerWindow (line 1159) | def HypershadeOpenMaterialViewerWindow(*args, **keywords): ... function HypershadeOpenModelEditorWindow (line 1160) | def HypershadeOpenModelEditorWindow(*args, **keywords): ... function HypershadeOpenOutlinerWindow (line 1161) | def HypershadeOpenOutlinerWindow(*args, **keywords): ... function HypershadeOpenPropertyEditorWindow (line 1162) | def HypershadeOpenPropertyEditorWindow(*args, **keywords): ... function HypershadeOpenRenderViewWindow (line 1163) | def HypershadeOpenRenderViewWindow(*args, **keywords): ... function HypershadeOpenSpreadSheetWindow (line 1164) | def HypershadeOpenSpreadSheetWindow(*args, **keywords): ... function HypershadeOpenUVEditorWindow (line 1165) | def HypershadeOpenUVEditorWindow(*args, **keywords): ... function HypershadeOutlinerPerspLayout (line 1166) | def HypershadeOutlinerPerspLayout(*args, **keywords): ... function HypershadePerspLayout (line 1167) | def HypershadePerspLayout(*args, **keywords): ... function HypershadePickWalkDown (line 1168) | def HypershadePickWalkDown(*args, **keywords): ... function HypershadePickWalkLeft (line 1169) | def HypershadePickWalkLeft(*args, **keywords): ... function HypershadePickWalkRight (line 1170) | def HypershadePickWalkRight(*args, **keywords): ... function HypershadePickWalkUp (line 1171) | def HypershadePickWalkUp(*args, **keywords): ... function HypershadePinSelected (line 1172) | def HypershadePinSelected(*args, **keywords): ... function HypershadePublishConnections (line 1173) | def HypershadePublishConnections(*args, **keywords): ... function HypershadeReduceTraversalDepth (line 1174) | def HypershadeReduceTraversalDepth(*args, **keywords): ... function HypershadeRefreshAllSwatchesOnDisk (line 1175) | def HypershadeRefreshAllSwatchesOnDisk(*args, **keywords): ... function HypershadeRefreshFileListing (line 1176) | def HypershadeRefreshFileListing(*args, **keywords): ... function HypershadeRefreshSelectedSwatches (line 1177) | def HypershadeRefreshSelectedSwatches(*args, **keywords): ... function HypershadeRefreshSelectedSwatchesOnDisk (line 1178) | def HypershadeRefreshSelectedSwatchesOnDisk(*args, **keywords): ... function HypershadeRemoveAsset (line 1179) | def HypershadeRemoveAsset(*args, **keywords): ... function HypershadeRemoveTab (line 1180) | def HypershadeRemoveTab(*args, **keywords): ... function HypershadeRenameActiveTab (line 1181) | def HypershadeRenameActiveTab(*args, **keywords): ... function HypershadeRenameTab (line 1182) | def HypershadeRenameTab(*args, **keywords): ... function HypershadeRenderPerspLayout (line 1183) | def HypershadeRenderPerspLayout(*args, **keywords): ... function HypershadeRenderTextureRange (line 1184) | def HypershadeRenderTextureRange(*args, **keywords): ... function HypershadeRenderTextureRangeOptions (line 1185) | def HypershadeRenderTextureRangeOptions(*args, **keywords): ... function HypershadeRestoreLastClosedTab (line 1186) | def HypershadeRestoreLastClosedTab(*args, **keywords): ... function HypershadeRevertSelectedSwatches (line 1187) | def HypershadeRevertSelectedSwatches(*args, **keywords): ... function HypershadeRevertToDefaultTabs (line 1188) | def HypershadeRevertToDefaultTabs(*args, **keywords): ... function HypershadeSaveSwatchesToDisk (line 1189) | def HypershadeSaveSwatchesToDisk(*args, **keywords): ... function HypershadeSelectBakeSets (line 1190) | def HypershadeSelectBakeSets(*args, **keywords): ... function HypershadeSelectCamerasAndImagePlanes (line 1191) | def HypershadeSelectCamerasAndImagePlanes(*args, **keywords): ... function HypershadeSelectConnected (line 1192) | def HypershadeSelectConnected(*args, **keywords): ... function HypershadeSelectDownStream (line 1193) | def HypershadeSelectDownStream(*args, **keywords): ... function HypershadeSelectLights (line 1194) | def HypershadeSelectLights(*args, **keywords): ... function HypershadeSelectMaterialsFromObjects (line 1195) | def HypershadeSelectMaterialsFromObjects(*args, **keywords): ... function HypershadeSelectObjectsWithMaterials (line 1196) | def HypershadeSelectObjectsWithMaterials(*args, **keywords): ... function HypershadeSelectShadingGroupsAndMaterials (line 1197) | def HypershadeSelectShadingGroupsAndMaterials(*args, **keywords): ... function HypershadeSelectTextures (line 1198) | def HypershadeSelectTextures(*args, **keywords): ... function HypershadeSelectUpStream (line 1199) | def HypershadeSelectUpStream(*args, **keywords): ... function HypershadeSelectUtilities (line 1200) | def HypershadeSelectUtilities(*args, **keywords): ... function HypershadeSetLargeNodeSwatchSize (line 1201) | def HypershadeSetLargeNodeSwatchSize(*args, **keywords): ... function HypershadeSetSmallNodeSwatchSize (line 1202) | def HypershadeSetSmallNodeSwatchSize(*args, **keywords): ... function HypershadeSetTraversalDepthUnlim (line 1203) | def HypershadeSetTraversalDepthUnlim(*args, **keywords): ... function HypershadeSetTraversalDepthZero (line 1204) | def HypershadeSetTraversalDepthZero(*args, **keywords): ... function HypershadeShapeMenuStateAll (line 1205) | def HypershadeShapeMenuStateAll(*args, **keywords): ... function HypershadeShapeMenuStateAllExceptShadingGroupMembers (line 1206) | def HypershadeShapeMenuStateAllExceptShadingGroupMembers(*args, **keywor... function HypershadeShapeMenuStateNoShapes (line 1207) | def HypershadeShapeMenuStateNoShapes(*args, **keywords): ... function HypershadeShowAllAttrs (line 1208) | def HypershadeShowAllAttrs(*args, **keywords): ... function HypershadeShowConnectedAttrs (line 1209) | def HypershadeShowConnectedAttrs(*args, **keywords): ... function HypershadeShowCustomAttrs (line 1210) | def HypershadeShowCustomAttrs(*args, **keywords): ... function HypershadeShowDirectoriesAndFiles (line 1211) | def HypershadeShowDirectoriesAndFiles(*args, **keywords): ... function HypershadeShowDirectoriesOnly (line 1212) | def HypershadeShowDirectoriesOnly(*args, **keywords): ... function HypershadeSortByName (line 1213) | def HypershadeSortByName(*args, **keywords): ... function HypershadeSortByTime (line 1214) | def HypershadeSortByTime(*args, **keywords): ... function HypershadeSortByType (line 1215) | def HypershadeSortByType(*args, **keywords): ... function HypershadeSortReverseOrder (line 1216) | def HypershadeSortReverseOrder(*args, **keywords): ... function HypershadeTestTexture (line 1217) | def HypershadeTestTexture(*args, **keywords): ... function HypershadeTestTextureOptions (line 1218) | def HypershadeTestTextureOptions(*args, **keywords): ... function HypershadeToggleAttrFilter (line 1219) | def HypershadeToggleAttrFilter(*args, **keywords): ... function HypershadeToggleCrosshairOnEdgeDragging (line 1220) | def HypershadeToggleCrosshairOnEdgeDragging(*args, **keywords): ... function HypershadeToggleNodeSwatchSize (line 1221) | def HypershadeToggleNodeSwatchSize(*args, **keywords): ... function HypershadeToggleNodeTitleMode (line 1222) | def HypershadeToggleNodeTitleMode(*args, **keywords): ... function HypershadeToggleShowNamespace (line 1223) | def HypershadeToggleShowNamespace(*args, **keywords): ... function HypershadeToggleTransformDisplay (line 1224) | def HypershadeToggleTransformDisplay(*args, **keywords): ... function HypershadeToggleUseAssetsAndPublishedAttributes (line 1225) | def HypershadeToggleUseAssetsAndPublishedAttributes(*args, **keywords): ... function HypershadeToggleZoomIn (line 1226) | def HypershadeToggleZoomIn(*args, **keywords): ... function HypershadeToggleZoomOut (line 1227) | def HypershadeToggleZoomOut(*args, **keywords): ... function HypershadeTransferAttributeValues (line 1228) | def HypershadeTransferAttributeValues(*args, **keywords): ... function HypershadeTransferAttributeValuesOptions (line 1229) | def HypershadeTransferAttributeValuesOptions(*args, **keywords): ... function HypershadeUnpinSelected (line 1230) | def HypershadeUnpinSelected(*args, **keywords): ... function HypershadeUpdatePSDNetworks (line 1231) | def HypershadeUpdatePSDNetworks(*args, **keywords): ... function HypershadeWindow (line 1232) | def HypershadeWindow(*args, **keywords): ... function IKHandleTool (line 1233) | def IKHandleTool(*args, **keywords): ... function IKHandleToolOptions (line 1234) | def IKHandleToolOptions(*args, **keywords): ... function IKSplineHandleTool (line 1235) | def IKSplineHandleTool(*args, **keywords): ... function IKSplineHandleToolOptions (line 1236) | def IKSplineHandleToolOptions(*args, **keywords): ... function IPROptions (line 1237) | def IPROptions(*args, **keywords): ... function IPRRenderIntoNewWindow (line 1238) | def IPRRenderIntoNewWindow(*args, **keywords): ... function IgnoreHardwareShader (line 1239) | def IgnoreHardwareShader(*args, **keywords): ... function IkHdsWin (line 1240) | def IkHdsWin(*args, **keywords): ... function IkfkjdsWin (line 1241) | def IkfkjdsWin(*args, **keywords): ... function Import (line 1242) | def Import(*args, **keywords): ... function ImportAnim (line 1243) | def ImportAnim(*args, **keywords): ... function ImportBluePencilFrames (line 1244) | def ImportBluePencilFrames(*args, **keywords): ... function ImportChannelSets (line 1245) | def ImportChannelSets(*args, **keywords): ... function ImportDeformerWeights (line 1246) | def ImportDeformerWeights(*args, **keywords): ... function ImportDeformerWeightsOptions (line 1247) | def ImportDeformerWeightsOptions(*args, **keywords): ... function ImportOptions (line 1248) | def ImportOptions(*args, **keywords): ... function ImportSkinWeightMaps (line 1249) | def ImportSkinWeightMaps(*args, **keywords): ... function ImportSkinWeightMapsOptions (line 1250) | def ImportSkinWeightMapsOptions(*args, **keywords): ... function ImportWorkspaceFiles (line 1251) | def ImportWorkspaceFiles(*args, **keywords): ... function InTangentAuto (line 1252) | def InTangentAuto(*args, **keywords): ... function InTangentAutoCustom (line 1253) | def InTangentAutoCustom(*args, **keywords): ... function InTangentAutoCustomOptions (line 1254) | def InTangentAutoCustomOptions(*args, **keywords): ... function InTangentAutoEase (line 1255) | def InTangentAutoEase(*args, **keywords): ... function InTangentAutoMix (line 1256) | def InTangentAutoMix(*args, **keywords): ... function InTangentClamped (line 1257) | def InTangentClamped(*args, **keywords): ... function InTangentFixed (line 1258) | def InTangentFixed(*args, **keywords): ... function InTangentFlat (line 1259) | def InTangentFlat(*args, **keywords): ... function InTangentLinear (line 1260) | def InTangentLinear(*args, **keywords): ... function InTangentPlateau (line 1261) | def InTangentPlateau(*args, **keywords): ... function InTangentSpline (line 1262) | def InTangentSpline(*args, **keywords): ... function InTangentStepNext (line 1263) | def InTangentStepNext(*args, **keywords): ... function InTangentStepped (line 1264) | def InTangentStepped(*args, **keywords): ... function IncreaseCheckerDensity (line 1265) | def IncreaseCheckerDensity(*args, **keywords): ... function IncreaseExposureCoarse (line 1266) | def IncreaseExposureCoarse(*args, **keywords): ... function IncreaseExposureFine (line 1267) | def IncreaseExposureFine(*args, **keywords): ... function IncreaseGammaCoarse (line 1268) | def IncreaseGammaCoarse(*args, **keywords): ... function IncreaseGammaFine (line 1269) | def IncreaseGammaFine(*args, **keywords): ... function IncreaseManipulatorSize (line 1270) | def IncreaseManipulatorSize(*args, **keywords): ... function IncrementAndSave (line 1271) | def IncrementAndSave(*args, **keywords): ... function IncrementFluidCenter (line 1272) | def IncrementFluidCenter(*args, **keywords): ... function InitialFluidStates (line 1273) | def InitialFluidStates(*args, **keywords): ... function InitialFluidStatesOptions (line 1274) | def InitialFluidStatesOptions(*args, **keywords): ... function InsertBluePencilFrame (line 1275) | def InsertBluePencilFrame(*args, **keywords): ... function InsertEdgeLoopTool (line 1276) | def InsertEdgeLoopTool(*args, **keywords): ... function InsertEdgeLoopToolOptions (line 1277) | def InsertEdgeLoopToolOptions(*args, **keywords): ... function InsertIsoparms (line 1278) | def InsertIsoparms(*args, **keywords): ... function InsertIsoparmsOptions (line 1279) | def InsertIsoparmsOptions(*args, **keywords): ... function InsertJointTool (line 1280) | def InsertJointTool(*args, **keywords): ... function InsertKey (line 1281) | def InsertKey(*args, **keywords): ... function InsertKeyRotate (line 1282) | def InsertKeyRotate(*args, **keywords): ... function InsertKeyScale (line 1283) | def InsertKeyScale(*args, **keywords): ... function InsertKeyToolActivate (line 1284) | def InsertKeyToolActivate(*args, **keywords): ... function InsertKeyToolDeactivate (line 1285) | def InsertKeyToolDeactivate(*args, **keywords): ... function InsertKeyTranslate (line 1286) | def InsertKeyTranslate(*args, **keywords): ... function InsertKeysTool (line 1287) | def InsertKeysTool(*args, **keywords): ... function InsertKeysToolOptions (line 1288) | def InsertKeysToolOptions(*args, **keywords): ... function InsertKnot (line 1289) | def InsertKnot(*args, **keywords): ... function InsertKnotOptions (line 1290) | def InsertKnotOptions(*args, **keywords): ... function InteractiveBindSkin (line 1291) | def InteractiveBindSkin(*args, **keywords): ... function InteractiveBindSkinOptions (line 1292) | def InteractiveBindSkinOptions(*args, **keywords): ... function InteractivePlayback (line 1293) | def InteractivePlayback(*args, **keywords): ... function InteractiveSplitTool (line 1294) | def InteractiveSplitTool(*args, **keywords): ... function InteractiveSplitToolOptions (line 1295) | def InteractiveSplitToolOptions(*args, **keywords): ... function IntersectCurve (line 1296) | def IntersectCurve(*args, **keywords): ... function IntersectCurveOptions (line 1297) | def IntersectCurveOptions(*args, **keywords): ... function IntersectSurfaces (line 1298) | def IntersectSurfaces(*args, **keywords): ... function IntersectSurfacesOptions (line 1299) | def IntersectSurfacesOptions(*args, **keywords): ... function InvertSelection (line 1300) | def InvertSelection(*args, **keywords): ... function JdsWin (line 1301) | def JdsWin(*args, **keywords): ... function JointTool (line 1302) | def JointTool(*args, **keywords): ... function JointToolOptions (line 1303) | def JointToolOptions(*args, **keywords): ... function KeyBlendShapeTargetsWeight (line 1304) | def KeyBlendShapeTargetsWeight(*args, **keywords): ... function KeyframeTangentMarkingMenu (line 1305) | def KeyframeTangentMarkingMenu(*args, **keywords): ... function KeyframeTangentMarkingMenuPopDown (line 1306) | def KeyframeTangentMarkingMenuPopDown(*args, **keywords): ... function LODGenerateMeshes (line 1307) | def LODGenerateMeshes(*args, **keywords): ... function LODGenerateMeshesOptions (line 1308) | def LODGenerateMeshesOptions(*args, **keywords): ... function LabelBasedOnJointNames (line 1309) | def LabelBasedOnJointNames(*args, **keywords): ... function LassoTool (line 1310) | def LassoTool(*args, **keywords): ... function LastActionTool (line 1311) | def LastActionTool(*args, **keywords): ... function LatticeDeformKeysTool (line 1312) | def LatticeDeformKeysTool(*args, **keywords): ... function LatticeDeformKeysToolOptions (line 1313) | def LatticeDeformKeysToolOptions(*args, **keywords): ... function LatticeUVTool (line 1314) | def LatticeUVTool(*args, **keywords): ... function LatticeUVToolOptions (line 1315) | def LatticeUVToolOptions(*args, **keywords): ... function LayerRelationshipEditor (line 1316) | def LayerRelationshipEditor(*args, **keywords): ... function LayoutUV (line 1317) | def LayoutUV(*args, **keywords): ... function LayoutUVAlong (line 1318) | def LayoutUVAlong(*args, **keywords): ... function LayoutUVAlongOptions (line 1319) | def LayoutUVAlongOptions(*args, **keywords): ... function LayoutUVOptions (line 1320) | def LayoutUVOptions(*args, **keywords): ... function LayoutUVRectangle (line 1321) | def LayoutUVRectangle(*args, **keywords): ... function LevelOfDetailGroup (line 1322) | def LevelOfDetailGroup(*args, **keywords): ... function LevelOfDetailGroupOptions (line 1323) | def LevelOfDetailGroupOptions(*args, **keywords): ... function LevelOfDetailUngroup (line 1324) | def LevelOfDetailUngroup(*args, **keywords): ... function LightCentricLightLinkingEditor (line 1325) | def LightCentricLightLinkingEditor(*args, **keywords): ... function Lightning (line 1326) | def Lightning(*args, **keywords): ... function LightningOptions (line 1327) | def LightningOptions(*args, **keywords): ... function LockCamera (line 1328) | def LockCamera(*args, **keywords): ... function LockContainer (line 1329) | def LockContainer(*args, **keywords): ... function LockCurveLength (line 1330) | def LockCurveLength(*args, **keywords): ... function LockNormals (line 1331) | def LockNormals(*args, **keywords): ... function LockTangentWeight (line 1332) | def LockTangentWeight(*args, **keywords): ... function Loft (line 1333) | def Loft(*args, **keywords): ... function LoftOptions (line 1334) | def LoftOptions(*args, **keywords): ... function LongPolygonNormals (line 1335) | def LongPolygonNormals(*args, **keywords): ... function LookAtSelection (line 1336) | def LookAtSelection(*args, **keywords): ... function LoopBrushAnimation (line 1337) | def LoopBrushAnimation(*args, **keywords): ... function LoopBrushAnimationOptions (line 1338) | def LoopBrushAnimationOptions(*args, **keywords): ... function LowQualityDisplay (line 1339) | def LowQualityDisplay(*args, **keywords): ... function MLDeformer (line 1340) | def MLDeformer(*args, **keywords): ... function MLDeformerOptions (line 1341) | def MLDeformerOptions(*args, **keywords): ... function MakeBoats (line 1342) | def MakeBoats(*args, **keywords): ... function MakeBoatsOptions (line 1343) | def MakeBoatsOptions(*args, **keywords): ... function MakeBrushSpring (line 1344) | def MakeBrushSpring(*args, **keywords): ... function MakeBrushSpringOptions (line 1345) | def MakeBrushSpringOptions(*args, **keywords): ... function MakeCollide (line 1346) | def MakeCollide(*args, **keywords): ... function MakeCollideHair (line 1347) | def MakeCollideHair(*args, **keywords): ... function MakeCollideOptions (line 1348) | def MakeCollideOptions(*args, **keywords): ... function MakeCurvesDynamic (line 1349) | def MakeCurvesDynamic(*args, **keywords): ... function MakeCurvesDynamicOptions (line 1350) | def MakeCurvesDynamicOptions(*args, **keywords): ... function MakeFluidCollide (line 1351) | def MakeFluidCollide(*args, **keywords): ... function MakeFluidCollideOptions (line 1352) | def MakeFluidCollideOptions(*args, **keywords): ... function MakeHoleTool (line 1353) | def MakeHoleTool(*args, **keywords): ... function MakeHoleToolOptions (line 1354) | def MakeHoleToolOptions(*args, **keywords): ... function MakeLightLinks (line 1355) | def MakeLightLinks(*args, **keywords): ... function MakeLive (line 1356) | def MakeLive(*args, **keywords): ... function MakeMotionField (line 1357) | def MakeMotionField(*args, **keywords): ... function MakeMotorBoats (line 1358) | def MakeMotorBoats(*args, **keywords): ... function MakeMotorBoatsOptions (line 1359) | def MakeMotorBoatsOptions(*args, **keywords): ... function MakePaintable (line 1360) | def MakePaintable(*args, **keywords): ... function MakePondBoats (line 1361) | def MakePondBoats(*args, **keywords): ... function MakePondBoatsOptions (line 1362) | def MakePondBoatsOptions(*args, **keywords): ... function MakePondMotorBoats (line 1363) | def MakePondMotorBoats(*args, **keywords): ... function MakePondMotorBoatsOptions (line 1364) | def MakePondMotorBoatsOptions(*args, **keywords): ... function MakePressureCurve (line 1365) | def MakePressureCurve(*args, **keywords): ... function MakePressureCurveOptions (line 1366) | def MakePressureCurveOptions(*args, **keywords): ... function MakeShadowLinks (line 1367) | def MakeShadowLinks(*args, **keywords): ... function MakeStereoLinks (line 1368) | def MakeStereoLinks(*args, **keywords): ... function MakeUVInstanceCurrent (line 1369) | def MakeUVInstanceCurrent(*args, **keywords): ... function MapUVBorder (line 1370) | def MapUVBorder(*args, **keywords): ... function MapUVBorderOptions (line 1371) | def MapUVBorderOptions(*args, **keywords): ... function MarkingMenuPopDown (line 1372) | def MarkingMenuPopDown(*args, **keywords): ... function MarkingMenuPreferencesWindow (line 1373) | def MarkingMenuPreferencesWindow(*args, **keywords): ... function MatchPivots (line 1374) | def MatchPivots(*args, **keywords): ... function MatchPivotsOptions (line 1375) | def MatchPivotsOptions(*args, **keywords): ... function MatchRotation (line 1376) | def MatchRotation(*args, **keywords): ... function MatchRotationOptions (line 1377) | def MatchRotationOptions(*args, **keywords): ... function MatchScaling (line 1378) | def MatchScaling(*args, **keywords): ... function MatchScalingOptions (line 1379) | def MatchScalingOptions(*args, **keywords): ... function MatchTransform (line 1380) | def MatchTransform(*args, **keywords): ... function MatchTransformOptions (line 1381) | def MatchTransformOptions(*args, **keywords): ... function MatchTranslation (line 1382) | def MatchTranslation(*args, **keywords): ... function MatchTranslationOptions (line 1383) | def MatchTranslationOptions(*args, **keywords): ... function MatchUVs (line 1384) | def MatchUVs(*args, **keywords): ... function MatchUVsOptions (line 1385) | def MatchUVsOptions(*args, **keywords): ... function MediumPolygonNormals (line 1386) | def MediumPolygonNormals(*args, **keywords): ... function MediumQualityDisplay (line 1387) | def MediumQualityDisplay(*args, **keywords): ... function MergeCharacterSet (line 1388) | def MergeCharacterSet(*args, **keywords): ... function MergeEdgeTool (line 1389) | def MergeEdgeTool(*args, **keywords): ... function MergeEdgeToolOptions (line 1390) | def MergeEdgeToolOptions(*args, **keywords): ... function MergeMultipleEdges (line 1391) | def MergeMultipleEdges(*args, **keywords): ... function MergeMultipleEdgesOptions (line 1392) | def MergeMultipleEdgesOptions(*args, **keywords): ... function MergeToCenter (line 1393) | def MergeToCenter(*args, **keywords): ... function MergeUV (line 1394) | def MergeUV(*args, **keywords): ... function MergeUVOptions (line 1395) | def MergeUVOptions(*args, **keywords): ... function MergeVertexTool (line 1396) | def MergeVertexTool(*args, **keywords): ... function MergeVertexToolOptions (line 1397) | def MergeVertexToolOptions(*args, **keywords): ... function MergeVertices (line 1398) | def MergeVertices(*args, **keywords): ... function MergeVerticesOptions (line 1399) | def MergeVerticesOptions(*args, **keywords): ... function MinimizeApplication (line 1400) | def MinimizeApplication(*args, **keywords): ... function MirrorCutPolygonGeometry (line 1401) | def MirrorCutPolygonGeometry(*args, **keywords): ... function MirrorCutPolygonGeometryOptions (line 1402) | def MirrorCutPolygonGeometryOptions(*args, **keywords): ... function MirrorDeformerWeights (line 1403) | def MirrorDeformerWeights(*args, **keywords): ... function MirrorDeformerWeightsOptions (line 1404) | def MirrorDeformerWeightsOptions(*args, **keywords): ... function MirrorJoint (line 1405) | def MirrorJoint(*args, **keywords): ... function MirrorJointOptions (line 1406) | def MirrorJointOptions(*args, **keywords): ... function MirrorPolygonGeometry (line 1407) | def MirrorPolygonGeometry(*args, **keywords): ... function MirrorPolygonGeometryOptions (line 1408) | def MirrorPolygonGeometryOptions(*args, **keywords): ... function MirrorSkinWeights (line 1409) | def MirrorSkinWeights(*args, **keywords): ... function MirrorSkinWeightsOptions (line 1410) | def MirrorSkinWeightsOptions(*args, **keywords): ... function MirrorSubdivSurface (line 1411) | def MirrorSubdivSurface(*args, **keywords): ... function MirrorSubdivSurfaceOptions (line 1412) | def MirrorSubdivSurfaceOptions(*args, **keywords): ... function ModelingPanelRedoViewChange (line 1413) | def ModelingPanelRedoViewChange(*args, **keywords): ... function ModelingPanelUndoViewChange (line 1414) | def ModelingPanelUndoViewChange(*args, **keywords): ... function ModifyConstraintAxis (line 1415) | def ModifyConstraintAxis(*args, **keywords): ... function ModifyConstraintAxisOptions (line 1416) | def ModifyConstraintAxisOptions(*args, **keywords): ... function ModifyCurrentSet (line 1417) | def ModifyCurrentSet(*args, **keywords): ... function ModifyDisplacementPress (line 1418) | def ModifyDisplacementPress(*args, **keywords): ... function ModifyDisplacementRelease (line 1419) | def ModifyDisplacementRelease(*args, **keywords): ... function ModifyLowerRadiusPress (line 1420) | def ModifyLowerRadiusPress(*args, **keywords): ... function ModifyLowerRadiusRelease (line 1421) | def ModifyLowerRadiusRelease(*args, **keywords): ... function ModifyOpacityPress (line 1422) | def ModifyOpacityPress(*args, **keywords): ... function ModifyOpacityRelease (line 1423) | def ModifyOpacityRelease(*args, **keywords): ... function ModifyPaintValuePress (line 1424) | def ModifyPaintValuePress(*args, **keywords): ... function ModifyPaintValueRelease (line 1425) | def ModifyPaintValueRelease(*args, **keywords): ... function ModifyStampDepthPress (line 1426) | def ModifyStampDepthPress(*args, **keywords): ... function ModifyStampDepthRelease (line 1427) | def ModifyStampDepthRelease(*args, **keywords): ... function ModifyUVVectorPress (line 1428) | def ModifyUVVectorPress(*args, **keywords): ... function ModifyUVVectorRelease (line 1429) | def ModifyUVVectorRelease(*args, **keywords): ... function ModifyUpperRadiusPress (line 1430) | def ModifyUpperRadiusPress(*args, **keywords): ... function ModifyUpperRadiusRelease (line 1431) | def ModifyUpperRadiusRelease(*args, **keywords): ... function Morph (line 1432) | def Morph(*args, **keywords): ... function MorphOptions (line 1433) | def MorphOptions(*args, **keywords): ... function MoveCacheToInput (line 1434) | def MoveCacheToInput(*args, **keywords): ... function MoveCurveSeam (line 1435) | def MoveCurveSeam(*args, **keywords): ... function MoveDown (line 1436) | def MoveDown(*args, **keywords): ... function MoveIKtoFK (line 1437) | def MoveIKtoFK(*args, **keywords): ... function MoveInfluence (line 1438) | def MoveInfluence(*args, **keywords): ... function MoveLeft (line 1439) | def MoveLeft(*args, **keywords): ... function MoveNearestPickedKeyToolActivate (line 1440) | def MoveNearestPickedKeyToolActivate(*args, **keywords): ... function MoveNearestPickedKeyToolDeactivate (line 1441) | def MoveNearestPickedKeyToolDeactivate(*args, **keywords): ... function MoveNormalTool (line 1442) | def MoveNormalTool(*args, **keywords): ... function MoveNormalToolOptions (line 1443) | def MoveNormalToolOptions(*args, **keywords): ... function MovePolygonComponent (line 1444) | def MovePolygonComponent(*args, **keywords): ... function MovePolygonComponentOptions (line 1445) | def MovePolygonComponentOptions(*args, **keywords): ... function MoveRight (line 1446) | def MoveRight(*args, **keywords): ... function MoveRotateScaleTool (line 1447) | def MoveRotateScaleTool(*args, **keywords): ... function MoveRotateScaleToolToggleSnapMode (line 1448) | def MoveRotateScaleToolToggleSnapMode(*args, **keywords): ... function MoveRotateScaleToolToggleSnapRelativeMode (line 1449) | def MoveRotateScaleToolToggleSnapRelativeMode(*args, **keywords): ... function MoveSewUVs (line 1450) | def MoveSewUVs(*args, **keywords): ... function MoveSkinJointsTool (line 1451) | def MoveSkinJointsTool(*args, **keywords): ... function MoveSkinJointsToolOptions (line 1452) | def MoveSkinJointsToolOptions(*args, **keywords): ... function MoveSurfaceSeam (line 1453) | def MoveSurfaceSeam(*args, **keywords): ... function MoveTool (line 1454) | def MoveTool(*args, **keywords): ... function MoveToolOptions (line 1455) | def MoveToolOptions(*args, **keywords): ... function MoveUVTool (line 1456) | def MoveUVTool(*args, **keywords): ... function MoveUp (line 1457) | def MoveUp(*args, **keywords): ... function MultiCutTool (line 1458) | def MultiCutTool(*args, **keywords): ... function NCreateEmitter (line 1459) | def NCreateEmitter(*args, **keywords): ... function NCreateEmitterOptions (line 1460) | def NCreateEmitterOptions(*args, **keywords): ... function NEmitFromObject (line 1461) | def NEmitFromObject(*args, **keywords): ... function NEmitFromObjectOptions (line 1462) | def NEmitFromObjectOptions(*args, **keywords): ... function NParticleStyleBalls (line 1463) | def NParticleStyleBalls(*args, **keywords): ... function NParticleStyleCloud (line 1464) | def NParticleStyleCloud(*args, **keywords): ... function NParticleStylePoints (line 1465) | def NParticleStylePoints(*args, **keywords): ... function NParticleStyleThickCloud (line 1466) | def NParticleStyleThickCloud(*args, **keywords): ... function NParticleStyleWater (line 1467) | def NParticleStyleWater(*args, **keywords): ... function NParticleToPolygons (line 1468) | def NParticleToPolygons(*args, **keywords): ... function NParticleTool (line 1469) | def NParticleTool(*args, **keywords): ... function NParticleToolOptions (line 1470) | def NParticleToolOptions(*args, **keywords): ... function NURBSSmoothnessFine (line 1471) | def NURBSSmoothnessFine(*args, **keywords): ... function NURBSSmoothnessFineOptions (line 1472) | def NURBSSmoothnessFineOptions(*args, **keywords): ... function NURBSSmoothnessHull (line 1473) | def NURBSSmoothnessHull(*args, **keywords): ... function NURBSSmoothnessHullOptions (line 1474) | def NURBSSmoothnessHullOptions(*args, **keywords): ... function NURBSSmoothnessMedium (line 1475) | def NURBSSmoothnessMedium(*args, **keywords): ... function NURBSSmoothnessMediumOptions (line 1476) | def NURBSSmoothnessMediumOptions(*args, **keywords): ... function NURBSSmoothnessRough (line 1477) | def NURBSSmoothnessRough(*args, **keywords): ... function NURBSSmoothnessRoughOptions (line 1478) | def NURBSSmoothnessRoughOptions(*args, **keywords): ... function NURBSTexturePlacementTool (line 1479) | def NURBSTexturePlacementTool(*args, **keywords): ... function NURBSTexturePlacementToolOptions (line 1480) | def NURBSTexturePlacementToolOptions(*args, **keywords): ... function NURBSToPolygons (line 1481) | def NURBSToPolygons(*args, **keywords): ... function NURBSToPolygonsOptions (line 1482) | def NURBSToPolygonsOptions(*args, **keywords): ... function NamespaceEditor (line 1483) | def NamespaceEditor(*args, **keywords): ... function NewScene (line 1484) | def NewScene(*args, **keywords): ... function NewSceneOptions (line 1485) | def NewSceneOptions(*args, **keywords): ... function Newton (line 1486) | def Newton(*args, **keywords): ... function NewtonOptions (line 1487) | def NewtonOptions(*args, **keywords): ... function NextBluePencilFrame (line 1488) | def NextBluePencilFrame(*args, **keywords): ... function NextFrame (line 1489) | def NextFrame(*args, **keywords): ... function NextKey (line 1490) | def NextKey(*args, **keywords): ... function NextManipulatorHandle (line 1491) | def NextManipulatorHandle(*args, **keywords): ... function NextSkinPaintMode (line 1492) | def NextSkinPaintMode(*args, **keywords): ... function NextTimeSliderBookmark (line 1493) | def NextTimeSliderBookmark(*args, **keywords): ... function NextViewArrangement (line 1494) | def NextViewArrangement(*args, **keywords): ... function NodeEditorAddOnNodeCreate (line 1495) | def NodeEditorAddOnNodeCreate(*args, **keywords): ... function NodeEditorAdditiveGraphingMode (line 1496) | def NodeEditorAdditiveGraphingMode(*args, **keywords): ... function NodeEditorAutoSizeNodes (line 1497) | def NodeEditorAutoSizeNodes(*args, **keywords): ... function NodeEditorCloseActiveTab (line 1498) | def NodeEditorCloseActiveTab(*args, **keywords): ... function NodeEditorCloseAllTabs (line 1499) | def NodeEditorCloseAllTabs(*args, **keywords): ... function NodeEditorConnectNodeOnCreation (line 1500) | def NodeEditorConnectNodeOnCreation(*args, **keywords): ... function NodeEditorConnectOnDrop (line 1501) | def NodeEditorConnectOnDrop(*args, **keywords): ... function NodeEditorConnectSelectedNodes (line 1502) | def NodeEditorConnectSelectedNodes(*args, **keywords): ... function NodeEditorConnectedGraphingMode (line 1503) | def NodeEditorConnectedGraphingMode(*args, **keywords): ... function NodeEditorConnectionStyleBezier (line 1504) | def NodeEditorConnectionStyleBezier(*args, **keywords): ... function NodeEditorConnectionStyleCorner (line 1505) | def NodeEditorConnectionStyleCorner(*args, **keywords): ... function NodeEditorConnectionStyleSShape (line 1506) | def NodeEditorConnectionStyleSShape(*args, **keywords): ... function NodeEditorConnectionStyleStraight (line 1507) | def NodeEditorConnectionStyleStraight(*args, **keywords): ... function NodeEditorCopy (line 1508) | def NodeEditorCopy(*args, **keywords): ... function NodeEditorCopyConnectionsOnPaste (line 1509) | def NodeEditorCopyConnectionsOnPaste(*args, **keywords): ... function NodeEditorCreateNodePopup (line 1510) | def NodeEditorCreateNodePopup(*args, **keywords): ... function NodeEditorCreateTab (line 1511) | def NodeEditorCreateTab(*args, **keywords): ... function NodeEditorCut (line 1512) | def NodeEditorCut(*args, **keywords): ... function NodeEditorDeleteNodes (line 1513) | def NodeEditorDeleteNodes(*args, **keywords): ... function NodeEditorExtendToShapes (line 1514) | def NodeEditorExtendToShapes(*args, **keywords): ... function NodeEditorGraphAddSelected (line 1515) | def NodeEditorGraphAddSelected(*args, **keywords): ... function NodeEditorGraphAllShapes (line 1516) | def NodeEditorGraphAllShapes(*args, **keywords): ... function NodeEditorGraphAllShapesExceptShading (line 1517) | def NodeEditorGraphAllShapesExceptShading(*args, **keywords): ... function NodeEditorGraphClearGraph (line 1518) | def NodeEditorGraphClearGraph(*args, **keywords): ... function NodeEditorGraphDownstream (line 1519) | def NodeEditorGraphDownstream(*args, **keywords): ... function NodeEditorGraphNoShapes (line 1520) | def NodeEditorGraphNoShapes(*args, **keywords): ... function NodeEditorGraphRearrange (line 1521) | def NodeEditorGraphRearrange(*args, **keywords): ... function NodeEditorGraphRemoveDownstream (line 1522) | def NodeEditorGraphRemoveDownstream(*args, **keywords): ... function NodeEditorGraphRemoveSelected (line 1523) | def NodeEditorGraphRemoveSelected(*args, **keywords): ... function NodeEditorGraphRemoveUnselected (line 1524) | def NodeEditorGraphRemoveUnselected(*args, **keywords): ... function NodeEditorGraphRemoveUpstream (line 1525) | def NodeEditorGraphRemoveUpstream(*args, **keywords): ... function NodeEditorGraphUpDownstream (line 1526) | def NodeEditorGraphUpDownstream(*args, **keywords): ... function NodeEditorGraphUpstream (line 1527) | def NodeEditorGraphUpstream(*args, **keywords): ... function NodeEditorGridToggleCrosshairOnEdgeDragging (line 1528) | def NodeEditorGridToggleCrosshairOnEdgeDragging(*args, **keywords): ... function NodeEditorGridToggleSnap (line 1529) | def NodeEditorGridToggleSnap(*args, **keywords): ... function NodeEditorGridToggleVisibility (line 1530) | def NodeEditorGridToggleVisibility(*args, **keywords): ... function NodeEditorHideAttributes (line 1531) | def NodeEditorHideAttributes(*args, **keywords): ... function NodeEditorHighlightConnectionsOnNodeSelection (line 1532) | def NodeEditorHighlightConnectionsOnNodeSelection(*args, **keywords): ... function NodeEditorIncreaseTraversalDepth (line 1533) | def NodeEditorIncreaseTraversalDepth(*args, **keywords): ... function NodeEditorLayout (line 1534) | def NodeEditorLayout(*args, **keywords): ... function NodeEditorPaste (line 1535) | def NodeEditorPaste(*args, **keywords): ... function NodeEditorPickWalkDown (line 1536) | def NodeEditorPickWalkDown(*args, **keywords): ... function NodeEditorPickWalkLeft (line 1537) | def NodeEditorPickWalkLeft(*args, **keywords): ... function NodeEditorPickWalkRight (line 1538) | def NodeEditorPickWalkRight(*args, **keywords): ... function NodeEditorPickWalkUp (line 1539) | def NodeEditorPickWalkUp(*args, **keywords): ... function NodeEditorPinByDefault (line 1540) | def NodeEditorPinByDefault(*args, **keywords): ... function NodeEditorPinSelected (line 1541) | def NodeEditorPinSelected(*args, **keywords): ... function NodeEditorRedockTornOffTab (line 1542) | def NodeEditorRedockTornOffTab(*args, **keywords): ... function NodeEditorReduceTraversalDepth (line 1543) | def NodeEditorReduceTraversalDepth(*args, **keywords): ... function NodeEditorRenameActiveTab (line 1544) | def NodeEditorRenameActiveTab(*args, **keywords): ... function NodeEditorRenderSwatches (line 1545) | def NodeEditorRenderSwatches(*args, **keywords): ... function NodeEditorRestoreLastClosedTab (line 1546) | def NodeEditorRestoreLastClosedTab(*args, **keywords): ... function NodeEditorSelectConnected (line 1547) | def NodeEditorSelectConnected(*args, **keywords): ... function NodeEditorSelectDownStream (line 1548) | def NodeEditorSelectDownStream(*args, **keywords): ... function NodeEditorSelectUpStream (line 1549) | def NodeEditorSelectUpStream(*args, **keywords): ... function NodeEditorSetLargeNodeSwatchSize (line 1550) | def NodeEditorSetLargeNodeSwatchSize(*args, **keywords): ... function NodeEditorSetSmallNodeSwatchSize (line 1551) | def NodeEditorSetSmallNodeSwatchSize(*args, **keywords): ... function NodeEditorSetTraversalDepthUnlim (line 1552) | def NodeEditorSetTraversalDepthUnlim(*args, **keywords): ... function NodeEditorSetTraversalDepthZero (line 1553) | def NodeEditorSetTraversalDepthZero(*args, **keywords): ... function NodeEditorShapeMenuStateAll (line 1554) | def NodeEditorShapeMenuStateAll(*args, **keywords): ... function NodeEditorShapeMenuStateAllExceptShadingGroupMembers (line 1555) | def NodeEditorShapeMenuStateAllExceptShadingGroupMembers(*args, **keywor... function NodeEditorShapeMenuStateNoShapes (line 1556) | def NodeEditorShapeMenuStateNoShapes(*args, **keywords): ... function NodeEditorShowAllAttrs (line 1557) | def NodeEditorShowAllAttrs(*args, **keywords): ... function NodeEditorShowAllCustomAttrs (line 1558) | def NodeEditorShowAllCustomAttrs(*args, **keywords): ... function NodeEditorShowConnectedAttrs (line 1559) | def NodeEditorShowConnectedAttrs(*args, **keywords): ... function NodeEditorShowCustomAttrs (line 1560) | def NodeEditorShowCustomAttrs(*args, **keywords): ... function NodeEditorToggleAttrFilter (line 1561) | def NodeEditorToggleAttrFilter(*args, **keywords): ... function NodeEditorToggleConsistentNodeNameSize (line 1562) | def NodeEditorToggleConsistentNodeNameSize(*args, **keywords): ... function NodeEditorToggleCreateNodePane (line 1563) | def NodeEditorToggleCreateNodePane(*args, **keywords): ... function NodeEditorToggleLockUnlock (line 1564) | def NodeEditorToggleLockUnlock(*args, **keywords): ... function NodeEditorToggleNodeSelectedPins (line 1565) | def NodeEditorToggleNodeSelectedPins(*args, **keywords): ... function NodeEditorToggleNodeSwatchSize (line 1566) | def NodeEditorToggleNodeSwatchSize(*args, **keywords): ... function NodeEditorToggleNodeTitleMode (line 1567) | def NodeEditorToggleNodeTitleMode(*args, **keywords): ... function NodeEditorToggleShowNamespace (line 1568) | def NodeEditorToggleShowNamespace(*args, **keywords): ... function NodeEditorToggleSyncedSelection (line 1569) | def NodeEditorToggleSyncedSelection(*args, **keywords): ... function NodeEditorToggleUseAssetsAndPublishedAttributes (line 1570) | def NodeEditorToggleUseAssetsAndPublishedAttributes(*args, **keywords): ... function NodeEditorToggleZoomIn (line 1571) | def NodeEditorToggleZoomIn(*args, **keywords): ... function NodeEditorToggleZoomOut (line 1572) | def NodeEditorToggleZoomOut(*args, **keywords): ... function NodeEditorTransforms (line 1573) | def NodeEditorTransforms(*args, **keywords): ... function NodeEditorUnitConversions (line 1574) | def NodeEditorUnitConversions(*args, **keywords): ... function NodeEditorUnpinSelected (line 1575) | def NodeEditorUnpinSelected(*args, **keywords): ... function NodeEditorWindow (line 1576) | def NodeEditorWindow(*args, **keywords): ... function NonSacredTool (line 1577) | def NonSacredTool(*args, **keywords): ... function NonWeightedTangents (line 1578) | def NonWeightedTangents(*args, **keywords): ... function NormalConstraint (line 1579) | def NormalConstraint(*args, **keywords): ... function NormalConstraintOptions (line 1580) | def NormalConstraintOptions(*args, **keywords): ... function NormalizeUVs (line 1581) | def NormalizeUVs(*args, **keywords): ... function NormalizeUVsOptions (line 1582) | def NormalizeUVsOptions(*args, **keywords): ... function NormalizeWeights (line 1583) | def NormalizeWeights(*args, **keywords): ... function NormalizeWeightsOptions (line 1584) | def NormalizeWeightsOptions(*args, **keywords): ... function NudgeSelectedKeysBackward (line 1585) | def NudgeSelectedKeysBackward(*args, **keywords): ... function NudgeSelectedKeysForward (line 1586) | def NudgeSelectedKeysForward(*args, **keywords): ... function NurbsCurveToBezier (line 1587) | def NurbsCurveToBezier(*args, **keywords): ... function ObjectCentricLightLinkingEditor (line 1588) | def ObjectCentricLightLinkingEditor(*args, **keywords): ... function OffsetCurve (line 1589) | def OffsetCurve(*args, **keywords): ... function OffsetCurveOnSurface (line 1590) | def OffsetCurveOnSurface(*args, **keywords): ... function OffsetCurveOnSurfaceOptions (line 1591) | def OffsetCurveOnSurfaceOptions(*args, **keywords): ... function OffsetCurveOptions (line 1592) | def OffsetCurveOptions(*args, **keywords): ... function OffsetEdgeLoopTool (line 1593) | def OffsetEdgeLoopTool(*args, **keywords): ... function OffsetEdgeLoopToolOptions (line 1594) | def OffsetEdgeLoopToolOptions(*args, **keywords): ... function OffsetSurfaces (line 1595) | def OffsetSurfaces(*args, **keywords): ... function OffsetSurfacesOptions (line 1596) | def OffsetSurfacesOptions(*args, **keywords): ... function OpenAELiveLink (line 1597) | def OpenAELiveLink(*args, **keywords): ... function OpenAREACommunity (line 1598) | def OpenAREACommunity(*args, **keywords): ... function OpenAREAForums (line 1599) | def OpenAREAForums(*args, **keywords): ... function OpenAnimTutorial (line 1600) | def OpenAnimTutorial(*args, **keywords): ... function OpenAutodeskAccount (line 1601) | def OpenAutodeskAccount(*args, **keywords): ... function OpenAutodeskExchange (line 1602) | def OpenAutodeskExchange(*args, **keywords): ... function OpenAutodeskStore (line 1603) | def OpenAutodeskStore(*args, **keywords): ... function OpenBasicsTutorial (line 1604) | def OpenBasicsTutorial(*args, **keywords): ... function OpenBifContentBrowser (line 1605) | def OpenBifContentBrowser(*args, **keywords): ... function OpenBluePencil (line 1606) | def OpenBluePencil(*args, **keywords): ... function OpenBrowserSetupAssistant (line 1607) | def OpenBrowserSetupAssistant(*args, **keywords): ... function OpenBugReport (line 1608) | def OpenBugReport(*args, **keywords): ... function OpenChannelBox (line 1609) | def OpenChannelBox(*args, **keywords): ... function OpenChannelsLayers (line 1610) | def OpenChannelsLayers(*args, **keywords): ... function OpenCharacterGenerator (line 1611) | def OpenCharacterGenerator(*args, **keywords): ... function OpenCloseCurve (line 1612) | def OpenCloseCurve(*args, **keywords): ... function OpenCloseCurveOptions (line 1613) | def OpenCloseCurveOptions(*args, **keywords): ... function OpenCloseSurfaces (line 1614) | def OpenCloseSurfaces(*args, **keywords): ... function OpenCloseSurfacesOptions (line 1615) | def OpenCloseSurfacesOptions(*args, **keywords): ... function OpenColorSetEditor (line 1616) | def OpenColorSetEditor(*args, **keywords): ... function OpenContentBrowser (line 1617) | def OpenContentBrowser(*args, **keywords): ... function OpenCreaseEditor (line 1618) | def OpenCreaseEditor(*args, **keywords): ... function OpenDGProfiler (line 1619) | def OpenDGProfiler(*args, **keywords): ... function OpenDesktopAnalytics (line 1620) | def OpenDesktopAnalytics(*args, **keywords): ... function OpenFBXReview (line 1621) | def OpenFBXReview(*args, **keywords): ... function OpenFacebook (line 1622) | def OpenFacebook(*args, **keywords): ... function OpenFeatureRequest (line 1623) | def OpenFeatureRequest(*args, **keywords): ... function OpenHomePage (line 1624) | def OpenHomePage(*args, **keywords): ... function OpenLSTutorial (line 1625) | def OpenLSTutorial(*args, **keywords): ... function OpenLayerEditor (line 1626) | def OpenLayerEditor(*args, **keywords): ... function OpenLearningChannel (line 1627) | def OpenLearningChannel(*args, **keywords): ... function OpenLearningPath (line 1628) | def OpenLearningPath(*args, **keywords): ... function OpenLightEditor (line 1629) | def OpenLightEditor(*args, **keywords): ... function OpenMASHContentBrowser (line 1630) | def OpenMASHContentBrowser(*args, **keywords): ... function OpenMelCmdRef (line 1631) | def OpenMelCmdRef(*args, **keywords): ... function OpenMenuFinder (line 1632) | def OpenMenuFinder(*args, **keywords): ... function OpenModTutorial (line 1633) | def OpenModTutorial(*args, **keywords): ... function OpenModelingToolkit (line 1634) | def OpenModelingToolkit(*args, **keywords): ... function OpenMotionTrailEditor (line 1635) | def OpenMotionTrailEditor(*args, **keywords): ... function OpenNodeAttrRef (line 1636) | def OpenNodeAttrRef(*args, **keywords): ... function OpenProductResearch (line 1637) | def OpenProductResearch(*args, **keywords): ... function OpenPyCmdRef (line 1638) | def OpenPyCmdRef(*args, **keywords): ... function OpenReleaseNotes (line 1639) | def OpenReleaseNotes(*args, **keywords): ... function OpenScene (line 1640) | def OpenScene(*args, **keywords): ... function OpenSceneOptions (line 1641) | def OpenSceneOptions(*args, **keywords): ... function OpenStartupMovies (line 1642) | def OpenStartupMovies(*args, **keywords): ... function OpenStereoRigManager (line 1643) | def OpenStereoRigManager(*args, **keywords): ... function OpenSupportCenter (line 1644) | def OpenSupportCenter(*args, **keywords): ... function OpenTimeSliderPrefs (line 1645) | def OpenTimeSliderPrefs(*args, **keywords): ... function OpenTinkercad (line 1646) | def OpenTinkercad(*args, **keywords): ... function OpenTrialTutorials (line 1647) | def OpenTrialTutorials(*args, **keywords): ... function OpenTutorials (line 1648) | def OpenTutorials(*args, **keywords): ... function OpenViewportPrefs (line 1649) | def OpenViewportPrefs(*args, **keywords): ... function OpenVisorForMeshes (line 1650) | def OpenVisorForMeshes(*args, **keywords): ... function OpenXGenEditor (line 1651) | def OpenXGenEditor(*args, **keywords): ... function OptimizeScene (line 1652) | def OptimizeScene(*args, **keywords): ... function OptimizeSceneOptions (line 1653) | def OptimizeSceneOptions(*args, **keywords): ... function OptimzeUVs (line 1654) | def OptimzeUVs(*args, **keywords): ... function OptimzeUVsOptions (line 1655) | def OptimzeUVsOptions(*args, **keywords): ... function OrientConstraint (line 1656) | def OrientConstraint(*args, **keywords): ... function OrientConstraintOptions (line 1657) | def OrientConstraintOptions(*args, **keywords): ... function OrientJoint (line 1658) | def OrientJoint(*args, **keywords): ... function OrientJointOptions (line 1659) | def OrientJointOptions(*args, **keywords): ... function OutTangentAuto (line 1660) | def OutTangentAuto(*args, **keywords): ... function OutTangentAutoCustom (line 1661) | def OutTangentAutoCustom(*args, **keywords): ... function OutTangentAutoCustomOptions (line 1662) | def OutTangentAutoCustomOptions(*args, **keywords): ... function OutTangentAutoEase (line 1663) | def OutTangentAutoEase(*args, **keywords): ... function OutTangentAutoMix (line 1664) | def OutTangentAutoMix(*args, **keywords): ... function OutTangentClamped (line 1665) | def OutTangentClamped(*args, **keywords): ... function OutTangentFixed (line 1666) | def OutTangentFixed(*args, **keywords): ... function OutTangentFlat (line 1667) | def OutTangentFlat(*args, **keywords): ... function OutTangentLinear (line 1668) | def OutTangentLinear(*args, **keywords): ... function OutTangentPlateau (line 1669) | def OutTangentPlateau(*args, **keywords): ... function OutTangentSpline (line 1670) | def OutTangentSpline(*args, **keywords): ... function OutTangentStepNext (line 1671) | def OutTangentStepNext(*args, **keywords): ... function OutTangentStepped (line 1672) | def OutTangentStepped(*args, **keywords): ... function OutlinerCollapseAllItems (line 1673) | def OutlinerCollapseAllItems(*args, **keywords): ... function OutlinerCollapseAllSelectedItems (line 1674) | def OutlinerCollapseAllSelectedItems(*args, **keywords): ... function OutlinerDoHide (line 1675) | def OutlinerDoHide(*args, **keywords): ... function OutlinerExpandAllItems (line 1676) | def OutlinerExpandAllItems(*args, **keywords): ... function OutlinerExpandAllSelectedItems (line 1677) | def OutlinerExpandAllSelectedItems(*args, **keywords): ... function OutlinerRenameSelectedItem (line 1678) | def OutlinerRenameSelectedItem(*args, **keywords): ... function OutlinerRevealSelected (line 1679) | def OutlinerRevealSelected(*args, **keywords): ... function OutlinerToggleAssignedMaterials (line 1680) | def OutlinerToggleAssignedMaterials(*args, **keywords): ... function OutlinerToggleAttributes (line 1681) | def OutlinerToggleAttributes(*args, **keywords): ... function OutlinerToggleAutoExpandLayers (line 1682) | def OutlinerToggleAutoExpandLayers(*args, **keywords): ... function OutlinerToggleConnected (line 1683) | def OutlinerToggleConnected(*args, **keywords): ... function OutlinerToggleDAGOnly (line 1684) | def OutlinerToggleDAGOnly(*args, **keywords): ... function OutlinerToggleIgnoreHidden (line 1685) | def OutlinerToggleIgnoreHidden(*args, **keywords): ... function OutlinerToggleIgnoreUseColor (line 1686) | def OutlinerToggleIgnoreUseColor(*args, **keywords): ... function OutlinerToggleNamespace (line 1687) | def OutlinerToggleNamespace(*args, **keywords): ... function OutlinerToggleOrganizeByClip (line 1688) | def OutlinerToggleOrganizeByClip(*args, **keywords): ... function OutlinerToggleOrganizeByLayer (line 1689) | def OutlinerToggleOrganizeByLayer(*args, **keywords): ... function OutlinerToggleReferenceMembers (line 1690) | def OutlinerToggleReferenceMembers(*args, **keywords): ... function OutlinerToggleReferenceNodes (line 1691) | def OutlinerToggleReferenceNodes(*args, **keywords): ... function OutlinerToggleSetMembers (line 1692) | def OutlinerToggleSetMembers(*args, **keywords): ... function OutlinerToggleShapes (line 1693) | def OutlinerToggleShapes(*args, **keywords): ... function OutlinerToggleShowMuteInformation (line 1694) | def OutlinerToggleShowMuteInformation(*args, **keywords): ... function OutlinerToggleTimeEditor (line 1695) | def OutlinerToggleTimeEditor(*args, **keywords): ... function OutlinerUnhide (line 1696) | def OutlinerUnhide(*args, **keywords): ... function OutlinerWindow (line 1697) | def OutlinerWindow(*args, **keywords): ... function OutputWindow (line 1698) | def OutputWindow(*args, **keywords): ... function PFXUVSetLinkingEditor (line 1699) | def PFXUVSetLinkingEditor(*args, **keywords): ... function PaintCacheTool (line 1700) | def PaintCacheTool(*args, **keywords): ... function PaintCacheToolOptions (line 1701) | def PaintCacheToolOptions(*args, **keywords): ... function PaintClusterWeightsTool (line 1702) | def PaintClusterWeightsTool(*args, **keywords): ... function PaintClusterWeightsToolOptions (line 1703) | def PaintClusterWeightsToolOptions(*args, **keywords): ... function PaintDeltaMushWeightsTool (line 1704) | def PaintDeltaMushWeightsTool(*args, **keywords): ... function PaintDeltaMushWeightsToolOptions (line 1705) | def PaintDeltaMushWeightsToolOptions(*args, **keywords): ... function PaintEffectPanelActivate (line 1706) | def PaintEffectPanelActivate(*args, **keywords): ... function PaintEffectPanelDeactivate (line 1707) | def PaintEffectPanelDeactivate(*args, **keywords): ... function PaintEffectsGlobalSettings (line 1708) | def PaintEffectsGlobalSettings(*args, **keywords): ... function PaintEffectsMeshQuality (line 1709) | def PaintEffectsMeshQuality(*args, **keywords): ... function PaintEffectsPanel (line 1710) | def PaintEffectsPanel(*args, **keywords): ... function PaintEffectsToCurve (line 1711) | def PaintEffectsToCurve(*args, **keywords): ... function PaintEffectsToCurveOptions (line 1712) | def PaintEffectsToCurveOptions(*args, **keywords): ... function PaintEffectsToNurbs (line 1713) | def PaintEffectsToNurbs(*args, **keywords): ... function PaintEffectsToNurbsOptions (line 1714) | def PaintEffectsToNurbsOptions(*args, **keywords): ... function PaintEffectsToPoly (line 1715) | def PaintEffectsToPoly(*args, **keywords): ... function PaintEffectsToPolyOptions (line 1716) | def PaintEffectsToPolyOptions(*args, **keywords): ... function PaintEffectsTool (line 1717) | def PaintEffectsTool(*args, **keywords): ... function PaintEffectsToolOptions (line 1718) | def PaintEffectsToolOptions(*args, **keywords): ... function PaintEffectsWindow (line 1719) | def PaintEffectsWindow(*args, **keywords): ... function PaintFluidsTool (line 1720) | def PaintFluidsTool(*args, **keywords): ... function PaintFluidsToolOptions (line 1721) | def PaintFluidsToolOptions(*args, **keywords): ... function PaintGeomCacheTool (line 1722) | def PaintGeomCacheTool(*args, **keywords): ... function PaintGeomCacheToolOptions (line 1723) | def PaintGeomCacheToolOptions(*args, **keywords): ... function PaintGrid (line 1724) | def PaintGrid(*args, **keywords): ... function PaintGridOptions (line 1725) | def PaintGridOptions(*args, **keywords): ... function PaintHairBaldness (line 1726) | def PaintHairBaldness(*args, **keywords): ... function PaintHairColor (line 1727) | def PaintHairColor(*args, **keywords): ... function PaintHairFollicles (line 1728) | def PaintHairFollicles(*args, **keywords): ... function PaintHairFolliclesOptions (line 1729) | def PaintHairFolliclesOptions(*args, **keywords): ... function PaintHairSpecularColor (line 1730) | def PaintHairSpecularColor(*args, **keywords): ... function PaintJiggleWeightsTool (line 1731) | def PaintJiggleWeightsTool(*args, **keywords): ... function PaintJiggleWeightsToolOptions (line 1732) | def PaintJiggleWeightsToolOptions(*args, **keywords): ... function PaintLatticeWeightsTool (line 1733) | def PaintLatticeWeightsTool(*args, **keywords): ... function PaintLatticeWeightsToolOptions (line 1734) | def PaintLatticeWeightsToolOptions(*args, **keywords): ... function PaintNonlinearWeightsTool (line 1735) | def PaintNonlinearWeightsTool(*args, **keywords): ... function PaintNonlinearWeightsToolOptions (line 1736) | def PaintNonlinearWeightsToolOptions(*args, **keywords): ... function PaintOnPaintableObjects (line 1737) | def PaintOnPaintableObjects(*args, **keywords): ... function PaintOnViewPlane (line 1738) | def PaintOnViewPlane(*args, **keywords): ... function PaintOperationMarkingMenuPress (line 1739) | def PaintOperationMarkingMenuPress(*args, **keywords): ... function PaintOperationMarkingMenuRelease (line 1740) | def PaintOperationMarkingMenuRelease(*args, **keywords): ... function PaintProximityWrapWeightsTool (line 1741) | def PaintProximityWrapWeightsTool(*args, **keywords): ... function PaintProximityWrapWeightsToolOptions (line 1742) | def PaintProximityWrapWeightsToolOptions(*args, **keywords): ... function PaintRandom (line 1743) | def PaintRandom(*args, **keywords): ... function PaintRandomOptions (line 1744) | def PaintRandomOptions(*args, **keywords): ... function PaintReduceWeightsTool (line 1745) | def PaintReduceWeightsTool(*args, **keywords): ... function PaintReduceWeightsToolOptions (line 1746) | def PaintReduceWeightsToolOptions(*args, **keywords): ... function PaintSetMembershipTool (line 1747) | def PaintSetMembershipTool(*args, **keywords): ... function PaintSetMembershipToolOptions (line 1748) | def PaintSetMembershipToolOptions(*args, **keywords): ... function PaintShrinkWrapWeightsTool (line 1749) | def PaintShrinkWrapWeightsTool(*args, **keywords): ... function PaintShrinkWrapWeightsToolOptions (line 1750) | def PaintShrinkWrapWeightsToolOptions(*args, **keywords): ... function PaintSoftWeights (line 1751) | def PaintSoftWeights(*args, **keywords): ... function PaintSoftWeightsOptions (line 1752) | def PaintSoftWeightsOptions(*args, **keywords): ... function PaintTensionWeightsTool (line 1753) | def PaintTensionWeightsTool(*args, **keywords): ... function PaintTensionWeightsToolOptions (line 1754) | def PaintTensionWeightsToolOptions(*args, **keywords): ... function PaintTextureDeformerWeightsTool (line 1755) | def PaintTextureDeformerWeightsTool(*args, **keywords): ... function PaintTextureDeformerWeightsToolOptions (line 1756) | def PaintTextureDeformerWeightsToolOptions(*args, **keywords): ... function PaintToonBorderColor (line 1757) | def PaintToonBorderColor(*args, **keywords): ... function PaintToonCreaseColor (line 1758) | def PaintToonCreaseColor(*args, **keywords): ... function PaintToonLineOffset (line 1759) | def PaintToonLineOffset(*args, **keywords): ... function PaintToonLineOpacity (line 1760) | def PaintToonLineOpacity(*args, **keywords): ... function PaintToonLineWidth (line 1761) | def PaintToonLineWidth(*args, **keywords): ... function PaintToonProfileColor (line 1762) | def PaintToonProfileColor(*args, **keywords): ... function PaintTransferAttributes (line 1763) | def PaintTransferAttributes(*args, **keywords): ... function PaintVertexColorTool (line 1764) | def PaintVertexColorTool(*args, **keywords): ... function PaintVertexColorToolOptions (line 1765) | def PaintVertexColorToolOptions(*args, **keywords): ... function PaintWireWeightsTool (line 1766) | def PaintWireWeightsTool(*args, **keywords): ... function PaintWireWeightsToolOptions (line 1767) | def PaintWireWeightsToolOptions(*args, **keywords): ... function PanZoomTool (line 1768) | def PanZoomTool(*args, **keywords): ... function PanePop (line 1769) | def PanePop(*args, **keywords): ... function PanelPreferencesWindow (line 1770) | def PanelPreferencesWindow(*args, **keywords): ... function ParameterTool (line 1771) | def ParameterTool(*args, **keywords): ... function Parent (line 1772) | def Parent(*args, **keywords): ... function ParentBaseWire (line 1773) | def ParentBaseWire(*args, **keywords): ... function ParentBaseWireOptions (line 1774) | def ParentBaseWireOptions(*args, **keywords): ... function ParentConstraint (line 1775) | def ParentConstraint(*args, **keywords): ... function ParentConstraintOptions (line 1776) | def ParentConstraintOptions(*args, **keywords): ... function ParentOptions (line 1777) | def ParentOptions(*args, **keywords): ... function PartSpriteWizard (line 1778) | def PartSpriteWizard(*args, **keywords): ... function PartialCreaseSubdivSurface (line 1779) | def PartialCreaseSubdivSurface(*args, **keywords): ... function ParticleCollisionEvents (line 1780) | def ParticleCollisionEvents(*args, **keywords): ... function ParticleFill (line 1781) | def ParticleFill(*args, **keywords): ... function ParticleFillOptions (line 1782) | def ParticleFillOptions(*args, **keywords): ... function ParticleInstancer (line 1783) | def ParticleInstancer(*args, **keywords): ... function ParticleInstancerOptions (line 1784) | def ParticleInstancerOptions(*args, **keywords): ... function ParticleTool (line 1785) | def ParticleTool(*args, **keywords): ... function ParticleToolOptions (line 1786) | def ParticleToolOptions(*args, **keywords): ... function PartitionEditor (line 1787) | def PartitionEditor(*args, **keywords): ... function PasteBluePencilFrame (line 1788) | def PasteBluePencilFrame(*args, **keywords): ... function PasteKeys (line 1789) | def PasteKeys(*args, **keywords): ... function PasteKeysOptions (line 1790) | def PasteKeysOptions(*args, **keywords): ... function PasteSelected (line 1791) | def PasteSelected(*args, **keywords): ... function PasteUVs (line 1792) | def PasteUVs(*args, **keywords): ... function PasteVertexSkinWeights (line 1793) | def PasteVertexSkinWeights(*args, **keywords): ... function PasteVertexWeights (line 1794) | def PasteVertexWeights(*args, **keywords): ... function PasteVertexWeightsOptions (line 1795) | def PasteVertexWeightsOptions(*args, **keywords): ... function PauseViewportEval (line 1796) | def PauseViewportEval(*args, **keywords): ... function PencilCurveTool (line 1797) | def PencilCurveTool(*args, **keywords): ... function PencilCurveToolOptions (line 1798) | def PencilCurveToolOptions(*args, **keywords): ... function PerPointEmissionRates (line 1799) | def PerPointEmissionRates(*args, **keywords): ... function PerformExportToBackburner (line 1800) | def PerformExportToBackburner(*args, **keywords): ... function PerformPrecompExport (line 1801) | def PerformPrecompExport(*args, **keywords): ... function PerformPrecompExportOptions (line 1802) | def PerformPrecompExportOptions(*args, **keywords): ... function PerformTessellationSetup (line 1803) | def PerformTessellationSetup(*args, **keywords): ... function PerformTessellationSetupOptions (line 1804) | def PerformTessellationSetupOptions(*args, **keywords): ... function PerformanceSettingsWindow (line 1805) | def PerformanceSettingsWindow(*args, **keywords): ... function PerspGraphHypergraphLayout (line 1806) | def PerspGraphHypergraphLayout(*args, **keywords): ... function PerspGraphLayout (line 1807) | def PerspGraphLayout(*args, **keywords): ... function PerspGraphOutlinerLayout (line 1808) | def PerspGraphOutlinerLayout(*args, **keywords): ... function PerspRelationshipEditorLayout (line 1809) | def PerspRelationshipEditorLayout(*args, **keywords): ... function PerspTextureLayout (line 1810) | def PerspTextureLayout(*args, **keywords): ... function PfxBrushTransfer (line 1811) | def PfxBrushTransfer(*args, **keywords): ... function PfxFlipTubeDir (line 1812) | def PfxFlipTubeDir(*args, **keywords): ... function PfxGetBrush (line 1813) | def PfxGetBrush(*args, **keywords): ... function PfxMakeCollide (line 1814) | def PfxMakeCollide(*args, **keywords): ... function PfxPresetBlend (line 1815) | def PfxPresetBlend(*args, **keywords): ... function PfxSetLineModifierObject (line 1816) | def PfxSetLineModifierObject(*args, **keywords): ... function PickColorActivate (line 1817) | def PickColorActivate(*args, **keywords): ... function PickColorDeactivate (line 1818) | def PickColorDeactivate(*args, **keywords): ... function PickWalkDown (line 1819) | def PickWalkDown(*args, **keywords): ... function PickWalkDownSelect (line 1820) | def PickWalkDownSelect(*args, **keywords): ... function PickWalkIn (line 1821) | def PickWalkIn(*args, **keywords): ... function PickWalkLeft (line 1822) | def PickWalkLeft(*args, **keywords): ... function PickWalkLeftSelect (line 1823) | def PickWalkLeftSelect(*args, **keywords): ... function PickWalkOut (line 1824) | def PickWalkOut(*args, **keywords): ... function PickWalkRight (line 1825) | def PickWalkRight(*args, **keywords): ... function PickWalkRightSelect (line 1826) | def PickWalkRightSelect(*args, **keywords): ... function PickWalkStopAtTransform (line 1827) | def PickWalkStopAtTransform(*args, **keywords): ... function PickWalkUp (line 1828) | def PickWalkUp(*args, **keywords): ... function PickWalkUpSelect (line 1829) | def PickWalkUpSelect(*args, **keywords): ... function PickWalkUseController (line 1830) | def PickWalkUseController(*args, **keywords): ... function PinSelection (line 1831) | def PinSelection(*args, **keywords): ... function PinSelectionOptions (line 1832) | def PinSelectionOptions(*args, **keywords): ... function PixelMoveDown (line 1833) | def PixelMoveDown(*args, **keywords): ... function PixelMoveLeft (line 1834) | def PixelMoveLeft(*args, **keywords): ... function PixelMoveRight (line 1835) | def PixelMoveRight(*args, **keywords): ... function PixelMoveUp (line 1836) | def PixelMoveUp(*args, **keywords): ... function Planar (line 1837) | def Planar(*args, **keywords): ... function PlanarOptions (line 1838) | def PlanarOptions(*args, **keywords): ... function PlaybackBackward (line 1839) | def PlaybackBackward(*args, **keywords): ... function PlaybackForward (line 1840) | def PlaybackForward(*args, **keywords): ... function PlaybackFree (line 1841) | def PlaybackFree(*args, **keywords): ... function PlaybackLoopContinuous (line 1842) | def PlaybackLoopContinuous(*args, **keywords): ... function PlaybackLoopOnce (line 1843) | def PlaybackLoopOnce(*args, **keywords): ... function PlaybackLoopOscillate (line 1844) | def PlaybackLoopOscillate(*args, **keywords): ... function PlaybackPefRealtime (line 1845) | def PlaybackPefRealtime(*args, **keywords): ... function PlaybackRangeAnimStartEnd (line 1846) | def PlaybackRangeAnimStartEnd(*args, **keywords): ... function PlaybackRangeEnabledClips (line 1847) | def PlaybackRangeEnabledClips(*args, **keywords): ... function PlaybackRangeHighlight (line 1848) | def PlaybackRangeHighlight(*args, **keywords): ... function PlaybackRangeMinMax (line 1849) | def PlaybackRangeMinMax(*args, **keywords): ... function PlaybackRangePrefs (line 1850) | def PlaybackRangePrefs(*args, **keywords): ... function PlaybackRangeSound (line 1851) | def PlaybackRangeSound(*args, **keywords): ... function PlaybackRangeStartEnd (line 1852) | def PlaybackRangeStartEnd(*args, **keywords): ... function PlaybackRealtime (line 1853) | def PlaybackRealtime(*args, **keywords): ... function PlaybackSteppedPreview (line 1854) | def PlaybackSteppedPreview(*args, **keywords): ... function PlaybackStop (line 1855) | def PlaybackStop(*args, **keywords): ... function PlaybackToggle (line 1856) | def PlaybackToggle(*args, **keywords): ... function PlayblastOptions (line 1857) | def PlayblastOptions(*args, **keywords): ... function PlayblastWindow (line 1858) | def PlayblastWindow(*args, **keywords): ... function PlayblastWindowOptions (line 1859) | def PlayblastWindowOptions(*args, **keywords): ... function PluginManager (line 1860) | def PluginManager(*args, **keywords): ... function PointConstraint (line 1861) | def PointConstraint(*args, **keywords): ... function PointConstraintOptions (line 1862) | def PointConstraintOptions(*args, **keywords): ... function PointOnCurve (line 1863) | def PointOnCurve(*args, **keywords): ... function PointOnCurveOptions (line 1864) | def PointOnCurveOptions(*args, **keywords): ... function PointOnPolyConstraint (line 1865) | def PointOnPolyConstraint(*args, **keywords): ... function PointOnPolyConstraintOptions (line 1866) | def PointOnPolyConstraintOptions(*args, **keywords): ... function PokePolygon (line 1867) | def PokePolygon(*args, **keywords): ... function PokePolygonOptions (line 1868) | def PokePolygonOptions(*args, **keywords): ... function PoleVectorConstraint (line 1869) | def PoleVectorConstraint(*args, **keywords): ... function PoleVectorConstraintOptions (line 1870) | def PoleVectorConstraintOptions(*args, **keywords): ... function PolyAssignSubdivHole (line 1871) | def PolyAssignSubdivHole(*args, **keywords): ... function PolyAssignSubdivHoleOptions (line 1872) | def PolyAssignSubdivHoleOptions(*args, **keywords): ... function PolyBevelCutback (line 1873) | def PolyBevelCutback(*args, **keywords): ... function PolyBevelCutbackOptions (line 1874) | def PolyBevelCutbackOptions(*args, **keywords): ... function PolyBrushMarkingMenu (line 1875) | def PolyBrushMarkingMenu(*args, **keywords): ... function PolyBrushMarkingMenuPopDown (line 1876) | def PolyBrushMarkingMenuPopDown(*args, **keywords): ... function PolyCircularize (line 1877) | def PolyCircularize(*args, **keywords): ... function PolyCircularizeOptions (line 1878) | def PolyCircularizeOptions(*args, **keywords): ... function PolyConvertToLoopAndDelete (line 1879) | def PolyConvertToLoopAndDelete(*args, **keywords): ... function PolyConvertToLoopAndDuplicate (line 1880) | def PolyConvertToLoopAndDuplicate(*args, **keywords): ... function PolyConvertToRingAndCollapse (line 1881) | def PolyConvertToRingAndCollapse(*args, **keywords): ... function PolyConvertToRingAndSplit (line 1882) | def PolyConvertToRingAndSplit(*args, **keywords): ... function PolyCreaseTool (line 1883) | def PolyCreaseTool(*args, **keywords): ... function PolyCreaseToolOptions (line 1884) | def PolyCreaseToolOptions(*args, **keywords): ... function PolyDisplayReset (line 1885) | def PolyDisplayReset(*args, **keywords): ... function PolyEditEdgeFlow (line 1886) | def PolyEditEdgeFlow(*args, **keywords): ... function PolyEditEdgeFlowOptions (line 1887) | def PolyEditEdgeFlowOptions(*args, **keywords): ... function PolyExtrude (line 1888) | def PolyExtrude(*args, **keywords): ... function PolyExtrudeEdges (line 1889) | def PolyExtrudeEdges(*args, **keywords): ... function PolyExtrudeEdgesOptions (line 1890) | def PolyExtrudeEdgesOptions(*args, **keywords): ... function PolyExtrudeFaces (line 1891) | def PolyExtrudeFaces(*args, **keywords): ... function PolyExtrudeFacesOptions (line 1892) | def PolyExtrudeFacesOptions(*args, **keywords): ... function PolyExtrudeOptions (line 1893) | def PolyExtrudeOptions(*args, **keywords): ... function PolyExtrudeVertices (line 1894) | def PolyExtrudeVertices(*args, **keywords): ... function PolyExtrudeVerticesOptions (line 1895) | def PolyExtrudeVerticesOptions(*args, **keywords): ... function PolyMerge (line 1896) | def PolyMerge(*args, **keywords): ... function PolyMergeEdges (line 1897) | def PolyMergeEdges(*args, **keywords): ... function PolyMergeEdgesOptions (line 1898) | def PolyMergeEdgesOptions(*args, **keywords): ... function PolyMergeOptions (line 1899) | def PolyMergeOptions(*args, **keywords): ... function PolyMergeVertices (line 1900) | def PolyMergeVertices(*args, **keywords): ... function PolyMergeVerticesOptions (line 1901) | def PolyMergeVerticesOptions(*args, **keywords): ... function PolyRemesh (line 1902) | def PolyRemesh(*args, **keywords): ... function PolyRemeshOptions (line 1903) | def PolyRemeshOptions(*args, **keywords): ... function PolyRemoveAllCrease (line 1904) | def PolyRemoveAllCrease(*args, **keywords): ... function PolyRemoveCrease (line 1905) | def PolyRemoveCrease(*args, **keywords): ... function PolyRetopo (line 1906) | def PolyRetopo(*args, **keywords): ... function PolyRetopoOptions (line 1907) | def PolyRetopoOptions(*args, **keywords): ... function PolySelectTool (line 1908) | def PolySelectTool(*args, **keywords): ... function PolySelectToolOptions (line 1909) | def PolySelectToolOptions(*args, **keywords): ... function PolySpinEdgeBackward (line 1910) | def PolySpinEdgeBackward(*args, **keywords): ... function PolySpinEdgeForward (line 1911) | def PolySpinEdgeForward(*args, **keywords): ... function PolygonApplyColor (line 1912) | def PolygonApplyColor(*args, **keywords): ... function PolygonApplyColorOptions (line 1913) | def PolygonApplyColorOptions(*args, **keywords): ... function PolygonBooleanCutOut (line 1914) | def PolygonBooleanCutOut(*args, **keywords): ... function PolygonBooleanCutOutOptions (line 1915) | def PolygonBooleanCutOutOptions(*args, **keywords): ... function PolygonBooleanDifference (line 1916) | def PolygonBooleanDifference(*args, **keywords): ... function PolygonBooleanDifferenceBA (line 1917) | def PolygonBooleanDifferenceBA(*args, **keywords): ... function PolygonBooleanDifferenceBAOptions (line 1918) | def PolygonBooleanDifferenceBAOptions(*args, **keywords): ... function PolygonBooleanDifferenceOptions (line 1919) | def PolygonBooleanDifferenceOptions(*args, **keywords): ... function PolygonBooleanHolePunch (line 1920) | def PolygonBooleanHolePunch(*args, **keywords): ... function PolygonBooleanHolePunchOptions (line 1921) | def PolygonBooleanHolePunchOptions(*args, **keywords): ... function PolygonBooleanIntersection (line 1922) | def PolygonBooleanIntersection(*args, **keywords): ... function PolygonBooleanIntersectionOptions (line 1923) | def PolygonBooleanIntersectionOptions(*args, **keywords): ... function PolygonBooleanSlice (line 1924) | def PolygonBooleanSlice(*args, **keywords): ... function PolygonBooleanSliceOptions (line 1925) | def PolygonBooleanSliceOptions(*args, **keywords): ... function PolygonBooleanSplitEdges (line 1926) | def PolygonBooleanSplitEdges(*args, **keywords): ... function PolygonBooleanSplitEdgesOptions (line 1927) | def PolygonBooleanSplitEdgesOptions(*args, **keywords): ... function PolygonBooleanUnion (line 1928) | def PolygonBooleanUnion(*args, **keywords): ... function PolygonBooleanUnionOptions (line 1929) | def PolygonBooleanUnionOptions(*args, **keywords): ... function PolygonClearClipboard (line 1930) | def PolygonClearClipboard(*args, **keywords): ... function PolygonClearClipboardOptions (line 1931) | def PolygonClearClipboardOptions(*args, **keywords): ... function PolygonCollapse (line 1932) | def PolygonCollapse(*args, **keywords): ... function PolygonCollapseEdges (line 1933) | def PolygonCollapseEdges(*args, **keywords): ... function PolygonCollapseFaces (line 1934) | def PolygonCollapseFaces(*args, **keywords): ... function PolygonCopy (line 1935) | def PolygonCopy(*args, **keywords): ... function PolygonCopyOptions (line 1936) | def PolygonCopyOptions(*args, **keywords): ... function PolygonHardenEdge (line 1937) | def PolygonHardenEdge(*args, **keywords): ... function PolygonNormalEditTool (line 1938) | def PolygonNormalEditTool(*args, **keywords): ... function PolygonPaste (line 1939) | def PolygonPaste(*args, **keywords): ... function PolygonPasteOptions (line 1940) | def PolygonPasteOptions(*args, **keywords): ... function PolygonSelectionConstraints (line 1941) | def PolygonSelectionConstraints(*args, **keywords): ... function PolygonSoftenEdge (line 1942) | def PolygonSoftenEdge(*args, **keywords): ... function PolygonSoftenHarden (line 1943) | def PolygonSoftenHarden(*args, **keywords): ... function PolygonSoftenHardenOptions (line 1944) | def PolygonSoftenHardenOptions(*args, **keywords): ... function PoseEditor (line 1945) | def PoseEditor(*args, **keywords): ... function PoseInterpolatorNewGroup (line 1946) | def PoseInterpolatorNewGroup(*args, **keywords): ... function PositionAlongCurve (line 1947) | def PositionAlongCurve(*args, **keywords): ... function PostInfinityConstant (line 1948) | def PostInfinityConstant(*args, **keywords): ... function PostInfinityCycle (line 1949) | def PostInfinityCycle(*args, **keywords): ... function PostInfinityCycleOffset (line 1950) | def PostInfinityCycleOffset(*args, **keywords): ... function PostInfinityLinear (line 1951) | def PostInfinityLinear(*args, **keywords): ... function PostInfinityOscillate (line 1952) | def PostInfinityOscillate(*args, **keywords): ... function PreInfinityConstant (line 1953) | def PreInfinityConstant(*args, **keywords): ... function PreInfinityCycle (line 1954) | def PreInfinityCycle(*args, **keywords): ... function PreInfinityCycleOffset (line 1955) | def PreInfinityCycleOffset(*args, **keywords): ... function PreInfinityLinear (line 1956) | def PreInfinityLinear(*args, **keywords): ... function PreInfinityOscillate (line 1957) | def PreInfinityOscillate(*args, **keywords): ... function PreferencesWindow (line 1958) | def PreferencesWindow(*args, **keywords): ... function PrefixHierarchyNames (line 1959) | def PrefixHierarchyNames(*args, **keywords): ... function PreflightPolygon (line 1960) | def PreflightPolygon(*args, **keywords): ... function PreflightPolygonOptions (line 1961) | def PreflightPolygonOptions(*args, **keywords): ... function PrelightPolygon (line 1962) | def PrelightPolygon(*args, **keywords): ... function PrelightPolygonOptions (line 1963) | def PrelightPolygonOptions(*args, **keywords): ... function PreloadReferenceEditor (line 1964) | def PreloadReferenceEditor(*args, **keywords): ... function PresetBlendingWindow (line 1965) | def PresetBlendingWindow(*args, **keywords): ... function PrevSkinPaintMode (line 1966) | def PrevSkinPaintMode(*args, **keywords): ... function PreviousBluePencilFrame (line 1967) | def PreviousBluePencilFrame(*args, **keywords): ... function PreviousFrame (line 1968) | def PreviousFrame(*args, **keywords): ... function PreviousKey (line 1969) | def PreviousKey(*args, **keywords): ... function PreviousManipulatorHandle (line 1970) | def PreviousManipulatorHandle(*args, **keywords): ... function PreviousTimeSliderBookmark (line 1971) | def PreviousTimeSliderBookmark(*args, **keywords): ... function PreviousViewArrangement (line 1972) | def PreviousViewArrangement(*args, **keywords): ... function ProductInformation (line 1973) | def ProductInformation(*args, **keywords): ... function ProfilerTool (line 1974) | def ProfilerTool(*args, **keywords): ... function ProfilerToolCategoryView (line 1975) | def ProfilerToolCategoryView(*args, **keywords): ... function ProfilerToolCpuView (line 1976) | def ProfilerToolCpuView(*args, **keywords): ... function ProfilerToolHideSelected (line 1977) | def ProfilerToolHideSelected(*args, **keywords): ... function ProfilerToolHideSelectedRepetition (line 1978) | def ProfilerToolHideSelectedRepetition(*args, **keywords): ... function ProfilerToolReset (line 1979) | def ProfilerToolReset(*args, **keywords): ... function ProfilerToolShowAll (line 1980) | def ProfilerToolShowAll(*args, **keywords): ... function ProfilerToolShowSelected (line 1981) | def ProfilerToolShowSelected(*args, **keywords): ... function ProfilerToolShowSelectedRepetition (line 1982) | def ProfilerToolShowSelectedRepetition(*args, **keywords): ... function ProfilerToolThreadView (line 1983) | def ProfilerToolThreadView(*args, **keywords): ... function ProfilerToolToggleRecording (line 1984) | def ProfilerToolToggleRecording(*args, **keywords): ... function ProjectCurveOnMesh (line 1985) | def ProjectCurveOnMesh(*args, **keywords): ... function ProjectCurveOnMeshOptions (line 1986) | def ProjectCurveOnMeshOptions(*args, **keywords): ... function ProjectCurveOnSurface (line 1987) | def ProjectCurveOnSurface(*args, **keywords): ... function ProjectCurveOnSurfaceOptions (line 1988) | def ProjectCurveOnSurfaceOptions(*args, **keywords): ... function ProjectTangent (line 1989) | def ProjectTangent(*args, **keywords): ... function ProjectTangentOptions (line 1990) | def ProjectTangentOptions(*args, **keywords): ... function ProjectWindow (line 1991) | def ProjectWindow(*args, **keywords): ... function ProportionalModificationTool (line 1992) | def ProportionalModificationTool(*args, **keywords): ... function ProximityPin (line 1993) | def ProximityPin(*args, **keywords): ... function ProximityPinOptions (line 1994) | def ProximityPinOptions(*args, **keywords): ... function ProximityWrap (line 1995) | def ProximityWrap(*args, **keywords): ... function ProximityWrapOptions (line 1996) | def ProximityWrapOptions(*args, **keywords): ... function PruneCluster (line 1997) | def PruneCluster(*args, **keywords): ... function PruneLattice (line 1998) | def PruneLattice(*args, **keywords): ... function PruneSculpt (line 1999) | def PruneSculpt(*args, **keywords): ... function PruneSmallWeights (line 2000) | def PruneSmallWeights(*args, **keywords): ... function PruneSmallWeightsOptions (line 2001) | def PruneSmallWeightsOptions(*args, **keywords): ... function PruneWire (line 2002) | def PruneWire(*args, **keywords): ... function PublishAttributes (line 2003) | def PublishAttributes(*args, **keywords): ... function PublishAttributesOptions (line 2004) | def PublishAttributesOptions(*args, **keywords): ... function PublishChildAnchor (line 2005) | def PublishChildAnchor(*args, **keywords): ... function PublishChildAnchorOptions (line 2006) | def PublishChildAnchorOptions(*args, **keywords): ... function PublishConnections (line 2007) | def PublishConnections(*args, **keywords): ... function PublishConnectionsOptions (line 2008) | def PublishConnectionsOptions(*args, **keywords): ... function PublishNode (line 2009) | def PublishNode(*args, **keywords): ... function PublishParentAnchor (line 2010) | def PublishParentAnchor(*args, **keywords): ... function PublishParentAnchorOptions (line 2011) | def PublishParentAnchorOptions(*args, **keywords): ... function PublishRootTransform (line 2012) | def PublishRootTransform(*args, **keywords): ... function PublishRootTransformOptions (line 2013) | def PublishRootTransformOptions(*args, **keywords): ... function QuadDrawTool (line 2014) | def QuadDrawTool(*args, **keywords): ... function Quadrangulate (line 2015) | def Quadrangulate(*args, **keywords): ... function QuadrangulateOptions (line 2016) | def QuadrangulateOptions(*args, **keywords): ... function QualityDisplayMarkingMenu (line 2017) | def QualityDisplayMarkingMenu(*args, **keywords): ... function QualityDisplayMarkingMenuPopDown (line 2018) | def QualityDisplayMarkingMenuPopDown(*args, **keywords): ... function QuickCreateTimeSliderBookmark (line 2019) | def QuickCreateTimeSliderBookmark(*args, **keywords): ... function QuickRigEditor (line 2020) | def QuickRigEditor(*args, **keywords): ... function QuickTour (line 2021) | def QuickTour(*args, **keywords): ... function Quit (line 2022) | def Quit(*args, **keywords): ... function Radial (line 2023) | def Radial(*args, **keywords): ... function RadialOptions (line 2024) | def RadialOptions(*args, **keywords): ... function RaiseApplicationWindows (line 2025) | def RaiseApplicationWindows(*args, **keywords): ... function RaiseMainWindow (line 2026) | def RaiseMainWindow(*args, **keywords): ... function RandomizeFollicles (line 2027) | def RandomizeFollicles(*args, **keywords): ... function RandomizeFolliclesOptions (line 2028) | def RandomizeFolliclesOptions(*args, **keywords): ... function RandomizeShells (line 2029) | def RandomizeShells(*args, **keywords): ... function RandomizeShellsOptions (line 2030) | def RandomizeShellsOptions(*args, **keywords): ... function ReassignBoneLatticeJoint (line 2031) | def ReassignBoneLatticeJoint(*args, **keywords): ... function ReattachSkeleton (line 2032) | def ReattachSkeleton(*args, **keywords): ... function ReattachSkeletonJoints (line 2033) | def ReattachSkeletonJoints(*args, **keywords): ... function RebuildCurve (line 2034) | def RebuildCurve(*args, **keywords): ... function RebuildCurveOptions (line 2035) | def RebuildCurveOptions(*args, **keywords): ... function RebuildSurfaces (line 2036) | def RebuildSurfaces(*args, **keywords): ... function RebuildSurfacesOptions (line 2037) | def RebuildSurfacesOptions(*args, **keywords): ... function RecentCommandsWindow (line 2038) | def RecentCommandsWindow(*args, **keywords): ... function Redo (line 2039) | def Redo(*args, **keywords): ... function RedoPreviousIPRRender (line 2040) | def RedoPreviousIPRRender(*args, **keywords): ... function RedoPreviousRender (line 2041) | def RedoPreviousRender(*args, **keywords): ... function RedoViewChange (line 2042) | def RedoViewChange(*args, **keywords): ... function ReducePolygon (line 2043) | def ReducePolygon(*args, **keywords): ... function ReducePolygonOptions (line 2044) | def ReducePolygonOptions(*args, **keywords): ... function ReferenceEditor (line 2045) | def ReferenceEditor(*args, **keywords): ... function RefineSelectedComponents (line 2046) | def RefineSelectedComponents(*args, **keywords): ... function RegionKeysTool (line 2047) | def RegionKeysTool(*args, **keywords): ... function RelaxInitialState (line 2048) | def RelaxInitialState(*args, **keywords): ... function RelaxInitialStateOptions (line 2049) | def RelaxInitialStateOptions(*args, **keywords): ... function RelaxUVShell (line 2050) | def RelaxUVShell(*args, **keywords): ... function RelaxUVShellOptions (line 2051) | def RelaxUVShellOptions(*args, **keywords): ... function RemoveBindingSet (line 2052) | def RemoveBindingSet(*args, **keywords): ... function RemoveBlendShape (line 2053) | def RemoveBlendShape(*args, **keywords): ... function RemoveBlendShapeOptions (line 2054) | def RemoveBlendShapeOptions(*args, **keywords): ... function RemoveBrushSharing (line 2055) | def RemoveBrushSharing(*args, **keywords): ... function RemoveConstraintTarget (line 2056) | def RemoveConstraintTarget(*args, **keywords): ... function RemoveConstraintTargetOptions (line 2057) | def RemoveConstraintTargetOptions(*args, **keywords): ... function RemoveFromCharacterSet (line 2058) | def RemoveFromCharacterSet(*args, **keywords): ... function RemoveFromContainer (line 2059) | def RemoveFromContainer(*args, **keywords): ... function RemoveFromContainerOptions (line 2060) | def RemoveFromContainerOptions(*args, **keywords): ... function RemoveInfluence (line 2061) | def RemoveInfluence(*args, **keywords): ... function RemoveInfluenceOptions (line 2062) | def RemoveInfluenceOptions(*args, **keywords): ... function RemoveJoint (line 2063) | def RemoveJoint(*args, **keywords): ... function RemoveLatticeTweaks (line 2064) | def RemoveLatticeTweaks(*args, **keywords): ... function RemoveMaterialSoloing (line 2065) | def RemoveMaterialSoloing(*args, **keywords): ... function RemoveNewPfxToon (line 2066) | def RemoveNewPfxToon(*args, **keywords): ... function RemoveShrinkWrapInnerObject (line 2067) | def RemoveShrinkWrapInnerObject(*args, **keywords): ... function RemoveShrinkWrapSurfaces (line 2068) | def RemoveShrinkWrapSurfaces(*args, **keywords): ... function RemoveShrinkWrapTarget (line 2069) | def RemoveShrinkWrapTarget(*args, **keywords): ... function RemoveSubdivProxyMirror (line 2070) | def RemoveSubdivProxyMirror(*args, **keywords): ... function RemoveSubdivProxyMirrorOptions (line 2071) | def RemoveSubdivProxyMirrorOptions(*args, **keywords): ... function RemoveUnusedInfluences (line 2072) | def RemoveUnusedInfluences(*args, **keywords): ... function RemoveUnusedInfluencesOptions (line 2073) | def RemoveUnusedInfluencesOptions(*args, **keywords): ... function RemoveWire (line 2074) | def RemoveWire(*args, **keywords): ... function RemoveWireOptions (line 2075) | def RemoveWireOptions(*args, **keywords): ... function RemoveWrapInfluence (line 2076) | def RemoveWrapInfluence(*args, **keywords): ... function RenameAttribute (line 2077) | def RenameAttribute(*args, **keywords): ... function RenameCurrentColorSet (line 2078) | def RenameCurrentColorSet(*args, **keywords): ... function RenameCurrentSet (line 2079) | def RenameCurrentSet(*args, **keywords): ... function RenameCurrentUVSet (line 2080) | def RenameCurrentUVSet(*args, **keywords): ... function RenameJointsFromLabels (line 2081) | def RenameJointsFromLabels(*args, **keywords): ... function RenderDiagnostics (line 2082) | def RenderDiagnostics(*args, **keywords): ... function RenderFlagsWindow (line 2083) | def RenderFlagsWindow(*args, **keywords): ... function RenderGlobalsWindow (line 2084) | def RenderGlobalsWindow(*args, **keywords): ... function RenderIntoNewWindow (line 2085) | def RenderIntoNewWindow(*args, **keywords): ... function RenderLayerEditorWindow (line 2086) | def RenderLayerEditorWindow(*args, **keywords): ... function RenderLayerRelationshipEditor (line 2087) | def RenderLayerRelationshipEditor(*args, **keywords): ... function RenderOptions (line 2088) | def RenderOptions(*args, **keywords): ... function RenderPassSetEditor (line 2089) | def RenderPassSetEditor(*args, **keywords): ... function RenderSequence (line 2090) | def RenderSequence(*args, **keywords): ... function RenderSequenceOptions (line 2091) | def RenderSequenceOptions(*args, **keywords): ... function RenderSetupWindow (line 2092) | def RenderSetupWindow(*args, **keywords): ... function RenderTextureRange (line 2093) | def RenderTextureRange(*args, **keywords): ... function RenderTextureRangeOptions (line 2094) | def RenderTextureRangeOptions(*args, **keywords): ... function RenderViewNextImage (line 2095) | def RenderViewNextImage(*args, **keywords): ... function RenderViewPrevImage (line 2096) | def RenderViewPrevImage(*args, **keywords): ... function RenderViewWindow (line 2097) | def RenderViewWindow(*args, **keywords): ... function ReorderRotationDialog (line 2098) | def ReorderRotationDialog(*args, **keywords): ... function ReorderVertex (line 2099) | def ReorderVertex(*args, **keywords): ... function RepeatLast (line 2100) | def RepeatLast(*args, **keywords): ... function RepeatLastActionAtMousePosition (line 2101) | def RepeatLastActionAtMousePosition(*args, **keywords): ... function ReplaceObjects (line 2102) | def ReplaceObjects(*args, **keywords): ... function ReplaceObjectsOptions (line 2103) | def ReplaceObjectsOptions(*args, **keywords): ... function RerootSkeleton (line 2104) | def RerootSkeleton(*args, **keywords): ... function ResampleCurve (line 2105) | def ResampleCurve(*args, **keywords): ... function ResampleCurveOptions (line 2106) | def ResampleCurveOptions(*args, **keywords): ... function ResetChannelSetColors (line 2107) | def ResetChannelSetColors(*args, **keywords): ... function ResetCurrentWorkspace (line 2108) | def ResetCurrentWorkspace(*args, **keywords): ... function ResetDisplay (line 2109) | def ResetDisplay(*args, **keywords): ... function ResetLattice (line 2110) | def ResetLattice(*args, **keywords): ... function ResetReflectionOptions (line 2111) | def ResetReflectionOptions(*args, **keywords): ... function ResetSoftSelectOptions (line 2112) | def ResetSoftSelectOptions(*args, **keywords): ... function ResetTemplateBrush (line 2113) | def ResetTemplateBrush(*args, **keywords): ... function ResetTransformations (line 2114) | def ResetTransformations(*args, **keywords): ... function ResetTransformationsOptions (line 2115) | def ResetTransformationsOptions(*args, **keywords): ... function ResetViewport (line 2116) | def ResetViewport(*args, **keywords): ... function ResetWeightsToDefault (line 2117) | def ResetWeightsToDefault(*args, **keywords): ... function ResetWeightsToDefaultOptions (line 2118) | def ResetWeightsToDefaultOptions(*args, **keywords): ... function ResetWire (line 2119) | def ResetWire(*args, **keywords): ... function ResetWireOptions (line 2120) | def ResetWireOptions(*args, **keywords): ... function ResolveInterpenetration (line 2121) | def ResolveInterpenetration(*args, **keywords): ... function ResolveInterpenetrationOptions (line 2122) | def ResolveInterpenetrationOptions(*args, **keywords): ... function RestoreUIElements (line 2123) | def RestoreUIElements(*args, **keywords): ... function RetimeKeysTool (line 2124) | def RetimeKeysTool(*args, **keywords): ... function RetimeKeysToolOptions (line 2125) | def RetimeKeysToolOptions(*args, **keywords): ... function ReverseCurve (line 2126) | def ReverseCurve(*args, **keywords): ... function ReverseCurveOptions (line 2127) | def ReverseCurveOptions(*args, **keywords): ... function ReversePolygonNormals (line 2128) | def ReversePolygonNormals(*args, **keywords): ... function ReversePolygonNormalsOptions (line 2129) | def ReversePolygonNormalsOptions(*args, **keywords): ... function ReverseSurfaceDirection (line 2130) | def ReverseSurfaceDirection(*args, **keywords): ... function ReverseSurfaceDirectionOptions (line 2131) | def ReverseSurfaceDirectionOptions(*args, **keywords): ... function ReverseToonObjects (line 2132) | def ReverseToonObjects(*args, **keywords): ... function Revolve (line 2133) | def Revolve(*args, **keywords): ... function RevolveOptions (line 2134) | def RevolveOptions(*args, **keywords): ... function RigidBindSkin (line 2135) | def RigidBindSkin(*args, **keywords): ... function RigidBindSkinOptions (line 2136) | def RigidBindSkinOptions(*args, **keywords): ... function RigidBodySolver (line 2137) | def RigidBodySolver(*args, **keywords): ... function Rivet (line 2138) | def Rivet(*args, **keywords): ... function RotateTool (line 2139) | def RotateTool(*args, **keywords): ... function RotateToolMarkingMenu (line 2140) | def RotateToolMarkingMenu(*args, **keywords): ... function RotateToolMarkingMenuPopDown (line 2141) | def RotateToolMarkingMenuPopDown(*args, **keywords): ... function RotateToolOptions (line 2142) | def RotateToolOptions(*args, **keywords): ... function RotateToolWithSnapMarkingMenu (line 2143) | def RotateToolWithSnapMarkingMenu(*args, **keywords): ... function RotateToolWithSnapMarkingMenuPopDown (line 2144) | def RotateToolWithSnapMarkingMenuPopDown(*args, **keywords): ... function RotateUVTool (line 2145) | def RotateUVTool(*args, **keywords): ... function RotateUVs (line 2146) | def RotateUVs(*args, **keywords): ... function RotateUVsOptions (line 2147) | def RotateUVsOptions(*args, **keywords): ... function RoundTool (line 2148) | def RoundTool(*args, **keywords): ... function RoundToolOptions (line 2149) | def RoundToolOptions(*args, **keywords): ... function STRSTweakModeOff (line 2150) | def STRSTweakModeOff(*args, **keywords): ... function STRSTweakModeOn (line 2151) | def STRSTweakModeOn(*args, **keywords): ... function STRSTweakModeToggle (line 2152) | def STRSTweakModeToggle(*args, **keywords): ... function SaveBrushPreset (line 2153) | def SaveBrushPreset(*args, **keywords): ... function SaveCurrentLayout (line 2154) | def SaveCurrentLayout(*args, **keywords): ... function SaveCurrentWorkspace (line 2155) | def SaveCurrentWorkspace(*args, **keywords): ... function SaveFluidStateAs (line 2156) | def SaveFluidStateAs(*args, **keywords): ... function SaveInitialStateAll (line 2157) | def SaveInitialStateAll(*args, **keywords): ... function SavePreferences (line 2158) | def SavePreferences(*args, **keywords): ... function SaveScene (line 2159) | def SaveScene(*args, **keywords): ... function SaveSceneAs (line 2160) | def SaveSceneAs(*args, **keywords): ... function SaveSceneAsOptions (line 2161) | def SaveSceneAsOptions(*args, **keywords): ... function SaveSceneOptions (line 2162) | def SaveSceneOptions(*args, **keywords): ... function SaveScriptEditorTabs (line 2163) | def SaveScriptEditorTabs(*args, **keywords): ... function ScaleConstraint (line 2164) | def ScaleConstraint(*args, **keywords): ... function ScaleConstraintOptions (line 2165) | def ScaleConstraintOptions(*args, **keywords): ... function ScaleCurvature (line 2166) | def ScaleCurvature(*args, **keywords): ... function ScaleCurvatureOptions (line 2167) | def ScaleCurvatureOptions(*args, **keywords): ... function ScaleKeys (line 2168) | def ScaleKeys(*args, **keywords): ... function ScaleKeysOptions (line 2169) | def ScaleKeysOptions(*args, **keywords): ... function ScaleTool (line 2170) | def ScaleTool(*args, **keywords): ... function ScaleToolMarkingMenu (line 2171) | def ScaleToolMarkingMenu(*args, **keywords): ... function ScaleToolMarkingMenuPopDown (line 2172) | def ScaleToolMarkingMenuPopDown(*args, **keywords): ... function ScaleToolOptions (line 2173) | def ScaleToolOptions(*args, **keywords): ... function ScaleToolWithSnapMarkingMenu (line 2174) | def ScaleToolWithSnapMarkingMenu(*args, **keywords): ... function ScaleToolWithSnapMarkingMenuPopDown (line 2175) | def ScaleToolWithSnapMarkingMenuPopDown(*args, **keywords): ... function ScaleUVTool (line 2176) | def ScaleUVTool(*args, **keywords): ... function ScriptEditor (line 2177) | def ScriptEditor(*args, **keywords): ... function ScriptPaintTool (line 2178) | def ScriptPaintTool(*args, **keywords): ... function ScriptPaintToolOptions (line 2179) | def ScriptPaintToolOptions(*args, **keywords): ... function SculptGeometryTool (line 2180) | def SculptGeometryTool(*args, **keywords): ... function SculptGeometryToolOptions (line 2181) | def SculptGeometryToolOptions(*args, **keywords): ... function SculptKeysActivateEditRadius (line 2182) | def SculptKeysActivateEditRadius(*args, **keywords): ... function SculptKeysActivateEditStrength (line 2183) | def SculptKeysActivateEditStrength(*args, **keywords): ... function SculptKeysDeactivateEditRadius (line 2184) | def SculptKeysDeactivateEditRadius(*args, **keywords): ... function SculptKeysDeactivateEditStrength (line 2185) | def SculptKeysDeactivateEditStrength(*args, **keywords): ... function SculptKeysGrabTool (line 2186) | def SculptKeysGrabTool(*args, **keywords): ... function SculptKeysGrabToolOptions (line 2187) | def SculptKeysGrabToolOptions(*args, **keywords): ... function SculptKeysReduceTool (line 2188) | def SculptKeysReduceTool(*args, **keywords): ... function SculptKeysReduceToolOptions (line 2189) | def SculptKeysReduceToolOptions(*args, **keywords): ... function SculptKeysSmearTool (line 2190) | def SculptKeysSmearTool(*args, **keywords): ... function SculptKeysSmearToolOptions (line 2191) | def SculptKeysSmearToolOptions(*args, **keywords): ... function SculptKeysSmoothTool (line 2192) | def SculptKeysSmoothTool(*args, **keywords): ... function SculptKeysSmoothToolOptions (line 2193) | def SculptKeysSmoothToolOptions(*args, **keywords): ... function SculptMeshActivateBrushSize (line 2194) | def SculptMeshActivateBrushSize(*args, **keywords): ... function SculptMeshActivateBrushStrength (line 2195) | def SculptMeshActivateBrushStrength(*args, **keywords): ... function SculptMeshDeactivateBrushSize (line 2196) | def SculptMeshDeactivateBrushSize(*args, **keywords): ... function SculptMeshDeactivateBrushStrength (line 2197) | def SculptMeshDeactivateBrushStrength(*args, **keywords): ... function SculptMeshFrame (line 2198) | def SculptMeshFrame(*args, **keywords): ... function SculptMeshInvertFreeze (line 2199) | def SculptMeshInvertFreeze(*args, **keywords): ... function SculptMeshUnfreezeAll (line 2200) | def SculptMeshUnfreezeAll(*args, **keywords): ... function SculptPolygonsTool (line 2201) | def SculptPolygonsTool(*args, **keywords): ... function SculptPolygonsToolOptions (line 2202) | def SculptPolygonsToolOptions(*args, **keywords): ... function SculptReferenceVectorMarkingMenuPress (line 2203) | def SculptReferenceVectorMarkingMenuPress(*args, **keywords): ... function SculptReferenceVectorMarkingMenuRelease (line 2204) | def SculptReferenceVectorMarkingMenuRelease(*args, **keywords): ... function SculptSubdivsTool (line 2205) | def SculptSubdivsTool(*args, **keywords): ... function SculptSubdivsToolOptions (line 2206) | def SculptSubdivsToolOptions(*args, **keywords): ... function SculptSurfacesTool (line 2207) | def SculptSurfacesTool(*args, **keywords): ... function SculptSurfacesToolOptions (line 2208) | def SculptSurfacesToolOptions(*args, **keywords): ... function SearchAndReplaceNames (line 2209) | def SearchAndReplaceNames(*args, **keywords): ... function SearchEngine (line 2210) | def SearchEngine(*args, **keywords): ... function SelectAll (line 2211) | def SelectAll(*args, **keywords): ... function SelectAllAssets (line 2212) | def SelectAllAssets(*args, **keywords): ... function SelectAllBrushes (line 2213) | def SelectAllBrushes(*args, **keywords): ... function SelectAllCameras (line 2214) | def SelectAllCameras(*args, **keywords): ... function SelectAllClusters (line 2215) | def SelectAllClusters(*args, **keywords): ... function SelectAllDynamicConstraints (line 2216) | def SelectAllDynamicConstraints(*args, **keywords): ... function SelectAllFluids (line 2217) | def SelectAllFluids(*args, **keywords): ... function SelectAllFollicles (line 2218) | def SelectAllFollicles(*args, **keywords): ... function SelectAllFurs (line 2219) | def SelectAllFurs(*args, **keywords): ... function SelectAllGeometry (line 2220) | def SelectAllGeometry(*args, **keywords): ... function SelectAllHairSystem (line 2221) | def SelectAllHairSystem(*args, **keywords): ... function SelectAllIKHandles (line 2222) | def SelectAllIKHandles(*args, **keywords): ... function SelectAllImagePlanes (line 2223) | def SelectAllImagePlanes(*args, **keywords): ... function SelectAllInput (line 2224) | def SelectAllInput(*args, **keywords): ... function SelectAllJoints (line 2225) | def SelectAllJoints(*args, **keywords): ... function SelectAllLattices (line 2226) | def SelectAllLattices(*args, **keywords): ... function SelectAllLights (line 2227) | def SelectAllLights(*args, **keywords): ... function SelectAllMarkingMenu (line 2228) | def SelectAllMarkingMenu(*args, **keywords): ... function SelectAllMarkingMenuPopDown (line 2229) | def SelectAllMarkingMenuPopDown(*args, **keywords): ... function SelectAllNCloths (line 2230) | def SelectAllNCloths(*args, **keywords): ... function SelectAllNParticles (line 2231) | def SelectAllNParticles(*args, **keywords): ... function SelectAllNRigids (line 2232) | def SelectAllNRigids(*args, **keywords): ... function SelectAllNURBSCurves (line 2233) | def SelectAllNURBSCurves(*args, **keywords): ... function SelectAllNURBSSurfaces (line 2234) | def SelectAllNURBSSurfaces(*args, **keywords): ... function SelectAllOutput (line 2235) | def SelectAllOutput(*args, **keywords): ... function SelectAllParticles (line 2236) | def SelectAllParticles(*args, **keywords): ... function SelectAllPolygonGeometry (line 2237) | def SelectAllPolygonGeometry(*args, **keywords): ... function SelectAllRigidBodies (line 2238) | def SelectAllRigidBodies(*args, **keywords): ... function SelectAllRigidConstraints (line 2239) | def SelectAllRigidConstraints(*args, **keywords): ... function SelectAllSculptObjects (line 2240) | def SelectAllSculptObjects(*args, **keywords): ... function SelectAllStrokes (line 2241) | def SelectAllStrokes(*args, **keywords): ... function SelectAllSubdivGeometry (line 2242) | def SelectAllSubdivGeometry(*args, **keywords): ... function SelectAllTransforms (line 2243) | def SelectAllTransforms(*args, **keywords): ... function SelectAllWires (line 2244) | def SelectAllWires(*args, **keywords): ... function SelectBorderEdgeTool (line 2245) | def SelectBorderEdgeTool(*args, **keywords): ... function SelectBrushNames (line 2246) | def SelectBrushNames(*args, **keywords): ... function SelectCVSelectionBoundary (line 2247) | def SelectCVSelectionBoundary(*args, **keywords): ... function SelectCVsMask (line 2248) | def SelectCVsMask(*args, **keywords): ... function SelectComponentToolMarkingMenu (line 2249) | def SelectComponentToolMarkingMenu(*args, **keywords): ... function SelectComponentToolMarkingMenuPopDown (line 2250) | def SelectComponentToolMarkingMenuPopDown(*args, **keywords): ... function SelectContainerContents (line 2251) | def SelectContainerContents(*args, **keywords): ... function SelectContiguousEdges (line 2252) | def SelectContiguousEdges(*args, **keywords): ... function SelectContiguousEdgesOptions (line 2253) | def SelectContiguousEdgesOptions(*args, **keywords): ... function SelectCurveCVsAll (line 2254) | def SelectCurveCVsAll(*args, **keywords): ... function SelectCurveCVsFirst (line 2255) | def SelectCurveCVsFirst(*args, **keywords): ... function SelectCurveCVsLast (line 2256) | def SelectCurveCVsLast(*args, **keywords): ... function SelectCurvePointsMask (line 2257) | def SelectCurvePointsMask(*args, **keywords): ... function SelectEdgeLoop (line 2258) | def SelectEdgeLoop(*args, **keywords): ... function SelectEdgeLoopSp (line 2259) | def SelectEdgeLoopSp(*args, **keywords): ... function SelectEdgeMask (line 2260) | def SelectEdgeMask(*args, **keywords): ... function SelectEdgeRing (line 2261) | def SelectEdgeRing(*args, **keywords): ... function SelectEdgeRingSp (line 2262) | def SelectEdgeRingSp(*args, **keywords): ... function SelectFacePath (line 2263) | def SelectFacePath(*args, **keywords): ... function SelectFacetMask (line 2264) | def SelectFacetMask(*args, **keywords): ... function SelectHierarchy (line 2265) | def SelectHierarchy(*args, **keywords): ... function SelectHullsMask (line 2266) | def SelectHullsMask(*args, **keywords): ... function SelectIsolate (line 2267) | def SelectIsolate(*args, **keywords): ... function SelectLightsIlluminatingObject (line 2268) | def SelectLightsIlluminatingObject(*args, **keywords): ... function SelectLightsShadowingObject (line 2269) | def SelectLightsShadowingObject(*args, **keywords): ... function SelectLinesMask (line 2270) | def SelectLinesMask(*args, **keywords): ... function SelectMaskToolMarkingMenu (line 2271) | def SelectMaskToolMarkingMenu(*args, **keywords): ... function SelectMaskToolMarkingMenuPopDown (line 2272) | def SelectMaskToolMarkingMenuPopDown(*args, **keywords): ... function SelectMeshUVShell (line 2273) | def SelectMeshUVShell(*args, **keywords): ... function SelectMultiComponentMask (line 2274) | def SelectMultiComponentMask(*args, **keywords): ... function SelectNextIntermediatObject (line 2275) | def SelectNextIntermediatObject(*args, **keywords): ... function SelectNextKey (line 2276) | def SelectNextKey(*args, **keywords): ... function SelectNone (line 2277) | def SelectNone(*args, **keywords): ... function SelectObjectsIlluminatedByLight (line 2278) | def SelectObjectsIlluminatedByLight(*args, **keywords): ... function SelectObjectsShadowedByLight (line 2279) | def SelectObjectsShadowedByLight(*args, **keywords): ... function SelectPointsMask (line 2280) | def SelectPointsMask(*args, **keywords): ... function SelectPolygonSelectionBoundary (line 2281) | def SelectPolygonSelectionBoundary(*args, **keywords): ... function SelectPolygonToolMarkingMenu (line 2282) | def SelectPolygonToolMarkingMenu(*args, **keywords): ... function SelectPolygonToolMarkingMenuPopDown (line 2283) | def SelectPolygonToolMarkingMenuPopDown(*args, **keywords): ... function SelectPreviousKey (line 2284) | def SelectPreviousKey(*args, **keywords): ... function SelectPreviousObjects3dsMax (line 2285) | def SelectPreviousObjects3dsMax(*args, **keywords): ... function SelectPreviousObjectsFlame (line 2286) | def SelectPreviousObjectsFlame(*args, **keywords): ... function SelectPreviousObjectsFlare (line 2287) | def SelectPreviousObjectsFlare(*args, **keywords): ... function SelectPreviousObjectsMotionBuilder (line 2288) | def SelectPreviousObjectsMotionBuilder(*args, **keywords): ... function SelectPreviousObjectsMudbox (line 2289) | def SelectPreviousObjectsMudbox(*args, **keywords): ... function SelectSharedColorInstances (line 2290) | def SelectSharedColorInstances(*args, **keywords): ... function SelectSharedUVInstances (line 2291) | def SelectSharedUVInstances(*args, **keywords): ... function SelectShortestEdgePathTool (line 2292) | def SelectShortestEdgePathTool(*args, **keywords): ... function SelectSimilar (line 2293) | def SelectSimilar(*args, **keywords): ... function SelectSimilarOptions (line 2294) | def SelectSimilarOptions(*args, **keywords): ... function SelectSurfaceBorder (line 2295) | def SelectSurfaceBorder(*args, **keywords): ... function SelectSurfaceBorderOptions (line 2296) | def SelectSurfaceBorderOptions(*args, **keywords): ... function SelectSurfacePointsMask (line 2297) | def SelectSurfacePointsMask(*args, **keywords): ... function SelectTextureReferenceObject (line 2298) | def SelectTextureReferenceObject(*args, **keywords): ... function SelectTimeWarp (line 2299) | def SelectTimeWarp(*args, **keywords): ... function SelectToggleMode (line 2300) | def SelectToggleMode(*args, **keywords): ... function SelectTool (line 2301) | def SelectTool(*args, **keywords): ... function SelectToolMarkingMenu (line 2302) | def SelectToolMarkingMenu(*args, **keywords): ... function SelectToolMarkingMenuPopDown (line 2303) | def SelectToolMarkingMenuPopDown(*args, **keywords): ... function SelectToolOptionsMarkingMenu (line 2304) | def SelectToolOptionsMarkingMenu(*args, **keywords): ... function SelectToolOptionsMarkingMenuPopDown (line 2305) | def SelectToolOptionsMarkingMenuPopDown(*args, **keywords): ... function SelectUVBackFacingComponents (line 2306) | def SelectUVBackFacingComponents(*args, **keywords): ... function SelectUVBorder (line 2307) | def SelectUVBorder(*args, **keywords): ... function SelectUVBorderComponents (line 2308) | def SelectUVBorderComponents(*args, **keywords): ... function SelectUVFrontFacingComponents (line 2309) | def SelectUVFrontFacingComponents(*args, **keywords): ... function SelectUVMask (line 2310) | def SelectUVMask(*args, **keywords): ... function SelectUVNonOverlappingComponents (line 2311) | def SelectUVNonOverlappingComponents(*args, **keywords): ... function SelectUVNonOverlappingComponentsPerObject (line 2312) | def SelectUVNonOverlappingComponentsPerObject(*args, **keywords): ... function SelectUVOverlappingComponents (line 2313) | def SelectUVOverlappingComponents(*args, **keywords): ... function SelectUVOverlappingComponentsPerObject (line 2314) | def SelectUVOverlappingComponentsPerObject(*args, **keywords): ... function SelectUVShell (line 2315) | def SelectUVShell(*args, **keywords): ... function SelectUVTool (line 2316) | def SelectUVTool(*args, **keywords): ... function SelectUnmappedFaces (line 2317) | def SelectUnmappedFaces(*args, **keywords): ... function SelectVertexFaceMask (line 2318) | def SelectVertexFaceMask(*args, **keywords): ... function SelectVertexMask (line 2319) | def SelectVertexMask(*args, **keywords): ... function SendAsNewScene3dsMax (line 2320) | def SendAsNewScene3dsMax(*args, **keywords): ... function SendAsNewSceneFlame (line 2321) | def SendAsNewSceneFlame(*args, **keywords): ... function SendAsNewSceneFlare (line 2322) | def SendAsNewSceneFlare(*args, **keywords): ... function SendAsNewSceneMotionBuilder (line 2323) | def SendAsNewSceneMotionBuilder(*args, **keywords): ... function SendAsNewSceneMudbox (line 2324) | def SendAsNewSceneMudbox(*args, **keywords): ... function SeparatePolygon (line 2325) | def SeparatePolygon(*args, **keywords): ... function SequenceEditor (line 2326) | def SequenceEditor(*args, **keywords): ... function SetActiveKey (line 2327) | def SetActiveKey(*args, **keywords): ... function SetAlignTool (line 2328) | def SetAlignTool(*args, **keywords): ... function SetAsCombinationTarget (line 2329) | def SetAsCombinationTarget(*args, **keywords): ... function SetAsCombinationTargetOptions (line 2330) | def SetAsCombinationTargetOptions(*args, **keywords): ... function SetBreakdownKey (line 2331) | def SetBreakdownKey(*args, **keywords): ... function SetBreakdownKeyOptions (line 2332) | def SetBreakdownKeyOptions(*args, **keywords): ... function SetCMCAmbient (line 2333) | def SetCMCAmbient(*args, **keywords): ... function SetCMCAmbientDiffuse (line 2334) | def SetCMCAmbientDiffuse(*args, **keywords): ... function SetCMCDiffuse (line 2335) | def SetCMCDiffuse(*args, **keywords): ... function SetCMCEmission (line 2336) | def SetCMCEmission(*args, **keywords): ... function SetCMCNone (line 2337) | def SetCMCNone(*args, **keywords): ... function SetCMCSpecular (line 2338) | def SetCMCSpecular(*args, **keywords): ... function SetCurrentColorSet (line 2339) | def SetCurrentColorSet(*args, **keywords): ... function SetCurrentUVSet (line 2340) | def SetCurrentUVSet(*args, **keywords): ... function SetCutSewUVTool (line 2341) | def SetCutSewUVTool(*args, **keywords): ... function SetDefaultManipMove (line 2342) | def SetDefaultManipMove(*args, **keywords): ... function SetDefaultManipNone (line 2343) | def SetDefaultManipNone(*args, **keywords): ... function SetDefaultManipRotate (line 2344) | def SetDefaultManipRotate(*args, **keywords): ... function SetDefaultManipScale (line 2345) | def SetDefaultManipScale(*args, **keywords): ... function SetDefaultManipTransform (line 2346) | def SetDefaultManipTransform(*args, **keywords): ... function SetDrivenKey (line 2347) | def SetDrivenKey(*args, **keywords): ... function SetEditor (line 2348) | def SetEditor(*args, **keywords): ... function SetExclusiveToCamera (line 2349) | def SetExclusiveToCamera(*args, **keywords): ... function SetFluidAttrFromCurve (line 2350) | def SetFluidAttrFromCurve(*args, **keywords): ... function SetFluidAttrFromCurveOptions (line 2351) | def SetFluidAttrFromCurveOptions(*args, **keywords): ... function SetFocusToCommandLine (line 2352) | def SetFocusToCommandLine(*args, **keywords): ... function SetFocusToNumericInputLine (line 2353) | def SetFocusToNumericInputLine(*args, **keywords): ... function SetFullBodyIKKeys (line 2354) | def SetFullBodyIKKeys(*args, **keywords): ... function SetFullBodyIKKeysAll (line 2355) | def SetFullBodyIKKeysAll(*args, **keywords): ... function SetFullBodyIKKeysBodyPart (line 2356) | def SetFullBodyIKKeysBodyPart(*args, **keywords): ... function SetFullBodyIKKeysKeyToPin (line 2357) | def SetFullBodyIKKeysKeyToPin(*args, **keywords): ... function SetFullBodyIKKeysOptions (line 2358) | def SetFullBodyIKKeysOptions(*args, **keywords): ... function SetFullBodyIKKeysSelected (line 2359) | def SetFullBodyIKKeysSelected(*args, **keywords): ... function SetHairRestPositionFromCurrent (line 2360) | def SetHairRestPositionFromCurrent(*args, **keywords): ... function SetHairRestPositionFromStart (line 2361) | def SetHairRestPositionFromStart(*args, **keywords): ... function SetHairStartPositionFromCurrent (line 2362) | def SetHairStartPositionFromCurrent(*args, **keywords): ... function SetHairStartPositionFromRest (line 2363) | def SetHairStartPositionFromRest(*args, **keywords): ... function SetHiddenFromCamera (line 2364) | def SetHiddenFromCamera(*args, **keywords): ... function SetIKFKKeyframe (line 2365) | def SetIKFKKeyframe(*args, **keywords): ... function SetInitialState (line 2366) | def SetInitialState(*args, **keywords): ... function SetInitialStateOptions (line 2367) | def SetInitialStateOptions(*args, **keywords): ... function SetKey (line 2368) | def SetKey(*args, **keywords): ... function SetKeyAnimated (line 2369) | def SetKeyAnimated(*args, **keywords): ... function SetKeyOptions (line 2370) | def SetKeyOptions(*args, **keywords): ... function SetKeyPath (line 2371) | def SetKeyPath(*args, **keywords): ... function SetKeyRotate (line 2372) | def SetKeyRotate(*args, **keywords): ... function SetKeyScale (line 2373) | def SetKeyScale(*args, **keywords): ... function SetKeyTranslate (line 2374) | def SetKeyTranslate(*args, **keywords): ... function SetKeyVertexColor (line 2375) | def SetKeyVertexColor(*args, **keywords): ... function SetKeyframeForVertexColor (line 2376) | def SetKeyframeForVertexColor(*args, **keywords): ... function SetMBSAdd (line 2377) | def SetMBSAdd(*args, **keywords): ... function SetMBSAverage (line 2378) | def SetMBSAverage(*args, **keywords): ... function SetMBSDivide (line 2379) | def SetMBSDivide(*args, **keywords): ... function SetMBSModulate2 (line 2380) | def SetMBSModulate2(*args, **keywords): ... function SetMBSMultiply (line 2381) | def SetMBSMultiply(*args, **keywords): ... function SetMBSOverwrite (line 2382) | def SetMBSOverwrite(*args, **keywords): ... function SetMBSSubtract (line 2383) | def SetMBSSubtract(*args, **keywords): ... function SetMaxInfluences (line 2384) | def SetMaxInfluences(*args, **keywords): ... function SetMeshAmplifyTool (line 2385) | def SetMeshAmplifyTool(*args, **keywords): ... function SetMeshBulgeTool (line 2386) | def SetMeshBulgeTool(*args, **keywords): ... function SetMeshCloneTargetTool (line 2387) | def SetMeshCloneTargetTool(*args, **keywords): ... function SetMeshEraseTool (line 2388) | def SetMeshEraseTool(*args, **keywords): ... function SetMeshFillTool (line 2389) | def SetMeshFillTool(*args, **keywords): ... function SetMeshFlattenTool (line 2390) | def SetMeshFlattenTool(*args, **keywords): ... function SetMeshFoamyTool (line 2391) | def SetMeshFoamyTool(*args, **keywords): ... function SetMeshFreezeTool (line 2392) | def SetMeshFreezeTool(*args, **keywords): ... function SetMeshGrabTool (line 2393) | def SetMeshGrabTool(*args, **keywords): ... function SetMeshGrabUVTool (line 2394) | def SetMeshGrabUVTool(*args, **keywords): ... function SetMeshImprintTool (line 2395) | def SetMeshImprintTool(*args, **keywords): ... function SetMeshKnifeTool (line 2396) | def SetMeshKnifeTool(*args, **keywords): ... function SetMeshMaskTool (line 2397) | def SetMeshMaskTool(*args, **keywords): ... function SetMeshPinchTool (line 2398) | def SetMeshPinchTool(*args, **keywords): ... function SetMeshRelaxTool (line 2399) | def SetMeshRelaxTool(*args, **keywords): ... function SetMeshRepeatTool (line 2400) | def SetMeshRepeatTool(*args, **keywords): ... function SetMeshScrapeTool (line 2401) | def SetMeshScrapeTool(*args, **keywords): ... function SetMeshSculptTool (line 2402) | def SetMeshSculptTool(*args, **keywords): ... function SetMeshSmearTool (line 2403) | def SetMeshSmearTool(*args, **keywords): ... function SetMeshSmoothTargetTool (line 2404) | def SetMeshSmoothTargetTool(*args, **keywords): ... function SetMeshSmoothTool (line 2405) | def SetMeshSmoothTool(*args, **keywords): ... function SetMeshSprayTool (line 2406) | def SetMeshSprayTool(*args, **keywords): ... function SetMeshWaxTool (line 2407) | def SetMeshWaxTool(*args, **keywords): ... function SetNClothStartFromMesh (line 2408) | def SetNClothStartFromMesh(*args, **keywords): ... function SetNormalAngle (line 2409) | def SetNormalAngle(*args, **keywords): ... function SetPassiveKey (line 2410) | def SetPassiveKey(*args, **keywords): ... function SetPreferredAngle (line 2411) | def SetPreferredAngle(*args, **keywords): ... function SetPreferredAngleOptions (line 2412) | def SetPreferredAngleOptions(*args, **keywords): ... function SetProject (line 2413) | def SetProject(*args, **keywords): ... function SetReFormTool (line 2414) | def SetReFormTool(*args, **keywords): ... function SetRestPosition (line 2415) | def SetRestPosition(*args, **keywords): ... function SetRigidBodyCollision (line 2416) | def SetRigidBodyCollision(*args, **keywords): ... function SetRigidBodyInterpenetration (line 2417) | def SetRigidBodyInterpenetration(*args, **keywords): ... function SetShrinkWrapInnerObject (line 2418) | def SetShrinkWrapInnerObject(*args, **keywords): ... function SetShrinkWrapTarget (line 2419) | def SetShrinkWrapTarget(*args, **keywords): ... function SetSnapTogetherTool (line 2420) | def SetSnapTogetherTool(*args, **keywords): ... function SetSnapTogetherToolOptions (line 2421) | def SetSnapTogetherToolOptions(*args, **keywords): ... function SetStrokeControlCurves (line 2422) | def SetStrokeControlCurves(*args, **keywords): ... function SetTimecode (line 2423) | def SetTimecode(*args, **keywords): ... function SetToFaceNormals (line 2424) | def SetToFaceNormals(*args, **keywords): ... function SetToFaceNormalsOptions (line 2425) | def SetToFaceNormalsOptions(*args, **keywords): ... function SetVertexNormal (line 2426) | def SetVertexNormal(*args, **keywords): ... function SetVertexNormalOptions (line 2427) | def SetVertexNormalOptions(*args, **keywords): ... function SetWireframeColor (line 2428) | def SetWireframeColor(*args, **keywords): ... function SetWorkingFrame (line 2429) | def SetWorkingFrame(*args, **keywords): ... function SetupAnimatedDisplacement (line 2430) | def SetupAnimatedDisplacement(*args, **keywords): ... function SewUVs (line 2431) | def SewUVs(*args, **keywords): ... function SewUVs3D (line 2432) | def SewUVs3D(*args, **keywords): ... function SewUVsWithoutHotkey (line 2433) | def SewUVsWithoutHotkey(*args, **keywords): ... function ShadingGroupAttributeEditor (line 2434) | def ShadingGroupAttributeEditor(*args, **keywords): ... function ShapeEditor (line 2435) | def ShapeEditor(*args, **keywords): ... function ShapeEditorDuplicateTarget (line 2436) | def ShapeEditorDuplicateTarget(*args, **keywords): ... function ShapeEditorNewGroup (line 2437) | def ShapeEditorNewGroup(*args, **keywords): ... function ShapeEditorSelectNone (line 2438) | def ShapeEditorSelectNone(*args, **keywords): ... function ShareColorInstances (line 2439) | def ShareColorInstances(*args, **keywords): ... function ShareOneBrush (line 2440) | def ShareOneBrush(*args, **keywords): ... function ShareUVInstances (line 2441) | def ShareUVInstances(*args, **keywords): ... function Shatter (line 2442) | def Shatter(*args, **keywords): ... function ShatterOptions (line 2443) | def ShatterOptions(*args, **keywords): ... function ShelfPreferencesWindow (line 2444) | def ShelfPreferencesWindow(*args, **keywords): ... function ShortPolygonNormals (line 2445) | def ShortPolygonNormals(*args, **keywords): ... function ShotPlaylistEditor (line 2446) | def ShotPlaylistEditor(*args, **keywords): ... function ShowAll (line 2447) | def ShowAll(*args, **keywords): ... function ShowAllComponents (line 2448) | def ShowAllComponents(*args, **keywords): ... function ShowAllEditedComponents (line 2449) | def ShowAllEditedComponents(*args, **keywords): ... function ShowAllLabels (line 2450) | def ShowAllLabels(*args, **keywords): ... function ShowAllPolyComponents (line 2451) | def ShowAllPolyComponents(*args, **keywords): ... function ShowAllUI (line 2452) | def ShowAllUI(*args, **keywords): ... function ShowAnimationUI (line 2453) | def ShowAnimationUI(*args, **keywords): ... function ShowAttributeEditorOrChannelBox (line 2454) | def ShowAttributeEditorOrChannelBox(*args, **keywords): ... function ShowBaseWire (line 2455) | def ShowBaseWire(*args, **keywords): ... function ShowBatchRender (line 2456) | def ShowBatchRender(*args, **keywords): ... function ShowBoundingBox (line 2457) | def ShowBoundingBox(*args, **keywords): ... function ShowCameraManipulators (line 2458) | def ShowCameraManipulators(*args, **keywords): ... function ShowCameras (line 2459) | def ShowCameras(*args, **keywords): ... function ShowClusters (line 2460) | def ShowClusters(*args, **keywords): ... function ShowControllers (line 2461) | def ShowControllers(*args, **keywords): ... function ShowDeformers (line 2462) | def ShowDeformers(*args, **keywords): ... function ShowDeformingGeometry (line 2463) | def ShowDeformingGeometry(*args, **keywords): ... function ShowDynamicConstraints (line 2464) | def ShowDynamicConstraints(*args, **keywords): ... function ShowDynamicsUI (line 2465) | def ShowDynamicsUI(*args, **keywords): ... function ShowFluids (line 2466) | def ShowFluids(*args, **keywords): ... function ShowFollicles (line 2467) | def ShowFollicles(*args, **keywords): ... function ShowFur (line 2468) | def ShowFur(*args, **keywords): ... function ShowGeometry (line 2469) | def ShowGeometry(*args, **keywords): ... function ShowHairSystems (line 2470) | def ShowHairSystems(*args, **keywords): ... function ShowHotbox (line 2471) | def ShowHotbox(*args, **keywords): ... function ShowIKHandles (line 2472) | def ShowIKHandles(*args, **keywords): ... function ShowJoints (line 2473) | def ShowJoints(*args, **keywords): ... function ShowKinematics (line 2474) | def ShowKinematics(*args, **keywords): ... function ShowLastHidden (line 2475) | def ShowLastHidden(*args, **keywords): ... function ShowLattices (line 2476) | def ShowLattices(*args, **keywords): ... function ShowLightManipulators (line 2477) | def ShowLightManipulators(*args, **keywords): ... function ShowLights (line 2478) | def ShowLights(*args, **keywords): ... function ShowManipulatorTool (line 2479) | def ShowManipulatorTool(*args, **keywords): ... function ShowManipulators (line 2480) | def ShowManipulators(*args, **keywords): ... function ShowMarkers (line 2481) | def ShowMarkers(*args, **keywords): ... function ShowMeshAmplifyToolOptions (line 2482) | def ShowMeshAmplifyToolOptions(*args, **keywords): ... function ShowMeshBulgeToolOptions (line 2483) | def ShowMeshBulgeToolOptions(*args, **keywords): ... function ShowMeshCloneTargetToolOptions (line 2484) | def ShowMeshCloneTargetToolOptions(*args, **keywords): ... function ShowMeshEraseToolOptions (line 2485) | def ShowMeshEraseToolOptions(*args, **keywords): ... function ShowMeshFillToolOptions (line 2486) | def ShowMeshFillToolOptions(*args, **keywords): ... function ShowMeshFlattenToolOptions (line 2487) | def ShowMeshFlattenToolOptions(*args, **keywords): ... function ShowMeshFoamyToolOptions (line 2488) | def ShowMeshFoamyToolOptions(*args, **keywords): ... function ShowMeshFreezeToolOptions (line 2489) | def ShowMeshFreezeToolOptions(*args, **keywords): ... function ShowMeshGrabToolOptions (line 2490) | def ShowMeshGrabToolOptions(*args, **keywords): ... function ShowMeshGrabUVToolOptions (line 2491) | def ShowMeshGrabUVToolOptions(*args, **keywords): ... function ShowMeshImprintToolOptions (line 2492) | def ShowMeshImprintToolOptions(*args, **keywords): ... function ShowMeshKnifeToolOptions (line 2493) | def ShowMeshKnifeToolOptions(*args, **keywords): ... function ShowMeshMaskToolOptions (line 2494) | def ShowMeshMaskToolOptions(*args, **keywords): ... function ShowMeshPinchToolOptions (line 2495) | def ShowMeshPinchToolOptions(*args, **keywords): ... function ShowMeshRelaxToolOptions (line 2496) | def ShowMeshRelaxToolOptions(*args, **keywords): ... function ShowMeshRepeatToolOptions (line 2497) | def ShowMeshRepeatToolOptions(*args, **keywords): ... function ShowMeshScrapeToolOptions (line 2498) | def ShowMeshScrapeToolOptions(*args, **keywords): ... function ShowMeshSculptToolOptions (line 2499) | def ShowMeshSculptToolOptions(*args, **keywords): ... function ShowMeshSmearToolOptions (line 2500) | def ShowMeshSmearToolOptions(*args, **keywords): ... function ShowMeshSmoothTargetToolOptions (line 2501) | def ShowMeshSmoothTargetToolOptions(*args, **keywords): ... function ShowMeshSmoothToolOptions (line 2502) | def ShowMeshSmoothToolOptions(*args, **keywords): ... function ShowMeshSprayToolOptions (line 2503) | def ShowMeshSprayToolOptions(*args, **keywords): ... function ShowMeshWaxToolOptions (line 2504) | def ShowMeshWaxToolOptions(*args, **keywords): ... function ShowModelingUI (line 2505) | def ShowModelingUI(*args, **keywords): ... function ShowNCloths (line 2506) | def ShowNCloths(*args, **keywords): ... function ShowNParticles (line 2507) | def ShowNParticles(*args, **keywords): ... function ShowNRigids (line 2508) | def ShowNRigids(*args, **keywords): ... function ShowNURBSCurves (line 2509) | def ShowNURBSCurves(*args, **keywords): ... function ShowNURBSSurfaces (line 2510) | def ShowNURBSSurfaces(*args, **keywords): ... function ShowNonlinears (line 2511) | def ShowNonlinears(*args, **keywords): ... function ShowObjectGeometry (line 2512) | def ShowObjectGeometry(*args, **keywords): ... function ShowPlanes (line 2513) | def ShowPlanes(*args, **keywords): ... function ShowPolygonSurfaces (line 2514) | def ShowPolygonSurfaces(*args, **keywords): ... function ShowRenderingUI (line 2515) | def ShowRenderingUI(*args, **keywords): ... function ShowResultsOptions (line 2516) | def ShowResultsOptions(*args, **keywords): ... function ShowRiggingUI (line 2517) | def ShowRiggingUI(*args, **keywords): ... function ShowSculptObjects (line 2518) | def ShowSculptObjects(*args, **keywords): ... function ShowSelectedObjects (line 2519) | def ShowSelectedObjects(*args, **keywords): ... function ShowShadingGroupAttributeEditor (line 2520) | def ShowShadingGroupAttributeEditor(*args, **keywords): ... function ShowSmoothSkinInfluences (line 2521) | def ShowSmoothSkinInfluences(*args, **keywords): ... function ShowStrokeControlCurves (line 2522) | def ShowStrokeControlCurves(*args, **keywords): ... function ShowStrokePathCurves (line 2523) | def ShowStrokePathCurves(*args, **keywords): ... function ShowStrokes (line 2524) | def ShowStrokes(*args, **keywords): ... function ShowSubdivSurfaces (line 2525) | def ShowSubdivSurfaces(*args, **keywords): ... function ShowSurfaceCVs (line 2526) | def ShowSurfaceCVs(*args, **keywords): ... function ShowTexturePlacements (line 2527) | def ShowTexturePlacements(*args, **keywords): ... function ShowUIElements (line 2528) | def ShowUIElements(*args, **keywords): ... function ShowWhatsNew (line 2529) | def ShowWhatsNew(*args, **keywords): ... function ShowWrapInfluences (line 2530) | def ShowWrapInfluences(*args, **keywords): ... function ShrinkLoopPolygonSelectionRegion (line 2531) | def ShrinkLoopPolygonSelectionRegion(*args, **keywords): ... function ShrinkPolygonSelectionRegion (line 2532) | def ShrinkPolygonSelectionRegion(*args, **keywords): ... function SimplifyCurve (line 2533) | def SimplifyCurve(*args, **keywords): ... function SimplifyCurveOptions (line 2534) | def SimplifyCurveOptions(*args, **keywords): ... function SimplifyStrokePathCurves (line 2535) | def SimplifyStrokePathCurves(*args, **keywords): ... function Sine (line 2536) | def Sine(*args, **keywords): ... function SineOptions (line 2537) | def SineOptions(*args, **keywords): ... function SinglePerspectiveViewLayout (line 2538) | def SinglePerspectiveViewLayout(*args, **keywords): ... function SingleViewArrangement (line 2539) | def SingleViewArrangement(*args, **keywords): ... function SlideEdgeTool (line 2540) | def SlideEdgeTool(*args, **keywords): ... function SlideEdgeToolOptions (line 2541) | def SlideEdgeToolOptions(*args, **keywords): ... function SmartExtrude (line 2542) | def SmartExtrude(*args, **keywords): ... function Smoke (line 2543) | def Smoke(*args, **keywords): ... function SmokeOptions (line 2544) | def SmokeOptions(*args, **keywords): ... function SmoothBindSkin (line 2545) | def SmoothBindSkin(*args, **keywords): ... function SmoothBindSkinOptions (line 2546) | def SmoothBindSkinOptions(*args, **keywords): ... function SmoothCurve (line 2547) | def SmoothCurve(*args, **keywords): ... function SmoothCurveOptions (line 2548) | def SmoothCurveOptions(*args, **keywords): ... function SmoothHairCurves (line 2549) | def SmoothHairCurves(*args, **keywords): ... function SmoothHairCurvesOptions (line 2550) | def SmoothHairCurvesOptions(*args, **keywords): ... function SmoothPolygon (line 2551) | def SmoothPolygon(*args, **keywords): ... function SmoothPolygonOptions (line 2552) | def SmoothPolygonOptions(*args, **keywords): ... function SmoothProxy (line 2553) | def SmoothProxy(*args, **keywords): ... function SmoothProxyOptions (line 2554) | def SmoothProxyOptions(*args, **keywords): ... function SmoothSkinWeights (line 2555) | def SmoothSkinWeights(*args, **keywords): ... function SmoothSkinWeightsOptions (line 2556) | def SmoothSkinWeightsOptions(*args, **keywords): ... function SmoothTangent (line 2557) | def SmoothTangent(*args, **keywords): ... function SmoothingDisplayShowBoth (line 2558) | def SmoothingDisplayShowBoth(*args, **keywords): ... function SmoothingDisplayToggle (line 2559) | def SmoothingDisplayToggle(*args, **keywords): ... function SmoothingLevelDecrease (line 2560) | def SmoothingLevelDecrease(*args, **keywords): ... function SmoothingLevelIncrease (line 2561) | def SmoothingLevelIncrease(*args, **keywords): ... function Snap2PointsTo2Points (line 2562) | def Snap2PointsTo2Points(*args, **keywords): ... function Snap2PointsTo2PointsOptions (line 2563) | def Snap2PointsTo2PointsOptions(*args, **keywords): ... function Snap3PointsTo3Points (line 2564) | def Snap3PointsTo3Points(*args, **keywords): ... function Snap3PointsTo3PointsOptions (line 2565) | def Snap3PointsTo3PointsOptions(*args, **keywords): ... function SnapKeys (line 2566) | def SnapKeys(*args, **keywords): ... function SnapKeysOptions (line 2567) | def SnapKeysOptions(*args, **keywords): ... function SnapPointToPoint (line 2568) | def SnapPointToPoint(*args, **keywords): ... function SnapPointToPointOptions (line 2569) | def SnapPointToPointOptions(*args, **keywords): ... function SnapRotation (line 2570) | def SnapRotation(*args, **keywords): ... function SnapTimeToSelection (line 2571) | def SnapTimeToSelection(*args, **keywords): ... function SnapToCurve (line 2572) | def SnapToCurve(*args, **keywords): ... function SnapToCurvePress (line 2573) | def SnapToCurvePress(*args, **keywords): ... function SnapToCurveRelease (line 2574) | def SnapToCurveRelease(*args, **keywords): ... function SnapToGrid (line 2575) | def SnapToGrid(*args, **keywords): ... function SnapToGridPress (line 2576) | def SnapToGridPress(*args, **keywords): ... function SnapToGridRelease (line 2577) | def SnapToGridRelease(*args, **keywords): ... function SnapToMeshCenter (line 2578) | def SnapToMeshCenter(*args, **keywords): ... function SnapToMeshCenterPress (line 2579) | def SnapToMeshCenterPress(*args, **keywords): ... function SnapToMeshCenterRelease (line 2580) | def SnapToMeshCenterRelease(*args, **keywords): ... function SnapToPixel (line 2581) | def SnapToPixel(*args, **keywords): ... function SnapToPoint (line 2582) | def SnapToPoint(*args, **keywords): ... function SnapToPointPress (line 2583) | def SnapToPointPress(*args, **keywords): ... function SnapToPointRelease (line 2584) | def SnapToPointRelease(*args, **keywords): ... function SoftModDeformer (line 2585) | def SoftModDeformer(*args, **keywords): ... function SoftModDeformerOptions (line 2586) | def SoftModDeformerOptions(*args, **keywords): ... function SoftModTool (line 2587) | def SoftModTool(*args, **keywords): ... function SoftModToolOptions (line 2588) | def SoftModToolOptions(*args, **keywords): ... function Solidify (line 2589) | def Solidify(*args, **keywords): ... function SolidifyOptions (line 2590) | def SolidifyOptions(*args, **keywords): ... function SoloLastOutput (line 2591) | def SoloLastOutput(*args, **keywords): ... function SoloMaterial (line 2592) | def SoloMaterial(*args, **keywords): ... function SplitEdge (line 2593) | def SplitEdge(*args, **keywords): ... function SplitEdgeRingTool (line 2594) | def SplitEdgeRingTool(*args, **keywords): ... function SplitEdgeRingToolOptions (line 2595) | def SplitEdgeRingToolOptions(*args, **keywords): ... function SplitMeshWithProjectedCurve (line 2596) | def SplitMeshWithProjectedCurve(*args, **keywords): ... function SplitMeshWithProjectedCurveOptions (line 2597) | def SplitMeshWithProjectedCurveOptions(*args, **keywords): ... function SplitPolygonTool (line 2598) | def SplitPolygonTool(*args, **keywords): ... function SplitPolygonToolOptions (line 2599) | def SplitPolygonToolOptions(*args, **keywords): ... function SplitUV (line 2600) | def SplitUV(*args, **keywords): ... function SplitVertex (line 2601) | def SplitVertex(*args, **keywords): ... function SpreadSheetEditor (line 2602) | def SpreadSheetEditor(*args, **keywords): ... function SquareSurface (line 2603) | def SquareSurface(*args, **keywords): ... function SquareSurfaceOptions (line 2604) | def SquareSurfaceOptions(*args, **keywords): ... function Squash (line 2605) | def Squash(*args, **keywords): ... function SquashOptions (line 2606) | def SquashOptions(*args, **keywords): ... function StitchEdgesTool (line 2607) | def StitchEdgesTool(*args, **keywords): ... function StitchEdgesToolOptions (line 2608) | def StitchEdgesToolOptions(*args, **keywords): ... function StitchSurfacePoints (line 2609) | def StitchSurfacePoints(*args, **keywords): ... function StitchSurfacePointsOptions (line 2610) | def StitchSurfacePointsOptions(*args, **keywords): ... function StitchTogether (line 2611) | def StitchTogether(*args, **keywords): ... function StitchTogetherOptions (line 2612) | def StitchTogetherOptions(*args, **keywords): ... function StraightenCurves (line 2613) | def StraightenCurves(*args, **keywords): ... function StraightenCurvesOptions (line 2614) | def StraightenCurvesOptions(*args, **keywords): ... function StraightenUVBorder (line 2615) | def StraightenUVBorder(*args, **keywords): ... function StraightenUVBorderOptions (line 2616) | def StraightenUVBorderOptions(*args, **keywords): ... function SubdCutUVs (line 2617) | def SubdCutUVs(*args, **keywords): ... function SubdivProxy (line 2618) | def SubdivProxy(*args, **keywords): ... function SubdivProxyOptions (line 2619) | def SubdivProxyOptions(*args, **keywords): ... function SubdivSmoothnessFine (line 2620) | def SubdivSmoothnessFine(*args, **keywords): ... function SubdivSmoothnessFineOptions (line 2621) | def SubdivSmoothnessFineOptions(*args, **keywords): ... function SubdivSmoothnessHull (line 2622) | def SubdivSmoothnessHull(*args, **keywords): ... function SubdivSmoothnessHullOptions (line 2623) | def SubdivSmoothnessHullOptions(*args, **keywords): ... function SubdivSmoothnessMedium (line 2624) | def SubdivSmoothnessMedium(*args, **keywords): ... function SubdivSmoothnessMediumOptions (line 2625) | def SubdivSmoothnessMediumOptions(*args, **keywords): ... function SubdivSmoothnessRough (line 2626) | def SubdivSmoothnessRough(*args, **keywords): ... function SubdivSmoothnessRoughOptions (line 2627) | def SubdivSmoothnessRoughOptions(*args, **keywords): ... function SubdivSurfaceCleanTopology (line 2628) | def SubdivSurfaceCleanTopology(*args, **keywords): ... function SubdivSurfaceHierarchyMode (line 2629) | def SubdivSurfaceHierarchyMode(*args, **keywords): ... function SubdivSurfaceMatchTopology (line 2630) | def SubdivSurfaceMatchTopology(*args, **keywords): ... function SubdivSurfacePolygonProxyMode (line 2631) | def SubdivSurfacePolygonProxyMode(*args, **keywords): ... function SubdivToNURBS (line 2632) | def SubdivToNURBS(*args, **keywords): ... function SubdivToNURBSOptions (line 2633) | def SubdivToNURBSOptions(*args, **keywords): ... function SubdividePolygon (line 2634) | def SubdividePolygon(*args, **keywords): ... function SubdividePolygonOptions (line 2635) | def SubdividePolygonOptions(*args, **keywords): ... function SubstituteGeometry (line 2636) | def SubstituteGeometry(*args, **keywords): ... function SubstituteGeometryOptions (line 2637) | def SubstituteGeometryOptions(*args, **keywords): ... function SurfaceBooleanIntersectTool (line 2638) | def SurfaceBooleanIntersectTool(*args, **keywords): ... function SurfaceBooleanIntersectToolOptions (line 2639) | def SurfaceBooleanIntersectToolOptions(*args, **keywords): ... function SurfaceBooleanSubtractTool (line 2640) | def SurfaceBooleanSubtractTool(*args, **keywords): ... function SurfaceBooleanSubtractToolOptions (line 2641) | def SurfaceBooleanSubtractToolOptions(*args, **keywords): ... function SurfaceBooleanUnionTool (line 2642) | def SurfaceBooleanUnionTool(*args, **keywords): ... function SurfaceBooleanUnionToolOptions (line 2643) | def SurfaceBooleanUnionToolOptions(*args, **keywords): ... function SurfaceEditingTool (line 2644) | def SurfaceEditingTool(*args, **keywords): ... function SurfaceEditingToolOptions (line 2645) | def SurfaceEditingToolOptions(*args, **keywords): ... function SurfaceFlow (line 2646) | def SurfaceFlow(*args, **keywords): ... function SurfaceFlowOptions (line 2647) | def SurfaceFlowOptions(*args, **keywords): ... function SwapBlendShape (line 2648) | def SwapBlendShape(*args, **keywords): ... function SwapBlendShapeOptions (line 2649) | def SwapBlendShapeOptions(*args, **keywords): ... function SwapBufferCurve (line 2650) | def SwapBufferCurve(*args, **keywords): ... function Symmetrize (line 2651) | def Symmetrize(*args, **keywords): ... function SymmetrizeSelection (line 2652) | def SymmetrizeSelection(*args, **keywords): ... function SymmetrizeUV (line 2653) | def SymmetrizeUV(*args, **keywords): ... function SymmetrizeUVBrushSizeOff (line 2654) | def SymmetrizeUVBrushSizeOff(*args, **keywords): ... function SymmetrizeUVBrushSizeOn (line 2655) | def SymmetrizeUVBrushSizeOn(*args, **keywords): ... function SymmetrizeUVOptions (line 2656) | def SymmetrizeUVOptions(*args, **keywords): ... function TagAsController (line 2657) | def TagAsController(*args, **keywords): ... function TagAsControllerParent (line 2658) | def TagAsControllerParent(*args, **keywords): ... function TangentAuto (line 2659) | def TangentAuto(*args, **keywords): ... function TangentAutoCustom (line 2660) | def TangentAutoCustom(*args, **keywords): ... function TangentAutoCustomOptions (line 2661) | def TangentAutoCustomOptions(*args, **keywords): ... function TangentAutoEase (line 2662) | def TangentAutoEase(*args, **keywords): ... function TangentAutoMix (line 2663) | def TangentAutoMix(*args, **keywords): ... function TangentClamped (line 2664) | def TangentClamped(*args, **keywords): ... function TangentConstraint (line 2665) | def TangentConstraint(*args, **keywords): ... function TangentConstraintOptions (line 2666) | def TangentConstraintOptions(*args, **keywords): ... function TangentFixed (line 2667) | def TangentFixed(*args, **keywords): ... function TangentFlat (line 2668) | def TangentFlat(*args, **keywords): ... function TangentLinear (line 2669) | def TangentLinear(*args, **keywords): ... function TangentPlateau (line 2670) | def TangentPlateau(*args, **keywords): ... function TangentSpline (line 2671) | def TangentSpline(*args, **keywords): ... function TangentStepNext (line 2672) | def TangentStepNext(*args, **keywords): ... function TangentStepped (line 2673) | def TangentStepped(*args, **keywords): ... function TanimLayer (line 2674) | def TanimLayer(*args) -> Any: ... function TemplateBrushSettings (line 2675) | def TemplateBrushSettings(*args, **keywords): ... function TemplateObject (line 2676) | def TemplateObject(*args, **keywords): ... function Tension (line 2677) | def Tension(*args, **keywords): ... function TensionOptions (line 2678) | def TensionOptions(*args, **keywords): ... function TesselateSubdivSurface (line 2679) | def TesselateSubdivSurface(*args, **keywords): ... function TesselateSubdivSurfaceOptions (line 2680) | def TesselateSubdivSurfaceOptions(*args, **keywords): ... function TestTexture (line 2681) | def TestTexture(*args, **keywords): ... function TestTextureOptions (line 2682) | def TestTextureOptions(*args, **keywords): ... function TexSculptActivateBrushSize (line 2683) | def TexSculptActivateBrushSize(*args, **keywords): ... function TexSculptActivateBrushStrength (line 2684) | def TexSculptActivateBrushStrength(*args, **keywords): ... function TexSculptDeactivateBrushSize (line 2685) | def TexSculptDeactivateBrushSize(*args, **keywords): ... function TexSculptDeactivateBrushStrength (line 2686) | def TexSculptDeactivateBrushStrength(*args, **keywords): ... function TexSculptInvertPin (line 2687) | def TexSculptInvertPin(*args, **keywords): ... function TexSculptUnpinAll (line 2688) | def TexSculptUnpinAll(*args, **keywords): ... function TexSewActivateBrushSize (line 2689) | def TexSewActivateBrushSize(*args, **keywords): ... function TexSewDeactivateBrushSize (line 2690) | def TexSewDeactivateBrushSize(*args, **keywords): ... function TextureCentricUVLinkingEditor (line 2691) | def TextureCentricUVLinkingEditor(*args, **keywords): ... function TextureToGeometry (line 2692) | def TextureToGeometry(*args, **keywords): ... function TextureToGeometryOptions (line 2693) | def TextureToGeometryOptions(*args, **keywords): ... function TextureViewWindow (line 2694) | def TextureViewWindow(*args, **keywords): ... function ThreeBottomSplitViewArrangement (line 2695) | def ThreeBottomSplitViewArrangement(*args, **keywords): ... function ThreeLeftSplitViewArrangement (line 2696) | def ThreeLeftSplitViewArrangement(*args, **keywords): ... function ThreePointArcTool (line 2697) | def ThreePointArcTool(*args, **keywords): ... function ThreePointArcToolOptions (line 2698) | def ThreePointArcToolOptions(*args, **keywords): ... function ThreeRightSplitViewArrangement (line 2699) | def ThreeRightSplitViewArrangement(*args, **keywords): ... function ThreeTopSplitViewArrangement (line 2700) | def ThreeTopSplitViewArrangement(*args, **keywords): ... function TimeDraggerToolActivate (line 2701) | def TimeDraggerToolActivate(*args, **keywords): ... function TimeDraggerToolDeactivate (line 2702) | def TimeDraggerToolDeactivate(*args, **keywords): ... function TimeEditorAddToSoloSelectedTracks (line 2703) | def TimeEditorAddToSoloSelectedTracks(*args, **keywords): ... function TimeEditorClipHoldToggle (line 2704) | def TimeEditorClipHoldToggle(*args, **keywords): ... function TimeEditorClipLoopToggle (line 2705) | def TimeEditorClipLoopToggle(*args, **keywords): ... function TimeEditorClipRazor (line 2706) | def TimeEditorClipRazor(*args, **keywords): ... function TimeEditorClipResetTiming (line 2707) | def TimeEditorClipResetTiming(*args, **keywords): ... function TimeEditorClipScaleEnd (line 2708) | def TimeEditorClipScaleEnd(*args, **keywords): ... function TimeEditorClipScaleStart (line 2709) | def TimeEditorClipScaleStart(*args, **keywords): ... function TimeEditorClipScaleToggle (line 2710) | def TimeEditorClipScaleToggle(*args, **keywords): ... function TimeEditorClipTrimEnd (line 2711) | def TimeEditorClipTrimEnd(*args, **keywords): ... function TimeEditorClipTrimStart (line 2712) | def TimeEditorClipTrimStart(*args, **keywords): ... function TimeEditorClipTrimToggle (line 2713) | def TimeEditorClipTrimToggle(*args, **keywords): ... function TimeEditorCopyClips (line 2714) | def TimeEditorCopyClips(*args, **keywords): ... function TimeEditorCreateAdditiveLayer (line 2715) | def TimeEditorCreateAdditiveLayer(*args, **keywords): ... function TimeEditorCreateAnimTracksAtEnd (line 2716) | def TimeEditorCreateAnimTracksAtEnd(*args, **keywords): ... function TimeEditorCreateAudioClip (line 2717) | def TimeEditorCreateAudioClip(*args, **keywords): ... function TimeEditorCreateAudioTracksAtEnd (line 2718) | def TimeEditorCreateAudioTracksAtEnd(*args, **keywords): ... function TimeEditorCreateClip (line 2719) | def TimeEditorCreateClip(*args, **keywords): ... function TimeEditorCreateClipOptions (line 2720) | def TimeEditorCreateClipOptions(*args, **keywords): ... function TimeEditorCreateGroupFromSelection (line 2721) | def TimeEditorCreateGroupFromSelection(*args, **keywords): ... function TimeEditorCreateOverrideLayer (line 2722) | def TimeEditorCreateOverrideLayer(*args, **keywords): ... function TimeEditorCreatePoseClip (line 2723) | def TimeEditorCreatePoseClip(*args, **keywords): ... function TimeEditorCreatePoseClipOptions (line 2724) | def TimeEditorCreatePoseClipOptions(*args, **keywords): ... function TimeEditorCutClips (line 2725) | def TimeEditorCutClips(*args, **keywords): ... function TimeEditorDeleteClips (line 2726) | def TimeEditorDeleteClips(*args, **keywords): ... function TimeEditorDeleteSelectedTracks (line 2727) | def TimeEditorDeleteSelectedTracks(*args, **keywords): ... function TimeEditorExplodeGroup (line 2728) | def TimeEditorExplodeGroup(*args, **keywords): ... function TimeEditorExportSelection (line 2729) | def TimeEditorExportSelection(*args, **keywords): ... function TimeEditorExportSelectionOpt (line 2730) | def TimeEditorExportSelectionOpt(*args, **keywords): ... function TimeEditorFbxExportAll (line 2731) | def TimeEditorFbxExportAll(*args, **keywords): ... function TimeEditorFrameAll (line 2732) | def TimeEditorFrameAll(*args, **keywords): ... function TimeEditorFrameCenterView (line 2733) | def TimeEditorFrameCenterView(*args, **keywords): ... function TimeEditorFramePlaybackRange (line 2734) | def TimeEditorFramePlaybackRange(*args, **keywords): ... function TimeEditorFrameSelected (line 2735) | def TimeEditorFrameSelected(*args, **keywords): ... function TimeEditorGhostTrackToggle (line 2736) | def TimeEditorGhostTrackToggle(*args, **keywords): ... function TimeEditorImportAnimation (line 2737) | def TimeEditorImportAnimation(*args, **keywords): ... function TimeEditorKeepTransitionsTogglePress (line 2738) | def TimeEditorKeepTransitionsTogglePress(*args, **keywords): ... function TimeEditorKeepTransitionsToggleRelease (line 2739) | def TimeEditorKeepTransitionsToggleRelease(*args, **keywords): ... function TimeEditorMuteSelectedTracks (line 2740) | def TimeEditorMuteSelectedTracks(*args, **keywords): ... function TimeEditorOpenContentBrowser (line 2741) | def TimeEditorOpenContentBrowser(*args, **keywords): ... function TimeEditorPasteClips (line 2742) | def TimeEditorPasteClips(*args, **keywords): ... function TimeEditorRealTimeRefreshToggle (line 2743) | def TimeEditorRealTimeRefreshToggle(*args, **keywords): ... function TimeEditorRippleEditTogglePress (line 2744) | def TimeEditorRippleEditTogglePress(*args, **keywords): ... function TimeEditorRippleEditToggleRelease (line 2745) | def TimeEditorRippleEditToggleRelease(*args, **keywords): ... function TimeEditorSceneAuthoringToggle (line 2746) | def TimeEditorSceneAuthoringToggle(*args, **keywords): ... function TimeEditorSetKey (line 2747) | def TimeEditorSetKey(*args, **keywords): ... function TimeEditorSetZeroKey (line 2748) | def TimeEditorSetZeroKey(*args, **keywords): ... function TimeEditorSoloSelectedTracks (line 2749) | def TimeEditorSoloSelectedTracks(*args, **keywords): ... function TimeEditorToggleMuteSelectedTracks (line 2750) | def TimeEditorToggleMuteSelectedTracks(*args, **keywords): ... function TimeEditorToggleSnapToClipPress (line 2751) | def TimeEditorToggleSnapToClipPress(*args, **keywords): ... function TimeEditorToggleSnapToClipRelease (line 2752) | def TimeEditorToggleSnapToClipRelease(*args, **keywords): ... function TimeEditorToggleSoloSelectedTracks (line 2753) | def TimeEditorToggleSoloSelectedTracks(*args, **keywords): ... function TimeEditorToggleTimeCursorPress (line 2754) | def TimeEditorToggleTimeCursorPress(*args, **keywords): ... function TimeEditorToggleTimeCursorRelease (line 2755) | def TimeEditorToggleTimeCursorRelease(*args, **keywords): ... function TimeEditorUnmuteAllTracks (line 2756) | def TimeEditorUnmuteAllTracks(*args, **keywords): ... function TimeEditorUnmuteSelectedTracks (line 2757) | def TimeEditorUnmuteSelectedTracks(*args, **keywords): ... function TimeEditorUnsoloAllTracks (line 2758) | def TimeEditorUnsoloAllTracks(*args, **keywords): ... function TimeEditorWindow (line 2759) | def TimeEditorWindow(*args, **keywords): ... function ToggleAnimationDetails (line 2760) | def ToggleAnimationDetails(*args, **keywords): ... function ToggleAttributeEditor (line 2761) | def ToggleAttributeEditor(*args, **keywords): ... function ToggleAutoActivateBodyPart (line 2762) | def ToggleAutoActivateBodyPart(*args, **keywords): ... function ToggleAutoFrame (line 2763) | def ToggleAutoFrame(*args, **keywords): ... function ToggleAutoFrameTime (line 2764) | def ToggleAutoFrameTime(*args, **keywords): ... function ToggleAutoSmooth (line 2765) | def ToggleAutoSmooth(*args, **keywords): ... function ToggleBackfaceCulling (line 2766) | def ToggleBackfaceCulling(*args, **keywords): ... function ToggleBackfaceGeometry (line 2767) | def ToggleBackfaceGeometry(*args, **keywords): ... function ToggleBluePencilToolBar (line 2768) | def ToggleBluePencilToolBar(*args, **keywords): ... function ToggleBookmarkVisibility (line 2769) | def ToggleBookmarkVisibility(*args, **keywords): ... function ToggleBorderEdges (line 2770) | def ToggleBorderEdges(*args, **keywords): ... function ToggleCVs (line 2771) | def ToggleCVs(*args, **keywords): ... function ToggleCameraNames (line 2772) | def ToggleCameraNames(*args, **keywords): ... function ToggleCapsLockDisplay (line 2773) | def ToggleCapsLockDisplay(*args, **keywords): ... function ToggleChannelBox (line 2774) | def ToggleChannelBox(*args, **keywords): ... function ToggleChannelsLayers (line 2775) | def ToggleChannelsLayers(*args, **keywords): ... function ToggleCharacterControls (line 2776) | def ToggleCharacterControls(*args, **keywords): ... function ToggleColorFeedback (line 2777) | def ToggleColorFeedback(*args, **keywords): ... function ToggleCommandLine (line 2778) | def ToggleCommandLine(*args, **keywords): ... function ToggleCompIDs (line 2779) | def ToggleCompIDs(*args, **keywords): ... function ToggleContainerCentric (line 2780) | def ToggleContainerCentric(*args, **keywords): ... function ToggleCreaseEdges (line 2781) | def ToggleCreaseEdges(*args, **keywords): ... function ToggleCreaseVertices (line 2782) | def ToggleCreaseVertices(*args, **keywords): ... function ToggleCreateNurbsPrimitivesAsTool (line 2783) | def ToggleCreateNurbsPrimitivesAsTool(*args, **keywords): ... function ToggleCreatePolyPrimitivesAsTool (line 2784) | def ToggleCreatePolyPrimitivesAsTool(*args, **keywords): ... function ToggleCullingVertices (line 2785) | def ToggleCullingVertices(*args, **keywords): ... function ToggleCurrentContainerHud (line 2786) | def ToggleCurrentContainerHud(*args, **keywords): ... function ToggleCurrentFrame (line 2787) | def ToggleCurrentFrame(*args, **keywords): ... function ToggleCustomNURBSComponents (line 2788) | def ToggleCustomNURBSComponents(*args, **keywords): ... function ToggleDisplacement (line 2789) | def ToggleDisplacement(*args, **keywords): ... function ToggleDisplayColorsAttr (line 2790) | def ToggleDisplayColorsAttr(*args, **keywords): ... function ToggleDisplayGradient (line 2791) | def ToggleDisplayGradient(*args, **keywords): ... function ToggleEdgeIDs (line 2792) | def ToggleEdgeIDs(*args, **keywords): ... function ToggleEdgeMetadata (line 2793) | def ToggleEdgeMetadata(*args, **keywords): ... function ToggleEditPivot (line 2794) | def ToggleEditPivot(*args, **keywords): ... function ToggleEditPoints (line 2795) | def ToggleEditPoints(*args, **keywords): ... function ToggleEffectsMeshDisplay (line 2796) | def ToggleEffectsMeshDisplay(*args, **keywords): ... function ToggleEvaluationManagerVisibility (line 2797) | def ToggleEvaluationManagerVisibility(*args, **keywords): ... function ToggleFaceIDs (line 2798) | def ToggleFaceIDs(*args, **keywords): ... function ToggleFaceMetadata (line 2799) | def ToggleFaceMetadata(*args, **keywords): ... function ToggleFaceNormalDisplay (line 2800) | def ToggleFaceNormalDisplay(*args, **keywords): ... function ToggleFaceNormals (line 2801) | def ToggleFaceNormals(*args, **keywords): ... function ToggleFastInteraction (line 2802) | def ToggleFastInteraction(*args, **keywords): ... function ToggleFkIk (line 2803) | def ToggleFkIk(*args, **keywords): ... function ToggleFocalLength (line 2804) | def ToggleFocalLength(*args, **keywords): ... function ToggleFrameRate (line 2805) | def ToggleFrameRate(*args, **keywords): ... function ToggleFullScreenMode (line 2806) | def ToggleFullScreenMode(*args, **keywords): ... function ToggleGrid (line 2807) | def ToggleGrid(*args, **keywords): ... function ToggleHelpLine (line 2808) | def ToggleHelpLine(*args, **keywords): ... function ToggleHikDetails (line 2809) | def ToggleHikDetails(*args, **keywords): ... function ToggleHoleFaces (line 2810) | def ToggleHoleFaces(*args, **keywords): ... function ToggleHulls (line 2811) | def ToggleHulls(*args, **keywords): ... function ToggleIKAllowRotation (line 2812) | def ToggleIKAllowRotation(*args, **keywords): ... function ToggleIKHandleSnap (line 2813) | def ToggleIKHandleSnap(*args, **keywords): ... function ToggleIKSolvers (line 2814) | def ToggleIKSolvers(*args, **keywords): ... function ToggleImagePlaneOptionCmd (line 2815) | def ToggleImagePlaneOptionCmd(*args, **keywords): ... function ToggleInViewEditor (line 2816) | def ToggleInViewEditor(*args, **keywords): ... function ToggleInViewMessage (line 2817) | def ToggleInViewMessage(*args, **keywords): ... function ToggleIsolateSelect (line 2818) | def ToggleIsolateSelect(*args, **keywords): ... function ToggleJointLabels (line 2819) | def ToggleJointLabels(*args, **keywords): ... function ToggleKeepHardEdgeCulling (line 2820) | def ToggleKeepHardEdgeCulling(*args, **keywords): ... function ToggleKeepWireCulling (line 2821) | def ToggleKeepWireCulling(*args, **keywords): ... function ToggleLatticePoints (line 2822) | def ToggleLatticePoints(*args, **keywords): ... function ToggleLatticeShape (line 2823) | def ToggleLatticeShape(*args, **keywords): ... function ToggleLayerBar (line 2824) | def ToggleLayerBar(*args, **keywords): ... function ToggleLocalRotationAxes (line 2825) | def ToggleLocalRotationAxes(*args, **keywords): ... function ToggleMainMenubar (line 2826) | def ToggleMainMenubar(*args, **keywords): ... function ToggleMaterialLoadingDetailsVisibility (line 2827) | def ToggleMaterialLoadingDetailsVisibility(*args, **keywords): ... function ToggleMeshEdges (line 2828) | def ToggleMeshEdges(*args, **keywords): ... function ToggleMeshFaces (line 2829) | def ToggleMeshFaces(*args, **keywords): ... function ToggleMeshMaps (line 2830) | def ToggleMeshMaps(*args, **keywords): ... function ToggleMeshPoints (line 2831) | def ToggleMeshPoints(*args, **keywords): ... function ToggleMeshUVBorders (line 2832) | def ToggleMeshUVBorders(*args, **keywords): ... function ToggleMetadata (line 2833) | def ToggleMetadata(*args, **keywords): ... function ToggleModelEditorBars (line 2834) | def ToggleModelEditorBars(*args, **keywords): ... function ToggleModelingToolkit (line 2835) | def ToggleModelingToolkit(*args, **keywords): ... function ToggleMultiColorFeedback (line 2836) | def ToggleMultiColorFeedback(*args, **keywords): ... function ToggleNormals (line 2837) | def ToggleNormals(*args, **keywords): ... function ToggleNurbsCurvesOptionCmd (line 2838) | def ToggleNurbsCurvesOptionCmd(*args, **keywords): ... function ToggleNurbsPrimitivesAsToolExitOnComplete (line 2839) | def ToggleNurbsPrimitivesAsToolExitOnComplete(*args, **keywords): ... function ToggleObjectDetails (line 2840) | def ToggleObjectDetails(*args, **keywords): ... function ToggleOppositeFlagOfSelectedShapes (line 2841) | def ToggleOppositeFlagOfSelectedShapes(*args, **keywords): ... function ToggleOriginAxis (line 2842) | def ToggleOriginAxis(*args, **keywords): ... function ToggleOutliner (line 2843) | def ToggleOutliner(*args, **keywords): ... function TogglePaintAtDepth (line 2844) | def TogglePaintAtDepth(*args, **keywords): ... function TogglePaintOnPaintableObjects (line 2845) | def TogglePaintOnPaintableObjects(*args, **keywords): ... function TogglePanZoomPress (line 2846) | def TogglePanZoomPress(*args, **keywords): ... function TogglePanZoomRelease (line 2847) | def TogglePanZoomRelease(*args, **keywords): ... function TogglePanelMenubar (line 2848) | def TogglePanelMenubar(*args, **keywords): ... function ToggleParticleCount (line 2849) | def ToggleParticleCount(*args, **keywords): ... function TogglePolyCount (line 2850) | def TogglePolyCount(*args, **keywords): ... function TogglePolyDisplayEdges (line 2851) | def TogglePolyDisplayEdges(*args, **keywords): ... function TogglePolyDisplayHardEdges (line 2852) | def TogglePolyDisplayHardEdges(*args, **keywords): ... function TogglePolyDisplayHardEdgesColor (line 2853) | def TogglePolyDisplayHardEdgesColor(*args, **keywords): ... function TogglePolyDisplayLimitToSelected (line 2854) | def TogglePolyDisplayLimitToSelected(*args, **keywords): ... function TogglePolyDisplaySoftEdges (line 2855) | def TogglePolyDisplaySoftEdges(*args, **keywords): ... function TogglePolyNonPlanarFaceDisplay (line 2856) | def TogglePolyNonPlanarFaceDisplay(*args, **keywords): ... function TogglePolyPrimitivesAsToolExitOnComplete (line 2857) | def TogglePolyPrimitivesAsToolExitOnComplete(*args, **keywords): ... function TogglePolyUVsCreateShader (line 2858) | def TogglePolyUVsCreateShader(*args, **keywords): ... function TogglePolygonFaceCenters (line 2859) | def TogglePolygonFaceCenters(*args, **keywords): ... function TogglePolygonFaceTriangles (line 2860) | def TogglePolygonFaceTriangles(*args, **keywords): ... function TogglePolygonFaceTrianglesDisplay (line 2861) | def TogglePolygonFaceTrianglesDisplay(*args, **keywords): ... function TogglePolygonsOptionCmd (line 2862) | def TogglePolygonsOptionCmd(*args, **keywords): ... function ToggleProxyDisplay (line 2863) | def ToggleProxyDisplay(*args, **keywords): ... function ToggleRangeSlider (line 2864) | def ToggleRangeSlider(*args, **keywords): ... function ToggleReflection (line 2865) | def ToggleReflection(*args, **keywords): ... function ToggleRotationPivots (line 2866) | def ToggleRotationPivots(*args, **keywords): ... function ToggleScalePivots (line 2867) | def ToggleScalePivots(*args, **keywords): ... function ToggleSceneTimecode (line 2868) | def ToggleSceneTimecode(*args, **keywords): ... function ToggleSelectDetails (line 2869) | def ToggleSelectDetails(*args, **keywords): ... function ToggleSelectedLabels (line 2870) | def ToggleSelectedLabels(*args, **keywords): ... function ToggleSelectionHandles (line 2871) | def ToggleSelectionHandles(*args, **keywords): ... function ToggleShelf (line 2872) | def ToggleShelf(*args, **keywords): ... function ToggleShowBufferCurves (line 2873) | def ToggleShowBufferCurves(*args, **keywords): ... function ToggleShowResults (line 2874) | def ToggleShowResults(*args, **keywords): ... function ToggleSoftEdges (line 2875) | def ToggleSoftEdges(*args, **keywords): ... function ToggleStatusLine (line 2876) | def ToggleStatusLine(*args, **keywords): ... function ToggleSubdDetails (line 2877) | def ToggleSubdDetails(*args, **keywords): ... function ToggleSurfaceFaceCenters (line 2878) | def ToggleSurfaceFaceCenters(*args, **keywords): ... function ToggleSurfaceOrigin (line 2879) | def ToggleSurfaceOrigin(*args, **keywords): ... function ToggleSymmetryDisplay (line 2880) | def ToggleSymmetryDisplay(*args, **keywords): ... function ToggleTangentDisplay (line 2881) | def ToggleTangentDisplay(*args, **keywords): ... function ToggleTextureBorder (line 2882) | def ToggleTextureBorder(*args, **keywords): ... function ToggleTextureBorderEdges (line 2883) | def ToggleTextureBorderEdges(*args, **keywords): ... function ToggleTimeSlider (line 2884) | def ToggleTimeSlider(*args, **keywords): ... function ToggleToolSettings (line 2885) | def ToggleToolSettings(*args, **keywords): ... function ToggleToolbox (line 2886) | def ToggleToolbox(*args, **keywords): ... function ToggleUIElements (line 2887) | def ToggleUIElements(*args, **keywords): ... function ToggleUVDistortion (line 2888) | def ToggleUVDistortion(*args, **keywords): ... function ToggleUVEditorIsolateSelectHUD (line 2889) | def ToggleUVEditorIsolateSelectHUD(*args, **keywords): ... function ToggleUVEditorUVPositionHUD (line 2890) | def ToggleUVEditorUVPositionHUD(*args, **keywords): ... function ToggleUVEditorUVStatisticsHUD (line 2891) | def ToggleUVEditorUVStatisticsHUD(*args, **keywords): ... function ToggleUVEditorUVStatisticsHUDOptions (line 2892) | def ToggleUVEditorUVStatisticsHUDOptions(*args, **keywords): ... function ToggleUVIsolateViewSelected (line 2893) | def ToggleUVIsolateViewSelected(*args, **keywords): ... function ToggleUVShellBorder (line 2894) | def ToggleUVShellBorder(*args, **keywords): ... function ToggleUVTextureImage (line 2895) | def ToggleUVTextureImage(*args, **keywords): ... function ToggleUVs (line 2896) | def ToggleUVs(*args, **keywords): ... function ToggleUnsharedUVs (line 2897) | def ToggleUnsharedUVs(*args, **keywords): ... function ToggleUseDefaultMaterial (line 2898) | def ToggleUseDefaultMaterial(*args, **keywords): ... function ToggleVertIDs (line 2899) | def ToggleVertIDs(*args, **keywords): ... function ToggleVertMetadata (line 2900) | def ToggleVertMetadata(*args, **keywords): ... function ToggleVertexNormalDisplay (line 2901) | def ToggleVertexNormalDisplay(*args, **keywords): ... function ToggleVertices (line 2902) | def ToggleVertices(*args, **keywords): ... function ToggleViewAxis (line 2903) | def ToggleViewAxis(*args, **keywords): ... function ToggleViewCube (line 2904) | def ToggleViewCube(*args, **keywords): ... function ToggleViewportRenderer (line 2905) | def ToggleViewportRenderer(*args, **keywords): ... function ToggleVisibilityAndKeepSelection (line 2906) | def ToggleVisibilityAndKeepSelection(*args, **keywords): ... function ToggleVisibilityAndKeepSelectionOptions (line 2907) | def ToggleVisibilityAndKeepSelectionOptions(*args, **keywords): ... function ToggleWireframeInArtisan (line 2908) | def ToggleWireframeInArtisan(*args, **keywords): ... function ToggleWireframeOnShadedCmd (line 2909) | def ToggleWireframeOnShadedCmd(*args, **keywords): ... function ToggleZoomInMode (line 2910) | def ToggleZoomInMode(*args, **keywords): ... function ToolSettingsWindow (line 2911) | def ToolSettingsWindow(*args, **keywords): ... function TrackTool (line 2912) | def TrackTool(*args, **keywords): ... function TransferAttributeValues (line 2913) | def TransferAttributeValues(*args, **keywords): ... function TransferAttributeValuesOptions (line 2914) | def TransferAttributeValuesOptions(*args, **keywords): ... function TransferAttributes (line 2915) | def TransferAttributes(*args, **keywords): ... function TransferShadingSets (line 2916) | def TransferShadingSets(*args, **keywords): ... function TransferVertexOrder (line 2917) | def TransferVertexOrder(*args, **keywords): ... function TransformNoSelectOffTool (line 2918) | def TransformNoSelectOffTool(*args, **keywords): ... function TransformNoSelectOnTool (line 2919) | def TransformNoSelectOnTool(*args, **keywords): ... function TransformPolygonComponent (line 2920) | def TransformPolygonComponent(*args, **keywords): ... function TransformPolygonComponentOptions (line 2921) | def TransformPolygonComponentOptions(*args, **keywords): ... function TranslateToolMarkingMenu (line 2922) | def TranslateToolMarkingMenu(*args, **keywords): ... function TranslateToolMarkingMenuPopDown (line 2923) | def TranslateToolMarkingMenuPopDown(*args, **keywords): ... function TranslateToolWithSnapMarkingMenu (line 2924) | def TranslateToolWithSnapMarkingMenu(*args, **keywords): ... function TranslateToolWithSnapMarkingMenuPopDown (line 2925) | def TranslateToolWithSnapMarkingMenuPopDown(*args, **keywords): ... function TransplantHair (line 2926) | def TransplantHair(*args, **keywords): ... function TransplantHairOptions (line 2927) | def TransplantHairOptions(*args, **keywords): ... function TrenderSetupStates (line 2928) | def TrenderSetupStates(*args) -> Any: ... function Triangulate (line 2929) | def Triangulate(*args, **keywords): ... function TrimTool (line 2930) | def TrimTool(*args, **keywords): ... function TrimToolOptions (line 2931) | def TrimToolOptions(*args, **keywords): ... function TruncateHairCache (line 2932) | def TruncateHairCache(*args, **keywords): ... function TumbleTool (line 2933) | def TumbleTool(*args, **keywords): ... function Turbulence (line 2934) | def Turbulence(*args, **keywords): ... function TurbulenceOptions (line 2935) | def TurbulenceOptions(*args, **keywords): ... function Twist (line 2936) | def Twist(*args, **keywords): ... function TwistOptions (line 2937) | def TwistOptions(*args, **keywords): ... function TwoPointArcTool (line 2938) | def TwoPointArcTool(*args, **keywords): ... function TwoPointArcToolOptions (line 2939) | def TwoPointArcToolOptions(*args, **keywords): ... function TwoSideBySideViewArrangement (line 2940) | def TwoSideBySideViewArrangement(*args, **keywords): ... function TwoStackedViewArrangement (line 2941) | def TwoStackedViewArrangement(*args, **keywords): ... function U3DBrushPressureOff (line 2942) | def U3DBrushPressureOff(*args, **keywords): ... function U3DBrushPressureOn (line 2943) | def U3DBrushPressureOn(*args, **keywords): ... function U3DBrushSizeOff (line 2944) | def U3DBrushSizeOff(*args, **keywords): ... function U3DBrushSizeOn (line 2945) | def U3DBrushSizeOn(*args, **keywords): ... function UIModeMarkingMenu (line 2946) | def UIModeMarkingMenu(*args, **keywords): ... function UIModeMarkingMenuPopDown (line 2947) | def UIModeMarkingMenuPopDown(*args, **keywords): ... function UVAutomaticProjection (line 2948) | def UVAutomaticProjection(*args, **keywords): ... function UVAutomaticProjectionOptions (line 2949) | def UVAutomaticProjectionOptions(*args, **keywords): ... function UVCameraBasedProjection (line 2950) | def UVCameraBasedProjection(*args, **keywords): ... function UVCameraBasedProjectionOptions (line 2951) | def UVCameraBasedProjectionOptions(*args, **keywords): ... function UVCentricUVLinkingEditor (line 2952) | def UVCentricUVLinkingEditor(*args, **keywords): ... function UVContourStretchProjection (line 2953) | def UVContourStretchProjection(*args, **keywords): ... function UVContourStretchProjectionOptions (line 2954) | def UVContourStretchProjectionOptions(*args, **keywords): ... function UVCreateSnapshot (line 2955) | def UVCreateSnapshot(*args, **keywords): ... function UVCylindricProjection (line 2956) | def UVCylindricProjection(*args, **keywords): ... function UVCylindricProjectionOptions (line 2957) | def UVCylindricProjectionOptions(*args, **keywords): ... function UVEditorFrameAll (line 2958) | def UVEditorFrameAll(*args, **keywords): ... function UVEditorFrameSelected (line 2959) | def UVEditorFrameSelected(*args, **keywords): ... function UVEditorInvertPin (line 2960) | def UVEditorInvertPin(*args, **keywords): ... function UVEditorResetAllToDefault (line 2961) | def UVEditorResetAllToDefault(*args, **keywords): ... function UVEditorToggleTextureBorderDisplay (line 2962) | def UVEditorToggleTextureBorderDisplay(*args, **keywords): ... function UVEditorUnpinAll (line 2963) | def UVEditorUnpinAll(*args, **keywords): ... function UVGatherShells (line 2964) | def UVGatherShells(*args, **keywords): ... function UVIsolateLoadSet (line 2965) | def UVIsolateLoadSet(*args, **keywords): ... function UVNormalBasedProjection (line 2966) | def UVNormalBasedProjection(*args, **keywords): ... function UVNormalBasedProjectionOptions (line 2967) | def UVNormalBasedProjectionOptions(*args, **keywords): ... function UVOrientShells (line 2968) | def UVOrientShells(*args, **keywords): ... function UVPin (line 2969) | def UVPin(*args, **keywords): ... function UVPinOptions (line 2970) | def UVPinOptions(*args, **keywords): ... function UVPlanarProjection (line 2971) | def UVPlanarProjection(*args, **keywords): ... function UVPlanarProjectionOptions (line 2972) | def UVPlanarProjectionOptions(*args, **keywords): ... function UVSetEditor (line 2973) | def UVSetEditor(*args, **keywords): ... function UVSnapTogether (line 2974) | def UVSnapTogether(*args, **keywords): ... function UVSnapTogetherOptions (line 2975) | def UVSnapTogetherOptions(*args, **keywords): ... function UVSphericalProjection (line 2976) | def UVSphericalProjection(*args, **keywords): ... function UVSphericalProjectionOptions (line 2977) | def UVSphericalProjectionOptions(*args, **keywords): ... function UVStackSimilarShells (line 2978) | def UVStackSimilarShells(*args, **keywords): ... function UVStackSimilarShellsOptions (line 2979) | def UVStackSimilarShellsOptions(*args, **keywords): ... function UVStraighten (line 2980) | def UVStraighten(*args, **keywords): ... function UVStraightenOptions (line 2981) | def UVStraightenOptions(*args, **keywords): ... function UVUnstackShells (line 2982) | def UVUnstackShells(*args, **keywords): ... function UVUnstackShellsOptions (line 2983) | def UVUnstackShellsOptions(*args, **keywords): ... function UfeCommandObject (line 2984) | def UfeCommandObject(*args) -> Any: ... function UncreaseSubdivSurface (line 2985) | def UncreaseSubdivSurface(*args, **keywords): ... function Undo (line 2986) | def Undo(*args, **keywords): ... function UndoCanvas (line 2987) | def UndoCanvas(*args, **keywords): ... function UndoViewChange (line 2988) | def UndoViewChange(*args, **keywords): ... function UnfoldPackUVs3DInCurrentTile (line 2989) | def UnfoldPackUVs3DInCurrentTile(*args, **keywords): ... function UnfoldPackUVs3DInEmptyTile (line 2990) | def UnfoldPackUVs3DInEmptyTile(*args, **keywords): ... function UnfoldUV (line 2991) | def UnfoldUV(*args, **keywords): ... function UnfoldUVOptions (line 2992) | def UnfoldUVOptions(*args, **keywords): ... function Ungroup (line 2993) | def Ungroup(*args, **keywords): ... function UngroupOptions (line 2994) | def UngroupOptions(*args, **keywords): ... function Uniform (line 2995) | def Uniform(*args, **keywords): ... function UniformOptions (line 2996) | def UniformOptions(*args, **keywords): ... function UnifyTangents (line 2997) | def UnifyTangents(*args, **keywords): ... function UnitizeUVs (line 2998) | def UnitizeUVs(*args, **keywords): ... function UnitizeUVsOptions (line 2999) | def UnitizeUVsOptions(*args, **keywords): ... function UniversalManip (line 3000) | def UniversalManip(*args, **keywords): ... function UniversalManipOptions (line 3001) | def UniversalManipOptions(*args, **keywords): ... function UnlockContainer (line 3002) | def UnlockContainer(*args, **keywords): ... function UnlockCurveLength (line 3003) | def UnlockCurveLength(*args, **keywords): ... function UnlockNormals (line 3004) | def UnlockNormals(*args, **keywords): ... function UnmirrorSmoothProxy (line 3005) | def UnmirrorSmoothProxy(*args, **keywords): ... function UnmirrorSmoothProxyOptions (line 3006) | def UnmirrorSmoothProxyOptions(*args, **keywords): ... function Unparent (line 3007) | def Unparent(*args, **keywords): ... function UnparentOptions (line 3008) | def UnparentOptions(*args, **keywords): ... function UnpinSelection (line 3009) | def UnpinSelection(*args, **keywords): ... function UnpublishAttributes (line 3010) | def UnpublishAttributes(*args, **keywords): ... function UnpublishChildAnchor (line 3011) | def UnpublishChildAnchor(*args, **keywords): ... function UnpublishNode (line 3012) | def UnpublishNode(*args, **keywords): ... function UnpublishParentAnchor (line 3013) | def UnpublishParentAnchor(*args, **keywords): ... function UnpublishRootTransform (line 3014) | def UnpublishRootTransform(*args, **keywords): ... function UnsmoothPolygon (line 3015) | def UnsmoothPolygon(*args, **keywords): ... function UnsmoothPolygonOptions (line 3016) | def UnsmoothPolygonOptions(*args, **keywords): ... function UntemplateObject (line 3017) | def UntemplateObject(*args, **keywords): ... function UntrimSurfaces (line 3018) | def UntrimSurfaces(*args, **keywords): ... function UntrimSurfacesOptions (line 3019) | def UntrimSurfacesOptions(*args, **keywords): ... function UpdateBindingSet (line 3020) | def UpdateBindingSet(*args, **keywords): ... function UpdateBindingSetOptions (line 3021) | def UpdateBindingSetOptions(*args, **keywords): ... function UpdateBookmarkWithSelection (line 3022) | def UpdateBookmarkWithSelection(*args, **keywords): ... function UpdateCurrentScene3dsMax (line 3023) | def UpdateCurrentScene3dsMax(*args, **keywords): ... function UpdateCurrentSceneFlame (line 3024) | def UpdateCurrentSceneFlame(*args, **keywords): ... function UpdateCurrentSceneFlare (line 3025) | def UpdateCurrentSceneFlare(*args, **keywords): ... function UpdateCurrentSceneMotionBuilder (line 3026) | def UpdateCurrentSceneMotionBuilder(*args, **keywords): ... function UpdateCurrentSceneMudbox (line 3027) | def UpdateCurrentSceneMudbox(*args, **keywords): ... function UpdateEraseSurface (line 3028) | def UpdateEraseSurface(*args, **keywords): ... function UpdatePSDTextureItem (line 3029) | def UpdatePSDTextureItem(*args, **keywords): ... function UpdateReferenceSurface (line 3030) | def UpdateReferenceSurface(*args, **keywords): ... function UpdateSnapshot (line 3031) | def UpdateSnapshot(*args, **keywords): ... function UseHardwareShader (line 3032) | def UseHardwareShader(*args, **keywords): ... function UseSelectedEmitter (line 3033) | def UseSelectedEmitter(*args, **keywords): ... function VertexNormalEditTool (line 3034) | def VertexNormalEditTool(*args, **keywords): ... function ViewAllTutorials (line 3035) | def ViewAllTutorials(*args, **keywords): ... function ViewAlongAxisNegativeX (line 3036) | def ViewAlongAxisNegativeX(*args, **keywords): ... function ViewAlongAxisNegativeY (line 3037) | def ViewAlongAxisNegativeY(*args, **keywords): ... function ViewAlongAxisNegativeZ (line 3038) | def ViewAlongAxisNegativeZ(*args, **keywords): ... function ViewAlongAxisX (line 3039) | def ViewAlongAxisX(*args, **keywords): ... function ViewAlongAxisY (line 3040) | def ViewAlongAxisY(*args, **keywords): ... function ViewAlongAxisZ (line 3041) | def ViewAlongAxisZ(*args, **keywords): ... function ViewImage (line 3042) | def ViewImage(*args, **keywords): ... function ViewSequence (line 3043) | def ViewSequence(*args, **keywords): ... function ViewportEnableSmoothing (line 3044) | def ViewportEnableSmoothing(*args, **keywords): ... function VisorWindow (line 3045) | def VisorWindow(*args, **keywords): ... function VisualizeMetadataOptions (line 3046) | def VisualizeMetadataOptions(*args, **keywords): ... function VolumeAxis (line 3047) | def VolumeAxis(*args, **keywords): ... function VolumeAxisOptions (line 3048) | def VolumeAxisOptions(*args, **keywords): ... function VolumeSkinBinding (line 3049) | def VolumeSkinBinding(*args, **keywords): ... function VolumeSkinBindingOptions (line 3050) | def VolumeSkinBindingOptions(*args, **keywords): ... function Vortex (line 3051) | def Vortex(*args, **keywords): ... function VortexOptions (line 3052) | def VortexOptions(*args, **keywords): ... function WalkTool (line 3053) | def WalkTool(*args, **keywords): ... function WarpImage (line 3054) | def WarpImage(*args, **keywords): ... function WarpImageOptions (line 3055) | def WarpImageOptions(*args, **keywords): ... function Wave (line 3056) | def Wave(*args, **keywords): ... function WaveOptions (line 3057) | def WaveOptions(*args, **keywords): ... function WedgePolygon (line 3058) | def WedgePolygon(*args, **keywords): ... function WedgePolygonOptions (line 3059) | def WedgePolygonOptions(*args, **keywords): ... function WeightHammer (line 3060) | def WeightHammer(*args, **keywords): ... function WeightHammerOptions (line 3061) | def WeightHammerOptions(*args, **keywords): ... function WeightedTangents (line 3062) | def WeightedTangents(*args, **keywords): ... function WhatsNewHighlightingOff (line 3063) | def WhatsNewHighlightingOff(*args, **keywords): ... function WhatsNewHighlightingOn (line 3064) | def WhatsNewHighlightingOn(*args, **keywords): ... function WireDropoffLocator (line 3065) | def WireDropoffLocator(*args, **keywords): ... function WireDropoffLocatorOptions (line 3066) | def WireDropoffLocatorOptions(*args, **keywords): ... function WireTool (line 3067) | def WireTool(*args, **keywords): ... function WireToolOptions (line 3068) | def WireToolOptions(*args, **keywords): ... function WrinkleTool (line 3069) | def WrinkleTool(*args, **keywords): ... function WrinkleToolOptions (line 3070) | def WrinkleToolOptions(*args, **keywords): ... function XgCreateIgSplineEditor (line 3071) | def XgCreateIgSplineEditor(*args, **keywords): ... function XgmCreateInteractiveGroomSplines (line 3072) | def XgmCreateInteractiveGroomSplines(*args, **keywords): ... function XgmCreateInteractiveGroomSplinesOption (line 3073) | def XgmCreateInteractiveGroomSplinesOption(*args, **keywords): ... function XgmSetClumpBrushTool (line 3074) | def XgmSetClumpBrushTool(*args, **keywords): ... function XgmSetClumpBrushToolOption (line 3075) | def XgmSetClumpBrushToolOption(*args, **keywords): ... function XgmSetCombBrushTool (line 3076) | def XgmSetCombBrushTool(*args, **keywords): ... function XgmSetCombBrushToolOption (line 3077) | def XgmSetCombBrushToolOption(*args, **keywords): ... function XgmSetCutBrushTool (line 3078) | def XgmSetCutBrushTool(*args, **keywords): ... function XgmSetCutBrushToolOption (line 3079) | def XgmSetCutBrushToolOption(*args, **keywords): ... function XgmSetDensityBrushTool (line 3080) | def XgmSetDensityBrushTool(*args, **keywords): ... function XgmSetDensityBrushToolOption (line 3081) | def XgmSetDensityBrushToolOption(*args, **keywords): ... function XgmSetDirectionBrushTool (line 3082) | def XgmSetDirectionBrushTool(*args, **keywords): ... function XgmSetDirectionBrushToolOption (line 3083) | def XgmSetDirectionBrushToolOption(*args, **keywords): ... function XgmSetFreezeBrushTool (line 3084) | def XgmSetFreezeBrushTool(*args, **keywords): ... function XgmSetFreezeBrushToolOption (line 3085) | def XgmSetFreezeBrushToolOption(*args, **keywords): ... function XgmSetGrabBrushTool (line 3086) | def XgmSetGrabBrushTool(*args, **keywords): ... function XgmSetGrabBrushToolOption (line 3087) | def XgmSetGrabBrushToolOption(*args, **keywords): ... function XgmSetLengthBrushTool (line 3088) | def XgmSetLengthBrushTool(*args, **keywords): ... function XgmSetLengthBrushToolOption (line 3089) | def XgmSetLengthBrushToolOption(*args, **keywords): ... function XgmSetNoiseBrushTool (line 3090) | def XgmSetNoiseBrushTool(*args, **keywords): ... function XgmSetNoiseBrushToolOption (line 3091) | def XgmSetNoiseBrushToolOption(*args, **keywords): ... function XgmSetPartBrushTool (line 3092) | def XgmSetPartBrushTool(*args, **keywords): ... function XgmSetPartBrushToolOption (line 3093) | def XgmSetPartBrushToolOption(*args, **keywords): ... function XgmSetPlaceBrushTool (line 3094) | def XgmSetPlaceBrushTool(*args, **keywords): ... function XgmSetPlaceBrushToolOption (line 3095) | def XgmSetPlaceBrushToolOption(*args, **keywords): ... function XgmSetSelectBrushTool (line 3096) | def XgmSetSelectBrushTool(*args, **keywords): ... function XgmSetSelectBrushToolOption (line 3097) | def XgmSetSelectBrushToolOption(*args, **keywords): ... function XgmSetSmoothBrushTool (line 3098) | def XgmSetSmoothBrushTool(*args, **keywords): ... function XgmSetSmoothBrushToolOption (line 3099) | def XgmSetSmoothBrushToolOption(*args, **keywords): ... function XgmSetWidthBrushTool (line 3100) | def XgmSetWidthBrushTool(*args, **keywords): ... function XgmSetWidthBrushToolOption (line 3101) | def XgmSetWidthBrushToolOption(*args, **keywords): ... function XgmSplineCacheCreate (line 3102) | def XgmSplineCacheCreate(*args, **keywords): ... function XgmSplineCacheCreateOptions (line 3103) | def XgmSplineCacheCreateOptions(*args, **keywords): ... function XgmSplineCacheDelete (line 3104) | def XgmSplineCacheDelete(*args, **keywords): ... function XgmSplineCacheDeleteNodesAhead (line 3105) | def XgmSplineCacheDeleteNodesAhead(*args, **keywords): ... function XgmSplineCacheDeleteOptions (line 3106) | def XgmSplineCacheDeleteOptions(*args, **keywords): ... function XgmSplineCacheDisableSelectedCache (line 3107) | def XgmSplineCacheDisableSelectedCache(*args, **keywords): ... function XgmSplineCacheEnableSelectedCache (line 3108) | def XgmSplineCacheEnableSelectedCache(*args, **keywords): ... function XgmSplineCacheExport (line 3109) | def XgmSplineCacheExport(*args, **keywords): ... function XgmSplineCacheExportOptions (line 3110) | def XgmSplineCacheExportOptions(*args, **keywords): ... function XgmSplineCacheImport (line 3111) | def XgmSplineCacheImport(*args, **keywords): ... function XgmSplineCacheImportOptions (line 3112) | def XgmSplineCacheImportOptions(*args, **keywords): ... function XgmSplineCacheReplace (line 3113) | def XgmSplineCacheReplace(*args, **keywords): ... function XgmSplineCacheReplaceOptions (line 3114) | def XgmSplineCacheReplaceOptions(*args, **keywords): ... function XgmSplineGeometryConvert (line 3115) | def XgmSplineGeometryConvert(*args, **keywords): ... function XgmSplinePresetExport (line 3116) | def XgmSplinePresetExport(*args, **keywords): ... function XgmSplinePresetImport (line 3117) | def XgmSplinePresetImport(*args, **keywords): ... function XgmSplineSelectConvertToFreeze (line 3118) | def XgmSplineSelectConvertToFreeze(*args, **keywords): ... function XgmSplineSelectReplaceBySelectedFaces (line 3119) | def XgmSplineSelectReplaceBySelectedFaces(*args, **keywords): ... function ZeroPivot (line 3120) | def ZeroPivot(*args, **keywords): ... function ZoomTool (line 3121) | def ZoomTool(*args, **keywords): ... function aaf2fcp (line 3122) | def aaf2fcp(*args, deleteFile: bool | int = ..., dstPath: str = ..., get... function about (line 3123) | def about(*args, apiVersion: bool | int = ..., application: bool | int =... function addAttr (line 3126) | def addAttr(*args, edit: Literal[True], category: str | list[str] = ...,... function addAttr (line 3129) | def addAttr(*args, attributeType: bool | int | str = ..., binaryTag: boo... function addDynamic (line 3130) | def addDynamic(*args) -> Any: ... function addDynamicAttribute (line 3131) | def addDynamicAttribute(*args, **keywords): ... function addExtension (line 3134) | def addExtension(*args, edit: Literal[True], category: str | list[str] =... function addExtension (line 3137) | def addExtension(*args, attributeType: bool | int | str = ..., binaryTag... function addMetadata (line 3138) | def addMetadata(*args, channelName: bool | int | str = ..., channelType:... function addPP (line 3139) | def addPP(*args, attribute: str = ...) -> Any: ... function adpAnalyticsDialog (line 3140) | def adpAnalyticsDialog(*args, activeNotification: bool | int = ..., desk... function adpWaypoint (line 3141) | def adpWaypoint(*args, name: str = ..., property: str | list[str] = ...)... function adskAsset (line 3142) | def adskAsset(*args, assetID: str = ..., library: str = ..., query: bool... function adskAssetLibrary (line 3143) | def adskAssetLibrary(*args, unload: bool | int = ..., unloadAll: bool | ... function adskAssetList (line 3144) | def adskAssetList(*args, infoType: str = ...) -> Any: ... function adskAssetListUI (line 3145) | def adskAssetListUI(*args, commandSuffix: str = ..., materialLoaded: boo... function affectedNet (line 3146) | def affectedNet(*args, edit: bool | int = ..., query: bool | int = ..., ... function affects (line 3147) | def affects(*args, by: Any = ..., type: str = ...) -> Any: ... function agFormatIn (line 3148) | def agFormatIn(*args, file: str = ..., name: str = ...) -> Any: ... function agFormatOut (line 3149) | def agFormatOut(*args, file: str = ...) -> Any: ... function aimConstraint (line 3152) | def aimConstraint(*args, edit: Literal[True], aimVector: tuple[float, fl... function aimConstraint (line 3155) | def aimConstraint(*args, aimVector: bool | int | tuple[float, float, flo... function air (line 3158) | def air(*args, edit: Literal[True], attenuation: float = ..., directionX... function air (line 3161) | def air(*args, attenuation: bool | int | float = ..., directionX: bool |... function aliasAttr (line 3162) | def aliasAttr(*args, edit: bool | int = ..., query: bool | int = ..., re... function align (line 3163) | def align(*args, alignToLead: bool | int = ..., coordinateSystem: str = ... function alignCtx (line 3166) | def alignCtx(*args, edit: Literal[True], align: bool | int = ..., anchor... function alignCtx (line 3169) | def alignCtx(*args, align: bool | int = ..., anchorFirstObject: bool | i... function alignCurve (line 3172) | def alignCurve(*args, edit: Literal[True], caching: bool | int = ..., cu... function alignCurve (line 3175) | def alignCurve(*args, attach: bool | int = ..., caching: bool | int = ..... function alignSurface (line 3178) | def alignSurface(*args, edit: Literal[True], caching: bool | int = ..., ... function alignSurface (line 3181) | def alignSurface(*args, attach: bool | int = ..., caching: bool | int = ... function allNodeTypes (line 3182) | def allNodeTypes(*args, includeAbstract: bool | int = ...) -> Any: ... function ambientLight (line 3185) | def ambientLight(*args, edit: Literal[True], ambientShade: float = ..., ... function ambientLight (line 3188) | def ambientLight(*args, ambientShade: bool | int | float = ..., discRadi... function angleBetween (line 3189) | def angleBetween(*args, caching: bool | int = ..., constructionHistory: ... function animCurveEditor (line 3192) | def animCurveEditor(*args, edit: Literal[True], autoFit: str = ..., auto... function animCurveEditor (line 3195) | def animCurveEditor(*args, areCurvesSelected: bool | int = ..., autoFit:... function animDisplay (line 3198) | def animDisplay(*args, edit: Literal[True], modelUpdate: str = ..., refA... function animDisplay (line 3201) | def animDisplay(*args, modelUpdate: bool | int | str = ..., query: bool ... function animLayer (line 3204) | def animLayer(*args, edit: Literal[True], addRelatedKG: bool | int = ...... function animLayer (line 3207) | def animLayer(*args, addRelatedKG: bool | int = ..., addSelectedObjects:... function animView (line 3210) | def animView(*args, edit: Literal[True], nextView: bool | int = ..., pre... function animView (line 3213) | def animView(*args, endTime: int | float = ..., maxValue: float = ..., m... function annotate (line 3214) | def annotate(*args, point: tuple[float, float, float] = ..., text: str =... function appHome (line 3217) | def appHome(*args, edit: Literal[True], iconVisible: bool | int = ..., s... function appHome (line 3220) | def appHome(*args, iconVisible: bool | int = ..., instrument: str = ...,... function appendListItem (line 3221) | def appendListItem(*args, **keywords): ... function applyAttrPattern (line 3222) | def applyAttrPattern(*args, nodeType: str = ..., patternName: str = ...)... function applyMetadata (line 3223) | def applyMetadata(*args, format: str = ..., scene: bool | int = ..., val... function applyTake (line 3224) | def applyTake(*args, channel: str | list[str] = ..., device: str | list[... function arcLenDimContext (line 3227) | def arcLenDimContext(*args, edit: Literal[True], image1: str = ..., imag... function arcLenDimContext (line 3230) | def arcLenDimContext(*args, exists: bool | int = ..., history: bool | in... function arcLengthDimension (line 3231) | def arcLengthDimension(*args) -> Any: ... function arclen (line 3234) | def arclen(*args, edit: Literal[True], caching: bool | int = ..., nodeSt... function arclen (line 3237) | def arclen(*args, caching: bool | int = ..., constructionHistory: bool |... function arrayMapper (line 3238) | def arrayMapper(*args, destAttr: str = ..., inputU: str = ..., inputV: s... function art3dPaintCtx (line 3241) | def art3dPaintCtx(*args, edit: Literal[True], accopacity: bool | int = .... function art3dPaintCtx (line 3244) | def art3dPaintCtx(*args, accopacity: bool | int = ..., afterStrokeCmd: b... function artAttr (line 3245) | def artAttr(*args) -> Any: ... function artAttrCtx (line 3248) | def artAttrCtx(*args, edit: Literal[True], accopacity: bool | int = ...,... function artAttrCtx (line 3251) | def artAttrCtx(*args, accopacity: bool | int = ..., activeListChangedPro... function artAttrPaintVertexCtx (line 3254) | def artAttrPaintVertexCtx(*args, edit: Literal[True], accopacity: bool |... function artAttrPaintVertexCtx (line 3257) | def artAttrPaintVertexCtx(*args, accopacity: bool | int = ..., activeLis... function artAttrSkinPaintCmd (line 3258) | def artAttrSkinPaintCmd(*args) -> Any: ... function artAttrSkinPaintCtx (line 3261) | def artAttrSkinPaintCtx(*args, edit: Literal[True], accopacity: bool | i... function artAttrSkinPaintCtx (line 3264) | def artAttrSkinPaintCtx(*args, accopacity: bool | int = ..., activeListC... function artAttrTool (line 3265) | def artAttrTool(*args, add: Any = ..., exists: bool | int | str = ..., q... function artBaseCtx (line 3266) | def artBaseCtx(*args, accopacity: bool | int = ..., afterStrokeCmd: str ... function artBuildPaintMenu (line 3267) | def artBuildPaintMenu(*args) -> Any: ... function artFluidAttr (line 3268) | def artFluidAttr(*args) -> Any: ... function artFluidAttrCtx (line 3271) | def artFluidAttrCtx(*args, edit: Literal[True], accopacity: bool | int =... function artFluidAttrCtx (line 3274) | def artFluidAttrCtx(*args, accopacity: bool | int = ..., activeListChang... function artPuttyCtx (line 3277) | def artPuttyCtx(*args, edit: Literal[True], accopacity: bool | int = ...... function artPuttyCtx (line 3280) | def artPuttyCtx(*args, accopacity: bool | int = ..., activeListChangedPr... function artSelect (line 3281) | def artSelect(*args) -> Any: ... function artSelectCtx (line 3284) | def artSelectCtx(*args, edit: Literal[True], accopacity: bool | int = ..... function artSelectCtx (line 3287) | def artSelectCtx(*args, accopacity: bool | int = ..., addselection: bool... function artSetPaint (line 3288) | def artSetPaint(*args) -> Any: ... function artSetPaintCtx (line 3291) | def artSetPaintCtx(*args, edit: Literal[True], accopacity: bool | int = ... function artSetPaintCtx (line 3294) | def artSetPaintCtx(*args, accopacity: bool | int = ..., afterStrokeCmd: ... function artUserPaintCtx (line 3297) | def artUserPaintCtx(*args, edit: Literal[True], accopacity: bool | int =... function artUserPaintCtx (line 3300) | def artUserPaintCtx(*args, accopacity: bool | int = ..., activeListChang... function arubaNurbsToPoly (line 3303) | def arubaNurbsToPoly(*args, edit: Literal[True], caching: bool | int = .... function arubaNurbsToPoly (line 3306) | def arubaNurbsToPoly(*args, adaptive: bool | int = ..., caching: bool | ... function assembly (line 3309) | def assembly(*args, edit: Literal[True], active: str = ..., activeLabel:... function assembly (line 3312) | def assembly(*args, active: bool | int | str = ..., activeLabel: bool | ... function assignCommand (line 3315) | def assignCommand(*args, edit: Literal[True], addDivider: str = ..., alt... function assignCommand (line 3318) | def assignCommand(*args, addDivider: str = ..., altModifier: bool | int ... function assignInputDevice (line 3319) | def assignInputDevice(*args, clutch: str = ..., continuous: bool | int =... function assignViewportFactories (line 3322) | def assignViewportFactories(*args, edit: Literal[True], materialFactory:... function assignViewportFactories (line 3325) | def assignViewportFactories(*args, materialFactory: bool | int | str = .... function attachCache (line 3326) | def attachCache(*args, **keywords): ... function attachCurve (line 3329) | def attachCurve(*args, edit: Literal[True], blendBias: float = ..., blen... function attachCurve (line 3332) | def attachCurve(*args, blendBias: bool | int | float = ..., blendKnotIns... function attachDeviceAttr (line 3333) | def attachDeviceAttr(*args, attribute: str | list[str] = ..., axis: str ... function attachFluidCache (line 3334) | def attachFluidCache(*args, **keywords): ... function attachGeometryCache (line 3335) | def attachGeometryCache(*args, **keywords): ... function attachNclothCache (line 3336) | def attachNclothCache(*args, **keywords): ... function attachSurface (line 3339) | def attachSurface(*args, edit: Literal[True], blendBias: float = ..., bl... function attachSurface (line 3342) | def attachSurface(*args, blendBias: bool | int | float = ..., blendKnotI... function attrColorSliderGrp (line 3345) | def attrColorSliderGrp(*args, edit: Literal[True], adjustableColumn: int... function attrColorSliderGrp (line 3348) | def attrColorSliderGrp(*args, adjustableColumn: int = ..., adjustableCol... function attrCompatibility (line 3349) | def attrCompatibility(*args, addAttr: bool | int = ..., clear: bool | in... function attrControlGrp (line 3352) | def attrControlGrp(*args, edit: Literal[True], annotation: str = ..., at... function attrControlGrp (line 3355) | def attrControlGrp(*args, annotation: bool | int | str = ..., attribute:... function attrEnumOptionMenu (line 3358) | def attrEnumOptionMenu(*args, edit: Literal[True], annotation: str = ...... function attrEnumOptionMenu (line 3361) | def attrEnumOptionMenu(*args, annotation: bool | int | str = ..., attrib... function attrEnumOptionMenuGrp (line 3364) | def attrEnumOptionMenuGrp(*args, edit: Literal[True], adjustableColumn: ... function attrEnumOptionMenuGrp (line 3367) | def attrEnumOptionMenuGrp(*args, adjustableColumn: int = ..., adjustable... function attrFieldGrp (line 3370) | def attrFieldGrp(*args, edit: Literal[True], adjustableColumn: int = ...... function attrFieldGrp (line 3373) | def attrFieldGrp(*args, adjustableColumn: int = ..., adjustableColumn2: ... function attrFieldSliderGrp (line 3376) | def attrFieldSliderGrp(*args, edit: Literal[True], adjustableColumn: int... function attrFieldSliderGrp (line 3379) | def attrFieldSliderGrp(*args, adjustableColumn: int = ..., adjustableCol... function attrNavigationControlGrp (line 3382) | def attrNavigationControlGrp(*args, edit: Literal[True], adjustableColum... function attrNavigationControlGrp (line 3385) | def attrNavigationControlGrp(*args, adjustableColumn: int = ..., adjusta... function attributeInfo (line 3386) | def attributeInfo(*args, allAttributes: bool | int = ..., bool: bool | i... function attributeMenu (line 3387) | def attributeMenu(*args, beginMenu: bool | int = ..., editor: str = ...,... function attributeName (line 3388) | def attributeName(*args, leaf: bool | int = ..., long: bool | int = ...,... function attributeQuery (line 3389) | def attributeQuery(*args, affectsAppearance: bool | int = ..., affectsWo... function audioTrack (line 3392) | def audioTrack(*args, edit: Literal[True], lock: bool | int = ..., mute:... function audioTrack (line 3395) | def audioTrack(*args, insertTrack: int = ..., lock: bool | int = ..., mu... function autoKeyframe (line 3398) | def autoKeyframe(*args, edit: Literal[True], addAttr: str = ..., charact... function autoKeyframe (line 3401) | def autoKeyframe(*args, addAttr: str = ..., characterOption: bool | int ... function autoPlace (line 3402) | def autoPlace(*args, useMouse: bool | int = ...) -> Any: ... function autoSave (line 3403) | def autoSave(*args, destination: int = ..., destinationFolder: bool | in... function backgroundEvaluationManager (line 3404) | def backgroundEvaluationManager(*args, interrupt: bool | int = ..., mode... function bakeClip (line 3405) | def bakeClip(*args, blend: tuple[int, int] = ..., clipIndex: int | list[... function bakeDeformer (line 3406) | def bakeDeformer(*args, bakeRangeOfMotion: bool | int = ..., colorizeSke... function bakePartialHistory (line 3407) | def bakePartialHistory(*args, allShapes: bool | int = ..., edit: bool | ... function bakeResults (line 3408) | def bakeResults(*args, animation: str = ..., attribute: str | list[str] ... function bakeSimulation (line 3409) | def bakeSimulation(*args, animation: str = ..., attribute: str | list[st... function baseTemplate (line 3412) | def baseTemplate(*args, edit: Literal[True], silent: bool | int = ...) -... function baseTemplate (line 3415) | def baseTemplate(*args, exists: bool | int = ..., fileName: bool | int |... function baseView (line 3416) | def baseView(*args, edit: bool | int = ..., itemInfo: bool | int | str =... function batchRender (line 3417) | def batchRender(*args, filename: str = ..., melCommand: str = ..., numPr... function bevel (line 3420) | def bevel(*args, edit: Literal[True], bevelShapeType: int = ..., caching... function bevel (line 3423) | def bevel(*args, bevelShapeType: int = ..., caching: bool | int = ..., c... function bevelPlus (line 3426) | def bevelPlus(*args, edit: Literal[True], bevelInside: bool | int = ...,... function bevelPlus (line 3429) | def bevelPlus(*args, bevelInside: bool | int = ..., caching: bool | int ... function bezierAnchorPreset (line 3430) | def bezierAnchorPreset(*args, preset: int = ...) -> Any: ... function bezierAnchorState (line 3431) | def bezierAnchorState(*args, even: bool | int = ..., smooth: bool | int ... function bezierCurveToNurbs (line 3432) | def bezierCurveToNurbs(*args) -> Any: ... function bezierInfo (line 3433) | def bezierInfo(*args, anchorFromCV: int = ..., cvFromAnchor: int = ..., ... function binMembership (line 3434) | def binMembership(*args, addToBin: str = ..., exists: str = ..., inherit... function bindSkin (line 3435) | def bindSkin(*args, byClosestPoint: bool | int = ..., byPartition: bool ... function blend (line 3436) | def blend(*args, autoDirection: bool | int = ..., caching: bool | int = ... function blend2 (line 3439) | def blend2(*args, edit: Literal[True], autoAnchor: bool | int = ..., aut... function blend2 (line 3442) | def blend2(*args, autoAnchor: bool | int = ..., autoNormal: bool | int =... function blendCtx (line 3443) | def blendCtx(*args, activeNodes: bool | int = ..., autoCreate: bool | in... function blendShape (line 3446) | def blendShape(*args, edit: Literal[True], after: bool | int = ..., afte... function blendShape (line 3449) | def blendShape(*args, after: bool | int = ..., afterReference: bool | in... function blendShapeEditor (line 3452) | def blendShapeEditor(*args, edit: Literal[True], docTag: str = ..., filt... function blendShapeEditor (line 3455) | def blendShapeEditor(*args, control: bool | int = ..., defineTemplate: s... function blendShapePanel (line 3458) | def blendShapePanel(*args, edit: Literal[True], copy: str = ..., createS... function blendShapePanel (line 3461) | def blendShapePanel(*args, blendShapeEditor: bool | int = ..., control: ... function blendTwoAttr (line 3464) | def blendTwoAttr(*args, edit: Literal[True], attribute0: str = ..., attr... function blendTwoAttr (line 3467) | def blendTwoAttr(*args, attribute: str | list[str] = ..., attribute0: bo... function blindDataType (line 3468) | def blindDataType(*args, dataType: str | list[str] = ..., longDataName: ... function boneLattice (line 3471) | def boneLattice(*args, edit: Literal[True], after: bool | int = ..., aft... function boneLattice (line 3474) | def boneLattice(*args, after: bool | int = ..., afterReference: bool | i... function boundary (line 3477) | def boundary(*args, edit: Literal[True], caching: bool | int = ..., endP... function boundary (line 3480) | def boundary(*args, caching: bool | int = ..., constructionHistory: bool... function boxDollyCtx (line 3483) | def boxDollyCtx(*args, edit: Literal[True], image1: str = ..., image2: s... function boxDollyCtx (line 3486) | def boxDollyCtx(*args, alternateContext: bool | int = ..., exists: bool ... function boxZoomCtx (line 3489) | def boxZoomCtx(*args, edit: Literal[True], image1: str = ..., image2: st... function boxZoomCtx (line 3492) | def boxZoomCtx(*args, exists: bool | int = ..., history: bool | int = ..... function bufferCurve (line 3493) | def bufferCurve(*args, animation: str = ..., attribute: str | list[str] ... function buildBookmarkMenu (line 3494) | def buildBookmarkMenu(*args, editor: str = ..., type: str = ...) -> Any:... function buildKeyframeMenu (line 3495) | def buildKeyframeMenu(*args) -> Any: ... function buildSendToBackburnerDialog (line 3496) | def buildSendToBackburnerDialog(*args, **keywords): ... function button (line 3499) | def button(*args, edit: Literal[True], actOnPress: bool | int = ..., act... function button (line 3502) | def button(*args, actOnPress: bool | int = ..., actionIsSubstitute: bool... function buttonManip (line 3503) | def buttonManip(*args, icon: str = ...) -> Any: ... function cacheAppend (line 3504) | def cacheAppend(*args, **keywords): ... function cacheAppendOpt (line 3505) | def cacheAppendOpt(*args, **keywords): ... function cacheEvaluator (line 3506) | def cacheEvaluator(*args, **kwargs): ... function cacheFile (line 3509) | def cacheFile(*args, edit: Literal[True], replaceWithoutSimulating: bool... function cacheFile (line 3512) | def cacheFile(*args, appendFrame: bool | int = ..., attachFile: bool | i... function cacheFileCombine (line 3515) | def cacheFileCombine(*args, edit: Literal[True], channelName: str | list... function cacheFileCombine (line 3518) | def cacheFileCombine(*args, cacheIndex: bool | int = ..., channelName: s... function cacheFileMerge (line 3519) | def cacheFileMerge(*args, edit: bool | int = ..., endTime: int | float =... function cacheFileTrack (line 3522) | def cacheFileTrack(*args, edit: Literal[True], lock: bool | int = ..., m... function cacheFileTrack (line 3525) | def cacheFileTrack(*args, insertTrack: int = ..., lock: bool | int = ...... function caddyManip (line 3526) | def caddyManip(*args) -> Any: ... function callbacks (line 3527) | def callbacks(*args, addCallback: str | Callable = ..., clearAllCallback... function camera (line 3530) | def camera(*args, edit: Literal[True], aspectRatio: float = ..., cameraS... function camera (line 3533) | def camera(*args, aspectRatio: bool | int | float = ..., cameraScale: bo... function cameraSet (line 3536) | def cameraSet(*args, edit: Literal[True], active: bool | int = ..., appe... function cameraSet (line 3539) | def cameraSet(*args, active: bool | int = ..., appendTo: bool | int = ..... function cameraView (line 3542) | def cameraView(*args, edit: Literal[True], addBookmark: bool | int = ...... function cameraView (line 3545) | def cameraView(*args, addBookmark: bool | int = ..., animate: bool | int... function canCreateCaddyManip (line 3546) | def canCreateCaddyManip(*args) -> Any: ... function canCreateManip (line 3547) | def canCreateManip(*args) -> Any: ... function canvas (line 3550) | def canvas(*args, edit: Literal[True], annotation: str = ..., background... function canvas (line 3553) | def canvas(*args, annotation: bool | int | str = ..., backgroundColor: b... function changeSubdivComponentDisplayLevel (line 3554) | def changeSubdivComponentDisplayLevel(*args, level: int = ..., query: bo... function changeSubdivRegion (line 3555) | def changeSubdivRegion(*args, action: int = ..., level: int = ...) -> An... function channelBox (line 3558) | def channelBox(*args, edit: Literal[True], annotation: str = ..., attrBg... function channelBox (line 3561) | def channelBox(*args, annotation: bool | int | str = ..., attrBgColor: b... function character (line 3564) | def character(*args, edit: Literal[True], addElement: str = ..., addOffs... function character (line 3567) | def character(*args, addElement: str = ..., addOffsetObject: bool | int ... function characterMap (line 3570) | def characterMap(*args, edit: Literal[True], mapAttr: tuple[str, str] = ... function characterMap (line 3573) | def characterMap(*args, mapAttr: bool | int | tuple[str, str] = ..., map... function characterize (line 3576) | def characterize(*args, edit: Literal[True], activatePivot: bool | int =... function characterize (line 3579) | def characterize(*args, activatePivot: bool | int = ..., addAuxEffector:... function checkBox (line 3582) | def checkBox(*args, edit: Literal[True], align: str = ..., annotation: s... function checkBox (line 3585) | def checkBox(*args, align: bool | int | str = ..., annotation: bool | in... function checkBoxGrp (line 3588) | def checkBoxGrp(*args, edit: Literal[True], adjustableColumn: int = ...,... function checkBoxGrp (line 3591) | def checkBoxGrp(*args, adjustableColumn: int = ..., adjustableColumn2: i... function checkDefaultRenderGlobals (line 3592) | def checkDefaultRenderGlobals(*args, edit: bool | int = ..., query: bool... function choice (line 3593) | def choice(*args, attribute: str | list[str] = ..., controlPoints: bool ... function circle (line 3596) | def circle(*args, edit: Literal[True], caching: bool | int = ..., center... function circle (line 3599) | def circle(*args, caching: bool | int = ..., center: bool | int | tuple[... function circularFillet (line 3602) | def circularFillet(*args, edit: Literal[True], caching: bool | int = ...... function circularFillet (line 3605) | def circularFillet(*args, caching: bool | int = ..., constructionHistory... function clearCache (line 3606) | def clearCache(*args, allNodes: bool | int = ..., computed: bool | int =... function clearDynStartState (line 3607) | def clearDynStartState(*args, **keywords): ... function clearNClothStartState (line 3608) | def clearNClothStartState(*args, **keywords): ... function clearShear (line 3609) | def clearShear(*args) -> Any: ... function clip (line 3612) | def clip(*args, edit: Literal[True], active: str = ..., endTime: int | f... function clip (line 3615) | def clip(*args, absolute: bool | int = ..., absoluteRotations: bool | in... function clipEditor (line 3618) | def clipEditor(*args, edit: Literal[True], autoFit: str = ..., autoFitTi... function clipEditor (line 3621) | def clipEditor(*args, allTrackHeights: int = ..., autoFit: bool | int | ... function clipEditorCurrentTimeCtx (line 3624) | def clipEditorCurrentTimeCtx(*args, edit: Literal[True], image1: str = .... function clipEditorCurrentTimeCtx (line 3627) | def clipEditorCurrentTimeCtx(*args, exists: bool | int = ..., history: b... function clipMatching (line 3628) | def clipMatching(*args, clipDst: tuple[str, float] = ..., clipSrc: tuple... function clipSchedule (line 3631) | def clipSchedule(*args, edit: Literal[True], allAbsolute: bool | int = .... function clipSchedule (line 3634) | def clipSchedule(*args, allAbsolute: bool | int = ..., allRelative: bool... function clipSchedulerOutliner (line 3637) | def clipSchedulerOutliner(*args, edit: Literal[True], annotation: str = ... function clipSchedulerOutliner (line 3640) | def clipSchedulerOutliner(*args, annotation: bool | int | str = ..., bac... function closeCurve (line 3643) | def closeCurve(*args, edit: Literal[True], blendBias: float = ..., blend... function closeCurve (line 3646) | def closeCurve(*args, blendBias: bool | int | float = ..., blendKnotInse... function closeSurface (line 3649) | def closeSurface(*args, edit: Literal[True], blendBias: float = ..., ble... function closeSurface (line 3652) | def closeSurface(*args, blendBias: bool | int | float = ..., blendKnotIn... function cluster (line 3655) | def cluster(*args, edit: Literal[True], after: bool | int = ..., afterRe... function cluster (line 3658) | def cluster(*args, after: bool | int = ..., afterReference: bool | int =... function cmdFileOutput (line 3659) | def cmdFileOutput(*args, close: int = ..., closeAll: bool | int = ..., o... function cmdScrollFieldExecuter (line 3662) | def cmdScrollFieldExecuter(*args, edit: Literal[True], annotation: str =... function cmdScrollFieldExecuter (line 3665) | def cmdScrollFieldExecuter(*args, annotation: bool | int | str = ..., ap... function cmdScrollFieldReporter (line 3668) | def cmdScrollFieldReporter(*args, edit: Literal[True], annotation: str =... function cmdScrollFieldReporter (line 3671) | def cmdScrollFieldReporter(*args, annotation: bool | int | str = ..., ba... function cmdShell (line 3674) | def cmdShell(*args, edit: Literal[True], annotation: str = ..., backgrou... function cmdShell (line 3677) | def cmdShell(*args, annotation: bool | int | str = ..., backgroundColor:... function coarsenSubdivSelectionList (line 3678) | def coarsenSubdivSelectionList(*args) -> Any: ... function collision (line 3681) | def collision(*args, edit: Literal[True], friction: float = ..., name: s... function collision (line 3684) | def collision(*args, friction: bool | int | float = ..., name: bool | in... function color (line 3685) | def color(*args, rgbColor: tuple[float, float, float] = ..., userDefined... function colorAtPoint (line 3686) | def colorAtPoint(*args, coordU: float | list[float] = ..., coordV: float... function colorEditor (line 3687) | def colorEditor(*args, alpha: bool | int | float = ..., hsvValue: bool |... function colorIndex (line 3688) | def colorIndex(*args, active: bool | int = ..., dormant: bool | int = ..... function colorIndexSliderGrp (line 3691) | def colorIndexSliderGrp(*args, edit: Literal[True], adjustableColumn: in... function colorIndexSliderGrp (line 3694) | def colorIndexSliderGrp(*args, adjustableColumn: int = ..., adjustableCo... function colorInputWidgetGrp (line 3697) | def colorInputWidgetGrp(*args, edit: Literal[True], adjustableColumn: in... function colorInputWidgetGrp (line 3700) | def colorInputWidgetGrp(*args, adjustableColumn: int = ..., adjustableCo... function colorManagementCatalog (line 3701) | def colorManagementCatalog(*args, addTransform: str = ..., editUserTrans... function colorManagementConvert (line 3702) | def colorManagementConvert(*args, toDisplaySpace: tuple[float, float, fl... function colorManagementFileRules (line 3705) | def colorManagementFileRules(*args, edit: Literal[True], colorSpace: str... function colorManagementFileRules (line 3708) | def colorManagementFileRules(*args, addRule: str = ..., colorSpace: bool... function colorManagementPrefs (line 3711) | def colorManagementPrefs(*args, edit: Literal[True], cmConfigFileEnabled... function colorManagementPrefs (line 3714) | def colorManagementPrefs(*args, cmConfigFileEnabled: bool | int = ..., c... function colorSliderButtonGrp (line 3717) | def colorSliderButtonGrp(*args, edit: Literal[True], adjustableColumn: i... function colorSliderButtonGrp (line 3720) | def colorSliderButtonGrp(*args, adjustableColumn: int = ..., adjustableC... function colorSliderGrp (line 3723) | def colorSliderGrp(*args, edit: Literal[True], adjustableColumn: int = .... function colorSliderGrp (line 3726) | def colorSliderGrp(*args, adjustableColumn: int = ..., adjustableColumn2... function columnLayout (line 3729) | def columnLayout(*args, edit: Literal[True], adjustableColumn: bool | in... function columnLayout (line 3732) | def columnLayout(*args, adjustableColumn: bool | int = ..., annotation: ... function combinationShape (line 3735) | def combinationShape(*args, edit: Literal[True], combineMethod: int = ..... function combinationShape (line 3738) | def combinationShape(*args, addDriver: bool | int = ..., allDrivers: boo... function commandEcho (line 3739) | def commandEcho(*args, addFilter: str = ..., filter: bool | int | str = ... function commandLine (line 3742) | def commandLine(*args, edit: Literal[True], annotation: str = ..., backg... function commandLine (line 3745) | def commandLine(*args, annotation: bool | int | str = ..., backgroundCol... function commandLogging (line 3746) | def commandLogging(*args, historySize: int = ..., logCommands: bool | in... function commandPort (line 3747) | def commandPort(*args, bufferSize: int = ..., close: bool | int = ..., e... function componentBox (line 3750) | def componentBox(*args, edit: Literal[True], annotation: str = ..., back... function componentBox (line 3753) | def componentBox(*args, annotation: bool | int | str = ..., backgroundCo... function componentEditor (line 3756) | def componentEditor(*args, edit: Literal[True], docTag: str = ..., filte... function componentEditor (line 3759) | def componentEditor(*args, control: bool | int = ..., defineTemplate: st... function componentTag (line 3760) | def componentTag(*args, create: bool | int = ..., delete: bool | int = .... function condition (line 3763) | def condition(*args, edit: Literal[True], state: bool | int = ...) -> No... function condition (line 3766) | def condition(*args, delete: bool | int = ..., dependency: str | list[st... function cone (line 3769) | def cone(*args, edit: Literal[True], axis: tuple[float, float, float] = ... function cone (line 3772) | def cone(*args, axis: bool | int | tuple[float, float, float] = ..., cac... function confirmDialog (line 3773) | def confirmDialog(*args, annotation: str | list[str] = ..., backgroundCo... function connectAttr (line 3774) | def connectAttr(*args, force: bool | int = ..., lock: bool | int = ..., ... function connectControl (line 3775) | def connectControl(*args, fileName: bool | int = ..., includeChildren: b... function connectDynamic (line 3776) | def connectDynamic(*args, addScriptHandler: str | Callable = ..., collis... function connectJoint (line 3777) | def connectJoint(*args, connectMode: bool | int = ..., parentMode: bool ... function connectionInfo (line 3780) | def connectionInfo(attribute: str, destinationFromSource: Literal[True])... function connectionInfo (line 3783) | def connectionInfo(attribute: str, getExactDestination: Literal[True]) -... function connectionInfo (line 3786) | def connectionInfo(attribute: str, getLockedAncestor: Literal[True]) -> ... function connectionInfo (line 3789) | def connectionInfo(attribute: str, getSource: Literal[True]) -> str: ... function connectionInfo (line 3792) | def connectionInfo(attribute: str, isDestination: Literal[True]) -> bool... function connectionInfo (line 3795) | def connectionInfo(attribute: str, isExactDestination: Literal[True]) ->... function connectionInfo (line 3798) | def connectionInfo(attribute: str, isExactSource: Literal[True]) -> bool... function connectionInfo (line 3801) | def connectionInfo(attribute: str, isLocked: Literal[True]) -> bool: ... function connectionInfo (line 3804) | def connectionInfo(attribute: str, isSource: Literal[True]) -> bool: ... function connectionInfo (line 3807) | def connectionInfo(attribute: str, sourceFromDestination: Literal[True])... function constrain (line 3810) | def constrain(*args, edit: Literal[True], damping: float = ..., interpen... function constrain (line 3813) | def constrain(*args, barrier: bool | int = ..., damping: bool | int | fl... function constructionHistory (line 3814) | def constructionHistory(*args, query: bool | int = ..., toggle: bool | i... function container (line 3817) | def container(*args, edit: Literal[True], addNode: str = ..., bindAttr: ... function container (line 3820) | def container(*args, addNode: str = ..., asset: bool | int | str = ..., ... function containerBind (line 3823) | def containerBind(*args, edit: Literal[True], bindingSetList: bool | int... function containerBind (line 3826) | def containerBind(*args, allNames: bool | int = ..., bindingSet: bool | ... function containerProxy (line 3827) | def containerProxy(*args, edit: bool | int = ..., fromTemplate: str = ..... function containerPublish (line 3830) | def containerPublish(*args, edit: Literal[True], bindNode: tuple[str, st... function containerPublish (line 3833) | def containerPublish(*args, bindNode: bool | int | tuple[str, str] = ...... function containerTemplate (line 3836) | def containerTemplate(*args, edit: Literal[True], addBindingSet: str = .... function containerTemplate (line 3839) | def containerTemplate(*args, addBindingSet: str = ..., addNames: bool | ... function containerView (line 3840) | def containerView(*args, edit: bool | int = ..., itemInfo: bool | int | ... function contentBrowser (line 3843) | def contentBrowser(*args, edit: Literal[True], addContentPath: str = ...... function contentBrowser (line 3846) | def contentBrowser(*args, addContentPath: str = ..., context: bool | int... function contextInfo (line 3847) | def contextInfo(*args, apiImage1: str = ..., c: bool | int = ..., edit: ... function control (line 3850) | def control(*args, exists: Literal[True]) -> bool: ... function control (line 3853) | def control(*args, edit: Literal[True], annotation: str = ..., backgroun... function control (line 3856) | def control(*args, annotation: bool | int | str = ..., backgroundColor: ... function controller (line 3859) | def controller(*args, edit: Literal[True], index: int = ..., parent: boo... function controller (line 3862) | def controller(*args, allControllers: bool | int = ..., children: bool |... function convertIffToPsd (line 3863) | def convertIffToPsd(*args, iffFileName: bool | int | str = ..., psdFileN... function convertSolidTx (line 3864) | def convertSolidTx(*args, alpha: bool | int = ..., antiAlias: bool | int... function convertTessellation (line 3865) | def convertTessellation(*args, allCameras: bool | int = ..., camera: str... function convertUnit (line 3866) | def convertUnit(*args, fromUnit: str = ..., toUnit: str = ...) -> Any: ... function copyAttr (line 3867) | def copyAttr(*args, attribute: str | list[str] = ..., containerParentChi... function copyDeformerWeights (line 3870) | def copyDeformerWeights(*args, edit: Literal[True], destinationDeformer:... function copyDeformerWeights (line 3873) | def copyDeformerWeights(*args, destinationDeformer: bool | int | str = .... function copyFlexor (line 3874) | def copyFlexor(*args) -> Any: ... function copyKey (line 3875) | def copyKey(*args, animLayer: str = ..., animation: str = ..., attribute... function copyNode (line 3876) | def copyNode(*args) -> Any: ... function copySkinWeights (line 3879) | def copySkinWeights(*args, edit: Literal[True], destinationSkin: str = .... function copySkinWeights (line 3882) | def copySkinWeights(*args, destinationSkin: bool | int | str = ..., infl... function crashInfo (line 3883) | def crashInfo(*args, crashFile: bool | int = ..., crashLog: bool | int =... function crashInfoCmd (line 3884) | def crashInfoCmd(*args) -> Any: ... function createAttrPatterns (line 3885) | def createAttrPatterns(*args, patternDefinition: str = ..., patternFile:... function createDisplayLayer (line 3886) | def createDisplayLayer(*args, empty: bool | int = ..., makeCurrent: bool... function createEditor (line 3887) | def createEditor(*args, noCloseOnDelete: bool | int = ..., queueForDelet... function createLayeredPsdFile (line 3888) | def createLayeredPsdFile(*args, imageFileName: tuple[str, str, str] | li... function createNode (line 3889) | def createNode(*args, name: str = ..., parent: str = ..., shared: bool |... function createNurbsCircleCtx (line 3890) | def createNurbsCircleCtx(*args, attachToSections: bool | int = ..., degr... function createNurbsConeCtx (line 3891) | def createNurbsConeCtx(*args, attachToHeightRatio: bool | int = ..., att... function createNurbsCubeCtx (line 3892) | def createNurbsCubeCtx(*args, attachToPatchesU: bool | int = ..., attach... function createNurbsCylinderCtx (line 3893) | def createNurbsCylinderCtx(*args, attachToHeightRatio: bool | int = ...,... function createNurbsPlaneCtx (line 3894) | def createNurbsPlaneCtx(*args, attachToPatchesU: bool | int = ..., attac... function createNurbsSphereCtx (line 3895) | def createNurbsSphereCtx(*args, attachToHeightRatio: bool | int = ..., a... function createNurbsSquareCtx (line 3896) | def createNurbsSquareCtx(*args, attachToSpans: bool | int = ..., axis: t... function createNurbsTorusCtx (line 3897) | def createNurbsTorusCtx(*args, attachToHeightRatio: bool | int = ..., at... function createPolyConeCtx (line 3898) | def createPolyConeCtx(*args, attachToSubdivisionsAxis: bool | int = ...,... function createPolyCubeCtx (line 3899) | def createPolyCubeCtx(*args, attachToSubdivisionsAll: bool | int = ..., ... function createPolyCylinderCtx (line 3900) | def createPolyCylinderCtx(*args, attachToSubdivisionsAxis: bool | int = ... function createPolyHelixCtx (line 3901) | def createPolyHelixCtx(*args, attachToNumberCoils: bool | int = ..., att... function createPolyPipeCtx (line 3902) | def createPolyPipeCtx(*args, attachToSubdivisionsAxis: bool | int = ...,... function createPolyPlaneCtx (line 3903) | def createPolyPlaneCtx(*args, attachToSubdivisionsAll: bool | int = ...,... function createPolyPlatonicSolidCtx (line 3904) | def createPolyPlatonicSolidCtx(*args, axis: int = ..., createUVs: int = ... function createPolyPrismCtx (line 3905) | def createPolyPrismCtx(*args, attachToNumSides: bool | int = ..., attach... function createPolyPyramidCtx (line 3906) | def createPolyPyramidCtx(*args, attachToSubdivisionsCap: bool | int = ..... function createPolySoccerBallCtx (line 3907) | def createPolySoccerBallCtx(*args, axis: int = ..., createUVs: int = ...... function createPolySphereCtx (line 3908) | def createPolySphereCtx(*args, attachToSubdivisionsAll: bool | int = ...... function createPolyTorusCtx (line 3909) | def createPolyTorusCtx(*args, attachToSectionRadius: bool | int = ..., a... function createRenderLayer (line 3910) | def createRenderLayer(*args, empty: bool | int = ..., g: bool | int = ..... function createSubdivRegion (line 3911) | def createSubdivRegion(*args) -> Any: ... function ctxAbort (line 3912) | def ctxAbort(*args) -> Any: ... function ctxCompletion (line 3913) | def ctxCompletion(*args) -> Any: ... function ctxEditMode (line 3914) | def ctxEditMode(*args, buttonDown: bool | int = ..., buttonUp: bool | in... function ctxTraverse (line 3915) | def ctxTraverse(*args, down: bool | int = ..., left: bool | int = ..., r... function currentCtx (line 3916) | def currentCtx(*args) -> Any: ... function currentTime (line 3917) | def currentTime(*args, edit: bool | int = ..., query: bool | int = ..., ... function currentTimeCtx (line 3920) | def currentTimeCtx(*args, edit: Literal[True], image1: str = ..., image2... function currentTimeCtx (line 3923) | def currentTimeCtx(*args, exists: bool | int = ..., history: bool | int ... function currentUnit (line 3924) | def currentUnit(*args, angle: bool | int | str = ..., fullName: bool | i... function curve (line 3925) | def curve(*args, append: bool | int = ..., bezier: bool | int = ..., deg... function curveAddPtCtx (line 3928) | def curveAddPtCtx(*args, edit: Literal[True], image1: str = ..., image2:... function curveAddPtCtx (line 3931) | def curveAddPtCtx(*args, exists: bool | int = ..., image1: bool | int | ... function curveBezierCtx (line 3932) | def curveBezierCtx(*args, degree: int = ..., edit: bool | int = ..., exi... function curveCVCtx (line 3935) | def curveCVCtx(*args, edit: Literal[True], bezier: bool | int = ..., deg... function curveCVCtx (line 3938) | def curveCVCtx(*args, bezier: bool | int = ..., degree: int = ..., exist... function curveEPCtx (line 3941) | def curveEPCtx(*args, edit: Literal[True], bezier: bool | int = ..., deg... function curveEPCtx (line 3944) | def curveEPCtx(*args, bezier: bool | int = ..., degree: int = ..., exist... function curveEditorCtx (line 3947) | def curveEditorCtx(*args, edit: Literal[True], image1: str = ..., image2... function curveEditorCtx (line 3950) | def curveEditorCtx(*args, direction: int = ..., exists: bool | int = ...... function curveIntersect (line 3953) | def curveIntersect(*args, edit: Literal[True], caching: bool | int = ...... function curveIntersect (line 3956) | def curveIntersect(*args, caching: bool | int = ..., constructionHistory... function curveMoveEPCtx (line 3959) | def curveMoveEPCtx(*args, edit: Literal[True], image1: str = ..., image2... function curveMoveEPCtx (line 3962) | def curveMoveEPCtx(*args, exists: bool | int = ..., image1: bool | int |... function curveOnSurface (line 3963) | def curveOnSurface(*args, append: bool | int = ..., degree: float = ...,... function curveRGBColor (line 3964) | def curveRGBColor(*args, hueSaturationValue: bool | int = ..., list: boo... function curveSketchCtx (line 3967) | def curveSketchCtx(*args, edit: Literal[True], degree: int = ..., image1... function curveSketchCtx (line 3970) | def curveSketchCtx(*args, degree: int = ..., exists: bool | int = ..., h... function cutKey (line 3971) | def cutKey(*args, animation: str = ..., attribute: str | list[str] = ...... function cycleCheck (line 3972) | def cycleCheck(*args, all: bool | int = ..., children: bool | int = ...,... function cylinder (line 3975) | def cylinder(*args, edit: Literal[True], axis: tuple[float, float, float... function cylinder (line 3978) | def cylinder(*args, axis: bool | int | tuple[float, float, float] = ...,... function dagCommandWrapper (line 3979) | def dagCommandWrapper(*args) -> Any: ... function dagObjectCompare (line 3980) | def dagObjectCompare(*args, attribute: bool | int = ..., bail: str = ...... function dagObjectHit (line 3981) | def dagObjectHit(*args, cache: bool | int = ..., menu: str = ..., multip... function dagPose (line 3982) | def dagPose(*args, addToPose: bool | int = ..., atPose: bool | int = ...... function dataStructure (line 3983) | def dataStructure(*args, asFile: bool | int | str = ..., asString: bool ... function date (line 3984) | def date(*args, date: bool | int = ..., format: str = ..., shortDate: bo... function dbcount (line 3985) | def dbcount(*args, enabled: bool | int = ..., file: str = ..., keyword: ... function dbfootprint (line 3986) | def dbfootprint(*args, allObjects: bool | int = ..., outputFile: str = .... function dbmessage (line 3987) | def dbmessage(*args, file: str = ..., list: bool | int = ..., monitor: b... function dbpeek (line 3988) | def dbpeek(*args, allObjects: bool | int = ..., argument: bool | int | s... function dbtrace (line 3989) | def dbtrace(*args, filter: bool | int | str = ..., info: bool | int = ..... function debug (line 3990) | def debug(*args) -> Any: ... function debugNamespace (line 3991) | def debugNamespace(*args) -> Any: ... function debugVar (line 3992) | def debugVar(*args) -> Any: ... function defaultLightListCheckBox (line 3995) | def defaultLightListCheckBox(*args, edit: Literal[True], annotation: str... function defaultLightListCheckBox (line 3998) | def defaultLightListCheckBox(*args, annotation: bool | int | str = ..., ... function defaultNavigation (line 3999) | def defaultNavigation(*args, connectToExisting: bool | int = ..., create... function defineDataServer (line 4000) | def defineDataServer(*args, device: str = ..., server: str = ..., undefi... function defineVirtualDevice (line 4001) | def defineVirtualDevice(*args, axis: int = ..., channel: str = ..., clea... function deformableShape (line 4002) | def deformableShape(*args, chain: bool | int = ..., chainHistory: bool |... function deformer (line 4005) | def deformer(*args, edit: Literal[True], after: bool | int = ..., afterR... function deformer (line 4008) | def deformer(*args, after: bool | int = ..., afterReference: bool | int ... function deformerWeights (line 4011) | def deformerWeights(*args, edit: Literal[True], attribute: str | list[st... function deformerWeights (line 4014) | def deformerWeights(*args, attribute: bool | int | str | list[str] = ...... function delete (line 4015) | def delete(*args, all: bool | int = ..., attribute: str | list[str] = ..... function deleteAttr (line 4016) | def deleteAttr(*args, attribute: str = ..., edit: bool | int = ..., quer... function deleteAttrPattern (line 4017) | def deleteAttrPattern(*args, allPatterns: bool | int = ..., patternName:... function deleteExtension (line 4018) | def deleteExtension(*args, attribute: str = ..., forceDelete: bool | int... function deleteGeometryCache (line 4019) | def deleteGeometryCache(*args, **keywords): ... function deleteHistoryAheadOfGeomCache (line 4020) | def deleteHistoryAheadOfGeomCache(*args, **keywords): ... function deleteNclothCache (line 4021) | def deleteNclothCache(*args, **keywords): ... function deleteUI (line 4022) | def deleteUI(*args, collection: bool | int = ..., control: bool | int = ... function deltaMush (line 4025) | def deltaMush(*args, edit: Literal[True], after: bool | int = ..., after... function deltaMush (line 4028) | def deltaMush(*args, after: bool | int = ..., afterReference: bool | int... function detachCurve (line 4031) | def detachCurve(*args, edit: Literal[True], caching: bool | int = ..., k... function detachCurve (line 4034) | def detachCurve(*args, caching: bool | int = ..., constructionHistory: b... function detachDeviceAttr (line 4035) | def detachDeviceAttr(*args, all: bool | int = ..., attribute: str = ...,... function detachSurface (line 4038) | def detachSurface(*args, edit: Literal[True], caching: bool | int = ...,... function detachSurface (line 4041) | def detachSurface(*args, caching: bool | int = ..., constructionHistory:... function deviceEditor (line 4044) | def deviceEditor(*args, edit: Literal[True], docTag: str = ..., filter: ... function deviceEditor (line 4047) | def deviceEditor(*args, control: bool | int = ..., defineTemplate: str =... function deviceManager (line 4050) | def deviceManager(*args, edit: Literal[True], axisIndex: int = ..., devi... function deviceManager (line 4053) | def deviceManager(*args, attachment: bool | int = ..., axisCoordChanges:... function devicePanel (line 4056) | def devicePanel(*args, edit: Literal[True], copy: str = ..., createStrin... function devicePanel (line 4059) | def devicePanel(*args, control: bool | int = ..., copy: str = ..., creat... function dgControl (line 4060) | def dgControl(*args) -> Any: ... function dgInfo (line 4061) | def dgInfo(*args, allNodes: bool | int = ..., connections: bool | int = ... function dgPerformance (line 4062) | def dgPerformance(*args) -> Any: ... function dgValidateCurve (line 4063) | def dgValidateCurve(*args, allCurves: bool | int = ..., verbose: bool | ... function dgcontrol (line 4064) | def dgcontrol(*args, iomode: bool | int = ...) -> Any: ... function dgdebug (line 4065) | def dgdebug(*args) -> Any: ... function dgdirty (line 4066) | def dgdirty(*args, allPlugs: bool | int = ..., clean: bool | int = ..., ... function dgeval (line 4067) | def dgeval(*args, src: bool | int = ..., verbose: bool | int = ...) -> A... function dgfilter (line 4068) | def dgfilter(*args, attribute: str = ..., list: bool | int = ..., logica... function dgmodified (line 4069) | def dgmodified(*args) -> Any: ... function dgstats (line 4070) | def dgstats(*args) -> Any: ... function dgtimer (line 4071) | def dgtimer(*args, combineType: bool | int = ..., hide: bool | int | str... function dimWhen (line 4072) | def dimWhen(*args, clear: bool | int = ..., false: bool | int = ..., tru... function directConnectPath (line 4073) | def directConnectPath(*args) -> Any: ... function directKeyCtx (line 4076) | def directKeyCtx(*args, edit: Literal[True], image1: str = ..., image2: ... function directKeyCtx (line 4079) | def directKeyCtx(*args, exists: bool | int = ..., history: bool | int = ... function directionalLight (line 4080) | def directionalLight(*args, decayRate: int = ..., discRadius: bool | int... function dirmap (line 4081) | def dirmap(*args, convertDirectory: str = ..., enable: bool | int = ...,... function disable (line 4082) | def disable(*args, value: bool | int = ...) -> Any: ... function disableIncorrectNameWarning (line 4083) | def disableIncorrectNameWarning(*args) -> Any: ... function disconnectAttr (line 4084) | def disconnectAttr(*args, nextAvailable: bool | int = ...) -> None: ... function disconnectJoint (line 4085) | def disconnectJoint(*args, attachHandleMode: bool | int = ..., deleteHan... function diskCache (line 4086) | def diskCache(*args, append: bool | int = ..., cacheType: bool | int | s... function dispatchGenericCommand (line 4087) | def dispatchGenericCommand(*args) -> Any: ... function displacementToPoly (line 4090) | def displacementToPoly(*args, edit: Literal[True], findBboxOnly: bool | ... function displacementToPoly (line 4093) | def displacementToPoly(*args, findBboxOnly: bool | int = ..., query: boo... function displayAffected (line 4094) | def displayAffected(*args, query: bool | int = ...) -> Any: ... function displayColor (line 4095) | def displayColor(*args, active: bool | int = ..., create: bool | int = .... function displayCull (line 4096) | def displayCull(*args, backFaceCulling: bool | int = ..., query: bool | ... function displayLevelOfDetail (line 4097) | def displayLevelOfDetail(*args, levelOfDetail: bool | int = ..., query: ... function displayPref (line 4098) | def displayPref(*args, activeObjectPivots: bool | int = ..., defaultFont... function displayRGBColor (line 4099) | def displayRGBColor(*args, alpha: bool | int = ..., create: bool | int =... function displaySmoothness (line 4100) | def displaySmoothness(*args, all: bool | int = ..., boundary: bool | int... function displayStats (line 4101) | def displayStats(*args, frameRate: bool | int = ..., query: bool | int =... function displayString (line 4102) | def displayString(*args, delete: bool | int = ..., exists: bool | int = ... function displaySurface (line 4103) | def displaySurface(*args, flipNormals: bool | int = ..., query: bool | i... function distanceDimContext (line 4106) | def distanceDimContext(*args, edit: Literal[True], image1: str = ..., im... function distanceDimContext (line 4109) | def distanceDimContext(*args, exists: bool | int = ..., history: bool | ... function distanceDimension (line 4110) | def distanceDimension(*args, endPoint: tuple[float, float, float] = ...,... function doBlur (line 4111) | def doBlur(*args, colorFile: str = ..., length: float = ..., memCapSize:... function dockControl (line 4114) | def dockControl(*args, edit: Literal[True], allowedArea: str | list[str]... function dockControl (line 4117) | def dockControl(*args, allowedArea: bool | int | str | list[str] = ..., ... function dolly (line 4118) | def dolly(*args, absolute: bool | int = ..., distance: float = ..., doll... function dollyCtx (line 4121) | def dollyCtx(*args, edit: Literal[True], boxDollyType: str = ..., center... function dollyCtx (line 4124) | def dollyCtx(*args, alternateContext: bool | int = ..., boxDollyType: bo... function dopeSheetEditor (line 4127) | def dopeSheetEditor(*args, edit: Literal[True], autoFit: str = ..., auto... function dopeSheetEditor (line 4130) | def dopeSheetEditor(*args, autoFit: bool | int | str = ..., autoFitTime:... function doubleProfileBirailSurface (line 4133) | def doubleProfileBirailSurface(*args, edit: Literal[True], blendFactor: ... function doubleProfileBirailSurface (line 4136) | def doubleProfileBirailSurface(*args, blendFactor: bool | int | float = ... function dpBirailCtx (line 4137) | def dpBirailCtx(*args, activeNodes: bool | int = ..., autoCreate: bool |... function drag (line 4140) | def drag(*args, edit: Literal[True], attenuation: float = ..., direction... function drag (line 4143) | def drag(*args, attenuation: bool | int | float = ..., directionX: bool ... function dragAttrContext (line 4146) | def dragAttrContext(*args, edit: Literal[True], connectTo: str | list[st... function dragAttrContext (line 4149) | def dragAttrContext(*args, connectTo: bool | int | str | list[str] = ...... function draggerContext (line 4152) | def draggerContext(*args, edit: Literal[True], cursor: str = ..., dragCo... function draggerContext (line 4155) | def draggerContext(*args, anchorPoint: bool | int | tuple[float, float, ... function drawExtrudeFacetCtx (line 4156) | def drawExtrudeFacetCtx(*args, degree: int = ..., divisions: int = ..., ... function dropoffLocator (line 4157) | def dropoffLocator(*args) -> Any: ... function duplicate (line 4158) | def duplicate(*args, fullPath: bool | int = ..., inputConnections: bool ... function duplicateCurve (line 4161) | def duplicateCurve(*args, edit: Literal[True], caching: bool | int = ...... function duplicateCurve (line 4164) | def duplicateCurve(*args, caching: bool | int = ..., constructionHistory... function duplicateSurface (line 4167) | def duplicateSurface(*args, edit: Literal[True], caching: bool | int = .... function duplicateSurface (line 4170) | def duplicateSurface(*args, caching: bool | int = ..., constructionHisto... function dynCache (line 4171) | def dynCache(*args) -> Any: ... function dynControl (line 4172) | def dynControl(*args, autoCreate: bool | int = ..., oversample: int = ..... function dynExport (line 4173) | def dynExport(*args, allObjects: bool | int = ..., attribute: str | list... function dynExpression (line 4176) | def dynExpression(*args, edit: Literal[True], creation: bool | int = ...... function dynExpression (line 4179) | def dynExpression(*args, creation: bool | int = ..., query: bool | int =... function dynGlobals (line 4182) | def dynGlobals(*args, edit: Literal[True], overSampling: int = ...) -> N... function dynGlobals (line 4185) | def dynGlobals(*args, active: bool | int = ..., listAll: bool | int = ..... function dynPaintCtx (line 4186) | def dynPaintCtx(*args, brushDrag: float = ..., brushMass: float = ..., d... function dynPaintEditor (line 4189) | def dynPaintEditor(*args, edit: Literal[True], activeOnly: bool | int = ... function dynPaintEditor (line 4192) | def dynPaintEditor(*args, activeOnly: bool | int = ..., autoSave: bool |... function dynParticleCtx (line 4195) | def dynParticleCtx(*args, edit: Literal[True], conserve: float = ..., cu... function dynParticleCtx (line 4198) | def dynParticleCtx(*args, conserve: bool | int | float = ..., cursorPlac... function dynPref (line 4199) | def dynPref(*args, autoCreate: bool | int = ..., echoCollision: bool | i... function dynSelectCtx (line 4200) | def dynSelectCtx(*args, edit: bool | int = ..., enable: bool | int = ...... function dynTestData (line 4201) | def dynTestData(*args, arrayAttrs: bool | int = ..., verbose: bool | int... function dynWireCtx (line 4202) | def dynWireCtx(*args, brushDrag: float = ..., brushMass: float = ..., di... function dynamicConstraintRemove (line 4203) | def dynamicConstraintRemove(*args, **keywords): ... function dynamicLoad (line 4204) | def dynamicLoad(*args, query: bool | int = ...) -> Any: ... function editDisplayLayerGlobals (line 4205) | def editDisplayLayerGlobals(*args, baseId: int = ..., currentDisplayLaye... function editDisplayLayerMembers (line 4206) | def editDisplayLayerMembers(*args, clear: bool | int = ..., fullNames: b... function editImportedStatus (line 4207) | def editImportedStatus(*args, **keywords): ... function editMetadata (line 4208) | def editMetadata(*args, channelName: bool | int | str = ..., channelType... function editRenderLayerAdjustment (line 4209) | def editRenderLayerAdjustment(*args, attributeLog: bool | int = ..., lay... function editRenderLayerGlobals (line 4210) | def editRenderLayerGlobals(*args, baseId: int = ..., currentRenderLayer:... function editRenderLayerMembers (line 4211) | def editRenderLayerMembers(*args, fullNames: bool | int = ..., noRecurse... function editor (line 4214) | def editor(*args, edit: Literal[True], docTag: str = ..., filter: str = ... function editor (line 4217) | def editor(*args, control: bool | int = ..., defineTemplate: str = ..., ... function editorTemplate (line 4218) | def editorTemplate(*args, addAdskAssetControls: bool | int = ..., addCom... function effector (line 4221) | def effector(*args, edit: Literal[True], hide: bool | int = ..., name: s... function effector (line 4224) | def effector(*args, hide: bool | int = ..., name: bool | int | str = ...... function emit (line 4225) | def emit(*args, attribute: str | list[str] = ..., floatValue: float | li... function emitter (line 4228) | def emitter(*args, edit: Literal[True], alongAxis: float = ..., aroundAx... function emitter (line 4231) | def emitter(*args, alongAxis: bool | int | float = ..., aroundAxis: bool... function enableDevice (line 4232) | def enableDevice(*args, apply: bool | int = ..., device: bool | int | st... function encodeString (line 4233) | def encodeString(*args) -> Any: ... function error (line 4234) | def error(*args, noContext: bool | int = ..., showLineNumber: bool | int... function eval (line 4235) | def eval(*args, undoEnabled: bool | int = ...) -> Any: ... function evalContinue (line 4236) | def evalContinue(*args) -> Any: ... function evalDeferred (line 4237) | def evalDeferred(*args, evaluateNext: bool | int = ..., list: bool | int... function evalEcho (line 4238) | def evalEcho(*args) -> Any: ... function evalNoSelectNotify (line 4239) | def evalNoSelectNotify(*args) -> Any: ... function evaluationManager (line 4240) | def evaluationManager(*args, cycleCluster: bool | int | str = ..., disab... function evaluationManagerInternal (line 4241) | def evaluationManagerInternal(*args, dataSharing: bool | int = ..., data... function evaluator (line 4242) | def evaluator(*args, clusters: bool | int = ..., configuration: bool | i... function evaluatorInternal (line 4243) | def evaluatorInternal(*args, name: str = ..., query: bool | int = ..., r... function event (line 4246) | def event(*args, edit: Literal[True], count: int = ..., dieAtCollision: ... function event (line 4249) | def event(*args, count: int = ..., delete: bool | int = ..., dieAtCollis... function exactWorldBoundingBox (line 4250) | def exactWorldBoundingBox(*args, calculateExactly: bool | int = ..., ign... function excludeObjectDisplayPreset (line 4251) | def excludeObjectDisplayPreset(*args, delete: bool | int = ..., edit: bo... function exclusiveLightCheckBox (line 4254) | def exclusiveLightCheckBox(*args, edit: Literal[True], annotation: str =... function exclusiveLightCheckBox (line 4257) | def exclusiveLightCheckBox(*args, annotation: bool | int | str = ..., ba... function expandedSelection (line 4258) | def expandedSelection(*args, depth: int = ..., expansionType: str = ...)... function exportEdits (line 4259) | def exportEdits(*args, editCommand: bool | int | str | list[str] = ..., ... function expression (line 4262) | def expression(*args, edit: Literal[True], alwaysEvaluate: int = ..., an... function expression (line 4265) | def expression(*args, alwaysEvaluate: int = ..., animated: int = ..., at... function expressionEditorListen (line 4266) | def expressionEditorListen(*args, listenFile: str = ..., listenForAttr: ... function extendCurve (line 4269) | def extendCurve(*args, edit: Literal[True], caching: bool | int = ..., d... function extendCurve (line 4272) | def extendCurve(*args, caching: bool | int = ..., constructionHistory: b... function extendFluid (line 4273) | def extendFluid(*args, edit: bool | int = ..., endD: int = ..., endH: in... function extendSurface (line 4276) | def extendSurface(*args, edit: Literal[True], caching: bool | int = ...,... function extendSurface (line 4279) | def extendSurface(*args, caching: bool | int = ..., constructionHistory:... function extrude (line 4282) | def extrude(*args, edit: Literal[True], caching: bool | int = ..., degre... function extrude (line 4285) | def extrude(*args, caching: bool | int = ..., constructionHistory: bool ... function falloffCurve (line 4288) | def falloffCurve(*args, edit: Literal[True], addControlVertex: str = ...... function falloffCurve (line 4291) | def falloffCurve(*args, addControlVertex: str = ..., annotation: bool | ... function falloffCurveAttr (line 4294) | def falloffCurveAttr(*args, edit: Literal[True], addControlVertex: str =... function falloffCurveAttr (line 4297) | def falloffCurveAttr(*args, addControlVertex: str = ..., annotation: boo... function fcheck (line 4298) | def fcheck(*args) -> Any: ... function file (line 4301) | def file(*args, edit: Literal[True], mapPlaceHolderNamespace: tuple[str,... function file (line 4304) | def file(*args, absoluteName: bool | int = ..., activate: bool | int = .... function fileBrowserDialog (line 4305) | def fileBrowserDialog(*args, actionName: str = ..., dialogStyle: int = .... function fileDialog (line 4306) | def fileDialog(*args, application: bool | int = ..., defaultFileName: st... function fileDialog2 (line 4307) | def fileDialog2(*args, buttonBoxOrientation: int = ..., cancelCaption: s... function fileInfo (line 4308) | def fileInfo(*args, query: bool | int = ..., referenceNode: bool | int |... function filePathEditor (line 4309) | def filePathEditor(*args, attributeOnly: bool | int = ..., attributeType... function filletCurve (line 4312) | def filletCurve(*args, edit: Literal[True], bias: float = ..., blendCont... function filletCurve (line 4315) | def filletCurve(*args, bias: bool | int | float = ..., blendControl: boo... function filter (line 4318) | def filter(*args, edit: Literal[True], name: str = ..., type: str = ...)... function filter (line 4321) | def filter(*args, name: bool | int | str = ..., type: bool | int | str =... function filterButterworthCtx (line 4324) | def filterButterworthCtx(*args, edit: Literal[True], apply: bool | int =... function filterButterworthCtx (line 4327) | def filterButterworthCtx(*args, apply: bool | int = ..., cutoffFrequency... function filterCurve (line 4328) | def filterCurve(*args, cutoffFrequency: float = ..., endTime: int | floa... function filterExpand (line 4329) | def filterExpand(*args, expand: bool | int = ..., fullPath: bool | int =... function filterGaussianCtx (line 4332) | def filterGaussianCtx(*args, edit: Literal[True], apply: bool | int = ..... function filterGaussianCtx (line 4335) | def filterGaussianCtx(*args, apply: bool | int = ..., endTime: bool | in... function filterInstances (line 4336) | def filterInstances(*args, query: bool | int = ..., shapes: bool | int =... function filterKeyReducerCtx (line 4339) | def filterKeyReducerCtx(*args, edit: Literal[True], apply: bool | int = ... function filterKeyReducerCtx (line 4342) | def filterKeyReducerCtx(*args, apply: bool | int = ..., endTime: bool | ... function filterPeakRemoverCtx (line 4343) | def filterPeakRemoverCtx(*args, apply: bool | int = ..., edit: bool | in... function findDeformers (line 4344) | def findDeformers(*args) -> Any: ... function findKeyframe (line 4345) | def findKeyframe(*args, animation: str = ..., attribute: str | list[str]... function findType (line 4346) | def findType(*args, deep: bool | int = ..., exact: bool | int = ..., for... function fitBspline (line 4349) | def fitBspline(*args, edit: Literal[True], caching: bool | int = ..., no... function fitBspline (line 4352) | def fitBspline(*args, caching: bool | int = ..., constructionHistory: bo... function flagTest (line 4353) | def flagTest(*args, edit: bool | int = ..., floatRange: None | list[None... function flexor (line 4354) | def flexor(*args, atBones: bool | int = ..., atJoints: bool | int = ...,... function floatField (line 4357) | def floatField(*args, edit: Literal[True], annotation: str = ..., backgr... function floatField (line 4360) | def floatField(*args, annotation: bool | int | str = ..., backgroundColo... function floatFieldGrp (line 4363) | def floatFieldGrp(*args, edit: Literal[True], adjustableColumn: int = ..... function floatFieldGrp (line 4366) | def floatFieldGrp(*args, adjustableColumn: int = ..., adjustableColumn2:... function floatScrollBar (line 4369) | def floatScrollBar(*args, edit: Literal[True], annotation: str = ..., ba... function floatScrollBar (line 4372) | def floatScrollBar(*args, annotation: bool | int | str = ..., background... function floatSlider (line 4375) | def floatSlider(*args, edit: Literal[True], annotation: str = ..., backg... function floatSlider (line 4378) | def floatSlider(*args, annotation: bool | int | str = ..., backgroundCol... function floatSlider2 (line 4381) | def floatSlider2(*args, edit: Literal[True], annotation: str = ..., back... function floatSlider2 (line 4384) | def floatSlider2(*args, annotation: bool | int | str = ..., backgroundCo... function floatSliderButtonGrp (line 4387) | def floatSliderButtonGrp(*args, edit: Literal[True], adjustableColumn: i... function floatSliderButtonGrp (line 4390) | def floatSliderButtonGrp(*args, adjustableColumn: int = ..., adjustableC... function floatSliderGrp (line 4393) | def floatSliderGrp(*args, edit: Literal[True], adjustableColumn: int = .... function floatSliderGrp (line 4396) | def floatSliderGrp(*args, adjustableColumn: int = ..., adjustableColumn2... function flow (line 4397) | def flow(*args, divisions: bool | int | tuple[int, int, int] = ..., edit... function flowLayout (line 4400) | def flowLayout(*args, edit: Literal[True], annotation: str = ..., backgr... function flowLayout (line 4403) | def flowLayout(*args, annotation: bool | int | str = ..., backgroundColo... function fluidAppend (line 4404) | def fluidAppend(*args, **keywords): ... function fluidAppendOpt (line 4405) | def fluidAppendOpt(*args, **keywords): ... function fluidCacheInfo (line 4408) | def fluidCacheInfo(*args, edit: Literal[True], attribute: str = ..., cac... function fluidCacheInfo (line 4411) | def fluidCacheInfo(*args, attribute: bool | int | str = ..., cacheTime: ... function fluidDeleteCache (line 4412) | def fluidDeleteCache(*args, **keywords): ... function fluidDeleteCacheFrames (line 4413) | def fluidDeleteCacheFrames(*args, **keywords): ... function fluidDeleteCacheFramesOpt (line 4414) | def fluidDeleteCacheFramesOpt(*args, **keywords): ... function fluidDeleteCacheOpt (line 4415) | def fluidDeleteCacheOpt(*args, **keywords): ... function fluidEmitter (line 4418) | def fluidEmitter(*args, edit: Literal[True], cycleEmission: str = ..., c... function fluidEmitter (line 4421) | def fluidEmitter(*args, cycleEmission: bool | int | str = ..., cycleInte... function fluidMergeCache (line 4422) | def fluidMergeCache(*args, **keywords): ... function fluidMergeCacheOpt (line 4423) | def fluidMergeCacheOpt(*args, **keywords): ... function fluidReplaceCache (line 4424) | def fluidReplaceCache(*args, **keywords): ... function fluidReplaceCacheOpt (line 4425) | def fluidReplaceCacheOpt(*args, **keywords): ... function fluidReplaceFrames (line 4426) | def fluidReplaceFrames(*args, **keywords): ... function fluidReplaceFramesOpt (line 4427) | def fluidReplaceFramesOpt(*args, **keywords): ... function fluidVoxelInfo (line 4428) | def fluidVoxelInfo(*args, checkBounds: bool | int = ..., inBounds: tuple... function flushIdleQueue (line 4429) | def flushIdleQueue(*args, resume: bool | int = ...) -> Any: ... function flushThumbnailCache (line 4430) | def flushThumbnailCache(*args) -> Any: ... function flushUndo (line 4431) | def flushUndo(*args) -> Any: ... function fontDialog (line 4432) | def fontDialog(*args, FontList: bool | int = ..., scalable: bool | int =... function formLayout (line 4435) | def formLayout(*args, edit: Literal[True], annotation: str = ..., attach... function formLayout (line 4438) | def formLayout(*args, annotation: bool | int | str = ..., attachControl:... function format (line 4439) | def format(*args, stringArg: str | list[str] = ...) -> Any: ... function frameBufferName (line 4440) | def frameBufferName(*args, autoTruncate: bool | int = ..., camera: str =... function frameLayout (line 4443) | def frameLayout(*args, edit: Literal[True], annotation: str = ..., backg... function frameLayout (line 4446) | def frameLayout(*args, annotation: bool | int | str = ..., backgroundCol... function framelessDialog (line 4447) | def framelessDialog(*args, button: str | list[str] = ..., message: str =... function freeFormFillet (line 4450) | def freeFormFillet(*args, edit: Literal[True], bias: float = ..., cachin... function freeFormFillet (line 4453) | def freeFormFillet(*args, bias: bool | int | float = ..., caching: bool ... function freezeOptions (line 4454) | def freezeOptions(*args, displayLayers: bool | int = ..., downstream: bo... function geomBind (line 4457) | def geomBind(*args, edit: Literal[True], falloff: float = ..., geodesicV... function geomBind (line 4460) | def geomBind(*args, bindMethod: int = ..., falloff: bool | int | float =... function geomToBBox (line 4461) | def geomToBBox(*args, bakeAnimation: bool | int = ..., combineMesh: bool... function geometryAppendCache (line 4462) | def geometryAppendCache(*args, **keywords): ... function geometryAppendCacheOpt (line 4463) | def geometryAppendCacheOpt(*args, **keywords): ... function geometryAttrInfo (line 4464) | def geometryAttrInfo(*args, boundingBox: bool | int = ..., castToEdges: ... function geometryCache (line 4465) | def geometryCache(*args, **keywords): ... function geometryCacheOpt (line 4466) | def geometryCacheOpt(*args, **keywords): ... function geometryConstraint (line 4469) | def geometryConstraint(*args, edit: Literal[True], layer: str = ..., nam... function geometryConstraint (line 4472) | def geometryConstraint(*args, layer: str = ..., name: bool | int | str =... function geometryDeleteCacheFrames (line 4473) | def geometryDeleteCacheFrames(*args, **keywords): ... function geometryDeleteCacheFramesOpt (line 4474) | def geometryDeleteCacheFramesOpt(*args, **keywords): ... function geometryDeleteCacheOpt (line 4475) | def geometryDeleteCacheOpt(*args, **keywords): ... function geometryExportCache (line 4476) | def geometryExportCache(*args, **keywords): ... function geometryExportCacheOpt (line 4477) | def geometryExportCacheOpt(*args, **keywords): ... function geometryMergeCache (line 4478) | def geometryMergeCache(*args, **keywords): ... function geometryMergeCacheOpt (line 4479) | def geometryMergeCacheOpt(*args, **keywords): ... function geometryReplaceCache (line 4480) | def geometryReplaceCache(*args, **keywords): ... function geometryReplaceCacheFrames (line 4481) | def geometryReplaceCacheFrames(*args, **keywords): ... function geometryReplaceCacheFramesOpt (line 4482) | def geometryReplaceCacheFramesOpt(*args, **keywords): ... function geometryReplaceCacheOpt (line 4483) | def geometryReplaceCacheOpt(*args, **keywords): ... function getAttr (line 4484) | def getAttr(*args, asString: bool | int = ..., caching: bool | int = ...... function getClassification (line 4485) | def getClassification(*args, satisfies: str = ...) -> Any: ... function getDefaultBrush (line 4486) | def getDefaultBrush(*args) -> Any: ... function getFileList (line 4487) | def getFileList(*args, filespec: str = ..., folder: str = ...) -> Any: ... function getFluidAttr (line 4488) | def getFluidAttr(*args, attribute: str = ..., lowerFace: bool | int = ..... function getInputDeviceRange (line 4489) | def getInputDeviceRange(*args, maxValue: bool | int = ..., minValue: boo... function getLastError (line 4490) | def getLastError(*args) -> Any: ... function getMetadata (line 4491) | def getMetadata(*args, channelName: bool | int | str = ..., channelType:... function getModifiers (line 4492) | def getModifiers(*args) -> Any: ... function getModulePath (line 4493) | def getModulePath(*args, moduleName: str = ...) -> Any: ... function getPanel (line 4494) | def getPanel(*args, allConfigs: bool | int = ..., allPanels: bool | int ... function getParticleAttr (line 4495) | def getParticleAttr(*args, array: bool | int = ..., attribute: str = ...... function getProcArguments (line 4496) | def getProcArguments(*args) -> Any: ... function getRenderDependencies (line 4497) | def getRenderDependencies(*args) -> Any: ... function getRenderTasks (line 4498) | def getRenderTasks(*args, camera: str = ..., renderLayer: str = ...) -> ... function ghosting (line 4501) | def ghosting(*args, edit: Literal[True], allGhostedObjects: bool | int =... function ghosting (line 4504) | def ghosting(*args, action: str = ..., allGhostedObjects: bool | int = .... function glRender (line 4507) | def glRender(*args, edit: Literal[True], accumBufferPasses: int = ..., a... function glRender (line 4510) | def glRender(*args, accumBufferPasses: int = ..., alphaSource: bool | in... function glRenderEditor (line 4513) | def glRenderEditor(*args, edit: Literal[True], docTag: str = ..., filter... function glRenderEditor (line 4516) | def glRenderEditor(*args, control: bool | int = ..., defineTemplate: str... function globalStitch (line 4519) | def globalStitch(*args, edit: Literal[True], caching: bool | int = ..., ... function globalStitch (line 4522) | def globalStitch(*args, caching: bool | int = ..., constructionHistory: ... function goal (line 4523) | def goal(*args, goal: bool | int | str | list[str] = ..., index: bool | ... function grabColor (line 4524) | def grabColor(*args, alpha: bool | int = ..., hsvValue: bool | int = ...... function gradientControl (line 4527) | def gradientControl(*args, edit: Literal[True], adaptiveScaling: bool | ... function gradientControl (line 4530) | def gradientControl(*args, adaptiveScaling: bool | int = ..., annotation... function gradientControlNoAttr (line 4533) | def gradientControlNoAttr(*args, edit: Literal[True], addEntry: tuple[fl... function gradientControlNoAttr (line 4536) | def gradientControlNoAttr(*args, addEntry: tuple[float, float, float, fl... function graphDollyCtx (line 4539) | def graphDollyCtx(*args, edit: Literal[True], image1: str = ..., image2:... function graphDollyCtx (line 4542) | def graphDollyCtx(*args, exists: bool | int = ..., history: bool | int =... function graphSelectContext (line 4545) | def graphSelectContext(*args, edit: Literal[True], image1: str = ..., im... function graphSelectContext (line 4548) | def graphSelectContext(*args, exists: bool | int = ..., image1: bool | i... function graphTrackCtx (line 4551) | def graphTrackCtx(*args, edit: Literal[True], image1: str = ..., image2:... function graphTrackCtx (line 4554) | def graphTrackCtx(*args, exists: bool | int = ..., history: bool | int =... function gravity (line 4557) | def gravity(*args, edit: Literal[True], attenuation: float = ..., direct... function gravity (line 4560) | def gravity(*args, attenuation: bool | int | float = ..., directionX: bo... function grid (line 4561) | def grid(*args, default: bool | int = ..., displayAxes: bool | int = ...... function gridLayout (line 4564) | def gridLayout(*args, edit: Literal[True], annotation: str = ..., backgr... function gridLayout (line 4567) | def gridLayout(*args, allowEmptyCells: bool | int = ..., annotation: boo... function group (line 4568) | def group(*args, absolute: bool | int = ..., empty: bool | int = ..., na... function groupParts (line 4569) | def groupParts(*args) -> Any: ... function hardenPointCurve (line 4572) | def hardenPointCurve(*args, edit: Literal[True], caching: bool | int = .... function hardenPointCurve (line 4575) | def hardenPointCurve(*args, caching: bool | int = ..., constructionHisto... function hardware (line 4576) | def hardware(*args, brdType: bool | int = ..., cpuType: bool | int = ...... function hardwareRenderPanel (line 4579) | def hardwareRenderPanel(*args, edit: Literal[True], camera: str = ..., c... function hardwareRenderPanel (line 4582) | def hardwareRenderPanel(*args, camera: bool | int | str = ..., control: ... function hasMetadata (line 4583) | def hasMetadata(*args, asList: bool | int = ..., channelName: bool | int... function headsUpDisplay (line 4586) | def headsUpDisplay(*args, edit: Literal[True], allDescendants: bool | in... function headsUpDisplay (line 4589) | def headsUpDisplay(*args, allDescendants: bool | int = ..., allowOverlap... function headsUpMessage (line 4590) | def headsUpMessage(*args, horizontalOffset: int = ..., object: str = ...... function help (line 4591) | def help(*args, documentation: bool | int = ..., language: str = ..., li... function helpLine (line 4594) | def helpLine(*args, edit: Literal[True], annotation: str = ..., backgrou... function helpLine (line 4597) | def helpLine(*args, annotation: bool | int | str = ..., backgroundColor:... function hide (line 4598) | def hide(*args, allObjects: bool | int = ..., clearLastHidden: bool | in... function hikGlobals (line 4601) | def hikGlobals(*args, edit: Literal[True], releaseAllPinning: bool | int... function hikGlobals (line 4604) | def hikGlobals(*args, query: bool | int = ..., releaseAllPinning: bool |... function hilite (line 4605) | def hilite(*args, replace: bool | int = ..., toggle: bool | int = ..., u... function hitTest (line 4606) | def hitTest(*args) -> Any: ... function hotBox (line 4607) | def hotBox(*args, PaneOnlyMenus: bool | int = ..., PaneToggleMenus: bool... function hotkey (line 4608) | def hotkey(*args, altModifier: bool | int = ..., autoSave: bool | int = ... function hotkeyCheck (line 4609) | def hotkeyCheck(*args, altModifier: bool | int = ..., commandModifier: b... function hotkeyCtx (line 4610) | def hotkeyCtx(*args, addClient: str | list[str] = ..., clientArray: bool... function hotkeyEditor (line 4611) | def hotkeyEditor(*args) -> Any: ... function hotkeyEditorPanel (line 4614) | def hotkeyEditorPanel(*args, edit: Literal[True], annotation: str = ...,... function hotkeyEditorPanel (line 4617) | def hotkeyEditorPanel(*args, annotation: bool | int | str = ..., backgro... function hotkeyMapSet (line 4618) | def hotkeyMapSet(*args) -> Any: ... function hotkeySet (line 4621) | def hotkeySet(*args, edit: Literal[True], current: bool | int = ..., del... function hotkeySet (line 4624) | def hotkeySet(*args, current: bool | int = ..., delete: bool | int = ...... function hudButton (line 4627) | def hudButton(*args, edit: Literal[True], allowOverlap: bool | int = ...... function hudButton (line 4630) | def hudButton(*args, allowOverlap: bool | int = ..., block: int = ..., b... function hudSlider (line 4633) | def hudSlider(*args, edit: Literal[True], allowOverlap: bool | int = ...... function hudSlider (line 4636) | def hudSlider(*args, allowOverlap: bool | int = ..., block: int = ..., b... function hudSliderButton (line 4639) | def hudSliderButton(*args, edit: Literal[True], allowOverlap: bool | int... function hudSliderButton (line 4642) | def hudSliderButton(*args, allowOverlap: bool | int = ..., block: int = ... function hwReflectionMap (line 4643) | def hwReflectionMap(*args, backTextureName: bool | int | str = ..., bott... function hwRender (line 4644) | def hwRender(*args, acceleratedMultiSampleSupport: bool | int = ..., act... function hwRenderLoad (line 4645) | def hwRenderLoad(*args) -> Any: ... function hyperGraph (line 4648) | def hyperGraph(*args, edit: Literal[True], addBookmark: bool | int = ...... function hyperGraph (line 4651) | def hyperGraph(*args, addBookmark: bool | int = ..., addDependGraph: str... function hyperPanel (line 4654) | def hyperPanel(*args, edit: Literal[True], copy: str = ..., createString... function hyperPanel (line 4657) | def hyperPanel(*args, control: bool | int = ..., copy: str = ..., create... function hyperShade (line 4658) | def hyperShade(*args, assign: str = ..., clearWorkArea: bool | int = ...... function iconTextButton (line 4661) | def iconTextButton(*args, edit: Literal[True], align: str = ..., annotat... function iconTextButton (line 4664) | def iconTextButton(*args, actionIsSubstitute: bool | int = ..., align: b... function iconTextCheckBox (line 4667) | def iconTextCheckBox(*args, edit: Literal[True], align: str = ..., annot... function iconTextCheckBox (line 4670) | def iconTextCheckBox(*args, align: bool | int | str = ..., annotation: b... function iconTextRadioButton (line 4673) | def iconTextRadioButton(*args, edit: Literal[True], align: str = ..., an... function iconTextRadioButton (line 4676) | def iconTextRadioButton(*args, align: bool | int | str = ..., annotation... function iconTextRadioCollection (line 4679) | def iconTextRadioCollection(*args, edit: Literal[True], disableCommands:... function iconTextRadioCollection (line 4682) | def iconTextRadioCollection(*args, collectionItemArray: bool | int = ...... function iconTextScrollList (line 4685) | def iconTextScrollList(*args, edit: Literal[True], allowMultiSelection: ... function iconTextScrollList (line 4688) | def iconTextScrollList(*args, allowMultiSelection: bool | int = ..., ann... function iconTextStaticLabel (line 4691) | def iconTextStaticLabel(*args, edit: Literal[True], align: str = ..., an... function iconTextStaticLabel (line 4694) | def iconTextStaticLabel(*args, align: bool | int | str = ..., annotation... function ikHandle (line 4697) | def ikHandle(*args, edit: Literal[True], autoPriority: bool | int = ...,... function ikHandle (line 4700) | def ikHandle(*args, autoPriority: bool | int = ..., connectEffector: boo... function ikHandleCtx (line 4703) | def ikHandleCtx(*args, edit: Literal[True], autoPriorityH: bool | int = ... function ikHandleCtx (line 4706) | def ikHandleCtx(*args, autoPriorityH: bool | int = ..., createCurve: boo... function ikHandleDisplayScale (line 4707) | def ikHandleDisplayScale(*args, query: bool | int = ...) -> Any: ... function ikSolver (line 4710) | def ikSolver(*args, edit: Literal[True], epsilon: float = ..., maxIterat... function ikSolver (line 4713) | def ikSolver(*args, epsilon: bool | int | float = ..., maxIterations: in... function ikSplineHandleCtx (line 4716) | def ikSplineHandleCtx(*args, edit: Literal[True], autoPriorityH: bool | ... function ikSplineHandleCtx (line 4719) | def ikSplineHandleCtx(*args, autoPriorityH: bool | int = ..., createCurv... function ikSystem (line 4722) | def ikSystem(*args, edit: Literal[True], allowRotation: bool | int = ...... function ikSystem (line 4725) | def ikSystem(*args, allowRotation: bool | int = ..., autoPriority: bool ... function ikSystemInfo (line 4726) | def ikSystemInfo(*args, globalSnapHandle: bool | int = ..., query: bool ... function ikfkDisplayMethod (line 4727) | def ikfkDisplayMethod(*args, display: bool | int | str = ..., query: boo... function illustratorCurves (line 4730) | def illustratorCurves(*args, edit: Literal[True], caching: bool | int = ... function illustratorCurves (line 4733) | def illustratorCurves(*args, caching: bool | int = ..., constructionHist... function image (line 4736) | def image(*args, edit: Literal[True], annotation: str = ..., backgroundC... function image (line 4739) | def image(*args, annotation: bool | int | str = ..., backgroundColor: bo... function imagePlane (line 4742) | def imagePlane(*args, edit: Literal[True], camera: str = ..., detach: bo... function imagePlane (line 4745) | def imagePlane(*args, camera: bool | int | str = ..., counter: bool | in... function imageWindowEditor (line 4746) | def imageWindowEditor(*args, autoResize: bool | int = ..., changeCommand... function imfPlugins (line 4747) | def imfPlugins(*args, extension: bool | int | str = ..., keyword: bool |... function inViewMessage (line 4748) | def inViewMessage(*args, alpha: float = ..., assistMessage: str = ..., b... function inheritTransform (line 4749) | def inheritTransform(*args, off: bool | int = ..., on: bool | int = ...,... function insertJoint (line 4750) | def insertJoint(*args) -> Any: ... function insertJointCtx (line 4753) | def insertJointCtx(*args, edit: Literal[True], image1: str = ..., image2... function insertJointCtx (line 4756) | def insertJointCtx(*args, exists: bool | int = ..., image1: bool | int |... function insertKeyCtx (line 4759) | def insertKeyCtx(*args, edit: Literal[True], breakdown: bool | int = ...... function insertKeyCtx (line 4762) | def insertKeyCtx(*args, breakdown: bool | int = ..., exists: bool | int ... function insertKnotCurve (line 4765) | def insertKnotCurve(*args, edit: Literal[True], addKnots: bool | int = .... function insertKnotCurve (line 4768) | def insertKnotCurve(*args, addKnots: bool | int = ..., caching: bool | i... function insertKnotSurface (line 4771) | def insertKnotSurface(*args, edit: Literal[True], addKnots: bool | int =... function insertKnotSurface (line 4774) | def insertKnotSurface(*args, addKnots: bool | int = ..., caching: bool |... function insertListItem (line 4775) | def insertListItem(*args, **keywords): ... function insertListItemBefore (line 4776) | def insertListItemBefore(*args, **keywords): ... function instance (line 4777) | def instance(*args, leaf: bool | int = ..., name: str = ..., smartTransf... function instanceable (line 4778) | def instanceable(*args, allow: bool | int = ..., query: bool | int = ...... function instancer (line 4781) | def instancer(*args, edit: Literal[True], addObject: bool | int = ..., c... function instancer (line 4784) | def instancer(*args, addObject: bool | int = ..., cycle: bool | int | st... function intField (line 4787) | def intField(*args, edit: Literal[True], annotation: str = ..., backgrou... function intField (line 4790) | def intField(*args, annotation: bool | int | str = ..., backgroundColor:... function intFieldGrp (line 4793) | def intFieldGrp(*args, edit: Literal[True], adjustableColumn: int = ...,... function intFieldGrp (line 4796) | def intFieldGrp(*args, adjustableColumn: int = ..., adjustableColumn2: i... function intScrollBar (line 4799) | def intScrollBar(*args, edit: Literal[True], annotation: str = ..., back... function intScrollBar (line 4802) | def intScrollBar(*args, annotation: bool | int | str = ..., backgroundCo... function intSlider (line 4805) | def intSlider(*args, edit: Literal[True], annotation: str = ..., backgro... function intSlider (line 4808) | def intSlider(*args, annotation: bool | int | str = ..., backgroundColor... function intSliderGrp (line 4811) | def intSliderGrp(*args, edit: Literal[True], adjustableColumn: int = ...... function intSliderGrp (line 4814) | def intSliderGrp(*args, adjustableColumn: int = ..., adjustableColumn2: ... function interactionStyle (line 4815) | def interactionStyle(*args, query: bool | int = ..., style: str = ...) -... function internalVar (line 4816) | def internalVar(*args, mayaInstallDir: bool | int = ..., userAppDir: boo... function intersect (line 4819) | def intersect(*args, edit: Literal[True], caching: bool | int = ..., fir... function intersect (line 4822) | def intersect(*args, caching: bool | int = ..., constructionHistory: boo... function iprEngine (line 4825) | def iprEngine(*args, edit: Literal[True], copy: str = ..., diagnostics: ... function iprEngine (line 4828) | def iprEngine(*args, copy: str = ..., defineTemplate: str = ..., diagnos... function isConnected (line 4829) | def isConnected(*args, ignoreUnitConversion: bool | int = ...) -> Any: ... function isDirty (line 4830) | def isDirty(*args, connection: bool | int = ..., datablock: bool | int =... function isTrue (line 4831) | def isTrue(*args) -> Any: ... function isolateSelect (line 4832) | def isolateSelect(*args, addDagObject: str = ..., addSelected: bool | in... function itemFilter (line 4835) | def itemFilter(*args, edit: Literal[True], byBin: str | list[str] = ...,... function itemFilter (line 4838) | def itemFilter(*args, byBin: bool | int | str | list[str] = ..., byName:... function itemFilterAttr (line 4841) | def itemFilterAttr(*args, edit: Literal[True], byName: str = ..., byName... function itemFilterAttr (line 4844) | def itemFilterAttr(*args, byName: bool | int | str = ..., byNameString: ... function itemFilterRender (line 4845) | def itemFilterRender(*args, anyTextures: bool | int = ..., category: str... function itemFilterType (line 4848) | def itemFilterType(*args, edit: Literal[True], text: str = ...) -> None:... function itemFilterType (line 4851) | def itemFilterType(*args, query: bool | int = ..., text: bool | int | st... function iterOnNurbs (line 4852) | def iterOnNurbs(*args) -> Any: ... function joint (line 4855) | def joint(*args, edit: Literal[True], absolute: bool | int = ..., angleX... function joint (line 4858) | def joint(*args, absolute: bool | int = ..., angleX: bool | int | float ... function jointCluster (line 4861) | def jointCluster(*args, edit: Literal[True], aboveBound: float = ..., ab... function jointCluster (line 4864) | def jointCluster(*args, aboveBound: bool | int | float = ..., aboveClust... function jointCtx (line 4867) | def jointCtx(*args, edit: Literal[True], autoJointOrient: str = ..., aut... function jointCtx (line 4870) | def jointCtx(*args, autoJointOrient: bool | int | str = ..., autoOrientS... function jointDisplayScale (line 4873) | def jointDisplayScale(*args, edit: Literal[True], absolute: bool | int =... function jointDisplayScale (line 4876) | def jointDisplayScale(*args, absolute: bool | int = ..., ikfk: bool | in... function jointLattice (line 4879) | def jointLattice(*args, edit: Literal[True], after: bool | int = ..., af... function jointLattice (line 4882) | def jointLattice(*args, after: bool | int = ..., afterReference: bool | ... function journal (line 4883) | def journal(*args, comment: str = ..., flush: bool | int = ..., highPrec... function keyTangent (line 4886) | def keyTangent(*args, edit: Literal[True], absolute: bool | int = ..., i... function keyTangent (line 4889) | def keyTangent(*args, absolute: bool | int = ..., animation: str = ..., ... function keyframe (line 4892) | def keyframe(*args, edit: Literal[True], breakdown: bool | int = ..., fl... function keyframe (line 4895) | def keyframe(*args, absolute: bool | int = ..., adjustBreakdown: bool | ... function keyframeOutliner (line 4898) | def keyframeOutliner(*args, edit: Literal[True], animCurve: str = ..., a... function keyframeOutliner (line 4901) | def keyframeOutliner(*args, animCurve: str = ..., annotation: bool | int... function keyframeRegionCurrentTimeCtx (line 4904) | def keyframeRegionCurrentTimeCtx(*args, edit: Literal[True], image1: str... function keyframeRegionCurrentTimeCtx (line 4907) | def keyframeRegionCurrentTimeCtx(*args, exists: bool | int = ..., histor... function keyframeRegionDirectKeyCtx (line 4910) | def keyframeRegionDirectKeyCtx(*args, edit: Literal[True], image1: str =... function keyframeRegionDirectKeyCtx (line 4913) | def keyframeRegionDirectKeyCtx(*args, exists: bool | int = ..., history:... function keyframeRegionDollyCtx (line 4916) | def keyframeRegionDollyCtx(*args, edit: Literal[True], image1: str = ...... function keyframeRegionDollyCtx (line 4919) | def keyframeRegionDollyCtx(*args, exists: bool | int = ..., history: boo... function keyframeRegionInsertKeyCtx (line 4922) | def keyframeRegionInsertKeyCtx(*args, edit: Literal[True], breakdown: bo... function keyframeRegionInsertKeyCtx (line 4925) | def keyframeRegionInsertKeyCtx(*args, breakdown: bool | int = ..., exist... function keyframeRegionMoveKeyCtx (line 4928) | def keyframeRegionMoveKeyCtx(*args, edit: Literal[True], image1: str = .... function keyframeRegionMoveKeyCtx (line 4931) | def keyframeRegionMoveKeyCtx(*args, exists: bool | int = ..., history: b... function keyframeRegionScaleKeyCtx (line 4934) | def keyframeRegionScaleKeyCtx(*args, edit: Literal[True], image1: str = ... function keyframeRegionScaleKeyCtx (line 4937) | def keyframeRegionScaleKeyCtx(*args, exists: bool | int = ..., history: ... function keyframeRegionSelectKeyCtx (line 4940) | def keyframeRegionSelectKeyCtx(*args, edit: Literal[True], image1: str =... function keyframeRegionSelectKeyCtx (line 4943) | def keyframeRegionSelectKeyCtx(*args, exists: bool | int = ..., history:... function keyframeRegionSetKeyCtx (line 4946) | def keyframeRegionSetKeyCtx(*args, edit: Literal[True], breakdown: bool ... function keyframeRegionSetKeyCtx (line 4949) | def keyframeRegionSetKeyCtx(*args, breakdown: bool | int = ..., exists: ... function keyframeRegionTrackCtx (line 4952) | def keyframeRegionTrackCtx(*args, edit: Literal[True], image1: str = ...... function keyframeRegionTrackCtx (line 4955) | def keyframeRegionTrackCtx(*args, exists: bool | int = ..., history: boo... function keyframeStats (line 4958) | def keyframeStats(*args, edit: Literal[True], adjustableColumn: int = ..... function keyframeStats (line 4961) | def keyframeStats(*args, adjustableColumn: int = ..., adjustableColumn2:... function keyframeTangentControl (line 4964) | def keyframeTangentControl(*args, edit: Literal[True], annotation: str =... function keyframeTangentControl (line 4967) | def keyframeTangentControl(*args, annotation: bool | int | str = ..., ba... function keyingGroup (line 4970) | def keyingGroup(*args, edit: Literal[True], activator: str = ..., addEle... function keyingGroup (line 4973) | def keyingGroup(*args, activator: bool | int | str = ..., addElement: st... function lassoContext (line 4976) | def lassoContext(*args, edit: Literal[True], drawClosed: bool | int = ..... function lassoContext (line 4979) | def lassoContext(*args, drawClosed: bool | int = ..., exists: bool | int... function lattice (line 4982) | def lattice(*args, edit: Literal[True], after: bool | int = ..., afterRe... function lattice (line 4985) | def lattice(*args, after: bool | int = ..., afterReference: bool | int =... function latticeDeformKeyCtx (line 4988) | def latticeDeformKeyCtx(*args, edit: Literal[True], envelope: float = ..... function latticeDeformKeyCtx (line 4991) | def latticeDeformKeyCtx(*args, envelope: bool | int | float = ..., exist... function launch (line 4992) | def launch(*args, directory: str = ..., movie: str = ..., pdfFile: str =... function launchImageEditor (line 4993) | def launchImageEditor(*args, editImageFile: str = ..., viewImageFile: st... function layerButton (line 4996) | def layerButton(*args, edit: Literal[True], annotation: str = ..., backg... function layerButton (line 4999) | def layerButton(*args, annotation: bool | int | str = ..., backgroundCol... function layeredShaderPort (line 5002) | def layeredShaderPort(*args, edit: Literal[True], annotation: str = ...,... function layeredShaderPort (line 5005) | def layeredShaderPort(*args, annotation: bool | int | str = ..., backgro... function layeredTexturePort (line 5008) | def layeredTexturePort(*args, edit: Literal[True], annotation: str = ...... function layeredTexturePort (line 5011) | def layeredTexturePort(*args, annotation: bool | int | str = ..., backgr... function layout (line 5014) | def layout(*args, edit: Literal[True], annotation: str = ..., background... function layout (line 5017) | def layout(*args, annotation: bool | int | str = ..., backgroundColor: b... function layoutDialog (line 5018) | def layoutDialog(*args, backgroundColor: tuple[float, float, float] = ..... function license (line 5019) | def license(*args, borrow: bool | int = ..., info: bool | int = ..., isB... function licenseCheck (line 5020) | def licenseCheck(*args, mode: str = ..., type: str = ...) -> Any: ... function lightList (line 5021) | def lightList(*args, add: str = ..., edit: bool | int = ..., query: bool... function lightlink (line 5022) | def lightlink(*args, b: bool | int = ..., hierarchy: bool | int = ..., l... function linearPrecision (line 5023) | def linearPrecision(*args, query: bool | int = ...) -> Any: ... function listAnimatable (line 5024) | def listAnimatable(*args, active: bool | int = ..., manip: bool | int = ... function listAttr (line 5025) | def listAttr(*args, array: bool | int = ..., attributeType: str | list[s... function listAttrPatterns (line 5026) | def listAttrPatterns(*args, patternType: bool | int = ..., verbose: bool... function listCameras (line 5027) | def listCameras(*args, orthographic: bool | int = ..., perspective: bool... function listConnections (line 5028) | def listConnections(*args, connections: bool | int = ..., destination: b... function listDeviceAttachments (line 5029) | def listDeviceAttachments(*args, attribute: str = ..., axis: str = ..., ... function listHistory (line 5030) | def listHistory(*args, allConnections: bool | int = ..., allFuture: bool... function listInputDeviceAxes (line 5031) | def listInputDeviceAxes(*args) -> list[str] | None: ... function listInputDeviceButtons (line 5032) | def listInputDeviceButtons(*args) -> list[str] | None: ... function listInputDevices (line 5033) | def listInputDevices(*args, free: bool | int = ..., primary: bool | int ... function listNodeTypes (line 5034) | def listNodeTypes(*args, exclude: str = ...) -> list[str] | None: ... function listNodesWithIncorrectNames (line 5035) | def listNodesWithIncorrectNames(*args) -> list[str] | None: ... function listRelatives (line 5036) | def listRelatives(*args, allDescendents: bool | int = ..., allParents: b... function listSets (line 5037) | def listSets(*args, allSets: bool | int = ..., extendToShape: bool | int... function loadFluid (line 5040) | def loadFluid(*args, edit: Literal[True], currentTime: bool | int = ...,... function loadFluid (line 5043) | def loadFluid(*args, currentTime: bool | int = ..., frame: bool | int | ... function loadModule (line 5044) | def loadModule(*args, allModules: bool | int = ..., load: str = ..., sca... function loadPlugin (line 5045) | def loadPlugin(*args, addCallback: str | Callable = ..., allPlugins: boo... function loadPrefObjects (line 5046) | def loadPrefObjects(*args) -> Any: ... function loadUI (line 5047) | def loadUI(*args, listTypes: bool | int = ..., uiFile: str = ..., uiStri... function lockNode (line 5048) | def lockNode(*args, ignoreComponents: bool | int = ..., lock: bool | int... function loft (line 5051) | def loft(*args, edit: Literal[True], autoReverse: bool | int = ..., cach... function loft (line 5054) | def loft(*args, autoReverse: bool | int = ..., caching: bool | int = ...... function lookThru (line 5055) | def lookThru(*args, farClip: float = ..., nearClip: float = ..., query: ... function ls (line 5056) | def ls(*args, absoluteName: bool | int = ..., allPaths: bool | int = ...... function lsThroughFilter (line 5057) | def lsThroughFilter(*args, item: str | list[str] = ..., nodeArray: bool ... function lsUI (line 5058) | def lsUI(*args, cmdTemplates: bool | int = ..., collection: bool | int =... function makeIdentity (line 5059) | def makeIdentity(*args, apply: bool | int = ..., jointOrient: bool | int... function makeLive (line 5062) | def makeLive(*args, edit: Literal[True], addObjects: bool | int = ..., r... function makeLive (line 5065) | def makeLive(*args, addObjects: bool | int = ..., none: bool | int = ...... function makePaintable (line 5066) | def makePaintable(*args, activate: bool | int = ..., activateAll: bool |... function makeSingleSurface (line 5069) | def makeSingleSurface(*args, edit: Literal[True], caching: bool | int = ... function makeSingleSurface (line 5072) | def makeSingleSurface(*args, caching: bool | int = ..., chordHeight: flo... function makebot (line 5073) | def makebot(*args, checkdepends: bool | int = ..., checkres: int = ..., ... function manipComponentPivot (line 5074) | def manipComponentPivot(*args) -> Any: ... function manipComponentUpdate (line 5075) | def manipComponentUpdate(*args) -> Any: ... function manipMoveContext (line 5078) | def manipMoveContext(*args, edit: Literal[True], activeHandle: int = ...... function manipMoveContext (line 5081) | def manipMoveContext(*args, activeHandle: int = ..., activeHandleNormal:... function manipMoveLimitsCtx (line 5084) | def manipMoveLimitsCtx(*args, edit: Literal[True], image1: str = ..., im... function manipMoveLimitsCtx (line 5087) | def manipMoveLimitsCtx(*args, exists: bool | int = ..., history: bool | ... function manipOptions (line 5088) | def manipOptions(*args, enableSmartDuplicate: bool | int = ..., enableSm... function manipPivot (line 5089) | def manipPivot(*args, bakeOri: bool | int = ..., moveToolOri: int = ...,... function manipRotateContext (line 5092) | def manipRotateContext(*args, edit: Literal[True], activeHandle: int = .... function manipRotateContext (line 5095) | def manipRotateContext(*args, activeHandle: int = ..., alignAlong: tuple... function manipRotateLimitsCtx (line 5098) | def manipRotateLimitsCtx(*args, edit: Literal[True], image1: str = ..., ... function manipRotateLimitsCtx (line 5101) | def manipRotateLimitsCtx(*args, exists: bool | int = ..., history: bool ... function manipScaleContext (line 5104) | def manipScaleContext(*args, edit: Literal[True], activeHandle: int = ..... function manipScaleContext (line 5107) | def manipScaleContext(*args, activeHandle: int = ..., alignAlong: tuple[... function manipScaleLimitsCtx (line 5110) | def manipScaleLimitsCtx(*args, edit: Literal[True], image1: str = ..., i... function manipScaleLimitsCtx (line 5113) | def manipScaleLimitsCtx(*args, exists: bool | int = ..., history: bool |... function marker (line 5114) | def marker(*args, attach: bool | int = ..., detach: bool | int = ..., ed... function matchTransform (line 5115) | def matchTransform(*args, pivots: bool | int = ..., position: bool | int... function mateCtx (line 5116) | def mateCtx(*args) -> Any: ... function matrixUtil (line 5119) | def matrixUtil(*args, edit: Literal[True], inverse: bool | int = ..., qu... function matrixUtil (line 5122) | def matrixUtil(*args, inverse: bool | int = ..., quaternion: bool | int ... function mayaDpiSetting (line 5123) | def mayaDpiSetting(*args, mode: int = ..., query: bool | int = ..., real... function mayaDpiSettingAction (line 5124) | def mayaDpiSettingAction(*args) -> Any: ... function mayaHasRenderSetup (line 5127) | def mayaHasRenderSetup(*args, edit: Literal[True], enableCurrentSession:... function mayaHasRenderSetup (line 5130) | def mayaHasRenderSetup(*args, enableCurrentSession: bool | int = ..., en... function mayaPreviewRenderIntoNewWindow (line 5131) | def mayaPreviewRenderIntoNewWindow(*args, **keywords): ... function melInfo (line 5132) | def melInfo(*args) -> Any: ... function melOptions (line 5133) | def melOptions(*args, duplicateVariableWarnings: bool | int = ..., query... function memory (line 5134) | def memory(*args, adjustedVirtualMemory: bool | int = ..., asFloat: bool... function menu (line 5137) | def menu(*args, exists: Literal[True]) -> bool: ... function menu (line 5140) | def menu(*args, edit: Literal[True], deleteAllItems: bool | int = ..., d... function menu (line 5143) | def menu(*args, allowOptionBoxes: bool | int = ..., defineTemplate: str ... function menuBarLayout (line 5146) | def menuBarLayout(*args, edit: Literal[True], annotation: str = ..., bac... function menuBarLayout (line 5149) | def menuBarLayout(*args, annotation: bool | int | str = ..., backgroundC... function menuEditor (line 5152) | def menuEditor(*args, edit: Literal[True], annotation: str = ..., backgr... function menuEditor (line 5155) | def menuEditor(*args, annotation: bool | int | str = ..., backgroundColo... function menuItem (line 5158) | def menuItem(*args, edit: Literal[True], annotation: str = ..., checkBox... function menuItem (line 5161) | def menuItem(*args, allowOptionBoxes: bool | int = ..., altModifier: boo... function menuSet (line 5164) | def menuSet(*args, edit: Literal[True], hotBoxVisible: bool | int = ...,... function menuSet (line 5167) | def menuSet(*args, addMenu: str = ..., allMenuSets: bool | int = ..., cu... function menuSetPref (line 5170) | def menuSetPref(*args, edit: Literal[True], force: bool | int = ...) -> ... function menuSetPref (line 5173) | def menuSetPref(*args, exists: bool | int = ..., force: bool | int = ...... function meshIntersectTest (line 5174) | def meshIntersectTest(*args) -> Any: ... function messageLine (line 5177) | def messageLine(*args, edit: Literal[True], annotation: str = ..., backg... function messageLine (line 5180) | def messageLine(*args, annotation: bool | int | str = ..., backgroundCol... function mimicManipulation (line 5181) | def mimicManipulation(*args, manipulations: str = ..., prevalidation: bo... function mimicMnipulation (line 5182) | def mimicMnipulation(*args) -> Any: ... function minimizeApp (line 5183) | def minimizeApp(*args) -> Any: ... function mirrorJoint (line 5184) | def mirrorJoint(*args, mirrorBehavior: bool | int = ..., mirrorXY: bool ... function modelCurrentTimeCtx (line 5187) | def modelCurrentTimeCtx(*args, edit: Literal[True], image1: str = ..., i... function modelCurrentTimeCtx (line 5190) | def modelCurrentTimeCtx(*args, exists: bool | int = ..., history: bool |... function modelEditor (line 5193) | def modelEditor(*args, edit: Literal[True], activeComponentsXray: bool |... function modelEditor (line 5196) | def modelEditor(*args, activeComponentsXray: bool | int = ..., activeCus... function modelPanel (line 5199) | def modelPanel(*args, edit: Literal[True], camera: str = ..., copy: str ... function modelPanel (line 5202) | def modelPanel(*args, barLayout: bool | int = ..., camera: bool | int | ... function modelingToolkitSuperCtx (line 5203) | def modelingToolkitSuperCtx(*args, attach: str | list[str] = ..., edit: ... function moduleInfo (line 5204) | def moduleInfo(*args, definition: bool | int = ..., listModules: bool | ... function mouldMesh (line 5205) | def mouldMesh(*args) -> Any: ... function mouldSrf (line 5206) | def mouldSrf(*args) -> Any: ... function mouldSubdiv (line 5207) | def mouldSubdiv(*args) -> Any: ... function mouse (line 5208) | def mouse(*args, enableScrollWheel: bool | int = ..., mouseButtonTrackin... function movIn (line 5209) | def movIn(*args, file: str = ..., startTime: int | float = ...) -> Any: ... function movOut (line 5210) | def movOut(*args, comment: bool | int = ..., file: str = ..., precision:... function move (line 5211) | def move(*args, absolute: bool | int = ..., autoOrientSecondaryAxis: boo... function moveKeyCtx (line 5214) | def moveKeyCtx(*args, edit: Literal[True], image1: str = ..., image2: st... function moveKeyCtx (line 5217) | def moveKeyCtx(*args, exists: bool | int = ..., history: bool | int = ..... function moveVertexAlongDirection (line 5218) | def moveVertexAlongDirection(*args, direction: tuple[float, float, float... function movieCompressor (line 5219) | def movieCompressor(*args, hardwareOptions: bool | int = ..., softwareOp... function movieInfo (line 5220) | def movieInfo(*args, counter: bool | int = ..., dropFrame: bool | int = ... function mpBirailCtx (line 5221) | def mpBirailCtx(*args, activeNodes: bool | int = ..., autoCreate: bool |... function mrMapVisualizer (line 5222) | def mrMapVisualizer(*args, **keywords): ... function mrShaderManager (line 5223) | def mrShaderManager(*args, **keywords): ... function multiProfileBirailSurface (line 5226) | def multiProfileBirailSurface(*args, edit: Literal[True], caching: bool ... function multiProfileBirailSurface (line 5229) | def multiProfileBirailSurface(*args, caching: bool | int = ..., construc... function multiTouch (line 5230) | def multiTouch(*args, gestures: bool | int = ..., query: bool | int = ..... function mute (line 5231) | def mute(*args, disable: bool | int = ..., force: bool | int = ..., quer... function myTestCmd (line 5232) | def myTestCmd(*args) -> Any: ... function nBase (line 5235) | def nBase(*args, edit: Literal[True], clearCachedTextureMap: str = ..., ... function nBase (line 5238) | def nBase(*args, clearCachedTextureMap: str = ..., clearStart: bool | in... function nClothAppend (line 5239) | def nClothAppend(*args, **keywords): ... function nClothAppendOpt (line 5240) | def nClothAppendOpt(*args, **keywords): ... function nClothCache (line 5241) | def nClothCache(*args, **keywords): ... function nClothCacheOpt (line 5242) | def nClothCacheOpt(*args, **keywords): ... function nClothCreate (line 5243) | def nClothCreate(*args, **keywords): ... function nClothCreateOptions (line 5244) | def nClothCreateOptions(*args, **keywords): ... function nClothDeleteCacheFrames (line 5245) | def nClothDeleteCacheFrames(*args, **keywords): ... function nClothDeleteCacheFramesOpt (line 5246) | def nClothDeleteCacheFramesOpt(*args, **keywords): ... function nClothDeleteCacheOpt (line 5247) | def nClothDeleteCacheOpt(*args, **keywords): ... function nClothDeleteHistory (line 5248) | def nClothDeleteHistory(*args, **keywords): ... function nClothDeleteHistoryOpt (line 5249) | def nClothDeleteHistoryOpt(*args, **keywords): ... function nClothDisplayCurrentMesh (line 5250) | def nClothDisplayCurrentMesh(*args, **keywords): ... function nClothDisplayInputMesh (line 5251) | def nClothDisplayInputMesh(*args, **keywords): ... function nClothLocalToWorld (line 5252) | def nClothLocalToWorld(*args, **keywords): ... function nClothMakeCollide (line 5253) | def nClothMakeCollide(*args, **keywords): ... function nClothMakeCollideOptions (line 5254) | def nClothMakeCollideOptions(*args, **keywords): ... function nClothMergeCache (line 5255) | def nClothMergeCache(*args, **keywords): ... function nClothMergeCacheOpt (line 5256) | def nClothMergeCacheOpt(*args, **keywords): ... function nClothRemove (line 5257) | def nClothRemove(*args, **keywords): ... function nClothReplaceCache (line 5258) | def nClothReplaceCache(*args, **keywords): ... function nClothReplaceCacheOpt (line 5259) | def nClothReplaceCacheOpt(*args, **keywords): ... function nClothReplaceFrames (line 5260) | def nClothReplaceFrames(*args, **keywords): ... function nClothReplaceFramesOpt (line 5261) | def nClothReplaceFramesOpt(*args, **keywords): ... function nClothRestToInput (line 5262) | def nClothRestToInput(*args, **keywords): ... function nClothRestToInputStart (line 5263) | def nClothRestToInputStart(*args, **keywords): ... function nClothRestToMesh (line 5264) | def nClothRestToMesh(*args, **keywords): ... function nClothWorldToLocal (line 5265) | def nClothWorldToLocal(*args, **keywords): ... function nConstraintAddMembers (line 5266) | def nConstraintAddMembers(*args, **keywords): ... function nConstraintAttractToMatch (line 5267) | def nConstraintAttractToMatch(*args, **keywords): ... function nConstraintAttractToMatchOptions (line 5268) | def nConstraintAttractToMatchOptions(*args, **keywords): ... function nConstraintCollisionExclusion (line 5269) | def nConstraintCollisionExclusion(*args, **keywords): ... function nConstraintCollisionExclusionOptions (line 5270) | def nConstraintCollisionExclusionOptions(*args, **keywords): ... function nConstraintComponent (line 5271) | def nConstraintComponent(*args, **keywords): ... function nConstraintComponentOptions (line 5272) | def nConstraintComponentOptions(*args, **keywords): ... function nConstraintComponentToComponent (line 5273) | def nConstraintComponentToComponent(*args, **keywords): ... function nConstraintComponentToComponentOptions (line 5274) | def nConstraintComponentToComponentOptions(*args, **keywords): ... function nConstraintConstraintMembershipTool (line 5275) | def nConstraintConstraintMembershipTool(*args, **keywords): ... function nConstraintDisableCollision (line 5276) | def nConstraintDisableCollision(*args, **keywords): ... function nConstraintDisableCollisionOptions (line 5277) | def nConstraintDisableCollisionOptions(*args, **keywords): ... function nConstraintForceField (line 5278) | def nConstraintForceField(*args, **keywords): ... function nConstraintForceFieldOptions (line 5279) | def nConstraintForceFieldOptions(*args, **keywords): ... function nConstraintPointToSurface (line 5280) | def nConstraintPointToSurface(*args, **keywords): ... function nConstraintPointToSurfaceOptions (line 5281) | def nConstraintPointToSurfaceOptions(*args, **keywords): ... function nConstraintRemoveMembers (line 5282) | def nConstraintRemoveMembers(*args, **keywords): ... function nConstraintReplaceMembers (line 5283) | def nConstraintReplaceMembers(*args, **keywords): ... function nConstraintSelectMembers (line 5284) | def nConstraintSelectMembers(*args, **keywords): ... function nConstraintSlideOnSurface (line 5285) | def nConstraintSlideOnSurface(*args, **keywords): ... function nConstraintSlideOnSurfaceOptions (line 5286) | def nConstraintSlideOnSurfaceOptions(*args, **keywords): ... function nConstraintTearableSurface (line 5287) | def nConstraintTearableSurface(*args, **keywords): ... function nConstraintTearableSurfaceOptions (line 5288) | def nConstraintTearableSurfaceOptions(*args, **keywords): ... function nConstraintTransform (line 5289) | def nConstraintTransform(*args, **keywords): ... function nConstraintTransformOptions (line 5290) | def nConstraintTransformOptions(*args, **keywords): ... function nConstraintWeldBorders (line 5291) | def nConstraintWeldBorders(*args, **keywords): ... function nConstraintWeldBordersOptions (line 5292) | def nConstraintWeldBordersOptions(*args, **keywords): ... function nParticle (line 5295) | def nParticle(*args, edit: Literal[True], attribute: str = ..., cache: b... function nParticle (line 5298) | def nParticle(*args, attribute: bool | int | str = ..., cache: bool | in... function nSoft (line 5299) | def nSoft(*args, convert: bool | int = ..., duplicate: bool | int = ...,... function nameCommand (line 5300) | def nameCommand(*args, annotation: str = ..., command: str | Callable = ... function nameField (line 5303) | def nameField(*args, edit: Literal[True], annotation: str = ..., backgro... function nameField (line 5306) | def nameField(*args, annotation: bool | int | str = ..., backgroundColor... function namespace (line 5307) | def namespace(*args, absoluteName: bool | int = ..., addNamespace: str =... function namespaceInfo (line 5310) | def namespaceInfo(*args, currentNamespace: Literal[True], absoluteName: ... function namespaceInfo (line 5313) | def namespaceInfo(*args, listNamespace: Literal[True], absoluteName: boo... function newton (line 5316) | def newton(*args, edit: Literal[True], attenuation: float = ..., magnitu... function newton (line 5319) | def newton(*args, attenuation: bool | int | float = ..., magnitude: bool... function nodeCast (line 5320) | def nodeCast(*args, copyDynamicAttrs: bool | int = ..., disableAPICallba... function nodeGrapher (line 5321) | def nodeGrapher(*args) -> Any: ... function nodeIconButton (line 5324) | def nodeIconButton(*args, edit: Literal[True], align: str = ..., annotat... function nodeIconButton (line 5327) | def nodeIconButton(*args, align: bool | int | str = ..., annotation: boo... function nodeOutliner (line 5330) | def nodeOutliner(*args, edit: Literal[True], addCommand: str | Callable ... function nodeOutliner (line 5333) | def nodeOutliner(*args, addCommand: bool | int | str | Callable = ..., a... function nodePreset (line 5334) | def nodePreset(*args, attributes: str = ..., custom: str = ..., delete: ... function nodeTreeLister (line 5337) | def nodeTreeLister(*args, edit: Literal[True], addFavorite: str | list[s... function nodeTreeLister (line 5340) | def nodeTreeLister(*args, addFavorite: str | list[str] = ..., addItem: t... function nodeType (line 5341) | def nodeType(*args, apiType: bool | int = ..., derived: bool | int = ...... function nonLinear (line 5344) | def nonLinear(*args, edit: Literal[True], after: bool | int = ..., after... function nonLinear (line 5347) | def nonLinear(*args, after: bool | int = ..., afterReference: bool | int... function nop (line 5348) | def nop(*args) -> Any: ... function normalConstraint (line 5351) | def normalConstraint(*args, edit: Literal[True], aimVector: tuple[float,... function normalConstraint (line 5354) | def normalConstraint(*args, aimVector: bool | int | tuple[float, float, ... function notifyDecorator (line 5355) | def notifyDecorator(*args, **keywords): ... function notifyPostRedo (line 5356) | def notifyPostRedo(*args, **keywords): ... function notifyPostUndo (line 5357) | def notifyPostUndo(*args, **keywords): ... function nucleusDisplayDynamicConstraintNodes (line 5358) | def nucleusDisplayDynamicConstraintNodes(*args, **keywords): ... function nucleusDisplayMaterialNodes (line 5359) | def nucleusDisplayMaterialNodes(*args, **keywords): ... function nucleusDisplayNComponentNodes (line 5360) | def nucleusDisplayNComponentNodes(*args, **keywords): ... function nucleusDisplayOtherNodes (line 5361) | def nucleusDisplayOtherNodes(*args, **keywords): ... function nucleusDisplayTextureNodes (line 5362) | def nucleusDisplayTextureNodes(*args, **keywords): ... function nucleusDisplayTransformNodes (line 5363) | def nucleusDisplayTransformNodes(*args, **keywords): ... function nucleusGetEffectsAsset (line 5364) | def nucleusGetEffectsAsset(*args, **keywords): ... function nucleusGetnClothExample (line 5365) | def nucleusGetnClothExample(*args, **keywords): ... function nucleusGetnParticleExample (line 5366) | def nucleusGetnParticleExample(*args, **keywords): ... function nurbsBoolean (line 5369) | def nurbsBoolean(*args, edit: Literal[True], caching: bool | int = ..., ... function nurbsBoolean (line 5372) | def nurbsBoolean(*args, caching: bool | int = ..., constructionHistory: ... function nurbsCopyUVSet (line 5373) | def nurbsCopyUVSet(*args, edit: bool | int = ..., query: bool | int = ..... function nurbsCube (line 5376) | def nurbsCube(*args, edit: Literal[True], axis: tuple[float, float, floa... function nurbsCube (line 5379) | def nurbsCube(*args, axis: bool | int | tuple[float, float, float] = ...... function nurbsCurveRebuildPref (line 5380) | def nurbsCurveRebuildPref(*args, degree: int = ..., endKnots: int = ...,... function nurbsCurveToBezier (line 5381) | def nurbsCurveToBezier(*args) -> Any: ... function nurbsEditUV (line 5382) | def nurbsEditUV(*args, angle: bool | int | float = ..., pivotU: bool | i... function nurbsPlane (line 5385) | def nurbsPlane(*args, edit: Literal[True], axis: tuple[float, float, flo... function nurbsPlane (line 5388) | def nurbsPlane(*args, axis: bool | int | tuple[float, float, float] = ..... function nurbsSelect (line 5389) | def nurbsSelect(*args, borderSelection: bool | int = ..., bottomBorder: ... function nurbsSquare (line 5392) | def nurbsSquare(*args, edit: Literal[True], caching: bool | int = ..., c... function nurbsSquare (line 5395) | def nurbsSquare(*args, caching: bool | int = ..., center: bool | int | t... function nurbsToPoly (line 5398) | def nurbsToPoly(*args, edit: Literal[True], caching: bool | int = ..., c... function nurbsToPoly (line 5401) | def nurbsToPoly(*args, caching: bool | int = ..., chordHeight: float = .... function nurbsToPolygonsPref (line 5402) | def nurbsToPolygonsPref(*args, chordHeight: bool | int | float = ..., ch... function nurbsToSubdiv (line 5405) | def nurbsToSubdiv(*args, edit: Literal[True], addUnderTransform: bool | ... function nurbsToSubdiv (line 5408) | def nurbsToSubdiv(*args, addUnderTransform: bool | int = ..., caching: b... function nurbsToSubdivPref (line 5409) | def nurbsToSubdivPref(*args, bridge: int = ..., capType: int = ..., coll... function nurbsUVSet (line 5412) | def nurbsUVSet(*args, edit: Literal[True], create: bool | int = ..., use... function nurbsUVSet (line 5415) | def nurbsUVSet(*args, create: bool | int = ..., query: bool | int = ...,... function objExists (line 5416) | def objExists(*args) -> bool: ... function objectCenter (line 5417) | def objectCenter(*args, gl: bool | int = ..., local: bool | int = ..., x... function objectType (line 5418) | def objectType(*args, convertTag: str = ..., isAType: str = ..., isType:... function objectTypeUI (line 5419) | def objectTypeUI(*args, isType: str = ..., listAll: bool | int = ..., su... function offsetCurve (line 5422) | def offsetCurve(*args, edit: Literal[True], caching: bool | int = ..., c... function offsetCurve (line 5425) | def offsetCurve(*args, caching: bool | int = ..., connectBreaks: int = .... function offsetCurveOnSurface (line 5428) | def offsetCurveOnSurface(*args, edit: Literal[True], caching: bool | int... function offsetCurveOnSurface (line 5431) | def offsetCurveOnSurface(*args, caching: bool | int = ..., checkPoints: ... function offsetSurface (line 5434) | def offsetSurface(*args, edit: Literal[True], caching: bool | int = ...,... function offsetSurface (line 5437) | def offsetSurface(*args, caching: bool | int = ..., constructionHistory:... function ogs (line 5438) | def ogs(*args, deviceInformation: bool | int = ..., disposeReleasableTex... function ogsRender (line 5441) | def ogsRender(*args, edit: Literal[True], activeMultisampleType: str = .... function ogsRender (line 5444) | def ogsRender(*args, activeMultisampleType: bool | int | str = ..., acti... function ogsdebug (line 5445) | def ogsdebug(*args, count: int = ..., debug: str = ..., timing: str = ..... function openCLInfo (line 5446) | def openCLInfo(*args, limitMinimumVerts: bool | int = ..., minVertexBuff... function openGLExtension (line 5447) | def openGLExtension(*args, extension: str = ..., renderer: bool | int = ... function openMayaPref (line 5450) | def openMayaPref(*args, edit: Literal[True], errlog: bool | int = ..., l... function openMayaPref (line 5453) | def openMayaPref(*args, errlog: bool | int = ..., lazyLoad: bool | int =... function optionMenu (line 5456) | def optionMenu(*args, edit: Literal[True], annotation: str = ..., backgr... function optionMenu (line 5459) | def optionMenu(*args, alwaysCallChangeCommand: bool | int = ..., annotat... function optionMenuGrp (line 5462) | def optionMenuGrp(*args, edit: Literal[True], adjustableColumn: int = ..... function optionMenuGrp (line 5465) | def optionMenuGrp(*args, adjustableColumn: int = ..., adjustableColumn2:... function optionVar (line 5466) | def optionVar(*args, arraySize: str = ..., category: str = ..., clearArr... function orbit (line 5467) | def orbit(*args, horizontalAngle: float = ..., pivotPoint: tuple[float, ... function orbitCtx (line 5470) | def orbitCtx(*args, edit: Literal[True], image1: str = ..., image2: str ... function orbitCtx (line 5473) | def orbitCtx(*args, alternateContext: bool | int = ..., exists: bool | i... function orientConstraint (line 5476) | def orientConstraint(*args, edit: Literal[True], createCache: tuple[floa... function orientConstraint (line 5479) | def orientConstraint(*args, createCache: tuple[float, float] = ..., dele... function outlinerEditor (line 5482) | def outlinerEditor(*args, edit: Literal[True], allowMultiSelection: bool... function outlinerEditor (line 5485) | def outlinerEditor(*args, allowMultiSelection: bool | int = ..., alwaysT... function outlinerPanel (line 5488) | def outlinerPanel(*args, edit: Literal[True], copy: str = ..., createStr... function outlinerPanel (line 5491) | def outlinerPanel(*args, control: bool | int = ..., copy: str = ..., cre... function outputWindow (line 5492) | def outputWindow(*args, query: bool | int = ..., show: bool | int = ...)... function overrideModifier (line 5493) | def overrideModifier(*args, clear: bool | int = ..., press: str | list[s... function paint3d (line 5494) | def paint3d(*args) -> Any: ... function paintEffectsDisplay (line 5495) | def paintEffectsDisplay(*args, meshDrawEnable: bool | int = ..., query: ... function pairBlend (line 5496) | def pairBlend(*args, attribute: str | list[str] = ..., edit: bool | int ... function palettePort (line 5499) | def palettePort(*args, edit: Literal[True], annotation: str = ..., backg... function palettePort (line 5502) | def palettePort(*args, actualTotal: int = ..., annotation: bool | int | ... function panZoom (line 5503) | def panZoom(*args, absolute: bool | int = ..., downDistance: float = ...... function panZoomCtx (line 5506) | def panZoomCtx(*args, edit: Literal[True], image1: str = ..., image2: st... function panZoomCtx (line 5509) | def panZoomCtx(*args, alternateContext: bool | int = ..., buttonDown: bo... function paneLayout (line 5512) | def paneLayout(*args, edit: Literal[True], activeFrameThickness: int = .... function paneLayout (line 5515) | def paneLayout(*args, activeFrameThickness: int = ..., activePane: bool ... function panel (line 5518) | def panel(*args, edit: Literal[True], copy: str = ..., createString: boo... function panel (line 5521) | def panel(*args, control: bool | int = ..., copy: str = ..., createStrin... function panelConfiguration (line 5524) | def panelConfiguration(*args, edit: Literal[True], addPanel: tuple[bool ... function panelConfiguration (line 5527) | def panelConfiguration(*args, addPanel: tuple[bool | int, str, str, str,... function panelHistory (line 5530) | def panelHistory(*args, edit: Literal[True], back: bool | int = ..., cle... function panelHistory (line 5533) | def panelHistory(*args, back: bool | int = ..., clear: bool | int = ...,... function paramDimContext (line 5536) | def paramDimContext(*args, edit: Literal[True], image1: str = ..., image... function paramDimContext (line 5539) | def paramDimContext(*args, exists: bool | int = ..., history: bool | int... function paramDimension (line 5540) | def paramDimension(*args) -> Any: ... function paramLocator (line 5541) | def paramLocator(*args, edit: bool | int = ..., position: bool | int = .... function parent (line 5542) | def parent(*args, absolute: bool | int = ..., addObject: bool | int = ..... function parentConstraint (line 5545) | def parentConstraint(*args, edit: Literal[True], createCache: tuple[floa... function parentConstraint (line 5548) | def parentConstraint(*args, createCache: tuple[float, float] = ..., deco... function particle (line 5551) | def particle(*args, edit: Literal[True], attribute: str = ..., cache: bo... function particle (line 5554) | def particle(*args, attribute: bool | int | str = ..., cache: bool | int... function particleExists (line 5555) | def particleExists(*args) -> Any: ... function particleFill (line 5556) | def particleFill(*args, closePacking: bool | int = ..., doubleWalled: bo... function particleInstancer (line 5559) | def particleInstancer(*args, edit: Literal[True], addObject: bool | int ... function particleInstancer (line 5562) | def particleInstancer(*args, addObject: bool | int = ..., aimAxis: bool ... function particleRenderInfo (line 5563) | def particleRenderInfo(*args, attrList: int = ..., attrListAll: bool | i... function partition (line 5564) | def partition(*args, addSet: str = ..., edit: bool | int = ..., name: st... function pasteKey (line 5565) | def pasteKey(*args, animLayer: str = ..., animation: str = ..., attribut... function pathAnimation (line 5568) | def pathAnimation(*args, edit: Literal[True], useNormal: bool | int = ..... function pathAnimation (line 5571) | def pathAnimation(*args, bank: bool | int = ..., bankScale: bool | int |... function pause (line 5572) | def pause(*args, seconds: int = ...) -> Any: ... function perCameraVisibility (line 5573) | def perCameraVisibility(*args, camera: bool | int | str = ..., exclusive... function percent (line 5574) | def percent(*args, addPercent: bool | int = ..., dropoffAxis: tuple[floa... function performanceOptions (line 5575) | def performanceOptions(*args, clusterResolution: bool | int | float = ..... function pfxstrokes (line 5576) | def pfxstrokes(*args, filename: str = ..., postCallback: bool | int = ..... function pickWalk (line 5577) | def pickWalk(*args, direction: str = ..., recurse: bool | int = ..., typ... function picture (line 5580) | def picture(*args, edit: Literal[True], annotation: str = ..., backgroun... function picture (line 5583) | def picture(*args, annotation: bool | int | str = ..., backgroundColor: ... function pixelMove (line 5584) | def pixelMove(*args) -> Any: ... function planarSrf (line 5587) | def planarSrf(*args, edit: Literal[True], caching: bool | int = ..., deg... function planarSrf (line 5590) | def planarSrf(*args, caching: bool | int = ..., constructionHistory: boo... function plane (line 5591) | def plane(*args, length: float = ..., name: str = ..., position: tuple[f... function play (line 5592) | def play(*args, forward: bool | int = ..., playSound: bool | int = ..., ... function playbackOptions (line 5595) | def playbackOptions(*args, edit: Literal[True], animationEndTime: int | ... function playbackOptions (line 5598) | def playbackOptions(*args, query: Literal[True], animationEndTime: Liter... function playbackOptions (line 5601) | def playbackOptions(*args, query: Literal[True], animationStartTime: Lit... function playbackOptions (line 5604) | def playbackOptions(*args, query: Literal[True], blockingAnim: Literal[T... function playbackOptions (line 5607) | def playbackOptions(*args, query: Literal[True], by: Literal[True]) -> f... function playbackOptions (line 5610) | def playbackOptions(*args, query: Literal[True], framesPerSecond: Litera... function playbackOptions (line 5613) | def playbackOptions(*args, query: Literal[True], loop: Literal[True]) ->... function playbackOptions (line 5616) | def playbackOptions(*args, query: Literal[True], maxPlaybackSpeed: Liter... function playbackOptions (line 5619) | def playbackOptions(*args, query: Literal[True], maxTime: Literal[True])... function playbackOptions (line 5622) | def playbackOptions(*args, query: Literal[True], minTime: Literal[True])... function playbackOptions (line 5625) | def playbackOptions(*args, query: Literal[True], playbackSpeed: Literal[... function playbackOptions (line 5628) | def playbackOptions(*args, query: Literal[True], selectionEndTime: Liter... function playbackOptions (line 5631) | def playbackOptions(*args, query: Literal[True], selectionStartTime: Lit... function playbackOptions (line 5634) | def playbackOptions(*args, query: Literal[True], selectionVisible: Liter... function playbackOptions (line 5637) | def playbackOptions(*args, query: Literal[True], stepLoop: Literal[True]... function playbackOptions (line 5640) | def playbackOptions(*args, query: Literal[True], view: Literal[True]) ->... function playbackOptions (line 5643) | def playbackOptions(*args, animationEndTime: bool | int | int | float = ... function playblast (line 5644) | def playblast(*args, activeEditor: bool | int = ..., cameraSetup: tuple[... function pluginDisplayFilter (line 5645) | def pluginDisplayFilter(*args, classification: bool | int | str = ..., d... function pluginInfo (line 5648) | def pluginInfo(*args, edit: Literal[True], autoload: bool | int = ..., r... function pluginInfo (line 5651) | def pluginInfo(*args, activeFile: bool | int = ..., allEvaluators: bool ... function pointConstraint (line 5654) | def pointConstraint(*args, edit: Literal[True], layer: str = ..., name: ... function pointConstraint (line 5657) | def pointConstraint(*args, layer: str = ..., maintainOffset: bool | int ... function pointCurveConstraint (line 5660) | def pointCurveConstraint(*args, edit: Literal[True], caching: bool | int... function pointCurveConstraint (line 5663) | def pointCurveConstraint(*args, caching: bool | int = ..., constructionH... function pointLight (line 5666) | def pointLight(*args, edit: Literal[True], decayRate: int = ..., discRad... function pointLight (line 5669) | def pointLight(*args, decayRate: int = ..., discRadius: bool | int | flo... function pointOnCurve (line 5672) | def pointOnCurve(*args, edit: Literal[True], caching: bool | int = ..., ... function pointOnCurve (line 5675) | def pointOnCurve(*args, caching: bool | int = ..., constructionHistory: ... function pointOnPolyConstraint (line 5678) | def pointOnPolyConstraint(*args, edit: Literal[True], layer: str = ..., ... function pointOnPolyConstraint (line 5681) | def pointOnPolyConstraint(*args, layer: str = ..., maintainOffset: bool ... function pointOnSurface (line 5684) | def pointOnSurface(*args, edit: Literal[True], caching: bool | int = ...... function pointOnSurface (line 5687) | def pointOnSurface(*args, caching: bool | int = ..., constructionHistory... function pointPosition (line 5688) | def pointPosition(*args, local: bool | int = ..., world: bool | int = ..... function poleVectorConstraint (line 5691) | def poleVectorConstraint(*args, edit: Literal[True], layer: str = ..., n... function poleVectorConstraint (line 5694) | def poleVectorConstraint(*args, layer: str = ..., name: bool | int | str... function polyAppend (line 5697) | def polyAppend(*args, edit: Literal[True], subdivision: int = ..., textu... function polyAppend (line 5700) | def polyAppend(*args, append: tuple[float, float, float] | list[tuple[fl... function polyAppendFacetCtx (line 5703) | def polyAppendFacetCtx(*args, edit: Literal[True], append: bool | int = ... function polyAppendFacetCtx (line 5706) | def polyAppendFacetCtx(*args, append: bool | int = ..., exists: bool | i... function polyAppendVertex (line 5709) | def polyAppendVertex(*args, edit: Literal[True], texture: int = ...) -> ... function polyAppendVertex (line 5712) | def polyAppendVertex(*args, append: tuple[float, float, float] | list[tu... function polyAutoProjection (line 5715) | def polyAutoProjection(*args, edit: Literal[True], caching: bool | int =... function polyAutoProjection (line 5718) | def polyAutoProjection(*args, caching: bool | int = ..., constructionHis... function polyAverageNormal (line 5719) | def polyAverageNormal(*args, allowZeroNormal: bool | int = ..., distance... function polyAverageVertex (line 5722) | def polyAverageVertex(*args, edit: Literal[True], caching: bool | int = ... function polyAverageVertex (line 5725) | def polyAverageVertex(*args, caching: bool | int = ..., constructionHist... function polyAxis (line 5728) | def polyAxis(*args, edit: Literal[True], arrowType: int = ..., axis: tup... function polyAxis (line 5731) | def polyAxis(*args, arrowType: int = ..., axis: bool | int | tuple[float... function polyBevel (line 5734) | def polyBevel(*args, edit: Literal[True], angleTolerance: float = ..., a... function polyBevel (line 5737) | def polyBevel(*args, angleTolerance: bool | int | float = ..., autoFit: ... function polyBevel3 (line 5740) | def polyBevel3(*args, edit: Literal[True], angleTolerance: float = ..., ... function polyBevel3 (line 5743) | def polyBevel3(*args, angleTolerance: bool | int | float = ..., autoFit:... function polyBevelCutback (line 5744) | def polyBevelCutback(*args, caching: bool | int = ..., constructionHisto... function polyBlendColor (line 5747) | def polyBlendColor(*args, edit: Literal[True], baseColorName: str = ...,... function polyBlendColor (line 5750) | def polyBlendColor(*args, baseColorName: bool | int | str = ..., blendFu... function polyBlindData (line 5753) | def polyBlindData(*args, edit: Literal[True], associationType: str = ...... function polyBlindData (line 5756) | def polyBlindData(*args, associationType: str = ..., binaryData: str | l... function polyBoolOp (line 5759) | def polyBoolOp(*args, edit: Literal[True], caching: bool | int = ..., fa... function polyBoolOp (line 5762) | def polyBoolOp(*args, caching: bool | int = ..., classification: int = .... function polyBridgeEdge (line 5765) | def polyBridgeEdge(*args, edit: Literal[True], bridgeOffset: int = ..., ... function polyBridgeEdge (line 5768) | def polyBridgeEdge(*args, bridgeOffset: int = ..., caching: bool | int =... function polyCBoolOp (line 5771) | def polyCBoolOp(*args, edit: Literal[True], caching: bool | int = ..., c... function polyCBoolOp (line 5774) | def polyCBoolOp(*args, caching: bool | int = ..., classification: int = ... function polyCacheMonitor (line 5775) | def polyCacheMonitor(*args, cacheValue: bool | int = ..., nodeName: str ... function polyCanBridgeEdge (line 5776) | def polyCanBridgeEdge(*args) -> Any: ... function polyCheck (line 5777) | def polyCheck(*args, edge: bool | int = ..., face: bool | int = ..., fac... function polyChipOff (line 5780) | def polyChipOff(*args, edit: Literal[True], attraction: float = ..., cac... function polyChipOff (line 5783) | def polyChipOff(*args, attraction: bool | int | float = ..., caching: bo... function polyCircularize (line 5786) | def polyCircularize(*args, edit: Literal[True], alignment: int = ..., ca... function polyCircularize (line 5789) | def polyCircularize(*args, alignment: int = ..., caching: bool | int = .... function polyCircularizeEdge (line 5792) | def polyCircularizeEdge(*args, edit: Literal[True], alignment: int = ...... function polyCircularizeEdge (line 5795) | def polyCircularizeEdge(*args, alignment: int = ..., caching: bool | int... function polyCircularizeFace (line 5798) | def polyCircularizeFace(*args, edit: Literal[True], alignment: int = ...... function polyCircularizeFace (line 5801) | def polyCircularizeFace(*args, alignment: int = ..., caching: bool | int... function polyClean (line 5804) | def polyClean(*args, edit: Literal[True], caching: bool | int = ..., cle... function polyClean (line 5807) | def polyClean(*args, caching: bool | int = ..., cleanEdges: bool | int =... function polyClipboard (line 5808) | def polyClipboard(*args, clear: bool | int = ..., color: bool | int = ..... function polyCloseBorder (line 5811) | def polyCloseBorder(*args, edit: Literal[True], caching: bool | int = ..... function polyCloseBorder (line 5814) | def polyCloseBorder(*args, caching: bool | int = ..., constructionHistor... function polyCollapseEdge (line 5817) | def polyCollapseEdge(*args, edit: Literal[True], caching: bool | int = .... function polyCollapseEdge (line 5820) | def polyCollapseEdge(*args, caching: bool | int = ..., constructionHisto... function polyCollapseFacet (line 5823) | def polyCollapseFacet(*args, edit: Literal[True], areaThreshold: float =... function polyCollapseFacet (line 5826) | def polyCollapseFacet(*args, areaThreshold: bool | int | float = ..., ca... function polyCollapseTweaks (line 5827) | def polyCollapseTweaks(*args, hasVertexTweaks: bool | int = ..., query: ... function polyColorBlindData (line 5828) | def polyColorBlindData(*args, aboveMaxColorBlue: float | list[float] = .... function polyColorDel (line 5831) | def polyColorDel(*args, edit: Literal[True], caching: bool | int = ..., ... function polyColorDel (line 5834) | def polyColorDel(*args, caching: bool | int = ..., colorSetName: bool | ... function polyColorMod (line 5837) | def polyColorMod(*args, edit: Literal[True], alphaScale_FloatValue: floa... function polyColorMod (line 5840) | def polyColorMod(*args, alphaScale_FloatValue: bool | int | float = ...,... function polyColorPerVertex (line 5843) | def polyColorPerVertex(*args, edit: Literal[True], alpha: float = ..., c... function polyColorPerVertex (line 5846) | def polyColorPerVertex(*args, alpha: bool | int | float = ..., clamped: ... function polyColorSet (line 5849) | def polyColorSet(*args, edit: Literal[True], allColorSets: bool | int = ... function polyColorSet (line 5852) | def polyColorSet(*args, allColorSets: bool | int = ..., clamped: bool | ... function polyColorSetCmdWrapper (line 5853) | def polyColorSetCmdWrapper(*args) -> Any: ... function polyCompare (line 5854) | def polyCompare(*args, colorSetIndices: bool | int = ..., colorSets: boo... function polyCone (line 5857) | def polyCone(*args, edit: Literal[True], axis: tuple[float, float, float... function polyCone (line 5860) | def polyCone(*args, axis: bool | int | tuple[float, float, float] = ...,... function polyConnectComponents (line 5863) | def polyConnectComponents(*args, edit: Literal[True], adjustEdgeFlow: fl... function polyConnectComponents (line 5866) | def polyConnectComponents(*args, adjustEdgeFlow: bool | int | float = ..... function polyContourProjection (line 5869) | def polyContourProjection(*args, edit: Literal[True], caching: bool | in... function polyContourProjection (line 5872) | def polyContourProjection(*args, caching: bool | int = ..., construction... function polyCopyUV (line 5875) | def polyCopyUV(*args, edit: Literal[True], caching: bool | int = ..., no... function polyCopyUV (line 5878) | def polyCopyUV(*args, caching: bool | int = ..., constructionHistory: bo... function polyCrease (line 5881) | def polyCrease(*args, edit: Literal[True], createHistory: bool | int = .... function polyCrease (line 5884) | def polyCrease(*args, createHistory: bool | int = ..., operation: int = ... function polyCreaseCtx (line 5887) | def polyCreaseCtx(*args, edit: Literal[True], createSet: str = ..., exte... function polyCreaseCtx (line 5890) | def polyCreaseCtx(*args, createSet: str = ..., exists: bool | int = ...,... function polyCreateFacet (line 5893) | def polyCreateFacet(*args, edit: Literal[True], subdivision: int = ..., ... function polyCreateFacet (line 5896) | def polyCreateFacet(*args, constructionHistory: bool | int = ..., hole: ... function polyCreateFacetCtx (line 5899) | def polyCreateFacetCtx(*args, edit: Literal[True], append: bool | int = ... function polyCreateFacetCtx (line 5902) | def polyCreateFacetCtx(*args, append: bool | int = ..., exists: bool | i... function polyCube (line 5905) | def polyCube(*args, edit: Literal[True], axis: tuple[float, float, float... function polyCube (line 5908) | def polyCube(*args, axis: bool | int | tuple[float, float, float] = ...,... function polyCut (line 5911) | def polyCut(*args, edit: Literal[True], caching: bool | int = ..., cutPl... function polyCut (line 5914) | def polyCut(*args, caching: bool | int = ..., constructionHistory: bool ... function polyCutCtx (line 5917) | def polyCutCtx(*args, edit: Literal[True], deleteFaces: bool | int = ...... function polyCutCtx (line 5920) | def polyCutCtx(*args, deleteFaces: bool | int = ..., exists: bool | int ... function polyCutUVCtx (line 5923) | def polyCutUVCtx(*args, edit: Literal[True], loopSpeed: int = ..., mapBo... function polyCutUVCtx (line 5926) | def polyCutUVCtx(*args, exists: bool | int = ..., history: bool | int = ... function polyCylinder (line 5929) | def polyCylinder(*args, edit: Literal[True], axis: tuple[float, float, f... function polyCylinder (line 5932) | def polyCylinder(*args, axis: bool | int | tuple[float, float, float] = ... function polyCylindricalProjection (line 5935) | def polyCylindricalProjection(*args, edit: Literal[True], caching: bool ... function polyCylindricalProjection (line 5938) | def polyCylindricalProjection(*args, caching: bool | int = ..., construc... function polyDelEdge (line 5941) | def polyDelEdge(*args, edit: Literal[True], caching: bool | int = ..., c... function polyDelEdge (line 5944) | def polyDelEdge(*args, caching: bool | int = ..., cleanVertices: bool | ... function polyDelFacet (line 5947) | def polyDelFacet(*args, edit: Literal[True], caching: bool | int = ..., ... function polyDelFacet (line 5950) | def polyDelFacet(*args, caching: bool | int = ..., constructionHistory: ... function polyDelVertex (line 5953) | def polyDelVertex(*args, edit: Literal[True], caching: bool | int = ...,... function polyDelVertex (line 5956) | def polyDelVertex(*args, caching: bool | int = ..., constructionHistory:... function polyDuplicateAndConnect (line 5957) | def polyDuplicateAndConnect(*args, removeOriginalFromShaders: bool | int... function polyDuplicateEdge (line 5960) | def polyDuplicateEdge(*args, edit: Literal[True], adjustEdgeFlow: float ... function polyDuplicateEdge (line 5963) | def polyDuplicateEdge(*args, adjustEdgeFlow: bool | int | float = ..., c... function polyEditEdgeFlow (line 5966) | def polyEditEdgeFlow(*args, edit: Literal[True], caching: bool | int = .... function polyEditEdgeFlow (line 5969) | def polyEditEdgeFlow(*args, adjustEdgeFlow: float = ..., caching: bool |... function polyEditUV (line 5970) | def polyEditUV(*args, angle: bool | int | float = ..., pivotU: bool | in... function polyEditUVShell (line 5971) | def polyEditUVShell(*args, angle: bool | int | float = ..., pivotU: bool... function polyEvaluate (line 5972) | def polyEvaluate(*args, accurateEvaluation: bool | int = ..., activeShel... function polyExtrudeEdge (line 5975) | def polyExtrudeEdge(*args, edit: Literal[True], caching: bool | int = ..... function polyExtrudeEdge (line 5978) | def polyExtrudeEdge(*args, caching: bool | int = ..., constructionHistor... function polyExtrudeFacet (line 5981) | def polyExtrudeFacet(*args, edit: Literal[True], attraction: float = ...... function polyExtrudeFacet (line 5984) | def polyExtrudeFacet(*args, attraction: bool | int | float = ..., cachin... function polyExtrudeVertex (line 5987) | def polyExtrudeVertex(*args, edit: Literal[True], caching: bool | int = ... function polyExtrudeVertex (line 5990) | def polyExtrudeVertex(*args, caching: bool | int = ..., constructionHist... function polyFlipEdge (line 5991) | def polyFlipEdge(*args, edit: bool | int = ..., query: bool | int = ...)... function polyFlipUV (line 5994) | def polyFlipUV(*args, edit: Literal[True], caching: bool | int = ..., cu... function polyFlipUV (line 5997) | def polyFlipUV(*args, caching: bool | int = ..., constructionHistory: bo... function polyForceUV (line 5998) | def polyForceUV(*args, cameraProjection: bool | int = ..., createNewMap:... function polyGeoSampler (line 6001) | def polyGeoSampler(*args, edit: Literal[True], alphaBlend: str = ..., av... function polyGeoSampler (line 6004) | def polyGeoSampler(*args, alphaBlend: str = ..., averageColor: bool | in... function polyHelix (line 6007) | def polyHelix(*args, edit: Literal[True], axis: tuple[float, float, floa... function polyHelix (line 6010) | def polyHelix(*args, axis: bool | int | tuple[float, float, float] = ...... function polyHole (line 6013) | def polyHole(*args, edit: Literal[True], assignHole: bool | int = ..., c... function polyHole (line 6016) | def polyHole(*args, assignHole: bool | int = ..., createHistory: bool | ... function polyInfo (line 6017) | def polyInfo(*args, edgeToFace: bool | int = ..., edgeToVertex: bool | i... function polyInstallAction (line 6018) | def polyInstallAction(*args, commandName: bool | int = ..., convertSelec... function polyIterOnPoly (line 6019) | def polyIterOnPoly(*args) -> Any: ... function polyLayoutUV (line 6022) | def polyLayoutUV(*args, edit: Literal[True], caching: bool | int = ..., ... function polyLayoutUV (line 6025) | def polyLayoutUV(*args, caching: bool | int = ..., constructionHistory: ... function polyListComponentConversion (line 6026) | def polyListComponentConversion(*args, border: bool | int = ..., fromEdg... function polyMapCut (line 6029) | def polyMapCut(*args, edit: Literal[True], caching: bool | int = ..., mo... function polyMapCut (line 6032) | def polyMapCut(*args, caching: bool | int = ..., constructionHistory: bo... function polyMapDel (line 6035) | def polyMapDel(*args, edit: Literal[True], caching: bool | int = ..., no... function polyMapDel (line 6038) | def polyMapDel(*args, caching: bool | int = ..., constructionHistory: bo... function polyMapSew (line 6041) | def polyMapSew(*args, edit: Literal[True], caching: bool | int = ..., no... function polyMapSew (line 6044) | def polyMapSew(*args, caching: bool | int = ..., constructionHistory: bo... function polyMapSewMove (line 6047) | def polyMapSewMove(*args, edit: Literal[True], caching: bool | int = ...... function polyMapSewMove (line 6050) | def polyMapSewMove(*args, caching: bool | int = ..., constructionHistory... function polyMergeEdge (line 6053) | def polyMergeEdge(*args, edit: Literal[True], caching: bool | int = ...,... function polyMergeEdge (line 6056) | def polyMergeEdge(*args, caching: bool | int = ..., constructionHistory:... function polyMergeEdgeCtx (line 6059) | def polyMergeEdgeCtx(*args, edit: Literal[True], caching: bool | int = .... function polyMergeEdgeCtx (line 6062) | def polyMergeEdgeCtx(*args, activeNodes: bool | int = ..., caching: bool... function polyMergeFacet (line 6065) | def polyMergeFacet(*args, edit: Literal[True], caching: bool | int = ...... function polyMergeFacet (line 6068) | def polyMergeFacet(*args, caching: bool | int = ..., constructionHistory... function polyMergeFacetCtx (line 6071) | def polyMergeFacetCtx(*args, edit: Literal[True], caching: bool | int = ... function polyMergeFacetCtx (line 6074) | def polyMergeFacetCtx(*args, activeNodes: bool | int = ..., caching: boo... function polyMergeUV (line 6077) | def polyMergeUV(*args, edit: Literal[True], caching: bool | int = ..., d... function polyMergeUV (line 6080) | def polyMergeUV(*args, caching: bool | int = ..., constructionHistory: b... function polyMergeVertex (line 6083) | def polyMergeVertex(*args, edit: Literal[True], alwaysMergeTwoVertices: ... function polyMergeVertex (line 6086) | def polyMergeVertex(*args, alwaysMergeTwoVertices: bool | int = ..., cac... function polyMirrorFace (line 6089) | def polyMirrorFace(*args, edit: Literal[True], axis: int = ..., axisDire... function polyMirrorFace (line 6092) | def polyMirrorFace(*args, axis: int = ..., axisDirection: int = ..., cac... function polyMoveEdge (line 6095) | def polyMoveEdge(*args, edit: Literal[True], caching: bool | int = ..., ... function polyMoveEdge (line 6098) | def polyMoveEdge(*args, caching: bool | int = ..., constructionHistory: ... function polyMoveFacet (line 6101) | def polyMoveFacet(*args, edit: Literal[True], attraction: float = ..., c... function polyMoveFacet (line 6104) | def polyMoveFacet(*args, attraction: bool | int | float = ..., caching: ... function polyMoveFacetUV (line 6107) | def polyMoveFacetUV(*args, edit: Literal[True], axisLen: tuple[float, fl... function polyMoveFacetUV (line 6110) | def polyMoveFacetUV(*args, axisLen: bool | int | tuple[float, float] = .... function polyMoveUV (line 6113) | def polyMoveUV(*args, edit: Literal[True], axisLen: tuple[float, float] ... function polyMoveUV (line 6116) | def polyMoveUV(*args, axisLen: bool | int | tuple[float, float] = ..., a... function polyMoveVertex (line 6119) | def polyMoveVertex(*args, edit: Literal[True], caching: bool | int = ...... function polyMoveVertex (line 6122) | def polyMoveVertex(*args, caching: bool | int = ..., constructionHistory... function polyMultiLayoutUV (line 6123) | def polyMultiLayoutUV(*args, flipReversed: bool | int = ..., gridU: int ... function polyNormal (line 6126) | def polyNormal(*args, edit: Literal[True], caching: bool | int = ..., no... function polyNormal (line 6129) | def polyNormal(*args, caching: bool | int = ..., constructionHistory: bo... function polyNormalPerVertex (line 6132) | def polyNormalPerVertex(*args, edit: Literal[True], allLocked: bool | in... function polyNormalPerVertex (line 6135) | def polyNormalPerVertex(*args, allLocked: bool | int = ..., deformable: ... function polyNormalizeUV (line 6138) | def polyNormalizeUV(*args, edit: Literal[True], caching: bool | int = ..... function polyNormalizeUV (line 6141) | def polyNormalizeUV(*args, caching: bool | int = ..., centerOnTile: bool... function polyOptUvs (line 6144) | def polyOptUvs(*args, edit: Literal[True], caching: bool | int = ..., no... function polyOptUvs (line 6147) | def polyOptUvs(*args, applyToShell: bool | int = ..., areaWeight: float ... function polyOptions (line 6148) | def polyOptions(*args, activeObjects: bool | int = ..., allEdges: bool |... function polyOutput (line 6149) | def polyOutput(*args, allValues: bool | int = ..., color: bool | int = .... function polyPinUV (line 6152) | def polyPinUV(*args, edit: Literal[True], createHistory: bool | int = ..... function polyPinUV (line 6155) | def polyPinUV(*args, createHistory: bool | int = ..., operation: int = .... function polyPipe (line 6158) | def polyPipe(*args, edit: Literal[True], axis: tuple[float, float, float... function polyPipe (line 6161) | def polyPipe(*args, axis: bool | int | tuple[float, float, float] = ...,... function polyPlanarProjection (line 6164) | def polyPlanarProjection(*args, edit: Literal[True], caching: bool | int... function polyPlanarProjection (line 6167) | def polyPlanarProjection(*args, caching: bool | int = ..., constructionH... function polyPlane (line 6170) | def polyPlane(*args, edit: Literal[True], axis: tuple[float, float, floa... function polyPlane (line 6173) | def polyPlane(*args, axis: bool | int | tuple[float, float, float] = ...... function polyPlatonicSolid (line 6176) | def polyPlatonicSolid(*args, edit: Literal[True], axis: tuple[float, flo... function polyPlatonicSolid (line 6179) | def polyPlatonicSolid(*args, axis: bool | int | tuple[float, float, floa... function polyPoke (line 6182) | def polyPoke(*args, edit: Literal[True], caching: bool | int = ..., node... function polyPoke (line 6185) | def polyPoke(*args, caching: bool | int = ..., constructionHistory: bool... function polyPrimitive (line 6188) | def polyPrimitive(*args, edit: Literal[True], axis: tuple[float, float, ... function polyPrimitive (line 6191) | def polyPrimitive(*args, axis: bool | int | tuple[float, float, float] =... function polyPrimitiveMisc (line 6192) | def polyPrimitiveMisc(*args) -> Any: ... function polyPrism (line 6195) | def polyPrism(*args, edit: Literal[True], axis: tuple[float, float, floa... function polyPrism (line 6198) | def polyPrism(*args, axis: bool | int | tuple[float, float, float] = ...... function polyProjectCurve (line 6201) | def polyProjectCurve(*args, edit: Literal[True], caching: bool | int = .... function polyProjectCurve (line 6204) | def polyProjectCurve(*args, addUnderTransform: bool | int = ..., automat... function polyProjection (line 6205) | def polyProjection(*args, constructionHistory: bool | int = ..., createN... function polyPyramid (line 6208) | def polyPyramid(*args, edit: Literal[True], axis: tuple[float, float, fl... function polyPyramid (line 6211) | def polyPyramid(*args, axis: bool | int | tuple[float, float, float] = .... function polyQuad (line 6214) | def polyQuad(*args, edit: Literal[True], angle: float = ..., caching: bo... function polyQuad (line 6217) | def polyQuad(*args, angle: bool | int | float = ..., caching: bool | int... function polyQueryBlindData (line 6218) | def polyQueryBlindData(*args, associationType: str = ..., binaryData: st... function polyReduce (line 6221) | def polyReduce(*args, edit: Literal[True], caching: bool | int = ..., ca... function polyReduce (line 6224) | def polyReduce(*args, border: float = ..., caching: bool | int = ..., ca... function polyRemesh (line 6227) | def polyRemesh(*args, edit: Literal[True], caching: bool | int = ..., co... function polyRemesh (line 6230) | def polyRemesh(*args, caching: bool | int = ..., collapseThreshold: bool... function polyRetopo (line 6231) | def polyRetopo(*args, angle: float = ..., anisotropy: float = ..., axis:... function polyRetopoCtx (line 6232) | def polyRetopoCtx(*args, edit: bool | int = ..., exists: bool | int = ..... function polySelect (line 6233) | def polySelect(*args, add: bool | int = ..., addFirst: bool | int = ...,... function polySelectConstraint (line 6234) | def polySelectConstraint(*args, angle: int = ..., anglePropagation: bool... function polySelectConstraintMonitor (line 6235) | def polySelectConstraintMonitor(*args, changeCommand: tuple[str, str] = ... function polySelectCtx (line 6238) | def polySelectCtx(*args, edit: Literal[True], image1: str = ..., image2:... function polySelectCtx (line 6241) | def polySelectCtx(*args, exists: bool | int = ..., image1: bool | int | ... function polySelectEditCtx (line 6244) | def polySelectEditCtx(*args, edit: Literal[True], absoluteOffset: bool |... function polySelectEditCtx (line 6247) | def polySelectEditCtx(*args, absoluteOffset: bool | int = ..., adjustEdg... function polySelectEditCtxDataCmd (line 6248) | def polySelectEditCtxDataCmd(*args) -> Any: ... function polySelectSp (line 6249) | def polySelectSp(*args, loop: bool | int = ..., query: bool | int = ...,... function polySeparate (line 6252) | def polySeparate(*args, edit: Literal[True], caching: bool | int = ..., ... function polySeparate (line 6255) | def polySeparate(*args, caching: bool | int = ..., constructionHistory: ... function polySetToFaceNormal (line 6256) | def polySetToFaceNormal(*args, setUserNormal: bool | int = ...) -> Any: ... function polySetVertices (line 6257) | def polySetVertices(*args) -> Any: ... function polySewEdge (line 6260) | def polySewEdge(*args, edit: Literal[True], caching: bool | int = ..., n... function polySewEdge (line 6263) | def polySewEdge(*args, caching: bool | int = ..., constructionHistory: b... function polyShortestPathCtx (line 6266) | def polyShortestPathCtx(*args, edit: Literal[True], image1: str = ..., i... function polyShortestPathCtx (line 6269) | def polyShortestPathCtx(*args, exists: bool | int = ..., image1: bool | ... function polySlideEdge (line 6270) | def polySlideEdge(*args, absolute: bool | int = ..., direction: int = ..... function polySlideEdgeCtx (line 6271) | def polySlideEdgeCtx(*args, absolute: bool | int = ..., direction: int =... function polySmartExtrude (line 6274) | def polySmartExtrude(*args, edit: Literal[True], caching: bool | int = .... function polySmartExtrude (line 6277) | def polySmartExtrude(*args, caching: bool | int = ..., constructionHisto... function polySmooth (line 6280) | def polySmooth(*args, edit: Literal[True], caching: bool | int = ..., co... function polySmooth (line 6283) | def polySmooth(*args, boundaryRule: int = ..., caching: bool | int = ...... function polySoftEdge (line 6286) | def polySoftEdge(*args, edit: Literal[True], angle: float = ..., caching... function polySoftEdge (line 6289) | def polySoftEdge(*args, angle: bool | int | float = ..., caching: bool |... function polySphere (line 6292) | def polySphere(*args, edit: Literal[True], axis: tuple[float, float, flo... function polySphere (line 6295) | def polySphere(*args, axis: bool | int | tuple[float, float, float] = ..... function polySphericalProjection (line 6298) | def polySphericalProjection(*args, edit: Literal[True], caching: bool | ... function polySphericalProjection (line 6301) | def polySphericalProjection(*args, caching: bool | int = ..., constructi... function polySpinEdge (line 6302) | def polySpinEdge(*args, caching: bool | int = ..., constructionHistory: ... function polySplit (line 6305) | def polySplit(*args, edit: Literal[True], adjustEdgeFlow: float = ..., i... function polySplit (line 6308) | def polySplit(*args, adjustEdgeFlow: bool | int | float = ..., construct... function polySplitCtx (line 6311) | def polySplitCtx(*args, edit: Literal[True], enablesnap: bool | int = ..... function polySplitCtx (line 6314) | def polySplitCtx(*args, enablesnap: bool | int = ..., exists: bool | int... function polySplitCtx2 (line 6317) | def polySplitCtx2(*args, edit: Literal[True], adjustEdgeFlow: float = ..... function polySplitCtx2 (line 6320) | def polySplitCtx2(*args, adjustEdgeFlow: bool | int | float = ..., const... function polySplitEdge (line 6323) | def polySplitEdge(*args, edit: Literal[True], caching: bool | int = ...,... function polySplitEdge (line 6326) | def polySplitEdge(*args, caching: bool | int = ..., constructionHistory:... function polySplitRing (line 6329) | def polySplitRing(*args, edit: Literal[True], adjustEdgeFlow: float = ..... function polySplitRing (line 6332) | def polySplitRing(*args, adjustEdgeFlow: bool | int | float = ..., cachi... function polySplitVertex (line 6335) | def polySplitVertex(*args, edit: Literal[True], caching: bool | int = ..... function polySplitVertex (line 6338) | def polySplitVertex(*args, caching: bool | int = ..., constructionHistor... function polyStraightenUVBorder (line 6341) | def polyStraightenUVBorder(*args, edit: Literal[True], caching: bool | i... function polyStraightenUVBorder (line 6344) | def polyStraightenUVBorder(*args, blendOriginal: bool | int | float = ..... function polySubdivideEdge (line 6347) | def polySubdivideEdge(*args, edit: Literal[True], caching: bool | int = ... function polySubdivideEdge (line 6350) | def polySubdivideEdge(*args, caching: bool | int = ..., constructionHist... function polySubdivideFacet (line 6353) | def polySubdivideFacet(*args, edit: Literal[True], caching: bool | int =... function polySubdivideFacet (line 6356) | def polySubdivideFacet(*args, caching: bool | int = ..., constructionHis... function polySuperCtx (line 6357) | def polySuperCtx(*args, attach: str | list[str] = ..., edit: bool | int ... function polyTestPop (line 6358) | def polyTestPop(*args) -> Any: ... function polyToCurve (line 6359) | def polyToCurve(*args, addUnderTransform: bool | int = ..., caching: boo... function polyToSubdiv (line 6362) | def polyToSubdiv(*args, edit: Literal[True], absolutePosition: bool | in... function polyToSubdiv (line 6365) | def polyToSubdiv(*args, absolutePosition: bool | int = ..., addUnderTran... function polyTorus (line 6368) | def polyTorus(*args, edit: Literal[True], axis: tuple[float, float, floa... function polyTorus (line 6371) | def polyTorus(*args, axis: bool | int | tuple[float, float, float] = ...... function polyTransfer (line 6374) | def polyTransfer(*args, edit: Literal[True], alternateObject: str = ...,... function polyTransfer (line 6377) | def polyTransfer(*args, alternateObject: bool | int | str = ..., caching... function polyTriangulate (line 6380) | def polyTriangulate(*args, edit: Literal[True], caching: bool | int = ..... function polyTriangulate (line 6383) | def polyTriangulate(*args, caching: bool | int = ..., constructionHistor... function polyUVCoverage (line 6384) | def polyUVCoverage(*args, uvRange: tuple[float, float, float, float] = .... function polyUVOverlap (line 6385) | def polyUVOverlap(*args, nonOverlappingComponents: bool | int = ..., ove... function polyUVRectangle (line 6388) | def polyUVRectangle(*args, edit: Literal[True], caching: bool | int = ..... function polyUVRectangle (line 6391) | def polyUVRectangle(*args, caching: bool | int = ..., constructionHistor... function polyUVSet (line 6394) | def polyUVSet(*args, edit: Literal[True], allUVSets: bool | int = ..., a... function polyUVSet (line 6397) | def polyUVSet(*args, allUVSets: bool | int = ..., allUVSetsIndices: bool... function polyUVStackSimilarShells (line 6398) | def polyUVStackSimilarShells(*args, onlyMatch: bool | int = ..., toleran... function polyUVStackSimilarShellsCmd (line 6399) | def polyUVStackSimilarShellsCmd(*args) -> Any: ... function polyUnite (line 6402) | def polyUnite(*args, edit: Literal[True], caching: bool | int = ..., nod... function polyUnite (line 6405) | def polyUnite(*args, caching: bool | int = ..., centerPivot: bool | int ... function polyUniteSkinned (line 6408) | def polyUniteSkinned(*args, edit: Literal[True], centerPivot: bool | int... function polyUniteSkinned (line 6411) | def polyUniteSkinned(*args, centerPivot: bool | int = ..., constructionH... function polyUnsmooth (line 6414) | def polyUnsmooth(*args, edit: Literal[True], caching: bool | int = ..., ... function polyUnsmooth (line 6417) | def polyUnsmooth(*args, caching: bool | int = ..., constructionHistory: ... function polyVertexNormalCtx (line 6418) | def polyVertexNormalCtx(*args, deformmode: bool | int = ..., edit: bool ... function polyWarpImage (line 6419) | def polyWarpImage(*args, background: tuple[int, int, int] = ..., bilinea... function polyWedgeFace (line 6422) | def polyWedgeFace(*args, edit: Literal[True], caching: bool | int = ...,... function polyWedgeFace (line 6425) | def polyWedgeFace(*args, axis: tuple[float, float, float] = ..., axisX: ... function popListItem (line 6426) | def popListItem(*args, **keywords): ... function popupMenu (line 6429) | def popupMenu(*args, edit: Literal[True], altModifier: bool | int = ...,... function popupMenu (line 6432) | def popupMenu(*args, allowOptionBoxes: bool | int = ..., altModifier: bo... function pose (line 6433) | def pose(*args, allPoses: bool | int = ..., apply: bool | int = ..., edi... function poseEditor (line 6436) | def poseEditor(*args, edit: Literal[True], docTag: str = ..., filter: st... function poseEditor (line 6439) | def poseEditor(*args, control: bool | int = ..., defineTemplate: str = .... function posePanel (line 6442) | def posePanel(*args, edit: Literal[True], copy: str = ..., createString:... function posePanel (line 6445) | def posePanel(*args, control: bool | int = ..., copy: str = ..., createS... function preferredRenderer (line 6446) | def preferredRenderer(*args, fallback: bool | int | str = ..., makeCurre... function preloadRefEd (line 6449) | def preloadRefEd(*args, edit: Literal[True], docTag: str = ..., filter: ... function preloadRefEd (line 6452) | def preloadRefEd(*args, control: bool | int = ..., defineTemplate: str =... function prepareRender (line 6455) | def prepareRender(*args, edit: Literal[True], defaultTraversalSet: str =... function prepareRender (line 6458) | def prepareRender(*args, defaultTraversalSet: bool | int | str = ..., de... function prependListItem (line 6459) | def prependListItem(*args, **keywords): ... function profiler (line 6460) | def profiler(*args, addCategory: str = ..., allCategories: bool | int = ... function profilerTool (line 6463) | def profilerTool(*args, edit: Literal[True], categoryView: bool | int = ... function profilerTool (line 6466) | def profilerTool(*args, categoryView: bool | int = ..., collapseSelected... function progressBar (line 6469) | def progressBar(*args, edit: Literal[True], annotation: str = ..., backg... function progressBar (line 6472) | def progressBar(*args, annotation: bool | int | str = ..., backgroundCol... function progressWindow (line 6475) | def progressWindow(*args, edit: Literal[True], isInterruptable: bool | i... function progressWindow (line 6478) | def progressWindow(*args, endProgress: bool | int = ..., isCancelled: bo... function projectCurve (line 6481) | def projectCurve(*args, edit: Literal[True], caching: bool | int = ..., ... function projectCurve (line 6484) | def projectCurve(*args, caching: bool | int = ..., constructionHistory: ... function projectTangent (line 6487) | def projectTangent(*args, edit: Literal[True], caching: bool | int = ...... function projectTangent (line 6490) | def projectTangent(*args, caching: bool | int = ..., constructionHistory... function projectionContext (line 6493) | def projectionContext(*args, edit: Literal[True], image1: str = ..., ima... function projectionContext (line 6496) | def projectionContext(*args, exists: bool | int = ..., history: bool | i... function projectionManip (line 6497) | def projectionManip(*args, fitBBox: bool | int = ..., projType: int = ..... function promptDialog (line 6498) | def promptDialog(*args, backgroundColor: tuple[float, float, float] = ..... function propModCtx (line 6501) | def propModCtx(*args, edit: Literal[True], animCurve: str = ..., animCur... function propModCtx (line 6504) | def propModCtx(*args, animCurve: bool | int | str = ..., animCurveFallof... function propMove (line 6505) | def propMove(*args, percent: float | list[float] = ..., percentX: float ... function proximityWrap (line 6508) | def proximityWrap(*args, edit: Literal[True], addDrivers: str | list[str... function proximityWrap (line 6511) | def proximityWrap(*args, addDrivers: str | list[str] = ..., applyUserDef... function psdChannelOutliner (line 6514) | def psdChannelOutliner(*args, edit: Literal[True], addChild: tuple[str, ... function psdChannelOutliner (line 6517) | def psdChannelOutliner(*args, addChild: tuple[str, str] | list[tuple[str... function psdConvSolidTxOptions (line 6518) | def psdConvSolidTxOptions(*args) -> Any: ... function psdEditTextureFile (line 6519) | def psdEditTextureFile(*args, addChannel: str | list[str] = ..., addChan... function psdExport (line 6520) | def psdExport(*args, alphaChannelIdx: int = ..., bytesPerChannel: int = ... function psdTextureFile (line 6521) | def psdTextureFile(*args, channelRGB: tuple[str, int, int, int, int] | l... function python (line 6522) | def python(*args) -> Any: ... function querySubdiv (line 6523) | def querySubdiv(*args, action: int = ..., level: int = ..., relative: bo... function quit (line 6524) | def quit(*args, abort: bool | int = ..., exitCode: int = ..., force: boo... function radial (line 6527) | def radial(*args, edit: Literal[True], attenuation: float = ..., magnitu... function radial (line 6530) | def radial(*args, attenuation: bool | int | float = ..., magnitude: bool... function radioButton (line 6533) | def radioButton(*args, edit: Literal[True], align: str = ..., annotation... function radioButton (line 6536) | def radioButton(*args, align: bool | int | str = ..., annotation: bool |... function radioButtonGrp (line 6539) | def radioButtonGrp(*args, edit: Literal[True], adjustableColumn: int = .... function radioButtonGrp (line 6542) | def radioButtonGrp(*args, adjustableColumn: int = ..., adjustableColumn2... function radioCollection (line 6545) | def radioCollection(*args, edit: Literal[True], select: str = ...) -> No... function radioCollection (line 6548) | def radioCollection(*args, collectionItemArray: bool | int = ..., define... function radioMenuItemCollection (line 6549) | def radioMenuItemCollection(*args, defineTemplate: str = ..., edit: bool... function rampColorPort (line 6552) | def rampColorPort(*args, edit: Literal[True], annotation: str = ..., bac... function rampColorPort (line 6555) | def rampColorPort(*args, annotation: bool | int | str = ..., backgroundC... function rampWidget (line 6556) | def rampWidget(*args) -> Any: ... function rampWidgetAttrless (line 6557) | def rampWidgetAttrless(*args) -> Any: ... function rangeControl (line 6560) | def rangeControl(*args, edit: Literal[True], annotation: str = ..., back... function rangeControl (line 6563) | def rangeControl(*args, annotation: bool | int | str = ..., backgroundCo... function readPDC (line 6564) | def readPDC(*args, file: str = ..., test: bool | int = ...) -> Any: ... function readTake (line 6565) | def readTake(*args, angle: str = ..., device: str = ..., frequency: floa... function rebuildCurve (line 6568) | def rebuildCurve(*args, edit: Literal[True], caching: bool | int = ..., ... function rebuildCurve (line 6571) | def rebuildCurve(*args, caching: bool | int = ..., constructionHistory: ... function rebuildSurface (line 6574) | def rebuildSurface(*args, edit: Literal[True], caching: bool | int = ...... function rebuildSurface (line 6577) | def rebuildSurface(*args, caching: bool | int = ..., constructionHistory... function recordAttr (line 6578) | def recordAttr(*args, attribute: str | list[str] = ..., delete: bool | i... function recordDevice (line 6579) | def recordDevice(*args, cleanup: bool | int = ..., data: bool | int = ..... function redo (line 6580) | def redo(*args) -> Any: ... function reference (line 6581) | def reference(*args, connectionsBroken: bool | int = ..., connectionsMad... function referenceEdit (line 6582) | def referenceEdit(*args, applyFailedEdits: bool | int = ..., changeEditT... function referenceQuery (line 6585) | def referenceQuery(*args, filename: Literal[True], child: bool | int = .... function referenceQuery (line 6588) | def referenceQuery(*args, referenceNode: Literal[True], child: bool | in... function referenceQuery (line 6591) | def referenceQuery(*args, parentNamespace: Literal[True], child: bool | ... function referenceQuery (line 6594) | def referenceQuery(*args, namespace: Literal[True], child: bool | int = ... function referenceQuery (line 6597) | def referenceQuery(*args, nodes: Literal[True], child: bool | int = ...,... function referenceQuery (line 6600) | def referenceQuery(*args, editAttrs: Literal[True], child: bool | int = ... function referenceQuery (line 6603) | def referenceQuery(*args, editNodes: Literal[True], child: bool | int = ... function referenceQuery (line 6606) | def referenceQuery(*args, editStrings: Literal[True], child: bool | int ... function referenceQuery (line 6609) | def referenceQuery(*args, isNodeReferenced: Literal[True], child: bool |... function referenceQuery (line 6612) | def referenceQuery(*args, isExportEdits: Literal[True], child: bool | in... function referenceQuery (line 6615) | def referenceQuery(*args, isLoaded: Literal[True], child: bool | int = .... function referenceQuery (line 6618) | def referenceQuery(*args, isPreviewOnly: Literal[True], child: bool | in... function refineSubdivSelectionList (line 6619) | def refineSubdivSelectionList(*args) -> Any: ... function refresh (line 6620) | def refresh(*args, currentView: bool | int = ..., fileExtension: str = .... function refreshEditorTemplates (line 6621) | def refreshEditorTemplates(*args) -> Any: ... function regionSelectKeyCtx (line 6624) | def regionSelectKeyCtx(*args, edit: Literal[True], image1: str = ..., im... function regionSelectKeyCtx (line 6627) | def regionSelectKeyCtx(*args, bottomManip: bool | int | float = ..., exi... function rehash (line 6628) | def rehash(*args) -> Any: ... function relationship (line 6631) | def relationship(*args, edit: Literal[True], b: bool | int = ..., relati... function relationship (line 6634) | def relationship(*args, b: bool | int = ..., query: bool | int = ..., re... function reloadImage (line 6635) | def reloadImage(*args) -> Any: ... function rememberCtxSettings (line 6636) | def rememberCtxSettings(*args) -> Any: ... function removeJoint (line 6637) | def removeJoint(*args) -> Any: ... function removeListItem (line 6638) | def removeListItem(*args, **keywords): ... function removeMultiInstance (line 6639) | def removeMultiInstance(*args, allChildren: bool | int = ..., b: bool | ... function rename (line 6640) | def rename(*args, ignoreShape: bool | int = ..., uuid: bool | int = ...)... function renameAttr (line 6641) | def renameAttr(*args) -> Any: ... function renameUI (line 6642) | def renameUI(*args) -> Any: ... function render (line 6643) | def render(*args, abortMissingTexture: bool | int = ..., batch: bool | i... function renderGlobalsNode (line 6644) | def renderGlobalsNode(*args, name: str = ..., parent: str = ..., renderQ... function renderInfo (line 6645) | def renderInfo(*args, castShadows: bool | int = ..., chordHeight: float ... function renderLayerMembers (line 6646) | def renderLayerMembers(*args, **keywords): ... function renderLayerPostProcess (line 6647) | def renderLayerPostProcess(*args, keepImages: bool | int = ..., query: b... function renderManip (line 6650) | def renderManip(*args, edit: Literal[True], camera: tuple[bool | int, bo... function renderManip (line 6653) | def renderManip(*args, camera: bool | int | tuple[bool | int, bool | int... function renderPartition (line 6654) | def renderPartition(*args, query: bool | int = ...) -> Any: ... function renderPassRegistry (line 6655) | def renderPassRegistry(*args, channels: int = ..., isPassSupported: bool... function renderQualityNode (line 6656) | def renderQualityNode(*args, name: str = ..., parent: str = ..., shared:... function renderSettings (line 6657) | def renderSettings(*args, camera: str = ..., customTokenString: str = ..... function renderSetup (line 6658) | def renderSetup(*args, **keywords): ... function renderSetupFind (line 6659) | def renderSetupFind(*args, **keywords): ... function renderSetupLegacyLayer (line 6660) | def renderSetupLegacyLayer(*args, **keywords): ... function renderSetupLocalOverride (line 6661) | def renderSetupLocalOverride(*args, **keywords): ... function renderSetupPostApply (line 6662) | def renderSetupPostApply(*args, **keywords): ... function renderSetupSwitchVisibleRenderLayer (line 6663) | def renderSetupSwitchVisibleRenderLayer(*args, **keywords): ... function renderThumbnailUpdate (line 6664) | def renderThumbnailUpdate(*args, forceUpdate: str = ..., query: bool | i... function renderWindowEditor (line 6667) | def renderWindowEditor(*args, edit: Literal[True], autoResize: bool | in... function renderWindowEditor (line 6670) | def renderWindowEditor(*args, autoResize: bool | int = ..., blendMode: i... function renderWindowSelectContext (line 6673) | def renderWindowSelectContext(*args, edit: Literal[True], image1: str = ... function renderWindowSelectContext (line 6676) | def renderWindowSelectContext(*args, exists: bool | int = ..., image1: b... function renderer (line 6679) | def renderer(*args, edit: Literal[True], addGlobalsNode: str = ..., addG... function renderer (line 6682) | def renderer(*args, addGlobalsNode: bool | int | str = ..., addGlobalsTa... function reorder (line 6683) | def reorder(*args, back: bool | int = ..., front: bool | int = ..., rela... function reorderContainer (line 6686) | def reorderContainer(*args, edit: Literal[True], back: bool | int = ...,... function reorderContainer (line 6689) | def reorderContainer(*args, back: bool | int = ..., front: bool | int = ... function reorderDeformers (line 6690) | def reorderDeformers(*args, name: str = ...) -> Any: ... function repeatLast (line 6691) | def repeatLast(*args, addCommand: str = ..., addCommandLabel: str = ...,... function replaceCacheFrames (line 6692) | def replaceCacheFrames(*args, **keywords): ... function replaceCacheFramesOpt (line 6693) | def replaceCacheFramesOpt(*args, **keywords): ... function requires (line 6694) | def requires(*args, dataType: str | list[str] = ..., nodeType: str | lis... function reroot (line 6695) | def reroot(*args) -> Any: ... function resampleFluid (line 6698) | def resampleFluid(*args, edit: Literal[True], resampleDepth: int = ..., ... function resampleFluid (line 6701) | def resampleFluid(*args, query: bool | int = ..., resampleDepth: int = .... function resetTool (line 6702) | def resetTool(*args) -> Any: ... function resolutionNode (line 6703) | def resolutionNode(*args, name: str = ..., parent: str = ..., shared: bo... function resourceManager (line 6704) | def resourceManager(*args, nameFilter: str = ..., saveAs: tuple[str, str... function retimeHelper (line 6705) | def retimeHelper(*args, deleteFrame: int = ..., edit: bool | int = ..., ... function retimeKeyCtx (line 6708) | def retimeKeyCtx(*args, edit: Literal[True], image1: str = ..., image2: ... function retimeKeyCtx (line 6711) | def retimeKeyCtx(*args, exists: bool | int = ..., history: bool | int = ... function reverseCurve (line 6714) | def reverseCurve(*args, edit: Literal[True], caching: bool | int = ..., ... function reverseCurve (line 6717) | def reverseCurve(*args, caching: bool | int = ..., constructionHistory: ... function reverseSurface (line 6720) | def reverseSurface(*args, edit: Literal[True], caching: bool | int = ...... function reverseSurface (line 6723) | def reverseSurface(*args, caching: bool | int = ..., constructionHistory... function revolve (line 6726) | def revolve(*args, edit: Literal[True], autoCorrectNormal: bool | int = ... function revolve (line 6729) | def revolve(*args, autoCorrectNormal: bool | int = ..., axis: bool | int... function rigidBody (line 6732) | def rigidBody(*args, edit: Literal[True], active: bool | int = ..., appl... function rigidBody (line 6735) | def rigidBody(*args, active: bool | int = ..., angularVelocity: bool | i... function rigidSolver (line 6738) | def rigidSolver(*args, edit: Literal[True], autoTolerances: bool | int =... function rigidSolver (line 6741) | def rigidSolver(*args, autoTolerances: bool | int = ..., bounciness: boo... function roll (line 6742) | def roll(*args, absolute: bool | int = ..., degree: float = ..., relativ... function rollCtx (line 6745) | def rollCtx(*args, edit: Literal[True], image1: str = ..., image2: str =... function rollCtx (line 6748) | def rollCtx(*args, alternateContext: bool | int = ..., exists: bool | in... function rotate (line 6749) | def rotate(*args, absolute: bool | int = ..., centerPivot: bool | int = ... function rotationInterpolation (line 6750) | def rotationInterpolation(*args, convert: bool | int | str = ..., query:... function roundCRCtx (line 6751) | def roundCRCtx(*args, activeNodes: bool | int = ..., append: bool | int ... function roundConstantRadius (line 6752) | def roundConstantRadius(*args, append: bool | int = ..., caching: bool |... function rowColumnLayout (line 6755) | def rowColumnLayout(*args, edit: Literal[True], adjustableColumn: int = ... function rowColumnLayout (line 6758) | def rowColumnLayout(*args, adjustableColumn: int = ..., annotation: bool... function rowLayout (line 6761) | def rowLayout(*args, edit: Literal[True], adjustableColumn: int | list[i... function rowLayout (line 6764) | def rowLayout(*args, adjustableColumn: int | list[int] = ..., adjustable... function runTimeCommand (line 6767) | def runTimeCommand(*args, edit: Literal[True], addKeyword: str | list[st... function runTimeCommand (line 6770) | def runTimeCommand(*args, addKeyword: str | list[str] = ..., addTag: str... function runup (line 6771) | def runup(*args, cache: bool | int = ..., fromPreviousFrame: bool | int ... function safemodecheckhash (line 6772) | def safemodecheckhash(*args, co: bool | int = ..., pts: str = ..., wd: b... function sampleImage (line 6773) | def sampleImage(*args, fastSample: bool | int = ..., resolution: tuple[i... function saveAllShelves (line 6774) | def saveAllShelves(*args) -> Any: ... function saveFluid (line 6777) | def saveFluid(*args, edit: Literal[True], currentTime: int = ..., endTim... function saveFluid (line 6780) | def saveFluid(*args, currentTime: int = ..., endTime: int = ..., query: ... function saveImage (line 6783) | def saveImage(*args, edit: Literal[True], annotation: str = ..., backgro... function saveImage (line 6786) | def saveImage(*args, annotation: bool | int | str = ..., backgroundColor... function saveInitialState (line 6787) | def saveInitialState(*args, attribute: str | list[str] = ..., saveall: b... function saveMenu (line 6788) | def saveMenu(*args) -> Any: ... function savePrefObjects (line 6789) | def savePrefObjects(*args) -> Any: ... function saveShelf (line 6790) | def saveShelf(*args) -> Any: ... function saveToolSettings (line 6791) | def saveToolSettings(*args) -> Any: ... function saveViewportSettings (line 6792) | def saveViewportSettings(*args) -> Any: ... function scale (line 6793) | def scale(*args, absolute: bool | int = ..., centerPivot: bool | int = .... function scaleComponents (line 6794) | def scaleComponents(*args, pivot: tuple[float, float, float] = ..., rota... function scaleConstraint (line 6797) | def scaleConstraint(*args, edit: Literal[True], layer: str = ..., name: ... function scaleConstraint (line 6800) | def scaleConstraint(*args, layer: str = ..., maintainOffset: bool | int ... function scaleKey (line 6801) | def scaleKey(*args, animation: str = ..., attribute: str | list[str] = .... function scaleKeyCtx (line 6804) | def scaleKeyCtx(*args, edit: Literal[True], image1: str = ..., image2: s... function scaleKeyCtx (line 6807) | def scaleKeyCtx(*args, exists: bool | int = ..., history: bool | int = .... function sceneEditor (line 6810) | def sceneEditor(*args, edit: Literal[True], docTag: str = ..., filter: s... function sceneEditor (line 6813) | def sceneEditor(*args, control: bool | int = ..., defineTemplate: str = ... function sceneLint (line 6814) | def sceneLint(*args, issueType: bool | int | str | list[str] = ..., verb... function sceneUIReplacement (line 6815) | def sceneUIReplacement(*args, clear: bool | int = ..., deleteRemaining: ... function scmh (line 6816) | def scmh(*args, absolute: bool | int = ..., ignore: int | list[int] = ..... function scriptCtx (line 6819) | def scriptCtx(*args, edit: Literal[True], baseClassName: str = ..., cumu... function scriptCtx (line 6822) | def scriptCtx(*args, allComponents: bool | int | bool | int | list[bool ... function scriptEditorInfo (line 6825) | def scriptEditorInfo(*args, edit: Literal[True], clearHistory: bool | in... function scriptEditorInfo (line 6828) | def scriptEditorInfo(*args, clearHistory: bool | int = ..., clearHistory... function scriptJob (line 6829) | def scriptJob(*args, allChildren: bool | int = ..., attributeAdded: tupl... function scriptNode (line 6832) | def scriptNode(*args, edit: Literal[True], afterScript: str = ..., befor... function scriptNode (line 6835) | def scriptNode(*args, afterScript: bool | int | str = ..., beforeScript:... function scriptTable (line 6838) | def scriptTable(*args, edit: Literal[True], afterCellChangedCmd: str | C... function scriptTable (line 6841) | def scriptTable(*args, afterCellChangedCmd: str | Callable = ..., annota... function scriptedPanel (line 6844) | def scriptedPanel(*args, edit: Literal[True], copy: str = ..., createStr... function scriptedPanel (line 6847) | def scriptedPanel(*args, control: bool | int = ..., copy: str = ..., cre... function scriptedPanelType (line 6850) | def scriptedPanelType(*args, edit: Literal[True], addCallback: str = ...... function scriptedPanelType (line 6853) | def scriptedPanelType(*args, addCallback: bool | int | str = ..., copySt... function scrollField (line 6856) | def scrollField(*args, edit: Literal[True], annotation: str = ..., backg... function scrollField (line 6859) | def scrollField(*args, annotation: bool | int | str = ..., backgroundCol... function scrollLayout (line 6862) | def scrollLayout(*args, edit: Literal[True], annotation: str = ..., back... function scrollLayout (line 6865) | def scrollLayout(*args, annotation: bool | int | str = ..., backgroundCo... function sculpt (line 6868) | def sculpt(*args, edit: Literal[True], after: bool | int = ..., afterRef... function sculpt (line 6871) | def sculpt(*args, after: bool | int = ..., afterReference: bool | int = ... function sculptKeyCtx (line 6874) | def sculptKeyCtx(*args, edit: Literal[True], affectsTime: bool | int = .... function sculptKeyCtx (line 6877) | def sculptKeyCtx(*args, activeMode: int = ..., affectsTime: bool | int =... function sculptMeshCacheChangeCloneSource (line 6880) | def sculptMeshCacheChangeCloneSource(*args, edit: Literal[True], blendSh... function sculptMeshCacheChangeCloneSource (line 6883) | def sculptMeshCacheChangeCloneSource(*args, blendShape: bool | int | str... function sculptMeshCacheCtx (line 6886) | def sculptMeshCacheCtx(*args, edit: Literal[True], adjustSize: bool | in... function sculptMeshCacheCtx (line 6889) | def sculptMeshCacheCtx(*args, adjustSize: bool | int = ..., adjustStreng... function sculptTarget (line 6892) | def sculptTarget(*args, edit: Literal[True], after: bool | int = ..., af... function sculptTarget (line 6895) | def sculptTarget(*args, after: bool | int = ..., afterReference: bool | ... function selLoadSettings (line 6898) | def selLoadSettings(*args, edit: Literal[True], activeProxy: str = ..., ... function selLoadSettings (line 6901) | def selLoadSettings(*args, activeProxy: bool | int | str = ..., deferRef... function select (line 6902) | def select(*args, add: bool | int = ..., addFirst: bool | int = ..., all... function selectContext (line 6905) | def selectContext(*args, edit: Literal[True], image1: str = ..., image2:... function selectContext (line 6908) | def selectContext(*args, exists: bool | int = ..., history: bool | int =... function selectKey (line 6909) | def selectKey(*args, addTo: bool | int = ..., animation: str = ..., attr... function selectKeyCtx (line 6912) | def selectKeyCtx(*args, edit: Literal[True], image1: str = ..., image2: ... function selectKeyCtx (line 6915) | def selectKeyCtx(*args, exists: bool | int = ..., history: bool | int = ... function selectKeyframe (line 6916) | def selectKeyframe(*args, animation: str = ..., attribute: str | list[st... function selectKeyframeRegionCtx (line 6919) | def selectKeyframeRegionCtx(*args, edit: Literal[True], image1: str = ..... function selectKeyframeRegionCtx (line 6922) | def selectKeyframeRegionCtx(*args, exists: bool | int = ..., history: bo... function selectMode (line 6923) | def selectMode(*args, component: bool | int = ..., hierarchical: bool | ... function selectPref (line 6924) | def selectPref(*args, affectsActive: bool | int = ..., allowHiliteSelect... function selectPriority (line 6925) | def selectPriority(*args, allComponents: int = ..., allObjects: int = ..... function selectType (line 6926) | def selectType(*args, allComponents: bool | int = ..., allObjects: bool ... function selectedNodes (line 6927) | def selectedNodes(*args, dagObjects: bool | int = ...) -> Any: ... function selectionConnection (line 6930) | def selectionConnection(*args, edit: Literal[True], addScript: str | Cal... function selectionConnection (line 6933) | def selectionConnection(*args, activeCacheList: bool | int = ..., active... function separator (line 6936) | def separator(*args, edit: Literal[True], annotation: str = ..., backgro... function separator (line 6939) | def separator(*args, annotation: bool | int | str = ..., backgroundColor... function sequenceManager (line 6940) | def sequenceManager(*args, addSequencerAudio: str = ..., attachSequencer... function setAttr (line 6941) | def setAttr(*args, alteredValue: bool | int = ..., caching: bool | int =... function setAttrMapping (line 6942) | def setAttrMapping(*args, absolute: bool | int = ..., attribute: str | l... function setDefaultShadingGroup (line 6943) | def setDefaultShadingGroup(*args, query: bool | int = ...) -> Any: ... function setDrivenKeyframe (line 6944) | def setDrivenKeyframe(*args, attribute: str | list[str] = ..., controlPo... function setDynStartState (line 6945) | def setDynStartState(*args, **keywords): ... function setDynamic (line 6946) | def setDynamic(*args, allOnWhenRun: bool | int = ..., disableAllOnWhenRu... function setEditCtx (line 6949) | def setEditCtx(*args, edit: Literal[True], image1: str = ..., image2: st... function setEditCtx (line 6952) | def setEditCtx(*args, exists: bool | int = ..., history: bool | int = ..... function setFluidAttr (line 6953) | def setFluidAttr(*args, addValue: bool | int = ..., attribute: str = ...... function setFocus (line 6954) | def setFocus(*args) -> Any: ... function setInfinity (line 6955) | def setInfinity(*args, attribute: str | list[str] = ..., controlPoints: ... function setInputDeviceMapping (line 6956) | def setInputDeviceMapping(*args, absolute: bool | int = ..., axis: str |... function setKeyCtx (line 6959) | def setKeyCtx(*args, edit: Literal[True], breakdown: bool | int = ..., i... function setKeyCtx (line 6962) | def setKeyCtx(*args, breakdown: bool | int = ..., exists: bool | int = .... function setKeyPath (line 6963) | def setKeyPath(*args) -> Any: ... function setKeyframe (line 6966) | def setKeyframe(*args, edit: Literal[True], breakdown: bool | int = ...)... function setKeyframe (line 6969) | def setKeyframe(*args, adjustTangent: bool | int = ..., animLayer: str =... function setKeyframeBlendshapeTargetWts (line 6970) | def setKeyframeBlendshapeTargetWts(*args) -> Any: ... function setMenuMode (line 6971) | def setMenuMode(*args) -> Any: ... function setNClothStartState (line 6972) | def setNClothStartState(*args, **keywords): ... function setNodeTypeFlag (line 6973) | def setNodeTypeFlag(*args, display: bool | int = ..., query: bool | int ... function setParent (line 6974) | def setParent(*args, defineTemplate: str = ..., menu: bool | int = ..., ... function setParticleAttr (line 6975) | def setParticleAttr(*args, attribute: str = ..., floatValue: float = ...... function setRenderPassType (line 6976) | def setRenderPassType(*args, defaultDataType: bool | int = ..., numChann... function setStartupMessage (line 6977) | def setStartupMessage(*args) -> Any: ... function setToolTo (line 6978) | def setToolTo(*args) -> Any: ... function setUITemplate (line 6979) | def setUITemplate(*args, popTemplate: bool | int = ..., pushTemplate: bo... function setXformManip (line 6980) | def setXformManip(*args, query: bool | int = ..., showUnits: bool | int ... function sets (line 6983) | def sets(*args, edit: Literal[True], addElement: str = ..., afterFilters... function sets (line 6986) | def sets(*args, addElement: str = ..., afterFilters: bool | int = ..., a... function shadingConnection (line 6989) | def shadingConnection(*args, edit: Literal[True], connectionState: bool ... function shadingConnection (line 6992) | def shadingConnection(*args, connectionState: bool | int = ..., query: b... function shadingGeometryRelCtx (line 6995) | def shadingGeometryRelCtx(*args, edit: Literal[True], image1: str = ...,... function shadingGeometryRelCtx (line 6998) | def shadingGeometryRelCtx(*args, exists: bool | int = ..., history: bool... function shadingLightRelCtx (line 7001) | def shadingLightRelCtx(*args, edit: Literal[True], image1: str = ..., im... function shadingLightRelCtx (line 7004) | def shadingLightRelCtx(*args, exists: bool | int = ..., history: bool | ... function shadingNetworkCompare (line 7005) | def shadingNetworkCompare(*args, byName: bool | int = ..., byValue: bool... function shadingNode (line 7006) | def shadingNode(*args, asLight: bool | int = ..., asPostProcess: bool | ... function shapeCompare (line 7007) | def shapeCompare(*args) -> Any: ... function shapeEditor (line 7010) | def shapeEditor(*args, edit: Literal[True], clearSelection: bool | int =... function shapeEditor (line 7013) | def shapeEditor(*args, clearSelection: bool | int = ..., control: bool |... function shapePanel (line 7016) | def shapePanel(*args, edit: Literal[True], copy: str = ..., createString... function shapePanel (line 7019) | def shapePanel(*args, control: bool | int = ..., copy: str = ..., create... function shelfButton (line 7022) | def shelfButton(*args, edit: Literal[True], align: str = ..., annotation... function shelfButton (line 7025) | def shelfButton(*args, actionIsSubstitute: bool | int = ..., align: bool... function shelfLayout (line 7028) | def shelfLayout(*args, exists: Literal[True]) -> bool: ... function shelfLayout (line 7031) | def shelfLayout(*args, edit: Literal[True], alignment: str = ..., annota... function shelfLayout (line 7034) | def shelfLayout(*args, alignment: bool | int | str = ..., annotation: bo... function shelfTabLayout (line 7037) | def shelfTabLayout(*args, edit: Literal[True], annotation: str = ..., ba... function shelfTabLayout (line 7040) | def shelfTabLayout(*args, annotation: bool | int | str = ..., background... function shot (line 7043) | def shot(*args, edit: Literal[True], audio: str = ..., clip: str = ..., ... function shot (line 7046) | def shot(*args, audio: bool | int | str = ..., clip: bool | int | str = ... function shotRipple (line 7049) | def shotRipple(*args, edit: Literal[True], deleted: bool | int = ..., en... function shotRipple (line 7052) | def shotRipple(*args, deleted: bool | int = ..., endDelta: bool | int | ... function shotTrack (line 7055) | def shotTrack(*args, edit: Literal[True], lock: bool | int = ..., mute: ... function shotTrack (line 7058) | def shotTrack(*args, insertTrack: int = ..., lock: bool | int = ..., mut... function showHelp (line 7059) | def showHelp(*args, absolute: bool | int = ..., docs: bool | int = ..., ... function showHidden (line 7060) | def showHidden(*args, above: bool | int = ..., allObjects: bool | int = ... function showManipCtx (line 7063) | def showManipCtx(*args, edit: Literal[True], addAttr: str = ..., image1:... function showManipCtx (line 7066) | def showManipCtx(*args, addAttr: str = ..., currentNodeName: bool | int ... function showMetadata (line 7067) | def showMetadata(*args, auto: bool | int = ..., dataType: bool | int | s... function showSelectionInTitle (line 7068) | def showSelectionInTitle(*args) -> Any: ... function showShadingGroupAttrEditor (line 7069) | def showShadingGroupAttrEditor(*args, query: bool | int = ...) -> Any: ... function showWindow (line 7070) | def showWindow(*args) -> Any: ... function simplify (line 7071) | def simplify(*args, animation: str = ..., attribute: str | list[str] = .... function singleProfileBirailSurface (line 7074) | def singleProfileBirailSurface(*args, edit: Literal[True], caching: bool... function singleProfileBirailSurface (line 7077) | def singleProfileBirailSurface(*args, caching: bool | int = ..., constru... function skeletonEmbed (line 7078) | def skeletonEmbed(*args, mergedMesh: bool | int = ..., query: bool | int... function skinBindCtx (line 7081) | def skinBindCtx(*args, edit: Literal[True], about: str = ..., axis: str ... function skinBindCtx (line 7084) | def skinBindCtx(*args, about: bool | int | str = ..., axis: bool | int |... function skinCluster (line 7087) | def skinCluster(*args, edit: Literal[True], addInfluence: str | list[str... function skinCluster (line 7090) | def skinCluster(*args, addInfluence: str | list[str] = ..., addToSelecti... function skinPercent (line 7091) | def skinPercent(*args, ignoreBelow: bool | int | float = ..., normalize:... function smoothCurve (line 7094) | def smoothCurve(*args, edit: Literal[True], caching: bool | int = ..., n... function smoothCurve (line 7097) | def smoothCurve(*args, caching: bool | int = ..., constructionHistory: b... function smoothTangentSurface (line 7100) | def smoothTangentSurface(*args, edit: Literal[True], caching: bool | int... function smoothTangentSurface (line 7103) | def smoothTangentSurface(*args, caching: bool | int = ..., constructionH... function snapKey (line 7104) | def snapKey(*args, animation: str = ..., attribute: str | list[str] = ..... function snapMode (line 7105) | def snapMode(*args, curve: bool | int = ..., distanceIncrement: bool | i... function snapTogetherCtx (line 7108) | def snapTogetherCtx(*args, edit: Literal[True], clearSelection: bool | i... function snapTogetherCtx (line 7111) | def snapTogetherCtx(*args, clearSelection: bool | int = ..., exists: boo... function snapshot (line 7114) | def snapshot(*args, edit: Literal[True], endTime: int | float = ..., inc... function snapshot (line 7117) | def snapshot(*args, anchorTransform: str = ..., constructionHistory: boo... function snapshotBeadContext (line 7118) | def snapshotBeadContext(*args) -> Any: ... function snapshotBeadCtx (line 7121) | def snapshotBeadCtx(*args, edit: Literal[True], image1: str = ..., image... function snapshotBeadCtx (line 7124) | def snapshotBeadCtx(*args, exists: bool | int = ..., history: bool | int... function snapshotModifyKeyCtx (line 7127) | def snapshotModifyKeyCtx(*args, edit: Literal[True], image1: str = ..., ... function snapshotModifyKeyCtx (line 7130) | def snapshotModifyKeyCtx(*args, exists: bool | int = ..., history: bool ... function soft (line 7131) | def soft(*args, convert: bool | int = ..., duplicate: bool | int = ..., ... function softMod (line 7134) | def softMod(*args, edit: Literal[True], after: bool | int = ..., afterRe... function softMod (line 7137) | def softMod(*args, after: bool | int = ..., afterReference: bool | int =... function softModContext (line 7138) | def softModContext(*args) -> Any: ... function softSelect (line 7141) | def softSelect(*args, edit: Literal[True], compressUndo: int = ..., enab... function softSelect (line 7144) | def softSelect(*args, compressUndo: int = ..., enableFalseColor: int = .... function softSelectOptionsCtx (line 7145) | def softSelectOptionsCtx(*args, buttonDown: bool | int = ..., buttonUp: ... function soloMaterial (line 7146) | def soloMaterial(*args, attr: bool | int | str = ..., last: bool | int =... function sortCaseInsensitive (line 7147) | def sortCaseInsensitive(*args) -> Any: ... function sound (line 7150) | def sound(*args, edit: Literal[True], endTime: int | float = ..., file: ... function sound (line 7153) | def sound(*args, endTime: bool | int | int | float = ..., file: bool | i... function soundControl (line 7156) | def soundControl(*args, edit: Literal[True], annotation: str = ..., back... function soundControl (line 7159) | def soundControl(*args, annotation: bool | int | str = ..., backgroundCo... function soundPopup (line 7160) | def soundPopup(*args, annotation: str = ..., backgroundColor: tuple[floa... function spBirailCtx (line 7161) | def spBirailCtx(*args, activeNodes: bool | int = ..., autoCreate: bool |... function spaceLocator (line 7164) | def spaceLocator(*args, edit: Literal[True], absolute: bool | int = ...,... function spaceLocator (line 7167) | def spaceLocator(*args, absolute: bool | int = ..., name: str = ..., pos... function sphere (line 7170) | def sphere(*args, edit: Literal[True], axis: tuple[float, float, float] ... function sphere (line 7173) | def sphere(*args, axis: bool | int | tuple[float, float, float] = ..., c... function spotLight (line 7176) | def spotLight(*args, edit: Literal[True], barnDoors: bool | int = ..., b... function spotLight (line 7179) | def spotLight(*args, barnDoors: bool | int = ..., bottomBarnDoorAngle: b... function spotLightPreviewPort (line 7182) | def spotLightPreviewPort(*args, edit: Literal[True], annotation: str = .... function spotLightPreviewPort (line 7185) | def spotLightPreviewPort(*args, annotation: bool | int | str = ..., back... function spreadSheetEditor (line 7188) | def spreadSheetEditor(*args, edit: Literal[True], attrRegExp: str = ...,... function spreadSheetEditor (line 7191) | def spreadSheetEditor(*args, allAttr: bool | int = ..., attrRegExp: bool... function spring (line 7194) | def spring(*args, edit: Literal[True], allPoints: bool | int = ..., damp... function spring (line 7197) | def spring(*args, addSprings: bool | int = ..., allPoints: bool | int = ... function squareSurface (line 7200) | def squareSurface(*args, edit: Literal[True], caching: bool | int = ...,... function squareSurface (line 7203) | def squareSurface(*args, caching: bool | int = ..., constructionHistory:... function srtContext (line 7206) | def srtContext(*args, edit: Literal[True], image1: str = ..., image2: st... function srtContext (line 7209) | def srtContext(*args, exists: bool | int = ..., history: bool | int = ..... function stackTrace (line 7210) | def stackTrace(*args, dump: bool | int = ..., parameterCount: int = ...,... function stitchSurface (line 7213) | def stitchSurface(*args, edit: Literal[True], bias: float = ..., caching... function stitchSurface (line 7216) | def stitchSurface(*args, bias: bool | int | float = ..., caching: bool |... function stitchSurfaceCtx (line 7217) | def stitchSurfaceCtx(*args, activeNodes: bool | int = ..., autoCreate: b... function stitchSurfacePoints (line 7220) | def stitchSurfacePoints(*args, edit: Literal[True], bias: float = ..., c... function stitchSurfacePoints (line 7223) | def stitchSurfacePoints(*args, bias: bool | int | float = ..., caching: ... function stringArrayIntersector (line 7226) | def stringArrayIntersector(*args, edit: Literal[True], intersect: str = ... function stringArrayIntersector (line 7229) | def stringArrayIntersector(*args, allowDuplicates: bool | int = ..., def... function stroke (line 7230) | def stroke(*args, name: str = ..., pressure: bool | int = ..., seed: int... function subdAutoProjection (line 7233) | def subdAutoProjection(*args, edit: Literal[True], caching: bool | int =... function subdAutoProjection (line 7236) | def subdAutoProjection(*args, caching: bool | int = ..., constructionHis... function subdCleanTopology (line 7237) | def subdCleanTopology(*args) -> Any: ... function subdCollapse (line 7240) | def subdCollapse(*args, edit: Literal[True], caching: bool | int = ..., ... function subdCollapse (line 7243) | def subdCollapse(*args, caching: bool | int = ..., constructionHistory: ... function subdDisplayMode (line 7244) | def subdDisplayMode(*args, hideFaceGadgets: bool | int = ..., query: boo... function subdDuplicateAndConnect (line 7245) | def subdDuplicateAndConnect(*args) -> Any: ... function subdEditUV (line 7246) | def subdEditUV(*args, angle: bool | int | float = ..., pivotU: bool | in... function subdLayoutUV (line 7249) | def subdLayoutUV(*args, edit: Literal[True], caching: bool | int = ..., ... function subdLayoutUV (line 7252) | def subdLayoutUV(*args, caching: bool | int = ..., constructionHistory: ... function subdListComponentConversion (line 7253) | def subdListComponentConversion(*args, border: bool | int = ..., fromEdg... function subdMapCut (line 7256) | def subdMapCut(*args, edit: Literal[True], caching: bool | int = ..., no... function subdMapCut (line 7259) | def subdMapCut(*args, caching: bool | int = ..., constructionHistory: bo... function subdMapSewMove (line 7262) | def subdMapSewMove(*args, edit: Literal[True], caching: bool | int = ...... function subdMapSewMove (line 7265) | def subdMapSewMove(*args, caching: bool | int = ..., constructionHistory... function subdMatchTopology (line 7266) | def subdMatchTopology(*args, frontOfChain: bool | int = ...) -> Any: ... function subdMirror (line 7269) | def subdMirror(*args, edit: Literal[True], caching: bool | int = ..., no... function subdMirror (line 7272) | def subdMirror(*args, caching: bool | int = ..., constructionHistory: bo... function subdPlanarProjection (line 7275) | def subdPlanarProjection(*args, edit: Literal[True], caching: bool | int... function subdPlanarProjection (line 7278) | def subdPlanarProjection(*args, caching: bool | int = ..., constructionH... function subdToBlind (line 7279) | def subdToBlind(*args, absolutePosition: bool | int = ..., includeCrease... function subdToNurbs (line 7280) | def subdToNurbs(*args, addUnderTransform: bool | int = ..., applyMatrixT... function subdToPoly (line 7283) | def subdToPoly(*args, edit: Literal[True], applyMatrixToResult: bool | i... function subdToPoly (line 7286) | def subdToPoly(*args, addUnderTransform: bool | int = ..., applyMatrixTo... function subdTransferUVsToCache (line 7287) | def subdTransferUVsToCache(*args) -> Any: ... function subdiv (line 7288) | def subdiv(*args, currentLevel: bool | int = ..., currentSubdLevel: bool... function subdivCrease (line 7289) | def subdivCrease(*args, sharpness: bool | int = ...) -> Any: ... function subdivDisplaySmoothness (line 7290) | def subdivDisplaySmoothness(*args, all: bool | int | tuple[Any, Any] = .... function subgraph (line 7291) | def subgraph(*args) -> Any: ... function substituteGeometry (line 7292) | def substituteGeometry(*args, disableNonSkinDeformers: bool | int = ...,... function suitePrefs (line 7293) | def suitePrefs(*args, applyToSuite: str = ..., edit: bool | int = ..., i... function superCtx (line 7294) | def superCtx(*args, attach: str | list[str] = ..., edit: bool | int = ..... function surface (line 7295) | def surface(*args, degreeU: int = ..., degreeV: int = ..., formU: str = ... function surfaceSampler (line 7296) | def surfaceSampler(*args, camera: str = ..., fileFormat: str | list[str]... function surfaceShaderList (line 7297) | def surfaceShaderList(*args, add: str = ..., edit: bool | int = ..., que... function swatchDisplayPort (line 7300) | def swatchDisplayPort(*args, edit: Literal[True], annotation: str = ...,... function swatchDisplayPort (line 7303) | def swatchDisplayPort(*args, annotation: bool | int | str = ..., backgro... function swatchRefresh (line 7304) | def swatchRefresh(*args) -> Any: ... function switchTable (line 7307) | def switchTable(*args, edit: Literal[True], annotation: str = ..., backg... function switchTable (line 7310) | def switchTable(*args, annotation: bool | int | str = ..., backgroundCol... function symbolButton (line 7313) | def symbolButton(*args, edit: Literal[True], annotation: str = ..., back... function symbolButton (line 7316) | def symbolButton(*args, annotation: bool | int | str = ..., backgroundCo... function symbolCheckBox (line 7319) | def symbolCheckBox(*args, edit: Literal[True], annotation: str = ..., ba... function symbolCheckBox (line 7322) | def symbolCheckBox(*args, annotation: bool | int | str = ..., background... function symmetricModelling (line 7325) | def symmetricModelling(*args, edit: Literal[True], about: str = ..., all... function symmetricModelling (line 7328) | def symmetricModelling(*args, about: bool | int | str = ..., allowPartia... function syncSculptCache (line 7329) | def syncSculptCache(*args) -> Any: ... function sysFile (line 7330) | def sysFile(*args, copy: str = ..., delete: bool | int = ..., makeDir: b... function tabLayout (line 7333) | def tabLayout(*args, edit: Literal[True], annotation: str = ..., backgro... function tabLayout (line 7336) | def tabLayout(*args, annotation: bool | int | str = ..., backgroundColor... function tangentConstraint (line 7339) | def tangentConstraint(*args, edit: Literal[True], aimVector: tuple[float... function tangentConstraint (line 7342) | def tangentConstraint(*args, aimVector: bool | int | tuple[float, float,... function targetWeldCtx (line 7345) | def targetWeldCtx(*args, edit: Literal[True], image1: str = ..., image2:... function targetWeldCtx (line 7348) | def targetWeldCtx(*args, exists: bool | int = ..., image1: bool | int | ... function tension (line 7351) | def tension(*args, edit: Literal[True], after: bool | int = ..., afterRe... function tension (line 7354) | def tension(*args, after: bool | int = ..., afterReference: bool | int =... function testPa (line 7355) | def testPa(*args) -> Any: ... function testPassContribution (line 7356) | def testPassContribution(*args, renderLayer: str = ..., renderPass: str ... function texCutContext (line 7359) | def texCutContext(*args, edit: Literal[True], adjustSize: bool | int = .... function texCutContext (line 7362) | def texCutContext(*args, adjustSize: bool | int = ..., displayShellBorde... function texLatticeDeformContext (line 7365) | def texLatticeDeformContext(*args, edit: Literal[True], envelope: float ... function texLatticeDeformContext (line 7368) | def texLatticeDeformContext(*args, envelope: bool | int | float = ..., e... function texManipContext (line 7371) | def texManipContext(*args, edit: Literal[True], image1: str = ..., image... function texManipContext (line 7374) | def texManipContext(*args, exists: bool | int = ..., image1: bool | int ... function texMoveContext (line 7377) | def texMoveContext(*args, edit: Literal[True], image1: str = ..., image2... function texMoveContext (line 7380) | def texMoveContext(*args, editPivotMode: bool | int = ..., exists: bool ... function texMoveUVShellContext (line 7383) | def texMoveUVShellContext(*args, edit: Literal[True], image1: str = ...,... function texMoveUVShellContext (line 7386) | def texMoveUVShellContext(*args, exists: bool | int = ..., image1: bool ... function texRotateContext (line 7389) | def texRotateContext(*args, edit: Literal[True], image1: str = ..., imag... function texRotateContext (line 7392) | def texRotateContext(*args, editPivotMode: bool | int = ..., exists: boo... function texScaleContext (line 7395) | def texScaleContext(*args, edit: Literal[True], image1: str = ..., image... function texScaleContext (line 7398) | def texScaleContext(*args, editPivotMode: bool | int = ..., exists: bool... function texSculptCacheContext (line 7401) | def texSculptCacheContext(*args, edit: Literal[True], adjustSize: bool |... function texSculptCacheContext (line 7404) | def texSculptCacheContext(*args, adjustSize: bool | int = ..., adjustStr... function texSculptCacheSync (line 7405) | def texSculptCacheSync(*args) -> Any: ... function texSelectContext (line 7408) | def texSelectContext(*args, edit: Literal[True], image1: str = ..., imag... function texSelectContext (line 7411) | def texSelectContext(*args, exists: bool | int = ..., image1: bool | int... function texSelectShortestPathCtx (line 7414) | def texSelectShortestPathCtx(*args, edit: Literal[True], image1: str = .... function texSelectShortestPathCtx (line 7417) | def texSelectShortestPathCtx(*args, exists: bool | int = ..., image1: bo... function texSmoothContext (line 7418) | def texSmoothContext(*args, edit: bool | int = ..., exists: bool | int =... function texSmudgeUVContext (line 7421) | def texSmudgeUVContext(*args, edit: Literal[True], dragSlider: str = ...... function texSmudgeUVContext (line 7424) | def texSmudgeUVContext(*args, dragSlider: bool | int | str = ..., effect... function texTweakUVContext (line 7427) | def texTweakUVContext(*args, edit: Literal[True], image1: str = ..., ima... function texTweakUVContext (line 7430) | def texTweakUVContext(*args, exists: bool | int = ..., image1: bool | in... function texWinToolCtx (line 7433) | def texWinToolCtx(*args, edit: Literal[True], boxzoom: bool | int = ...,... function texWinToolCtx (line 7436) | def texWinToolCtx(*args, alternateContext: bool | int = ..., boxzoom: bo... function text (line 7439) | def text(*args, edit: Literal[True], align: str = ..., annotation: str =... function text (line 7442) | def text(*args, align: bool | int | str = ..., annotation: bool | int | ... function textCurves (line 7443) | def textCurves(*args, caching: bool | int = ..., constructionHistory: bo... function textField (line 7446) | def textField(*args, edit: Literal[True], alwaysInvokeEnterCommandOnRetu... function textField (line 7449) | def textField(*args, alwaysInvokeEnterCommandOnReturn: bool | int = ...,... function textFieldButtonGrp (line 7452) | def textFieldButtonGrp(*args, edit: Literal[True], adjustableColumn: int... function textFieldButtonGrp (line 7455) | def textFieldButtonGrp(*args, adjustableColumn: int = ..., adjustableCol... function textFieldGrp (line 7458) | def textFieldGrp(*args, edit: Literal[True], adjustableColumn: int = ...... function textFieldGrp (line 7461) | def textFieldGrp(*args, adjustableColumn: int = ..., adjustableColumn2: ... function textManip (line 7462) | def textManip(*args, query: bool | int = ..., visible: bool | int = ...)... function textScrollList (line 7465) | def textScrollList(*args, edit: Literal[True], allowAutomaticSelection: ... function textScrollList (line 7468) | def textScrollList(*args, allItems: bool | int = ..., allItemsUniqueTags... function textureDeformer (line 7471) | def textureDeformer(*args, edit: Literal[True], after: bool | int = ...,... function textureDeformer (line 7474) | def textureDeformer(*args, after: bool | int = ..., afterReference: bool... function textureLassoContext (line 7475) | def textureLassoContext(*args, drawClosed: bool | int = ..., edit: bool ... function texturePlacementContext (line 7478) | def texturePlacementContext(*args, edit: Literal[True], image1: str = ..... function texturePlacementContext (line 7481) | def texturePlacementContext(*args, exists: bool | int = ..., history: bo... function textureWindow (line 7484) | def textureWindow(*args, edit: Literal[True], activeSelectionOnTop: bool... function textureWindow (line 7487) | def textureWindow(*args, activeSelectionOnTop: bool | int = ..., axesCol... function threadCount (line 7488) | def threadCount(*args, numberOfThreads: int = ..., query: bool | int = .... function threePointArcCtx (line 7491) | def threePointArcCtx(*args, edit: Literal[True], degree: int = ..., imag... function threePointArcCtx (line 7494) | def threePointArcCtx(*args, degree: int = ..., exists: bool | int = ...,... function thumbnailCaptureComponent (line 7495) | def thumbnailCaptureComponent(*args, capture: bool | int = ..., captured... function timeCode (line 7498) | def timeCode(*args, edit: Literal[True], mayaStartFrame: float = ..., pr... function timeCode (line 7501) | def timeCode(*args, mayaStartFrame: bool | int | float = ..., production... function timeControl (line 7504) | def timeControl(*args, edit: Literal[True], animLayerFilterOptions: str ... function timeControl (line 7507) | def timeControl(*args, animCurveNames: bool | int = ..., animLayerFilter... function timeEditor (line 7508) | def timeEditor(*args, allClips: str = ..., clipId: int | list[int] = ...... function timeEditorAnimSource (line 7511) | def timeEditorAnimSource(*args, edit: Literal[True], addObjects: str = .... function timeEditorAnimSource (line 7514) | def timeEditorAnimSource(*args, addObjects: bool | int | str = ..., addR... function timeEditorBakeClips (line 7515) | def timeEditorBakeClips(*args, bakeToAnimSource: str = ..., bakeToClip: ... function timeEditorClip (line 7518) | def timeEditorClip(*args, edit: Literal[True], addAttribute: str | list[... function timeEditorClip (line 7521) | def timeEditorClip(*args, absolute: bool | int = ..., addAttribute: str ... function timeEditorClipLayer (line 7524) | def timeEditorClipLayer(*args, edit: Literal[True], addAttribute: str = ... function timeEditorClipLayer (line 7527) | def timeEditorClipLayer(*args, addAttribute: str = ..., addLayer: str = ... function timeEditorClipOffset (line 7530) | def timeEditorClipOffset(*args, edit: Literal[True], clipId: int | list[... function timeEditorClipOffset (line 7533) | def timeEditorClipOffset(*args, applyToAllRoots: bool | int = ..., clipI... function timeEditorComposition (line 7536) | def timeEditorComposition(*args, edit: Literal[True], active: bool | int... function timeEditorComposition (line 7539) | def timeEditorComposition(*args, active: bool | int = ..., allCompositio... function timeEditorPanel (line 7542) | def timeEditorPanel(*args, edit: Literal[True], activeClipEditMode: int ... function timeEditorPanel (line 7545) | def timeEditorPanel(*args, activeClipEditMode: int = ..., activeTabRootC... function timeEditorTracks (line 7548) | def timeEditorTracks(*args, edit: Literal[True], addTrack: int = ..., pa... function timeEditorTracks (line 7551) | def timeEditorTracks(*args, activeClipWeight: bool | int | int | float =... function timeField (line 7554) | def timeField(*args, edit: Literal[True], annotation: str = ..., autoUni... function timeField (line 7557) | def timeField(*args, annotation: bool | int | str = ..., autoUnitWidth: ... function timeFieldGrp (line 7560) | def timeFieldGrp(*args, edit: Literal[True], adjustableColumn: int = ...... function timeFieldGrp (line 7563) | def timeFieldGrp(*args, adjustableColumn: int = ..., adjustableColumn2: ... function timePort (line 7566) | def timePort(*args, edit: Literal[True], annotation: str = ..., backgrou... function timePort (line 7569) | def timePort(*args, annotation: bool | int | str = ..., backgroundColor:... function timeRangeInfo (line 7570) | def timeRangeInfo(*args, time: None | list[None] = ...) -> Any: ... function timeSliderCustomDraw (line 7571) | def timeSliderCustomDraw(*args, clearPrimitives: bool | int = ..., color... function timeWarp (line 7574) | def timeWarp(*args, edit: Literal[True], deleteFrame: int = ..., frame: ... function timeWarp (line 7577) | def timeWarp(*args, deleteFrame: int = ..., frame: bool | int | float | ... function timer (line 7578) | def timer(*args, endTimer: bool | int = ..., lapTime: bool | int = ..., ... function timerX (line 7579) | def timerX(*args, startTime: float = ...) -> Any: ... function toggle (line 7580) | def toggle(*args, above: bool | int = ..., below: bool | int = ..., boun... function toggleAxis (line 7581) | def toggleAxis(*args, origin: bool | int = ..., query: bool | int = ...,... function toggleDisplacement (line 7582) | def toggleDisplacement(*args) -> Any: ... function toggleWindowVisibility (line 7583) | def toggleWindowVisibility(*args) -> Any: ... function tolerance (line 7584) | def tolerance(*args, angular: bool | int | float = ..., linear: bool | i... function toolBar (line 7587) | def toolBar(*args, edit: Literal[True], allowedArea: str | list[str] = .... function toolBar (line 7590) | def toolBar(*args, allowedArea: bool | int | str | list[str] = ..., anno... function toolButton (line 7593) | def toolButton(*args, edit: Literal[True], annotation: str = ..., backgr... function toolButton (line 7596) | def toolButton(*args, allowMultipleTools: bool | int = ..., annotation: ... function toolCollection (line 7599) | def toolCollection(*args, edit: Literal[True], clear: bool | int = ..., ... function toolCollection (line 7602) | def toolCollection(*args, clear: bool | int = ..., collectionItemArray: ... function toolDropped (line 7603) | def toolDropped(*args) -> Any: ... function toolHasOptions (line 7604) | def toolHasOptions(*args) -> Any: ... function toolPropertyWindow (line 7607) | def toolPropertyWindow(*args, edit: Literal[True], field: str = ..., hel... function toolPropertyWindow (line 7610) | def toolPropertyWindow(*args, field: bool | int | str = ..., helpButton:... function torus (line 7613) | def torus(*args, edit: Literal[True], axis: tuple[float, float, float] =... function torus (line 7616) | def torus(*args, axis: bool | int | tuple[float, float, float] = ..., ca... function track (line 7617) | def track(*args, down: float = ..., left: float = ..., right: float = ..... function trackCtx (line 7620) | def trackCtx(*args, edit: Literal[True], image1: str = ..., image2: str ... function trackCtx (line 7623) | def trackCtx(*args, alternateContext: bool | int = ..., exists: bool | i... function transferAttributes (line 7626) | def transferAttributes(*args, edit: Literal[True], after: bool | int = .... function transferAttributes (line 7629) | def transferAttributes(*args, after: bool | int = ..., afterReference: b... function transferShadingSets (line 7632) | def transferShadingSets(*args, edit: Literal[True], sampleSpace: int = .... function transferShadingSets (line 7635) | def transferShadingSets(*args, query: bool | int = ..., sampleSpace: int... function transformCompare (line 7636) | def transformCompare(*args, root: bool | int = ...) -> Any: ... function transformLimits (line 7637) | def transformLimits(*args, edit: bool | int = ..., enableRotationX: bool... function translator (line 7638) | def translator(*args, defaultFileRule: bool | int = ..., defaultOptions:... function treeLister (line 7641) | def treeLister(*args, edit: Literal[True], addFavorite: str | list[str] ... function treeLister (line 7644) | def treeLister(*args, addFavorite: str | list[str] = ..., addItem: tuple... function treeView (line 7647) | def treeView(*args, edit: Literal[True], addItem: tuple[str, str] | list... function treeView (line 7650) | def treeView(*args, addItem: tuple[str, str] | list[tuple[str, str]] = .... function trim (line 7653) | def trim(*args, edit: Literal[True], caching: bool | int = ..., locatorU... function trim (line 7656) | def trim(*args, caching: bool | int = ..., constructionHistory: bool | i... function trimCtx (line 7657) | def trimCtx(*args, activeNodes: bool | int = ..., autoCreate: bool | int... function truncateFluidCache (line 7658) | def truncateFluidCache(*args, edit: bool | int = ..., query: bool | int ... function truncateHairCache (line 7659) | def truncateHairCache(*args, edit: bool | int = ..., query: bool | int =... function tumble (line 7660) | def tumble(*args, azimuthAngle: float = ..., elevationAngle: float = ...... function tumbleCtx (line 7663) | def tumbleCtx(*args, edit: Literal[True], autoOrthoConstrain: bool | int... function tumbleCtx (line 7666) | def tumbleCtx(*args, alternateContext: bool | int = ..., autoOrthoConstr... function turbulence (line 7669) | def turbulence(*args, edit: Literal[True], attenuation: float = ..., fre... function turbulence (line 7672) | def turbulence(*args, attenuation: bool | int | float = ..., frequency: ... function twoPointArcCtx (line 7675) | def twoPointArcCtx(*args, edit: Literal[True], degree: int = ..., image1... function twoPointArcCtx (line 7678) | def twoPointArcCtx(*args, degree: int = ..., exists: bool | int = ..., h... function ubercam (line 7679) | def ubercam(*args) -> Any: ... function uiTemplate (line 7680) | def uiTemplate(*args, defineTemplate: str = ..., edit: bool | int = ...,... function unapplyOverride (line 7681) | def unapplyOverride(*args, **keywords): ... function unassignInputDevice (line 7682) | def unassignInputDevice(*args, clutch: str = ..., device: str = ...) -> ... function undo (line 7683) | def undo(*args) -> None: ... function undoInfo (line 7684) | def undoInfo(*args, chunkName: bool | int | str = ..., closeChunk: bool ... function unfold (line 7685) | def unfold(*args, applyToShell: bool | int = ..., areaWeight: float = ..... function ungroup (line 7686) | def ungroup(*args, absolute: bool | int = ..., parent: str = ..., relati... function uniform (line 7689) | def uniform(*args, edit: Literal[True], attenuation: float = ..., direct... function uniform (line 7692) | def uniform(*args, attenuation: bool | int | float = ..., directionX: bo... function unknownNode (line 7693) | def unknownNode(*args, plugin: bool | int = ..., query: bool | int = ...... function unknownPlugin (line 7694) | def unknownPlugin(*args, dataTypes: bool | int = ..., list: bool | int =... function unloadPlugin (line 7695) | def unloadPlugin(*args, addCallback: str | Callable = ..., force: bool |... function untangleUV (line 7696) | def untangleUV(*args, mapBorder: str = ..., maxRelaxIterations: int = ..... function untrim (line 7699) | def untrim(*args, edit: Literal[True], caching: bool | int = ..., noChan... function untrim (line 7702) | def untrim(*args, caching: bool | int = ..., constructionHistory: bool |... function upAxis (line 7703) | def upAxis(*args, axis: bool | int | str = ..., query: bool | int = ...,... function userCtx (line 7704) | def userCtx(*args, edit: bool | int = ..., editCommand: callable = ..., ... function uvLink (line 7705) | def uvLink(*args, b: bool | int = ..., isValid: bool | int = ..., make: ... function uvSnapshot (line 7706) | def uvSnapshot(*args, antiAliased: bool | int = ..., blueColor: int = ..... function view2dToolCtx (line 7709) | def view2dToolCtx(*args, edit: Literal[True], image1: str = ..., image2:... function view2dToolCtx (line 7712) | def view2dToolCtx(*args, alternateContext: bool | int = ..., boxzoom: bo... function viewCamera (line 7713) | def viewCamera(*args, move: str = ..., sideView: bool | int = ..., topVi... function viewClipPlane (line 7714) | def viewClipPlane(*args, autoClipPlane: bool | int = ..., farClipPlane: ... function viewFit (line 7715) | def viewFit(*args, allObjects: bool | int = ..., animate: bool | int = .... function viewHeadOn (line 7716) | def viewHeadOn(*args) -> Any: ... function viewLookAt (line 7717) | def viewLookAt(*args, position: tuple[float, float, float] = ...) -> Any... function viewManip (line 7718) | def viewManip(*args, bottomLeft: bool | int = ..., bottomRight: bool | i... function viewPlace (line 7719) | def viewPlace(*args, animate: bool | int = ..., eyePoint: tuple[float, f... function viewSet (line 7720) | def viewSet(*args, animate: bool | int = ..., back: bool | int = ..., bo... function visor (line 7721) | def visor(*args, addFolder: bool | int = ..., addNodes: bool | int | str... function volumeAxis (line 7724) | def volumeAxis(*args, edit: Literal[True], alongAxis: float = ..., aroun... function volumeAxis (line 7727) | def volumeAxis(*args, alongAxis: bool | int | float = ..., aroundAxis: b... function volumeBind (line 7730) | def volumeBind(*args, edit: Literal[True], influence: str = ...) -> None... function volumeBind (line 7733) | def volumeBind(*args, influence: bool | int | str = ..., name: str = ...... function vortex (line 7736) | def vortex(*args, edit: Literal[True], attenuation: float = ..., axisX: ... function vortex (line 7739) | def vortex(*args, attenuation: bool | int | float = ..., axisX: bool | i... function waitCursor (line 7740) | def waitCursor(*args, query: bool | int = ..., state: bool | int = ...) ... function walkCtx (line 7743) | def walkCtx(*args, edit: Literal[True], crouchCount: float = ..., image1... function walkCtx (line 7746) | def walkCtx(*args, alternateContext: bool | int = ..., crouchCount: bool... function warnUserDialog (line 7747) | def warnUserDialog(*args, addInfo: tuple[str, str] = ..., cbl: str = ...... function warning (line 7748) | def warning(*args, noContext: bool | int = ..., showLineNumber: bool | i... function webBrowser (line 7751) | def webBrowser(*args, edit: Literal[True], annotation: str = ..., backgr... function webBrowser (line 7754) | def webBrowser(*args, annotation: bool | int | str = ..., back: bool | i... function webBrowserPrefs (line 7755) | def webBrowserPrefs(*args, edit: bool | int = ..., preference: tuple[str... function weightsColor (line 7756) | def weightsColor(*args, colorRamp: bool | int | str = ..., deformer: boo... function whatsNewHighlight (line 7757) | def whatsNewHighlight(*args, highlightColor: bool | int | tuple[float, f... function window (line 7760) | def window(*args, exists: Literal[True]) -> bool: ... function window (line 7763) | def window(*args, edit: Literal[True], backgroundColor: tuple[float, flo... function window (line 7766) | def window(*args, backgroundColor: tuple[float, float, float] = ..., clo... function windowPref (line 7769) | def windowPref(*args, edit: Literal[True], height: int = ..., leftEdge: ... function windowPref (line 7772) | def windowPref(*args, enableAll: bool | int = ..., exists: bool | int = ... function wire (line 7775) | def wire(*args, edit: Literal[True], after: bool | int = ..., afterRefer... function wire (line 7778) | def wire(*args, after: bool | int = ..., afterReference: bool | int = ..... function wireContext (line 7781) | def wireContext(*args, edit: Literal[True], crossingEffect: float = ...,... function wireContext (line 7784) | def wireContext(*args, crossingEffect: bool | int | float = ..., deforma... function workspace (line 7785) | def workspace(*args, active: bool | int = ..., baseWorkspace: bool | int... function workspaceControl (line 7788) | def workspaceControl(*args, edit: Literal[True], actLikeMayaUIElement: b... function workspaceControl (line 7791) | def workspaceControl(*args, actLikeMayaUIElement: bool | int = ..., chec... function workspaceControlState (line 7794) | def workspaceControlState(*args, edit: Literal[True], defaultTopLeftCorn... function workspaceControlState (line 7797) | def workspaceControlState(*args, defaultTopLeftCorner: bool | int | tupl... function workspaceLayoutManager (line 7798) | def workspaceLayoutManager(*args, collapseMainWindowControls: tuple[str,... function workspacePanel (line 7799) | def workspacePanel(*args, defineTemplate: str = ..., edit: bool | int = ... function wrinkle (line 7800) | def wrinkle(*args, axis: tuple[float, float, float] = ..., branchCount: ... function wrinkleContext (line 7803) | def wrinkleContext(*args, edit: Literal[True], branchCount: int = ..., b... function wrinkleContext (line 7806) | def wrinkleContext(*args, branchCount: int = ..., branchDepth: int = ...... function writeTake (line 7807) | def writeTake(*args, angle: str = ..., device: str = ..., linear: str = ... function xform (line 7808) | def xform(*args, absolute: bool | int = ..., boundingBox: bool | int = .... function xformConstraint (line 7811) | def xformConstraint(*args, edit: Literal[True], alongNormal: int = ..., ... function xformConstraint (line 7814) | def xformConstraint(*args, alongNormal: int = ..., live: bool | int = ..... function xpmPicker (line 7815) | def xpmPicker(*args, fileName: str = ..., parent: str = ...) -> Any: ... FILE: maya/stubs/maya-stubs/mel/__init__.pyi function createMelWrapper (line 3) | def createMelWrapper(fn, types: list = ..., retType: str = ..., ignoreDe... function eval (line 4) | def eval(*args, **kwargs): ... FILE: maya/stubs/maya-stubs/standalone.pyi function initialize (line 1) | def initialize(*args, **kwargs): ... function uninitialize (line 2) | def uninitialize(*args, **kwargs): ... FILE: maya/stubs/ufe-stubs/__init__.pyi class AreaInterface (line 4) | class AreaInterface: method __init__ (line 5) | def __init__(self, *args, **kwargs) -> None: ... method normalize (line 7) | def normalize(self, arg0: bool, /) -> None: ... method normalize (line 9) | def normalize(self) -> bool: ... method normalizeCmd (line 10) | def normalizeCmd(self, *args, **kwargs): ... class Attribute (line 12) | class Attribute: method __init__ (line 32) | def __init__(self, arg0: SceneItem, /) -> None: ... method clearMetadata (line 33) | def clearMetadata(self, arg0: str, /) -> bool: ... method clearMetadataCmd (line 34) | def clearMetadataCmd(self, *args, **kwargs): ... method getDocumentation (line 35) | def getDocumentation(self) -> str: ... method getMetadata (line 36) | def getMetadata(self, arg0: str, /) -> Value: ... method hasMetadata (line 37) | def hasMetadata(self, arg0: str, /) -> bool: ... method hasValue (line 38) | def hasValue(self) -> bool: ... method sceneItem (line 39) | def sceneItem(self) -> SceneItem: ... method setMetadata (line 40) | def setMetadata(self, arg0: str, arg1: Value, /) -> bool: ... method setMetadataCmd (line 41) | def setMetadataCmd(self, *args, **kwargs): ... method __eq__ (line 42) | def __eq__(self, arg0: Attribute, /) -> bool: ... # type: ignore[over... method __ne__ (line 43) | def __ne__(self, arg0: Attribute, /) -> bool: ... # type: ignore[over... method displayName (line 45) | def displayName(self) -> str: ... method name (line 47) | def name(self) -> str: ... method type (line 49) | def type(self) -> str: ... class AttributeAdded (line 51) | class AttributeAdded(AttributeChanged): method __init__ (line 52) | def __init__(self, arg0: Path, arg1: str, /) -> None: ... method name (line 53) | def name(self) -> str: ... method path (line 54) | def path(self) -> Path: ... class AttributeBool (line 56) | class AttributeBool(Attribute): method __init__ (line 57) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 58) | def get(self) -> bool: ... method set (line 59) | def set(self, arg0: bool, /) -> None: ... method setCmd (line 60) | def setCmd(self, *args, **kwargs): ... class AttributeChanged (line 62) | class AttributeChanged(Notification): method __init__ (line 63) | def __init__(self, arg0: Path, arg1: str, /) -> None: ... method name (line 64) | def name(self) -> str: ... method path (line 65) | def path(self) -> Path: ... class AttributeColorFloat3 (line 67) | class AttributeColorFloat3(Attribute): method __init__ (line 68) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 69) | def get(self) -> Color3f: ... method set (line 70) | def set(self, arg0: Color3f, /) -> None: ... method setCmd (line 71) | def setCmd(self, *args, **kwargs): ... class AttributeColorFloat4 (line 73) | class AttributeColorFloat4(Attribute): method __init__ (line 74) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 75) | def get(self) -> Color4f: ... method set (line 76) | def set(self, arg0: Color4f, /) -> None: ... method setCmd (line 77) | def setCmd(self, *args, **kwargs): ... class AttributeCommand (line 79) | class AttributeCommand(UndoableCommand): method __init__ (line 80) | def __init__(self) -> None: ... method attribute (line 82) | def attribute(self) -> Attribute: ... class AttributeConnectionChanged (line 84) | class AttributeConnectionChanged(AttributeChanged): method __init__ (line 85) | def __init__(self, arg0: Path, arg1: str, /) -> None: ... method name (line 86) | def name(self) -> str: ... method path (line 87) | def path(self) -> Path: ... class AttributeDef (line 89) | class AttributeDef: class IOType (line 90) | class IOType: method __init__ (line 95) | def __init__(self, value: int) -> None: ... method __eq__ (line 96) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 97) | def __hash__(self) -> int: ... method __index__ (line 98) | def __index__(self) -> int: ... method __int__ (line 99) | def __int__(self) -> int: ... method __ne__ (line 100) | def __ne__(self, other: object) -> bool: ... method name (line 102) | def name(self) -> str: ... method value (line 104) | def value(self) -> int: ... method __init__ (line 108) | def __init__(self) -> None: ... method defaultValue (line 109) | def defaultValue(self) -> str: ... method getMetadata (line 110) | def getMetadata(self, arg0: str, /) -> Value: ... method hasMetadata (line 111) | def hasMetadata(self, arg0: str, /) -> bool: ... method ioType (line 112) | def ioType(self, *args, **kwargs): ... method name (line 113) | def name(self) -> str: ... method type (line 114) | def type(self) -> str: ... class AttributeDouble (line 116) | class AttributeDouble(Attribute): method __init__ (line 117) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 118) | def get(self) -> float: ... method set (line 119) | def set(self, arg0: float, /) -> None: ... method setCmd (line 120) | def setCmd(self, *args, **kwargs): ... class AttributeDouble3 (line 122) | class AttributeDouble3(Attribute): method __init__ (line 123) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 124) | def get(self) -> Vector3d: ... method set (line 125) | def set(self, arg0: Vector3d, /) -> None: ... method setCmd (line 126) | def setCmd(self, *args, **kwargs): ... class AttributeEnumString (line 128) | class AttributeEnumString(Attribute): method __init__ (line 129) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 130) | def get(self) -> str: ... method getEnumValues (line 131) | def getEnumValues(self) -> list[str]: ... method set (line 132) | def set(self, arg0: str, /) -> None: ... method setCmd (line 133) | def setCmd(self, *args, **kwargs): ... class AttributeFilename (line 135) | class AttributeFilename(Attribute): method __init__ (line 136) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 137) | def get(self) -> str: ... method set (line 138) | def set(self, arg0: str, /) -> None: ... method setCmd (line 139) | def setCmd(self, *args, **kwargs): ... class AttributeFloat (line 141) | class AttributeFloat(Attribute): method __init__ (line 142) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 143) | def get(self) -> float: ... method set (line 144) | def set(self, arg0: float, /) -> None: ... method setCmd (line 145) | def setCmd(self, *args, **kwargs): ... class AttributeFloat2 (line 147) | class AttributeFloat2(Attribute): method __init__ (line 148) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 149) | def get(self) -> Vector2f: ... method set (line 150) | def set(self, arg0: Vector2f, /) -> None: ... method setCmd (line 151) | def setCmd(self, *args, **kwargs): ... class AttributeFloat3 (line 153) | class AttributeFloat3(Attribute): method __init__ (line 154) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 155) | def get(self) -> Vector3f: ... method set (line 156) | def set(self, arg0: Vector3f, /) -> None: ... method setCmd (line 157) | def setCmd(self, *args, **kwargs): ... class AttributeFloat4 (line 159) | class AttributeFloat4(Attribute): method __init__ (line 160) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 161) | def get(self) -> Vector4f: ... method set (line 162) | def set(self, arg0: Vector4f, /) -> None: ... method setCmd (line 163) | def setCmd(self, *args, **kwargs): ... class AttributeGeneric (line 165) | class AttributeGeneric(Attribute): method __init__ (line 166) | def __init__(self, arg0: SceneItem, /) -> None: ... method nativeType (line 167) | def nativeType(self) -> str: ... class AttributeInfo (line 169) | class AttributeInfo: method __init__ (line 171) | def __init__(self, arg0: Path, arg1: str, /) -> None: ... method __init__ (line 173) | def __init__(self, arg0: Attribute, /) -> None: ... method attribute (line 174) | def attribute(self) -> Attribute: ... method name (line 176) | def name(self) -> str: ... method path (line 178) | def path(self) -> Path: ... method runTimeId (line 180) | def runTimeId(self) -> int: ... class AttributeInt (line 182) | class AttributeInt(Attribute): method __init__ (line 183) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 184) | def get(self) -> int: ... method set (line 185) | def set(self, arg0: int, /) -> None: ... method setCmd (line 186) | def setCmd(self, *args, **kwargs): ... class AttributeInt3 (line 188) | class AttributeInt3(Attribute): method __init__ (line 189) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 190) | def get(self) -> Vector3i: ... method set (line 191) | def set(self, arg0: Vector3i, /) -> None: ... method setCmd (line 192) | def setCmd(self, *args, **kwargs): ... class AttributeMatrix3d (line 194) | class AttributeMatrix3d(Attribute): method __init__ (line 195) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 196) | def get(self) -> Matrix3d: ... method set (line 197) | def set(self, arg0: Matrix3d, /) -> None: ... method setCmd (line 198) | def setCmd(self, *args, **kwargs): ... class AttributeMatrix4d (line 200) | class AttributeMatrix4d(Attribute): method __init__ (line 201) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 202) | def get(self) -> Matrix4d: ... method set (line 203) | def set(self, arg0: Matrix4d, /) -> None: ... method setCmd (line 204) | def setCmd(self, *args, **kwargs): ... class AttributeMetadataChanged (line 206) | class AttributeMetadataChanged(AttributeChanged): method __init__ (line 207) | def __init__(self, arg0: Path, arg1: str, arg2: set[str], /) -> None: ... method keys (line 208) | def keys(self) -> set[str]: ... method name (line 209) | def name(self) -> str: ... method path (line 210) | def path(self) -> Path: ... class AttributeRemoved (line 212) | class AttributeRemoved(AttributeChanged): method __init__ (line 213) | def __init__(self, arg0: Path, arg1: str, /) -> None: ... method name (line 214) | def name(self) -> str: ... method path (line 215) | def path(self) -> Path: ... class AttributeString (line 217) | class AttributeString(Attribute): method __init__ (line 218) | def __init__(self, arg0: SceneItem, /) -> None: ... method get (line 219) | def get(self) -> str: ... method set (line 220) | def set(self, arg0: str, /) -> None: ... method setCmd (line 221) | def setCmd(self, *args, **kwargs): ... class AttributeValueChanged (line 223) | class AttributeValueChanged(AttributeChanged): method __init__ (line 224) | def __init__(self, arg0: Path, arg1: str, /) -> None: ... method name (line 225) | def name(self) -> str: ... method path (line 226) | def path(self) -> Path: ... class Attributes (line 228) | class Attributes: method __init__ (line 230) | def __init__(self) -> None: ... method addAttribute (line 231) | def addAttribute(self, arg0: str, arg1: str, /) -> Attribute: ... method addAttributeCmd (line 232) | def addAttributeCmd(self, *args, **kwargs): ... method addObserver (line 235) | def addObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method addObserver (line 238) | def addObserver(arg0: Observer, /) -> bool: ... method attributeType (line 239) | def attributeType(self, arg0: str, /) -> str: ... method attributes (line 241) | def attributes(arg0: SceneItem, /) -> Attributes: ... method getEnums (line 242) | def getEnums(self, arg0: str, /) -> list[tuple[str, str]]: ... method getRawAddress (line 243) | def getRawAddress(self) -> int: ... method hasAttribute (line 244) | def hasAttribute(self, arg0: str, /) -> bool: ... method hasObserver (line 247) | def hasObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method hasObserver (line 250) | def hasObserver(arg0: Observer, /) -> bool: ... method hasObservers (line 253) | def hasObservers(arg0: Path, /) -> bool: ... method hasObservers (line 256) | def hasObservers(arg0: int, /) -> bool: ... method nbObservers (line 259) | def nbObservers(arg0: SceneItem, /) -> int: ... method nbObservers (line 262) | def nbObservers() -> int: ... method notify (line 264) | def notify(arg0, /) -> None: ... method removeAttribute (line 265) | def removeAttribute(self, arg0: str, /) -> bool: ... method removeAttributeCmd (line 266) | def removeAttributeCmd(self, *args, **kwargs): ... method removeObserver (line 269) | def removeObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method removeObserver (line 272) | def removeObserver(arg0: Observer, /) -> bool: ... method renameAttribute (line 273) | def renameAttribute(self, arg0: str, arg1: str, /) -> Attribute: ... method renameAttributeCmd (line 274) | def renameAttributeCmd(self, *args, **kwargs): ... method sceneItem (line 275) | def sceneItem(self) -> SceneItem: ... method attributeNames (line 277) | def attributeNames(self) -> list[str]: ... class AttributesHandler (line 279) | class AttributesHandler: method __init__ (line 280) | def __init__(self) -> None: ... method attributes (line 281) | def attributes(self, arg0: SceneItem, /) -> Attributes: ... class BBox3d (line 283) | class BBox3d: method __init__ (line 286) | def __init__(self) -> None: ... method empty (line 287) | def empty(self) -> bool: ... class BatchCompositeCommand (line 289) | class BatchCompositeCommand(CompositeUndoableCommand): method __init__ (line 290) | def __init__(self, arg0: Selection, arg1: str, /) -> None: ... method append (line 291) | def append(self, arg0: UndoableCommand, /) -> None: ... method cmdsList (line 292) | def cmdsList(self) -> list[UndoableCommand]: ... method execute (line 293) | def execute(self) -> None: ... method redo (line 294) | def redo(self) -> None: ... method undo (line 295) | def undo(self) -> None: ... class BatchOpsHandler (line 297) | class BatchOpsHandler: method __init__ (line 298) | def __init__(self) -> None: ... method duplicateSelectionCmd (line 300) | def duplicateSelectionCmd(*args, **kwargs): ... method duplicateSelectionCmd_ (line 301) | def duplicateSelectionCmd_(self, *args, **kwargs): ... class Camera (line 303) | class Camera: class Projection (line 304) | class Projection: method __init__ (line 309) | def __init__(self, value: int) -> None: ... method __eq__ (line 310) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 311) | def __hash__(self) -> int: ... method __index__ (line 312) | def __index__(self) -> int: ... method __int__ (line 313) | def __int__(self) -> int: ... method __ne__ (line 314) | def __ne__(self, other: object) -> bool: ... method name (line 316) | def name(self) -> str: ... method value (line 318) | def value(self) -> int: ... method __init__ (line 321) | def __init__(self) -> None: ... method addObserver (line 323) | def addObserver(arg0, arg1, /) -> bool: ... method camera (line 325) | def camera(arg0, /) -> Camera: ... method fStop (line 327) | def fStop(self, arg0: float, /) -> None: ... method fStop (line 329) | def fStop(self) -> float: ... method fStopCmd (line 330) | def fStopCmd(self, *args, **kwargs): ... method farClipPlane (line 332) | def farClipPlane(self, arg0: float, /) -> None: ... method farClipPlane (line 334) | def farClipPlane(self) -> float: ... method farClipPlaneCmd (line 335) | def farClipPlaneCmd(self, *args, **kwargs): ... method focalLength (line 337) | def focalLength(self, arg0: float, /) -> None: ... method focalLength (line 339) | def focalLength(self) -> float: ... method focalLengthCmd (line 340) | def focalLengthCmd(self, *args, **kwargs): ... method focusDistance (line 342) | def focusDistance(self, arg0: float, /) -> None: ... method focusDistance (line 344) | def focusDistance(self) -> float: ... method focusDistanceCmd (line 345) | def focusDistanceCmd(self, *args, **kwargs): ... method hasObserver (line 347) | def hasObserver(arg0, arg1, /) -> bool: ... method hasObservers (line 350) | def hasObservers(arg0, /) -> bool: ... method hasObservers (line 353) | def hasObservers(arg0: int, /) -> bool: ... # type: ignore[overload-c... method horizontalAperture (line 355) | def horizontalAperture(self, arg0: float, /) -> None: ... method horizontalAperture (line 357) | def horizontalAperture(self) -> float: ... method horizontalApertureCmd (line 358) | def horizontalApertureCmd(self, *args, **kwargs): ... method horizontalApertureOffset (line 360) | def horizontalApertureOffset(self, arg0: float, /) -> None: ... method horizontalApertureOffset (line 362) | def horizontalApertureOffset(self) -> float: ... method horizontalApertureOffsetCmd (line 363) | def horizontalApertureOffsetCmd(self, *args, **kwargs): ... method nbObservers (line 365) | def nbObservers(arg0, /) -> int: ... method nearClipPlane (line 367) | def nearClipPlane(self, arg0: float, /) -> None: ... method nearClipPlane (line 369) | def nearClipPlane(self) -> float: ... method nearClipPlaneCmd (line 370) | def nearClipPlaneCmd(self, *args, **kwargs): ... method notify (line 372) | def notify(arg0, /) -> None: ... method path (line 373) | def path(self, *args, **kwargs): ... method projection (line 374) | def projection(self, arg0, /) -> None: ... method projectionCmd (line 375) | def projectionCmd(self, *args, **kwargs): ... method removeObserver (line 378) | def removeObserver(arg0, arg1, /) -> bool: ... method removeObserver (line 381) | def removeObserver(arg0, arg1, /) -> bool: ... # type: ignore[overloa... method sceneItem (line 382) | def sceneItem(self, *args, **kwargs): ... method verticalAperture (line 384) | def verticalAperture(self, arg0: float, /) -> None: ... method verticalAperture (line 386) | def verticalAperture(self) -> float: ... method verticalApertureCmd (line 387) | def verticalApertureCmd(self, *args, **kwargs): ... method verticalApertureOffset (line 389) | def verticalApertureOffset(self, arg0: float, /) -> None: ... method verticalApertureOffset (line 391) | def verticalApertureOffset(self) -> float: ... method verticalApertureOffsetCmd (line 392) | def verticalApertureOffsetCmd(self, *args, **kwargs): ... class CameraChanged (line 394) | class CameraChanged(Notification): method __init__ (line 396) | def __init__(self, arg0: CameraChanged, /) -> None: ... method __init__ (line 398) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 399) | def item(self) -> SceneItem: ... class CameraHandler (line 401) | class CameraHandler: method __init__ (line 402) | def __init__(self) -> None: ... method camera (line 403) | def camera(self, arg0, /) -> Camera: ... method find (line 405) | def find(*args, **kwargs): ... method findAll (line 407) | def findAll(*args, **kwargs): ... method find_ (line 408) | def find_(self, *args, **kwargs): ... class CellInfo (line 410) | class CellInfo: method __init__ (line 418) | def __init__(self) -> None: ... class ChildFilterFlag (line 420) | class ChildFilterFlag: method __init__ (line 424) | def __init__(self) -> None: ... class ClipboardHandler (line 426) | class ClipboardHandler: method __init__ (line 427) | def __init__(self) -> None: ... method canBeCut (line 429) | def canBeCut(arg0: SceneItem, /) -> bool: ... method canBeCut_ (line 430) | def canBeCut_(self, arg0: SceneItem, /) -> bool: ... method clipboardHandler (line 432) | def clipboardHandler(arg0: int, /) -> ClipboardHandler: ... method copyCmd (line 434) | def copyCmd(arg0: Selection, /) -> UndoableCommand: ... method copyCmd_ (line 436) | def copyCmd_(self, arg0: SceneItem, /) -> UndoableCommand: ... method copyCmd_ (line 438) | def copyCmd_(self, arg0: Selection, /) -> UndoableCommand: ... method cutCmd (line 440) | def cutCmd(arg0: Selection, /) -> UndoableCommand: ... method cutCmd_ (line 442) | def cutCmd_(self, arg0: SceneItem, /) -> UndoableCommand: ... method cutCmd_ (line 444) | def cutCmd_(self, arg0: Selection, /) -> UndoableCommand: ... method hasItemsToPaste (line 446) | def hasItemsToPaste(arg0: int, /) -> bool: ... method hasItemsToPaste_ (line 447) | def hasItemsToPaste_(self) -> bool: ... method pasteCmd (line 449) | def pasteCmd(arg0: Selection, /) -> UndoableCommand: ... method pasteCmd_ (line 450) | def pasteCmd_(self, arg0: Selection, /) -> UndoableCommand: ... method preCopy (line 452) | def preCopy() -> None: ... method preCopy_ (line 453) | def preCopy_(self) -> None: ... method preCut (line 455) | def preCut() -> None: ... method preCut_ (line 456) | def preCut_(self) -> None: ... class CodeWrapper (line 458) | class CodeWrapper: method __init__ (line 459) | def __init__(self) -> None: ... method cleanup (line 460) | def cleanup(self, arg0: str, /) -> None: ... method prelude (line 461) | def prelude(self, arg0: str, /) -> None: ... class CodeWrapperContainer (line 463) | class CodeWrapperContainer: method __init__ (line 464) | def __init__(self, arg0: Selection, arg1: str, /) -> None: ... method codeWrappers (line 465) | def codeWrappers(self) -> list[CodeWrapper]: ... class CodeWrapperContext (line 467) | class CodeWrapperContext: method __init__ (line 468) | def __init__(self, arg0: CodeWrapperContainer, arg1: str, /) -> None: ... method __enter__ (line 469) | def __enter__(self) -> None: ... method __exit__ (line 470) | def __exit__(self, arg0: object, arg1: object, arg2: object, /) -> boo... class CodeWrapperHandler (line 472) | class CodeWrapperHandler: method __init__ (line 473) | def __init__(self) -> None: ... method createCodeWrapper (line 474) | def createCodeWrapper(self, arg0: Selection, arg1: str, /) -> CodeWrap... method duplicateSelectionCmd (line 476) | def duplicateSelectionCmd(arg0: Selection, arg1: dict[str, Value], /) ... method duplicateSelectionCmd_ (line 477) | def duplicateSelectionCmd_(self, arg0: Selection, arg1: dict[str, Valu... class Color3f (line 479) | class Color3f: method __init__ (line 482) | def __init__(self) -> None: ... method __init__ (line 484) | def __init__(self, arg0: list[float[3]], /) -> None: ... # type: igno... method __init__ (line 486) | def __init__(self, arg0, /) -> None: ... method __init__ (line 488) | def __init__(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method b (line 489) | def b(self) -> float: ... method g (line 490) | def g(self) -> float: ... method r (line 491) | def r(self) -> float: ... method set (line 492) | def set(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method __eq__ (line 493) | def __eq__(self, arg0: Color3f, /) -> bool: ... # type: ignore[override] method __ne__ (line 494) | def __ne__(self, arg0: Color3f, /) -> bool: ... # type: ignore[override] class Color4f (line 496) | class Color4f: method __init__ (line 499) | def __init__(self) -> None: ... method __init__ (line 501) | def __init__(self, arg0: list[float[4]], /) -> None: ... # type: igno... method __init__ (line 503) | def __init__(self, arg0, /) -> None: ... method __init__ (line 505) | def __init__(self, arg0: float, arg1: float, arg2: float, arg3: float,... method a (line 506) | def a(self) -> float: ... method b (line 507) | def b(self) -> float: ... method g (line 508) | def g(self) -> float: ... method r (line 509) | def r(self) -> float: ... method set (line 510) | def set(self, arg0: float, arg1: float, arg2: float, arg3: float, /) -... method __eq__ (line 511) | def __eq__(self, arg0: Color4f, /) -> bool: ... # type: ignore[override] method __ne__ (line 512) | def __ne__(self, arg0: Color4f, /) -> bool: ... # type: ignore[override] class CompositeUndoableCommand (line 514) | class CompositeUndoableCommand(UndoableCommand): method __init__ (line 516) | def __init__(self) -> None: ... method __init__ (line 518) | def __init__(self, arg0: list[UndoableCommand], /) -> None: ... method __init__ (line 520) | def __init__(self, arg0: UndoableCommand, /) -> None: ... method append (line 521) | def append(self, arg0: UndoableCommand, /) -> None: ... method cmdsList (line 522) | def cmdsList(self) -> list[UndoableCommand]: ... method execute (line 523) | def execute(self) -> None: ... method redo (line 524) | def redo(self) -> None: ... method undo (line 525) | def undo(self) -> None: ... class ConeInterface (line 527) | class ConeInterface: method __init__ (line 528) | def __init__(self, *args, **kwargs) -> None: ... method coneProps (line 529) | def coneProps(self, arg0: float, arg1: float, arg2: float, /) -> None:... method conePropsCmd (line 530) | def conePropsCmd(self, *args, **kwargs): ... class Connection (line 532) | class Connection: method __init__ (line 533) | def __init__(self, arg0: AttributeInfo, arg1: AttributeInfo, /) -> Non... method dst (line 535) | def dst(self) -> AttributeInfo: ... method src (line 537) | def src(self) -> AttributeInfo: ... class ConnectionHandler (line 539) | class ConnectionHandler: method __init__ (line 540) | def __init__(self) -> None: ... method connect (line 542) | def connect(self, arg0: AttributeInfo, arg1: AttributeInfo, /) -> Conn... method connect (line 544) | def connect(self, arg0: Attribute, arg1: Attribute, /) -> Connection: ... method createConnectionCmd (line 545) | def createConnectionCmd(self, *args, **kwargs): ... method deleteConnectionCmd (line 546) | def deleteConnectionCmd(self, *args, **kwargs): ... method disconnect (line 548) | def disconnect(self, arg0: AttributeInfo, arg1: AttributeInfo, /) -> N... method disconnect (line 550) | def disconnect(self, arg0: Attribute, arg1: Attribute, /) -> None: ... method sourceConnections (line 551) | def sourceConnections(self, arg0: SceneItem, /) -> Connections: ... class ConnectionResultUndoableCommand (line 553) | class ConnectionResultUndoableCommand(UndoableCommand): method __init__ (line 554) | def __init__(self) -> None: ... method execute (line 555) | def execute(self) -> None: ... method redo (line 556) | def redo(self) -> None: ... method undo (line 557) | def undo(self) -> None: ... method connection (line 559) | def connection(self) -> Connection: ... class Connections (line 561) | class Connections: class AttributeType (line 562) | class AttributeType: method __init__ (line 568) | def __init__(self, value: int) -> None: ... method __eq__ (line 569) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 570) | def __hash__(self) -> int: ... method __index__ (line 571) | def __index__(self) -> int: ... method __int__ (line 572) | def __int__(self) -> int: ... method __ne__ (line 573) | def __ne__(self, other: object) -> bool: ... method name (line 575) | def name(self) -> str: ... method value (line 577) | def value(self) -> int: ... method __init__ (line 581) | def __init__(self) -> None: ... method allConnections (line 582) | def allConnections(self) -> list[Connection]: ... method connections (line 583) | def connections(self, arg0: Attribute, arg1, /) -> list[Connection]: ... method hasConnection (line 584) | def hasConnection(self, arg0: Attribute, arg1, /) -> bool: ... class ContextItem (line 586) | class ContextItem: method __init__ (line 598) | def __init__(self) -> None: ... method getMetaData (line 599) | def getMetaData(self, *args, **kwargs): ... method setMetaData (line 600) | def setMetaData(self, arg0: str, arg1, /) -> None: ... class ContextOps (line 602) | class ContextOps: method __init__ (line 603) | def __init__(self) -> None: ... method contextOps (line 605) | def contextOps(arg0, /) -> ContextOps: ... method doOp (line 606) | def doOp(self, arg0: list[str], /) -> None: ... method doOpCmd (line 607) | def doOpCmd(self, *args, **kwargs): ... method getItems (line 608) | def getItems(self, arg0: list[str], /) -> list[ContextItem]: ... method sceneItem (line 609) | def sceneItem(self, *args, **kwargs): ... class ContextOpsHandler (line 611) | class ContextOpsHandler: method __init__ (line 612) | def __init__(self) -> None: ... method contextOps (line 613) | def contextOps(self, arg0, /) -> ContextOps: ... class CylinderInterface (line 615) | class CylinderInterface: method __init__ (line 616) | def __init__(self, *args, **kwargs) -> None: ... method volumeProps (line 617) | def volumeProps(self, arg0: float, arg1: float, /) -> None: ... method volumePropsCmd (line 618) | def volumePropsCmd(self, *args, **kwargs): ... class DirectionalInterface (line 620) | class DirectionalInterface: method __init__ (line 621) | def __init__(self, *args, **kwargs) -> None: ... method angle (line 623) | def angle(self, arg0: float, /) -> None: ... method angle (line 625) | def angle(self) -> float: ... method angleCmd (line 626) | def angleCmd(self, *args, **kwargs): ... class DiskInterface (line 628) | class DiskInterface: method __init__ (line 629) | def __init__(self, *args, **kwargs) -> None: ... method volumeProps (line 630) | def volumeProps(self, arg0: float, /) -> None: ... method volumePropsCmd (line 631) | def volumePropsCmd(self, *args, **kwargs): ... class DomeInterface (line 633) | class DomeInterface: method __init__ (line 634) | def __init__(self, *args, **kwargs) -> None: ... method volumeProps (line 635) | def volumeProps(self, arg0: float, /) -> None: ... method volumePropsCmd (line 636) | def volumePropsCmd(self, *args, **kwargs): ... class Duplicate (line 638) | class Duplicate: method __init__ (line 642) | def __init__(self) -> None: ... method __init__ (line 644) | def __init__(self, arg0, arg1, /) -> None: ... class EditTransform3dHint (line 646) | class EditTransform3dHint: class Type (line 647) | class Type: method __init__ (line 656) | def __init__(self, value: int) -> None: ... method __eq__ (line 657) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 658) | def __hash__(self) -> int: ... method __index__ (line 659) | def __index__(self) -> int: ... method __int__ (line 660) | def __int__(self) -> int: ... method __ne__ (line 661) | def __ne__(self, other: object) -> bool: ... method name (line 663) | def name(self) -> str: ... method value (line 665) | def value(self) -> int: ... method __init__ (line 673) | def __init__(self) -> None: ... method __init__ (line 675) | def __init__(self, arg0, /) -> None: ... method type (line 676) | def type(self, *args, **kwargs): ... class Hierarchy (line 678) | class Hierarchy: method __init__ (line 679) | def __init__(self) -> None: ... method appendChildCmd (line 680) | def appendChildCmd(self, arg0: SceneItem, /) -> InsertChildCommand: ... method children (line 681) | def children(self) -> list[SceneItem]: ... method createGroup (line 682) | def createGroup(self, arg0: PathComponent, /) -> SceneItem: ... method createGroupCmd (line 683) | def createGroupCmd(self, arg0: PathComponent, /) -> InsertChildCommand... method createItem (line 685) | def createItem(arg0: Path, /) -> SceneItem: ... method defaultParent (line 686) | def defaultParent(self) -> SceneItem: ... method filteredChildren (line 687) | def filteredChildren(self, arg0: list[ChildFilterFlag], /) -> list[Sce... method hasChildren (line 688) | def hasChildren(self) -> bool: ... method hasFilteredChildren (line 689) | def hasFilteredChildren(self, arg0: list[ChildFilterFlag], /) -> bool:... method hierarchy (line 691) | def hierarchy(arg0: SceneItem, /) -> Hierarchy: ... method insertChild (line 692) | def insertChild(self, arg0: SceneItem, arg1: SceneItem, /) -> SceneIte... method insertChildCmd (line 693) | def insertChildCmd(self, arg0: SceneItem, arg1: SceneItem, /) -> Inser... method parent (line 694) | def parent(self) -> SceneItem: ... method reorder (line 695) | def reorder(self, arg0: list[SceneItem], /) -> bool: ... method reorderCmd (line 696) | def reorderCmd(self, arg0: list[SceneItem], /) -> UndoableCommand: ... method sceneItem (line 697) | def sceneItem(self) -> SceneItem: ... method ungroup (line 698) | def ungroup(self) -> bool: ... method ungroupCmd (line 699) | def ungroupCmd(self) -> UndoableCommand: ... class HierarchyHandler (line 701) | class HierarchyHandler: method __init__ (line 702) | def __init__(self) -> None: ... method childFilter (line 703) | def childFilter(self, *args, **kwargs): ... method createItem (line 704) | def createItem(self, arg0: Path, /) -> SceneItem: ... method hierarchy (line 705) | def hierarchy(self, *args, **kwargs): ... class InsertChildCommand (line 707) | class InsertChildCommand(UndoableCommand): method __init__ (line 708) | def __init__(self) -> None: ... method insertedChild (line 710) | def insertedChild(self) -> SceneItem: ... class Light (line 712) | class Light: class Type (line 713) | class Type: method __init__ (line 725) | def __init__(self, value: int) -> None: ... method __eq__ (line 726) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 727) | def __hash__(self) -> int: ... method __index__ (line 728) | def __index__(self) -> int: ... method __int__ (line 729) | def __int__(self) -> int: ... method __ne__ (line 730) | def __ne__(self, other: object) -> bool: ... method name (line 732) | def name(self) -> str: ... method value (line 734) | def value(self) -> int: ... method __init__ (line 744) | def __init__(self) -> None: ... method addObserver (line 746) | def addObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method areaInterface (line 747) | def areaInterface(self, *args, **kwargs): ... method color (line 749) | def color(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method color (line 751) | def color(self) -> Color3f: ... method colorCmd (line 752) | def colorCmd(self, *args, **kwargs): ... method coneInterface (line 753) | def coneInterface(self, *args, **kwargs): ... method diffuse (line 755) | def diffuse(self, arg0: float, /) -> None: ... method diffuse (line 757) | def diffuse(self) -> float: ... method diffuseCmd (line 758) | def diffuseCmd(self, *args, **kwargs): ... method directionalInterface (line 759) | def directionalInterface(self, *args, **kwargs): ... method hasObserver (line 761) | def hasObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method hasObservers (line 764) | def hasObservers(arg0: Path, /) -> bool: ... method hasObservers (line 767) | def hasObservers(arg0: int, /) -> bool: ... method intensity (line 769) | def intensity(self, arg0: float, /) -> None: ... method intensity (line 771) | def intensity(self) -> float: ... method intensityCmd (line 772) | def intensityCmd(self, *args, **kwargs): ... method light (line 774) | def light(arg0: SceneItem, /) -> Light: ... method nbObservers (line 776) | def nbObservers(arg0: SceneItem, /) -> int: ... method notify (line 778) | def notify(arg0: Path, /) -> None: ... method path (line 779) | def path(self) -> Path: ... method removeObserver (line 781) | def removeObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method sceneItem (line 782) | def sceneItem(self) -> SceneItem: ... method shadowColor (line 784) | def shadowColor(self, arg0: float, arg1: float, arg2: float, /) -> Non... method shadowColor (line 786) | def shadowColor(self) -> Color3f: ... method shadowColorCmd (line 787) | def shadowColorCmd(self, *args, **kwargs): ... method shadowEnable (line 789) | def shadowEnable(self, arg0: bool, /) -> None: ... method shadowEnable (line 791) | def shadowEnable(self) -> bool: ... method shadowEnableCmd (line 792) | def shadowEnableCmd(self, *args, **kwargs): ... method specular (line 794) | def specular(self, arg0: float, /) -> None: ... method specular (line 796) | def specular(self) -> float: ... method specularCmd (line 797) | def specularCmd(self, *args, **kwargs): ... method sphereInterface (line 798) | def sphereInterface(self, *args, **kwargs): ... method type (line 799) | def type(self, *args, **kwargs): ... class LightChanged (line 801) | class LightChanged(Notification): method __init__ (line 803) | def __init__(self, arg0: LightChanged, /) -> None: ... method __init__ (line 805) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 806) | def item(self) -> SceneItem: ... class LightHandler (line 808) | class LightHandler: method __init__ (line 809) | def __init__(self) -> None: ... method light (line 810) | def light(self, arg0: SceneItem, /) -> Light: ... class Light_ConeProps (line 812) | class Light_ConeProps: method __init__ (line 816) | def __init__(self) -> None: ... class Light_SphereProps (line 818) | class Light_SphereProps: method __init__ (line 821) | def __init__(self) -> None: ... class Light_v5_5 (line 823) | class Light_v5_5: method __init__ (line 824) | def __init__(self) -> None: ... method addObserver (line 826) | def addObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method color (line 828) | def color(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method color (line 830) | def color(self) -> Color3f: ... method colorCmd (line 831) | def colorCmd(self, *args, **kwargs): ... method cylinderInterface (line 832) | def cylinderInterface(self, *args, **kwargs): ... method diffuse (line 834) | def diffuse(self, arg0: float, /) -> None: ... method diffuse (line 836) | def diffuse(self) -> float: ... method diffuseCmd (line 837) | def diffuseCmd(self, *args, **kwargs): ... method diskInterface (line 838) | def diskInterface(self, *args, **kwargs): ... method domeInterface (line 839) | def domeInterface(self, *args, **kwargs): ... method hasObserver (line 841) | def hasObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method hasObservers (line 844) | def hasObservers(arg0: Path, /) -> bool: ... method hasObservers (line 847) | def hasObservers(arg0: int, /) -> bool: ... method intensity (line 849) | def intensity(self, arg0: float, /) -> None: ... method intensity (line 851) | def intensity(self) -> float: ... method intensityCmd (line 852) | def intensityCmd(self, *args, **kwargs): ... method light (line 854) | def light(arg0: SceneItem, /) -> Light_v5_5: ... method nbObservers (line 856) | def nbObservers(arg0: SceneItem, /) -> int: ... method notify (line 858) | def notify(arg0: Path, /) -> None: ... method path (line 859) | def path(self) -> Path: ... method removeObserver (line 861) | def removeObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method sceneItem (line 862) | def sceneItem(self) -> SceneItem: ... method shadowColor (line 864) | def shadowColor(self, arg0: float, arg1: float, arg2: float, /) -> Non... method shadowColor (line 866) | def shadowColor(self) -> Color3f: ... method shadowColorCmd (line 867) | def shadowColorCmd(self, *args, **kwargs): ... method shadowEnable (line 869) | def shadowEnable(self, arg0: bool, /) -> None: ... method shadowEnable (line 871) | def shadowEnable(self) -> bool: ... method shadowEnableCmd (line 872) | def shadowEnableCmd(self, *args, **kwargs): ... method specular (line 874) | def specular(self, arg0: float, /) -> None: ... method specular (line 876) | def specular(self) -> float: ... method specularCmd (line 877) | def specularCmd(self, *args, **kwargs): ... method type (line 878) | def type(self) -> Light.Type: ... class Material (line 880) | class Material: method __init__ (line 881) | def __init__(self) -> None: ... method getMaterials (line 882) | def getMaterials(self) -> list[SceneItem]: ... method hasMaterial (line 883) | def hasMaterial(self) -> bool: ... method material (line 885) | def material(arg0: SceneItem, /) -> Material: ... class MaterialHandler (line 887) | class MaterialHandler: method __init__ (line 888) | def __init__(self) -> None: ... method material (line 889) | def material(self, arg0: SceneItem, /) -> Material: ... class Matrix3d (line 891) | class Matrix3d: method __init__ (line 894) | def __init__(self) -> None: ... method __init__ (line 896) | def __init__(self, arg0: list[None], /) -> None: ... method __eq__ (line 897) | def __eq__(self, arg0: Matrix3d, /) -> bool: ... # type: ignore[overr... method __mul__ (line 898) | def __mul__(self, arg0: Matrix3d, /) -> Matrix3d: ... method __ne__ (line 899) | def __ne__(self, arg0: Matrix3d, /) -> bool: ... # type: ignore[overr... class Matrix4d (line 901) | class Matrix4d: method __init__ (line 904) | def __init__(self) -> None: ... method __init__ (line 906) | def __init__(self, arg0: list[None], /) -> None: ... method __eq__ (line 907) | def __eq__(self, arg0: Matrix4d, /) -> bool: ... # type: ignore[overr... method __mul__ (line 908) | def __mul__(self, arg0: Matrix4d, /) -> Matrix4d: ... method __ne__ (line 909) | def __ne__(self, arg0: Matrix4d, /) -> bool: ... # type: ignore[overr... class NodeDef (line 911) | class NodeDef: method __init__ (line 912) | def __init__(self) -> None: ... method classification (line 913) | def classification(self, arg0: int, /) -> str: ... method createNode (line 914) | def createNode(self, arg0: SceneItem, arg1: PathComponent, /) -> Scene... method createNodeCmd (line 915) | def createNodeCmd(self, *args, **kwargs): ... method definition (line 917) | def definition(arg0: int, arg1: str, /) -> NodeDef: ... method getMetadata (line 918) | def getMetadata(self, *args, **kwargs): ... method hasInput (line 919) | def hasInput(self, arg0: str, /) -> bool: ... method hasMetadata (line 920) | def hasMetadata(self, arg0: str, /) -> bool: ... method hasOutput (line 921) | def hasOutput(self, arg0: str, /) -> bool: ... method input (line 922) | def input(self, *args, **kwargs): ... method inputNames (line 923) | def inputNames(self) -> list[str]: ... method inputs (line 924) | def inputs(self, *args, **kwargs): ... method nbClassifications (line 925) | def nbClassifications(self) -> int: ... method output (line 926) | def output(self, *args, **kwargs): ... method outputNames (line 927) | def outputNames(self) -> list[str]: ... method outputs (line 928) | def outputs(self, *args, **kwargs): ... method type (line 929) | def type(self) -> str: ... class NodeDefHandler (line 931) | class NodeDefHandler: method __init__ (line 932) | def __init__(self) -> None: ... method definition (line 934) | def definition(self, arg0: SceneItem, /) -> NodeDef: ... method definition (line 936) | def definition(self, arg0: str, /) -> NodeDef: ... method definitions (line 937) | def definitions(self, arg0: str, /) -> list[NodeDef]: ... class Notification (line 939) | class Notification: method __init__ (line 941) | def __init__(self, arg0: Notification, /) -> None: ... method __init__ (line 943) | def __init__(self) -> None: ... class NotificationGuard (line 945) | class NotificationGuard: method __init__ (line 946) | def __init__(self, arg0: Subject, /) -> None: ... method __enter__ (line 947) | def __enter__(self) -> None: ... method __exit__ (line 948) | def __exit__(self, arg0: object, arg1: object, arg2: object, /) -> boo... class Object3d (line 950) | class Object3d: method __init__ (line 951) | def __init__(self) -> None: ... method addObserver (line 953) | def addObserver(arg0: Observer, /) -> bool: ... method boundingBox (line 954) | def boundingBox(self) -> BBox3d: ... method hasObserver (line 956) | def hasObserver(arg0: Observer, /) -> bool: ... method nbObservers (line 958) | def nbObservers() -> int: ... method notify (line 960) | def notify(arg0: Notification, /) -> None: ... method object3d (line 962) | def object3d(arg0: SceneItem, /) -> Object3d: ... method removeObserver (line 964) | def removeObserver(arg0: Observer, /) -> bool: ... method sceneItem (line 965) | def sceneItem(self) -> SceneItem: ... method setVisibility (line 966) | def setVisibility(self, arg0: bool, /) -> None: ... method setVisibleCmd (line 967) | def setVisibleCmd(self, *args, **kwargs): ... method visibility (line 968) | def visibility(self) -> bool: ... class Object3dHandler (line 970) | class Object3dHandler: method __init__ (line 971) | def __init__(self) -> None: ... method object3d (line 972) | def object3d(self, arg0: SceneItem, /) -> Object3d: ... class ObjectAdd (line 974) | class ObjectAdd(SceneChanged): method __init__ (line 975) | def __init__(self, arg0: SceneItem, /) -> None: ... method changedPath (line 976) | def changedPath(self) -> Path: ... method item (line 977) | def item(self) -> SceneItem: ... class ObjectDelete (line 979) | class ObjectDelete(SceneChanged): class SubOpType (line 980) | class SubOpType: method __init__ (line 987) | def __init__(self, value: int) -> None: ... method __eq__ (line 988) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 989) | def __hash__(self) -> int: ... method __index__ (line 990) | def __index__(self) -> int: ... method __int__ (line 991) | def __int__(self) -> int: ... method __ne__ (line 992) | def __ne__(self, other: object) -> bool: ... method name (line 994) | def name(self) -> str: ... method value (line 996) | def value(self) -> int: ... method __init__ (line 1001) | def __init__(self, arg0: Path, /) -> None: ... method changedPath (line 1002) | def changedPath(self) -> Path: ... method path (line 1003) | def path(self) -> Path: ... class ObjectDestroyed (line 1005) | class ObjectDestroyed(ObjectDelete): method __init__ (line 1006) | def __init__(self, arg0: Path, /) -> None: ... class ObjectPathAdd (line 1008) | class ObjectPathAdd(ObjectPathChange): method __init__ (line 1009) | def __init__(self, arg0: SceneItem, /) -> None: ... method changedPath (line 1010) | def changedPath(self) -> Path: ... method item (line 1011) | def item(self) -> SceneItem: ... class ObjectPathChange (line 1013) | class ObjectPathChange(SceneChanged): class SubOpType (line 1014) | class SubOpType: method __init__ (line 1022) | def __init__(self, value: int) -> None: ... method __eq__ (line 1023) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1024) | def __hash__(self) -> int: ... method __index__ (line 1025) | def __index__(self) -> int: ... method __int__ (line 1026) | def __int__(self) -> int: ... method __ne__ (line 1027) | def __ne__(self, other: object) -> bool: ... method name (line 1029) | def name(self) -> str: ... method value (line 1031) | def value(self) -> int: ... method __init__ (line 1037) | def __init__(self) -> None: ... class ObjectPathRemove (line 1039) | class ObjectPathRemove(ObjectPathChange): method __init__ (line 1040) | def __init__(self, arg0: Path, /) -> None: ... method changedPath (line 1041) | def changedPath(self) -> Path: ... method removedPath (line 1042) | def removedPath(self) -> Path: ... class ObjectPostDelete (line 1044) | class ObjectPostDelete(ObjectDelete): method __init__ (line 1045) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 1046) | def item(self) -> SceneItem: ... class ObjectPreDelete (line 1048) | class ObjectPreDelete(ObjectDelete): method __init__ (line 1049) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 1050) | def item(self) -> SceneItem: ... class ObjectRename (line 1052) | class ObjectRename(ObjectPathChange): method __init__ (line 1053) | def __init__(self, arg0: SceneItem, arg1: Path, /) -> None: ... method changedPath (line 1054) | def changedPath(self) -> Path: ... method item (line 1055) | def item(self) -> SceneItem: ... method previousPath (line 1056) | def previousPath(self) -> Path: ... class ObjectReparent (line 1058) | class ObjectReparent(ObjectPathChange): method __init__ (line 1059) | def __init__(self, arg0: SceneItem, arg1: Path, /) -> None: ... method changedPath (line 1060) | def changedPath(self) -> Path: ... method item (line 1061) | def item(self) -> SceneItem: ... method previousPath (line 1062) | def previousPath(self) -> Path: ... class ObservableSelection (line 1064) | class ObservableSelection(Selection, Subject): method __init__ (line 1066) | def __init__(self) -> None: ... method __init__ (line 1068) | def __init__(self, arg0: ObservableSelection, /) -> None: ... method append (line 1069) | def append(self, arg0: SceneItem, /) -> bool: ... method clear (line 1070) | def clear(self) -> None: ... method insert (line 1071) | def insert(self, arg0: SceneItem, arg1: SceneItem, /) -> bool: ... method remove (line 1072) | def remove(self, arg0: SceneItem, /) -> bool: ... method replaceWith (line 1073) | def replaceWith(self, arg0: Selection, /) -> None: ... class Observer (line 1075) | class Observer: method __init__ (line 1076) | def __init__(self) -> None: ... method __call__ (line 1077) | def __call__(self, arg0, /) -> None: ... class PasteClipboardCommand (line 1079) | class PasteClipboardCommand(UndoableCommand): class PasteInfo (line 1080) | class PasteInfo: method __init__ (line 1081) | def __init__(self) -> None: ... method failedPastes (line 1083) | def failedPastes(self) -> list[Path]: ... method pasteTarget (line 1085) | def pasteTarget(self) -> Path: ... method successfulPastes (line 1087) | def successfulPastes(self) -> list[Path]: ... method __init__ (line 1088) | def __init__(self) -> None: ... method getPasteInfos (line 1089) | def getPasteInfos(self, *args, **kwargs): ... method targetItems (line 1090) | def targetItems(self) -> list[SceneItem]: ... class Path (line 1092) | class Path: method __init__ (line 1094) | def __init__(self) -> None: ... method __init__ (line 1096) | def __init__(self, arg0: Path, /) -> None: ... method __init__ (line 1098) | def __init__(self, arg0: list[PathSegment], /) -> None: ... method __init__ (line 1100) | def __init__(self, arg0: PathSegment, /) -> None: ... method back (line 1101) | def back(self) -> PathComponent: ... method head (line 1102) | def head(self, arg0: int, /) -> Path: ... method nbSegments (line 1103) | def nbSegments(self) -> int: ... method pop (line 1104) | def pop(self) -> Path: ... method popHead (line 1105) | def popHead(self) -> Path: ... method popSegment (line 1106) | def popSegment(self) -> Path: ... method reparent (line 1107) | def reparent(self, arg0: Path, arg1: Path, /) -> Path: ... method replaceComponent (line 1108) | def replaceComponent(self, arg0: int, arg1: PathComponent, /) -> Path:... method runTimeId (line 1109) | def runTimeId(self) -> int: ... method sibling (line 1110) | def sibling(self, arg0: PathComponent, /) -> Path: ... method startsWith (line 1111) | def startsWith(self, arg0: Path, /) -> bool: ... method __add__ (line 1113) | def __add__(self, arg0: str, /) -> Path: ... method __add__ (line 1115) | def __add__(self, arg0: PathComponent, /) -> Path: ... method __add__ (line 1117) | def __add__(self, arg0: PathSegment, /) -> Path: ... method __eq__ (line 1118) | def __eq__(self, arg0: Path, /) -> bool: ... # type: ignore[override] method __hash__ (line 1119) | def __hash__(self) -> int: ... method __iter__ (line 1120) | def __iter__(self) -> Iterator: ... method __len__ (line 1121) | def __len__(self) -> int: ... method __ne__ (line 1122) | def __ne__(self, arg0: Path, /) -> bool: ... # type: ignore[override] method segments (line 1124) | def segments(self) -> list[PathSegment]: ... class PathComponent (line 1126) | class PathComponent: method __init__ (line 1128) | def __init__(self, arg0: PathComponent, /) -> None: ... method __init__ (line 1130) | def __init__(self, arg0: str, /) -> None: ... method exists (line 1132) | def exists(arg0: str, /) -> bool: ... method tableSize (line 1134) | def tableSize() -> int: ... method __eq__ (line 1135) | def __eq__(self, arg0: PathComponent, /) -> bool: ... # type: ignore[... method __hash__ (line 1136) | def __hash__(self) -> int: ... method __ne__ (line 1137) | def __ne__(self, arg0: PathComponent, /) -> bool: ... # type: ignore[... class PathMappingHandler (line 1139) | class PathMappingHandler: method __init__ (line 1140) | def __init__(self) -> None: ... method fromHost (line 1141) | def fromHost(self, *args, **kwargs): ... method pathMappingHandler (line 1144) | def pathMappingHandler(arg0: int, /) -> PathMappingHandler: ... method pathMappingHandler (line 1147) | def pathMappingHandler(arg0, /) -> PathMappingHandler: ... method toHost (line 1148) | def toHost(self, *args, **kwargs): ... class PathSegment (line 1150) | class PathSegment: method __init__ (line 1152) | def __init__(self, arg0: PathSegment, /) -> None: ... method __init__ (line 1154) | def __init__(self, arg0: str, arg1: int, arg2: str, /) -> None: ... method __init__ (line 1156) | def __init__(self, arg0: list[PathComponent], arg1: int, arg2: str, /)... method __init__ (line 1158) | def __init__(self, arg0: PathComponent, arg1: int, arg2: str, /) -> No... method components (line 1159) | def components(self) -> list[PathComponent]: ... method head (line 1160) | def head(self, arg0: int, /) -> PathSegment: ... method pop (line 1161) | def pop(self) -> PathSegment: ... method popHead (line 1162) | def popHead(self) -> PathSegment: ... method runTimeId (line 1163) | def runTimeId(self) -> int: ... method __eq__ (line 1164) | def __eq__(self, arg0: PathSegment, /) -> bool: ... # type: ignore[ov... method __iter__ (line 1165) | def __iter__(self) -> Iterator: ... method __len__ (line 1166) | def __len__(self) -> int: ... method __ne__ (line 1167) | def __ne__(self, arg0: PathSegment, /) -> bool: ... # type: ignore[ov... method separator (line 1169) | def separator(self) -> str: ... class PathSubject (line 1171) | class PathSubject(Subject): method __init__ (line 1172) | def __init__(self, arg0: Path, arg1, arg2, /) -> None: ... class Rename (line 1174) | class Rename: method __init__ (line 1178) | def __init__(self) -> None: ... method __init__ (line 1180) | def __init__(self, arg0: SceneItem, arg1, /) -> None: ... class RunTimeMgr (line 1182) | class RunTimeMgr: class Handlers (line 1183) | class Handlers: method __init__ (line 1200) | def __init__(self) -> None: ... method __init__ (line 1201) | def __init__(self, *args, **kwargs) -> None: ... method attributesHandler (line 1202) | def attributesHandler(self, arg0: int, /) -> AttributesHandler: ... method batchOpsHandler (line 1203) | def batchOpsHandler(self, arg0: int, /) -> BatchOpsHandler: ... method cameraHandler (line 1204) | def cameraHandler(self, arg0: int, /) -> CameraHandler: ... method clipboardHandler (line 1205) | def clipboardHandler(self, *args, **kwargs): ... method codeWrapperHandler (line 1206) | def codeWrapperHandler(self, *args, **kwargs): ... method connectionHandler (line 1207) | def connectionHandler(self, arg0: int, /) -> ConnectionHandler: ... method contextOpsHandler (line 1208) | def contextOpsHandler(self, arg0: int, /) -> ContextOpsHandler: ... method getId (line 1209) | def getId(self, arg0: str, /) -> int: ... method getIds (line 1210) | def getIds(self) -> list[int]: ... method getName (line 1211) | def getName(self, arg0: int, /) -> str: ... method hasId (line 1212) | def hasId(self, arg0: int, /) -> bool: ... method hierarchyHandler (line 1213) | def hierarchyHandler(self, arg0: int, /) -> HierarchyHandler: ... method instance (line 1215) | def instance() -> RunTimeMgr: ... method lightHandler (line 1216) | def lightHandler(self, arg0: int, /) -> LightHandler: ... method materialHandler (line 1217) | def materialHandler(self, arg0: int, /) -> MaterialHandler: ... method nodeDefHandler (line 1218) | def nodeDefHandler(self, arg0: int, /) -> NodeDefHandler: ... method object3dHandler (line 1219) | def object3dHandler(self, arg0: int, /) -> Object3dHandler: ... method pathMappingHandler (line 1220) | def pathMappingHandler(self, arg0: int, /) -> PathMappingHandler: ... method register (line 1221) | def register(self, arg0: str, arg1, /) -> int: ... method sceneItemOpsHandler (line 1222) | def sceneItemOpsHandler(self, arg0: int, /) -> SceneItemOpsHandler: ... method sceneSegmentHandler (line 1223) | def sceneSegmentHandler(self, arg0: int, /) -> SceneSegmentHandler: ... method setAttributesHandler (line 1224) | def setAttributesHandler(self, arg0: int, arg1: AttributesHandler, /) ... method setBatchOpsHandler (line 1225) | def setBatchOpsHandler(self, arg0: int, arg1: BatchOpsHandler, /) -> N... method setCameraHandler (line 1226) | def setCameraHandler(self, arg0: int, arg1: CameraHandler, /) -> None:... method setClipboardHandler (line 1227) | def setClipboardHandler(self, arg0: int, arg1, /) -> None: ... method setCodeWrapperHandler (line 1228) | def setCodeWrapperHandler(self, arg0: int, arg1, /) -> None: ... method setConnectionHandler (line 1229) | def setConnectionHandler(self, arg0: int, arg1: ConnectionHandler, /) ... method setContextOpsHandler (line 1230) | def setContextOpsHandler(self, arg0: int, arg1: ContextOpsHandler, /) ... method setHierarchyHandler (line 1231) | def setHierarchyHandler(self, arg0: int, arg1: HierarchyHandler, /) ->... method setLightHandler (line 1232) | def setLightHandler(self, arg0: int, arg1: LightHandler, /) -> None: ... method setMaterialHandler (line 1233) | def setMaterialHandler(self, arg0: int, arg1: MaterialHandler, /) -> N... method setNodeDefHandler (line 1234) | def setNodeDefHandler(self, arg0: int, arg1: NodeDefHandler, /) -> Non... method setObject3dHandler (line 1235) | def setObject3dHandler(self, arg0: int, arg1: Object3dHandler, /) -> N... method setPathMappingHandler (line 1236) | def setPathMappingHandler(self, arg0: int, arg1: PathMappingHandler, /... method setSceneItemOpsHandler (line 1237) | def setSceneItemOpsHandler(self, arg0: int, arg1: SceneItemOpsHandler,... method setSceneSegmentHandler (line 1238) | def setSceneSegmentHandler(self, arg0: int, arg1: SceneSegmentHandler,... method setTransform3dHandler (line 1239) | def setTransform3dHandler(self, arg0: int, arg1: Transform3dHandler, /... method setUIInfoHandler (line 1240) | def setUIInfoHandler(self, arg0: int, arg1: UIInfoHandler, /) -> None:... method setUINodeGraphNodeHandler (line 1241) | def setUINodeGraphNodeHandler(self, arg0: int, arg1: UINodeGraphNodeHa... method transform3dHandler (line 1242) | def transform3dHandler(self, arg0: int, /) -> Transform3dHandler: ... method uiInfoHandler (line 1243) | def uiInfoHandler(self, arg0: int, /) -> UIInfoHandler: ... method uiNodeGraphNodeHandler (line 1244) | def uiNodeGraphNodeHandler(self, arg0: int, /) -> UINodeGraphNodeHandl... method unregister (line 1245) | def unregister(self, arg0: int, /) -> None: ... class Scene (line 1247) | class Scene: method __init__ (line 1248) | def __init__(self) -> None: ... method addObserver (line 1250) | def addObserver(arg0: Observer, /) -> bool: ... method hasObserver (line 1252) | def hasObserver(arg0: Observer, /) -> bool: ... method initializeInstance (line 1254) | def initializeInstance(arg0: Scene, /) -> None: ... method instance (line 1256) | def instance() -> Scene: ... method nbObservers (line 1258) | def nbObservers() -> int: ... method notify (line 1260) | def notify(arg0: Notification, /) -> None: ... method removeObserver (line 1262) | def removeObserver(arg0: Observer, /) -> bool: ... class SceneChanged (line 1264) | class SceneChanged(Notification): class OpType (line 1265) | class OpType: method __init__ (line 1273) | def __init__(self, value: int) -> None: ... method __eq__ (line 1274) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1275) | def __hash__(self) -> int: ... method __index__ (line 1276) | def __index__(self) -> int: ... method __int__ (line 1277) | def __int__(self) -> int: ... method __ne__ (line 1278) | def __ne__(self, other: object) -> bool: ... method name (line 1280) | def name(self) -> str: ... method value (line 1282) | def value(self) -> int: ... method __init__ (line 1288) | def __init__(self, *args, **kwargs) -> None: ... method changedPath (line 1289) | def changedPath(self) -> Path: ... method opType (line 1290) | def opType(self, *args, **kwargs): ... method subOpType (line 1291) | def subOpType(self) -> int: ... class SceneCompositeNotification (line 1293) | class SceneCompositeNotification(SceneChanged): class Op (line 1294) | class Op: method __init__ (line 1299) | def __init__(self, arg0: SceneChanged.OpType, arg1: int, arg2: Scene... method __init__ (line 1301) | def __init__(self) -> None: ... method __init__ (line 1303) | def __init__(self, arg0: SceneCompositeNotification, /) -> None: ... method appendOp (line 1304) | def appendOp(self, arg0, /) -> None: ... method appendSceneChanged (line 1305) | def appendSceneChanged(self, arg0: SceneChanged, /) -> None: ... method changedPath (line 1306) | def changedPath(self) -> Path: ... method empty (line 1307) | def empty(self) -> bool: ... method __iter__ (line 1308) | def __iter__(self) -> Iterator: ... method __len__ (line 1309) | def __len__(self) -> int: ... class SceneItem (line 1311) | class SceneItem: method __init__ (line 1312) | def __init__(self, arg0: Path, /) -> None: ... method ancestorNodeTypes (line 1313) | def ancestorNodeTypes(self) -> list[str]: ... method clearGroupMetadata (line 1314) | def clearGroupMetadata(self, arg0: str, arg1: str, /) -> None: ... method clearGroupMetadataCmd (line 1315) | def clearGroupMetadataCmd(self, *args, **kwargs): ... method clearMetadata (line 1316) | def clearMetadata(self, arg0: str, /) -> None: ... method clearMetadataCmd (line 1317) | def clearMetadataCmd(self, *args, **kwargs): ... method getGroupMetadata (line 1318) | def getGroupMetadata(self, *args, **kwargs): ... method getMetadata (line 1319) | def getMetadata(self, *args, **kwargs): ... method getRawAddress (line 1320) | def getRawAddress(self) -> int: ... method isProperty (line 1321) | def isProperty(self) -> bool: ... method nodeName (line 1322) | def nodeName(self) -> str: ... method nodeType (line 1323) | def nodeType(self) -> str: ... method path (line 1324) | def path(self) -> Path: ... method runTimeId (line 1325) | def runTimeId(self) -> int: ... method setGroupMetadata (line 1326) | def setGroupMetadata(self, arg0: str, arg1: str, arg2, /) -> None: ... method setGroupMetadataCmd (line 1327) | def setGroupMetadataCmd(self, *args, **kwargs): ... method setMetadata (line 1328) | def setMetadata(self, arg0: str, arg1, /) -> None: ... method setMetadataCmd (line 1329) | def setMetadataCmd(self, *args, **kwargs): ... method __eq__ (line 1330) | def __eq__(self, arg0: SceneItem, /) -> bool: ... # type: ignore[over... method __ne__ (line 1331) | def __ne__(self, arg0: SceneItem, /) -> bool: ... # type: ignore[over... class SceneItemOps (line 1333) | class SceneItemOps: method __init__ (line 1334) | def __init__(self) -> None: ... method deleteItem (line 1335) | def deleteItem(self) -> bool: ... method deleteItemCmd (line 1336) | def deleteItemCmd(self, *args, **kwargs): ... method deleteItemCmdNoExecute (line 1337) | def deleteItemCmdNoExecute(self, *args, **kwargs): ... method duplicateItem (line 1338) | def duplicateItem(self) -> SceneItem: ... method duplicateItemCmd (line 1339) | def duplicateItemCmd(self) -> Duplicate: ... method duplicateItemCmdNoExecute (line 1340) | def duplicateItemCmdNoExecute(self, *args, **kwargs): ... method renameItem (line 1341) | def renameItem(self, arg0: PathComponent, /) -> SceneItem: ... method renameItemCmd (line 1342) | def renameItemCmd(self, arg0: PathComponent, /) -> Rename: ... method renameItemCmdNoExecute (line 1343) | def renameItemCmdNoExecute(self, *args, **kwargs): ... method sceneItem (line 1344) | def sceneItem(self) -> SceneItem: ... method sceneItemOps (line 1346) | def sceneItemOps(arg0: SceneItem, /) -> SceneItemOps: ... class SceneItemOpsHandler (line 1348) | class SceneItemOpsHandler: method __init__ (line 1349) | def __init__(self) -> None: ... method sceneItemOps (line 1350) | def sceneItemOps(self, arg0: SceneItem, /) -> SceneItemOps: ... class SceneItemResultUndoableCommand (line 1352) | class SceneItemResultUndoableCommand(UndoableCommand): method __init__ (line 1353) | def __init__(self) -> None: ... method sceneItem (line 1355) | def sceneItem(self) -> SceneItem: ... class SceneSegmentHandler (line 1357) | class SceneSegmentHandler: method __init__ (line 1358) | def __init__(self) -> None: ... method findGatewayItems (line 1361) | def findGatewayItems(arg0: Path, /) -> Selection: ... method findGatewayItems (line 1364) | def findGatewayItems(arg0: Path, arg1: int, /) -> Selection: ... method findGatewayItems_ (line 1366) | def findGatewayItems_(self, arg0: Path, /) -> Selection: ... method findGatewayItems_ (line 1368) | def findGatewayItems_(self, arg0: Path, arg1: int, /) -> Selection: ... method isGateway (line 1370) | def isGateway(arg0: Path, /) -> bool: ... method isGateway_ (line 1371) | def isGateway_(self, arg0: Path, /) -> bool: ... method sceneSegmentHandler (line 1373) | def sceneSegmentHandler(arg0: int, /) -> SceneSegmentHandler: ... class Selection (line 1375) | class Selection: method __init__ (line 1377) | def __init__(self) -> None: ... method __init__ (line 1379) | def __init__(self, arg0: SceneItem, /) -> None: ... method __init__ (line 1381) | def __init__(self, arg0: list[SceneItem], /) -> None: ... method append (line 1382) | def append(self, arg0: SceneItem, /) -> bool: ... method back (line 1383) | def back(self) -> SceneItem: ... method clear (line 1384) | def clear(self) -> None: ... method closestCommonAncestor (line 1385) | def closestCommonAncestor(self) -> SceneItem: ... method contains (line 1386) | def contains(self, arg0: Path, /) -> bool: ... method containsAncestor (line 1387) | def containsAncestor(self, arg0: Path, /) -> bool: ... method containsAncestorInclusive (line 1388) | def containsAncestorInclusive(self, arg0: Path, /) -> bool: ... method containsDescendant (line 1389) | def containsDescendant(self, arg0: Path, /) -> bool: ... method containsDescendantInclusive (line 1390) | def containsDescendantInclusive(self, arg0: Path, /) -> bool: ... method empty (line 1391) | def empty(self) -> bool: ... method front (line 1392) | def front(self) -> SceneItem: ... method insert (line 1393) | def insert(self, arg0: SceneItem, arg1: SceneItem, /) -> bool: ... method next (line 1394) | def next(self, arg0: SceneItem, /) -> SceneItem: ... method remove (line 1395) | def remove(self, arg0: SceneItem, /) -> bool: ... method replaceWith (line 1396) | def replaceWith(self, arg0: Selection, /) -> None: ... method __contains__ (line 1397) | def __contains__(self, arg0: Path, /) -> bool: ... method __iter__ (line 1398) | def __iter__(self) -> Iterator: ... method __len__ (line 1399) | def __len__(self) -> int: ... class SelectionAppendItem (line 1401) | class SelectionAppendItem(UndoableCommand): method __init__ (line 1402) | def __init__(self, arg0: ObservableSelection, arg1: SceneItem, /) -> N... method createAndExecute (line 1404) | def createAndExecute(arg0: ObservableSelection, arg1: SceneItem, /) ->... method execute (line 1405) | def execute(self) -> None: ... method redo (line 1406) | def redo(self) -> None: ... method undo (line 1407) | def undo(self) -> None: ... class SelectionChanged (line 1409) | class SelectionChanged(Notification): class OpType (line 1410) | class OpType: method __init__ (line 1419) | def __init__(self, value: int) -> None: ... method __eq__ (line 1420) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1421) | def __hash__(self) -> int: ... method __index__ (line 1422) | def __index__(self) -> int: ... method __int__ (line 1423) | def __int__(self) -> int: ... method __ne__ (line 1424) | def __ne__(self, other: object) -> bool: ... method name (line 1426) | def name(self) -> str: ... method value (line 1428) | def value(self) -> int: ... method __init__ (line 1436) | def __init__(self, arg0: SelectionChanged, /) -> None: ... method __init__ (line 1438) | def __init__(self, arg0, /) -> None: ... method opType (line 1439) | def opType(self, *args, **kwargs): ... class SelectionClear (line 1441) | class SelectionClear(UndoableCommand): method __init__ (line 1442) | def __init__(self, arg0: ObservableSelection, /) -> None: ... method createAndExecute (line 1444) | def createAndExecute(arg0: ObservableSelection, /) -> UndoableCommand:... method execute (line 1445) | def execute(self) -> None: ... method redo (line 1446) | def redo(self) -> None: ... method undo (line 1447) | def undo(self) -> None: ... class SelectionCleared (line 1449) | class SelectionCleared(SelectionChanged): method __init__ (line 1451) | def __init__(self, arg0: SelectionCleared, /) -> None: ... method __init__ (line 1453) | def __init__(self, arg0: Selection, /) -> None: ... method previousSelection (line 1454) | def previousSelection(self) -> Selection: ... class SelectionCompositeNotification (line 1456) | class SelectionCompositeNotification(SelectionChanged): class Op (line 1457) | class Op: method __init__ (line 1462) | def __init__(self, arg0: SelectionChanged.OpType, /) -> None: ... method __init__ (line 1464) | def __init__(self, arg0: SelectionChanged.OpType, arg1: SceneItem, /... method __init__ (line 1466) | def __init__(self, arg0: SelectionChanged.OpType, arg1: SceneItem, a... method __init__ (line 1467) | def __init__(self, arg0: SelectionCompositeNotification, /) -> None: ... method appendAppendOp (line 1468) | def appendAppendOp(self, arg0: SceneItem, /) -> None: ... method appendClearOp (line 1469) | def appendClearOp(self) -> None: ... method appendInsertOp (line 1470) | def appendInsertOp(self, arg0: SceneItem, arg1: SceneItem, /) -> None:... method appendRemoveOp (line 1471) | def appendRemoveOp(self, arg0: SceneItem, /) -> None: ... method appendReplaceWithOp (line 1472) | def appendReplaceWithOp(self) -> None: ... method empty (line 1473) | def empty(self) -> bool: ... method __iter__ (line 1474) | def __iter__(self) -> Iterator: ... method __len__ (line 1475) | def __len__(self) -> int: ... class SelectionItemAppended (line 1477) | class SelectionItemAppended(SelectionChanged): method __init__ (line 1479) | def __init__(self, arg0: SelectionItemAppended, /) -> None: ... method __init__ (line 1481) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 1482) | def item(self) -> SceneItem: ... class SelectionItemInserted (line 1484) | class SelectionItemInserted(SelectionChanged): method __init__ (line 1486) | def __init__(self, arg0: SelectionItemInserted, /) -> None: ... method __init__ (line 1488) | def __init__(self, arg0: SceneItem, arg1: SceneItem, /) -> None: ... method item (line 1489) | def item(self) -> SceneItem: ... method position (line 1490) | def position(self) -> SceneItem: ... class SelectionItemRemoved (line 1492) | class SelectionItemRemoved(SelectionChanged): method __init__ (line 1494) | def __init__(self, arg0: SelectionItemRemoved, /) -> None: ... method __init__ (line 1496) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 1497) | def item(self) -> SceneItem: ... class SelectionRemoveItem (line 1499) | class SelectionRemoveItem(UndoableCommand): method __init__ (line 1500) | def __init__(self, arg0: ObservableSelection, arg1: SceneItem, /) -> N... method createAndExecute (line 1502) | def createAndExecute(arg0: ObservableSelection, arg1: SceneItem, /) ->... method execute (line 1503) | def execute(self) -> None: ... method redo (line 1504) | def redo(self) -> None: ... method undo (line 1505) | def undo(self) -> None: ... class SelectionReplaceWith (line 1507) | class SelectionReplaceWith(UndoableCommand): method __init__ (line 1508) | def __init__(self, arg0: ObservableSelection, arg1: Selection, /) -> N... method createAndExecute (line 1510) | def createAndExecute(arg0: ObservableSelection, arg1: Selection, /) ->... method execute (line 1511) | def execute(self) -> None: ... method redo (line 1512) | def redo(self) -> None: ... method undo (line 1513) | def undo(self) -> None: ... class SelectionReplaced (line 1515) | class SelectionReplaced(SelectionChanged): method __init__ (line 1517) | def __init__(self, arg0: SelectionReplaced, /) -> None: ... method __init__ (line 1519) | def __init__(self, arg0: Selection, /) -> None: ... method previousSelection (line 1520) | def previousSelection(self) -> Selection: ... class SelectionUndoableCommand (line 1522) | class SelectionUndoableCommand(UndoableCommand): method __init__ (line 1523) | def __init__(self) -> None: ... method execute (line 1524) | def execute(self) -> None: ... method redo (line 1525) | def redo(self) -> None: ... method targetItem (line 1526) | def targetItem(self, arg0: Path, /) -> SceneItem: ... method undo (line 1527) | def undo(self) -> None: ... class SetBoolUndoableCommand (line 1529) | class SetBoolUndoableCommand(UndoableCommand): method __init__ (line 1530) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1531) | def path(self) -> Path: ... method sceneItem (line 1532) | def sceneItem(self) -> SceneItem: ... method set (line 1533) | def set(self, arg0: bool, /) -> bool: ... method setPath (line 1534) | def setPath(self, arg0: Path, /) -> None: ... class SetColor3fUndoableCommand (line 1536) | class SetColor3fUndoableCommand(UndoableCommand): method __init__ (line 1537) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1538) | def path(self) -> Path: ... method sceneItem (line 1539) | def sceneItem(self) -> SceneItem: ... method set (line 1540) | def set(self, arg0: Color3f, /) -> bool: ... method setPath (line 1541) | def setPath(self, arg0: Path, /) -> None: ... class SetColor4fUndoableCommand (line 1543) | class SetColor4fUndoableCommand(UndoableCommand): method __init__ (line 1544) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1545) | def path(self) -> Path: ... method sceneItem (line 1546) | def sceneItem(self) -> SceneItem: ... method set (line 1547) | def set(self, arg0: Color4f, /) -> bool: ... method setPath (line 1548) | def setPath(self, arg0: Path, /) -> None: ... class SetDouble3UndoableCommand (line 1550) | class SetDouble3UndoableCommand(UndoableCommand): method __init__ (line 1551) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1552) | def path(self) -> Path: ... method sceneItem (line 1553) | def sceneItem(self) -> SceneItem: ... method set (line 1554) | def set(self, arg0: float, arg1: float, arg2: float, /) -> bool: ... method setPath (line 1555) | def setPath(self, arg0: Path, /) -> None: ... class SetDoubleUndoableCommand (line 1557) | class SetDoubleUndoableCommand(UndoableCommand): method __init__ (line 1558) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1559) | def path(self) -> Path: ... method sceneItem (line 1560) | def sceneItem(self) -> SceneItem: ... method set (line 1561) | def set(self, arg0: float, /) -> bool: ... method setPath (line 1562) | def setPath(self, arg0: Path, /) -> None: ... class SetFloat2UndoableCommand (line 1564) | class SetFloat2UndoableCommand(UndoableCommand): method __init__ (line 1565) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1566) | def path(self) -> Path: ... method sceneItem (line 1567) | def sceneItem(self) -> SceneItem: ... method set (line 1568) | def set(self, arg0: float, arg1: float, /) -> bool: ... method setPath (line 1569) | def setPath(self, arg0: Path, /) -> None: ... class SetFloat3UndoableCommand (line 1571) | class SetFloat3UndoableCommand(UndoableCommand): method __init__ (line 1572) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1573) | def path(self) -> Path: ... method sceneItem (line 1574) | def sceneItem(self) -> SceneItem: ... method set (line 1575) | def set(self, arg0: float, arg1: float, arg2: float, /) -> bool: ... method setPath (line 1576) | def setPath(self, arg0: Path, /) -> None: ... class SetFloat4UndoableCommand (line 1578) | class SetFloat4UndoableCommand(UndoableCommand): method __init__ (line 1579) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1580) | def path(self) -> Path: ... method sceneItem (line 1581) | def sceneItem(self) -> SceneItem: ... method set (line 1582) | def set(self, arg0: float, arg1: float, arg2: float, arg3: float, /) -... method setPath (line 1583) | def setPath(self, arg0: Path, /) -> None: ... class SetFloatUndoableCommand (line 1585) | class SetFloatUndoableCommand(UndoableCommand): method __init__ (line 1586) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1587) | def path(self) -> Path: ... method sceneItem (line 1588) | def sceneItem(self) -> SceneItem: ... method set (line 1589) | def set(self, arg0: float, /) -> bool: ... method setPath (line 1590) | def setPath(self, arg0: Path, /) -> None: ... class SetIntUndoableCommand (line 1592) | class SetIntUndoableCommand(UndoableCommand): method __init__ (line 1593) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1594) | def path(self) -> Path: ... method sceneItem (line 1595) | def sceneItem(self) -> SceneItem: ... method set (line 1596) | def set(self, arg0: int, /) -> bool: ... method setPath (line 1597) | def setPath(self, arg0: Path, /) -> None: ... class SetLight_ConePropsUndoableCommand (line 1599) | class SetLight_ConePropsUndoableCommand(UndoableCommand): method __init__ (line 1600) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1601) | def path(self) -> Path: ... method sceneItem (line 1602) | def sceneItem(self) -> SceneItem: ... method set (line 1603) | def set(self, arg0: Light_ConeProps, /) -> bool: ... method setPath (line 1604) | def setPath(self, arg0: Path, /) -> None: ... class SetLight_SpherePropsUndoableCommand (line 1606) | class SetLight_SpherePropsUndoableCommand(UndoableCommand): method __init__ (line 1607) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1608) | def path(self) -> Path: ... method sceneItem (line 1609) | def sceneItem(self) -> SceneItem: ... method set (line 1610) | def set(self, arg0: Light_SphereProps, /) -> bool: ... method setPath (line 1611) | def setPath(self, arg0: Path, /) -> None: ... class SetLight_VolumePropsUndoableCommand (line 1613) | class SetLight_VolumePropsUndoableCommand(UndoableCommand): method __init__ (line 1614) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1615) | def path(self) -> Path: ... method sceneItem (line 1616) | def sceneItem(self) -> SceneItem: ... method set (line 1617) | def set(self, arg0, /) -> bool: ... method setPath (line 1618) | def setPath(self, arg0: Path, /) -> None: ... class SetMatrix3dUndoableCommand (line 1620) | class SetMatrix3dUndoableCommand(UndoableCommand): method __init__ (line 1621) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1622) | def path(self) -> Path: ... method sceneItem (line 1623) | def sceneItem(self) -> SceneItem: ... method set (line 1624) | def set(self, arg0: Matrix3d, /) -> bool: ... method setPath (line 1625) | def setPath(self, arg0: Path, /) -> None: ... class SetMatrix4dUndoableCommand (line 1627) | class SetMatrix4dUndoableCommand(UndoableCommand): method __init__ (line 1628) | def __init__(self, arg0: Path, /) -> None: ... method path (line 1629) | def path(self) -> Path: ... method sceneItem (line 1630) | def sceneItem(self) -> SceneItem: ... method set (line 1631) | def set(self, arg0: Matrix4d, /) -> bool: ... method setPath (line 1632) | def setPath(self, arg0: Path, /) -> None: ... class SphereInterface (line 1634) | class SphereInterface: method __init__ (line 1635) | def __init__(self, *args, **kwargs) -> None: ... method sphereProps (line 1636) | def sphereProps(self, arg0: float, arg1: bool, /) -> None: ... method spherePropsCmd (line 1637) | def spherePropsCmd(self, *args, **kwargs): ... class Subject (line 1639) | class Subject: method __init__ (line 1641) | def __init__(self) -> None: ... method __init__ (line 1643) | def __init__(self, arg0: Subject, /) -> None: ... method addObserver (line 1644) | def addObserver(self, arg0, /) -> bool: ... method hasObserver (line 1645) | def hasObserver(self, arg0, /) -> bool: ... method nbObservers (line 1646) | def nbObservers(self) -> int: ... method notify (line 1647) | def notify(self, arg0, /) -> None: ... method removeObserver (line 1648) | def removeObserver(self, arg0, /) -> bool: ... class SubtreeInvalidate (line 1650) | class SubtreeInvalidate(SceneChanged): method __init__ (line 1651) | def __init__(self, arg0: SceneItem, /) -> None: ... method changedPath (line 1652) | def changedPath(self) -> Path: ... method root (line 1653) | def root(self) -> SceneItem: ... class Transform3d (line 1655) | class Transform3d: method __init__ (line 1656) | def __init__(self) -> None: ... method addObserver (line 1658) | def addObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method editTransform3d (line 1660) | def editTransform3d(arg0: SceneItem, arg1: EditTransform3dHint, /) -> ... method exclusiveMatrix (line 1661) | def exclusiveMatrix(self) -> Matrix4d: ... method hasObserver (line 1663) | def hasObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method hasObservers (line 1666) | def hasObservers(arg0: Path, /) -> bool: ... method hasObservers (line 1669) | def hasObservers(arg0: int, /) -> bool: ... method inclusiveMatrix (line 1670) | def inclusiveMatrix(self) -> Matrix4d: ... method matrix (line 1671) | def matrix(self) -> Matrix4d: ... method nbObservers (line 1673) | def nbObservers(arg0: SceneItem, /) -> int: ... method notify (line 1675) | def notify(arg0: Path, /) -> None: ... method path (line 1676) | def path(self) -> Path: ... method removeObserver (line 1679) | def removeObserver(arg0: SceneItem, arg1: Observer, /) -> bool: ... method removeObserver (line 1682) | def removeObserver(arg0: Path, arg1: Observer, /) -> bool: ... method rotate (line 1683) | def rotate(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method rotateAxis (line 1685) | def rotateAxis(self, arg0: float, arg1: float, arg2: float, /) -> None... method rotateAxis (line 1687) | def rotateAxis(self) -> Vector3d: ... method rotateAxisCmd (line 1688) | def rotateAxisCmd(self, *args, **kwargs): ... method rotateCmd (line 1689) | def rotateCmd(self, *args, **kwargs): ... method rotatePivot (line 1691) | def rotatePivot(self, arg0: float, arg1: float, arg2: float, /) -> Non... method rotatePivot (line 1693) | def rotatePivot(self) -> Vector3d: ... method rotatePivotCmd (line 1694) | def rotatePivotCmd(self, *args, **kwargs): ... method rotatePivotTranslation (line 1695) | def rotatePivotTranslation(self) -> Vector3d: ... method rotation (line 1696) | def rotation(self) -> Vector3d: ... method scale (line 1698) | def scale(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method scale (line 1700) | def scale(self) -> Vector3d: ... method scaleCmd (line 1701) | def scaleCmd(self, *args, **kwargs): ... method scalePivot (line 1703) | def scalePivot(self, arg0: float, arg1: float, arg2: float, /) -> None... method scalePivot (line 1705) | def scalePivot(self) -> Vector3d: ... method scalePivotCmd (line 1706) | def scalePivotCmd(self, *args, **kwargs): ... method scalePivotTranslation (line 1707) | def scalePivotTranslation(self) -> Vector3d: ... method sceneItem (line 1708) | def sceneItem(self) -> SceneItem: ... method segmentExclusiveMatrix (line 1709) | def segmentExclusiveMatrix(self) -> Matrix4d: ... method segmentInclusiveMatrix (line 1710) | def segmentInclusiveMatrix(self) -> Matrix4d: ... method setMatrix (line 1711) | def setMatrix(self, arg0: Matrix4d, /) -> None: ... method setMatrixCmd (line 1712) | def setMatrixCmd(self, *args, **kwargs): ... method shear (line 1714) | def shear(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method shear (line 1716) | def shear(self) -> Vector3d: ... method shearCmd (line 1717) | def shearCmd(self, *args, **kwargs): ... method transform3d (line 1719) | def transform3d(arg0: SceneItem, /) -> Transform3d: ... method translate (line 1720) | def translate(self, arg0: float, arg1: float, arg2: float, /) -> None:... method translateCmd (line 1721) | def translateCmd(self, *args, **kwargs): ... method translateRotatePivot (line 1722) | def translateRotatePivot(self, arg0: float, arg1: float, arg2: float, ... method translateRotatePivotCmd (line 1723) | def translateRotatePivotCmd(self, *args, **kwargs): ... method translateScalePivot (line 1724) | def translateScalePivot(self, arg0: float, arg1: float, arg2: float, /... method translateScalePivotCmd (line 1725) | def translateScalePivotCmd(self, *args, **kwargs): ... method translation (line 1726) | def translation(self) -> Vector3d: ... class Transform3dChanged (line 1728) | class Transform3dChanged(Notification): method __init__ (line 1730) | def __init__(self, arg0: Transform3dChanged, /) -> None: ... method __init__ (line 1732) | def __init__(self, arg0: SceneItem, /) -> None: ... method item (line 1733) | def item(self) -> SceneItem: ... class Transform3dHandler (line 1735) | class Transform3dHandler: method __init__ (line 1736) | def __init__(self) -> None: ... method editTransform3d (line 1737) | def editTransform3d(self, arg0: SceneItem, arg1: EditTransform3dHint, ... method transform3d (line 1738) | def transform3d(self, arg0: SceneItem, /) -> Transform3d: ... class Transform3dPathSubject (line 1740) | class Transform3dPathSubject(PathSubject): method __init__ (line 1741) | def __init__(self, arg0: Path, /) -> None: ... class UIInfoHandler (line 1743) | class UIInfoHandler: class Icon (line 1744) | class Icon: method __init__ (line 1750) | def __init__(self) -> None: ... method __init__ (line 1752) | def __init__(self, arg0: str, /) -> None: ... method __init__ (line 1754) | def __init__(self, arg0: str, arg1: UIInfoHandler.Mode, /) -> None: ... method __init__ (line 1756) | def __init__(self, arg0: str, arg1: str, arg2: UIInfoHandler.Quadran... class Mode (line 1758) | class Mode: method __init__ (line 1765) | def __init__(self, value: int) -> None: ... method __eq__ (line 1766) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1767) | def __hash__(self) -> int: ... method __index__ (line 1768) | def __index__(self) -> int: ... method __int__ (line 1769) | def __int__(self) -> int: ... method __ne__ (line 1770) | def __ne__(self, other: object) -> bool: ... method name (line 1772) | def name(self) -> str: ... method value (line 1774) | def value(self) -> int: ... class Quadrant (line 1776) | class Quadrant: method __init__ (line 1783) | def __init__(self, value: int) -> None: ... method __eq__ (line 1784) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1785) | def __hash__(self) -> int: ... method __index__ (line 1786) | def __index__(self) -> int: ... method __int__ (line 1787) | def __int__(self) -> int: ... method __ne__ (line 1788) | def __ne__(self, other: object) -> bool: ... method name (line 1790) | def name(self) -> str: ... method value (line 1792) | def value(self) -> int: ... method __init__ (line 1801) | def __init__(self) -> None: ... method getLongRunTimeLabel (line 1802) | def getLongRunTimeLabel(self) -> str: ... method treeViewCellInfo (line 1803) | def treeViewCellInfo(self, arg0, arg1: CellInfo, /) -> bool: ... method treeViewIcon (line 1804) | def treeViewIcon(self, *args, **kwargs): ... method treeViewTooltip (line 1805) | def treeViewTooltip(self, arg0, /) -> str: ... method uiInfoHandler (line 1807) | def uiInfoHandler(arg0: int, /) -> UIInfoHandler: ... class UINodeGraphNode (line 1809) | class UINodeGraphNode: method __init__ (line 1810) | def __init__(self) -> None: ... method getDisplayColor (line 1811) | def getDisplayColor(self, *args, **kwargs): ... method getPosition (line 1812) | def getPosition(self, *args, **kwargs): ... method getSize (line 1813) | def getSize(self, *args, **kwargs): ... method hasDisplayColor (line 1814) | def hasDisplayColor(self) -> bool: ... method hasPosition (line 1815) | def hasPosition(self) -> bool: ... method hasSize (line 1816) | def hasSize(self) -> bool: ... method sceneItem (line 1817) | def sceneItem(self) -> SceneItem: ... method setDisplayColor (line 1818) | def setDisplayColor(self, arg0: float, arg1: float, arg2: float, /) ->... method setDisplayColorCmd (line 1819) | def setDisplayColorCmd(self, *args, **kwargs): ... method setPosition (line 1820) | def setPosition(self, arg0: float, arg1: float, /) -> None: ... method setPositionCmd (line 1821) | def setPositionCmd(self, *args, **kwargs): ... method setSize (line 1822) | def setSize(self, arg0: float, arg1: float, /) -> None: ... method setSizeCmd (line 1823) | def setSizeCmd(self, *args, **kwargs): ... method uiNodeGraphNode (line 1825) | def uiNodeGraphNode(arg0: SceneItem, /) -> UINodeGraphNode: ... class UINodeGraphNodeHandler (line 1827) | class UINodeGraphNodeHandler: method __init__ (line 1828) | def __init__(self) -> None: ... method uiNodeGraphNode (line 1829) | def uiNodeGraphNode(self, arg0: SceneItem, /) -> UINodeGraphNode: ... class UndoableCommand (line 1831) | class UndoableCommand: method __init__ (line 1832) | def __init__(self) -> None: ... method execute (line 1833) | def execute(self) -> None: ... method redo (line 1834) | def redo(self) -> None: ... method undo (line 1835) | def undo(self) -> None: ... class UndoableCommandGuard (line 1837) | class UndoableCommandGuard: method __init__ (line 1838) | def __init__(self, arg0: str, /) -> None: ... method setSuccess (line 1839) | def setSuccess(self) -> None: ... method __enter__ (line 1840) | def __enter__(self) -> object: ... method __exit__ (line 1841) | def __exit__(self, arg0: handle, arg1: handle, arg2: handle, /) -> Non... class UndoableCommandMgr (line 1843) | class UndoableCommandMgr: method __init__ (line 1844) | def __init__(self) -> None: ... method executeCmd (line 1845) | def executeCmd(self, arg0: UndoableCommand, /) -> None: ... method initializeInstance (line 1847) | def initializeInstance(arg0: UndoableCommandMgr, /) -> None: ... method instance (line 1849) | def instance() -> UndoableCommandMgr: ... class Value (line 1851) | class Value: method __init__ (line 1853) | def __init__(self) -> None: ... method __init__ (line 1855) | def __init__(self, arg0: bool, /) -> None: ... method __init__ (line 1857) | def __init__(self, arg0: int, /) -> None: ... method __init__ (line 1859) | def __init__(self, arg0: float, /) -> None: ... method __init__ (line 1861) | def __init__(self, arg0: str, /) -> None: ... method __init__ (line 1863) | def __init__(self, arg0: Vector2i, /) -> None: ... method __init__ (line 1865) | def __init__(self, arg0: Vector2f, /) -> None: ... method __init__ (line 1867) | def __init__(self, arg0: Vector2d, /) -> None: ... method __init__ (line 1869) | def __init__(self, arg0: Vector3i, /) -> None: ... method __init__ (line 1871) | def __init__(self, arg0: Vector3f, /) -> None: ... method __init__ (line 1873) | def __init__(self, arg0: Vector3d, /) -> None: ... method __init__ (line 1875) | def __init__(self, arg0: Vector4i, /) -> None: ... method __init__ (line 1877) | def __init__(self, arg0: Vector4f, /) -> None: ... method __init__ (line 1879) | def __init__(self, arg0: Vector4d, /) -> None: ... method __init__ (line 1881) | def __init__(self, arg0: Color3f, /) -> None: ... method __init__ (line 1883) | def __init__(self, arg0: Color4f, /) -> None: ... method __init__ (line 1885) | def __init__(self, arg0: Value, /) -> None: ... method empty (line 1886) | def empty(self) -> bool: ... method typeName (line 1887) | def typeName(self) -> str: ... method __bool__ (line 1888) | def __bool__(self) -> bool: ... method __eq__ (line 1889) | def __eq__(self, arg0: Value, /) -> bool: ... # type: ignore[override] method __float__ (line 1890) | def __float__(self) -> float: ... method __int__ (line 1891) | def __int__(self) -> int: ... method __ne__ (line 1892) | def __ne__(self, arg0: Value, /) -> bool: ... # type: ignore[override] class ValueDictionary (line 1894) | class ValueDictionary: method __init__ (line 1895) | def __init__(self) -> None: ... method items (line 1896) | def items(self, *args, **kwargs): ... method keys (line 1897) | def keys(self) -> KeysView[str]: ... # type: ignore[name-defined] method values (line 1898) | def values(self, *args, **kwargs): ... method __bool__ (line 1899) | def __bool__(self) -> bool: ... method __contains__ (line 1901) | def __contains__(self, arg0: str, /) -> bool: ... method __contains__ (line 1903) | def __contains__(self, arg0: object, /) -> bool: ... method __delitem__ (line 1904) | def __delitem__(self, arg0: str, /) -> None: ... method __getitem__ (line 1905) | def __getitem__(self, index): ... method __iter__ (line 1906) | def __iter__(self) -> Iterator: ... method __len__ (line 1907) | def __len__(self) -> int: ... method __setitem__ (line 1908) | def __setitem__(self, arg0: str, arg1, /) -> None: ... class Vector2d (line 1910) | class Vector2d: method __init__ (line 1913) | def __init__(self) -> None: ... method __init__ (line 1915) | def __init__(self, arg0: list[float[2]], /) -> None: ... # type: igno... method __init__ (line 1917) | def __init__(self, arg0, /) -> None: ... method __init__ (line 1919) | def __init__(self, arg0: float, arg1: float, /) -> None: ... method set (line 1920) | def set(self, arg0: float, arg1: float, /) -> None: ... method x (line 1921) | def x(self) -> float: ... method y (line 1922) | def y(self) -> float: ... method __eq__ (line 1923) | def __eq__(self, arg0: Vector2d, /) -> bool: ... # type: ignore[overr... method __ne__ (line 1924) | def __ne__(self, arg0: Vector2d, /) -> bool: ... # type: ignore[overr... class Vector2f (line 1926) | class Vector2f: method __init__ (line 1929) | def __init__(self) -> None: ... method __init__ (line 1931) | def __init__(self, arg0: list[float[2]], /) -> None: ... # type: igno... method __init__ (line 1933) | def __init__(self, arg0, /) -> None: ... method __init__ (line 1935) | def __init__(self, arg0: float, arg1: float, /) -> None: ... method set (line 1936) | def set(self, arg0: float, arg1: float, /) -> None: ... method x (line 1937) | def x(self) -> float: ... method y (line 1938) | def y(self) -> float: ... method __eq__ (line 1939) | def __eq__(self, arg0: Vector2f, /) -> bool: ... # type: ignore[overr... method __ne__ (line 1940) | def __ne__(self, arg0: Vector2f, /) -> bool: ... # type: ignore[overr... class Vector2i (line 1942) | class Vector2i: method __init__ (line 1945) | def __init__(self) -> None: ... method __init__ (line 1947) | def __init__(self, arg0: list[int[2]], /) -> None: ... # type: ignore... method __init__ (line 1949) | def __init__(self, arg0, /) -> None: ... method __init__ (line 1951) | def __init__(self, arg0: int, arg1: int, /) -> None: ... method set (line 1952) | def set(self, arg0: int, arg1: int, /) -> None: ... method x (line 1953) | def x(self) -> int: ... method y (line 1954) | def y(self) -> int: ... method __eq__ (line 1955) | def __eq__(self, arg0: Vector2i, /) -> bool: ... # type: ignore[overr... method __ne__ (line 1956) | def __ne__(self, arg0: Vector2i, /) -> bool: ... # type: ignore[overr... class Vector3d (line 1958) | class Vector3d: method __init__ (line 1961) | def __init__(self) -> None: ... method __init__ (line 1963) | def __init__(self, arg0: list[float[3]], /) -> None: ... # type: igno... method __init__ (line 1965) | def __init__(self, arg0, /) -> None: ... method __init__ (line 1967) | def __init__(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method set (line 1968) | def set(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method x (line 1969) | def x(self) -> float: ... method y (line 1970) | def y(self) -> float: ... method z (line 1971) | def z(self) -> float: ... method __eq__ (line 1972) | def __eq__(self, arg0: Vector3d, /) -> bool: ... # type: ignore[overr... method __ne__ (line 1973) | def __ne__(self, arg0: Vector3d, /) -> bool: ... # type: ignore[overr... class Vector3f (line 1975) | class Vector3f: method __init__ (line 1978) | def __init__(self) -> None: ... method __init__ (line 1980) | def __init__(self, arg0: list[float[3]], /) -> None: ... # type: igno... method __init__ (line 1982) | def __init__(self, arg0, /) -> None: ... method __init__ (line 1984) | def __init__(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method set (line 1985) | def set(self, arg0: float, arg1: float, arg2: float, /) -> None: ... method x (line 1986) | def x(self) -> float: ... method y (line 1987) | def y(self) -> float: ... method z (line 1988) | def z(self) -> float: ... method __eq__ (line 1989) | def __eq__(self, arg0: Vector3f, /) -> bool: ... # type: ignore[overr... method __ne__ (line 1990) | def __ne__(self, arg0: Vector3f, /) -> bool: ... # type: ignore[overr... class Vector3i (line 1992) | class Vector3i: method __init__ (line 1995) | def __init__(self) -> None: ... method __init__ (line 1997) | def __init__(self, arg0: list[int[3]], /) -> None: ... # type: ignore... method __init__ (line 1999) | def __init__(self, arg0, /) -> None: ... method __init__ (line 2001) | def __init__(self, arg0: int, arg1: int, arg2: int, /) -> None: ... method set (line 2002) | def set(self, arg0: int, arg1: int, arg2: int, /) -> None: ... method x (line 2003) | def x(self) -> int: ... method y (line 2004) | def y(self) -> int: ... method z (line 2005) | def z(self) -> int: ... method __eq__ (line 2006) | def __eq__(self, arg0: Vector3i, /) -> bool: ... # type: ignore[overr... method __ne__ (line 2007) | def __ne__(self, arg0: Vector3i, /) -> bool: ... # type: ignore[overr... class Vector4d (line 2009) | class Vector4d: method __init__ (line 2012) | def __init__(self) -> None: ... method __init__ (line 2014) | def __init__(self, arg0: list[float[4]], /) -> None: ... # type: igno... method __init__ (line 2016) | def __init__(self, arg0, /) -> None: ... method __init__ (line 2018) | def __init__(self, arg0: float, arg1: float, arg2: float, arg3: float,... method set (line 2019) | def set(self, arg0: float, arg1: float, arg2: float, arg3: float, /) -... method w (line 2020) | def w(self) -> float: ... method x (line 2021) | def x(self) -> float: ... method y (line 2022) | def y(self) -> float: ... method z (line 2023) | def z(self) -> float: ... method __eq__ (line 2024) | def __eq__(self, arg0: Vector4d, /) -> bool: ... # type: ignore[overr... method __ne__ (line 2025) | def __ne__(self, arg0: Vector4d, /) -> bool: ... # type: ignore[overr... class Vector4f (line 2027) | class Vector4f: method __init__ (line 2030) | def __init__(self) -> None: ... method __init__ (line 2032) | def __init__(self, arg0: list[float[4]], /) -> None: ... # type: igno... method __init__ (line 2034) | def __init__(self, arg0, /) -> None: ... method __init__ (line 2036) | def __init__(self, arg0: float, arg1: float, arg2: float, arg3: float,... method set (line 2037) | def set(self, arg0: float, arg1: float, arg2: float, arg3: float, /) -... method w (line 2038) | def w(self) -> float: ... method x (line 2039) | def x(self) -> float: ... method y (line 2040) | def y(self) -> float: ... method z (line 2041) | def z(self) -> float: ... method __eq__ (line 2042) | def __eq__(self, arg0: Vector4f, /) -> bool: ... # type: ignore[overr... method __ne__ (line 2043) | def __ne__(self, arg0: Vector4f, /) -> bool: ... # type: ignore[overr... class Vector4i (line 2045) | class Vector4i: method __init__ (line 2048) | def __init__(self) -> None: ... method __init__ (line 2050) | def __init__(self, arg0: list[int[4]], /) -> None: ... # type: ignore... method __init__ (line 2052) | def __init__(self, arg0, /) -> None: ... method __init__ (line 2054) | def __init__(self, arg0: int, arg1: int, arg2: int, arg3: int, /) -> N... method set (line 2055) | def set(self, arg0: int, arg1: int, arg2: int, arg3: int, /) -> None: ... method w (line 2056) | def w(self) -> int: ... method x (line 2057) | def x(self) -> int: ... method y (line 2058) | def y(self) -> int: ... method z (line 2059) | def z(self) -> int: ... method __eq__ (line 2060) | def __eq__(self, arg0: Vector4i, /) -> bool: ... # type: ignore[overr... method __ne__ (line 2061) | def __ne__(self, arg0: Vector4i, /) -> bool: ... # type: ignore[overr... class VersionInfo (line 2063) | class VersionInfo: method __init__ (line 2064) | def __init__(self, *args, **kwargs) -> None: ... method getBuildDate (line 2066) | def getBuildDate() -> str: ... method getBuildNumber (line 2068) | def getBuildNumber() -> int: ... method getGitBranch (line 2070) | def getGitBranch() -> str: ... method getGitCommit (line 2072) | def getGitCommit() -> str: ... method getMajorVersion (line 2074) | def getMajorVersion() -> int: ... method getMinorVersion (line 2076) | def getMinorVersion() -> int: ... method getPatchLevel (line 2078) | def getPatchLevel() -> int: ... class VisibilityChanged (line 2080) | class VisibilityChanged(Notification): method __init__ (line 2081) | def __init__(self, arg0: Path, /) -> None: ... method path (line 2082) | def path(self) -> Path: ... function getAttributeBool (line 2084) | def getAttributeBool(arg0: Attributes, arg1: str, /) -> AttributeBool: ... function getAttributeColorFloat3 (line 2085) | def getAttributeColorFloat3(arg0: Attributes, arg1: str, /) -> Attribute... function getAttributeColorFloat4 (line 2086) | def getAttributeColorFloat4(arg0: Attributes, arg1: str, /) -> Attribute... function getAttributeDouble (line 2087) | def getAttributeDouble(arg0: Attributes, arg1: str, /) -> AttributeDoubl... function getAttributeDouble3 (line 2088) | def getAttributeDouble3(arg0: Attributes, arg1: str, /) -> AttributeDoub... function getAttributeEnumString (line 2089) | def getAttributeEnumString(arg0: Attributes, arg1: str, /) -> AttributeE... function getAttributeFilename (line 2090) | def getAttributeFilename(arg0: Attributes, arg1: str, /) -> AttributeFil... function getAttributeFloat (line 2091) | def getAttributeFloat(arg0: Attributes, arg1: str, /) -> AttributeFloat:... function getAttributeFloat2 (line 2092) | def getAttributeFloat2(arg0: Attributes, arg1: str, /) -> AttributeFloat... function getAttributeFloat3 (line 2093) | def getAttributeFloat3(arg0: Attributes, arg1: str, /) -> AttributeFloat... function getAttributeFloat4 (line 2094) | def getAttributeFloat4(arg0: Attributes, arg1: str, /) -> AttributeFloat... function getAttributeGeneric (line 2095) | def getAttributeGeneric(arg0: Attributes, arg1: str, /) -> AttributeGene... function getAttributeInt (line 2096) | def getAttributeInt(arg0: Attributes, arg1: str, /) -> AttributeInt: ... function getAttributeInt3 (line 2097) | def getAttributeInt3(arg0: Attributes, arg1: str, /) -> AttributeInt3: ... function getAttributeMatrix3d (line 2098) | def getAttributeMatrix3d(arg0: Attributes, arg1: str, /) -> AttributeMat... function getAttributeMatrix4d (line 2099) | def getAttributeMatrix4d(arg0: Attributes, arg1: str, /) -> AttributeMat... function getAttributeString (line 2100) | def getAttributeString(arg0: Attributes, arg1: str, /) -> AttributeStrin... function getAttributesFromRaw (line 2101) | def getAttributesFromRaw(arg0: int, /) -> Attributes: ... function getSceneItemFromRaw (line 2102) | def getSceneItemFromRaw(arg0: int, /) -> SceneItem: ... FILE: noxfile.py function glob_to_regex (line 87) | def glob_to_regex(pattern: str) -> str: function regexes_to_regex (line 105) | def regexes_to_regex(patterns: Iterable[str]) -> Pattern | None: function globs_to_regex (line 126) | def globs_to_regex(patterns: tuple[str, ...]) -> Pattern | None: function filter_paths_regex (line 130) | def filter_paths_regex( function filter_paths (line 142) | def filter_paths( class GitRepo (line 156) | class GitRepo: method __init__ (line 161) | def __init__(self, root: str): method files (line 165) | def files(self) -> list[str]: method file_matches (line 172) | def file_matches( method folders (line 178) | def folders(self) -> list[str]: method folder_matches (line 189) | def folder_matches( class Options (line 199) | class Options: method paths_regex (line 215) | def paths_regex(self) -> Pattern | None: method exclude_regex (line 218) | def exclude_regex(self) -> Pattern | None: method files (line 221) | def files( function with_versions (line 234) | def with_versions(versions: Iterable[str]) -> Callable[[Any], Any]: function check (line 241) | def check( function load_dotenv (line 278) | def load_dotenv() -> dict[str, str]: function ruff (line 302) | def ruff(session: nox.Session): function precommit_gen (line 348) | def precommit_gen(session: nox.Session, options: Options): function make_package (line 419) | def make_package(child: pathlib.Path) -> pathlib.Path: function make_packages (line 426) | def make_packages(path: pathlib.Path = pathlib.Path(".")) -> None: function add_stubs_suffix (line 439) | def add_stubs_suffix(path: pathlib.Path) -> None: function stubs_suffix (line 471) | def stubs_suffix(path: pathlib.Path = pathlib.Path("./stubs")): function develop (line 494) | def develop(session: nox.Session, lib: str) -> None: function publish (line 508) | def publish(session: nox.Session, lib: str) -> None: function generate (line 536) | def generate(session: nox.Session, lib: str) -> None: function mypy (line 605) | def mypy(session: nox.Session, lib: str) -> None: function test (line 618) | def test(session: nox.Session, lib: str) -> None: function self_mypy (line 629) | def self_mypy(session: nox.Session, options: Options) -> None: FILE: nuke/stubs/nuke-stubs/__init__.pyi function import_module (line 9) | def import_module(name, filterRule) -> None: ... FILE: nuke/stubs/nuke-stubs/_curveknob.pyi class CurveKnob (line 8) | class CurveKnob(Knob): method changed (line 11) | def changed(self) -> None: ... method getSelected (line 12) | def getSelected(self) -> List[Element]: ... method toElement (line 13) | def toElement(self, path: str) -> Optional[Element]: ... method __delattr__ (line 14) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 15) | def __setattr__(self, name, value) -> Any: ... class CurveWidget (line 17) | class CurveWidget(Element): method __init__ (line 19) | def __init__(self, *args, **kwargs) -> None: ... method add (line 20) | def add(self) -> None: ... method getSelectedItems (line 21) | def getSelectedItems(self) -> List[str]: ... method remove (line 22) | def remove(self) -> None: ... method __delattr__ (line 23) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 24) | def __setattr__(self, name, value) -> Any: ... class Element (line 26) | class Element: method __init__ (line 30) | def __init__(self, *args, **kwargs) -> None: ... method clone (line 31) | def clone(self: ElementT) -> ElementT: ... method getVisible (line 32) | def getVisible(self, time: float) -> bool: ... method serialise (line 33) | def serialise(self) -> str: ... method setVisible (line 34) | def setVisible(self, time: float, value: bool) -> None: ... method __delattr__ (line 35) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 36) | def __setattr__(self, name, value) -> Any: ... class Layer (line 38) | class Layer(Element, Sized, Iterable[Element]): method __init__ (line 40) | def __init__(self, *args, **kwargs) -> None: ... method append (line 41) | def append(self, element: Element) -> None: ... method getAttributes (line 42) | def getAttributes(self) -> AnimAttributes: ... method getFlag (line 43) | def getFlag(self, flag) -> bool: ... method getTransform (line 44) | def getTransform(self) -> AnimCTransform: ... method insert (line 45) | def insert(self, index: int, element: Element) -> None: ... method remove (line 46) | def remove(self, index: int) -> None: ... method removeAll (line 47) | def removeAll(self) -> None: ... method setFlag (line 48) | def setFlag(self, flag, value) -> None: ... method setTransform (line 49) | def setTransform(self, transfor: AnimCTransform) -> None: ... method __delattr__ (line 50) | def __delattr__(self, name) -> Any: ... method __getitem__ (line 51) | def __getitem__(self, index: int) -> Element: ... method __len__ (line 52) | def __len__(self) -> int: ... method __iter__ (line 53) | def __iter__(self) -> Iterator[Element]: ... method __setattr__ (line 54) | def __setattr__(self, name, value) -> Any: ... class Shape (line 56) | class Shape(Element, Sized, Iterable[ShapeControlPoint]): method __init__ (line 58) | def __init__(self, *args, **kwargs) -> None: ... method append (line 59) | def append(self, shapeControlPoint) -> None: ... method evaluate (line 61) | def evaluate(self, curveNum: Union[Literal[0], Literal[1]], time: floa... method evaluate (line 63) | def evaluate(self, curveNum: Union[Literal[0], Literal[1]], time: floa... method getAttributes (line 64) | def getAttributes(self) -> AnimAttributes: ... method getFlag (line 65) | def getFlag(self, flag) -> bool: ... method getTransform (line 66) | def getTransform(self) -> AnimCTransform: ... method insert (line 67) | def insert(self, index: int, shapeControlPoint) -> None: ... method remove (line 68) | def remove(self, index: int) -> None: ... method setFlag (line 69) | def setFlag(self, flag, value) -> None: ... method __delattr__ (line 70) | def __delattr__(self, name) -> Any: ... method __getitem__ (line 71) | def __getitem__(self, index: int) -> ShapeControlPoint: ... method __len__ (line 72) | def __len__(self) -> int: ... method __iter__ (line 73) | def __iter__(self) -> Iterator[ShapeControlPoint]: ... method __setattr__ (line 74) | def __setattr__(self, name, value) -> Any: ... class ShapeControlPoint (line 76) | class ShapeControlPoint: method __init__ (line 84) | def __init__(self, *args, **kwargs) -> None: ... method __delattr__ (line 85) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 86) | def __setattr__(self, name, value) -> Any: ... class Stroke (line 88) | class Stroke(Element, Sized, Iterable[AnimControlPoint]): method __init__ (line 90) | def __init__(self, *args, **kwargs) -> None: ... method append (line 91) | def append(self, controlPoint: AnimControlPoint) -> None: ... method evaluate (line 93) | def evaluate(self, time: int) -> CubicCurve: ... method evaluate (line 95) | def evaluate(self, time: int, viewName: Optional[str]) -> CubicCurve: ... method getAttributes (line 96) | def getAttributes(self) -> AnimAttributes: ... method getFlag (line 97) | def getFlag(self, flag) -> bool: ... method getTransform (line 98) | def getTransform(self) -> AnimCTransform: ... method insert (line 99) | def insert(self, index: int, controlPoint: AnimControlPoint) -> None: ... method remove (line 100) | def remove(self, index: int) -> None: ... method setFlag (line 101) | def setFlag(self, flag, value) -> None: ... method __delattr__ (line 102) | def __delattr__(self, name) -> Any: ... method __getitem__ (line 103) | def __getitem__(self, index: int) -> AnimControlPoint: ... method __len__ (line 104) | def __len__(self) -> int: ... method __iter__ (line 105) | def __iter__(self) -> Iterator[AnimControlPoint]: ... method __setattr__ (line 106) | def __setattr__(self, name, value) -> Any: ... FILE: nuke/stubs/nuke-stubs/_curvelib.pyi class AnimAttributes (line 4) | class AnimAttributes: method __init__ (line 62) | def __init__(self, *args, **kwargs) -> None: ... method add (line 63) | def add(self, name, value) -> None: ... method addKey (line 65) | def addKey(self, time, name, value, view) -> None: ... method addKey (line 67) | def addKey(time, view) -> None: ... method getCurve (line 68) | def getCurve(self, attr, view) -> AnimCurve: ... method getKeyTime (line 69) | def getKeyTime(self, index, keyIndexOrHash, view) -> float: ... method getName (line 70) | def getName(self, index) -> str: ... method getNumberOfKeys (line 71) | def getNumberOfKeys(self, attr, view) -> int: ... method getValue (line 72) | def getValue(self, time, indexOrName, view) -> float: ... method remove (line 73) | def remove(self, attributeIndexOrName) -> None: ... method removeAll (line 74) | def removeAll(self) -> None: ... method removeKey (line 75) | def removeKey(self, time, attributeIndex, view) -> None: ... method removeKeys (line 76) | def removeKeys(self, attributeIndex, view) -> None: ... method reset (line 77) | def reset(self) -> None: ... method set (line 78) | def set(self, time, attributeIndexOrName, value, view) -> None: ... method setCurve (line 79) | def setCurve(self, index, curve, view) -> None: ... method setKey (line 80) | def setKey(self, time, attributeIndex, hash, value, view) -> None: ... method setName (line 81) | def setName(self, attributeIndex, newName) -> None: ... method __contains__ (line 82) | def __contains__(self, other) -> Any: ... method __delattr__ (line 83) | def __delattr__(self, name) -> Any: ... method __len__ (line 84) | def __len__(self) -> Any: ... method __setattr__ (line 85) | def __setattr__(self, name, value) -> Any: ... class AnimCTransform (line 87) | class AnimCTransform: method __init__ (line 92) | def __init__(self, *args, **kwargs) -> None: ... method addPivotPointKey (line 93) | def addPivotPointKey(self, time: float, x: float, y: float, pressure: ... method addRotationKey (line 94) | def addRotationKey(self, time: float, x: float, y: float, pressure: fl... method addScaleKey (line 95) | def addScaleKey(self, time: float, x: float, y: float, pressure: float... method addSkewXKey (line 96) | def addSkewXKey(self, time: float, x: float, y: float, pressure: float... method addTransformKey (line 97) | def addTransformKey(self, time: float, view: str = ...) -> None: ... method addTranslationKey (line 98) | def addTranslationKey(self, time: float, x: float, y: float, pressure:... method evaluate (line 99) | def evaluate(self, time: float, view: str = ...) -> CTransform: ... method getExtraMatrixAnimCurve (line 100) | def getExtraMatrixAnimCurve(self, i: int, j: int, view: str = ...) -> ... method getNumberOfPivotPointKeys (line 101) | def getNumberOfPivotPointKeys(self, view: str = ...) -> int: ... method getNumberOfRotationKeys (line 102) | def getNumberOfRotationKeys(self, view: str = ...) -> int: ... method getNumberOfScaleKeys (line 103) | def getNumberOfScaleKeys(self, view: str = ...) -> int: ... method getNumberOfSkewXKeys (line 104) | def getNumberOfSkewXKeys(self, view: str = ...) -> int: ... method getNumberOfTransformKeys (line 105) | def getNumberOfTransformKeys(self, view: str = ...) -> int: ... method getNumberOfTranslationKeys (line 106) | def getNumberOfTranslationKeys(self, view: str = ...) -> int: ... method getPivotPointAnimCurve (line 107) | def getPivotPointAnimCurve(self, index: int, view: str = ...) -> AnimC... method getPivotPointKeyTime (line 108) | def getPivotPointKeyTime(self, index: int, view: str = ...) -> float: ... method getPivotPointKeyTimes (line 109) | def getPivotPointKeyTimes(self, view: str = ...) -> List[float]: ... method getRotationAnimCurve (line 110) | def getRotationAnimCurve(self, index: int, view: str = ...) -> AnimCur... method getRotationKeyTime (line 111) | def getRotationKeyTime(self, index: int, view: str = ...) -> float: ... method getRotationKeyTimes (line 112) | def getRotationKeyTimes(self, view: str = ...) -> List[float]: ... method getScaleAnimCurve (line 113) | def getScaleAnimCurve(self, index: int, view: str = ...) -> AnimCurve:... method getScaleKeyTime (line 114) | def getScaleKeyTime(self, index: int, view: str = ...) -> float: ... method getScaleKeyTimes (line 115) | def getScaleKeyTimes(self, view: str = ...) -> List[float]: ... method getSkewXAnimCurve (line 116) | def getSkewXAnimCurve(self, index: int, view: str = ...) -> AnimCurve:... method getSkewXKeyTime (line 117) | def getSkewXKeyTime(self, index: int, view: str = ...) -> float: ... method getSkewXKeyTimes (line 118) | def getSkewXKeyTimes(self, view: str = ...) -> List[float]: ... method getTransformKeyTime (line 119) | def getTransformKeyTime(self, index: int, view: str = ...) -> float: ... method getTransformKeyTimes (line 120) | def getTransformKeyTimes(self, view: str = ...) -> List[float]: ... method getTranslationAnimCurve (line 121) | def getTranslationAnimCurve(self, index: int, view: str = ...) -> Anim... method getTranslationKeyTime (line 122) | def getTranslationKeyTime(self, index: int, view: str = ...) -> float:... method getTranslationKeyTimes (line 123) | def getTranslationKeyTimes(self, view: str = ...) -> List[float]: ... method isDefault (line 124) | def isDefault(self) -> bool: ... method removePivotPointKey (line 125) | def removePivotPointKey(self, time: float, view: str = ...) -> None: ... method removeRotationKey (line 126) | def removeRotationKey(self, time: float, view: str = ...) -> None: ... method removeScaleKey (line 127) | def removeScaleKey(self, time: float, view: str = ...) -> None: ... method removeSkewXKey (line 128) | def removeSkewXKey(self, time: float, view: str = ...) -> None: ... method removeTransformKey (line 129) | def removeTransformKey(self, time: float, view: str = ...) -> None: ... method removeTranslationKey (line 130) | def removeTranslationKey(self, time: float, view: str = ...) -> None: ... method reset (line 131) | def reset(self) -> None: ... method setExtraMatrixAnimCurve (line 132) | def setExtraMatrixAnimCurve(self, i: int, j: int, animcurve: AnimCurve... method setIdentity (line 133) | def setIdentity(self, view: str = ...) -> None: ... method setPivotPointAnimCurve (line 134) | def setPivotPointAnimCurve(self, index: int, animCurve: AnimCurve, vie... method setRotationAnimCurve (line 135) | def setRotationAnimCurve(self, index: int, animCurve: AnimCurve, view:... method setScaleAnimCurve (line 136) | def setScaleAnimCurve(self, index: int, animCurve: AnimCurve, view: st... method setSkewXAnimCurve (line 137) | def setSkewXAnimCurve(self, index: int, animCurve: AnimCurve, view: st... method setTranslationAnimCurve (line 138) | def setTranslationAnimCurve(self, index: int, animCurve: AnimCurve, vi... method __delattr__ (line 139) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 140) | def __setattr__(self, name, value) -> Any: ... class AnimControlPoint (line 142) | class AnimControlPoint(Flag): method __init__ (line 147) | def __init__(self, *args, **kwargs) -> None: ... method addControlPoint (line 148) | def addControlPoint(self, controlPoint) -> None: ... method addKey (line 149) | def addKey(self, time, controlPointOrDim, view) -> None: ... method addPositionKey (line 150) | def addPositionKey(self, time, positionOrDim, view) -> None: ... method evaluate (line 151) | def evaluate(self, time, view) -> ControlPoint: ... method getControlPointKeyTimes (line 152) | def getControlPointKeyTimes(self, view: str = ...) -> List[float]: ... method getPosition (line 153) | def getPosition(self, time: float, view: str = ...) -> CVec3: ... method getPositionAnimCurve (line 154) | def getPositionAnimCurve(self, index: int, view: str = ...) -> AnimCur... method getPositionKeyTime (line 155) | def getPositionKeyTime(self, index: int, keyIndex: int, view: str = ..... method removeAllKeys (line 156) | def removeAllKeys(self, view: str = ...) -> None: ... method removeKey (line 157) | def removeKey(self, time: float, view: str = ...) -> None: ... method removePositionKey (line 158) | def removePositionKey(self, time: float, view: str = ...) -> None: ... method reset (line 159) | def reset(self) -> None: ... method setPosition (line 160) | def setPosition(self, position, view) -> None: ... method setPositionAnimCurve (line 161) | def setPositionAnimCurve(self, index, animCurve, view) -> None: ... method setPositionKey (line 162) | def setPositionKey(self, time, index, value, id, view) -> None: ... method __delattr__ (line 163) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 164) | def __setattr__(self, name, value) -> Any: ... class AnimCurve (line 166) | class AnimCurve(BaseCurve): method __init__ (line 172) | def __init__(self, *args, **kwargs) -> None: ... method addKey (line 174) | def addKey(self, time: float, value) -> Hash: ... method addKey (line 176) | def addKey(self, keyObj: AnimCurveKey) -> Hash: ... method evaluate (line 177) | def evaluate(self, time) -> float: ... method evaluateY (line 178) | def evaluateY(self, time) -> float: ... method getKey (line 179) | def getKey(self, index) -> AnimCurveKey: ... method getNumberOfKeys (line 180) | def getNumberOfKeys(self) -> int: ... method isDefault (line 181) | def isDefault(self) -> bool: ... method removeAllKeys (line 182) | def removeAllKeys(self) -> None: ... method removeKey (line 183) | def removeKey(self, timeOrHash) -> None: ... method reset (line 184) | def reset(self) -> None: ... method __delattr__ (line 185) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 186) | def __setattr__(self, name, value) -> Any: ... class AnimCurveKey (line 188) | class AnimCurveKey(Flag): method __init__ (line 200) | def __init__(self, *args, **kwargs) -> None: ... method reset (line 201) | def reset(self) -> None: ... method __delattr__ (line 202) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 203) | def __setattr__(self, name, value) -> Any: ... class AnimCurveViews (line 205) | class AnimCurveViews: method __init__ (line 208) | def __init__(self, *args, **kwargs) -> None: ... method getNumberOfViews (line 209) | def getNumberOfViews(self) -> int: ... method getViewIndex (line 210) | def getViewIndex(self, name) -> int: ... method getViewName (line 211) | def getViewName(self, index) -> str: ... method getViewNames (line 212) | def getViewNames(self) -> List[str]: ... method __delattr__ (line 213) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 214) | def __setattr__(self, name, value) -> Any: ... class BaseCurve (line 216) | class BaseCurve(Flag): method __init__ (line 224) | def __init__(self, *args, **kwargs) -> None: ... method __delattr__ (line 225) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 226) | def __setattr__(self, name, value) -> Any: ... class CMatrix4 (line 228) | class CMatrix4: method __hash__ (line 229) | def __hash__(self): ... method __init__ (line 231) | def __init__(self, *args, **kwargs) -> None: ... method makeIdentity (line 232) | def makeIdentity(self) -> None: ... method rotateX (line 233) | def rotateX(self, angleInRadians) -> None: ... method rotateY (line 234) | def rotateY(self, angleInRadians) -> None: ... method rotateZ (line 235) | def rotateZ(self, *args, **kwargs) -> Any: ... method scale (line 236) | def scale(self, x, y, z) -> None: ... method skew (line 237) | def skew(self, x, y, z) -> None: ... method translate (line 238) | def translate(self, x, y, z) -> None: ... method translation (line 239) | def translation(self, x, y, z) -> None: ... method transpose (line 240) | def transpose(self) -> None: ... method __add__ (line 241) | def __add__(self, other) -> Any: ... method __delattr__ (line 242) | def __delattr__(self, name) -> Any: ... method __delitem__ (line 243) | def __delitem__(self, other) -> Any: ... method __eq__ (line 244) | def __eq__(self, other) -> Any: ... method __ge__ (line 245) | def __ge__(self, other) -> Any: ... method __getitem__ (line 246) | def __getitem__(self, index) -> Any: ... method __gt__ (line 247) | def __gt__(self, other) -> Any: ... method __iadd__ (line 248) | def __iadd__(self, other) -> Any: ... method __imul__ (line 249) | def __imul__(self, other) -> Any: ... method __isub__ (line 250) | def __isub__(self, other) -> Any: ... method __le__ (line 251) | def __le__(self, other) -> Any: ... method __len__ (line 252) | def __len__(self) -> Any: ... method __lt__ (line 253) | def __lt__(self, other) -> Any: ... method __mul__ (line 254) | def __mul__(self, other) -> Any: ... method __ne__ (line 255) | def __ne__(self, other) -> Any: ... method __radd__ (line 256) | def __radd__(self, other) -> Any: ... method __rmul__ (line 257) | def __rmul__(self, other) -> Any: ... method __rsub__ (line 258) | def __rsub__(self, other) -> Any: ... method __setattr__ (line 259) | def __setattr__(self, name, value) -> Any: ... method __setitem__ (line 260) | def __setitem__(self, index, object) -> Any: ... method __sub__ (line 261) | def __sub__(self, other) -> Any: ... class CTransform (line 263) | class CTransform: method __init__ (line 273) | def __init__(self, *args, **kwargs) -> None: ... method getInverseMatrix (line 274) | def getInverseMatrix(self) -> CMatrix4: ... method getMatrix (line 275) | def getMatrix(self) -> CMatrix4: ... method getTransposeMatrix (line 276) | def getTransposeMatrix(self) -> CMatrix4: ... method isDefault (line 277) | def isDefault(self) -> bool: ... method reset (line 278) | def reset(self) -> None: ... method setIdentity (line 279) | def setIdentity(self) -> None: ... method __delattr__ (line 280) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 281) | def __setattr__(self, name, value) -> Any: ... class CVec2 (line 283) | class CVec2: method __hash__ (line 286) | def __hash__(self): ... method __init__ (line 288) | def __init__(self, *args, **kwargs) -> None: ... method __add__ (line 289) | def __add__(self, other) -> Any: ... method __delattr__ (line 290) | def __delattr__(self, name) -> Any: ... method __delitem__ (line 291) | def __delitem__(self, other) -> Any: ... method __eq__ (line 292) | def __eq__(self, other) -> Any: ... method __ge__ (line 293) | def __ge__(self, other) -> Any: ... method __getitem__ (line 294) | def __getitem__(self, index) -> Any: ... method __gt__ (line 295) | def __gt__(self, other) -> Any: ... method __iadd__ (line 296) | def __iadd__(self, other) -> Any: ... method __isub__ (line 297) | def __isub__(self, other) -> Any: ... method __le__ (line 298) | def __le__(self, other) -> Any: ... method __len__ (line 299) | def __len__(self) -> Any: ... method __lt__ (line 300) | def __lt__(self, other) -> Any: ... method __mul__ (line 301) | def __mul__(self, other) -> Any: ... method __ne__ (line 302) | def __ne__(self, other) -> Any: ... method __neg__ (line 303) | def __neg__(self) -> Any: ... method __radd__ (line 304) | def __radd__(self, other) -> Any: ... method __rmul__ (line 305) | def __rmul__(self, other) -> Any: ... method __rsub__ (line 306) | def __rsub__(self, other) -> Any: ... method __setattr__ (line 307) | def __setattr__(self, name, value) -> Any: ... method __setitem__ (line 308) | def __setitem__(self, index, object) -> Any: ... method __sub__ (line 309) | def __sub__(self, other) -> Any: ... class CVec3 (line 311) | class CVec3: method __hash__ (line 315) | def __hash__(self): ... method __init__ (line 317) | def __init__(self, *args, **kwargs) -> None: ... method __add__ (line 318) | def __add__(self, other: CVec3) -> CVec3: ... method __delattr__ (line 319) | def __delattr__(self, name) -> Any: ... method __delitem__ (line 320) | def __delitem__(self, other) -> Any: ... method __div__ (line 321) | def __div__(self, other: Union[CVec3, float]) -> CVec3: ... method __eq__ (line 322) | def __eq__(self, other) -> bool: ... method __ge__ (line 323) | def __ge__(self, other) -> bool: ... method __getitem__ (line 324) | def __getitem__(self, index: int) -> float: ... method __gt__ (line 325) | def __gt__(self, other) -> bool: ... method __iadd__ (line 326) | def __iadd__(self, other: CVec3) -> CVec3: ... method __isub__ (line 327) | def __isub__(self, other: CVec3) -> CVec3: ... method __le__ (line 328) | def __le__(self, other) -> bool: ... method __len__ (line 329) | def __len__(self) -> int: ... method __lt__ (line 330) | def __lt__(self, other) -> bool: ... method __mul__ (line 331) | def __mul__(self, other: Union[CVec3, float]) -> CVec3: ... method __ne__ (line 332) | def __ne__(self, other) -> bool: ... method __neg__ (line 333) | def __neg__(self) -> CVec3: ... method __radd__ (line 334) | def __radd__(self, other: CVec3) -> CVec3: ... method __rmul__ (line 335) | def __rmul__(self, other: Union[CVec3, float]) -> CVec3: ... method __rsub__ (line 336) | def __rsub__(self, other: CVec3) -> CVec3: ... method __setattr__ (line 337) | def __setattr__(self, name, value) -> Any: ... method __setitem__ (line 338) | def __setitem__(self, index, object) -> Any: ... method __sub__ (line 339) | def __sub__(self, other: CVec3) -> CVec3: ... method __truediv__ (line 340) | def __truediv__(self, other: Union[CVec3, float]) -> CVec3: ... class CVec4 (line 343) | class CVec4: method __hash__ (line 348) | def __hash__(self): ... method __init__ (line 350) | def __init__(self, *args, **kwargs) -> None: ... method __add__ (line 351) | def __add__(self, other) -> Any: ... method __delattr__ (line 352) | def __delattr__(self, name) -> Any: ... method __delitem__ (line 353) | def __delitem__(self, other) -> Any: ... method __eq__ (line 354) | def __eq__(self, other) -> Any: ... method __ge__ (line 355) | def __ge__(self, other) -> Any: ... method __getitem__ (line 356) | def __getitem__(self, index) -> Any: ... method __gt__ (line 357) | def __gt__(self, other) -> Any: ... method __iadd__ (line 358) | def __iadd__(self, other) -> Any: ... method __isub__ (line 359) | def __isub__(self, other) -> Any: ... method __le__ (line 360) | def __le__(self, other) -> Any: ... method __len__ (line 361) | def __len__(self) -> Any: ... method __lt__ (line 362) | def __lt__(self, other) -> Any: ... method __mul__ (line 363) | def __mul__(self, other) -> Any: ... method __ne__ (line 364) | def __ne__(self, other) -> Any: ... method __neg__ (line 365) | def __neg__(self) -> Any: ... method __radd__ (line 366) | def __radd__(self, other) -> Any: ... method __rmul__ (line 367) | def __rmul__(self, other) -> Any: ... method __rsub__ (line 368) | def __rsub__(self, other) -> Any: ... method __setattr__ (line 369) | def __setattr__(self, name, value) -> Any: ... method __setitem__ (line 370) | def __setitem__(self, index, object) -> Any: ... method __sub__ (line 371) | def __sub__(self, other) -> Any: ... class ControlPoint (line 373) | class ControlPoint: method __init__ (line 379) | def __init__(self, *args, **kwargs) -> None: ... method reset (line 380) | def reset(self, *args, **kwargs) -> Any: ... method __delattr__ (line 381) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 382) | def __setattr__(self, name, value) -> Any: ... class CorrespondencePoints (line 384) | class CorrespondencePoints: method addPoint (line 385) | def addPoint(self, time, t_src, t_dest) -> Any: ... method getAnimCurve (line 386) | def getAnimCurve(self, index, which) -> AnimCurve: ... method getNumPoints (line 387) | def getNumPoints(self) -> Any: ... method getPointValues (line 388) | def getPointValues(self, *args, **kwargs) -> Any: ... method modifyPoint (line 389) | def modifyPoint(self, time, index, which, t) -> Any: ... method removePoint (line 390) | def removePoint(self, index) -> Any: ... method reset (line 391) | def reset(self, *args, **kwargs) -> Any: ... method __delattr__ (line 392) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 393) | def __setattr__(self, name, value) -> Any: ... class CubicCurve (line 395) | class CubicCurve: method __init__ (line 397) | def __init__(self, *args, **kwargs) -> None: ... method getPoint (line 398) | def getPoint(self, t) -> CVec4: ... method __delattr__ (line 399) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 400) | def __setattr__(self, name, value) -> Any: ... class CurveType (line 402) | class CurveType: class ExtrapolationType (line 411) | class ExtrapolationType: class Flag (line 417) | class Flag: method __init__ (line 419) | def __init__(self, *args, **kwargs) -> None: ... method getFlag (line 420) | def getFlag(self, flag) -> bool: ... method setFlag (line 421) | def setFlag(self, flag, value) -> None: ... method __delattr__ (line 422) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 423) | def __setattr__(self, name, value) -> Any: ... class FlagType (line 425) | class FlagType: class InterpolationType (line 443) | class InterpolationType: class RotationOrder (line 449) | class RotationOrder: class TransformOrder (line 458) | class TransformOrder: FILE: nuke/stubs/nuke-stubs/_geo.pyi class AttrGroup (line 3) | class AttrGroup: class AttrType (line 13) | class AttrType: class AttribContext (line 26) | class AttribContext: method empty (line 34) | def empty(self) -> bool: ... method __delattr__ (line 35) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 36) | def __setattr__(self, name, value) -> Any: ... class Attribute (line 38) | class Attribute: method invalid (line 41) | def invalid(self) -> bool: ... method valid (line 42) | def valid(self) -> bool: ... method __delattr__ (line 43) | def __delattr__(self, name) -> Any: ... method __getitem__ (line 44) | def __getitem__(self, index) -> Any: ... method __len__ (line 45) | def __len__(self) -> Any: ... method __setattr__ (line 46) | def __setattr__(self, name, value) -> Any: ... class GeoInfo (line 48) | class GeoInfo: method attribContext (line 49) | def attribContext(self, name: str, group: int, type: int) -> Optional[... method normals (line 50) | def normals(self, *args, **kwargs) -> Any: ... method points (line 51) | def points(self) -> PointList: ... method primitives (line 52) | def primitives(self) -> Tuple[Primitive, ...]: ... method transform (line 53) | def transform(self, *args, **kwargs) -> Any: ... method __delattr__ (line 54) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 55) | def __setattr__(self, name, value) -> Any: ... class GeometryList (line 57) | class GeometryList: method __delattr__ (line 58) | def __delattr__(self, name) -> Any: ... method __getitem__ (line 59) | def __getitem__(self, index: int) -> GeoInfo: ... method __len__ (line 60) | def __len__(self) -> int: ... method __setattr__ (line 61) | def __setattr__(self, name, value) -> Any: ... class PointList (line 63) | class PointList: method __delattr__ (line 64) | def __delattr__(self, name) -> Any: ... method __getitem__ (line 65) | def __getitem__(self, index) -> Any: ... method __len__ (line 66) | def __len__(self) -> Any: ... method __setattr__ (line 67) | def __setattr__(self, name, value) -> Any: ... class Primitive (line 69) | class Primitive: method averageCenter (line 70) | def averageCenter(self, *args, **kwargs) -> Any: ... method faceAverageCenter (line 71) | def faceAverageCenter(self, *args, **kwargs) -> Any: ... method faceVertices (line 72) | def faceVertices(self, faceIndex) -> List[int]: ... method faces (line 73) | def faces(self) -> int: ... method normal (line 74) | def normal(self, *args, **kwargs) -> Any: ... method points (line 75) | def points(self) -> List[int]: ... method __delattr__ (line 76) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 77) | def __setattr__(self, name, value) -> Any: ... function bestFitPlane (line 79) | def bestFitPlane(*args, **kwargs) -> Any: ... FILE: nuke/stubs/nuke-stubs/_localization.pyi function addFileCallback (line 3) | def addFileCallback(myCallback) -> Any: ... function addReadCallback (line 4) | def addReadCallback(myCallback) -> Any: ... function checkForUpdates (line 5) | def checkForUpdates(*args, **kwargs) -> Any: ... function clearUnusedFiles (line 6) | def clearUnusedFiles(*args, **kwargs) -> Any: ... function findNodes (line 7) | def findNodes(*args, **kwargs) -> Any: ... function forceUpdateAll (line 8) | def forceUpdateAll(*args, **kwargs) -> Any: ... function forceUpdateOnDemand (line 9) | def forceUpdateOnDemand(*args, **kwargs) -> Any: ... function forceUpdateSelectedNodes (line 10) | def forceUpdateSelectedNodes(*args, **kwargs) -> Any: ... function isLocalizationPaused (line 11) | def isLocalizationPaused(*args, **kwargs) -> Any: ... function localizationProgress (line 12) | def localizationProgress(*args, **kwargs) -> Any: ... function localizedPaths (line 13) | def localizedPaths(*args, **kwargs) -> Any: ... function mode (line 14) | def mode(*args, **kwargs) -> Any: ... function pauseLocalization (line 15) | def pauseLocalization(*args, **kwargs) -> Any: ... function removeFileCallback (line 16) | def removeFileCallback(*args, **kwargs) -> Any: ... function removeReadCallback (line 17) | def removeReadCallback(*args, **kwargs) -> Any: ... function resumeLocalization (line 18) | def resumeLocalization(*args, **kwargs) -> Any: ... function setMode (line 19) | def setMode(*args, **kwargs) -> Any: ... FILE: nuke/stubs/nuke-stubs/_nuke.pyi class Node (line 105) | class Node: method __init__ (line 107) | def __init__(self, *args, **kwargs) -> None: ... method Class (line 108) | def Class(self) -> str: ... method addCallback (line 109) | def addCallback(self, name: str, callback: Callable) -> None: ... method addKnob (line 110) | def addKnob(self, knob: Knob) -> None: ... method allKnobs (line 111) | def allKnobs(self) -> List[Knob]: ... method autoplace (line 112) | def autoplace(self) -> None: ... method bbox (line 113) | def bbox(self) -> Info: ... method canSetInput (line 114) | def canSetInput(self, i: int, node: Node) -> bool: ... method channels (line 115) | def channels(self) -> List[str]: ... method clearCallbacks (line 116) | def clearCallbacks(self, *args, **kwargs) -> Any: ... method clearCustomIcon (line 117) | def clearCustomIcon(self, *args, **kwargs) -> Any: ... method clones (line 118) | def clones(self) -> int: ... method connectInput (line 119) | def connectInput(self, i: int, node: Optional[Node]) -> bool: ... method deepSample (line 120) | def deepSample(self, *args, **kwargs) -> Any: ... method deepSampleCount (line 121) | def deepSampleCount(self, x: int, y: int) -> int: ... method dependencies (line 122) | def dependencies(self, mask: int) -> List[Node]: ... method dependent (line 123) | def dependent(self, mask: int, forceEvaluate: bool = ...) -> List[Node... method error (line 124) | def error(self) -> bool: ... method executePythonCallback (line 125) | def executePythonCallback(self, event: str) -> Any: ... method fileDependencies (line 126) | def fileDependencies(self, start: int, end: int) -> List[List[Union[No... method firstFrame (line 127) | def firstFrame(self) -> int: ... method forceUpdateLocalization (line 128) | def forceUpdateLocalization(self) -> None: ... method forceValidate (line 129) | def forceValidate(self) -> None: ... method format (line 130) | def format(self) -> Format: ... method frameRange (line 131) | def frameRange(self) -> FrameRange: ... method fullName (line 132) | def fullName(self) -> str: ... method getNumKnobs (line 133) | def getNumKnobs(self) -> int: ... method hasError (line 134) | def hasError(self) -> bool: ... method height (line 135) | def height(self) -> int: ... method help (line 136) | def help(self) -> str: ... method hideControlPanel (line 137) | def hideControlPanel(self) -> None: ... method input (line 138) | def input(self, index: int) -> Optional[Node]: ... method inputs (line 139) | def inputs(self) -> int: ... method isCloneable (line 140) | def isCloneable(self) -> bool: ... method isLocalizationOutdated (line 141) | def isLocalizationOutdated(self) -> bool: ... method isLocalized (line 142) | def isLocalized(self) -> bool: ... method isSelected (line 143) | def isSelected(self) -> bool: ... method knob (line 144) | def knob(self, p: Union[str, int], follow_link: bool = ...) -> Optiona... method knobs (line 145) | def knobs(self) -> Dict[str, Knob]: ... method lastFrame (line 146) | def lastFrame(self) -> int: ... method linkableKnobs (line 147) | def linkableKnobs(self, knobType: int) -> Tuple[LinkableKnobInfo, ...]... method localizationProgress (line 148) | def localizationProgress(self) -> float: ... method lock (line 149) | def lock(self) -> None: ... method locked (line 150) | def locked(self) -> bool: ... method maxInputs (line 151) | def maxInputs(self) -> int: ... method maxOutputs (line 152) | def maxOutputs(self) -> int: ... method maximumInputs (line 153) | def maximumInputs(self) -> int: ... method maximumOutputs (line 154) | def maximumOutputs(self) -> int: ... method metadata (line 156) | def metadata(self, time: float = ..., view: str = ...) -> Dict[str, An... method metadata (line 158) | def metadata(self, key: str, time: float = ..., view: str = ...) -> An... method minInputs (line 159) | def minInputs(self) -> int: ... method minimumInputs (line 160) | def minimumInputs(self) -> int: ... method name (line 161) | def name(self) -> str: ... method numKnobs (line 162) | def numKnobs(self) -> int: ... method opHashes (line 163) | def opHashes(self) -> List[int]: ... method optionalInput (line 164) | def optionalInput(self) -> int: ... method parent (line 165) | def parent(self) -> Group: ... method performanceInfo (line 166) | def performanceInfo(self, *args, **kwargs) -> Any: ... method pixelAspect (line 167) | def pixelAspect(self) -> float: ... method proxy (line 168) | def proxy(self) -> bool: ... method readKnobs (line 169) | def readKnobs(self, s: str) -> None: ... method redraw (line 170) | def redraw(self) -> None: ... method removeCallback (line 171) | def removeCallback(self, *args, **kwargs) -> Any: ... method removeKnob (line 172) | def removeKnob(self, knob: Knob) -> None: ... method resetKnobsToDefault (line 173) | def resetKnobsToDefault(self) -> None: ... method rootNode (line 174) | def rootNode(self) -> Group: ... method running (line 176) | def running(self, *args, **kwargs) -> Any: ... method sample (line 178) | def sample(self, Xcoordinate) -> Any: ... method sample (line 180) | def sample(Ycoordinate) -> Any: ... method sample (line 182) | def sample(Xcoordinate) -> Any: ... method sample (line 184) | def sample(Ycoordinate) -> Any: ... method screenHeight (line 185) | def screenHeight(self) -> int: ... method screenWidth (line 186) | def screenWidth(self) -> int: ... method selectOnly (line 187) | def selectOnly(self) -> None: ... method setCustomIcon (line 188) | def setCustomIcon(self, *args, **kwargs) -> Any: ... method setInput (line 189) | def setInput(self, i: int, node: Optional[Node]) -> bool: ... method setName (line 190) | def setName(self, name: str, uncollide: bool = ..., updateExpressions:... method setSelected (line 191) | def setSelected(self, selected: bool) -> None: ... method setTab (line 192) | def setTab(self, tabIndex: int) -> None: ... method setXYpos (line 193) | def setXYpos(self, x: int, y: int) -> None: ... method setXpos (line 194) | def setXpos(self, x: int) -> None: ... method setYpos (line 195) | def setYpos(self, y: int) -> None: ... method showControlPanel (line 196) | def showControlPanel(self, forceFloat: bool = ...) -> None: ... method showInfo (line 197) | def showInfo(self, *args, **kwargs) -> Any: ... method shown (line 198) | def shown(self) -> bool: ... method treeHasError (line 199) | def treeHasError(self) -> bool: ... method unlock (line 200) | def unlock(self) -> None: ... method upstreamFrameRange (line 201) | def upstreamFrameRange(self, i: int) -> Optional[FrameRange]: ... method width (line 202) | def width(self) -> int: ... method writeKnobs (line 203) | def writeKnobs(self, flags: int = ...) -> str: ... method xpos (line 204) | def xpos(self) -> int: ... method ypos (line 205) | def ypos(self) -> int: ... method __getitem__ (line 208) | def __getitem__(self, name: str) -> Knob: ... method __len__ (line 209) | def __len__(self) -> int: ... method __reduce_ex__ (line 210) | def __reduce_ex__(self, protocol) -> Any: ... method __hash__ (line 211) | def __hash__(self) -> Any: ... method __eq__ (line 212) | def __eq__(self, other) -> bool: ... method __ne__ (line 213) | def __ne__(self, other) -> bool: ... method __lt__ (line 214) | def __lt__(self, other) -> bool: ... method __le__ (line 215) | def __le__(self, other) -> bool: ... method __gt__ (line 216) | def __gt__(self, other) -> bool: ... method __ge__ (line 217) | def __ge__(self, other) -> bool: ... class Group (line 219) | class Group(Node): method begin (line 220) | def begin(self) -> Group: ... method connectSelectedNodes (line 221) | def connectSelectedNodes(self, *args, **kwargs) -> Any: ... method end (line 222) | def end(self) -> None: ... method expand (line 223) | def expand(self, *args, **kwargs) -> Any: ... method node (line 224) | def node(self, s: str) -> Optional[Node]: ... method nodes (line 225) | def nodes(self) -> List[Node]: ... method numNodes (line 226) | def numNodes(self) -> int: ... method output (line 227) | def output(self, *args, **kwargs) -> Any: ... method run (line 228) | def run(self, *args, **kwargs) -> Any: ... method selectedNode (line 229) | def selectedNode(self) -> Optional[Node]: ... method selectedNodes (line 230) | def selectedNodes(self) -> List[Node]: ... method splaySelectedNodes (line 231) | def splaySelectedNodes(self, *args, **kwargs) -> Any: ... method subgraphLocked (line 232) | def subgraphLocked(self) -> bool: ... method __enter__ (line 233) | def __enter__(self) -> Group: ... method __exit__ (line 234) | def __exit__(self, type, value, traceback) -> Any: ... method __reduce_ex__ (line 237) | def __reduce_ex__(self, protocol) -> Any: ... class Knob (line 239) | class Knob: method __init__ (line 240) | def __init__(self, *args, **kwargs) -> None: ... method Class (line 241) | def Class(self) -> str: ... method clearAnimated (line 242) | def clearAnimated(self, channel: int = ...) -> bool: ... method clearFlag (line 243) | def clearFlag(self, flag: int) -> None: ... method critical (line 244) | def critical(self, *args, **kwargs) -> Any: ... method debug (line 245) | def debug(self, *args, **kwargs) -> Any: ... method enabled (line 246) | def enabled(self) -> bool: ... method error (line 247) | def error(self, *args, **kwargs) -> Any: ... method fromScript (line 248) | def fromScript(self, script: str) -> None: ... method fullyQualifiedName (line 249) | def fullyQualifiedName(self, channel: int = ...) -> str: ... method getDerivative (line 250) | def getDerivative(self, *args, **kwargs) -> Any: ... method getFlag (line 251) | def getFlag(self, flag: int) -> bool: ... method getIntegral (line 252) | def getIntegral(self, *args, **kwargs) -> Any: ... method getKeyIndex (line 253) | def getKeyIndex(self, *args, **kwargs) -> Any: ... method getKeyList (line 254) | def getKeyList(self) -> List[int]: ... method getKeyTime (line 255) | def getKeyTime(self, *args, **kwargs) -> Any: ... method getNthDerivative (line 256) | def getNthDerivative(self, *args, **kwargs) -> Any: ... method getNumKeys (line 257) | def getNumKeys(self, channel: int = ...) -> int: ... method getValue (line 258) | def getValue(self, channel: int = ...) -> Any: ... method getValueAt (line 259) | def getValueAt(self, frame: float, index: int = ..., view: Optional[st... method hasExpression (line 260) | def hasExpression(self, index: int = ...) -> bool: ... method isAnimated (line 261) | def isAnimated(self, channel: int = ...) -> bool: ... method isKey (line 262) | def isKey(self, channel: int = ...) -> bool: ... method isKeyAt (line 263) | def isKeyAt(self, frame: float, index: int = ..., view: Optional[str] ... method label (line 264) | def label(self) -> str: ... method name (line 265) | def name(self) -> str: ... method node (line 266) | def node(self) -> Node: ... method removeKey (line 267) | def removeKey(self, channel: int = ...) -> bool: ... method removeKeyAt (line 268) | def removeKeyAt(self, frame: float, index: int = ..., view: Optional[s... method setAnimated (line 269) | def setAnimated(self, channel: int = ...) -> bool: ... method setEnabled (line 270) | def setEnabled(self, enabled: bool) -> None: ... method setExpression (line 271) | def setExpression(self, expression: str, index: int = ..., view: Optio... method setFlag (line 272) | def setFlag(self, flag: int) -> None: ... method setLabel (line 273) | def setLabel(self, label: str) -> None: ... method setName (line 274) | def setName(self, name: str) -> None: ... method setTooltip (line 275) | def setTooltip(self, tooltip: str) -> None: ... method setValue (line 276) | def setValue(self, val: Any, chan: int = ...) -> bool: ... method setValueAt (line 277) | def setValueAt(self, val: Any, time: float, index: int = ..., view: Op... method setVisible (line 278) | def setVisible(self, visible: bool) -> None: ... method toScript (line 279) | def toScript(self, quote: bool = ..., context: Optional[OutputContext]... method tooltip (line 280) | def tooltip(self) -> str: ... method value (line 281) | def value(self, index: int = ...) -> Any: ... method visible (line 282) | def visible(self) -> bool: ... method warning (line 283) | def warning(self, *args, **kwargs) -> Any: ... method __hash__ (line 284) | def __hash__(self) -> Any: ... class Array_Knob (line 286) | class Array_Knob(Knob): method __init__ (line 288) | def __init__(self, *args, **kwargs) -> None: ... method animation (line 289) | def animation(self, *args, **kwargs) -> Any: ... method animations (line 290) | def animations(self) -> Any: ... method array (line 291) | def array(self, *args, **kwargs) -> Any: ... method arraySize (line 292) | def arraySize(self, *args, **kwargs) -> Any: ... method clearAnimated (line 293) | def clearAnimated(self, *args, **kwargs) -> Any: ... method copyAnimation (line 294) | def copyAnimation(self, *args, **kwargs) -> Any: ... method copyAnimations (line 295) | def copyAnimations(self, *args, **kwargs) -> Any: ... method defaultValue (line 296) | def defaultValue(self, *args, **kwargs) -> Any: ... method deleteAnimation (line 297) | def deleteAnimation(self, *args, **kwargs) -> Any: ... method dimensions (line 298) | def dimensions(self, *args, **kwargs) -> Any: ... method frame (line 299) | def frame(self, *args, **kwargs) -> Any: ... method fromScript (line 300) | def fromScript(self, *args, **kwargs) -> Any: ... method getDerivative (line 301) | def getDerivative(self, *args, **kwargs) -> Any: ... method getIntegral (line 302) | def getIntegral(self, *args, **kwargs) -> Any: ... method getKeyIndex (line 303) | def getKeyIndex(self, *args, **kwargs) -> Any: ... method getKeyTime (line 304) | def getKeyTime(self, *args, **kwargs) -> Any: ... method getNthDerivative (line 305) | def getNthDerivative(self, *args, **kwargs) -> Any: ... method getNumKeys (line 306) | def getNumKeys(self, *args, **kwargs) -> Any: ... method getValue (line 307) | def getValue(self, *args, **kwargs) -> Any: ... method getValueAt (line 308) | def getValueAt(self, *args, **kwargs) -> Any: ... method hasExpression (line 309) | def hasExpression(self, *args, **kwargs) -> Any: ... method height (line 310) | def height(self, *args, **kwargs) -> Any: ... method isAnimated (line 311) | def isAnimated(self, *args, **kwargs) -> Any: ... method isKey (line 312) | def isKey(self, *args, **kwargs) -> Any: ... method isKeyAt (line 313) | def isKeyAt(self, *args, **kwargs) -> Any: ... method max (line 314) | def max(self, *args, **kwargs) -> Any: ... method maximum (line 315) | def maximum(self, *args, **kwargs) -> Any: ... method min (line 316) | def min(self, *args, **kwargs) -> Any: ... method minimum (line 317) | def minimum(self, *args, **kwargs) -> Any: ... method notDefault (line 318) | def notDefault(self, *args, **kwargs) -> Any: ... method removeKey (line 319) | def removeKey(self, *args, **kwargs) -> Any: ... method removeKeyAt (line 320) | def removeKeyAt(self, *args, **kwargs) -> Any: ... method resize (line 321) | def resize(self, *args, **kwargs) -> Any: ... method setAnimated (line 322) | def setAnimated(self, *args, **kwargs) -> Any: ... method setDefaultValue (line 323) | def setDefaultValue(self, *args, **kwargs) -> Any: ... method setExpression (line 324) | def setExpression(self, expression, channel = ..., view = ...) -> bool... method setKeyAt (line 325) | def setKeyAt(self, *args, **kwargs) -> Any: ... method setRange (line 326) | def setRange(self, *args, **kwargs) -> Any: ... method setSingleValue (line 327) | def setSingleValue(self, *args, **kwargs) -> Any: ... method setValue (line 328) | def setValue(self, *args, **kwargs) -> Any: ... method setValueAt (line 329) | def setValueAt(self, *args, **kwargs) -> Any: ... method singleValue (line 330) | def singleValue(self, *args, **kwargs) -> Any: ... method splitView (line 331) | def splitView(self, *args, **kwargs) -> Any: ... method toScript (line 332) | def toScript(self, *args, **kwargs) -> Any: ... method unsplitView (line 333) | def unsplitView(self, *args, **kwargs) -> Any: ... method value (line 334) | def value(self, *args, **kwargs) -> Any: ... method valueAt (line 335) | def valueAt(self, *args, **kwargs) -> Any: ... method vect (line 336) | def vect(self, *args, **kwargs) -> Any: ... method width (line 337) | def width(self, *args, **kwargs) -> Any: ... method __hash__ (line 338) | def __hash__(self) -> Any: ... class Color_Knob (line 340) | class Color_Knob(Array_Knob): method __init__ (line 341) | def __init__(self, *args, **kwargs) -> None: ... method inputNumber (line 342) | def inputNumber(self) -> int: ... method names (line 343) | def names(self, n) -> str: ... method __hash__ (line 344) | def __hash__(self) -> Any: ... class Unsigned_Knob (line 346) | class Unsigned_Knob(Array_Knob): method __init__ (line 347) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 348) | def setValue(self, val) -> bool: ... method value (line 349) | def value(self) -> int: ... method __hash__ (line 350) | def __hash__(self) -> Any: ... class Enumeration_Knob (line 352) | class Enumeration_Knob(Unsigned_Knob): method __init__ (line 353) | def __init__(self, *args, **kwargs) -> None: ... method enumName (line 354) | def enumName(self, n: int) -> str: ... method getDisplayStrFromID (line 355) | def getDisplayStrFromID(self) -> Any: ... method numValues (line 356) | def numValues(self) -> int: ... method setValue (line 357) | def setValue(self, *args, **kwargs) -> Any: ... method setValues (line 358) | def setValues(self, *args, **kwargs) -> Any: ... method value (line 359) | def value(self) -> Any: ... method values (line 360) | def values(self) -> Any: ... method __hash__ (line 361) | def __hash__(self) -> Any: ... class Channel_Knob (line 363) | class Channel_Knob(Knob): method __init__ (line 364) | def __init__(self, *args, **kwargs) -> None: ... method channelSelector (line 365) | def channelSelector(self) -> bool: ... method checkMarks (line 366) | def checkMarks(self) -> bool: ... method depth (line 367) | def depth(self) -> int: ... method enableChannel (line 368) | def enableChannel(self, name, b) -> None: ... method inputKnob (line 369) | def inputKnob(self) -> bool: ... method inputNumber (line 370) | def inputNumber(self) -> int: ... method isChannelEnabled (line 371) | def isChannelEnabled(self, name) -> bool: ... method layerSelector (line 372) | def layerSelector(self) -> bool: ... method setEnable (line 373) | def setEnable(self, name) -> None: ... method setInput (line 374) | def setInput(self, num) -> None: ... method setValue (line 375) | def setValue(self, name) -> None: ... method value (line 376) | def value(self) -> str: ... method __hash__ (line 377) | def __hash__(self) -> Any: ... class String_Knob (line 379) | class String_Knob(Knob): method __init__ (line 380) | def __init__(self, *args, **kwargs) -> None: ... method getText (line 381) | def getText(self, oc = ...) -> str: ... method getValue (line 382) | def getValue(self, *args, **kwargs) -> Any: ... method setText (line 383) | def setText(self, *args, **kwargs) -> Any: ... method setValue (line 384) | def setValue(self, val, view = ...) -> None: ... method splitView (line 385) | def splitView(self, *args, **kwargs) -> Any: ... method unsplitView (line 386) | def unsplitView(self, *args, **kwargs) -> Any: ... method value (line 387) | def value(self, oc = ...) -> str: ... method __hash__ (line 388) | def __hash__(self) -> Any: ... class Script_Knob (line 390) | class Script_Knob(String_Knob): method __init__ (line 391) | def __init__(self, *args, **kwargs) -> None: ... method command (line 392) | def command(self) -> str: ... method execute (line 393) | def execute(self) -> None: ... method setCommand (line 394) | def setCommand(self, cmd) -> None: ... method setValue (line 395) | def setValue(self, cmd) -> None: ... method value (line 396) | def value(self) -> str: ... method __hash__ (line 397) | def __hash__(self) -> Any: ... class AColor_Knob (line 399) | class AColor_Knob(Color_Knob): method __init__ (line 400) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 401) | def __hash__(self) -> Any: ... class AnimationCurve (line 403) | class AnimationCurve: method __init__ (line 405) | def __init__(self, *args, **kwargs) -> None: ... method addKey (line 406) | def addKey(self, *args, **kwargs) -> Any: ... method changeInterpolation (line 407) | def changeInterpolation(self, *args, **kwargs) -> Any: ... method clear (line 408) | def clear(self, *args, **kwargs) -> Any: ... method constant (line 409) | def constant(self) -> bool: ... method derivative (line 410) | def derivative(self, *args, **kwargs) -> Any: ... method evaluate (line 411) | def evaluate(self, t) -> float: ... method expression (line 412) | def expression(self, *args, **kwargs) -> Any: ... method fixSlopes (line 413) | def fixSlopes(self, *args, **kwargs) -> Any: ... method fromScript (line 414) | def fromScript(self, *args, **kwargs) -> Any: ... method identity (line 415) | def identity(self) -> bool: ... method integrate (line 416) | def integrate(self, *args, **kwargs) -> Any: ... method inverse (line 417) | def inverse(self, *args, **kwargs) -> Any: ... method keys (line 418) | def keys(self, *args, **kwargs) -> Any: ... method knob (line 419) | def knob(self, *args, **kwargs) -> Any: ... method knobAndFieldName (line 420) | def knobAndFieldName(self, *args, **kwargs) -> Any: ... method knobIndex (line 421) | def knobIndex(self, *args, **kwargs) -> Any: ... method noExpression (line 422) | def noExpression(self) -> bool: ... method removeKey (line 423) | def removeKey(self, *args, **kwargs) -> Any: ... method selected (line 424) | def selected(self) -> bool: ... method setExpression (line 425) | def setExpression(self, *args, **kwargs) -> Any: ... method setKey (line 426) | def setKey(self, *args, **kwargs) -> Any: ... method size (line 427) | def size(self, *args, **kwargs) -> Any: ... method toScript (line 428) | def toScript(self, selected) -> str: ... method view (line 429) | def view(self, *args, **kwargs) -> Any: ... method __hash__ (line 430) | def __hash__(self) -> Any: ... class AnimationKey (line 432) | class AnimationKey: method __init__ (line 442) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 443) | def __hash__(self) -> Any: ... class Axis_Knob (line 445) | class Axis_Knob(Knob): method __init__ (line 446) | def __init__(self, *args, **kwargs) -> None: ... method pivot (line 447) | def pivot(self) -> XYZ_Knob: ... method rotate (line 448) | def rotate(self) -> XYZ_Knob: ... method scale (line 449) | def scale(self) -> Scale_Knob: ... method skew (line 450) | def skew(self) -> XYZ_Knob: ... method translate (line 451) | def translate(self) -> XYZ_Knob: ... method uniformScale (line 452) | def uniformScale(self) -> Double_Knob: ... method value (line 453) | def value(self) -> _nukemath.Matrix4: ... method __hash__ (line 454) | def __hash__(self) -> Any: ... class BBox_Knob (line 456) | class BBox_Knob(Array_Knob): method __init__ (line 457) | def __init__(self, *args, **kwargs) -> None: ... method fromDict (line 458) | def fromDict(self, box) -> None: ... method names (line 459) | def names(self, *args, **kwargs) -> Any: ... method r (line 460) | def r(self, *args, **kwargs) -> Any: ... method setR (line 461) | def setR(self, *args, **kwargs) -> Any: ... method setT (line 462) | def setT(self, *args, **kwargs) -> Any: ... method setX (line 463) | def setX(self, *args, **kwargs) -> Any: ... method setY (line 464) | def setY(self, *args, **kwargs) -> Any: ... method t (line 465) | def t(self, *args, **kwargs) -> Any: ... method toDict (line 466) | def toDict(self, *args, **kwargs) -> Any: ... method value (line 467) | def value(self, *args, **kwargs) -> Any: ... method x (line 468) | def x(self, *args, **kwargs) -> Any: ... method y (line 469) | def y(self, *args, **kwargs) -> Any: ... method __hash__ (line 470) | def __hash__(self) -> Any: ... class BackdropNode (line 472) | class BackdropNode(Node): method getNodes (line 474) | def getNodes(self) -> alistofnodescontainedinsidethebackdrop: ... method selectNodes (line 478) | def selectNodes(self, selectNodes) -> None: ... method selectNodes (line 480) | def selectNodes(self) -> Any: ... class BeginTabGroup_Knob (line 484) | class BeginTabGroup_Knob(Knob): method __init__ (line 486) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 487) | def __hash__(self) -> Any: ... class Bitmask_Knob (line 489) | class Bitmask_Knob(Enumeration_Knob): method __init__ (line 491) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 492) | def __hash__(self) -> Any: ... class Boolean_Knob (line 494) | class Boolean_Knob(Array_Knob): method __init__ (line 495) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 496) | def setValue(self, b) -> bool: ... method value (line 497) | def value(self) -> bool: ... method __eq__ (line 498) | def __eq__(self, other) -> Any: ... method __ge__ (line 499) | def __ge__(self, other) -> Any: ... method __gt__ (line 500) | def __gt__(self, other) -> Any: ... method __hash__ (line 501) | def __hash__(self) -> Any: ... method __le__ (line 502) | def __le__(self, other) -> Any: ... method __lt__ (line 503) | def __lt__(self, other) -> Any: ... method __ne__ (line 504) | def __ne__(self, other) -> Any: ... class Box (line 506) | class Box: method __init__ (line 507) | def __init__(self, *args, **kwargs) -> None: ... method centerX (line 508) | def centerX(self) -> float: ... method centerY (line 509) | def centerY(self) -> float: ... method clampX (line 510) | def clampX(self, *args, **kwargs) -> Any: ... method clampY (line 511) | def clampY(self, *args, **kwargs) -> Any: ... method clear (line 512) | def clear(self, *args, **kwargs) -> Any: ... method h (line 513) | def h(self) -> int: ... method intersect (line 514) | def intersect(self, *args, **kwargs) -> Any: ... method isConstant (line 515) | def isConstant(self, *args, **kwargs) -> Any: ... method merge (line 516) | def merge(self, *args, **kwargs) -> Any: ... method move (line 517) | def move(self, *args, **kwargs) -> Any: ... method pad (line 518) | def pad(self, *args, **kwargs) -> Any: ... method r (line 519) | def r(self) -> int: ... method set (line 520) | def set(self, x, y, r, t) -> None: ... method setH (line 521) | def setH(self, n) -> None: ... method setR (line 522) | def setR(self, n) -> None: ... method setT (line 523) | def setT(self, n) -> None: ... method setW (line 524) | def setW(self, n) -> None: ... method setX (line 525) | def setX(self, n) -> None: ... method setY (line 526) | def setY(self, n) -> None: ... method t (line 527) | def t(self) -> int: ... method w (line 528) | def w(self) -> int: ... method x (line 529) | def x(self) -> int: ... method y (line 530) | def y(self) -> int: ... method __hash__ (line 531) | def __hash__(self) -> Any: ... class Box3_Knob (line 533) | class Box3_Knob(Array_Knob): method __init__ (line 534) | def __init__(self, *args, **kwargs) -> None: ... method f (line 535) | def f(self, *args, **kwargs) -> Any: ... method n (line 536) | def n(self, *args, **kwargs) -> Any: ... method names (line 537) | def names(self, *args, **kwargs) -> Any: ... method r (line 538) | def r(self, *args, **kwargs) -> Any: ... method setF (line 539) | def setF(self, *args, **kwargs) -> Any: ... method setN (line 540) | def setN(self, *args, **kwargs) -> Any: ... method setR (line 541) | def setR(self, *args, **kwargs) -> Any: ... method setT (line 542) | def setT(self, *args, **kwargs) -> Any: ... method setX (line 543) | def setX(self, *args, **kwargs) -> Any: ... method setY (line 544) | def setY(self, *args, **kwargs) -> Any: ... method t (line 545) | def t(self, *args, **kwargs) -> Any: ... method value (line 546) | def value(self, *args, **kwargs) -> Any: ... method x (line 547) | def x(self, *args, **kwargs) -> Any: ... method y (line 548) | def y(self, *args, **kwargs) -> Any: ... method __hash__ (line 549) | def __hash__(self) -> Any: ... class CancelledError (line 551) | class CancelledError(Exception): ... class CascadingEnumeration_Knob (line 553) | class CascadingEnumeration_Knob(Enumeration_Knob): method __init__ (line 554) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 555) | def __hash__(self) -> Any: ... class ChannelMask_Knob (line 557) | class ChannelMask_Knob(Channel_Knob): method __init__ (line 558) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 559) | def __hash__(self) -> Any: ... class ColorChip_Knob (line 561) | class ColorChip_Knob(Unsigned_Knob): method __init__ (line 562) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 563) | def __hash__(self) -> Any: ... class Disable_Knob (line 565) | class Disable_Knob(Boolean_Knob): method __init__ (line 566) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 567) | def setValue(self, b) -> bool: ... method value (line 568) | def value(self) -> bool: ... method __eq__ (line 569) | def __eq__(self, other) -> Any: ... method __ge__ (line 570) | def __ge__(self, other) -> Any: ... method __gt__ (line 571) | def __gt__(self, other) -> Any: ... method __hash__ (line 572) | def __hash__(self) -> Any: ... method __le__ (line 573) | def __le__(self, other) -> Any: ... method __lt__ (line 574) | def __lt__(self, other) -> Any: ... method __ne__ (line 575) | def __ne__(self, other) -> Any: ... class Double_Knob (line 577) | class Double_Knob(Array_Knob): method __init__ (line 578) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 579) | def __hash__(self) -> Any: ... class EditableEnumeration_Knob (line 581) | class EditableEnumeration_Knob(Enumeration_Knob): method __init__ (line 582) | def __init__(self, *args, **kwargs) -> None: ... method enumName (line 583) | def enumName(self, n) -> str: ... method getDisplayStrFromID (line 584) | def getDisplayStrFromID(self) -> Any: ... method numValues (line 585) | def numValues(self) -> int: ... method setValue (line 586) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 587) | def value(self) -> Any: ... method values (line 588) | def values(self) -> Any: ... method __hash__ (line 589) | def __hash__(self) -> Any: ... class EndTabGroup_Knob (line 591) | class EndTabGroup_Knob(Knob): method __init__ (line 593) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 594) | def __hash__(self) -> Any: ... class EvalString_Knob (line 596) | class EvalString_Knob(String_Knob): method __init__ (line 597) | def __init__(self, *args, **kwargs) -> None: ... method evaluate (line 598) | def evaluate(self, *args, **kwargs) -> Any: ... method __hash__ (line 599) | def __hash__(self) -> Any: ... class Eyedropper_Knob (line 601) | class Eyedropper_Knob(AColor_Knob): method __init__ (line 602) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 603) | def __hash__(self) -> Any: ... class File_Knob (line 605) | class File_Knob(EvalString_Knob): method __init__ (line 606) | def __init__(self, *args, **kwargs) -> None: ... method fromScript (line 607) | def fromScript(self, *args, **kwargs) -> Any: ... method fromUserText (line 608) | def fromUserText(self, *args, **kwargs) -> Any: ... method getEvaluatedValue (line 609) | def getEvaluatedValue(self, *args, **kwargs) -> Any: ... method getValue (line 610) | def getValue(self, *args, **kwargs) -> Any: ... method setValue (line 611) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 612) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 613) | def __hash__(self) -> Any: ... class Font_Knob (line 615) | class Font_Knob(Knob): method __init__ (line 616) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 617) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 618) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 619) | def __hash__(self) -> Any: ... class Format (line 621) | class Format: method __init__ (line 622) | def __init__(self, *args, **kwargs) -> None: ... method add (line 623) | def add(self, name) -> None: ... method fromUV (line 624) | def fromUV(self, *args, **kwargs) -> Any: ... method height (line 625) | def height(self) -> int: ... method name (line 626) | def name(self) -> str: ... method pixelAspect (line 627) | def pixelAspect(self) -> float: ... method r (line 628) | def r(self) -> int: ... method scaled (line 629) | def scaled(self, sx, sy, tx, ty) -> Format: ... method setHeight (line 630) | def setHeight(self, newHeight) -> None: ... method setName (line 631) | def setName(self, name) -> None: ... method setPixelAspect (line 632) | def setPixelAspect(self, aspectRatio) -> None: ... method setR (line 633) | def setR(self, newR) -> None: ... method setT (line 634) | def setT(self, newT) -> None: ... method setWidth (line 635) | def setWidth(self, newWidth) -> None: ... method setX (line 636) | def setX(self, newX) -> None: ... method setY (line 637) | def setY(self, newY) -> None: ... method t (line 638) | def t(self) -> int: ... method toUV (line 639) | def toUV(self, *args, **kwargs) -> Any: ... method width (line 640) | def width(self) -> int: ... method x (line 641) | def x(self) -> int: ... method y (line 642) | def y(self) -> int: ... method __hash__ (line 643) | def __hash__(self) -> Any: ... class Format_Knob (line 645) | class Format_Knob(Knob): method __init__ (line 646) | def __init__(self, *args, **kwargs) -> None: ... method actualValue (line 647) | def actualValue(self, *args, **kwargs) -> Any: ... method fromScript (line 648) | def fromScript(self, *args, **kwargs) -> Any: ... method name (line 649) | def name(self, *args, **kwargs) -> Any: ... method notDefault (line 650) | def notDefault(self, *args, **kwargs) -> Any: ... method setValue (line 651) | def setValue(self, *args, **kwargs) -> Any: ... method toScript (line 652) | def toScript(self, *args, **kwargs) -> Any: ... method value (line 653) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 654) | def __hash__(self) -> Any: ... class FrameRange (line 656) | class FrameRange: method __init__ (line 657) | def __init__(self, *args, **kwargs) -> None: ... method first (line 658) | def first(self) -> int: ... method frames (line 659) | def frames(self) -> int: ... method getFrame (line 660) | def getFrame(self, n) -> int: ... method increment (line 661) | def increment(self) -> int: ... method isInRange (line 662) | def isInRange(self, n) -> int: ... method last (line 663) | def last(self) -> int: ... method maxFrame (line 664) | def maxFrame(self) -> int: ... method minFrame (line 665) | def minFrame(self) -> int: ... method setFirst (line 666) | def setFirst(self, n) -> None: ... method setIncrement (line 667) | def setIncrement(self, n) -> None: ... method setLast (line 668) | def setLast(self, n) -> None: ... method stepFrame (line 669) | def stepFrame(self) -> int: ... method __hash__ (line 670) | def __hash__(self) -> Any: ... method __iter__ (line 671) | def __iter__(self) -> Any: ... method __next__ (line 672) | def __next__(self) -> Any: ... class FrameRanges (line 674) | class FrameRanges: method __init__ (line 675) | def __init__(self, *args, **kwargs) -> None: ... method add (line 676) | def add(self, r) -> None: ... method clear (line 677) | def clear(self) -> None: ... method compact (line 678) | def compact(self) -> None: ... method getRange (line 679) | def getRange(self) -> FrameRange: ... method maxFrame (line 680) | def maxFrame(self) -> int: ... method minFrame (line 681) | def minFrame(self) -> int: ... method size (line 682) | def size(self) -> int: ... method toFrameList (line 683) | def toFrameList(self, *args, **kwargs) -> Any: ... method __hash__ (line 684) | def __hash__(self) -> Any: ... method __iter__ (line 685) | def __iter__(self) -> Any: ... method __next__ (line 686) | def __next__(self) -> Any: ... class FreeType_Knob (line 688) | class FreeType_Knob(Knob): method __init__ (line 689) | def __init__(self, *args, **kwargs) -> None: ... method getValue (line 690) | def getValue(self, *args, **kwargs) -> Any: ... method setValue (line 691) | def setValue(self, *args, **kwargs) -> Any: ... method __hash__ (line 692) | def __hash__(self) -> Any: ... class GeoSelect_Knob (line 694) | class GeoSelect_Knob(Knob): method getFaceWeights (line 695) | def getFaceWeights(self) -> List[List[float]]: ... method getGeometry (line 696) | def getGeometry(self) -> _geo.GeometryList: ... method getSelectedFaces (line 697) | def getSelectedFaces(self) -> List[List[float]]: ... method getSelection (line 698) | def getSelection(self) -> List[List[float]]: ... method getSelectionWeights (line 699) | def getSelectionWeights(self) -> List[List[float]]: ... method __delattr__ (line 700) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 701) | def __setattr__(self, name, value) -> Any: ... class Gizmo (line 703) | class Gizmo(Group): method command (line 704) | def command(self) -> str: ... method filename (line 705) | def filename(self) -> str: ... method makeGroup (line 706) | def makeGroup(self) -> Group: ... class GlobalsEnvironment (line 710) | class GlobalsEnvironment: method __init__ (line 712) | def __init__(self, *args, **kwargs) -> None: ... method get (line 713) | def get(self, *args, **kwargs) -> Any: ... method has_key (line 714) | def has_key(self, *args, **kwargs) -> Any: ... method items (line 715) | def items(self, *args, **kwargs) -> Any: ... method keys (line 716) | def keys(self, *args, **kwargs) -> Any: ... method values (line 717) | def values(self, *args, **kwargs) -> Any: ... method __contains__ (line 718) | def __contains__(self, other) -> Any: ... method __delitem__ (line 719) | def __delitem__(self, other) -> Any: ... method __getitem__ (line 720) | def __getitem__(self, index) -> Any: ... method __hash__ (line 721) | def __hash__(self) -> Any: ... method __len__ (line 722) | def __len__(self) -> Any: ... method __setitem__ (line 723) | def __setitem__(self, index, object) -> Any: ... class Hash (line 725) | class Hash: method __init__ (line 727) | def __init__(self, *args, **kwargs) -> None: ... method append (line 728) | def append(self, *args, **kwargs) -> Any: ... method getHash (line 729) | def getHash(self, *args, **kwargs) -> Any: ... method reset (line 730) | def reset(self, *args, **kwargs) -> Any: ... method setHash (line 731) | def setHash(self, *args, **kwargs) -> Any: ... method __delattr__ (line 732) | def __delattr__(self, name) -> Any: ... method __eq__ (line 733) | def __eq__(self, other) -> Any: ... method __ge__ (line 734) | def __ge__(self, other) -> Any: ... method __gt__ (line 735) | def __gt__(self, other) -> Any: ... method __hash__ (line 736) | def __hash__(self) -> Any: ... method __le__ (line 737) | def __le__(self, other) -> Any: ... method __lt__ (line 738) | def __lt__(self, other) -> Any: ... method __ne__ (line 739) | def __ne__(self, other) -> Any: ... method __setattr__ (line 740) | def __setattr__(self, name, value) -> Any: ... class Help_Knob (line 742) | class Help_Knob(Knob): method __init__ (line 743) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 744) | def __hash__(self) -> Any: ... class Histogram_Knob (line 746) | class Histogram_Knob(Knob): method __init__ (line 747) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 748) | def __hash__(self) -> Any: ... class IArray_Knob (line 750) | class IArray_Knob(Array_Knob): method __init__ (line 751) | def __init__(self, *args, **kwargs) -> None: ... method dimensions (line 752) | def dimensions(self, *args, **kwargs) -> Any: ... method height (line 753) | def height(self, *args, **kwargs) -> Any: ... method value (line 754) | def value(self, *args, **kwargs) -> Any: ... method width (line 755) | def width(self, *args, **kwargs) -> Any: ... method __hash__ (line 756) | def __hash__(self) -> Any: ... class Info (line 758) | class Info: method __init__ (line 759) | def __init__(self, *args, **kwargs) -> None: ... method h (line 760) | def h(self) -> float: ... method w (line 761) | def w(self) -> float: ... method x (line 762) | def x(self) -> float: ... method y (line 763) | def y(self) -> float: ... method __hash__ (line 764) | def __hash__(self) -> Any: ... class Int_Knob (line 766) | class Int_Knob(Array_Knob): method __init__ (line 767) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 768) | def setValue(self, val) -> bool: ... method value (line 769) | def value(self) -> int: ... method __eq__ (line 770) | def __eq__(self, other) -> Any: ... method __ge__ (line 771) | def __ge__(self, other) -> Any: ... method __gt__ (line 772) | def __gt__(self, other) -> Any: ... method __hash__ (line 773) | def __hash__(self) -> Any: ... method __le__ (line 774) | def __le__(self, other) -> Any: ... method __lt__ (line 775) | def __lt__(self, other) -> Any: ... method __ne__ (line 776) | def __ne__(self, other) -> Any: ... class Keyer_Knob (line 778) | class Keyer_Knob(Array_Knob): method __init__ (line 779) | def __init__(self, *args, **kwargs) -> None: ... method highSoft (line 780) | def highSoft(self, *args, **kwargs) -> Any: ... method highTol (line 781) | def highTol(self, *args, **kwargs) -> Any: ... method lowSoft (line 782) | def lowSoft(self, *args, **kwargs) -> Any: ... method lowTol (line 783) | def lowTol(self, *args, **kwargs) -> Any: ... method names (line 784) | def names(self, n) -> str: ... method value (line 785) | def value(self, outputCtx, n) -> float: ... method __hash__ (line 786) | def __hash__(self) -> Any: ... class KnobType (line 788) | class KnobType: class Layer (line 878) | class Layer: method __init__ (line 880) | def __init__(self, *args, **kwargs) -> None: ... method channels (line 881) | def channels(self, *args, **kwargs) -> Any: ... method name (line 882) | def name(self) -> str: ... method setName (line 883) | def setName(self, newName) -> None: ... method visible (line 884) | def visible(self) -> bool: ... method __hash__ (line 885) | def __hash__(self) -> Any: ... class Link_Knob (line 887) | class Link_Knob(Knob): method __init__ (line 888) | def __init__(self, *args, **kwargs) -> None: ... method applyOverride (line 889) | def applyOverride(self) -> bool: ... method getLink (line 890) | def getLink(self) -> s: ... method getLinkedKnob (line 891) | def getLinkedKnob(self) -> Knob: ... method makeLink (line 892) | def makeLink(self, s, t) -> None: ... method revertOverride (line 893) | def revertOverride(self) -> bool: ... method setLink (line 894) | def setLink(self, s) -> None: ... method setValue (line 895) | def setValue(self) -> None: ... method value (line 896) | def value(self) -> str: ... method __hash__ (line 897) | def __hash__(self) -> Any: ... class LinkableKnobInfo (line 899) | class LinkableKnobInfo: method absolute (line 900) | def absolute(self) -> bool: ... method displayName (line 901) | def displayName(self) -> str: ... method enabled (line 902) | def enabled(self) -> bool: ... method indices (line 903) | def indices(self) -> List: ... method knob (line 904) | def knob(self) -> Knob: ... method __delattr__ (line 905) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 906) | def __setattr__(self, name, value) -> Any: ... class LiveGroup (line 908) | class LiveGroup(Precomp): method anyOverrides (line 909) | def anyOverrides(self) -> bool: ... method applyOverrides (line 910) | def applyOverrides(self, *args, **kwargs) -> Any: ... method isLocal (line 911) | def isLocal(self) -> bool: ... method makeEditable (line 912) | def makeEditable(self) -> None: ... method makeLocal (line 913) | def makeLocal(self) -> None: ... method modified (line 914) | def modified(self) -> bool: ... method publish (line 915) | def publish(self, *args, **kwargs) -> Any: ... method published (line 916) | def published(self) -> bool: ... method revertOverrides (line 917) | def revertOverrides(self, *args, **kwargs) -> Any: ... class LookupCurves_Knob (line 921) | class LookupCurves_Knob(Knob): method __init__ (line 922) | def __init__(self, *args, **kwargs) -> None: ... method addCurve (line 923) | def addCurve(self, curve, expr = ...) -> None: ... method delCurve (line 924) | def delCurve(self, curve) -> None: ... method editCurve (line 925) | def editCurve(self, curve, expr = ...) -> None: ... method __hash__ (line 926) | def __hash__(self) -> Any: ... class Lut (line 928) | class Lut: method __init__ (line 930) | def __init__(self, *args, **kwargs) -> None: ... method fromByte (line 931) | def fromByte(self, *args, **kwargs) -> Any: ... method fromByteSingle (line 932) | def fromByteSingle(self, *args, **kwargs) -> Any: ... method fromFloat (line 933) | def fromFloat(self, *args, **kwargs) -> Any: ... method isLinear (line 934) | def isLinear(self, *args, **kwargs) -> Any: ... method isZero (line 935) | def isZero(self, *args, **kwargs) -> Any: ... method toByte (line 936) | def toByte(self, *args, **kwargs) -> Any: ... method toByteSingle (line 937) | def toByteSingle(self, *args, **kwargs) -> Any: ... method toFloat (line 938) | def toFloat(self, *args, **kwargs) -> Any: ... method __hash__ (line 939) | def __hash__(self) -> Any: ... class Menu (line 941) | class Menu(MenuItem): method addAction (line 942) | def addAction(self, action) -> bool: ... method addCommand (line 943) | def addCommand(self, *args, **kwargs) -> Any: ... method addMenu (line 944) | def addMenu(self, *args, **kwargs) -> Any: ... method addSeparator (line 945) | def addSeparator(self, *args, **kwargs) -> Any: ... method clearMenu (line 946) | def clearMenu(self) -> Any: ... method findItem (line 947) | def findItem(self, name) -> Optional[Menu]: ... method items (line 948) | def items(self) -> None: ... method menu (line 949) | def menu(self, name) -> Optional[Menu]: ... method name (line 950) | def name(self) -> str: ... method removeItem (line 951) | def removeItem(self, name) -> None: ... method updateMenuItems (line 952) | def updateMenuItems(self) -> None: ... method __hash__ (line 953) | def __hash__(self) -> Any: ... class MenuBar (line 955) | class MenuBar: method addAction (line 956) | def addAction(self, action) -> bool: ... method addCommand (line 957) | def addCommand(self, *args, **kwargs) -> Any: ... method addMenu (line 958) | def addMenu(self, *args, **kwargs) -> Any: ... method addSeparator (line 959) | def addSeparator(self, *args, **kwargs) -> Any: ... method clearMenu (line 960) | def clearMenu(self) -> Any: ... method findItem (line 961) | def findItem(self, name) -> Optional[Menu]: ... method items (line 962) | def items(self) -> None: ... method menu (line 963) | def menu(self, name) -> Optional[Menu]: ... method name (line 964) | def name(self) -> str: ... method removeItem (line 965) | def removeItem(self, name) -> None: ... method updateMenuItems (line 966) | def updateMenuItems(self) -> None: ... method __hash__ (line 967) | def __hash__(self) -> Any: ... class MenuItem (line 969) | class MenuItem: method action (line 970) | def action(self) -> None: ... method icon (line 971) | def icon(self) -> str: ... method invoke (line 972) | def invoke(self) -> None: ... method name (line 973) | def name(self) -> str: ... method script (line 974) | def script(self) -> str: ... method setEnabled (line 975) | def setEnabled(self, enabled, recursive) -> None: ... method setIcon (line 976) | def setIcon(self, icon) -> None: ... method setScript (line 977) | def setScript(self, script) -> None: ... method setShortcut (line 978) | def setShortcut(self, keySequence) -> None: ... method setVisible (line 979) | def setVisible(self, visible) -> None: ... method shortcut (line 980) | def shortcut(self) -> str: ... method __hash__ (line 981) | def __hash__(self) -> Any: ... class MultiView_Knob (line 983) | class MultiView_Knob(Knob): method __init__ (line 984) | def __init__(self, *args, **kwargs) -> None: ... method fromScript (line 985) | def fromScript(self, *args, **kwargs) -> Any: ... method notDefault (line 986) | def notDefault(self, *args, **kwargs) -> Any: ... method setValue (line 987) | def setValue(self, *args, **kwargs) -> Any: ... method toScript (line 988) | def toScript(self, *args, **kwargs) -> Any: ... method toScriptPrefix (line 989) | def toScriptPrefix(self, *args, **kwargs) -> Any: ... method toScriptPrefixUserKnob (line 990) | def toScriptPrefixUserKnob(self, *args, **kwargs) -> Any: ... method value (line 991) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 992) | def __hash__(self) -> Any: ... class Multiline_Eval_String_Knob (line 994) | class Multiline_Eval_String_Knob(EvalString_Knob): method __init__ (line 995) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 996) | def __hash__(self) -> Any: ... class NodeConstructor (line 998) | class NodeConstructor(Generic[NodeT]): method __init__ (line 1000) | def __init__(self, *args, **kwargs) -> None: ... method __call__ (line 1001) | def __call__(self, *args, **kwargs) -> NodeT: ... method __hash__ (line 1002) | def __hash__(self) -> Any: ... class Nodes (line 1004) | class Nodes: method __init__ (line 1006) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 1007) | def __hash__(self) -> Any: ... method __getattr__ (line 1008) | def __getattr__(self, item) -> NodeConstructor[Node]: ... class Obsolete_Knob (line 1015) | class Obsolete_Knob(Knob): method __init__ (line 1016) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 1017) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 1018) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 1019) | def __hash__(self) -> Any: ... class OneView_Knob (line 1021) | class OneView_Knob(Enumeration_Knob): method __init__ (line 1023) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 1024) | def __hash__(self) -> Any: ... class OutputContext (line 1026) | class OutputContext: method __init__ (line 1028) | def __init__(self, *args, **kwargs) -> None: ... method frame (line 1029) | def frame(self) -> float: ... method setFrame (line 1030) | def setFrame(self, *args, **kwargs) -> Any: ... method setView (line 1031) | def setView(self, *args, **kwargs) -> Any: ... method view (line 1032) | def view(self) -> int: ... method viewFromName (line 1033) | def viewFromName(self, name) -> int: ... method viewcount (line 1034) | def viewcount(self) -> int: ... method viewname (line 1035) | def viewname(self, n) -> str: ... method viewshort (line 1036) | def viewshort(self, n) -> str: ... method __hash__ (line 1037) | def __hash__(self) -> Any: ... class Panel (line 1039) | class Panel: method __init__ (line 1041) | def __init__(self, *args, **kwargs) -> None: ... method addbooleanCheckBox (line 1042) | def addbooleanCheckBox(self, *args, **kwargs) -> Any: ... method addButton (line 1043) | def addButton(self, *args, **kwargs) -> Any: ... method addClipnameSearch (line 1044) | def addClipnameSearch(self, *args, **kwargs) -> Any: ... method addEnumerationPulldown (line 1045) | def addEnumerationPulldown(self, *args, **kwargs) -> Any: ... method addExpressionInput (line 1046) | def addExpressionInput(self, *args, **kwargs) -> Any: ... method addFilenameSearch (line 1047) | def addFilenameSearch(self, *args, **kwargs) -> Any: ... method addMultilineTextInput (line 1048) | def addMultilineTextInput(self, *args, **kwargs) -> Any: ... method addNotepad (line 1049) | def addNotepad(self, *args, **kwargs) -> Any: ... method addPasswordInput (line 1050) | def addPasswordInput(self, *args, **kwargs) -> Any: ... method addRGBColorChip (line 1051) | def addRGBColorChip(self, *args, **kwargs) -> Any: ... method addScriptCommand (line 1052) | def addScriptCommand(self, *args, **kwargs) -> Any: ... method addSingleLineInput (line 1053) | def addSingleLineInput(self, *args, **kwargs) -> Any: ... method addTextFontPulldown (line 1054) | def addTextFontPulldown(self, *args, **kwargs) -> Any: ... method clear (line 1055) | def clear(self) -> None: ... method execute (line 1056) | def execute(self, *args, **kwargs) -> Any: ... method setTitle (line 1057) | def setTitle(self, *args, **kwargs) -> Any: ... method setWidth (line 1058) | def setWidth(self, *args, **kwargs) -> Any: ... method show (line 1059) | def show(self, *args, **kwargs) -> Any: ... method title (line 1060) | def title(self, *args, **kwargs) -> Any: ... method value (line 1061) | def value(self, *args, **kwargs) -> Any: ... method width (line 1062) | def width(self, *args, **kwargs) -> Any: ... method __hash__ (line 1063) | def __hash__(self) -> Any: ... class PanelNode (line 1065) | class PanelNode: method __init__ (line 1067) | def __init__(self, *args, **kwargs) -> None: ... method addKnob (line 1068) | def addKnob(self, *args, **kwargs) -> Any: ... method createWidget (line 1069) | def createWidget(self, *args, **kwargs) -> Any: ... method knobs (line 1071) | def knobs(self) -> dict: ... method knobs (line 1073) | def knobs() -> Any: ... method readKnobs (line 1074) | def readKnobs(self, *args, **kwargs) -> Any: ... method removeKnob (line 1075) | def removeKnob(self, *args, **kwargs) -> Any: ... method writeKnobs (line 1076) | def writeKnobs(self, *args, **kwargs) -> Any: ... method __hash__ (line 1077) | def __hash__(self) -> Any: ... class ParticleChannels_Knob (line 1079) | class ParticleChannels_Knob(Knob): method __init__ (line 1080) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 1081) | def setValue(self, v) -> bool: ... method value (line 1082) | def value(self) -> int: ... method __hash__ (line 1083) | def __hash__(self) -> Any: ... class Password_Knob (line 1085) | class Password_Knob(Knob): method __init__ (line 1086) | def __init__(self, *args, **kwargs) -> None: ... method getText (line 1087) | def getText(self) -> str: ... method setValue (line 1088) | def setValue(self, val, view = ...) -> None: ... method value (line 1089) | def value(self) -> str: ... method __hash__ (line 1090) | def __hash__(self) -> Any: ... class Precomp (line 1092) | class Precomp(Group): method reload (line 1094) | def reload(self) -> None: ... class ProgressTask (line 1100) | class ProgressTask: method __init__ (line 1102) | def __init__(self, *args, **kwargs) -> None: ... method isCancelled (line 1103) | def isCancelled(self, *args, **kwargs) -> Any: ... method setMessage (line 1104) | def setMessage(self, *args, **kwargs) -> Any: ... method setProgress (line 1105) | def setProgress(self, *args, **kwargs) -> Any: ... method __hash__ (line 1106) | def __hash__(self) -> Any: ... class Pulldown_Knob (line 1108) | class Pulldown_Knob(Enumeration_Knob): method __init__ (line 1109) | def __init__(self, *args, **kwargs) -> None: ... method commands (line 1110) | def commands(self, n: int) -> str: ... method itemName (line 1111) | def itemName(self, n: int) -> str: ... method numValues (line 1112) | def numValues(self) -> int: ... method value (line 1113) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 1114) | def __hash__(self) -> Any: ... class PyCustom_Knob (line 1116) | class PyCustom_Knob(Script_Knob): method __init__ (line 1117) | def __init__(self, *args, **kwargs) -> None: ... method getObject (line 1118) | def getObject(self, *args, **kwargs) -> Any: ... method __hash__ (line 1119) | def __hash__(self) -> Any: ... class PyScript_Knob (line 1121) | class PyScript_Knob(Script_Knob): method __init__ (line 1122) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 1123) | def __hash__(self) -> Any: ... class PythonCustomKnob (line 1125) | class PythonCustomKnob(Script_Knob): method __init__ (line 1126) | def __init__(self, *args, **kwargs) -> None: ... method getObject (line 1127) | def getObject(self, *args, **kwargs) -> Any: ... method __hash__ (line 1128) | def __hash__(self) -> Any: ... class PythonKnob (line 1130) | class PythonKnob(String_Knob): method __init__ (line 1131) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 1132) | def __hash__(self) -> Any: ... class Radio_Knob (line 1134) | class Radio_Knob(Enumeration_Knob): method __init__ (line 1135) | def __init__(self, *args, **kwargs) -> None: ... method enumName (line 1136) | def enumName(self, n) -> str: ... method getDisplayStrFromID (line 1137) | def getDisplayStrFromID(self) -> Any: ... method numValues (line 1138) | def numValues(self) -> int: ... method setValue (line 1139) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 1140) | def value(self) -> Any: ... method values (line 1141) | def values(self) -> Any: ... method __hash__ (line 1142) | def __hash__(self) -> Any: ... class Range_Knob (line 1144) | class Range_Knob(Array_Knob): method __init__ (line 1145) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 1146) | def __hash__(self) -> Any: ... class Root (line 1148) | class Root(Group): method __init__ (line 1150) | def __init__(self, *args, **kwargs) -> None: ... method addView (line 1151) | def addView(self, *args, **kwargs) -> Any: ... method canSetInput (line 1152) | def canSetInput(self, *args, **kwargs) -> Any: ... method channels (line 1154) | def channels(self) -> List[str]: ... method clones (line 1155) | def clones(self, *args, **kwargs) -> Any: ... method connectInput (line 1156) | def connectInput(self, *args, **kwargs) -> Any: ... method deleteView (line 1157) | def deleteView(self, *args, **kwargs) -> Any: ... method firstFrame (line 1158) | def firstFrame(self) -> int: ... method fps (line 1159) | def fps(self) -> int: ... method getOCIOColorspaceFamily (line 1160) | def getOCIOColorspaceFamily(self, colorspace: str) -> str: ... method getOCIOColorspaceFromViewTransform (line 1161) | def getOCIOColorspaceFromViewTransform(self, display: str, view: str) ... method input (line 1162) | def input(self, *args, **kwargs) -> Any: ... method inputs (line 1163) | def inputs(self, *args, **kwargs) -> Any: ... method lastFrame (line 1164) | def lastFrame(self) -> int: ... method layers (line 1166) | def layers(self, *args, **kwargs) -> Any: ... method maximumInputs (line 1167) | def maximumInputs(self, *args, **kwargs) -> Any: ... method maximumOutputs (line 1168) | def maximumOutputs(self, *args, **kwargs) -> Any: ... method mergeFrameRange (line 1169) | def mergeFrameRange(self, *args, **kwargs) -> Any: ... method minimumInputs (line 1170) | def minimumInputs(self, *args, **kwargs) -> Any: ... method modified (line 1171) | def modified(self) -> bool: ... method optionalInput (line 1172) | def optionalInput(self, *args, **kwargs) -> Any: ... method proxy (line 1173) | def proxy(self, *args, **kwargs) -> Any: ... method realFps (line 1174) | def realFps(self) -> float: ... method setFrame (line 1175) | def setFrame(self, *args, **kwargs) -> Any: ... method setInput (line 1176) | def setInput(self, *args, **kwargs) -> Any: ... method setModified (line 1177) | def setModified(self, modified: bool) -> None: ... method setProxy (line 1178) | def setProxy(self, *args, **kwargs) -> Any: ... method setView (line 1179) | def setView(self, *args, **kwargs) -> Any: ... class RunInMainThread (line 1183) | class RunInMainThread: method request (line 1185) | def request(self, *args, **kwargs) -> Any: ... method result (line 1187) | def result(self, *args, **kwargs) -> Any: ... method __hash__ (line 1188) | def __hash__(self) -> Any: ... class Scale_Knob (line 1190) | class Scale_Knob(Array_Knob): method __init__ (line 1191) | def __init__(self, *args, **kwargs) -> None: ... method names (line 1192) | def names(self, n) -> str: ... method value (line 1193) | def value(self, n, oc = ...) -> float: ... method x (line 1194) | def x(self, oc = ...) -> float: ... method y (line 1195) | def y(self, oc = ...) -> float: ... method z (line 1196) | def z(self, oc = ...) -> float: ... method __hash__ (line 1197) | def __hash__(self) -> Any: ... class SceneGraph_Knob (line 1199) | class SceneGraph_Knob(Unsigned_Knob): method __init__ (line 1200) | def __init__(self, *args, **kwargs) -> None: ... method addItems (line 1201) | def addItems(self, items: List[Tuple[str, str]], autoSelect: bool = ..... method getItems (line 1202) | def getItems(self) -> Tuple[Tuple[str, str], ...]: ... method getSelectedItems (line 1203) | def getSelectedItems(self) -> List[str]: ... method removeItems (line 1204) | def removeItems(self, names: List[str]) -> None: ... method setItems (line 1205) | def setItems(self, items: List[Tuple[str, str]], autoSelect: bool = ..... method setSelectedItems (line 1206) | def setSelectedItems(self, names: List[str]) -> None: ... method __hash__ (line 1207) | def __hash__(self) -> Any: ... class SceneView_Knob (line 1209) | class SceneView_Knob(Unsigned_Knob): method __init__ (line 1210) | def __init__(self, *args, **kwargs) -> None: ... method addItems (line 1211) | def addItems(self, items: List[str]) -> None: ... method getAllItems (line 1212) | def getAllItems(self) -> List[str]: ... method getHighlightedItem (line 1213) | def getHighlightedItem(self) -> Optional[str]: ... method getImportedItems (line 1214) | def getImportedItems(self) -> List[str]: ... method getSelectedItems (line 1215) | def getSelectedItems(self) -> List[str]: ... method removeItems (line 1216) | def removeItems(self, items: List[str]) -> None: ... method setAllItems (line 1217) | def setAllItems(self, items: List[str], autoSelect: bool = ...) -> Non... method setImportedItems (line 1218) | def setImportedItems(self, items: List[str]) -> None: ... method setSelectedItems (line 1219) | def setSelectedItems(self, items: List[str]) -> None: ... method __hash__ (line 1220) | def __hash__(self) -> Any: ... class Tab_Knob (line 1222) | class Tab_Knob(Knob): method __init__ (line 1224) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 1225) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 1226) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 1227) | def __hash__(self) -> Any: ... class Text_Knob (line 1229) | class Text_Knob(Knob): method __init__ (line 1230) | def __init__(self, *args, **kwargs) -> None: ... method setValue (line 1231) | def setValue(self, *args, **kwargs) -> Any: ... method value (line 1232) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 1233) | def __hash__(self) -> Any: ... class ToolBar (line 1235) | class ToolBar: method __init__ (line 1237) | def __init__(self, *args, **kwargs) -> None: ... method addAction (line 1238) | def addAction(self, action) -> bool: ... method addCommand (line 1239) | def addCommand(self, *args, **kwargs) -> Any: ... method addMenu (line 1240) | def addMenu(self, *args, **kwargs) -> Any: ... method addSeparator (line 1241) | def addSeparator(self, *args, **kwargs) -> Any: ... method clearMenu (line 1242) | def clearMenu(self) -> Any: ... method findItem (line 1243) | def findItem(self, name) -> Optional[Menu]: ... method items (line 1244) | def items(self) -> None: ... method menu (line 1245) | def menu(self, name) -> Optional[Menu]: ... method name (line 1246) | def name(self) -> str: ... method removeItem (line 1247) | def removeItem(self, name) -> None: ... method updateMenuItems (line 1248) | def updateMenuItems(self) -> None: ... method __hash__ (line 1249) | def __hash__(self) -> Any: ... class Transform2d_Knob (line 1251) | class Transform2d_Knob(Knob): method __init__ (line 1252) | def __init__(self, *args, **kwargs) -> None: ... method value (line 1253) | def value(self, oc = ...) -> matrix: ... method __hash__ (line 1254) | def __hash__(self) -> Any: ... class UV_Knob (line 1256) | class UV_Knob(Array_Knob): method __init__ (line 1257) | def __init__(self, *args, **kwargs) -> None: ... method names (line 1258) | def names(self, n) -> str: ... method __hash__ (line 1259) | def __hash__(self) -> Any: ... class Undo (line 1261) | class Undo: method __init__ (line 1263) | def __init__(self, *args, **kwargs) -> None: ... method begin (line 1265) | def begin(self, *args, **kwargs) -> Any: ... method cancel (line 1267) | def cancel(self, *args, **kwargs) -> Any: ... method disable (line 1269) | def disable(self, *args, **kwargs) -> Any: ... method disabled (line 1271) | def disabled(self, *args, **kwargs) -> Any: ... method enable (line 1273) | def enable(self, *args, **kwargs) -> Any: ... method end (line 1275) | def end(self, *args, **kwargs) -> Any: ... method name (line 1277) | def name(self, *args, **kwargs) -> Any: ... method new (line 1279) | def new(self, *args, **kwargs) -> Any: ... method redo (line 1281) | def redo(self, *args, **kwargs) -> Any: ... method redoDescribe (line 1283) | def redoDescribe(self, *args, **kwargs) -> Any: ... method redoDescribeFully (line 1285) | def redoDescribeFully(self, *args, **kwargs) -> Any: ... method redoSize (line 1287) | def redoSize(self, *args, **kwargs) -> Any: ... method redoTruncate (line 1289) | def redoTruncate(self, *args, **kwargs) -> Any: ... method undo (line 1291) | def undo(self, *args, **kwargs) -> Any: ... method undoDescribe (line 1293) | def undoDescribe(self, *args, **kwargs) -> Any: ... method undoDescribeFully (line 1295) | def undoDescribeFully(self, *args, **kwargs) -> Any: ... method undoSize (line 1297) | def undoSize(self, *args, **kwargs) -> Any: ... method undoTruncate (line 1299) | def undoTruncate(self, *args, **kwargs) -> Any: ... method __enter__ (line 1300) | def __enter__(self) -> Any: ... method __exit__ (line 1301) | def __exit__(self, type, value, traceback) -> Any: ... method __hash__ (line 1302) | def __hash__(self) -> Any: ... class View (line 1304) | class View: method __init__ (line 1305) | def __init__(self, *args, **kwargs) -> None: ... method str (line 1306) | def str(self, *args, **kwargs) -> Any: ... method value (line 1307) | def value(self, *args, **kwargs) -> Any: ... method __hash__ (line 1308) | def __hash__(self) -> Any: ... class ViewView_Knob (line 1310) | class ViewView_Knob(Knob): method __init__ (line 1311) | def __init__(self, *args, **kwargs) -> None: ... method __hash__ (line 1312) | def __hash__(self) -> Any: ... class Viewer (line 1314) | class Viewer(Node): method capture (line 1315) | def capture(self, file) -> None: ... method frameCached (line 1316) | def frameCached(self, f) -> bool: ... method isPlayingOrRecording (line 1317) | def isPlayingOrRecording(self) -> bool: ... method playbackRange (line 1318) | def playbackRange(self, *args, **kwargs) -> Any: ... method recordMouse (line 1319) | def recordMouse(self) -> bool: ... method recordMouseStop (line 1320) | def recordMouseStop(self) -> Any: ... method replayMouseAsync (line 1321) | def replayMouseAsync(self, xmlRecordingFilename) -> bool: ... method replayMouseSync (line 1322) | def replayMouseSync(self, xmlRescordingFilename) -> bool: ... method roi (line 1323) | def roi(self) -> dict: ... method roiEnabled (line 1324) | def roiEnabled(self) -> bool: ... method sendMouseEvent (line 1325) | def sendMouseEvent(self) -> bool: ... method setRoi (line 1326) | def setRoi(self, *args, **kwargs) -> Any: ... method toggleMouseTrails (line 1327) | def toggleMouseTrails(self) -> bool: ... method toggleWaitOnReplayEvents (line 1328) | def toggleWaitOnReplayEvents(self, *args, **kwargs) -> Any: ... method visibleRange (line 1329) | def visibleRange(self, *args, **kwargs) -> Any: ... class ViewerProcess (line 1333) | class ViewerProcess: method node (line 1335) | def node(self, *args, **kwargs) -> Any: ... method register (line 1337) | def register(self, *args, **kwargs) -> Any: ... method registeredNames (line 1339) | def registeredNames(self, *args, **kwargs) -> Any: ... method restoreSelectionAfterReload (line 1341) | def restoreSelectionAfterReload(self, *args, **kwargs) -> Any: ... method storeSelectionBeforeReload (line 1343) | def storeSelectionBeforeReload(self, *args, **kwargs) -> Any: ... method unregister (line 1345) | def unregister(self, *args, **kwargs) -> Any: ... method __hash__ (line 1346) | def __hash__(self) -> Any: ... class ViewerWindow (line 1348) | class ViewerWindow: method activateInput (line 1349) | def activateInput(self, input, secondary = ...) -> None: ... method activeInput (line 1350) | def activeInput(self, secondary = ...) -> int: ... method frameControl (line 1351) | def frameControl(self, *args, **kwargs) -> Any: ... method getGLCameraMatrix (line 1352) | def getGLCameraMatrix(self) -> Matrix4: ... method getGeometryNodes (line 1353) | def getGeometryNodes(self, *args, **kwargs) -> Any: ... method nextView (line 1354) | def nextView(self, *args, **kwargs) -> Any: ... method node (line 1355) | def node(self, *args, **kwargs) -> Any: ... method play (line 1356) | def play(self, *args, **kwargs) -> Any: ... method previousView (line 1357) | def previousView(self, *args, **kwargs) -> Any: ... method setView (line 1358) | def setView(self, *args, **kwargs) -> Any: ... method stop (line 1359) | def stop(self, *args, **kwargs) -> Any: ... method view (line 1360) | def view(self, *args, **kwargs) -> Any: ... method __hash__ (line 1361) | def __hash__(self) -> Any: ... class WH_Knob (line 1363) | class WH_Knob(Array_Knob): method __init__ (line 1364) | def __init__(self, *args, **kwargs) -> None: ... method names (line 1365) | def names(self, *args, **kwargs) -> Any: ... method x (line 1366) | def x(self, *args, **kwargs) -> Any: ... method x_at (line 1367) | def x_at(self, *args, **kwargs) -> Any: ... method y (line 1368) | def y(self, *args, **kwargs) -> Any: ... method y_at (line 1369) | def y_at(self, *args, **kwargs) -> Any: ... method __hash__ (line 1370) | def __hash__(self) -> Any: ... class XYZ_Knob (line 1372) | class XYZ_Knob(Array_Knob): method __init__ (line 1373) | def __init__(self, *args, **kwargs) -> None: ... method names (line 1374) | def names(self, n) -> str: ... method parent (line 1375) | def parent(self) -> XYZ_Knob: ... method value (line 1376) | def value(self, n, oc = ...) -> float: ... method x (line 1377) | def x(self, oc = ...) -> float: ... method y (line 1378) | def y(self, oc = ...) -> float: ... method z (line 1379) | def z(self, oc = ...) -> float: ... method __hash__ (line 1380) | def __hash__(self) -> Any: ... class XY_Knob (line 1382) | class XY_Knob(Array_Knob): method __init__ (line 1383) | def __init__(self, *args, **kwargs) -> None: ... method names (line 1384) | def names(self, n) -> str: ... method value (line 1385) | def value(self, n, oc = ...) -> float: ... method x (line 1386) | def x(self, oc = ...) -> float: ... method y (line 1387) | def y(self, oc = ...) -> float: ... method __hash__ (line 1388) | def __hash__(self) -> Any: ... function activeViewer (line 1390) | def activeViewer() -> ViewerWindow: ... function addFavoriteDir (line 1391) | def addFavoriteDir(*args, **kwargs) -> Any: ... function addFormat (line 1392) | def addFormat(s : str) -> Format: ... function addNodePresetExcludePaths (line 1393) | def addNodePresetExcludePaths(paths) -> None: ... function addSequenceFileExtension (line 1394) | def addSequenceFileExtension(fileExtension: str) -> None: ... function addToolsetExcludePaths (line 1395) | def addToolsetExcludePaths(paths) -> None: ... function addView (line 1396) | def addView(s: str) -> None: ... function alert (line 1397) | def alert(prompt: str) -> None: ... function allNodes (line 1398) | def allNodes(*args, **kwargs) -> List[Node]: ... function animation (line 1399) | def animation(object, *commands) -> None: ... function animationEnd (line 1400) | def animationEnd(*args, **kwargs) -> Any: ... function animationIncrement (line 1401) | def animationIncrement() -> float: ... function animationStart (line 1402) | def animationStart() -> float: ... function animations (line 1403) | def animations() -> tuple: ... function applyPreset (line 1404) | def applyPreset(nodeName, presetName) -> None: ... function applyUserPreset (line 1405) | def applyUserPreset(nodeName, presetName) -> None: ... function ask (line 1406) | def ask(prompt: str) -> bool: ... function askWithCancel (line 1407) | def askWithCancel(prompt: str) -> bool: ... function autoplace (line 1408) | def autoplace(*args, **kwargs) -> Any: ... function autoplaceSnap (line 1409) | def autoplaceSnap(n) -> None: ... function autoplace_all (line 1410) | def autoplace_all(*args, **kwargs) -> Any: ... function autoplace_snap_all (line 1411) | def autoplace_snap_all(*args, **kwargs) -> Any: ... function autoplace_snap_selected (line 1412) | def autoplace_snap_selected(*args, **kwargs) -> Any: ... function cacheUsage (line 1413) | def cacheUsage() -> int: ... function canCreateNode (line 1414) | def canCreateNode(*args, **kwargs) -> Any: ... function cancel (line 1415) | def cancel() -> None: ... function center (line 1416) | def center() -> List[int]: ... function channels (line 1417) | def channels(node: Optional[Node] = ...) -> List[str]: ... function choice (line 1418) | def choice(title, prompt, options, default = ...) -> index: ... function clearBlinkCache (line 1419) | def clearBlinkCache() -> None: ... function clearDiskCache (line 1420) | def clearDiskCache() -> None: ... function clearRAMCache (line 1421) | def clearRAMCache() -> None: ... function clearTabMenuFavorites (line 1422) | def clearTabMenuFavorites() -> None: ... function clearTabMenuWeighting (line 1423) | def clearTabMenuWeighting() -> None: ... function clone (line 1424) | def clone(n, args, inpanel) -> Node: ... function cloneSelected (line 1425) | def cloneSelected(action) -> bool: ... function collapseToGroup (line 1426) | def collapseToGroup(show: bool = ...) -> Group: ... function collapseToLiveGroup (line 1427) | def collapseToLiveGroup(show: bool = ...) -> Group: ... function connectNodes (line 1428) | def connectNodes() -> None: ... function connectViewer (line 1429) | def connectViewer(inputNum, node) -> None: ... function createLiveInput (line 1430) | def createLiveInput() -> Node: ... function createNode (line 1431) | def createNode(typ: str, knobs: str = ..., inpanel: bool = ...) -> Node:... function createScenefileBrowser (line 1432) | def createScenefileBrowser(fileName, nodeName) -> None: ... function createToolset (line 1433) | def createToolset(filename = ..., overwrite = ..., rootPath = ...) -> No... function critical (line 1434) | def critical(message: str) -> None: ... function debug (line 1435) | def debug(message: str) -> None: ... function defaultFontPathname (line 1436) | def defaultFontPathname() -> str: ... function defaultNodeColor (line 1437) | def defaultNodeColor(s: str) -> int: ... function delete (line 1439) | def delete(n: Optional[Node]) -> None: ... function deletePreset (line 1440) | def deletePreset(nodeClassName, presetName) -> None: ... function deleteUserPreset (line 1441) | def deleteUserPreset(nodeClassName, presetName) -> None: ... function deleteView (line 1442) | def deleteView(s: str) -> None: ... function display (line 1443) | def display(*args, **kwargs) -> Any: ... function duplicateSelectedNodes (line 1444) | def duplicateSelectedNodes(*args, **kwargs) -> Any: ... function endGroup (line 1445) | def endGroup() -> None: ... function error (line 1446) | def error(message: str) -> None: ... function execute (line 1448) | def execute(nameOrNode: Union[Node, str], start: int, end: int, incr: in... function execute (line 1450) | def execute(nameOrNode: Union[Node, str], frameRangeSet: FrameRanges, vi... function executeBackgroundNuke (line 1451) | def executeBackgroundNuke(exe_path, nodes, frameRange, views, limits, co... function executeMultiple (line 1452) | def executeMultiple(nodes, ranges, views, continueOnError = ...) -> None... function executing (line 1453) | def executing(f: Optional[float] = ...) -> bool: ... function exists (line 1454) | def exists(s: str) -> bool: ... function expandSelectedGroup (line 1455) | def expandSelectedGroup() -> None: ... function expression (line 1456) | def expression(s: str) -> float: ... function extractSelected (line 1457) | def extractSelected() -> None: ... function filename (line 1458) | def filename(node: Node, i: int = ...) -> Optional[str]: ... function forceClone (line 1459) | def forceClone() -> bool: ... function forceLoad (line 1460) | def forceLoad(n) -> None: ... function fork (line 1461) | def fork(path: str = ...) -> None: ... function formats (line 1462) | def formats() -> List[Format]: ... function frame (line 1463) | def frame(f: int = ...) -> int: ... function fromNode (line 1464) | def fromNode(*args, **kwargs) -> Any: ... function getAllUserPresets (line 1465) | def getAllUserPresets() -> None: ... function getClipname (line 1467) | def getClipname(prompt: str, pattern: str = ..., default: Optional[str] ... function getClipname (line 1469) | def getClipname(prompt: str, pattern: str = ..., default: Optional[str] ... function getColor (line 1470) | def getColor(initial: int = ...) -> int: ... function getDeletedPresets (line 1471) | def getDeletedPresets() -> None: ... function getFileNameList (line 1472) | def getFileNameList(dir: str, splitSequences: bool = ..., extraInformati... function getFilename (line 1474) | def getFilename(message: str, pattern: str = ..., default: str = ..., fa... function getFilename (line 1476) | def getFilename(message: str, pattern: str = ..., default: str = ..., fa... function getFonts (line 1477) | def getFonts(*args, **kwargs) -> Any: ... function getFramesAndViews (line 1478) | def getFramesAndViews(*args, **kwargs) -> Any: ... function getInput (line 1479) | def getInput(prompt: str, default: str = ...) -> str: ... function getNodeClassName (line 1480) | def getNodeClassName() -> None: ... function getNodePresetExcludePaths (line 1481) | def getNodePresetExcludePaths() -> List[str]: ... function getNodePresetID (line 1482) | def getNodePresetID() -> None: ... function getPaneFor (line 1483) | def getPaneFor(panelName) -> Dock: ... function getPresetKnobValues (line 1484) | def getPresetKnobValues() -> None: ... function getPresets (line 1485) | def getPresets() -> None: ... function getPresetsMenu (line 1486) | def getPresetsMenu(Node) -> Optional[Menu]: ... function getReadFileKnob (line 1487) | def getReadFileKnob(node) -> Knob: ... function getRenderProgress (line 1488) | def getRenderProgress(*args, **kwargs) -> Any: ... function getToolsetExcludePaths (line 1489) | def getToolsetExcludePaths() -> List[str]: ... function getUserPresetKnobValues (line 1490) | def getUserPresetKnobValues() -> None: ... function getUserPresets (line 1491) | def getUserPresets(Node) -> None: ... function hotkeys (line 1492) | def hotkeys() -> str: ... function inputs (line 1493) | def inputs(n, i) -> int: ... function invertSelection (line 1494) | def invertSelection() -> None: ... function knob (line 1495) | def knob(name, value, getType = ..., getClass = ...) -> None: ... function knobDefault (line 1497) | def knobDefault(classknob: str) -> Optional[str]: ... function knobDefault (line 1499) | def knobDefault(classknob: str, value: str) -> None: ... function knobTooltip (line 1500) | def knobTooltip(classknob, value) -> None: ... function layers (line 1501) | def layers(node: Optional[Node] = ...) -> List[str]: ... function licenseInfo (line 1502) | def licenseInfo(*args, **kwargs) -> Any: ... function load (line 1503) | def load(s: str) -> None: ... function loadToolset (line 1504) | def loadToolset(filename: str) -> Optional[Node]: ... function localisationEnabled (line 1505) | def localisationEnabled(knob) -> bool: ... function localiseFiles (line 1506) | def localiseFiles(*args, **kwargs) -> Any: ... function localizationEnabled (line 1507) | def localizationEnabled(knob) -> bool: ... function makeGroup (line 1508) | def makeGroup(show: bool = ...) -> Group: ... function maxPerformanceInfo (line 1509) | def maxPerformanceInfo(*args, **kwargs) -> Any: ... function memory (line 1510) | def memory(cmd, value) -> Union[str, int]: ... function menu (line 1513) | def menu(name: str) -> Menu: ... function message (line 1514) | def message(prompt: str) -> None: ... function modified (line 1516) | def modified() -> bool: ... function modified (line 1518) | def modified(state: bool) -> bool: ... function nodeCopy (line 1519) | def nodeCopy(s: str) -> None: ... function nodeDelete (line 1520) | def nodeDelete(s: bool = ...) -> bool: ... function nodePaste (line 1521) | def nodePaste(s: str) -> Optional[Node]: ... function nodeTypes (line 1522) | def nodeTypes(force_plugin_load = ...) -> List: ... function nodesSelected (line 1523) | def nodesSelected() -> bool: ... function numvalue (line 1524) | def numvalue(knob: str, default: float = ...) -> float: ... function oculaPresent (line 1525) | def oculaPresent() -> bool: ... function ofxAddPluginAliasExclusion (line 1526) | def ofxAddPluginAliasExclusion(fullOfxEffectName) -> None: ... function ofxMenu (line 1527) | def ofxMenu() -> bool: ... function ofxPluginPath (line 1528) | def ofxPluginPath() -> List[str]: ... function ofxRemovePluginAliasExclusion (line 1529) | def ofxRemovePluginAliasExclusion(fullOfxEffectName) -> None: ... function openPanels (line 1530) | def openPanels() -> List[str]: ... function pan (line 1531) | def pan() -> List[int]: ... function performanceProfileFilename (line 1532) | def performanceProfileFilename(*args, **kwargs) -> Any: ... function pluginExists (line 1537) | def pluginExists(*args, **kwargs) -> Any: ... function pluginInstallLocation (line 1538) | def pluginInstallLocation() -> List[str]: ... function pluginPath (line 1539) | def pluginPath() -> List[str]: ... function plugins (line 1540) | def plugins(switches: int = ..., *pattern: str) -> List[str]: ... function recentFile (line 1541) | def recentFile(index: int) -> str: ... function redo (line 1542) | def redo() -> None: ... function registerFlipbook (line 1543) | def registerFlipbook(s) -> None: ... function removeFavoriteDir (line 1544) | def removeFavoriteDir(*args, **kwargs) -> Any: ... function rescanFontFolders (line 1545) | def rescanFontFolders() -> None: ... function resetPerformanceTimers (line 1546) | def resetPerformanceTimers() -> None: ... function restoreWindowLayout (line 1547) | def restoreWindowLayout(i: int) -> None: ... function resumePathProcessing (line 1548) | def resumePathProcessing() -> None: ... function root (line 1549) | def root() -> Root: ... function runIn (line 1550) | def runIn(object: str, cmd: str) -> bool: ... function sample (line 1551) | def sample(node: Node, channel: str, x: int, y: int, dx: int = ..., dy: ... function saveEventGraphTimers (line 1552) | def saveEventGraphTimers(filePath) -> None: ... function saveToScript (line 1553) | def saveToScript(filename, fileContent) -> None: ... function saveUserPreset (line 1554) | def saveUserPreset(node: Node, presetName: str) -> bool: ... function saveWindowLayout (line 1555) | def saveWindowLayout(i: int = ...) -> None: ... function scriptClear (line 1556) | def scriptClear(*args, **kwargs) -> Any: ... function scriptClose (line 1557) | def scriptClose(*args, **kwargs) -> Any: ... function scriptExit (line 1558) | def scriptExit(*args, **kwargs) -> Any: ... function scriptName (line 1559) | def scriptName() -> str: ... function scriptNew (line 1560) | def scriptNew(*args, **kwargs) -> Any: ... function scriptOpen (line 1561) | def scriptOpen(filename: Optional[str] = ...) -> None: ... function scriptReadFile (line 1562) | def scriptReadFile(s: str) -> None: ... function scriptReadText (line 1563) | def scriptReadText(s: str) -> None: ... function scriptSave (line 1565) | def scriptSave() -> bool: ... function scriptSave (line 1567) | def scriptSave(filename: Optional[str]) -> bool: ... function scriptSaveAs (line 1568) | def scriptSaveAs(filename: Optional[str] = ..., overwrite: Union[int, bo... function scriptSaveToTemp (line 1569) | def scriptSaveToTemp(str) -> str: ... function scriptSource (line 1570) | def scriptSource(*args, **kwargs) -> Any: ... function selectAll (line 1571) | def selectAll() -> None: ... function selectPattern (line 1572) | def selectPattern() -> None: ... function selectSimilar (line 1573) | def selectSimilar(matchType: int) -> None: ... function selectedNode (line 1574) | def selectedNode() -> Node: ... function selectedNodes (line 1576) | def selectedNodes() -> List[Node]: ... function selectedNodes (line 1578) | def selectedNodes(filter: str) -> List[Node]: ... function setPreset (line 1579) | def setPreset(nodeClassName: str, presetName: str, knobValues: Dict[str,... function setReadOnlyPresets (line 1580) | def setReadOnlyPresets(readOnly) -> None: ... function setUserPreset (line 1581) | def setUserPreset(nodeClassName, presetName, knobValues) -> None: ... function show (line 1582) | def show(n: Node, forceFloat: bool = ...) -> None: ... function showBookmarkChooser (line 1583) | def showBookmarkChooser(n) -> None: ... function showCreateViewsDialog (line 1584) | def showCreateViewsDialog(views: List[str]) -> int: ... function showDag (line 1585) | def showDag(n: Node) -> None: ... function showInfo (line 1586) | def showInfo(n: Node) -> str: ... function showSettings (line 1587) | def showSettings() -> None: ... function splayNodes (line 1588) | def splayNodes() -> None: ... function startEventGraphTimers (line 1589) | def startEventGraphTimers() -> None: ... function startPerformanceTimers (line 1590) | def startPerformanceTimers() -> None: ... function stopEventGraphTimers (line 1591) | def stopEventGraphTimers() -> None: ... function stopPerformanceTimers (line 1592) | def stopPerformanceTimers() -> None: ... function stripFrameRange (line 1593) | def stripFrameRange(clipname) -> str: ... function suspendPathProcessing (line 1594) | def suspendPathProcessing() -> None: ... function tabClose (line 1595) | def tabClose(*args, **kwargs) -> Any: ... function tabNext (line 1596) | def tabNext(*args, **kwargs) -> Any: ... function tcl (line 1597) | def tcl(cmd: str, *args: str) -> str: ... function thisClass (line 1598) | def thisClass() -> str: ... function thisGroup (line 1599) | def thisGroup() -> Group: ... function thisKnob (line 1600) | def thisKnob() -> Knob: ... function thisNode (line 1601) | def thisNode() -> Node: ... function thisPane (line 1602) | def thisPane() -> Dock: ... function thisParent (line 1603) | def thisParent() -> Optional[Group]: ... function thisRoot (line 1604) | def thisRoot() -> Root: ... function thisView (line 1605) | def thisView() -> str: ... function toNode (line 1606) | def toNode(s: str) -> Optional[Node]: ... function toggleFullscreen (line 1607) | def toggleFullscreen() -> None: ... function toggleViewers (line 1608) | def toggleViewers() -> None: ... function toolbar (line 1609) | def toolbar(name: str, create: bool = ...) -> Optional[ToolBar]: ... function tprint (line 1610) | def tprint(*args: Any, sep: str = ..., end: str = ..., file: IO = ...) -... function undo (line 1611) | def undo() -> None: ... function usingPerformanceTimers (line 1612) | def usingPerformanceTimers(*args, **kwargs) -> Any: ... function value (line 1613) | def value(knob: str, default: Optional[str] = ...) -> str: ... function views (line 1614) | def views() -> List[str]: ... function waitForThreadsToFinish (line 1615) | def waitForThreadsToFinish() -> str: ... function warning (line 1616) | def warning(message: str) -> None: ... function zoom (line 1617) | def zoom(scale, center, group = ...) -> float: ... function zoomToFitSelected (line 1618) | def zoomToFitSelected() -> None: ... FILE: nuke/stubs/nuke-stubs/_nuke_color.pyi function getOcioColorSpaces (line 3) | def getOcioColorSpaces(*args, **kwargs) -> Any: ... function usingOcio (line 4) | def usingOcio(*args, **kwargs) -> Any: ... FILE: nuke/stubs/nuke-stubs/_splinewarp.pyi class SplineKnob (line 7) | class SplineKnob(_curveknob.CurveKnob): method defaultJoin (line 8) | def defaultJoin(self, AShape: _curveknob.Element, BShape: _curveknob.E... method getAB (line 9) | def getAB(self, s: _curveknob.Element) -> str: ... method getCorrespondencePoints (line 10) | def getCorrespondencePoints(self, path: str) -> _curvelib.Corresponden... method setAB (line 11) | def setAB(self, s: _curveknob.Element, chan: Union[Literal['A'], Liter... method __delattr__ (line 12) | def __delattr__(self, name) -> Any: ... method __setattr__ (line 13) | def __setattr__(self, name, value) -> Any: ... FILE: nuke/stubs/nuke-stubs/callbacks.pyi function addOnUserCreate (line 5) | def addOnUserCreate(call, args=..., kwargs=..., nodeClass: str = ...) ->... function removeOnUserCreate (line 6) | def removeOnUserCreate(call, args=..., kwargs=..., nodeClass: str = ...)... function onUserCreate (line 7) | def onUserCreate() -> None: ... function addOnCreate (line 11) | def addOnCreate(call, args=..., kwargs=..., nodeClass: str = ...) -> Non... function removeOnCreate (line 12) | def removeOnCreate(call, args=..., kwargs=..., nodeClass: str = ...) -> ... function onCreate (line 13) | def onCreate() -> None: ... function addOnScriptLoad (line 17) | def addOnScriptLoad(call, args=..., kwargs=..., nodeClass: str = ...) ->... function removeOnScriptLoad (line 18) | def removeOnScriptLoad(call, args=..., kwargs=..., nodeClass: str = ...)... function onScriptLoad (line 19) | def onScriptLoad() -> None: ... function addOnScriptSave (line 23) | def addOnScriptSave(call, args=..., kwargs=..., nodeClass: str = ...) ->... function removeOnScriptSave (line 24) | def removeOnScriptSave(call, args=..., kwargs=..., nodeClass: str = ...)... function onScriptSave (line 25) | def onScriptSave() -> None: ... function addOnScriptClose (line 29) | def addOnScriptClose(call, args=..., kwargs=..., nodeClass: str = ...) -... function removeOnScriptClose (line 30) | def removeOnScriptClose(call, args=..., kwargs=..., nodeClass: str = ...... function onScriptClose (line 31) | def onScriptClose() -> None: ... function addOnDestroy (line 35) | def addOnDestroy(call, args=..., kwargs=..., nodeClass: str = ...) -> No... function removeOnDestroy (line 36) | def removeOnDestroy(call, args=..., kwargs=..., nodeClass: str = ...) ->... function onDestroy (line 37) | def onDestroy() -> None: ... function addKnobChanged (line 41) | def addKnobChanged(call, args=..., kwargs=..., nodeClass: str = ..., nod... function removeKnobChanged (line 42) | def removeKnobChanged(call, args=..., kwargs=..., nodeClass: str = ..., ... function knobChanged (line 43) | def knobChanged() -> None: ... function addUpdateUI (line 47) | def addUpdateUI(call, args=..., kwargs=..., nodeClass: str = ...) -> Non... function removeUpdateUI (line 48) | def removeUpdateUI(call, args=..., kwargs=..., nodeClass: str = ...) -> ... function updateUI (line 49) | def updateUI() -> None: ... function addAutolabel (line 53) | def addAutolabel(call, args=..., kwargs=..., nodeClass: str = ...) -> No... function removeAutolabel (line 54) | def removeAutolabel(call, args=..., kwargs=..., nodeClass: str = ...) ->... function autolabel (line 55) | def autolabel(): ... function addBeforeRender (line 59) | def addBeforeRender(call, args=..., kwargs=..., nodeClass: str = ...) ->... function removeBeforeRender (line 60) | def removeBeforeRender(call, args=..., kwargs=..., nodeClass: str = ...)... function beforeRender (line 61) | def beforeRender() -> None: ... function addBeforeFrameRender (line 65) | def addBeforeFrameRender(call, args=..., kwargs=..., nodeClass: str = ..... function removeBeforeFrameRender (line 66) | def removeBeforeFrameRender(call, args=..., kwargs=..., nodeClass: str =... function beforeFrameRender (line 67) | def beforeFrameRender() -> None: ... function addAfterFrameRender (line 71) | def addAfterFrameRender(call, args=..., kwargs=..., nodeClass: str = ...... function removeAfterFrameRender (line 72) | def removeAfterFrameRender(call, args=..., kwargs=..., nodeClass: str = ... function afterFrameRender (line 73) | def afterFrameRender() -> None: ... function addAfterRender (line 77) | def addAfterRender(call, args=..., kwargs=..., nodeClass: str = ...) -> ... function removeAfterRender (line 78) | def removeAfterRender(call, args=..., kwargs=..., nodeClass: str = ...) ... function afterRender (line 79) | def afterRender() -> None: ... function addRenderProgress (line 83) | def addRenderProgress(call, args=..., kwargs=..., nodeClass: str = ...) ... function removeRenderProgress (line 84) | def removeRenderProgress(call, args=..., kwargs=..., nodeClass: str = ..... function renderProgress (line 85) | def renderProgress() -> None: ... function addBeforeRecording (line 86) | def addBeforeRecording(call, args=..., kwargs=..., nodeClass: str = ...)... function removeBeforeRecording (line 87) | def removeBeforeRecording(call, args=..., kwargs=..., nodeClass: str = .... function beforeRecording (line 88) | def beforeRecording() -> None: ... function addAfterRecording (line 89) | def addAfterRecording(call, args=..., kwargs=..., nodeClass: str = ...) ... function removeAfterRecording (line 90) | def removeAfterRecording(call, args=..., kwargs=..., nodeClass: str = ..... function afterRecording (line 91) | def afterRecording() -> None: ... function addBeforeReplay (line 92) | def addBeforeReplay(call, args=..., kwargs=..., nodeClass: str = ...) ->... function removeBeforeReplay (line 93) | def removeBeforeReplay(call, args=..., kwargs=..., nodeClass: str = ...)... function beforeReplay (line 94) | def beforeReplay() -> None: ... function addAfterReplay (line 95) | def addAfterReplay(call, args=..., kwargs=..., nodeClass: str = ...) -> ... function removeAfterReplay (line 96) | def removeAfterReplay(call, args=..., kwargs=..., nodeClass: str = ...) ... function afterReplay (line 97) | def afterReplay() -> None: ... function addBeforeBackgroundRender (line 101) | def addBeforeBackgroundRender(call, args=..., kwargs=...) -> None: ... function removeBeforeBackgroundRender (line 102) | def removeBeforeBackgroundRender(call, args=..., kwargs=...) -> None: ... function beforeBackgroundRender (line 103) | def beforeBackgroundRender(context) -> None: ... function addAfterBackgroundFrameRender (line 107) | def addAfterBackgroundFrameRender(call, args=..., kwargs=...) -> None: ... function removeAfterBackgroundFrameRender (line 108) | def removeAfterBackgroundFrameRender(call, args=..., kwargs=...) -> None... function afterBackgroundFrameRender (line 109) | def afterBackgroundFrameRender(context) -> None: ... function addAfterBackgroundRender (line 113) | def addAfterBackgroundRender(call, args=..., kwargs=...) -> None: ... function removeAfterBackgroundRender (line 114) | def removeAfterBackgroundRender(call, args=..., kwargs=...) -> None: ... function afterBackgroundRender (line 115) | def afterBackgroundRender(context) -> None: ... function addFilenameFilter (line 119) | def addFilenameFilter(call, args=..., kwargs=..., nodeClass: str = ...) ... function removeFilenameFilter (line 120) | def removeFilenameFilter(call, args=..., kwargs=..., nodeClass: str = ..... function filenameFilter (line 121) | def filenameFilter(filename): ... function addValidateFilename (line 125) | def addValidateFilename(call, args=..., kwargs=..., nodeClass: str = ...... function removeFilenameValidate (line 126) | def removeFilenameValidate(call, args=..., kwargs=..., nodeClass: str = ... function validateFilename (line 127) | def validateFilename(filename): ... function addAutoSaveFilter (line 131) | def addAutoSaveFilter(filter) -> None: ... function removeAutoSaveFilter (line 132) | def removeAutoSaveFilter(filter) -> None: ... function autoSaveFilter (line 133) | def autoSaveFilter(filename): ... function addAutoSaveRestoreFilter (line 137) | def addAutoSaveRestoreFilter(filter) -> None: ... function removeAutoSaveRestoreFilter (line 138) | def removeAutoSaveRestoreFilter(filter) -> None: ... function autoSaveRestoreFilter (line 139) | def autoSaveRestoreFilter(filename): ... function addAutoSaveDeleteFilter (line 143) | def addAutoSaveDeleteFilter(filter) -> None: ... function removeAutoSaveDeleteFilter (line 144) | def removeAutoSaveDeleteFilter(filter) -> None: ... function autoSaveDeleteFilter (line 145) | def autoSaveDeleteFilter(filename): ... FILE: nuke/stubs/nuke-stubs/colorspaces.pyi class ColorspaceLookupError (line 7) | class ColorspaceLookupError(Exception): ... function addDefaultColorspaceMapper (line 9) | def addDefaultColorspaceMapper(call, args=..., kwargs=..., nodeClass: st... function removeDefaultColorspaceMapper (line 10) | def removeDefaultColorspaceMapper(call, args=..., kwargs=..., nodeClass:... function defaultColorspaceMapper (line 11) | def defaultColorspaceMapper(colorspace, dataTypeHint): ... function getColorspaceList (line 12) | def getColorspaceList(colorspaceKnob): ... FILE: nuke/stubs/nuke-stubs/executeInMain.pyi function executeInMainThreadWithResult (line 1) | def executeInMainThreadWithResult(call, args=..., kwargs=...): ... function executeInMainThread (line 2) | def executeInMainThread(call, args=..., kwargs=...) -> None: ... FILE: nuke/stubs/nuke-stubs/localization.pyi class FileEvent (line 3) | class FileEvent: class ReadStatus (line 10) | class ReadStatus: FILE: nuke/stubs/nuke-stubs/overrides.pyi function pluginAddPath (line 1) | def pluginAddPath(args, addToSysPath: bool = ...) -> None: ... function pluginAppendPath (line 2) | def pluginAppendPath(args, addToSysPath: bool = ...) -> None: ... function dependencies (line 3) | def dependencies(nodes, what=...): ... function dependentNodes (line 4) | def dependentNodes(what=..., nodes=..., evaluateAll: bool = ...): ... function selectConnectedNodes (line 5) | def selectConnectedNodes() -> None: ... FILE: nuke/stubs/nuke-stubs/rotopaint.pyi function convertToNuke6 (line 4) | def convertToNuke6(fromScript, toScript, overwrite: bool = ...) -> None:... function convertToNuke7 (line 5) | def convertToNuke7(fromScript, toScript, overwrite: bool = ...) -> None:... function convertDirectoryToNuke6 (line 6) | def convertDirectoryToNuke6(fromDir, toDir, matchPattern: str = ..., ove... function convertDirectoryToNuke7 (line 7) | def convertDirectoryToNuke7(fromDir, toDir, matchPattern: str = ..., ove... FILE: nuke/stubs/nuke-stubs/scripts.pyi function scriptSaveAndClear (line 3) | def scriptSaveAndClear(filename: Any | None = ..., ignoreUnsavedChanges:... FILE: nuke/stubs/nuke-stubs/utils.pyi class FnPySingleton (line 1) | class FnPySingleton: method __new__ (line 2) | def __new__(type, *args, **kwargs): ... function script_directory (line 4) | def script_directory(): ... FILE: ocio/stubgen_ocio.py class OCIOSignatureGenerator (line 30) | class OCIOSignatureGenerator(AdvancedSignatureGenerator): method process_sig (line 59) | def process_sig( class InspectionStubGenerator (line 67) | class InspectionStubGenerator(mypy.stubgenc.InspectionStubGenerator): method get_sig_generators (line 68) | def get_sig_generators(self) -> list[SignatureGenerator]: method set_defined_names (line 75) | def set_defined_names(self, defined_names: set[str]) -> None: method get_base_types (line 80) | def get_base_types(self, obj: type) -> list[str]: function is_valid_type (line 88) | def is_valid_type(type_name: str) -> bool: function get_colored_diff (line 101) | def get_colored_diff(old_text: str, new_text: str): function main (line 130) | def main() -> None: FILE: ocio/stubs/PyOpenColorIO-stubs/__init__.pyi class Allocation (line 217) | class Allocation: method __init__ (line 223) | def __init__(self, value: int) -> None: ... method __eq__ (line 224) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 225) | def __hash__(self) -> int: ... method __index__ (line 226) | def __index__(self) -> int: ... method __int__ (line 227) | def __int__(self) -> int: ... method __ne__ (line 228) | def __ne__(self, other: object) -> bool: ... method name (line 230) | def name(self) -> str: ... method value (line 232) | def value(self) -> int: ... class AllocationTransform (line 234) | class AllocationTransform(Transform): method __init__ (line 236) | def __init__(self) -> None: ... method __init__ (line 238) | def __init__(self, allocation: Allocation = ..., vars: Iterable[float]... method getAllocation (line 239) | def getAllocation(self) -> Allocation: ... method getVars (line 240) | def getVars(self) -> list[float]: ... method setAllocation (line 241) | def setAllocation(self, allocation: Allocation) -> None: ... method setVars (line 242) | def setVars(self, vars: Iterable[float]) -> None: ... class Baker (line 244) | class Baker: class FormatIterator (line 245) | class FormatIterator: method __init__ (line 246) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 247) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 248) | def __iter__(self) -> Baker.FormatIterator: ... method __len__ (line 249) | def __len__(self) -> int: ... method __next__ (line 250) | def __next__(self) -> tuple: ... method __init__ (line 252) | def __init__(self) -> None: ... method __init__ (line 254) | def __init__(self, config: Config, format: str, inputSpace: str, targe... method bake (line 256) | def bake(self, fileName: str) -> None: ... method bake (line 258) | def bake(self) -> str: ... method getConfig (line 259) | def getConfig(self) -> Config: ... method getCubeSize (line 260) | def getCubeSize(self) -> int: ... method getDisplay (line 261) | def getDisplay(self) -> str: ... method getFormat (line 262) | def getFormat(self) -> str: ... method getFormatMetadata (line 263) | def getFormatMetadata(self) -> FormatMetadata: ... method getFormats (line 265) | def getFormats() -> Baker.FormatIterator: ... method getInputSpace (line 266) | def getInputSpace(self) -> str: ... method getLooks (line 267) | def getLooks(self) -> str: ... method getShaperSize (line 268) | def getShaperSize(self) -> int: ... method getShaperSpace (line 269) | def getShaperSpace(self) -> str: ... method getTargetSpace (line 270) | def getTargetSpace(self) -> str: ... method getView (line 271) | def getView(self) -> str: ... method setConfig (line 272) | def setConfig(self, config: Config) -> None: ... method setCubeSize (line 273) | def setCubeSize(self, cubeSize: int) -> None: ... method setDisplayView (line 274) | def setDisplayView(self, display: str, view: str) -> None: ... method setFormat (line 275) | def setFormat(self, formatName: str) -> None: ... method setInputSpace (line 276) | def setInputSpace(self, inputSpace: str) -> None: ... method setLooks (line 277) | def setLooks(self, looks: str) -> None: ... method setShaperSize (line 278) | def setShaperSize(self, shaperSize: int) -> None: ... method setShaperSpace (line 279) | def setShaperSpace(self, shaperSpace: str) -> None: ... method setTargetSpace (line 280) | def setTargetSpace(self, targetSpace: str) -> None: ... method __deepcopy__ (line 281) | def __deepcopy__(self, memo: dict) -> Baker: ... class BitDepth (line 283) | class BitDepth: method __init__ (line 295) | def __init__(self, value: int) -> None: ... method __and__ (line 296) | def __and__(self, other: object) -> object: ... method __eq__ (line 297) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 298) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 299) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 300) | def __hash__(self) -> int: ... method __index__ (line 301) | def __index__(self) -> int: ... method __int__ (line 302) | def __int__(self) -> int: ... method __invert__ (line 303) | def __invert__(self) -> object: ... method __le__ (line 304) | def __le__(self, other: object) -> bool: ... method __lt__ (line 305) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 306) | def __ne__(self, other: object) -> bool: ... method __or__ (line 307) | def __or__(self, other: object) -> object: ... method __rand__ (line 308) | def __rand__(self, other: object) -> object: ... method __ror__ (line 309) | def __ror__(self, other: object) -> object: ... method __rxor__ (line 310) | def __rxor__(self, other: object) -> object: ... method __xor__ (line 311) | def __xor__(self, other: object) -> object: ... method name (line 313) | def name(self) -> str: ... method value (line 315) | def value(self) -> int: ... class BuiltinConfigRegistry (line 317) | class BuiltinConfigRegistry: class BuiltinConfigIterator (line 318) | class BuiltinConfigIterator: method __init__ (line 319) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 320) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 321) | def __iter__(self) -> BuiltinConfigRegistry.BuiltinConfigIterator: ... method __len__ (line 322) | def __len__(self) -> int: ... method __next__ (line 323) | def __next__(self) -> tuple: ... class BuiltinConfigNameIterator (line 325) | class BuiltinConfigNameIterator: method __init__ (line 326) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 327) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 328) | def __iter__(self) -> BuiltinConfigRegistry.BuiltinConfigNameIterato... method __len__ (line 329) | def __len__(self) -> int: ... method __next__ (line 330) | def __next__(self) -> str: ... method __init__ (line 331) | def __init__(self) -> None: ... method getBuiltinConfigs (line 332) | def getBuiltinConfigs(self) -> BuiltinConfigRegistry.BuiltinConfigIter... method getDefaultBuiltinConfigName (line 333) | def getDefaultBuiltinConfigName(self) -> str: ... method __contains__ (line 334) | def __contains__(self, arg0: str, /) -> bool: ... method __getitem__ (line 335) | def __getitem__(self, arg0: str, /) -> str: ... method __iter__ (line 336) | def __iter__(self) -> BuiltinConfigRegistry.BuiltinConfigNameIterator:... method __len__ (line 337) | def __len__(self) -> int: ... class BuiltinTransform (line 339) | class BuiltinTransform(Transform): method __init__ (line 341) | def __init__(self) -> None: ... method __init__ (line 343) | def __init__(self, style: str = ..., direction: TransformDirection = .... method getDescription (line 344) | def getDescription(self) -> str: ... method getStyle (line 345) | def getStyle(self) -> str: ... method setStyle (line 346) | def setStyle(self, style: str) -> None: ... class BuiltinTransformRegistry (line 348) | class BuiltinTransformRegistry: class BuiltinIterator (line 349) | class BuiltinIterator: method __init__ (line 350) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 351) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 352) | def __iter__(self) -> BuiltinTransformRegistry.BuiltinIterator: ... method __len__ (line 353) | def __len__(self) -> int: ... method __next__ (line 354) | def __next__(self) -> tuple: ... class BuiltinStyleIterator (line 356) | class BuiltinStyleIterator: method __init__ (line 357) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 358) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 359) | def __iter__(self) -> BuiltinTransformRegistry.BuiltinStyleIterator:... method __len__ (line 360) | def __len__(self) -> int: ... method __next__ (line 361) | def __next__(self) -> str: ... method __init__ (line 362) | def __init__(self) -> None: ... method getBuiltins (line 363) | def getBuiltins(self) -> BuiltinTransformRegistry.BuiltinIterator: ... method __contains__ (line 364) | def __contains__(self, arg0: str, /) -> bool: ... method __getitem__ (line 365) | def __getitem__(self, arg0: str, /) -> str: ... method __iter__ (line 366) | def __iter__(self) -> BuiltinTransformRegistry.BuiltinStyleIterator: ... method __len__ (line 367) | def __len__(self) -> int: ... class CDLStyle (line 369) | class CDLStyle: method __init__ (line 375) | def __init__(self, value: int) -> None: ... method __eq__ (line 376) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 377) | def __hash__(self) -> int: ... method __index__ (line 378) | def __index__(self) -> int: ... method __int__ (line 379) | def __int__(self) -> int: ... method __ne__ (line 380) | def __ne__(self, other: object) -> bool: ... method name (line 382) | def name(self) -> str: ... method value (line 384) | def value(self) -> int: ... class CDLTransform (line 386) | class CDLTransform(Transform): method __init__ (line 388) | def __init__(self) -> None: ... method __init__ (line 390) | def __init__(self, direction: TransformDirection = ...) -> None: ... method __init__ (line 392) | def __init__(self, slope: Annotated[Iterable[float], None] = ..., offs... method CreateFromFile (line 394) | def CreateFromFile(src: str, id: str) -> CDLTransform: ... method CreateGroupFromFile (line 396) | def CreateGroupFromFile(src: str) -> GroupTransform: ... method equals (line 397) | def equals(self, other: CDLTransform) -> bool: ... method getFirstSOPDescription (line 398) | def getFirstSOPDescription(self) -> str: ... method getFormatMetadata (line 399) | def getFormatMetadata(self) -> FormatMetadata: ... method getID (line 400) | def getID(self) -> str: ... method getOffset (line 401) | def getOffset(self) -> Annotated[list[float], None]: ... method getPower (line 402) | def getPower(self) -> Annotated[list[float], None]: ... method getSOP (line 403) | def getSOP(self) -> Annotated[list[float], None]: ... method getSat (line 404) | def getSat(self) -> float: ... method getSatLumaCoefs (line 405) | def getSatLumaCoefs(self) -> Annotated[list[float], None]: ... method getSlope (line 406) | def getSlope(self) -> Annotated[list[float], None]: ... method getStyle (line 407) | def getStyle(self) -> CDLStyle: ... method setFirstSOPDescription (line 408) | def setFirstSOPDescription(self, description: str) -> None: ... method setID (line 409) | def setID(self, id: str) -> None: ... method setOffset (line 410) | def setOffset(self, rgb: Annotated[Iterable[float], None]) -> None: ... method setPower (line 411) | def setPower(self, rgb: Annotated[Iterable[float], None]) -> None: ... method setSOP (line 412) | def setSOP(self, vec9: Annotated[Iterable[float], None]) -> None: ... method setSat (line 413) | def setSat(self, sat: float) -> None: ... method setSlope (line 414) | def setSlope(self, rgb: Annotated[Iterable[float], None]) -> None: ... method setStyle (line 415) | def setStyle(self, style: CDLStyle) -> None: ... class CPUProcessor (line 417) | class CPUProcessor: method __init__ (line 418) | def __init__(self, *args, **kwargs) -> None: ... method apply (line 420) | def apply(self, imgDesc: ImageDesc) -> None: ... method apply (line 422) | def apply(self, srcImgDesc: ImageDesc, dstImgDesc: ImageDesc) -> None:... method applyRGB (line 424) | def applyRGB(self, data: Buffer) -> None: ... method applyRGB (line 426) | def applyRGB(self, data: Iterable[float]) -> list[float]: ... method applyRGBA (line 428) | def applyRGBA(self, data: Buffer) -> None: ... method applyRGBA (line 430) | def applyRGBA(self, data: Iterable[float]) -> list[float]: ... method getCacheID (line 431) | def getCacheID(self) -> str: ... method getDynamicProperty (line 432) | def getDynamicProperty(self, type: DynamicPropertyType) -> DynamicProp... method getInputBitDepth (line 433) | def getInputBitDepth(self) -> BitDepth: ... method getOutputBitDepth (line 434) | def getOutputBitDepth(self) -> BitDepth: ... method hasChannelCrosstalk (line 435) | def hasChannelCrosstalk(self) -> bool: ... method hasDynamicProperty (line 436) | def hasDynamicProperty(self, type: DynamicPropertyType) -> bool: ... method isDynamic (line 437) | def isDynamic(self) -> bool: ... method isIdentity (line 438) | def isIdentity(self) -> bool: ... method isNoOp (line 439) | def isNoOp(self) -> bool: ... class ChannelOrdering (line 441) | class ChannelOrdering: method __init__ (line 449) | def __init__(self, value: int) -> None: ... method __eq__ (line 450) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 451) | def __hash__(self) -> int: ... method __index__ (line 452) | def __index__(self) -> int: ... method __int__ (line 453) | def __int__(self) -> int: ... method __ne__ (line 454) | def __ne__(self, other: object) -> bool: ... method name (line 456) | def name(self) -> str: ... method value (line 458) | def value(self) -> int: ... class ColorSpace (line 460) | class ColorSpace: class ColorSpaceAliasIterator (line 461) | class ColorSpaceAliasIterator: method __init__ (line 462) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 463) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 464) | def __iter__(self) -> ColorSpace.ColorSpaceAliasIterator: ... method __len__ (line 465) | def __len__(self) -> int: ... method __next__ (line 466) | def __next__(self) -> str: ... class ColorSpaceCategoryIterator (line 468) | class ColorSpaceCategoryIterator: method __init__ (line 469) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 470) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 471) | def __iter__(self) -> ColorSpace.ColorSpaceCategoryIterator: ... method __len__ (line 472) | def __len__(self) -> int: ... method __next__ (line 473) | def __next__(self) -> str: ... method __init__ (line 475) | def __init__(self) -> None: ... method __init__ (line 477) | def __init__(self, referenceSpace: ReferenceSpaceType) -> None: ... method __init__ (line 479) | def __init__(self, referenceSpace: ReferenceSpaceType = ..., name: str... method addAlias (line 480) | def addAlias(self, alias: str) -> None: ... method addCategory (line 481) | def addCategory(self, category: str) -> None: ... method clearAliases (line 482) | def clearAliases(self) -> None: ... method clearCategories (line 483) | def clearCategories(self) -> None: ... method getAliases (line 484) | def getAliases(self) -> ColorSpace.ColorSpaceAliasIterator: ... method getAllocation (line 485) | def getAllocation(self) -> Allocation: ... method getAllocationVars (line 486) | def getAllocationVars(self) -> list[float]: ... method getBitDepth (line 487) | def getBitDepth(self) -> BitDepth: ... method getCategories (line 488) | def getCategories(self) -> ColorSpace.ColorSpaceCategoryIterator: ... method getDescription (line 489) | def getDescription(self) -> str: ... method getEncoding (line 490) | def getEncoding(self) -> str: ... method getEqualityGroup (line 491) | def getEqualityGroup(self) -> str: ... method getFamily (line 492) | def getFamily(self) -> str: ... method getName (line 493) | def getName(self) -> str: ... method getReferenceSpaceType (line 494) | def getReferenceSpaceType(self) -> ReferenceSpaceType: ... method getTransform (line 495) | def getTransform(self, direction: ColorSpaceDirection) -> Transform: ... method hasAlias (line 496) | def hasAlias(self, alias: str) -> bool: ... method hasCategory (line 497) | def hasCategory(self, category: str) -> bool: ... method isData (line 498) | def isData(self) -> bool: ... method removeAlias (line 499) | def removeAlias(self, alias: str) -> None: ... method removeCategory (line 500) | def removeCategory(self, category: str) -> None: ... method setAllocation (line 501) | def setAllocation(self, allocation: Allocation) -> None: ... method setAllocationVars (line 502) | def setAllocationVars(self, vars: Iterable[float]) -> None: ... method setBitDepth (line 503) | def setBitDepth(self, bitDepth: BitDepth) -> None: ... method setDescription (line 504) | def setDescription(self, description: str) -> None: ... method setEncoding (line 505) | def setEncoding(self, encoding: str) -> None: ... method setEqualityGroup (line 506) | def setEqualityGroup(self, equalityGroup: str) -> None: ... method setFamily (line 507) | def setFamily(self, family: str) -> None: ... method setIsData (line 508) | def setIsData(self, isData: bool) -> None: ... method setName (line 509) | def setName(self, name: str) -> None: ... method setTransform (line 510) | def setTransform(self, transform: Transform, direction: ColorSpaceDire... method __deepcopy__ (line 511) | def __deepcopy__(self, memo: dict) -> ColorSpace: ... class ColorSpaceDirection (line 513) | class ColorSpaceDirection: method __init__ (line 518) | def __init__(self, value: int) -> None: ... method __eq__ (line 519) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 520) | def __hash__(self) -> int: ... method __index__ (line 521) | def __index__(self) -> int: ... method __int__ (line 522) | def __int__(self) -> int: ... method __ne__ (line 523) | def __ne__(self, other: object) -> bool: ... method name (line 525) | def name(self) -> str: ... method value (line 527) | def value(self) -> int: ... class ColorSpaceMenuHelper (line 529) | class ColorSpaceMenuHelper: class ColorSpaceLevelIterator (line 530) | class ColorSpaceLevelIterator: method __init__ (line 531) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 532) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 533) | def __iter__(self) -> ColorSpaceMenuHelper.ColorSpaceLevelIterator: ... method __len__ (line 534) | def __len__(self) -> int: ... method __next__ (line 535) | def __next__(self) -> str: ... method __init__ (line 536) | def __init__(self, parameters: ColorSpaceMenuParameters) -> None: ... method getDescription (line 537) | def getDescription(self, index: int) -> str: ... method getFamily (line 538) | def getFamily(self, index: int) -> str: ... method getHierarchyLevels (line 539) | def getHierarchyLevels(self, index: int) -> ColorSpaceMenuHelper.Color... method getIndexFromName (line 540) | def getIndexFromName(self, name: str) -> int: ... method getIndexFromUIName (line 541) | def getIndexFromUIName(self, name: str) -> int: ... method getName (line 542) | def getName(self, index: int) -> str: ... method getNameFromUIName (line 543) | def getNameFromUIName(self, name: str) -> str: ... method getNumColorSpaces (line 544) | def getNumColorSpaces(self) -> int: ... method getUIName (line 545) | def getUIName(self, index: int) -> str: ... method getUINameFromName (line 546) | def getUINameFromName(self, name: str) -> str: ... class ColorSpaceMenuParameters (line 548) | class ColorSpaceMenuParameters: class AddedColorSpaceIterator (line 549) | class AddedColorSpaceIterator: method __init__ (line 550) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 551) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 552) | def __iter__(self) -> ColorSpaceMenuParameters.AddedColorSpaceIterat... method __len__ (line 553) | def __len__(self) -> int: ... method __next__ (line 554) | def __next__(self) -> str: ... method __init__ (line 556) | def __init__(self, config: Config) -> None: ... method __init__ (line 558) | def __init__(self, config: Config, role: str = ..., includeColorSpaces... method addColorSpace (line 559) | def addColorSpace(self, colorSpace: str) -> None: ... method clearAddedColorSpaces (line 560) | def clearAddedColorSpaces(self) -> None: ... method getAddedColorSpaces (line 561) | def getAddedColorSpaces(self) -> ColorSpaceMenuParameters.AddedColorSp... method getAppCategories (line 562) | def getAppCategories(self) -> str: ... method getConfig (line 563) | def getConfig(self) -> Config: ... method getEncodings (line 564) | def getEncodings(self) -> str: ... method getIncludeColorSpaces (line 565) | def getIncludeColorSpaces(self) -> bool: ... method getIncludeNamedTransforms (line 566) | def getIncludeNamedTransforms(self) -> bool: ... method getIncludeRoles (line 567) | def getIncludeRoles(self) -> bool: ... method getRole (line 568) | def getRole(self) -> str: ... method getSearchReferenceSpaceType (line 569) | def getSearchReferenceSpaceType(self) -> SearchReferenceSpaceType: ... method getUserCategories (line 570) | def getUserCategories(self) -> str: ... method setAppCategories (line 571) | def setAppCategories(self, appCategories: str) -> None: ... method setConfig (line 572) | def setConfig(self, config: Config) -> None: ... method setEncodings (line 573) | def setEncodings(self, encodings: str) -> None: ... method setIncludeColorSpaces (line 574) | def setIncludeColorSpaces(self, includeColorSpaces: bool = ...) -> Non... method setIncludeNamedTransforms (line 575) | def setIncludeNamedTransforms(self, includeNamedTransforms: bool = ...... method setIncludeRoles (line 576) | def setIncludeRoles(self, includeRoles: bool = ...) -> None: ... method setRole (line 577) | def setRole(self, role: str) -> None: ... method setSearchReferenceSpaceType (line 578) | def setSearchReferenceSpaceType(self, searchReferenceSpaceType: Search... method setUserCategories (line 579) | def setUserCategories(self, categories: str) -> None: ... class ColorSpaceSet (line 581) | class ColorSpaceSet: class ColorSpaceIterator (line 582) | class ColorSpaceIterator: method __init__ (line 583) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 584) | def __getitem__(self, arg0: int, /) -> ColorSpace: ... method __iter__ (line 585) | def __iter__(self) -> ColorSpaceSet.ColorSpaceIterator: ... method __len__ (line 586) | def __len__(self) -> int: ... method __next__ (line 587) | def __next__(self) -> ColorSpace: ... class ColorSpaceNameIterator (line 589) | class ColorSpaceNameIterator: method __init__ (line 590) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 591) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 592) | def __iter__(self) -> ColorSpaceSet.ColorSpaceNameIterator: ... method __len__ (line 593) | def __len__(self) -> int: ... method __next__ (line 594) | def __next__(self) -> str: ... method __init__ (line 595) | def __init__(self) -> None: ... method addColorSpace (line 596) | def addColorSpace(self, colorSpace: ColorSpace) -> None: ... method addColorSpaces (line 597) | def addColorSpaces(self, colorSpaces: ColorSpaceSet) -> None: ... method clearColorSpaces (line 598) | def clearColorSpaces(self) -> None: ... method getColorSpace (line 599) | def getColorSpace(self, name: str) -> ColorSpace: ... method getColorSpaceNames (line 600) | def getColorSpaceNames(self) -> ColorSpaceSet.ColorSpaceNameIterator: ... method getColorSpaces (line 601) | def getColorSpaces(self) -> ColorSpaceSet.ColorSpaceIterator: ... method hasColorSpace (line 602) | def hasColorSpace(self, name: str) -> bool: ... method removeColorSpace (line 603) | def removeColorSpace(self, colorSpace: str) -> None: ... method removeColorSpaces (line 604) | def removeColorSpaces(self, colorSpaces: ColorSpaceSet) -> None: ... method __and__ (line 605) | def __and__(self, arg0: ColorSpaceSet, /) -> ColorSpaceSet: ... method __deepcopy__ (line 606) | def __deepcopy__(self, memo: dict) -> ColorSpaceSet: ... method __eq__ (line 607) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 608) | def __ne__(self, other: object) -> bool: ... method __or__ (line 609) | def __or__(self, arg0: ColorSpaceSet, /) -> ColorSpaceSet: ... method __sub__ (line 610) | def __sub__(self, arg0: ColorSpaceSet, /) -> ColorSpaceSet: ... class ColorSpaceTransform (line 612) | class ColorSpaceTransform(Transform): method __init__ (line 614) | def __init__(self) -> None: ... method __init__ (line 616) | def __init__(self, src: str = ..., dst: str = ..., direction: Transfor... method getDataBypass (line 617) | def getDataBypass(self) -> bool: ... method getDst (line 618) | def getDst(self) -> str: ... method getSrc (line 619) | def getSrc(self) -> str: ... method setDataBypass (line 620) | def setDataBypass(self, dataBypass: bool) -> None: ... method setDst (line 621) | def setDst(self, dst: str) -> None: ... method setSrc (line 622) | def setSrc(self, src: str) -> None: ... class ColorSpaceVisibility (line 624) | class ColorSpaceVisibility: method __init__ (line 630) | def __init__(self, value: int) -> None: ... method __eq__ (line 631) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 632) | def __hash__(self) -> int: ... method __index__ (line 633) | def __index__(self) -> int: ... method __int__ (line 634) | def __int__(self) -> int: ... method __ne__ (line 635) | def __ne__(self, other: object) -> bool: ... method name (line 637) | def name(self) -> str: ... method value (line 639) | def value(self) -> int: ... class Config (line 641) | class Config: class ActiveColorSpaceIterator (line 642) | class ActiveColorSpaceIterator: method __init__ (line 643) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 644) | def __getitem__(self, arg0: int, /) -> ColorSpace: ... method __iter__ (line 645) | def __iter__(self) -> Config.ActiveColorSpaceIterator: ... method __len__ (line 646) | def __len__(self) -> int: ... method __next__ (line 647) | def __next__(self) -> ColorSpace: ... class ActiveColorSpaceNameIterator (line 649) | class ActiveColorSpaceNameIterator: method __init__ (line 650) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 651) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 652) | def __iter__(self) -> Config.ActiveColorSpaceNameIterator: ... method __len__ (line 653) | def __len__(self) -> int: ... method __next__ (line 654) | def __next__(self) -> str: ... class ActiveNamedTransformIterator (line 656) | class ActiveNamedTransformIterator: method __init__ (line 657) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 658) | def __getitem__(self, arg0: int, /) -> NamedTransform: ... method __iter__ (line 659) | def __iter__(self) -> Config.ActiveNamedTransformIterator: ... method __len__ (line 660) | def __len__(self) -> int: ... method __next__ (line 661) | def __next__(self) -> NamedTransform: ... class ActiveNamedTransformNameIterator (line 663) | class ActiveNamedTransformNameIterator: method __init__ (line 664) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 665) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 666) | def __iter__(self) -> Config.ActiveNamedTransformNameIterator: ... method __len__ (line 667) | def __len__(self) -> int: ... method __next__ (line 668) | def __next__(self) -> str: ... class ColorSpaceIterator (line 670) | class ColorSpaceIterator: method __init__ (line 671) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 672) | def __getitem__(self, arg0: int, /) -> ColorSpace: ... method __iter__ (line 673) | def __iter__(self) -> Config.ColorSpaceIterator: ... method __len__ (line 674) | def __len__(self) -> int: ... method __next__ (line 675) | def __next__(self) -> ColorSpace: ... class ColorSpaceNameIterator (line 677) | class ColorSpaceNameIterator: method __init__ (line 678) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 679) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 680) | def __iter__(self) -> Config.ColorSpaceNameIterator: ... method __len__ (line 681) | def __len__(self) -> int: ... method __next__ (line 682) | def __next__(self) -> str: ... class DisplayAllIterator (line 684) | class DisplayAllIterator: method __init__ (line 685) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 686) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 687) | def __iter__(self) -> Config.DisplayAllIterator: ... method __len__ (line 688) | def __len__(self) -> int: ... method __next__ (line 689) | def __next__(self) -> str: ... class DisplayIterator (line 691) | class DisplayIterator: method __init__ (line 692) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 693) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 694) | def __iter__(self) -> Config.DisplayIterator: ... method __len__ (line 695) | def __len__(self) -> int: ... method __next__ (line 696) | def __next__(self) -> str: ... class EnvironmentVarNameIterator (line 698) | class EnvironmentVarNameIterator: method __init__ (line 699) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 700) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 701) | def __iter__(self) -> Config.EnvironmentVarNameIterator: ... method __len__ (line 702) | def __len__(self) -> int: ... method __next__ (line 703) | def __next__(self) -> str: ... class LookIterator (line 705) | class LookIterator: method __init__ (line 706) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 707) | def __getitem__(self, arg0: int, /) -> Look: ... method __iter__ (line 708) | def __iter__(self) -> Config.LookIterator: ... method __len__ (line 709) | def __len__(self) -> int: ... method __next__ (line 710) | def __next__(self) -> Look: ... class LookNameIterator (line 712) | class LookNameIterator: method __init__ (line 713) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 714) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 715) | def __iter__(self) -> Config.LookNameIterator: ... method __len__ (line 716) | def __len__(self) -> int: ... method __next__ (line 717) | def __next__(self) -> str: ... class NamedTransformIterator (line 719) | class NamedTransformIterator: method __init__ (line 720) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 721) | def __getitem__(self, arg0: int, /) -> NamedTransform: ... method __iter__ (line 722) | def __iter__(self) -> Config.NamedTransformIterator: ... method __len__ (line 723) | def __len__(self) -> int: ... method __next__ (line 724) | def __next__(self) -> NamedTransform: ... class NamedTransformNameIterator (line 726) | class NamedTransformNameIterator: method __init__ (line 727) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 728) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 729) | def __iter__(self) -> Config.NamedTransformNameIterator: ... method __len__ (line 730) | def __len__(self) -> int: ... method __next__ (line 731) | def __next__(self) -> str: ... class RoleColorSpaceIterator (line 733) | class RoleColorSpaceIterator: method __init__ (line 734) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 735) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 736) | def __iter__(self) -> Config.RoleColorSpaceIterator: ... method __len__ (line 737) | def __len__(self) -> int: ... method __next__ (line 738) | def __next__(self) -> tuple: ... class RoleNameIterator (line 740) | class RoleNameIterator: method __init__ (line 741) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 742) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 743) | def __iter__(self) -> Config.RoleNameIterator: ... method __len__ (line 744) | def __len__(self) -> int: ... method __next__ (line 745) | def __next__(self) -> str: ... class SearchPathIterator (line 747) | class SearchPathIterator: method __init__ (line 748) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 749) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 750) | def __iter__(self) -> Config.SearchPathIterator: ... method __len__ (line 751) | def __len__(self) -> int: ... method __next__ (line 752) | def __next__(self) -> str: ... class SharedViewIterator (line 754) | class SharedViewIterator: method __init__ (line 755) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 756) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 757) | def __iter__(self) -> Config.SharedViewIterator: ... method __len__ (line 758) | def __len__(self) -> int: ... method __next__ (line 759) | def __next__(self) -> str: ... class ViewForColorSpaceIterator (line 761) | class ViewForColorSpaceIterator: method __init__ (line 762) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 763) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 764) | def __iter__(self) -> Config.ViewForColorSpaceIterator: ... method __len__ (line 765) | def __len__(self) -> int: ... method __next__ (line 766) | def __next__(self) -> str: ... class ViewForViewTypeIterator (line 768) | class ViewForViewTypeIterator: method __init__ (line 769) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 770) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 771) | def __iter__(self) -> Config.ViewForViewTypeIterator: ... method __len__ (line 772) | def __len__(self) -> int: ... method __next__ (line 773) | def __next__(self) -> str: ... class ViewIterator (line 775) | class ViewIterator: method __init__ (line 776) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 777) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 778) | def __iter__(self) -> Config.ViewIterator: ... method __len__ (line 779) | def __len__(self) -> int: ... method __next__ (line 780) | def __next__(self) -> str: ... class ViewTransformIterator (line 782) | class ViewTransformIterator: method __init__ (line 783) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 784) | def __getitem__(self, arg0: int, /) -> ViewTransform: ... method __iter__ (line 785) | def __iter__(self) -> Config.ViewTransformIterator: ... method __len__ (line 786) | def __len__(self) -> int: ... method __next__ (line 787) | def __next__(self) -> ViewTransform: ... class ViewTransformNameIterator (line 789) | class ViewTransformNameIterator: method __init__ (line 790) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 791) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 792) | def __iter__(self) -> Config.ViewTransformNameIterator: ... method __len__ (line 793) | def __len__(self) -> int: ... method __next__ (line 794) | def __next__(self) -> str: ... class VirtualViewIterator (line 796) | class VirtualViewIterator: method __init__ (line 797) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 798) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 799) | def __iter__(self) -> Config.VirtualViewIterator: ... method __len__ (line 800) | def __len__(self) -> int: ... method __next__ (line 801) | def __next__(self) -> str: ... method __init__ (line 802) | def __init__(self) -> None: ... method CreateFromBuiltinConfig (line 804) | def CreateFromBuiltinConfig(arg0: str, /) -> Config: ... method CreateFromConfigIOProxy (line 806) | def CreateFromConfigIOProxy(arg0, /) -> Config: ... method CreateFromEnv (line 808) | def CreateFromEnv() -> Config: ... method CreateFromFile (line 810) | def CreateFromFile(fileName: str) -> Config: ... method CreateFromStream (line 812) | def CreateFromStream(str: str) -> Config: ... method CreateRaw (line 814) | def CreateRaw() -> Config: ... method GetProcessorFromBuiltinColorSpace (line 816) | def GetProcessorFromBuiltinColorSpace(builtinColorSpaceName: str, srcC... method GetProcessorFromConfigs (line 819) | def GetProcessorFromConfigs(srcConfig: Config, srcColorSpaceName: str,... method GetProcessorFromConfigs (line 822) | def GetProcessorFromConfigs(srcContext: Context, srcConfig: Config, sr... method GetProcessorFromConfigs (line 825) | def GetProcessorFromConfigs(srcConfig: Config, srcColorSpaceName: str,... method GetProcessorFromConfigs (line 828) | def GetProcessorFromConfigs(srcContext: Context, srcConfig: Config, sr... method GetProcessorFromConfigs (line 831) | def GetProcessorFromConfigs(srcConfig: Config, srcColorSpaceName: str,... method GetProcessorFromConfigs (line 834) | def GetProcessorFromConfigs(srcContext: Context, srcConfig: Config, sr... method GetProcessorFromConfigs (line 837) | def GetProcessorFromConfigs(srcConfig: Config, srcColorSpaceName: str,... method GetProcessorFromConfigs (line 840) | def GetProcessorFromConfigs(srcContext: Context, srcConfig: Config, sr... method GetProcessorToBuiltinColorSpace (line 842) | def GetProcessorToBuiltinColorSpace(srcConfig: Config, srcColorSpaceNa... method IdentifyBuiltinColorSpace (line 844) | def IdentifyBuiltinColorSpace(srcConfig: Config, builtinConfig: Config... method IdentifyInterchangeSpace (line 846) | def IdentifyInterchangeSpace(srcConfig: Config, srcColorSpaceName: str... method addColorSpace (line 847) | def addColorSpace(self, colorSpace: ColorSpace) -> None: ... method addDisplaySharedView (line 848) | def addDisplaySharedView(self, display: str, view: str) -> None: ... method addDisplayView (line 850) | def addDisplayView(self, display: str, view: str, colorSpaceName: str,... method addDisplayView (line 852) | def addDisplayView(self, display: str, view: str, viewTransform: str, ... method addEnvironmentVar (line 853) | def addEnvironmentVar(self, name: str, defaultValue: str) -> None: ... method addLook (line 854) | def addLook(self, look: Look) -> None: ... method addNamedTransform (line 855) | def addNamedTransform(self, namedTransform: NamedTransform) -> None: ... method addSearchPath (line 856) | def addSearchPath(self, path: str) -> None: ... method addSharedView (line 857) | def addSharedView(self, view: str, viewTransformName: str, colorSpaceN... method addViewTransform (line 858) | def addViewTransform(self, viewTransform: ViewTransform) -> None: ... method addVirtualDisplaySharedView (line 859) | def addVirtualDisplaySharedView(self, sharedView: str) -> None: ... method addVirtualDisplayView (line 860) | def addVirtualDisplayView(self, view: str, viewTransformName: str, col... method archive (line 861) | def archive(self, arg0: str, /) -> None: ... method clearColorSpaces (line 862) | def clearColorSpaces(self) -> None: ... method clearDisplays (line 863) | def clearDisplays(self) -> None: ... method clearEnvironmentVars (line 864) | def clearEnvironmentVars(self) -> None: ... method clearLooks (line 865) | def clearLooks(self) -> None: ... method clearNamedTransforms (line 866) | def clearNamedTransforms(self) -> None: ... method clearProcessorCache (line 867) | def clearProcessorCache(self) -> None: ... method clearSearchPaths (line 868) | def clearSearchPaths(self) -> None: ... method clearViewTransforms (line 869) | def clearViewTransforms(self) -> None: ... method clearVirtualDisplay (line 870) | def clearVirtualDisplay(self) -> None: ... method filepathOnlyMatchesDefaultRule (line 871) | def filepathOnlyMatchesDefaultRule(self, filePath: str) -> bool: ... method getActiveDisplays (line 872) | def getActiveDisplays(self) -> str: ... method getActiveViews (line 873) | def getActiveViews(self) -> str: ... method getCacheID (line 875) | def getCacheID(self) -> str: ... method getCacheID (line 877) | def getCacheID(self, context: Context) -> str: ... method getCanonicalName (line 878) | def getCanonicalName(self, name: str) -> str: ... method getColorSpace (line 879) | def getColorSpace(self, name: str) -> ColorSpace: ... method getColorSpaceFromFilepath (line 880) | def getColorSpaceFromFilepath(self, filePath: str) -> tuple: ... method getColorSpaceNames (line 882) | def getColorSpaceNames(self, searchReferenceType: SearchReferenceSpace... method getColorSpaceNames (line 884) | def getColorSpaceNames(self) -> Config.ActiveColorSpaceNameIterator: ... method getColorSpaces (line 886) | def getColorSpaces(self, category: str) -> ColorSpaceSet: ... method getColorSpaces (line 888) | def getColorSpaces(self, searchReferenceType: SearchReferenceSpaceType... method getColorSpaces (line 890) | def getColorSpaces(self) -> Config.ActiveColorSpaceIterator: ... method getConfigIOProxy (line 891) | def getConfigIOProxy(self, *args, **kwargs): ... method getCurrentContext (line 892) | def getCurrentContext(self) -> Context: ... method getDefaultDisplay (line 893) | def getDefaultDisplay(self) -> str: ... method getDefaultLumaCoefs (line 894) | def getDefaultLumaCoefs(self) -> Annotated[list[float], None]: ... method getDefaultSceneToDisplayViewTransform (line 895) | def getDefaultSceneToDisplayViewTransform(self) -> ViewTransform: ... method getDefaultView (line 897) | def getDefaultView(self, display: str) -> str: ... method getDefaultView (line 899) | def getDefaultView(self, display: str, colorSpacename: str) -> str: ... method getDefaultViewTransformName (line 900) | def getDefaultViewTransformName(self) -> str: ... method getDescription (line 901) | def getDescription(self) -> str: ... method getDisplayViewColorSpaceName (line 902) | def getDisplayViewColorSpaceName(self, display: str, view: str) -> str... method getDisplayViewDescription (line 903) | def getDisplayViewDescription(self, display: str, view: str) -> str: ... method getDisplayViewLooks (line 904) | def getDisplayViewLooks(self, display: str, view: str) -> str: ... method getDisplayViewRule (line 905) | def getDisplayViewRule(self, display: str, view: str) -> str: ... method getDisplayViewTransformName (line 906) | def getDisplayViewTransformName(self, display: str, view: str) -> str:... method getDisplays (line 907) | def getDisplays(self) -> Config.DisplayIterator: ... method getDisplaysAll (line 908) | def getDisplaysAll(self) -> Config.DisplayAllIterator: ... method getEnvironmentMode (line 909) | def getEnvironmentMode(self) -> EnvironmentMode: ... method getEnvironmentVarDefault (line 910) | def getEnvironmentVarDefault(self, name: str) -> str: ... method getEnvironmentVarNames (line 911) | def getEnvironmentVarNames(self) -> Config.EnvironmentVarNameIterator:... method getFamilySeparator (line 912) | def getFamilySeparator(self) -> str: ... method getFileRules (line 913) | def getFileRules(self) -> FileRules: ... method getInactiveColorSpaces (line 914) | def getInactiveColorSpaces(self) -> str: ... method getLook (line 915) | def getLook(self, name: str) -> Look: ... method getLookNames (line 916) | def getLookNames(self) -> Config.LookNameIterator: ... method getLooks (line 917) | def getLooks(self) -> Config.LookIterator: ... method getMajorVersion (line 918) | def getMajorVersion(self) -> int: ... method getMinorVersion (line 919) | def getMinorVersion(self) -> int: ... method getName (line 920) | def getName(self) -> str: ... method getNamedTransform (line 921) | def getNamedTransform(self, name: str) -> NamedTransform: ... method getNamedTransformNames (line 923) | def getNamedTransformNames(self, visibility: NamedTransformVisibility)... method getNamedTransformNames (line 925) | def getNamedTransformNames(self) -> Config.ActiveNamedTransformNameIte... method getNamedTransforms (line 927) | def getNamedTransforms(self, visibility: NamedTransformVisibility) -> ... method getNamedTransforms (line 929) | def getNamedTransforms(self) -> Config.ActiveNamedTransformIterator: ... method getProcessor (line 931) | def getProcessor(self, srcColorSpace: ColorSpace, dstColorSpace: Color... method getProcessor (line 933) | def getProcessor(self, context: Context, srcColorSpace: ColorSpace, ds... method getProcessor (line 935) | def getProcessor(self, srcColorSpaceName: str, dstColorSpaceName: str)... method getProcessor (line 937) | def getProcessor(self, context: Context, srcColorSpaceName: str, dstCo... method getProcessor (line 939) | def getProcessor(self, srcColorSpaceName: str, display: str, view: str... method getProcessor (line 941) | def getProcessor(self, context: Context, srcColorSpaceName: str, displ... method getProcessor (line 943) | def getProcessor(self, namedTransform: NamedTransform, direction: Tran... method getProcessor (line 945) | def getProcessor(self, context: Context, namedTransform: NamedTransfor... method getProcessor (line 947) | def getProcessor(self, namedTransformName: str, direction: TransformDi... method getProcessor (line 949) | def getProcessor(self, context: Context, namedTransformName: str, dire... method getProcessor (line 951) | def getProcessor(self, transform: Transform) -> Processor: ... method getProcessor (line 953) | def getProcessor(self, transform: Transform, direction: TransformDirec... method getProcessor (line 955) | def getProcessor(self, context: Context, transform: Transform, directi... method getRoleColorSpace (line 956) | def getRoleColorSpace(self, roleName: str) -> str: ... method getRoleNames (line 957) | def getRoleNames(self) -> Config.RoleNameIterator: ... method getRoles (line 958) | def getRoles(self) -> Config.RoleColorSpaceIterator: ... method getSearchPath (line 959) | def getSearchPath(self) -> str: ... method getSearchPaths (line 960) | def getSearchPaths(self) -> Config.SearchPathIterator: ... method getSharedViews (line 961) | def getSharedViews(self) -> Config.SharedViewIterator: ... method getViewTransform (line 962) | def getViewTransform(self, name: str) -> ViewTransform: ... method getViewTransformNames (line 963) | def getViewTransformNames(self) -> Config.ViewTransformNameIterator: ... method getViewTransforms (line 964) | def getViewTransforms(self) -> Config.ViewTransformIterator: ... method getViewingRules (line 965) | def getViewingRules(self) -> ViewingRules: ... method getViews (line 967) | def getViews(self, display: str) -> Config.ViewIterator: ... method getViews (line 969) | def getViews(self, type: ViewType, display: str) -> Config.ViewForView... method getViews (line 971) | def getViews(self, display: str, colorSpaceName: str) -> Config.ViewFo... method getVirtualDisplayViewColorSpaceName (line 972) | def getVirtualDisplayViewColorSpaceName(self, view: str) -> str: ... method getVirtualDisplayViewDescription (line 973) | def getVirtualDisplayViewDescription(self, view: str) -> str: ... method getVirtualDisplayViewLooks (line 974) | def getVirtualDisplayViewLooks(self, view: str) -> str: ... method getVirtualDisplayViewRule (line 975) | def getVirtualDisplayViewRule(self, view: str) -> str: ... method getVirtualDisplayViewTransformName (line 976) | def getVirtualDisplayViewTransformName(self, view: str) -> str: ... method getVirtualDisplayViews (line 977) | def getVirtualDisplayViews(self, display: ViewType) -> Config.VirtualV... method getWorkingDir (line 978) | def getWorkingDir(self) -> str: ... method hasRole (line 979) | def hasRole(self, role: str) -> bool: ... method instantiateDisplayFromICCProfile (line 980) | def instantiateDisplayFromICCProfile(self, ICCProfileFilepath: str) ->... method instantiateDisplayFromMonitorName (line 981) | def instantiateDisplayFromMonitorName(self, monitorName: str) -> int: ... method isArchivable (line 982) | def isArchivable(self) -> bool: ... method isColorSpaceLinear (line 983) | def isColorSpaceLinear(self, colorSpace: str, referenceSpaceType: Refe... method isColorSpaceUsed (line 984) | def isColorSpaceUsed(self, name: str) -> bool: ... method isDisplayTemporary (line 985) | def isDisplayTemporary(self, display: str) -> bool: ... method isInactiveColorSpace (line 986) | def isInactiveColorSpace(self, colorspace: str) -> bool: ... method isStrictParsingEnabled (line 987) | def isStrictParsingEnabled(self) -> bool: ... method loadEnvironment (line 988) | def loadEnvironment(self) -> None: ... method parseColorSpaceFromString (line 989) | def parseColorSpaceFromString(self, str: str) -> str: ... method removeColorSpace (line 990) | def removeColorSpace(self, name: str) -> None: ... method removeDisplayView (line 991) | def removeDisplayView(self, display: str, view: str) -> None: ... method removeSharedView (line 992) | def removeSharedView(self, view: str) -> None: ... method removeVirtualDisplayView (line 993) | def removeVirtualDisplayView(self, view: str) -> None: ... method serialize (line 995) | def serialize(self, fileName: str) -> None: ... method serialize (line 997) | def serialize(self) -> str: ... method setActiveDisplays (line 998) | def setActiveDisplays(self, displays: str) -> None: ... method setActiveViews (line 999) | def setActiveViews(self, views: str) -> None: ... method setConfigIOProxy (line 1000) | def setConfigIOProxy(self, ciop) -> None: ... method setDefaultLumaCoefs (line 1001) | def setDefaultLumaCoefs(self, rgb: Annotated[Iterable[float], None]) -... method setDefaultViewTransformName (line 1002) | def setDefaultViewTransformName(self, name: str) -> None: ... method setDescription (line 1003) | def setDescription(self, description: str) -> None: ... method setEnvironmentMode (line 1004) | def setEnvironmentMode(self, mode: EnvironmentMode) -> None: ... method setFamilySeparator (line 1005) | def setFamilySeparator(self, separator: str) -> None: ... method setFileRules (line 1006) | def setFileRules(self, fileRules: FileRules) -> None: ... method setInactiveColorSpaces (line 1007) | def setInactiveColorSpaces(self, inactiveColorSpaces: str) -> None: ... method setMajorVersion (line 1008) | def setMajorVersion(self, major: int) -> None: ... method setMinorVersion (line 1009) | def setMinorVersion(self, minor: int) -> None: ... method setName (line 1010) | def setName(self, name: str) -> None: ... method setProcessorCacheFlags (line 1011) | def setProcessorCacheFlags(self, flags: ProcessorCacheFlags) -> None: ... method setRole (line 1012) | def setRole(self, role: str, colorSpaceName: str) -> None: ... method setSearchPath (line 1013) | def setSearchPath(self, path: str) -> None: ... method setStrictParsingEnabled (line 1014) | def setStrictParsingEnabled(self, enabled: bool) -> None: ... method setVersion (line 1015) | def setVersion(self, major: int, minor: int) -> None: ... method setViewingRules (line 1016) | def setViewingRules(self, ViewingRules: ViewingRules) -> None: ... method setWorkingDir (line 1017) | def setWorkingDir(self, dirName: str) -> None: ... method upgradeToLatestVersion (line 1018) | def upgradeToLatestVersion(self) -> None: ... method validate (line 1019) | def validate(self) -> None: ... method __deepcopy__ (line 1020) | def __deepcopy__(self, memo: dict) -> Config: ... class Context (line 1022) | class Context: class SearchPathIterator (line 1023) | class SearchPathIterator: method __init__ (line 1024) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1025) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 1026) | def __iter__(self) -> Context.SearchPathIterator: ... method __len__ (line 1027) | def __len__(self) -> int: ... method __next__ (line 1028) | def __next__(self) -> str: ... class StringVarIterator (line 1030) | class StringVarIterator: method __init__ (line 1031) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1032) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 1033) | def __iter__(self) -> Context.StringVarIterator: ... method __len__ (line 1034) | def __len__(self) -> int: ... method __next__ (line 1035) | def __next__(self) -> tuple: ... class StringVarNameIterator (line 1037) | class StringVarNameIterator: method __init__ (line 1038) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1039) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 1040) | def __iter__(self) -> Context.StringVarNameIterator: ... method __len__ (line 1041) | def __len__(self) -> int: ... method __next__ (line 1042) | def __next__(self) -> str: ... method __init__ (line 1044) | def __init__(self) -> None: ... method __init__ (line 1046) | def __init__(self, workingDir: str = ..., searchPaths: Iterable[str] =... method addSearchPath (line 1047) | def addSearchPath(self, path: str) -> None: ... method clearSearchPaths (line 1048) | def clearSearchPaths(self) -> None: ... method clearStringVars (line 1049) | def clearStringVars(self) -> None: ... method getCacheID (line 1050) | def getCacheID(self) -> str: ... method getEnvironmentMode (line 1051) | def getEnvironmentMode(self) -> EnvironmentMode: ... method getSearchPath (line 1052) | def getSearchPath(self) -> str: ... method getSearchPaths (line 1053) | def getSearchPaths(self) -> Context.SearchPathIterator: ... method getStringVars (line 1054) | def getStringVars(self) -> Context.StringVarIterator: ... method getWorkingDir (line 1055) | def getWorkingDir(self) -> str: ... method loadEnvironment (line 1056) | def loadEnvironment(self) -> None: ... method resolveFileLocation (line 1058) | def resolveFileLocation(self, filename: str) -> str: ... method resolveFileLocation (line 1060) | def resolveFileLocation(self, filename: str, usedContextVars: Context)... method resolveStringVar (line 1062) | def resolveStringVar(self, string: str) -> str: ... method resolveStringVar (line 1064) | def resolveStringVar(self, string: str, usedContextVars: Context) -> s... method setEnvironmentMode (line 1065) | def setEnvironmentMode(self, mode: EnvironmentMode) -> None: ... method setSearchPath (line 1066) | def setSearchPath(self, path: str) -> None: ... method setWorkingDir (line 1067) | def setWorkingDir(self, dirName: str) -> None: ... method __contains__ (line 1068) | def __contains__(self, name: str) -> bool: ... method __deepcopy__ (line 1069) | def __deepcopy__(self, memo: dict) -> Context: ... method __getitem__ (line 1070) | def __getitem__(self, name: str) -> str: ... method __iter__ (line 1071) | def __iter__(self) -> Context.StringVarNameIterator: ... method __len__ (line 1072) | def __len__(self) -> int: ... method __setitem__ (line 1073) | def __setitem__(self, name: str, value: str) -> None: ... class DisplayViewTransform (line 1075) | class DisplayViewTransform(Transform): method __init__ (line 1077) | def __init__(self) -> None: ... method __init__ (line 1079) | def __init__(self, src: str = ..., display: str = ..., view: str = ...... method getDataBypass (line 1080) | def getDataBypass(self) -> bool: ... method getDisplay (line 1081) | def getDisplay(self) -> str: ... method getLooksBypass (line 1082) | def getLooksBypass(self) -> bool: ... method getSrc (line 1083) | def getSrc(self) -> str: ... method getView (line 1084) | def getView(self) -> str: ... method setDataBypass (line 1085) | def setDataBypass(self, dataBypass: bool) -> None: ... method setDisplay (line 1086) | def setDisplay(self, display: str) -> None: ... method setLooksBypass (line 1087) | def setLooksBypass(self, looksBypass: bool) -> None: ... method setSrc (line 1088) | def setSrc(self, src: str) -> None: ... method setView (line 1089) | def setView(self, view: str) -> None: ... class DynamicProperty (line 1091) | class DynamicProperty: method __init__ (line 1092) | def __init__(self, *args, **kwargs) -> None: ... method getDouble (line 1093) | def getDouble(self) -> float: ... method getGradingPrimary (line 1094) | def getGradingPrimary(self) -> GradingPrimary: ... method getGradingRGBCurve (line 1095) | def getGradingRGBCurve(self) -> GradingRGBCurve: ... method getGradingTone (line 1096) | def getGradingTone(self) -> GradingTone: ... method getType (line 1097) | def getType(self) -> DynamicPropertyType: ... method setDouble (line 1098) | def setDouble(self, val: float) -> None: ... method setGradingPrimary (line 1099) | def setGradingPrimary(self, val: GradingPrimary) -> None: ... method setGradingRGBCurve (line 1100) | def setGradingRGBCurve(self, val: GradingRGBCurve) -> None: ... method setGradingTone (line 1101) | def setGradingTone(self, val: GradingTone) -> None: ... class DynamicPropertyType (line 1103) | class DynamicPropertyType: method __init__ (line 1112) | def __init__(self, value: int) -> None: ... method __eq__ (line 1113) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1114) | def __hash__(self) -> int: ... method __index__ (line 1115) | def __index__(self) -> int: ... method __int__ (line 1116) | def __int__(self) -> int: ... method __ne__ (line 1117) | def __ne__(self, other: object) -> bool: ... method name (line 1119) | def name(self) -> str: ... method value (line 1121) | def value(self) -> int: ... class EnvironmentMode (line 1123) | class EnvironmentMode: method __init__ (line 1129) | def __init__(self, value: int) -> None: ... method __eq__ (line 1130) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1131) | def __hash__(self) -> int: ... method __index__ (line 1132) | def __index__(self) -> int: ... method __int__ (line 1133) | def __int__(self) -> int: ... method __ne__ (line 1134) | def __ne__(self, other: object) -> bool: ... method name (line 1136) | def name(self) -> str: ... method value (line 1138) | def value(self) -> int: ... class Exception (line 1140) | class Exception(__builtins__.Exception): ... class ExceptionMissingFile (line 1142) | class ExceptionMissingFile(Exception): ... class ExponentTransform (line 1144) | class ExponentTransform(Transform): method __init__ (line 1146) | def __init__(self) -> None: ... method __init__ (line 1148) | def __init__(self, value: Annotated[Iterable[float], None] = ..., nega... method equals (line 1149) | def equals(self, other: ExponentTransform) -> bool: ... method getFormatMetadata (line 1150) | def getFormatMetadata(self) -> FormatMetadata: ... method getNegativeStyle (line 1151) | def getNegativeStyle(self) -> NegativeStyle: ... method getValue (line 1152) | def getValue(self) -> Annotated[list[float], None]: ... method setNegativeStyle (line 1153) | def setNegativeStyle(self, style: NegativeStyle) -> None: ... method setValue (line 1154) | def setValue(self, value: Annotated[Iterable[float], None]) -> None: ... class ExponentWithLinearTransform (line 1156) | class ExponentWithLinearTransform(Transform): method __init__ (line 1158) | def __init__(self) -> None: ... method __init__ (line 1160) | def __init__(self, gamma: Annotated[Iterable[float], None] = ..., offs... method equals (line 1161) | def equals(self, other: ExponentWithLinearTransform) -> bool: ... method getFormatMetadata (line 1162) | def getFormatMetadata(self) -> FormatMetadata: ... method getGamma (line 1163) | def getGamma(self) -> Annotated[list[float], None]: ... method getNegativeStyle (line 1164) | def getNegativeStyle(self) -> NegativeStyle: ... method getOffset (line 1165) | def getOffset(self) -> Annotated[list[float], None]: ... method setGamma (line 1166) | def setGamma(self, values: Annotated[Iterable[float], None]) -> None: ... method setNegativeStyle (line 1167) | def setNegativeStyle(self, style: NegativeStyle) -> None: ... method setOffset (line 1168) | def setOffset(self, values: Annotated[Iterable[float], None]) -> None:... class ExposureContrastStyle (line 1170) | class ExposureContrastStyle: method __init__ (line 1176) | def __init__(self, value: int) -> None: ... method __eq__ (line 1177) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1178) | def __hash__(self) -> int: ... method __index__ (line 1179) | def __index__(self) -> int: ... method __int__ (line 1180) | def __int__(self) -> int: ... method __ne__ (line 1181) | def __ne__(self, other: object) -> bool: ... method name (line 1183) | def name(self) -> str: ... method value (line 1185) | def value(self) -> int: ... class ExposureContrastTransform (line 1187) | class ExposureContrastTransform(Transform): method __init__ (line 1189) | def __init__(self) -> None: ... method __init__ (line 1191) | def __init__(self, style: ExposureContrastStyle = ..., exposure: float... method equals (line 1192) | def equals(self, other: ExposureContrastTransform) -> bool: ... method getContrast (line 1193) | def getContrast(self) -> float: ... method getExposure (line 1194) | def getExposure(self) -> float: ... method getFormatMetadata (line 1195) | def getFormatMetadata(self) -> FormatMetadata: ... method getGamma (line 1196) | def getGamma(self) -> float: ... method getLogExposureStep (line 1197) | def getLogExposureStep(self) -> float: ... method getLogMidGray (line 1198) | def getLogMidGray(self) -> float: ... method getPivot (line 1199) | def getPivot(self) -> float: ... method getStyle (line 1200) | def getStyle(self) -> ExposureContrastStyle: ... method isContrastDynamic (line 1201) | def isContrastDynamic(self) -> bool: ... method isExposureDynamic (line 1202) | def isExposureDynamic(self) -> bool: ... method isGammaDynamic (line 1203) | def isGammaDynamic(self) -> bool: ... method makeContrastDynamic (line 1204) | def makeContrastDynamic(self) -> None: ... method makeContrastNonDynamic (line 1205) | def makeContrastNonDynamic(self) -> None: ... method makeExposureDynamic (line 1206) | def makeExposureDynamic(self) -> None: ... method makeExposureNonDynamic (line 1207) | def makeExposureNonDynamic(self) -> None: ... method makeGammaDynamic (line 1208) | def makeGammaDynamic(self) -> None: ... method makeGammaNonDynamic (line 1209) | def makeGammaNonDynamic(self) -> None: ... method setContrast (line 1210) | def setContrast(self, contrast: float) -> None: ... method setExposure (line 1211) | def setExposure(self, exposure: float) -> None: ... method setGamma (line 1212) | def setGamma(self, gamma: float) -> None: ... method setLogExposureStep (line 1213) | def setLogExposureStep(self, logExposureStep: float) -> None: ... method setLogMidGray (line 1214) | def setLogMidGray(self, logMidGray: float) -> None: ... method setPivot (line 1215) | def setPivot(self, pivot: float) -> None: ... method setStyle (line 1216) | def setStyle(self, style: ExposureContrastStyle) -> None: ... class FileRules (line 1218) | class FileRules: method __init__ (line 1219) | def __init__(self) -> None: ... method decreaseRulePriority (line 1220) | def decreaseRulePriority(self, ruleIndex: int) -> None: ... method getColorSpace (line 1221) | def getColorSpace(self, ruleIndex: int) -> str: ... method getCustomKeyName (line 1222) | def getCustomKeyName(self, ruleIndex: int, key: int) -> str: ... method getCustomKeyValue (line 1223) | def getCustomKeyValue(self, ruleIndex: int, key: int) -> str: ... method getExtension (line 1224) | def getExtension(self, ruleIndex: int) -> str: ... method getIndexForRule (line 1225) | def getIndexForRule(self, ruleName: str) -> int: ... method getName (line 1226) | def getName(self, ruleIndex: int) -> str: ... method getNumCustomKeys (line 1227) | def getNumCustomKeys(self, ruleIndex: int) -> int: ... method getNumEntries (line 1228) | def getNumEntries(self) -> int: ... method getPattern (line 1229) | def getPattern(self, ruleIndex: int) -> str: ... method getRegex (line 1230) | def getRegex(self, ruleIndex: int) -> str: ... method increaseRulePriority (line 1231) | def increaseRulePriority(self, ruleIndex: int) -> None: ... method insertPathSearchRule (line 1232) | def insertPathSearchRule(self, ruleIndex: int) -> None: ... method insertRule (line 1234) | def insertRule(self, ruleIndex: int, name: str, colorSpace: str, patte... method insertRule (line 1236) | def insertRule(self, ruleIndex: int, name: str, colorSpace: str, regex... method isDefault (line 1237) | def isDefault(self) -> bool: ... method removeRule (line 1238) | def removeRule(self, ruleIndex: int) -> None: ... method setColorSpace (line 1239) | def setColorSpace(self, ruleIndex: int, colorSpace: str) -> None: ... method setCustomKey (line 1240) | def setCustomKey(self, ruleIndex: int, key: str, value: str) -> None: ... method setDefaultRuleColorSpace (line 1241) | def setDefaultRuleColorSpace(self, colorSpace: str) -> None: ... method setExtension (line 1242) | def setExtension(self, ruleIndex: int, extension: str) -> None: ... method setPattern (line 1243) | def setPattern(self, ruleIndex: int, pattern: str) -> None: ... method setRegex (line 1244) | def setRegex(self, ruleIndex: int, regex: str) -> None: ... method __deepcopy__ (line 1245) | def __deepcopy__(self, memo: dict) -> FileRules: ... class FileTransform (line 1247) | class FileTransform(Transform): class FormatIterator (line 1248) | class FormatIterator: method __init__ (line 1249) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1250) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 1251) | def __iter__(self) -> FileTransform.FormatIterator: ... method __len__ (line 1252) | def __len__(self) -> int: ... method __next__ (line 1253) | def __next__(self) -> tuple: ... method __init__ (line 1255) | def __init__(self) -> None: ... method __init__ (line 1257) | def __init__(self, src: str = ..., cccId: str = ..., interpolation: In... method IsFormatExtensionSupported (line 1259) | def IsFormatExtensionSupported(extension: str) -> bool: ... method getCCCId (line 1260) | def getCCCId(self) -> str: ... method getCDLStyle (line 1261) | def getCDLStyle(self) -> CDLStyle: ... method getFormats (line 1263) | def getFormats() -> FileTransform.FormatIterator: ... method getInterpolation (line 1264) | def getInterpolation(self) -> Interpolation: ... method getSrc (line 1265) | def getSrc(self) -> str: ... method setCCCId (line 1266) | def setCCCId(self, cccId: str) -> None: ... method setCDLStyle (line 1267) | def setCDLStyle(self, style: CDLStyle) -> None: ... method setInterpolation (line 1268) | def setInterpolation(self, interpolation: Interpolation) -> None: ... method setSrc (line 1269) | def setSrc(self, src: str) -> None: ... class FixedFunctionStyle (line 1271) | class FixedFunctionStyle: method __init__ (line 1294) | def __init__(self, value: int) -> None: ... method __eq__ (line 1295) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1296) | def __hash__(self) -> int: ... method __index__ (line 1297) | def __index__(self) -> int: ... method __int__ (line 1298) | def __int__(self) -> int: ... method __ne__ (line 1299) | def __ne__(self, other: object) -> bool: ... method name (line 1301) | def name(self) -> str: ... method value (line 1303) | def value(self) -> int: ... class FixedFunctionTransform (line 1305) | class FixedFunctionTransform(Transform): method __init__ (line 1306) | def __init__(self, style: FixedFunctionStyle, params: Iterable[float] ... method equals (line 1307) | def equals(self, other: FixedFunctionTransform) -> bool: ... method getFormatMetadata (line 1308) | def getFormatMetadata(self) -> FormatMetadata: ... method getParams (line 1309) | def getParams(self) -> list[float]: ... method getStyle (line 1310) | def getStyle(self) -> FixedFunctionStyle: ... method setParams (line 1311) | def setParams(self, params: Iterable[float]) -> None: ... method setStyle (line 1312) | def setStyle(self, style: FixedFunctionStyle) -> None: ... class FormatMetadata (line 1314) | class FormatMetadata: class AttributeIterator (line 1315) | class AttributeIterator: method __init__ (line 1316) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1317) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 1318) | def __iter__(self) -> FormatMetadata.AttributeIterator: ... method __len__ (line 1319) | def __len__(self) -> int: ... method __next__ (line 1320) | def __next__(self) -> tuple: ... class AttributeNameIterator (line 1322) | class AttributeNameIterator: method __init__ (line 1323) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1324) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 1325) | def __iter__(self) -> FormatMetadata.AttributeNameIterator: ... method __len__ (line 1326) | def __len__(self) -> int: ... method __next__ (line 1327) | def __next__(self) -> str: ... class ChildElementIterator (line 1329) | class ChildElementIterator: method __init__ (line 1330) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1331) | def __getitem__(self, arg0: int, /) -> FormatMetadata: ... method __iter__ (line 1332) | def __iter__(self) -> FormatMetadata.ChildElementIterator: ... method __len__ (line 1333) | def __len__(self) -> int: ... method __next__ (line 1334) | def __next__(self) -> FormatMetadata: ... class ConstChildElementIterator (line 1336) | class ConstChildElementIterator: method __init__ (line 1337) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1338) | def __getitem__(self, arg0: int, /) -> FormatMetadata: ... method __iter__ (line 1339) | def __iter__(self) -> FormatMetadata.ConstChildElementIterator: ... method __len__ (line 1340) | def __len__(self) -> int: ... method __next__ (line 1341) | def __next__(self) -> FormatMetadata: ... method __init__ (line 1342) | def __init__(self, *args, **kwargs) -> None: ... method addChildElement (line 1343) | def addChildElement(self, name: str, value: str) -> None: ... method clear (line 1344) | def clear(self) -> None: ... method getAttributes (line 1345) | def getAttributes(self) -> FormatMetadata.AttributeIterator: ... method getChildElements (line 1346) | def getChildElements(self) -> FormatMetadata.ChildElementIterator: ... method getElementName (line 1347) | def getElementName(self) -> str: ... method getElementValue (line 1348) | def getElementValue(self) -> str: ... method getID (line 1349) | def getID(self) -> str: ... method getName (line 1350) | def getName(self) -> str: ... method setElementName (line 1351) | def setElementName(self, name: str) -> None: ... method setElementValue (line 1352) | def setElementValue(self, value: str) -> None: ... method setID (line 1353) | def setID(self, id: str) -> None: ... method setName (line 1354) | def setName(self, name: str) -> None: ... method __contains__ (line 1355) | def __contains__(self, name: str) -> bool: ... method __getitem__ (line 1356) | def __getitem__(self, name: str) -> str: ... method __iter__ (line 1357) | def __iter__(self) -> FormatMetadata.AttributeNameIterator: ... method __len__ (line 1358) | def __len__(self) -> int: ... method __setitem__ (line 1359) | def __setitem__(self, name: str, value: str) -> None: ... class GPUProcessor (line 1361) | class GPUProcessor: method __init__ (line 1362) | def __init__(self, *args, **kwargs) -> None: ... method extractGpuShaderInfo (line 1363) | def extractGpuShaderInfo(self, shaderDesc: GpuShaderDesc) -> None: ... method getCacheID (line 1364) | def getCacheID(self) -> str: ... method hasChannelCrosstalk (line 1365) | def hasChannelCrosstalk(self) -> bool: ... method isNoOp (line 1366) | def isNoOp(self) -> bool: ... class GpuLanguage (line 1368) | class GpuLanguage: method __init__ (line 1380) | def __init__(self, value: int) -> None: ... method __eq__ (line 1381) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1382) | def __hash__(self) -> int: ... method __index__ (line 1383) | def __index__(self) -> int: ... method __int__ (line 1384) | def __int__(self) -> int: ... method __ne__ (line 1385) | def __ne__(self, other: object) -> bool: ... method name (line 1387) | def name(self) -> str: ... method value (line 1389) | def value(self) -> int: ... class GpuShaderCreator (line 1391) | class GpuShaderCreator: class DynamicPropertyIterator (line 1392) | class DynamicPropertyIterator: method __init__ (line 1393) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1394) | def __getitem__(self, arg0: int, /) -> DynamicProperty: ... method __iter__ (line 1395) | def __iter__(self) -> GpuShaderCreator.DynamicPropertyIterator: ... method __len__ (line 1396) | def __len__(self) -> int: ... method __next__ (line 1397) | def __next__(self) -> DynamicProperty: ... class TextureDimensions (line 1399) | class TextureDimensions: method __init__ (line 1404) | def __init__(self, value: int) -> None: ... method __eq__ (line 1405) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1406) | def __hash__(self) -> int: ... method __index__ (line 1407) | def __index__(self) -> int: ... method __int__ (line 1408) | def __int__(self) -> int: ... method __ne__ (line 1409) | def __ne__(self, other: object) -> bool: ... method name (line 1411) | def name(self) -> str: ... method value (line 1413) | def value(self) -> int: ... class TextureType (line 1415) | class TextureType: method __init__ (line 1420) | def __init__(self, value: int) -> None: ... method __eq__ (line 1421) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1422) | def __hash__(self) -> int: ... method __index__ (line 1423) | def __index__(self) -> int: ... method __int__ (line 1424) | def __int__(self) -> int: ... method __ne__ (line 1425) | def __ne__(self, other: object) -> bool: ... method name (line 1427) | def name(self) -> str: ... method value (line 1429) | def value(self) -> int: ... method __init__ (line 1434) | def __init__(self, *args, **kwargs) -> None: ... method addToDeclareShaderCode (line 1435) | def addToDeclareShaderCode(self, shaderCode: str) -> None: ... method addToFunctionFooterShaderCode (line 1436) | def addToFunctionFooterShaderCode(self, shaderCode: str) -> None: ... method addToFunctionHeaderShaderCode (line 1437) | def addToFunctionHeaderShaderCode(self, shaderCode: str) -> None: ... method addToFunctionShaderCode (line 1438) | def addToFunctionShaderCode(self, shaderCode: str) -> None: ... method addToHelperShaderCode (line 1439) | def addToHelperShaderCode(self, shaderCode: str) -> None: ... method begin (line 1440) | def begin(self, uid: str) -> None: ... method clone (line 1441) | def clone(self) -> GpuShaderCreator: ... method createShaderText (line 1442) | def createShaderText(self, shaderDeclarations: str, shaderHelperMethod... method end (line 1443) | def end(self) -> None: ... method finalize (line 1444) | def finalize(self) -> None: ... method getAllowTexture1D (line 1445) | def getAllowTexture1D(self) -> bool: ... method getCacheID (line 1446) | def getCacheID(self) -> str: ... method getDynamicProperties (line 1447) | def getDynamicProperties(self) -> GpuShaderCreator.DynamicPropertyIter... method getDynamicProperty (line 1448) | def getDynamicProperty(self, type: DynamicPropertyType) -> DynamicProp... method getFunctionName (line 1449) | def getFunctionName(self) -> str: ... method getLanguage (line 1450) | def getLanguage(self) -> GpuLanguage: ... method getNextResourceIndex (line 1451) | def getNextResourceIndex(self) -> int: ... method getPixelName (line 1452) | def getPixelName(self) -> str: ... method getResourcePrefix (line 1453) | def getResourcePrefix(self) -> str: ... method getTextureMaxWidth (line 1454) | def getTextureMaxWidth(self) -> int: ... method getUniqueID (line 1455) | def getUniqueID(self) -> str: ... method hasDynamicProperty (line 1456) | def hasDynamicProperty(self, type: DynamicPropertyType) -> bool: ... method setAllowTexture1D (line 1457) | def setAllowTexture1D(self, allowed: bool) -> None: ... method setFunctionName (line 1458) | def setFunctionName(self, name: str) -> None: ... method setLanguage (line 1459) | def setLanguage(self, language: GpuLanguage) -> None: ... method setPixelName (line 1460) | def setPixelName(self, name: str) -> None: ... method setResourcePrefix (line 1461) | def setResourcePrefix(self, prefix: str) -> None: ... method setTextureMaxWidth (line 1462) | def setTextureMaxWidth(self, maxWidth: int) -> None: ... method setUniqueID (line 1463) | def setUniqueID(self, uid: str) -> None: ... class GpuShaderDesc (line 1465) | class GpuShaderDesc(GpuShaderCreator): class Texture (line 1466) | class Texture: method __init__ (line 1467) | def __init__(self, *args, **kwargs) -> None: ... method getValues (line 1468) | def getValues(self) -> numpy.ndarray: ... method channel (line 1470) | def channel(self) -> GpuShaderCreator.TextureType: ... method dimensions (line 1472) | def dimensions(self) -> GpuShaderCreator.TextureDimensions: ... method height (line 1474) | def height(self) -> int: ... method interpolation (line 1476) | def interpolation(self) -> Interpolation: ... method samplerName (line 1478) | def samplerName(self) -> str: ... method textureName (line 1480) | def textureName(self) -> str: ... method width (line 1482) | def width(self) -> int: ... class Texture3D (line 1484) | class Texture3D: method __init__ (line 1485) | def __init__(self, *args, **kwargs) -> None: ... method getValues (line 1486) | def getValues(self) -> numpy.ndarray: ... method edgeLen (line 1488) | def edgeLen(self) -> int: ... method interpolation (line 1490) | def interpolation(self) -> Interpolation: ... method samplerName (line 1492) | def samplerName(self) -> str: ... method textureName (line 1494) | def textureName(self) -> str: ... class Texture3DIterator (line 1496) | class Texture3DIterator: method __init__ (line 1497) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1498) | def __getitem__(self, arg0: int, /) -> GpuShaderDesc.Texture3D: ... method __iter__ (line 1499) | def __iter__(self) -> GpuShaderDesc.Texture3DIterator: ... method __len__ (line 1500) | def __len__(self) -> int: ... method __next__ (line 1501) | def __next__(self) -> GpuShaderDesc.Texture3D: ... class TextureIterator (line 1503) | class TextureIterator: method __init__ (line 1504) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1505) | def __getitem__(self, arg0: int, /) -> GpuShaderDesc.Texture: ... method __iter__ (line 1506) | def __iter__(self) -> GpuShaderDesc.TextureIterator: ... method __len__ (line 1507) | def __len__(self) -> int: ... method __next__ (line 1508) | def __next__(self) -> GpuShaderDesc.Texture: ... class UniformData (line 1510) | class UniformData: method __init__ (line 1513) | def __init__(self) -> None: ... method __init__ (line 1515) | def __init__(self, data: GpuShaderDesc.UniformData) -> None: ... method getBool (line 1516) | def getBool(self) -> bool: ... method getDouble (line 1517) | def getDouble(self) -> float: ... method getFloat3 (line 1518) | def getFloat3(self) -> Annotated[list[float], None]: ... method getVectorFloat (line 1519) | def getVectorFloat(self) -> numpy.ndarray: ... method getVectorInt (line 1520) | def getVectorInt(self) -> numpy.ndarray: ... class UniformIterator (line 1522) | class UniformIterator: method __init__ (line 1523) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1524) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 1525) | def __iter__(self) -> GpuShaderDesc.UniformIterator: ... method __len__ (line 1526) | def __len__(self) -> int: ... method __next__ (line 1527) | def __next__(self) -> tuple: ... method __init__ (line 1528) | def __init__(self, *args, **kwargs) -> None: ... method CreateShaderDesc (line 1530) | def CreateShaderDesc(language: GpuLanguage = ..., functionName: str = ... method add3DTexture (line 1531) | def add3DTexture(self, textureName: str, samplerName: str, edgeLen: in... method addTexture (line 1532) | def addTexture(self, textureName: str, samplerName: str, width: int, h... method clone (line 1533) | def clone(self) -> GpuShaderCreator: ... method get3DTextures (line 1534) | def get3DTextures(self) -> GpuShaderDesc.Texture3DIterator: ... method getShaderText (line 1535) | def getShaderText(self) -> str: ... method getTextures (line 1536) | def getTextures(self) -> GpuShaderDesc.TextureIterator: ... method getUniforms (line 1537) | def getUniforms(self) -> GpuShaderDesc.UniformIterator: ... class GradingBSplineCurve (line 1539) | class GradingBSplineCurve: class GradingControlPointIterator (line 1540) | class GradingControlPointIterator: method __init__ (line 1541) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1542) | def __getitem__(self, arg0: int, /) -> GradingControlPoint: ... method __iter__ (line 1543) | def __iter__(self) -> GradingBSplineCurve.GradingControlPointIterato... method __len__ (line 1544) | def __len__(self) -> int: ... method __next__ (line 1545) | def __next__(self) -> GradingControlPoint: ... method __setitem__ (line 1546) | def __setitem__(self, arg0: int, arg1: GradingControlPoint, /) -> No... method __init__ (line 1548) | def __init__(self, size: int) -> None: ... method __init__ (line 1550) | def __init__(self, arg0: Iterable[float], /) -> None: ... method getControlPoints (line 1551) | def getControlPoints(self) -> GradingBSplineCurve.GradingControlPointI... method setNumControlPoints (line 1552) | def setNumControlPoints(self, size: int) -> None: ... method validate (line 1553) | def validate(self) -> None: ... method __eq__ (line 1554) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1555) | def __ne__(self, other: object) -> bool: ... class GradingControlPoint (line 1557) | class GradingControlPoint: method __init__ (line 1561) | def __init__(self) -> None: ... method __init__ (line 1563) | def __init__(self, x: float = ..., y: float = ...) -> None: ... method __eq__ (line 1564) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1565) | def __ne__(self, other: object) -> bool: ... class GradingPrimary (line 1567) | class GradingPrimary: method __init__ (line 1583) | def __init__(self, arg0: GradingStyle, /) -> None: ... method validate (line 1584) | def validate(self, arg0: GradingStyle, /) -> None: ... method __eq__ (line 1585) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1586) | def __ne__(self, other: object) -> bool: ... class GradingPrimaryTransform (line 1588) | class GradingPrimaryTransform(Transform): method __init__ (line 1590) | def __init__(self, values: GradingPrimary, style: GradingStyle = ..., ... method __init__ (line 1592) | def __init__(self, style: GradingStyle = ..., dynamic: bool = ..., dir... method getFormatMetadata (line 1593) | def getFormatMetadata(self) -> FormatMetadata: ... method getStyle (line 1594) | def getStyle(self) -> GradingStyle: ... method getValue (line 1595) | def getValue(self) -> GradingPrimary: ... method isDynamic (line 1596) | def isDynamic(self) -> bool: ... method makeDynamic (line 1597) | def makeDynamic(self) -> None: ... method makeNonDynamic (line 1598) | def makeNonDynamic(self) -> None: ... method setStyle (line 1599) | def setStyle(self, style: GradingStyle) -> None: ... method setValue (line 1600) | def setValue(self, values: GradingPrimary) -> None: ... class GradingRGBCurve (line 1602) | class GradingRGBCurve: method __init__ (line 1608) | def __init__(self, style: GradingStyle) -> None: ... method __init__ (line 1610) | def __init__(self, red: GradingBSplineCurve = ..., green: GradingBSpli... method __eq__ (line 1611) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1612) | def __ne__(self, other: object) -> bool: ... class GradingRGBCurveTransform (line 1614) | class GradingRGBCurveTransform(Transform): method __init__ (line 1616) | def __init__(self, values: GradingRGBCurve, style: GradingStyle = ...,... method __init__ (line 1618) | def __init__(self, style: GradingStyle = ..., dynamic: bool = ..., dir... method getBypassLinToLog (line 1619) | def getBypassLinToLog(self) -> bool: ... method getFormatMetadata (line 1620) | def getFormatMetadata(self) -> FormatMetadata: ... method getSlope (line 1621) | def getSlope(self, channel: RGBCurveType, index: int) -> float: ... method getStyle (line 1622) | def getStyle(self) -> GradingStyle: ... method getValue (line 1623) | def getValue(self) -> GradingRGBCurve: ... method isDynamic (line 1624) | def isDynamic(self) -> bool: ... method makeDynamic (line 1625) | def makeDynamic(self) -> None: ... method makeNonDynamic (line 1626) | def makeNonDynamic(self) -> None: ... method setBypassLinToLog (line 1627) | def setBypassLinToLog(self, bypass: bool) -> None: ... method setSlope (line 1628) | def setSlope(self, channel: RGBCurveType, index: int, slope: float) ->... method setStyle (line 1629) | def setStyle(self, style: GradingStyle) -> None: ... method setValue (line 1630) | def setValue(self, values: GradingRGBCurve) -> None: ... method slopesAreDefault (line 1631) | def slopesAreDefault(self, channel: RGBCurveType) -> bool: ... class GradingRGBM (line 1633) | class GradingRGBM: method __init__ (line 1639) | def __init__(self) -> None: ... method __init__ (line 1641) | def __init__(self, red: float, green: float, blue: float, master: floa... method __eq__ (line 1642) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1643) | def __ne__(self, other: object) -> bool: ... class GradingRGBMSW (line 1645) | class GradingRGBMSW: method __init__ (line 1653) | def __init__(self) -> None: ... method __init__ (line 1655) | def __init__(self, red: float, green: float, blue: float, master: floa... method __init__ (line 1657) | def __init__(self, start: float, width: float) -> None: ... method __eq__ (line 1658) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1659) | def __ne__(self, other: object) -> bool: ... class GradingStyle (line 1661) | class GradingStyle: method __init__ (line 1667) | def __init__(self, value: int) -> None: ... method __eq__ (line 1668) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1669) | def __hash__(self) -> int: ... method __index__ (line 1670) | def __index__(self) -> int: ... method __int__ (line 1671) | def __int__(self) -> int: ... method __ne__ (line 1672) | def __ne__(self, other: object) -> bool: ... method name (line 1674) | def name(self) -> str: ... method value (line 1676) | def value(self) -> int: ... class GradingTone (line 1678) | class GradingTone: method __init__ (line 1685) | def __init__(self, arg0: GradingStyle, /) -> None: ... method validate (line 1686) | def validate(self) -> None: ... method __eq__ (line 1687) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1688) | def __ne__(self, other: object) -> bool: ... class GradingToneTransform (line 1690) | class GradingToneTransform(Transform): method __init__ (line 1692) | def __init__(self, values: GradingTone, style: GradingStyle = ..., dyn... method __init__ (line 1694) | def __init__(self, style: GradingStyle = ..., dynamic: bool = ..., dir... method getFormatMetadata (line 1695) | def getFormatMetadata(self) -> FormatMetadata: ... method getStyle (line 1696) | def getStyle(self) -> GradingStyle: ... method getValue (line 1697) | def getValue(self) -> GradingTone: ... method isDynamic (line 1698) | def isDynamic(self) -> bool: ... method makeDynamic (line 1699) | def makeDynamic(self) -> None: ... method makeNonDynamic (line 1700) | def makeNonDynamic(self) -> None: ... method setStyle (line 1701) | def setStyle(self, style: GradingStyle) -> None: ... method setValue (line 1702) | def setValue(self, values: GradingTone) -> None: ... class GroupTransform (line 1704) | class GroupTransform(Transform): class TransformIterator (line 1705) | class TransformIterator: method __init__ (line 1706) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1707) | def __getitem__(self, arg0: int, /) -> Transform: ... method __iter__ (line 1708) | def __iter__(self) -> GroupTransform.TransformIterator: ... method __len__ (line 1709) | def __len__(self) -> int: ... method __next__ (line 1710) | def __next__(self) -> Transform: ... class WriteFormatIterator (line 1712) | class WriteFormatIterator: method __init__ (line 1713) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1714) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 1715) | def __iter__(self) -> GroupTransform.WriteFormatIterator: ... method __len__ (line 1716) | def __len__(self) -> int: ... method __next__ (line 1717) | def __next__(self) -> tuple: ... method __init__ (line 1719) | def __init__(self) -> None: ... method __init__ (line 1721) | def __init__(self, transforms: Iterable[Transform] = ..., direction: T... method GetWriteFormats (line 1723) | def GetWriteFormats() -> GroupTransform.WriteFormatIterator: ... method appendTransform (line 1724) | def appendTransform(self, transform: Transform) -> None: ... method getFormatMetadata (line 1725) | def getFormatMetadata(self) -> FormatMetadata: ... method prependTransform (line 1726) | def prependTransform(self, transform: Transform) -> None: ... method write (line 1728) | def write(self, formatName: str, fileName: str, config: Config = ...) ... method write (line 1730) | def write(self, formatName: str, config: Config = ...) -> str: ... method __getitem__ (line 1731) | def __getitem__(self, index: int) -> Transform: ... method __iter__ (line 1732) | def __iter__(self) -> GroupTransform.TransformIterator: ... method __len__ (line 1733) | def __len__(self) -> int: ... class ImageDesc (line 1735) | class ImageDesc: method __init__ (line 1736) | def __init__(self) -> None: ... method getBitDepth (line 1737) | def getBitDepth(self) -> BitDepth: ... method getHeight (line 1738) | def getHeight(self) -> int: ... method getWidth (line 1739) | def getWidth(self) -> int: ... method getXStrideBytes (line 1740) | def getXStrideBytes(self) -> int: ... method getYStrideBytes (line 1741) | def getYStrideBytes(self) -> int: ... method isFloat (line 1742) | def isFloat(self) -> bool: ... method isRGBAPacked (line 1743) | def isRGBAPacked(self) -> bool: ... class Interpolation (line 1745) | class Interpolation: method __init__ (line 1755) | def __init__(self, value: int) -> None: ... method __eq__ (line 1756) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1757) | def __hash__(self) -> int: ... method __index__ (line 1758) | def __index__(self) -> int: ... method __int__ (line 1759) | def __int__(self) -> int: ... method __ne__ (line 1760) | def __ne__(self, other: object) -> bool: ... method name (line 1762) | def name(self) -> str: ... method value (line 1764) | def value(self) -> int: ... class LegacyViewingPipeline (line 1766) | class LegacyViewingPipeline: method __init__ (line 1767) | def __init__(self) -> None: ... method getChannelView (line 1768) | def getChannelView(self) -> Transform: ... method getColorTimingCC (line 1769) | def getColorTimingCC(self) -> Transform: ... method getDisplayCC (line 1770) | def getDisplayCC(self) -> Transform: ... method getDisplayViewTransform (line 1771) | def getDisplayViewTransform(self) -> DisplayViewTransform: ... method getLinearCC (line 1772) | def getLinearCC(self) -> Transform: ... method getLooksOverride (line 1773) | def getLooksOverride(self) -> str: ... method getLooksOverrideEnabled (line 1774) | def getLooksOverrideEnabled(self) -> bool: ... method getProcessor (line 1775) | def getProcessor(self, config: Config, context: Context = ...) -> Proc... method setChannelView (line 1776) | def setChannelView(self, arg0: Transform, /) -> None: ... method setColorTimingCC (line 1777) | def setColorTimingCC(self, arg0: Transform, /) -> None: ... method setDisplayCC (line 1778) | def setDisplayCC(self, arg0: Transform, /) -> None: ... method setDisplayViewTransform (line 1779) | def setDisplayViewTransform(self, arg0: DisplayViewTransform, /) -> No... method setLinearCC (line 1780) | def setLinearCC(self, arg0: Transform, /) -> None: ... method setLooksOverride (line 1781) | def setLooksOverride(self, looks: str) -> None: ... method setLooksOverrideEnabled (line 1782) | def setLooksOverrideEnabled(self, arg0: bool, /) -> None: ... class LogAffineTransform (line 1784) | class LogAffineTransform(Transform): method __init__ (line 1786) | def __init__(self) -> None: ... method __init__ (line 1788) | def __init__(self, logSideSlope: Annotated[Iterable[float], None] = ..... method equals (line 1789) | def equals(self, other: LogAffineTransform) -> bool: ... method getBase (line 1790) | def getBase(self) -> float: ... method getFormatMetadata (line 1791) | def getFormatMetadata(self) -> FormatMetadata: ... method getLinSideOffsetValue (line 1792) | def getLinSideOffsetValue(self) -> Annotated[list[float], None]: ... method getLinSideSlopeValue (line 1793) | def getLinSideSlopeValue(self) -> Annotated[list[float], None]: ... method getLogSideOffsetValue (line 1794) | def getLogSideOffsetValue(self) -> Annotated[list[float], None]: ... method getLogSideSlopeValue (line 1795) | def getLogSideSlopeValue(self) -> Annotated[list[float], None]: ... method setBase (line 1796) | def setBase(self, base: float) -> None: ... method setLinSideOffsetValue (line 1797) | def setLinSideOffsetValue(self, values: Annotated[Iterable[float], Non... method setLinSideSlopeValue (line 1798) | def setLinSideSlopeValue(self, values: Annotated[Iterable[float], None... method setLogSideOffsetValue (line 1799) | def setLogSideOffsetValue(self, values: Annotated[Iterable[float], Non... method setLogSideSlopeValue (line 1800) | def setLogSideSlopeValue(self, values: Annotated[Iterable[float], None... class LogCameraTransform (line 1802) | class LogCameraTransform(Transform): method __init__ (line 1803) | def __init__(self, linSideBreak: Annotated[Iterable[float], None], bas... method equals (line 1804) | def equals(self, other: LogCameraTransform) -> bool: ... method getBase (line 1805) | def getBase(self) -> float: ... method getFormatMetadata (line 1806) | def getFormatMetadata(self) -> FormatMetadata: ... method getLinSideBreakValue (line 1807) | def getLinSideBreakValue(self) -> Annotated[list[float], None]: ... method getLinSideOffsetValue (line 1808) | def getLinSideOffsetValue(self) -> Annotated[list[float], None]: ... method getLinSideSlopeValue (line 1809) | def getLinSideSlopeValue(self) -> Annotated[list[float], None]: ... method getLinearSlopeValue (line 1810) | def getLinearSlopeValue(self) -> Annotated[list[float], None]: ... method getLogSideOffsetValue (line 1811) | def getLogSideOffsetValue(self) -> Annotated[list[float], None]: ... method getLogSideSlopeValue (line 1812) | def getLogSideSlopeValue(self) -> Annotated[list[float], None]: ... method isLinearSlopeValueSet (line 1813) | def isLinearSlopeValueSet(self) -> bool: ... method setBase (line 1814) | def setBase(self, base: float) -> None: ... method setLinSideBreakValue (line 1815) | def setLinSideBreakValue(self, values: Annotated[Iterable[float], None... method setLinSideOffsetValue (line 1816) | def setLinSideOffsetValue(self, values: Annotated[Iterable[float], Non... method setLinSideSlopeValue (line 1817) | def setLinSideSlopeValue(self, values: Annotated[Iterable[float], None... method setLinearSlopeValue (line 1818) | def setLinearSlopeValue(self, values: Annotated[Iterable[float], None]... method setLogSideOffsetValue (line 1819) | def setLogSideOffsetValue(self, values: Annotated[Iterable[float], Non... method setLogSideSlopeValue (line 1820) | def setLogSideSlopeValue(self, values: Annotated[Iterable[float], None... method unsetLinearSlopeValue (line 1821) | def unsetLinearSlopeValue(self) -> None: ... class LogTransform (line 1823) | class LogTransform(Transform): method __init__ (line 1825) | def __init__(self) -> None: ... method __init__ (line 1827) | def __init__(self, base: float = ..., direction: TransformDirection = ... method equals (line 1828) | def equals(self, other: LogTransform) -> bool: ... method getBase (line 1829) | def getBase(self) -> float: ... method getFormatMetadata (line 1830) | def getFormatMetadata(self) -> FormatMetadata: ... method setBase (line 1831) | def setBase(self, base: float) -> None: ... class LoggingLevel (line 1833) | class LoggingLevel: method __init__ (line 1841) | def __init__(self, value: int) -> None: ... method __and__ (line 1842) | def __and__(self, other: object) -> object: ... method __eq__ (line 1843) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1844) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1845) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1846) | def __hash__(self) -> int: ... method __index__ (line 1847) | def __index__(self) -> int: ... method __int__ (line 1848) | def __int__(self) -> int: ... method __invert__ (line 1849) | def __invert__(self) -> object: ... method __le__ (line 1850) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1851) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1852) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1853) | def __or__(self, other: object) -> object: ... method __rand__ (line 1854) | def __rand__(self, other: object) -> object: ... method __ror__ (line 1855) | def __ror__(self, other: object) -> object: ... method __rxor__ (line 1856) | def __rxor__(self, other: object) -> object: ... method __xor__ (line 1857) | def __xor__(self, other: object) -> object: ... method name (line 1859) | def name(self) -> str: ... method value (line 1861) | def value(self) -> int: ... class Look (line 1863) | class Look: method __init__ (line 1865) | def __init__(self) -> None: ... method __init__ (line 1867) | def __init__(self, name: str = ..., processSpace: str = ..., transform... method getDescription (line 1868) | def getDescription(self) -> str: ... method getInverseTransform (line 1869) | def getInverseTransform(self) -> Transform: ... method getName (line 1870) | def getName(self) -> str: ... method getProcessSpace (line 1871) | def getProcessSpace(self) -> str: ... method getTransform (line 1872) | def getTransform(self) -> Transform: ... method setDescription (line 1873) | def setDescription(self, description: str) -> None: ... method setInverseTransform (line 1874) | def setInverseTransform(self, transform: Transform) -> None: ... method setName (line 1875) | def setName(self, name: str) -> None: ... method setProcessSpace (line 1876) | def setProcessSpace(self, processSpace: str) -> None: ... method setTransform (line 1877) | def setTransform(self, transform: Transform) -> None: ... method __deepcopy__ (line 1878) | def __deepcopy__(self, memo: dict) -> Look: ... class LookTransform (line 1880) | class LookTransform(Transform): method __init__ (line 1882) | def __init__(self) -> None: ... method __init__ (line 1884) | def __init__(self, src: str, dst: str, looks: str = ..., skipColorSpac... method getDst (line 1885) | def getDst(self) -> str: ... method getLooks (line 1886) | def getLooks(self) -> str: ... method getSkipColorSpaceConversion (line 1887) | def getSkipColorSpaceConversion(self) -> bool: ... method getSrc (line 1888) | def getSrc(self) -> str: ... method setDst (line 1889) | def setDst(self, dst: str) -> None: ... method setLooks (line 1890) | def setLooks(self, looks: str) -> None: ... method setSkipColorSpaceConversion (line 1891) | def setSkipColorSpaceConversion(self, skipColorSpaceConversion: bool) ... method setSrc (line 1892) | def setSrc(self, src: str) -> None: ... class Lut1DHueAdjust (line 1894) | class Lut1DHueAdjust: method __init__ (line 1900) | def __init__(self, value: int) -> None: ... method __eq__ (line 1901) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1902) | def __hash__(self) -> int: ... method __index__ (line 1903) | def __index__(self) -> int: ... method __int__ (line 1904) | def __int__(self) -> int: ... method __ne__ (line 1905) | def __ne__(self, other: object) -> bool: ... method name (line 1907) | def name(self) -> str: ... method value (line 1909) | def value(self) -> int: ... class Lut1DTransform (line 1911) | class Lut1DTransform(Transform): method __init__ (line 1913) | def __init__(self) -> None: ... method __init__ (line 1915) | def __init__(self, length: int, inputHalfDomain: bool) -> None: ... method __init__ (line 1917) | def __init__(self, length: int = ..., inputHalfDomain: bool = ..., out... method equals (line 1918) | def equals(self, other: Lut1DTransform) -> bool: ... method getData (line 1919) | def getData(self) -> numpy.ndarray: ... method getFileOutputBitDepth (line 1920) | def getFileOutputBitDepth(self) -> BitDepth: ... method getFormatMetadata (line 1921) | def getFormatMetadata(self) -> FormatMetadata: ... method getHueAdjust (line 1922) | def getHueAdjust(self) -> Lut1DHueAdjust: ... method getInputHalfDomain (line 1923) | def getInputHalfDomain(self) -> bool: ... method getInterpolation (line 1924) | def getInterpolation(self) -> Interpolation: ... method getLength (line 1925) | def getLength(self) -> int: ... method getOutputRawHalfs (line 1926) | def getOutputRawHalfs(self) -> bool: ... method getValue (line 1927) | def getValue(self, index: int) -> tuple: ... method setData (line 1928) | def setData(self, data: Buffer) -> None: ... method setFileOutputBitDepth (line 1929) | def setFileOutputBitDepth(self, bitDepth: BitDepth) -> None: ... method setHueAdjust (line 1930) | def setHueAdjust(self, hueAdjust: Lut1DHueAdjust) -> None: ... method setInputHalfDomain (line 1931) | def setInputHalfDomain(self, isHalfDomain: bool) -> None: ... method setInterpolation (line 1932) | def setInterpolation(self, interpolation: Interpolation) -> None: ... method setLength (line 1933) | def setLength(self, length: int) -> None: ... method setOutputRawHalfs (line 1934) | def setOutputRawHalfs(self, isRawHalfs: bool) -> None: ... method setValue (line 1935) | def setValue(self, index: int, r: float, g: float, b: float) -> None: ... class Lut3DTransform (line 1937) | class Lut3DTransform(Transform): method __init__ (line 1939) | def __init__(self) -> None: ... method __init__ (line 1941) | def __init__(self, gridSize: int) -> None: ... method __init__ (line 1943) | def __init__(self, gridSize: int = ..., fileOutputBitDepth: BitDepth =... method equals (line 1944) | def equals(self, other: Lut3DTransform) -> bool: ... method getData (line 1945) | def getData(self) -> numpy.ndarray: ... method getFileOutputBitDepth (line 1946) | def getFileOutputBitDepth(self) -> BitDepth: ... method getFormatMetadata (line 1947) | def getFormatMetadata(self) -> FormatMetadata: ... method getGridSize (line 1948) | def getGridSize(self) -> int: ... method getInterpolation (line 1949) | def getInterpolation(self) -> Interpolation: ... method getValue (line 1950) | def getValue(self, indexR: int, indexG: int, indexB: int) -> tuple: ... method setData (line 1951) | def setData(self, data: Buffer) -> None: ... method setFileOutputBitDepth (line 1952) | def setFileOutputBitDepth(self, bitDepth: BitDepth) -> None: ... method setGridSize (line 1953) | def setGridSize(self, gridSize: int) -> None: ... method setInterpolation (line 1954) | def setInterpolation(self, interpolation: Interpolation) -> None: ... method setValue (line 1955) | def setValue(self, indexR: int, indexG: int, indexB: int, r: float, g:... class MatrixTransform (line 1957) | class MatrixTransform(Transform): method __init__ (line 1959) | def __init__(self) -> None: ... method __init__ (line 1961) | def __init__(self, matrix: Annotated[Iterable[float], None] = ..., off... method Fit (line 1963) | def Fit(oldMin: Annotated[Iterable[float], None] = ..., oldMax: Annota... method Identity (line 1965) | def Identity() -> MatrixTransform: ... method Sat (line 1967) | def Sat(sat: float, lumaCoef: Annotated[Iterable[float], None]) -> Mat... method Scale (line 1969) | def Scale(scale: Annotated[Iterable[float], None]) -> MatrixTransform:... method View (line 1971) | def View(channelHot: Annotated[Iterable[int], None], lumaCoef: Annotat... method equals (line 1972) | def equals(self, other: MatrixTransform) -> bool: ... method getFileInputBitDepth (line 1973) | def getFileInputBitDepth(self) -> BitDepth: ... method getFileOutputBitDepth (line 1974) | def getFileOutputBitDepth(self) -> BitDepth: ... method getFormatMetadata (line 1975) | def getFormatMetadata(self) -> FormatMetadata: ... method getMatrix (line 1976) | def getMatrix(self) -> Annotated[list[float], None]: ... method getOffset (line 1977) | def getOffset(self) -> Annotated[list[float], None]: ... method setFileInputBitDepth (line 1978) | def setFileInputBitDepth(self, bitDepth: BitDepth) -> None: ... method setFileOutputBitDepth (line 1979) | def setFileOutputBitDepth(self, bitDepth: BitDepth) -> None: ... method setMatrix (line 1980) | def setMatrix(self, matrix: Annotated[Iterable[float], None]) -> None:... method setOffset (line 1981) | def setOffset(self, offset: Annotated[Iterable[float], None]) -> None:... class MixingColorSpaceManager (line 1983) | class MixingColorSpaceManager: class MixingEncodingIterator (line 1984) | class MixingEncodingIterator: method __init__ (line 1985) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1986) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 1987) | def __iter__(self) -> MixingColorSpaceManager.MixingEncodingIterator... method __len__ (line 1988) | def __len__(self) -> int: ... method __next__ (line 1989) | def __next__(self) -> str: ... class MixingSpaceIterator (line 1991) | class MixingSpaceIterator: method __init__ (line 1992) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 1993) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 1994) | def __iter__(self) -> MixingColorSpaceManager.MixingSpaceIterator: ... method __len__ (line 1995) | def __len__(self) -> int: ... method __next__ (line 1996) | def __next__(self) -> str: ... method __init__ (line 1997) | def __init__(self, config: Config) -> None: ... method getMixingEncodings (line 1998) | def getMixingEncodings(self) -> MixingColorSpaceManager.MixingEncoding... method getMixingSpaces (line 1999) | def getMixingSpaces(self) -> MixingColorSpaceManager.MixingSpaceIterat... method getProcessor (line 2000) | def getProcessor(self, workingSpaceName: str, displayName: str, viewNa... method getSelectedMixingEncodingIdx (line 2001) | def getSelectedMixingEncodingIdx(self) -> int: ... method getSelectedMixingSpaceIdx (line 2002) | def getSelectedMixingSpaceIdx(self) -> int: ... method getSlider (line 2004) | def getSlider(self) -> MixingSlider: ... method getSlider (line 2006) | def getSlider(self, sliderMixingMinEdge: float, sliderMixingMaxEdge: f... method isPerceptuallyUniform (line 2007) | def isPerceptuallyUniform(self) -> bool: ... method refresh (line 2008) | def refresh(self, config: Config) -> None: ... method setSelectedMixingEncoding (line 2009) | def setSelectedMixingEncoding(self, mixingEncoding: str) -> None: ... method setSelectedMixingEncodingIdx (line 2010) | def setSelectedMixingEncodingIdx(self, arg0: int, /) -> None: ... method setSelectedMixingSpace (line 2011) | def setSelectedMixingSpace(self, mixingSpace: str) -> None: ... method setSelectedMixingSpaceIdx (line 2012) | def setSelectedMixingSpaceIdx(self, arg0: int, /) -> None: ... class MixingSlider (line 2014) | class MixingSlider: method __init__ (line 2015) | def __init__(self, *args, **kwargs) -> None: ... method getSliderMaxEdge (line 2016) | def getSliderMaxEdge(self) -> float: ... method getSliderMinEdge (line 2017) | def getSliderMinEdge(self) -> float: ... method mixingToSlider (line 2018) | def mixingToSlider(self, mixingUnits: float) -> float: ... method setSliderMaxEdge (line 2019) | def setSliderMaxEdge(self, arg0: float, /) -> None: ... method setSliderMinEdge (line 2020) | def setSliderMinEdge(self, arg0: float, /) -> None: ... method sliderToMixing (line 2021) | def sliderToMixing(self, sliderUnits: float) -> float: ... class NamedTransform (line 2023) | class NamedTransform: class NamedTransformAliasIterator (line 2024) | class NamedTransformAliasIterator: method __init__ (line 2025) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2026) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2027) | def __iter__(self) -> NamedTransform.NamedTransformAliasIterator: ... method __len__ (line 2028) | def __len__(self) -> int: ... method __next__ (line 2029) | def __next__(self) -> str: ... class NamedTransformCategoryIterator (line 2031) | class NamedTransformCategoryIterator: method __init__ (line 2032) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2033) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2034) | def __iter__(self) -> NamedTransform.NamedTransformCategoryIterator:... method __len__ (line 2035) | def __len__(self) -> int: ... method __next__ (line 2036) | def __next__(self) -> str: ... method __init__ (line 2038) | def __init__(self) -> None: ... method __init__ (line 2040) | def __init__(self, name: str = ..., aliases: Iterable[str] = ..., fami... method GetTransform (line 2042) | def GetTransform(transform: NamedTransform, direction: TransformDirect... method addAlias (line 2043) | def addAlias(self, alias: str) -> None: ... method addCategory (line 2044) | def addCategory(self, category: str) -> None: ... method clearAliases (line 2045) | def clearAliases(self) -> None: ... method clearCategories (line 2046) | def clearCategories(self) -> None: ... method getAliases (line 2047) | def getAliases(self) -> NamedTransform.NamedTransformAliasIterator: ... method getCategories (line 2048) | def getCategories(self) -> NamedTransform.NamedTransformCategoryIterat... method getDescription (line 2049) | def getDescription(self) -> str: ... method getEncoding (line 2050) | def getEncoding(self) -> str: ... method getFamily (line 2051) | def getFamily(self) -> str: ... method getName (line 2052) | def getName(self) -> str: ... method getTransform (line 2053) | def getTransform(self, direction: TransformDirection) -> Transform: ... method hasAlias (line 2054) | def hasAlias(self, alias: str) -> bool: ... method hasCategory (line 2055) | def hasCategory(self, category: str) -> bool: ... method removeAlias (line 2056) | def removeAlias(self, alias: str) -> None: ... method removeCategory (line 2057) | def removeCategory(self, category: str) -> None: ... method setDescription (line 2058) | def setDescription(self, description: str) -> None: ... method setEncoding (line 2059) | def setEncoding(self, encoding: str) -> None: ... method setFamily (line 2060) | def setFamily(self, family: str) -> None: ... method setName (line 2061) | def setName(self, name: str) -> None: ... method setTransform (line 2062) | def setTransform(self, transform: Transform, direction: TransformDirec... method __deepcopy__ (line 2063) | def __deepcopy__(self, memo: dict) -> NamedTransform: ... class NamedTransformVisibility (line 2065) | class NamedTransformVisibility: method __init__ (line 2071) | def __init__(self, value: int) -> None: ... method __eq__ (line 2072) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2073) | def __hash__(self) -> int: ... method __index__ (line 2074) | def __index__(self) -> int: ... method __int__ (line 2075) | def __int__(self) -> int: ... method __ne__ (line 2076) | def __ne__(self, other: object) -> bool: ... method name (line 2078) | def name(self) -> str: ... method value (line 2080) | def value(self) -> int: ... class NegativeStyle (line 2082) | class NegativeStyle: method __init__ (line 2089) | def __init__(self, value: int) -> None: ... method __eq__ (line 2090) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2091) | def __hash__(self) -> int: ... method __index__ (line 2092) | def __index__(self) -> int: ... method __int__ (line 2093) | def __int__(self) -> int: ... method __ne__ (line 2094) | def __ne__(self, other: object) -> bool: ... method name (line 2096) | def name(self) -> str: ... method value (line 2098) | def value(self) -> int: ... class OptimizationFlags (line 2100) | class OptimizationFlags: method __init__ (line 2131) | def __init__(self, value: int) -> None: ... method __and__ (line 2132) | def __and__(self, other: object) -> object: ... method __eq__ (line 2133) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2134) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2135) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2136) | def __hash__(self) -> int: ... method __index__ (line 2137) | def __index__(self) -> int: ... method __int__ (line 2138) | def __int__(self) -> int: ... method __invert__ (line 2139) | def __invert__(self) -> object: ... method __le__ (line 2140) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2141) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2142) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2143) | def __or__(self, other: object) -> object: ... method __rand__ (line 2144) | def __rand__(self, other: object) -> object: ... method __ror__ (line 2145) | def __ror__(self, other: object) -> object: ... method __rxor__ (line 2146) | def __rxor__(self, other: object) -> object: ... method __xor__ (line 2147) | def __xor__(self, other: object) -> object: ... method name (line 2149) | def name(self) -> str: ... method value (line 2151) | def value(self) -> int: ... class PackedImageDesc (line 2153) | class PackedImageDesc(ImageDesc): method __init__ (line 2155) | def __init__(self, data: Buffer, width: int, height: int, numChannels:... method __init__ (line 2157) | def __init__(self, data: Buffer, width: int, height: int, numChannels:... method __init__ (line 2159) | def __init__(self, data: Buffer, width: int, height: int, chanOrder: C... method __init__ (line 2161) | def __init__(self, data: Buffer, width: int, height: int, chanOrder: C... method getChanStrideBytes (line 2162) | def getChanStrideBytes(self) -> int: ... method getChannelOrder (line 2163) | def getChannelOrder(self) -> ChannelOrdering: ... method getData (line 2164) | def getData(self) -> numpy.ndarray: ... method getNumChannels (line 2165) | def getNumChannels(self) -> int: ... class PlanarImageDesc (line 2167) | class PlanarImageDesc(ImageDesc): method __init__ (line 2169) | def __init__(self, rData: Buffer, gData: Buffer, bData: Buffer, width:... method __init__ (line 2171) | def __init__(self, rData: Buffer, gData: Buffer, bData: Buffer, aData:... method __init__ (line 2173) | def __init__(self, rData: Buffer, gData: Buffer, bData: Buffer, width:... method __init__ (line 2175) | def __init__(self, rData: Buffer, gData: Buffer, bData: Buffer, aData:... method getAData (line 2176) | def getAData(self) -> numpy.ndarray: ... method getBData (line 2177) | def getBData(self) -> numpy.ndarray: ... method getGData (line 2178) | def getGData(self) -> numpy.ndarray: ... method getRData (line 2179) | def getRData(self) -> numpy.ndarray: ... class Processor (line 2181) | class Processor: class TransformFormatMetadataIterator (line 2182) | class TransformFormatMetadataIterator: method __init__ (line 2183) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2184) | def __getitem__(self, arg0: int, /) -> FormatMetadata: ... method __iter__ (line 2185) | def __iter__(self) -> Processor.TransformFormatMetadataIterator: ... method __len__ (line 2186) | def __len__(self) -> int: ... method __next__ (line 2187) | def __next__(self) -> FormatMetadata: ... method __init__ (line 2188) | def __init__(self, *args, **kwargs) -> None: ... method createGroupTransform (line 2189) | def createGroupTransform(self) -> GroupTransform: ... method getCacheID (line 2190) | def getCacheID(self) -> str: ... method getDefaultCPUProcessor (line 2191) | def getDefaultCPUProcessor(self) -> CPUProcessor: ... method getDefaultGPUProcessor (line 2192) | def getDefaultGPUProcessor(self) -> GPUProcessor: ... method getDynamicProperty (line 2193) | def getDynamicProperty(self, type: DynamicPropertyType) -> DynamicProp... method getFormatMetadata (line 2194) | def getFormatMetadata(self) -> FormatMetadata: ... method getOptimizedCPUProcessor (line 2196) | def getOptimizedCPUProcessor(self, oFlags: OptimizationFlags) -> CPUPr... method getOptimizedCPUProcessor (line 2198) | def getOptimizedCPUProcessor(self, inBitDepth: BitDepth, outBitDepth: ... method getOptimizedGPUProcessor (line 2199) | def getOptimizedGPUProcessor(self, oFlags: OptimizationFlags) -> GPUPr... method getOptimizedProcessor (line 2201) | def getOptimizedProcessor(self, oFlags: OptimizationFlags) -> Processo... method getOptimizedProcessor (line 2203) | def getOptimizedProcessor(self, inBitDepth: BitDepth, outBitDepth: Bit... method getProcessorMetadata (line 2204) | def getProcessorMetadata(self) -> ProcessorMetadata: ... method getTransformFormatMetadata (line 2205) | def getTransformFormatMetadata(self) -> Processor.TransformFormatMetad... method hasChannelCrosstalk (line 2206) | def hasChannelCrosstalk(self) -> bool: ... method hasDynamicProperty (line 2207) | def hasDynamicProperty(self, type: DynamicPropertyType) -> bool: ... method isDynamic (line 2208) | def isDynamic(self) -> bool: ... method isNoOp (line 2209) | def isNoOp(self) -> bool: ... class ProcessorCacheFlags (line 2211) | class ProcessorCacheFlags: method __init__ (line 2218) | def __init__(self, value: int) -> None: ... method __eq__ (line 2219) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2220) | def __hash__(self) -> int: ... method __index__ (line 2221) | def __index__(self) -> int: ... method __int__ (line 2222) | def __int__(self) -> int: ... method __ne__ (line 2223) | def __ne__(self, other: object) -> bool: ... method name (line 2225) | def name(self) -> str: ... method value (line 2227) | def value(self) -> int: ... class ProcessorMetadata (line 2229) | class ProcessorMetadata: class FileIterator (line 2230) | class FileIterator: method __init__ (line 2231) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2232) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2233) | def __iter__(self) -> ProcessorMetadata.FileIterator: ... method __len__ (line 2234) | def __len__(self) -> int: ... method __next__ (line 2235) | def __next__(self) -> str: ... class LookIterator (line 2237) | class LookIterator: method __init__ (line 2238) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2239) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2240) | def __iter__(self) -> ProcessorMetadata.LookIterator: ... method __len__ (line 2241) | def __len__(self) -> int: ... method __next__ (line 2242) | def __next__(self) -> str: ... method __init__ (line 2243) | def __init__(self) -> None: ... method addFile (line 2244) | def addFile(self, fileName: str) -> None: ... method addLook (line 2245) | def addLook(self, look: str) -> None: ... method getFiles (line 2246) | def getFiles(self) -> ProcessorMetadata.FileIterator: ... method getLooks (line 2247) | def getLooks(self) -> ProcessorMetadata.LookIterator: ... class PyConfigIOProxy (line 2249) | class PyConfigIOProxy: method __init__ (line 2250) | def __init__(self) -> None: ... method getConfigData (line 2251) | def getConfigData(self) -> str: ... method getFastLutFileHash (line 2252) | def getFastLutFileHash(self, arg0: str, /) -> str: ... method getLutData (line 2253) | def getLutData(self, arg0: str, /) -> vector_of_uint8_t: ... class RGBCurveType (line 2255) | class RGBCurveType: method __init__ (line 2263) | def __init__(self, value: int) -> None: ... method __eq__ (line 2264) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2265) | def __hash__(self) -> int: ... method __index__ (line 2266) | def __index__(self) -> int: ... method __int__ (line 2267) | def __int__(self) -> int: ... method __ne__ (line 2268) | def __ne__(self, other: object) -> bool: ... method name (line 2270) | def name(self) -> str: ... method value (line 2272) | def value(self) -> int: ... class RangeStyle (line 2274) | class RangeStyle: method __init__ (line 2279) | def __init__(self, value: int) -> None: ... method __eq__ (line 2280) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2281) | def __hash__(self) -> int: ... method __index__ (line 2282) | def __index__(self) -> int: ... method __int__ (line 2283) | def __int__(self) -> int: ... method __ne__ (line 2284) | def __ne__(self, other: object) -> bool: ... method name (line 2286) | def name(self) -> str: ... method value (line 2288) | def value(self) -> int: ... class RangeTransform (line 2290) | class RangeTransform(Transform): method __init__ (line 2292) | def __init__(self) -> None: ... method __init__ (line 2294) | def __init__(self, minInValue: float = ..., maxInValue: float = ..., m... method equals (line 2295) | def equals(self, other: RangeTransform) -> bool: ... method getFileInputBitDepth (line 2296) | def getFileInputBitDepth(self) -> BitDepth: ... method getFileOutputBitDepth (line 2297) | def getFileOutputBitDepth(self) -> BitDepth: ... method getFormatMetadata (line 2298) | def getFormatMetadata(self) -> FormatMetadata: ... method getMaxInValue (line 2299) | def getMaxInValue(self) -> float: ... method getMaxOutValue (line 2300) | def getMaxOutValue(self) -> float: ... method getMinInValue (line 2301) | def getMinInValue(self) -> float: ... method getMinOutValue (line 2302) | def getMinOutValue(self) -> float: ... method getStyle (line 2303) | def getStyle(self) -> RangeStyle: ... method hasMaxInValue (line 2304) | def hasMaxInValue(self) -> bool: ... method hasMaxOutValue (line 2305) | def hasMaxOutValue(self) -> bool: ... method hasMinInValue (line 2306) | def hasMinInValue(self) -> bool: ... method hasMinOutValue (line 2307) | def hasMinOutValue(self) -> bool: ... method setFileInputBitDepth (line 2308) | def setFileInputBitDepth(self, bitDepth: BitDepth) -> None: ... method setFileOutputBitDepth (line 2309) | def setFileOutputBitDepth(self, bitDepth: BitDepth) -> None: ... method setMaxInValue (line 2310) | def setMaxInValue(self, value: float) -> None: ... method setMaxOutValue (line 2311) | def setMaxOutValue(self, value: float) -> None: ... method setMinInValue (line 2312) | def setMinInValue(self, value: float) -> None: ... method setMinOutValue (line 2313) | def setMinOutValue(self, value: float) -> None: ... method setStyle (line 2314) | def setStyle(self, style: RangeStyle) -> None: ... method unsetMaxInValue (line 2315) | def unsetMaxInValue(self) -> None: ... method unsetMaxOutValue (line 2316) | def unsetMaxOutValue(self) -> None: ... method unsetMinInValue (line 2317) | def unsetMinInValue(self) -> None: ... method unsetMinOutValue (line 2318) | def unsetMinOutValue(self) -> None: ... class ReferenceSpaceType (line 2320) | class ReferenceSpaceType: method __init__ (line 2325) | def __init__(self, value: int) -> None: ... method __eq__ (line 2326) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2327) | def __hash__(self) -> int: ... method __index__ (line 2328) | def __index__(self) -> int: ... method __int__ (line 2329) | def __int__(self) -> int: ... method __ne__ (line 2330) | def __ne__(self, other: object) -> bool: ... method name (line 2332) | def name(self) -> str: ... method value (line 2334) | def value(self) -> int: ... class SearchReferenceSpaceType (line 2336) | class SearchReferenceSpaceType: method __init__ (line 2342) | def __init__(self, value: int) -> None: ... method __eq__ (line 2343) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2344) | def __hash__(self) -> int: ... method __index__ (line 2345) | def __index__(self) -> int: ... method __int__ (line 2346) | def __int__(self) -> int: ... method __ne__ (line 2347) | def __ne__(self, other: object) -> bool: ... method name (line 2349) | def name(self) -> str: ... method value (line 2351) | def value(self) -> int: ... class SystemMonitors (line 2353) | class SystemMonitors: class MonitorIterator (line 2354) | class MonitorIterator: method __init__ (line 2355) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2356) | def __getitem__(self, arg0: int, /) -> tuple: ... method __iter__ (line 2357) | def __iter__(self) -> SystemMonitors.MonitorIterator: ... method __len__ (line 2358) | def __len__(self) -> int: ... method __next__ (line 2359) | def __next__(self) -> tuple: ... method __init__ (line 2360) | def __init__(self) -> None: ... method getMonitors (line 2361) | def getMonitors(self) -> SystemMonitors.MonitorIterator: ... class Transform (line 2363) | class Transform: method __init__ (line 2364) | def __init__(self, *args, **kwargs) -> None: ... method getDirection (line 2365) | def getDirection(self) -> TransformDirection: ... method getTransformType (line 2366) | def getTransformType(self) -> TransformType: ... method setDirection (line 2367) | def setDirection(self, direction: TransformDirection) -> None: ... method validate (line 2368) | def validate(self) -> None: ... method __deepcopy__ (line 2369) | def __deepcopy__(self, memo: dict) -> Transform: ... class TransformDirection (line 2371) | class TransformDirection: method __init__ (line 2376) | def __init__(self, value: int) -> None: ... method __eq__ (line 2377) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2378) | def __hash__(self) -> int: ... method __index__ (line 2379) | def __index__(self) -> int: ... method __int__ (line 2380) | def __int__(self) -> int: ... method __ne__ (line 2381) | def __ne__(self, other: object) -> bool: ... method name (line 2383) | def name(self) -> str: ... method value (line 2385) | def value(self) -> int: ... class TransformType (line 2387) | class TransformType: method __init__ (line 2412) | def __init__(self, value: int) -> None: ... method __eq__ (line 2413) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2414) | def __hash__(self) -> int: ... method __index__ (line 2415) | def __index__(self) -> int: ... method __int__ (line 2416) | def __int__(self) -> int: ... method __ne__ (line 2417) | def __ne__(self, other: object) -> bool: ... method name (line 2419) | def name(self) -> str: ... method value (line 2421) | def value(self) -> int: ... class UniformDataType (line 2423) | class UniformDataType: method __init__ (line 2432) | def __init__(self, value: int) -> None: ... method __eq__ (line 2433) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2434) | def __hash__(self) -> int: ... method __index__ (line 2435) | def __index__(self) -> int: ... method __int__ (line 2436) | def __int__(self) -> int: ... method __ne__ (line 2437) | def __ne__(self, other: object) -> bool: ... method name (line 2439) | def name(self) -> str: ... method value (line 2441) | def value(self) -> int: ... class ViewTransform (line 2443) | class ViewTransform: class ViewTransformCategoryIterator (line 2444) | class ViewTransformCategoryIterator: method __init__ (line 2445) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2446) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2447) | def __iter__(self) -> ViewTransform.ViewTransformCategoryIterator: ... method __len__ (line 2448) | def __len__(self) -> int: ... method __next__ (line 2449) | def __next__(self) -> str: ... method __init__ (line 2451) | def __init__(self, referenceSpace: ReferenceSpaceType) -> None: ... method __init__ (line 2453) | def __init__(self, referenceSpace: ReferenceSpaceType = ..., name: str... method addCategory (line 2454) | def addCategory(self, category: str) -> None: ... method clearCategories (line 2455) | def clearCategories(self) -> None: ... method getCategories (line 2456) | def getCategories(self) -> ViewTransform.ViewTransformCategoryIterator... method getDescription (line 2457) | def getDescription(self) -> str: ... method getFamily (line 2458) | def getFamily(self) -> str: ... method getName (line 2459) | def getName(self) -> str: ... method getReferenceSpaceType (line 2460) | def getReferenceSpaceType(self) -> ReferenceSpaceType: ... method getTransform (line 2461) | def getTransform(self, direction: ViewTransformDirection) -> Transform... method hasCategory (line 2462) | def hasCategory(self, category: str) -> bool: ... method removeCategory (line 2463) | def removeCategory(self, category: str) -> None: ... method setDescription (line 2464) | def setDescription(self, description: str) -> None: ... method setFamily (line 2465) | def setFamily(self, family: str) -> None: ... method setName (line 2466) | def setName(self, name: str) -> None: ... method setTransform (line 2467) | def setTransform(self, transform: Transform, direction: ViewTransformD... method __deepcopy__ (line 2468) | def __deepcopy__(self, memo: dict) -> ViewTransform: ... class ViewTransformDirection (line 2470) | class ViewTransformDirection: method __init__ (line 2475) | def __init__(self, value: int) -> None: ... method __eq__ (line 2476) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2477) | def __hash__(self) -> int: ... method __index__ (line 2478) | def __index__(self) -> int: ... method __int__ (line 2479) | def __int__(self) -> int: ... method __ne__ (line 2480) | def __ne__(self, other: object) -> bool: ... method name (line 2482) | def name(self) -> str: ... method value (line 2484) | def value(self) -> int: ... class ViewType (line 2486) | class ViewType: method __init__ (line 2491) | def __init__(self, value: int) -> None: ... method __eq__ (line 2492) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2493) | def __hash__(self) -> int: ... method __index__ (line 2494) | def __index__(self) -> int: ... method __int__ (line 2495) | def __int__(self) -> int: ... method __ne__ (line 2496) | def __ne__(self, other: object) -> bool: ... method name (line 2498) | def name(self) -> str: ... method value (line 2500) | def value(self) -> int: ... class ViewingRules (line 2502) | class ViewingRules: class ViewingRuleColorSpaceIterator (line 2503) | class ViewingRuleColorSpaceIterator: method __init__ (line 2504) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2505) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2506) | def __iter__(self) -> ViewingRules.ViewingRuleColorSpaceIterator: ... method __len__ (line 2507) | def __len__(self) -> int: ... method __next__ (line 2508) | def __next__(self) -> str: ... class ViewingRuleEncodingIterator (line 2510) | class ViewingRuleEncodingIterator: method __init__ (line 2511) | def __init__(self, *args, **kwargs) -> None: ... method __getitem__ (line 2512) | def __getitem__(self, arg0: int, /) -> str: ... method __iter__ (line 2513) | def __iter__(self) -> ViewingRules.ViewingRuleEncodingIterator: ... method __len__ (line 2514) | def __len__(self) -> int: ... method __next__ (line 2515) | def __next__(self) -> str: ... method __init__ (line 2516) | def __init__(self) -> None: ... method addColorSpace (line 2517) | def addColorSpace(self, ruleIndex: int, colorSpaceName: str) -> None: ... method addEncoding (line 2518) | def addEncoding(self, ruleIndex: int, encodingName: str) -> None: ... method getColorSpaces (line 2519) | def getColorSpaces(self, ruleIndex: int) -> ViewingRules.ViewingRuleCo... method getCustomKeyName (line 2520) | def getCustomKeyName(self, ruleIndex: int, key: int) -> str: ... method getCustomKeyValue (line 2521) | def getCustomKeyValue(self, ruleIndex: int, key: int) -> str: ... method getEncodings (line 2522) | def getEncodings(self, ruleIndex: int) -> ViewingRules.ViewingRuleEnco... method getIndexForRule (line 2523) | def getIndexForRule(self, ruleName: str) -> int: ... method getName (line 2524) | def getName(self, ruleIndex: int) -> str: ... method getNumCustomKeys (line 2525) | def getNumCustomKeys(self, ruleIndex: int) -> int: ... method getNumEntries (line 2526) | def getNumEntries(self) -> int: ... method insertRule (line 2527) | def insertRule(self, ruleIndex: int, name: str) -> None: ... method removeColorSpace (line 2528) | def removeColorSpace(self, ruleIndex: int, colorSpaceIndex: int) -> No... method removeEncoding (line 2529) | def removeEncoding(self, ruleIndex: int, encodingIndex: int) -> None: ... method removeRule (line 2530) | def removeRule(self, ruleIndex: int) -> None: ... method setCustomKey (line 2531) | def setCustomKey(self, ruleIndex: int, key: str, value: str) -> None: ... method __deepcopy__ (line 2532) | def __deepcopy__(self, memo: dict) -> ViewingRules: ... class vector_of_uint8_t (line 2534) | class vector_of_uint8_t: method __init__ (line 2536) | def __init__(self) -> None: ... method __init__ (line 2538) | def __init__(self, arg0: vector_of_uint8_t, /) -> None: ... method __init__ (line 2540) | def __init__(self, arg0: Iterable, /) -> None: ... method append (line 2541) | def append(self, x: int) -> None: ... method clear (line 2542) | def clear(self) -> None: ... method count (line 2543) | def count(self, x: int) -> int: ... method extend (line 2545) | def extend(self, L: vector_of_uint8_t) -> None: ... method extend (line 2547) | def extend(self, L: Iterable) -> None: ... method insert (line 2548) | def insert(self, i: int, x: int) -> None: ... method pop (line 2550) | def pop(self) -> int: ... method pop (line 2552) | def pop(self, i: int) -> int: ... method remove (line 2553) | def remove(self, x: int) -> None: ... method __bool__ (line 2554) | def __bool__(self) -> bool: ... method __contains__ (line 2555) | def __contains__(self, x: int) -> bool: ... method __delitem__ (line 2557) | def __delitem__(self, arg0: int, /) -> None: ... method __delitem__ (line 2559) | def __delitem__(self, arg0: slice, /) -> None: ... method __eq__ (line 2560) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2562) | def __getitem__(self, s: slice) -> vector_of_uint8_t: ... method __getitem__ (line 2564) | def __getitem__(self, arg0: int, /) -> int: ... method __iter__ (line 2565) | def __iter__(self) -> Iterator[int]: ... method __len__ (line 2566) | def __len__(self) -> int: ... method __ne__ (line 2567) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2569) | def __setitem__(self, arg0: int, arg1: int, /) -> None: ... method __setitem__ (line 2571) | def __setitem__(self, arg0: slice, arg1: vector_of_uint8_t, /) -> None... function AllocationFromString (line 2573) | def AllocationFromString(str: str) -> Allocation: ... function AllocationToString (line 2574) | def AllocationToString(allocation: Allocation) -> str: ... function BitDepthFromString (line 2575) | def BitDepthFromString(str: str) -> BitDepth: ... function BitDepthIsFloat (line 2576) | def BitDepthIsFloat(bitDepth: BitDepth) -> bool: ... function BitDepthToInt (line 2577) | def BitDepthToInt(bitDepth: BitDepth) -> int: ... function BitDepthToString (line 2578) | def BitDepthToString(bitDepth: BitDepth) -> str: ... function BoolFromString (line 2579) | def BoolFromString(str: str) -> bool: ... function BoolToString (line 2580) | def BoolToString(value: bool) -> str: ... function CDLStyleFromString (line 2581) | def CDLStyleFromString(str: str) -> CDLStyle: ... function CDLStyleToString (line 2582) | def CDLStyleToString(style: CDLStyle) -> str: ... function ClearAllCaches (line 2583) | def ClearAllCaches() -> None: ... function CombineTransformDirections (line 2584) | def CombineTransformDirections(direction1: TransformDirection, direction... function EnvironmentModeFromString (line 2585) | def EnvironmentModeFromString(str: str) -> EnvironmentMode: ... function EnvironmentModeToString (line 2586) | def EnvironmentModeToString(mode: EnvironmentMode) -> str: ... function ExposureContrastStyleFromString (line 2587) | def ExposureContrastStyleFromString(str: str) -> ExposureContrastStyle: ... function ExposureContrastStyleToString (line 2588) | def ExposureContrastStyleToString(style: ExposureContrastStyle) -> str: ... function ExtractOCIOZArchive (line 2589) | def ExtractOCIOZArchive(arg0: str, arg1: str, /) -> None: ... function FixedFunctionStyleFromString (line 2590) | def FixedFunctionStyleFromString(str: str) -> FixedFunctionStyle: ... function FixedFunctionStyleToString (line 2591) | def FixedFunctionStyleToString(style: FixedFunctionStyle) -> str: ... function GetCurrentConfig (line 2592) | def GetCurrentConfig() -> Config: ... function GetEnvVariable (line 2593) | def GetEnvVariable(name: str) -> str: ... function GetInverseTransformDirection (line 2594) | def GetInverseTransformDirection(direction: TransformDirection) -> Trans... function GetLoggingLevel (line 2595) | def GetLoggingLevel() -> LoggingLevel: ... function GetVersion (line 2596) | def GetVersion() -> str: ... function GetVersionHex (line 2597) | def GetVersionHex() -> int: ... function GpuLanguageFromString (line 2598) | def GpuLanguageFromString(str: str) -> GpuLanguage: ... function GpuLanguageToString (line 2599) | def GpuLanguageToString(language: GpuLanguage) -> str: ... function GradingStyleFromString (line 2600) | def GradingStyleFromString(str: str) -> GradingStyle: ... function GradingStyleToString (line 2601) | def GradingStyleToString(style: GradingStyle) -> str: ... function InterpolationFromString (line 2602) | def InterpolationFromString(str: str) -> Interpolation: ... function InterpolationToString (line 2603) | def InterpolationToString(interpolation: Interpolation) -> str: ... function IsEnvVariablePresent (line 2604) | def IsEnvVariablePresent(name: str) -> bool: ... function LogMessage (line 2605) | def LogMessage(level: LoggingLevel, message: str) -> None: ... function LoggingLevelFromString (line 2606) | def LoggingLevelFromString(str: str) -> LoggingLevel: ... function LoggingLevelToString (line 2607) | def LoggingLevelToString(level: LoggingLevel) -> str: ... function NegativeStyleFromString (line 2608) | def NegativeStyleFromString(str: str) -> NegativeStyle: ... function NegativeStyleToString (line 2609) | def NegativeStyleToString(style: NegativeStyle) -> str: ... function RangeStyleFromString (line 2610) | def RangeStyleFromString(str: str) -> RangeStyle: ... function RangeStyleToString (line 2611) | def RangeStyleToString(style: RangeStyle) -> str: ... function ResetComputeHashFunction (line 2612) | def ResetComputeHashFunction() -> None: ... function ResetToDefaultLoggingFunction (line 2613) | def ResetToDefaultLoggingFunction() -> None: ... function ResolveConfigPath (line 2614) | def ResolveConfigPath(arg0: str, /) -> str: ... function SetComputeHashFunction (line 2615) | def SetComputeHashFunction(hashFunction: Callable[[str], str]) -> None: ... function SetCurrentConfig (line 2616) | def SetCurrentConfig(config: Config) -> None: ... function SetEnvVariable (line 2617) | def SetEnvVariable(name: str, value: str) -> None: ... function SetLoggingFunction (line 2618) | def SetLoggingFunction(logFunction: Callable[[str], None]) -> None: ... function SetLoggingLevel (line 2619) | def SetLoggingLevel(level: LoggingLevel) -> None: ... function TransformDirectionFromString (line 2620) | def TransformDirectionFromString(str: str) -> TransformDirection: ... function TransformDirectionToString (line 2621) | def TransformDirectionToString(direction: TransformDirection) -> str: ... function UnsetEnvVariable (line 2622) | def UnsetEnvVariable(name: str) -> None: ... FILE: ocio/stubs/PyOpenColorIO-stubs/command_line.pyi function call_program (line 5) | def call_program(name, args): ... function main (line 6) | def main() -> None: ... FILE: openexr/stubgen_openexr.py class OpenEXRSignatureGenerator (line 16) | class OpenEXRSignatureGenerator(AdvancedSignatureGenerator): class InspectionStubGenerator (line 41) | class InspectionStubGenerator(mypy.stubgenc.InspectionStubGenerator): method get_sig_generators (line 42) | def get_sig_generators(self) -> list[SignatureGenerator]: method set_defined_names (line 49) | def set_defined_names(self, defined_names: set[str]) -> None: FILE: openexr/stubs/OpenEXR/__init__.pyi class Channel (line 42) | class Channel: method __init__ (line 49) | def __init__(self) -> None: ... method __init__ (line 51) | def __init__(self, xSampling: int, ySampling: int, pLinear: bool = ...... method __init__ (line 53) | def __init__(self, pixels: numpy.ndarray) -> None: ... method __init__ (line 55) | def __init__(self, pixels: numpy.ndarray, xSampling: int, ySampling: i... method __init__ (line 57) | def __init__(self, name: str) -> None: ... method __init__ (line 59) | def __init__(self, name: str, xSampling: int, ySampling: int, pLinear:... method __init__ (line 61) | def __init__(self, name: str, pixels: numpy.ndarray) -> None: ... method __init__ (line 63) | def __init__(self, name: str, pixels: numpy.ndarray, xSampling: int, y... method type (line 65) | def type(self) -> PixelType: ... method type (line 67) | def type(self, UINT, HALF, FLOAT) -> Any: ... method channel_index (line 69) | def channel_index(self) -> int: ... class Compression (line 71) | class Compression: method __init__ (line 85) | def __init__(self, value: int) -> None: ... method __eq__ (line 86) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 87) | def __hash__(self) -> int: ... method __index__ (line 88) | def __index__(self) -> int: ... method __int__ (line 89) | def __int__(self) -> int: ... method __ne__ (line 90) | def __ne__(self, other: object) -> bool: ... method name (line 92) | def name(self) -> str: ... method value (line 94) | def value(self) -> int: ... class Envmap (line 96) | class Envmap: method __init__ (line 102) | def __init__(self, value: int) -> None: ... method __eq__ (line 103) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 104) | def __hash__(self) -> int: ... method __index__ (line 105) | def __index__(self) -> int: ... method __int__ (line 106) | def __int__(self) -> int: ... method __ne__ (line 107) | def __ne__(self, other: object) -> bool: ... method name (line 109) | def name(self) -> str: ... method value (line 111) | def value(self) -> int: ... class File (line 113) | class File: method __init__ (line 117) | def __init__(self) -> None: ... method __init__ (line 119) | def __init__(self, filename: str, separate_channels: bool = ..., heade... method __init__ (line 121) | def __init__(self, header: dict[str, Any], channels: Mapping[str, Chan... method __init__ (line 123) | def __init__(self, parts: Iterable[Part]) -> None: ... method channels (line 124) | def channels(self, part_index: int = ...) -> dict: ... method header (line 125) | def header(self, part_index: int = ...) -> dict[str, Any]: ... method write (line 126) | def write(self, arg0: str) -> None: ... method __enter__ (line 127) | def __enter__(self) -> Self: ... method __exit__ (line 128) | def __exit__(self, *args) -> None: ... class InputFile (line 130) | class InputFile: method __init__ (line 131) | def __init__(self, *args, **kwargs) -> None: ... method channel (line 132) | def channel(self, *args, **kwargs): ... method channels (line 133) | def channels(self, *args, **kwargs): ... method close (line 134) | def close(self, *args, **kwargs): ... method header (line 135) | def header(self, *args, **kwargs): ... method isComplete (line 136) | def isComplete(self, *args, **kwargs) -> bool: ... class KeyCode (line 138) | class KeyCode: method __init__ (line 147) | def __init__(self) -> None: ... method __init__ (line 149) | def __init__(self, arg0: int, arg1: int, arg2: int, arg3: int, arg4: i... method __eq__ (line 150) | def __eq__(self, other: object) -> bool: ... class LevelMode (line 152) | class LevelMode: method __init__ (line 159) | def __init__(self, value: int) -> None: ... method __eq__ (line 160) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 161) | def __hash__(self) -> int: ... method __index__ (line 162) | def __index__(self) -> int: ... method __int__ (line 163) | def __int__(self) -> int: ... method __ne__ (line 164) | def __ne__(self, other: object) -> bool: ... method name (line 166) | def name(self) -> str: ... method value (line 168) | def value(self) -> int: ... class LevelRoundingMode (line 170) | class LevelRoundingMode: method __init__ (line 176) | def __init__(self, value: int) -> None: ... method __eq__ (line 177) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 178) | def __hash__(self) -> int: ... method __index__ (line 179) | def __index__(self) -> int: ... method __int__ (line 180) | def __int__(self) -> int: ... method __ne__ (line 181) | def __ne__(self, other: object) -> bool: ... method name (line 183) | def name(self) -> str: ... method value (line 185) | def value(self) -> int: ... class LineOrder (line 187) | class LineOrder: method __init__ (line 194) | def __init__(self, value: int) -> None: ... method __eq__ (line 195) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 196) | def __hash__(self) -> int: ... method __index__ (line 197) | def __index__(self) -> int: ... method __int__ (line 198) | def __int__(self) -> int: ... method __ne__ (line 199) | def __ne__(self, other: object) -> bool: ... method name (line 201) | def name(self) -> str: ... method value (line 203) | def value(self) -> int: ... class OutputFile (line 205) | class OutputFile: method __init__ (line 206) | def __init__(self, *args, **kwargs) -> None: ... method close (line 207) | def close(self, *args, **kwargs): ... method currentScanLine (line 208) | def currentScanLine(self, *args, **kwargs): ... method writePixels (line 209) | def writePixels(self, *args, **kwargs): ... class Part (line 211) | class Part: method __init__ (line 215) | def __init__(self) -> None: ... method __init__ (line 217) | def __init__(self, header: dict[str, Any], channels: Mapping[str, Chan... method compression (line 218) | def compression(self) -> Compression: ... method height (line 219) | def height(self) -> int: ... method name (line 220) | def name(self) -> str: ... method type (line 221) | def type(self) -> Storage: ... method width (line 222) | def width(self) -> int: ... method part_index (line 224) | def part_index(self) -> int: ... class PixelType (line 226) | class PixelType: method __init__ (line 233) | def __init__(self, value: int) -> None: ... method __eq__ (line 234) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 235) | def __hash__(self) -> int: ... method __index__ (line 236) | def __index__(self) -> int: ... method __int__ (line 237) | def __int__(self) -> int: ... method __ne__ (line 238) | def __ne__(self, other: object) -> bool: ... method name (line 240) | def name(self) -> str: ... method value (line 242) | def value(self) -> int: ... class PreviewImage (line 244) | class PreviewImage: method __init__ (line 247) | def __init__(self) -> None: ... method __init__ (line 249) | def __init__(self, arg0: int, arg1: int) -> None: ... method __init__ (line 251) | def __init__(self, arg0: numpy.ndarray[PreviewRgba]) -> None: ... method __eq__ (line 252) | def __eq__(self, other: object) -> bool: ... class PreviewRgba (line 254) | class PreviewRgba: method __init__ (line 260) | def __init__(self) -> None: ... method __init__ (line 262) | def __init__(self, arg0: int, arg1: int, arg2: int, arg3: int) -> None... method __eq__ (line 263) | def __eq__(self, other: object) -> bool: ... class Rational (line 265) | class Rational: method __init__ (line 269) | def __init__(self) -> None: ... method __init__ (line 271) | def __init__(self, arg0: int, arg1: int) -> None: ... method __eq__ (line 272) | def __eq__(self, other: object) -> bool: ... class Storage (line 274) | class Storage: method __init__ (line 282) | def __init__(self, value: int) -> None: ... method __eq__ (line 283) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 284) | def __hash__(self) -> int: ... method __index__ (line 285) | def __index__(self) -> int: ... method __int__ (line 286) | def __int__(self) -> int: ... method __ne__ (line 287) | def __ne__(self, other: object) -> bool: ... method name (line 289) | def name(self) -> str: ... method value (line 291) | def value(self) -> int: ... class TileDescription (line 293) | class TileDescription: method __init__ (line 298) | def __init__(self) -> None: ... method __eq__ (line 299) | def __eq__(self, other: object) -> bool: ... class TimeCode (line 301) | class TimeCode: method __init__ (line 315) | def __init__(self) -> None: ... method __init__ (line 317) | def __init__(self, arg0: int, arg1: int, arg2: int, arg3: int, arg4: i... method setTimeAndFlags (line 318) | def setTimeAndFlags(self, arg0: int, arg1) -> None: ... method timeAndFlags (line 319) | def timeAndFlags(self, arg0) -> int: ... method __eq__ (line 320) | def __eq__(self, other: object) -> bool: ... class error (line 322) | class error(Exception): ... function Header (line 324) | def Header(*args, **kwargs): ... function isOpenExrFile (line 325) | def isOpenExrFile(*args, **kwargs) -> bool: ... FILE: otio/stubs/opentimelineio-stubs/_opentime.pyi class RationalTime (line 3) | class RationalTime: method __init__ (line 8) | def __init__(self, value: float = ..., rate: float = ...) -> None: method almost_equal (line 10) | def almost_equal(self, other: RationalTime, delta: float = ...) -> bool: method ceil (line 12) | def ceil(self) -> RationalTime: method duration_from_start_end_time (line 15) | def duration_from_start_end_time(start_time: RationalTime, end_time_ex... method duration_from_start_end_time_inclusive (line 25) | def duration_from_start_end_time_inclusive(start_time: RationalTime, e... method floor (line 34) | def floor(self) -> RationalTime: method from_frames (line 37) | def from_frames(frame: float, rate: float) -> RationalTime: method from_seconds (line 44) | def from_seconds(seconds: float, rate: float) -> RationalTime: method from_seconds (line 54) | def from_seconds(seconds: float) -> RationalTime: method from_time_string (line 63) | def from_time_string(time_string: str, rate: float) -> RationalTime: method from_timecode (line 69) | def from_timecode(timecode: str, rate: float) -> RationalTime: method is_invalid_time (line 74) | def is_invalid_time(self) -> bool: method is_valid_timecode_rate (line 83) | def is_valid_timecode_rate(rate: float) -> bool: method nearest_valid_timecode_rate (line 89) | def nearest_valid_timecode_rate(rate: float) -> float: method rescaled_to (line 95) | def rescaled_to(self, new_rate: float) -> RationalTime: method rescaled_to (line 108) | def rescaled_to(self, other: RationalTime) -> RationalTime: method round (line 120) | def round(self) -> RationalTime: method strictly_equal (line 122) | def strictly_equal(self, other: RationalTime) -> bool: method to_frames (line 125) | def to_frames(self) -> int: method to_frames (line 138) | def to_frames(self, rate: float) -> int: method to_nearest_timecode (line 151) | def to_nearest_timecode(self, rate: float, drop_frame: bool | None) ->... method to_nearest_timecode (line 164) | def to_nearest_timecode(self, rate: float) -> str: method to_nearest_timecode (line 177) | def to_nearest_timecode(self) -> str: method to_seconds (line 189) | def to_seconds(self) -> float: method to_time_string (line 191) | def to_time_string(self) -> str: method to_timecode (line 194) | def to_timecode(self, rate: float, drop_frame: bool | None) -> str: method to_timecode (line 207) | def to_timecode(self, rate: float) -> str: method to_timecode (line 220) | def to_timecode(self) -> str: method value_rescaled_to (line 233) | def value_rescaled_to(self, new_rate: float) -> float: method value_rescaled_to (line 244) | def value_rescaled_to(self, other: RationalTime) -> float: method __add__ (line 254) | def __add__(self, arg0: RationalTime) -> RationalTime: method __copy__ (line 256) | def __copy__(self) -> RationalTime: method __deepcopy__ (line 258) | def __deepcopy__(self, copier: object = ...) -> RationalTime: method __eq__ (line 260) | def __eq__(self, arg0: object) -> bool: method __ge__ (line 262) | def __ge__(self, arg0: object) -> bool: method __gt__ (line 264) | def __gt__(self, arg0: object) -> bool: method __iadd__ (line 266) | def __iadd__(self, arg0: RationalTime) -> RationalTime: method __le__ (line 268) | def __le__(self, arg0: object) -> bool: method __lt__ (line 270) | def __lt__(self, arg0: object) -> bool: method __ne__ (line 272) | def __ne__(self, arg0: object) -> bool: method __neg__ (line 274) | def __neg__(self) -> RationalTime: method __sub__ (line 276) | def __sub__(self, arg0: RationalTime) -> RationalTime: method rate (line 279) | def rate(self) -> float: method value (line 282) | def value(self) -> float: class TimeRange (line 285) | class TimeRange: method __init__ (line 291) | def __init__(self, start_time: RationalTime = ..., duration: RationalT... method before (line 293) | def before(self, *args, **kwargs): method begins (line 322) | def begins(self, other: RationalTime, epsilon_s: float = ...) -> bool: method begins (line 353) | def begins(self, other: TimeRange, epsilon_s: float = ...) -> bool: method begins (line 384) | def begins(self, this) -> Any: method clamped (line 415) | def clamped(self, other: RationalTime) -> RationalTime: method clamped (line 434) | def clamped(self, other: TimeRange) -> TimeRange: method contains (line 452) | def contains(self, *args, **kwargs): method duration_extended_by (line 483) | def duration_extended_by(self, other: RationalTime) -> TimeRange: method end_time_exclusive (line 485) | def end_time_exclusive(self) -> RationalTime: method end_time_inclusive (line 498) | def end_time_inclusive(self) -> RationalTime: method extended_by (line 513) | def extended_by(self, other: TimeRange) -> TimeRange: method finishes (line 518) | def finishes(self, *args, **kwargs): method intersects (line 548) | def intersects(self, other: TimeRange, epsilon_s: float = ...) -> bool: method meets (line 563) | def meets(self, other: TimeRange, epsilon_s: float = ...) -> bool: method meets (line 577) | def meets(self, this) -> Any: method overlaps (line 590) | def overlaps(self, *args, **kwargs): method range_from_start_end_time (line 621) | def range_from_start_end_time(start_time: RationalTime, end_time_exclu... method range_from_start_end_time_inclusive (line 631) | def range_from_start_end_time_inclusive(start_time: RationalTime, end_... method __copy__ (line 640) | def __copy__(self) -> TimeRange: method __deepcopy__ (line 642) | def __deepcopy__(self, arg0: object) -> TimeRange: method __eq__ (line 644) | def __eq__(self, arg0: TimeRange) -> bool: # type: ignore[override] method __ne__ (line 646) | def __ne__(self, arg0: TimeRange) -> bool: # type: ignore[override] method duration (line 649) | def duration(self) -> RationalTime: method start_time (line 652) | def start_time(self) -> RationalTime: class TimeTransform (line 655) | class TimeTransform: method __init__ (line 657) | def __init__(self, offset: RationalTime = ..., scale: float = ..., rat... method applied_to (line 660) | def applied_to(self, other: TimeRange) -> TimeRange: method applied_to (line 671) | def applied_to(self, other: TimeTransform) -> TimeTransform: method applied_to (line 682) | def applied_to(self, other: RationalTime) -> RationalTime: method __copy__ (line 692) | def __copy__(self) -> TimeTransform: method __deepcopy__ (line 694) | def __deepcopy__(self, memo: dict) -> TimeTransform: method __eq__ (line 696) | def __eq__(self, arg0: TimeTransform) -> bool: # type: ignore[override] method __ne__ (line 698) | def __ne__(self, arg0: TimeTransform) -> bool: # type: ignore[override] method offset (line 701) | def offset(self) -> RationalTime: method rate (line 704) | def rate(self) -> float: method scale (line 707) | def scale(self) -> float: FILE: otio/stubs/opentimelineio-stubs/_otio.pyi class AnyDictionary (line 5) | class AnyDictionary: method __init__ (line 20) | def __init__(self) -> None: method __delitem__ (line 22) | def __delitem__(self, key: str) -> None: method __getitem__ (line 24) | def __getitem__(self, key: str) -> object: method __internal_setitem__ (line 26) | def __internal_setitem__(self, key: str, item: PyAny) -> None: method __iter__ (line 28) | def __iter__(self) -> AnyDictionaryIterator: method __len__ (line 30) | def __len__(self) -> int: class AnyDictionaryIterator (line 33) | class AnyDictionaryIterator: method __init__ (line 34) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 36) | def __iter__(self) -> AnyDictionaryIterator: method __next__ (line 38) | def __next__(self) -> object: class AnyVector (line 41) | class AnyVector: method __init__ (line 61) | def __init__(self) -> None: method __internal_insert (line 63) | def __internal_insert(self, arg0: int, arg1: PyAny) -> None: method __internal_delitem__ (line 65) | def __internal_delitem__(self, index: int) -> None: method __internal_getitem__ (line 67) | def __internal_getitem__(self, index: int) -> object: method __internal_setitem__ (line 69) | def __internal_setitem__(self, index: int, item: PyAny) -> None: method __iter__ (line 71) | def __iter__(self) -> AnyVectorIterator: method __len__ (line 73) | def __len__(self) -> int: class AnyVectorIterator (line 76) | class AnyVectorIterator: method __init__ (line 77) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 79) | def __iter__(self) -> AnyVectorIterator: method __next__ (line 81) | def __next__(self) -> object: class Box2d (line 84) | class Box2d: method __init__ (line 88) | def __init__(self) -> None: method __init__ (line 99) | def __init__(self, arg0: V2d) -> None: method __init__ (line 110) | def __init__(self, arg0: V2d, arg1: V2d) -> None: method center (line 120) | def center(self) -> V2d: method extendBy (line 123) | def extendBy(self, arg0: V2d) -> None: method extendBy (line 132) | def extendBy(self, arg0: Box2d) -> None: method intersects (line 141) | def intersects(self, arg0: V2d) -> bool: method intersects (line 150) | def intersects(self, arg0: Box2d) -> bool: method __eq__ (line 158) | def __eq__(self, arg0: object) -> bool: method __ne__ (line 160) | def __ne__(self, arg0: object) -> bool: class CannotComputeAvailableRangeError (line 163) | class CannotComputeAvailableRangeError(OTIOError): ... class Clip (line 165) | class Clip(Item): method __init__ (line 175) | def __init__(self, name: str = ..., media_reference: MediaReference = ... method media_references (line 177) | def media_references(self) -> dict[str, MediaReference]: method set_media_references (line 179) | def set_media_references(self, arg0: dict[str, MediaReference], arg1: ... class Composable (line 182) | class Composable(SerializableObjectWithMetadata): method __init__ (line 186) | def __init__(self, name: str = ..., metadata: object = ...) -> None: method overlapping (line 188) | def overlapping(self) -> bool: method parent (line 190) | def parent(self) -> Composition: method visible (line 192) | def visible(self) -> bool: class Composition (line 195) | class Composition(Item): method __init__ (line 217) | def __init__(self, name: str = ..., children: list[Composable] | None ... method __internal_insert (line 219) | def __internal_insert(self, index: int, item: Composable) -> None: method child_at_time (line 221) | def child_at_time(self, search_time: opentimelineio._opentime.Rational... method children_in_range (line 223) | def children_in_range(self, search_range: opentimelineio._opentime.Tim... method find_children (line 225) | def find_children(self, descended_from_type: object = ..., search_rang... method handles_of_child (line 227) | def handles_of_child(self, child: Composable) -> tuple: method has_clips (line 229) | def has_clips(self) -> bool: method is_parent_of (line 231) | def is_parent_of(self, other: Composable) -> bool: method range_of_all_children (line 233) | def range_of_all_children(self) -> dict: method range_of_child (line 235) | def range_of_child(self, child: Composable, reference_space: Composabl... method range_of_child_at_index (line 237) | def range_of_child_at_index(self, index: int) -> opentimelineio._opent... method trim_child_range (line 239) | def trim_child_range(self, child_range: opentimelineio._opentime.TimeR... method trimmed_child_range (line 241) | def trimmed_child_range(self, child_range: opentimelineio._opentime.Ti... method trimmed_range_of_child (line 243) | def trimmed_range_of_child(self, child: Composable, reference_space: C... method trimmed_range_of_child_at_index (line 245) | def trimmed_range_of_child_at_index(self, index: int) -> opentimelinei... method __contains__ (line 247) | def __contains__(self, composable: Composable) -> bool: method __internal_delitem__ (line 249) | def __internal_delitem__(self, index: int) -> None: method __internal_getitem__ (line 251) | def __internal_getitem__(self, index: int) -> Composable: method __internal_setitem__ (line 253) | def __internal_setitem__(self, index: int, item: Composable) -> None: method __iter__ (line 255) | def __iter__(self) -> CompositionIterator: method __len__ (line 257) | def __len__(self) -> int: method composition_kind (line 260) | def composition_kind(self) -> str: class CompositionIterator (line 263) | class CompositionIterator: method __init__ (line 264) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 266) | def __iter__(self) -> CompositionIterator: method __next__ (line 268) | def __next__(self) -> Composable: class Effect (line 271) | class Effect(SerializableObjectWithMetadata): method __init__ (line 273) | def __init__(self, name: str = ..., effect_name: str = ..., metadata: ... class EffectVector (line 276) | class EffectVector: method __init__ (line 296) | def __init__(self) -> None: method __internal_insert (line 298) | def __internal_insert(self, index: int, item) -> None: method __internal_delitem__ (line 300) | def __internal_delitem__(self, index: int) -> None: method __internal_getitem__ (line 302) | def __internal_getitem__(self, *args, **kwargs): method __internal_setitem__ (line 304) | def __internal_setitem__(self, index: int, item) -> None: method __iter__ (line 306) | def __iter__(self) -> EffectVectorIterator: method __len__ (line 308) | def __len__(self) -> int: class EffectVectorIterator (line 311) | class EffectVectorIterator: method __init__ (line 312) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 314) | def __iter__(self) -> EffectVectorIterator: method __next__ (line 316) | def __next__(self): class ExternalReference (line 319) | class ExternalReference(MediaReference): method __init__ (line 321) | def __init__(self, target_url: str = ..., available_range: opentimelin... class FreezeFrame (line 324) | class FreezeFrame(LinearTimeWarp): method __init__ (line 326) | def __init__(self, name: str = ..., metadata: object = ...) -> None: class Gap (line 329) | class Gap(Item): method __init__ (line 331) | def __init__(self, name: str = ..., source_range: opentimelineio._open... method __init__ (line 340) | def __init__(self, name: str = ..., duration: opentimelineio._opentime... class GeneratorReference (line 349) | class GeneratorReference(MediaReference): method __init__ (line 351) | def __init__(self, name: str = ..., generator_kind: str = ..., availab... method parameters (line 354) | def parameters(self) -> AnyDictionary: class ImageSequenceReference (line 357) | class ImageSequenceReference(MediaReference): class MissingFramePolicy (line 426) | class MissingFramePolicy: method __init__ (line 441) | def __init__(self, value: int) -> None: method __eq__ (line 443) | def __eq__(self, other: object) -> bool: method __hash__ (line 445) | def __hash__(self) -> int: method __index__ (line 447) | def __index__(self) -> int: method __int__ (line 449) | def __int__(self) -> int: method __ne__ (line 451) | def __ne__(self, other: object) -> bool: method name (line 454) | def name(self) -> str: method value (line 460) | def value(self) -> int: method __init__ (line 472) | def __init__(self, target_url_base: str = ..., name_prefix: str = ...,... method end_frame (line 474) | def end_frame(self) -> int: method frame_for_time (line 479) | def frame_for_time(self, time: opentimelineio._opentime.RationalTime) ... method number_of_images_in_sequence (line 484) | def number_of_images_in_sequence(self) -> int: method presentation_time_for_image_number (line 489) | def presentation_time_for_image_number(self, image_number: int) -> ope... method target_url_for_image_number (line 494) | def target_url_for_image_number(self, image_number: int) -> str: class Item (line 508) | class Item(Composable): method __init__ (line 511) | def __init__(self, name: str = ..., source_range: opentimelineio._open... method available_range (line 513) | def available_range(self) -> opentimelineio._opentime.TimeRange: method duration (line 515) | def duration(self) -> opentimelineio._opentime.RationalTime: method range_in_parent (line 517) | def range_in_parent(self) -> opentimelineio._opentime.TimeRange: method transformed_time (line 519) | def transformed_time(self, time: opentimelineio._opentime.RationalTime... method transformed_time_range (line 521) | def transformed_time_range(self, time_range: opentimelineio._opentime.... method trimmed_range (line 523) | def trimmed_range(self) -> opentimelineio._opentime.TimeRange: method trimmed_range_in_parent (line 525) | def trimmed_range_in_parent(self) -> opentimelineio._opentime.TimeRang... method visible_range (line 527) | def visible_range(self) -> opentimelineio._opentime.TimeRange: method available_image_bounds (line 530) | def available_image_bounds(self) -> Box2d | None: method effects (line 533) | def effects(self) -> EffectVector: method markers (line 536) | def markers(self) -> MarkerVector: class LinearTimeWarp (line 539) | class LinearTimeWarp(TimeEffect): method __init__ (line 544) | def __init__(self, name: str = ..., time_scalar: float = ..., metadata... class Marker (line 547) | class Marker(SerializableObjectWithMetadata): class Color (line 554) | class Color: method __init__ (line 566) | def __init__(self, *args, **kwargs) -> None: method __init__ (line 571) | def __init__(self, name: str = ..., marked_range: opentimelineio._open... class MarkerVector (line 574) | class MarkerVector: method __init__ (line 594) | def __init__(self) -> None: method __internal_insert (line 596) | def __internal_insert(self, index: int, item) -> None: method __internal_delitem__ (line 598) | def __internal_delitem__(self, index: int) -> None: method __internal_getitem__ (line 600) | def __internal_getitem__(self, *args, **kwargs): method __internal_setitem__ (line 602) | def __internal_setitem__(self, index: int, item) -> None: method __iter__ (line 604) | def __iter__(self) -> MarkerVectorIterator: method __len__ (line 606) | def __len__(self) -> int: class MarkerVectorIterator (line 609) | class MarkerVectorIterator: method __init__ (line 610) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 612) | def __iter__(self) -> MarkerVectorIterator: method __next__ (line 614) | def __next__(self): class MediaReference (line 617) | class MediaReference(SerializableObjectWithMetadata): method __init__ (line 620) | def __init__(self, name: str = ..., available_range: opentimelineio._o... method is_missing_reference (line 623) | def is_missing_reference(self) -> bool: class MissingReference (line 626) | class MissingReference(MediaReference): method __init__ (line 632) | def __init__(self, name: str = ..., available_range: opentimelineio._o... class NotAChildError (line 635) | class NotAChildError(OTIOError): ... class OTIOError (line 637) | class OTIOError(Exception): ... class PyAny (line 639) | class PyAny: method __init__ (line 641) | def __init__(self, arg0: bool) -> None: method __init__ (line 668) | def __init__(self, arg0: int) -> None: method __init__ (line 695) | def __init__(self, arg0: float) -> None: method __init__ (line 722) | def __init__(self, arg0: str) -> None: method __init__ (line 749) | def __init__(self, arg0: None) -> None: method __init__ (line 776) | def __init__(self, arg0: SerializableObject) -> None: method __init__ (line 803) | def __init__(self, arg0: opentimelineio._opentime.RationalTime) -> None: method __init__ (line 830) | def __init__(self, arg0: opentimelineio._opentime.TimeRange) -> None: method __init__ (line 857) | def __init__(self, arg0: opentimelineio._opentime.TimeTransform) -> None: method __init__ (line 884) | def __init__(self, arg0: AnyVector) -> None: method __init__ (line 911) | def __init__(self, arg0: AnyDictionary) -> None: class SerializableCollection (line 938) | class SerializableCollection(SerializableObjectWithMetadata): method __init__ (line 965) | def __init__(self, name: str = ..., children: list[SerializableObject]... method __internal_insert (line 967) | def __internal_insert(self, index: int, item: SerializableObject) -> N... method find_children (line 969) | def find_children(self, descended_from_type: object = ..., search_rang... method find_clips (line 971) | def find_clips(self, search_range: opentimelineio._opentime.TimeRange ... method __internal_delitem__ (line 973) | def __internal_delitem__(self, index: int) -> None: method __internal_getitem__ (line 975) | def __internal_getitem__(self, index: int) -> SerializableObject: method __internal_setitem__ (line 977) | def __internal_setitem__(self, index: int, item: SerializableObject) -... method __iter__ (line 979) | def __iter__(self) -> SerializableCollectionIterator: method __len__ (line 981) | def __len__(self) -> int: class SerializableCollectionIterator (line 984) | class SerializableCollectionIterator: method __init__ (line 985) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 987) | def __iter__(self) -> SerializableCollectionIterator: method __next__ (line 989) | def __next__(self) -> SerializableObject: class SerializableObject (line 992) | class SerializableObject: method __init__ (line 998) | def __init__(self) -> None: method clone (line 1000) | def clone(self) -> SerializableObject: method from_json_file (line 1003) | def from_json_file(file_name: str) -> SerializableObject: method from_json_string (line 1006) | def from_json_string(input: str) -> SerializableObject: method is_equivalent_to (line 1008) | def is_equivalent_to(self, other: SerializableObject) -> bool: method schema_name (line 1010) | def schema_name(self) -> str: method schema_version (line 1012) | def schema_version(self) -> int: method to_json_file (line 1014) | def to_json_file(self, file_name: str, indent: int = ...) -> bool: method to_json_string (line 1016) | def to_json_string(self, indent: int = ...) -> str: method _dynamic_fields (line 1019) | def _dynamic_fields(self) -> AnyDictionary: method is_unknown_schema (line 1022) | def is_unknown_schema(self) -> bool: class SerializableObjectWithMetadata (line 1025) | class SerializableObjectWithMetadata(SerializableObject): method __init__ (line 1027) | def __init__(self, name: str = ..., metadata: object = ...) -> None: method metadata (line 1030) | def metadata(self) -> AnyDictionary: class Stack (line 1033) | class Stack(Composition): method __init__ (line 1034) | def __init__(self, name: str = ..., children: list[Composable] | None ... method find_clips (line 1036) | def find_clips(self, search_range: opentimelineio._opentime.TimeRange ... class TestObject (line 1039) | class TestObject(SerializableObjectWithMetadata): method __init__ (line 1040) | def __init__(self, name: str) -> None: method lookup (line 1042) | def lookup(self, key: str) -> SerializableObject: class TimeEffect (line 1045) | class TimeEffect(Effect): method __init__ (line 1047) | def __init__(self, name: str = ..., effect_name: str = ..., metadata: ... class Timeline (line 1050) | class Timeline(SerializableObjectWithMetadata): method __init__ (line 1053) | def __init__(self, name: str = ..., tracks: list[Composable] | None = ... method audio_tracks (line 1055) | def audio_tracks(self) -> list[Track]: method duration (line 1057) | def duration(self) -> opentimelineio._opentime.RationalTime: method find_children (line 1059) | def find_children(self, descended_from_type: object = ..., search_rang... method find_clips (line 1061) | def find_clips(self, search_range: opentimelineio._opentime.TimeRange ... method range_of_child (line 1063) | def range_of_child(self, arg0: Composable) -> opentimelineio._opentime... method video_tracks (line 1065) | def video_tracks(self) -> list[Track]: class Track (line 1068) | class Track(Composition): class Kind (line 1069) | class Kind: method __init__ (line 1072) | def __init__(self, *args, **kwargs) -> None: class NeighborGapPolicy (line 1075) | class NeighborGapPolicy: method __init__ (line 1085) | def __init__(self, value: int) -> None: method __eq__ (line 1087) | def __eq__(self, other: object) -> bool: method __hash__ (line 1089) | def __hash__(self) -> int: method __index__ (line 1091) | def __index__(self) -> int: method __int__ (line 1093) | def __int__(self) -> int: method __ne__ (line 1095) | def __ne__(self, other: object) -> bool: method name (line 1098) | def name(self) -> str: method value (line 1104) | def value(self) -> int: method __init__ (line 1107) | def __init__(self, name: str = ..., children: list[Composable] | None ... method find_clips (line 1109) | def find_clips(self, search_range: opentimelineio._opentime.TimeRange ... method neighbors_of (line 1111) | def neighbors_of(self, item: Composable, policy: Track.NeighborGapPoli... class Transition (line 1114) | class Transition(Composable): class Type (line 1117) | class Type: method __init__ (line 1125) | def __init__(self, *args, **kwargs) -> None: method __init__ (line 1130) | def __init__(self, name: str = ..., transition_type: str = ..., in_off... method duration (line 1132) | def duration(self) -> opentimelineio._opentime.RationalTime: method range_in_parent (line 1134) | def range_in_parent(self) -> opentimelineio._opentime.TimeRange | None: method trimmed_range_in_parent (line 1139) | def trimmed_range_in_parent(self) -> opentimelineio._opentime.TimeRang... class UnknownSchema (line 1145) | class UnknownSchema(SerializableObject): method __init__ (line 1146) | def __init__(self, *args, **kwargs) -> None: method original_schema_name (line 1149) | def original_schema_name(self) -> str: method original_schema_version (line 1152) | def original_schema_version(self) -> int: class UnsupportedSchemaError (line 1155) | class UnsupportedSchemaError(OTIOError): ... class V2d (line 1157) | class V2d: method __init__ (line 1161) | def __init__(self) -> None: method __init__ (line 1172) | def __init__(self, arg0: float) -> None: method __init__ (line 1183) | def __init__(self, arg0: float, arg1: float) -> None: method baseTypeEpsilon (line 1194) | def baseTypeEpsilon() -> float: method baseTypeLowest (line 1197) | def baseTypeLowest() -> float: method baseTypeMax (line 1200) | def baseTypeMax() -> float: method baseTypeSmallest (line 1203) | def baseTypeSmallest() -> float: method cross (line 1205) | def cross(self, arg0: V2d) -> float: method dimensions (line 1208) | def dimensions() -> int: method dot (line 1210) | def dot(self, arg0: V2d) -> float: method equalWithAbsError (line 1212) | def equalWithAbsError(self, arg0: V2d, arg1: float) -> bool: method equalWithRelError (line 1214) | def equalWithRelError(self, arg0: V2d, arg1: float) -> bool: method length (line 1216) | def length(self) -> float: method length2 (line 1218) | def length2(self) -> float: method normalize (line 1220) | def normalize(self) -> V2d: method normalizeExc (line 1222) | def normalizeExc(self) -> V2d: method normalizeNonNull (line 1224) | def normalizeNonNull(self) -> V2d: method normalized (line 1226) | def normalized(self) -> V2d: method normalizedExc (line 1228) | def normalizedExc(self) -> V2d: method normalizedNonNull (line 1230) | def normalizedNonNull(self) -> V2d: method __add__ (line 1232) | def __add__(self, arg0: V2d) -> V2d: method __eq__ (line 1234) | def __eq__(self, arg0: object) -> bool: method __getitem__ (line 1236) | def __getitem__(self, arg0: int) -> float: method __iter__ (line 1238) | def __iter__(self) -> typing.Iterator[float]: method __iadd__ (line 1240) | def __iadd__(self, arg0: V2d) -> V2d: method __idiv__ (line 1242) | def __idiv__(self, arg0: V2d) -> V2d: method __imul__ (line 1244) | def __imul__(self, arg0: V2d) -> V2d: method __isub__ (line 1246) | def __isub__(self, arg0: V2d) -> V2d: method __mod__ (line 1248) | def __mod__(self, arg0: object) -> float: method __mul__ (line 1250) | def __mul__(self, arg0: V2d) -> V2d: method __ne__ (line 1252) | def __ne__(self, arg0: object) -> bool: method __sub__ (line 1254) | def __sub__(self, arg0: V2d) -> V2d: method __truediv__ (line 1256) | def __truediv__(self, arg0: V2d) -> V2d: method __xor__ (line 1258) | def __xor__(self, arg0: object) -> float: function _serialize_json_to_file (line 1261) | def _serialize_json_to_file(value: PyAny, filename: str, schema_version_... function _serialize_json_to_string (line 1263) | def _serialize_json_to_string(value: PyAny, schema_version_targets: dict... function deserialize_json_from_file (line 1265) | def deserialize_json_from_file(filename: str) -> object: function deserialize_json_from_string (line 1277) | def deserialize_json_from_string(input: str) -> object: function flatten_stack (line 1290) | def flatten_stack(in_stack: Stack) -> Track: function flatten_stack (line 1299) | def flatten_stack(tracks: list[Track]) -> Track: function install_external_keepalive_monitor (line 1307) | def install_external_keepalive_monitor(so: SerializableObject, apply_now... function instance_from_schema (line 1309) | def instance_from_schema(schema_name: str, schema_version: int, data: ob... function register_downgrade_function (line 1318) | def register_downgrade_function(schema_name: str, version_to_downgrade_f... function register_serializable_object_type (line 1320) | def register_serializable_object_type(class_object: object, schema_name:... function register_upgrade_function (line 1322) | def register_upgrade_function(schema_name: str, version_to_upgrade_to: i... function release_to_schema_version_map (line 1324) | def release_to_schema_version_map() -> dict[str, dict[str, int]]: function set_type_record (line 1334) | def set_type_record(serializable_obejct: SerializableObject, schema_name... function type_version_map (line 1336) | def type_version_map() -> dict[str, int]: FILE: otio/stubs/opentimelineio-stubs/adapters/__init__.pyi function suffixes_with_defined_adapters (line 6) | def suffixes_with_defined_adapters(read: bool = False, write: bool = Fal... function available_adapter_names (line 8) | def available_adapter_names(): function from_filepath (line 10) | def from_filepath(filepath): function from_name (line 15) | def from_name(name): function read_from_file (line 17) | def read_from_file(filepath, adapter_name=None, media_linker_name=..., m... function read_from_string (line 28) | def read_from_string(input_str, adapter_name: str = 'otio_json', media_l... function write_to_file (line 40) | def write_to_file(input_otio, filepath, adapter_name=None, **adapter_arg... function write_to_string (line 51) | def write_to_string(input_otio, adapter_name: str = 'otio_json', **adapt... FILE: otio/stubs/opentimelineio-stubs/adapters/adapter.pyi class Adapter (line 4) | class Adapter(plugins.PythonPlugin): # type: ignore[name-defined] method __init__ (line 26) | def __init__(self, name=None, filepath=None, suffixes=None) -> None: ... method has_feature (line 27) | def has_feature(self, feature_string): method read_from_file (line 34) | def read_from_file(self, filepath, media_linker_name=..., media_linker... method write_to_file (line 40) | def write_to_file(self, input_otio, filepath, hook_function_argument_m... method read_from_string (line 46) | def read_from_string(self, input_str, media_linker_name=..., media_lin... method write_to_string (line 48) | def write_to_string(self, input_otio, hook_function_argument_map=None,... method __str__ (line 50) | def __str__(self) -> str: ... method __repr__ (line 51) | def __repr__(self) -> str: ... method plugin_info_map (line 52) | def plugin_info_map(self): function _with_linked_media_references (line 55) | def _with_linked_media_references(read_otio, media_linker_name, media_li... FILE: otio/stubs/opentimelineio-stubs/adapters/file_bundle_utils.pyi class NotAFileOnDisk (line 8) | class NotAFileOnDisk(exceptions.OTIOError): ... # type: ignore[name-def... class MediaReferencePolicy (line 10) | class MediaReferencePolicy: function reference_cloned_and_missing (line 15) | def reference_cloned_and_missing(orig_mr, reason_missing): function _guarantee_unique_basenames (line 20) | def _guarantee_unique_basenames(path_list, adapter_name) -> None: ... function _prepped_otio_for_bundle_and_manifest (line 21) | def _prepped_otio_for_bundle_and_manifest(input_otio, media_policy, adap... function _total_file_size_of (line 34) | def _total_file_size_of(filepaths): ... FILE: otio/stubs/opentimelineio-stubs/adapters/otio_json.pyi function read_from_file (line 5) | def read_from_file(filepath): function read_from_string (line 15) | def read_from_string(input_str): function _fetch_downgrade_map_from_env (line 25) | def _fetch_downgrade_map_from_env(): ... function write_to_string (line 26) | def write_to_string(input_otio, target_schema_versions=None, indent: int... function write_to_file (line 47) | def write_to_file(input_otio, filepath, target_schema_versions=None, ind... FILE: otio/stubs/opentimelineio-stubs/adapters/otiod.pyi function read_from_file (line 4) | def read_from_file(filepath, absolute_media_reference_paths: bool = Fals... function write_to_file (line 5) | def write_to_file(input_otio, filepath, media_policy=..., dryrun: bool =... FILE: otio/stubs/opentimelineio-stubs/adapters/otioz.pyi function read_from_file (line 4) | def read_from_file(filepath, extract_to_directory=None): ... function write_to_file (line 5) | def write_to_file(input_otio, filepath, media_policy=..., dryrun: bool =... FILE: otio/stubs/opentimelineio-stubs/algorithms/filter.pyi function _is_in (line 3) | def _is_in(thing, container): ... function _isinstance_in (line 4) | def _isinstance_in(child, typelist): ... function filtered_composition (line 5) | def filtered_composition(root, unary_filter_fn, types_to_prune=None): function _safe_parent (line 74) | def _safe_parent(child): ... function filtered_with_sequence_context (line 75) | def filtered_with_sequence_context(root, reduce_fn, types_to_prune=None): FILE: otio/stubs/opentimelineio-stubs/algorithms/stack_algo.pyi function top_clip_at_time (line 6) | def top_clip_at_time(in_stack, t): FILE: otio/stubs/opentimelineio-stubs/algorithms/timeline_algo.pyi function timeline_trimmed_to_range (line 3) | def timeline_trimmed_to_range(in_timeline, trim_range): FILE: otio/stubs/opentimelineio-stubs/algorithms/track_algo.pyi function track_trimmed_to_range (line 3) | def track_trimmed_to_range(in_track, trim_range): function track_with_expanded_transitions (line 20) | def track_with_expanded_transitions(in_track): function _expand_transition (line 41) | def _expand_transition(target_transition, from_track): function _trim_from_transitions (line 45) | def _trim_from_transitions(thing, pre=None, post=None): FILE: otio/stubs/opentimelineio-stubs/console/autogen_plugin_documentation.pyi function _parsed_args (line 13) | def _parsed_args(): function _format_plugin (line 15) | def _format_plugin(plugin_map, extra_stuff, sanitized_paths): ... function _format_doc (line 16) | def _format_doc(docstring, prefix): function _format_adapters (line 18) | def _format_adapters(plugin_map): ... function _format_schemadefs (line 19) | def _format_schemadefs(plugin_map): ... function _manifest_formatted (line 23) | def _manifest_formatted(plugin_info_map, manifest_paths=None, sanitized_... function generate_and_write_documentation_plugins (line 24) | def generate_and_write_documentation_plugins(public_only: bool = False, ... function main (line 25) | def main() -> None: FILE: otio/stubs/opentimelineio-stubs/console/autogen_serialized_datamodel.pyi function _parsed_args (line 12) | def _parsed_args(): function _generate_model_for_module (line 19) | def _generate_model_for_module(mod, classes, modules): ... function _generate_model (line 20) | def _generate_model(): ... function _search_mod_recursively (line 21) | def _search_mod_recursively(cl, mod_to_search, already_searched): ... function _remap_to_python_modules (line 22) | def _remap_to_python_modules(cl): function _write_documentation (line 26) | def _write_documentation(model): ... function main (line 27) | def main() -> None: function generate_and_write_documentation (line 29) | def generate_and_write_documentation(): ... FILE: otio/stubs/opentimelineio-stubs/console/autogen_version_map.pyi function _parsed_args (line 5) | def _parsed_args(): ... function generate_core_version_map (line 6) | def generate_core_version_map(src_text, label, version_map): ... function main (line 7) | def main() -> None: ... FILE: otio/stubs/opentimelineio-stubs/console/console_utils.pyi function arg_list_to_map (line 3) | def arg_list_to_map(arg_list, label): function media_linker_name (line 7) | def media_linker_name(ml_name_arg): FILE: otio/stubs/opentimelineio-stubs/console/otiocat.pyi function _parsed_args (line 1) | def _parsed_args(): function _otio_compatible_file_to_json_string (line 3) | def _otio_compatible_file_to_json_string(fpath, media_linker_name, hooks... function main (line 7) | def main() -> None: FILE: otio/stubs/opentimelineio-stubs/console/otioconvert.pyi function _parsed_args (line 5) | def _parsed_args(): function main (line 7) | def main() -> None: FILE: otio/stubs/opentimelineio-stubs/console/otiopluginfo.pyi function _parsed_args (line 5) | def _parsed_args(): function _supported_features_formatted (line 7) | def _supported_features_formatted(feature_map, _) -> None: ... function _schemadefs_formatted (line 8) | def _schemadefs_formatted(feature_map, args) -> None: ... function _docs_formatted (line 9) | def _docs_formatted(docstring, arg_map, indent: int = 4) -> None: ... function _print_field (line 14) | def _print_field(key, val, **args) -> None: ... function main (line 15) | def main() -> None: FILE: otio/stubs/opentimelineio-stubs/console/otiostat.pyi function _parsed_args (line 3) | def _parsed_args(): function stat_check (line 8) | def stat_check(name): ... function _did_parse (line 9) | def _did_parse(input): ... function _top_level_object (line 10) | def _top_level_object(input): ... function _num_tracks (line 11) | def _num_tracks(input): ... function _equal_length_tracks (line 12) | def _equal_length_tracks(tl): ... function _deepest_nesting (line 13) | def _deepest_nesting(input): ... function _num_clips (line 14) | def _num_clips(input): ... function _total_duration (line 15) | def _total_duration(input): ... function _total_duration_timecode (line 16) | def _total_duration_timecode(input): ... function _top_level_rate (line 17) | def _top_level_rate(input): ... function _clips_with_cdl_data (line 18) | def _clips_with_cdl_data(input): ... function _sequences_with_non_standard_types (line 19) | def _sequences_with_non_standard_types(input): ... function _stat_otio (line 20) | def _stat_otio(input_otio) -> None: ... function main (line 21) | def main() -> None: FILE: otio/stubs/opentimelineio-stubs/console/otiotool.pyi function main (line 3) | def main() -> None: function parse_arguments (line 8) | def parse_arguments(): ... function read_inputs (line 9) | def read_inputs(input_paths): function keep_only_video_tracks (line 13) | def keep_only_video_tracks(timeline) -> None: function keep_only_audio_tracks (line 15) | def keep_only_audio_tracks(timeline) -> None: function filter_transitions (line 17) | def filter_transitions(timelines): function _filter (line 20) | def _filter(item, names, patterns): function filter_tracks (line 25) | def filter_tracks(only_tracks_with_name, only_tracks_with_index, timelin... function filter_clips (line 28) | def filter_clips(only_clips_with_name, only_clips_with_name_regex, timel... function stack_timelines (line 31) | def stack_timelines(timelines): function concatenate_timelines (line 35) | def concatenate_timelines(timelines): function flatten_timeline (line 39) | def flatten_timeline(timeline, which_tracks: str = 'video', keep: bool =... function time_from_string (line 45) | def time_from_string(text, rate): function trim_timeline (line 50) | def trim_timeline(start, end, timeline) -> None: function remove_metadata_key (line 55) | def remove_metadata_key(timeline, key) -> None: ... function _counter (line 59) | def _counter(name): function redact_timeline (line 61) | def redact_timeline(timeline) -> None: function copy_media (line 64) | def copy_media(url, destination_path): ... function relink_by_name (line 65) | def relink_by_name(timeline, path): function copy_media_to_folder (line 68) | def copy_media_to_folder(timeline, folder) -> None: function print_timeline_stats (line 71) | def print_timeline_stats(timeline) -> None: function inspect_timelines (line 73) | def inspect_timelines(name_regex, timeline) -> None: function summarize_timeline (line 76) | def summarize_timeline(list_tracks, list_clips, list_media, verify_media... function write_output (line 79) | def write_output(output_path, output) -> None: FILE: otio/stubs/opentimelineio-stubs/core/__init__.pyi function serialize_json_to_string (line 6) | def serialize_json_to_string(root, schema_version_targets=None, indent: ... function serialize_json_to_file (line 23) | def serialize_json_to_file(root, filename, schema_version_targets=None, ... function register_type (line 40) | def register_type(classobj, schemaname=None): function upgrade_function_for (line 55) | def upgrade_function_for(cls, version_to_upgrade_to): function downgrade_function_from (line 80) | def downgrade_function_from(cls, version_to_downgrade_from): function serializable_field (line 103) | def serializable_field(name, required_type=None, doc=None, default_value... function deprecated_field (line 142) | def deprecated_field(): FILE: otio/stubs/opentimelineio-stubs/core/_core_utils.pyi function _is_str (line 7) | def _is_str(v): ... function _is_nonstring_sequence (line 8) | def _is_nonstring_sequence(v): ... function _value_to_any (line 9) | def _value_to_any(value, ids=None): ... function _add_mutable_mapping_methods (line 13) | def _add_mutable_mapping_methods(mapClass): ... function _add_mutable_sequence_methods (line 14) | def _add_mutable_sequence_methods(sequenceClass, conversion_func=None, s... function __setattr__ (line 15) | def __setattr__(self, key, value) -> None: ... function add_method (line 16) | def add_method(cls): ... function deepcopy (line 17) | def deepcopy(self, *args, **kwargs): ... function __deepcopy__ (line 18) | def __deepcopy__(self, *args, **kwargs): ... function __copy__ (line 19) | def __copy__(self, *args, **kwargs) -> None: ... FILE: otio/stubs/opentimelineio-stubs/core/composable.pyi function __repr__ (line 4) | def __repr__(self) -> str: ... function __str__ (line 5) | def __str__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/core/composition.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/core/item.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/core/mediaReference.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/exceptions.pyi class CouldNotReadFileError (line 5) | class CouldNotReadFileError(OTIOError): ... class NoKnownAdapterForExtensionError (line 6) | class NoKnownAdapterForExtensionError(OTIOError): ... class ReadingNotSupportedError (line 7) | class ReadingNotSupportedError(OTIOError): ... class WritingNotSupportedError (line 8) | class WritingNotSupportedError(OTIOError): ... class NotSupportedError (line 9) | class NotSupportedError(OTIOError): ... class InvalidSerializableLabelError (line 10) | class InvalidSerializableLabelError(OTIOError): ... class AdapterDoesntSupportFunctionError (line 11) | class AdapterDoesntSupportFunctionError(OTIOError): ... class InstancingNotAllowedError (line 12) | class InstancingNotAllowedError(OTIOError): ... class TransitionFollowingATransitionError (line 13) | class TransitionFollowingATransitionError(OTIOError): ... class MisconfiguredPluginError (line 14) | class MisconfiguredPluginError(OTIOError): ... class CannotTrimTransitionsError (line 15) | class CannotTrimTransitionsError(OTIOError): ... class NoDefaultMediaLinkerError (line 16) | class NoDefaultMediaLinkerError(OTIOError): ... class InvalidEnvironmentVariableError (line 17) | class InvalidEnvironmentVariableError(OTIOError): ... FILE: otio/stubs/opentimelineio-stubs/hooks.pyi class HookScript (line 5) | class HookScript(plugins.PythonPlugin): # type: ignore[name-defined] method __init__ (line 7) | def __init__(self, name=None, filepath=None) -> None: method run (line 9) | def run(self, in_timeline, argument_map={}): method __str__ (line 11) | def __str__(self) -> str: ... method __repr__ (line 12) | def __repr__(self) -> str: ... function names (line 14) | def names(): function available_hookscript_names (line 16) | def available_hookscript_names(): function available_hookscripts (line 18) | def available_hookscripts(): function scripts_attached_to (line 20) | def scripts_attached_to(hook): function run (line 26) | def run(hook, tl, extra_args=None): FILE: otio/stubs/opentimelineio-stubs/media_linker.pyi class MediaLinkingPolicy (line 3) | class MediaLinkingPolicy: function available_media_linker_names (line 8) | def available_media_linker_names(): function from_name (line 10) | def from_name(name): function default_media_linker (line 12) | def default_media_linker(): ... function linked_media_reference (line 13) | def linked_media_reference(target_clip, media_linker_name=..., media_lin... class MediaLinker (line 15) | class MediaLinker(plugins.PythonPlugin): # type: ignore[name-defined] method __init__ (line 17) | def __init__(self, name=None, filepath=None) -> None: ... method link_media_reference (line 18) | def link_media_reference(self, in_clip, media_linker_argument_map=None... method is_default_linker (line 19) | def is_default_linker(self): ... method plugin_info_map (line 20) | def plugin_info_map(self): method __str__ (line 22) | def __str__(self) -> str: ... method __repr__ (line 23) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/opentime.pyi function to_timecode (line 15) | def to_timecode(rt, rate=None, drop_frame=None): function to_nearest_timecode (line 17) | def to_nearest_timecode(rt, rate=None, drop_frame=None): function to_frames (line 19) | def to_frames(rt, rate=None): function to_seconds (line 21) | def to_seconds(rt): function to_time_string (line 23) | def to_time_string(rt): FILE: otio/stubs/opentimelineio-stubs/plugins/manifest.pyi function plugin_entry_points (line 6) | def plugin_entry_points(): function manifest_from_file (line 10) | def manifest_from_file(filepath): function manifest_from_string (line 12) | def manifest_from_string(input_string): class Manifest (line 15) | class Manifest(core.SerializableObject): # type: ignore[name-defined] method __init__ (line 34) | def __init__(self) -> None: ... method extend (line 35) | def extend(self, another_manifest) -> None: method _update_plugin_source (line 42) | def _update_plugin_source(self, path) -> None: method from_filepath (line 44) | def from_filepath(self, suffix): method adapter_module_from_suffix (line 46) | def adapter_module_from_suffix(self, suffix): method from_name (line 48) | def from_name(self, name, kind_list: str = 'adapters'): method adapter_module_from_name (line 50) | def adapter_module_from_name(self, name): method schemadef_module_from_name (line 52) | def schemadef_module_from_name(self, name): function load_manifest (line 57) | def load_manifest(): function ActiveManifest (line 66) | def ActiveManifest(force_reload: bool = False): FILE: otio/stubs/opentimelineio-stubs/plugins/python_plugin.pyi function plugin_info_map (line 5) | def plugin_info_map(): ... class PythonPlugin (line 7) | class PythonPlugin(core.SerializableObject): # type: ignore[name-defined] method __init__ (line 16) | def __init__(self, name=None, filepath=None) -> None: ... method plugin_info_map (line 17) | def plugin_info_map(self): method module_abs_path (line 19) | def module_abs_path(self): method _imported_module (line 21) | def _imported_module(self, namespace): method module (line 23) | def module(self): method _execute_function (line 25) | def _execute_function(self, func_name, **kwargs): FILE: otio/stubs/opentimelineio-stubs/schema/__init__.pyi function timeline_from_clips (line 11) | def timeline_from_clips(clips): FILE: otio/stubs/opentimelineio-stubs/schema/box2d.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/clip.pyi function __str__ (line 6) | def __str__(self) -> str: ... function __repr__ (line 7) | def __repr__(self) -> str: ... function find_clips (line 8) | def find_clips(self, search_range=None) -> Generator[Incomplete]: ... FILE: otio/stubs/opentimelineio-stubs/schema/effect.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/external_reference.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/generator_reference.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/image_sequence_reference.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... function frame_range_for_time_range (line 6) | def frame_range_for_time_range(self, time_range): function abstract_target_url (line 13) | def abstract_target_url(self, symbol): FILE: otio/stubs/opentimelineio-stubs/schema/marker.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/schemadef.pyi class SchemaDef (line 4) | class SchemaDef(plugins.PythonPlugin): # type: ignore[name-defined] method __init__ (line 6) | def __init__(self, name=None, filepath=None) -> None: ... method module (line 8) | def module(self): method plugin_info_map (line 16) | def plugin_info_map(self): method __str__ (line 19) | def __str__(self) -> str: ... method __repr__ (line 20) | def __repr__(self) -> str: ... function available_schemadef_names (line 22) | def available_schemadef_names(): function from_name (line 24) | def from_name(name): function module_from_name (line 26) | def module_from_name(name): FILE: otio/stubs/opentimelineio-stubs/schema/serializable_collection.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/timeline.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/transition.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schema/v2d.pyi function __str__ (line 4) | def __str__(self) -> str: ... function __repr__ (line 5) | def __repr__(self) -> str: ... FILE: otio/stubs/opentimelineio-stubs/schemadef/__init__.pyi function _add_schemadef_module (line 1) | def _add_schemadef_module(name, mod) -> None: FILE: otio/stubs/opentimelineio-stubs/url_utils.pyi function url_from_filepath (line 1) | def url_from_filepath(fpath): function filepath_from_url (line 3) | def filepath_from_url(urlstr): FILE: otio/stubs/opentimelineio-stubs/versioning.pyi function full_map (line 3) | def full_map(): function fetch_map (line 39) | def fetch_map(family, label): FILE: pyside/stubgen_pyside.py function short_name (line 45) | def short_name(type_name: str) -> str: function get_type_fullname (line 49) | def get_type_fullname(typ: type) -> str: class PySideHelper (line 58) | class PySideHelper: method __init__ (line 62) | def __init__(self) -> None: method is_pyside_obj (line 68) | def is_pyside_obj(self, typ: type) -> bool: method is_flag (line 72) | def is_flag(self, typ: type) -> bool: method is_flag_group (line 89) | def is_flag_group(self, typ: type) -> bool: method is_flag_item (line 108) | def is_flag_item(self, typ: type) -> bool: method record_flag (line 123) | def record_flag(self, flag: type) -> None: method get_group_from_flag_item (line 130) | def get_group_from_flag_item(self, item_type: type) -> type: method get_flag_union (line 140) | def get_flag_union(self, type_name: str | None) -> Optional[str]: method guess_type_from_property (line 152) | def guess_type_from_property( method get_properties (line 201) | def get_properties(self, typ: type) -> Mapping[str, str]: method add_property_args (line 281) | def add_property_args(self, typ: type, sigs: List[FunctionSig]) -> None: method set_pyside_version (line 301) | def set_pyside_version(self, version: int) -> None: method pyside_package (line 311) | def pyside_package(self) -> str: method shiboken_package (line 317) | def shiboken_package(self) -> str: method new_members (line 323) | def new_members(self) -> dict[str, list[tuple[str, object]]]: method add_version_info (line 336) | def add_version_info(self) -> None: class PySideSignatureGenerator (line 344) | class PySideSignatureGenerator(AdvancedSignatureGenerator): method sig_matcher (line 346) | def sig_matcher(self) -> AdvancedSigMatcher: # type: ignore[override] method flag_overrides (line 645) | def flag_overrides(self) -> dict[str, str]: method get_property_type (line 670) | def get_property_type( method _is_flag_type (line 675) | def _is_flag_type(self, ctx: FunctionContext) -> bool: method get_signature_str (line 689) | def get_signature_str(self, ctx: FunctionContext) -> str | list[str] |... method process_arg (line 704) | def process_arg(self, ctx: FunctionContext, arg: ArgSig) -> None: method process_sig (line 735) | def process_sig(self, ctx: FunctionContext, sig: FunctionSig) -> Funct... method process_sigs (line 745) | def process_sigs( method get_function_sig (line 765) | def get_function_sig( class InspectionStubGenerator (line 775) | class InspectionStubGenerator(mypy.stubgenc.InspectionStubGenerator): method __init__ (line 802) | def __init__(self, *args: Any, **kwargs: Any) -> None: method walk_objects (line 816) | def walk_objects(self, obj: object, seen: set[type]) -> None: method get_sig_generators (line 837) | def get_sig_generators(self) -> list[SignatureGenerator]: method _is_skipped_pyside_attribute (line 842) | def _is_skipped_pyside_attribute(self, attr: str, value: Any) -> bool: method add_name (line 854) | def add_name(self, fullname: str, require: bool = True) -> str: method is_method (line 861) | def is_method(self, class_info: ClassInfo, name: str, obj: object) -> ... method strip_or_import (line 867) | def strip_or_import(self, type_name: str) -> str: method _get_members_base (line 872) | def _get_members_base(self, obj: object) -> list[tuple[str, Any]]: method get_members (line 911) | def get_members(self, obj: object) -> list[tuple[str, Any]]: method get_imports (line 923) | def get_imports(self) -> str: method output (line 942) | def output(self) -> str: method get_default_function_sig (line 952) | def get_default_function_sig( method format_func_def (line 959) | def format_func_def( FILE: pyside/stubs/PySide2-stubs/Qt3DAnimation.pyi class Qt3DAnimation (line 14) | class Qt3DAnimation(shiboken2.Object): class QAbstractAnimation (line 15) | class QAbstractAnimation(PySide2.QtCore.QObject): class AnimationType (line 16) | class AnimationType: method __init__ (line 23) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 24) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __and__ (line 25) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __bool__ (line 26) | def __bool__(self) -> bool: ... method __eq__ (line 27) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 28) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 29) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 30) | def __hash__(self) -> int: ... method __index__ (line 31) | def __index__(self) -> int: ... method __int__ (line 32) | def __int__(self) -> int: ... method __le__ (line 33) | def __le__(self, other: object) -> bool: ... method __lt__ (line 34) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 35) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __ne__ (line 36) | def __ne__(self, other: object) -> bool: ... method __or__ (line 37) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbst... method __pos__ (line 38) | def __pos__(self): ... method __radd__ (line 39) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __rand__ (line 40) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __rmul__ (line 41) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __ror__ (line 42) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __rsub__ (line 43) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __rxor__ (line 44) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __sub__ (line 45) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __xor__ (line 46) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __init__ (line 55) | def __init__(cls, *args, animationName: str = ..., animationNameChan... method animationName (line 56) | def animationName(self) -> str: ... method animationType (line 57) | def animationType(self) -> Qt3DAnimation.QAbstractAnimation.Animatio... method duration (line 58) | def duration(self) -> float: ... method position (line 59) | def position(self) -> float: ... method setAnimationName (line 60) | def setAnimationName(self, name: str) -> None: ... method setDuration (line 61) | def setDuration(self, duration: float) -> None: ... method setPosition (line 62) | def setPosition(self, position: float) -> None: ... class QAbstractAnimationClip (line 64) | class QAbstractAnimationClip(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 68) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DAnimation.... method duration (line 69) | def duration(self) -> float: ... class QAbstractChannelMapping (line 71) | class QAbstractChannelMapping(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 74) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DAnimation.... class QAbstractClipAnimator (line 76) | class QAbstractClipAnimator(PySide2.Qt3DCore.Qt3DCore.QComponent): class Loops (line 77) | class Loops: method __init__ (line 82) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 83) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __and__ (line 84) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __bool__ (line 85) | def __bool__(self) -> bool: ... method __eq__ (line 86) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 87) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 88) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 89) | def __hash__(self) -> int: ... method __index__ (line 90) | def __index__(self) -> int: ... method __int__ (line 91) | def __int__(self) -> int: ... method __le__ (line 92) | def __le__(self, other: object) -> bool: ... method __lt__ (line 93) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 94) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __ne__ (line 95) | def __ne__(self, other: object) -> bool: ... method __or__ (line 96) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbst... method __pos__ (line 97) | def __pos__(self): ... method __radd__ (line 98) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __rand__ (line 99) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __rmul__ (line 100) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __ror__ (line 101) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __rsub__ (line 102) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __rxor__ (line 103) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAb... method __sub__ (line 104) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __xor__ (line 105) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAbs... method __init__ (line 113) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method clock (line 114) | def clock(self) -> Qt3DAnimation.QClock: ... method isRunning (line 115) | def isRunning(self) -> bool: ... method loopCount (line 116) | def loopCount(self) -> int: ... method normalizedTime (line 117) | def normalizedTime(self) -> float: ... method setClock (line 118) | def setClock(self, clock: Qt3DAnimation.QClock) -> None: ... method setLoopCount (line 119) | def setLoopCount(self, loops: int) -> None: ... method setNormalizedTime (line 120) | def setNormalizedTime(self, timeFraction: float) -> None: ... method setRunning (line 121) | def setRunning(self, running: bool) -> None: ... method start (line 122) | def start(self) -> None: ... method stop (line 123) | def stop(self) -> None: ... class QAbstractClipBlendNode (line 125) | class QAbstractClipBlendNode(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 127) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QAdditiveClipBlend (line 129) | class QAdditiveClipBlend(Qt3DAnimation.QAbstractClipBlendNode): method __init__ (line 134) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method additiveClip (line 135) | def additiveClip(self) -> Qt3DAnimation.QAbstractClipBlendNode: ... method additiveFactor (line 136) | def additiveFactor(self) -> float: ... method baseClip (line 137) | def baseClip(self) -> Qt3DAnimation.QAbstractClipBlendNode: ... method setAdditiveClip (line 138) | def setAdditiveClip(self, additiveClip: Qt3DAnimation.QAbstractClipB... method setAdditiveFactor (line 139) | def setAdditiveFactor(self, additiveFactor: float) -> None: ... method setBaseClip (line 140) | def setBaseClip(self, baseClip: Qt3DAnimation.QAbstractClipBlendNode... class QAnimationAspect (line 142) | class QAnimationAspect(PySide2.Qt3DCore.Qt3DCore.QAbstractAspect): method __init__ (line 144) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... class QAnimationCallback (line 146) | class QAnimationCallback(shiboken2.Object): class Flag (line 147) | class Flag: method __init__ (line 153) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 154) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __and__ (line 155) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __bool__ (line 156) | def __bool__(self) -> bool: ... method __eq__ (line 157) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 158) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 159) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 160) | def __hash__(self) -> int: ... method __index__ (line 161) | def __index__(self) -> int: ... method __int__ (line 162) | def __int__(self) -> int: ... method __le__ (line 163) | def __le__(self, other: object) -> bool: ... method __lt__ (line 164) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 165) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __ne__ (line 166) | def __ne__(self, other: object) -> bool: ... method __or__ (line 167) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAnim... method __pos__ (line 168) | def __pos__(self): ... method __radd__ (line 169) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __rand__ (line 170) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __rmul__ (line 171) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __ror__ (line 172) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __rsub__ (line 173) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __rxor__ (line 174) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __sub__ (line 175) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __xor__ (line 176) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __init__ (line 179) | def __init__(self) -> None: ... method valueChanged (line 180) | def valueChanged(self, value: typing.Any) -> None: ... class QAnimationClip (line 182) | class QAnimationClip(Qt3DAnimation.QAbstractAnimationClip): method __init__ (line 185) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QAnimationClipLoader (line 187) | class QAnimationClipLoader(Qt3DAnimation.QAbstractAnimationClip): class Status (line 188) | class Status: method __init__ (line 195) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 196) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __and__ (line 197) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __bool__ (line 198) | def __bool__(self) -> bool: ... method __eq__ (line 199) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 200) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 201) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 202) | def __hash__(self) -> int: ... method __index__ (line 203) | def __index__(self) -> int: ... method __int__ (line 204) | def __int__(self) -> int: ... method __le__ (line 205) | def __le__(self, other: object) -> bool: ... method __lt__ (line 206) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 207) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __ne__ (line 208) | def __ne__(self, other: object) -> bool: ... method __or__ (line 209) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAnim... method __pos__ (line 210) | def __pos__(self): ... method __radd__ (line 211) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __rand__ (line 212) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __rmul__ (line 213) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __ror__ (line 214) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __rsub__ (line 215) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __rxor__ (line 216) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAn... method __sub__ (line 217) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __xor__ (line 218) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QAni... method __init__ (line 226) | def __init__(self, source: PySide2.QtCore.QUrl, parent: PySide2.Qt3D... method __init__ (line 228) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setSource (line 229) | def setSource(self, source: PySide2.QtCore.QUrl) -> None: ... method source (line 230) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 231) | def status(self) -> Qt3DAnimation.QAnimationClipLoader.Status: ... class QAnimationController (line 233) | class QAnimationController(PySide2.QtCore.QObject): method __init__ (line 241) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., acti... method activeAnimationGroup (line 242) | def activeAnimationGroup(self) -> int: ... method addAnimationGroup (line 243) | def addAnimationGroup(self, animationGroups: Qt3DAnimation.QAnimatio... method animationGroupList (line 244) | def animationGroupList(self) -> list[Qt3DAnimation.QAnimationGroup]:... method entity (line 245) | def entity(self) -> PySide2.Qt3DCore.Qt3DCore.QEntity: ... method getAnimationIndex (line 246) | def getAnimationIndex(self, name: str) -> int: ... method getGroup (line 247) | def getGroup(self, index: int) -> Qt3DAnimation.QAnimationGroup: ... method position (line 248) | def position(self) -> float: ... method positionOffset (line 249) | def positionOffset(self) -> float: ... method positionScale (line 250) | def positionScale(self) -> float: ... method recursive (line 251) | def recursive(self) -> bool: ... method removeAnimationGroup (line 252) | def removeAnimationGroup(self, animationGroups: Qt3DAnimation.QAnima... method setActiveAnimationGroup (line 253) | def setActiveAnimationGroup(self, index: int) -> None: ... method setAnimationGroups (line 254) | def setAnimationGroups(self, animationGroups: list[Qt3DAnimation.QAn... method setEntity (line 255) | def setEntity(self, entity: PySide2.Qt3DCore.Qt3DCore.QEntity) -> No... method setPosition (line 256) | def setPosition(self, position: float) -> None: ... method setPositionOffset (line 257) | def setPositionOffset(self, offset: float) -> None: ... method setPositionScale (line 258) | def setPositionScale(self, scale: float) -> None: ... method setRecursive (line 259) | def setRecursive(self, recursive: bool) -> None: ... class QAnimationGroup (line 261) | class QAnimationGroup(PySide2.QtCore.QObject): method __init__ (line 266) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method addAnimation (line 267) | def addAnimation(self, animation: Qt3DAnimation.QAbstractAnimation) ... method animationList (line 268) | def animationList(self) -> list[Qt3DAnimation.QAbstractAnimation]: ... method duration (line 269) | def duration(self) -> float: ... method name (line 270) | def name(self) -> str: ... method position (line 271) | def position(self) -> float: ... method removeAnimation (line 272) | def removeAnimation(self, animation: Qt3DAnimation.QAbstractAnimatio... method setAnimations (line 273) | def setAnimations(self, animations: list[Qt3DAnimation.QAbstractAnim... method setName (line 274) | def setName(self, name: str) -> None: ... method setPosition (line 275) | def setPosition(self, position: float) -> None: ... class QBlendedClipAnimator (line 277) | class QBlendedClipAnimator(Qt3DAnimation.QAbstractClipAnimator): method __init__ (line 280) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method blendTree (line 281) | def blendTree(self) -> Qt3DAnimation.QAbstractClipBlendNode: ... method setBlendTree (line 282) | def setBlendTree(self, blendTree: Qt3DAnimation.QAbstractClipBlendNo... class QClipAnimator (line 284) | class QClipAnimator(Qt3DAnimation.QAbstractClipAnimator): method __init__ (line 287) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method clip (line 288) | def clip(self) -> Qt3DAnimation.QAbstractAnimationClip: ... method setClip (line 289) | def setClip(self, clip: Qt3DAnimation.QAbstractAnimationClip) -> Non... class QClock (line 291) | class QClock(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 294) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method playbackRate (line 295) | def playbackRate(self) -> float: ... method setPlaybackRate (line 296) | def setPlaybackRate(self, playbackRate: float) -> None: ... class QKeyFrame (line 298) | class QKeyFrame(shiboken2.Object): class InterpolationType (line 299) | class InterpolationType: method __init__ (line 306) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 307) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __and__ (line 308) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __bool__ (line 309) | def __bool__(self) -> bool: ... method __eq__ (line 310) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 311) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 312) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 313) | def __hash__(self) -> int: ... method __index__ (line 314) | def __index__(self) -> int: ... method __int__ (line 315) | def __int__(self) -> int: ... method __le__ (line 316) | def __le__(self, other: object) -> bool: ... method __lt__ (line 317) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 318) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __ne__ (line 319) | def __ne__(self, other: object) -> bool: ... method __or__ (line 320) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKeyF... method __pos__ (line 321) | def __pos__(self): ... method __radd__ (line 322) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __rand__ (line 323) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __rmul__ (line 324) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __ror__ (line 325) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __rsub__ (line 326) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __rxor__ (line 327) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __sub__ (line 328) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __xor__ (line 329) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __init__ (line 334) | def __init__(self, coords: PySide2.QtGui.QVector2D, lh: PySide2.QtGu... method __init__ (line 336) | def __init__(self, coords: PySide2.QtGui.QVector2D) -> None: ... method __init__ (line 338) | def __init__(self) -> None: ... method coordinates (line 339) | def coordinates(self) -> PySide2.QtGui.QVector2D: ... method interpolationType (line 340) | def interpolationType(self) -> Qt3DAnimation.QKeyFrame.Interpolation... method leftControlPoint (line 341) | def leftControlPoint(self) -> PySide2.QtGui.QVector2D: ... method rightControlPoint (line 342) | def rightControlPoint(self) -> PySide2.QtGui.QVector2D: ... method setCoordinates (line 343) | def setCoordinates(self, coords: PySide2.QtGui.QVector2D) -> None: ... method setInterpolationType (line 344) | def setInterpolationType(self, interp: Qt3DAnimation.QKeyFrame.Inter... method setLeftControlPoint (line 345) | def setLeftControlPoint(self, lh: PySide2.QtGui.QVector2D) -> None: ... method setRightControlPoint (line 346) | def setRightControlPoint(self, rh: PySide2.QtGui.QVector2D) -> None:... class QKeyframeAnimation (line 348) | class QKeyframeAnimation(Qt3DAnimation.QAbstractAnimation): class RepeatMode (line 349) | class RepeatMode: method __init__ (line 356) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 357) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __and__ (line 358) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __bool__ (line 359) | def __bool__(self) -> bool: ... method __eq__ (line 360) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 361) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 362) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 363) | def __hash__(self) -> int: ... method __index__ (line 364) | def __index__(self) -> int: ... method __int__ (line 365) | def __int__(self) -> int: ... method __le__ (line 366) | def __le__(self, other: object) -> bool: ... method __lt__ (line 367) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 368) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __ne__ (line 369) | def __ne__(self, other: object) -> bool: ... method __or__ (line 370) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKeyf... method __pos__ (line 371) | def __pos__(self): ... method __radd__ (line 372) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __rand__ (line 373) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __rmul__ (line 374) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __ror__ (line 375) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __rsub__ (line 376) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __rxor__ (line 377) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKe... method __sub__ (line 378) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __xor__ (line 379) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QKey... method __init__ (line 390) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., anim... method addKeyframe (line 391) | def addKeyframe(self, keyframe: PySide2.Qt3DCore.Qt3DCore.QTransform... method easing (line 392) | def easing(self) -> PySide2.QtCore.QEasingCurve: ... method endMode (line 393) | def endMode(self) -> Qt3DAnimation.QKeyframeAnimation.RepeatMode: ... method framePositions (line 394) | def framePositions(self) -> list[float]: ... method keyframeList (line 395) | def keyframeList(self) -> list[PySide2.Qt3DCore.Qt3DCore.QTransform]... method removeKeyframe (line 396) | def removeKeyframe(self, keyframe: PySide2.Qt3DCore.Qt3DCore.QTransf... method setEasing (line 397) | def setEasing(self, easing: PySide2.QtCore.QEasingCurve | PySide2.Qt... method setEndMode (line 398) | def setEndMode(self, mode: Qt3DAnimation.QKeyframeAnimation.RepeatMo... method setFramePositions (line 399) | def setFramePositions(self, positions: list[float]) -> None: ... method setKeyframes (line 400) | def setKeyframes(self, keyframes: list[PySide2.Qt3DCore.Qt3DCore.QTr... method setStartMode (line 401) | def setStartMode(self, mode: Qt3DAnimation.QKeyframeAnimation.Repeat... method setTarget (line 402) | def setTarget(self, target: PySide2.Qt3DCore.Qt3DCore.QTransform) ->... method setTargetName (line 403) | def setTargetName(self, name: str) -> None: ... method startMode (line 404) | def startMode(self) -> Qt3DAnimation.QKeyframeAnimation.RepeatMode: ... method target (line 405) | def target(self) -> PySide2.Qt3DCore.Qt3DCore.QTransform: ... method targetName (line 406) | def targetName(self) -> str: ... class QLerpClipBlend (line 408) | class QLerpClipBlend(Qt3DAnimation.QAbstractClipBlendNode): method __init__ (line 413) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method blendFactor (line 414) | def blendFactor(self) -> float: ... method endClip (line 415) | def endClip(self) -> Qt3DAnimation.QAbstractClipBlendNode: ... method setBlendFactor (line 416) | def setBlendFactor(self, blendFactor: float) -> None: ... method setEndClip (line 417) | def setEndClip(self, endClip: Qt3DAnimation.QAbstractClipBlendNode) ... method setStartClip (line 418) | def setStartClip(self, startClip: Qt3DAnimation.QAbstractClipBlendNo... method startClip (line 419) | def startClip(self) -> Qt3DAnimation.QAbstractClipBlendNode: ... class QMorphTarget (line 421) | class QMorphTarget(PySide2.QtCore.QObject): method __init__ (line 424) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., attr... method addAttribute (line 425) | def addAttribute(self, attribute: PySide2.Qt3DRender.Qt3DRender.QAtt... method attributeList (line 426) | def attributeList(self) -> list[PySide2.Qt3DRender.Qt3DRender.QAttri... method attributeNames (line 427) | def attributeNames(self) -> list[str]: ... method fromGeometry (line 429) | def fromGeometry(geometry: PySide2.Qt3DRender.Qt3DRender.QGeometry, ... method removeAttribute (line 430) | def removeAttribute(self, attribute: PySide2.Qt3DRender.Qt3DRender.Q... method setAttributes (line 431) | def setAttributes(self, attributes: list[PySide2.Qt3DRender.Qt3DRend... class QMorphingAnimation (line 433) | class QMorphingAnimation(Qt3DAnimation.QAbstractAnimation): class Method (line 434) | class Method: method __init__ (line 440) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 441) | def __add__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMor... method __and__ (line 442) | def __and__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMor... method __bool__ (line 443) | def __bool__(self) -> bool: ... method __eq__ (line 444) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 445) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 446) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 447) | def __hash__(self) -> int: ... method __index__ (line 448) | def __index__(self) -> int: ... method __int__ (line 449) | def __int__(self) -> int: ... method __le__ (line 450) | def __le__(self, other: object) -> bool: ... method __lt__ (line 451) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 452) | def __mul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMor... method __ne__ (line 453) | def __ne__(self, other: object) -> bool: ... method __or__ (line 454) | def __or__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMorp... method __pos__ (line 455) | def __pos__(self): ... method __radd__ (line 456) | def __radd__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMo... method __rand__ (line 457) | def __rand__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMo... method __rmul__ (line 458) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMo... method __ror__ (line 459) | def __ror__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMor... method __rsub__ (line 460) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMo... method __rxor__ (line 461) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMo... method __sub__ (line 462) | def __sub__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMor... method __xor__ (line 463) | def __xor__(self, other: typing.SupportsInt) -> Qt3DAnimation.QMor... method __init__ (line 473) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., anim... method addMorphTarget (line 474) | def addMorphTarget(self, target: Qt3DAnimation.QMorphTarget) -> None... method easing (line 475) | def easing(self) -> PySide2.QtCore.QEasingCurve: ... method getWeights (line 476) | def getWeights(self, positionIndex: int) -> list[float]: ... method interpolator (line 477) | def interpolator(self) -> float: ... method method (line 478) | def method(self) -> Qt3DAnimation.QMorphingAnimation.Method: ... method morphTargetList (line 479) | def morphTargetList(self) -> list[Qt3DAnimation.QMorphTarget]: ... method removeMorphTarget (line 480) | def removeMorphTarget(self, target: Qt3DAnimation.QMorphTarget) -> N... method setEasing (line 481) | def setEasing(self, easing: PySide2.QtCore.QEasingCurve | PySide2.Qt... method setMethod (line 482) | def setMethod(self, method: Qt3DAnimation.QMorphingAnimation.Method)... method setMorphTargets (line 483) | def setMorphTargets(self, targets: list[Qt3DAnimation.QMorphTarget])... method setTarget (line 484) | def setTarget(self, target: PySide2.Qt3DRender.Qt3DRender.QGeometryR... method setTargetName (line 485) | def setTargetName(self, name: str) -> None: ... method setTargetPositions (line 486) | def setTargetPositions(self, targetPositions: list[float]) -> None: ... method setWeights (line 487) | def setWeights(self, positionIndex: int, weights: list[float]) -> No... method target (line 488) | def target(self) -> PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer:... method targetName (line 489) | def targetName(self) -> str: ... method targetPositions (line 490) | def targetPositions(self) -> list[float]: ... class QSkeletonMapping (line 492) | class QSkeletonMapping(Qt3DAnimation.QAbstractChannelMapping): method __init__ (line 495) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setSkeleton (line 496) | def setSkeleton(self, skeleton: PySide2.Qt3DCore.Qt3DCore.QAbstractS... method skeleton (line 497) | def skeleton(self) -> PySide2.Qt3DCore.Qt3DCore.QAbstractSkeleton: ... class QVertexBlendAnimation (line 499) | class QVertexBlendAnimation(Qt3DAnimation.QAbstractAnimation): method __init__ (line 505) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., anim... method addMorphTarget (line 506) | def addMorphTarget(self, target: Qt3DAnimation.QMorphTarget) -> None... method interpolator (line 507) | def interpolator(self) -> float: ... method morphTargetList (line 508) | def morphTargetList(self) -> list[Qt3DAnimation.QMorphTarget]: ... method removeMorphTarget (line 509) | def removeMorphTarget(self, target: Qt3DAnimation.QMorphTarget) -> N... method setMorphTargets (line 510) | def setMorphTargets(self, targets: list[Qt3DAnimation.QMorphTarget])... method setTarget (line 511) | def setTarget(self, target: PySide2.Qt3DRender.Qt3DRender.QGeometryR... method setTargetName (line 512) | def setTargetName(self, name: str) -> None: ... method setTargetPositions (line 513) | def setTargetPositions(self, targetPositions: list[float]) -> None: ... method target (line 514) | def target(self) -> PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer:... method targetName (line 515) | def targetName(self) -> str: ... method targetPositions (line 516) | def targetPositions(self) -> list[float]: ... method __init__ (line 518) | def __init__(cls, *args, **kwargs) -> None: ... FILE: pyside/stubs/PySide2-stubs/Qt3DCore.pyi class Qt3DCore (line 12) | class Qt3DCore(shiboken2.Object): class ChangeFlag (line 13) | class ChangeFlag: method __init__ (line 27) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 28) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags... method __bool__ (line 29) | def __bool__(self) -> bool: ... method __eq__ (line 30) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 31) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 32) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 33) | def __hash__(self) -> int: ... method __index__ (line 34) | def __index__(self) -> int: ... method __int__ (line 35) | def __int__(self) -> int: ... method __invert__ (line 36) | def __invert__(self) -> Qt3DCore.ChangeFlags: ... method __le__ (line 37) | def __le__(self, other: object) -> bool: ... method __lt__ (line 38) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 39) | def __ne__(self, other: object) -> bool: ... method __or__ (line 40) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags:... method __rand__ (line 41) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlag... method __ror__ (line 42) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags... method __rxor__ (line 43) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlag... method __xor__ (line 44) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags... class ChangeFlags (line 46) | class ChangeFlags: method __init__ (line 48) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 49) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags... method __bool__ (line 50) | def __bool__(self) -> bool: ... method __eq__ (line 51) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 52) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 53) | def __gt__(self, other: object) -> bool: ... method __index__ (line 54) | def __index__(self) -> int: ... method __int__ (line 55) | def __int__(self) -> int: ... method __invert__ (line 56) | def __invert__(self) -> Qt3DCore.ChangeFlags: ... method __le__ (line 57) | def __le__(self, other: object) -> bool: ... method __lt__ (line 58) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 59) | def __ne__(self, other: object) -> bool: ... method __or__ (line 60) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags:... method __rand__ (line 61) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlag... method __ror__ (line 62) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags... method __rxor__ (line 63) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlag... method __xor__ (line 64) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.ChangeFlags... class QAbstractAspect (line 66) | class QAbstractAspect(PySide2.QtCore.QObject): method __init__ (line 68) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method rootEntityId (line 69) | def rootEntityId(self) -> Qt3DCore.QNodeId: ... method unregisterBackendType (line 70) | def unregisterBackendType(self, arg__1: PySide2.QtCore.QMetaObject) ... class QAbstractSkeleton (line 72) | class QAbstractSkeleton(Qt3DCore.QNode): method __init__ (line 76) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DCore.QAbst... method jointCount (line 77) | def jointCount(self) -> int: ... class QArmature (line 79) | class QArmature(Qt3DCore.QComponent): method __init__ (line 82) | def __init__(self, parent: Qt3DCore.QNode | None = ..., addedToEntit... method setSkeleton (line 83) | def setSkeleton(self, skeleton: Qt3DCore.QAbstractSkeleton) -> None:... method skeleton (line 84) | def skeleton(self) -> Qt3DCore.QAbstractSkeleton: ... class QAspectEngine (line 86) | class QAspectEngine(PySide2.QtCore.QObject): class RunMode (line 87) | class RunMode: method __init__ (line 93) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 94) | def __add__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEn... method __and__ (line 95) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEn... method __bool__ (line 96) | def __bool__(self) -> bool: ... method __eq__ (line 97) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 98) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 99) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 100) | def __hash__(self) -> int: ... method __index__ (line 101) | def __index__(self) -> int: ... method __int__ (line 102) | def __int__(self) -> int: ... method __le__ (line 103) | def __le__(self, other: object) -> bool: ... method __lt__ (line 104) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 105) | def __mul__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEn... method __ne__ (line 106) | def __ne__(self, other: object) -> bool: ... method __or__ (line 107) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEng... method __pos__ (line 108) | def __pos__(self): ... method __radd__ (line 109) | def __radd__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectE... method __rand__ (line 110) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectE... method __rmul__ (line 111) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectE... method __ror__ (line 112) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEn... method __rsub__ (line 113) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectE... method __rxor__ (line 114) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectE... method __sub__ (line 115) | def __sub__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEn... method __xor__ (line 116) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.QAspectEn... method __init__ (line 120) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method aspects (line 121) | def aspects(self) -> list[Qt3DCore.QAbstractAspect]: ... method executeCommand (line 122) | def executeCommand(self, command: str) -> typing.Any: ... method processFrame (line 123) | def processFrame(self) -> None: ... method registerAspect (line 125) | def registerAspect(self, name: str) -> None: ... method registerAspect (line 127) | def registerAspect(self, aspect: Qt3DCore.QAbstractAspect) -> None: ... method runMode (line 128) | def runMode(self) -> Qt3DCore.QAspectEngine.RunMode: ... method setRunMode (line 129) | def setRunMode(self, mode: Qt3DCore.QAspectEngine.RunMode) -> None: ... method unregisterAspect (line 131) | def unregisterAspect(self, name: str) -> None: ... method unregisterAspect (line 133) | def unregisterAspect(self, aspect: Qt3DCore.QAbstractAspect) -> None... class QAspectJob (line 135) | class QAspectJob(shiboken2.Object): method __init__ (line 136) | def __init__(self) -> None: ... method run (line 137) | def run(self) -> None: ... class QBackendNode (line 139) | class QBackendNode(shiboken2.Object): class Mode (line 140) | class Mode: method __init__ (line 146) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 147) | def __add__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendN... method __and__ (line 148) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendN... method __bool__ (line 149) | def __bool__(self) -> bool: ... method __eq__ (line 150) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 151) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 152) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 153) | def __hash__(self) -> int: ... method __index__ (line 154) | def __index__(self) -> int: ... method __int__ (line 155) | def __int__(self) -> int: ... method __le__ (line 156) | def __le__(self, other: object) -> bool: ... method __lt__ (line 157) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 158) | def __mul__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendN... method __ne__ (line 159) | def __ne__(self, other: object) -> bool: ... method __or__ (line 160) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendNo... method __pos__ (line 161) | def __pos__(self): ... method __radd__ (line 162) | def __radd__(self, other: typing.SupportsInt) -> Qt3DCore.QBackend... method __rand__ (line 163) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.QBackend... method __rmul__ (line 164) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DCore.QBackend... method __ror__ (line 165) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendN... method __rsub__ (line 166) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DCore.QBackend... method __rxor__ (line 167) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.QBackend... method __sub__ (line 168) | def __sub__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendN... method __xor__ (line 169) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.QBackendN... method __init__ (line 172) | def __init__(self, mode: Qt3DCore.QBackendNode.Mode = ...) -> None: ... method isEnabled (line 173) | def isEnabled(self) -> bool: ... method mode (line 174) | def mode(self) -> Qt3DCore.QBackendNode.Mode: ... method peerId (line 175) | def peerId(self) -> Qt3DCore.QNodeId: ... method setEnabled (line 176) | def setEnabled(self, enabled: bool) -> None: ... class QComponent (line 178) | class QComponent(Qt3DCore.QNode): method __init__ (line 183) | def __init__(self, parent: Qt3DCore.QNode | None = ..., addedToEntit... method entities (line 184) | def entities(self) -> list[Qt3DCore.QEntity]: ... method isShareable (line 185) | def isShareable(self) -> bool: ... method setShareable (line 186) | def setShareable(self, isShareable: bool) -> None: ... class QComponentAddedChange (line 188) | class QComponentAddedChange(Qt3DCore.QSceneChange): method __init__ (line 190) | def __init__(self, entity: Qt3DCore.QEntity, component: Qt3DCore.QCo... method __init__ (line 192) | def __init__(self, component: Qt3DCore.QComponent, entity: Qt3DCore.... method componentId (line 193) | def componentId(self) -> Qt3DCore.QNodeId: ... method componentMetaObject (line 194) | def componentMetaObject(self) -> PySide2.QtCore.QMetaObject: ... method entityId (line 195) | def entityId(self) -> Qt3DCore.QNodeId: ... class QComponentRemovedChange (line 197) | class QComponentRemovedChange(Qt3DCore.QSceneChange): method __init__ (line 199) | def __init__(self, entity: Qt3DCore.QEntity, component: Qt3DCore.QCo... method __init__ (line 201) | def __init__(self, component: Qt3DCore.QComponent, entity: Qt3DCore.... method componentId (line 202) | def componentId(self) -> Qt3DCore.QNodeId: ... method componentMetaObject (line 203) | def componentMetaObject(self) -> PySide2.QtCore.QMetaObject: ... method entityId (line 204) | def entityId(self) -> Qt3DCore.QNodeId: ... class QDynamicPropertyUpdatedChange (line 206) | class QDynamicPropertyUpdatedChange(Qt3DCore.QPropertyUpdatedChangeBase): method __init__ (line 207) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method propertyName (line 208) | def propertyName(self) -> PySide2.QtCore.QByteArray: ... method setPropertyName (line 209) | def setPropertyName(self, name: PySide2.QtCore.QByteArray | bytes) -... method setValue (line 210) | def setValue(self, value: typing.Any) -> None: ... method value (line 211) | def value(self) -> typing.Any: ... class QEntity (line 213) | class QEntity(Qt3DCore.QNode): method __init__ (line 215) | def __init__(self, parent: Qt3DCore.QNode | None = ..., defaultPrope... method addComponent (line 216) | def addComponent(self, comp: Qt3DCore.QComponent) -> None: ... method components (line 217) | def components(self) -> list[Qt3DCore.QComponent]: ... method parentEntity (line 218) | def parentEntity(self) -> Qt3DCore.QEntity: ... method removeComponent (line 219) | def removeComponent(self, comp: Qt3DCore.QComponent) -> None: ... class QJoint (line 221) | class QJoint(Qt3DCore.QNode): method __init__ (line 231) | def __init__(self, parent: Qt3DCore.QNode | None = ..., defaultPrope... method addChildJoint (line 232) | def addChildJoint(self, joint: Qt3DCore.QJoint) -> None: ... method childJoints (line 233) | def childJoints(self) -> list[Qt3DCore.QJoint]: ... method inverseBindMatrix (line 234) | def inverseBindMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method name (line 235) | def name(self) -> str: ... method removeChildJoint (line 236) | def removeChildJoint(self, joint: Qt3DCore.QJoint) -> None: ... method rotation (line 237) | def rotation(self) -> PySide2.QtGui.QQuaternion: ... method rotationX (line 238) | def rotationX(self) -> float: ... method rotationY (line 239) | def rotationY(self) -> float: ... method rotationZ (line 240) | def rotationZ(self) -> float: ... method scale (line 241) | def scale(self) -> PySide2.QtGui.QVector3D: ... method setInverseBindMatrix (line 242) | def setInverseBindMatrix(self, inverseBindMatrix: PySide2.QtGui.QMat... method setName (line 243) | def setName(self, name: str) -> None: ... method setRotation (line 244) | def setRotation(self, rotation: PySide2.QtGui.QQuaternion) -> None: ... method setRotationX (line 245) | def setRotationX(self, rotationX: float) -> None: ... method setRotationY (line 246) | def setRotationY(self, rotationY: float) -> None: ... method setRotationZ (line 247) | def setRotationZ(self, rotationZ: float) -> None: ... method setScale (line 248) | def setScale(self, scale: PySide2.QtGui.QVector3D) -> None: ... method setToIdentity (line 249) | def setToIdentity(self) -> None: ... method setTranslation (line 250) | def setTranslation(self, translation: PySide2.QtGui.QVector3D) -> No... method translation (line 251) | def translation(self) -> PySide2.QtGui.QVector3D: ... class QNode (line 253) | class QNode(PySide2.QtCore.QObject): class PropertyTrackingMode (line 254) | class PropertyTrackingMode: method __init__ (line 261) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 262) | def __add__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pro... method __and__ (line 263) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pro... method __bool__ (line 264) | def __bool__(self) -> bool: ... method __eq__ (line 265) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 266) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 267) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 268) | def __hash__(self) -> int: ... method __index__ (line 269) | def __index__(self) -> int: ... method __int__ (line 270) | def __int__(self) -> int: ... method __le__ (line 271) | def __le__(self, other: object) -> bool: ... method __lt__ (line 272) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 273) | def __mul__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pro... method __ne__ (line 274) | def __ne__(self, other: object) -> bool: ... method __or__ (line 275) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Prop... method __pos__ (line 276) | def __pos__(self): ... method __radd__ (line 277) | def __radd__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pr... method __rand__ (line 278) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pr... method __rmul__ (line 279) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pr... method __ror__ (line 280) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pro... method __rsub__ (line 281) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pr... method __rxor__ (line 282) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pr... method __sub__ (line 283) | def __sub__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pro... method __xor__ (line 284) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.QNode.Pro... method __init__ (line 293) | def __init__(self, parent: Qt3DCore.QNode | None = ..., defaultPrope... method blockNotifications (line 294) | def blockNotifications(self, block: bool) -> bool: ... method childNodes (line 295) | def childNodes(self) -> list[Qt3DCore.QNode]: ... method clearPropertyTracking (line 296) | def clearPropertyTracking(self, propertyName: str) -> None: ... method clearPropertyTrackings (line 297) | def clearPropertyTrackings(self) -> None: ... method defaultPropertyTrackingMode (line 298) | def defaultPropertyTrackingMode(self) -> Qt3DCore.QNode.PropertyTrac... method id (line 299) | def id(self) -> Qt3DCore.QNodeId: ... method isEnabled (line 300) | def isEnabled(self) -> bool: ... method notificationsBlocked (line 301) | def notificationsBlocked(self) -> bool: ... method parentNode (line 302) | def parentNode(self) -> Qt3DCore.QNode: ... method propertyTracking (line 303) | def propertyTracking(self, propertyName: str) -> Qt3DCore.QNode.Prop... method setDefaultPropertyTrackingMode (line 304) | def setDefaultPropertyTrackingMode(self, mode: Qt3DCore.QNode.Proper... method setEnabled (line 305) | def setEnabled(self, isEnabled: bool) -> None: ... method setParent (line 307) | def setParent(self, parent: Qt3DCore.QNode) -> None: ... method setParent (line 309) | def setParent(self, parent: PySide2.QtCore.QObject | None) -> None: ... method setPropertyTracking (line 310) | def setPropertyTracking(self, propertyName: str, trackMode: Qt3DCore... class QNodeCommand (line 312) | class QNodeCommand(Qt3DCore.QSceneChange): method __init__ (line 313) | def __init__(self, id: Qt3DCore.QNodeId) -> None: ... method commandId (line 314) | def commandId(self) -> int: ... method data (line 315) | def data(self) -> typing.Any: ... method inReplyTo (line 316) | def inReplyTo(self) -> int: ... method name (line 317) | def name(self) -> str: ... method setData (line 318) | def setData(self, data: typing.Any) -> None: ... method setName (line 319) | def setName(self, name: str) -> None: ... method setReplyToCommandId (line 320) | def setReplyToCommandId(self, id: int) -> None: ... class QNodeCreatedChangeBase (line 322) | class QNodeCreatedChangeBase(Qt3DCore.QSceneChange): method __init__ (line 323) | def __init__(self, node: Qt3DCore.QNode) -> None: ... method isNodeEnabled (line 324) | def isNodeEnabled(self) -> bool: ... method parentId (line 325) | def parentId(self) -> Qt3DCore.QNodeId: ... class QNodeDestroyedChange (line 327) | class QNodeDestroyedChange(Qt3DCore.QSceneChange): method __init__ (line 328) | def __init__(self, node: Qt3DCore.QNode, subtreeIdsAndTypes: list[Qt... method subtreeIdsAndTypes (line 329) | def subtreeIdsAndTypes(self) -> list[Qt3DCore.QNodeIdTypePair]: ... class QNodeId (line 331) | class QNodeId(shiboken2.Object): method __init__ (line 333) | def __init__(self, QNodeId: Qt3DCore.QNodeId) -> None: ... method __init__ (line 335) | def __init__(self) -> None: ... method createId (line 337) | def createId() -> Qt3DCore.QNodeId: ... method id (line 338) | def id(self) -> int: ... method isNull (line 339) | def isNull(self) -> bool: ... method __bool__ (line 340) | def __bool__(self) -> bool: ... method __copy__ (line 341) | def __copy__(self) -> None: ... method __eq__ (line 342) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 343) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 344) | def __gt__(self, other: object) -> bool: ... method __le__ (line 345) | def __le__(self, other: object) -> bool: ... method __lt__ (line 346) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 347) | def __ne__(self, other: object) -> bool: ... class QNodeIdTypePair (line 349) | class QNodeIdTypePair(shiboken2.Object): method __init__ (line 353) | def __init__(self, _id: Qt3DCore.QNodeId, _type: PySide2.QtCore.QMet... method __init__ (line 355) | def __init__(self, QNodeIdTypePair: Qt3DCore.QNodeIdTypePair) -> Non... method __init__ (line 357) | def __init__(self) -> None: ... method __copy__ (line 358) | def __copy__(self) -> None: ... class QPropertyNodeAddedChange (line 360) | class QPropertyNodeAddedChange(Qt3DCore.QStaticPropertyValueAddedChang... method __init__ (line 361) | def __init__(self, subjectId: Qt3DCore.QNodeId, node: Qt3DCore.QNode... method addedNodeId (line 362) | def addedNodeId(self) -> Qt3DCore.QNodeId: ... class QPropertyNodeRemovedChange (line 364) | class QPropertyNodeRemovedChange(Qt3DCore.QStaticPropertyValueRemovedC... method __init__ (line 365) | def __init__(self, subjectId: Qt3DCore.QNodeId, node: Qt3DCore.QNode... method removedNodeId (line 366) | def removedNodeId(self) -> Qt3DCore.QNodeId: ... class QPropertyUpdatedChange (line 368) | class QPropertyUpdatedChange(Qt3DCore.QStaticPropertyUpdatedChangeBase): method __init__ (line 369) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method setValue (line 370) | def setValue(self, value: typing.Any) -> None: ... method value (line 371) | def value(self) -> typing.Any: ... class QPropertyUpdatedChangeBase (line 373) | class QPropertyUpdatedChangeBase(Qt3DCore.QSceneChange): method __init__ (line 374) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... class QPropertyValueAddedChange (line 376) | class QPropertyValueAddedChange(Qt3DCore.QStaticPropertyValueAddedChan... method __init__ (line 377) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method addedValue (line 378) | def addedValue(self) -> typing.Any: ... method setAddedValue (line 379) | def setAddedValue(self, value: typing.Any) -> None: ... class QPropertyValueAddedChangeBase (line 381) | class QPropertyValueAddedChangeBase(Qt3DCore.QSceneChange): method __init__ (line 382) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... class QPropertyValueRemovedChange (line 384) | class QPropertyValueRemovedChange(Qt3DCore.QStaticPropertyValueRemoved... method __init__ (line 385) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method removedValue (line 386) | def removedValue(self) -> typing.Any: ... method setRemovedValue (line 387) | def setRemovedValue(self, value: typing.Any) -> None: ... class QPropertyValueRemovedChangeBase (line 389) | class QPropertyValueRemovedChangeBase(Qt3DCore.QSceneChange): method __init__ (line 390) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... class QSceneChange (line 392) | class QSceneChange(shiboken2.Object): class DeliveryFlag (line 393) | class DeliveryFlag: method __init__ (line 400) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 401) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCha... method __bool__ (line 402) | def __bool__(self) -> bool: ... method __eq__ (line 403) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 404) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 405) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 406) | def __hash__(self) -> int: ... method __index__ (line 407) | def __index__(self) -> int: ... method __int__ (line 408) | def __int__(self) -> int: ... method __invert__ (line 409) | def __invert__(self) -> Qt3DCore.QSceneChange.DeliveryFlags: ... method __le__ (line 410) | def __le__(self, other: object) -> bool: ... method __lt__ (line 411) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 412) | def __ne__(self, other: object) -> bool: ... method __or__ (line 413) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneChan... method __rand__ (line 414) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCh... method __ror__ (line 415) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCha... method __rxor__ (line 416) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCh... method __xor__ (line 417) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCha... class DeliveryFlags (line 419) | class DeliveryFlags: method __init__ (line 421) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 422) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCha... method __bool__ (line 423) | def __bool__(self) -> bool: ... method __eq__ (line 424) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 425) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 426) | def __gt__(self, other: object) -> bool: ... method __index__ (line 427) | def __index__(self) -> int: ... method __int__ (line 428) | def __int__(self) -> int: ... method __invert__ (line 429) | def __invert__(self) -> Qt3DCore.QSceneChange.DeliveryFlags: ... method __le__ (line 430) | def __le__(self, other: object) -> bool: ... method __lt__ (line 431) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 432) | def __ne__(self, other: object) -> bool: ... method __or__ (line 433) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneChan... method __rand__ (line 434) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCh... method __ror__ (line 435) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCha... method __rxor__ (line 436) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCh... method __xor__ (line 437) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.QSceneCha... method __init__ (line 441) | def __init__(self, type: Qt3DCore.ChangeFlag, subjectId: Qt3DCore.QN... method deliveryFlags (line 442) | def deliveryFlags(self) -> Qt3DCore.QSceneChange.DeliveryFlags | Qt3... method setDeliveryFlags (line 443) | def setDeliveryFlags(self, flags: Qt3DCore.QSceneChange.DeliveryFlag... method subjectId (line 444) | def subjectId(self) -> Qt3DCore.QNodeId: ... method type (line 445) | def type(self) -> Qt3DCore.ChangeFlag: ... class QSkeleton (line 447) | class QSkeleton(Qt3DCore.QAbstractSkeleton): method __init__ (line 450) | def __init__(self, parent: Qt3DCore.QNode | None = ..., defaultPrope... method rootJoint (line 451) | def rootJoint(self) -> Qt3DCore.QJoint: ... method setRootJoint (line 452) | def setRootJoint(self, rootJoint: Qt3DCore.QJoint) -> None: ... class QSkeletonLoader (line 454) | class QSkeletonLoader(Qt3DCore.QAbstractSkeleton): class Status (line 455) | class Status: method __init__ (line 462) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 463) | def __add__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleton... method __and__ (line 464) | def __and__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleton... method __bool__ (line 465) | def __bool__(self) -> bool: ... method __eq__ (line 466) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 467) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 468) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 469) | def __hash__(self) -> int: ... method __index__ (line 470) | def __index__(self) -> int: ... method __int__ (line 471) | def __int__(self) -> int: ... method __le__ (line 472) | def __le__(self, other: object) -> bool: ... method __lt__ (line 473) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 474) | def __mul__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleton... method __ne__ (line 475) | def __ne__(self, other: object) -> bool: ... method __or__ (line 476) | def __or__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeletonL... method __pos__ (line 477) | def __pos__(self): ... method __radd__ (line 478) | def __radd__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleto... method __rand__ (line 479) | def __rand__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleto... method __rmul__ (line 480) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleto... method __ror__ (line 481) | def __ror__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleton... method __rsub__ (line 482) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleto... method __rxor__ (line 483) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleto... method __sub__ (line 484) | def __sub__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleton... method __xor__ (line 485) | def __xor__(self, other: typing.SupportsInt) -> Qt3DCore.QSkeleton... method __init__ (line 495) | def __init__(self, source: PySide2.QtCore.QUrl, parent: Qt3DCore.QNo... method __init__ (line 497) | def __init__(self, parent: Qt3DCore.QNode | None = ..., createJoints... method isCreateJointsEnabled (line 498) | def isCreateJointsEnabled(self) -> bool: ... method rootJoint (line 499) | def rootJoint(self) -> Qt3DCore.QJoint: ... method setCreateJointsEnabled (line 500) | def setCreateJointsEnabled(self, enabled: bool) -> None: ... method setSource (line 501) | def setSource(self, source: PySide2.QtCore.QUrl) -> None: ... method source (line 502) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 503) | def status(self) -> Qt3DCore.QSkeletonLoader.Status: ... class QStaticPropertyUpdatedChangeBase (line 505) | class QStaticPropertyUpdatedChangeBase(Qt3DCore.QPropertyUpdatedChange... method __init__ (line 506) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method propertyName (line 507) | def propertyName(self) -> bytes: ... method setPropertyName (line 508) | def setPropertyName(self, name: bytes) -> None: ... class QStaticPropertyValueAddedChangeBase (line 510) | class QStaticPropertyValueAddedChangeBase(Qt3DCore.QPropertyValueAdded... method __init__ (line 511) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method propertyName (line 512) | def propertyName(self) -> bytes: ... method setPropertyName (line 513) | def setPropertyName(self, name: bytes) -> None: ... class QStaticPropertyValueRemovedChangeBase (line 515) | class QStaticPropertyValueRemovedChangeBase(Qt3DCore.QPropertyValueRem... method __init__ (line 516) | def __init__(self, subjectId: Qt3DCore.QNodeId) -> None: ... method propertyName (line 517) | def propertyName(self) -> bytes: ... method setPropertyName (line 518) | def setPropertyName(self, name: bytes) -> None: ... class QTransform (line 520) | class QTransform(Qt3DCore.QComponent): method __init__ (line 531) | def __init__(self, parent: Qt3DCore.QNode | None = ..., addedToEntit... method fromAxes (line 533) | def fromAxes(xAxis: PySide2.QtGui.QVector3D, yAxis: PySide2.QtGui.QV... method fromAxesAndAngles (line 536) | def fromAxesAndAngles(axis1: PySide2.QtGui.QVector3D, angle1: float,... method fromAxesAndAngles (line 539) | def fromAxesAndAngles(axis1: PySide2.QtGui.QVector3D, angle1: float,... method fromAxisAndAngle (line 542) | def fromAxisAndAngle(x: float, y: float, z: float, angle: float) -> ... method fromAxisAndAngle (line 545) | def fromAxisAndAngle(axis: PySide2.QtGui.QVector3D, angle: float) ->... method fromEulerAngles (line 548) | def fromEulerAngles(pitch: float, yaw: float, roll: float) -> PySide... method fromEulerAngles (line 551) | def fromEulerAngles(eulerAngles: PySide2.QtGui.QVector3D) -> PySide2... method matrix (line 552) | def matrix(self) -> PySide2.QtGui.QMatrix4x4: ... method rotateAround (line 554) | def rotateAround(point: PySide2.QtGui.QVector3D, angle: float, axis:... method rotateFromAxes (line 556) | def rotateFromAxes(xAxis: PySide2.QtGui.QVector3D, yAxis: PySide2.Qt... method rotation (line 557) | def rotation(self) -> PySide2.QtGui.QQuaternion: ... method rotationX (line 558) | def rotationX(self) -> float: ... method rotationY (line 559) | def rotationY(self) -> float: ... method rotationZ (line 560) | def rotationZ(self) -> float: ... method scale (line 561) | def scale(self) -> float: ... method scale3D (line 562) | def scale3D(self) -> PySide2.QtGui.QVector3D: ... method setMatrix (line 563) | def setMatrix(self, matrix: PySide2.QtGui.QMatrix4x4) -> None: ... method setRotation (line 564) | def setRotation(self, rotation: PySide2.QtGui.QQuaternion) -> None: ... method setRotationX (line 565) | def setRotationX(self, rotationX: float) -> None: ... method setRotationY (line 566) | def setRotationY(self, rotationY: float) -> None: ... method setRotationZ (line 567) | def setRotationZ(self, rotationZ: float) -> None: ... method setScale (line 568) | def setScale(self, scale: float) -> None: ... method setScale3D (line 569) | def setScale3D(self, scale: PySide2.QtGui.QVector3D) -> None: ... method setTranslation (line 570) | def setTranslation(self, translation: PySide2.QtGui.QVector3D) -> No... method translation (line 571) | def translation(self) -> PySide2.QtGui.QVector3D: ... method worldMatrix (line 572) | def worldMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method __init__ (line 584) | def __init__(cls, *args, **kwargs) -> None: ... method qHash (line 586) | def qHash(id: Qt3DCore.QNodeId, seed: int = ...) -> int: ... method qIdForNode (line 588) | def qIdForNode(node: Qt3DCore.QNode) -> Qt3DCore.QNodeId: ... FILE: pyside/stubs/PySide2-stubs/Qt3DExtras.pyi class Qt3DExtras (line 14) | class Qt3DExtras(shiboken2.Object): class QAbstractCameraController (line 15) | class QAbstractCameraController(PySide2.Qt3DCore.Qt3DCore.QEntity): class InputState (line 16) | class InputState(shiboken2.Object): method __init__ (line 28) | def __init__(self, InputState: Qt3DExtras.QAbstractCameraControlle... method __init__ (line 30) | def __init__(self) -> None: ... method __copy__ (line 31) | def __copy__(self) -> None: ... method __init__ (line 38) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method acceleration (line 39) | def acceleration(self) -> float: ... method camera (line 40) | def camera(self) -> PySide2.Qt3DRender.Qt3DRender.QCamera: ... method deceleration (line 41) | def deceleration(self) -> float: ... method linearSpeed (line 42) | def linearSpeed(self) -> float: ... method lookSpeed (line 43) | def lookSpeed(self) -> float: ... method setAcceleration (line 44) | def setAcceleration(self, acceleration: float) -> None: ... method setCamera (line 45) | def setCamera(self, camera: PySide2.Qt3DRender.Qt3DRender.QCamera) -... method setDeceleration (line 46) | def setDeceleration(self, deceleration: float) -> None: ... method setLinearSpeed (line 47) | def setLinearSpeed(self, linearSpeed: float) -> None: ... method setLookSpeed (line 48) | def setLookSpeed(self, lookSpeed: float) -> None: ... class QAbstractSpriteSheet (line 50) | class QAbstractSpriteSheet(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 56) | def __init__(cls, *args, currentIndex: int = ..., currentIndexChange... method currentIndex (line 57) | def currentIndex(self) -> int: ... method setCurrentIndex (line 58) | def setCurrentIndex(self, currentIndex: int) -> None: ... method setTexture (line 59) | def setTexture(self, texture: PySide2.Qt3DRender.Qt3DRender.QAbstrac... method texture (line 60) | def texture(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture:... method textureTransform (line 61) | def textureTransform(self) -> PySide2.QtGui.QMatrix3x3: ... class QConeGeometry (line 63) | class QConeGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 72) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method bottomRadius (line 73) | def bottomRadius(self) -> float: ... method hasBottomEndcap (line 74) | def hasBottomEndcap(self) -> bool: ... method hasTopEndcap (line 75) | def hasTopEndcap(self) -> bool: ... method indexAttribute (line 76) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method length (line 77) | def length(self) -> float: ... method normalAttribute (line 78) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 79) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method rings (line 80) | def rings(self) -> int: ... method setBottomRadius (line 81) | def setBottomRadius(self, bottomRadius: float) -> None: ... method setHasBottomEndcap (line 82) | def setHasBottomEndcap(self, hasBottomEndcap: bool) -> None: ... method setHasTopEndcap (line 83) | def setHasTopEndcap(self, hasTopEndcap: bool) -> None: ... method setLength (line 84) | def setLength(self, length: float) -> None: ... method setRings (line 85) | def setRings(self, rings: int) -> None: ... method setSlices (line 86) | def setSlices(self, slices: int) -> None: ... method setTopRadius (line 87) | def setTopRadius(self, topRadius: float) -> None: ... method slices (line 88) | def slices(self) -> int: ... method texCoordAttribute (line 89) | def texCoordAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method topRadius (line 90) | def topRadius(self) -> float: ... method updateIndices (line 91) | def updateIndices(self) -> None: ... method updateVertices (line 92) | def updateVertices(self) -> None: ... class QConeMesh (line 94) | class QConeMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 103) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method bottomRadius (line 104) | def bottomRadius(self) -> float: ... method hasBottomEndcap (line 105) | def hasBottomEndcap(self) -> bool: ... method hasTopEndcap (line 106) | def hasTopEndcap(self) -> bool: ... method length (line 107) | def length(self) -> float: ... method rings (line 108) | def rings(self) -> int: ... method setBottomRadius (line 109) | def setBottomRadius(self, bottomRadius: float) -> None: ... method setFirstInstance (line 110) | def setFirstInstance(self, firstInstance: int) -> None: ... method setGeometry (line 111) | def setGeometry(self, geometry: PySide2.Qt3DRender.Qt3DRender.QGeome... method setHasBottomEndcap (line 112) | def setHasBottomEndcap(self, hasBottomEndcap: bool) -> None: ... method setHasTopEndcap (line 113) | def setHasTopEndcap(self, hasTopEndcap: bool) -> None: ... method setIndexOffset (line 114) | def setIndexOffset(self, indexOffset: int) -> None: ... method setInstanceCount (line 115) | def setInstanceCount(self, instanceCount: int) -> None: ... method setLength (line 116) | def setLength(self, length: float) -> None: ... method setPrimitiveRestartEnabled (line 117) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 118) | def setPrimitiveType(self, primitiveType: PySide2.Qt3DRender.Qt3DRen... method setRestartIndexValue (line 119) | def setRestartIndexValue(self, index: int) -> None: ... method setRings (line 120) | def setRings(self, rings: int) -> None: ... method setSlices (line 121) | def setSlices(self, slices: int) -> None: ... method setTopRadius (line 122) | def setTopRadius(self, topRadius: float) -> None: ... method setVertexCount (line 123) | def setVertexCount(self, vertexCount: int) -> None: ... method slices (line 124) | def slices(self) -> int: ... method topRadius (line 125) | def topRadius(self) -> float: ... class QCuboidGeometry (line 127) | class QCuboidGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 135) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method indexAttribute (line 136) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method normalAttribute (line 137) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 138) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method setXExtent (line 139) | def setXExtent(self, xExtent: float) -> None: ... method setXYMeshResolution (line 140) | def setXYMeshResolution(self, resolution: PySide2.QtCore.QSize) -> N... method setXZMeshResolution (line 141) | def setXZMeshResolution(self, resolution: PySide2.QtCore.QSize) -> N... method setYExtent (line 142) | def setYExtent(self, yExtent: float) -> None: ... method setYZMeshResolution (line 143) | def setYZMeshResolution(self, resolution: PySide2.QtCore.QSize) -> N... method setZExtent (line 144) | def setZExtent(self, zExtent: float) -> None: ... method tangentAttribute (line 145) | def tangentAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribu... method texCoordAttribute (line 146) | def texCoordAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method updateIndices (line 147) | def updateIndices(self) -> None: ... method updateVertices (line 148) | def updateVertices(self) -> None: ... method xExtent (line 149) | def xExtent(self) -> float: ... method xyMeshResolution (line 150) | def xyMeshResolution(self) -> PySide2.QtCore.QSize: ... method xzMeshResolution (line 151) | def xzMeshResolution(self) -> PySide2.QtCore.QSize: ... method yExtent (line 152) | def yExtent(self) -> float: ... method yzMeshResolution (line 153) | def yzMeshResolution(self) -> PySide2.QtCore.QSize: ... method zExtent (line 154) | def zExtent(self) -> float: ... class QCuboidMesh (line 156) | class QCuboidMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 164) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setFirstInstance (line 165) | def setFirstInstance(self, firstInstance: int) -> None: ... method setGeometry (line 166) | def setGeometry(self, geometry: PySide2.Qt3DRender.Qt3DRender.QGeome... method setIndexOffset (line 167) | def setIndexOffset(self, indexOffset: int) -> None: ... method setInstanceCount (line 168) | def setInstanceCount(self, instanceCount: int) -> None: ... method setPrimitiveRestartEnabled (line 169) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 170) | def setPrimitiveType(self, primitiveType: PySide2.Qt3DRender.Qt3DRen... method setRestartIndexValue (line 171) | def setRestartIndexValue(self, index: int) -> None: ... method setVertexCount (line 172) | def setVertexCount(self, vertexCount: int) -> None: ... method setXExtent (line 173) | def setXExtent(self, xExtent: float) -> None: ... method setXYMeshResolution (line 174) | def setXYMeshResolution(self, resolution: PySide2.QtCore.QSize) -> N... method setXZMeshResolution (line 175) | def setXZMeshResolution(self, resolution: PySide2.QtCore.QSize) -> N... method setYExtent (line 176) | def setYExtent(self, yExtent: float) -> None: ... method setYZMeshResolution (line 177) | def setYZMeshResolution(self, resolution: PySide2.QtCore.QSize) -> N... method setZExtent (line 178) | def setZExtent(self, zExtent: float) -> None: ... method xExtent (line 179) | def xExtent(self) -> float: ... method xyMeshResolution (line 180) | def xyMeshResolution(self) -> PySide2.QtCore.QSize: ... method xzMeshResolution (line 181) | def xzMeshResolution(self) -> PySide2.QtCore.QSize: ... method yExtent (line 182) | def yExtent(self) -> float: ... method yzMeshResolution (line 183) | def yzMeshResolution(self) -> PySide2.QtCore.QSize: ... method zExtent (line 184) | def zExtent(self) -> float: ... class QCylinderGeometry (line 186) | class QCylinderGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 192) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method indexAttribute (line 193) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method length (line 194) | def length(self) -> float: ... method normalAttribute (line 195) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 196) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method radius (line 197) | def radius(self) -> float: ... method rings (line 198) | def rings(self) -> int: ... method setLength (line 199) | def setLength(self, length: float) -> None: ... method setRadius (line 200) | def setRadius(self, radius: float) -> None: ... method setRings (line 201) | def setRings(self, rings: int) -> None: ... method setSlices (line 202) | def setSlices(self, slices: int) -> None: ... method slices (line 203) | def slices(self) -> int: ... method texCoordAttribute (line 204) | def texCoordAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method updateIndices (line 205) | def updateIndices(self) -> None: ... method updateVertices (line 206) | def updateVertices(self) -> None: ... class QCylinderMesh (line 208) | class QCylinderMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 214) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method length (line 215) | def length(self) -> float: ... method radius (line 216) | def radius(self) -> float: ... method rings (line 217) | def rings(self) -> int: ... method setFirstInstance (line 218) | def setFirstInstance(self, firstInstance: int) -> None: ... method setGeometry (line 219) | def setGeometry(self, geometry: PySide2.Qt3DRender.Qt3DRender.QGeome... method setIndexOffset (line 220) | def setIndexOffset(self, indexOffset: int) -> None: ... method setInstanceCount (line 221) | def setInstanceCount(self, instanceCount: int) -> None: ... method setLength (line 222) | def setLength(self, length: float) -> None: ... method setPrimitiveRestartEnabled (line 223) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 224) | def setPrimitiveType(self, primitiveType: PySide2.Qt3DRender.Qt3DRen... method setRadius (line 225) | def setRadius(self, radius: float) -> None: ... method setRestartIndexValue (line 226) | def setRestartIndexValue(self, index: int) -> None: ... method setRings (line 227) | def setRings(self, rings: int) -> None: ... method setSlices (line 228) | def setSlices(self, slices: int) -> None: ... method setVertexCount (line 229) | def setVertexCount(self, vertexCount: int) -> None: ... method slices (line 230) | def slices(self) -> int: ... class QDiffuseMapMaterial (line 232) | class QDiffuseMapMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 239) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 240) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 241) | def diffuse(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture:... method setAmbient (line 242) | def setAmbient(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt... method setDiffuse (line 243) | def setDiffuse(self, diffuse: PySide2.Qt3DRender.Qt3DRender.QAbstrac... method setShininess (line 244) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 245) | def setSpecular(self, specular: PySide2.QtGui.QColor | PySide2.QtCor... method setTextureScale (line 246) | def setTextureScale(self, textureScale: float) -> None: ... method shininess (line 247) | def shininess(self) -> float: ... method specular (line 248) | def specular(self) -> PySide2.QtGui.QColor: ... method textureScale (line 249) | def textureScale(self) -> float: ... class QDiffuseSpecularMapMaterial (line 251) | class QDiffuseSpecularMapMaterial(PySide2.Qt3DRender.Qt3DRender.QMater... method __init__ (line 258) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 259) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 260) | def diffuse(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture:... method setAmbient (line 261) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setDiffuse (line 262) | def setDiffuse(self, diffuse: PySide2.Qt3DRender.Qt3DRender.QAbstrac... method setShininess (line 263) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 264) | def setSpecular(self, specular: PySide2.Qt3DRender.Qt3DRender.QAbstr... method setTextureScale (line 265) | def setTextureScale(self, textureScale: float) -> None: ... method shininess (line 266) | def shininess(self) -> float: ... method specular (line 267) | def specular(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture... method textureScale (line 268) | def textureScale(self) -> float: ... class QDiffuseSpecularMaterial (line 270) | class QDiffuseSpecularMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 279) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 280) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 281) | def diffuse(self) -> typing.Any: ... method isAlphaBlendingEnabled (line 282) | def isAlphaBlendingEnabled(self) -> bool: ... method normal (line 283) | def normal(self) -> typing.Any: ... method setAlphaBlendingEnabled (line 284) | def setAlphaBlendingEnabled(self, enabled: bool) -> None: ... method setAmbient (line 285) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setDiffuse (line 286) | def setDiffuse(self, diffuse: typing.Any) -> None: ... method setNormal (line 287) | def setNormal(self, normal: typing.Any) -> None: ... method setShininess (line 288) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 289) | def setSpecular(self, specular: typing.Any) -> None: ... method setTextureScale (line 290) | def setTextureScale(self, textureScale: float) -> None: ... method shininess (line 291) | def shininess(self) -> float: ... method specular (line 292) | def specular(self) -> typing.Any: ... method textureScale (line 293) | def textureScale(self) -> float: ... class QExtrudedTextGeometry (line 295) | class QExtrudedTextGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 300) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method extrusionLength (line 301) | def extrusionLength(self) -> float: ... method font (line 302) | def font(self) -> PySide2.QtGui.QFont: ... method indexAttribute (line 303) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method normalAttribute (line 304) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 305) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method setDepth (line 306) | def setDepth(self, extrusionLength: float) -> None: ... method setFont (line 307) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setText (line 308) | def setText(self, text: str) -> None: ... method text (line 309) | def text(self) -> str: ... class QExtrudedTextMesh (line 311) | class QExtrudedTextMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 316) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method depth (line 317) | def depth(self) -> float: ... method font (line 318) | def font(self) -> PySide2.QtGui.QFont: ... method setDepth (line 319) | def setDepth(self, depth: float) -> None: ... method setFont (line 320) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setText (line 321) | def setText(self, text: str) -> None: ... method text (line 322) | def text(self) -> str: ... class QFirstPersonCameraController (line 324) | class QFirstPersonCameraController(Qt3DExtras.QAbstractCameraController): method __init__ (line 326) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QForwardRenderer (line 328) | class QForwardRenderer(PySide2.Qt3DRender.Qt3DRender.QTechniqueFilter): method __init__ (line 339) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method buffersToClear (line 340) | def buffersToClear(self) -> PySide2.Qt3DRender.Qt3DRender.QClearBuff... method camera (line 341) | def camera(self) -> PySide2.Qt3DCore.Qt3DCore.QEntity: ... method clearColor (line 342) | def clearColor(self) -> PySide2.QtGui.QColor: ... method externalRenderTargetSize (line 343) | def externalRenderTargetSize(self) -> PySide2.QtCore.QSize: ... method gamma (line 344) | def gamma(self) -> float: ... method isFrustumCullingEnabled (line 345) | def isFrustumCullingEnabled(self) -> bool: ... method setBuffersToClear (line 346) | def setBuffersToClear(self, arg__1: PySide2.Qt3DRender.Qt3DRender.QC... method setCamera (line 347) | def setCamera(self, camera: PySide2.Qt3DCore.Qt3DCore.QEntity) -> No... method setClearColor (line 348) | def setClearColor(self, clearColor: PySide2.QtGui.QColor | PySide2.Q... method setExternalRenderTargetSize (line 349) | def setExternalRenderTargetSize(self, size: PySide2.QtCore.QSize) ->... method setFrustumCullingEnabled (line 350) | def setFrustumCullingEnabled(self, enabled: bool) -> None: ... method setGamma (line 351) | def setGamma(self, gamma: float) -> None: ... method setShowDebugOverlay (line 352) | def setShowDebugOverlay(self, showDebugOverlay: bool) -> None: ... method setSurface (line 353) | def setSurface(self, surface: PySide2.QtCore.QObject) -> None: ... method setViewportRect (line 354) | def setViewportRect(self, viewportRect: PySide2.QtCore.QRectF) -> No... method showDebugOverlay (line 355) | def showDebugOverlay(self) -> bool: ... method surface (line 356) | def surface(self) -> PySide2.QtCore.QObject: ... method viewportRect (line 357) | def viewportRect(self) -> PySide2.QtCore.QRectF: ... class QGoochMaterial (line 359) | class QGoochMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 368) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method alpha (line 369) | def alpha(self) -> float: ... method beta (line 370) | def beta(self) -> float: ... method cool (line 371) | def cool(self) -> PySide2.QtGui.QColor: ... method diffuse (line 372) | def diffuse(self) -> PySide2.QtGui.QColor: ... method setAlpha (line 373) | def setAlpha(self, alpha: float) -> None: ... method setBeta (line 374) | def setBeta(self, beta: float) -> None: ... method setCool (line 375) | def setCool(self, cool: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Glo... method setDiffuse (line 376) | def setDiffuse(self, diffuse: PySide2.QtGui.QColor | PySide2.QtCore.... method setShininess (line 377) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 378) | def setSpecular(self, specular: PySide2.QtGui.QColor | PySide2.QtCor... method setWarm (line 379) | def setWarm(self, warm: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Glo... method shininess (line 380) | def shininess(self) -> float: ... method specular (line 381) | def specular(self) -> PySide2.QtGui.QColor: ... method warm (line 382) | def warm(self) -> PySide2.QtGui.QColor: ... class QMetalRoughMaterial (line 384) | class QMetalRoughMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 392) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambientOcclusion (line 393) | def ambientOcclusion(self) -> typing.Any: ... method baseColor (line 394) | def baseColor(self) -> typing.Any: ... method metalness (line 395) | def metalness(self) -> typing.Any: ... method normal (line 396) | def normal(self) -> typing.Any: ... method roughness (line 397) | def roughness(self) -> typing.Any: ... method setAmbientOcclusion (line 398) | def setAmbientOcclusion(self, ambientOcclusion: typing.Any) -> None:... method setBaseColor (line 399) | def setBaseColor(self, baseColor: typing.Any) -> None: ... method setMetalness (line 400) | def setMetalness(self, metalness: typing.Any) -> None: ... method setNormal (line 401) | def setNormal(self, normal: typing.Any) -> None: ... method setRoughness (line 402) | def setRoughness(self, roughness: typing.Any) -> None: ... method setTextureScale (line 403) | def setTextureScale(self, textureScale: float) -> None: ... method textureScale (line 404) | def textureScale(self) -> float: ... class QMorphPhongMaterial (line 406) | class QMorphPhongMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 413) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 414) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 415) | def diffuse(self) -> PySide2.QtGui.QColor: ... method interpolator (line 416) | def interpolator(self) -> float: ... method setAmbient (line 417) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setDiffuse (line 418) | def setDiffuse(self, diffuse: PySide2.QtGui.QColor | PySide2.QtCore.... method setInterpolator (line 419) | def setInterpolator(self, interpolator: float) -> None: ... method setShininess (line 420) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 421) | def setSpecular(self, specular: PySide2.QtGui.QColor | PySide2.QtCor... method shininess (line 422) | def shininess(self) -> float: ... method specular (line 423) | def specular(self) -> PySide2.QtGui.QColor: ... class QNormalDiffuseMapAlphaMaterial (line 425) | class QNormalDiffuseMapAlphaMaterial(Qt3DExtras.QNormalDiffuseMapMater... method __init__ (line 427) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QNormalDiffuseMapMaterial (line 429) | class QNormalDiffuseMapMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 437) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 438) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 439) | def diffuse(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture:... method normal (line 440) | def normal(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture: ... method setAmbient (line 441) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setDiffuse (line 442) | def setDiffuse(self, diffuse: PySide2.Qt3DRender.Qt3DRender.QAbstrac... method setNormal (line 443) | def setNormal(self, normal: PySide2.Qt3DRender.Qt3DRender.QAbstractT... method setShininess (line 444) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 445) | def setSpecular(self, specular: PySide2.QtGui.QColor | PySide2.QtCor... method setTextureScale (line 446) | def setTextureScale(self, textureScale: float) -> None: ... method shininess (line 447) | def shininess(self) -> float: ... method specular (line 448) | def specular(self) -> PySide2.QtGui.QColor: ... method textureScale (line 449) | def textureScale(self) -> float: ... class QNormalDiffuseSpecularMapMaterial (line 451) | class QNormalDiffuseSpecularMapMaterial(PySide2.Qt3DRender.Qt3DRender.... method __init__ (line 459) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 460) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 461) | def diffuse(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture:... method normal (line 462) | def normal(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture: ... method setAmbient (line 463) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setDiffuse (line 464) | def setDiffuse(self, diffuse: PySide2.Qt3DRender.Qt3DRender.QAbstrac... method setNormal (line 465) | def setNormal(self, normal: PySide2.Qt3DRender.Qt3DRender.QAbstractT... method setShininess (line 466) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 467) | def setSpecular(self, specular: PySide2.Qt3DRender.Qt3DRender.QAbstr... method setTextureScale (line 468) | def setTextureScale(self, textureScale: float) -> None: ... method shininess (line 469) | def shininess(self) -> float: ... method specular (line 470) | def specular(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture... method textureScale (line 471) | def textureScale(self) -> float: ... class QOrbitCameraController (line 473) | class QOrbitCameraController(Qt3DExtras.QAbstractCameraController): method __init__ (line 476) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setZoomInLimit (line 477) | def setZoomInLimit(self, zoomInLimit: float) -> None: ... method zoomInLimit (line 478) | def zoomInLimit(self) -> float: ... class QPerVertexColorMaterial (line 480) | class QPerVertexColorMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 482) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QPhongAlphaMaterial (line 484) | class QPhongAlphaMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 496) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method alpha (line 497) | def alpha(self) -> float: ... method ambient (line 498) | def ambient(self) -> PySide2.QtGui.QColor: ... method blendFunctionArg (line 499) | def blendFunctionArg(self) -> PySide2.Qt3DRender.Qt3DRender.QBlendEq... method destinationAlphaArg (line 500) | def destinationAlphaArg(self) -> PySide2.Qt3DRender.Qt3DRender.QBlen... method destinationRgbArg (line 501) | def destinationRgbArg(self) -> PySide2.Qt3DRender.Qt3DRender.QBlendE... method diffuse (line 502) | def diffuse(self) -> PySide2.QtGui.QColor: ... method setAlpha (line 503) | def setAlpha(self, alpha: float) -> None: ... method setAmbient (line 504) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setBlendFunctionArg (line 505) | def setBlendFunctionArg(self, blendFunctionArg: PySide2.Qt3DRender.Q... method setDestinationAlphaArg (line 506) | def setDestinationAlphaArg(self, destinationAlphaArg: PySide2.Qt3DRe... method setDestinationRgbArg (line 507) | def setDestinationRgbArg(self, destinationRgbArg: PySide2.Qt3DRender... method setDiffuse (line 508) | def setDiffuse(self, diffuse: PySide2.QtGui.QColor | PySide2.QtCore.... method setShininess (line 509) | def setShininess(self, shininess: float) -> None: ... method setSourceAlphaArg (line 510) | def setSourceAlphaArg(self, sourceAlphaArg: PySide2.Qt3DRender.Qt3DR... method setSourceRgbArg (line 511) | def setSourceRgbArg(self, sourceRgbArg: PySide2.Qt3DRender.Qt3DRende... method setSpecular (line 512) | def setSpecular(self, specular: PySide2.QtGui.QColor | PySide2.QtCor... method shininess (line 513) | def shininess(self) -> float: ... method sourceAlphaArg (line 514) | def sourceAlphaArg(self) -> PySide2.Qt3DRender.Qt3DRender.QBlendEqua... method sourceRgbArg (line 515) | def sourceRgbArg(self) -> PySide2.Qt3DRender.Qt3DRender.QBlendEquati... method specular (line 516) | def specular(self) -> PySide2.QtGui.QColor: ... class QPhongMaterial (line 518) | class QPhongMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 524) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method ambient (line 525) | def ambient(self) -> PySide2.QtGui.QColor: ... method diffuse (line 526) | def diffuse(self) -> PySide2.QtGui.QColor: ... method setAmbient (line 527) | def setAmbient(self, ambient: PySide2.QtGui.QColor | PySide2.QtCore.... method setDiffuse (line 528) | def setDiffuse(self, diffuse: PySide2.QtGui.QColor | PySide2.QtCore.... method setShininess (line 529) | def setShininess(self, shininess: float) -> None: ... method setSpecular (line 530) | def setSpecular(self, specular: PySide2.QtGui.QColor | PySide2.QtCor... method shininess (line 531) | def shininess(self) -> float: ... method specular (line 532) | def specular(self) -> PySide2.QtGui.QColor: ... class QPlaneGeometry (line 534) | class QPlaneGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 540) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method height (line 541) | def height(self) -> float: ... method indexAttribute (line 542) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method mirrored (line 543) | def mirrored(self) -> bool: ... method normalAttribute (line 544) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 545) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method resolution (line 546) | def resolution(self) -> PySide2.QtCore.QSize: ... method setHeight (line 547) | def setHeight(self, height: float) -> None: ... method setMirrored (line 548) | def setMirrored(self, mirrored: bool) -> None: ... method setResolution (line 549) | def setResolution(self, resolution: PySide2.QtCore.QSize) -> None: ... method setWidth (line 550) | def setWidth(self, width: float) -> None: ... method tangentAttribute (line 551) | def tangentAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribu... method texCoordAttribute (line 552) | def texCoordAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method updateIndices (line 553) | def updateIndices(self) -> None: ... method updateVertices (line 554) | def updateVertices(self) -> None: ... method width (line 555) | def width(self) -> float: ... class QPlaneMesh (line 557) | class QPlaneMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 563) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method height (line 564) | def height(self) -> float: ... method meshResolution (line 565) | def meshResolution(self) -> PySide2.QtCore.QSize: ... method mirrored (line 566) | def mirrored(self) -> bool: ... method setFirstInstance (line 567) | def setFirstInstance(self, firstInstance: int) -> None: ... method setGeometry (line 568) | def setGeometry(self, geometry: PySide2.Qt3DRender.Qt3DRender.QGeome... method setHeight (line 569) | def setHeight(self, height: float) -> None: ... method setIndexOffset (line 570) | def setIndexOffset(self, indexOffset: int) -> None: ... method setInstanceCount (line 571) | def setInstanceCount(self, instanceCount: int) -> None: ... method setMeshResolution (line 572) | def setMeshResolution(self, resolution: PySide2.QtCore.QSize) -> Non... method setMirrored (line 573) | def setMirrored(self, mirrored: bool) -> None: ... method setPrimitiveRestartEnabled (line 574) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 575) | def setPrimitiveType(self, primitiveType: PySide2.Qt3DRender.Qt3DRen... method setRestartIndexValue (line 576) | def setRestartIndexValue(self, index: int) -> None: ... method setVertexCount (line 577) | def setVertexCount(self, vertexCount: int) -> None: ... method setWidth (line 578) | def setWidth(self, width: float) -> None: ... method width (line 579) | def width(self) -> float: ... class QSkyboxEntity (line 581) | class QSkyboxEntity(PySide2.Qt3DCore.Qt3DCore.QEntity): method __init__ (line 586) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method baseName (line 587) | def baseName(self) -> str: ... method extension (line 588) | def extension(self) -> str: ... method isGammaCorrectEnabled (line 589) | def isGammaCorrectEnabled(self) -> bool: ... method setBaseName (line 590) | def setBaseName(self, path: str) -> None: ... method setExtension (line 591) | def setExtension(self, extension: str) -> None: ... method setGammaCorrectEnabled (line 592) | def setGammaCorrectEnabled(self, enabled: bool) -> None: ... class QSphereGeometry (line 594) | class QSphereGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 600) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method generateTangents (line 601) | def generateTangents(self) -> bool: ... method indexAttribute (line 602) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method normalAttribute (line 603) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 604) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method radius (line 605) | def radius(self) -> float: ... method rings (line 606) | def rings(self) -> int: ... method setGenerateTangents (line 607) | def setGenerateTangents(self, gen: bool) -> None: ... method setRadius (line 608) | def setRadius(self, radius: float) -> None: ... method setRings (line 609) | def setRings(self, rings: int) -> None: ... method setSlices (line 610) | def setSlices(self, slices: int) -> None: ... method slices (line 611) | def slices(self) -> int: ... method tangentAttribute (line 612) | def tangentAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribu... method texCoordAttribute (line 613) | def texCoordAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method updateIndices (line 614) | def updateIndices(self) -> None: ... method updateVertices (line 615) | def updateVertices(self) -> None: ... class QSphereMesh (line 617) | class QSphereMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 623) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method generateTangents (line 624) | def generateTangents(self) -> bool: ... method radius (line 625) | def radius(self) -> float: ... method rings (line 626) | def rings(self) -> int: ... method setFirstInstance (line 627) | def setFirstInstance(self, firstInstance: int) -> None: ... method setGenerateTangents (line 628) | def setGenerateTangents(self, gen: bool) -> None: ... method setGeometry (line 629) | def setGeometry(self, geometry: PySide2.Qt3DRender.Qt3DRender.QGeome... method setIndexOffset (line 630) | def setIndexOffset(self, indexOffset: int) -> None: ... method setPrimitiveRestartEnabled (line 631) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 632) | def setPrimitiveType(self, primitiveType: PySide2.Qt3DRender.Qt3DRen... method setRadius (line 633) | def setRadius(self, radius: float) -> None: ... method setRestartIndexValue (line 634) | def setRestartIndexValue(self, index: int) -> None: ... method setRings (line 635) | def setRings(self, rings: int) -> None: ... method setSlices (line 636) | def setSlices(self, slices: int) -> None: ... method setVertexCount (line 637) | def setVertexCount(self, vertexCount: int) -> None: ... method slices (line 638) | def slices(self) -> int: ... class QSpriteGrid (line 640) | class QSpriteGrid(Qt3DExtras.QAbstractSpriteSheet): method __init__ (line 644) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method columns (line 645) | def columns(self) -> int: ... method rows (line 646) | def rows(self) -> int: ... method setColumns (line 647) | def setColumns(self, columns: int) -> None: ... method setRows (line 648) | def setRows(self, rows: int) -> None: ... class QSpriteSheet (line 650) | class QSpriteSheet(Qt3DExtras.QAbstractSpriteSheet): method __init__ (line 653) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addSprite (line 655) | def addSprite(self, x: int, y: int, width: int, height: int) -> Qt3D... method addSprite (line 657) | def addSprite(self, sprite: Qt3DExtras.QSpriteSheetItem) -> None: ... method removeSprite (line 658) | def removeSprite(self, sprite: Qt3DExtras.QSpriteSheetItem) -> None:... method setSprites (line 659) | def setSprites(self, sprites: list[Qt3DExtras.QSpriteSheetItem]) -> ... method sprites (line 660) | def sprites(self) -> list[Qt3DExtras.QSpriteSheetItem]: ... class QSpriteSheetItem (line 662) | class QSpriteSheetItem(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 668) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method height (line 669) | def height(self) -> int: ... method setHeight (line 670) | def setHeight(self, height: int) -> None: ... method setWidth (line 671) | def setWidth(self, width: int) -> None: ... method setX (line 672) | def setX(self, x: int) -> None: ... method setY (line 673) | def setY(self, y: int) -> None: ... method width (line 674) | def width(self) -> int: ... method x (line 675) | def x(self) -> int: ... method y (line 676) | def y(self) -> int: ... class QText2DEntity (line 678) | class QText2DEntity(PySide2.Qt3DCore.Qt3DCore.QEntity): method __init__ (line 685) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method color (line 686) | def color(self) -> PySide2.QtGui.QColor: ... method font (line 687) | def font(self) -> PySide2.QtGui.QFont: ... method height (line 688) | def height(self) -> float: ... method setColor (line 689) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setFont (line 690) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setHeight (line 691) | def setHeight(self, height: float) -> None: ... method setText (line 692) | def setText(self, text: str) -> None: ... method setWidth (line 693) | def setWidth(self, width: float) -> None: ... method text (line 694) | def text(self) -> str: ... method width (line 695) | def width(self) -> float: ... class QTextureMaterial (line 697) | class QTextureMaterial(PySide2.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 703) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method isAlphaBlendingEnabled (line 704) | def isAlphaBlendingEnabled(self) -> bool: ... method setAlphaBlendingEnabled (line 705) | def setAlphaBlendingEnabled(self, enabled: bool) -> None: ... method setTexture (line 706) | def setTexture(self, texture: PySide2.Qt3DRender.Qt3DRender.QAbstrac... method setTextureOffset (line 707) | def setTextureOffset(self, textureOffset: PySide2.QtGui.QVector2D) -... method setTextureTransform (line 708) | def setTextureTransform(self, matrix: PySide2.QtGui.QMatrix3x3) -> N... method texture (line 709) | def texture(self) -> PySide2.Qt3DRender.Qt3DRender.QAbstractTexture:... method textureOffset (line 710) | def textureOffset(self) -> PySide2.QtGui.QVector2D: ... method textureTransform (line 711) | def textureTransform(self) -> PySide2.QtGui.QMatrix3x3: ... class QTorusGeometry (line 713) | class QTorusGeometry(PySide2.Qt3DRender.Qt3DRender.QGeometry): method __init__ (line 719) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method indexAttribute (line 720) | def indexAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribute... method minorRadius (line 721) | def minorRadius(self) -> float: ... method normalAttribute (line 722) | def normalAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttribut... method positionAttribute (line 723) | def positionAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method radius (line 724) | def radius(self) -> float: ... method rings (line 725) | def rings(self) -> int: ... method setMinorRadius (line 726) | def setMinorRadius(self, minorRadius: float) -> None: ... method setRadius (line 727) | def setRadius(self, radius: float) -> None: ... method setRings (line 728) | def setRings(self, rings: int) -> None: ... method setSlices (line 729) | def setSlices(self, slices: int) -> None: ... method slices (line 730) | def slices(self) -> int: ... method texCoordAttribute (line 731) | def texCoordAttribute(self) -> PySide2.Qt3DRender.Qt3DRender.QAttrib... method updateIndices (line 732) | def updateIndices(self) -> None: ... method updateVertices (line 733) | def updateVertices(self) -> None: ... class QTorusMesh (line 735) | class QTorusMesh(PySide2.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 741) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method minorRadius (line 742) | def minorRadius(self) -> float: ... method radius (line 743) | def radius(self) -> float: ... method rings (line 744) | def rings(self) -> int: ... method setFirstInstance (line 745) | def setFirstInstance(self, firstInstance: int) -> None: ... method setGeometry (line 746) | def setGeometry(self, geometry: PySide2.Qt3DRender.Qt3DRender.QGeome... method setIndexOffset (line 747) | def setIndexOffset(self, indexOffset: int) -> None: ... method setInstanceCount (line 748) | def setInstanceCount(self, instanceCount: int) -> None: ... method setMinorRadius (line 749) | def setMinorRadius(self, minorRadius: float) -> None: ... method setPrimitiveRestartEnabled (line 750) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 751) | def setPrimitiveType(self, primitiveType: PySide2.Qt3DRender.Qt3DRen... method setRadius (line 752) | def setRadius(self, radius: float) -> None: ... method setRestartIndexValue (line 753) | def setRestartIndexValue(self, index: int) -> None: ... method setRings (line 754) | def setRings(self, rings: int) -> None: ... method setSlices (line 755) | def setSlices(self, slices: int) -> None: ... method setVertexCount (line 756) | def setVertexCount(self, vertexCount: int) -> None: ... method slices (line 757) | def slices(self) -> int: ... class Qt3DWindow (line 759) | class Qt3DWindow(PySide2.QtGui.QWindow): method __init__ (line 761) | def __init__(self, screen: PySide2.QtGui.QScreen | None = ..., arg__... method activeFrameGraph (line 762) | def activeFrameGraph(self) -> PySide2.Qt3DRender.Qt3DRender.QFrameGr... method camera (line 763) | def camera(self) -> PySide2.Qt3DRender.Qt3DRender.QCamera: ... method defaultFrameGraph (line 764) | def defaultFrameGraph(self) -> Qt3DExtras.QForwardRenderer: ... method event (line 765) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method registerAspect (line 767) | def registerAspect(self, name: str) -> None: ... method registerAspect (line 769) | def registerAspect(self, aspect: PySide2.Qt3DCore.Qt3DCore.QAbstract... method renderSettings (line 770) | def renderSettings(self) -> PySide2.Qt3DRender.Qt3DRender.QRenderSet... method resizeEvent (line 771) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method setActiveFrameGraph (line 772) | def setActiveFrameGraph(self, activeFrameGraph: PySide2.Qt3DRender.Q... method setRootEntity (line 773) | def setRootEntity(self, root: PySide2.Qt3DCore.Qt3DCore.QEntity) -> ... method showEvent (line 774) | def showEvent(self, e: PySide2.QtGui.QShowEvent) -> None: ... method __init__ (line 776) | def __init__(cls, *args, **kwargs) -> None: ... method setupWindowSurface (line 778) | def setupWindowSurface(window: PySide2.QtGui.QWindow, arg__2: PySide2.... FILE: pyside/stubs/PySide2-stubs/Qt3DInput.pyi class Qt3DInput (line 13) | class Qt3DInput(shiboken2.Object): class QAbstractActionInput (line 14) | class QAbstractActionInput(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 17) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DInput.QAbs... class QAbstractAxisInput (line 19) | class QAbstractAxisInput(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 23) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DInput.QAbs... method setSourceDevice (line 24) | def setSourceDevice(self, sourceDevice: Qt3DInput.QAbstractPhysicalD... method sourceDevice (line 25) | def sourceDevice(self) -> Qt3DInput.QAbstractPhysicalDevice: ... class QAbstractPhysicalDevice (line 27) | class QAbstractPhysicalDevice(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 29) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addAxisSetting (line 30) | def addAxisSetting(self, axisSetting: Qt3DInput.QAxisSetting) -> Non... method axisCount (line 31) | def axisCount(self) -> int: ... method axisIdentifier (line 32) | def axisIdentifier(self, name: str) -> int: ... method axisNames (line 33) | def axisNames(self) -> list[str]: ... method axisSettings (line 34) | def axisSettings(self) -> list[Qt3DInput.QAxisSetting]: ... method buttonCount (line 35) | def buttonCount(self) -> int: ... method buttonIdentifier (line 36) | def buttonIdentifier(self, name: str) -> int: ... method buttonNames (line 37) | def buttonNames(self) -> list[str]: ... method removeAxisSetting (line 38) | def removeAxisSetting(self, axisSetting: Qt3DInput.QAxisSetting) -> ... class QAction (line 40) | class QAction(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 43) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addInput (line 44) | def addInput(self, input: Qt3DInput.QAbstractActionInput) -> None: ... method inputs (line 45) | def inputs(self) -> list[Qt3DInput.QAbstractActionInput]: ... method isActive (line 46) | def isActive(self) -> bool: ... method removeInput (line 47) | def removeInput(self, input: Qt3DInput.QAbstractActionInput) -> None... class QActionInput (line 49) | class QActionInput(Qt3DInput.QAbstractActionInput): method __init__ (line 53) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method buttons (line 54) | def buttons(self) -> list[int]: ... method setButtons (line 55) | def setButtons(self, buttons: list[int]) -> None: ... method setSourceDevice (line 56) | def setSourceDevice(self, sourceDevice: Qt3DInput.QAbstractPhysicalD... method sourceDevice (line 57) | def sourceDevice(self) -> Qt3DInput.QAbstractPhysicalDevice: ... class QAnalogAxisInput (line 59) | class QAnalogAxisInput(Qt3DInput.QAbstractAxisInput): method __init__ (line 62) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method axis (line 63) | def axis(self) -> int: ... method setAxis (line 64) | def setAxis(self, axis: int) -> None: ... class QAxis (line 66) | class QAxis(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 69) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addInput (line 70) | def addInput(self, input: Qt3DInput.QAbstractAxisInput) -> None: ... method inputs (line 71) | def inputs(self) -> list[Qt3DInput.QAbstractAxisInput]: ... method removeInput (line 72) | def removeInput(self, input: Qt3DInput.QAbstractAxisInput) -> None: ... method value (line 73) | def value(self) -> float: ... class QAxisAccumulator (line 75) | class QAxisAccumulator(PySide2.Qt3DCore.Qt3DCore.QComponent): class SourceAxisType (line 76) | class SourceAxisType: method __init__ (line 82) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 83) | def __add__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAcc... method __and__ (line 84) | def __and__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAcc... method __bool__ (line 85) | def __bool__(self) -> bool: ... method __eq__ (line 86) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 87) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 88) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 89) | def __hash__(self) -> int: ... method __index__ (line 90) | def __index__(self) -> int: ... method __int__ (line 91) | def __int__(self) -> int: ... method __le__ (line 92) | def __le__(self, other: object) -> bool: ... method __lt__ (line 93) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 94) | def __mul__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAcc... method __ne__ (line 95) | def __ne__(self, other: object) -> bool: ... method __or__ (line 96) | def __or__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAccu... method __pos__ (line 97) | def __pos__(self): ... method __radd__ (line 98) | def __radd__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAc... method __rand__ (line 99) | def __rand__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAc... method __rmul__ (line 100) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAc... method __ror__ (line 101) | def __ror__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAcc... method __rsub__ (line 102) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAc... method __rxor__ (line 103) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAc... method __sub__ (line 104) | def __sub__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAcc... method __xor__ (line 105) | def __xor__(self, other: typing.SupportsInt) -> Qt3DInput.QAxisAcc... method __init__ (line 114) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method scale (line 115) | def scale(self) -> float: ... method setScale (line 116) | def setScale(self, scale: float) -> None: ... method setSourceAxis (line 117) | def setSourceAxis(self, sourceAxis: Qt3DInput.QAxis) -> None: ... method setSourceAxisType (line 118) | def setSourceAxisType(self, sourceAxisType: Qt3DInput.QAxisAccumulat... method sourceAxis (line 119) | def sourceAxis(self) -> Qt3DInput.QAxis: ... method sourceAxisType (line 120) | def sourceAxisType(self) -> Qt3DInput.QAxisAccumulator.SourceAxisTyp... method value (line 121) | def value(self) -> float: ... method velocity (line 122) | def velocity(self) -> float: ... class QAxisSetting (line 124) | class QAxisSetting(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 129) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method axes (line 130) | def axes(self) -> list[int]: ... method deadZoneRadius (line 131) | def deadZoneRadius(self) -> float: ... method isSmoothEnabled (line 132) | def isSmoothEnabled(self) -> bool: ... method setAxes (line 133) | def setAxes(self, axes: list[int]) -> None: ... method setDeadZoneRadius (line 134) | def setDeadZoneRadius(self, deadZoneRadius: float) -> None: ... method setSmoothEnabled (line 135) | def setSmoothEnabled(self, enabled: bool) -> None: ... class QButtonAxisInput (line 137) | class QButtonAxisInput(Qt3DInput.QAbstractAxisInput): method __init__ (line 143) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method acceleration (line 144) | def acceleration(self) -> float: ... method buttons (line 145) | def buttons(self) -> list[int]: ... method deceleration (line 146) | def deceleration(self) -> float: ... method scale (line 147) | def scale(self) -> float: ... method setAcceleration (line 148) | def setAcceleration(self, acceleration: float) -> None: ... method setButtons (line 149) | def setButtons(self, buttons: list[int]) -> None: ... method setDeceleration (line 150) | def setDeceleration(self, deceleration: float) -> None: ... method setScale (line 151) | def setScale(self, scale: float) -> None: ... class QInputAspect (line 153) | class QInputAspect(PySide2.Qt3DCore.Qt3DCore.QAbstractAspect): method __init__ (line 155) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method availablePhysicalDevices (line 156) | def availablePhysicalDevices(self) -> list[str]: ... method createPhysicalDevice (line 157) | def createPhysicalDevice(self, name: str) -> Qt3DInput.QAbstractPhys... class QInputChord (line 159) | class QInputChord(Qt3DInput.QAbstractActionInput): method __init__ (line 162) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addChord (line 163) | def addChord(self, input: Qt3DInput.QAbstractActionInput) -> None: ... method chords (line 164) | def chords(self) -> list[Qt3DInput.QAbstractActionInput]: ... method removeChord (line 165) | def removeChord(self, input: Qt3DInput.QAbstractActionInput) -> None... method setTimeout (line 166) | def setTimeout(self, timeout: int) -> None: ... method timeout (line 167) | def timeout(self) -> int: ... class QInputSequence (line 169) | class QInputSequence(Qt3DInput.QAbstractActionInput): method __init__ (line 173) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addSequence (line 174) | def addSequence(self, input: Qt3DInput.QAbstractActionInput) -> None... method buttonInterval (line 175) | def buttonInterval(self) -> int: ... method removeSequence (line 176) | def removeSequence(self, input: Qt3DInput.QAbstractActionInput) -> N... method sequences (line 177) | def sequences(self) -> list[Qt3DInput.QAbstractActionInput]: ... method setButtonInterval (line 178) | def setButtonInterval(self, buttonInterval: int) -> None: ... method setTimeout (line 179) | def setTimeout(self, timeout: int) -> None: ... method timeout (line 180) | def timeout(self) -> int: ... class QInputSettings (line 182) | class QInputSettings(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 185) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method eventSource (line 186) | def eventSource(self) -> PySide2.QtCore.QObject: ... method setEventSource (line 187) | def setEventSource(self, eventSource: PySide2.QtCore.QObject) -> Non... class QKeyEvent (line 189) | class QKeyEvent(PySide2.QtCore.QObject): method __init__ (line 191) | def __init__(self, type: PySide2.QtCore.QEvent.Type, key: int, modif... method count (line 192) | def count(self) -> int: ... method isAccepted (line 193) | def isAccepted(self) -> bool: ... method isAutoRepeat (line 194) | def isAutoRepeat(self) -> bool: ... method key (line 195) | def key(self) -> int: ... method matches (line 196) | def matches(self, key_: PySide2.QtGui.QKeySequence.StandardKey) -> b... method modifiers (line 197) | def modifiers(self) -> int: ... method nativeScanCode (line 198) | def nativeScanCode(self) -> int: ... method setAccepted (line 199) | def setAccepted(self, accepted: bool) -> None: ... method text (line 200) | def text(self) -> str: ... method type (line 201) | def type(self) -> PySide2.QtCore.QEvent.Type: ... class QKeyboardDevice (line 203) | class QKeyboardDevice(Qt3DInput.QAbstractPhysicalDevice): method __init__ (line 206) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method activeInput (line 207) | def activeInput(self) -> Qt3DInput.QKeyboardHandler: ... method axisCount (line 208) | def axisCount(self) -> int: ... method axisIdentifier (line 209) | def axisIdentifier(self, name: str) -> int: ... method axisNames (line 210) | def axisNames(self) -> list[str]: ... method buttonCount (line 211) | def buttonCount(self) -> int: ... method buttonIdentifier (line 212) | def buttonIdentifier(self, name: str) -> int: ... method buttonNames (line 213) | def buttonNames(self) -> list[str]: ... class QKeyboardHandler (line 215) | class QKeyboardHandler(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 259) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method focus (line 260) | def focus(self) -> bool: ... method setFocus (line 261) | def setFocus(self, focus: bool) -> None: ... method setSourceDevice (line 262) | def setSourceDevice(self, keyboardDevice: Qt3DInput.QKeyboardDevice)... method sourceDevice (line 263) | def sourceDevice(self) -> Qt3DInput.QKeyboardDevice: ... class QLogicalDevice (line 265) | class QLogicalDevice(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 267) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method actions (line 268) | def actions(self) -> list[Qt3DInput.QAction]: ... method addAction (line 269) | def addAction(self, action: Qt3DInput.QAction) -> None: ... method addAxis (line 270) | def addAxis(self, axis: Qt3DInput.QAxis) -> None: ... method axes (line 271) | def axes(self) -> list[Qt3DInput.QAxis]: ... method removeAction (line 272) | def removeAction(self, action: Qt3DInput.QAction) -> None: ... method removeAxis (line 273) | def removeAxis(self, axis: Qt3DInput.QAxis) -> None: ... class QMouseDevice (line 275) | class QMouseDevice(Qt3DInput.QAbstractPhysicalDevice): class Axis (line 276) | class Axis: method __init__ (line 284) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 285) | def __add__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDe... method __and__ (line 286) | def __and__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDe... method __bool__ (line 287) | def __bool__(self) -> bool: ... method __eq__ (line 288) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 289) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 290) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 291) | def __hash__(self) -> int: ... method __index__ (line 292) | def __index__(self) -> int: ... method __int__ (line 293) | def __int__(self) -> int: ... method __le__ (line 294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 295) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 296) | def __mul__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDe... method __ne__ (line 297) | def __ne__(self, other: object) -> bool: ... method __or__ (line 298) | def __or__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDev... method __pos__ (line 299) | def __pos__(self): ... method __radd__ (line 300) | def __radd__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseD... method __rand__ (line 301) | def __rand__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseD... method __rmul__ (line 302) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseD... method __ror__ (line 303) | def __ror__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDe... method __rsub__ (line 304) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseD... method __rxor__ (line 305) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseD... method __sub__ (line 306) | def __sub__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDe... method __xor__ (line 307) | def __xor__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseDe... method __init__ (line 315) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method axisCount (line 316) | def axisCount(self) -> int: ... method axisIdentifier (line 317) | def axisIdentifier(self, name: str) -> int: ... method axisNames (line 318) | def axisNames(self) -> list[str]: ... method buttonCount (line 319) | def buttonCount(self) -> int: ... method buttonIdentifier (line 320) | def buttonIdentifier(self, name: str) -> int: ... method buttonNames (line 321) | def buttonNames(self) -> list[str]: ... method sensitivity (line 322) | def sensitivity(self) -> float: ... method setSensitivity (line 323) | def setSensitivity(self, value: float) -> None: ... method setUpdateAxesContinuously (line 324) | def setUpdateAxesContinuously(self, updateAxesContinuously: bool) ->... method updateAxesContinuously (line 325) | def updateAxesContinuously(self) -> bool: ... class QMouseEvent (line 327) | class QMouseEvent(PySide2.QtCore.QObject): class Buttons (line 328) | class Buttons: method __init__ (line 337) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 338) | def __add__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __and__ (line 339) | def __and__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __bool__ (line 340) | def __bool__(self) -> bool: ... method __eq__ (line 341) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 342) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 343) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 344) | def __hash__(self) -> int: ... method __index__ (line 345) | def __index__(self) -> int: ... method __int__ (line 346) | def __int__(self) -> int: ... method __le__ (line 347) | def __le__(self, other: object) -> bool: ... method __lt__ (line 348) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 349) | def __mul__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __ne__ (line 350) | def __ne__(self, other: object) -> bool: ... method __or__ (line 351) | def __or__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEve... method __pos__ (line 352) | def __pos__(self): ... method __radd__ (line 353) | def __radd__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __rand__ (line 354) | def __rand__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __rmul__ (line 355) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __ror__ (line 356) | def __ror__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __rsub__ (line 357) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __rxor__ (line 358) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __sub__ (line 359) | def __sub__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __xor__ (line 360) | def __xor__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... class Modifiers (line 362) | class Modifiers: method __init__ (line 372) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 373) | def __add__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __and__ (line 374) | def __and__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __bool__ (line 375) | def __bool__(self) -> bool: ... method __eq__ (line 376) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 377) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 378) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 379) | def __hash__(self) -> int: ... method __index__ (line 380) | def __index__(self) -> int: ... method __int__ (line 381) | def __int__(self) -> int: ... method __le__ (line 382) | def __le__(self, other: object) -> bool: ... method __lt__ (line 383) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 384) | def __mul__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __ne__ (line 385) | def __ne__(self, other: object) -> bool: ... method __or__ (line 386) | def __or__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEve... method __pos__ (line 387) | def __pos__(self): ... method __radd__ (line 388) | def __radd__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __rand__ (line 389) | def __rand__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __rmul__ (line 390) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __ror__ (line 391) | def __ror__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __rsub__ (line 392) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __rxor__ (line 393) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseE... method __sub__ (line 394) | def __sub__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __xor__ (line 395) | def __xor__(self, other: typing.SupportsInt) -> Qt3DInput.QMouseEv... method __init__ (line 409) | def __init__(cls, *args, accepted: bool = ..., button: Qt3DInput.QMo... method button (line 410) | def button(self) -> Qt3DInput.QMouseEvent.Buttons: ... method buttons (line 411) | def buttons(self) -> int: ... method isAccepted (line 412) | def isAccepted(self) -> bool: ... method modifiers (line 413) | def modifiers(self) -> Qt3DInput.QMouseEvent.Modifiers: ... method setAccepted (line 414) | def setAccepted(self, accepted: bool) -> None: ... method type (line 415) | def type(self) -> PySide2.QtCore.QEvent.Type: ... method wasHeld (line 416) | def wasHeld(self) -> bool: ... method x (line 417) | def x(self) -> int: ... method y (line 418) | def y(self) -> int: ... class QMouseHandler (line 420) | class QMouseHandler(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 433) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method containsMouse (line 434) | def containsMouse(self) -> bool: ... method setContainsMouse (line 435) | def setContainsMouse(self, contains: bool) -> None: ... method setSourceDevice (line 436) | def setSourceDevice(self, mouseDevice: Qt3DInput.QMouseDevice) -> No... method sourceDevice (line 437) | def sourceDevice(self) -> Qt3DInput.QMouseDevice: ... class QWheelEvent (line 439) | class QWheelEvent(PySide2.QtCore.QObject): class Buttons (line 440) | class Buttons: method __init__ (line 449) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 450) | def __add__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __and__ (line 451) | def __and__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __bool__ (line 452) | def __bool__(self) -> bool: ... method __eq__ (line 453) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 454) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 455) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 456) | def __hash__(self) -> int: ... method __index__ (line 457) | def __index__(self) -> int: ... method __int__ (line 458) | def __int__(self) -> int: ... method __le__ (line 459) | def __le__(self, other: object) -> bool: ... method __lt__ (line 460) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 461) | def __mul__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __ne__ (line 462) | def __ne__(self, other: object) -> bool: ... method __or__ (line 463) | def __or__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEve... method __pos__ (line 464) | def __pos__(self): ... method __radd__ (line 465) | def __radd__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __rand__ (line 466) | def __rand__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __rmul__ (line 467) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __ror__ (line 468) | def __ror__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __rsub__ (line 469) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __rxor__ (line 470) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __sub__ (line 471) | def __sub__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __xor__ (line 472) | def __xor__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... class Modifiers (line 474) | class Modifiers: method __init__ (line 484) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 485) | def __add__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __and__ (line 486) | def __and__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __bool__ (line 487) | def __bool__(self) -> bool: ... method __eq__ (line 488) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 489) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 490) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 491) | def __hash__(self) -> int: ... method __index__ (line 492) | def __index__(self) -> int: ... method __int__ (line 493) | def __int__(self) -> int: ... method __le__ (line 494) | def __le__(self, other: object) -> bool: ... method __lt__ (line 495) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 496) | def __mul__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __ne__ (line 497) | def __ne__(self, other: object) -> bool: ... method __or__ (line 498) | def __or__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEve... method __pos__ (line 499) | def __pos__(self): ... method __radd__ (line 500) | def __radd__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __rand__ (line 501) | def __rand__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __rmul__ (line 502) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __ror__ (line 503) | def __ror__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __rsub__ (line 504) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __rxor__ (line 505) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelE... method __sub__ (line 506) | def __sub__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __xor__ (line 507) | def __xor__(self, other: typing.SupportsInt) -> Qt3DInput.QWheelEv... method __init__ (line 521) | def __init__(cls, *args, accepted: bool = ..., angleDelta: PySide2.Q... method angleDelta (line 522) | def angleDelta(self) -> PySide2.QtCore.QPoint: ... method buttons (line 523) | def buttons(self) -> int: ... method isAccepted (line 524) | def isAccepted(self) -> bool: ... method modifiers (line 525) | def modifiers(self) -> Qt3DInput.QWheelEvent.Modifiers: ... method setAccepted (line 526) | def setAccepted(self, accepted: bool) -> None: ... method type (line 527) | def type(self) -> PySide2.QtCore.QEvent.Type: ... method x (line 528) | def x(self) -> int: ... method y (line 529) | def y(self) -> int: ... method __init__ (line 531) | def __init__(cls, *args, **kwargs) -> None: ... FILE: pyside/stubs/PySide2-stubs/Qt3DLogic.pyi class Qt3DLogic (line 11) | class Qt3DLogic(shiboken2.Object): class QFrameAction (line 12) | class QFrameAction(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 15) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QLogicAspect (line 17) | class QLogicAspect(PySide2.Qt3DCore.Qt3DCore.QAbstractAspect): method __init__ (line 19) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method __init__ (line 21) | def __init__(cls, *args, **kwargs) -> None: ... FILE: pyside/stubs/PySide2-stubs/Qt3DRender.pyi class Qt3DRender (line 13) | class Qt3DRender(shiboken2.Object): class API (line 14) | class API: method __init__ (line 23) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 24) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __and__ (line 25) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __bool__ (line 26) | def __bool__(self) -> bool: ... method __eq__ (line 27) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 28) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 29) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 30) | def __hash__(self) -> int: ... method __index__ (line 31) | def __index__(self) -> int: ... method __int__ (line 32) | def __int__(self) -> int: ... method __le__ (line 33) | def __le__(self, other: object) -> bool: ... method __lt__ (line 34) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 35) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __ne__ (line 36) | def __ne__(self, other: object) -> bool: ... method __or__ (line 37) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __pos__ (line 38) | def __pos__(self): ... method __radd__ (line 39) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __rand__ (line 40) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __rmul__ (line 41) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __ror__ (line 42) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __rsub__ (line 43) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __rxor__ (line 44) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __sub__ (line 45) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... method __xor__ (line 46) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.API: ... class PropertyReaderInterface (line 48) | class PropertyReaderInterface(shiboken2.Object): method __init__ (line 49) | def __init__(self) -> None: ... method readProperty (line 50) | def readProperty(self, v: typing.Any) -> typing.Any: ... class QAbstractFunctor (line 52) | class QAbstractFunctor(shiboken2.Object): method __init__ (line 53) | def __init__(self) -> None: ... method id (line 54) | def id(self) -> int: ... class QAbstractLight (line 56) | class QAbstractLight(PySide2.Qt3DCore.Qt3DCore.QComponent): class Type (line 57) | class Type: method __init__ (line 64) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 65) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 66) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 67) | def __bool__(self) -> bool: ... method __eq__ (line 68) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 69) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 70) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 71) | def __hash__(self) -> int: ... method __index__ (line 72) | def __index__(self) -> int: ... method __int__ (line 73) | def __int__(self) -> int: ... method __le__ (line 74) | def __le__(self, other: object) -> bool: ... method __lt__ (line 75) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 76) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 77) | def __ne__(self, other: object) -> bool: ... method __or__ (line 78) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 79) | def __pos__(self): ... method __radd__ (line 80) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 81) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 82) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 83) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 84) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 85) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 86) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 87) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __init__ (line 95) | def __init__(cls, *args, addedToEntity: typing.Callable = ..., color... method color (line 96) | def color(self) -> PySide2.QtGui.QColor: ... method intensity (line 97) | def intensity(self) -> float: ... method setColor (line 98) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setIntensity (line 99) | def setIntensity(self, intensity: float) -> None: ... method type (line 100) | def type(self) -> Qt3DRender.QAbstractLight.Type: ... class QAbstractRayCaster (line 102) | class QAbstractRayCaster(PySide2.Qt3DCore.Qt3DCore.QComponent): class FilterMode (line 103) | class FilterMode: method __init__ (line 111) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 112) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 113) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 114) | def __bool__(self) -> bool: ... method __eq__ (line 115) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 116) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 117) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 118) | def __hash__(self) -> int: ... method __index__ (line 119) | def __index__(self) -> int: ... method __int__ (line 120) | def __int__(self) -> int: ... method __le__ (line 121) | def __le__(self, other: object) -> bool: ... method __lt__ (line 122) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 123) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 124) | def __ne__(self, other: object) -> bool: ... method __or__ (line 125) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 126) | def __pos__(self): ... method __radd__ (line 127) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 128) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 129) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 130) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 131) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 132) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 133) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 134) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class RunMode (line 136) | class RunMode: method __init__ (line 142) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 143) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 144) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 145) | def __bool__(self) -> bool: ... method __eq__ (line 146) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 147) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 148) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 149) | def __hash__(self) -> int: ... method __index__ (line 150) | def __index__(self) -> int: ... method __int__ (line 151) | def __int__(self) -> int: ... method __le__ (line 152) | def __le__(self, other: object) -> bool: ... method __lt__ (line 153) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 154) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 155) | def __ne__(self, other: object) -> bool: ... method __or__ (line 156) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 157) | def __pos__(self): ... method __radd__ (line 158) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 159) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 160) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 161) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 162) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 163) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 164) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 165) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __init__ (line 176) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addLayer (line 177) | def addLayer(self, layer: Qt3DRender.QLayer) -> None: ... method filterMode (line 178) | def filterMode(self) -> Qt3DRender.QAbstractRayCaster.FilterMode: ... method hits (line 179) | def hits(self) -> list[Qt3DRender.QRayCasterHit]: ... method layers (line 180) | def layers(self) -> list[Qt3DRender.QLayer]: ... method removeLayer (line 181) | def removeLayer(self, layer: Qt3DRender.QLayer) -> None: ... method runMode (line 182) | def runMode(self) -> Qt3DRender.QAbstractRayCaster.RunMode: ... method setFilterMode (line 183) | def setFilterMode(self, filterMode: Qt3DRender.QAbstractRayCaster.Fi... method setRunMode (line 184) | def setRunMode(self, runMode: Qt3DRender.QAbstractRayCaster.RunMode)... class QAbstractTexture (line 186) | class QAbstractTexture(PySide2.Qt3DCore.Qt3DCore.QNode): class ComparisonFunction (line 187) | class ComparisonFunction: method __init__ (line 199) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 200) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 201) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 202) | def __bool__(self) -> bool: ... method __eq__ (line 203) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 204) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 205) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 206) | def __hash__(self) -> int: ... method __index__ (line 207) | def __index__(self) -> int: ... method __int__ (line 208) | def __int__(self) -> int: ... method __le__ (line 209) | def __le__(self, other: object) -> bool: ... method __lt__ (line 210) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 211) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 212) | def __ne__(self, other: object) -> bool: ... method __or__ (line 213) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 214) | def __pos__(self): ... method __radd__ (line 215) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 216) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 217) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 218) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 219) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 220) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 221) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 222) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class ComparisonMode (line 224) | class ComparisonMode: method __init__ (line 230) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 231) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 232) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 233) | def __bool__(self) -> bool: ... method __eq__ (line 234) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 235) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 236) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 237) | def __hash__(self) -> int: ... method __index__ (line 238) | def __index__(self) -> int: ... method __int__ (line 239) | def __int__(self) -> int: ... method __le__ (line 240) | def __le__(self, other: object) -> bool: ... method __lt__ (line 241) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 242) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 243) | def __ne__(self, other: object) -> bool: ... method __or__ (line 244) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 245) | def __pos__(self): ... method __radd__ (line 246) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 247) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 248) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 249) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 250) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 251) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 252) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 253) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class CubeMapFace (line 255) | class CubeMapFace: method __init__ (line 266) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 267) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 268) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 269) | def __bool__(self) -> bool: ... method __eq__ (line 270) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 271) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 272) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 273) | def __hash__(self) -> int: ... method __index__ (line 274) | def __index__(self) -> int: ... method __int__ (line 275) | def __int__(self) -> int: ... method __le__ (line 276) | def __le__(self, other: object) -> bool: ... method __lt__ (line 277) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 278) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 279) | def __ne__(self, other: object) -> bool: ... method __or__ (line 280) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 281) | def __pos__(self): ... method __radd__ (line 282) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 283) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 284) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 285) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 286) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 287) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 288) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 289) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class Filter (line 291) | class Filter: method __init__ (line 301) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 302) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 303) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 304) | def __bool__(self) -> bool: ... method __eq__ (line 305) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 306) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 307) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 308) | def __hash__(self) -> int: ... method __index__ (line 309) | def __index__(self) -> int: ... method __int__ (line 310) | def __int__(self) -> int: ... method __le__ (line 311) | def __le__(self, other: object) -> bool: ... method __lt__ (line 312) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 313) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 314) | def __ne__(self, other: object) -> bool: ... method __or__ (line 315) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 316) | def __pos__(self): ... method __radd__ (line 317) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 318) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 319) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 320) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 321) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 322) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 323) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 324) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class HandleType (line 326) | class HandleType: method __init__ (line 332) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 333) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 334) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 335) | def __bool__(self) -> bool: ... method __eq__ (line 336) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 337) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 338) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 339) | def __hash__(self) -> int: ... method __index__ (line 340) | def __index__(self) -> int: ... method __int__ (line 341) | def __int__(self) -> int: ... method __le__ (line 342) | def __le__(self, other: object) -> bool: ... method __lt__ (line 343) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 344) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 345) | def __ne__(self, other: object) -> bool: ... method __or__ (line 346) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 347) | def __pos__(self): ... method __radd__ (line 348) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 349) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 350) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 351) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 352) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 353) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 354) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 355) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class Status (line 357) | class Status: method __init__ (line 365) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 366) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 367) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 368) | def __bool__(self) -> bool: ... method __eq__ (line 369) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 370) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 371) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 372) | def __hash__(self) -> int: ... method __index__ (line 373) | def __index__(self) -> int: ... method __int__ (line 374) | def __int__(self) -> int: ... method __le__ (line 375) | def __le__(self, other: object) -> bool: ... method __lt__ (line 376) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 377) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 378) | def __ne__(self, other: object) -> bool: ... method __or__ (line 379) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 380) | def __pos__(self): ... method __radd__ (line 381) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 382) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 383) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 384) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 385) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 386) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 387) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 388) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class Target (line 390) | class Target: method __init__ (line 406) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 407) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 408) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 409) | def __bool__(self) -> bool: ... method __eq__ (line 410) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 411) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 412) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 413) | def __hash__(self) -> int: ... method __index__ (line 414) | def __index__(self) -> int: ... method __int__ (line 415) | def __int__(self) -> int: ... method __le__ (line 416) | def __le__(self, other: object) -> bool: ... method __lt__ (line 417) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 418) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 419) | def __ne__(self, other: object) -> bool: ... method __or__ (line 420) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 421) | def __pos__(self): ... method __radd__ (line 422) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 423) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 424) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 425) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 426) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 427) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 428) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 429) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... class TextureFormat (line 431) | class TextureFormat: method __init__ (line 534) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 535) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __and__ (line 536) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __bool__ (line 537) | def __bool__(self) -> bool: ... method __eq__ (line 538) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 539) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 540) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 541) | def __hash__(self) -> int: ... method __index__ (line 542) | def __index__(self) -> int: ... method __int__ (line 543) | def __int__(self) -> int: ... method __le__ (line 544) | def __le__(self, other: object) -> bool: ... method __lt__ (line 545) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 546) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __ne__ (line 547) | def __ne__(self, other: object) -> bool: ... method __or__ (line 548) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstrac... method __pos__ (line 549) | def __pos__(self): ... method __radd__ (line 550) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rand__ (line 551) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rmul__ (line 552) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __ror__ (line 553) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __rsub__ (line 554) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __rxor__ (line 555) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstr... method __sub__ (line 556) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __xor__ (line 557) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAbstra... method __init__ (line 715) | def __init__(self, target: Qt3DRender.QAbstractTexture.Target, paren... method __init__ (line 717) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addTextureImage (line 718) | def addTextureImage(self, textureImage: Qt3DRender.QAbstractTextureI... method comparisonFunction (line 719) | def comparisonFunction(self) -> Qt3DRender.QAbstractTexture.Comparis... method comparisonMode (line 720) | def comparisonMode(self) -> Qt3DRender.QAbstractTexture.ComparisonMo... method depth (line 721) | def depth(self) -> int: ... method format (line 722) | def format(self) -> Qt3DRender.QAbstractTexture.TextureFormat: ... method generateMipMaps (line 723) | def generateMipMaps(self) -> bool: ... method handle (line 724) | def handle(self) -> typing.Any: ... method handleType (line 725) | def handleType(self) -> Qt3DRender.QAbstractTexture.HandleType: ... method height (line 726) | def height(self) -> int: ... method layers (line 727) | def layers(self) -> int: ... method magnificationFilter (line 728) | def magnificationFilter(self) -> Qt3DRender.QAbstractTexture.Filter:... method maximumAnisotropy (line 729) | def maximumAnisotropy(self) -> float: ... method minificationFilter (line 730) | def minificationFilter(self) -> Qt3DRender.QAbstractTexture.Filter: ... method removeTextureImage (line 731) | def removeTextureImage(self, textureImage: Qt3DRender.QAbstractTextu... method samples (line 732) | def samples(self) -> int: ... method setComparisonFunction (line 733) | def setComparisonFunction(self, function: Qt3DRender.QAbstractTextur... method setComparisonMode (line 734) | def setComparisonMode(self, mode: Qt3DRender.QAbstractTexture.Compar... method setDepth (line 735) | def setDepth(self, depth: int) -> None: ... method setFormat (line 736) | def setFormat(self, format: Qt3DRender.QAbstractTexture.TextureForma... method setGenerateMipMaps (line 737) | def setGenerateMipMaps(self, gen: bool) -> None: ... method setHandle (line 738) | def setHandle(self, handle: typing.Any) -> None: ... method setHandleType (line 739) | def setHandleType(self, type: Qt3DRender.QAbstractTexture.HandleType... method setHeight (line 740) | def setHeight(self, height: int) -> None: ... method setLayers (line 741) | def setLayers(self, layers: int) -> None: ... method setMagnificationFilter (line 742) | def setMagnificationFilter(self, f: Qt3DRender.QAbstractTexture.Filt... method setMaximumAnisotropy (line 743) | def setMaximumAnisotropy(self, anisotropy: float) -> None: ... method setMinificationFilter (line 744) | def setMinificationFilter(self, f: Qt3DRender.QAbstractTexture.Filte... method setSamples (line 745) | def setSamples(self, samples: int) -> None: ... method setSize (line 746) | def setSize(self, width: int, height: int = ..., depth: int = ...) -... method setStatus (line 747) | def setStatus(self, status: Qt3DRender.QAbstractTexture.Status) -> N... method setWidth (line 748) | def setWidth(self, width: int) -> None: ... method setWrapMode (line 749) | def setWrapMode(self, wrapMode: Qt3DRender.QTextureWrapMode) -> None... method status (line 750) | def status(self) -> Qt3DRender.QAbstractTexture.Status: ... method target (line 751) | def target(self) -> Qt3DRender.QAbstractTexture.Target: ... method textureImages (line 752) | def textureImages(self) -> list[Qt3DRender.QAbstractTextureImage]: ... method width (line 753) | def width(self) -> int: ... method wrapMode (line 754) | def wrapMode(self) -> Qt3DRender.QTextureWrapMode: ... class QAbstractTextureImage (line 756) | class QAbstractTextureImage(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 762) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DRender.QAb... method face (line 763) | def face(self) -> Qt3DRender.QAbstractTexture.CubeMapFace: ... method layer (line 764) | def layer(self) -> int: ... method mipLevel (line 765) | def mipLevel(self) -> int: ... method notifyDataGeneratorChanged (line 766) | def notifyDataGeneratorChanged(self) -> None: ... method setFace (line 767) | def setFace(self, face: Qt3DRender.QAbstractTexture.CubeMapFace) -> ... method setLayer (line 768) | def setLayer(self, layer: int) -> None: ... method setMipLevel (line 769) | def setMipLevel(self, level: int) -> None: ... class QAlphaCoverage (line 771) | class QAlphaCoverage(Qt3DRender.QRenderState): method __init__ (line 773) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QAlphaTest (line 775) | class QAlphaTest(Qt3DRender.QRenderState): class AlphaFunction (line 776) | class AlphaFunction: method __init__ (line 788) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 789) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaT... method __and__ (line 790) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaT... method __bool__ (line 791) | def __bool__(self) -> bool: ... method __eq__ (line 792) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 793) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 794) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 795) | def __hash__(self) -> int: ... method __index__ (line 796) | def __index__(self) -> int: ... method __int__ (line 797) | def __int__(self) -> int: ... method __le__ (line 798) | def __le__(self, other: object) -> bool: ... method __lt__ (line 799) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 800) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaT... method __ne__ (line 801) | def __ne__(self, other: object) -> bool: ... method __or__ (line 802) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaTe... method __pos__ (line 803) | def __pos__(self): ... method __radd__ (line 804) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAlpha... method __rand__ (line 805) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAlpha... method __rmul__ (line 806) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAlpha... method __ror__ (line 807) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaT... method __rsub__ (line 808) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAlpha... method __rxor__ (line 809) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAlpha... method __sub__ (line 810) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaT... method __xor__ (line 811) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAlphaT... method __init__ (line 823) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method alphaFunction (line 824) | def alphaFunction(self) -> Qt3DRender.QAlphaTest.AlphaFunction: ... method referenceValue (line 825) | def referenceValue(self) -> float: ... method setAlphaFunction (line 826) | def setAlphaFunction(self, alphaFunction: Qt3DRender.QAlphaTest.Alph... method setReferenceValue (line 827) | def setReferenceValue(self, referenceValue: float) -> None: ... class QAttribute (line 829) | class QAttribute(PySide2.Qt3DCore.Qt3DCore.QNode): class AttributeType (line 830) | class AttributeType: method __init__ (line 837) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 838) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __and__ (line 839) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __bool__ (line 840) | def __bool__(self) -> bool: ... method __eq__ (line 841) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 842) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 843) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 844) | def __hash__(self) -> int: ... method __index__ (line 845) | def __index__(self) -> int: ... method __int__ (line 846) | def __int__(self) -> int: ... method __le__ (line 847) | def __le__(self, other: object) -> bool: ... method __lt__ (line 848) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 849) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __ne__ (line 850) | def __ne__(self, other: object) -> bool: ... method __or__ (line 851) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAttribu... method __pos__ (line 852) | def __pos__(self): ... method __radd__ (line 853) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __rand__ (line 854) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __rmul__ (line 855) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __ror__ (line 856) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __rsub__ (line 857) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __rxor__ (line 858) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __sub__ (line 859) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __xor__ (line 860) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... class VertexBaseType (line 862) | class VertexBaseType: method __init__ (line 875) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 876) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __and__ (line 877) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __bool__ (line 878) | def __bool__(self) -> bool: ... method __eq__ (line 879) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 880) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 881) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 882) | def __hash__(self) -> int: ... method __index__ (line 883) | def __index__(self) -> int: ... method __int__ (line 884) | def __int__(self) -> int: ... method __le__ (line 885) | def __le__(self, other: object) -> bool: ... method __lt__ (line 886) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 887) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __ne__ (line 888) | def __ne__(self, other: object) -> bool: ... method __or__ (line 889) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QAttribu... method __pos__ (line 890) | def __pos__(self): ... method __radd__ (line 891) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __rand__ (line 892) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __rmul__ (line 893) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __ror__ (line 894) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __rsub__ (line 895) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __rxor__ (line 896) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QAttri... method __sub__ (line 897) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __xor__ (line 898) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QAttrib... method __init__ (line 924) | def __init__(self, buf: Qt3DRender.QBuffer, vertexBaseType: Qt3DRend... method __init__ (line 926) | def __init__(self, buf: Qt3DRender.QBuffer, name: str, vertexBaseTyp... method __init__ (line 928) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method attributeType (line 929) | def attributeType(self) -> Qt3DRender.QAttribute.AttributeType: ... method buffer (line 930) | def buffer(self) -> Qt3DRender.QBuffer: ... method byteOffset (line 931) | def byteOffset(self) -> int: ... method byteStride (line 932) | def byteStride(self) -> int: ... method count (line 933) | def count(self) -> int: ... method defaultColorAttributeName (line 935) | def defaultColorAttributeName() -> str: ... method defaultJointIndicesAttributeName (line 937) | def defaultJointIndicesAttributeName() -> str: ... method defaultJointWeightsAttributeName (line 939) | def defaultJointWeightsAttributeName() -> str: ... method defaultNormalAttributeName (line 941) | def defaultNormalAttributeName() -> str: ... method defaultPositionAttributeName (line 943) | def defaultPositionAttributeName() -> str: ... method defaultTangentAttributeName (line 945) | def defaultTangentAttributeName() -> str: ... method defaultTextureCoordinate1AttributeName (line 947) | def defaultTextureCoordinate1AttributeName() -> str: ... method defaultTextureCoordinate2AttributeName (line 949) | def defaultTextureCoordinate2AttributeName() -> str: ... method defaultTextureCoordinateAttributeName (line 951) | def defaultTextureCoordinateAttributeName() -> str: ... method divisor (line 952) | def divisor(self) -> int: ... method name (line 953) | def name(self) -> str: ... method setAttributeType (line 954) | def setAttributeType(self, attributeType: Qt3DRender.QAttribute.Attr... method setBuffer (line 955) | def setBuffer(self, buffer: Qt3DRender.QBuffer) -> None: ... method setByteOffset (line 956) | def setByteOffset(self, byteOffset: int) -> None: ... method setByteStride (line 957) | def setByteStride(self, byteStride: int) -> None: ... method setCount (line 958) | def setCount(self, count: int) -> None: ... method setDataSize (line 959) | def setDataSize(self, size: int) -> None: ... method setDataType (line 960) | def setDataType(self, type: Qt3DRender.QAttribute.VertexBaseType) ->... method setDivisor (line 961) | def setDivisor(self, divisor: int) -> None: ... method setName (line 962) | def setName(self, name: str) -> None: ... method setVertexBaseType (line 963) | def setVertexBaseType(self, type: Qt3DRender.QAttribute.VertexBaseTy... method setVertexSize (line 964) | def setVertexSize(self, size: int) -> None: ... method vertexBaseType (line 965) | def vertexBaseType(self) -> Qt3DRender.QAttribute.VertexBaseType: ... method vertexSize (line 966) | def vertexSize(self) -> int: ... class QBlendEquation (line 968) | class QBlendEquation(Qt3DRender.QRenderState): class BlendFunction (line 969) | class BlendFunction: method __init__ (line 978) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 979) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __and__ (line 980) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __bool__ (line 981) | def __bool__(self) -> bool: ... method __eq__ (line 982) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 983) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 984) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 985) | def __hash__(self) -> int: ... method __index__ (line 986) | def __index__(self) -> int: ... method __int__ (line 987) | def __int__(self) -> int: ... method __le__ (line 988) | def __le__(self, other: object) -> bool: ... method __lt__ (line 989) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 990) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __ne__ (line 991) | def __ne__(self, other: object) -> bool: ... method __or__ (line 992) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendEq... method __pos__ (line 993) | def __pos__(self): ... method __radd__ (line 994) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __rand__ (line 995) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __rmul__ (line 996) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __ror__ (line 997) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __rsub__ (line 998) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __rxor__ (line 999) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __sub__ (line 1000) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __xor__ (line 1001) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __init__ (line 1009) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method blendFunction (line 1010) | def blendFunction(self) -> Qt3DRender.QBlendEquation.BlendFunction: ... method setBlendFunction (line 1011) | def setBlendFunction(self, blendFunction: Qt3DRender.QBlendEquation.... class QBlendEquationArguments (line 1013) | class QBlendEquationArguments(Qt3DRender.QRenderState): class Blending (line 1014) | class Blending: method __init__ (line 1038) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1039) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __and__ (line 1040) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __bool__ (line 1041) | def __bool__(self) -> bool: ... method __eq__ (line 1042) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1043) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1044) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1045) | def __hash__(self) -> int: ... method __index__ (line 1046) | def __index__(self) -> int: ... method __int__ (line 1047) | def __int__(self) -> int: ... method __le__ (line 1048) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1049) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1050) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __ne__ (line 1051) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1052) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendEq... method __pos__ (line 1053) | def __pos__(self): ... method __radd__ (line 1054) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __rand__ (line 1055) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __rmul__ (line 1056) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __ror__ (line 1057) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __rsub__ (line 1058) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __rxor__ (line 1059) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QBlend... method __sub__ (line 1060) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __xor__ (line 1061) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QBlendE... method __init__ (line 1090) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method bufferIndex (line 1091) | def bufferIndex(self) -> int: ... method destinationAlpha (line 1092) | def destinationAlpha(self) -> Qt3DRender.QBlendEquationArguments.Ble... method destinationRgb (line 1093) | def destinationRgb(self) -> Qt3DRender.QBlendEquationArguments.Blend... method setBufferIndex (line 1094) | def setBufferIndex(self, index: int) -> None: ... method setDestinationAlpha (line 1095) | def setDestinationAlpha(self, destinationAlpha: Qt3DRender.QBlendEqu... method setDestinationRgb (line 1096) | def setDestinationRgb(self, destinationRgb: Qt3DRender.QBlendEquatio... method setDestinationRgba (line 1097) | def setDestinationRgba(self, destinationRgba: Qt3DRender.QBlendEquat... method setSourceAlpha (line 1098) | def setSourceAlpha(self, sourceAlpha: Qt3DRender.QBlendEquationArgum... method setSourceRgb (line 1099) | def setSourceRgb(self, sourceRgb: Qt3DRender.QBlendEquationArguments... method setSourceRgba (line 1100) | def setSourceRgba(self, sourceRgba: Qt3DRender.QBlendEquationArgumen... method sourceAlpha (line 1101) | def sourceAlpha(self) -> Qt3DRender.QBlendEquationArguments.Blending... method sourceRgb (line 1102) | def sourceRgb(self) -> Qt3DRender.QBlendEquationArguments.Blending: ... class QBlitFramebuffer (line 1104) | class QBlitFramebuffer(Qt3DRender.QFrameGraphNode): class InterpolationMethod (line 1105) | class InterpolationMethod: method __init__ (line 1111) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1112) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFr... method __and__ (line 1113) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFr... method __bool__ (line 1114) | def __bool__(self) -> bool: ... method __eq__ (line 1115) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1116) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1117) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1118) | def __hash__(self) -> int: ... method __index__ (line 1119) | def __index__(self) -> int: ... method __int__ (line 1120) | def __int__(self) -> int: ... method __le__ (line 1121) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1122) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1123) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFr... method __ne__ (line 1124) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1125) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFra... method __pos__ (line 1126) | def __pos__(self): ... method __radd__ (line 1127) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitF... method __rand__ (line 1128) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitF... method __rmul__ (line 1129) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitF... method __ror__ (line 1130) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFr... method __rsub__ (line 1131) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitF... method __rxor__ (line 1132) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitF... method __sub__ (line 1133) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFr... method __xor__ (line 1134) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QBlitFr... method __init__ (line 1145) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method destination (line 1146) | def destination(self) -> Qt3DRender.QRenderTarget: ... method destinationAttachmentPoint (line 1147) | def destinationAttachmentPoint(self) -> Qt3DRender.QRenderTargetOutp... method destinationRect (line 1148) | def destinationRect(self) -> PySide2.QtCore.QRectF: ... method interpolationMethod (line 1149) | def interpolationMethod(self) -> Qt3DRender.QBlitFramebuffer.Interpo... method setDestination (line 1150) | def setDestination(self, destination: Qt3DRender.QRenderTarget) -> N... method setDestinationAttachmentPoint (line 1151) | def setDestinationAttachmentPoint(self, destinationAttachmentPoint: ... method setDestinationRect (line 1152) | def setDestinationRect(self, destinationRect: PySide2.QtCore.QRectF)... method setInterpolationMethod (line 1153) | def setInterpolationMethod(self, interpolationMethod: Qt3DRender.QBl... method setSource (line 1154) | def setSource(self, source: Qt3DRender.QRenderTarget) -> None: ... method setSourceAttachmentPoint (line 1155) | def setSourceAttachmentPoint(self, sourceAttachmentPoint: Qt3DRender... method setSourceRect (line 1156) | def setSourceRect(self, sourceRect: PySide2.QtCore.QRectF) -> None: ... method source (line 1157) | def source(self) -> Qt3DRender.QRenderTarget: ... method sourceAttachmentPoint (line 1158) | def sourceAttachmentPoint(self) -> Qt3DRender.QRenderTargetOutput.At... method sourceRect (line 1159) | def sourceRect(self) -> PySide2.QtCore.QRectF: ... class QBuffer (line 1161) | class QBuffer(PySide2.Qt3DCore.Qt3DCore.QNode): class AccessType (line 1162) | class AccessType: method __init__ (line 1169) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1170) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __and__ (line 1171) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __bool__ (line 1172) | def __bool__(self) -> bool: ... method __eq__ (line 1173) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1174) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1175) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1176) | def __hash__(self) -> int: ... method __index__ (line 1177) | def __index__(self) -> int: ... method __int__ (line 1178) | def __int__(self) -> int: ... method __le__ (line 1179) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1180) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1181) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __ne__ (line 1182) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1183) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer.... method __pos__ (line 1184) | def __pos__(self): ... method __radd__ (line 1185) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rand__ (line 1186) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rmul__ (line 1187) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __ror__ (line 1188) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __rsub__ (line 1189) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rxor__ (line 1190) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __sub__ (line 1191) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __xor__ (line 1192) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... class BufferType (line 1194) | class BufferType: method __init__ (line 1205) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1206) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __and__ (line 1207) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __bool__ (line 1208) | def __bool__(self) -> bool: ... method __eq__ (line 1209) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1210) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1211) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1212) | def __hash__(self) -> int: ... method __index__ (line 1213) | def __index__(self) -> int: ... method __int__ (line 1214) | def __int__(self) -> int: ... method __le__ (line 1215) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1216) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1217) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __ne__ (line 1218) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1219) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer.... method __pos__ (line 1220) | def __pos__(self): ... method __radd__ (line 1221) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rand__ (line 1222) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rmul__ (line 1223) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __ror__ (line 1224) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __rsub__ (line 1225) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rxor__ (line 1226) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __sub__ (line 1227) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __xor__ (line 1228) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... class UsageType (line 1230) | class UsageType: method __init__ (line 1243) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1244) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __and__ (line 1245) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __bool__ (line 1246) | def __bool__(self) -> bool: ... method __eq__ (line 1247) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1248) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1249) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1250) | def __hash__(self) -> int: ... method __index__ (line 1251) | def __index__(self) -> int: ... method __int__ (line 1252) | def __int__(self) -> int: ... method __le__ (line 1253) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1254) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1255) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __ne__ (line 1256) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1257) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer.... method __pos__ (line 1258) | def __pos__(self): ... method __radd__ (line 1259) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rand__ (line 1260) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rmul__ (line 1261) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __ror__ (line 1262) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __rsub__ (line 1263) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __rxor__ (line 1264) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffe... method __sub__ (line 1265) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __xor__ (line 1266) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QBuffer... method __init__ (line 1294) | def __init__(self, ty: Qt3DRender.QBuffer.BufferType, parent: PySide... method __init__ (line 1296) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method accessType (line 1297) | def accessType(self) -> Qt3DRender.QBuffer.AccessType: ... method data (line 1298) | def data(self) -> PySide2.QtCore.QByteArray: ... method isSyncData (line 1299) | def isSyncData(self) -> bool: ... method setAccessType (line 1300) | def setAccessType(self, access: Qt3DRender.QBuffer.AccessType) -> No... method setData (line 1301) | def setData(self, bytes: PySide2.QtCore.QByteArray | bytes) -> None:... method setSyncData (line 1302) | def setSyncData(self, syncData: bool) -> None: ... method setType (line 1303) | def setType(self, type: Qt3DRender.QBuffer.BufferType) -> None: ... method setUsage (line 1304) | def setUsage(self, usage: Qt3DRender.QBuffer.UsageType) -> None: ... method type (line 1305) | def type(self) -> Qt3DRender.QBuffer.BufferType: ... method updateData (line 1306) | def updateData(self, offset: int, bytes: PySide2.QtCore.QByteArray |... method usage (line 1307) | def usage(self) -> Qt3DRender.QBuffer.UsageType: ... class QBufferCapture (line 1309) | class QBufferCapture(Qt3DRender.QFrameGraphNode): method __init__ (line 1311) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QBufferDataGenerator (line 1313) | class QBufferDataGenerator(Qt3DRender.QAbstractFunctor): method __init__ (line 1314) | def __init__(self) -> None: ... method __eq__ (line 1315) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1316) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1317) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1318) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1319) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1320) | def __ne__(self, other: object) -> bool: ... class QCamera (line 1322) | class QCamera(PySide2.Qt3DCore.Qt3DCore.QEntity): class CameraTranslationOption (line 1323) | class CameraTranslationOption: method __init__ (line 1329) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1330) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __and__ (line 1331) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __bool__ (line 1332) | def __bool__(self) -> bool: ... method __eq__ (line 1333) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1334) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1335) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1336) | def __hash__(self) -> int: ... method __index__ (line 1337) | def __index__(self) -> int: ... method __int__ (line 1338) | def __int__(self) -> int: ... method __le__ (line 1339) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1340) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1341) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __ne__ (line 1342) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1343) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera.... method __pos__ (line 1344) | def __pos__(self): ... method __radd__ (line 1345) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __rand__ (line 1346) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __rmul__ (line 1347) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __ror__ (line 1348) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __rsub__ (line 1349) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __rxor__ (line 1350) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __sub__ (line 1351) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __xor__ (line 1352) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __init__ (line 1372) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method aspectRatio (line 1373) | def aspectRatio(self) -> float: ... method bottom (line 1374) | def bottom(self) -> float: ... method exposure (line 1375) | def exposure(self) -> float: ... method farPlane (line 1376) | def farPlane(self) -> float: ... method fieldOfView (line 1377) | def fieldOfView(self) -> float: ... method left (line 1378) | def left(self) -> float: ... method lens (line 1379) | def lens(self) -> Qt3DRender.QCameraLens: ... method nearPlane (line 1380) | def nearPlane(self) -> float: ... method pan (line 1382) | def pan(self, angle: float, axis: PySide2.QtGui.QVector3D) -> None: ... method pan (line 1384) | def pan(self, angle: float) -> None: ... method panAboutViewCenter (line 1386) | def panAboutViewCenter(self, angle: float, axis: PySide2.QtGui.QVect... method panAboutViewCenter (line 1388) | def panAboutViewCenter(self, angle: float) -> None: ... method panRotation (line 1389) | def panRotation(self, angle: float) -> PySide2.QtGui.QQuaternion: ... method position (line 1390) | def position(self) -> PySide2.QtGui.QVector3D: ... method projectionMatrix (line 1391) | def projectionMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method projectionType (line 1392) | def projectionType(self) -> Qt3DRender.QCameraLens.ProjectionType: ... method right (line 1393) | def right(self) -> float: ... method roll (line 1394) | def roll(self, angle: float) -> None: ... method rollAboutViewCenter (line 1395) | def rollAboutViewCenter(self, angle: float) -> None: ... method rollRotation (line 1396) | def rollRotation(self, angle: float) -> PySide2.QtGui.QQuaternion: ... method rotate (line 1397) | def rotate(self, q: PySide2.QtGui.QQuaternion) -> None: ... method rotateAboutViewCenter (line 1398) | def rotateAboutViewCenter(self, q: PySide2.QtGui.QQuaternion) -> Non... method rotation (line 1399) | def rotation(self, angle: float, axis: PySide2.QtGui.QVector3D) -> P... method setAspectRatio (line 1400) | def setAspectRatio(self, aspectRatio: float) -> None: ... method setBottom (line 1401) | def setBottom(self, bottom: float) -> None: ... method setExposure (line 1402) | def setExposure(self, exposure: float) -> None: ... method setFarPlane (line 1403) | def setFarPlane(self, farPlane: float) -> None: ... method setFieldOfView (line 1404) | def setFieldOfView(self, fieldOfView: float) -> None: ... method setLeft (line 1405) | def setLeft(self, left: float) -> None: ... method setNearPlane (line 1406) | def setNearPlane(self, nearPlane: float) -> None: ... method setPosition (line 1407) | def setPosition(self, position: PySide2.QtGui.QVector3D) -> None: ... method setProjectionMatrix (line 1408) | def setProjectionMatrix(self, projectionMatrix: PySide2.QtGui.QMatri... method setProjectionType (line 1409) | def setProjectionType(self, type: Qt3DRender.QCameraLens.ProjectionT... method setRight (line 1410) | def setRight(self, right: float) -> None: ... method setTop (line 1411) | def setTop(self, top: float) -> None: ... method setUpVector (line 1412) | def setUpVector(self, upVector: PySide2.QtGui.QVector3D) -> None: ... method setViewCenter (line 1413) | def setViewCenter(self, viewCenter: PySide2.QtGui.QVector3D) -> None... method tilt (line 1414) | def tilt(self, angle: float) -> None: ... method tiltAboutViewCenter (line 1415) | def tiltAboutViewCenter(self, angle: float) -> None: ... method tiltRotation (line 1416) | def tiltRotation(self, angle: float) -> PySide2.QtGui.QQuaternion: ... method top (line 1417) | def top(self) -> float: ... method transform (line 1418) | def transform(self) -> PySide2.Qt3DCore.Qt3DCore.QTransform: ... method translate (line 1419) | def translate(self, vLocal: PySide2.QtGui.QVector3D, option: Qt3DRen... method translateWorld (line 1420) | def translateWorld(self, vWorld: PySide2.QtGui.QVector3D, option: Qt... method upVector (line 1421) | def upVector(self) -> PySide2.QtGui.QVector3D: ... method viewAll (line 1422) | def viewAll(self) -> None: ... method viewCenter (line 1423) | def viewCenter(self) -> PySide2.QtGui.QVector3D: ... method viewEntity (line 1424) | def viewEntity(self, entity: PySide2.Qt3DCore.Qt3DCore.QEntity) -> N... method viewMatrix (line 1425) | def viewMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method viewSphere (line 1426) | def viewSphere(self, center: PySide2.QtGui.QVector3D, radius: float)... method viewVector (line 1427) | def viewVector(self) -> PySide2.QtGui.QVector3D: ... class QCameraLens (line 1429) | class QCameraLens(PySide2.Qt3DCore.Qt3DCore.QComponent): class ProjectionType (line 1430) | class ProjectionType: method __init__ (line 1438) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1439) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __and__ (line 1440) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __bool__ (line 1441) | def __bool__(self) -> bool: ... method __eq__ (line 1442) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1443) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1444) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1445) | def __hash__(self) -> int: ... method __index__ (line 1446) | def __index__(self) -> int: ... method __int__ (line 1447) | def __int__(self) -> int: ... method __le__ (line 1448) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1449) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1450) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __ne__ (line 1451) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1452) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QCameraL... method __pos__ (line 1453) | def __pos__(self): ... method __radd__ (line 1454) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __rand__ (line 1455) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __rmul__ (line 1456) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __ror__ (line 1457) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __rsub__ (line 1458) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __rxor__ (line 1459) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QCamer... method __sub__ (line 1460) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __xor__ (line 1461) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QCamera... method __init__ (line 1479) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method aspectRatio (line 1480) | def aspectRatio(self) -> float: ... method bottom (line 1481) | def bottom(self) -> float: ... method exposure (line 1482) | def exposure(self) -> float: ... method farPlane (line 1483) | def farPlane(self) -> float: ... method fieldOfView (line 1484) | def fieldOfView(self) -> float: ... method left (line 1485) | def left(self) -> float: ... method nearPlane (line 1486) | def nearPlane(self) -> float: ... method projectionMatrix (line 1487) | def projectionMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method projectionType (line 1488) | def projectionType(self) -> Qt3DRender.QCameraLens.ProjectionType: ... method right (line 1489) | def right(self) -> float: ... method setAspectRatio (line 1490) | def setAspectRatio(self, aspectRatio: float) -> None: ... method setBottom (line 1491) | def setBottom(self, bottom: float) -> None: ... method setExposure (line 1492) | def setExposure(self, exposure: float) -> None: ... method setFarPlane (line 1493) | def setFarPlane(self, farPlane: float) -> None: ... method setFieldOfView (line 1494) | def setFieldOfView(self, fieldOfView: float) -> None: ... method setFrustumProjection (line 1495) | def setFrustumProjection(self, left: float, right: float, bottom: fl... method setLeft (line 1496) | def setLeft(self, left: float) -> None: ... method setNearPlane (line 1497) | def setNearPlane(self, nearPlane: float) -> None: ... method setOrthographicProjection (line 1498) | def setOrthographicProjection(self, left: float, right: float, botto... method setPerspectiveProjection (line 1499) | def setPerspectiveProjection(self, fieldOfView: float, aspect: float... method setProjectionMatrix (line 1500) | def setProjectionMatrix(self, projectionMatrix: PySide2.QtGui.QMatri... method setProjectionType (line 1501) | def setProjectionType(self, projectionType: Qt3DRender.QCameraLens.P... method setRight (line 1502) | def setRight(self, right: float) -> None: ... method setTop (line 1503) | def setTop(self, top: float) -> None: ... method top (line 1504) | def top(self) -> float: ... method viewAll (line 1505) | def viewAll(self, cameraId: PySide2.Qt3DCore.Qt3DCore.QNodeId) -> No... method viewEntity (line 1506) | def viewEntity(self, entityId: PySide2.Qt3DCore.Qt3DCore.QNodeId, ca... class QCameraSelector (line 1508) | class QCameraSelector(Qt3DRender.QFrameGraphNode): method __init__ (line 1511) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method camera (line 1512) | def camera(self) -> PySide2.Qt3DCore.Qt3DCore.QEntity: ... method setCamera (line 1513) | def setCamera(self, camera: PySide2.Qt3DCore.Qt3DCore.QEntity) -> No... class QClearBuffers (line 1515) | class QClearBuffers(Qt3DRender.QFrameGraphNode): class BufferType (line 1516) | class BufferType: method __init__ (line 1528) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1529) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QClearB... method __bool__ (line 1530) | def __bool__(self) -> bool: ... method __eq__ (line 1531) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1532) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1533) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1534) | def __hash__(self) -> int: ... method __index__ (line 1535) | def __index__(self) -> int: ... method __int__ (line 1536) | def __int__(self) -> int: ... method __invert__ (line 1537) | def __invert__(self) -> Qt3DRender.QClearBuffers.BufferTypeFlags: ... method __le__ (line 1538) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1539) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1540) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1541) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QClearBu... method __rand__ (line 1542) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QClear... method __ror__ (line 1543) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QClearB... method __rxor__ (line 1544) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QClear... method __xor__ (line 1545) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QClearB... class BufferTypeFlags (line 1547) | class BufferTypeFlags: method __init__ (line 1549) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1550) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QClearB... method __bool__ (line 1551) | def __bool__(self) -> bool: ... method __eq__ (line 1552) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1553) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1554) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1555) | def __index__(self) -> int: ... method __int__ (line 1556) | def __int__(self) -> int: ... method __invert__ (line 1557) | def __invert__(self) -> Qt3DRender.QClearBuffers.BufferTypeFlags: ... method __le__ (line 1558) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1559) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1560) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1561) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QClearBu... method __rand__ (line 1562) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QClear... method __ror__ (line 1563) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QClearB... method __rxor__ (line 1564) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QClear... method __xor__ (line 1565) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QClearB... method __init__ (line 1580) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method buffers (line 1581) | def buffers(self) -> Qt3DRender.QClearBuffers.BufferType: ... method clearColor (line 1582) | def clearColor(self) -> PySide2.QtGui.QColor: ... method clearDepthValue (line 1583) | def clearDepthValue(self) -> float: ... method clearStencilValue (line 1584) | def clearStencilValue(self) -> int: ... method colorBuffer (line 1585) | def colorBuffer(self) -> Qt3DRender.QRenderTargetOutput: ... method setBuffers (line 1586) | def setBuffers(self, buffers: Qt3DRender.QClearBuffers.BufferType) -... method setClearColor (line 1587) | def setClearColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore... method setClearDepthValue (line 1588) | def setClearDepthValue(self, clearDepthValue: float) -> None: ... method setClearStencilValue (line 1589) | def setClearStencilValue(self, clearStencilValue: int) -> None: ... method setColorBuffer (line 1590) | def setColorBuffer(self, buffer: Qt3DRender.QRenderTargetOutput) -> ... class QClipPlane (line 1592) | class QClipPlane(Qt3DRender.QRenderState): method __init__ (line 1597) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method distance (line 1598) | def distance(self) -> float: ... method normal (line 1599) | def normal(self) -> PySide2.QtGui.QVector3D: ... method planeIndex (line 1600) | def planeIndex(self) -> int: ... method setDistance (line 1601) | def setDistance(self, arg__1: float) -> None: ... method setNormal (line 1602) | def setNormal(self, arg__1: PySide2.QtGui.QVector3D) -> None: ... method setPlaneIndex (line 1603) | def setPlaneIndex(self, arg__1: int) -> None: ... class QColorMask (line 1605) | class QColorMask(Qt3DRender.QRenderState): method __init__ (line 1611) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method isAlphaMasked (line 1612) | def isAlphaMasked(self) -> bool: ... method isBlueMasked (line 1613) | def isBlueMasked(self) -> bool: ... method isGreenMasked (line 1614) | def isGreenMasked(self) -> bool: ... method isRedMasked (line 1615) | def isRedMasked(self) -> bool: ... method setAlphaMasked (line 1616) | def setAlphaMasked(self, alphaMasked: bool) -> None: ... method setBlueMasked (line 1617) | def setBlueMasked(self, blueMasked: bool) -> None: ... method setGreenMasked (line 1618) | def setGreenMasked(self, greenMasked: bool) -> None: ... method setRedMasked (line 1619) | def setRedMasked(self, redMasked: bool) -> None: ... class QComputeCommand (line 1621) | class QComputeCommand(PySide2.Qt3DCore.Qt3DCore.QComponent): class RunType (line 1622) | class RunType: method __init__ (line 1628) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1629) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QComput... method __and__ (line 1630) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QComput... method __bool__ (line 1631) | def __bool__(self) -> bool: ... method __eq__ (line 1632) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1633) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1634) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1635) | def __hash__(self) -> int: ... method __index__ (line 1636) | def __index__(self) -> int: ... method __int__ (line 1637) | def __int__(self) -> int: ... method __le__ (line 1638) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1639) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1640) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QComput... method __ne__ (line 1641) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1642) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QCompute... method __pos__ (line 1643) | def __pos__(self): ... method __radd__ (line 1644) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QCompu... method __rand__ (line 1645) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QCompu... method __rmul__ (line 1646) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QCompu... method __ror__ (line 1647) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QComput... method __rsub__ (line 1648) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QCompu... method __rxor__ (line 1649) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QCompu... method __sub__ (line 1650) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QComput... method __xor__ (line 1651) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QComput... method __init__ (line 1659) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method runType (line 1660) | def runType(self) -> Qt3DRender.QComputeCommand.RunType: ... method setRunType (line 1661) | def setRunType(self, runType: Qt3DRender.QComputeCommand.RunType) ->... method setWorkGroupX (line 1662) | def setWorkGroupX(self, workGroupX: int) -> None: ... method setWorkGroupY (line 1663) | def setWorkGroupY(self, workGroupY: int) -> None: ... method setWorkGroupZ (line 1664) | def setWorkGroupZ(self, workGroupZ: int) -> None: ... method trigger (line 1666) | def trigger(self, workGroupX: int, workGroupY: int, workGroupZ: int,... method trigger (line 1668) | def trigger(self, frameCount: int = ...) -> None: ... method workGroupX (line 1669) | def workGroupX(self) -> int: ... method workGroupY (line 1670) | def workGroupY(self) -> int: ... method workGroupZ (line 1671) | def workGroupZ(self) -> int: ... class QCullFace (line 1673) | class QCullFace(Qt3DRender.QRenderState): class CullingMode (line 1674) | class CullingMode: method __init__ (line 1682) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1683) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFa... method __and__ (line 1684) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFa... method __bool__ (line 1685) | def __bool__(self) -> bool: ... method __eq__ (line 1686) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1687) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1688) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1689) | def __hash__(self) -> int: ... method __index__ (line 1690) | def __index__(self) -> int: ... method __int__ (line 1691) | def __int__(self) -> int: ... method __le__ (line 1692) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1694) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFa... method __ne__ (line 1695) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1696) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFac... method __pos__ (line 1697) | def __pos__(self): ... method __radd__ (line 1698) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QCullF... method __rand__ (line 1699) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QCullF... method __rmul__ (line 1700) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QCullF... method __ror__ (line 1701) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFa... method __rsub__ (line 1702) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QCullF... method __rxor__ (line 1703) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QCullF... method __sub__ (line 1704) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFa... method __xor__ (line 1705) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QCullFa... method __init__ (line 1712) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method mode (line 1713) | def mode(self) -> Qt3DRender.QCullFace.CullingMode: ... method setMode (line 1714) | def setMode(self, mode: Qt3DRender.QCullFace.CullingMode) -> None: ... class QDepthTest (line 1716) | class QDepthTest(Qt3DRender.QRenderState): class DepthFunction (line 1717) | class DepthFunction: method __init__ (line 1729) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1730) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthT... method __and__ (line 1731) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthT... method __bool__ (line 1732) | def __bool__(self) -> bool: ... method __eq__ (line 1733) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1734) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1735) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1736) | def __hash__(self) -> int: ... method __index__ (line 1737) | def __index__(self) -> int: ... method __int__ (line 1738) | def __int__(self) -> int: ... method __le__ (line 1739) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1740) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1741) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthT... method __ne__ (line 1742) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1743) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthTe... method __pos__ (line 1744) | def __pos__(self): ... method __radd__ (line 1745) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QDepth... method __rand__ (line 1746) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QDepth... method __rmul__ (line 1747) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QDepth... method __ror__ (line 1748) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthT... method __rsub__ (line 1749) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QDepth... method __rxor__ (line 1750) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QDepth... method __sub__ (line 1751) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthT... method __xor__ (line 1752) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QDepthT... method __init__ (line 1763) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method depthFunction (line 1764) | def depthFunction(self) -> Qt3DRender.QDepthTest.DepthFunction: ... method setDepthFunction (line 1765) | def setDepthFunction(self, depthFunction: Qt3DRender.QDepthTest.Dept... class QDirectionalLight (line 1767) | class QDirectionalLight(Qt3DRender.QAbstractLight): method __init__ (line 1770) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setWorldDirection (line 1771) | def setWorldDirection(self, worldDirection: PySide2.QtGui.QVector3D)... method worldDirection (line 1772) | def worldDirection(self) -> PySide2.QtGui.QVector3D: ... class QDispatchCompute (line 1774) | class QDispatchCompute(Qt3DRender.QFrameGraphNode): method __init__ (line 1779) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setWorkGroupX (line 1780) | def setWorkGroupX(self, workGroupX: int) -> None: ... method setWorkGroupY (line 1781) | def setWorkGroupY(self, workGroupY: int) -> None: ... method setWorkGroupZ (line 1782) | def setWorkGroupZ(self, workGroupZ: int) -> None: ... method workGroupX (line 1783) | def workGroupX(self) -> int: ... method workGroupY (line 1784) | def workGroupY(self) -> int: ... method workGroupZ (line 1785) | def workGroupZ(self) -> int: ... class QDithering (line 1787) | class QDithering(Qt3DRender.QRenderState): method __init__ (line 1789) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QEffect (line 1791) | class QEffect(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1793) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addParameter (line 1794) | def addParameter(self, parameter: Qt3DRender.QParameter) -> None: ... method addTechnique (line 1795) | def addTechnique(self, t: Qt3DRender.QTechnique) -> None: ... method parameters (line 1796) | def parameters(self) -> list[Qt3DRender.QParameter]: ... method removeParameter (line 1797) | def removeParameter(self, parameter: Qt3DRender.QParameter) -> None:... method removeTechnique (line 1798) | def removeTechnique(self, t: Qt3DRender.QTechnique) -> None: ... method techniques (line 1799) | def techniques(self) -> list[Qt3DRender.QTechnique]: ... class QEnvironmentLight (line 1801) | class QEnvironmentLight(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 1805) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method irradiance (line 1806) | def irradiance(self) -> Qt3DRender.QAbstractTexture: ... method setIrradiance (line 1807) | def setIrradiance(self, irradiance: Qt3DRender.QAbstractTexture) -> ... method setSpecular (line 1808) | def setSpecular(self, specular: Qt3DRender.QAbstractTexture) -> None... method specular (line 1809) | def specular(self) -> Qt3DRender.QAbstractTexture: ... class QFilterKey (line 1811) | class QFilterKey(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1815) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method name (line 1816) | def name(self) -> str: ... method setName (line 1817) | def setName(self, customType: str) -> None: ... method setValue (line 1818) | def setValue(self, value: typing.Any) -> None: ... method value (line 1819) | def value(self) -> typing.Any: ... class QFrameGraphNode (line 1821) | class QFrameGraphNode(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1823) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method parentFrameGraphNode (line 1824) | def parentFrameGraphNode(self) -> Qt3DRender.QFrameGraphNode: ... class QFrameGraphNodeCreatedChangeBase (line 1826) | class QFrameGraphNodeCreatedChangeBase(PySide2.Qt3DCore.Qt3DCore.QNode... method __init__ (line 1827) | def __init__(self, node: Qt3DRender.QFrameGraphNode) -> None: ... method parentFrameGraphNodeId (line 1828) | def parentFrameGraphNodeId(self) -> PySide2.Qt3DCore.Qt3DCore.QNodeI... class QFrontFace (line 1830) | class QFrontFace(Qt3DRender.QRenderState): class WindingDirection (line 1831) | class WindingDirection: method __init__ (line 1837) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1838) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontF... method __and__ (line 1839) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontF... method __bool__ (line 1840) | def __bool__(self) -> bool: ... method __eq__ (line 1841) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1842) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1843) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1844) | def __hash__(self) -> int: ... method __index__ (line 1845) | def __index__(self) -> int: ... method __int__ (line 1846) | def __int__(self) -> int: ... method __le__ (line 1847) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1848) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1849) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontF... method __ne__ (line 1850) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1851) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontFa... method __pos__ (line 1852) | def __pos__(self): ... method __radd__ (line 1853) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QFront... method __rand__ (line 1854) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QFront... method __rmul__ (line 1855) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QFront... method __ror__ (line 1856) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontF... method __rsub__ (line 1857) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QFront... method __rxor__ (line 1858) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QFront... method __sub__ (line 1859) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontF... method __xor__ (line 1860) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QFrontF... method __init__ (line 1865) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method direction (line 1866) | def direction(self) -> Qt3DRender.QFrontFace.WindingDirection: ... method setDirection (line 1867) | def setDirection(self, direction: Qt3DRender.QFrontFace.WindingDirec... class QFrustumCulling (line 1869) | class QFrustumCulling(Qt3DRender.QFrameGraphNode): method __init__ (line 1871) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QGeometry (line 1873) | class QGeometry(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1878) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addAttribute (line 1879) | def addAttribute(self, attribute: Qt3DRender.QAttribute) -> None: ... method attributes (line 1880) | def attributes(self) -> list[Qt3DRender.QAttribute]: ... method boundingVolumePositionAttribute (line 1881) | def boundingVolumePositionAttribute(self) -> Qt3DRender.QAttribute: ... method maxExtent (line 1882) | def maxExtent(self) -> PySide2.QtGui.QVector3D: ... method minExtent (line 1883) | def minExtent(self) -> PySide2.QtGui.QVector3D: ... method removeAttribute (line 1884) | def removeAttribute(self, attribute: Qt3DRender.QAttribute) -> None:... method setBoundingVolumePositionAttribute (line 1885) | def setBoundingVolumePositionAttribute(self, boundingVolumePositionA... class QGeometryFactory (line 1887) | class QGeometryFactory(Qt3DRender.QAbstractFunctor): method __init__ (line 1888) | def __init__(self) -> None: ... method __eq__ (line 1889) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1890) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1891) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1892) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1893) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1894) | def __ne__(self, other: object) -> bool: ... class QGeometryRenderer (line 1896) | class QGeometryRenderer(PySide2.Qt3DCore.Qt3DCore.QComponent): class PrimitiveType (line 1897) | class PrimitiveType: method __init__ (line 1913) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1914) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QGeomet... method __and__ (line 1915) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QGeomet... method __bool__ (line 1916) | def __bool__(self) -> bool: ... method __eq__ (line 1917) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1918) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1919) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1920) | def __hash__(self) -> int: ... method __index__ (line 1921) | def __index__(self) -> int: ... method __int__ (line 1922) | def __int__(self) -> int: ... method __le__ (line 1923) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1924) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1925) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QGeomet... method __ne__ (line 1926) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1927) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QGeometr... method __pos__ (line 1928) | def __pos__(self): ... method __radd__ (line 1929) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QGeome... method __rand__ (line 1930) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QGeome... method __rmul__ (line 1931) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QGeome... method __ror__ (line 1932) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QGeomet... method __rsub__ (line 1933) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QGeome... method __rxor__ (line 1934) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QGeome... method __sub__ (line 1935) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QGeomet... method __xor__ (line 1936) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QGeomet... method __init__ (line 1961) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method firstInstance (line 1962) | def firstInstance(self) -> int: ... method firstVertex (line 1963) | def firstVertex(self) -> int: ... method geometry (line 1964) | def geometry(self) -> Qt3DRender.QGeometry: ... method indexBufferByteOffset (line 1965) | def indexBufferByteOffset(self) -> int: ... method indexOffset (line 1966) | def indexOffset(self) -> int: ... method instanceCount (line 1967) | def instanceCount(self) -> int: ... method primitiveRestartEnabled (line 1968) | def primitiveRestartEnabled(self) -> bool: ... method primitiveType (line 1969) | def primitiveType(self) -> Qt3DRender.QGeometryRenderer.PrimitiveTyp... method restartIndexValue (line 1970) | def restartIndexValue(self) -> int: ... method setFirstInstance (line 1971) | def setFirstInstance(self, firstInstance: int) -> None: ... method setFirstVertex (line 1972) | def setFirstVertex(self, firstVertex: int) -> None: ... method setGeometry (line 1973) | def setGeometry(self, geometry: Qt3DRender.QGeometry) -> None: ... method setIndexBufferByteOffset (line 1974) | def setIndexBufferByteOffset(self, offset: int) -> None: ... method setIndexOffset (line 1975) | def setIndexOffset(self, indexOffset: int) -> None: ... method setInstanceCount (line 1976) | def setInstanceCount(self, instanceCount: int) -> None: ... method setPrimitiveRestartEnabled (line 1977) | def setPrimitiveRestartEnabled(self, enabled: bool) -> None: ... method setPrimitiveType (line 1978) | def setPrimitiveType(self, primitiveType: Qt3DRender.QGeometryRender... method setRestartIndexValue (line 1979) | def setRestartIndexValue(self, index: int) -> None: ... method setVertexCount (line 1980) | def setVertexCount(self, vertexCount: int) -> None: ... method setVerticesPerPatch (line 1981) | def setVerticesPerPatch(self, verticesPerPatch: int) -> None: ... method vertexCount (line 1982) | def vertexCount(self) -> int: ... method verticesPerPatch (line 1983) | def verticesPerPatch(self) -> int: ... class QGraphicsApiFilter (line 1985) | class QGraphicsApiFilter(PySide2.QtCore.QObject): class Api (line 1986) | class Api: method __init__ (line 1995) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1996) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __and__ (line 1997) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __bool__ (line 1998) | def __bool__(self) -> bool: ... method __eq__ (line 1999) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2000) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2001) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2002) | def __hash__(self) -> int: ... method __index__ (line 2003) | def __index__(self) -> int: ... method __int__ (line 2004) | def __int__(self) -> int: ... method __le__ (line 2005) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2006) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2007) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __ne__ (line 2008) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2009) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphic... method __pos__ (line 2010) | def __pos__(self): ... method __radd__ (line 2011) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __rand__ (line 2012) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __rmul__ (line 2013) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __ror__ (line 2014) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __rsub__ (line 2015) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __rxor__ (line 2016) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __sub__ (line 2017) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __xor__ (line 2018) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... class OpenGLProfile (line 2020) | class OpenGLProfile: method __init__ (line 2027) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2028) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __and__ (line 2029) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __bool__ (line 2030) | def __bool__(self) -> bool: ... method __eq__ (line 2031) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2032) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2033) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2034) | def __hash__(self) -> int: ... method __index__ (line 2035) | def __index__(self) -> int: ... method __int__ (line 2036) | def __int__(self) -> int: ... method __le__ (line 2037) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2038) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2039) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __ne__ (line 2040) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2041) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphic... method __pos__ (line 2042) | def __pos__(self): ... method __radd__ (line 2043) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __rand__ (line 2044) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __rmul__ (line 2045) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __ror__ (line 2046) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __rsub__ (line 2047) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __rxor__ (line 2048) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QGraph... method __sub__ (line 2049) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __xor__ (line 2050) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QGraphi... method __init__ (line 2067) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., api:... method api (line 2068) | def api(self) -> Qt3DRender.QGraphicsApiFilter.Api: ... method extensions (line 2069) | def extensions(self) -> list[str]: ... method majorVersion (line 2070) | def majorVersion(self) -> int: ... method minorVersion (line 2071) | def minorVersion(self) -> int: ... method profile (line 2072) | def profile(self) -> Qt3DRender.QGraphicsApiFilter.OpenGLProfile: ... method setApi (line 2073) | def setApi(self, api: Qt3DRender.QGraphicsApiFilter.Api) -> None: ... method setExtensions (line 2074) | def setExtensions(self, extensions: typing.Iterable[str]) -> None: ... method setMajorVersion (line 2075) | def setMajorVersion(self, majorVersion: int) -> None: ... method setMinorVersion (line 2076) | def setMinorVersion(self, minorVersion: int) -> None: ... method setProfile (line 2077) | def setProfile(self, profile: Qt3DRender.QGraphicsApiFilter.OpenGLPr... method setVendor (line 2078) | def setVendor(self, vendor: str) -> None: ... method vendor (line 2079) | def vendor(self) -> str: ... class QLayer (line 2081) | class QLayer(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 2084) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method recursive (line 2085) | def recursive(self) -> bool: ... method setRecursive (line 2086) | def setRecursive(self, recursive: bool) -> None: ... class QLayerFilter (line 2088) | class QLayerFilter(Qt3DRender.QFrameGraphNode): class FilterMode (line 2089) | class FilterMode: method __init__ (line 2097) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2098) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerF... method __and__ (line 2099) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerF... method __bool__ (line 2100) | def __bool__(self) -> bool: ... method __eq__ (line 2101) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2102) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2103) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2104) | def __hash__(self) -> int: ... method __index__ (line 2105) | def __index__(self) -> int: ... method __int__ (line 2106) | def __int__(self) -> int: ... method __le__ (line 2107) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2108) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2109) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerF... method __ne__ (line 2110) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2111) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerFi... method __pos__ (line 2112) | def __pos__(self): ... method __radd__ (line 2113) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QLayer... method __rand__ (line 2114) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QLayer... method __rmul__ (line 2115) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QLayer... method __ror__ (line 2116) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerF... method __rsub__ (line 2117) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QLayer... method __rxor__ (line 2118) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QLayer... method __sub__ (line 2119) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerF... method __xor__ (line 2120) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QLayerF... method __init__ (line 2127) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addLayer (line 2128) | def addLayer(self, layer: Qt3DRender.QLayer) -> None: ... method filterMode (line 2129) | def filterMode(self) -> Qt3DRender.QLayerFilter.FilterMode: ... method layers (line 2130) | def layers(self) -> list[Qt3DRender.QLayer]: ... method removeLayer (line 2131) | def removeLayer(self, layer: Qt3DRender.QLayer) -> None: ... method setFilterMode (line 2132) | def setFilterMode(self, filterMode: Qt3DRender.QLayerFilter.FilterMo... class QLevelOfDetail (line 2134) | class QLevelOfDetail(PySide2.Qt3DCore.Qt3DCore.QComponent): class ThresholdType (line 2135) | class ThresholdType: method __init__ (line 2141) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2142) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelO... method __and__ (line 2143) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelO... method __bool__ (line 2144) | def __bool__(self) -> bool: ... method __eq__ (line 2145) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2146) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2147) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2148) | def __hash__(self) -> int: ... method __index__ (line 2149) | def __index__(self) -> int: ... method __int__ (line 2150) | def __int__(self) -> int: ... method __le__ (line 2151) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2152) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2153) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelO... method __ne__ (line 2154) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2155) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelOf... method __pos__ (line 2156) | def __pos__(self): ... method __radd__ (line 2157) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QLevel... method __rand__ (line 2158) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QLevel... method __rmul__ (line 2159) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QLevel... method __ror__ (line 2160) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelO... method __rsub__ (line 2161) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QLevel... method __rxor__ (line 2162) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QLevel... method __sub__ (line 2163) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelO... method __xor__ (line 2164) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QLevelO... method __init__ (line 2173) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method camera (line 2174) | def camera(self) -> Qt3DRender.QCamera: ... method createBoundingSphere (line 2175) | def createBoundingSphere(self, center: PySide2.QtGui.QVector3D, radi... method currentIndex (line 2176) | def currentIndex(self) -> int: ... method setCamera (line 2177) | def setCamera(self, camera: Qt3DRender.QCamera) -> None: ... method setCurrentIndex (line 2178) | def setCurrentIndex(self, currentIndex: int) -> None: ... method setThresholdType (line 2179) | def setThresholdType(self, thresholdType: Qt3DRender.QLevelOfDetail.... method setThresholds (line 2180) | def setThresholds(self, thresholds: list[float]) -> None: ... method setVolumeOverride (line 2181) | def setVolumeOverride(self, volumeOverride: Qt3DRender.QLevelOfDetai... method thresholdType (line 2182) | def thresholdType(self) -> Qt3DRender.QLevelOfDetail.ThresholdType: ... method thresholds (line 2183) | def thresholds(self) -> list[float]: ... method volumeOverride (line 2184) | def volumeOverride(self) -> Qt3DRender.QLevelOfDetailBoundingSphere:... class QLevelOfDetailBoundingSphere (line 2186) | class QLevelOfDetailBoundingSphere(shiboken2.Object): method __init__ (line 2188) | def __init__(self, center: PySide2.QtGui.QVector3D = ..., radius: fl... method __init__ (line 2190) | def __init__(self, other: Qt3DRender.QLevelOfDetailBoundingSphere) -... method center (line 2191) | def center(self) -> PySide2.QtGui.QVector3D: ... method isEmpty (line 2192) | def isEmpty(self) -> bool: ... method radius (line 2193) | def radius(self) -> float: ... method __eq__ (line 2194) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2195) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2196) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2197) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2198) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2199) | def __ne__(self, other: object) -> bool: ... class QLevelOfDetailSwitch (line 2201) | class QLevelOfDetailSwitch(Qt3DRender.QLevelOfDetail): method __init__ (line 2203) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QLineWidth (line 2205) | class QLineWidth(Qt3DRender.QRenderState): method __init__ (line 2209) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setSmooth (line 2210) | def setSmooth(self, enabled: bool) -> None: ... method setValue (line 2211) | def setValue(self, value: float) -> None: ... method smooth (line 2212) | def smooth(self) -> bool: ... method value (line 2213) | def value(self) -> float: ... class QMaterial (line 2215) | class QMaterial(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 2218) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addParameter (line 2219) | def addParameter(self, parameter: Qt3DRender.QParameter) -> None: ... method effect (line 2220) | def effect(self) -> Qt3DRender.QEffect: ... method parameters (line 2221) | def parameters(self) -> list[Qt3DRender.QParameter]: ... method removeParameter (line 2222) | def removeParameter(self, parameter: Qt3DRender.QParameter) -> None:... method setEffect (line 2223) | def setEffect(self, effect: Qt3DRender.QEffect) -> None: ... class QMemoryBarrier (line 2225) | class QMemoryBarrier(Qt3DRender.QFrameGraphNode): class Operation (line 2226) | class Operation: method __init__ (line 2246) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2247) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QMemory... method __bool__ (line 2248) | def __bool__(self) -> bool: ... method __eq__ (line 2249) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2250) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2251) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2252) | def __hash__(self) -> int: ... method __index__ (line 2253) | def __index__(self) -> int: ... method __int__ (line 2254) | def __int__(self) -> int: ... method __invert__ (line 2255) | def __invert__(self) -> Qt3DRender.QMemoryBarrier.Operations: ... method __le__ (line 2256) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2257) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2258) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2259) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QMemoryB... method __rand__ (line 2260) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QMemor... method __ror__ (line 2261) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QMemory... method __rxor__ (line 2262) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QMemor... method __xor__ (line 2263) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QMemory... class Operations (line 2265) | class Operations: method __init__ (line 2267) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2268) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QMemory... method __bool__ (line 2269) | def __bool__(self) -> bool: ... method __eq__ (line 2270) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2271) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2272) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2273) | def __index__(self) -> int: ... method __int__ (line 2274) | def __int__(self) -> int: ... method __invert__ (line 2275) | def __invert__(self) -> Qt3DRender.QMemoryBarrier.Operations: ... method __le__ (line 2276) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2277) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2278) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2279) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QMemoryB... method __rand__ (line 2280) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QMemor... method __ror__ (line 2281) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QMemory... method __rxor__ (line 2282) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QMemor... method __xor__ (line 2283) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QMemory... method __init__ (line 2302) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setWaitOperations (line 2303) | def setWaitOperations(self, operations: Qt3DRender.QMemoryBarrier.Op... method waitOperations (line 2304) | def waitOperations(self) -> Qt3DRender.QMemoryBarrier.Operations | Q... class QMesh (line 2306) | class QMesh(Qt3DRender.QGeometryRenderer): class Status (line 2307) | class Status: method __init__ (line 2315) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2316) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.S... method __and__ (line 2317) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.S... method __bool__ (line 2318) | def __bool__(self) -> bool: ... method __eq__ (line 2319) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2320) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2321) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2322) | def __hash__(self) -> int: ... method __index__ (line 2323) | def __index__(self) -> int: ... method __int__ (line 2324) | def __int__(self) -> int: ... method __le__ (line 2325) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2326) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2327) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.S... method __ne__ (line 2328) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2329) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.St... method __pos__ (line 2330) | def __pos__(self): ... method __radd__ (line 2331) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.... method __rand__ (line 2332) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.... method __rmul__ (line 2333) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.... method __ror__ (line 2334) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.S... method __rsub__ (line 2335) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.... method __rxor__ (line 2336) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.... method __sub__ (line 2337) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.S... method __xor__ (line 2338) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QMesh.S... method __init__ (line 2347) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method meshName (line 2348) | def meshName(self) -> str: ... method setMeshName (line 2349) | def setMeshName(self, meshName: str) -> None: ... method setSource (line 2350) | def setSource(self, source: PySide2.QtCore.QUrl) -> None: ... method source (line 2351) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 2352) | def status(self) -> Qt3DRender.QMesh.Status: ... class QMultiSampleAntiAliasing (line 2354) | class QMultiSampleAntiAliasing(Qt3DRender.QRenderState): method __init__ (line 2356) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QNoDepthMask (line 2358) | class QNoDepthMask(Qt3DRender.QRenderState): method __init__ (line 2360) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QNoDraw (line 2362) | class QNoDraw(Qt3DRender.QFrameGraphNode): method __init__ (line 2364) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QNoPicking (line 2366) | class QNoPicking(Qt3DRender.QFrameGraphNode): method __init__ (line 2368) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QObjectPicker (line 2370) | class QObjectPicker(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 2383) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method containsMouse (line 2384) | def containsMouse(self) -> bool: ... method isDragEnabled (line 2385) | def isDragEnabled(self) -> bool: ... method isHoverEnabled (line 2386) | def isHoverEnabled(self) -> bool: ... method isPressed (line 2387) | def isPressed(self) -> bool: ... method priority (line 2388) | def priority(self) -> int: ... method setDragEnabled (line 2389) | def setDragEnabled(self, dragEnabled: bool) -> None: ... method setHoverEnabled (line 2390) | def setHoverEnabled(self, hoverEnabled: bool) -> None: ... method setPriority (line 2391) | def setPriority(self, priority: int) -> None: ... class QPaintedTextureImage (line 2393) | class QPaintedTextureImage(Qt3DRender.QAbstractTextureImage): method __init__ (line 2398) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method height (line 2399) | def height(self) -> int: ... method paint (line 2400) | def paint(self, painter: PySide2.QtGui.QPainter) -> None: ... method setHeight (line 2401) | def setHeight(self, h: int) -> None: ... method setSize (line 2402) | def setSize(self, size: PySide2.QtCore.QSize) -> None: ... method setWidth (line 2403) | def setWidth(self, w: int) -> None: ... method size (line 2404) | def size(self) -> PySide2.QtCore.QSize: ... method update (line 2405) | def update(self, rect: PySide2.QtCore.QRect = ...) -> None: ... method width (line 2406) | def width(self) -> int: ... class QParameter (line 2408) | class QParameter(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 2413) | def __init__(self, name: str, texture: Qt3DRender.QAbstractTexture, ... method __init__ (line 2415) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method __init__ (line 2417) | def __init__(self, name: str, value: typing.Any, parent: PySide2.Qt3... method name (line 2418) | def name(self) -> str: ... method setName (line 2419) | def setName(self, name: str) -> None: ... method setValue (line 2420) | def setValue(self, dv: typing.Any) -> None: ... method value (line 2421) | def value(self) -> typing.Any: ... class QPickEvent (line 2423) | class QPickEvent(PySide2.QtCore.QObject): class Buttons (line 2424) | class Buttons: method __init__ (line 2433) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2434) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __and__ (line 2435) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __bool__ (line 2436) | def __bool__(self) -> bool: ... method __eq__ (line 2437) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2438) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2439) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2440) | def __hash__(self) -> int: ... method __index__ (line 2441) | def __index__(self) -> int: ... method __int__ (line 2442) | def __int__(self) -> int: ... method __le__ (line 2443) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2444) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2445) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __ne__ (line 2446) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2447) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEve... method __pos__ (line 2448) | def __pos__(self): ... method __radd__ (line 2449) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __rand__ (line 2450) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __rmul__ (line 2451) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __ror__ (line 2452) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __rsub__ (line 2453) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __rxor__ (line 2454) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __sub__ (line 2455) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __xor__ (line 2456) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... class Modifiers (line 2458) | class Modifiers: method __init__ (line 2468) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2469) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __and__ (line 2470) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __bool__ (line 2471) | def __bool__(self) -> bool: ... method __eq__ (line 2472) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2473) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2474) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2475) | def __hash__(self) -> int: ... method __index__ (line 2476) | def __index__(self) -> int: ... method __int__ (line 2477) | def __int__(self) -> int: ... method __le__ (line 2478) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2479) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2480) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __ne__ (line 2481) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2482) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEve... method __pos__ (line 2483) | def __pos__(self): ... method __radd__ (line 2484) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __rand__ (line 2485) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __rmul__ (line 2486) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __ror__ (line 2487) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __rsub__ (line 2488) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __rxor__ (line 2489) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickE... method __sub__ (line 2490) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __xor__ (line 2491) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickEv... method __init__ (line 2506) | def __init__(self, position: PySide2.QtCore.QPointF, worldIntersecti... method __init__ (line 2508) | def __init__(self, position: PySide2.QtCore.QPointF, worldIntersecti... method __init__ (line 2510) | def __init__(self, accepted: bool = ..., acceptedChanged: typing.Cal... method button (line 2511) | def button(self) -> Qt3DRender.QPickEvent.Buttons: ... method buttons (line 2512) | def buttons(self) -> int: ... method distance (line 2513) | def distance(self) -> float: ... method entity (line 2514) | def entity(self) -> PySide2.Qt3DCore.Qt3DCore.QEntity: ... method isAccepted (line 2515) | def isAccepted(self) -> bool: ... method localIntersection (line 2516) | def localIntersection(self) -> PySide2.QtGui.QVector3D: ... method modifiers (line 2517) | def modifiers(self) -> int: ... method position (line 2518) | def position(self) -> PySide2.QtCore.QPointF: ... method setAccepted (line 2519) | def setAccepted(self, accepted: bool) -> None: ... method viewport (line 2520) | def viewport(self) -> Qt3DRender.QViewport: ... method worldIntersection (line 2521) | def worldIntersection(self) -> PySide2.QtGui.QVector3D: ... class QPickLineEvent (line 2523) | class QPickLineEvent(Qt3DRender.QPickEvent): method __init__ (line 2526) | def __init__(self, position: PySide2.QtCore.QPointF, worldIntersecti... method __init__ (line 2528) | def __init__(self, accepted: bool = ..., acceptedChanged: typing.Cal... method edgeIndex (line 2529) | def edgeIndex(self) -> int: ... method vertex1Index (line 2530) | def vertex1Index(self) -> int: ... method vertex2Index (line 2531) | def vertex2Index(self) -> int: ... class QPickPointEvent (line 2533) | class QPickPointEvent(Qt3DRender.QPickEvent): method __init__ (line 2536) | def __init__(self, position: PySide2.QtCore.QPointF, worldIntersecti... method __init__ (line 2538) | def __init__(self, accepted: bool = ..., acceptedChanged: typing.Cal... method pointIndex (line 2539) | def pointIndex(self) -> int: ... class QPickTriangleEvent (line 2541) | class QPickTriangleEvent(Qt3DRender.QPickEvent): method __init__ (line 2544) | def __init__(self, position: PySide2.QtCore.QPointF, worldIntersecti... method __init__ (line 2546) | def __init__(self, position: PySide2.QtCore.QPointF, worldIntersecti... method __init__ (line 2548) | def __init__(self, accepted: bool = ..., acceptedChanged: typing.Cal... method triangleIndex (line 2549) | def triangleIndex(self) -> int: ... method uvw (line 2550) | def uvw(self) -> PySide2.QtGui.QVector3D: ... method vertex1Index (line 2551) | def vertex1Index(self) -> int: ... method vertex2Index (line 2552) | def vertex2Index(self) -> int: ... method vertex3Index (line 2553) | def vertex3Index(self) -> int: ... class QPickingSettings (line 2555) | class QPickingSettings(PySide2.Qt3DCore.Qt3DCore.QNode): class FaceOrientationPickingMode (line 2556) | class FaceOrientationPickingMode: method __init__ (line 2563) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2564) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __and__ (line 2565) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __bool__ (line 2566) | def __bool__(self) -> bool: ... method __eq__ (line 2567) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2568) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2569) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2570) | def __hash__(self) -> int: ... method __index__ (line 2571) | def __index__(self) -> int: ... method __int__ (line 2572) | def __int__(self) -> int: ... method __le__ (line 2573) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2574) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2575) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __ne__ (line 2576) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2577) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QPicking... method __pos__ (line 2578) | def __pos__(self): ... method __radd__ (line 2579) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rand__ (line 2580) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rmul__ (line 2581) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __ror__ (line 2582) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __rsub__ (line 2583) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rxor__ (line 2584) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __sub__ (line 2585) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __xor__ (line 2586) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... class PickMethod (line 2588) | class PickMethod: method __init__ (line 2597) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2598) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __and__ (line 2599) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __bool__ (line 2600) | def __bool__(self) -> bool: ... method __eq__ (line 2601) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2602) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2603) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2604) | def __hash__(self) -> int: ... method __index__ (line 2605) | def __index__(self) -> int: ... method __int__ (line 2606) | def __int__(self) -> int: ... method __le__ (line 2607) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2608) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2609) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __ne__ (line 2610) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2611) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QPicking... method __pos__ (line 2612) | def __pos__(self): ... method __radd__ (line 2613) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rand__ (line 2614) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rmul__ (line 2615) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __ror__ (line 2616) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __rsub__ (line 2617) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rxor__ (line 2618) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __sub__ (line 2619) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __xor__ (line 2620) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... class PickResultMode (line 2622) | class PickResultMode: method __init__ (line 2629) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2630) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __and__ (line 2631) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __bool__ (line 2632) | def __bool__(self) -> bool: ... method __eq__ (line 2633) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2634) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2635) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2636) | def __hash__(self) -> int: ... method __index__ (line 2637) | def __index__(self) -> int: ... method __int__ (line 2638) | def __int__(self) -> int: ... method __le__ (line 2639) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2640) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2641) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __ne__ (line 2642) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2643) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QPicking... method __pos__ (line 2644) | def __pos__(self): ... method __radd__ (line 2645) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rand__ (line 2646) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rmul__ (line 2647) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __ror__ (line 2648) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __rsub__ (line 2649) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __rxor__ (line 2650) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QPicki... method __sub__ (line 2651) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __xor__ (line 2652) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QPickin... method __init__ (line 2669) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method faceOrientationPickingMode (line 2670) | def faceOrientationPickingMode(self) -> Qt3DRender.QPickingSettings.... method pickMethod (line 2671) | def pickMethod(self) -> Qt3DRender.QPickingSettings.PickMethod: ... method pickResultMode (line 2672) | def pickResultMode(self) -> Qt3DRender.QPickingSettings.PickResultMo... method setFaceOrientationPickingMode (line 2673) | def setFaceOrientationPickingMode(self, faceOrientationPickingMode: ... method setPickMethod (line 2674) | def setPickMethod(self, pickMethod: Qt3DRender.QPickingSettings.Pick... method setPickResultMode (line 2675) | def setPickResultMode(self, pickResultMode: Qt3DRender.QPickingSetti... method setWorldSpaceTolerance (line 2676) | def setWorldSpaceTolerance(self, worldSpaceTolerance: float) -> None... method worldSpaceTolerance (line 2677) | def worldSpaceTolerance(self) -> float: ... class QPointLight (line 2679) | class QPointLight(Qt3DRender.QAbstractLight): method __init__ (line 2684) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method constantAttenuation (line 2685) | def constantAttenuation(self) -> float: ... method linearAttenuation (line 2686) | def linearAttenuation(self) -> float: ... method quadraticAttenuation (line 2687) | def quadraticAttenuation(self) -> float: ... method setConstantAttenuation (line 2688) | def setConstantAttenuation(self, value: float) -> None: ... method setLinearAttenuation (line 2689) | def setLinearAttenuation(self, value: float) -> None: ... method setQuadraticAttenuation (line 2690) | def setQuadraticAttenuation(self, value: float) -> None: ... class QPointSize (line 2692) | class QPointSize(Qt3DRender.QRenderState): class SizeMode (line 2693) | class SizeMode: method __init__ (line 2699) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2700) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QPointS... method __and__ (line 2701) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QPointS... method __bool__ (line 2702) | def __bool__(self) -> bool: ... method __eq__ (line 2703) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2704) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2705) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2706) | def __hash__(self) -> int: ... method __index__ (line 2707) | def __index__(self) -> int: ... method __int__ (line 2708) | def __int__(self) -> int: ... method __le__ (line 2709) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2710) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2711) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QPointS... method __ne__ (line 2712) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2713) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QPointSi... method __pos__ (line 2714) | def __pos__(self): ... method __radd__ (line 2715) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QPoint... method __rand__ (line 2716) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QPoint... method __rmul__ (line 2717) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QPoint... method __ror__ (line 2718) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QPointS... method __rsub__ (line 2719) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QPoint... method __rxor__ (line 2720) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QPoint... method __sub__ (line 2721) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QPointS... method __xor__ (line 2722) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QPointS... method __init__ (line 2728) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setSizeMode (line 2729) | def setSizeMode(self, sizeMode: Qt3DRender.QPointSize.SizeMode) -> N... method setValue (line 2730) | def setValue(self, value: float) -> None: ... method sizeMode (line 2731) | def sizeMode(self) -> Qt3DRender.QPointSize.SizeMode: ... method value (line 2732) | def value(self) -> float: ... class QPolygonOffset (line 2734) | class QPolygonOffset(Qt3DRender.QRenderState): method __init__ (line 2738) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method depthSteps (line 2739) | def depthSteps(self) -> float: ... method scaleFactor (line 2740) | def scaleFactor(self) -> float: ... method setDepthSteps (line 2741) | def setDepthSteps(self, depthSteps: float) -> None: ... method setScaleFactor (line 2742) | def setScaleFactor(self, scaleFactor: float) -> None: ... class QProximityFilter (line 2744) | class QProximityFilter(Qt3DRender.QFrameGraphNode): method __init__ (line 2748) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method distanceThreshold (line 2749) | def distanceThreshold(self) -> float: ... method entity (line 2750) | def entity(self) -> PySide2.Qt3DCore.Qt3DCore.QEntity: ... method setDistanceThreshold (line 2751) | def setDistanceThreshold(self, distanceThreshold: float) -> None: ... method setEntity (line 2752) | def setEntity(self, entity: PySide2.Qt3DCore.Qt3DCore.QEntity) -> No... class QRayCaster (line 2754) | class QRayCaster(Qt3DRender.QAbstractRayCaster): method __init__ (line 2759) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method direction (line 2760) | def direction(self) -> PySide2.QtGui.QVector3D: ... method length (line 2761) | def length(self) -> float: ... method origin (line 2762) | def origin(self) -> PySide2.QtGui.QVector3D: ... method setDirection (line 2763) | def setDirection(self, direction: PySide2.QtGui.QVector3D) -> None: ... method setLength (line 2764) | def setLength(self, length: float) -> None: ... method setOrigin (line 2765) | def setOrigin(self, origin: PySide2.QtGui.QVector3D) -> None: ... method trigger (line 2767) | def trigger(self, origin: PySide2.QtGui.QVector3D, direction: PySide... method trigger (line 2769) | def trigger(self) -> None: ... class QRayCasterHit (line 2771) | class QRayCasterHit(shiboken2.Object): class HitType (line 2772) | class HitType: method __init__ (line 2780) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2781) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCas... method __and__ (line 2782) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCas... method __bool__ (line 2783) | def __bool__(self) -> bool: ... method __eq__ (line 2784) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2785) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2786) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2787) | def __hash__(self) -> int: ... method __index__ (line 2788) | def __index__(self) -> int: ... method __int__ (line 2789) | def __int__(self) -> int: ... method __le__ (line 2790) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2791) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2792) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCas... method __ne__ (line 2793) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2794) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCast... method __pos__ (line 2795) | def __pos__(self): ... method __radd__ (line 2796) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCa... method __rand__ (line 2797) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCa... method __rmul__ (line 2798) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCa... method __ror__ (line 2799) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCas... method __rsub__ (line 2800) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCa... method __rxor__ (line 2801) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCa... method __sub__ (line 2802) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCas... method __xor__ (line 2803) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QRayCas... method __init__ (line 2809) | def __init__(self, type: Qt3DRender.QRayCasterHit.HitType, id: PySid... method __init__ (line 2811) | def __init__(self, other: Qt3DRender.QRayCasterHit) -> None: ... method __init__ (line 2813) | def __init__(self) -> None: ... method distance (line 2814) | def distance(self) -> float: ... method entity (line 2815) | def entity(self) -> PySide2.Qt3DCore.Qt3DCore.QEntity: ... method entityId (line 2816) | def entityId(self) -> PySide2.Qt3DCore.Qt3DCore.QNodeId: ... method localIntersection (line 2817) | def localIntersection(self) -> PySide2.QtGui.QVector3D: ... method primitiveIndex (line 2818) | def primitiveIndex(self) -> int: ... method type (line 2819) | def type(self) -> Qt3DRender.QRayCasterHit.HitType: ... method vertex1Index (line 2820) | def vertex1Index(self) -> int: ... method vertex2Index (line 2821) | def vertex2Index(self) -> int: ... method vertex3Index (line 2822) | def vertex3Index(self) -> int: ... method worldIntersection (line 2823) | def worldIntersection(self) -> PySide2.QtGui.QVector3D: ... method __copy__ (line 2824) | def __copy__(self) -> None: ... class QRenderAspect (line 2826) | class QRenderAspect(PySide2.Qt3DCore.Qt3DCore.QAbstractAspect): class RenderType (line 2827) | class RenderType: method __init__ (line 2833) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2834) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __and__ (line 2835) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __bool__ (line 2836) | def __bool__(self) -> bool: ... method __eq__ (line 2837) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2838) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2839) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2840) | def __hash__(self) -> int: ... method __index__ (line 2841) | def __index__(self) -> int: ... method __int__ (line 2842) | def __int__(self) -> int: ... method __le__ (line 2843) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2844) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2845) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __ne__ (line 2846) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2847) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QRenderA... method __pos__ (line 2848) | def __pos__(self): ... method __radd__ (line 2849) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rand__ (line 2850) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rmul__ (line 2851) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __ror__ (line 2852) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __rsub__ (line 2853) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rxor__ (line 2854) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __sub__ (line 2855) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __xor__ (line 2856) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __init__ (line 2861) | def __init__(self, type: Qt3DRender.QRenderAspect.RenderType, parent... method __init__ (line 2863) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... class QRenderCapabilities (line 2865) | class QRenderCapabilities(PySide2.QtCore.QObject): class API (line 2866) | class API: method __init__ (line 2875) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2876) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __and__ (line 2877) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __bool__ (line 2878) | def __bool__(self) -> bool: ... method __eq__ (line 2879) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2880) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2881) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2882) | def __hash__(self) -> int: ... method __index__ (line 2883) | def __index__(self) -> int: ... method __int__ (line 2884) | def __int__(self) -> int: ... method __le__ (line 2885) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2886) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2887) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __ne__ (line 2888) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2889) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QRenderC... method __pos__ (line 2890) | def __pos__(self): ... method __radd__ (line 2891) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rand__ (line 2892) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rmul__ (line 2893) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __ror__ (line 2894) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __rsub__ (line 2895) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rxor__ (line 2896) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __sub__ (line 2897) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __xor__ (line 2898) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... class Profile (line 2900) | class Profile: method __init__ (line 2907) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2908) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __and__ (line 2909) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __bool__ (line 2910) | def __bool__(self) -> bool: ... method __eq__ (line 2911) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2912) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2913) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2914) | def __hash__(self) -> int: ... method __index__ (line 2915) | def __index__(self) -> int: ... method __int__ (line 2916) | def __int__(self) -> int: ... method __le__ (line 2917) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2918) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2919) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __ne__ (line 2920) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2921) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QRenderC... method __pos__ (line 2922) | def __pos__(self): ... method __radd__ (line 2923) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rand__ (line 2924) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rmul__ (line 2925) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __ror__ (line 2926) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __rsub__ (line 2927) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rxor__ (line 2928) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __sub__ (line 2929) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __xor__ (line 2930) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __init__ (line 2940) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., api:... method api (line 2941) | def api(self) -> Qt3DRender.QRenderCapabilities.API: ... method driverVersion (line 2942) | def driverVersion(self) -> str: ... method extensions (line 2943) | def extensions(self) -> list[str]: ... method glslVersion (line 2944) | def glslVersion(self) -> str: ... method isValid (line 2945) | def isValid(self) -> bool: ... method majorVersion (line 2946) | def majorVersion(self) -> int: ... method maxComputeInvocations (line 2947) | def maxComputeInvocations(self) -> int: ... method maxComputeSharedMemorySize (line 2948) | def maxComputeSharedMemorySize(self) -> int: ... method maxImageUnits (line 2949) | def maxImageUnits(self) -> int: ... method maxSSBOBindings (line 2950) | def maxSSBOBindings(self) -> int: ... method maxSSBOSize (line 2951) | def maxSSBOSize(self) -> int: ... method maxSamples (line 2952) | def maxSamples(self) -> int: ... method maxTextureLayers (line 2953) | def maxTextureLayers(self) -> int: ... method maxTextureSize (line 2954) | def maxTextureSize(self) -> int: ... method maxTextureUnits (line 2955) | def maxTextureUnits(self) -> int: ... method maxUBOBindings (line 2956) | def maxUBOBindings(self) -> int: ... method maxUBOSize (line 2957) | def maxUBOSize(self) -> int: ... method maxWorkGroupCountX (line 2958) | def maxWorkGroupCountX(self) -> int: ... method maxWorkGroupCountY (line 2959) | def maxWorkGroupCountY(self) -> int: ... method maxWorkGroupCountZ (line 2960) | def maxWorkGroupCountZ(self) -> int: ... method maxWorkGroupSizeX (line 2961) | def maxWorkGroupSizeX(self) -> int: ... method maxWorkGroupSizeY (line 2962) | def maxWorkGroupSizeY(self) -> int: ... method maxWorkGroupSizeZ (line 2963) | def maxWorkGroupSizeZ(self) -> int: ... method minorVersion (line 2964) | def minorVersion(self) -> int: ... method profile (line 2965) | def profile(self) -> Qt3DRender.QRenderCapabilities.Profile: ... method renderer (line 2966) | def renderer(self) -> str: ... method supportsCompute (line 2967) | def supportsCompute(self) -> bool: ... method supportsImageStore (line 2968) | def supportsImageStore(self) -> bool: ... method supportsSSBO (line 2969) | def supportsSSBO(self) -> bool: ... method supportsUBO (line 2970) | def supportsUBO(self) -> bool: ... method vendor (line 2971) | def vendor(self) -> str: ... class QRenderCapture (line 2973) | class QRenderCapture(Qt3DRender.QFrameGraphNode): method __init__ (line 2975) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method requestCapture (line 2977) | def requestCapture(self, rect: PySide2.QtCore.QRect) -> Qt3DRender.Q... method requestCapture (line 2979) | def requestCapture(self, captureId: int) -> Qt3DRender.QRenderCaptur... method requestCapture (line 2981) | def requestCapture(self) -> Qt3DRender.QRenderCaptureReply: ... class QRenderCaptureReply (line 2983) | class QRenderCaptureReply(PySide2.QtCore.QObject): method __init__ (line 2988) | def __init__(cls, *args, captureId: int = ..., complete: bool = ...,... method captureId (line 2989) | def captureId(self) -> int: ... method image (line 2990) | def image(self) -> PySide2.QtGui.QImage: ... method isComplete (line 2991) | def isComplete(self) -> bool: ... method saveImage (line 2992) | def saveImage(self, fileName: str) -> bool: ... method saveToFile (line 2993) | def saveToFile(self, fileName: str) -> None: ... class QRenderPass (line 2995) | class QRenderPass(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 2998) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addFilterKey (line 2999) | def addFilterKey(self, filterKey: Qt3DRender.QFilterKey) -> None: ... method addParameter (line 3000) | def addParameter(self, p: Qt3DRender.QParameter) -> None: ... method addRenderState (line 3001) | def addRenderState(self, state: Qt3DRender.QRenderState) -> None: ... method filterKeys (line 3002) | def filterKeys(self) -> list[Qt3DRender.QFilterKey]: ... method parameters (line 3003) | def parameters(self) -> list[Qt3DRender.QParameter]: ... method removeFilterKey (line 3004) | def removeFilterKey(self, filterKey: Qt3DRender.QFilterKey) -> None:... method removeParameter (line 3005) | def removeParameter(self, p: Qt3DRender.QParameter) -> None: ... method removeRenderState (line 3006) | def removeRenderState(self, state: Qt3DRender.QRenderState) -> None:... method renderStates (line 3007) | def renderStates(self) -> list[Qt3DRender.QRenderState]: ... method setShaderProgram (line 3008) | def setShaderProgram(self, shaderProgram: Qt3DRender.QShaderProgram)... method shaderProgram (line 3009) | def shaderProgram(self) -> Qt3DRender.QShaderProgram: ... class QRenderPassFilter (line 3011) | class QRenderPassFilter(Qt3DRender.QFrameGraphNode): method __init__ (line 3013) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addMatch (line 3014) | def addMatch(self, filterKey: Qt3DRender.QFilterKey) -> None: ... method addParameter (line 3015) | def addParameter(self, parameter: Qt3DRender.QParameter) -> None: ... method matchAny (line 3016) | def matchAny(self) -> list[Qt3DRender.QFilterKey]: ... method parameters (line 3017) | def parameters(self) -> list[Qt3DRender.QParameter]: ... method removeMatch (line 3018) | def removeMatch(self, filterKey: Qt3DRender.QFilterKey) -> None: ... method removeParameter (line 3019) | def removeParameter(self, parameter: Qt3DRender.QParameter) -> None:... class QRenderSettings (line 3021) | class QRenderSettings(PySide2.Qt3DCore.Qt3DCore.QComponent): class RenderPolicy (line 3022) | class RenderPolicy: method __init__ (line 3028) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3029) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __and__ (line 3030) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __bool__ (line 3031) | def __bool__(self) -> bool: ... method __eq__ (line 3032) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3033) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3034) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3035) | def __hash__(self) -> int: ... method __index__ (line 3036) | def __index__(self) -> int: ... method __int__ (line 3037) | def __int__(self) -> int: ... method __le__ (line 3038) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3039) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3040) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __ne__ (line 3041) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3042) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QRenderS... method __pos__ (line 3043) | def __pos__(self): ... method __radd__ (line 3044) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rand__ (line 3045) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rmul__ (line 3046) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __ror__ (line 3047) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __rsub__ (line 3048) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rxor__ (line 3049) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __sub__ (line 3050) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __xor__ (line 3051) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __init__ (line 3057) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method activeFrameGraph (line 3058) | def activeFrameGraph(self) -> Qt3DRender.QFrameGraphNode: ... method pickingSettings (line 3059) | def pickingSettings(self) -> Qt3DRender.QPickingSettings: ... method renderCapabilities (line 3060) | def renderCapabilities(self) -> Qt3DRender.QRenderCapabilities: ... method renderPolicy (line 3061) | def renderPolicy(self) -> Qt3DRender.QRenderSettings.RenderPolicy: ... method setActiveFrameGraph (line 3062) | def setActiveFrameGraph(self, activeFrameGraph: Qt3DRender.QFrameGra... method setRenderPolicy (line 3063) | def setRenderPolicy(self, renderPolicy: Qt3DRender.QRenderSettings.R... class QRenderState (line 3065) | class QRenderState(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 3068) | def __init__(cls, *args, defaultPropertyTrackingMode: Qt3DRender.QRe... class QRenderStateSet (line 3070) | class QRenderStateSet(Qt3DRender.QFrameGraphNode): method __init__ (line 3072) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addRenderState (line 3073) | def addRenderState(self, state: Qt3DRender.QRenderState) -> None: ... method removeRenderState (line 3074) | def removeRenderState(self, state: Qt3DRender.QRenderState) -> None:... method renderStates (line 3075) | def renderStates(self) -> list[Qt3DRender.QRenderState]: ... class QRenderSurfaceSelector (line 3077) | class QRenderSurfaceSelector(Qt3DRender.QFrameGraphNode): method __init__ (line 3082) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method externalRenderTargetSize (line 3083) | def externalRenderTargetSize(self) -> PySide2.QtCore.QSize: ... method setExternalRenderTargetSize (line 3084) | def setExternalRenderTargetSize(self, size: PySide2.QtCore.QSize) ->... method setSurface (line 3085) | def setSurface(self, surfaceObject: PySide2.QtCore.QObject) -> None:... method setSurfacePixelRatio (line 3086) | def setSurfacePixelRatio(self, ratio: float) -> None: ... method surface (line 3087) | def surface(self) -> PySide2.QtCore.QObject: ... method surfacePixelRatio (line 3088) | def surfacePixelRatio(self) -> float: ... class QRenderTarget (line 3090) | class QRenderTarget(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 3092) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addOutput (line 3093) | def addOutput(self, output: Qt3DRender.QRenderTargetOutput) -> None:... method outputs (line 3094) | def outputs(self) -> list[Qt3DRender.QRenderTargetOutput]: ... method removeOutput (line 3095) | def removeOutput(self, output: Qt3DRender.QRenderTargetOutput) -> No... class QRenderTargetOutput (line 3097) | class QRenderTargetOutput(PySide2.Qt3DCore.Qt3DCore.QNode): class AttachmentPoint (line 3098) | class AttachmentPoint: method __init__ (line 3121) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3122) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __and__ (line 3123) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __bool__ (line 3124) | def __bool__(self) -> bool: ... method __eq__ (line 3125) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3126) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3127) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3128) | def __hash__(self) -> int: ... method __index__ (line 3129) | def __index__(self) -> int: ... method __int__ (line 3130) | def __int__(self) -> int: ... method __le__ (line 3131) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3132) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3133) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __ne__ (line 3134) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3135) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QRenderT... method __pos__ (line 3136) | def __pos__(self): ... method __radd__ (line 3137) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rand__ (line 3138) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rmul__ (line 3139) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __ror__ (line 3140) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __rsub__ (line 3141) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __rxor__ (line 3142) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QRende... method __sub__ (line 3143) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __xor__ (line 3144) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QRender... method __init__ (line 3170) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method attachmentPoint (line 3171) | def attachmentPoint(self) -> Qt3DRender.QRenderTargetOutput.Attachme... method face (line 3172) | def face(self) -> Qt3DRender.QAbstractTexture.CubeMapFace: ... method layer (line 3173) | def layer(self) -> int: ... method mipLevel (line 3174) | def mipLevel(self) -> int: ... method setAttachmentPoint (line 3175) | def setAttachmentPoint(self, attachmentPoint: Qt3DRender.QRenderTarg... method setFace (line 3176) | def setFace(self, face: Qt3DRender.QAbstractTexture.CubeMapFace) -> ... method setLayer (line 3177) | def setLayer(self, layer: int) -> None: ... method setMipLevel (line 3178) | def setMipLevel(self, level: int) -> None: ... method setTexture (line 3179) | def setTexture(self, texture: Qt3DRender.QAbstractTexture) -> None: ... method texture (line 3180) | def texture(self) -> Qt3DRender.QAbstractTexture: ... class QRenderTargetSelector (line 3182) | class QRenderTargetSelector(Qt3DRender.QFrameGraphNode): method __init__ (line 3185) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method outputs (line 3186) | def outputs(self) -> list[Qt3DRender.QRenderTargetOutput.AttachmentP... method setOutputs (line 3187) | def setOutputs(self, buffers: list[Qt3DRender.QRenderTargetOutput.At... method setTarget (line 3188) | def setTarget(self, target: Qt3DRender.QRenderTarget) -> None: ... method target (line 3189) | def target(self) -> Qt3DRender.QRenderTarget: ... class QSceneLoader (line 3191) | class QSceneLoader(PySide2.Qt3DCore.Qt3DCore.QComponent): class ComponentType (line 3192) | class ComponentType: method __init__ (line 3202) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3203) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __and__ (line 3204) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __bool__ (line 3205) | def __bool__(self) -> bool: ... method __eq__ (line 3206) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3207) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3208) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3209) | def __hash__(self) -> int: ... method __index__ (line 3210) | def __index__(self) -> int: ... method __int__ (line 3211) | def __int__(self) -> int: ... method __le__ (line 3212) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3213) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3214) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __ne__ (line 3215) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3216) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneLo... method __pos__ (line 3217) | def __pos__(self): ... method __radd__ (line 3218) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __rand__ (line 3219) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __rmul__ (line 3220) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __ror__ (line 3221) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __rsub__ (line 3222) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __rxor__ (line 3223) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __sub__ (line 3224) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __xor__ (line 3225) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... class Status (line 3227) | class Status: method __init__ (line 3235) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3236) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __and__ (line 3237) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __bool__ (line 3238) | def __bool__(self) -> bool: ... method __eq__ (line 3239) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3240) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3241) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3242) | def __hash__(self) -> int: ... method __index__ (line 3243) | def __index__(self) -> int: ... method __int__ (line 3244) | def __int__(self) -> int: ... method __le__ (line 3245) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3246) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3247) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __ne__ (line 3248) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3249) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneLo... method __pos__ (line 3250) | def __pos__(self): ... method __radd__ (line 3251) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __rand__ (line 3252) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __rmul__ (line 3253) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __ror__ (line 3254) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __rsub__ (line 3255) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __rxor__ (line 3256) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QScene... method __sub__ (line 3257) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __xor__ (line 3258) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QSceneL... method __init__ (line 3272) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method component (line 3273) | def component(self, entityName: str, componentType: Qt3DRender.QScen... method entity (line 3274) | def entity(self, entityName: str) -> PySide2.Qt3DCore.Qt3DCore.QEnti... method entityNames (line 3275) | def entityNames(self) -> list[str]: ... method setSource (line 3276) | def setSource(self, arg: PySide2.QtCore.QUrl) -> None: ... method setStatus (line 3277) | def setStatus(self, status: Qt3DRender.QSceneLoader.Status) -> None:... method source (line 3278) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 3279) | def status(self) -> Qt3DRender.QSceneLoader.Status: ... class QScissorTest (line 3281) | class QScissorTest(Qt3DRender.QRenderState): method __init__ (line 3287) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method bottom (line 3288) | def bottom(self) -> int: ... method height (line 3289) | def height(self) -> int: ... method left (line 3290) | def left(self) -> int: ... method setBottom (line 3291) | def setBottom(self, bottom: int) -> None: ... method setHeight (line 3292) | def setHeight(self, height: int) -> None: ... method setLeft (line 3293) | def setLeft(self, left: int) -> None: ... method setWidth (line 3294) | def setWidth(self, width: int) -> None: ... method width (line 3295) | def width(self) -> int: ... class QScreenRayCaster (line 3297) | class QScreenRayCaster(Qt3DRender.QAbstractRayCaster): method __init__ (line 3300) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method position (line 3301) | def position(self) -> PySide2.QtCore.QPoint: ... method setPosition (line 3302) | def setPosition(self, position: PySide2.QtCore.QPoint) -> None: ... method trigger (line 3304) | def trigger(self, position: PySide2.QtCore.QPoint) -> None: ... method trigger (line 3306) | def trigger(self) -> None: ... class QSeamlessCubemap (line 3308) | class QSeamlessCubemap(Qt3DRender.QRenderState): method __init__ (line 3310) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QSetFence (line 3312) | class QSetFence(Qt3DRender.QFrameGraphNode): class HandleType (line 3313) | class HandleType: method __init__ (line 3319) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3320) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFen... method __and__ (line 3321) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFen... method __bool__ (line 3322) | def __bool__(self) -> bool: ... method __eq__ (line 3323) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3324) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3325) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3326) | def __hash__(self) -> int: ... method __index__ (line 3327) | def __index__(self) -> int: ... method __int__ (line 3328) | def __int__(self) -> int: ... method __le__ (line 3329) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3330) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3331) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFen... method __ne__ (line 3332) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3333) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFenc... method __pos__ (line 3334) | def __pos__(self): ... method __radd__ (line 3335) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFe... method __rand__ (line 3336) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFe... method __rmul__ (line 3337) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFe... method __ror__ (line 3338) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFen... method __rsub__ (line 3339) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFe... method __rxor__ (line 3340) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFe... method __sub__ (line 3341) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFen... method __xor__ (line 3342) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QSetFen... method __init__ (line 3348) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method handle (line 3349) | def handle(self) -> typing.Any: ... method handleType (line 3350) | def handleType(self) -> Qt3DRender.QSetFence.HandleType: ... class QShaderData (line 3352) | class QShaderData(PySide2.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 3354) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method event (line 3355) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... class QShaderImage (line 3357) | class QShaderImage(PySide2.Qt3DCore.Qt3DCore.QNode): class Access (line 3358) | class Access: method __init__ (line 3365) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3366) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __and__ (line 3367) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __bool__ (line 3368) | def __bool__(self) -> bool: ... method __eq__ (line 3369) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3370) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3371) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3372) | def __hash__(self) -> int: ... method __index__ (line 3373) | def __index__(self) -> int: ... method __int__ (line 3374) | def __int__(self) -> int: ... method __le__ (line 3375) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3376) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3377) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __ne__ (line 3378) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3379) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QShaderI... method __pos__ (line 3380) | def __pos__(self): ... method __radd__ (line 3381) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rand__ (line 3382) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rmul__ (line 3383) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __ror__ (line 3384) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __rsub__ (line 3385) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rxor__ (line 3386) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __sub__ (line 3387) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __xor__ (line 3388) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... class ImageFormat (line 3390) | class ImageFormat: method __init__ (line 3435) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3436) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __and__ (line 3437) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __bool__ (line 3438) | def __bool__(self) -> bool: ... method __eq__ (line 3439) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3440) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3441) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3442) | def __hash__(self) -> int: ... method __index__ (line 3443) | def __index__(self) -> int: ... method __int__ (line 3444) | def __int__(self) -> int: ... method __le__ (line 3445) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3446) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3447) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __ne__ (line 3448) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3449) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QShaderI... method __pos__ (line 3450) | def __pos__(self): ... method __radd__ (line 3451) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rand__ (line 3452) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rmul__ (line 3453) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __ror__ (line 3454) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __rsub__ (line 3455) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rxor__ (line 3456) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __sub__ (line 3457) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __xor__ (line 3458) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __init__ (line 3510) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method access (line 3511) | def access(self) -> Qt3DRender.QShaderImage.Access: ... method format (line 3512) | def format(self) -> Qt3DRender.QShaderImage.ImageFormat: ... method layer (line 3513) | def layer(self) -> int: ... method layered (line 3514) | def layered(self) -> bool: ... method mipLevel (line 3515) | def mipLevel(self) -> int: ... method setAccess (line 3516) | def setAccess(self, access: Qt3DRender.QShaderImage.Access) -> None:... method setFormat (line 3517) | def setFormat(self, format: Qt3DRender.QShaderImage.ImageFormat) -> ... method setLayer (line 3518) | def setLayer(self, layer: int) -> None: ... method setLayered (line 3519) | def setLayered(self, layered: bool) -> None: ... method setMipLevel (line 3520) | def setMipLevel(self, mipLevel: int) -> None: ... method setTexture (line 3521) | def setTexture(self, texture: Qt3DRender.QAbstractTexture) -> None: ... method texture (line 3522) | def texture(self) -> Qt3DRender.QAbstractTexture: ... class QShaderProgram (line 3524) | class QShaderProgram(PySide2.Qt3DCore.Qt3DCore.QNode): class Format (line 3525) | class Format: method __init__ (line 3531) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3532) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __and__ (line 3533) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __bool__ (line 3534) | def __bool__(self) -> bool: ... method __eq__ (line 3535) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3536) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3537) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3538) | def __hash__(self) -> int: ... method __index__ (line 3539) | def __index__(self) -> int: ... method __int__ (line 3540) | def __int__(self) -> int: ... method __le__ (line 3541) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3542) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3543) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __ne__ (line 3544) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3545) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QShaderP... method __pos__ (line 3546) | def __pos__(self): ... method __radd__ (line 3547) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rand__ (line 3548) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rmul__ (line 3549) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __ror__ (line 3550) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __rsub__ (line 3551) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rxor__ (line 3552) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __sub__ (line 3553) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __xor__ (line 3554) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... class ShaderType (line 3556) | class ShaderType: method __init__ (line 3566) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3567) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __and__ (line 3568) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __bool__ (line 3569) | def __bool__(self) -> bool: ... method __eq__ (line 3570) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3571) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3572) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3573) | def __hash__(self) -> int: ... method __index__ (line 3574) | def __index__(self) -> int: ... method __int__ (line 3575) | def __int__(self) -> int: ... method __le__ (line 3576) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3577) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3578) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __ne__ (line 3579) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3580) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QShaderP... method __pos__ (line 3581) | def __pos__(self): ... method __radd__ (line 3582) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rand__ (line 3583) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rmul__ (line 3584) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __ror__ (line 3585) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __rsub__ (line 3586) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rxor__ (line 3587) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __sub__ (line 3588) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __xor__ (line 3589) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... class Status (line 3591) | class Status: method __init__ (line 3598) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3599) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __and__ (line 3600) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __bool__ (line 3601) | def __bool__(self) -> bool: ... method __eq__ (line 3602) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3603) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3604) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3605) | def __hash__(self) -> int: ... method __index__ (line 3606) | def __index__(self) -> int: ... method __int__ (line 3607) | def __int__(self) -> int: ... method __le__ (line 3608) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3609) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3610) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __ne__ (line 3611) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3612) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QShaderP... method __pos__ (line 3613) | def __pos__(self): ... method __radd__ (line 3614) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rand__ (line 3615) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rmul__ (line 3616) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __ror__ (line 3617) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __rsub__ (line 3618) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __rxor__ (line 3619) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QShade... method __sub__ (line 3620) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __xor__ (line 3621) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QShader... method __init__ (line 3643) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method computeShaderCode (line 3644) | def computeShaderCode(self) -> PySide2.QtCore.QByteArray: ... method format (line 3645) | def format(self) -> Qt3DRender.QShaderProgram.Format: ... method fragmentShaderCode (line 3646) | def fragmentShaderCode(self) -> PySide2.QtCore.QByteArray: ... method geometryShaderCode (line 3647) | def geometryShaderCode(self) -> PySide2.QtCore.QByteArray: ... method loadSource (line 3649) | def loadSource(sourceUrl: PySide2.QtCore.QUrl) -> PySide2.QtCore.QBy... method log (line 3650) | def log(self) -> str: ... method setComputeShaderCode (line 3651) | def setComputeShaderCode(self, computeShaderCode: PySide2.QtCore.QBy... method setFormat (line 3652) | def setFormat(self, format: Qt3DRender.QShaderProgram.Format) -> Non... method setFragmentShaderCode (line 3653) | def setFragmentShaderCode(self, fragmentShaderCode: PySide2.QtCore.Q... method setGeometryShaderCode (line 3654) | def setGeometryShaderCode(self, geometryShaderCode: PySide2.QtCore.Q... method setShaderCode (line 3655) | def setShaderCode(self, type: Qt3DRender.QShaderProgram.ShaderType, ... method setTessellationControlShaderCode (line 3656) | def setTessellationControlShaderCode(self, tessellationControlShader... method setTessellationEvaluationShaderCode (line 3657) | def setTessellationEvaluationShaderCode(self, tessellationEvaluation... method setVertexShaderCode (line 3658) | def setVertexShaderCode(self, vertexShaderCode: PySide2.QtCore.QByte... method shaderCode (line 3659) | def shaderCode(self, type: Qt3DRender.QShaderProgram.ShaderType) -> ... method status (line 3660) | def status(self) -> Qt3DRender.QShaderProgram.Status: ... method tessellationControlShaderCode (line 3661) | def tessellationControlShaderCode(self) -> PySide2.QtCore.QByteArray... method tessellationEvaluationShaderCode (line 3662) | def tessellationEvaluationShaderCode(self) -> PySide2.QtCore.QByteAr... method vertexShaderCode (line 3663) | def vertexShaderCode(self) -> PySide2.QtCore.QByteArray: ... class QShaderProgramBuilder (line 3665) | class QShaderProgramBuilder(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 3681) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method computeShaderCode (line 3682) | def computeShaderCode(self) -> PySide2.QtCore.QByteArray: ... method computeShaderGraph (line 3683) | def computeShaderGraph(self) -> PySide2.QtCore.QUrl: ... method enabledLayers (line 3684) | def enabledLayers(self) -> list[str]: ... method fragmentShaderCode (line 3685) | def fragmentShaderCode(self) -> PySide2.QtCore.QByteArray: ... method fragmentShaderGraph (line 3686) | def fragmentShaderGraph(self) -> PySide2.QtCore.QUrl: ... method geometryShaderCode (line 3687) | def geometryShaderCode(self) -> PySide2.QtCore.QByteArray: ... method geometryShaderGraph (line 3688) | def geometryShaderGraph(self) -> PySide2.QtCore.QUrl: ... method setComputeShaderGraph (line 3689) | def setComputeShaderGraph(self, computeShaderGraph: PySide2.QtCore.Q... method setEnabledLayers (line 3690) | def setEnabledLayers(self, layers: typing.Iterable[str]) -> None: ... method setFragmentShaderGraph (line 3691) | def setFragmentShaderGraph(self, fragmentShaderGraph: PySide2.QtCore... method setGeometryShaderGraph (line 3692) | def setGeometryShaderGraph(self, geometryShaderGraph: PySide2.QtCore... method setShaderProgram (line 3693) | def setShaderProgram(self, program: Qt3DRender.QShaderProgram) -> No... method setTessellationControlShaderGraph (line 3694) | def setTessellationControlShaderGraph(self, tessellationControlShade... method setTessellationEvaluationShaderGraph (line 3695) | def setTessellationEvaluationShaderGraph(self, tessellationEvaluatio... method setVertexShaderGraph (line 3696) | def setVertexShaderGraph(self, vertexShaderGraph: PySide2.QtCore.QUr... method shaderProgram (line 3697) | def shaderProgram(self) -> Qt3DRender.QShaderProgram: ... method tessellationControlShaderCode (line 3698) | def tessellationControlShaderCode(self) -> PySide2.QtCore.QByteArray... method tessellationControlShaderGraph (line 3699) | def tessellationControlShaderGraph(self) -> PySide2.QtCore.QUrl: ... method tessellationEvaluationShaderCode (line 3700) | def tessellationEvaluationShaderCode(self) -> PySide2.QtCore.QByteAr... method tessellationEvaluationShaderGraph (line 3701) | def tessellationEvaluationShaderGraph(self) -> PySide2.QtCore.QUrl: ... method vertexShaderCode (line 3702) | def vertexShaderCode(self) -> PySide2.QtCore.QByteArray: ... method vertexShaderGraph (line 3703) | def vertexShaderGraph(self) -> PySide2.QtCore.QUrl: ... class QSharedGLTexture (line 3705) | class QSharedGLTexture(Qt3DRender.QAbstractTexture): method __init__ (line 3708) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setTextureId (line 3709) | def setTextureId(self, id: int) -> None: ... method textureId (line 3710) | def textureId(self) -> int: ... class QSortPolicy (line 3712) | class QSortPolicy(Qt3DRender.QFrameGraphNode): class SortType (line 3713) | class SortType: method __init__ (line 3723) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3724) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPo... method __and__ (line 3725) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPo... method __bool__ (line 3726) | def __bool__(self) -> bool: ... method __eq__ (line 3727) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3728) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3729) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3730) | def __hash__(self) -> int: ... method __index__ (line 3731) | def __index__(self) -> int: ... method __int__ (line 3732) | def __int__(self) -> int: ... method __le__ (line 3733) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3734) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3735) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPo... method __ne__ (line 3736) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3737) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPol... method __pos__ (line 3738) | def __pos__(self): ... method __radd__ (line 3739) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QSortP... method __rand__ (line 3740) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QSortP... method __rmul__ (line 3741) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QSortP... method __ror__ (line 3742) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPo... method __rsub__ (line 3743) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QSortP... method __rxor__ (line 3744) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QSortP... method __sub__ (line 3745) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPo... method __xor__ (line 3746) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QSortPo... method __init__ (line 3755) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method setSortTypes (line 3757) | def setSortTypes(self, sortTypesInt: list[int]) -> None: ... method setSortTypes (line 3759) | def setSortTypes(self, sortTypes: list[Qt3DRender.QSortPolicy.SortTy... method sortTypes (line 3760) | def sortTypes(self) -> list[Qt3DRender.QSortPolicy.SortType]: ... method sortTypesInt (line 3761) | def sortTypesInt(self) -> list[int]: ... class QSpotLight (line 3763) | class QSpotLight(Qt3DRender.QAbstractLight): method __init__ (line 3770) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method constantAttenuation (line 3771) | def constantAttenuation(self) -> float: ... method cutOffAngle (line 3772) | def cutOffAngle(self) -> float: ... method linearAttenuation (line 3773) | def linearAttenuation(self) -> float: ... method localDirection (line 3774) | def localDirection(self) -> PySide2.QtGui.QVector3D: ... method quadraticAttenuation (line 3775) | def quadraticAttenuation(self) -> float: ... method setConstantAttenuation (line 3776) | def setConstantAttenuation(self, value: float) -> None: ... method setCutOffAngle (line 3777) | def setCutOffAngle(self, cutOffAngle: float) -> None: ... method setLinearAttenuation (line 3778) | def setLinearAttenuation(self, value: float) -> None: ... method setLocalDirection (line 3779) | def setLocalDirection(self, localDirection: PySide2.QtGui.QVector3D)... method setQuadraticAttenuation (line 3780) | def setQuadraticAttenuation(self, value: float) -> None: ... class QStencilMask (line 3782) | class QStencilMask(Qt3DRender.QRenderState): method __init__ (line 3786) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method backOutputMask (line 3787) | def backOutputMask(self) -> int: ... method frontOutputMask (line 3788) | def frontOutputMask(self) -> int: ... method setBackOutputMask (line 3789) | def setBackOutputMask(self, backOutputMask: int) -> None: ... method setFrontOutputMask (line 3790) | def setFrontOutputMask(self, frontOutputMask: int) -> None: ... class QStencilOperation (line 3792) | class QStencilOperation(Qt3DRender.QRenderState): method __init__ (line 3794) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method back (line 3795) | def back(self) -> Qt3DRender.QStencilOperationArguments: ... method front (line 3796) | def front(self) -> Qt3DRender.QStencilOperationArguments: ... class QStencilOperationArguments (line 3798) | class QStencilOperationArguments(PySide2.QtCore.QObject): class FaceMode (line 3799) | class FaceMode: method __init__ (line 3806) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3807) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __and__ (line 3808) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __bool__ (line 3809) | def __bool__(self) -> bool: ... method __eq__ (line 3810) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3811) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3812) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3813) | def __hash__(self) -> int: ... method __index__ (line 3814) | def __index__(self) -> int: ... method __int__ (line 3815) | def __int__(self) -> int: ... method __le__ (line 3816) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3817) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3818) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __ne__ (line 3819) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3820) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QStencil... method __pos__ (line 3821) | def __pos__(self): ... method __radd__ (line 3822) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rand__ (line 3823) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rmul__ (line 3824) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __ror__ (line 3825) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __rsub__ (line 3826) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rxor__ (line 3827) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __sub__ (line 3828) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __xor__ (line 3829) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... class Operation (line 3831) | class Operation: method __init__ (line 3843) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3844) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __and__ (line 3845) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __bool__ (line 3846) | def __bool__(self) -> bool: ... method __eq__ (line 3847) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3848) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3849) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3850) | def __hash__(self) -> int: ... method __index__ (line 3851) | def __index__(self) -> int: ... method __int__ (line 3852) | def __int__(self) -> int: ... method __le__ (line 3853) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3854) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3855) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __ne__ (line 3856) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3857) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QStencil... method __pos__ (line 3858) | def __pos__(self): ... method __radd__ (line 3859) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rand__ (line 3860) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rmul__ (line 3861) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __ror__ (line 3862) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __rsub__ (line 3863) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rxor__ (line 3864) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __sub__ (line 3865) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __xor__ (line 3866) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __init__ (line 3884) | def __init__(cls, *args, allTestsPassOperation: Qt3DRender.QStencilO... method allTestsPassOperation (line 3885) | def allTestsPassOperation(self) -> Qt3DRender.QStencilOperationArgum... method depthTestFailureOperation (line 3886) | def depthTestFailureOperation(self) -> Qt3DRender.QStencilOperationA... method faceMode (line 3887) | def faceMode(self) -> Qt3DRender.QStencilOperationArguments.FaceMode... method setAllTestsPassOperation (line 3888) | def setAllTestsPassOperation(self, operation: Qt3DRender.QStencilOpe... method setDepthTestFailureOperation (line 3889) | def setDepthTestFailureOperation(self, operation: Qt3DRender.QStenci... method setStencilTestFailureOperation (line 3890) | def setStencilTestFailureOperation(self, operation: Qt3DRender.QSten... method stencilTestFailureOperation (line 3891) | def stencilTestFailureOperation(self) -> Qt3DRender.QStencilOperatio... class QStencilTest (line 3893) | class QStencilTest(Qt3DRender.QRenderState): method __init__ (line 3895) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method back (line 3896) | def back(self) -> Qt3DRender.QStencilTestArguments: ... method front (line 3897) | def front(self) -> Qt3DRender.QStencilTestArguments: ... class QStencilTestArguments (line 3899) | class QStencilTestArguments(PySide2.QtCore.QObject): class StencilFaceMode (line 3900) | class StencilFaceMode: method __init__ (line 3907) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3908) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __and__ (line 3909) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __bool__ (line 3910) | def __bool__(self) -> bool: ... method __eq__ (line 3911) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3912) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3913) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3914) | def __hash__(self) -> int: ... method __index__ (line 3915) | def __index__(self) -> int: ... method __int__ (line 3916) | def __int__(self) -> int: ... method __le__ (line 3917) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3918) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3919) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __ne__ (line 3920) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3921) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QStencil... method __pos__ (line 3922) | def __pos__(self): ... method __radd__ (line 3923) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rand__ (line 3924) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rmul__ (line 3925) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __ror__ (line 3926) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __rsub__ (line 3927) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rxor__ (line 3928) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __sub__ (line 3929) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __xor__ (line 3930) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... class StencilFunction (line 3932) | class StencilFunction: method __init__ (line 3944) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3945) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __and__ (line 3946) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __bool__ (line 3947) | def __bool__(self) -> bool: ... method __eq__ (line 3948) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3949) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3950) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3951) | def __hash__(self) -> int: ... method __index__ (line 3952) | def __index__(self) -> int: ... method __int__ (line 3953) | def __int__(self) -> int: ... method __le__ (line 3954) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3955) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3956) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __ne__ (line 3957) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3958) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QStencil... method __pos__ (line 3959) | def __pos__(self): ... method __radd__ (line 3960) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rand__ (line 3961) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rmul__ (line 3962) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __ror__ (line 3963) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __rsub__ (line 3964) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __rxor__ (line 3965) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenc... method __sub__ (line 3966) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __xor__ (line 3967) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QStenci... method __init__ (line 3985) | def __init__(cls, *args, comparisonMask: int = ..., comparisonMaskCh... method comparisonMask (line 3986) | def comparisonMask(self) -> int: ... method faceMode (line 3987) | def faceMode(self) -> Qt3DRender.QStencilTestArguments.StencilFaceMo... method referenceValue (line 3988) | def referenceValue(self) -> int: ... method setComparisonMask (line 3989) | def setComparisonMask(self, comparisonMask: int) -> None: ... method setReferenceValue (line 3990) | def setReferenceValue(self, referenceValue: int) -> None: ... method setStencilFunction (line 3991) | def setStencilFunction(self, stencilFunction: Qt3DRender.QStencilTes... method stencilFunction (line 3992) | def stencilFunction(self) -> Qt3DRender.QStencilTestArguments.Stenci... class QTechnique (line 3994) | class QTechnique(PySide2.Qt3DCore.Qt3DCore.QNode): method __init__ (line 3996) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addFilterKey (line 3997) | def addFilterKey(self, filterKey: Qt3DRender.QFilterKey) -> None: ... method addParameter (line 3998) | def addParameter(self, p: Qt3DRender.QParameter) -> None: ... method addRenderPass (line 3999) | def addRenderPass(self, pass_: Qt3DRender.QRenderPass) -> None: ... method filterKeys (line 4000) | def filterKeys(self) -> list[Qt3DRender.QFilterKey]: ... method graphicsApiFilter (line 4001) | def graphicsApiFilter(self) -> Qt3DRender.QGraphicsApiFilter: ... method parameters (line 4002) | def parameters(self) -> list[Qt3DRender.QParameter]: ... method removeFilterKey (line 4003) | def removeFilterKey(self, filterKey: Qt3DRender.QFilterKey) -> None:... method removeParameter (line 4004) | def removeParameter(self, p: Qt3DRender.QParameter) -> None: ... method removeRenderPass (line 4005) | def removeRenderPass(self, pass_: Qt3DRender.QRenderPass) -> None: ... method renderPasses (line 4006) | def renderPasses(self) -> list[Qt3DRender.QRenderPass]: ... class QTechniqueFilter (line 4008) | class QTechniqueFilter(Qt3DRender.QFrameGraphNode): method __init__ (line 4010) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method addMatch (line 4011) | def addMatch(self, filterKey: Qt3DRender.QFilterKey) -> None: ... method addParameter (line 4012) | def addParameter(self, p: Qt3DRender.QParameter) -> None: ... method matchAll (line 4013) | def matchAll(self) -> list[Qt3DRender.QFilterKey]: ... method parameters (line 4014) | def parameters(self) -> list[Qt3DRender.QParameter]: ... method removeMatch (line 4015) | def removeMatch(self, filterKey: Qt3DRender.QFilterKey) -> None: ... method removeParameter (line 4016) | def removeParameter(self, p: Qt3DRender.QParameter) -> None: ... class QTexture1D (line 4018) | class QTexture1D(Qt3DRender.QAbstractTexture): method __init__ (line 4020) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTexture1DArray (line 4022) | class QTexture1DArray(Qt3DRender.QAbstractTexture): method __init__ (line 4024) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTexture2D (line 4026) | class QTexture2D(Qt3DRender.QAbstractTexture): method __init__ (line 4028) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTexture2DArray (line 4030) | class QTexture2DArray(Qt3DRender.QAbstractTexture): method __init__ (line 4032) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTexture2DMultisample (line 4034) | class QTexture2DMultisample(Qt3DRender.QAbstractTexture): method __init__ (line 4036) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTexture2DMultisampleArray (line 4038) | class QTexture2DMultisampleArray(Qt3DRender.QAbstractTexture): method __init__ (line 4040) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTexture3D (line 4042) | class QTexture3D(Qt3DRender.QAbstractTexture): method __init__ (line 4044) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTextureBuffer (line 4046) | class QTextureBuffer(Qt3DRender.QAbstractTexture): method __init__ (line 4048) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTextureCubeMap (line 4050) | class QTextureCubeMap(Qt3DRender.QAbstractTexture): method __init__ (line 4052) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTextureCubeMapArray (line 4054) | class QTextureCubeMapArray(Qt3DRender.QAbstractTexture): method __init__ (line 4056) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTextureData (line 4058) | class QTextureData(shiboken2.Object): method __init__ (line 4059) | def __init__(self) -> None: ... method comparisonFunction (line 4060) | def comparisonFunction(self) -> Qt3DRender.QAbstractTexture.Comparis... method comparisonMode (line 4061) | def comparisonMode(self) -> Qt3DRender.QAbstractTexture.ComparisonMo... method depth (line 4062) | def depth(self) -> int: ... method format (line 4063) | def format(self) -> Qt3DRender.QAbstractTexture.TextureFormat: ... method height (line 4064) | def height(self) -> int: ... method isAutoMipMapGenerationEnabled (line 4065) | def isAutoMipMapGenerationEnabled(self) -> bool: ... method layers (line 4066) | def layers(self) -> int: ... method magnificationFilter (line 4067) | def magnificationFilter(self) -> Qt3DRender.QAbstractTexture.Filter:... method maximumAnisotropy (line 4068) | def maximumAnisotropy(self) -> float: ... method minificationFilter (line 4069) | def minificationFilter(self) -> Qt3DRender.QAbstractTexture.Filter: ... method setAutoMipMapGenerationEnabled (line 4070) | def setAutoMipMapGenerationEnabled(self, isAutoMipMapGenerationEnabl... method setComparisonFunction (line 4071) | def setComparisonFunction(self, comparisonFunction: Qt3DRender.QAbst... method setComparisonMode (line 4072) | def setComparisonMode(self, comparisonMode: Qt3DRender.QAbstractText... method setDepth (line 4073) | def setDepth(self, depth: int) -> None: ... method setFormat (line 4074) | def setFormat(self, arg__1: Qt3DRender.QAbstractTexture.TextureForma... method setHeight (line 4075) | def setHeight(self, height: int) -> None: ... method setLayers (line 4076) | def setLayers(self, layers: int) -> None: ... method setMagnificationFilter (line 4077) | def setMagnificationFilter(self, filter: Qt3DRender.QAbstractTexture... method setMaximumAnisotropy (line 4078) | def setMaximumAnisotropy(self, maximumAnisotropy: float) -> None: ... method setMinificationFilter (line 4079) | def setMinificationFilter(self, filter: Qt3DRender.QAbstractTexture.... method setTarget (line 4080) | def setTarget(self, target: Qt3DRender.QAbstractTexture.Target) -> N... method setWidth (line 4081) | def setWidth(self, width: int) -> None: ... method setWrapModeX (line 4082) | def setWrapModeX(self, wrapModeX: Qt3DRender.QTextureWrapMode.WrapMo... method setWrapModeY (line 4083) | def setWrapModeY(self, wrapModeY: Qt3DRender.QTextureWrapMode.WrapMo... method setWrapModeZ (line 4084) | def setWrapModeZ(self, wrapModeZ: Qt3DRender.QTextureWrapMode.WrapMo... method target (line 4085) | def target(self) -> Qt3DRender.QAbstractTexture.Target: ... method width (line 4086) | def width(self) -> int: ... method wrapModeX (line 4087) | def wrapModeX(self) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method wrapModeY (line 4088) | def wrapModeY(self) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method wrapModeZ (line 4089) | def wrapModeZ(self) -> Qt3DRender.QTextureWrapMode.WrapMode: ... class QTextureGenerator (line 4091) | class QTextureGenerator(Qt3DRender.QAbstractFunctor): method __init__ (line 4093) | def __init__(cls, *args, **kwargs) -> None: ... method __eq__ (line 4094) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4095) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4096) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4097) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4098) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4099) | def __ne__(self, other: object) -> bool: ... class QTextureImage (line 4101) | class QTextureImage(Qt3DRender.QAbstractTextureImage): class Status (line 4102) | class Status: method __init__ (line 4110) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4111) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __and__ (line 4112) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __bool__ (line 4113) | def __bool__(self) -> bool: ... method __eq__ (line 4114) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4115) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4116) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4117) | def __hash__(self) -> int: ... method __index__ (line 4118) | def __index__(self) -> int: ... method __int__ (line 4119) | def __int__(self) -> int: ... method __le__ (line 4120) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4121) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4122) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __ne__ (line 4123) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4124) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QTexture... method __pos__ (line 4125) | def __pos__(self): ... method __radd__ (line 4126) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __rand__ (line 4127) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __rmul__ (line 4128) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __ror__ (line 4129) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __rsub__ (line 4130) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __rxor__ (line 4131) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __sub__ (line 4132) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __xor__ (line 4133) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __init__ (line 4142) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method isMirrored (line 4143) | def isMirrored(self) -> bool: ... method setMirrored (line 4144) | def setMirrored(self, mirrored: bool) -> None: ... method setSource (line 4145) | def setSource(self, source: PySide2.QtCore.QUrl) -> None: ... method setStatus (line 4146) | def setStatus(self, status: Qt3DRender.QTextureImage.Status) -> None... method source (line 4147) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 4148) | def status(self) -> Qt3DRender.QTextureImage.Status: ... class QTextureImageData (line 4150) | class QTextureImageData(shiboken2.Object): method __init__ (line 4151) | def __init__(self) -> None: ... method cleanup (line 4152) | def cleanup(self) -> None: ... method data (line 4153) | def data(self, layer: int = ..., face: int = ..., mipmapLevel: int =... method depth (line 4154) | def depth(self) -> int: ... method faces (line 4155) | def faces(self) -> int: ... method format (line 4156) | def format(self) -> PySide2.QtGui.QOpenGLTexture.TextureFormat: ... method height (line 4157) | def height(self) -> int: ... method isCompressed (line 4158) | def isCompressed(self) -> bool: ... method layers (line 4159) | def layers(self) -> int: ... method mipLevels (line 4160) | def mipLevels(self) -> int: ... method pixelFormat (line 4161) | def pixelFormat(self) -> PySide2.QtGui.QOpenGLTexture.PixelFormat: ... method pixelType (line 4162) | def pixelType(self) -> PySide2.QtGui.QOpenGLTexture.PixelType: ... method setData (line 4163) | def setData(self, data: PySide2.QtCore.QByteArray | bytes, blockSize... method setDepth (line 4164) | def setDepth(self, depth: int) -> None: ... method setFaces (line 4165) | def setFaces(self, faces: int) -> None: ... method setFormat (line 4166) | def setFormat(self, format: PySide2.QtGui.QOpenGLTexture.TextureForm... method setHeight (line 4167) | def setHeight(self, height: int) -> None: ... method setImage (line 4168) | def setImage(self, arg__1: PySide2.QtGui.QImage) -> None: ... method setLayers (line 4169) | def setLayers(self, layers: int) -> None: ... method setMipLevels (line 4170) | def setMipLevels(self, mipLevels: int) -> None: ... method setPixelFormat (line 4171) | def setPixelFormat(self, pixelFormat: PySide2.QtGui.QOpenGLTexture.P... method setPixelType (line 4172) | def setPixelType(self, pixelType: PySide2.QtGui.QOpenGLTexture.Pixel... method setTarget (line 4173) | def setTarget(self, target: PySide2.QtGui.QOpenGLTexture.Target) -> ... method setWidth (line 4174) | def setWidth(self, width: int) -> None: ... method target (line 4175) | def target(self) -> PySide2.QtGui.QOpenGLTexture.Target: ... method width (line 4176) | def width(self) -> int: ... class QTextureImageDataGenerator (line 4178) | class QTextureImageDataGenerator(Qt3DRender.QAbstractFunctor): method __init__ (line 4180) | def __init__(cls, *args, **kwargs) -> None: ... method __eq__ (line 4181) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4182) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4183) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4184) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4185) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4186) | def __ne__(self, other: object) -> bool: ... class QTextureLoader (line 4188) | class QTextureLoader(Qt3DRender.QAbstractTexture): method __init__ (line 4192) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method isMirrored (line 4193) | def isMirrored(self) -> bool: ... method setMirrored (line 4194) | def setMirrored(self, mirrored: bool) -> None: ... method setSource (line 4195) | def setSource(self, source: PySide2.QtCore.QUrl) -> None: ... method source (line 4196) | def source(self) -> PySide2.QtCore.QUrl: ... class QTextureRectangle (line 4198) | class QTextureRectangle(Qt3DRender.QAbstractTexture): method __init__ (line 4200) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... class QTextureWrapMode (line 4202) | class QTextureWrapMode(PySide2.QtCore.QObject): class WrapMode (line 4203) | class WrapMode: method __init__ (line 4211) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4212) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __and__ (line 4213) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __bool__ (line 4214) | def __bool__(self) -> bool: ... method __eq__ (line 4215) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4216) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4217) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4218) | def __hash__(self) -> int: ... method __index__ (line 4219) | def __index__(self) -> int: ... method __int__ (line 4220) | def __int__(self) -> int: ... method __le__ (line 4221) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4222) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4223) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __ne__ (line 4224) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4225) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QTexture... method __pos__ (line 4226) | def __pos__(self): ... method __radd__ (line 4227) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __rand__ (line 4228) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __rmul__ (line 4229) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __ror__ (line 4230) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __rsub__ (line 4231) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __rxor__ (line 4232) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QTextu... method __sub__ (line 4233) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __xor__ (line 4234) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QTextur... method __init__ (line 4244) | def __init__(self, wrapMode: Qt3DRender.QTextureWrapMode.WrapMode = ... method __init__ (line 4246) | def __init__(self, x: Qt3DRender.QTextureWrapMode.WrapMode, y: Qt3DR... method setX (line 4247) | def setX(self, x: Qt3DRender.QTextureWrapMode.WrapMode) -> None: ... method setY (line 4248) | def setY(self, y: Qt3DRender.QTextureWrapMode.WrapMode) -> None: ... method setZ (line 4249) | def setZ(self, z: Qt3DRender.QTextureWrapMode.WrapMode) -> None: ... method x (line 4250) | def x(self) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method y (line 4251) | def y(self) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method z (line 4252) | def z(self) -> Qt3DRender.QTextureWrapMode.WrapMode: ... class QViewport (line 4254) | class QViewport(Qt3DRender.QFrameGraphNode): method __init__ (line 4258) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method gamma (line 4259) | def gamma(self) -> float: ... method normalizedRect (line 4260) | def normalizedRect(self) -> PySide2.QtCore.QRectF: ... method setGamma (line 4261) | def setGamma(self, gamma: float) -> None: ... method setNormalizedRect (line 4262) | def setNormalizedRect(self, normalizedRect: PySide2.QtCore.QRectF) -... class QWaitFence (line 4264) | class QWaitFence(Qt3DRender.QFrameGraphNode): class HandleType (line 4265) | class HandleType: method __init__ (line 4271) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4272) | def __add__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFe... method __and__ (line 4273) | def __and__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFe... method __bool__ (line 4274) | def __bool__(self) -> bool: ... method __eq__ (line 4275) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4276) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4277) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4278) | def __hash__(self) -> int: ... method __index__ (line 4279) | def __index__(self) -> int: ... method __int__ (line 4280) | def __int__(self) -> int: ... method __le__ (line 4281) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4282) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4283) | def __mul__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFe... method __ne__ (line 4284) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4285) | def __or__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFen... method __pos__ (line 4286) | def __pos__(self): ... method __radd__ (line 4287) | def __radd__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitF... method __rand__ (line 4288) | def __rand__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitF... method __rmul__ (line 4289) | def __rmul__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitF... method __ror__ (line 4290) | def __ror__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFe... method __rsub__ (line 4291) | def __rsub__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitF... method __rxor__ (line 4292) | def __rxor__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitF... method __sub__ (line 4293) | def __sub__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFe... method __xor__ (line 4294) | def __xor__(self, other: typing.SupportsInt) -> Qt3DRender.QWaitFe... method __init__ (line 4302) | def __init__(self, parent: PySide2.Qt3DCore.Qt3DCore.QNode | None = ... method handle (line 4303) | def handle(self) -> typing.Any: ... method handleType (line 4304) | def handleType(self) -> Qt3DRender.QWaitFence.HandleType: ... method setHandle (line 4305) | def setHandle(self, handle: typing.Any) -> None: ... method setHandleType (line 4306) | def setHandleType(self, type: Qt3DRender.QWaitFence.HandleType) -> N... method setTimeout (line 4307) | def setTimeout(self, timeout: int) -> None: ... method setWaitOnCPU (line 4308) | def setWaitOnCPU(self, waitOnCPU: bool) -> None: ... method timeout (line 4309) | def timeout(self) -> int: ... method waitOnCPU (line 4310) | def waitOnCPU(self) -> bool: ... method __init__ (line 4312) | def __init__(cls, *args, **kwargs) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtCharts.pyi class QtCharts (line 14) | class QtCharts(shiboken2.Object): class QAbstractAxis (line 15) | class QAbstractAxis(PySide2.QtCore.QObject): class AxisType (line 16) | class AxisType: method __init__ (line 26) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 27) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __and__ (line 28) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __bool__ (line 29) | def __bool__(self) -> bool: ... method __eq__ (line 30) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 31) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 32) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 33) | def __hash__(self) -> int: ... method __index__ (line 34) | def __index__(self) -> int: ... method __int__ (line 35) | def __int__(self) -> int: ... method __le__ (line 36) | def __le__(self, other: object) -> bool: ... method __lt__ (line 37) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 38) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __ne__ (line 39) | def __ne__(self, other: object) -> bool: ... method __or__ (line 40) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QAbstractA... method __pos__ (line 41) | def __pos__(self): ... method __radd__ (line 42) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rand__ (line 43) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rmul__ (line 44) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __ror__ (line 45) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __rsub__ (line 46) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rxor__ (line 47) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __sub__ (line 48) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __xor__ (line 49) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __init__ (line 84) | def __init__(cls, *args, alignment: PySide2.QtCore.Qt.Alignment | Py... method alignment (line 85) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.... method gridLineColor (line 86) | def gridLineColor(self) -> PySide2.QtGui.QColor: ... method gridLinePen (line 87) | def gridLinePen(self) -> PySide2.QtGui.QPen: ... method hide (line 88) | def hide(self) -> None: ... method isGridLineVisible (line 89) | def isGridLineVisible(self) -> bool: ... method isLineVisible (line 90) | def isLineVisible(self) -> bool: ... method isMinorGridLineVisible (line 91) | def isMinorGridLineVisible(self) -> bool: ... method isReverse (line 92) | def isReverse(self) -> bool: ... method isTitleVisible (line 93) | def isTitleVisible(self) -> bool: ... method isVisible (line 94) | def isVisible(self) -> bool: ... method labelsAngle (line 95) | def labelsAngle(self) -> int: ... method labelsBrush (line 96) | def labelsBrush(self) -> PySide2.QtGui.QBrush: ... method labelsColor (line 97) | def labelsColor(self) -> PySide2.QtGui.QColor: ... method labelsEditable (line 98) | def labelsEditable(self) -> bool: ... method labelsFont (line 99) | def labelsFont(self) -> PySide2.QtGui.QFont: ... method labelsVisible (line 100) | def labelsVisible(self) -> bool: ... method linePen (line 101) | def linePen(self) -> PySide2.QtGui.QPen: ... method linePenColor (line 102) | def linePenColor(self) -> PySide2.QtGui.QColor: ... method minorGridLineColor (line 103) | def minorGridLineColor(self) -> PySide2.QtGui.QColor: ... method minorGridLinePen (line 104) | def minorGridLinePen(self) -> PySide2.QtGui.QPen: ... method orientation (line 105) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method setGridLineColor (line 106) | def setGridLineColor(self, color: PySide2.QtGui.QColor | PySide2.QtC... method setGridLinePen (line 107) | def setGridLinePen(self, pen: PySide2.QtGui.QPen) -> None: ... method setGridLineVisible (line 108) | def setGridLineVisible(self, visible: bool = ...) -> None: ... method setLabelsAngle (line 109) | def setLabelsAngle(self, angle: int) -> None: ... method setLabelsBrush (line 110) | def setLabelsBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui... method setLabelsColor (line 111) | def setLabelsColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setLabelsEditable (line 112) | def setLabelsEditable(self, editable: bool = ...) -> None: ... method setLabelsFont (line 113) | def setLabelsFont(self, font: PySide2.QtGui.QFont) -> None: ... method setLabelsVisible (line 114) | def setLabelsVisible(self, visible: bool = ...) -> None: ... method setLinePen (line 115) | def setLinePen(self, pen: PySide2.QtGui.QPen) -> None: ... method setLinePenColor (line 116) | def setLinePenColor(self, color: PySide2.QtGui.QColor | PySide2.QtCo... method setLineVisible (line 117) | def setLineVisible(self, visible: bool = ...) -> None: ... method setMax (line 118) | def setMax(self, max: typing.Any) -> None: ... method setMin (line 119) | def setMin(self, min: typing.Any) -> None: ... method setMinorGridLineColor (line 120) | def setMinorGridLineColor(self, color: PySide2.QtGui.QColor | PySide... method setMinorGridLinePen (line 121) | def setMinorGridLinePen(self, pen: PySide2.QtGui.QPen) -> None: ... method setMinorGridLineVisible (line 122) | def setMinorGridLineVisible(self, visible: bool = ...) -> None: ... method setRange (line 123) | def setRange(self, min: typing.Any, max: typing.Any) -> None: ... method setReverse (line 124) | def setReverse(self, reverse: bool = ...) -> None: ... method setShadesBorderColor (line 125) | def setShadesBorderColor(self, color: PySide2.QtGui.QColor | PySide2... method setShadesBrush (line 126) | def setShadesBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui... method setShadesColor (line 127) | def setShadesColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setShadesPen (line 128) | def setShadesPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setShadesVisible (line 129) | def setShadesVisible(self, visible: bool = ...) -> None: ... method setTitleBrush (line 130) | def setTitleBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.... method setTitleFont (line 131) | def setTitleFont(self, font: PySide2.QtGui.QFont) -> None: ... method setTitleText (line 132) | def setTitleText(self, title: str) -> None: ... method setTitleVisible (line 133) | def setTitleVisible(self, visible: bool = ...) -> None: ... method setVisible (line 134) | def setVisible(self, visible: bool = ...) -> None: ... method shadesBorderColor (line 135) | def shadesBorderColor(self) -> PySide2.QtGui.QColor: ... method shadesBrush (line 136) | def shadesBrush(self) -> PySide2.QtGui.QBrush: ... method shadesColor (line 137) | def shadesColor(self) -> PySide2.QtGui.QColor: ... method shadesPen (line 138) | def shadesPen(self) -> PySide2.QtGui.QPen: ... method shadesVisible (line 139) | def shadesVisible(self) -> bool: ... method show (line 140) | def show(self) -> None: ... method titleBrush (line 141) | def titleBrush(self) -> PySide2.QtGui.QBrush: ... method titleFont (line 142) | def titleFont(self) -> PySide2.QtGui.QFont: ... method titleText (line 143) | def titleText(self) -> str: ... method type (line 144) | def type(self) -> QtCharts.QAbstractAxis.AxisType: ... class QAbstractBarSeries (line 146) | class QAbstractBarSeries(QtCharts.QAbstractSeries): class LabelsPosition (line 147) | class LabelsPosition: method __init__ (line 155) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 156) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __and__ (line 157) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __bool__ (line 158) | def __bool__(self) -> bool: ... method __eq__ (line 159) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 160) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 161) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 162) | def __hash__(self) -> int: ... method __index__ (line 163) | def __index__(self) -> int: ... method __int__ (line 164) | def __int__(self) -> int: ... method __le__ (line 165) | def __le__(self, other: object) -> bool: ... method __lt__ (line 166) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 167) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __ne__ (line 168) | def __ne__(self, other: object) -> bool: ... method __or__ (line 169) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QAbstractB... method __pos__ (line 170) | def __pos__(self): ... method __radd__ (line 171) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rand__ (line 172) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rmul__ (line 173) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __ror__ (line 174) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __rsub__ (line 175) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rxor__ (line 176) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __sub__ (line 177) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __xor__ (line 178) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __init__ (line 198) | def __init__(cls, *args, barWidth: float = ..., barsetsAdded: typing... method append (line 200) | def append(self, sets: typing.Iterable[QtCharts.QBarSet]) -> bool: ... method append (line 202) | def append(self, set: QtCharts.QBarSet) -> bool: ... method barSets (line 203) | def barSets(self) -> list[QtCharts.QBarSet]: ... method barWidth (line 204) | def barWidth(self) -> float: ... method clear (line 205) | def clear(self) -> None: ... method count (line 206) | def count(self) -> int: ... method insert (line 207) | def insert(self, index: int, set: QtCharts.QBarSet) -> bool: ... method isLabelsVisible (line 208) | def isLabelsVisible(self) -> bool: ... method labelsAngle (line 209) | def labelsAngle(self) -> float: ... method labelsFormat (line 210) | def labelsFormat(self) -> str: ... method labelsPosition (line 211) | def labelsPosition(self) -> QtCharts.QAbstractBarSeries.LabelsPositi... method labelsPrecision (line 212) | def labelsPrecision(self) -> int: ... method remove (line 213) | def remove(self, set: QtCharts.QBarSet) -> bool: ... method setBarWidth (line 214) | def setBarWidth(self, width: float) -> None: ... method setLabelsAngle (line 215) | def setLabelsAngle(self, angle: float) -> None: ... method setLabelsFormat (line 216) | def setLabelsFormat(self, format: str) -> None: ... method setLabelsPosition (line 217) | def setLabelsPosition(self, position: QtCharts.QAbstractBarSeries.La... method setLabelsPrecision (line 218) | def setLabelsPrecision(self, precision: int) -> None: ... method setLabelsVisible (line 219) | def setLabelsVisible(self, visible: bool = ...) -> None: ... method take (line 220) | def take(self, set: QtCharts.QBarSet) -> bool: ... class QAbstractSeries (line 222) | class QAbstractSeries(PySide2.QtCore.QObject): class SeriesType (line 223) | class SeriesType: method __init__ (line 240) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 241) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __and__ (line 242) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __bool__ (line 243) | def __bool__(self) -> bool: ... method __eq__ (line 244) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 245) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 246) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 247) | def __hash__(self) -> int: ... method __index__ (line 248) | def __index__(self) -> int: ... method __int__ (line 249) | def __int__(self) -> int: ... method __le__ (line 250) | def __le__(self, other: object) -> bool: ... method __lt__ (line 251) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 252) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __ne__ (line 253) | def __ne__(self, other: object) -> bool: ... method __or__ (line 254) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QAbstractS... method __pos__ (line 255) | def __pos__(self): ... method __radd__ (line 256) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rand__ (line 257) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rmul__ (line 258) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __ror__ (line 259) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __rsub__ (line 260) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __rxor__ (line 261) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QAbstrac... method __sub__ (line 262) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __xor__ (line 263) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QAbstract... method __init__ (line 283) | def __init__(cls, *args, destroyed: typing.Callable = ..., name: str... method attachAxis (line 284) | def attachAxis(self, axis: QtCharts.QAbstractAxis) -> bool: ... method attachedAxes (line 285) | def attachedAxes(self) -> list[QtCharts.QAbstractAxis]: ... method chart (line 286) | def chart(self) -> QtCharts.QChart: ... method detachAxis (line 287) | def detachAxis(self, axis: QtCharts.QAbstractAxis) -> bool: ... method hide (line 288) | def hide(self) -> None: ... method isVisible (line 289) | def isVisible(self) -> bool: ... method name (line 290) | def name(self) -> str: ... method opacity (line 291) | def opacity(self) -> float: ... method setName (line 292) | def setName(self, name: str) -> None: ... method setOpacity (line 293) | def setOpacity(self, opacity: float) -> None: ... method setUseOpenGL (line 294) | def setUseOpenGL(self, enable: bool = ...) -> None: ... method setVisible (line 295) | def setVisible(self, visible: bool = ...) -> None: ... method show (line 296) | def show(self) -> None: ... method type (line 297) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... method useOpenGL (line 298) | def useOpenGL(self) -> bool: ... class QAreaLegendMarker (line 300) | class QAreaLegendMarker(QtCharts.QLegendMarker): method __init__ (line 302) | def __init__(self, series: QtCharts.QAreaSeries, legend: QtCharts.QL... method series (line 303) | def series(self) -> QtCharts.QAreaSeries: ... method type (line 304) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QAreaSeries (line 306) | class QAreaSeries(QtCharts.QAbstractSeries): method __init__ (line 322) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., bord... method __init__ (line 324) | def __init__(self, upperSeries: QtCharts.QLineSeries, lowerSeries: Q... method borderColor (line 325) | def borderColor(self) -> PySide2.QtGui.QColor: ... method brush (line 326) | def brush(self) -> PySide2.QtGui.QBrush: ... method color (line 327) | def color(self) -> PySide2.QtGui.QColor: ... method lowerSeries (line 328) | def lowerSeries(self) -> QtCharts.QLineSeries: ... method pen (line 329) | def pen(self) -> PySide2.QtGui.QPen: ... method pointLabelsClipping (line 330) | def pointLabelsClipping(self) -> bool: ... method pointLabelsColor (line 331) | def pointLabelsColor(self) -> PySide2.QtGui.QColor: ... method pointLabelsFont (line 332) | def pointLabelsFont(self) -> PySide2.QtGui.QFont: ... method pointLabelsFormat (line 333) | def pointLabelsFormat(self) -> str: ... method pointLabelsVisible (line 334) | def pointLabelsVisible(self) -> bool: ... method pointsVisible (line 335) | def pointsVisible(self) -> bool: ... method setBorderColor (line 336) | def setBorderColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setBrush (line 337) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setColor (line 338) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setLowerSeries (line 339) | def setLowerSeries(self, series: QtCharts.QLineSeries) -> None: ... method setPen (line 340) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setPointLabelsClipping (line 341) | def setPointLabelsClipping(self, enabled: bool = ...) -> None: ... method setPointLabelsColor (line 342) | def setPointLabelsColor(self, color: PySide2.QtGui.QColor | PySide2.... method setPointLabelsFont (line 343) | def setPointLabelsFont(self, font: PySide2.QtGui.QFont) -> None: ... method setPointLabelsFormat (line 344) | def setPointLabelsFormat(self, format: str) -> None: ... method setPointLabelsVisible (line 345) | def setPointLabelsVisible(self, visible: bool = ...) -> None: ... method setPointsVisible (line 346) | def setPointsVisible(self, visible: bool = ...) -> None: ... method setUpperSeries (line 347) | def setUpperSeries(self, series: QtCharts.QLineSeries) -> None: ... method type (line 348) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... method upperSeries (line 349) | def upperSeries(self) -> QtCharts.QLineSeries: ... class QBarCategoryAxis (line 351) | class QBarCategoryAxis(QtCharts.QAbstractAxis): method __init__ (line 358) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., alig... method append (line 360) | def append(self, category: str) -> None: ... method append (line 362) | def append(self, categories: typing.Iterable[str]) -> None: ... method at (line 363) | def at(self, index: int) -> str: ... method categories (line 364) | def categories(self) -> list[str]: ... method clear (line 365) | def clear(self) -> None: ... method count (line 366) | def count(self) -> int: ... method insert (line 367) | def insert(self, index: int, category: str) -> None: ... method max (line 368) | def max(self) -> str: ... method min (line 369) | def min(self) -> str: ... method remove (line 370) | def remove(self, category: str) -> None: ... method replace (line 371) | def replace(self, oldCategory: str, newCategory: str) -> None: ... method setCategories (line 372) | def setCategories(self, categories: typing.Iterable[str]) -> None: ... method setMax (line 374) | def setMax(self, maxCategory: str) -> None: ... method setMax (line 376) | def setMax(self, max: typing.Any) -> None: ... method setMin (line 378) | def setMin(self, minCategory: str) -> None: ... method setMin (line 380) | def setMin(self, min: typing.Any) -> None: ... method setRange (line 382) | def setRange(self, minCategory: str, maxCategory: str) -> None: ... method setRange (line 384) | def setRange(self, min: typing.Any, max: typing.Any) -> None: ... method type (line 385) | def type(self) -> QtCharts.QAbstractAxis.AxisType: ... class QBarLegendMarker (line 387) | class QBarLegendMarker(QtCharts.QLegendMarker): method __init__ (line 389) | def __init__(self, series: QtCharts.QAbstractBarSeries, barset: QtCh... method barset (line 390) | def barset(self) -> QtCharts.QBarSet: ... method series (line 391) | def series(self) -> QtCharts.QAbstractBarSeries: ... method type (line 392) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QBarModelMapper (line 394) | class QBarModelMapper(PySide2.QtCore.QObject): method __init__ (line 396) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method count (line 397) | def count(self) -> int: ... method first (line 398) | def first(self) -> int: ... method firstBarSetSection (line 399) | def firstBarSetSection(self) -> int: ... method lastBarSetSection (line 400) | def lastBarSetSection(self) -> int: ... method model (line 401) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method orientation (line 402) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method series (line 403) | def series(self) -> QtCharts.QAbstractBarSeries: ... method setCount (line 404) | def setCount(self, count: int) -> None: ... method setFirst (line 405) | def setFirst(self, first: int) -> None: ... method setFirstBarSetSection (line 406) | def setFirstBarSetSection(self, firstBarSetSection: int) -> None: ... method setLastBarSetSection (line 407) | def setLastBarSetSection(self, lastBarSetSection: int) -> None: ... method setModel (line 408) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setOrientation (line 409) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation)... method setSeries (line 410) | def setSeries(self, series: QtCharts.QAbstractBarSeries) -> None: ... class QBarSeries (line 412) | class QBarSeries(QtCharts.QAbstractBarSeries): method __init__ (line 414) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., barW... method type (line 415) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QBarSet (line 417) | class QBarSet(PySide2.QtCore.QObject): method __init__ (line 435) | def __init__(self, label: str, parent: PySide2.QtCore.QObject | None... method append (line 437) | def append(self, values: typing.Iterable[float]) -> None: ... method append (line 439) | def append(self, value: float) -> None: ... method at (line 440) | def at(self, index: int) -> float: ... method borderColor (line 441) | def borderColor(self) -> PySide2.QtGui.QColor: ... method brush (line 442) | def brush(self) -> PySide2.QtGui.QBrush: ... method color (line 443) | def color(self) -> PySide2.QtGui.QColor: ... method count (line 444) | def count(self) -> int: ... method insert (line 445) | def insert(self, index: int, value: float) -> None: ... method label (line 446) | def label(self) -> str: ... method labelBrush (line 447) | def labelBrush(self) -> PySide2.QtGui.QBrush: ... method labelColor (line 448) | def labelColor(self) -> PySide2.QtGui.QColor: ... method labelFont (line 449) | def labelFont(self) -> PySide2.QtGui.QFont: ... method pen (line 450) | def pen(self) -> PySide2.QtGui.QPen: ... method remove (line 451) | def remove(self, index: int, count: int = ...) -> None: ... method replace (line 452) | def replace(self, index: int, value: float) -> None: ... method setBorderColor (line 453) | def setBorderColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setBrush (line 454) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setColor (line 455) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setLabel (line 456) | def setLabel(self, label: str) -> None: ... method setLabelBrush (line 457) | def setLabelBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.... method setLabelColor (line 458) | def setLabelColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore... method setLabelFont (line 459) | def setLabelFont(self, font: PySide2.QtGui.QFont) -> None: ... method setPen (line 460) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method sum (line 461) | def sum(self) -> float: ... method __lshift__ (line 462) | def __lshift__(self, value: float) -> QtCharts.QBarSet: ... method __rlshift__ (line 463) | def __rlshift__(self, other): ... class QBoxPlotLegendMarker (line 465) | class QBoxPlotLegendMarker(QtCharts.QLegendMarker): method __init__ (line 467) | def __init__(self, series: QtCharts.QBoxPlotSeries, legend: QtCharts... method series (line 468) | def series(self) -> QtCharts.QBoxPlotSeries: ... method type (line 469) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QBoxPlotModelMapper (line 471) | class QBoxPlotModelMapper(PySide2.QtCore.QObject): method __init__ (line 473) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method count (line 474) | def count(self) -> int: ... method first (line 475) | def first(self) -> int: ... method firstBoxSetSection (line 476) | def firstBoxSetSection(self) -> int: ... method lastBoxSetSection (line 477) | def lastBoxSetSection(self) -> int: ... method model (line 478) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method orientation (line 479) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method series (line 480) | def series(self) -> QtCharts.QBoxPlotSeries: ... method setCount (line 481) | def setCount(self, count: int) -> None: ... method setFirst (line 482) | def setFirst(self, first: int) -> None: ... method setFirstBoxSetSection (line 483) | def setFirstBoxSetSection(self, firstBoxSetSection: int) -> None: ... method setLastBoxSetSection (line 484) | def setLastBoxSetSection(self, lastBoxSetSection: int) -> None: ... method setModel (line 485) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setOrientation (line 486) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation)... method setSeries (line 487) | def setSeries(self, series: QtCharts.QBoxPlotSeries) -> None: ... class QBoxPlotSeries (line 489) | class QBoxPlotSeries(QtCharts.QAbstractSeries): method __init__ (line 503) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., boxO... method append (line 505) | def append(self, boxes: typing.Iterable[QtCharts.QBoxSet]) -> bool: ... method append (line 507) | def append(self, box: QtCharts.QBoxSet) -> bool: ... method boxOutlineVisible (line 508) | def boxOutlineVisible(self) -> bool: ... method boxSets (line 509) | def boxSets(self) -> list[QtCharts.QBoxSet]: ... method boxWidth (line 510) | def boxWidth(self) -> float: ... method brush (line 511) | def brush(self) -> PySide2.QtGui.QBrush: ... method clear (line 512) | def clear(self) -> None: ... method count (line 513) | def count(self) -> int: ... method insert (line 514) | def insert(self, index: int, box: QtCharts.QBoxSet) -> bool: ... method pen (line 515) | def pen(self) -> PySide2.QtGui.QPen: ... method remove (line 516) | def remove(self, box: QtCharts.QBoxSet) -> bool: ... method setBoxOutlineVisible (line 517) | def setBoxOutlineVisible(self, visible: bool) -> None: ... method setBoxWidth (line 518) | def setBoxWidth(self, width: float) -> None: ... method setBrush (line 519) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setPen (line 520) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method take (line 521) | def take(self, box: QtCharts.QBoxSet) -> bool: ... method type (line 522) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QBoxSet (line 524) | class QBoxSet(PySide2.QtCore.QObject): class ValuePositions (line 525) | class ValuePositions: method __init__ (line 534) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 535) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.V... method __and__ (line 536) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.V... method __bool__ (line 537) | def __bool__(self) -> bool: ... method __eq__ (line 538) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 539) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 540) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 541) | def __hash__(self) -> int: ... method __index__ (line 542) | def __index__(self) -> int: ... method __int__ (line 543) | def __int__(self) -> int: ... method __le__ (line 544) | def __le__(self, other: object) -> bool: ... method __lt__ (line 545) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 546) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.V... method __ne__ (line 547) | def __ne__(self, other: object) -> bool: ... method __or__ (line 548) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.Va... method __pos__ (line 549) | def __pos__(self): ... method __radd__ (line 550) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.... method __rand__ (line 551) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.... method __rmul__ (line 552) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.... method __ror__ (line 553) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.V... method __rsub__ (line 554) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.... method __rxor__ (line 555) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.... method __sub__ (line 556) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.V... method __xor__ (line 557) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QBoxSet.V... method __init__ (line 575) | def __init__(self, le: float, lq: float, m: float, uq: float, ue: fl... method __init__ (line 577) | def __init__(self, label: str = ..., parent: PySide2.QtCore.QObject ... method append (line 579) | def append(self, values: typing.Iterable[float]) -> None: ... method append (line 581) | def append(self, value: float) -> None: ... method at (line 582) | def at(self, index: int) -> float: ... method brush (line 583) | def brush(self) -> PySide2.QtGui.QBrush: ... method clear (line 584) | def clear(self) -> None: ... method count (line 585) | def count(self) -> int: ... method label (line 586) | def label(self) -> str: ... method pen (line 587) | def pen(self) -> PySide2.QtGui.QPen: ... method setBrush (line 588) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setLabel (line 589) | def setLabel(self, label: str) -> None: ... method setPen (line 590) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setValue (line 591) | def setValue(self, index: int, value: float) -> None: ... method __lshift__ (line 592) | def __lshift__(self, value: float) -> QtCharts.QBoxSet: ... method __rlshift__ (line 593) | def __rlshift__(self, other): ... class QCandlestickLegendMarker (line 595) | class QCandlestickLegendMarker(QtCharts.QLegendMarker): method __init__ (line 597) | def __init__(self, series: QtCharts.QCandlestickSeries, legend: QtCh... method series (line 598) | def series(self) -> QtCharts.QCandlestickSeries: ... method type (line 599) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QCandlestickModelMapper (line 601) | class QCandlestickModelMapper(PySide2.QtCore.QObject): method __init__ (line 605) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method close (line 606) | def close(self) -> int: ... method firstSetSection (line 607) | def firstSetSection(self) -> int: ... method high (line 608) | def high(self) -> int: ... method lastSetSection (line 609) | def lastSetSection(self) -> int: ... method low (line 610) | def low(self) -> int: ... method model (line 611) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method open (line 612) | def open(self) -> int: ... method orientation (line 613) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method series (line 614) | def series(self) -> QtCharts.QCandlestickSeries: ... method setClose (line 615) | def setClose(self, close: int) -> None: ... method setFirstSetSection (line 616) | def setFirstSetSection(self, firstSetSection: int) -> None: ... method setHigh (line 617) | def setHigh(self, high: int) -> None: ... method setLastSetSection (line 618) | def setLastSetSection(self, lastSetSection: int) -> None: ... method setLow (line 619) | def setLow(self, low: int) -> None: ... method setModel (line 620) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setOpen (line 621) | def setOpen(self, open: int) -> None: ... method setSeries (line 622) | def setSeries(self, series: QtCharts.QCandlestickSeries) -> None: ... method setTimestamp (line 623) | def setTimestamp(self, timestamp: int) -> None: ... method timestamp (line 624) | def timestamp(self) -> int: ... class QCandlestickSeries (line 626) | class QCandlestickSeries(QtCharts.QAbstractSeries): method __init__ (line 646) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., body... method append (line 648) | def append(self, sets: typing.Iterable[QtCharts.QCandlestickSet]) ->... method append (line 650) | def append(self, set: QtCharts.QCandlestickSet) -> bool: ... method bodyOutlineVisible (line 651) | def bodyOutlineVisible(self) -> bool: ... method bodyWidth (line 652) | def bodyWidth(self) -> float: ... method brush (line 653) | def brush(self) -> PySide2.QtGui.QBrush: ... method capsVisible (line 654) | def capsVisible(self) -> bool: ... method capsWidth (line 655) | def capsWidth(self) -> float: ... method clear (line 656) | def clear(self) -> None: ... method count (line 657) | def count(self) -> int: ... method decreasingColor (line 658) | def decreasingColor(self) -> PySide2.QtGui.QColor: ... method increasingColor (line 659) | def increasingColor(self) -> PySide2.QtGui.QColor: ... method insert (line 660) | def insert(self, index: int, set: QtCharts.QCandlestickSet) -> bool:... method maximumColumnWidth (line 661) | def maximumColumnWidth(self) -> float: ... method minimumColumnWidth (line 662) | def minimumColumnWidth(self) -> float: ... method pen (line 663) | def pen(self) -> PySide2.QtGui.QPen: ... method remove (line 665) | def remove(self, sets: typing.Iterable[QtCharts.QCandlestickSet]) ->... method remove (line 667) | def remove(self, set: QtCharts.QCandlestickSet) -> bool: ... method setBodyOutlineVisible (line 668) | def setBodyOutlineVisible(self, bodyOutlineVisible: bool) -> None: ... method setBodyWidth (line 669) | def setBodyWidth(self, bodyWidth: float) -> None: ... method setBrush (line 670) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setCapsVisible (line 671) | def setCapsVisible(self, capsVisible: bool) -> None: ... method setCapsWidth (line 672) | def setCapsWidth(self, capsWidth: float) -> None: ... method setDecreasingColor (line 673) | def setDecreasingColor(self, decreasingColor: PySide2.QtGui.QColor |... method setIncreasingColor (line 674) | def setIncreasingColor(self, increasingColor: PySide2.QtGui.QColor |... method setMaximumColumnWidth (line 675) | def setMaximumColumnWidth(self, maximumColumnWidth: float) -> None: ... method setMinimumColumnWidth (line 676) | def setMinimumColumnWidth(self, minimumColumnWidth: float) -> None: ... method setPen (line 677) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method sets (line 678) | def sets(self) -> list[QtCharts.QCandlestickSet]: ... method take (line 679) | def take(self, set: QtCharts.QCandlestickSet) -> bool: ... method type (line 680) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QCandlestickSet (line 682) | class QCandlestickSet(PySide2.QtCore.QObject): method __init__ (line 697) | def __init__(self, timestamp: float = ..., parent: PySide2.QtCore.QO... method __init__ (line 699) | def __init__(self, open: float, high: float, low: float, close: floa... method brush (line 700) | def brush(self) -> PySide2.QtGui.QBrush: ... method close (line 701) | def close(self) -> float: ... method high (line 702) | def high(self) -> float: ... method low (line 703) | def low(self) -> float: ... method open (line 704) | def open(self) -> float: ... method pen (line 705) | def pen(self) -> PySide2.QtGui.QPen: ... method setBrush (line 706) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setClose (line 707) | def setClose(self, close: float) -> None: ... method setHigh (line 708) | def setHigh(self, high: float) -> None: ... method setLow (line 709) | def setLow(self, low: float) -> None: ... method setOpen (line 710) | def setOpen(self, open: float) -> None: ... method setPen (line 711) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setTimestamp (line 712) | def setTimestamp(self, timestamp: float) -> None: ... method timestamp (line 713) | def timestamp(self) -> float: ... class QCategoryAxis (line 715) | class QCategoryAxis(QtCharts.QValueAxis): class AxisLabelsPosition (line 716) | class AxisLabelsPosition: method __init__ (line 722) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 723) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QCategory... method __and__ (line 724) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QCategory... method __bool__ (line 725) | def __bool__(self) -> bool: ... method __eq__ (line 726) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 727) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 728) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 729) | def __hash__(self) -> int: ... method __index__ (line 730) | def __index__(self) -> int: ... method __int__ (line 731) | def __int__(self) -> int: ... method __le__ (line 732) | def __le__(self, other: object) -> bool: ... method __lt__ (line 733) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 734) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QCategory... method __ne__ (line 735) | def __ne__(self, other: object) -> bool: ... method __or__ (line 736) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QCategoryA... method __pos__ (line 737) | def __pos__(self): ... method __radd__ (line 738) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QCategor... method __rand__ (line 739) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QCategor... method __rmul__ (line 740) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QCategor... method __ror__ (line 741) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QCategory... method __rsub__ (line 742) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QCategor... method __rxor__ (line 743) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QCategor... method __sub__ (line 744) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QCategory... method __xor__ (line 745) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QCategory... method __init__ (line 751) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., alig... method append (line 752) | def append(self, label: str, categoryEndValue: float) -> None: ... method categoriesLabels (line 753) | def categoriesLabels(self) -> list[str]: ... method count (line 754) | def count(self) -> int: ... method endValue (line 755) | def endValue(self, categoryLabel: str) -> float: ... method labelsPosition (line 756) | def labelsPosition(self) -> QtCharts.QCategoryAxis.AxisLabelsPositio... method remove (line 757) | def remove(self, label: str) -> None: ... method replaceLabel (line 758) | def replaceLabel(self, oldLabel: str, newLabel: str) -> None: ... method setLabelsPosition (line 759) | def setLabelsPosition(self, position: QtCharts.QCategoryAxis.AxisLab... method setStartValue (line 760) | def setStartValue(self, min: float) -> None: ... method startValue (line 761) | def startValue(self, categoryLabel: str = ...) -> float: ... method type (line 762) | def type(self) -> QtCharts.QAbstractAxis.AxisType: ... class QChart (line 764) | class QChart(PySide2.QtWidgets.QGraphicsWidget): class AnimationOption (line 765) | class AnimationOption: method __init__ (line 773) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 774) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QChart.An... method __bool__ (line 775) | def __bool__(self) -> bool: ... method __eq__ (line 776) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 777) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 778) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 779) | def __hash__(self) -> int: ... method __index__ (line 780) | def __index__(self) -> int: ... method __int__ (line 781) | def __int__(self) -> int: ... method __invert__ (line 782) | def __invert__(self) -> QtCharts.QChart.AnimationOptions: ... method __le__ (line 783) | def __le__(self, other: object) -> bool: ... method __lt__ (line 784) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 785) | def __ne__(self, other: object) -> bool: ... method __or__ (line 786) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ani... method __rand__ (line 787) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QChart.A... method __ror__ (line 788) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QChart.An... method __rxor__ (line 789) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QChart.A... method __xor__ (line 790) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QChart.An... class AnimationOptions (line 792) | class AnimationOptions: method __init__ (line 794) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 795) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QChart.An... method __bool__ (line 796) | def __bool__(self) -> bool: ... method __eq__ (line 797) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 798) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 799) | def __gt__(self, other: object) -> bool: ... method __index__ (line 800) | def __index__(self) -> int: ... method __int__ (line 801) | def __int__(self) -> int: ... method __invert__ (line 802) | def __invert__(self) -> QtCharts.QChart.AnimationOptions: ... method __le__ (line 803) | def __le__(self, other: object) -> bool: ... method __lt__ (line 804) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 805) | def __ne__(self, other: object) -> bool: ... method __or__ (line 806) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ani... method __rand__ (line 807) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QChart.A... method __ror__ (line 808) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QChart.An... method __rxor__ (line 809) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QChart.A... method __xor__ (line 810) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QChart.An... class ChartTheme (line 812) | class ChartTheme: method __init__ (line 824) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 825) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __and__ (line 826) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __bool__ (line 827) | def __bool__(self) -> bool: ... method __eq__ (line 828) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 829) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 830) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 831) | def __hash__(self) -> int: ... method __index__ (line 832) | def __index__(self) -> int: ... method __int__ (line 833) | def __int__(self) -> int: ... method __le__ (line 834) | def __le__(self, other: object) -> bool: ... method __lt__ (line 835) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 836) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __ne__ (line 837) | def __ne__(self, other: object) -> bool: ... method __or__ (line 838) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QChart.Cha... method __pos__ (line 839) | def __pos__(self): ... method __radd__ (line 840) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __rand__ (line 841) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __rmul__ (line 842) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __ror__ (line 843) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __rsub__ (line 844) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __rxor__ (line 845) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __sub__ (line 846) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __xor__ (line 847) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... class ChartType (line 849) | class ChartType: method __init__ (line 856) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 857) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __and__ (line 858) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __bool__ (line 859) | def __bool__(self) -> bool: ... method __eq__ (line 860) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 861) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 862) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 863) | def __hash__(self) -> int: ... method __index__ (line 864) | def __index__(self) -> int: ... method __int__ (line 865) | def __int__(self) -> int: ... method __le__ (line 866) | def __le__(self, other: object) -> bool: ... method __lt__ (line 867) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 868) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __ne__ (line 869) | def __ne__(self, other: object) -> bool: ... method __or__ (line 870) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QChart.Cha... method __pos__ (line 871) | def __pos__(self): ... method __radd__ (line 872) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __rand__ (line 873) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __rmul__ (line 874) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __ror__ (line 875) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __rsub__ (line 876) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __rxor__ (line 877) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QChart.C... method __sub__ (line 878) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __xor__ (line 879) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QChart.Ch... method __init__ (line 898) | def __init__(self, type: QtCharts.QChart.ChartType, parent: PySide2.... method __init__ (line 900) | def __init__(self, parent: PySide2.QtWidgets.QGraphicsItem | None = ... method addAxis (line 901) | def addAxis(self, axis: QtCharts.QAbstractAxis, alignment: PySide2.Q... method addSeries (line 902) | def addSeries(self, series: QtCharts.QAbstractSeries) -> None: ... method animationDuration (line 903) | def animationDuration(self) -> int: ... method animationEasingCurve (line 904) | def animationEasingCurve(self) -> PySide2.QtCore.QEasingCurve: ... method animationOptions (line 905) | def animationOptions(self) -> QtCharts.QChart.AnimationOptions | QtC... method axes (line 906) | def axes(self, orientation: PySide2.QtCore.Qt.Orientations | PySide2... method axisX (line 907) | def axisX(self, series: QtCharts.QAbstractSeries | None = ...) -> Qt... method axisY (line 908) | def axisY(self, series: QtCharts.QAbstractSeries | None = ...) -> Qt... method backgroundBrush (line 909) | def backgroundBrush(self) -> PySide2.QtGui.QBrush: ... method backgroundPen (line 910) | def backgroundPen(self) -> PySide2.QtGui.QPen: ... method backgroundRoundness (line 911) | def backgroundRoundness(self) -> float: ... method chartType (line 912) | def chartType(self) -> QtCharts.QChart.ChartType: ... method createDefaultAxes (line 913) | def createDefaultAxes(self) -> None: ... method isBackgroundVisible (line 914) | def isBackgroundVisible(self) -> bool: ... method isDropShadowEnabled (line 915) | def isDropShadowEnabled(self) -> bool: ... method isPlotAreaBackgroundVisible (line 916) | def isPlotAreaBackgroundVisible(self) -> bool: ... method isZoomed (line 917) | def isZoomed(self) -> bool: ... method legend (line 918) | def legend(self) -> QtCharts.QLegend: ... method locale (line 919) | def locale(self) -> PySide2.QtCore.QLocale: ... method localizeNumbers (line 920) | def localizeNumbers(self) -> bool: ... method mapToPosition (line 921) | def mapToPosition(self, value: PySide2.QtCore.QPointF, series: QtCha... method mapToValue (line 922) | def mapToValue(self, position: PySide2.QtCore.QPointF, series: QtCha... method margins (line 923) | def margins(self) -> PySide2.QtCore.QMargins: ... method plotArea (line 924) | def plotArea(self) -> PySide2.QtCore.QRectF: ... method plotAreaBackgroundBrush (line 925) | def plotAreaBackgroundBrush(self) -> PySide2.QtGui.QBrush: ... method plotAreaBackgroundPen (line 926) | def plotAreaBackgroundPen(self) -> PySide2.QtGui.QPen: ... method removeAllSeries (line 927) | def removeAllSeries(self) -> None: ... method removeAxis (line 928) | def removeAxis(self, axis: QtCharts.QAbstractAxis) -> None: ... method removeSeries (line 929) | def removeSeries(self, series: QtCharts.QAbstractSeries) -> None: ... method scroll (line 930) | def scroll(self, dx: float, dy: float) -> None: ... # type: ignore[... method series (line 931) | def series(self) -> list[QtCharts.QAbstractSeries]: ... method setAnimationDuration (line 932) | def setAnimationDuration(self, msecs: int) -> None: ... method setAnimationEasingCurve (line 933) | def setAnimationEasingCurve(self, curve: PySide2.QtCore.QEasingCurve... method setAnimationOptions (line 934) | def setAnimationOptions(self, options: QtCharts.QChart.AnimationOpti... method setAxisX (line 935) | def setAxisX(self, axis: QtCharts.QAbstractAxis, series: QtCharts.QA... method setAxisY (line 936) | def setAxisY(self, axis: QtCharts.QAbstractAxis, series: QtCharts.QA... method setBackgroundBrush (line 937) | def setBackgroundBrush(self, brush: PySide2.QtGui.QBrush | PySide2.Q... method setBackgroundPen (line 938) | def setBackgroundPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setBackgroundRoundness (line 939) | def setBackgroundRoundness(self, diameter: float) -> None: ... method setBackgroundVisible (line 940) | def setBackgroundVisible(self, visible: bool = ...) -> None: ... method setDropShadowEnabled (line 941) | def setDropShadowEnabled(self, enabled: bool = ...) -> None: ... method setLocale (line 942) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setLocalizeNumbers (line 943) | def setLocalizeNumbers(self, localize: bool) -> None: ... method setMargins (line 944) | def setMargins(self, margins: PySide2.QtCore.QMargins) -> None: ... method setPlotArea (line 945) | def setPlotArea(self, rect: PySide2.QtCore.QRectF) -> None: ... method setPlotAreaBackgroundBrush (line 946) | def setPlotAreaBackgroundBrush(self, brush: PySide2.QtGui.QBrush | P... method setPlotAreaBackgroundPen (line 947) | def setPlotAreaBackgroundPen(self, pen: PySide2.QtGui.QPen) -> None:... method setPlotAreaBackgroundVisible (line 948) | def setPlotAreaBackgroundVisible(self, visible: bool = ...) -> None:... method setTheme (line 949) | def setTheme(self, theme: QtCharts.QChart.ChartTheme) -> None: ... method setTitle (line 950) | def setTitle(self, title: str) -> None: ... method setTitleBrush (line 951) | def setTitleBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.... method setTitleFont (line 952) | def setTitleFont(self, font: PySide2.QtGui.QFont) -> None: ... method theme (line 953) | def theme(self) -> QtCharts.QChart.ChartTheme: ... method title (line 954) | def title(self) -> str: ... method titleBrush (line 955) | def titleBrush(self) -> PySide2.QtGui.QBrush: ... method titleFont (line 956) | def titleFont(self) -> PySide2.QtGui.QFont: ... method zoom (line 957) | def zoom(self, factor: float) -> None: ... method zoomIn (line 959) | def zoomIn(self, rect: PySide2.QtCore.QRectF) -> None: ... method zoomIn (line 961) | def zoomIn(self) -> None: ... method zoomOut (line 962) | def zoomOut(self) -> None: ... method zoomReset (line 963) | def zoomReset(self) -> None: ... class QChartView (line 965) | class QChartView(PySide2.QtWidgets.QGraphicsView): class RubberBand (line 966) | class RubberBand: method __init__ (line 974) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 975) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QChartVie... method __bool__ (line 976) | def __bool__(self) -> bool: ... method __eq__ (line 977) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 978) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 979) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 980) | def __hash__(self) -> int: ... method __index__ (line 981) | def __index__(self) -> int: ... method __int__ (line 982) | def __int__(self) -> int: ... method __invert__ (line 983) | def __invert__(self) -> QtCharts.QChartView.RubberBands: ... method __le__ (line 984) | def __le__(self, other: object) -> bool: ... method __lt__ (line 985) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 986) | def __ne__(self, other: object) -> bool: ... method __or__ (line 987) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QChartView... method __rand__ (line 988) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QChartVi... method __ror__ (line 989) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QChartVie... method __rxor__ (line 990) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QChartVi... method __xor__ (line 991) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QChartVie... class RubberBands (line 993) | class RubberBands: method __init__ (line 995) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 996) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QChartVie... method __bool__ (line 997) | def __bool__(self) -> bool: ... method __eq__ (line 998) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 999) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1000) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1001) | def __index__(self) -> int: ... method __int__ (line 1002) | def __int__(self) -> int: ... method __invert__ (line 1003) | def __invert__(self) -> QtCharts.QChartView.RubberBands: ... method __le__ (line 1004) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1005) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1006) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1007) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QChartView... method __rand__ (line 1008) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QChartVi... method __ror__ (line 1009) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QChartVie... method __rxor__ (line 1010) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QChartVi... method __xor__ (line 1011) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QChartVie... method __init__ (line 1018) | def __init__(self, chart: QtCharts.QChart, parent: PySide2.QtWidgets... method __init__ (line 1020) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., a... method chart (line 1021) | def chart(self) -> QtCharts.QChart: ... method mouseMoveEvent (line 1022) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 1023) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method mouseReleaseEvent (line 1024) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> Non... method resizeEvent (line 1025) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method rubberBand (line 1026) | def rubberBand(self) -> QtCharts.QChartView.RubberBands | QtCharts.Q... method setChart (line 1027) | def setChart(self, chart: QtCharts.QChart) -> None: ... method setRubberBand (line 1028) | def setRubberBand(self, rubberBands: QtCharts.QChartView.RubberBands... method wheelEvent (line 1029) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class QDateTimeAxis (line 1031) | class QDateTimeAxis(QtCharts.QAbstractAxis): method __init__ (line 1038) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., alig... method format (line 1039) | def format(self) -> str: ... method max (line 1040) | def max(self) -> PySide2.QtCore.QDateTime: ... method min (line 1041) | def min(self) -> PySide2.QtCore.QDateTime: ... method setFormat (line 1042) | def setFormat(self, format: str) -> None: ... method setMax (line 1044) | def setMax(self, max: PySide2.QtCore.QDateTime | datetime.datetime) ... method setMax (line 1046) | def setMax(self, max: typing.Any) -> None: ... method setMin (line 1048) | def setMin(self, min: PySide2.QtCore.QDateTime | datetime.datetime) ... method setMin (line 1050) | def setMin(self, min: typing.Any) -> None: ... method setRange (line 1052) | def setRange(self, min: PySide2.QtCore.QDateTime | datetime.datetime... method setRange (line 1054) | def setRange(self, min: typing.Any, max: typing.Any) -> None: ... method setTickCount (line 1055) | def setTickCount(self, count: int) -> None: ... method tickCount (line 1056) | def tickCount(self) -> int: ... method type (line 1057) | def type(self) -> QtCharts.QAbstractAxis.AxisType: ... class QHBarModelMapper (line 1059) | class QHBarModelMapper(QtCharts.QBarModelMapper): method __init__ (line 1067) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., colu... method columnCount (line 1068) | def columnCount(self) -> int: ... method firstBarSetRow (line 1069) | def firstBarSetRow(self) -> int: ... method firstColumn (line 1070) | def firstColumn(self) -> int: ... method lastBarSetRow (line 1071) | def lastBarSetRow(self) -> int: ... method model (line 1072) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method series (line 1073) | def series(self) -> QtCharts.QAbstractBarSeries: ... method setColumnCount (line 1074) | def setColumnCount(self, columnCount: int) -> None: ... method setFirstBarSetRow (line 1075) | def setFirstBarSetRow(self, firstBarSetRow: int) -> None: ... method setFirstColumn (line 1076) | def setFirstColumn(self, firstColumn: int) -> None: ... method setLastBarSetRow (line 1077) | def setLastBarSetRow(self, lastBarSetRow: int) -> None: ... method setModel (line 1078) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setSeries (line 1079) | def setSeries(self, series: QtCharts.QAbstractBarSeries) -> None: ... class QHBoxPlotModelMapper (line 1081) | class QHBoxPlotModelMapper(QtCharts.QBoxPlotModelMapper): method __init__ (line 1089) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., colu... method columnCount (line 1090) | def columnCount(self) -> int: ... method firstBoxSetRow (line 1091) | def firstBoxSetRow(self) -> int: ... method firstColumn (line 1092) | def firstColumn(self) -> int: ... method lastBoxSetRow (line 1093) | def lastBoxSetRow(self) -> int: ... method model (line 1094) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method series (line 1095) | def series(self) -> QtCharts.QBoxPlotSeries: ... method setColumnCount (line 1096) | def setColumnCount(self, rowCount: int) -> None: ... method setFirstBoxSetRow (line 1097) | def setFirstBoxSetRow(self, firstBoxSetRow: int) -> None: ... method setFirstColumn (line 1098) | def setFirstColumn(self, firstColumn: int) -> None: ... method setLastBoxSetRow (line 1099) | def setLastBoxSetRow(self, lastBoxSetRow: int) -> None: ... method setModel (line 1100) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setSeries (line 1101) | def setSeries(self, series: QtCharts.QBoxPlotSeries) -> None: ... class QHCandlestickModelMapper (line 1103) | class QHCandlestickModelMapper(QtCharts.QCandlestickModelMapper): method __init__ (line 1112) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., clos... method closeColumn (line 1113) | def closeColumn(self) -> int: ... method firstSetRow (line 1114) | def firstSetRow(self) -> int: ... method highColumn (line 1115) | def highColumn(self) -> int: ... method lastSetRow (line 1116) | def lastSetRow(self) -> int: ... method lowColumn (line 1117) | def lowColumn(self) -> int: ... method openColumn (line 1118) | def openColumn(self) -> int: ... method orientation (line 1119) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method setCloseColumn (line 1120) | def setCloseColumn(self, closeColumn: int) -> None: ... method setFirstSetRow (line 1121) | def setFirstSetRow(self, firstSetRow: int) -> None: ... method setHighColumn (line 1122) | def setHighColumn(self, highColumn: int) -> None: ... method setLastSetRow (line 1123) | def setLastSetRow(self, lastSetRow: int) -> None: ... method setLowColumn (line 1124) | def setLowColumn(self, lowColumn: int) -> None: ... method setOpenColumn (line 1125) | def setOpenColumn(self, openColumn: int) -> None: ... method setTimestampColumn (line 1126) | def setTimestampColumn(self, timestampColumn: int) -> None: ... method timestampColumn (line 1127) | def timestampColumn(self) -> int: ... class QHPieModelMapper (line 1129) | class QHPieModelMapper(QtCharts.QPieModelMapper): method __init__ (line 1137) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., colu... method columnCount (line 1138) | def columnCount(self) -> int: ... method firstColumn (line 1139) | def firstColumn(self) -> int: ... method labelsRow (line 1140) | def labelsRow(self) -> int: ... method model (line 1141) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method series (line 1142) | def series(self) -> QtCharts.QPieSeries: ... method setColumnCount (line 1143) | def setColumnCount(self, columnCount: int) -> None: ... method setFirstColumn (line 1144) | def setFirstColumn(self, firstColumn: int) -> None: ... method setLabelsRow (line 1145) | def setLabelsRow(self, labelsRow: int) -> None: ... method setModel (line 1146) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setSeries (line 1147) | def setSeries(self, series: QtCharts.QPieSeries) -> None: ... method setValuesRow (line 1148) | def setValuesRow(self, valuesRow: int) -> None: ... method valuesRow (line 1149) | def valuesRow(self) -> int: ... class QHXYModelMapper (line 1151) | class QHXYModelMapper(QtCharts.QXYModelMapper): method __init__ (line 1159) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., colu... method columnCount (line 1160) | def columnCount(self) -> int: ... method firstColumn (line 1161) | def firstColumn(self) -> int: ... method model (line 1162) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method series (line 1163) | def series(self) -> QtCharts.QXYSeries: ... method setColumnCount (line 1164) | def setColumnCount(self, columnCount: int) -> None: ... method setFirstColumn (line 1165) | def setFirstColumn(self, firstColumn: int) -> None: ... method setModel (line 1166) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setSeries (line 1167) | def setSeries(self, series: QtCharts.QXYSeries) -> None: ... method setXRow (line 1168) | def setXRow(self, xRow: int) -> None: ... method setYRow (line 1169) | def setYRow(self, yRow: int) -> None: ... method xRow (line 1170) | def xRow(self) -> int: ... method yRow (line 1171) | def yRow(self) -> int: ... class QHorizontalBarSeries (line 1173) | class QHorizontalBarSeries(QtCharts.QAbstractBarSeries): method __init__ (line 1175) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., barW... method type (line 1176) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QHorizontalPercentBarSeries (line 1178) | class QHorizontalPercentBarSeries(QtCharts.QAbstractBarSeries): method __init__ (line 1180) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., barW... method type (line 1181) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QHorizontalStackedBarSeries (line 1183) | class QHorizontalStackedBarSeries(QtCharts.QAbstractBarSeries): method __init__ (line 1185) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., barW... method type (line 1186) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QLegend (line 1188) | class QLegend(PySide2.QtWidgets.QGraphicsWidget): class MarkerShape (line 1189) | class MarkerShape: method __init__ (line 1197) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1198) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QLegend.M... method __and__ (line 1199) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QLegend.M... method __bool__ (line 1200) | def __bool__(self) -> bool: ... method __eq__ (line 1201) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1202) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1203) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1204) | def __hash__(self) -> int: ... method __index__ (line 1205) | def __index__(self) -> int: ... method __int__ (line 1206) | def __int__(self) -> int: ... method __le__ (line 1207) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1208) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1209) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QLegend.M... method __ne__ (line 1210) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1211) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QLegend.Ma... method __pos__ (line 1212) | def __pos__(self): ... method __radd__ (line 1213) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QLegend.... method __rand__ (line 1214) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QLegend.... method __rmul__ (line 1215) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QLegend.... method __ror__ (line 1216) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QLegend.M... method __rsub__ (line 1217) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QLegend.... method __rxor__ (line 1218) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QLegend.... method __sub__ (line 1219) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QLegend.M... method __xor__ (line 1220) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QLegend.M... method __init__ (line 1235) | def __init__(cls, *args, alignment: PySide2.QtCore.Qt.Alignment | Py... method alignment (line 1236) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.... method attachToChart (line 1237) | def attachToChart(self) -> None: ... method borderColor (line 1238) | def borderColor(self) -> PySide2.QtGui.QColor: ... method brush (line 1239) | def brush(self) -> PySide2.QtGui.QBrush: ... method color (line 1240) | def color(self) -> PySide2.QtGui.QColor: ... method detachFromChart (line 1241) | def detachFromChart(self) -> None: ... method font (line 1242) | def font(self) -> PySide2.QtGui.QFont: ... method hideEvent (line 1243) | def hideEvent(self, event: PySide2.QtGui.QHideEvent) -> None: ... method isAttachedToChart (line 1244) | def isAttachedToChart(self) -> bool: ... method isBackgroundVisible (line 1245) | def isBackgroundVisible(self) -> bool: ... method labelBrush (line 1246) | def labelBrush(self) -> PySide2.QtGui.QBrush: ... method labelColor (line 1247) | def labelColor(self) -> PySide2.QtGui.QColor: ... method markerShape (line 1248) | def markerShape(self) -> QtCharts.QLegend.MarkerShape: ... method markers (line 1249) | def markers(self, series: QtCharts.QAbstractSeries | None = ...) -> ... method paint (line 1250) | def paint(self, painter: PySide2.QtGui.QPainter, option: PySide2.QtW... method pen (line 1251) | def pen(self) -> PySide2.QtGui.QPen: ... method reverseMarkers (line 1252) | def reverseMarkers(self) -> bool: ... method setAlignment (line 1253) | def setAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | PySi... method setBackgroundVisible (line 1254) | def setBackgroundVisible(self, visible: bool = ...) -> None: ... method setBorderColor (line 1255) | def setBorderColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setBrush (line 1256) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setColor (line 1257) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setFont (line 1258) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setLabelBrush (line 1259) | def setLabelBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.... method setLabelColor (line 1260) | def setLabelColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore... method setMarkerShape (line 1261) | def setMarkerShape(self, shape: QtCharts.QLegend.MarkerShape) -> Non... method setPen (line 1262) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setReverseMarkers (line 1263) | def setReverseMarkers(self, reverseMarkers: bool = ...) -> None: ... method setShowToolTips (line 1264) | def setShowToolTips(self, show: bool) -> None: ... method showEvent (line 1265) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method showToolTips (line 1266) | def showToolTips(self) -> bool: ... class QLegendMarker (line 1268) | class QLegendMarker(PySide2.QtCore.QObject): class LegendMarkerType (line 1269) | class LegendMarkerType: method __init__ (line 1279) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1280) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QLegendMa... method __and__ (line 1281) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QLegendMa... method __bool__ (line 1282) | def __bool__(self) -> bool: ... method __eq__ (line 1283) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1284) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1285) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1286) | def __hash__(self) -> int: ... method __index__ (line 1287) | def __index__(self) -> int: ... method __int__ (line 1288) | def __int__(self) -> int: ... method __le__ (line 1289) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1290) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1291) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QLegendMa... method __ne__ (line 1292) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1293) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QLegendMar... method __pos__ (line 1294) | def __pos__(self): ... method __radd__ (line 1295) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QLegendM... method __rand__ (line 1296) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QLegendM... method __rmul__ (line 1297) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QLegendM... method __ror__ (line 1298) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QLegendMa... method __rsub__ (line 1299) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QLegendM... method __rxor__ (line 1300) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QLegendM... method __sub__ (line 1301) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QLegendMa... method __xor__ (line 1302) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QLegendMa... method __init__ (line 1320) | def __init__(cls, *args, brush: PySide2.QtGui.QBrush | PySide2.QtGui... method brush (line 1321) | def brush(self) -> PySide2.QtGui.QBrush: ... method font (line 1322) | def font(self) -> PySide2.QtGui.QFont: ... method isVisible (line 1323) | def isVisible(self) -> bool: ... method label (line 1324) | def label(self) -> str: ... method labelBrush (line 1325) | def labelBrush(self) -> PySide2.QtGui.QBrush: ... method pen (line 1326) | def pen(self) -> PySide2.QtGui.QPen: ... method series (line 1327) | def series(self) -> QtCharts.QAbstractSeries: ... method setBrush (line 1328) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setFont (line 1329) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setLabel (line 1330) | def setLabel(self, label: str) -> None: ... method setLabelBrush (line 1331) | def setLabelBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.... method setPen (line 1332) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setShape (line 1333) | def setShape(self, shape: QtCharts.QLegend.MarkerShape) -> None: ... method setVisible (line 1334) | def setVisible(self, visible: bool) -> None: ... method shape (line 1335) | def shape(self) -> QtCharts.QLegend.MarkerShape: ... method type (line 1336) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QLineSeries (line 1338) | class QLineSeries(QtCharts.QXYSeries): method __init__ (line 1340) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., clic... method type (line 1341) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QLogValueAxis (line 1343) | class QLogValueAxis(QtCharts.QAbstractAxis): method __init__ (line 1352) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., alig... method base (line 1353) | def base(self) -> float: ... method labelFormat (line 1354) | def labelFormat(self) -> str: ... method max (line 1355) | def max(self) -> float: ... method min (line 1356) | def min(self) -> float: ... method minorTickCount (line 1357) | def minorTickCount(self) -> int: ... method setBase (line 1358) | def setBase(self, base: float) -> None: ... method setLabelFormat (line 1359) | def setLabelFormat(self, format: str) -> None: ... method setMax (line 1361) | def setMax(self, max: typing.Any) -> None: ... method setMax (line 1363) | def setMax(self, max: float) -> None: ... # type: ignore[overload-c... method setMin (line 1365) | def setMin(self, min: typing.Any) -> None: ... method setMin (line 1367) | def setMin(self, min: float) -> None: ... # type: ignore[overload-c... method setMinorTickCount (line 1368) | def setMinorTickCount(self, minorTickCount: int) -> None: ... method setRange (line 1370) | def setRange(self, min: typing.Any, max: typing.Any) -> None: ... method setRange (line 1372) | def setRange(self, min: float, max: float) -> None: ... # type: ign... method tickCount (line 1373) | def tickCount(self) -> int: ... method type (line 1374) | def type(self) -> QtCharts.QAbstractAxis.AxisType: ... class QPercentBarSeries (line 1376) | class QPercentBarSeries(QtCharts.QAbstractBarSeries): method __init__ (line 1378) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., barW... method type (line 1379) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QPieLegendMarker (line 1381) | class QPieLegendMarker(QtCharts.QLegendMarker): method __init__ (line 1383) | def __init__(self, series: QtCharts.QPieSeries, slice: QtCharts.QPie... method series (line 1384) | def series(self) -> QtCharts.QPieSeries: ... method slice (line 1385) | def slice(self) -> QtCharts.QPieSlice: ... method type (line 1386) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QPieModelMapper (line 1388) | class QPieModelMapper(PySide2.QtCore.QObject): method __init__ (line 1390) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method count (line 1391) | def count(self) -> int: ... method first (line 1392) | def first(self) -> int: ... method labelsSection (line 1393) | def labelsSection(self) -> int: ... method model (line 1394) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method orientation (line 1395) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method series (line 1396) | def series(self) -> QtCharts.QPieSeries: ... method setCount (line 1397) | def setCount(self, count: int) -> None: ... method setFirst (line 1398) | def setFirst(self, first: int) -> None: ... method setLabelsSection (line 1399) | def setLabelsSection(self, labelsSection: int) -> None: ... method setModel (line 1400) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setOrientation (line 1401) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation)... method setSeries (line 1402) | def setSeries(self, series: QtCharts.QPieSeries) -> None: ... method setValuesSection (line 1403) | def setValuesSection(self, valuesSection: int) -> None: ... method valuesSection (line 1404) | def valuesSection(self) -> int: ... class QPieSeries (line 1406) | class QPieSeries(QtCharts.QAbstractSeries): method __init__ (line 1417) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., adde... method append (line 1419) | def append(self, label: str, value: float) -> QtCharts.QPieSlice: ... method append (line 1421) | def append(self, slices: typing.Iterable[QtCharts.QPieSlice]) -> boo... method append (line 1423) | def append(self, slice: QtCharts.QPieSlice) -> bool: ... method clear (line 1424) | def clear(self) -> None: ... method count (line 1425) | def count(self) -> int: ... method holeSize (line 1426) | def holeSize(self) -> float: ... method horizontalPosition (line 1427) | def horizontalPosition(self) -> float: ... method insert (line 1428) | def insert(self, index: int, slice: QtCharts.QPieSlice) -> bool: ... method isEmpty (line 1429) | def isEmpty(self) -> bool: ... method pieEndAngle (line 1430) | def pieEndAngle(self) -> float: ... method pieSize (line 1431) | def pieSize(self) -> float: ... method pieStartAngle (line 1432) | def pieStartAngle(self) -> float: ... method remove (line 1433) | def remove(self, slice: QtCharts.QPieSlice) -> bool: ... method setHoleSize (line 1434) | def setHoleSize(self, holeSize: float) -> None: ... method setHorizontalPosition (line 1435) | def setHorizontalPosition(self, relativePosition: float) -> None: ... method setLabelsPosition (line 1436) | def setLabelsPosition(self, position: QtCharts.QPieSlice.LabelPositi... method setLabelsVisible (line 1437) | def setLabelsVisible(self, visible: bool = ...) -> None: ... method setPieEndAngle (line 1438) | def setPieEndAngle(self, endAngle: float) -> None: ... method setPieSize (line 1439) | def setPieSize(self, relativeSize: float) -> None: ... method setPieStartAngle (line 1440) | def setPieStartAngle(self, startAngle: float) -> None: ... method setVerticalPosition (line 1441) | def setVerticalPosition(self, relativePosition: float) -> None: ... method slices (line 1442) | def slices(self) -> list[QtCharts.QPieSlice]: ... method sum (line 1443) | def sum(self) -> float: ... method take (line 1444) | def take(self, slice: QtCharts.QPieSlice) -> bool: ... method type (line 1445) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... method verticalPosition (line 1446) | def verticalPosition(self) -> float: ... method __lshift__ (line 1447) | def __lshift__(self, slice: QtCharts.QPieSlice) -> QtCharts.QPieSeri... method __rlshift__ (line 1448) | def __rlshift__(self, other): ... class QPieSlice (line 1450) | class QPieSlice(PySide2.QtCore.QObject): class LabelPosition (line 1451) | class LabelPosition: method __init__ (line 1459) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1460) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice... method __and__ (line 1461) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice... method __bool__ (line 1462) | def __bool__(self) -> bool: ... method __eq__ (line 1463) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1464) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1465) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1466) | def __hash__(self) -> int: ... method __index__ (line 1467) | def __index__(self) -> int: ... method __int__ (line 1468) | def __int__(self) -> int: ... method __le__ (line 1469) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1470) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1471) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice... method __ne__ (line 1472) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1473) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice.... method __pos__ (line 1474) | def __pos__(self): ... method __radd__ (line 1475) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QPieSlic... method __rand__ (line 1476) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QPieSlic... method __rmul__ (line 1477) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QPieSlic... method __ror__ (line 1478) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice... method __rsub__ (line 1479) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QPieSlic... method __rxor__ (line 1480) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QPieSlic... method __sub__ (line 1481) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice... method __xor__ (line 1482) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QPieSlice... method __init__ (line 1508) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., angl... method __init__ (line 1510) | def __init__(self, label: str, value: float, parent: PySide2.QtCore.... method angleSpan (line 1511) | def angleSpan(self) -> float: ... method borderColor (line 1512) | def borderColor(self) -> PySide2.QtGui.QColor: ... method borderWidth (line 1513) | def borderWidth(self) -> int: ... method brush (line 1514) | def brush(self) -> PySide2.QtGui.QBrush: ... method color (line 1515) | def color(self) -> PySide2.QtGui.QColor: ... method explodeDistanceFactor (line 1516) | def explodeDistanceFactor(self) -> float: ... method isExploded (line 1517) | def isExploded(self) -> bool: ... method isLabelVisible (line 1518) | def isLabelVisible(self) -> bool: ... method label (line 1519) | def label(self) -> str: ... method labelArmLengthFactor (line 1520) | def labelArmLengthFactor(self) -> float: ... method labelBrush (line 1521) | def labelBrush(self) -> PySide2.QtGui.QBrush: ... method labelColor (line 1522) | def labelColor(self) -> PySide2.QtGui.QColor: ... method labelFont (line 1523) | def labelFont(self) -> PySide2.QtGui.QFont: ... method labelPosition (line 1524) | def labelPosition(self) -> QtCharts.QPieSlice.LabelPosition: ... method pen (line 1525) | def pen(self) -> PySide2.QtGui.QPen: ... method percentage (line 1526) | def percentage(self) -> float: ... method series (line 1527) | def series(self) -> QtCharts.QPieSeries: ... method setBorderColor (line 1528) | def setBorderColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setBorderWidth (line 1529) | def setBorderWidth(self, width: int) -> None: ... method setBrush (line 1530) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setColor (line 1531) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setExplodeDistanceFactor (line 1532) | def setExplodeDistanceFactor(self, factor: float) -> None: ... method setExploded (line 1533) | def setExploded(self, exploded: bool = ...) -> None: ... method setLabel (line 1534) | def setLabel(self, label: str) -> None: ... method setLabelArmLengthFactor (line 1535) | def setLabelArmLengthFactor(self, factor: float) -> None: ... method setLabelBrush (line 1536) | def setLabelBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.... method setLabelColor (line 1537) | def setLabelColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore... method setLabelFont (line 1538) | def setLabelFont(self, font: PySide2.QtGui.QFont) -> None: ... method setLabelPosition (line 1539) | def setLabelPosition(self, position: QtCharts.QPieSlice.LabelPositio... method setLabelVisible (line 1540) | def setLabelVisible(self, visible: bool = ...) -> None: ... method setPen (line 1541) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setValue (line 1542) | def setValue(self, value: float) -> None: ... method startAngle (line 1543) | def startAngle(self) -> float: ... method value (line 1544) | def value(self) -> float: ... class QPolarChart (line 1546) | class QPolarChart(QtCharts.QChart): class PolarOrientation (line 1547) | class PolarOrientation: method __init__ (line 1553) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1554) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QPolarCha... method __bool__ (line 1555) | def __bool__(self) -> bool: ... method __eq__ (line 1556) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1557) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1558) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1559) | def __hash__(self) -> int: ... method __index__ (line 1560) | def __index__(self) -> int: ... method __int__ (line 1561) | def __int__(self) -> int: ... method __invert__ (line 1562) | def __invert__(self) -> QtCharts.QPolarChart.PolarOrientations: ... method __le__ (line 1563) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1564) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1565) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1566) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QPolarChar... method __rand__ (line 1567) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QPolarCh... method __ror__ (line 1568) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QPolarCha... method __rxor__ (line 1569) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QPolarCh... method __xor__ (line 1570) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QPolarCha... class PolarOrientations (line 1572) | class PolarOrientations: method __init__ (line 1574) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1575) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QPolarCha... method __bool__ (line 1576) | def __bool__(self) -> bool: ... method __eq__ (line 1577) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1578) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1579) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1580) | def __index__(self) -> int: ... method __int__ (line 1581) | def __int__(self) -> int: ... method __invert__ (line 1582) | def __invert__(self) -> QtCharts.QPolarChart.PolarOrientations: ... method __le__ (line 1583) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1584) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1585) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1586) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QPolarChar... method __rand__ (line 1587) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QPolarCh... method __ror__ (line 1588) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QPolarCha... method __rxor__ (line 1589) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QPolarCh... method __xor__ (line 1590) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QPolarCha... method __init__ (line 1594) | def __init__(self, parent: PySide2.QtWidgets.QGraphicsItem | None = ... method addAxis (line 1596) | def addAxis(self, axis: QtCharts.QAbstractAxis, polarOrientation: Qt... method addAxis (line 1598) | def addAxis(self, axis: QtCharts.QAbstractAxis, alignment: PySide2.Q... method axisPolarOrientation (line 1600) | def axisPolarOrientation(axis: QtCharts.QAbstractAxis) -> QtCharts.Q... class QScatterSeries (line 1602) | class QScatterSeries(QtCharts.QXYSeries): class MarkerShape (line 1603) | class MarkerShape: method __init__ (line 1609) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1610) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QScatterS... method __and__ (line 1611) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QScatterS... method __bool__ (line 1612) | def __bool__(self) -> bool: ... method __eq__ (line 1613) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1614) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1615) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1616) | def __hash__(self) -> int: ... method __index__ (line 1617) | def __index__(self) -> int: ... method __int__ (line 1618) | def __int__(self) -> int: ... method __le__ (line 1619) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1620) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1621) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QScatterS... method __ne__ (line 1622) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1623) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QScatterSe... method __pos__ (line 1624) | def __pos__(self): ... method __radd__ (line 1625) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QScatter... method __rand__ (line 1626) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QScatter... method __rmul__ (line 1627) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QScatter... method __ror__ (line 1628) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QScatterS... method __rsub__ (line 1629) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QScatter... method __rxor__ (line 1630) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QScatter... method __sub__ (line 1631) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QScatterS... method __xor__ (line 1632) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QScatterS... method __init__ (line 1640) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., bord... method borderColor (line 1641) | def borderColor(self) -> PySide2.QtGui.QColor: ... method brush (line 1642) | def brush(self) -> PySide2.QtGui.QBrush: ... method color (line 1643) | def color(self) -> PySide2.QtGui.QColor: ... method markerShape (line 1644) | def markerShape(self) -> QtCharts.QScatterSeries.MarkerShape: ... method markerSize (line 1645) | def markerSize(self) -> float: ... method setBorderColor (line 1646) | def setBorderColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method setBrush (line 1647) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setColor (line 1648) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setMarkerShape (line 1649) | def setMarkerShape(self, shape: QtCharts.QScatterSeries.MarkerShape)... method setMarkerSize (line 1650) | def setMarkerSize(self, size: float) -> None: ... method setPen (line 1651) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method type (line 1652) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QSplineSeries (line 1654) | class QSplineSeries(QtCharts.QLineSeries): method __init__ (line 1656) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., clic... method type (line 1657) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QStackedBarSeries (line 1659) | class QStackedBarSeries(QtCharts.QAbstractBarSeries): method __init__ (line 1661) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., barW... method type (line 1662) | def type(self) -> QtCharts.QAbstractSeries.SeriesType: ... class QVBarModelMapper (line 1664) | class QVBarModelMapper(QtCharts.QBarModelMapper): method __init__ (line 1672) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method firstBarSetColumn (line 1673) | def firstBarSetColumn(self) -> int: ... method firstRow (line 1674) | def firstRow(self) -> int: ... method lastBarSetColumn (line 1675) | def lastBarSetColumn(self) -> int: ... method model (line 1676) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method rowCount (line 1677) | def rowCount(self) -> int: ... method series (line 1678) | def series(self) -> QtCharts.QAbstractBarSeries: ... method setFirstBarSetColumn (line 1679) | def setFirstBarSetColumn(self, firstBarSetColumn: int) -> None: ... method setFirstRow (line 1680) | def setFirstRow(self, firstRow: int) -> None: ... method setLastBarSetColumn (line 1681) | def setLastBarSetColumn(self, lastBarSetColumn: int) -> None: ... method setModel (line 1682) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setRowCount (line 1683) | def setRowCount(self, rowCount: int) -> None: ... method setSeries (line 1684) | def setSeries(self, series: QtCharts.QAbstractBarSeries) -> None: ... class QVBoxPlotModelMapper (line 1686) | class QVBoxPlotModelMapper(QtCharts.QBoxPlotModelMapper): method __init__ (line 1694) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method firstBoxSetColumn (line 1695) | def firstBoxSetColumn(self) -> int: ... method firstRow (line 1696) | def firstRow(self) -> int: ... method lastBoxSetColumn (line 1697) | def lastBoxSetColumn(self) -> int: ... method model (line 1698) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method rowCount (line 1699) | def rowCount(self) -> int: ... method series (line 1700) | def series(self) -> QtCharts.QBoxPlotSeries: ... method setFirstBoxSetColumn (line 1701) | def setFirstBoxSetColumn(self, firstBoxSetColumn: int) -> None: ... method setFirstRow (line 1702) | def setFirstRow(self, firstRow: int) -> None: ... method setLastBoxSetColumn (line 1703) | def setLastBoxSetColumn(self, lastBoxSetColumn: int) -> None: ... method setModel (line 1704) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setRowCount (line 1705) | def setRowCount(self, rowCount: int) -> None: ... method setSeries (line 1706) | def setSeries(self, series: QtCharts.QBoxPlotSeries) -> None: ... class QVCandlestickModelMapper (line 1708) | class QVCandlestickModelMapper(QtCharts.QCandlestickModelMapper): method __init__ (line 1717) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., clos... method closeRow (line 1718) | def closeRow(self) -> int: ... method firstSetColumn (line 1719) | def firstSetColumn(self) -> int: ... method highRow (line 1720) | def highRow(self) -> int: ... method lastSetColumn (line 1721) | def lastSetColumn(self) -> int: ... method lowRow (line 1722) | def lowRow(self) -> int: ... method openRow (line 1723) | def openRow(self) -> int: ... method orientation (line 1724) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method setCloseRow (line 1725) | def setCloseRow(self, closeRow: int) -> None: ... method setFirstSetColumn (line 1726) | def setFirstSetColumn(self, firstSetColumn: int) -> None: ... method setHighRow (line 1727) | def setHighRow(self, highRow: int) -> None: ... method setLastSetColumn (line 1728) | def setLastSetColumn(self, lastSetColumn: int) -> None: ... method setLowRow (line 1729) | def setLowRow(self, lowRow: int) -> None: ... method setOpenRow (line 1730) | def setOpenRow(self, openRow: int) -> None: ... method setTimestampRow (line 1731) | def setTimestampRow(self, timestampRow: int) -> None: ... method timestampRow (line 1732) | def timestampRow(self) -> int: ... class QVPieModelMapper (line 1734) | class QVPieModelMapper(QtCharts.QPieModelMapper): method __init__ (line 1742) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method firstRow (line 1743) | def firstRow(self) -> int: ... method labelsColumn (line 1744) | def labelsColumn(self) -> int: ... method model (line 1745) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method rowCount (line 1746) | def rowCount(self) -> int: ... method series (line 1747) | def series(self) -> QtCharts.QPieSeries: ... method setFirstRow (line 1748) | def setFirstRow(self, firstRow: int) -> None: ... method setLabelsColumn (line 1749) | def setLabelsColumn(self, labelsColumn: int) -> None: ... method setModel (line 1750) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setRowCount (line 1751) | def setRowCount(self, rowCount: int) -> None: ... method setSeries (line 1752) | def setSeries(self, series: QtCharts.QPieSeries) -> None: ... method setValuesColumn (line 1753) | def setValuesColumn(self, valuesColumn: int) -> None: ... method valuesColumn (line 1754) | def valuesColumn(self) -> int: ... class QVXYModelMapper (line 1756) | class QVXYModelMapper(QtCharts.QXYModelMapper): method __init__ (line 1764) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method firstRow (line 1765) | def firstRow(self) -> int: ... method model (line 1766) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method rowCount (line 1767) | def rowCount(self) -> int: ... method series (line 1768) | def series(self) -> QtCharts.QXYSeries: ... method setFirstRow (line 1769) | def setFirstRow(self, firstRow: int) -> None: ... method setModel (line 1770) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setRowCount (line 1771) | def setRowCount(self, rowCount: int) -> None: ... method setSeries (line 1772) | def setSeries(self, series: QtCharts.QXYSeries) -> None: ... method setXColumn (line 1773) | def setXColumn(self, xColumn: int) -> None: ... method setYColumn (line 1774) | def setYColumn(self, yColumn: int) -> None: ... method xColumn (line 1775) | def xColumn(self) -> int: ... method yColumn (line 1776) | def yColumn(self) -> int: ... class QValueAxis (line 1778) | class QValueAxis(QtCharts.QAbstractAxis): class TickType (line 1779) | class TickType: method __init__ (line 1785) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1786) | def __add__(self, other: typing.SupportsInt) -> QtCharts.QValueAxi... method __and__ (line 1787) | def __and__(self, other: typing.SupportsInt) -> QtCharts.QValueAxi... method __bool__ (line 1788) | def __bool__(self) -> bool: ... method __eq__ (line 1789) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1790) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1791) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1792) | def __hash__(self) -> int: ... method __index__ (line 1793) | def __index__(self) -> int: ... method __int__ (line 1794) | def __int__(self) -> int: ... method __le__ (line 1795) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1796) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1797) | def __mul__(self, other: typing.SupportsInt) -> QtCharts.QValueAxi... method __ne__ (line 1798) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1799) | def __or__(self, other: typing.SupportsInt) -> QtCharts.QValueAxis... method __pos__ (line 1800) | def __pos__(self): ... method __radd__ (line 1801) | def __radd__(self, other: typing.SupportsInt) -> QtCharts.QValueAx... method __rand__ (line 1802) | def __rand__(self, other: typing.SupportsInt) -> QtCharts.QValueAx... method __rmul__ (line 1803) | def __rmul__(self, other: typing.SupportsInt) -> QtCharts.QValueAx... method __ror__ (line 1804) | def __ror__(self, other: typing.SupportsInt) -> QtCharts.QValueAxi... method __rsub__ (line 1805) | def __rsub__(self, other: typing.SupportsInt) -> QtCharts.QValueAx... method __rxor__ (line 1806) | def __rxor__(self, other: typing.SupportsInt) -> QtCharts.QValueAx... method __sub__ (line 1807) | def __sub__(self, other: typing.SupportsInt) -> QtCharts.QValueAxi... method __xor__ (line 1808) | def __xor__(self, other: typing.SupportsInt) -> QtCharts.QValueAxi... method __init__ (line 1821) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., alig... method applyNiceNumbers (line 1822) | def applyNiceNumbers(self) -> None: ... method labelFormat (line 1823) | def labelFormat(self) -> str: ... method max (line 1824) | def max(self) -> float: ... method min (line 1825) | def min(self) -> float: ... method minorTickCount (line 1826) | def minorTickCount(self) -> int: ... method setLabelFormat (line 1827) | def setLabelFormat(self, format: str) -> None: ... method setMax (line 1829) | def setMax(self, max: typing.Any) -> None: ... method setMax (line 1831) | def setMax(self, max: float) -> None: ... # type: ignore[overload-c... method setMin (line 1833) | def setMin(self, min: typing.Any) -> None: ... method setMin (line 1835) | def setMin(self, min: float) -> None: ... # type: ignore[overload-c... method setMinorTickCount (line 1836) | def setMinorTickCount(self, count: int) -> None: ... method setRange (line 1838) | def setRange(self, min: typing.Any, max: typing.Any) -> None: ... method setRange (line 1840) | def setRange(self, min: float, max: float) -> None: ... # type: ign... method setTickAnchor (line 1841) | def setTickAnchor(self, anchor: float) -> None: ... method setTickCount (line 1842) | def setTickCount(self, count: int) -> None: ... method setTickInterval (line 1843) | def setTickInterval(self, insterval: float) -> None: ... method setTickType (line 1844) | def setTickType(self, type: QtCharts.QValueAxis.TickType) -> None: ... method tickAnchor (line 1845) | def tickAnchor(self) -> float: ... method tickCount (line 1846) | def tickCount(self) -> int: ... method tickInterval (line 1847) | def tickInterval(self) -> float: ... method tickType (line 1848) | def tickType(self) -> QtCharts.QValueAxis.TickType: ... method type (line 1849) | def type(self) -> QtCharts.QAbstractAxis.AxisType: ... class QXYLegendMarker (line 1851) | class QXYLegendMarker(QtCharts.QLegendMarker): method __init__ (line 1853) | def __init__(self, series: QtCharts.QXYSeries, legend: QtCharts.QLeg... method series (line 1854) | def series(self) -> QtCharts.QXYSeries: ... method type (line 1855) | def type(self) -> QtCharts.QLegendMarker.LegendMarkerType: ... class QXYModelMapper (line 1857) | class QXYModelMapper(PySide2.QtCore.QObject): method __init__ (line 1859) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method count (line 1860) | def count(self) -> int: ... method first (line 1861) | def first(self) -> int: ... method model (line 1862) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method orientation (line 1863) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method series (line 1864) | def series(self) -> QtCharts.QXYSeries: ... method setCount (line 1865) | def setCount(self, count: int) -> None: ... method setFirst (line 1866) | def setFirst(self, first: int) -> None: ... method setModel (line 1867) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ... method setOrientation (line 1868) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation)... method setSeries (line 1869) | def setSeries(self, series: QtCharts.QXYSeries) -> None: ... method setXSection (line 1870) | def setXSection(self, xSection: int) -> None: ... method setYSection (line 1871) | def setYSection(self, ySection: int) -> None: ... method xSection (line 1872) | def xSection(self) -> int: ... method ySection (line 1873) | def ySection(self) -> int: ... class QXYSeries (line 1875) | class QXYSeries(QtCharts.QAbstractSeries): method __init__ (line 1895) | def __init__(cls, *args, clicked: typing.Callable = ..., color: PySi... method append (line 1897) | def append(self, x: float, y: float) -> None: ... method append (line 1899) | def append(self, points: typing.Iterable[PySide2.QtCore.QPointF]) ->... method append (line 1901) | def append(self, point: PySide2.QtCore.QPointF) -> None: ... method at (line 1902) | def at(self, index: int) -> PySide2.QtCore.QPointF: ... method brush (line 1903) | def brush(self) -> PySide2.QtGui.QBrush: ... method clear (line 1904) | def clear(self) -> None: ... method color (line 1905) | def color(self) -> PySide2.QtGui.QColor: ... method count (line 1906) | def count(self) -> int: ... method insert (line 1907) | def insert(self, index: int, point: PySide2.QtCore.QPointF) -> None:... method pen (line 1908) | def pen(self) -> PySide2.QtGui.QPen: ... method pointLabelsClipping (line 1909) | def pointLabelsClipping(self) -> bool: ... method pointLabelsColor (line 1910) | def pointLabelsColor(self) -> PySide2.QtGui.QColor: ... method pointLabelsFont (line 1911) | def pointLabelsFont(self) -> PySide2.QtGui.QFont: ... method pointLabelsFormat (line 1912) | def pointLabelsFormat(self) -> str: ... method pointLabelsVisible (line 1913) | def pointLabelsVisible(self) -> bool: ... method points (line 1914) | def points(self) -> list[PySide2.QtCore.QPointF]: ... method pointsVector (line 1915) | def pointsVector(self) -> list[PySide2.QtCore.QPointF]: ... method pointsVisible (line 1916) | def pointsVisible(self) -> bool: ... method remove (line 1918) | def remove(self, x: float, y: float) -> None: ... method remove (line 1920) | def remove(self, point: PySide2.QtCore.QPointF) -> None: ... method remove (line 1922) | def remove(self, index: int) -> None: ... method removePoints (line 1923) | def removePoints(self, index: int, count: int) -> None: ... method replace (line 1925) | def replace(self, oldX: float, oldY: float, newX: float, newY: float... method replace (line 1927) | def replace(self, index: int, newX: float, newY: float) -> None: ... method replace (line 1929) | def replace(self, oldPoint: PySide2.QtCore.QPointF, newPoint: PySide... method replace (line 1931) | def replace(self, index: int, newPoint: PySide2.QtCore.QPointF) -> N... method replace (line 1933) | def replace(self, points: typing.Iterable[PySide2.QtCore.QPointF]) -... method replace (line 1935) | def replace(self, points: list[PySide2.QtCore.QPointF]) -> None: ...... method setBrush (line 1936) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColo... method setColor (line 1937) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method setPen (line 1938) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method setPointLabelsClipping (line 1939) | def setPointLabelsClipping(self, enabled: bool = ...) -> None: ... method setPointLabelsColor (line 1940) | def setPointLabelsColor(self, color: PySide2.QtGui.QColor | PySide2.... method setPointLabelsFont (line 1941) | def setPointLabelsFont(self, font: PySide2.QtGui.QFont) -> None: ... method setPointLabelsFormat (line 1942) | def setPointLabelsFormat(self, format: str) -> None: ... method setPointLabelsVisible (line 1943) | def setPointLabelsVisible(self, visible: bool = ...) -> None: ... method setPointsVisible (line 1944) | def setPointsVisible(self, visible: bool = ...) -> None: ... method __lshift__ (line 1946) | def __lshift__(self, points: typing.Iterable[PySide2.QtCore.QPointF]... method __lshift__ (line 1948) | def __lshift__(self, point: PySide2.QtCore.QPointF) -> QtCharts.QXYS... method __rlshift__ (line 1949) | def __rlshift__(self, other): ... method __init__ (line 1951) | def __init__(cls, *args, **kwargs) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtConcurrent.pyi class QFutureQString (line 11) | class QFutureQString(shiboken2.Object): method __init__ (line 13) | def __init__(self, QFutureQString: QFutureQString) -> None: ... method __init__ (line 15) | def __init__(self) -> None: ... method cancel (line 16) | def cancel(self) -> None: ... method isCanceled (line 17) | def isCanceled(self) -> bool: ... method isFinished (line 18) | def isFinished(self) -> bool: ... method isPaused (line 19) | def isPaused(self) -> bool: ... method isResultReadyAt (line 20) | def isResultReadyAt(self, resultIndex: int) -> bool: ... method isRunning (line 21) | def isRunning(self) -> bool: ... method isStarted (line 22) | def isStarted(self) -> bool: ... method pause (line 23) | def pause(self) -> None: ... method progressMaximum (line 24) | def progressMaximum(self) -> int: ... method progressMinimum (line 25) | def progressMinimum(self) -> int: ... method progressText (line 26) | def progressText(self) -> str: ... method progressValue (line 27) | def progressValue(self) -> int: ... method result (line 28) | def result(self) -> str: ... method resultAt (line 29) | def resultAt(self, index: int) -> str: ... method resultCount (line 30) | def resultCount(self) -> int: ... method results (line 31) | def results(self) -> list[str]: ... method resume (line 32) | def resume(self) -> None: ... method setPaused (line 33) | def setPaused(self, paused: bool) -> None: ... method togglePaused (line 34) | def togglePaused(self) -> None: ... method waitForFinished (line 35) | def waitForFinished(self) -> None: ... method __copy__ (line 36) | def __copy__(self) -> None: ... method __eq__ (line 37) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 38) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 39) | def __gt__(self, other: object) -> bool: ... method __le__ (line 40) | def __le__(self, other: object) -> bool: ... method __lt__ (line 41) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 42) | def __ne__(self, other: object) -> bool: ... class QFutureVoid (line 44) | class QFutureVoid(shiboken2.Object): method __init__ (line 46) | def __init__(self, QFutureVoid: QFutureVoid) -> None: ... method __init__ (line 48) | def __init__(self) -> None: ... method cancel (line 49) | def cancel(self) -> None: ... method isCanceled (line 50) | def isCanceled(self) -> bool: ... method isFinished (line 51) | def isFinished(self) -> bool: ... method isPaused (line 52) | def isPaused(self) -> bool: ... method isRunning (line 53) | def isRunning(self) -> bool: ... method isStarted (line 54) | def isStarted(self) -> bool: ... method pause (line 55) | def pause(self) -> None: ... method progressMaximum (line 56) | def progressMaximum(self) -> int: ... method progressMinimum (line 57) | def progressMinimum(self) -> int: ... method progressText (line 58) | def progressText(self) -> str: ... method progressValue (line 59) | def progressValue(self) -> int: ... method resultCount (line 60) | def resultCount(self) -> int: ... method resume (line 61) | def resume(self) -> None: ... method setPaused (line 62) | def setPaused(self, paused: bool) -> None: ... method togglePaused (line 63) | def togglePaused(self) -> None: ... method waitForFinished (line 64) | def waitForFinished(self) -> None: ... method __copy__ (line 65) | def __copy__(self) -> None: ... class QFutureWatcherQString (line 67) | class QFutureWatcherQString(PySide2.QtCore.QObject): method __init__ (line 79) | def __init__(self, _parent: PySide2.QtCore.QObject | None = ..., cance... method future (line 80) | def future(self) -> QFutureQString: ... method result (line 81) | def result(self) -> str: ... method resultAt (line 82) | def resultAt(self, index: int) -> str: ... method setFuture (line 83) | def setFuture(self, future: QFutureQString) -> None: ... class QFutureWatcherVoid (line 85) | class QFutureWatcherVoid(PySide2.QtCore.QObject): method __init__ (line 97) | def __init__(self, _parent: PySide2.QtCore.QObject | None = ..., cance... class QtConcurrent (line 99) | class QtConcurrent(shiboken2.Object): class ReduceOption (line 100) | class ReduceOption: method __init__ (line 107) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 108) | def __and__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceO... method __bool__ (line 109) | def __bool__(self) -> bool: ... method __eq__ (line 110) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 111) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 112) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 113) | def __hash__(self) -> int: ... method __index__ (line 114) | def __index__(self) -> int: ... method __int__ (line 115) | def __int__(self) -> int: ... method __invert__ (line 116) | def __invert__(self) -> QtConcurrent.ReduceOptions: ... method __le__ (line 117) | def __le__(self, other: object) -> bool: ... method __lt__ (line 118) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 119) | def __ne__(self, other: object) -> bool: ... method __or__ (line 120) | def __or__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceOp... method __rand__ (line 121) | def __rand__(self, other: typing.SupportsInt) -> QtConcurrent.Reduce... method __ror__ (line 122) | def __ror__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceO... method __rxor__ (line 123) | def __rxor__(self, other: typing.SupportsInt) -> QtConcurrent.Reduce... method __xor__ (line 124) | def __xor__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceO... class ReduceOptions (line 126) | class ReduceOptions: method __init__ (line 128) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 129) | def __and__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceO... method __bool__ (line 130) | def __bool__(self) -> bool: ... method __eq__ (line 131) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 132) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 133) | def __gt__(self, other: object) -> bool: ... method __index__ (line 134) | def __index__(self) -> int: ... method __int__ (line 135) | def __int__(self) -> int: ... method __invert__ (line 136) | def __invert__(self) -> QtConcurrent.ReduceOptions: ... method __le__ (line 137) | def __le__(self, other: object) -> bool: ... method __lt__ (line 138) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 139) | def __ne__(self, other: object) -> bool: ... method __or__ (line 140) | def __or__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceOp... method __rand__ (line 141) | def __rand__(self, other: typing.SupportsInt) -> QtConcurrent.Reduce... method __ror__ (line 142) | def __ror__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceO... method __rxor__ (line 143) | def __rxor__(self, other: typing.SupportsInt) -> QtConcurrent.Reduce... method __xor__ (line 144) | def __xor__(self, other: typing.SupportsInt) -> QtConcurrent.ReduceO... class ThreadFunctionResult (line 146) | class ThreadFunctionResult: method __init__ (line 152) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 153) | def __add__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadF... method __and__ (line 154) | def __and__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadF... method __bool__ (line 155) | def __bool__(self) -> bool: ... method __eq__ (line 156) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 157) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 158) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 159) | def __hash__(self) -> int: ... method __index__ (line 160) | def __index__(self) -> int: ... method __int__ (line 161) | def __int__(self) -> int: ... method __le__ (line 162) | def __le__(self, other: object) -> bool: ... method __lt__ (line 163) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 164) | def __mul__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadF... method __ne__ (line 165) | def __ne__(self, other: object) -> bool: ... method __or__ (line 166) | def __or__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadFu... method __pos__ (line 167) | def __pos__(self): ... method __radd__ (line 168) | def __radd__(self, other: typing.SupportsInt) -> QtConcurrent.Thread... method __rand__ (line 169) | def __rand__(self, other: typing.SupportsInt) -> QtConcurrent.Thread... method __rmul__ (line 170) | def __rmul__(self, other: typing.SupportsInt) -> QtConcurrent.Thread... method __ror__ (line 171) | def __ror__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadF... method __rsub__ (line 172) | def __rsub__(self, other: typing.SupportsInt) -> QtConcurrent.Thread... method __rxor__ (line 173) | def __rxor__(self, other: typing.SupportsInt) -> QtConcurrent.Thread... method __sub__ (line 174) | def __sub__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadF... method __xor__ (line 175) | def __xor__(self, other: typing.SupportsInt) -> QtConcurrent.ThreadF... method __init__ (line 182) | def __init__(cls, *args, **kwargs) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtCore.pyi class _add_QDate_isValid_overloads (line 11) | class _add_QDate_isValid_overloads: class StaticOverloads (line 18) | class StaticOverloads: class isValid (line 19) | class isValid: method __call__ (line 21) | def __call__(y: int, m: int, d: int) -> bool: ... class InstanceOverloads (line 23) | class InstanceOverloads: class isValid (line 24) | class isValid: method __call__ (line 26) | def __call__(self) -> bool: ... method __call__ (line 28) | def __call__(self, y: int, m: int, d: int) -> bool: ... method __init__ (line 30) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 33) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 36) | def __get__(self, object: QDate, owner: typing.Any) -> InstanceOverloa... class _add_QFile_copy_overloads (line 38) | class _add_QFile_copy_overloads: class StaticOverloads (line 45) | class StaticOverloads: class copy (line 46) | class copy: method __call__ (line 48) | def __call__(fileName: str, newName: str) -> bool: ... class InstanceOverloads (line 50) | class InstanceOverloads: class copy (line 51) | class copy: method __call__ (line 53) | def __call__(self, newName: str) -> bool: ... method __call__ (line 55) | def __call__(self, fileName: str, newName: str) -> bool: ... method __init__ (line 57) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 60) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 63) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_exists_overloads (line 65) | class _add_QFile_exists_overloads: class StaticOverloads (line 72) | class StaticOverloads: class exists (line 73) | class exists: method __call__ (line 75) | def __call__(fileName: str) -> bool: ... class InstanceOverloads (line 77) | class InstanceOverloads: class exists (line 78) | class exists: method __call__ (line 80) | def __call__(self) -> bool: ... method __call__ (line 82) | def __call__(self, fileName: str) -> bool: ... method __init__ (line 84) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 87) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 90) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_link_overloads (line 92) | class _add_QFile_link_overloads: class StaticOverloads (line 99) | class StaticOverloads: class link (line 100) | class link: method __call__ (line 102) | def __call__(oldname: str, newName: str) -> bool: ... class InstanceOverloads (line 104) | class InstanceOverloads: class link (line 105) | class link: method __call__ (line 107) | def __call__(self, newName: str) -> bool: ... method __call__ (line 109) | def __call__(self, oldname: str, newName: str) -> bool: ... method __init__ (line 111) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 114) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 117) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_moveToTrash_overloads (line 119) | class _add_QFile_moveToTrash_overloads: class StaticOverloads (line 126) | class StaticOverloads: class moveToTrash (line 127) | class moveToTrash: method __call__ (line 129) | def __call__(fileName: str) -> tuple[bool, str]: ... class InstanceOverloads (line 131) | class InstanceOverloads: class moveToTrash (line 132) | class moveToTrash: method __call__ (line 134) | def __call__(self) -> bool: ... method __call__ (line 136) | def __call__(self, fileName: str) -> tuple[bool, str]: ... method __init__ (line 138) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 141) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 144) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_permissions_overloads (line 146) | class _add_QFile_permissions_overloads: class StaticOverloads (line 153) | class StaticOverloads: class permissions (line 154) | class permissions: method __call__ (line 156) | def __call__(filename: str) -> QFileDevice.Permissions | QFileDevi... class InstanceOverloads (line 158) | class InstanceOverloads: class permissions (line 159) | class permissions: method __call__ (line 161) | def __call__(self) -> QFileDevice.Permissions | QFileDevice.Permis... method __call__ (line 163) | def __call__(self, filename: str) -> QFileDevice.Permissions | QFi... method __init__ (line 165) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 168) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 171) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_readLink_overloads (line 173) | class _add_QFile_readLink_overloads: class StaticOverloads (line 180) | class StaticOverloads: class readLink (line 181) | class readLink: method __call__ (line 183) | def __call__(fileName: str) -> str: ... class InstanceOverloads (line 185) | class InstanceOverloads: class readLink (line 186) | class readLink: method __call__ (line 188) | def __call__(self) -> str: ... method __call__ (line 190) | def __call__(self, fileName: str) -> str: ... method __init__ (line 192) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 195) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 198) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_remove_overloads (line 200) | class _add_QFile_remove_overloads: class StaticOverloads (line 207) | class StaticOverloads: class remove (line 208) | class remove: method __call__ (line 210) | def __call__(fileName: str) -> bool: ... class InstanceOverloads (line 212) | class InstanceOverloads: class remove (line 213) | class remove: method __call__ (line 215) | def __call__(self) -> bool: ... method __call__ (line 217) | def __call__(self, fileName: str) -> bool: ... method __init__ (line 219) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 222) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 225) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_rename_overloads (line 227) | class _add_QFile_rename_overloads: class StaticOverloads (line 234) | class StaticOverloads: class rename (line 235) | class rename: method __call__ (line 237) | def __call__(oldName: str, newName: str) -> bool: ... class InstanceOverloads (line 239) | class InstanceOverloads: class rename (line 240) | class rename: method __call__ (line 242) | def __call__(self, newName: str) -> bool: ... method __call__ (line 244) | def __call__(self, oldName: str, newName: str) -> bool: ... method __init__ (line 246) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 249) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 252) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_resize_overloads (line 254) | class _add_QFile_resize_overloads: class StaticOverloads (line 261) | class StaticOverloads: class resize (line 262) | class resize: method __call__ (line 264) | def __call__(filename: str, sz: int) -> bool: ... class InstanceOverloads (line 266) | class InstanceOverloads: class resize (line 267) | class resize: method __call__ (line 269) | def __call__(self, sz: int) -> bool: ... method __call__ (line 271) | def __call__(self, filename: str, sz: int) -> bool: ... method __init__ (line 273) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 276) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 279) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_setPermissions_overloads (line 281) | class _add_QFile_setPermissions_overloads: class StaticOverloads (line 288) | class StaticOverloads: class setPermissions (line 289) | class setPermissions: method __call__ (line 291) | def __call__(filename: str, permissionSpec: QFileDevice.Permission... class InstanceOverloads (line 293) | class InstanceOverloads: class setPermissions (line 294) | class setPermissions: method __call__ (line 296) | def __call__(self, permissionSpec: QFileDevice.Permissions | QFile... method __call__ (line 298) | def __call__(self, filename: str, permissionSpec: QFileDevice.Perm... method __init__ (line 300) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 303) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 306) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_symLinkTarget_overloads (line 308) | class _add_QFile_symLinkTarget_overloads: class StaticOverloads (line 315) | class StaticOverloads: class symLinkTarget (line 316) | class symLinkTarget: method __call__ (line 318) | def __call__(fileName: str) -> str: ... class InstanceOverloads (line 320) | class InstanceOverloads: class symLinkTarget (line 321) | class symLinkTarget: method __call__ (line 323) | def __call__(self) -> str: ... method __call__ (line 325) | def __call__(self, fileName: str) -> str: ... method __init__ (line 327) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 330) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 333) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFileInfo_exists_overloads (line 335) | class _add_QFileInfo_exists_overloads: class StaticOverloads (line 342) | class StaticOverloads: class exists (line 343) | class exists: method __call__ (line 345) | def __call__(file: str) -> bool: ... class InstanceOverloads (line 347) | class InstanceOverloads: class exists (line 348) | class exists: method __call__ (line 350) | def __call__(self) -> bool: ... method __call__ (line 352) | def __call__(self, file: str) -> bool: ... method __init__ (line 354) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 357) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 360) | def __get__(self, object: QFileInfo, owner: typing.Any) -> InstanceOve... class _add_QObject_connect_overloads (line 362) | class _add_QObject_connect_overloads: class StaticOverloads (line 369) | class StaticOverloads: class connect (line 370) | class connect: method __call__ (line 373) | def __call__(arg__1: QObject, arg__2: bytes, arg__3: typing.Callab... method __call__ (line 376) | def __call__(sender: QObject, signal: QMetaMethod, receiver: QObje... method __call__ (line 379) | def __call__(sender: QObject, signal: bytes, receiver: QObject, me... class InstanceOverloads (line 381) | class InstanceOverloads: class connect (line 382) | class connect: method __call__ (line 384) | def __call__(self, arg__1: bytes, arg__2: typing.Callable, type: Q... method __call__ (line 386) | def __call__(self, arg__1: bytes, arg__2: QObject, arg__3: bytes, ... method __call__ (line 388) | def __call__(self, sender: QObject, signal: bytes, member: bytes, ... method __call__ (line 390) | def __call__(self, arg__1: QObject, arg__2: bytes, arg__3: typing.... method __call__ (line 392) | def __call__(self, sender: QObject, signal: QMetaMethod, receiver:... method __call__ (line 394) | def __call__(self, sender: QObject, signal: bytes, receiver: QObje... method __init__ (line 396) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 399) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 402) | def __get__(self, object: QObject, owner: typing.Any) -> InstanceOverl... class _add_QProcess_startDetached_overloads (line 404) | class _add_QProcess_startDetached_overloads: class StaticOverloads (line 411) | class StaticOverloads: class startDetached (line 412) | class startDetached: method __call__ (line 415) | def __call__(command: str) -> bool: ... method __call__ (line 418) | def __call__(program: str, arguments: typing.Iterable[str]) -> boo... method __call__ (line 421) | def __call__(program: str, arguments: typing.Iterable[str], workin... class InstanceOverloads (line 423) | class InstanceOverloads: class startDetached (line 424) | class startDetached: method __call__ (line 426) | def __call__(self) -> tuple[bool, int]: ... method __call__ (line 428) | def __call__(self, command: str) -> bool: ... method __call__ (line 430) | def __call__(self, program: str, arguments: typing.Iterable[str]) ... method __call__ (line 432) | def __call__(self, program: str, arguments: typing.Iterable[str], ... method __init__ (line 434) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 437) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 440) | def __get__(self, object: QProcess, owner: typing.Any) -> InstanceOver... class _add_QTime_isValid_overloads (line 442) | class _add_QTime_isValid_overloads: class StaticOverloads (line 449) | class StaticOverloads: class isValid (line 450) | class isValid: method __call__ (line 452) | def __call__(h: int, m: int, s: int, ms: int = ...) -> bool: ... class InstanceOverloads (line 454) | class InstanceOverloads: class isValid (line 455) | class isValid: method __call__ (line 457) | def __call__(self) -> bool: ... method __call__ (line 459) | def __call__(self, h: int, m: int, s: int, ms: int = ...) -> bool:... method __init__ (line 461) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 464) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 467) | def __get__(self, object: QTime, owner: typing.Any) -> InstanceOverloa... class ClassInfo (line 478) | class ClassInfo: method __init__ (line 479) | def __init__(self, **info: dict[str, str]) -> None: ... method __call__ (line 480) | def __call__(self, *args, **kwargs): ... class MetaFunction (line 482) | class MetaFunction: method __init__ (line 484) | def __init__(cls, *args, **kwargs) -> None: ... method __call__ (line 485) | def __call__(self, *args: typing.Any) -> typing.Any: ... class MetaSignal (line 487) | class MetaSignal(type): method __instancecheck__ (line 489) | def __instancecheck__(object: object) -> bool: ... class Property (line 491) | class Property: method __init__ (line 496) | def __init__(self, type: type, fget: typing.Callable | None = ..., fse... method deleter (line 497) | def deleter(self, func: typing.Callable) -> None: ... method getter (line 498) | def getter(self, func: typing.Callable) -> None: ... method read (line 499) | def read(self, func: typing.Callable) -> None: ... method resetter (line 500) | def resetter(self, *args, **kwargs): ... method setter (line 501) | def setter(self, func: typing.Callable) -> None: ... method write (line 502) | def write(self, func: typing.Callable) -> None: ... method __call__ (line 503) | def __call__(self, *args, **kwargs): ... class QAbstractAnimation (line 505) | class QAbstractAnimation(QObject): class DeletionPolicy (line 506) | class DeletionPolicy: method __init__ (line 512) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 513) | def __add__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __and__ (line 514) | def __and__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __bool__ (line 515) | def __bool__(self) -> bool: ... method __eq__ (line 516) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 517) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 518) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 519) | def __hash__(self) -> int: ... method __index__ (line 520) | def __index__(self) -> int: ... method __int__ (line 521) | def __int__(self) -> int: ... method __le__ (line 522) | def __le__(self, other: object) -> bool: ... method __lt__ (line 523) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 524) | def __mul__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __ne__ (line 525) | def __ne__(self, other: object) -> bool: ... method __or__ (line 526) | def __or__(self, other: typing.SupportsInt) -> QAbstractAnimation.De... method __pos__ (line 527) | def __pos__(self): ... method __radd__ (line 528) | def __radd__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rand__ (line 529) | def __rand__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rmul__ (line 530) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __ror__ (line 531) | def __ror__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __rsub__ (line 532) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rxor__ (line 533) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __sub__ (line 534) | def __sub__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __xor__ (line 535) | def __xor__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... class Direction (line 537) | class Direction: method __init__ (line 543) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 544) | def __add__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __and__ (line 545) | def __and__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __bool__ (line 546) | def __bool__(self) -> bool: ... method __eq__ (line 547) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 548) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 549) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 550) | def __hash__(self) -> int: ... method __index__ (line 551) | def __index__(self) -> int: ... method __int__ (line 552) | def __int__(self) -> int: ... method __le__ (line 553) | def __le__(self, other: object) -> bool: ... method __lt__ (line 554) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 555) | def __mul__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __ne__ (line 556) | def __ne__(self, other: object) -> bool: ... method __or__ (line 557) | def __or__(self, other: typing.SupportsInt) -> QAbstractAnimation.Di... method __pos__ (line 558) | def __pos__(self): ... method __radd__ (line 559) | def __radd__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rand__ (line 560) | def __rand__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rmul__ (line 561) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __ror__ (line 562) | def __ror__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __rsub__ (line 563) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rxor__ (line 564) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __sub__ (line 565) | def __sub__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... method __xor__ (line 566) | def __xor__(self, other: typing.SupportsInt) -> QAbstractAnimation.D... class State (line 568) | class State: method __init__ (line 575) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 576) | def __add__(self, other: typing.SupportsInt) -> QAbstractAnimation.S... method __and__ (line 577) | def __and__(self, other: typing.SupportsInt) -> QAbstractAnimation.S... method __bool__ (line 578) | def __bool__(self) -> bool: ... method __eq__ (line 579) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 580) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 581) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 582) | def __hash__(self) -> int: ... method __index__ (line 583) | def __index__(self) -> int: ... method __int__ (line 584) | def __int__(self) -> int: ... method __le__ (line 585) | def __le__(self, other: object) -> bool: ... method __lt__ (line 586) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 587) | def __mul__(self, other: typing.SupportsInt) -> QAbstractAnimation.S... method __ne__ (line 588) | def __ne__(self, other: object) -> bool: ... method __or__ (line 589) | def __or__(self, other: typing.SupportsInt) -> QAbstractAnimation.St... method __pos__ (line 590) | def __pos__(self): ... method __radd__ (line 591) | def __radd__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rand__ (line 592) | def __rand__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rmul__ (line 593) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __ror__ (line 594) | def __ror__(self, other: typing.SupportsInt) -> QAbstractAnimation.S... method __rsub__ (line 595) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __rxor__ (line 596) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractAnimation.... method __sub__ (line 597) | def __sub__(self, other: typing.SupportsInt) -> QAbstractAnimation.S... method __xor__ (line 598) | def __xor__(self, other: typing.SupportsInt) -> QAbstractAnimation.S... method __init__ (line 611) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method currentLoop (line 612) | def currentLoop(self) -> int: ... method currentLoopTime (line 613) | def currentLoopTime(self) -> int: ... method currentTime (line 614) | def currentTime(self) -> int: ... method direction (line 615) | def direction(self) -> QAbstractAnimation.Direction: ... method duration (line 616) | def duration(self) -> int: ... method event (line 617) | def event(self, event: QEvent) -> bool: ... method group (line 618) | def group(self) -> QAnimationGroup: ... method loopCount (line 619) | def loopCount(self) -> int: ... method pause (line 620) | def pause(self) -> None: ... method resume (line 621) | def resume(self) -> None: ... method setCurrentTime (line 622) | def setCurrentTime(self, msecs: int) -> None: ... method setDirection (line 623) | def setDirection(self, direction: QAbstractAnimation.Direction) -> Non... method setLoopCount (line 624) | def setLoopCount(self, loopCount: int) -> None: ... method setPaused (line 625) | def setPaused(self, arg__1: bool) -> None: ... method start (line 626) | def start(self, policy: QAbstractAnimation.DeletionPolicy = ...) -> No... method state (line 627) | def state(self) -> QAbstractAnimation.State: ... method stop (line 628) | def stop(self) -> None: ... method totalDuration (line 629) | def totalDuration(self) -> int: ... method updateCurrentTime (line 630) | def updateCurrentTime(self, currentTime: int) -> None: ... method updateDirection (line 631) | def updateDirection(self, direction: QAbstractAnimation.Direction) -> ... method updateState (line 632) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QAbstractEventDispatcher (line 634) | class QAbstractEventDispatcher(QObject): class TimerInfo (line 635) | class TimerInfo(shiboken2.Object): method __init__ (line 639) | def __init__(self, id: int, i: int, t: Qt.TimerType) -> None: ... method __init__ (line 643) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method closingDown (line 644) | def closingDown(self) -> None: ... method filterNativeEvent (line 645) | def filterNativeEvent(self, eventType: QByteArray | bytes, message: in... method flush (line 646) | def flush(self) -> None: ... method hasPendingEvents (line 647) | def hasPendingEvents(self) -> bool: ... method installNativeEventFilter (line 648) | def installNativeEventFilter(self, filterObj: QAbstractNativeEventFilt... method instance (line 650) | def instance(thread: QThread | None = ...) -> QAbstractEventDispatcher... method interrupt (line 651) | def interrupt(self) -> None: ... method processEvents (line 652) | def processEvents(self, flags: QEventLoop.ProcessEventsFlags | QEventL... method registerSocketNotifier (line 653) | def registerSocketNotifier(self, notifier: QSocketNotifier) -> None: ... method registerTimer (line 655) | def registerTimer(self, timerId: int, interval: int, timerType: Qt.Tim... method registerTimer (line 657) | def registerTimer(self, interval: int, timerType: Qt.TimerType, object... method registeredTimers (line 658) | def registeredTimers(self, object: QObject) -> list[QAbstractEventDisp... method remainingTime (line 659) | def remainingTime(self, timerId: int) -> int: ... method removeNativeEventFilter (line 660) | def removeNativeEventFilter(self, filterObj: QAbstractNativeEventFilte... method startingUp (line 661) | def startingUp(self) -> None: ... method unregisterSocketNotifier (line 662) | def unregisterSocketNotifier(self, notifier: QSocketNotifier) -> None:... method unregisterTimer (line 663) | def unregisterTimer(self, timerId: int) -> bool: ... method unregisterTimers (line 664) | def unregisterTimers(self, object: QObject) -> bool: ... method wakeUp (line 665) | def wakeUp(self) -> None: ... class QAbstractItemModel (line 667) | class QAbstractItemModel(QObject): class CheckIndexOption (line 668) | class CheckIndexOption: method __init__ (line 676) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 677) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemModel.C... method __bool__ (line 678) | def __bool__(self) -> bool: ... method __eq__ (line 679) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 680) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 681) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 682) | def __hash__(self) -> int: ... method __index__ (line 683) | def __index__(self) -> int: ... method __int__ (line 684) | def __int__(self) -> int: ... method __invert__ (line 685) | def __invert__(self) -> QAbstractItemModel.CheckIndexOptions: ... method __le__ (line 686) | def __le__(self, other: object) -> bool: ... method __lt__ (line 687) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 688) | def __ne__(self, other: object) -> bool: ... method __or__ (line 689) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemModel.Ch... method __rand__ (line 690) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __ror__ (line 691) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemModel.C... method __rxor__ (line 692) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __xor__ (line 693) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemModel.C... class CheckIndexOptions (line 695) | class CheckIndexOptions: method __init__ (line 697) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 698) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemModel.C... method __bool__ (line 699) | def __bool__(self) -> bool: ... method __eq__ (line 700) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 701) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 702) | def __gt__(self, other: object) -> bool: ... method __index__ (line 703) | def __index__(self) -> int: ... method __int__ (line 704) | def __int__(self) -> int: ... method __invert__ (line 705) | def __invert__(self) -> QAbstractItemModel.CheckIndexOptions: ... method __le__ (line 706) | def __le__(self, other: object) -> bool: ... method __lt__ (line 707) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 708) | def __ne__(self, other: object) -> bool: ... method __or__ (line 709) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemModel.Ch... method __rand__ (line 710) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __ror__ (line 711) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemModel.C... method __rxor__ (line 712) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __xor__ (line 713) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemModel.C... class LayoutChangeHint (line 715) | class LayoutChangeHint: method __init__ (line 722) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 723) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemModel.L... method __and__ (line 724) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemModel.L... method __bool__ (line 725) | def __bool__(self) -> bool: ... method __eq__ (line 726) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 727) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 728) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 729) | def __hash__(self) -> int: ... method __index__ (line 730) | def __index__(self) -> int: ... method __int__ (line 731) | def __int__(self) -> int: ... method __le__ (line 732) | def __le__(self, other: object) -> bool: ... method __lt__ (line 733) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 734) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemModel.L... method __ne__ (line 735) | def __ne__(self, other: object) -> bool: ... method __or__ (line 736) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemModel.La... method __pos__ (line 737) | def __pos__(self): ... method __radd__ (line 738) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __rand__ (line 739) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __rmul__ (line 740) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __ror__ (line 741) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemModel.L... method __rsub__ (line 742) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __rxor__ (line 743) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemModel.... method __sub__ (line 744) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemModel.L... method __xor__ (line 745) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemModel.L... method __init__ (line 768) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method beginInsertColumns (line 769) | def beginInsertColumns(self, parent: QModelIndex, first: int, last: in... method beginInsertRows (line 770) | def beginInsertRows(self, parent: QModelIndex, first: int, last: int) ... method beginMoveColumns (line 771) | def beginMoveColumns(self, sourceParent: QModelIndex, sourceFirst: int... method beginMoveRows (line 772) | def beginMoveRows(self, sourceParent: QModelIndex, sourceFirst: int, s... method beginRemoveColumns (line 773) | def beginRemoveColumns(self, parent: QModelIndex, first: int, last: in... method beginRemoveRows (line 774) | def beginRemoveRows(self, parent: QModelIndex, first: int, last: int) ... method beginResetModel (line 775) | def beginResetModel(self) -> None: ... method buddy (line 776) | def buddy(self, index: QModelIndex) -> QModelIndex: ... method canDropMimeData (line 777) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method canFetchMore (line 778) | def canFetchMore(self, parent: QModelIndex) -> bool: ... method changePersistentIndex (line 779) | def changePersistentIndex(self, from_: QModelIndex, to: QModelIndex) -... method changePersistentIndexList (line 780) | def changePersistentIndexList(self, from_: list[QModelIndex], to: list... method checkIndex (line 781) | def checkIndex(self, index: QModelIndex, options: QAbstractItemModel.C... method columnCount (line 782) | def columnCount(self, parent: QModelIndex = ...) -> int: ... method createIndex (line 784) | def createIndex(self, row: int, column: int, ptr: object) -> QModelInd... method createIndex (line 786) | def createIndex(self, row: int, column: int, id: int = ...) -> QModelI... method data (line 787) | def data(self, index: QModelIndex, role: Qt.ItemDataRole = ...) -> typ... method decodeData (line 788) | def decodeData(self, row: int, column: int, parent: QModelIndex, strea... method dropMimeData (line 789) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method encodeData (line 790) | def encodeData(self, indexes: list[int], stream: QDataStream) -> None:... method endInsertColumns (line 791) | def endInsertColumns(self) -> None: ... method endInsertRows (line 792) | def endInsertRows(self) -> None: ... method endMoveColumns (line 793) | def endMoveColumns(self) -> None: ... method endMoveRows (line 794) | def endMoveRows(self) -> None: ... method endRemoveColumns (line 795) | def endRemoveColumns(self) -> None: ... method endRemoveRows (line 796) | def endRemoveRows(self) -> None: ... method endResetModel (line 797) | def endResetModel(self) -> None: ... method fetchMore (line 798) | def fetchMore(self, parent: QModelIndex) -> None: ... method flags (line 799) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method hasChildren (line 800) | def hasChildren(self, parent: QModelIndex = ...) -> bool: ... method hasIndex (line 801) | def hasIndex(self, row: int, column: int, parent: QModelIndex = ...) -... method headerData (line 802) | def headerData(self, section: int, orientation: Qt.Orientation, role: ... method index (line 803) | def index(self, row: int, column: int, parent: QModelIndex = ...) -> Q... method insertColumn (line 804) | def insertColumn(self, column: int, parent: QModelIndex = ...) -> bool... method insertColumns (line 805) | def insertColumns(self, column: int, count: int, parent: QModelIndex =... method insertRow (line 806) | def insertRow(self, row: int, parent: QModelIndex = ...) -> bool: ... method insertRows (line 807) | def insertRows(self, row: int, count: int, parent: QModelIndex = ...) ... method itemData (line 808) | def itemData(self, index: QModelIndex) -> dict[int, typing.Any]: ... method match (line 809) | def match(self, start: QModelIndex, role: Qt.ItemDataRole, value: typi... method mimeData (line 810) | def mimeData(self, indexes: list[QModelIndex]) -> QMimeData: ... method mimeTypes (line 811) | def mimeTypes(self) -> list[str]: ... method moveColumn (line 812) | def moveColumn(self, sourceParent: QModelIndex, sourceColumn: int, des... method moveColumns (line 813) | def moveColumns(self, sourceParent: QModelIndex, sourceColumn: int, co... method moveRow (line 814) | def moveRow(self, sourceParent: QModelIndex, sourceRow: int, destinati... method moveRows (line 815) | def moveRows(self, sourceParent: QModelIndex, sourceRow: int, count: i... method parent (line 817) | def parent(self, child: QModelIndex) -> QModelIndex: ... method parent (line 819) | def parent(self) -> QObject: ... method persistentIndexList (line 820) | def persistentIndexList(self) -> list[QModelIndex]: ... method removeColumn (line 821) | def removeColumn(self, column: int, parent: QModelIndex = ...) -> bool... method removeColumns (line 822) | def removeColumns(self, column: int, count: int, parent: QModelIndex =... method removeRow (line 823) | def removeRow(self, row: int, parent: QModelIndex = ...) -> bool: ... method removeRows (line 824) | def removeRows(self, row: int, count: int, parent: QModelIndex = ...) ... method resetInternalData (line 825) | def resetInternalData(self) -> None: ... method revert (line 826) | def revert(self) -> None: ... method roleNames (line 827) | def roleNames(self) -> dict[int, QByteArray]: ... method rowCount (line 828) | def rowCount(self, parent: QModelIndex = ...) -> int: ... method setData (line 829) | def setData(self, index: QModelIndex, value: typing.Any, role: Qt.Item... method setHeaderData (line 830) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setItemData (line 831) | def setItemData(self, index: QModelIndex, roles: dict[int, typing.Any]... method sibling (line 832) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... method sort (line 833) | def sort(self, column: int, order: Qt.SortOrder = ...) -> None: ... method span (line 834) | def span(self, index: QModelIndex) -> QSize: ... method submit (line 835) | def submit(self) -> bool: ... method supportedDragActions (line 836) | def supportedDragActions(self) -> Qt.DropActions | Qt.DropAction: ... method supportedDropActions (line 837) | def supportedDropActions(self) -> Qt.DropActions | Qt.DropAction: ... class QAbstractListModel (line 839) | class QAbstractListModel(QAbstractItemModel): method __init__ (line 841) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method columnCount (line 842) | def columnCount(self, parent: QModelIndex) -> int: ... # type: ignore... method dropMimeData (line 843) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method flags (line 844) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method hasChildren (line 845) | def hasChildren(self, parent: QModelIndex) -> bool: ... # type: ignor... method index (line 846) | def index(self, row: int, column: int = ..., parent: QModelIndex = ...... method parent (line 848) | def parent(self, child: QModelIndex) -> QModelIndex: ... method parent (line 850) | def parent(self) -> QObject: ... method sibling (line 851) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... class QAbstractNativeEventFilter (line 853) | class QAbstractNativeEventFilter(shiboken2.Object): method __init__ (line 854) | def __init__(self) -> None: ... method nativeEventFilter (line 855) | def nativeEventFilter(self, eventType: QByteArray | bytes, message: in... class QAbstractProxyModel (line 857) | class QAbstractProxyModel(QAbstractItemModel): method __init__ (line 860) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method buddy (line 861) | def buddy(self, index: QModelIndex) -> QModelIndex: ... method canDropMimeData (line 862) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method canFetchMore (line 863) | def canFetchMore(self, parent: QModelIndex) -> bool: ... method data (line 864) | def data(self, proxyIndex: QModelIndex, role: Qt.ItemDataRole = ...) -... method dropMimeData (line 865) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method fetchMore (line 866) | def fetchMore(self, parent: QModelIndex) -> None: ... method flags (line 867) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method hasChildren (line 868) | def hasChildren(self, parent: QModelIndex = ...) -> bool: ... method headerData (line 869) | def headerData(self, section: int, orientation: Qt.Orientation, role: ... method itemData (line 870) | def itemData(self, index: QModelIndex) -> dict[int, typing.Any]: ... method mapFromSource (line 871) | def mapFromSource(self, sourceIndex: QModelIndex) -> QModelIndex: ... method mapSelectionFromSource (line 872) | def mapSelectionFromSource(self, selection: QItemSelection) -> QItemSe... method mapSelectionToSource (line 873) | def mapSelectionToSource(self, selection: QItemSelection) -> QItemSele... method mapToSource (line 874) | def mapToSource(self, proxyIndex: QModelIndex) -> QModelIndex: ... method mimeData (line 875) | def mimeData(self, indexes: list[int]) -> QMimeData: ... # type: igno... method mimeTypes (line 876) | def mimeTypes(self) -> list[str]: ... method resetInternalData (line 877) | def resetInternalData(self) -> None: ... method revert (line 878) | def revert(self) -> None: ... method setData (line 879) | def setData(self, index: QModelIndex, value: typing.Any, role: Qt.Item... method setHeaderData (line 880) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setItemData (line 881) | def setItemData(self, index: QModelIndex, roles: dict[int, typing.Any]... method setSourceModel (line 882) | def setSourceModel(self, sourceModel: QAbstractItemModel) -> None: ... method sibling (line 883) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... method sort (line 884) | def sort(self, column: int, order: Qt.SortOrder = ...) -> None: ... method sourceModel (line 885) | def sourceModel(self) -> QAbstractItemModel: ... method span (line 886) | def span(self, index: QModelIndex) -> QSize: ... method submit (line 887) | def submit(self) -> bool: ... method supportedDragActions (line 888) | def supportedDragActions(self) -> Qt.DropActions | Qt.DropAction: ... method supportedDropActions (line 889) | def supportedDropActions(self) -> Qt.DropActions | Qt.DropAction: ... class QAbstractState (line 891) | class QAbstractState(QObject): method __init__ (line 896) | def __init__(self, parent: QState | None = ..., destroyed: typing.Call... method active (line 897) | def active(self) -> bool: ... method event (line 898) | def event(self, e: QEvent) -> bool: ... method machine (line 899) | def machine(self) -> QStateMachine: ... method onEntry (line 900) | def onEntry(self, event: QEvent) -> None: ... method onExit (line 901) | def onExit(self, event: QEvent) -> None: ... method parentState (line 902) | def parentState(self) -> QState: ... class QAbstractTableModel (line 904) | class QAbstractTableModel(QAbstractItemModel): method __init__ (line 906) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method dropMimeData (line 907) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method flags (line 908) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method hasChildren (line 909) | def hasChildren(self, parent: QModelIndex) -> bool: ... # type: ignor... method index (line 910) | def index(self, row: int, column: int, parent: QModelIndex = ...) -> Q... method parent (line 912) | def parent(self, child: QModelIndex) -> QModelIndex: ... method parent (line 914) | def parent(self) -> QObject: ... method sibling (line 915) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... class QAbstractTransition (line 917) | class QAbstractTransition(QObject): class TransitionType (line 918) | class TransitionType: method __init__ (line 924) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 925) | def __add__(self, other: typing.SupportsInt) -> QAbstractTransition.... method __and__ (line 926) | def __and__(self, other: typing.SupportsInt) -> QAbstractTransition.... method __bool__ (line 927) | def __bool__(self) -> bool: ... method __eq__ (line 928) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 929) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 930) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 931) | def __hash__(self) -> int: ... method __index__ (line 932) | def __index__(self) -> int: ... method __int__ (line 933) | def __int__(self) -> int: ... method __le__ (line 934) | def __le__(self, other: object) -> bool: ... method __lt__ (line 935) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 936) | def __mul__(self, other: typing.SupportsInt) -> QAbstractTransition.... method __ne__ (line 937) | def __ne__(self, other: object) -> bool: ... method __or__ (line 938) | def __or__(self, other: typing.SupportsInt) -> QAbstractTransition.T... method __pos__ (line 939) | def __pos__(self): ... method __radd__ (line 940) | def __radd__(self, other: typing.SupportsInt) -> QAbstractTransition... method __rand__ (line 941) | def __rand__(self, other: typing.SupportsInt) -> QAbstractTransition... method __rmul__ (line 942) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractTransition... method __ror__ (line 943) | def __ror__(self, other: typing.SupportsInt) -> QAbstractTransition.... method __rsub__ (line 944) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractTransition... method __rxor__ (line 945) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractTransition... method __sub__ (line 946) | def __sub__(self, other: typing.SupportsInt) -> QAbstractTransition.... method __xor__ (line 947) | def __xor__(self, other: typing.SupportsInt) -> QAbstractTransition.... method __init__ (line 954) | def __init__(self, sourceState: QState | None = ..., destroyed: typing... method addAnimation (line 955) | def addAnimation(self, animation: QAbstractAnimation) -> None: ... method animations (line 956) | def animations(self) -> list[QAbstractAnimation]: ... method event (line 957) | def event(self, e: QEvent) -> bool: ... method eventTest (line 958) | def eventTest(self, event: QEvent) -> bool: ... method machine (line 959) | def machine(self) -> QStateMachine: ... method onTransition (line 960) | def onTransition(self, event: QEvent) -> None: ... method removeAnimation (line 961) | def removeAnimation(self, animation: QAbstractAnimation) -> None: ... method setTargetState (line 962) | def setTargetState(self, target: QAbstractState) -> None: ... method setTargetStates (line 963) | def setTargetStates(self, targets: typing.Iterable[QAbstractState]) ->... method setTransitionType (line 964) | def setTransitionType(self, type: QAbstractTransition.TransitionType) ... method sourceState (line 965) | def sourceState(self) -> QState: ... method targetState (line 966) | def targetState(self) -> QAbstractState: ... method targetStates (line 967) | def targetStates(self) -> list[QAbstractState]: ... method transitionType (line 968) | def transitionType(self) -> QAbstractTransition.TransitionType: ... class QAnimationGroup (line 970) | class QAnimationGroup(QAbstractAnimation): method __init__ (line 972) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method addAnimation (line 973) | def addAnimation(self, animation: QAbstractAnimation) -> None: ... method animationAt (line 974) | def animationAt(self, index: int) -> QAbstractAnimation: ... method animationCount (line 975) | def animationCount(self) -> int: ... method clear (line 976) | def clear(self) -> None: ... method event (line 977) | def event(self, event: QEvent) -> bool: ... method indexOfAnimation (line 978) | def indexOfAnimation(self, animation: QAbstractAnimation) -> int: ... method insertAnimation (line 979) | def insertAnimation(self, index: int, animation: QAbstractAnimation) -... method removeAnimation (line 980) | def removeAnimation(self, animation: QAbstractAnimation) -> None: ... method takeAnimation (line 981) | def takeAnimation(self, index: int) -> QAbstractAnimation: ... class QBasicMutex (line 983) | class QBasicMutex(shiboken2.Object): method __init__ (line 984) | def __init__(self) -> None: ... method isRecursive (line 985) | def isRecursive(self) -> bool: ... method lock (line 986) | def lock(self) -> None: ... method tryLock (line 987) | def tryLock(self) -> bool: ... method try_lock (line 988) | def try_lock(self) -> bool: ... method unlock (line 989) | def unlock(self) -> None: ... class QBasicTimer (line 991) | class QBasicTimer(shiboken2.Object): method __init__ (line 993) | def __init__(self, arg__1: QBasicTimer) -> None: ... method __init__ (line 995) | def __init__(self) -> None: ... method isActive (line 996) | def isActive(self) -> bool: ... method start (line 998) | def start(self, msec: int, timerType: Qt.TimerType, obj: QObject) -> N... method start (line 1000) | def start(self, msec: int, obj: QObject) -> None: ... method stop (line 1001) | def stop(self) -> None: ... method swap (line 1002) | def swap(self, other: QBasicTimer) -> None: ... method timerId (line 1003) | def timerId(self) -> int: ... class QBitArray (line 1005) | class QBitArray(shiboken2.Object): method __init__ (line 1007) | def __init__(self, size: int, val: bool = ...) -> None: ... method __init__ (line 1009) | def __init__(self, other: QBitArray) -> None: ... method __init__ (line 1011) | def __init__(self) -> None: ... method at (line 1012) | def at(self, i: int) -> bool: ... method bits (line 1013) | def bits(self) -> bytes: ... method clear (line 1014) | def clear(self) -> None: ... method clearBit (line 1015) | def clearBit(self, i: int) -> None: ... method count (line 1017) | def count(self, on: bool) -> int: ... method count (line 1019) | def count(self) -> int: ... method fill (line 1021) | def fill(self, val: bool, first: int, last: int) -> None: ... method fill (line 1023) | def fill(self, val: bool, size: int = ...) -> bool: ... method fromBits (line 1025) | def fromBits(data: bytes, len: int) -> QBitArray: ... method isEmpty (line 1026) | def isEmpty(self) -> bool: ... method isNull (line 1027) | def isNull(self) -> bool: ... method resize (line 1028) | def resize(self, size: int) -> None: ... method setBit (line 1030) | def setBit(self, i: int, val: bool) -> None: ... method setBit (line 1032) | def setBit(self, i: int) -> None: ... method size (line 1033) | def size(self) -> int: ... method swap (line 1034) | def swap(self, other: QBitArray) -> None: ... method testBit (line 1035) | def testBit(self, i: int) -> bool: ... method toggleBit (line 1036) | def toggleBit(self, i: int) -> bool: ... method truncate (line 1037) | def truncate(self, pos: int) -> None: ... method __and__ (line 1038) | def __and__(self, arg__2: QBitArray) -> QBitArray: ... method __bool__ (line 1039) | def __bool__(self) -> bool: ... method __copy__ (line 1040) | def __copy__(self) -> None: ... method __delitem__ (line 1041) | def __delitem__(self, other) -> None: ... method __eq__ (line 1042) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1043) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 1044) | def __getitem__(self, index): ... method __gt__ (line 1045) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1046) | def __hash__(self) -> int: ... method __iand__ (line 1047) | def __iand__(self, arg__1: QBitArray) -> QBitArray: ... method __invert__ (line 1048) | def __invert__(self) -> QBitArray: ... method __ior__ (line 1049) | def __ior__(self, arg__1: QBitArray) -> QBitArray: ... method __ixor__ (line 1050) | def __ixor__(self, arg__1: QBitArray) -> QBitArray: ... method __le__ (line 1051) | def __le__(self, other: object) -> bool: ... method __len__ (line 1052) | def __len__(self) -> int: ... method __lt__ (line 1053) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1054) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1055) | def __or__(self, arg__2: QBitArray) -> QBitArray: ... method __rand__ (line 1056) | def __rand__(self, other): ... method __ror__ (line 1057) | def __ror__(self, other): ... method __rxor__ (line 1058) | def __rxor__(self, other): ... method __setitem__ (line 1059) | def __setitem__(self, index, object) -> None: ... method __xor__ (line 1060) | def __xor__(self, arg__2: QBitArray) -> QBitArray: ... class QBuffer (line 1062) | class QBuffer(QIODevice): method __init__ (line 1065) | def __init__(self, buf: QByteArray | bytes, parent: QObject | None = .... method __init__ (line 1067) | def __init__(self, parent: QObject | None = ..., aboutToClose: typing.... method atEnd (line 1068) | def atEnd(self) -> bool: ... method buffer (line 1069) | def buffer(self) -> QByteArray: ... method canReadLine (line 1070) | def canReadLine(self) -> bool: ... method close (line 1071) | def close(self) -> None: ... method connectNotify (line 1072) | def connectNotify(self, arg__1: QMetaMethod) -> None: ... method data (line 1073) | def data(self) -> QByteArray: ... method disconnectNotify (line 1074) | def disconnectNotify(self, arg__1: QMetaMethod) -> None: ... method open (line 1075) | def open(self, openMode: QIODevice.OpenMode | QIODevice.OpenModeFlag) ... method pos (line 1076) | def pos(self) -> int: ... method readData (line 1077) | def readData(self, data: bytes, maxlen: int) -> int: ... method seek (line 1078) | def seek(self, off: int) -> bool: ... method setBuffer (line 1079) | def setBuffer(self, a: QByteArray | bytes) -> None: ... method setData (line 1080) | def setData(self, data: QByteArray | bytes) -> None: ... method size (line 1081) | def size(self) -> int: ... method writeData (line 1082) | def writeData(self, data: bytes, len: int) -> int: ... class QByteArray (line 1084) | class QByteArray(shiboken2.Object): class Base64DecodingStatus (line 1085) | class Base64DecodingStatus: method __init__ (line 1093) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1094) | def __add__(self, other: typing.SupportsInt) -> QByteArray.Base64Dec... method __and__ (line 1095) | def __and__(self, other: typing.SupportsInt) -> QByteArray.Base64Dec... method __bool__ (line 1096) | def __bool__(self) -> bool: ... method __eq__ (line 1097) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1098) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1099) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1100) | def __hash__(self) -> int: ... method __index__ (line 1101) | def __index__(self) -> int: ... method __int__ (line 1102) | def __int__(self) -> int: ... method __le__ (line 1103) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1104) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1105) | def __mul__(self, other: typing.SupportsInt) -> QByteArray.Base64Dec... method __ne__ (line 1106) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1107) | def __or__(self, other: typing.SupportsInt) -> QByteArray.Base64Deco... method __pos__ (line 1108) | def __pos__(self): ... method __radd__ (line 1109) | def __radd__(self, other: typing.SupportsInt) -> QByteArray.Base64De... method __rand__ (line 1110) | def __rand__(self, other: typing.SupportsInt) -> QByteArray.Base64De... method __rmul__ (line 1111) | def __rmul__(self, other: typing.SupportsInt) -> QByteArray.Base64De... method __ror__ (line 1112) | def __ror__(self, other: typing.SupportsInt) -> QByteArray.Base64Dec... method __rsub__ (line 1113) | def __rsub__(self, other: typing.SupportsInt) -> QByteArray.Base64De... method __rxor__ (line 1114) | def __rxor__(self, other: typing.SupportsInt) -> QByteArray.Base64De... method __sub__ (line 1115) | def __sub__(self, other: typing.SupportsInt) -> QByteArray.Base64Dec... method __xor__ (line 1116) | def __xor__(self, other: typing.SupportsInt) -> QByteArray.Base64Dec... class Base64Option (line 1118) | class Base64Option: method __init__ (line 1128) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1129) | def __and__(self, other: typing.SupportsInt) -> QByteArray.Base64Opt... method __bool__ (line 1130) | def __bool__(self) -> bool: ... method __eq__ (line 1131) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1132) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1133) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1134) | def __hash__(self) -> int: ... method __index__ (line 1135) | def __index__(self) -> int: ... method __int__ (line 1136) | def __int__(self) -> int: ... method __invert__ (line 1137) | def __invert__(self) -> QByteArray.Base64Options: ... method __le__ (line 1138) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1139) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1140) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1141) | def __or__(self, other: typing.SupportsInt) -> QByteArray.Base64Opti... method __rand__ (line 1142) | def __rand__(self, other: typing.SupportsInt) -> QByteArray.Base64Op... method __ror__ (line 1143) | def __ror__(self, other: typing.SupportsInt) -> QByteArray.Base64Opt... method __rxor__ (line 1144) | def __rxor__(self, other: typing.SupportsInt) -> QByteArray.Base64Op... method __xor__ (line 1145) | def __xor__(self, other: typing.SupportsInt) -> QByteArray.Base64Opt... class Base64Options (line 1147) | class Base64Options: method __init__ (line 1149) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1150) | def __and__(self, other: typing.SupportsInt) -> QByteArray.Base64Opt... method __bool__ (line 1151) | def __bool__(self) -> bool: ... method __eq__ (line 1152) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1153) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1154) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1155) | def __index__(self) -> int: ... method __int__ (line 1156) | def __int__(self) -> int: ... method __invert__ (line 1157) | def __invert__(self) -> QByteArray.Base64Options: ... method __le__ (line 1158) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1159) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1160) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1161) | def __or__(self, other: typing.SupportsInt) -> QByteArray.Base64Opti... method __rand__ (line 1162) | def __rand__(self, other: typing.SupportsInt) -> QByteArray.Base64Op... method __ror__ (line 1163) | def __ror__(self, other: typing.SupportsInt) -> QByteArray.Base64Opt... method __rxor__ (line 1164) | def __rxor__(self, other: typing.SupportsInt) -> QByteArray.Base64Op... method __xor__ (line 1165) | def __xor__(self, other: typing.SupportsInt) -> QByteArray.Base64Opt... class FromBase64Result (line 1167) | class FromBase64Result(shiboken2.Object): method __init__ (line 1171) | def __init__(self, FromBase64Result: QByteArray.FromBase64Result) ->... method __init__ (line 1173) | def __init__(self) -> None: ... method swap (line 1174) | def swap(self, other: QByteArray.FromBase64Result) -> None: ... method __copy__ (line 1175) | def __copy__(self) -> None: ... method __eq__ (line 1176) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1177) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1178) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1179) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1180) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1181) | def __ne__(self, other: object) -> bool: ... method __init__ (line 1189) | def __init__(self, size: int, c: int) -> None: ... method __init__ (line 1191) | def __init__(self, arg__1: bytearray) -> None: ... method __init__ (line 1193) | def __init__(self, arg__1: bytes) -> None: ... method __init__ (line 1195) | def __init__(self, arg__1: QByteArray | bytes) -> None: ... method __init__ (line 1197) | def __init__(self) -> None: ... method append (line 1199) | def append(self, count: int, c: int) -> QByteArray: ... method append (line 1201) | def append(self, c: int) -> QByteArray: ... method append (line 1203) | def append(self, a: QByteArray | bytes) -> QByteArray: ... method at (line 1204) | def at(self, i: int) -> int: ... method back (line 1205) | def back(self) -> int: ... method capacity (line 1206) | def capacity(self) -> int: ... method cbegin (line 1207) | def cbegin(self) -> bytes: ... method cend (line 1208) | def cend(self) -> bytes: ... method chop (line 1209) | def chop(self, n: int) -> None: ... method chopped (line 1210) | def chopped(self, len: int) -> QByteArray: ... method clear (line 1211) | def clear(self) -> None: ... method compare (line 1213) | def compare(self, c: bytes, cs: Qt.CaseSensitivity = ...) -> int: ... method compare (line 1215) | def compare(self, a: QByteArray | bytes, cs: Qt.CaseSensitivity = ...)... method contains (line 1217) | def contains(self, c: int) -> bool: ... method contains (line 1219) | def contains(self, a: QByteArray | bytes) -> bool: ... method count (line 1221) | def count(self, c: int) -> int: ... method count (line 1223) | def count(self, a: QByteArray | bytes) -> int: ... method count (line 1225) | def count(self) -> int: ... method data (line 1226) | def data(self) -> bytes: ... method endsWith (line 1228) | def endsWith(self, c: int) -> bool: ... method endsWith (line 1230) | def endsWith(self, a: QByteArray | bytes) -> bool: ... method fill (line 1231) | def fill(self, c: int, size: int = ...) -> QByteArray: ... method fromBase64 (line 1234) | def fromBase64(base64: QByteArray | bytes, options: QByteArray.Base64O... method fromBase64 (line 1237) | def fromBase64(base64: QByteArray | bytes) -> QByteArray: ... method fromBase64Encoding (line 1239) | def fromBase64Encoding(base64: QByteArray | bytes, options: QByteArray... method fromHex (line 1241) | def fromHex(hexEncoded: QByteArray | bytes) -> QByteArray: ... method fromPercentEncoding (line 1243) | def fromPercentEncoding(pctEncoded: QByteArray | bytes, percent: int =... method fromRawData (line 1245) | def fromRawData(arg__1: bytes, size: int) -> QByteArray: ... method front (line 1246) | def front(self) -> int: ... method indexOf (line 1247) | def indexOf(self, a: QByteArray | bytes, from_: int = ...) -> int: ... method insert (line 1249) | def insert(self, i: int, count: int, c: int) -> QByteArray: ... method insert (line 1251) | def insert(self, i: int, a: QByteArray | bytes) -> QByteArray: ... method isEmpty (line 1252) | def isEmpty(self) -> bool: ... method isLower (line 1253) | def isLower(self) -> bool: ... method isNull (line 1254) | def isNull(self) -> bool: ... method isSharedWith (line 1255) | def isSharedWith(self, other: QByteArray | bytes) -> bool: ... method isUpper (line 1256) | def isUpper(self) -> bool: ... method lastIndexOf (line 1257) | def lastIndexOf(self, a: QByteArray | bytes, from_: int = ...) -> int:... method left (line 1258) | def left(self, len: int) -> QByteArray: ... method leftJustified (line 1259) | def leftJustified(self, width: int, fill: int = ..., truncate: bool = ... method length (line 1260) | def length(self) -> int: ... method mid (line 1261) | def mid(self, index: int, len: int = ...) -> QByteArray: ... method number (line 1264) | def number(arg__1: float, f: int = ..., prec: int = ...) -> QByteArray... method number (line 1267) | def number(arg__1: int, base: int = ...) -> QByteArray: ... method prepend (line 1269) | def prepend(self, count: int, c: int) -> QByteArray: ... method prepend (line 1271) | def prepend(self, c: int) -> QByteArray: ... method prepend (line 1273) | def prepend(self, a: QByteArray | bytes) -> QByteArray: ... method remove (line 1274) | def remove(self, index: int, len: int) -> QByteArray: ... method repeated (line 1275) | def repeated(self, times: int) -> QByteArray: ... method replace (line 1277) | def replace(self, index: int, len: int, s: QByteArray | bytes) -> QByt... method replace (line 1279) | def replace(self, before: QByteArray | bytes, after: QByteArray | byte... method replace (line 1281) | def replace(self, before: str, after: QByteArray | bytes) -> QByteArra... method replace (line 1283) | def replace(self, before: int, after: QByteArray | bytes) -> QByteArra... method replace (line 1285) | def replace(self, before: int, after: int) -> QByteArray: ... method reserve (line 1286) | def reserve(self, size: int) -> None: ... method resize (line 1287) | def resize(self, size: int) -> None: ... method right (line 1288) | def right(self, len: int) -> QByteArray: ... method rightJustified (line 1289) | def rightJustified(self, width: int, fill: int = ..., truncate: bool =... method setNum (line 1291) | def setNum(self, arg__1: float, f: int = ..., prec: int = ...) -> QByt... method setNum (line 1293) | def setNum(self, arg__1: int, base: int = ...) -> QByteArray: ... method setRawData (line 1294) | def setRawData(self, a: bytes, n: int) -> QByteArray: ... method shrink_to_fit (line 1295) | def shrink_to_fit(self) -> None: ... method simplified (line 1296) | def simplified(self) -> QByteArray: ... method size (line 1297) | def size(self) -> int: ... method split (line 1298) | def split(self, sep: int) -> list[QByteArray]: ... method squeeze (line 1299) | def squeeze(self) -> None: ... method startsWith (line 1301) | def startsWith(self, c: int) -> bool: ... method startsWith (line 1303) | def startsWith(self, a: QByteArray | bytes) -> bool: ... method swap (line 1304) | def swap(self, other: QByteArray | bytes) -> None: ... method toBase64 (line 1306) | def toBase64(self, options: QByteArray.Base64Options | QByteArray.Base... method toBase64 (line 1308) | def toBase64(self) -> QByteArray: ... method toDouble (line 1309) | def toDouble(self) -> tuple[float, bool]: ... method toFloat (line 1310) | def toFloat(self) -> tuple[float, bool]: ... method toHex (line 1312) | def toHex(self, separator: int) -> QByteArray: ... method toHex (line 1314) | def toHex(self) -> QByteArray: ... method toInt (line 1315) | def toInt(self, base: int = ...) -> tuple[int, bool]: ... method toLong (line 1316) | def toLong(self, base: int = ...) -> tuple[int, bool]: ... method toLongLong (line 1317) | def toLongLong(self, base: int = ...) -> tuple[int, bool]: ... method toLower (line 1318) | def toLower(self) -> QByteArray: ... method toPercentEncoding (line 1319) | def toPercentEncoding(self, exclude: QByteArray | bytes = ..., include... method toShort (line 1320) | def toShort(self, base: int = ...) -> tuple[int, bool]: ... method toUInt (line 1321) | def toUInt(self, base: int = ...) -> tuple[int, bool]: ... method toULong (line 1322) | def toULong(self, base: int = ...) -> tuple[int, bool]: ... method toULongLong (line 1323) | def toULongLong(self, base: int = ...) -> tuple[int, bool]: ... method toUShort (line 1324) | def toUShort(self, base: int = ...) -> tuple[int, bool]: ... method toUpper (line 1325) | def toUpper(self) -> QByteArray: ... method trimmed (line 1326) | def trimmed(self) -> QByteArray: ... method truncate (line 1327) | def truncate(self, pos: int) -> None: ... method __add__ (line 1329) | def __add__(self, arg__1: bytearray) -> QByteArray: ... method __add__ (line 1331) | def __add__(self, arg__1: bytes) -> None: ... # type: ignore[overload... method __add__ (line 1333) | def __add__(self, a2: QByteArray | bytes) -> QByteArray: ... method __add__ (line 1335) | def __add__(self, a2: int) -> QByteArray: ... method __bool__ (line 1336) | def __bool__(self) -> bool: ... method __bytes__ (line 1337) | def __bytes__(self) -> bytes: ... method __copy__ (line 1338) | def __copy__(self) -> None: ... method __delitem__ (line 1339) | def __delitem__(self, other) -> None: ... method __eq__ (line 1340) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1341) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 1342) | def __getitem__(self, index: int) -> bytes: ... method __iter__ (line 1343) | def __iter__(self) -> typing.Iterator[bytes]: ... method __gt__ (line 1344) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1345) | def __hash__(self) -> int: ... method __iadd__ (line 1347) | def __iadd__(self, c: int) -> QByteArray: ... method __iadd__ (line 1349) | def __iadd__(self, arg__1: bytearray) -> QByteArray: ... method __iadd__ (line 1351) | def __iadd__(self, a: QByteArray | bytes) -> QByteArray: ... method __le__ (line 1352) | def __le__(self, other: object) -> bool: ... method __len__ (line 1353) | def __len__(self) -> int: ... method __lt__ (line 1354) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1355) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 1356) | def __radd__(self, other): ... method __setitem__ (line 1357) | def __setitem__(self, index, object) -> None: ... class QByteArrayMatcher (line 1359) | class QByteArrayMatcher(shiboken2.Object): method __init__ (line 1361) | def __init__(self, pattern: bytes, length: int) -> None: ... method __init__ (line 1363) | def __init__(self, pattern: QByteArray | bytes) -> None: ... method __init__ (line 1365) | def __init__(self, other: QByteArrayMatcher) -> None: ... method __init__ (line 1367) | def __init__(self) -> None: ... method indexIn (line 1369) | def indexIn(self, str: bytes, len: int, from_: int = ...) -> int: ... method indexIn (line 1371) | def indexIn(self, ba: QByteArray | bytes, from_: int = ...) -> int: ... method pattern (line 1372) | def pattern(self) -> QByteArray: ... method setPattern (line 1373) | def setPattern(self, pattern: QByteArray | bytes) -> None: ... method __copy__ (line 1374) | def __copy__(self) -> None: ... class QCalendar (line 1376) | class QCalendar(shiboken2.Object): class System (line 1377) | class System: method __init__ (line 1388) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1389) | def __add__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __and__ (line 1390) | def __and__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __bool__ (line 1391) | def __bool__(self) -> bool: ... method __eq__ (line 1392) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1393) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1394) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1395) | def __hash__(self) -> int: ... method __index__ (line 1396) | def __index__(self) -> int: ... method __int__ (line 1397) | def __int__(self) -> int: ... method __le__ (line 1398) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1399) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1400) | def __mul__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __ne__ (line 1401) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1402) | def __or__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __pos__ (line 1403) | def __pos__(self): ... method __radd__ (line 1404) | def __radd__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __rand__ (line 1405) | def __rand__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __rmul__ (line 1406) | def __rmul__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __ror__ (line 1407) | def __ror__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __rsub__ (line 1408) | def __rsub__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __rxor__ (line 1409) | def __rxor__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __sub__ (line 1410) | def __sub__(self, other: typing.SupportsInt) -> QCalendar.System: ... method __xor__ (line 1411) | def __xor__(self, other: typing.SupportsInt) -> QCalendar.System: ... class YearMonthDay (line 1413) | class YearMonthDay(shiboken2.Object): method __init__ (line 1418) | def __init__(self, y: int, m: int = ..., d: int = ...) -> None: ... method __init__ (line 1420) | def __init__(self, YearMonthDay: QCalendar.YearMonthDay) -> None: ... method __init__ (line 1422) | def __init__(self) -> None: ... method isValid (line 1423) | def isValid(self) -> bool: ... method __copy__ (line 1424) | def __copy__(self) -> None: ... method __init__ (line 1426) | def __init__(self, system: QCalendar.System) -> None: ... method __init__ (line 1428) | def __init__(self) -> None: ... method availableCalendars (line 1430) | def availableCalendars() -> list[str]: ... method dateFromParts (line 1432) | def dateFromParts(self, year: int, month: int, day: int) -> QDate: ... method dateFromParts (line 1434) | def dateFromParts(self, parts: QCalendar.YearMonthDay) -> QDate: ... method dayOfWeek (line 1435) | def dayOfWeek(self, date: QDate | datetime.date) -> int: ... method daysInMonth (line 1436) | def daysInMonth(self, month: int, year: int | None = ...) -> int: ... method daysInYear (line 1437) | def daysInYear(self, year: int) -> int: ... method hasYearZero (line 1438) | def hasYearZero(self) -> bool: ... method isDateValid (line 1439) | def isDateValid(self, year: int, month: int, day: int) -> bool: ... method isGregorian (line 1440) | def isGregorian(self) -> bool: ... method isLeapYear (line 1441) | def isLeapYear(self, year: int) -> bool: ... method isLunar (line 1442) | def isLunar(self) -> bool: ... method isLuniSolar (line 1443) | def isLuniSolar(self) -> bool: ... method isProleptic (line 1444) | def isProleptic(self) -> bool: ... method isSolar (line 1445) | def isSolar(self) -> bool: ... method isValid (line 1446) | def isValid(self) -> bool: ... method maximumDaysInMonth (line 1447) | def maximumDaysInMonth(self) -> int: ... method maximumMonthsInYear (line 1448) | def maximumMonthsInYear(self) -> int: ... method minimumDaysInMonth (line 1449) | def minimumDaysInMonth(self) -> int: ... method monthName (line 1450) | def monthName(self, locale: QLocale, month: int, year: int | None = ..... method monthsInYear (line 1451) | def monthsInYear(self, year: int) -> int: ... method name (line 1452) | def name(self) -> str: ... method partsFromDate (line 1453) | def partsFromDate(self, date: QDate | datetime.date) -> QCalendar.Year... method standaloneMonthName (line 1454) | def standaloneMonthName(self, locale: QLocale, month: int, year: int |... method standaloneWeekDayName (line 1455) | def standaloneWeekDayName(self, locale: QLocale, day: int, format: QLo... method weekDayName (line 1456) | def weekDayName(self, locale: QLocale, day: int, format: QLocale.Forma... method __copy__ (line 1457) | def __copy__(self) -> None: ... class QCborArray (line 1459) | class QCborArray(shiboken2.Object): method __init__ (line 1461) | def __init__(self, other: QCborArray) -> None: ... method __init__ (line 1463) | def __init__(self) -> None: ... method append (line 1464) | def append(self, value: QCborValue) -> None: ... method at (line 1465) | def at(self, i: int) -> QCborValue: ... method clear (line 1466) | def clear(self) -> None: ... method compare (line 1467) | def compare(self, other: QCborArray) -> int: ... method contains (line 1468) | def contains(self, value: QCborValue) -> bool: ... method empty (line 1469) | def empty(self) -> bool: ... method first (line 1470) | def first(self) -> QCborValue: ... method fromJsonArray (line 1472) | def fromJsonArray(array: QJsonArray) -> QCborArray: ... method fromStringList (line 1474) | def fromStringList(list: typing.Iterable[str]) -> QCborArray: ... method fromVariantList (line 1476) | def fromVariantList(list: typing.Iterable[typing.Any]) -> QCborArray: ... method insert (line 1477) | def insert(self, i: int, value: QCborValue) -> None: ... method isEmpty (line 1478) | def isEmpty(self) -> bool: ... method last (line 1479) | def last(self) -> QCborValue: ... method pop_back (line 1480) | def pop_back(self) -> None: ... method pop_front (line 1481) | def pop_front(self) -> None: ... method prepend (line 1482) | def prepend(self, value: QCborValue) -> None: ... method push_back (line 1483) | def push_back(self, t: QCborValue) -> None: ... method push_front (line 1484) | def push_front(self, t: QCborValue) -> None: ... method removeAt (line 1485) | def removeAt(self, i: int) -> None: ... method removeFirst (line 1486) | def removeFirst(self) -> None: ... method removeLast (line 1487) | def removeLast(self) -> None: ... method size (line 1488) | def size(self) -> int: ... method swap (line 1489) | def swap(self, other: QCborArray) -> None: ... method takeAt (line 1490) | def takeAt(self, i: int) -> QCborValue: ... method takeFirst (line 1491) | def takeFirst(self) -> QCborValue: ... method takeLast (line 1492) | def takeLast(self) -> QCborValue: ... method toCborValue (line 1493) | def toCborValue(self) -> QCborValue: ... method toJsonArray (line 1494) | def toJsonArray(self) -> QJsonArray: ... method toVariantList (line 1495) | def toVariantList(self) -> list[typing.Any]: ... method __add__ (line 1496) | def __add__(self, v: QCborValue) -> QCborArray: ... method __copy__ (line 1497) | def __copy__(self) -> None: ... method __eq__ (line 1498) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1499) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1500) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 1501) | def __iadd__(self, v: QCborValue) -> QCborArray: ... method __le__ (line 1502) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1503) | def __lshift__(self, v: QCborValue) -> QCborArray: ... method __lt__ (line 1504) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1505) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 1506) | def __radd__(self, other): ... method __rlshift__ (line 1507) | def __rlshift__(self, other): ... class QCborError (line 1509) | class QCborError(shiboken2.Object): class Code (line 1510) | class Code: method __init__ (line 1529) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1530) | def __add__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __and__ (line 1531) | def __and__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __bool__ (line 1532) | def __bool__(self) -> bool: ... method __eq__ (line 1533) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1534) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1535) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1536) | def __hash__(self) -> int: ... method __index__ (line 1537) | def __index__(self) -> int: ... method __int__ (line 1538) | def __int__(self) -> int: ... method __le__ (line 1539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1540) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1541) | def __mul__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __ne__ (line 1542) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1543) | def __or__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __pos__ (line 1544) | def __pos__(self): ... method __radd__ (line 1545) | def __radd__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __rand__ (line 1546) | def __rand__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __rmul__ (line 1547) | def __rmul__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __ror__ (line 1548) | def __ror__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __rsub__ (line 1549) | def __rsub__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __rxor__ (line 1550) | def __rxor__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __sub__ (line 1551) | def __sub__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __xor__ (line 1552) | def __xor__(self, other: typing.SupportsInt) -> QCborError.Code: ... method __init__ (line 1570) | def __init__(self, QCborError: QCborError) -> None: ... method __init__ (line 1572) | def __init__(self) -> None: ... method toString (line 1573) | def toString(self) -> str: ... method __copy__ (line 1574) | def __copy__(self) -> None: ... class QCborKnownTags (line 1576) | class QCborKnownTags: method __init__ (line 1603) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1604) | def __add__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __and__ (line 1605) | def __and__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __bool__ (line 1606) | def __bool__(self) -> bool: ... method __eq__ (line 1607) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1608) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1609) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1610) | def __hash__(self) -> int: ... method __index__ (line 1611) | def __index__(self) -> int: ... method __int__ (line 1612) | def __int__(self) -> int: ... method __le__ (line 1613) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1614) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1615) | def __mul__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __ne__ (line 1616) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1617) | def __or__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __pos__ (line 1618) | def __pos__(self): ... method __radd__ (line 1619) | def __radd__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __rand__ (line 1620) | def __rand__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __rmul__ (line 1621) | def __rmul__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __ror__ (line 1622) | def __ror__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __rsub__ (line 1623) | def __rsub__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __rxor__ (line 1624) | def __rxor__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __sub__ (line 1625) | def __sub__(self, other: typing.SupportsInt) -> QCborKnownTags: ... method __xor__ (line 1626) | def __xor__(self, other: typing.SupportsInt) -> QCborKnownTags: ... class QCborMap (line 1628) | class QCborMap(shiboken2.Object): method __init__ (line 1630) | def __init__(self, other: QCborMap) -> None: ... method __init__ (line 1632) | def __init__(self) -> None: ... method clear (line 1633) | def clear(self) -> None: ... method compare (line 1634) | def compare(self, other: QCborMap) -> int: ... method contains (line 1636) | def contains(self, key: QCborValue) -> bool: ... method contains (line 1638) | def contains(self, key: str) -> bool: ... method contains (line 1640) | def contains(self, key: int) -> bool: ... method empty (line 1641) | def empty(self) -> bool: ... method fromJsonObject (line 1643) | def fromJsonObject(o: dict[str, QJsonValue]) -> QCborMap: ... method fromVariantHash (line 1645) | def fromVariantHash(hash: dict[str, typing.Any]) -> QCborMap: ... method fromVariantMap (line 1647) | def fromVariantMap(map: dict[str, typing.Any]) -> QCborMap: ... method isEmpty (line 1648) | def isEmpty(self) -> bool: ... method keys (line 1649) | def keys(self) -> list[QCborValue]: ... method remove (line 1651) | def remove(self, key: QCborValue) -> None: ... method remove (line 1653) | def remove(self, key: str) -> None: ... method remove (line 1655) | def remove(self, key: int) -> None: ... method size (line 1656) | def size(self) -> int: ... method swap (line 1657) | def swap(self, other: QCborMap) -> None: ... method take (line 1659) | def take(self, key: QCborValue) -> QCborValue: ... method take (line 1661) | def take(self, key: str) -> QCborValue: ... method take (line 1663) | def take(self, key: int) -> QCborValue: ... method toCborValue (line 1664) | def toCborValue(self) -> QCborValue: ... method toJsonObject (line 1665) | def toJsonObject(self) -> dict[str, QJsonValue]: ... method toVariantHash (line 1666) | def toVariantHash(self) -> dict[str, typing.Any]: ... method toVariantMap (line 1667) | def toVariantMap(self) -> dict[str, typing.Any]: ... method value (line 1669) | def value(self, key: QCborValue) -> QCborValue: ... method value (line 1671) | def value(self, key: str) -> QCborValue: ... method value (line 1673) | def value(self, key: int) -> QCborValue: ... method __copy__ (line 1674) | def __copy__(self) -> None: ... method __eq__ (line 1675) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1676) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1677) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1678) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1679) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1680) | def __ne__(self, other: object) -> bool: ... class QCborParserError (line 1682) | class QCborParserError(shiboken2.Object): method __init__ (line 1686) | def __init__(self, QCborParserError: QCborParserError) -> None: ... method __init__ (line 1688) | def __init__(self) -> None: ... method errorString (line 1689) | def errorString(self) -> str: ... method __copy__ (line 1690) | def __copy__(self) -> None: ... class QCborSimpleType (line 1692) | class QCborSimpleType: method __init__ (line 1700) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1701) | def __add__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __and__ (line 1702) | def __and__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __bool__ (line 1703) | def __bool__(self) -> bool: ... method __eq__ (line 1704) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1705) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1706) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1707) | def __hash__(self) -> int: ... method __index__ (line 1708) | def __index__(self) -> int: ... method __int__ (line 1709) | def __int__(self) -> int: ... method __le__ (line 1710) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1711) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1712) | def __mul__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __ne__ (line 1713) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1714) | def __or__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __pos__ (line 1715) | def __pos__(self): ... method __radd__ (line 1716) | def __radd__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __rand__ (line 1717) | def __rand__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __rmul__ (line 1718) | def __rmul__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __ror__ (line 1719) | def __ror__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __rsub__ (line 1720) | def __rsub__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __rxor__ (line 1721) | def __rxor__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __sub__ (line 1722) | def __sub__(self, other: typing.SupportsInt) -> QCborSimpleType: ... method __xor__ (line 1723) | def __xor__(self, other: typing.SupportsInt) -> QCborSimpleType: ... class QCborStreamReader (line 1725) | class QCborStreamReader(shiboken2.Object): class StringResultCode (line 1726) | class StringResultCode: method __init__ (line 1733) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1734) | def __add__(self, other: typing.SupportsInt) -> QCborStreamReader.St... method __and__ (line 1735) | def __and__(self, other: typing.SupportsInt) -> QCborStreamReader.St... method __bool__ (line 1736) | def __bool__(self) -> bool: ... method __eq__ (line 1737) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1738) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1739) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1740) | def __hash__(self) -> int: ... method __index__ (line 1741) | def __index__(self) -> int: ... method __int__ (line 1742) | def __int__(self) -> int: ... method __le__ (line 1743) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1744) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1745) | def __mul__(self, other: typing.SupportsInt) -> QCborStreamReader.St... method __ne__ (line 1746) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1747) | def __or__(self, other: typing.SupportsInt) -> QCborStreamReader.Str... method __pos__ (line 1748) | def __pos__(self): ... method __radd__ (line 1749) | def __radd__(self, other: typing.SupportsInt) -> QCborStreamReader.S... method __rand__ (line 1750) | def __rand__(self, other: typing.SupportsInt) -> QCborStreamReader.S... method __rmul__ (line 1751) | def __rmul__(self, other: typing.SupportsInt) -> QCborStreamReader.S... method __ror__ (line 1752) | def __ror__(self, other: typing.SupportsInt) -> QCborStreamReader.St... method __rsub__ (line 1753) | def __rsub__(self, other: typing.SupportsInt) -> QCborStreamReader.S... method __rxor__ (line 1754) | def __rxor__(self, other: typing.SupportsInt) -> QCborStreamReader.S... method __sub__ (line 1755) | def __sub__(self, other: typing.SupportsInt) -> QCborStreamReader.St... method __xor__ (line 1756) | def __xor__(self, other: typing.SupportsInt) -> QCborStreamReader.St... class Type (line 1758) | class Type: method __init__ (line 1777) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1778) | def __add__(self, other: typing.SupportsInt) -> QCborStreamReader.Ty... method __and__ (line 1779) | def __and__(self, other: typing.SupportsInt) -> QCborStreamReader.Ty... method __bool__ (line 1780) | def __bool__(self) -> bool: ... method __eq__ (line 1781) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1782) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1783) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1784) | def __hash__(self) -> int: ... method __index__ (line 1785) | def __index__(self) -> int: ... method __int__ (line 1786) | def __int__(self) -> int: ... method __le__ (line 1787) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1788) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1789) | def __mul__(self, other: typing.SupportsInt) -> QCborStreamReader.Ty... method __ne__ (line 1790) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1791) | def __or__(self, other: typing.SupportsInt) -> QCborStreamReader.Typ... method __pos__ (line 1792) | def __pos__(self): ... method __radd__ (line 1793) | def __radd__(self, other: typing.SupportsInt) -> QCborStreamReader.T... method __rand__ (line 1794) | def __rand__(self, other: typing.SupportsInt) -> QCborStreamReader.T... method __rmul__ (line 1795) | def __rmul__(self, other: typing.SupportsInt) -> QCborStreamReader.T... method __ror__ (line 1796) | def __ror__(self, other: typing.SupportsInt) -> QCborStreamReader.Ty... method __rsub__ (line 1797) | def __rsub__(self, other: typing.SupportsInt) -> QCborStreamReader.T... method __rxor__ (line 1798) | def __rxor__(self, other: typing.SupportsInt) -> QCborStreamReader.T... method __sub__ (line 1799) | def __sub__(self, other: typing.SupportsInt) -> QCborStreamReader.Ty... method __xor__ (line 1800) | def __xor__(self, other: typing.SupportsInt) -> QCborStreamReader.Ty... method __init__ (line 1820) | def __init__(self, data: bytes, len: int) -> None: ... method __init__ (line 1822) | def __init__(self, data: bytearray, len: int) -> None: ... method __init__ (line 1824) | def __init__(self, device: QIODevice) -> None: ... method __init__ (line 1826) | def __init__(self, data: QByteArray | bytes) -> None: ... method __init__ (line 1828) | def __init__(self) -> None: ... method addData (line 1830) | def addData(self, data: bytes, len: int) -> None: ... method addData (line 1832) | def addData(self, data: bytearray, len: int) -> None: ... method addData (line 1834) | def addData(self, data: QByteArray | bytes) -> None: ... method clear (line 1835) | def clear(self) -> None: ... method containerDepth (line 1836) | def containerDepth(self) -> int: ... method currentOffset (line 1837) | def currentOffset(self) -> int: ... method currentStringChunkSize (line 1838) | def currentStringChunkSize(self) -> int: ... method device (line 1839) | def device(self) -> QIODevice: ... method enterContainer (line 1840) | def enterContainer(self) -> bool: ... method hasNext (line 1841) | def hasNext(self) -> bool: ... method isArray (line 1842) | def isArray(self) -> bool: ... method isBool (line 1843) | def isBool(self) -> bool: ... method isByteArray (line 1844) | def isByteArray(self) -> bool: ... method isContainer (line 1845) | def isContainer(self) -> bool: ... method isDouble (line 1846) | def isDouble(self) -> bool: ... method isFalse (line 1847) | def isFalse(self) -> bool: ... method isFloat (line 1848) | def isFloat(self) -> bool: ... method isFloat16 (line 1849) | def isFloat16(self) -> bool: ... method isInteger (line 1850) | def isInteger(self) -> bool: ... method isInvalid (line 1851) | def isInvalid(self) -> bool: ... method isLengthKnown (line 1852) | def isLengthKnown(self) -> bool: ... method isMap (line 1853) | def isMap(self) -> bool: ... method isNegativeInteger (line 1854) | def isNegativeInteger(self) -> bool: ... method isNull (line 1855) | def isNull(self) -> bool: ... method isSimpleType (line 1857) | def isSimpleType(self, st: QCborSimpleType) -> bool: ... method isSimpleType (line 1859) | def isSimpleType(self) -> bool: ... method isString (line 1860) | def isString(self) -> bool: ... method isTag (line 1861) | def isTag(self) -> bool: ... method isTrue (line 1862) | def isTrue(self) -> bool: ... method isUndefined (line 1863) | def isUndefined(self) -> bool: ... method isUnsignedInteger (line 1864) | def isUnsignedInteger(self) -> bool: ... method isValid (line 1865) | def isValid(self) -> bool: ... method lastError (line 1866) | def lastError(self) -> QCborError: ... method leaveContainer (line 1867) | def leaveContainer(self) -> bool: ... method length (line 1868) | def length(self) -> int: ... method next (line 1869) | def next(self, maxRecursion: int = ...) -> bool: ... method parentContainerType (line 1870) | def parentContainerType(self) -> QCborStreamReader.Type: ... method readByteArray (line 1871) | def readByteArray(self) -> QCborStringResultByteArray: ... method readString (line 1872) | def readString(self) -> QCborStringResultString: ... method reparse (line 1873) | def reparse(self) -> None: ... method reset (line 1874) | def reset(self) -> None: ... method setDevice (line 1875) | def setDevice(self, device: QIODevice) -> None: ... method toBool (line 1876) | def toBool(self) -> bool: ... method toDouble (line 1877) | def toDouble(self) -> float: ... method toFloat (line 1878) | def toFloat(self) -> float: ... method toInteger (line 1879) | def toInteger(self) -> int: ... method toSimpleType (line 1880) | def toSimpleType(self) -> QCborSimpleType: ... method toUnsignedInteger (line 1881) | def toUnsignedInteger(self) -> int: ... method type (line 1882) | def type(self) -> QCborStreamReader.Type: ... method __bool__ (line 1883) | def __bool__(self) -> bool: ... class QCborStreamWriter (line 1885) | class QCborStreamWriter(shiboken2.Object): method __init__ (line 1887) | def __init__(self, device: QIODevice) -> None: ... method __init__ (line 1889) | def __init__(self, data: QByteArray | bytes) -> None: ... method append (line 1891) | def append(self, str: bytes, size: int = ...) -> None: ... method append (line 1893) | def append(self, u: int) -> None: ... method append (line 1895) | def append(self, tag: QCborKnownTags) -> None: ... method append (line 1897) | def append(self, st: QCborSimpleType) -> None: ... method append (line 1899) | def append(self, i: int) -> None: ... method append (line 1901) | def append(self, f: float) -> None: ... method append (line 1903) | def append(self, d: float) -> None: ... method append (line 1905) | def append(self, ba: QByteArray | bytes) -> None: ... method append (line 1907) | def append(self, b: bool) -> None: ... method appendByteString (line 1908) | def appendByteString(self, data: bytes, len: int) -> None: ... method appendNull (line 1909) | def appendNull(self) -> None: ... method appendTextString (line 1910) | def appendTextString(self, utf8: bytes, len: int) -> None: ... method appendUndefined (line 1911) | def appendUndefined(self) -> None: ... method device (line 1912) | def device(self) -> QIODevice: ... method endArray (line 1913) | def endArray(self) -> bool: ... method endMap (line 1914) | def endMap(self) -> bool: ... method setDevice (line 1915) | def setDevice(self, device: QIODevice) -> None: ... method startArray (line 1917) | def startArray(self, count: int) -> None: ... method startArray (line 1919) | def startArray(self) -> None: ... method startMap (line 1921) | def startMap(self, count: int) -> None: ... method startMap (line 1923) | def startMap(self) -> None: ... class QCborStringResultByteArray (line 1925) | class QCborStringResultByteArray(shiboken2.Object): method __init__ (line 1929) | def __init__(self, QCborStringResultByteArray: QCborStringResultByteAr... method __init__ (line 1931) | def __init__(self) -> None: ... method __copy__ (line 1932) | def __copy__(self) -> None: ... class QCborStringResultString (line 1934) | class QCborStringResultString(shiboken2.Object): method __init__ (line 1938) | def __init__(self, QCborStringResultString: QCborStringResultString) -... method __init__ (line 1940) | def __init__(self) -> None: ... method __copy__ (line 1941) | def __copy__(self) -> None: ... class QCborValue (line 1943) | class QCborValue(shiboken2.Object): class DiagnosticNotationOption (line 1944) | class DiagnosticNotationOption: method __init__ (line 1951) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1952) | def __and__(self, other: typing.SupportsInt) -> QCborValue.Diagnosti... method __bool__ (line 1953) | def __bool__(self) -> bool: ... method __eq__ (line 1954) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1955) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1956) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1957) | def __hash__(self) -> int: ... method __index__ (line 1958) | def __index__(self) -> int: ... method __int__ (line 1959) | def __int__(self) -> int: ... method __invert__ (line 1960) | def __invert__(self) -> QCborValue.DiagnosticNotationOptions: ... method __le__ (line 1961) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1962) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1963) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1964) | def __or__(self, other: typing.SupportsInt) -> QCborValue.Diagnostic... method __rand__ (line 1965) | def __rand__(self, other: typing.SupportsInt) -> QCborValue.Diagnost... method __ror__ (line 1966) | def __ror__(self, other: typing.SupportsInt) -> QCborValue.Diagnosti... method __rxor__ (line 1967) | def __rxor__(self, other: typing.SupportsInt) -> QCborValue.Diagnost... method __xor__ (line 1968) | def __xor__(self, other: typing.SupportsInt) -> QCborValue.Diagnosti... class DiagnosticNotationOptions (line 1970) | class DiagnosticNotationOptions: method __init__ (line 1972) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1973) | def __and__(self, other: typing.SupportsInt) -> QCborValue.Diagnosti... method __bool__ (line 1974) | def __bool__(self) -> bool: ... method __eq__ (line 1975) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1976) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1977) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1978) | def __index__(self) -> int: ... method __int__ (line 1979) | def __int__(self) -> int: ... method __invert__ (line 1980) | def __invert__(self) -> QCborValue.DiagnosticNotationOptions: ... method __le__ (line 1981) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1982) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1983) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1984) | def __or__(self, other: typing.SupportsInt) -> QCborValue.Diagnostic... method __rand__ (line 1985) | def __rand__(self, other: typing.SupportsInt) -> QCborValue.Diagnost... method __ror__ (line 1986) | def __ror__(self, other: typing.SupportsInt) -> QCborValue.Diagnosti... method __rxor__ (line 1987) | def __rxor__(self, other: typing.SupportsInt) -> QCborValue.Diagnost... method __xor__ (line 1988) | def __xor__(self, other: typing.SupportsInt) -> QCborValue.Diagnosti... class EncodingOption (line 1990) | class EncodingOption: method __init__ (line 1999) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2000) | def __and__(self, other: typing.SupportsInt) -> QCborValue.EncodingO... method __bool__ (line 2001) | def __bool__(self) -> bool: ... method __eq__ (line 2002) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2003) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2004) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2005) | def __hash__(self) -> int: ... method __index__ (line 2006) | def __index__(self) -> int: ... method __int__ (line 2007) | def __int__(self) -> int: ... method __invert__ (line 2008) | def __invert__(self) -> QCborValue.EncodingOptions: ... method __le__ (line 2009) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2010) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2011) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2012) | def __or__(self, other: typing.SupportsInt) -> QCborValue.EncodingOp... method __rand__ (line 2013) | def __rand__(self, other: typing.SupportsInt) -> QCborValue.Encoding... method __ror__ (line 2014) | def __ror__(self, other: typing.SupportsInt) -> QCborValue.EncodingO... method __rxor__ (line 2015) | def __rxor__(self, other: typing.SupportsInt) -> QCborValue.Encoding... method __xor__ (line 2016) | def __xor__(self, other: typing.SupportsInt) -> QCborValue.EncodingO... class EncodingOptions (line 2018) | class EncodingOptions: method __init__ (line 2020) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2021) | def __and__(self, other: typing.SupportsInt) -> QCborValue.EncodingO... method __bool__ (line 2022) | def __bool__(self) -> bool: ... method __eq__ (line 2023) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2024) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2025) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2026) | def __index__(self) -> int: ... method __int__ (line 2027) | def __int__(self) -> int: ... method __invert__ (line 2028) | def __invert__(self) -> QCborValue.EncodingOptions: ... method __le__ (line 2029) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2030) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2031) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2032) | def __or__(self, other: typing.SupportsInt) -> QCborValue.EncodingOp... method __rand__ (line 2033) | def __rand__(self, other: typing.SupportsInt) -> QCborValue.Encoding... method __ror__ (line 2034) | def __ror__(self, other: typing.SupportsInt) -> QCborValue.EncodingO... method __rxor__ (line 2035) | def __rxor__(self, other: typing.SupportsInt) -> QCborValue.Encoding... method __xor__ (line 2036) | def __xor__(self, other: typing.SupportsInt) -> QCborValue.EncodingO... class Type (line 2038) | class Type: method __init__ (line 2059) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2060) | def __add__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __and__ (line 2061) | def __and__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __bool__ (line 2062) | def __bool__(self) -> bool: ... method __eq__ (line 2063) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2064) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2065) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2066) | def __hash__(self) -> int: ... method __index__ (line 2067) | def __index__(self) -> int: ... method __int__ (line 2068) | def __int__(self) -> int: ... method __le__ (line 2069) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2070) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2071) | def __mul__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __ne__ (line 2072) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2073) | def __or__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __pos__ (line 2074) | def __pos__(self): ... method __radd__ (line 2075) | def __radd__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __rand__ (line 2076) | def __rand__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __rmul__ (line 2077) | def __rmul__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __ror__ (line 2078) | def __ror__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __rsub__ (line 2079) | def __rsub__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __rxor__ (line 2080) | def __rxor__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __sub__ (line 2081) | def __sub__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __xor__ (line 2082) | def __xor__(self, other: typing.SupportsInt) -> QCborValue.Type: ... method __init__ (line 2109) | def __init__(self, t_: QCborKnownTags, tv: QCborValue = ...) -> None: ... method __init__ (line 2111) | def __init__(self, v: float) -> None: ... method __init__ (line 2113) | def __init__(self, uuid: QUuid) -> None: ... method __init__ (line 2115) | def __init__(self, url: QUrl) -> None: ... method __init__ (line 2117) | def __init__(self, u: int) -> None: ... method __init__ (line 2119) | def __init__(self, t_: QCborValue.Type) -> None: ... method __init__ (line 2121) | def __init__(self, st: QCborSimpleType) -> None: ... method __init__ (line 2123) | def __init__(self, s: str) -> None: ... method __init__ (line 2125) | def __init__(self, s: bytes) -> None: ... method __init__ (line 2127) | def __init__(self, rx: QRegularExpression) -> None: ... method __init__ (line 2129) | def __init__(self, other: QCborValue) -> None: ... method __init__ (line 2131) | def __init__(self, m: QCborMap) -> None: ... method __init__ (line 2133) | def __init__(self, i: int) -> None: ... method __init__ (line 2135) | def __init__(self, dt: QDateTime | datetime.datetime) -> None: ... method __init__ (line 2137) | def __init__(self, ba: QByteArray | bytes) -> None: ... method __init__ (line 2139) | def __init__(self, b_: bool) -> None: ... method __init__ (line 2141) | def __init__(self, a: QCborArray) -> None: ... method __init__ (line 2143) | def __init__(self) -> None: ... method compare (line 2144) | def compare(self, other: QCborValue) -> int: ... method fromCbor (line 2147) | def fromCbor(data: bytes, len: int, error: QCborParserError | None = .... method fromCbor (line 2150) | def fromCbor(data: bytearray, len: int, error: QCborParserError | None... method fromCbor (line 2153) | def fromCbor(ba: QByteArray | bytes, error: QCborParserError | None = ... method fromCbor (line 2156) | def fromCbor(reader: QCborStreamReader) -> QCborValue: ... method fromJsonValue (line 2158) | def fromJsonValue(v: QJsonValue) -> QCborValue: ... method fromVariant (line 2160) | def fromVariant(variant: typing.Any) -> QCborValue: ... method isArray (line 2161) | def isArray(self) -> bool: ... method isBool (line 2162) | def isBool(self) -> bool: ... method isByteArray (line 2163) | def isByteArray(self) -> bool: ... method isContainer (line 2164) | def isContainer(self) -> bool: ... method isDateTime (line 2165) | def isDateTime(self) -> bool: ... method isDouble (line 2166) | def isDouble(self) -> bool: ... method isFalse (line 2167) | def isFalse(self) -> bool: ... method isInteger (line 2168) | def isInteger(self) -> bool: ... method isInvalid (line 2169) | def isInvalid(self) -> bool: ... method isMap (line 2170) | def isMap(self) -> bool: ... method isNull (line 2171) | def isNull(self) -> bool: ... method isRegularExpression (line 2172) | def isRegularExpression(self) -> bool: ... method isSimpleType (line 2174) | def isSimpleType(self, st: QCborSimpleType) -> bool: ... method isSimpleType (line 2176) | def isSimpleType(self) -> bool: ... method isString (line 2177) | def isString(self) -> bool: ... method isTag (line 2178) | def isTag(self) -> bool: ... method isTrue (line 2179) | def isTrue(self) -> bool: ... method isUndefined (line 2180) | def isUndefined(self) -> bool: ... method isUrl (line 2181) | def isUrl(self) -> bool: ... method isUuid (line 2182) | def isUuid(self) -> bool: ... method swap (line 2183) | def swap(self, other: QCborValue) -> None: ... method taggedValue (line 2184) | def taggedValue(self, defaultValue: QCborValue = ...) -> QCborValue: ... method toArray (line 2186) | def toArray(self, defaultValue: QCborArray) -> QCborArray: ... method toArray (line 2188) | def toArray(self) -> QCborArray: ... method toBool (line 2189) | def toBool(self, defaultValue: bool = ...) -> bool: ... method toByteArray (line 2190) | def toByteArray(self, defaultValue: QByteArray | bytes = ...) -> QByte... method toCbor (line 2192) | def toCbor(self, writer: QCborStreamWriter, opt: QCborValue.EncodingOp... method toCbor (line 2194) | def toCbor(self, opt: QCborValue.EncodingOptions | QCborValue.Encoding... method toDateTime (line 2195) | def toDateTime(self, defaultValue: QDateTime | datetime.datetime = ...... method toDiagnosticNotation (line 2196) | def toDiagnosticNotation(self, opts: QCborValue.DiagnosticNotationOpti... method toDouble (line 2197) | def toDouble(self, defaultValue: float = ...) -> float: ... method toInteger (line 2198) | def toInteger(self, defaultValue: int = ...) -> int: ... method toJsonValue (line 2199) | def toJsonValue(self) -> QJsonValue: ... method toMap (line 2201) | def toMap(self, defaultValue: QCborMap) -> QCborMap: ... method toMap (line 2203) | def toMap(self) -> QCborMap: ... method toRegularExpression (line 2204) | def toRegularExpression(self, defaultValue: QRegularExpression = ...) ... method toSimpleType (line 2205) | def toSimpleType(self, defaultValue: QCborSimpleType = ...) -> QCborSi... method toString (line 2206) | def toString(self, defaultValue: str = ...) -> str: ... method toUrl (line 2207) | def toUrl(self, defaultValue: QUrl = ...) -> QUrl: ... method toUuid (line 2208) | def toUuid(self, defaultValue: QUuid = ...) -> QUuid: ... method toVariant (line 2209) | def toVariant(self) -> typing.Any: ... method type (line 2210) | def type(self) -> QCborValue.Type: ... method __bool__ (line 2211) | def __bool__(self) -> bool: ... method __copy__ (line 2212) | def __copy__(self) -> None: ... method __eq__ (line 2213) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2214) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2215) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2216) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2217) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2218) | def __ne__(self, other: object) -> bool: ... class QChildEvent (line 2220) | class QChildEvent(QEvent): method __init__ (line 2221) | def __init__(self, type: QEvent.Type, child: QObject) -> None: ... method added (line 2222) | def added(self) -> bool: ... method child (line 2223) | def child(self) -> QObject: ... method polished (line 2224) | def polished(self) -> bool: ... method removed (line 2225) | def removed(self) -> bool: ... class QCollator (line 2227) | class QCollator(shiboken2.Object): method __init__ (line 2229) | def __init__(self, locale: QLocale) -> None: ... method __init__ (line 2231) | def __init__(self, arg__1: QCollator) -> None: ... method __init__ (line 2233) | def __init__(self) -> None: ... method caseSensitivity (line 2234) | def caseSensitivity(self) -> Qt.CaseSensitivity: ... method compare (line 2236) | def compare(self, s1: bytes, len1: int, s2: bytes, len2: int) -> int: ... method compare (line 2238) | def compare(self, s1: str, s2: str) -> int: ... method ignorePunctuation (line 2239) | def ignorePunctuation(self) -> bool: ... method locale (line 2240) | def locale(self) -> QLocale: ... method numericMode (line 2241) | def numericMode(self) -> bool: ... method setCaseSensitivity (line 2242) | def setCaseSensitivity(self, cs: Qt.CaseSensitivity) -> None: ... method setIgnorePunctuation (line 2243) | def setIgnorePunctuation(self, on: bool) -> None: ... method setLocale (line 2244) | def setLocale(self, locale: QLocale) -> None: ... method setNumericMode (line 2245) | def setNumericMode(self, on: bool) -> None: ... method sortKey (line 2246) | def sortKey(self, string: str) -> QCollatorSortKey: ... method swap (line 2247) | def swap(self, other: QCollator) -> None: ... method __call__ (line 2248) | def __call__(self, s1: str, s2: str) -> bool: ... class QCollatorSortKey (line 2250) | class QCollatorSortKey(shiboken2.Object): method __init__ (line 2251) | def __init__(self, other: QCollatorSortKey) -> None: ... method compare (line 2252) | def compare(self, key: QCollatorSortKey) -> int: ... method swap (line 2253) | def swap(self, other: QCollatorSortKey) -> None: ... method __eq__ (line 2254) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2255) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2256) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2257) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2258) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2259) | def __ne__(self, other: object) -> bool: ... class QCommandLineOption (line 2261) | class QCommandLineOption(shiboken2.Object): class Flag (line 2262) | class Flag: method __init__ (line 2268) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2269) | def __and__(self, other: typing.SupportsInt) -> QCommandLineOption.F... method __bool__ (line 2270) | def __bool__(self) -> bool: ... method __eq__ (line 2271) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2272) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2273) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2274) | def __hash__(self) -> int: ... method __index__ (line 2275) | def __index__(self) -> int: ... method __int__ (line 2276) | def __int__(self) -> int: ... method __invert__ (line 2277) | def __invert__(self) -> QCommandLineOption.Flags: ... method __le__ (line 2278) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2279) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2280) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2281) | def __or__(self, other: typing.SupportsInt) -> QCommandLineOption.Fl... method __rand__ (line 2282) | def __rand__(self, other: typing.SupportsInt) -> QCommandLineOption.... method __ror__ (line 2283) | def __ror__(self, other: typing.SupportsInt) -> QCommandLineOption.F... method __rxor__ (line 2284) | def __rxor__(self, other: typing.SupportsInt) -> QCommandLineOption.... method __xor__ (line 2285) | def __xor__(self, other: typing.SupportsInt) -> QCommandLineOption.F... class Flags (line 2287) | class Flags: method __init__ (line 2289) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2290) | def __and__(self, other: typing.SupportsInt) -> QCommandLineOption.F... method __bool__ (line 2291) | def __bool__(self) -> bool: ... method __eq__ (line 2292) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2293) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2294) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2295) | def __index__(self) -> int: ... method __int__ (line 2296) | def __int__(self) -> int: ... method __invert__ (line 2297) | def __invert__(self) -> QCommandLineOption.Flags: ... method __le__ (line 2298) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2299) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2300) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2301) | def __or__(self, other: typing.SupportsInt) -> QCommandLineOption.Fl... method __rand__ (line 2302) | def __rand__(self, other: typing.SupportsInt) -> QCommandLineOption.... method __ror__ (line 2303) | def __ror__(self, other: typing.SupportsInt) -> QCommandLineOption.F... method __rxor__ (line 2304) | def __rxor__(self, other: typing.SupportsInt) -> QCommandLineOption.... method __xor__ (line 2305) | def __xor__(self, other: typing.SupportsInt) -> QCommandLineOption.F... method __init__ (line 2309) | def __init__(self, names: typing.Iterable[str], description: str, valu... method __init__ (line 2311) | def __init__(self, name: str, description: str, valueName: str = ..., ... method __init__ (line 2313) | def __init__(self, other: QCommandLineOption) -> None: ... method __init__ (line 2315) | def __init__(self, names: typing.Iterable[str]) -> None: ... method __init__ (line 2317) | def __init__(self, name: str) -> None: ... method defaultValues (line 2318) | def defaultValues(self) -> list[str]: ... method description (line 2319) | def description(self) -> str: ... method flags (line 2320) | def flags(self) -> QCommandLineOption.Flags | QCommandLineOption.Flag:... method isHidden (line 2321) | def isHidden(self) -> bool: ... method names (line 2322) | def names(self) -> list[str]: ... method setDefaultValue (line 2323) | def setDefaultValue(self, defaultValue: str) -> None: ... method setDefaultValues (line 2324) | def setDefaultValues(self, defaultValues: typing.Iterable[str]) -> Non... method setDescription (line 2325) | def setDescription(self, description: str) -> None: ... method setFlags (line 2326) | def setFlags(self, aflags: QCommandLineOption.Flags | QCommandLineOpti... method setHidden (line 2327) | def setHidden(self, hidden: bool) -> None: ... method setValueName (line 2328) | def setValueName(self, name: str) -> None: ... method swap (line 2329) | def swap(self, other: QCommandLineOption) -> None: ... method valueName (line 2330) | def valueName(self) -> str: ... class QCommandLineParser (line 2332) | class QCommandLineParser(shiboken2.Object): class OptionsAfterPositionalArgumentsMode (line 2333) | class OptionsAfterPositionalArgumentsMode: method __init__ (line 2339) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2340) | def __add__(self, other: typing.SupportsInt) -> QCommandLineParser.O... method __and__ (line 2341) | def __and__(self, other: typing.SupportsInt) -> QCommandLineParser.O... method __bool__ (line 2342) | def __bool__(self) -> bool: ... method __eq__ (line 2343) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2344) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2345) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2346) | def __hash__(self) -> int: ... method __index__ (line 2347) | def __index__(self) -> int: ... method __int__ (line 2348) | def __int__(self) -> int: ... method __le__ (line 2349) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2350) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2351) | def __mul__(self, other: typing.SupportsInt) -> QCommandLineParser.O... method __ne__ (line 2352) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2353) | def __or__(self, other: typing.SupportsInt) -> QCommandLineParser.Op... method __pos__ (line 2354) | def __pos__(self): ... method __radd__ (line 2355) | def __radd__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __rand__ (line 2356) | def __rand__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __rmul__ (line 2357) | def __rmul__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __ror__ (line 2358) | def __ror__(self, other: typing.SupportsInt) -> QCommandLineParser.O... method __rsub__ (line 2359) | def __rsub__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __rxor__ (line 2360) | def __rxor__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __sub__ (line 2361) | def __sub__(self, other: typing.SupportsInt) -> QCommandLineParser.O... method __xor__ (line 2362) | def __xor__(self, other: typing.SupportsInt) -> QCommandLineParser.O... class SingleDashWordOptionMode (line 2364) | class SingleDashWordOptionMode: method __init__ (line 2370) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2371) | def __add__(self, other: typing.SupportsInt) -> QCommandLineParser.S... method __and__ (line 2372) | def __and__(self, other: typing.SupportsInt) -> QCommandLineParser.S... method __bool__ (line 2373) | def __bool__(self) -> bool: ... method __eq__ (line 2374) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2375) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2376) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2377) | def __hash__(self) -> int: ... method __index__ (line 2378) | def __index__(self) -> int: ... method __int__ (line 2379) | def __int__(self) -> int: ... method __le__ (line 2380) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2381) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2382) | def __mul__(self, other: typing.SupportsInt) -> QCommandLineParser.S... method __ne__ (line 2383) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2384) | def __or__(self, other: typing.SupportsInt) -> QCommandLineParser.Si... method __pos__ (line 2385) | def __pos__(self): ... method __radd__ (line 2386) | def __radd__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __rand__ (line 2387) | def __rand__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __rmul__ (line 2388) | def __rmul__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __ror__ (line 2389) | def __ror__(self, other: typing.SupportsInt) -> QCommandLineParser.S... method __rsub__ (line 2390) | def __rsub__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __rxor__ (line 2391) | def __rxor__(self, other: typing.SupportsInt) -> QCommandLineParser.... method __sub__ (line 2392) | def __sub__(self, other: typing.SupportsInt) -> QCommandLineParser.S... method __xor__ (line 2393) | def __xor__(self, other: typing.SupportsInt) -> QCommandLineParser.S... method __init__ (line 2398) | def __init__(self) -> None: ... method addHelpOption (line 2399) | def addHelpOption(self) -> QCommandLineOption: ... method addOption (line 2400) | def addOption(self, commandLineOption: QCommandLineOption) -> bool: ... method addOptions (line 2401) | def addOptions(self, options: typing.Iterable[QCommandLineOption]) -> ... method addPositionalArgument (line 2402) | def addPositionalArgument(self, name: str, description: str, syntax: s... method addVersionOption (line 2403) | def addVersionOption(self) -> QCommandLineOption: ... method applicationDescription (line 2404) | def applicationDescription(self) -> str: ... method clearPositionalArguments (line 2405) | def clearPositionalArguments(self) -> None: ... method errorText (line 2406) | def errorText(self) -> str: ... method helpText (line 2407) | def helpText(self) -> str: ... method isSet (line 2409) | def isSet(self, option: QCommandLineOption) -> bool: ... method isSet (line 2411) | def isSet(self, name: str) -> bool: ... method optionNames (line 2412) | def optionNames(self) -> list[str]: ... method parse (line 2413) | def parse(self, arguments: typing.Iterable[str]) -> bool: ... method positionalArguments (line 2414) | def positionalArguments(self) -> list[str]: ... method process (line 2416) | def process(self, arguments: typing.Iterable[str]) -> None: ... method process (line 2418) | def process(self, app: QCoreApplication) -> None: ... method setApplicationDescription (line 2419) | def setApplicationDescription(self, description: str) -> None: ... method setOptionsAfterPositionalArgumentsMode (line 2420) | def setOptionsAfterPositionalArgumentsMode(self, mode: QCommandLinePar... method setSingleDashWordOptionMode (line 2421) | def setSingleDashWordOptionMode(self, parsingMode: QCommandLineParser.... method showHelp (line 2422) | def showHelp(self, exitCode: int = ...) -> None: ... method showVersion (line 2423) | def showVersion(self) -> None: ... method unknownOptionNames (line 2424) | def unknownOptionNames(self) -> list[str]: ... method value (line 2426) | def value(self, option: QCommandLineOption) -> str: ... method value (line 2428) | def value(self, name: str) -> str: ... method values (line 2430) | def values(self, option: QCommandLineOption) -> list[str]: ... method values (line 2432) | def values(self, name: str) -> list[str]: ... class QConcatenateTablesProxyModel (line 2434) | class QConcatenateTablesProxyModel(QAbstractItemModel): method __init__ (line 2436) | def __init__(self, parent: QObject | None = ..., columnsAboutToBeInser... method addSourceModel (line 2437) | def addSourceModel(self, sourceModel: QAbstractItemModel) -> None: ... method canDropMimeData (line 2438) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method columnCount (line 2439) | def columnCount(self, parent: QModelIndex = ...) -> int: ... method data (line 2440) | def data(self, index: QModelIndex, role: Qt.ItemDataRole = ...) -> typ... method dropMimeData (line 2441) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method flags (line 2442) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method headerData (line 2443) | def headerData(self, section: int, orientation: Qt.Orientation, role: ... method index (line 2444) | def index(self, row: int, column: int, parent: QModelIndex = ...) -> Q... method itemData (line 2445) | def itemData(self, proxyIndex: QModelIndex) -> dict[int, typing.Any]: ... method mapFromSource (line 2446) | def mapFromSource(self, sourceIndex: QModelIndex) -> QModelIndex: ... method mapToSource (line 2447) | def mapToSource(self, proxyIndex: QModelIndex) -> QModelIndex: ... method mimeData (line 2448) | def mimeData(self, indexes: list[int]) -> QMimeData: ... # type: igno... method mimeTypes (line 2449) | def mimeTypes(self) -> list[str]: ... method parent (line 2451) | def parent(self, index: QModelIndex) -> QModelIndex: ... method parent (line 2453) | def parent(self) -> QObject: ... method removeSourceModel (line 2454) | def removeSourceModel(self, sourceModel: QAbstractItemModel) -> None: ... method rowCount (line 2455) | def rowCount(self, parent: QModelIndex = ...) -> int: ... method setData (line 2456) | def setData(self, index: QModelIndex, value: typing.Any, role: Qt.Item... method setItemData (line 2457) | def setItemData(self, index: QModelIndex, roles: dict[int, typing.Any]... method sourceModels (line 2458) | def sourceModels(self) -> list[QAbstractItemModel]: ... method span (line 2459) | def span(self, index: QModelIndex) -> QSize: ... class QCoreApplication (line 2461) | class QCoreApplication(QObject): method __init__ (line 2470) | def __init__(self, arg__1: typing.Iterable[str], destroyed: typing.Cal... method __init__ (line 2472) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method addLibraryPath (line 2474) | def addLibraryPath(arg__1: str) -> None: ... method applicationDirPath (line 2476) | def applicationDirPath() -> str: ... method applicationFilePath (line 2478) | def applicationFilePath() -> str: ... method applicationName (line 2480) | def applicationName() -> str: ... method applicationPid (line 2482) | def applicationPid() -> int: ... method applicationVersion (line 2484) | def applicationVersion() -> str: ... method arguments (line 2486) | def arguments() -> list[str]: ... method closingDown (line 2488) | def closingDown() -> bool: ... method event (line 2489) | def event(self, arg__1: QEvent) -> bool: ... method eventDispatcher (line 2491) | def eventDispatcher() -> QAbstractEventDispatcher: ... method exec_ (line 2493) | def exec_() -> int: ... method exit (line 2495) | def exit(retcode: int = ...) -> None: ... method flush (line 2497) | def flush() -> None: ... method hasPendingEvents (line 2499) | def hasPendingEvents() -> bool: ... method installNativeEventFilter (line 2500) | def installNativeEventFilter(self, filterObj: QAbstractNativeEventFilt... method installTranslator (line 2502) | def installTranslator(messageFile: QTranslator) -> bool: ... method instance (line 2504) | def instance(cls: type[typing_extensions.Self]) -> typing_extensions.S... method isQuitLockEnabled (line 2506) | def isQuitLockEnabled() -> bool: ... method isSetuidAllowed (line 2508) | def isSetuidAllowed() -> bool: ... method libraryPaths (line 2510) | def libraryPaths() -> list[str]: ... method notify (line 2511) | def notify(self, arg__1: QObject, arg__2: QEvent) -> bool: ... method organizationDomain (line 2513) | def organizationDomain() -> str: ... method organizationName (line 2515) | def organizationName() -> str: ... method postEvent (line 2517) | def postEvent(receiver: QObject, event: QEvent, priority: int = ...) -... method processEvents (line 2520) | def processEvents(flags: QEventLoop.ProcessEventsFlags | QEventLoop.Pr... method processEvents (line 2523) | def processEvents(flags: QEventLoop.ProcessEventsFlags | QEventLoop.Pr... method quit (line 2525) | def quit() -> None: ... method removeLibraryPath (line 2527) | def removeLibraryPath(arg__1: str) -> None: ... method removeNativeEventFilter (line 2528) | def removeNativeEventFilter(self, filterObj: QAbstractNativeEventFilte... method removePostedEvents (line 2530) | def removePostedEvents(receiver: QObject, eventType: int = ...) -> Non... method removeTranslator (line 2532) | def removeTranslator(messageFile: QTranslator) -> bool: ... method sendEvent (line 2534) | def sendEvent(receiver: QObject, event: QEvent) -> bool: ... method sendPostedEvents (line 2536) | def sendPostedEvents(receiver: QObject | None = ..., event_type: int =... method setApplicationName (line 2538) | def setApplicationName(application: str) -> None: ... method setApplicationVersion (line 2540) | def setApplicationVersion(version: str) -> None: ... method setAttribute (line 2542) | def setAttribute(attribute: Qt.ApplicationAttribute, on: bool = ...) -... method setEventDispatcher (line 2544) | def setEventDispatcher(eventDispatcher: QAbstractEventDispatcher) -> N... method setLibraryPaths (line 2546) | def setLibraryPaths(arg__1: typing.Iterable[str]) -> None: ... method setOrganizationDomain (line 2548) | def setOrganizationDomain(orgDomain: str) -> None: ... method setOrganizationName (line 2550) | def setOrganizationName(orgName: str) -> None: ... method setQuitLockEnabled (line 2552) | def setQuitLockEnabled(enabled: bool) -> None: ... method setSetuidAllowed (line 2554) | def setSetuidAllowed(allow: bool) -> None: ... method shutdown (line 2555) | def shutdown(self) -> None: ... method startingUp (line 2557) | def startingUp() -> bool: ... method testAttribute (line 2559) | def testAttribute(attribute: Qt.ApplicationAttribute) -> bool: ... method translate (line 2561) | def translate(cls, context: str, key: str, disambiguation: str | None ... class QCryptographicHash (line 2563) | class QCryptographicHash(shiboken2.Object): class Algorithm (line 2564) | class Algorithm: method __init__ (line 2587) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2588) | def __add__(self, other: typing.SupportsInt) -> QCryptographicHash.A... method __and__ (line 2589) | def __and__(self, other: typing.SupportsInt) -> QCryptographicHash.A... method __bool__ (line 2590) | def __bool__(self) -> bool: ... method __eq__ (line 2591) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2592) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2593) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2594) | def __hash__(self) -> int: ... method __index__ (line 2595) | def __index__(self) -> int: ... method __int__ (line 2596) | def __int__(self) -> int: ... method __le__ (line 2597) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2598) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2599) | def __mul__(self, other: typing.SupportsInt) -> QCryptographicHash.A... method __ne__ (line 2600) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2601) | def __or__(self, other: typing.SupportsInt) -> QCryptographicHash.Al... method __pos__ (line 2602) | def __pos__(self): ... method __radd__ (line 2603) | def __radd__(self, other: typing.SupportsInt) -> QCryptographicHash.... method __rand__ (line 2604) | def __rand__(self, other: typing.SupportsInt) -> QCryptographicHash.... method __rmul__ (line 2605) | def __rmul__(self, other: typing.SupportsInt) -> QCryptographicHash.... method __ror__ (line 2606) | def __ror__(self, other: typing.SupportsInt) -> QCryptographicHash.A... method __rsub__ (line 2607) | def __rsub__(self, other: typing.SupportsInt) -> QCryptographicHash.... method __rxor__ (line 2608) | def __rxor__(self, other: typing.SupportsInt) -> QCryptographicHash.... method __sub__ (line 2609) | def __sub__(self, other: typing.SupportsInt) -> QCryptographicHash.A... method __xor__ (line 2610) | def __xor__(self, other: typing.SupportsInt) -> QCryptographicHash.A... method __init__ (line 2630) | def __init__(self, method: QCryptographicHash.Algorithm) -> None: ... method addData (line 2632) | def addData(self, data: bytes, length: int) -> None: ... method addData (line 2634) | def addData(self, device: QIODevice) -> bool: ... method addData (line 2636) | def addData(self, data: QByteArray | bytes) -> None: ... method hash (line 2638) | def hash(data: QByteArray | bytes, method: QCryptographicHash.Algorith... method hashLength (line 2640) | def hashLength(method: QCryptographicHash.Algorithm) -> int: ... method reset (line 2641) | def reset(self) -> None: ... method result (line 2642) | def result(self) -> QByteArray: ... class QDataStream (line 2644) | class QDataStream(shiboken2.Object): class ByteOrder (line 2645) | class ByteOrder: method __init__ (line 2651) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2652) | def __add__(self, other: typing.SupportsInt) -> QDataStream.ByteOrde... method __and__ (line 2653) | def __and__(self, other: typing.SupportsInt) -> QDataStream.ByteOrde... method __bool__ (line 2654) | def __bool__(self) -> bool: ... method __eq__ (line 2655) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2656) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2657) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2658) | def __hash__(self) -> int: ... method __index__ (line 2659) | def __index__(self) -> int: ... method __int__ (line 2660) | def __int__(self) -> int: ... method __le__ (line 2661) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2662) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2663) | def __mul__(self, other: typing.SupportsInt) -> QDataStream.ByteOrde... method __ne__ (line 2664) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2665) | def __or__(self, other: typing.SupportsInt) -> QDataStream.ByteOrder... method __pos__ (line 2666) | def __pos__(self): ... method __radd__ (line 2667) | def __radd__(self, other: typing.SupportsInt) -> QDataStream.ByteOrd... method __rand__ (line 2668) | def __rand__(self, other: typing.SupportsInt) -> QDataStream.ByteOrd... method __rmul__ (line 2669) | def __rmul__(self, other: typing.SupportsInt) -> QDataStream.ByteOrd... method __ror__ (line 2670) | def __ror__(self, other: typing.SupportsInt) -> QDataStream.ByteOrde... method __rsub__ (line 2671) | def __rsub__(self, other: typing.SupportsInt) -> QDataStream.ByteOrd... method __rxor__ (line 2672) | def __rxor__(self, other: typing.SupportsInt) -> QDataStream.ByteOrd... method __sub__ (line 2673) | def __sub__(self, other: typing.SupportsInt) -> QDataStream.ByteOrde... method __xor__ (line 2674) | def __xor__(self, other: typing.SupportsInt) -> QDataStream.ByteOrde... class FloatingPointPrecision (line 2676) | class FloatingPointPrecision: method __init__ (line 2682) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2683) | def __add__(self, other: typing.SupportsInt) -> QDataStream.Floating... method __and__ (line 2684) | def __and__(self, other: typing.SupportsInt) -> QDataStream.Floating... method __bool__ (line 2685) | def __bool__(self) -> bool: ... method __eq__ (line 2686) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2687) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2688) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2689) | def __hash__(self) -> int: ... method __index__ (line 2690) | def __index__(self) -> int: ... method __int__ (line 2691) | def __int__(self) -> int: ... method __le__ (line 2692) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2694) | def __mul__(self, other: typing.SupportsInt) -> QDataStream.Floating... method __ne__ (line 2695) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2696) | def __or__(self, other: typing.SupportsInt) -> QDataStream.FloatingP... method __pos__ (line 2697) | def __pos__(self): ... method __radd__ (line 2698) | def __radd__(self, other: typing.SupportsInt) -> QDataStream.Floatin... method __rand__ (line 2699) | def __rand__(self, other: typing.SupportsInt) -> QDataStream.Floatin... method __rmul__ (line 2700) | def __rmul__(self, other: typing.SupportsInt) -> QDataStream.Floatin... method __ror__ (line 2701) | def __ror__(self, other: typing.SupportsInt) -> QDataStream.Floating... method __rsub__ (line 2702) | def __rsub__(self, other: typing.SupportsInt) -> QDataStream.Floatin... method __rxor__ (line 2703) | def __rxor__(self, other: typing.SupportsInt) -> QDataStream.Floatin... method __sub__ (line 2704) | def __sub__(self, other: typing.SupportsInt) -> QDataStream.Floating... method __xor__ (line 2705) | def __xor__(self, other: typing.SupportsInt) -> QDataStream.Floating... class Status (line 2707) | class Status: method __init__ (line 2715) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2716) | def __add__(self, other: typing.SupportsInt) -> QDataStream.Status: ... method __and__ (line 2717) | def __and__(self, other: typing.SupportsInt) -> QDataStream.Status: ... method __bool__ (line 2718) | def __bool__(self) -> bool: ... method __eq__ (line 2719) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2720) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2721) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2722) | def __hash__(self) -> int: ... method __index__ (line 2723) | def __index__(self) -> int: ... method __int__ (line 2724) | def __int__(self) -> int: ... method __le__ (line 2725) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2726) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2727) | def __mul__(self, other: typing.SupportsInt) -> QDataStream.Status: ... method __ne__ (line 2728) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2729) | def __or__(self, other: typing.SupportsInt) -> QDataStream.Status: ... method __pos__ (line 2730) | def __pos__(self): ... method __radd__ (line 2731) | def __radd__(self, other: typing.SupportsInt) -> QDataStream.Status:... method __rand__ (line 2732) | def __rand__(self, other: typing.SupportsInt) -> QDataStream.Status:... method __rmul__ (line 2733) | def __rmul__(self, other: typing.SupportsInt) -> QDataStream.Status:... method __ror__ (line 2734) | def __ror__(self, other: typing.SupportsInt) -> QDataStream.Status: ... method __rsub__ (line 2735) | def __rsub__(self, other: typing.SupportsInt) -> QDataStream.Status:... method __rxor__ (line 2736) | def __rxor__(self, other: typing.SupportsInt) -> QDataStream.Status:... method __sub__ (line 2737) | def __sub__(self, other: typing.SupportsInt) -> QDataStream.Status: ... method __xor__ (line 2738) | def __xor__(self, other: typing.SupportsInt) -> QDataStream.Status: ... class Version (line 2740) | class Version: method __init__ (line 2777) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2778) | def __add__(self, other: typing.SupportsInt) -> QDataStream.Version:... method __and__ (line 2779) | def __and__(self, other: typing.SupportsInt) -> QDataStream.Version:... method __bool__ (line 2780) | def __bool__(self) -> bool: ... method __eq__ (line 2781) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2782) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2783) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2784) | def __hash__(self) -> int: ... method __index__ (line 2785) | def __index__(self) -> int: ... method __int__ (line 2786) | def __int__(self) -> int: ... method __le__ (line 2787) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2788) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2789) | def __mul__(self, other: typing.SupportsInt) -> QDataStream.Version:... method __ne__ (line 2790) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2791) | def __or__(self, other: typing.SupportsInt) -> QDataStream.Version: ... method __pos__ (line 2792) | def __pos__(self): ... method __radd__ (line 2793) | def __radd__(self, other: typing.SupportsInt) -> QDataStream.Version... method __rand__ (line 2794) | def __rand__(self, other: typing.SupportsInt) -> QDataStream.Version... method __rmul__ (line 2795) | def __rmul__(self, other: typing.SupportsInt) -> QDataStream.Version... method __ror__ (line 2796) | def __ror__(self, other: typing.SupportsInt) -> QDataStream.Version:... method __rsub__ (line 2797) | def __rsub__(self, other: typing.SupportsInt) -> QDataStream.Version... method __rxor__ (line 2798) | def __rxor__(self, other: typing.SupportsInt) -> QDataStream.Version... method __sub__ (line 2799) | def __sub__(self, other: typing.SupportsInt) -> QDataStream.Version:... method __xor__ (line 2800) | def __xor__(self, other: typing.SupportsInt) -> QDataStream.Version:... method __init__ (line 2843) | def __init__(self, arg__1: QByteArray | bytes, flags: QIODevice.OpenMo... method __init__ (line 2845) | def __init__(self, arg__1: QByteArray | bytes) -> None: ... method __init__ (line 2847) | def __init__(self, arg__1: QIODevice) -> None: ... method __init__ (line 2849) | def __init__(self) -> None: ... method abortTransaction (line 2850) | def abortTransaction(self) -> None: ... method atEnd (line 2851) | def atEnd(self) -> bool: ... method byteOrder (line 2852) | def byteOrder(self) -> QDataStream.ByteOrder: ... method commitTransaction (line 2853) | def commitTransaction(self) -> bool: ... method device (line 2854) | def device(self) -> QIODevice: ... method floatingPointPrecision (line 2855) | def floatingPointPrecision(self) -> QDataStream.FloatingPointPrecision... method readBool (line 2856) | def readBool(self) -> bool: ... method readDouble (line 2857) | def readDouble(self) -> float: ... method readFloat (line 2858) | def readFloat(self) -> float: ... method readInt16 (line 2859) | def readInt16(self) -> int: ... method readInt32 (line 2860) | def readInt32(self) -> int: ... method readInt64 (line 2861) | def readInt64(self) -> int: ... method readInt8 (line 2862) | def readInt8(self) -> int: ... method readQChar (line 2863) | def readQChar(self) -> str: ... method readQString (line 2864) | def readQString(self) -> str: ... method readQStringList (line 2865) | def readQStringList(self) -> list[str]: ... method readQVariant (line 2866) | def readQVariant(self) -> typing.Any: ... method readRawData (line 2867) | def readRawData(self, arg__1: bytes, len: int) -> int: ... method readString (line 2868) | def readString(self) -> str: ... method readUInt16 (line 2869) | def readUInt16(self) -> int: ... method readUInt32 (line 2870) | def readUInt32(self) -> int: ... method readUInt64 (line 2871) | def readUInt64(self) -> int: ... method readUInt8 (line 2872) | def readUInt8(self) -> int: ... method resetStatus (line 2873) | def resetStatus(self) -> None: ... method rollbackTransaction (line 2874) | def rollbackTransaction(self) -> None: ... method setByteOrder (line 2875) | def setByteOrder(self, arg__1: QDataStream.ByteOrder) -> None: ... method setDevice (line 2876) | def setDevice(self, arg__1: QIODevice) -> None: ... method setFloatingPointPrecision (line 2877) | def setFloatingPointPrecision(self, precision: QDataStream.FloatingPoi... method setStatus (line 2878) | def setStatus(self, status: QDataStream.Status) -> None: ... method setVersion (line 2879) | def setVersion(self, arg__1: int) -> None: ... method skipRawData (line 2880) | def skipRawData(self, len: int) -> int: ... method startTransaction (line 2881) | def startTransaction(self) -> None: ... method status (line 2882) | def status(self) -> QDataStream.Status: ... method unsetDevice (line 2883) | def unsetDevice(self) -> None: ... method version (line 2884) | def version(self) -> int: ... method writeBool (line 2885) | def writeBool(self, arg__1: bool) -> None: ... method writeDouble (line 2886) | def writeDouble(self, arg__1: float) -> None: ... method writeFloat (line 2887) | def writeFloat(self, arg__1: float) -> None: ... method writeInt16 (line 2888) | def writeInt16(self, arg__1: int) -> None: ... method writeInt32 (line 2889) | def writeInt32(self, arg__1: int) -> None: ... method writeInt64 (line 2890) | def writeInt64(self, arg__1: int) -> None: ... method writeInt8 (line 2891) | def writeInt8(self, arg__1: int) -> None: ... method writeQChar (line 2892) | def writeQChar(self, arg__1: str) -> None: ... method writeQString (line 2893) | def writeQString(self, arg__1: str) -> None: ... method writeQStringList (line 2894) | def writeQStringList(self, arg__1: typing.Iterable[str]) -> None: ... method writeQVariant (line 2895) | def writeQVariant(self, arg__1: typing.Any) -> None: ... method writeRawData (line 2896) | def writeRawData(self, arg__1: bytes, len: int) -> int: ... method writeString (line 2897) | def writeString(self, arg__1: str) -> None: ... method writeUInt16 (line 2898) | def writeUInt16(self, arg__1: int) -> None: ... method writeUInt32 (line 2899) | def writeUInt32(self, arg__1: int) -> None: ... method writeUInt64 (line 2900) | def writeUInt64(self, arg__1: int) -> None: ... method writeUInt8 (line 2901) | def writeUInt8(self, arg__1: int) -> None: ... method __lshift__ (line 2903) | def __lshift__(self, version: QVersionNumber) -> QDataStream: ... method __lshift__ (line 2905) | def __lshift__(self, tz: QTimeZone) -> QDataStream: ... method __lshift__ (line 2907) | def __lshift__(self, regExp: QRegExp) -> QDataStream: ... method __lshift__ (line 2909) | def __lshift__(self, re: QRegularExpression) -> QDataStream: ... method __lshift__ (line 2911) | def __lshift__(self, arg__2: QBitArray) -> QDataStream: ... method __lshift__ (line 2913) | def __lshift__(self, arg__2: QByteArray | bytes) -> QDataStream: ... method __lshift__ (line 2915) | def __lshift__(self, arg__2: QCborArray) -> QDataStream: ... method __lshift__ (line 2917) | def __lshift__(self, arg__2: QCborMap) -> QDataStream: ... method __lshift__ (line 2919) | def __lshift__(self, arg__2: QCborValue) -> QDataStream: ... method __lshift__ (line 2921) | def __lshift__(self, arg__2: QDate | datetime.date) -> QDataStream: ... method __lshift__ (line 2923) | def __lshift__(self, arg__2: QDateTime | datetime.datetime) -> QDataSt... method __lshift__ (line 2925) | def __lshift__(self, arg__2: QEasingCurve | QEasingCurve.Type) -> QDat... method __lshift__ (line 2927) | def __lshift__(self, arg__2: QJsonArray) -> QDataStream: ... method __lshift__ (line 2929) | def __lshift__(self, arg__2: QJsonDocument) -> QDataStream: ... method __lshift__ (line 2931) | def __lshift__(self, arg__2: QJsonValue) -> QDataStream: ... method __lshift__ (line 2933) | def __lshift__(self, arg__2: QLine) -> QDataStream: ... method __lshift__ (line 2935) | def __lshift__(self, arg__2: QLineF) -> QDataStream: ... method __lshift__ (line 2937) | def __lshift__(self, arg__2: QLocale) -> QDataStream: ... method __lshift__ (line 2939) | def __lshift__(self, arg__2: QMargins) -> QDataStream: ... method __lshift__ (line 2941) | def __lshift__(self, arg__2: QMarginsF) -> QDataStream: ... method __lshift__ (line 2943) | def __lshift__(self, arg__2: QPoint) -> QDataStream: ... method __lshift__ (line 2945) | def __lshift__(self, arg__2: QPointF) -> QDataStream: ... method __lshift__ (line 2947) | def __lshift__(self, arg__2: QRect) -> QDataStream: ... method __lshift__ (line 2949) | def __lshift__(self, arg__2: QRectF) -> QDataStream: ... method __lshift__ (line 2951) | def __lshift__(self, arg__2: QSize) -> QDataStream: ... method __lshift__ (line 2953) | def __lshift__(self, arg__2: QSizeF) -> QDataStream: ... method __lshift__ (line 2955) | def __lshift__(self, arg__2: QTime) -> QDataStream: ... method __lshift__ (line 2957) | def __lshift__(self, arg__2: QUrl) -> QDataStream: ... method __lshift__ (line 2959) | def __lshift__(self, arg__2: QUuid) -> QDataStream: ... method __lshift__ (line 2961) | def __lshift__(self, arg__1: str) -> None: ... method __rlshift__ (line 2962) | def __rlshift__(self, other): ... method __rrshift__ (line 2963) | def __rrshift__(self, other): ... method __rshift__ (line 2965) | def __rshift__(self, version: QVersionNumber) -> QDataStream: ... method __rshift__ (line 2967) | def __rshift__(self, tz: QTimeZone) -> QDataStream: ... method __rshift__ (line 2969) | def __rshift__(self, regExp: QRegExp) -> QDataStream: ... method __rshift__ (line 2971) | def __rshift__(self, re: QRegularExpression) -> QDataStream: ... method __rshift__ (line 2973) | def __rshift__(self, arg__2: QBitArray) -> QDataStream: ... method __rshift__ (line 2975) | def __rshift__(self, arg__2: QByteArray | bytes) -> QDataStream: ... method __rshift__ (line 2977) | def __rshift__(self, arg__2: QCborArray) -> QDataStream: ... method __rshift__ (line 2979) | def __rshift__(self, arg__2: QCborMap) -> QDataStream: ... method __rshift__ (line 2981) | def __rshift__(self, arg__2: QCborValue) -> QDataStream: ... method __rshift__ (line 2983) | def __rshift__(self, arg__2: QDate | datetime.date) -> QDataStream: ... method __rshift__ (line 2985) | def __rshift__(self, arg__2: QDateTime | datetime.datetime) -> QDataSt... method __rshift__ (line 2987) | def __rshift__(self, arg__2: QEasingCurve | QEasingCurve.Type) -> QDat... method __rshift__ (line 2989) | def __rshift__(self, arg__2: QJsonArray) -> QDataStream: ... method __rshift__ (line 2991) | def __rshift__(self, arg__2: QJsonDocument) -> QDataStream: ... method __rshift__ (line 2993) | def __rshift__(self, arg__2: QJsonValue) -> QDataStream: ... method __rshift__ (line 2995) | def __rshift__(self, arg__2: QLine) -> QDataStream: ... method __rshift__ (line 2997) | def __rshift__(self, arg__2: QLineF) -> QDataStream: ... method __rshift__ (line 2999) | def __rshift__(self, arg__2: QLocale) -> QDataStream: ... method __rshift__ (line 3001) | def __rshift__(self, arg__2: QMargins) -> QDataStream: ... method __rshift__ (line 3003) | def __rshift__(self, arg__2: QMarginsF) -> QDataStream: ... method __rshift__ (line 3005) | def __rshift__(self, arg__2: QPoint) -> QDataStream: ... method __rshift__ (line 3007) | def __rshift__(self, arg__2: QPointF) -> QDataStream: ... method __rshift__ (line 3009) | def __rshift__(self, arg__2: QRect) -> QDataStream: ... method __rshift__ (line 3011) | def __rshift__(self, arg__2: QRectF) -> QDataStream: ... method __rshift__ (line 3013) | def __rshift__(self, arg__2: QSize) -> QDataStream: ... method __rshift__ (line 3015) | def __rshift__(self, arg__2: QSizeF) -> QDataStream: ... method __rshift__ (line 3017) | def __rshift__(self, arg__2: QTime) -> QDataStream: ... method __rshift__ (line 3019) | def __rshift__(self, arg__2: QUrl) -> QDataStream: ... method __rshift__ (line 3021) | def __rshift__(self, arg__2: QUuid) -> QDataStream: ... class QDate (line 3023) | class QDate(shiboken2.Object): class MonthNameType (line 3024) | class MonthNameType: method __init__ (line 3030) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3031) | def __add__(self, other: typing.SupportsInt) -> QDate.MonthNameType:... method __and__ (line 3032) | def __and__(self, other: typing.SupportsInt) -> QDate.MonthNameType:... method __bool__ (line 3033) | def __bool__(self) -> bool: ... method __eq__ (line 3034) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3035) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3036) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3037) | def __hash__(self) -> int: ... method __index__ (line 3038) | def __index__(self) -> int: ... method __int__ (line 3039) | def __int__(self) -> int: ... method __le__ (line 3040) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3041) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3042) | def __mul__(self, other: typing.SupportsInt) -> QDate.MonthNameType:... method __ne__ (line 3043) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3044) | def __or__(self, other: typing.SupportsInt) -> QDate.MonthNameType: ... method __pos__ (line 3045) | def __pos__(self): ... method __radd__ (line 3046) | def __radd__(self, other: typing.SupportsInt) -> QDate.MonthNameType... method __rand__ (line 3047) | def __rand__(self, other: typing.SupportsInt) -> QDate.MonthNameType... method __rmul__ (line 3048) | def __rmul__(self, other: typing.SupportsInt) -> QDate.MonthNameType... method __ror__ (line 3049) | def __ror__(self, other: typing.SupportsInt) -> QDate.MonthNameType:... method __rsub__ (line 3050) | def __rsub__(self, other: typing.SupportsInt) -> QDate.MonthNameType... method __rxor__ (line 3051) | def __rxor__(self, other: typing.SupportsInt) -> QDate.MonthNameType... method __sub__ (line 3052) | def __sub__(self, other: typing.SupportsInt) -> QDate.MonthNameType:... method __xor__ (line 3053) | def __xor__(self, other: typing.SupportsInt) -> QDate.MonthNameType:... method __init__ (line 3057) | def __init__(self, y: int, m: int, d: int, cal: QCalendar) -> None: ... method __init__ (line 3059) | def __init__(self, y: int, m: int, d: int) -> None: ... method __init__ (line 3061) | def __init__(self, QDate: QDate | datetime.date) -> None: ... method __init__ (line 3063) | def __init__(self) -> None: ... method addDays (line 3064) | def addDays(self, days: int) -> QDate: ... method addMonths (line 3066) | def addMonths(self, months: int, cal: QCalendar) -> QDate: ... method addMonths (line 3068) | def addMonths(self, months: int) -> QDate: ... method addYears (line 3070) | def addYears(self, years: int, cal: QCalendar) -> QDate: ... method addYears (line 3072) | def addYears(self, years: int) -> QDate: ... method currentDate (line 3074) | def currentDate() -> QDate: ... method day (line 3076) | def day(self, cal: QCalendar) -> int: ... method day (line 3078) | def day(self) -> int: ... method dayOfWeek (line 3080) | def dayOfWeek(self, cal: QCalendar) -> int: ... method dayOfWeek (line 3082) | def dayOfWeek(self) -> int: ... method dayOfYear (line 3084) | def dayOfYear(self, cal: QCalendar) -> int: ... method dayOfYear (line 3086) | def dayOfYear(self) -> int: ... method daysInMonth (line 3088) | def daysInMonth(self, cal: QCalendar) -> int: ... method daysInMonth (line 3090) | def daysInMonth(self) -> int: ... method daysInYear (line 3092) | def daysInYear(self, cal: QCalendar) -> int: ... method daysInYear (line 3094) | def daysInYear(self) -> int: ... method daysTo (line 3095) | def daysTo(self, arg__1: QDate | datetime.date) -> int: ... method endOfDay (line 3097) | def endOfDay(self, spec: Qt.TimeSpec = ..., offsetSeconds: int = ...) ... method endOfDay (line 3099) | def endOfDay(self, zone: QTimeZone) -> QDateTime: ... method fromJulianDay (line 3101) | def fromJulianDay(jd_: int) -> QDate: ... method fromString (line 3104) | def fromString(s: str, format: str, cal: QCalendar) -> QDate: ... method fromString (line 3107) | def fromString(s: str, format: str) -> QDate: ... method fromString (line 3110) | def fromString(s: str, f: Qt.DateFormat = ...) -> QDate: ... method getDate (line 3111) | def getDate(self) -> tuple[int, int, int]: ... method isLeapYear (line 3113) | def isLeapYear(year: int) -> bool: ... method isNull (line 3114) | def isNull(self) -> bool: ... method isValid (line 3116) | def isValid(self) -> typing.Any: ... method longDayName (line 3118) | def longDayName(weekday: int, type: QDate.MonthNameType = ...) -> str:... method longMonthName (line 3120) | def longMonthName(month: int, type: QDate.MonthNameType = ...) -> str:... method month (line 3122) | def month(self, cal: QCalendar) -> int: ... method month (line 3124) | def month(self) -> int: ... method setDate (line 3126) | def setDate(self, year: int, month: int, day: int, cal: QCalendar) -> ... method setDate (line 3128) | def setDate(self, year: int, month: int, day: int) -> bool: ... method shortDayName (line 3130) | def shortDayName(weekday: int, type: QDate.MonthNameType = ...) -> str... method shortMonthName (line 3132) | def shortMonthName(month: int, type: QDate.MonthNameType = ...) -> str... method startOfDay (line 3134) | def startOfDay(self, spec: Qt.TimeSpec = ..., offsetSeconds: int = ...... method startOfDay (line 3136) | def startOfDay(self, zone: QTimeZone) -> QDateTime: ... method toJulianDay (line 3137) | def toJulianDay(self) -> int: ... method toPython (line 3138) | def toPython(self) -> typing.Any: ... method toString (line 3140) | def toString(self, format: Qt.DateFormat, cal: QCalendar) -> str: ... method toString (line 3142) | def toString(self, format: str, cal: QCalendar) -> str: ... method toString (line 3144) | def toString(self, format: Qt.DateFormat = ...) -> str: ... method toString (line 3146) | def toString(self, format: str) -> str: ... method weekNumber (line 3147) | def weekNumber(self) -> tuple[int, int]: ... method year (line 3149) | def year(self, cal: QCalendar) -> int: ... method year (line 3151) | def year(self) -> int: ... method __bool__ (line 3152) | def __bool__(self) -> bool: ... method __copy__ (line 3153) | def __copy__(self) -> None: ... method __eq__ (line 3154) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3155) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3156) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3157) | def __hash__(self) -> int: ... method __le__ (line 3158) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3159) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3160) | def __ne__(self, other: object) -> bool: ... class QDateTime (line 3162) | class QDateTime(shiboken2.Object): class YearRange (line 3163) | class YearRange: method __init__ (line 3169) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3170) | def __add__(self, other: typing.SupportsInt) -> QDateTime.YearRange:... method __and__ (line 3171) | def __and__(self, other: typing.SupportsInt) -> QDateTime.YearRange:... method __bool__ (line 3172) | def __bool__(self) -> bool: ... method __eq__ (line 3173) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3174) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3175) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3176) | def __hash__(self) -> int: ... method __index__ (line 3177) | def __index__(self) -> int: ... method __int__ (line 3178) | def __int__(self) -> int: ... method __le__ (line 3179) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3180) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3181) | def __mul__(self, other: typing.SupportsInt) -> QDateTime.YearRange:... method __ne__ (line 3182) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3183) | def __or__(self, other: typing.SupportsInt) -> QDateTime.YearRange: ... method __pos__ (line 3184) | def __pos__(self): ... method __radd__ (line 3185) | def __radd__(self, other: typing.SupportsInt) -> QDateTime.YearRange... method __rand__ (line 3186) | def __rand__(self, other: typing.SupportsInt) -> QDateTime.YearRange... method __rmul__ (line 3187) | def __rmul__(self, other: typing.SupportsInt) -> QDateTime.YearRange... method __ror__ (line 3188) | def __ror__(self, other: typing.SupportsInt) -> QDateTime.YearRange:... method __rsub__ (line 3189) | def __rsub__(self, other: typing.SupportsInt) -> QDateTime.YearRange... method __rxor__ (line 3190) | def __rxor__(self, other: typing.SupportsInt) -> QDateTime.YearRange... method __sub__ (line 3191) | def __sub__(self, other: typing.SupportsInt) -> QDateTime.YearRange:... method __xor__ (line 3192) | def __xor__(self, other: typing.SupportsInt) -> QDateTime.YearRange:... method __init__ (line 3194) | def __init__(self, arg__1: int, arg__2: int, arg__3: int, arg__4: int,... method __init__ (line 3196) | def __init__(self, arg__1: int, arg__2: int, arg__3: int, arg__4: int,... method __init__ (line 3198) | def __init__(self, date: QDate | datetime.date, time: QTime, spec: Qt.... method __init__ (line 3200) | def __init__(self, date: QDate | datetime.date, time: QTime, timeZone:... method __init__ (line 3202) | def __init__(self, arg__1: QDate | datetime.date, arg__2: QTime, spec:... method __init__ (line 3204) | def __init__(self, other: QDateTime | datetime.datetime) -> None: ... method __init__ (line 3206) | def __init__(self, arg__1: QDate | datetime.date) -> None: ... method __init__ (line 3208) | def __init__(self) -> None: ... method addDays (line 3209) | def addDays(self, days: int) -> QDateTime: ... method addMSecs (line 3210) | def addMSecs(self, msecs: int) -> QDateTime: ... method addMonths (line 3211) | def addMonths(self, months: int) -> QDateTime: ... method addSecs (line 3212) | def addSecs(self, secs: int) -> QDateTime: ... method addYears (line 3213) | def addYears(self, years: int) -> QDateTime: ... method currentDateTime (line 3215) | def currentDateTime() -> QDateTime: ... method currentDateTimeUtc (line 3217) | def currentDateTimeUtc() -> QDateTime: ... method currentMSecsSinceEpoch (line 3219) | def currentMSecsSinceEpoch() -> int: ... method currentSecsSinceEpoch (line 3221) | def currentSecsSinceEpoch() -> int: ... method date (line 3222) | def date(self) -> QDate: ... method daysTo (line 3223) | def daysTo(self, arg__1: QDateTime | datetime.datetime) -> int: ... method fromMSecsSinceEpoch (line 3226) | def fromMSecsSinceEpoch(msecs: int, spec: Qt.TimeSpec, offsetFromUtc: ... method fromMSecsSinceEpoch (line 3229) | def fromMSecsSinceEpoch(msecs: int, timeZone: QTimeZone) -> QDateTime:... method fromMSecsSinceEpoch (line 3232) | def fromMSecsSinceEpoch(msecs: int) -> QDateTime: ... method fromSecsSinceEpoch (line 3235) | def fromSecsSinceEpoch(secs: int, spe: Qt.TimeSpec = ..., offsetFromUt... method fromSecsSinceEpoch (line 3238) | def fromSecsSinceEpoch(secs: int, timeZone: QTimeZone) -> QDateTime: ... method fromString (line 3241) | def fromString(s: str, format: str, cal: QCalendar) -> QDateTime: ... method fromString (line 3244) | def fromString(s: str, format: str) -> QDateTime: ... method fromString (line 3247) | def fromString(s: str, f: Qt.DateFormat = ...) -> QDateTime: ... method fromTime_t (line 3250) | def fromTime_t(secsSince1Jan1970UTC: int, spec: Qt.TimeSpec, offsetFro... method fromTime_t (line 3253) | def fromTime_t(secsSince1Jan1970UTC: int, timeZone: QTimeZone) -> QDat... method fromTime_t (line 3256) | def fromTime_t(secsSince1Jan1970UTC: int) -> QDateTime: ... method isDaylightTime (line 3257) | def isDaylightTime(self) -> bool: ... method isNull (line 3258) | def isNull(self) -> bool: ... method isValid (line 3259) | def isValid(self) -> bool: ... method msecsTo (line 3260) | def msecsTo(self, arg__1: QDateTime | datetime.datetime) -> int: ... method offsetFromUtc (line 3261) | def offsetFromUtc(self) -> int: ... method secsTo (line 3262) | def secsTo(self, arg__1: QDateTime | datetime.datetime) -> int: ... method setDate (line 3263) | def setDate(self, date: QDate | datetime.date) -> None: ... method setMSecsSinceEpoch (line 3264) | def setMSecsSinceEpoch(self, msecs: int) -> None: ... method setOffsetFromUtc (line 3265) | def setOffsetFromUtc(self, offsetSeconds: int) -> None: ... method setSecsSinceEpoch (line 3266) | def setSecsSinceEpoch(self, secs: int) -> None: ... method setTime (line 3267) | def setTime(self, time: QTime) -> None: ... method setTimeSpec (line 3268) | def setTimeSpec(self, spec: Qt.TimeSpec) -> None: ... method setTimeZone (line 3269) | def setTimeZone(self, toZone: QTimeZone) -> None: ... method setTime_t (line 3270) | def setTime_t(self, secsSince1Jan1970UTC: int) -> None: ... method setUtcOffset (line 3271) | def setUtcOffset(self, seconds: int) -> None: ... method swap (line 3272) | def swap(self, other: QDateTime | datetime.datetime) -> None: ... method time (line 3273) | def time(self) -> QTime: ... method timeSpec (line 3274) | def timeSpec(self) -> Qt.TimeSpec: ... method timeZone (line 3275) | def timeZone(self) -> QTimeZone: ... method timeZoneAbbreviation (line 3276) | def timeZoneAbbreviation(self) -> str: ... method toLocalTime (line 3277) | def toLocalTime(self) -> QDateTime: ... method toMSecsSinceEpoch (line 3278) | def toMSecsSinceEpoch(self) -> int: ... method toOffsetFromUtc (line 3279) | def toOffsetFromUtc(self, offsetSeconds: int) -> QDateTime: ... method toPython (line 3280) | def toPython(self) -> typing.Any: ... method toSecsSinceEpoch (line 3281) | def toSecsSinceEpoch(self) -> int: ... method toString (line 3283) | def toString(self, format: str, cal: QCalendar) -> str: ... method toString (line 3285) | def toString(self, format: Qt.DateFormat = ...) -> str: ... method toString (line 3287) | def toString(self, format: str) -> str: ... method toTimeSpec (line 3288) | def toTimeSpec(self, spec: Qt.TimeSpec) -> QDateTime: ... method toTimeZone (line 3289) | def toTimeZone(self, toZone: QTimeZone) -> QDateTime: ... method toTime_t (line 3290) | def toTime_t(self) -> int: ... method toUTC (line 3291) | def toUTC(self) -> QDateTime: ... method utcOffset (line 3292) | def utcOffset(self) -> int: ... method __bool__ (line 3293) | def __bool__(self) -> bool: ... method __copy__ (line 3294) | def __copy__(self) -> None: ... method __eq__ (line 3295) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3296) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3297) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3298) | def __hash__(self) -> int: ... method __le__ (line 3299) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3300) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3301) | def __ne__(self, other: object) -> bool: ... class QDeadlineTimer (line 3303) | class QDeadlineTimer(shiboken2.Object): class ForeverConstant (line 3304) | class ForeverConstant: method __init__ (line 3309) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3310) | def __add__(self, other: typing.SupportsInt) -> QDeadlineTimer.Forev... method __and__ (line 3311) | def __and__(self, other: typing.SupportsInt) -> QDeadlineTimer.Forev... method __bool__ (line 3312) | def __bool__(self) -> bool: ... method __eq__ (line 3313) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3314) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3315) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3316) | def __hash__(self) -> int: ... method __index__ (line 3317) | def __index__(self) -> int: ... method __int__ (line 3318) | def __int__(self) -> int: ... method __le__ (line 3319) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3320) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3321) | def __mul__(self, other: typing.SupportsInt) -> QDeadlineTimer.Forev... method __ne__ (line 3322) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3323) | def __or__(self, other: typing.SupportsInt) -> QDeadlineTimer.Foreve... method __pos__ (line 3324) | def __pos__(self): ... method __radd__ (line 3325) | def __radd__(self, other: typing.SupportsInt) -> QDeadlineTimer.Fore... method __rand__ (line 3326) | def __rand__(self, other: typing.SupportsInt) -> QDeadlineTimer.Fore... method __rmul__ (line 3327) | def __rmul__(self, other: typing.SupportsInt) -> QDeadlineTimer.Fore... method __ror__ (line 3328) | def __ror__(self, other: typing.SupportsInt) -> QDeadlineTimer.Forev... method __rsub__ (line 3329) | def __rsub__(self, other: typing.SupportsInt) -> QDeadlineTimer.Fore... method __rxor__ (line 3330) | def __rxor__(self, other: typing.SupportsInt) -> QDeadlineTimer.Fore... method __sub__ (line 3331) | def __sub__(self, other: typing.SupportsInt) -> QDeadlineTimer.Forev... method __xor__ (line 3332) | def __xor__(self, other: typing.SupportsInt) -> QDeadlineTimer.Forev... method __init__ (line 3335) | def __init__(self, msecs: int, type: Qt.TimerType = ...) -> None: ... method __init__ (line 3337) | def __init__(self, arg__1: QDeadlineTimer.ForeverConstant, type_: Qt.T... method __init__ (line 3339) | def __init__(self, type_: Qt.TimerType = ...) -> None: ... method __init__ (line 3341) | def __init__(self, QDeadlineTimer: QDeadlineTimer) -> None: ... method _q_data (line 3342) | def _q_data(self) -> tuple[int, int]: ... method addNSecs (line 3344) | def addNSecs(dt: QDeadlineTimer, nsecs: int) -> QDeadlineTimer: ... method current (line 3346) | def current(timerType: Qt.TimerType = ...) -> QDeadlineTimer: ... method deadline (line 3347) | def deadline(self) -> int: ... method deadlineNSecs (line 3348) | def deadlineNSecs(self) -> int: ... method hasExpired (line 3349) | def hasExpired(self) -> bool: ... method isForever (line 3350) | def isForever(self) -> bool: ... method remainingTime (line 3351) | def remainingTime(self) -> int: ... method remainingTimeNSecs (line 3352) | def remainingTimeNSecs(self) -> int: ... method setDeadline (line 3353) | def setDeadline(self, msecs: int, timerType: Qt.TimerType = ...) -> No... method setPreciseDeadline (line 3354) | def setPreciseDeadline(self, secs: int, nsecs: int = ..., type: Qt.Tim... method setPreciseRemainingTime (line 3355) | def setPreciseRemainingTime(self, secs: int, nsecs: int = ..., type: Q... method setRemainingTime (line 3356) | def setRemainingTime(self, msecs: int, type: Qt.TimerType = ...) -> No... method setTimerType (line 3357) | def setTimerType(self, type: Qt.TimerType) -> None: ... method swap (line 3358) | def swap(self, other: QDeadlineTimer) -> None: ... method timerType (line 3359) | def timerType(self) -> Qt.TimerType: ... method __copy__ (line 3360) | def __copy__(self) -> None: ... method __iadd__ (line 3361) | def __iadd__(self, msecs: int) -> QDeadlineTimer: ... method __isub__ (line 3362) | def __isub__(self, msecs: int) -> QDeadlineTimer: ... class QDir (line 3364) | class QDir(shiboken2.Object): class Filter (line 3365) | class Filter: method __init__ (line 3389) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3390) | def __and__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __bool__ (line 3391) | def __bool__(self) -> bool: ... method __eq__ (line 3392) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3393) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3394) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3395) | def __hash__(self) -> int: ... method __index__ (line 3396) | def __index__(self) -> int: ... method __int__ (line 3397) | def __int__(self) -> int: ... method __invert__ (line 3398) | def __invert__(self) -> QDir.Filters: ... method __le__ (line 3399) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3400) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3401) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3402) | def __or__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __rand__ (line 3403) | def __rand__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __ror__ (line 3404) | def __ror__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __rxor__ (line 3405) | def __rxor__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __xor__ (line 3406) | def __xor__(self, other: typing.SupportsInt) -> QDir.Filters: ... class Filters (line 3408) | class Filters: method __init__ (line 3410) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3411) | def __and__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __bool__ (line 3412) | def __bool__(self) -> bool: ... method __eq__ (line 3413) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3414) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3415) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3416) | def __index__(self) -> int: ... method __int__ (line 3417) | def __int__(self) -> int: ... method __invert__ (line 3418) | def __invert__(self) -> QDir.Filters: ... method __le__ (line 3419) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3420) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3421) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3422) | def __or__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __rand__ (line 3423) | def __rand__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __ror__ (line 3424) | def __ror__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __rxor__ (line 3425) | def __rxor__(self, other: typing.SupportsInt) -> QDir.Filters: ... method __xor__ (line 3426) | def __xor__(self, other: typing.SupportsInt) -> QDir.Filters: ... class SortFlag (line 3428) | class SortFlag: method __init__ (line 3444) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3445) | def __and__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __bool__ (line 3446) | def __bool__(self) -> bool: ... method __eq__ (line 3447) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3448) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3449) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3450) | def __hash__(self) -> int: ... method __index__ (line 3451) | def __index__(self) -> int: ... method __int__ (line 3452) | def __int__(self) -> int: ... method __invert__ (line 3453) | def __invert__(self) -> QDir.SortFlags: ... method __le__ (line 3454) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3455) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3456) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3457) | def __or__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __rand__ (line 3458) | def __rand__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __ror__ (line 3459) | def __ror__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __rxor__ (line 3460) | def __rxor__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __xor__ (line 3461) | def __xor__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... class SortFlags (line 3463) | class SortFlags: method __init__ (line 3465) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3466) | def __and__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __bool__ (line 3467) | def __bool__(self) -> bool: ... method __eq__ (line 3468) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3469) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3470) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3471) | def __index__(self) -> int: ... method __int__ (line 3472) | def __int__(self) -> int: ... method __invert__ (line 3473) | def __invert__(self) -> QDir.SortFlags: ... method __le__ (line 3474) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3475) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3476) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3477) | def __or__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __rand__ (line 3478) | def __rand__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __ror__ (line 3479) | def __ror__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __rxor__ (line 3480) | def __rxor__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __xor__ (line 3481) | def __xor__(self, other: typing.SupportsInt) -> QDir.SortFlags: ... method __init__ (line 3515) | def __init__(self, path: str, nameFilter: str, sort: QDir.SortFlags | ... method __init__ (line 3517) | def __init__(self, path: str = ...) -> None: ... method __init__ (line 3519) | def __init__(self, arg__1: QDir) -> None: ... method absoluteFilePath (line 3520) | def absoluteFilePath(self, fileName: str) -> str: ... method absolutePath (line 3521) | def absolutePath(self) -> str: ... method addResourceSearchPath (line 3523) | def addResourceSearchPath(path: str) -> None: ... method addSearchPath (line 3525) | def addSearchPath(prefix: str, path: str) -> None: ... method canonicalPath (line 3526) | def canonicalPath(self) -> str: ... method cd (line 3527) | def cd(self, dirName: str) -> bool: ... method cdUp (line 3528) | def cdUp(self) -> bool: ... method cleanPath (line 3530) | def cleanPath(path: str) -> str: ... method count (line 3531) | def count(self) -> int: ... method current (line 3533) | def current() -> QDir: ... method currentPath (line 3535) | def currentPath() -> str: ... method dirName (line 3536) | def dirName(self) -> str: ... method drives (line 3538) | def drives() -> list[QFileInfo]: ... method entryInfoList (line 3540) | def entryInfoList(self, nameFilters: typing.Iterable[str], filters: QD... method entryInfoList (line 3542) | def entryInfoList(self, filters: QDir.Filters | QDir.Filter = ..., sor... method entryList (line 3544) | def entryList(self, nameFilters: typing.Iterable[str], filters: QDir.F... method entryList (line 3546) | def entryList(self, filters: QDir.Filters | QDir.Filter = ..., sort: Q... method exists (line 3548) | def exists(self, name: str) -> bool: ... method exists (line 3550) | def exists(self) -> bool: ... method filePath (line 3551) | def filePath(self, fileName: str) -> str: ... method filter (line 3552) | def filter(self) -> QDir.Filters | QDir.Filter: ... method fromNativeSeparators (line 3554) | def fromNativeSeparators(pathName: str) -> str: ... method home (line 3556) | def home() -> QDir: ... method homePath (line 3558) | def homePath() -> str: ... method isAbsolute (line 3559) | def isAbsolute(self) -> bool: ... method isAbsolutePath (line 3561) | def isAbsolutePath(path: str) -> bool: ... method isEmpty (line 3562) | def isEmpty(self, filters: QDir.Filters | QDir.Filter = ...) -> bool: ... method isReadable (line 3563) | def isReadable(self) -> bool: ... method isRelative (line 3564) | def isRelative(self) -> bool: ... method isRelativePath (line 3566) | def isRelativePath(path: str) -> bool: ... method isRoot (line 3567) | def isRoot(self) -> bool: ... method listSeparator (line 3569) | def listSeparator() -> str: ... method makeAbsolute (line 3570) | def makeAbsolute(self) -> bool: ... method match (line 3573) | def match(filters: typing.Iterable[str], fileName: str) -> bool: ... method match (line 3576) | def match(filter: str, fileName: str) -> bool: ... method mkdir (line 3577) | def mkdir(self, dirName: str) -> bool: ... method mkpath (line 3578) | def mkpath(self, dirPath: str) -> bool: ... method nameFilters (line 3579) | def nameFilters(self) -> list[str]: ... method nameFiltersFromString (line 3581) | def nameFiltersFromString(nameFilter: str) -> list[str]: ... method path (line 3582) | def path(self) -> str: ... method refresh (line 3583) | def refresh(self) -> None: ... method relativeFilePath (line 3584) | def relativeFilePath(self, fileName: str) -> str: ... method remove (line 3585) | def remove(self, fileName: str) -> bool: ... method removeRecursively (line 3586) | def removeRecursively(self) -> bool: ... method rename (line 3587) | def rename(self, oldName: str, newName: str) -> bool: ... method rmdir (line 3588) | def rmdir(self, dirName: str) -> bool: ... method rmpath (line 3589) | def rmpath(self, dirPath: str) -> bool: ... method root (line 3591) | def root() -> QDir: ... method rootPath (line 3593) | def rootPath() -> str: ... method searchPaths (line 3595) | def searchPaths(prefix: str) -> list[str]: ... method separator (line 3597) | def separator() -> str: ... method setCurrent (line 3599) | def setCurrent(path: str) -> bool: ... method setFilter (line 3600) | def setFilter(self, filter: QDir.Filters | QDir.Filter) -> None: ... method setNameFilters (line 3601) | def setNameFilters(self, nameFilters: typing.Iterable[str]) -> None: ... method setPath (line 3602) | def setPath(self, path: str) -> None: ... method setSearchPaths (line 3604) | def setSearchPaths(prefix: str, searchPaths: typing.Iterable[str]) -> ... method setSorting (line 3605) | def setSorting(self, sort: QDir.SortFlags | QDir.SortFlag) -> None: ... method sorting (line 3606) | def sorting(self) -> QDir.SortFlags | QDir.SortFlag: ... method swap (line 3607) | def swap(self, other: QDir) -> None: ... method temp (line 3609) | def temp() -> QDir: ... method tempPath (line 3611) | def tempPath() -> str: ... method toNativeSeparators (line 3613) | def toNativeSeparators(pathName: str) -> str: ... method __copy__ (line 3614) | def __copy__(self) -> None: ... method __eq__ (line 3615) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3616) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3617) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3618) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3619) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3620) | def __ne__(self, other: object) -> bool: ... class QDirIterator (line 3622) | class QDirIterator(shiboken2.Object): class IteratorFlag (line 3623) | class IteratorFlag: method __init__ (line 3630) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3631) | def __and__(self, other: typing.SupportsInt) -> QDirIterator.Iterato... method __bool__ (line 3632) | def __bool__(self) -> bool: ... method __eq__ (line 3633) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3634) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3635) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3636) | def __hash__(self) -> int: ... method __index__ (line 3637) | def __index__(self) -> int: ... method __int__ (line 3638) | def __int__(self) -> int: ... method __invert__ (line 3639) | def __invert__(self) -> QDirIterator.IteratorFlags: ... method __le__ (line 3640) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3641) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3642) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3643) | def __or__(self, other: typing.SupportsInt) -> QDirIterator.Iterator... method __rand__ (line 3644) | def __rand__(self, other: typing.SupportsInt) -> QDirIterator.Iterat... method __ror__ (line 3645) | def __ror__(self, other: typing.SupportsInt) -> QDirIterator.Iterato... method __rxor__ (line 3646) | def __rxor__(self, other: typing.SupportsInt) -> QDirIterator.Iterat... method __xor__ (line 3647) | def __xor__(self, other: typing.SupportsInt) -> QDirIterator.Iterato... class IteratorFlags (line 3649) | class IteratorFlags: method __init__ (line 3651) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3652) | def __and__(self, other: typing.SupportsInt) -> QDirIterator.Iterato... method __bool__ (line 3653) | def __bool__(self) -> bool: ... method __eq__ (line 3654) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3655) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3656) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3657) | def __index__(self) -> int: ... method __int__ (line 3658) | def __int__(self) -> int: ... method __invert__ (line 3659) | def __invert__(self) -> QDirIterator.IteratorFlags: ... method __le__ (line 3660) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3661) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3662) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3663) | def __or__(self, other: typing.SupportsInt) -> QDirIterator.Iterator... method __rand__ (line 3664) | def __rand__(self, other: typing.SupportsInt) -> QDirIterator.Iterat... method __ror__ (line 3665) | def __ror__(self, other: typing.SupportsInt) -> QDirIterator.Iterato... method __rxor__ (line 3666) | def __rxor__(self, other: typing.SupportsInt) -> QDirIterator.Iterat... method __xor__ (line 3667) | def __xor__(self, other: typing.SupportsInt) -> QDirIterator.Iterato... method __init__ (line 3672) | def __init__(self, path: str, nameFilters: typing.Iterable[str], filte... method __init__ (line 3674) | def __init__(self, path: str, filter: QDir.Filters | QDir.Filter, flag... method __init__ (line 3676) | def __init__(self, path: str, flags: QDirIterator.IteratorFlags | QDir... method __init__ (line 3678) | def __init__(self, dir: QDir, flags: QDirIterator.IteratorFlags | QDir... method fileInfo (line 3679) | def fileInfo(self) -> QFileInfo: ... method fileName (line 3680) | def fileName(self) -> str: ... method filePath (line 3681) | def filePath(self) -> str: ... method hasNext (line 3682) | def hasNext(self) -> bool: ... method next (line 3683) | def next(self) -> str: ... method path (line 3684) | def path(self) -> str: ... class QDynamicPropertyChangeEvent (line 3686) | class QDynamicPropertyChangeEvent(QEvent): method __init__ (line 3687) | def __init__(self, name: QByteArray | bytes) -> None: ... method propertyName (line 3688) | def propertyName(self) -> QByteArray: ... class QEasingCurve (line 3690) | class QEasingCurve(shiboken2.Object): class Type (line 3691) | class Type: method __init__ (line 3744) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3745) | def __add__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __and__ (line 3746) | def __and__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __bool__ (line 3747) | def __bool__(self) -> bool: ... method __eq__ (line 3748) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3749) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3750) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3751) | def __hash__(self) -> int: ... method __index__ (line 3752) | def __index__(self) -> int: ... method __int__ (line 3753) | def __int__(self) -> int: ... method __le__ (line 3754) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3755) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3756) | def __mul__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __ne__ (line 3757) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3758) | def __or__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __pos__ (line 3759) | def __pos__(self): ... method __radd__ (line 3760) | def __radd__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __rand__ (line 3761) | def __rand__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __rmul__ (line 3762) | def __rmul__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __ror__ (line 3763) | def __ror__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __rsub__ (line 3764) | def __rsub__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __rxor__ (line 3765) | def __rxor__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __sub__ (line 3766) | def __sub__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __xor__ (line 3767) | def __xor__(self, other: typing.SupportsInt) -> QEasingCurve.Type: ... method __init__ (line 3818) | def __init__(self, type: QEasingCurve.Type = ...) -> None: ... method __init__ (line 3820) | def __init__(self, other: QEasingCurve | QEasingCurve.Type) -> None: ... method addCubicBezierSegment (line 3821) | def addCubicBezierSegment(self, c1: QPointF, c2: QPointF, endPoint: QP... method addTCBSegment (line 3822) | def addTCBSegment(self, nextPoint: QPointF, t: float, c: float, b: flo... method amplitude (line 3823) | def amplitude(self) -> float: ... method customType (line 3824) | def customType(self) -> typing.Any: ... method overshoot (line 3825) | def overshoot(self) -> float: ... method period (line 3826) | def period(self) -> float: ... method setAmplitude (line 3827) | def setAmplitude(self, amplitude: float) -> None: ... method setCustomType (line 3828) | def setCustomType(self, arg__1: object) -> None: ... method setOvershoot (line 3829) | def setOvershoot(self, overshoot: float) -> None: ... method setPeriod (line 3830) | def setPeriod(self, period: float) -> None: ... method setType (line 3831) | def setType(self, type: QEasingCurve.Type) -> None: ... method swap (line 3832) | def swap(self, other: QEasingCurve | QEasingCurve.Type) -> None: ... method toCubicSpline (line 3833) | def toCubicSpline(self) -> list[QPointF]: ... method type (line 3834) | def type(self) -> QEasingCurve.Type: ... method valueForProgress (line 3835) | def valueForProgress(self, progress: float) -> float: ... method __copy__ (line 3836) | def __copy__(self) -> None: ... method __eq__ (line 3837) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3838) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3839) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3840) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3841) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3842) | def __ne__(self, other: object) -> bool: ... class QElapsedTimer (line 3844) | class QElapsedTimer(shiboken2.Object): class ClockType (line 3845) | class ClockType: method __init__ (line 3854) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3855) | def __add__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockT... method __and__ (line 3856) | def __and__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockT... method __bool__ (line 3857) | def __bool__(self) -> bool: ... method __eq__ (line 3858) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3859) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3860) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3861) | def __hash__(self) -> int: ... method __index__ (line 3862) | def __index__(self) -> int: ... method __int__ (line 3863) | def __int__(self) -> int: ... method __le__ (line 3864) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3865) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3866) | def __mul__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockT... method __ne__ (line 3867) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3868) | def __or__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockTy... method __pos__ (line 3869) | def __pos__(self): ... method __radd__ (line 3870) | def __radd__(self, other: typing.SupportsInt) -> QElapsedTimer.Clock... method __rand__ (line 3871) | def __rand__(self, other: typing.SupportsInt) -> QElapsedTimer.Clock... method __rmul__ (line 3872) | def __rmul__(self, other: typing.SupportsInt) -> QElapsedTimer.Clock... method __ror__ (line 3873) | def __ror__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockT... method __rsub__ (line 3874) | def __rsub__(self, other: typing.SupportsInt) -> QElapsedTimer.Clock... method __rxor__ (line 3875) | def __rxor__(self, other: typing.SupportsInt) -> QElapsedTimer.Clock... method __sub__ (line 3876) | def __sub__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockT... method __xor__ (line 3877) | def __xor__(self, other: typing.SupportsInt) -> QElapsedTimer.ClockT... method __init__ (line 3884) | def __init__(self, QElapsedTimer: QElapsedTimer) -> None: ... method __init__ (line 3886) | def __init__(self) -> None: ... method clockType (line 3888) | def clockType() -> QElapsedTimer.ClockType: ... method elapsed (line 3889) | def elapsed(self) -> int: ... method hasExpired (line 3890) | def hasExpired(self, timeout: int) -> bool: ... method invalidate (line 3891) | def invalidate(self) -> None: ... method isMonotonic (line 3893) | def isMonotonic() -> bool: ... method isValid (line 3894) | def isValid(self) -> bool: ... method msecsSinceReference (line 3895) | def msecsSinceReference(self) -> int: ... method msecsTo (line 3896) | def msecsTo(self, other: QElapsedTimer) -> int: ... method nsecsElapsed (line 3897) | def nsecsElapsed(self) -> int: ... method restart (line 3898) | def restart(self) -> int: ... method secsTo (line 3899) | def secsTo(self, other: QElapsedTimer) -> int: ... method start (line 3900) | def start(self) -> None: ... method __copy__ (line 3901) | def __copy__(self) -> None: ... method __eq__ (line 3902) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3903) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3904) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3905) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3906) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3907) | def __ne__(self, other: object) -> bool: ... class QEvent (line 3909) | class QEvent(shiboken2.Object): class Type (line 3910) | class Type: method __init__ (line 4086) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4087) | def __add__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __and__ (line 4088) | def __and__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __bool__ (line 4089) | def __bool__(self) -> bool: ... method __eq__ (line 4090) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4091) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4092) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4093) | def __hash__(self) -> int: ... method __index__ (line 4094) | def __index__(self) -> int: ... method __int__ (line 4095) | def __int__(self) -> int: ... method __le__ (line 4096) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4097) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4098) | def __mul__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __ne__ (line 4099) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4100) | def __or__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __pos__ (line 4101) | def __pos__(self): ... method __radd__ (line 4102) | def __radd__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __rand__ (line 4103) | def __rand__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __rmul__ (line 4104) | def __rmul__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __ror__ (line 4105) | def __ror__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __rsub__ (line 4106) | def __rsub__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __rxor__ (line 4107) | def __rxor__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __sub__ (line 4108) | def __sub__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __xor__ (line 4109) | def __xor__(self, other: typing.SupportsInt) -> QEvent.Type: ... method __init__ (line 4283) | def __init__(self, type: QEvent.Type) -> None: ... method __init__ (line 4285) | def __init__(self, other: QEvent) -> None: ... method accept (line 4286) | def accept(self) -> None: ... method ignore (line 4287) | def ignore(self) -> None: ... method isAccepted (line 4288) | def isAccepted(self) -> bool: ... method registerEventType (line 4290) | def registerEventType(hint: int = ...) -> int: ... method setAccepted (line 4291) | def setAccepted(self, accepted: bool) -> None: ... method spontaneous (line 4292) | def spontaneous(self) -> bool: ... method type (line 4293) | def type(self) -> QEvent.Type: ... class QEventLoop (line 4295) | class QEventLoop(QObject): class ProcessEventsFlag (line 4296) | class ProcessEventsFlag: method __init__ (line 4307) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4308) | def __and__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEv... method __bool__ (line 4309) | def __bool__(self) -> bool: ... method __eq__ (line 4310) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4311) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4312) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4313) | def __hash__(self) -> int: ... method __index__ (line 4314) | def __index__(self) -> int: ... method __int__ (line 4315) | def __int__(self) -> int: ... method __invert__ (line 4316) | def __invert__(self) -> QEventLoop.ProcessEventsFlags: ... method __le__ (line 4317) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4318) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4319) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4320) | def __or__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEve... method __rand__ (line 4321) | def __rand__(self, other: typing.SupportsInt) -> QEventLoop.ProcessE... method __ror__ (line 4322) | def __ror__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEv... method __rxor__ (line 4323) | def __rxor__(self, other: typing.SupportsInt) -> QEventLoop.ProcessE... method __xor__ (line 4324) | def __xor__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEv... class ProcessEventsFlags (line 4326) | class ProcessEventsFlags: method __init__ (line 4328) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4329) | def __and__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEv... method __bool__ (line 4330) | def __bool__(self) -> bool: ... method __eq__ (line 4331) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4332) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4333) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4334) | def __index__(self) -> int: ... method __int__ (line 4335) | def __int__(self) -> int: ... method __invert__ (line 4336) | def __invert__(self) -> QEventLoop.ProcessEventsFlags: ... method __le__ (line 4337) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4338) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4339) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4340) | def __or__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEve... method __rand__ (line 4341) | def __rand__(self, other: typing.SupportsInt) -> QEventLoop.ProcessE... method __ror__ (line 4342) | def __ror__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEv... method __rxor__ (line 4343) | def __rxor__(self, other: typing.SupportsInt) -> QEventLoop.ProcessE... method __xor__ (line 4344) | def __xor__(self, other: typing.SupportsInt) -> QEventLoop.ProcessEv... method __init__ (line 4353) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method event (line 4354) | def event(self, event: QEvent) -> bool: ... method exec_ (line 4355) | def exec_(self, flags: QEventLoop.ProcessEventsFlags | QEventLoop.Proc... method exit (line 4356) | def exit(self, returnCode: int = ...) -> None: ... method isRunning (line 4357) | def isRunning(self) -> bool: ... method processEvents (line 4359) | def processEvents(self, flags: QEventLoop.ProcessEventsFlags | QEventL... method processEvents (line 4361) | def processEvents(self, flags: QEventLoop.ProcessEventsFlags | QEventL... method quit (line 4362) | def quit(self) -> None: ... method wakeUp (line 4363) | def wakeUp(self) -> None: ... class QEventTransition (line 4365) | class QEventTransition(QAbstractTransition): method __init__ (line 4368) | def __init__(self, object: QObject, type: QEvent.Type, sourceState: QS... method __init__ (line 4370) | def __init__(self, sourceState: QState | None = ..., destroyed: typing... method event (line 4371) | def event(self, e: QEvent) -> bool: ... method eventSource (line 4372) | def eventSource(self) -> QObject: ... method eventTest (line 4373) | def eventTest(self, event: QEvent) -> bool: ... method eventType (line 4374) | def eventType(self) -> QEvent.Type: ... method onTransition (line 4375) | def onTransition(self, event: QEvent) -> None: ... method setEventSource (line 4376) | def setEventSource(self, object: QObject) -> None: ... method setEventType (line 4377) | def setEventType(self, type: QEvent.Type) -> None: ... class QFactoryInterface (line 4379) | class QFactoryInterface(shiboken2.Object): method __init__ (line 4380) | def __init__(self) -> None: ... method keys (line 4381) | def keys(self) -> list[str]: ... class QFile (line 4383) | class QFile(QFileDevice): method __init__ (line 4386) | def __init__(self, name: str, parent: QObject | None, aboutToClose: ty... method __init__ (line 4388) | def __init__(self, parent: QObject | None, aboutToClose: typing.Callab... method __init__ (line 4390) | def __init__(self, name: str, aboutToClose: typing.Callable = ..., byt... method __init__ (line 4392) | def __init__(self, aboutToClose: typing.Callable = ..., bytesWritten: ... method copy (line 4394) | def copy(self) -> typing.Any: ... method decodeName (line 4397) | def decodeName(localFileName: QByteArray | bytes) -> str: ... method decodeName (line 4400) | def decodeName(localFileName: bytes) -> str: ... # type: ignore[overl... method encodeName (line 4402) | def encodeName(fileName: str) -> QByteArray: ... method exists (line 4404) | def exists(self) -> typing.Any: ... method fileName (line 4405) | def fileName(self) -> str: ... method link (line 4407) | def link(self) -> typing.Any: ... method moveToTrash (line 4409) | def moveToTrash(self) -> typing.Any: ... method open (line 4411) | def open(self, fd: int, ioFlags: QIODevice.OpenMode | QIODevice.OpenMo... method open (line 4413) | def open(self, flags: QIODevice.OpenMode | QIODevice.OpenModeFlag) -> ... method permissions (line 4415) | def permissions(self) -> typing.Any: ... method readLink (line 4417) | def readLink(self) -> typing.Any: ... method remove (line 4419) | def remove(self) -> typing.Any: ... method rename (line 4421) | def rename(self) -> typing.Any: ... method resize (line 4423) | def resize(self) -> typing.Any: ... method setFileName (line 4424) | def setFileName(self, name: str) -> None: ... method setPermissions (line 4426) | def setPermissions(self) -> typing.Any: ... method size (line 4427) | def size(self) -> int: ... method symLinkTarget (line 4429) | def symLinkTarget(self) -> typing.Any: ... class QFileDevice (line 4431) | class QFileDevice(QIODevice): class FileError (line 4432) | class FileError: method __init__ (line 4451) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4452) | def __add__(self, other: typing.SupportsInt) -> QFileDevice.FileErro... method __and__ (line 4453) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.FileErro... method __bool__ (line 4454) | def __bool__(self) -> bool: ... method __eq__ (line 4455) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4456) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4457) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4458) | def __hash__(self) -> int: ... method __index__ (line 4459) | def __index__(self) -> int: ... method __int__ (line 4460) | def __int__(self) -> int: ... method __le__ (line 4461) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4462) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4463) | def __mul__(self, other: typing.SupportsInt) -> QFileDevice.FileErro... method __ne__ (line 4464) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4465) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.FileError... method __pos__ (line 4466) | def __pos__(self): ... method __radd__ (line 4467) | def __radd__(self, other: typing.SupportsInt) -> QFileDevice.FileErr... method __rand__ (line 4468) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.FileErr... method __rmul__ (line 4469) | def __rmul__(self, other: typing.SupportsInt) -> QFileDevice.FileErr... method __ror__ (line 4470) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.FileErro... method __rsub__ (line 4471) | def __rsub__(self, other: typing.SupportsInt) -> QFileDevice.FileErr... method __rxor__ (line 4472) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.FileErr... method __sub__ (line 4473) | def __sub__(self, other: typing.SupportsInt) -> QFileDevice.FileErro... method __xor__ (line 4474) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.FileErro... class FileHandleFlag (line 4476) | class FileHandleFlag: method __init__ (line 4482) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4483) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.FileHand... method __bool__ (line 4484) | def __bool__(self) -> bool: ... method __eq__ (line 4485) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4486) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4487) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4488) | def __hash__(self) -> int: ... method __index__ (line 4489) | def __index__(self) -> int: ... method __int__ (line 4490) | def __int__(self) -> int: ... method __invert__ (line 4491) | def __invert__(self) -> QFileDevice.FileHandleFlags: ... method __le__ (line 4492) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4493) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4494) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4495) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.FileHandl... method __rand__ (line 4496) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.FileHan... method __ror__ (line 4497) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.FileHand... method __rxor__ (line 4498) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.FileHan... method __xor__ (line 4499) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.FileHand... class FileHandleFlags (line 4501) | class FileHandleFlags: method __init__ (line 4503) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4504) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.FileHand... method __bool__ (line 4505) | def __bool__(self) -> bool: ... method __eq__ (line 4506) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4507) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4508) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4509) | def __index__(self) -> int: ... method __int__ (line 4510) | def __int__(self) -> int: ... method __invert__ (line 4511) | def __invert__(self) -> QFileDevice.FileHandleFlags: ... method __le__ (line 4512) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4513) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4514) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4515) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.FileHandl... method __rand__ (line 4516) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.FileHan... method __ror__ (line 4517) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.FileHand... method __rxor__ (line 4518) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.FileHan... method __xor__ (line 4519) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.FileHand... class FileTime (line 4521) | class FileTime: method __init__ (line 4529) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4530) | def __add__(self, other: typing.SupportsInt) -> QFileDevice.FileTime... method __and__ (line 4531) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.FileTime... method __bool__ (line 4532) | def __bool__(self) -> bool: ... method __eq__ (line 4533) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4534) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4535) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4536) | def __hash__(self) -> int: ... method __index__ (line 4537) | def __index__(self) -> int: ... method __int__ (line 4538) | def __int__(self) -> int: ... method __le__ (line 4539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4540) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4541) | def __mul__(self, other: typing.SupportsInt) -> QFileDevice.FileTime... method __ne__ (line 4542) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4543) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.FileTime:... method __pos__ (line 4544) | def __pos__(self): ... method __radd__ (line 4545) | def __radd__(self, other: typing.SupportsInt) -> QFileDevice.FileTim... method __rand__ (line 4546) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.FileTim... method __rmul__ (line 4547) | def __rmul__(self, other: typing.SupportsInt) -> QFileDevice.FileTim... method __ror__ (line 4548) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.FileTime... method __rsub__ (line 4549) | def __rsub__(self, other: typing.SupportsInt) -> QFileDevice.FileTim... method __rxor__ (line 4550) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.FileTim... method __sub__ (line 4551) | def __sub__(self, other: typing.SupportsInt) -> QFileDevice.FileTime... method __xor__ (line 4552) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.FileTime... class MemoryMapFlags (line 4554) | class MemoryMapFlags: method __init__ (line 4560) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4561) | def __add__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMa... method __and__ (line 4562) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMa... method __bool__ (line 4563) | def __bool__(self) -> bool: ... method __eq__ (line 4564) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4565) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4566) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4567) | def __hash__(self) -> int: ... method __index__ (line 4568) | def __index__(self) -> int: ... method __int__ (line 4569) | def __int__(self) -> int: ... method __le__ (line 4570) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4571) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4572) | def __mul__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMa... method __ne__ (line 4573) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4574) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMap... method __pos__ (line 4575) | def __pos__(self): ... method __radd__ (line 4576) | def __radd__(self, other: typing.SupportsInt) -> QFileDevice.MemoryM... method __rand__ (line 4577) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.MemoryM... method __rmul__ (line 4578) | def __rmul__(self, other: typing.SupportsInt) -> QFileDevice.MemoryM... method __ror__ (line 4579) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMa... method __rsub__ (line 4580) | def __rsub__(self, other: typing.SupportsInt) -> QFileDevice.MemoryM... method __rxor__ (line 4581) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.MemoryM... method __sub__ (line 4582) | def __sub__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMa... method __xor__ (line 4583) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.MemoryMa... class Permission (line 4585) | class Permission: method __init__ (line 4601) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4602) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.Permissi... method __bool__ (line 4603) | def __bool__(self) -> bool: ... method __eq__ (line 4604) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4605) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4606) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4607) | def __hash__(self) -> int: ... method __index__ (line 4608) | def __index__(self) -> int: ... method __int__ (line 4609) | def __int__(self) -> int: ... method __invert__ (line 4610) | def __invert__(self) -> QFileDevice.Permissions: ... method __le__ (line 4611) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4612) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4613) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4614) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.Permissio... method __rand__ (line 4615) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.Permiss... method __ror__ (line 4616) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.Permissi... method __rxor__ (line 4617) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.Permiss... method __xor__ (line 4618) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.Permissi... class Permissions (line 4620) | class Permissions: method __init__ (line 4622) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4623) | def __and__(self, other: typing.SupportsInt) -> QFileDevice.Permissi... method __bool__ (line 4624) | def __bool__(self) -> bool: ... method __eq__ (line 4625) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4626) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4627) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4628) | def __index__(self) -> int: ... method __int__ (line 4629) | def __int__(self) -> int: ... method __invert__ (line 4630) | def __invert__(self) -> QFileDevice.Permissions: ... method __le__ (line 4631) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4632) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4633) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4634) | def __or__(self, other: typing.SupportsInt) -> QFileDevice.Permissio... method __rand__ (line 4635) | def __rand__(self, other: typing.SupportsInt) -> QFileDevice.Permiss... method __ror__ (line 4636) | def __ror__(self, other: typing.SupportsInt) -> QFileDevice.Permissi... method __rxor__ (line 4637) | def __rxor__(self, other: typing.SupportsInt) -> QFileDevice.Permiss... method __xor__ (line 4638) | def __xor__(self, other: typing.SupportsInt) -> QFileDevice.Permissi... method __init__ (line 4676) | def __init__(self, parent: QObject | None, aboutToClose: typing.Callab... method __init__ (line 4678) | def __init__(self, aboutToClose: typing.Callable = ..., bytesWritten: ... method atEnd (line 4679) | def atEnd(self) -> bool: ... method close (line 4680) | def close(self) -> None: ... method error (line 4681) | def error(self) -> QFileDevice.FileError: ... method fileName (line 4682) | def fileName(self) -> str: ... method fileTime (line 4683) | def fileTime(self, time: QFileDevice.FileTime) -> QDateTime: ... method flush (line 4684) | def flush(self) -> bool: ... method handle (line 4685) | def handle(self) -> int: ... method isSequential (line 4686) | def isSequential(self) -> bool: ... method map (line 4687) | def map(self, offset: int, size: int, flags: QFileDevice.MemoryMapFlag... method permissions (line 4688) | def permissions(self) -> QFileDevice.Permissions | QFileDevice.Permiss... method pos (line 4689) | def pos(self) -> int: ... method readData (line 4690) | def readData(self, data: bytes, maxlen: int) -> int: ... method readLineData (line 4691) | def readLineData(self, data: bytes, maxlen: int) -> int: ... method resize (line 4692) | def resize(self, sz: int) -> bool: ... method seek (line 4693) | def seek(self, offset: int) -> bool: ... method setFileTime (line 4694) | def setFileTime(self, newDate: QDateTime | datetime.datetime, fileTime... method setPermissions (line 4695) | def setPermissions(self, permissionSpec: QFileDevice.Permissions | QFi... method size (line 4696) | def size(self) -> int: ... method unmap (line 4697) | def unmap(self, address: bytes) -> bool: ... method unsetError (line 4698) | def unsetError(self) -> None: ... method writeData (line 4699) | def writeData(self, data: bytes, len: int) -> int: ... class QFileInfo (line 4701) | class QFileInfo(shiboken2.Object): method __init__ (line 4703) | def __init__(self, dir: QDir, file: str) -> None: ... method __init__ (line 4705) | def __init__(self, fileinfo: QFileInfo) -> None: ... method __init__ (line 4707) | def __init__(self, file: QFile) -> None: ... method __init__ (line 4709) | def __init__(self, file: str) -> None: ... method __init__ (line 4711) | def __init__(self) -> None: ... method absoluteDir (line 4712) | def absoluteDir(self) -> QDir: ... method absoluteFilePath (line 4713) | def absoluteFilePath(self) -> str: ... method absolutePath (line 4714) | def absolutePath(self) -> str: ... method baseName (line 4715) | def baseName(self) -> str: ... method birthTime (line 4716) | def birthTime(self) -> QDateTime: ... method bundleName (line 4717) | def bundleName(self) -> str: ... method caching (line 4718) | def caching(self) -> bool: ... method canonicalFilePath (line 4719) | def canonicalFilePath(self) -> str: ... method canonicalPath (line 4720) | def canonicalPath(self) -> str: ... method completeBaseName (line 4721) | def completeBaseName(self) -> str: ... method completeSuffix (line 4722) | def completeSuffix(self) -> str: ... method created (line 4723) | def created(self) -> QDateTime: ... method dir (line 4724) | def dir(self) -> QDir: ... method exists (line 4726) | def exists(self) -> typing.Any: ... method fileName (line 4727) | def fileName(self) -> str: ... method filePath (line 4728) | def filePath(self) -> str: ... method group (line 4729) | def group(self) -> str: ... method groupId (line 4730) | def groupId(self) -> int: ... method isAbsolute (line 4731) | def isAbsolute(self) -> bool: ... method isBundle (line 4732) | def isBundle(self) -> bool: ... method isDir (line 4733) | def isDir(self) -> bool: ... method isExecutable (line 4734) | def isExecutable(self) -> bool: ... method isFile (line 4735) | def isFile(self) -> bool: ... method isHidden (line 4736) | def isHidden(self) -> bool: ... method isJunction (line 4737) | def isJunction(self) -> bool: ... method isNativePath (line 4738) | def isNativePath(self) -> bool: ... method isReadable (line 4739) | def isReadable(self) -> bool: ... method isRelative (line 4740) | def isRelative(self) -> bool: ... method isRoot (line 4741) | def isRoot(self) -> bool: ... method isShortcut (line 4742) | def isShortcut(self) -> bool: ... method isSymLink (line 4743) | def isSymLink(self) -> bool: ... method isSymbolicLink (line 4744) | def isSymbolicLink(self) -> bool: ... method isWritable (line 4745) | def isWritable(self) -> bool: ... method lastModified (line 4746) | def lastModified(self) -> QDateTime: ... method lastRead (line 4747) | def lastRead(self) -> QDateTime: ... method makeAbsolute (line 4748) | def makeAbsolute(self) -> bool: ... method metadataChangeTime (line 4749) | def metadataChangeTime(self) -> QDateTime: ... method owner (line 4750) | def owner(self) -> str: ... method ownerId (line 4751) | def ownerId(self) -> int: ... method path (line 4752) | def path(self) -> str: ... method readLink (line 4753) | def readLink(self) -> str: ... method refresh (line 4754) | def refresh(self) -> None: ... method setCaching (line 4755) | def setCaching(self, on: bool) -> None: ... method setFile (line 4757) | def setFile(self, dir: QDir, file: str) -> None: ... method setFile (line 4759) | def setFile(self, file: QFile) -> None: ... method setFile (line 4761) | def setFile(self, file: str) -> None: ... method size (line 4762) | def size(self) -> int: ... method suffix (line 4763) | def suffix(self) -> str: ... method swap (line 4764) | def swap(self, other: QFileInfo) -> None: ... method symLinkTarget (line 4765) | def symLinkTarget(self) -> str: ... method __copy__ (line 4766) | def __copy__(self) -> None: ... method __eq__ (line 4767) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4768) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4769) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4770) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4771) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4772) | def __ne__(self, other: object) -> bool: ... class QFileSelector (line 4774) | class QFileSelector(QObject): method __init__ (line 4776) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method allSelectors (line 4777) | def allSelectors(self) -> list[str]: ... method extraSelectors (line 4778) | def extraSelectors(self) -> list[str]: ... method select (line 4780) | def select(self, filePath: QUrl) -> QUrl: ... method select (line 4782) | def select(self, filePath: str) -> str: ... method setExtraSelectors (line 4783) | def setExtraSelectors(self, list: typing.Iterable[str]) -> None: ... class QFileSystemWatcher (line 4785) | class QFileSystemWatcher(QObject): method __init__ (line 4790) | def __init__(self, paths: typing.Iterable[str], parent: QObject | None... method __init__ (line 4792) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method addPath (line 4793) | def addPath(self, file: str) -> bool: ... method addPaths (line 4794) | def addPaths(self, files: typing.Iterable[str]) -> list[str]: ... method directories (line 4795) | def directories(self) -> list[str]: ... method files (line 4796) | def files(self) -> list[str]: ... method removePath (line 4797) | def removePath(self, file: str) -> bool: ... method removePaths (line 4798) | def removePaths(self, files: typing.Iterable[str]) -> list[str]: ... class QFinalState (line 4800) | class QFinalState(QAbstractState): method __init__ (line 4802) | def __init__(self, parent: QState | None = ..., active: bool = ..., ac... method event (line 4803) | def event(self, e: QEvent) -> bool: ... method onEntry (line 4804) | def onEntry(self, event: QEvent) -> None: ... method onExit (line 4805) | def onExit(self, event: QEvent) -> None: ... class QFutureInterfaceBase (line 4807) | class QFutureInterfaceBase(shiboken2.Object): class State (line 4808) | class State: method __init__ (line 4819) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4820) | def __add__(self, other: typing.SupportsInt) -> QFutureInterfaceBase... method __and__ (line 4821) | def __and__(self, other: typing.SupportsInt) -> QFutureInterfaceBase... method __bool__ (line 4822) | def __bool__(self) -> bool: ... method __eq__ (line 4823) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4824) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4825) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4826) | def __hash__(self) -> int: ... method __index__ (line 4827) | def __index__(self) -> int: ... method __int__ (line 4828) | def __int__(self) -> int: ... method __le__ (line 4829) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4830) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4831) | def __mul__(self, other: typing.SupportsInt) -> QFutureInterfaceBase... method __ne__ (line 4832) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4833) | def __or__(self, other: typing.SupportsInt) -> QFutureInterfaceBase.... method __pos__ (line 4834) | def __pos__(self): ... method __radd__ (line 4835) | def __radd__(self, other: typing.SupportsInt) -> QFutureInterfaceBas... method __rand__ (line 4836) | def __rand__(self, other: typing.SupportsInt) -> QFutureInterfaceBas... method __rmul__ (line 4837) | def __rmul__(self, other: typing.SupportsInt) -> QFutureInterfaceBas... method __ror__ (line 4838) | def __ror__(self, other: typing.SupportsInt) -> QFutureInterfaceBase... method __rsub__ (line 4839) | def __rsub__(self, other: typing.SupportsInt) -> QFutureInterfaceBas... method __rxor__ (line 4840) | def __rxor__(self, other: typing.SupportsInt) -> QFutureInterfaceBas... method __sub__ (line 4841) | def __sub__(self, other: typing.SupportsInt) -> QFutureInterfaceBase... method __xor__ (line 4842) | def __xor__(self, other: typing.SupportsInt) -> QFutureInterfaceBase... method __init__ (line 4851) | def __init__(self, other: QFutureInterfaceBase) -> None: ... method __init__ (line 4853) | def __init__(self, initialState: QFutureInterfaceBase.State = ...) -> ... method cancel (line 4854) | def cancel(self) -> None: ... method derefT (line 4855) | def derefT(self) -> bool: ... method expectedResultCount (line 4856) | def expectedResultCount(self) -> int: ... method isCanceled (line 4857) | def isCanceled(self) -> bool: ... method isFinished (line 4858) | def isFinished(self) -> bool: ... method isPaused (line 4859) | def isPaused(self) -> bool: ... method isProgressUpdateNeeded (line 4860) | def isProgressUpdateNeeded(self) -> bool: ... method isResultReadyAt (line 4861) | def isResultReadyAt(self, index: int) -> bool: ... method isRunning (line 4862) | def isRunning(self) -> bool: ... method isStarted (line 4863) | def isStarted(self) -> bool: ... method isThrottled (line 4864) | def isThrottled(self) -> bool: ... method mutex (line 4866) | def mutex(self, arg__1: int) -> QMutex: ... method mutex (line 4868) | def mutex(self) -> QMutex: ... method progressMaximum (line 4869) | def progressMaximum(self) -> int: ... method progressMinimum (line 4870) | def progressMinimum(self) -> int: ... method progressText (line 4871) | def progressText(self) -> str: ... method progressValue (line 4872) | def progressValue(self) -> int: ... method queryState (line 4873) | def queryState(self, state: QFutureInterfaceBase.State) -> bool: ... method refT (line 4874) | def refT(self) -> bool: ... method reportCanceled (line 4875) | def reportCanceled(self) -> None: ... method reportFinished (line 4876) | def reportFinished(self) -> None: ... method reportResultsReady (line 4877) | def reportResultsReady(self, beginIndex: int, endIndex: int) -> None: ... method reportStarted (line 4878) | def reportStarted(self) -> None: ... method resultCount (line 4879) | def resultCount(self) -> int: ... method setExpectedResultCount (line 4880) | def setExpectedResultCount(self, resultCount: int) -> None: ... method setFilterMode (line 4881) | def setFilterMode(self, enable: bool) -> None: ... method setPaused (line 4882) | def setPaused(self, paused: bool) -> None: ... method setProgressRange (line 4883) | def setProgressRange(self, minimum: int, maximum: int) -> None: ... method setProgressValue (line 4884) | def setProgressValue(self, progressValue: int) -> None: ... method setProgressValueAndText (line 4885) | def setProgressValueAndText(self, progressValue: int, progressText: st... method setRunnable (line 4886) | def setRunnable(self, runnable: QRunnable) -> None: ... method setThreadPool (line 4887) | def setThreadPool(self, pool: QThreadPool) -> None: ... method setThrottled (line 4888) | def setThrottled(self, enable: bool) -> None: ... method togglePaused (line 4889) | def togglePaused(self) -> None: ... method waitForFinished (line 4890) | def waitForFinished(self) -> None: ... method waitForNextResult (line 4891) | def waitForNextResult(self) -> bool: ... method waitForResult (line 4892) | def waitForResult(self, resultIndex: int) -> None: ... method waitForResume (line 4893) | def waitForResume(self) -> None: ... method __eq__ (line 4894) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4895) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4896) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4897) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4898) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4899) | def __ne__(self, other: object) -> bool: ... class QGenericArgument (line 4901) | class QGenericArgument(shiboken2.Object): method __init__ (line 4903) | def __init__(self, aName: bytes | None = ..., aData: int | None = ...)... method __init__ (line 4905) | def __init__(self, QGenericArgument: QGenericArgument) -> None: ... method data (line 4906) | def data(self) -> int: ... method name (line 4907) | def name(self) -> bytes: ... method __copy__ (line 4908) | def __copy__(self) -> None: ... class QGenericReturnArgument (line 4910) | class QGenericReturnArgument(QGenericArgument): method __init__ (line 4912) | def __init__(self, aName: bytes | None = ..., aData: int | None = ...)... method __init__ (line 4914) | def __init__(self, QGenericReturnArgument: QGenericReturnArgument) -> ... method __copy__ (line 4915) | def __copy__(self) -> None: ... class QHistoryState (line 4917) | class QHistoryState(QAbstractState): class HistoryType (line 4918) | class HistoryType: method __init__ (line 4924) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4925) | def __add__(self, other: typing.SupportsInt) -> QHistoryState.Histor... method __and__ (line 4926) | def __and__(self, other: typing.SupportsInt) -> QHistoryState.Histor... method __bool__ (line 4927) | def __bool__(self) -> bool: ... method __eq__ (line 4928) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4929) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4930) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4931) | def __hash__(self) -> int: ... method __index__ (line 4932) | def __index__(self) -> int: ... method __int__ (line 4933) | def __int__(self) -> int: ... method __le__ (line 4934) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4935) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4936) | def __mul__(self, other: typing.SupportsInt) -> QHistoryState.Histor... method __ne__ (line 4937) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4938) | def __or__(self, other: typing.SupportsInt) -> QHistoryState.History... method __pos__ (line 4939) | def __pos__(self): ... method __radd__ (line 4940) | def __radd__(self, other: typing.SupportsInt) -> QHistoryState.Histo... method __rand__ (line 4941) | def __rand__(self, other: typing.SupportsInt) -> QHistoryState.Histo... method __rmul__ (line 4942) | def __rmul__(self, other: typing.SupportsInt) -> QHistoryState.Histo... method __ror__ (line 4943) | def __ror__(self, other: typing.SupportsInt) -> QHistoryState.Histor... method __rsub__ (line 4944) | def __rsub__(self, other: typing.SupportsInt) -> QHistoryState.Histo... method __rxor__ (line 4945) | def __rxor__(self, other: typing.SupportsInt) -> QHistoryState.Histo... method __sub__ (line 4946) | def __sub__(self, other: typing.SupportsInt) -> QHistoryState.Histor... method __xor__ (line 4947) | def __xor__(self, other: typing.SupportsInt) -> QHistoryState.Histor... method __init__ (line 4955) | def __init__(self, type: QHistoryState.HistoryType, parent: QState | N... method __init__ (line 4957) | def __init__(self, parent: QState | None = ..., active: bool = ..., ac... method defaultState (line 4958) | def defaultState(self) -> QAbstractState: ... method defaultTransition (line 4959) | def defaultTransition(self) -> QAbstractTransition: ... method event (line 4960) | def event(self, e: QEvent) -> bool: ... method historyType (line 4961) | def historyType(self) -> QHistoryState.HistoryType: ... method onEntry (line 4962) | def onEntry(self, event: QEvent) -> None: ... method onExit (line 4963) | def onExit(self, event: QEvent) -> None: ... method setDefaultState (line 4964) | def setDefaultState(self, state: QAbstractState) -> None: ... method setDefaultTransition (line 4965) | def setDefaultTransition(self, transition: QAbstractTransition) -> Non... method setHistoryType (line 4966) | def setHistoryType(self, type: QHistoryState.HistoryType) -> None: ... class QIODevice (line 4968) | class QIODevice(QObject): class OpenMode (line 4969) | class OpenMode: method __init__ (line 4971) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4972) | def __and__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __bool__ (line 4973) | def __bool__(self) -> bool: ... method __eq__ (line 4974) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4975) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4976) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4977) | def __index__(self) -> int: ... method __int__ (line 4978) | def __int__(self) -> int: ... method __invert__ (line 4979) | def __invert__(self) -> QIODevice.OpenMode: ... method __le__ (line 4980) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4981) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4982) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4983) | def __or__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __rand__ (line 4984) | def __rand__(self, other: typing.SupportsInt) -> QIODevice.OpenMode:... method __ror__ (line 4985) | def __ror__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __rxor__ (line 4986) | def __rxor__(self, other: typing.SupportsInt) -> QIODevice.OpenMode:... method __xor__ (line 4987) | def __xor__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... class OpenModeFlag (line 4989) | class OpenModeFlag: method __init__ (line 5003) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5004) | def __and__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __bool__ (line 5005) | def __bool__(self) -> bool: ... method __eq__ (line 5006) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5007) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5008) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5009) | def __hash__(self) -> int: ... method __index__ (line 5010) | def __index__(self) -> int: ... method __int__ (line 5011) | def __int__(self) -> int: ... method __invert__ (line 5012) | def __invert__(self) -> QIODevice.OpenMode: ... method __le__ (line 5013) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5014) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5015) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5016) | def __or__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __rand__ (line 5017) | def __rand__(self, other: typing.SupportsInt) -> QIODevice.OpenMode:... method __ror__ (line 5018) | def __ror__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __rxor__ (line 5019) | def __rxor__(self, other: typing.SupportsInt) -> QIODevice.OpenMode:... method __xor__ (line 5020) | def __xor__(self, other: typing.SupportsInt) -> QIODevice.OpenMode: ... method __init__ (line 5039) | def __init__(self, parent: QObject | None, destroyed: typing.Callable ... method __init__ (line 5041) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method atEnd (line 5042) | def atEnd(self) -> bool: ... method bytesAvailable (line 5043) | def bytesAvailable(self) -> int: ... method bytesToWrite (line 5044) | def bytesToWrite(self) -> int: ... method canReadLine (line 5045) | def canReadLine(self) -> bool: ... method close (line 5046) | def close(self) -> None: ... method commitTransaction (line 5047) | def commitTransaction(self) -> None: ... method currentReadChannel (line 5048) | def currentReadChannel(self) -> int: ... method currentWriteChannel (line 5049) | def currentWriteChannel(self) -> int: ... method errorString (line 5050) | def errorString(self) -> str: ... method getChar (line 5051) | def getChar(self, c: bytes) -> bool: ... method isOpen (line 5052) | def isOpen(self) -> bool: ... method isReadable (line 5053) | def isReadable(self) -> bool: ... method isSequential (line 5054) | def isSequential(self) -> bool: ... method isTextModeEnabled (line 5055) | def isTextModeEnabled(self) -> bool: ... method isTransactionStarted (line 5056) | def isTransactionStarted(self) -> bool: ... method isWritable (line 5057) | def isWritable(self) -> bool: ... method open (line 5058) | def open(self, mode: QIODevice.OpenMode | QIODevice.OpenModeFlag) -> b... method openMode (line 5059) | def openMode(self) -> QIODevice.OpenMode | QIODevice.OpenModeFlag: ... method peek (line 5060) | def peek(self, maxlen: int) -> QByteArray: ... method pos (line 5061) | def pos(self) -> int: ... method putChar (line 5062) | def putChar(self, c: int) -> bool: ... method read (line 5063) | def read(self, maxlen: int) -> QByteArray: ... method readAll (line 5064) | def readAll(self) -> QByteArray: ... method readChannelCount (line 5065) | def readChannelCount(self) -> int: ... method readData (line 5066) | def readData(self, data: bytes, maxlen: int) -> int: ... method readLine (line 5067) | def readLine(self, maxlen: int = ...) -> QByteArray: ... method readLineData (line 5068) | def readLineData(self, data: bytes, maxlen: int) -> int: ... method reset (line 5069) | def reset(self) -> bool: ... method rollbackTransaction (line 5070) | def rollbackTransaction(self) -> None: ... method seek (line 5071) | def seek(self, pos: int) -> bool: ... method setCurrentReadChannel (line 5072) | def setCurrentReadChannel(self, channel: int) -> None: ... method setCurrentWriteChannel (line 5073) | def setCurrentWriteChannel(self, channel: int) -> None: ... method setErrorString (line 5074) | def setErrorString(self, errorString: str) -> None: ... method setOpenMode (line 5075) | def setOpenMode(self, openMode: QIODevice.OpenMode | QIODevice.OpenMod... method setTextModeEnabled (line 5076) | def setTextModeEnabled(self, enabled: bool) -> None: ... method size (line 5077) | def size(self) -> int: ... method skip (line 5078) | def skip(self, maxSize: int) -> int: ... method startTransaction (line 5079) | def startTransaction(self) -> None: ... method ungetChar (line 5080) | def ungetChar(self, c: int) -> None: ... method waitForBytesWritten (line 5081) | def waitForBytesWritten(self, msecs: int) -> bool: ... method waitForReadyRead (line 5082) | def waitForReadyRead(self, msecs: int) -> bool: ... method write (line 5083) | def write(self, data: QByteArray | bytes) -> int: ... method writeChannelCount (line 5084) | def writeChannelCount(self) -> int: ... method writeData (line 5085) | def writeData(self, data: bytes, len: int) -> int: ... class QIdentityProxyModel (line 5087) | class QIdentityProxyModel(QAbstractProxyModel): method __init__ (line 5089) | def __init__(self, parent: QObject | None = ..., columnsAboutToBeInser... method columnCount (line 5090) | def columnCount(self, parent: QModelIndex = ...) -> int: ... method dropMimeData (line 5091) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method headerData (line 5092) | def headerData(self, section: int, orientation: Qt.Orientation, role: ... method index (line 5093) | def index(self, row: int, column: int, parent: QModelIndex = ...) -> Q... method insertColumns (line 5094) | def insertColumns(self, column: int, count: int, parent: QModelIndex =... method insertRows (line 5095) | def insertRows(self, row: int, count: int, parent: QModelIndex = ...) ... method mapFromSource (line 5096) | def mapFromSource(self, sourceIndex: QModelIndex) -> QModelIndex: ... method mapSelectionFromSource (line 5097) | def mapSelectionFromSource(self, selection: QItemSelection) -> QItemSe... method mapSelectionToSource (line 5098) | def mapSelectionToSource(self, selection: QItemSelection) -> QItemSele... method mapToSource (line 5099) | def mapToSource(self, proxyIndex: QModelIndex) -> QModelIndex: ... method match (line 5100) | def match(self, start: QModelIndex, role: Qt.ItemDataRole, value: typi... method moveColumns (line 5101) | def moveColumns(self, sourceParent: QModelIndex, sourceColumn: int, co... method moveRows (line 5102) | def moveRows(self, sourceParent: QModelIndex, sourceRow: int, count: i... method parent (line 5104) | def parent(self, child: QModelIndex) -> QModelIndex: ... method parent (line 5106) | def parent(self) -> QObject: ... method removeColumns (line 5107) | def removeColumns(self, column: int, count: int, parent: QModelIndex =... method removeRows (line 5108) | def removeRows(self, row: int, count: int, parent: QModelIndex = ...) ... method rowCount (line 5109) | def rowCount(self, parent: QModelIndex = ...) -> int: ... method setSourceModel (line 5110) | def setSourceModel(self, sourceModel: QAbstractItemModel) -> None: ... method sibling (line 5111) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... class QItemSelection (line 5113) | class QItemSelection(shiboken2.Object): method __init__ (line 5115) | def __init__(self, topLeft: QModelIndex, bottomRight: QModelIndex) -> ... method __init__ (line 5117) | def __init__(self, QItemSelection: QItemSelection) -> None: ... method __init__ (line 5119) | def __init__(self) -> None: ... method append (line 5121) | def append(self, t: QItemSelectionRange) -> None: ... method append (line 5123) | def append(self, t: typing.Iterable[QItemSelectionRange]) -> None: ... method at (line 5124) | def at(self, i: int) -> QItemSelectionRange: ... method back (line 5125) | def back(self) -> QItemSelectionRange: ... method clear (line 5126) | def clear(self) -> None: ... method constFirst (line 5127) | def constFirst(self) -> QItemSelectionRange: ... method constLast (line 5128) | def constLast(self) -> QItemSelectionRange: ... method contains (line 5129) | def contains(self, index: QModelIndex) -> bool: ... method count (line 5131) | def count(self, t: QItemSelectionRange) -> int: ... method count (line 5133) | def count(self) -> int: ... method detachShared (line 5134) | def detachShared(self) -> None: ... method empty (line 5135) | def empty(self) -> bool: ... method endsWith (line 5136) | def endsWith(self, t: QItemSelectionRange) -> bool: ... method first (line 5137) | def first(self) -> QItemSelectionRange: ... method fromSet (line 5139) | def fromSet(set: set[QItemSelectionRange]) -> list[QItemSelectionRange... method fromVector (line 5141) | def fromVector(vector: list[QItemSelectionRange]) -> list[QItemSelecti... method front (line 5142) | def front(self) -> QItemSelectionRange: ... method indexOf (line 5143) | def indexOf(self, t: QItemSelectionRange, from_: int = ...) -> int: ... method indexes (line 5144) | def indexes(self) -> list[QModelIndex]: ... method insert (line 5145) | def insert(self, i: int, t: QItemSelectionRange) -> None: ... method isEmpty (line 5146) | def isEmpty(self) -> bool: ... method isSharedWith (line 5147) | def isSharedWith(self, other: typing.Iterable[QItemSelectionRange]) ->... method last (line 5148) | def last(self) -> QItemSelectionRange: ... method lastIndexOf (line 5149) | def lastIndexOf(self, t: QItemSelectionRange, from_: int = ...) -> int... method length (line 5150) | def length(self) -> int: ... method merge (line 5151) | def merge(self, other: QItemSelection, command: QItemSelectionModel.Se... method mid (line 5152) | def mid(self, pos: int, length: int = ...) -> list[QItemSelectionRange... method move (line 5153) | def move(self, from_: int, to: int) -> None: ... method pop_back (line 5154) | def pop_back(self) -> None: ... method pop_front (line 5155) | def pop_front(self) -> None: ... method prepend (line 5156) | def prepend(self, t: QItemSelectionRange) -> None: ... method push_back (line 5157) | def push_back(self, t: QItemSelectionRange) -> None: ... method push_front (line 5158) | def push_front(self, t: QItemSelectionRange) -> None: ... method removeAll (line 5159) | def removeAll(self, t: QItemSelectionRange) -> int: ... method removeAt (line 5160) | def removeAt(self, i: int) -> None: ... method removeFirst (line 5161) | def removeFirst(self) -> None: ... method removeLast (line 5162) | def removeLast(self) -> None: ... method removeOne (line 5163) | def removeOne(self, t: QItemSelectionRange) -> bool: ... method replace (line 5164) | def replace(self, i: int, t: QItemSelectionRange) -> None: ... method reserve (line 5165) | def reserve(self, size: int) -> None: ... method select (line 5166) | def select(self, topLeft: QModelIndex, bottomRight: QModelIndex) -> No... method setSharable (line 5167) | def setSharable(self, sharable: bool) -> None: ... method size (line 5168) | def size(self) -> int: ... method split (line 5170) | def split(range: QItemSelectionRange, other: QItemSelectionRange, resu... method startsWith (line 5171) | def startsWith(self, t: QItemSelectionRange) -> bool: ... method swap (line 5173) | def swap(self, i: int, j: int) -> None: ... method swap (line 5175) | def swap(self, other: typing.Iterable[QItemSelectionRange]) -> None: ... method swapItemsAt (line 5176) | def swapItemsAt(self, i: int, j: int) -> None: ... method takeAt (line 5177) | def takeAt(self, i: int) -> QItemSelectionRange: ... method takeFirst (line 5178) | def takeFirst(self) -> QItemSelectionRange: ... method takeLast (line 5179) | def takeLast(self) -> QItemSelectionRange: ... method toSet (line 5180) | def toSet(self) -> set[QItemSelectionRange]: ... method toVector (line 5181) | def toVector(self) -> list[QItemSelectionRange]: ... method value (line 5183) | def value(self, i: int, defaultValue: QItemSelectionRange) -> QItemSel... method value (line 5185) | def value(self, i: int) -> QItemSelectionRange: ... method __add__ (line 5186) | def __add__(self, l: typing.Iterable[QItemSelectionRange]) -> list[QIt... method __copy__ (line 5187) | def __copy__(self) -> None: ... method __delitem__ (line 5188) | def __delitem__(self, other) -> None: ... method __eq__ (line 5189) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5190) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 5191) | def __getitem__(self, index): ... method __gt__ (line 5192) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5194) | def __iadd__(self, t: QItemSelectionRange) -> list[QItemSelectionRange... method __iadd__ (line 5196) | def __iadd__(self, l: typing.Iterable[QItemSelectionRange]) -> list[QI... method __le__ (line 5197) | def __le__(self, other: object) -> bool: ... method __len__ (line 5198) | def __len__(self) -> int: ... method __lshift__ (line 5200) | def __lshift__(self, t: QItemSelectionRange) -> list[QItemSelectionRan... method __lshift__ (line 5202) | def __lshift__(self, l: typing.Iterable[QItemSelectionRange]) -> list[... method __lt__ (line 5203) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5204) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 5205) | def __radd__(self, other): ... method __rlshift__ (line 5206) | def __rlshift__(self, other): ... method __setitem__ (line 5207) | def __setitem__(self, index, object) -> None: ... class QItemSelectionModel (line 5209) | class QItemSelectionModel(QObject): class SelectionFlag (line 5210) | class SelectionFlag: method __init__ (line 5225) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5226) | def __and__(self, other: typing.SupportsInt) -> QItemSelectionModel.... method __bool__ (line 5227) | def __bool__(self) -> bool: ... method __eq__ (line 5228) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5229) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5230) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5231) | def __hash__(self) -> int: ... method __index__ (line 5232) | def __index__(self) -> int: ... method __int__ (line 5233) | def __int__(self) -> int: ... method __invert__ (line 5234) | def __invert__(self) -> QItemSelectionModel.SelectionFlags: ... method __le__ (line 5235) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5236) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5237) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5238) | def __or__(self, other: typing.SupportsInt) -> QItemSelectionModel.S... method __rand__ (line 5239) | def __rand__(self, other: typing.SupportsInt) -> QItemSelectionModel... method __ror__ (line 5240) | def __ror__(self, other: typing.SupportsInt) -> QItemSelectionModel.... method __rxor__ (line 5241) | def __rxor__(self, other: typing.SupportsInt) -> QItemSelectionModel... method __xor__ (line 5242) | def __xor__(self, other: typing.SupportsInt) -> QItemSelectionModel.... class SelectionFlags (line 5244) | class SelectionFlags: method __init__ (line 5246) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5247) | def __and__(self, other: typing.SupportsInt) -> QItemSelectionModel.... method __bool__ (line 5248) | def __bool__(self) -> bool: ... method __eq__ (line 5249) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5250) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5251) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5252) | def __index__(self) -> int: ... method __int__ (line 5253) | def __int__(self) -> int: ... method __invert__ (line 5254) | def __invert__(self) -> QItemSelectionModel.SelectionFlags: ... method __le__ (line 5255) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5256) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5257) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5258) | def __or__(self, other: typing.SupportsInt) -> QItemSelectionModel.S... method __rand__ (line 5259) | def __rand__(self, other: typing.SupportsInt) -> QItemSelectionModel... method __ror__ (line 5260) | def __ror__(self, other: typing.SupportsInt) -> QItemSelectionModel.... method __rxor__ (line 5261) | def __rxor__(self, other: typing.SupportsInt) -> QItemSelectionModel... method __xor__ (line 5262) | def __xor__(self, other: typing.SupportsInt) -> QItemSelectionModel.... method __init__ (line 5281) | def __init__(self, model: QAbstractItemModel, parent: QObject | None, ... method __init__ (line 5283) | def __init__(self, model: QAbstractItemModel | None = ..., currentChan... method clear (line 5284) | def clear(self) -> None: ... method clearCurrentIndex (line 5285) | def clearCurrentIndex(self) -> None: ... method clearSelection (line 5286) | def clearSelection(self) -> None: ... method columnIntersectsSelection (line 5287) | def columnIntersectsSelection(self, column: int, parent: QModelIndex =... method currentIndex (line 5288) | def currentIndex(self) -> QModelIndex: ... method emitSelectionChanged (line 5289) | def emitSelectionChanged(self, newSelection: QItemSelection, oldSelect... method hasSelection (line 5290) | def hasSelection(self) -> bool: ... method isColumnSelected (line 5291) | def isColumnSelected(self, column: int, parent: QModelIndex = ...) -> ... method isRowSelected (line 5292) | def isRowSelected(self, row: int, parent: QModelIndex = ...) -> bool: ... method isSelected (line 5293) | def isSelected(self, index: QModelIndex) -> bool: ... method model (line 5294) | def model(self) -> QAbstractItemModel: ... method reset (line 5295) | def reset(self) -> None: ... method rowIntersectsSelection (line 5296) | def rowIntersectsSelection(self, row: int, parent: QModelIndex = ...) ... method select (line 5298) | def select(self, selection: QItemSelection, command: QItemSelectionMod... method select (line 5300) | def select(self, index: QModelIndex, command: QItemSelectionModel.Sele... method selectedColumns (line 5301) | def selectedColumns(self, row: int = ...) -> list[QModelIndex]: ... method selectedIndexes (line 5302) | def selectedIndexes(self) -> list[QModelIndex]: ... method selectedRows (line 5303) | def selectedRows(self, column: int = ...) -> list[QModelIndex]: ... method selection (line 5304) | def selection(self) -> QItemSelection: ... method setCurrentIndex (line 5305) | def setCurrentIndex(self, index: QModelIndex, command: QItemSelectionM... method setModel (line 5306) | def setModel(self, model: QAbstractItemModel | None) -> None: ... class QItemSelectionRange (line 5308) | class QItemSelectionRange(shiboken2.Object): method __init__ (line 5310) | def __init__(self, topL: QModelIndex, bottomR: QModelIndex) -> None: ... method __init__ (line 5312) | def __init__(self, other: QItemSelectionRange) -> None: ... method __init__ (line 5314) | def __init__(self, index: QModelIndex) -> None: ... method __init__ (line 5316) | def __init__(self) -> None: ... method bottom (line 5317) | def bottom(self) -> int: ... method bottomRight (line 5318) | def bottomRight(self) -> QPersistentModelIndex: ... method contains (line 5320) | def contains(self, row: int, column: int, parentIndex: QModelIndex) ->... method contains (line 5322) | def contains(self, index: QModelIndex) -> bool: ... method height (line 5323) | def height(self) -> int: ... method indexes (line 5324) | def indexes(self) -> list[QModelIndex]: ... method intersected (line 5325) | def intersected(self, other: QItemSelectionRange) -> QItemSelectionRan... method intersects (line 5326) | def intersects(self, other: QItemSelectionRange) -> bool: ... method isEmpty (line 5327) | def isEmpty(self) -> bool: ... method isValid (line 5328) | def isValid(self) -> bool: ... method left (line 5329) | def left(self) -> int: ... method model (line 5330) | def model(self) -> QAbstractItemModel: ... method parent (line 5331) | def parent(self) -> QModelIndex: ... method right (line 5332) | def right(self) -> int: ... method swap (line 5333) | def swap(self, other: QItemSelectionRange) -> None: ... method top (line 5334) | def top(self) -> int: ... method topLeft (line 5335) | def topLeft(self) -> QPersistentModelIndex: ... method width (line 5336) | def width(self) -> int: ... method __copy__ (line 5337) | def __copy__(self) -> None: ... method __eq__ (line 5338) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5339) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5340) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5341) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5342) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5343) | def __ne__(self, other: object) -> bool: ... class QJsonArray (line 5345) | class QJsonArray(shiboken2.Object): method __init__ (line 5347) | def __init__(self, other: QJsonArray) -> None: ... method __init__ (line 5349) | def __init__(self) -> None: ... method append (line 5350) | def append(self, value: QJsonValue) -> None: ... method at (line 5351) | def at(self, i: int) -> QJsonValue: ... method contains (line 5352) | def contains(self, element: QJsonValue) -> bool: ... method count (line 5353) | def count(self) -> int: ... method empty (line 5354) | def empty(self) -> bool: ... method first (line 5355) | def first(self) -> QJsonValue: ... method fromStringList (line 5357) | def fromStringList(list: typing.Iterable[str]) -> QJsonArray: ... method fromVariantList (line 5359) | def fromVariantList(list: typing.Iterable[typing.Any]) -> QJsonArray: ... method insert (line 5360) | def insert(self, i: int, value: QJsonValue) -> None: ... method isEmpty (line 5361) | def isEmpty(self) -> bool: ... method last (line 5362) | def last(self) -> QJsonValue: ... method pop_back (line 5363) | def pop_back(self) -> None: ... method pop_front (line 5364) | def pop_front(self) -> None: ... method prepend (line 5365) | def prepend(self, value: QJsonValue) -> None: ... method push_back (line 5366) | def push_back(self, t: QJsonValue) -> None: ... method push_front (line 5367) | def push_front(self, t: QJsonValue) -> None: ... method removeAt (line 5368) | def removeAt(self, i: int) -> None: ... method removeFirst (line 5369) | def removeFirst(self) -> None: ... method removeLast (line 5370) | def removeLast(self) -> None: ... method replace (line 5371) | def replace(self, i: int, value: QJsonValue) -> None: ... method size (line 5372) | def size(self) -> int: ... method swap (line 5373) | def swap(self, other: QJsonArray) -> None: ... method takeAt (line 5374) | def takeAt(self, i: int) -> QJsonValue: ... method toVariantList (line 5375) | def toVariantList(self) -> list[typing.Any]: ... method __add__ (line 5376) | def __add__(self, v: QJsonValue) -> QJsonArray: ... method __copy__ (line 5377) | def __copy__(self) -> None: ... method __eq__ (line 5378) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5379) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5380) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5381) | def __iadd__(self, v: QJsonValue) -> QJsonArray: ... method __le__ (line 5382) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 5383) | def __lshift__(self, v: QJsonValue) -> QJsonArray: ... method __lt__ (line 5384) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5385) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 5386) | def __radd__(self, other): ... method __rlshift__ (line 5387) | def __rlshift__(self, other): ... class QJsonDocument (line 5389) | class QJsonDocument(shiboken2.Object): class DataValidation (line 5390) | class DataValidation: method __init__ (line 5396) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5397) | def __add__(self, other: typing.SupportsInt) -> QJsonDocument.DataVa... method __and__ (line 5398) | def __and__(self, other: typing.SupportsInt) -> QJsonDocument.DataVa... method __bool__ (line 5399) | def __bool__(self) -> bool: ... method __eq__ (line 5400) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5401) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5402) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5403) | def __hash__(self) -> int: ... method __index__ (line 5404) | def __index__(self) -> int: ... method __int__ (line 5405) | def __int__(self) -> int: ... method __le__ (line 5406) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5407) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5408) | def __mul__(self, other: typing.SupportsInt) -> QJsonDocument.DataVa... method __ne__ (line 5409) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5410) | def __or__(self, other: typing.SupportsInt) -> QJsonDocument.DataVal... method __pos__ (line 5411) | def __pos__(self): ... method __radd__ (line 5412) | def __radd__(self, other: typing.SupportsInt) -> QJsonDocument.DataV... method __rand__ (line 5413) | def __rand__(self, other: typing.SupportsInt) -> QJsonDocument.DataV... method __rmul__ (line 5414) | def __rmul__(self, other: typing.SupportsInt) -> QJsonDocument.DataV... method __ror__ (line 5415) | def __ror__(self, other: typing.SupportsInt) -> QJsonDocument.DataVa... method __rsub__ (line 5416) | def __rsub__(self, other: typing.SupportsInt) -> QJsonDocument.DataV... method __rxor__ (line 5417) | def __rxor__(self, other: typing.SupportsInt) -> QJsonDocument.DataV... method __sub__ (line 5418) | def __sub__(self, other: typing.SupportsInt) -> QJsonDocument.DataVa... method __xor__ (line 5419) | def __xor__(self, other: typing.SupportsInt) -> QJsonDocument.DataVa... class JsonFormat (line 5421) | class JsonFormat: method __init__ (line 5427) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5428) | def __add__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFo... method __and__ (line 5429) | def __and__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFo... method __bool__ (line 5430) | def __bool__(self) -> bool: ... method __eq__ (line 5431) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5432) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5433) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5434) | def __hash__(self) -> int: ... method __index__ (line 5435) | def __index__(self) -> int: ... method __int__ (line 5436) | def __int__(self) -> int: ... method __le__ (line 5437) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5438) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5439) | def __mul__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFo... method __ne__ (line 5440) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5441) | def __or__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFor... method __pos__ (line 5442) | def __pos__(self): ... method __radd__ (line 5443) | def __radd__(self, other: typing.SupportsInt) -> QJsonDocument.JsonF... method __rand__ (line 5444) | def __rand__(self, other: typing.SupportsInt) -> QJsonDocument.JsonF... method __rmul__ (line 5445) | def __rmul__(self, other: typing.SupportsInt) -> QJsonDocument.JsonF... method __ror__ (line 5446) | def __ror__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFo... method __rsub__ (line 5447) | def __rsub__(self, other: typing.SupportsInt) -> QJsonDocument.JsonF... method __rxor__ (line 5448) | def __rxor__(self, other: typing.SupportsInt) -> QJsonDocument.JsonF... method __sub__ (line 5449) | def __sub__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFo... method __xor__ (line 5450) | def __xor__(self, other: typing.SupportsInt) -> QJsonDocument.JsonFo... method __init__ (line 5456) | def __init__(self, other: QJsonDocument) -> None: ... method __init__ (line 5458) | def __init__(self, object: dict[str, QJsonValue]) -> None: ... method __init__ (line 5460) | def __init__(self, array: QJsonArray) -> None: ... method __init__ (line 5462) | def __init__(self) -> None: ... method array (line 5463) | def array(self) -> QJsonArray: ... method fromBinaryData (line 5465) | def fromBinaryData(data: QByteArray | bytes, validation: QJsonDocument... method fromJson (line 5467) | def fromJson(json: QByteArray | bytes, error: QJsonParseError | None =... method fromRawData (line 5469) | def fromRawData(data: bytes, size: int, validation: QJsonDocument.Data... method fromVariant (line 5471) | def fromVariant(variant: typing.Any) -> QJsonDocument: ... method isArray (line 5472) | def isArray(self) -> bool: ... method isEmpty (line 5473) | def isEmpty(self) -> bool: ... method isNull (line 5474) | def isNull(self) -> bool: ... method isObject (line 5475) | def isObject(self) -> bool: ... method object (line 5476) | def object(self) -> dict[str, QJsonValue]: ... method rawData (line 5477) | def rawData(self) -> tuple[bytes, int]: ... method setArray (line 5478) | def setArray(self, array: QJsonArray) -> None: ... method setObject (line 5479) | def setObject(self, object: dict[str, QJsonValue]) -> None: ... method swap (line 5480) | def swap(self, other: QJsonDocument) -> None: ... method toBinaryData (line 5481) | def toBinaryData(self) -> QByteArray: ... method toJson (line 5483) | def toJson(self, format: QJsonDocument.JsonFormat) -> QByteArray: ... method toJson (line 5485) | def toJson(self) -> QByteArray: ... method toVariant (line 5486) | def toVariant(self) -> typing.Any: ... method __bool__ (line 5487) | def __bool__(self) -> bool: ... method __copy__ (line 5488) | def __copy__(self) -> None: ... method __eq__ (line 5489) | def __eq__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ge__ (line 5490) | def __ge__(self, other: object) -> bool: ... # type: ignore[valid-type] method __gt__ (line 5491) | def __gt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __le__ (line 5492) | def __le__(self, other: object) -> bool: ... # type: ignore[valid-type] method __lt__ (line 5493) | def __lt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ne__ (line 5494) | def __ne__(self, other: object) -> bool: ... # type: ignore[valid-type] class QJsonParseError (line 5496) | class QJsonParseError(shiboken2.Object): class ParseError (line 5497) | class ParseError: method __init__ (line 5516) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5517) | def __add__(self, other: typing.SupportsInt) -> QJsonParseError.Pars... method __and__ (line 5518) | def __and__(self, other: typing.SupportsInt) -> QJsonParseError.Pars... method __bool__ (line 5519) | def __bool__(self) -> bool: ... method __eq__ (line 5520) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5521) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5522) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5523) | def __hash__(self) -> int: ... method __index__ (line 5524) | def __index__(self) -> int: ... method __int__ (line 5525) | def __int__(self) -> int: ... method __le__ (line 5526) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5527) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5528) | def __mul__(self, other: typing.SupportsInt) -> QJsonParseError.Pars... method __ne__ (line 5529) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5530) | def __or__(self, other: typing.SupportsInt) -> QJsonParseError.Parse... method __pos__ (line 5531) | def __pos__(self): ... method __radd__ (line 5532) | def __radd__(self, other: typing.SupportsInt) -> QJsonParseError.Par... method __rand__ (line 5533) | def __rand__(self, other: typing.SupportsInt) -> QJsonParseError.Par... method __rmul__ (line 5534) | def __rmul__(self, other: typing.SupportsInt) -> QJsonParseError.Par... method __ror__ (line 5535) | def __ror__(self, other: typing.SupportsInt) -> QJsonParseError.Pars... method __rsub__ (line 5536) | def __rsub__(self, other: typing.SupportsInt) -> QJsonParseError.Par... method __rxor__ (line 5537) | def __rxor__(self, other: typing.SupportsInt) -> QJsonParseError.Par... method __sub__ (line 5538) | def __sub__(self, other: typing.SupportsInt) -> QJsonParseError.Pars... method __xor__ (line 5539) | def __xor__(self, other: typing.SupportsInt) -> QJsonParseError.Pars... method __init__ (line 5558) | def __init__(self, QJsonParseError: QJsonParseError) -> None: ... method __init__ (line 5560) | def __init__(self) -> None: ... method errorString (line 5561) | def errorString(self) -> str: ... method __copy__ (line 5562) | def __copy__(self) -> None: ... class QJsonValue (line 5564) | class QJsonValue(shiboken2.Object): class Type (line 5565) | class Type: method __init__ (line 5576) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5577) | def __add__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __and__ (line 5578) | def __and__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __bool__ (line 5579) | def __bool__(self) -> bool: ... method __eq__ (line 5580) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5581) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5582) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5583) | def __hash__(self) -> int: ... method __index__ (line 5584) | def __index__(self) -> int: ... method __int__ (line 5585) | def __int__(self) -> int: ... method __le__ (line 5586) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5587) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5588) | def __mul__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __ne__ (line 5589) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5590) | def __or__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __pos__ (line 5591) | def __pos__(self): ... method __radd__ (line 5592) | def __radd__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __rand__ (line 5593) | def __rand__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __rmul__ (line 5594) | def __rmul__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __ror__ (line 5595) | def __ror__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __rsub__ (line 5596) | def __rsub__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __rxor__ (line 5597) | def __rxor__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __sub__ (line 5598) | def __sub__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __xor__ (line 5599) | def __xor__(self, other: typing.SupportsInt) -> QJsonValue.Type: ... method __init__ (line 5608) | def __init__(self, v: int) -> None: ... method __init__ (line 5610) | def __init__(self, s: str) -> None: ... method __init__ (line 5612) | def __init__(self, s: bytes) -> None: ... method __init__ (line 5614) | def __init__(self, other: QJsonValue) -> None: ... method __init__ (line 5616) | def __init__(self, o: dict[str, QJsonValue]) -> None: ... method __init__ (line 5618) | def __init__(self, n: float) -> None: ... method __init__ (line 5620) | def __init__(self, n: int) -> None: ... # type: ignore[overload-canno... method __init__ (line 5622) | def __init__(self, b: bool) -> None: ... method __init__ (line 5624) | def __init__(self, arg__1: QJsonValue.Type = ...) -> None: ... method __init__ (line 5626) | def __init__(self, a: QJsonArray) -> None: ... method fromVariant (line 5628) | def fromVariant(variant: typing.Any) -> QJsonValue: ... method isArray (line 5629) | def isArray(self) -> bool: ... method isBool (line 5630) | def isBool(self) -> bool: ... method isDouble (line 5631) | def isDouble(self) -> bool: ... method isNull (line 5632) | def isNull(self) -> bool: ... method isObject (line 5633) | def isObject(self) -> bool: ... method isString (line 5634) | def isString(self) -> bool: ... method isUndefined (line 5635) | def isUndefined(self) -> bool: ... method swap (line 5636) | def swap(self, other: QJsonValue) -> None: ... method toArray (line 5638) | def toArray(self, defaultValue: QJsonArray) -> QJsonArray: ... method toArray (line 5640) | def toArray(self) -> QJsonArray: ... method toBool (line 5641) | def toBool(self, defaultValue: bool = ...) -> bool: ... method toDouble (line 5642) | def toDouble(self, defaultValue: float = ...) -> float: ... method toInt (line 5643) | def toInt(self, defaultValue: int = ...) -> int: ... method toObject (line 5645) | def toObject(self, defaultValue: dict[str, QJsonValue]) -> dict[str, Q... method toObject (line 5647) | def toObject(self) -> dict[str, QJsonValue]: ... method toString (line 5649) | def toString(self, defaultValue: str) -> str: ... method toString (line 5651) | def toString(self) -> str: ... method toVariant (line 5652) | def toVariant(self) -> typing.Any: ... method type (line 5653) | def type(self) -> QJsonValue.Type: ... method __bool__ (line 5654) | def __bool__(self) -> bool: ... method __copy__ (line 5655) | def __copy__(self) -> None: ... method __eq__ (line 5656) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5657) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5658) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5659) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5660) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5661) | def __ne__(self, other: object) -> bool: ... class QLibraryInfo (line 5663) | class QLibraryInfo(shiboken2.Object): class LibraryLocation (line 5664) | class LibraryLocation: method __init__ (line 5683) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5684) | def __add__(self, other: typing.SupportsInt) -> QLibraryInfo.Library... method __and__ (line 5685) | def __and__(self, other: typing.SupportsInt) -> QLibraryInfo.Library... method __bool__ (line 5686) | def __bool__(self) -> bool: ... method __eq__ (line 5687) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5688) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5689) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5690) | def __hash__(self) -> int: ... method __index__ (line 5691) | def __index__(self) -> int: ... method __int__ (line 5692) | def __int__(self) -> int: ... method __le__ (line 5693) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5694) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5695) | def __mul__(self, other: typing.SupportsInt) -> QLibraryInfo.Library... method __ne__ (line 5696) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5697) | def __or__(self, other: typing.SupportsInt) -> QLibraryInfo.LibraryL... method __pos__ (line 5698) | def __pos__(self): ... method __radd__ (line 5699) | def __radd__(self, other: typing.SupportsInt) -> QLibraryInfo.Librar... method __rand__ (line 5700) | def __rand__(self, other: typing.SupportsInt) -> QLibraryInfo.Librar... method __rmul__ (line 5701) | def __rmul__(self, other: typing.SupportsInt) -> QLibraryInfo.Librar... method __ror__ (line 5702) | def __ror__(self, other: typing.SupportsInt) -> QLibraryInfo.Library... method __rsub__ (line 5703) | def __rsub__(self, other: typing.SupportsInt) -> QLibraryInfo.Librar... method __rxor__ (line 5704) | def __rxor__(self, other: typing.SupportsInt) -> QLibraryInfo.Librar... method __sub__ (line 5705) | def __sub__(self, other: typing.SupportsInt) -> QLibraryInfo.Library... method __xor__ (line 5706) | def __xor__(self, other: typing.SupportsInt) -> QLibraryInfo.Library... method __init__ (line 5723) | def __init__(cls, *args, **kwargs) -> None: ... method build (line 5725) | def build() -> bytes: ... method buildDate (line 5727) | def buildDate() -> QDate: ... method isDebugBuild (line 5729) | def isDebugBuild() -> bool: ... method licensedProducts (line 5731) | def licensedProducts() -> str: ... method licensee (line 5733) | def licensee() -> str: ... method location (line 5735) | def location(arg__1: QLibraryInfo.LibraryLocation) -> str: ... method platformPluginArguments (line 5737) | def platformPluginArguments(platformName: str) -> list[str]: ... method version (line 5739) | def version() -> QVersionNumber: ... class QLine (line 5741) | class QLine(shiboken2.Object): method __init__ (line 5743) | def __init__(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method __init__ (line 5745) | def __init__(self, pt1: QPoint, pt2: QPoint) -> None: ... method __init__ (line 5747) | def __init__(self, QLine: QLine) -> None: ... method __init__ (line 5749) | def __init__(self) -> None: ... method center (line 5750) | def center(self) -> QPoint: ... method dx (line 5751) | def dx(self) -> int: ... method dy (line 5752) | def dy(self) -> int: ... method isNull (line 5753) | def isNull(self) -> bool: ... method p1 (line 5754) | def p1(self) -> QPoint: ... method p2 (line 5755) | def p2(self) -> QPoint: ... method setLine (line 5756) | def setLine(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method setP1 (line 5757) | def setP1(self, p1: QPoint) -> None: ... method setP2 (line 5758) | def setP2(self, p2: QPoint) -> None: ... method setPoints (line 5759) | def setPoints(self, p1: QPoint, p2: QPoint) -> None: ... method toTuple (line 5760) | def toTuple(self) -> tuple: ... method translate (line 5762) | def translate(self, dx: int, dy: int) -> None: ... method translate (line 5764) | def translate(self, p: QPoint) -> None: ... method translated (line 5766) | def translated(self, dx: int, dy: int) -> QLine: ... method translated (line 5768) | def translated(self, p: QPoint) -> QLine: ... method x1 (line 5769) | def x1(self) -> int: ... method x2 (line 5770) | def x2(self) -> int: ... method y1 (line 5771) | def y1(self) -> int: ... method y2 (line 5772) | def y2(self) -> int: ... method __bool__ (line 5773) | def __bool__(self) -> bool: ... method __copy__ (line 5774) | def __copy__(self) -> None: ... method __eq__ (line 5775) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5776) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5777) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5778) | def __hash__(self) -> int: ... method __le__ (line 5779) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5780) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5781) | def __ne__(self, other: object) -> bool: ... class QLineF (line 5783) | class QLineF(shiboken2.Object): class IntersectType (line 5784) | class IntersectType: method __init__ (line 5791) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5792) | def __add__(self, other: typing.SupportsInt) -> QLineF.IntersectType... method __and__ (line 5793) | def __and__(self, other: typing.SupportsInt) -> QLineF.IntersectType... method __bool__ (line 5794) | def __bool__(self) -> bool: ... method __eq__ (line 5795) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5796) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5797) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5798) | def __hash__(self) -> int: ... method __index__ (line 5799) | def __index__(self) -> int: ... method __int__ (line 5800) | def __int__(self) -> int: ... method __le__ (line 5801) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5802) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5803) | def __mul__(self, other: typing.SupportsInt) -> QLineF.IntersectType... method __ne__ (line 5804) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5805) | def __or__(self, other: typing.SupportsInt) -> QLineF.IntersectType:... method __pos__ (line 5806) | def __pos__(self): ... method __radd__ (line 5807) | def __radd__(self, other: typing.SupportsInt) -> QLineF.IntersectTyp... method __rand__ (line 5808) | def __rand__(self, other: typing.SupportsInt) -> QLineF.IntersectTyp... method __rmul__ (line 5809) | def __rmul__(self, other: typing.SupportsInt) -> QLineF.IntersectTyp... method __ror__ (line 5810) | def __ror__(self, other: typing.SupportsInt) -> QLineF.IntersectType... method __rsub__ (line 5811) | def __rsub__(self, other: typing.SupportsInt) -> QLineF.IntersectTyp... method __rxor__ (line 5812) | def __rxor__(self, other: typing.SupportsInt) -> QLineF.IntersectTyp... method __sub__ (line 5813) | def __sub__(self, other: typing.SupportsInt) -> QLineF.IntersectType... method __xor__ (line 5814) | def __xor__(self, other: typing.SupportsInt) -> QLineF.IntersectType... method __init__ (line 5819) | def __init__(self, x1: float, y1: float, x2: float, y2: float) -> None... method __init__ (line 5821) | def __init__(self, pt1: QPointF, pt2: QPointF) -> None: ... method __init__ (line 5823) | def __init__(self, line: QLine) -> None: ... method __init__ (line 5825) | def __init__(self, QLineF: QLineF) -> None: ... method __init__ (line 5827) | def __init__(self) -> None: ... method angle (line 5829) | def angle(self, l: QLineF) -> float: ... method angle (line 5831) | def angle(self) -> float: ... method angleTo (line 5832) | def angleTo(self, l: QLineF) -> float: ... method center (line 5833) | def center(self) -> QPointF: ... method dx (line 5834) | def dx(self) -> float: ... method dy (line 5835) | def dy(self) -> float: ... method fromPolar (line 5837) | def fromPolar(length: float, angle: float) -> QLineF: ... method intersect (line 5838) | def intersect(self, l: QLineF, intersectionPoint: QPointF) -> QLineF.I... method intersects (line 5839) | def intersects(self, l: QLineF, intersectionPoint: QPointF) -> QLineF.... method isNull (line 5840) | def isNull(self) -> bool: ... method length (line 5841) | def length(self) -> float: ... method normalVector (line 5842) | def normalVector(self) -> QLineF: ... method p1 (line 5843) | def p1(self) -> QPointF: ... method p2 (line 5844) | def p2(self) -> QPointF: ... method pointAt (line 5845) | def pointAt(self, t: float) -> QPointF: ... method setAngle (line 5846) | def setAngle(self, angle: float) -> None: ... method setLength (line 5847) | def setLength(self, len: float) -> None: ... method setLine (line 5848) | def setLine(self, x1: float, y1: float, x2: float, y2: float) -> None:... method setP1 (line 5849) | def setP1(self, p1: QPointF) -> None: ... method setP2 (line 5850) | def setP2(self, p2: QPointF) -> None: ... method setPoints (line 5851) | def setPoints(self, p1: QPointF, p2: QPointF) -> None: ... method toLine (line 5852) | def toLine(self) -> QLine: ... method toTuple (line 5853) | def toTuple(self) -> tuple: ... method translate (line 5855) | def translate(self, dx: float, dy: float) -> None: ... method translate (line 5857) | def translate(self, p: QPointF) -> None: ... method translated (line 5859) | def translated(self, dx: float, dy: float) -> QLineF: ... method translated (line 5861) | def translated(self, p: QPointF) -> QLineF: ... method unitVector (line 5862) | def unitVector(self) -> QLineF: ... method x1 (line 5863) | def x1(self) -> float: ... method x2 (line 5864) | def x2(self) -> float: ... method y1 (line 5865) | def y1(self) -> float: ... method y2 (line 5866) | def y2(self) -> float: ... method __bool__ (line 5867) | def __bool__(self) -> bool: ... method __copy__ (line 5868) | def __copy__(self) -> None: ... method __eq__ (line 5869) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5870) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5871) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5872) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5873) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5874) | def __ne__(self, other: object) -> bool: ... class QLocale (line 5876) | class QLocale(shiboken2.Object): class Country (line 5877) | class Country: method __init__ (line 6153) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6154) | def __add__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __and__ (line 6155) | def __and__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __bool__ (line 6156) | def __bool__(self) -> bool: ... method __eq__ (line 6157) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6158) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6159) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6160) | def __hash__(self) -> int: ... method __index__ (line 6161) | def __index__(self) -> int: ... method __int__ (line 6162) | def __int__(self) -> int: ... method __le__ (line 6163) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6164) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6165) | def __mul__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __ne__ (line 6166) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6167) | def __or__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __pos__ (line 6168) | def __pos__(self): ... method __radd__ (line 6169) | def __radd__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __rand__ (line 6170) | def __rand__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __rmul__ (line 6171) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __ror__ (line 6172) | def __ror__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __rsub__ (line 6173) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __rxor__ (line 6174) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __sub__ (line 6175) | def __sub__(self, other: typing.SupportsInt) -> QLocale.Country: ... method __xor__ (line 6176) | def __xor__(self, other: typing.SupportsInt) -> QLocale.Country: ... class CurrencySymbolFormat (line 6178) | class CurrencySymbolFormat: method __init__ (line 6185) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6186) | def __add__(self, other: typing.SupportsInt) -> QLocale.CurrencySymb... method __and__ (line 6187) | def __and__(self, other: typing.SupportsInt) -> QLocale.CurrencySymb... method __bool__ (line 6188) | def __bool__(self) -> bool: ... method __eq__ (line 6189) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6190) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6191) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6192) | def __hash__(self) -> int: ... method __index__ (line 6193) | def __index__(self) -> int: ... method __int__ (line 6194) | def __int__(self) -> int: ... method __le__ (line 6195) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6196) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6197) | def __mul__(self, other: typing.SupportsInt) -> QLocale.CurrencySymb... method __ne__ (line 6198) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6199) | def __or__(self, other: typing.SupportsInt) -> QLocale.CurrencySymbo... method __pos__ (line 6200) | def __pos__(self): ... method __radd__ (line 6201) | def __radd__(self, other: typing.SupportsInt) -> QLocale.CurrencySym... method __rand__ (line 6202) | def __rand__(self, other: typing.SupportsInt) -> QLocale.CurrencySym... method __rmul__ (line 6203) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.CurrencySym... method __ror__ (line 6204) | def __ror__(self, other: typing.SupportsInt) -> QLocale.CurrencySymb... method __rsub__ (line 6205) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.CurrencySym... method __rxor__ (line 6206) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.CurrencySym... method __sub__ (line 6207) | def __sub__(self, other: typing.SupportsInt) -> QLocale.CurrencySymb... method __xor__ (line 6208) | def __xor__(self, other: typing.SupportsInt) -> QLocale.CurrencySymb... class DataSizeFormat (line 6210) | class DataSizeFormat: method __init__ (line 6219) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6220) | def __and__(self, other: typing.SupportsInt) -> QLocale.DataSizeForm... method __bool__ (line 6221) | def __bool__(self) -> bool: ... method __eq__ (line 6222) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6223) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6224) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6225) | def __hash__(self) -> int: ... method __index__ (line 6226) | def __index__(self) -> int: ... method __int__ (line 6227) | def __int__(self) -> int: ... method __invert__ (line 6228) | def __invert__(self) -> QLocale.DataSizeFormats: ... method __le__ (line 6229) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6230) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6231) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6232) | def __or__(self, other: typing.SupportsInt) -> QLocale.DataSizeForma... method __rand__ (line 6233) | def __rand__(self, other: typing.SupportsInt) -> QLocale.DataSizeFor... method __ror__ (line 6234) | def __ror__(self, other: typing.SupportsInt) -> QLocale.DataSizeForm... method __rxor__ (line 6235) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.DataSizeFor... method __xor__ (line 6236) | def __xor__(self, other: typing.SupportsInt) -> QLocale.DataSizeForm... class DataSizeFormats (line 6238) | class DataSizeFormats: method __init__ (line 6240) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6241) | def __and__(self, other: typing.SupportsInt) -> QLocale.DataSizeForm... method __bool__ (line 6242) | def __bool__(self) -> bool: ... method __eq__ (line 6243) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6244) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6245) | def __gt__(self, other: object) -> bool: ... method __index__ (line 6246) | def __index__(self) -> int: ... method __int__ (line 6247) | def __int__(self) -> int: ... method __invert__ (line 6248) | def __invert__(self) -> QLocale.DataSizeFormats: ... method __le__ (line 6249) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6250) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6251) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6252) | def __or__(self, other: typing.SupportsInt) -> QLocale.DataSizeForma... method __rand__ (line 6253) | def __rand__(self, other: typing.SupportsInt) -> QLocale.DataSizeFor... method __ror__ (line 6254) | def __ror__(self, other: typing.SupportsInt) -> QLocale.DataSizeForm... method __rxor__ (line 6255) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.DataSizeFor... method __xor__ (line 6256) | def __xor__(self, other: typing.SupportsInt) -> QLocale.DataSizeForm... class FloatingPointPrecisionOption (line 6258) | class FloatingPointPrecisionOption: method __init__ (line 6263) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6264) | def __add__(self, other: typing.SupportsInt) -> QLocale.FloatingPoin... method __and__ (line 6265) | def __and__(self, other: typing.SupportsInt) -> QLocale.FloatingPoin... method __bool__ (line 6266) | def __bool__(self) -> bool: ... method __eq__ (line 6267) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6268) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6269) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6270) | def __hash__(self) -> int: ... method __index__ (line 6271) | def __index__(self) -> int: ... method __int__ (line 6272) | def __int__(self) -> int: ... method __le__ (line 6273) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6274) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6275) | def __mul__(self, other: typing.SupportsInt) -> QLocale.FloatingPoin... method __ne__ (line 6276) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6277) | def __or__(self, other: typing.SupportsInt) -> QLocale.FloatingPoint... method __pos__ (line 6278) | def __pos__(self): ... method __radd__ (line 6279) | def __radd__(self, other: typing.SupportsInt) -> QLocale.FloatingPoi... method __rand__ (line 6280) | def __rand__(self, other: typing.SupportsInt) -> QLocale.FloatingPoi... method __rmul__ (line 6281) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.FloatingPoi... method __ror__ (line 6282) | def __ror__(self, other: typing.SupportsInt) -> QLocale.FloatingPoin... method __rsub__ (line 6283) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.FloatingPoi... method __rxor__ (line 6284) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.FloatingPoi... method __sub__ (line 6285) | def __sub__(self, other: typing.SupportsInt) -> QLocale.FloatingPoin... method __xor__ (line 6286) | def __xor__(self, other: typing.SupportsInt) -> QLocale.FloatingPoin... class FormatType (line 6288) | class FormatType: method __init__ (line 6295) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6296) | def __add__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... method __and__ (line 6297) | def __and__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... method __bool__ (line 6298) | def __bool__(self) -> bool: ... method __eq__ (line 6299) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6300) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6301) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6302) | def __hash__(self) -> int: ... method __index__ (line 6303) | def __index__(self) -> int: ... method __int__ (line 6304) | def __int__(self) -> int: ... method __le__ (line 6305) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6306) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6307) | def __mul__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... method __ne__ (line 6308) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6309) | def __or__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... method __pos__ (line 6310) | def __pos__(self): ... method __radd__ (line 6311) | def __radd__(self, other: typing.SupportsInt) -> QLocale.FormatType:... method __rand__ (line 6312) | def __rand__(self, other: typing.SupportsInt) -> QLocale.FormatType:... method __rmul__ (line 6313) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.FormatType:... method __ror__ (line 6314) | def __ror__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... method __rsub__ (line 6315) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.FormatType:... method __rxor__ (line 6316) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.FormatType:... method __sub__ (line 6317) | def __sub__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... method __xor__ (line 6318) | def __xor__(self, other: typing.SupportsInt) -> QLocale.FormatType: ... class Language (line 6320) | class Language: method __init__ (line 6710) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6711) | def __add__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __and__ (line 6712) | def __and__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __bool__ (line 6713) | def __bool__(self) -> bool: ... method __eq__ (line 6714) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6715) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6716) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6717) | def __hash__(self) -> int: ... method __index__ (line 6718) | def __index__(self) -> int: ... method __int__ (line 6719) | def __int__(self) -> int: ... method __le__ (line 6720) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6721) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6722) | def __mul__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __ne__ (line 6723) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6724) | def __or__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __pos__ (line 6725) | def __pos__(self): ... method __radd__ (line 6726) | def __radd__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __rand__ (line 6727) | def __rand__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __rmul__ (line 6728) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __ror__ (line 6729) | def __ror__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __rsub__ (line 6730) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __rxor__ (line 6731) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __sub__ (line 6732) | def __sub__(self, other: typing.SupportsInt) -> QLocale.Language: ... method __xor__ (line 6733) | def __xor__(self, other: typing.SupportsInt) -> QLocale.Language: ... class MeasurementSystem (line 6735) | class MeasurementSystem: method __init__ (line 6743) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6744) | def __add__(self, other: typing.SupportsInt) -> QLocale.MeasurementS... method __and__ (line 6745) | def __and__(self, other: typing.SupportsInt) -> QLocale.MeasurementS... method __bool__ (line 6746) | def __bool__(self) -> bool: ... method __eq__ (line 6747) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6748) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6749) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6750) | def __hash__(self) -> int: ... method __index__ (line 6751) | def __index__(self) -> int: ... method __int__ (line 6752) | def __int__(self) -> int: ... method __le__ (line 6753) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6754) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6755) | def __mul__(self, other: typing.SupportsInt) -> QLocale.MeasurementS... method __ne__ (line 6756) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6757) | def __or__(self, other: typing.SupportsInt) -> QLocale.MeasurementSy... method __pos__ (line 6758) | def __pos__(self): ... method __radd__ (line 6759) | def __radd__(self, other: typing.SupportsInt) -> QLocale.Measurement... method __rand__ (line 6760) | def __rand__(self, other: typing.SupportsInt) -> QLocale.Measurement... method __rmul__ (line 6761) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.Measurement... method __ror__ (line 6762) | def __ror__(self, other: typing.SupportsInt) -> QLocale.MeasurementS... method __rsub__ (line 6763) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.Measurement... method __rxor__ (line 6764) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.Measurement... method __sub__ (line 6765) | def __sub__(self, other: typing.SupportsInt) -> QLocale.MeasurementS... method __xor__ (line 6766) | def __xor__(self, other: typing.SupportsInt) -> QLocale.MeasurementS... class NumberOption (line 6768) | class NumberOption: method __init__ (line 6779) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6780) | def __and__(self, other: typing.SupportsInt) -> QLocale.NumberOption... method __bool__ (line 6781) | def __bool__(self) -> bool: ... method __eq__ (line 6782) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6783) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6784) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6785) | def __hash__(self) -> int: ... method __index__ (line 6786) | def __index__(self) -> int: ... method __int__ (line 6787) | def __int__(self) -> int: ... method __invert__ (line 6788) | def __invert__(self) -> QLocale.NumberOptions: ... method __le__ (line 6789) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6790) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6791) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6792) | def __or__(self, other: typing.SupportsInt) -> QLocale.NumberOptions... method __rand__ (line 6793) | def __rand__(self, other: typing.SupportsInt) -> QLocale.NumberOptio... method __ror__ (line 6794) | def __ror__(self, other: typing.SupportsInt) -> QLocale.NumberOption... method __rxor__ (line 6795) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.NumberOptio... method __xor__ (line 6796) | def __xor__(self, other: typing.SupportsInt) -> QLocale.NumberOption... class NumberOptions (line 6798) | class NumberOptions: method __init__ (line 6800) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6801) | def __and__(self, other: typing.SupportsInt) -> QLocale.NumberOption... method __bool__ (line 6802) | def __bool__(self) -> bool: ... method __eq__ (line 6803) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6804) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6805) | def __gt__(self, other: object) -> bool: ... method __index__ (line 6806) | def __index__(self) -> int: ... method __int__ (line 6807) | def __int__(self) -> int: ... method __invert__ (line 6808) | def __invert__(self) -> QLocale.NumberOptions: ... method __le__ (line 6809) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6810) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6811) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6812) | def __or__(self, other: typing.SupportsInt) -> QLocale.NumberOptions... method __rand__ (line 6813) | def __rand__(self, other: typing.SupportsInt) -> QLocale.NumberOptio... method __ror__ (line 6814) | def __ror__(self, other: typing.SupportsInt) -> QLocale.NumberOption... method __rxor__ (line 6815) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.NumberOptio... method __xor__ (line 6816) | def __xor__(self, other: typing.SupportsInt) -> QLocale.NumberOption... class QuotationStyle (line 6818) | class QuotationStyle: method __init__ (line 6824) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6825) | def __add__(self, other: typing.SupportsInt) -> QLocale.QuotationSty... method __and__ (line 6826) | def __and__(self, other: typing.SupportsInt) -> QLocale.QuotationSty... method __bool__ (line 6827) | def __bool__(self) -> bool: ... method __eq__ (line 6828) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6829) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6830) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6831) | def __hash__(self) -> int: ... method __index__ (line 6832) | def __index__(self) -> int: ... method __int__ (line 6833) | def __int__(self) -> int: ... method __le__ (line 6834) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6835) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6836) | def __mul__(self, other: typing.SupportsInt) -> QLocale.QuotationSty... method __ne__ (line 6837) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6838) | def __or__(self, other: typing.SupportsInt) -> QLocale.QuotationStyl... method __pos__ (line 6839) | def __pos__(self): ... method __radd__ (line 6840) | def __radd__(self, other: typing.SupportsInt) -> QLocale.QuotationSt... method __rand__ (line 6841) | def __rand__(self, other: typing.SupportsInt) -> QLocale.QuotationSt... method __rmul__ (line 6842) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.QuotationSt... method __ror__ (line 6843) | def __ror__(self, other: typing.SupportsInt) -> QLocale.QuotationSty... method __rsub__ (line 6844) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.QuotationSt... method __rxor__ (line 6845) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.QuotationSt... method __sub__ (line 6846) | def __sub__(self, other: typing.SupportsInt) -> QLocale.QuotationSty... method __xor__ (line 6847) | def __xor__(self, other: typing.SupportsInt) -> QLocale.QuotationSty... class Script (line 6849) | class Script: method __init__ (line 6998) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6999) | def __add__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __and__ (line 7000) | def __and__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __bool__ (line 7001) | def __bool__(self) -> bool: ... method __eq__ (line 7002) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7003) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7004) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7005) | def __hash__(self) -> int: ... method __index__ (line 7006) | def __index__(self) -> int: ... method __int__ (line 7007) | def __int__(self) -> int: ... method __le__ (line 7008) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7009) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7010) | def __mul__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __ne__ (line 7011) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7012) | def __or__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __pos__ (line 7013) | def __pos__(self): ... method __radd__ (line 7014) | def __radd__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __rand__ (line 7015) | def __rand__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __rmul__ (line 7016) | def __rmul__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __ror__ (line 7017) | def __ror__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __rsub__ (line 7018) | def __rsub__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __rxor__ (line 7019) | def __rxor__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __sub__ (line 7020) | def __sub__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __xor__ (line 7021) | def __xor__(self, other: typing.SupportsInt) -> QLocale.Script: ... method __init__ (line 7851) | def __init__(self, language: QLocale.Language, script: QLocale.Script,... method __init__ (line 7853) | def __init__(self, language: QLocale.Language, country: QLocale.Countr... method __init__ (line 7855) | def __init__(self, other: QLocale) -> None: ... method __init__ (line 7857) | def __init__(self, name: str) -> None: ... method __init__ (line 7859) | def __init__(self) -> None: ... method amText (line 7860) | def amText(self) -> str: ... method bcp47Name (line 7861) | def bcp47Name(self) -> str: ... method c (line 7863) | def c() -> QLocale: ... method collation (line 7864) | def collation(self) -> QLocale: ... method countriesForLanguage (line 7866) | def countriesForLanguage(lang: QLocale.Language) -> list[QLocale.Count... method country (line 7867) | def country(self) -> QLocale.Country: ... method countryToString (line 7869) | def countryToString(country: QLocale.Country) -> str: ... method createSeparatedList (line 7870) | def createSeparatedList(self, strl: typing.Iterable[str]) -> str: ... method currencySymbol (line 7871) | def currencySymbol(self, arg__1: QLocale.CurrencySymbolFormat = ...) -... method dateFormat (line 7872) | def dateFormat(self, format: QLocale.FormatType = ...) -> str: ... method dateTimeFormat (line 7873) | def dateTimeFormat(self, format: QLocale.FormatType = ...) -> str: ... method dayName (line 7874) | def dayName(self, arg__1: int, format: QLocale.FormatType = ...) -> st... method decimalPoint (line 7875) | def decimalPoint(self) -> str: ... method exponential (line 7876) | def exponential(self) -> str: ... method firstDayOfWeek (line 7877) | def firstDayOfWeek(self) -> Qt.DayOfWeek: ... method formattedDataSize (line 7878) | def formattedDataSize(self, bytes: int, precision: int = ..., format: ... method groupSeparator (line 7879) | def groupSeparator(self) -> str: ... method language (line 7880) | def language(self) -> QLocale.Language: ... method languageToString (line 7882) | def languageToString(language: QLocale.Language) -> str: ... method matchingLocales (line 7884) | def matchingLocales(language: QLocale.Language, script: QLocale.Script... method measurementSystem (line 7885) | def measurementSystem(self) -> QLocale.MeasurementSystem: ... method monthName (line 7886) | def monthName(self, arg__1: int, format: QLocale.FormatType = ...) -> ... method name (line 7887) | def name(self) -> str: ... method nativeCountryName (line 7888) | def nativeCountryName(self) -> str: ... method nativeLanguageName (line 7889) | def nativeLanguageName(self) -> str: ... method negativeSign (line 7890) | def negativeSign(self) -> str: ... method numberOptions (line 7891) | def numberOptions(self) -> QLocale.NumberOptions | QLocale.NumberOptio... method percent (line 7892) | def percent(self) -> str: ... method pmText (line 7893) | def pmText(self) -> str: ... method positiveSign (line 7894) | def positiveSign(self) -> str: ... method quoteString (line 7895) | def quoteString(self, str: str, style: QLocale.QuotationStyle = ...) -... method script (line 7896) | def script(self) -> QLocale.Script: ... method scriptToString (line 7898) | def scriptToString(script: QLocale.Script) -> str: ... method setDefault (line 7900) | def setDefault(locale: QLocale) -> None: ... method setNumberOptions (line 7901) | def setNumberOptions(self, options: QLocale.NumberOptions | QLocale.Nu... method standaloneDayName (line 7902) | def standaloneDayName(self, arg__1: int, format: QLocale.FormatType = ... method standaloneMonthName (line 7903) | def standaloneMonthName(self, arg__1: int, format: QLocale.FormatType ... method swap (line 7904) | def swap(self, other: QLocale) -> None: ... method system (line 7906) | def system() -> QLocale: ... method textDirection (line 7907) | def textDirection(self) -> Qt.LayoutDirection: ... method timeFormat (line 7908) | def timeFormat(self, format: QLocale.FormatType = ...) -> str: ... method toCurrencyString (line 7910) | def toCurrencyString(self, i: float, symbol: str, precision: int) -> s... method toCurrencyString (line 7912) | def toCurrencyString(self, arg__1: float, symbol: str, precision: int)... method toCurrencyString (line 7914) | def toCurrencyString(self, i: float, symbol: str = ...) -> str: ... method toCurrencyString (line 7916) | def toCurrencyString(self, arg__1: float, symbol: str = ...) -> str: ... method toCurrencyString (line 7918) | def toCurrencyString(self, arg__1: int, symbol: str = ...) -> str: ...... method toDate (line 7920) | def toDate(self, string: str, format: QLocale.FormatType, cal: QCalend... method toDate (line 7922) | def toDate(self, string: str, format: str, cal: QCalendar) -> QDate: ... method toDate (line 7924) | def toDate(self, string: str, format: QLocale.FormatType = ...) -> QDa... method toDate (line 7926) | def toDate(self, string: str, format: str) -> QDate: ... method toDateTime (line 7928) | def toDateTime(self, string: str, format: QLocale.FormatType, cal: QCa... method toDateTime (line 7930) | def toDateTime(self, string: str, format: str, cal: QCalendar) -> QDat... method toDateTime (line 7932) | def toDateTime(self, string: str, format: QLocale.FormatType = ...) ->... method toDateTime (line 7934) | def toDateTime(self, string: str, format: str) -> QDateTime: ... method toDouble (line 7935) | def toDouble(self, s: str) -> tuple[float, bool]: ... method toFloat (line 7936) | def toFloat(self, s: str) -> tuple[float, bool]: ... method toInt (line 7937) | def toInt(self, s: str) -> tuple[int, bool]: ... method toLong (line 7938) | def toLong(self, s: str) -> tuple[int, bool]: ... method toLongLong (line 7939) | def toLongLong(self, s: str) -> tuple[int, bool]: ... method toLower (line 7940) | def toLower(self, str: str) -> str: ... method toShort (line 7941) | def toShort(self, s: str) -> tuple[int, bool]: ... method toString (line 7943) | def toString(self, i: float, f: int = ..., prec: int = ...) -> str: ... method toString (line 7945) | def toString(self, dateTime: QDateTime | datetime.datetime, format: QL... method toString (line 7947) | def toString(self, date: QDate | datetime.date, format: QLocale.Format... method toString (line 7949) | def toString(self, time: QTime, formatStr: str) -> str: ... method toString (line 7951) | def toString(self, time: QTime, format: QLocale.FormatType = ...) -> s... method toString (line 7953) | def toString(self, dateTime: QDateTime | datetime.datetime, format: QL... method toString (line 7955) | def toString(self, dateTime: QDateTime | datetime.datetime, format: st... method toString (line 7957) | def toString(self, date: QDate | datetime.date, formatStr: str) -> str... method toString (line 7959) | def toString(self, date: QDate | datetime.date, format: QLocale.Format... method toString (line 7961) | def toString(self, i: int) -> str: ... # type: ignore[overload-cannot... method toTime (line 7963) | def toTime(self, string: str, format: QLocale.FormatType, cal: QCalend... method toTime (line 7965) | def toTime(self, string: str, format: str, cal: QCalendar) -> QTime: ... method toTime (line 7967) | def toTime(self, string: str, format: QLocale.FormatType = ...) -> QTi... method toTime (line 7969) | def toTime(self, string: str, format: str) -> QTime: ... method toUInt (line 7970) | def toUInt(self, s: str) -> tuple[int, bool]: ... method toULong (line 7971) | def toULong(self, s: str) -> tuple[int, bool]: ... method toULongLong (line 7972) | def toULongLong(self, s: str) -> tuple[int, bool]: ... method toUShort (line 7973) | def toUShort(self, s: str) -> tuple[int, bool]: ... method toUpper (line 7974) | def toUpper(self, str: str) -> str: ... method uiLanguages (line 7975) | def uiLanguages(self) -> list[str]: ... method weekdays (line 7976) | def weekdays(self) -> list[Qt.DayOfWeek]: ... method zeroDigit (line 7977) | def zeroDigit(self) -> str: ... method __copy__ (line 7978) | def __copy__(self) -> None: ... method __eq__ (line 7979) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7980) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7981) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7982) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7983) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7984) | def __ne__(self, other: object) -> bool: ... class QLockFile (line 7986) | class QLockFile(shiboken2.Object): class LockError (line 7987) | class LockError: method __init__ (line 7995) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7996) | def __add__(self, other: typing.SupportsInt) -> QLockFile.LockError:... method __and__ (line 7997) | def __and__(self, other: typing.SupportsInt) -> QLockFile.LockError:... method __bool__ (line 7998) | def __bool__(self) -> bool: ... method __eq__ (line 7999) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8000) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8001) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8002) | def __hash__(self) -> int: ... method __index__ (line 8003) | def __index__(self) -> int: ... method __int__ (line 8004) | def __int__(self) -> int: ... method __le__ (line 8005) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8006) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8007) | def __mul__(self, other: typing.SupportsInt) -> QLockFile.LockError:... method __ne__ (line 8008) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8009) | def __or__(self, other: typing.SupportsInt) -> QLockFile.LockError: ... method __pos__ (line 8010) | def __pos__(self): ... method __radd__ (line 8011) | def __radd__(self, other: typing.SupportsInt) -> QLockFile.LockError... method __rand__ (line 8012) | def __rand__(self, other: typing.SupportsInt) -> QLockFile.LockError... method __rmul__ (line 8013) | def __rmul__(self, other: typing.SupportsInt) -> QLockFile.LockError... method __ror__ (line 8014) | def __ror__(self, other: typing.SupportsInt) -> QLockFile.LockError:... method __rsub__ (line 8015) | def __rsub__(self, other: typing.SupportsInt) -> QLockFile.LockError... method __rxor__ (line 8016) | def __rxor__(self, other: typing.SupportsInt) -> QLockFile.LockError... method __sub__ (line 8017) | def __sub__(self, other: typing.SupportsInt) -> QLockFile.LockError:... method __xor__ (line 8018) | def __xor__(self, other: typing.SupportsInt) -> QLockFile.LockError:... method __init__ (line 8023) | def __init__(self, fileName: str) -> None: ... method error (line 8024) | def error(self) -> QLockFile.LockError: ... method getLockInfo (line 8025) | def getLockInfo(self) -> tuple[bool, int, str, str]: ... method isLocked (line 8026) | def isLocked(self) -> bool: ... method lock (line 8027) | def lock(self) -> bool: ... method removeStaleLockFile (line 8028) | def removeStaleLockFile(self) -> bool: ... method setStaleLockTime (line 8029) | def setStaleLockTime(self, arg__1: int) -> None: ... method staleLockTime (line 8030) | def staleLockTime(self) -> int: ... method tryLock (line 8031) | def tryLock(self, timeout: int = ...) -> bool: ... method unlock (line 8032) | def unlock(self) -> None: ... class QMargins (line 8034) | class QMargins(shiboken2.Object): method __init__ (line 8036) | def __init__(self, left: int, top: int, right: int, bottom: int) -> No... method __init__ (line 8038) | def __init__(self, QMargins: QMargins) -> None: ... method __init__ (line 8040) | def __init__(self) -> None: ... method bottom (line 8041) | def bottom(self) -> int: ... method isNull (line 8042) | def isNull(self) -> bool: ... method left (line 8043) | def left(self) -> int: ... method right (line 8044) | def right(self) -> int: ... method setBottom (line 8045) | def setBottom(self, bottom: int) -> None: ... method setLeft (line 8046) | def setLeft(self, left: int) -> None: ... method setRight (line 8047) | def setRight(self, right: int) -> None: ... method setTop (line 8048) | def setTop(self, top: int) -> None: ... method top (line 8049) | def top(self) -> int: ... method __add__ (line 8051) | def __add__(self, rhs: int) -> QMargins: ... method __add__ (line 8053) | def __add__(self, m2: QMargins) -> QMargins: ... method __add__ (line 8055) | def __add__(self, lhs: int) -> QMargins: ... # type: ignore[overload-... method __bool__ (line 8056) | def __bool__(self) -> bool: ... method __copy__ (line 8057) | def __copy__(self) -> None: ... method __eq__ (line 8058) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8059) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8060) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 8062) | def __iadd__(self, margins: QMargins) -> QMargins: ... method __iadd__ (line 8064) | def __iadd__(self, arg__1: int) -> QMargins: ... method __imul__ (line 8066) | def __imul__(self, arg__1: int) -> QMargins: ... method __imul__ (line 8068) | def __imul__(self, arg__1: float) -> QMargins: ... method __isub__ (line 8070) | def __isub__(self, margins: QMargins) -> QMargins: ... method __isub__ (line 8072) | def __isub__(self, arg__1: int) -> QMargins: ... method __le__ (line 8073) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8074) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8076) | def __mul__(self, factor: int) -> QMargins: ... method __mul__ (line 8078) | def __mul__(self, factor: float) -> QMargins: ... method __ne__ (line 8079) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 8080) | def __neg__(self) -> QMargins: ... method __pos__ (line 8081) | def __pos__(self) -> QMargins: ... method __radd__ (line 8082) | def __radd__(self, other): ... method __rmul__ (line 8083) | def __rmul__(self, other): ... method __rsub__ (line 8084) | def __rsub__(self, other): ... method __rtruediv__ (line 8085) | def __rtruediv__(self, other): ... method __sub__ (line 8087) | def __sub__(self, rhs: int) -> QMargins: ... method __sub__ (line 8089) | def __sub__(self, m2: QMargins) -> QMargins: ... method __truediv__ (line 8090) | def __truediv__(self, other): ... class QMarginsF (line 8092) | class QMarginsF(shiboken2.Object): method __init__ (line 8094) | def __init__(self, left: float, top: float, right: float, bottom: floa... method __init__ (line 8096) | def __init__(self, margins: QMargins) -> None: ... method __init__ (line 8098) | def __init__(self, QMarginsF: QMarginsF) -> None: ... method __init__ (line 8100) | def __init__(self) -> None: ... method bottom (line 8101) | def bottom(self) -> float: ... method isNull (line 8102) | def isNull(self) -> bool: ... method left (line 8103) | def left(self) -> float: ... method right (line 8104) | def right(self) -> float: ... method setBottom (line 8105) | def setBottom(self, bottom: float) -> None: ... method setLeft (line 8106) | def setLeft(self, left: float) -> None: ... method setRight (line 8107) | def setRight(self, right: float) -> None: ... method setTop (line 8108) | def setTop(self, top: float) -> None: ... method toMargins (line 8109) | def toMargins(self) -> QMargins: ... method top (line 8110) | def top(self) -> float: ... method __add__ (line 8112) | def __add__(self, rhs: QMarginsF) -> QMarginsF: ... method __add__ (line 8114) | def __add__(self, rhs: float) -> QMarginsF: ... method __add__ (line 8116) | def __add__(self, lhs: float) -> QMarginsF: ... # type: ignore[overlo... method __bool__ (line 8117) | def __bool__(self) -> bool: ... method __copy__ (line 8118) | def __copy__(self) -> None: ... method __eq__ (line 8119) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8120) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8121) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 8123) | def __iadd__(self, margins: QMarginsF) -> QMarginsF: ... method __iadd__ (line 8125) | def __iadd__(self, addend: float) -> QMarginsF: ... method __imul__ (line 8126) | def __imul__(self, factor: float) -> QMarginsF: ... # type: ignore[misc] method __isub__ (line 8128) | def __isub__(self, subtrahend: float) -> QMarginsF: ... method __isub__ (line 8130) | def __isub__(self, margins: QMarginsF) -> QMarginsF: ... method __le__ (line 8131) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8132) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8134) | def __mul__(self, rhs: float) -> QMarginsF: ... method __mul__ (line 8136) | def __mul__(self, lhs: float) -> QMarginsF: ... # type: ignore[overlo... method __ne__ (line 8137) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 8138) | def __neg__(self) -> QMarginsF: ... method __pos__ (line 8139) | def __pos__(self) -> QMarginsF: ... method __radd__ (line 8140) | def __radd__(self, other): ... method __rmul__ (line 8141) | def __rmul__(self, other): ... method __rsub__ (line 8142) | def __rsub__(self, other): ... method __rtruediv__ (line 8143) | def __rtruediv__(self, other): ... method __sub__ (line 8145) | def __sub__(self, rhs: QMarginsF) -> QMarginsF: ... method __sub__ (line 8147) | def __sub__(self, rhs: float) -> QMarginsF: ... method __truediv__ (line 8148) | def __truediv__(self, other): ... class QMessageAuthenticationCode (line 8150) | class QMessageAuthenticationCode(shiboken2.Object): method __init__ (line 8151) | def __init__(self, method: QCryptographicHash.Algorithm, key: QByteArr... method addData (line 8153) | def addData(self, data: bytes, length: int) -> None: ... method addData (line 8155) | def addData(self, device: QIODevice) -> bool: ... method addData (line 8157) | def addData(self, data: QByteArray | bytes) -> None: ... method hash (line 8159) | def hash(message: QByteArray | bytes, key: QByteArray | bytes, method:... method reset (line 8160) | def reset(self) -> None: ... method result (line 8161) | def result(self) -> QByteArray: ... method setKey (line 8162) | def setKey(self, key: QByteArray | bytes) -> None: ... class QMessageLogContext (line 8164) | class QMessageLogContext(shiboken2.Object): method __init__ (line 8171) | def __init__(self, fileName: bytes, lineNumber: int, functionName: byt... method __init__ (line 8173) | def __init__(self) -> None: ... class QMetaClassInfo (line 8175) | class QMetaClassInfo(shiboken2.Object): method __init__ (line 8177) | def __init__(self, QMetaClassInfo: QMetaClassInfo) -> None: ... method __init__ (line 8179) | def __init__(self) -> None: ... method name (line 8180) | def name(self) -> bytes: ... method value (line 8181) | def value(self) -> bytes: ... method __copy__ (line 8182) | def __copy__(self) -> None: ... class QMetaEnum (line 8184) | class QMetaEnum(shiboken2.Object): method __init__ (line 8186) | def __init__(self, QMetaEnum: QMetaEnum) -> None: ... method __init__ (line 8188) | def __init__(self) -> None: ... method enumName (line 8189) | def enumName(self) -> bytes: ... method isFlag (line 8190) | def isFlag(self) -> bool: ... method isScoped (line 8191) | def isScoped(self) -> bool: ... method isValid (line 8192) | def isValid(self) -> bool: ... method key (line 8193) | def key(self, index: int) -> bytes: ... method keyCount (line 8194) | def keyCount(self) -> int: ... method keyToValue (line 8195) | def keyToValue(self, key: bytes) -> tuple[int, bool]: ... method keysToValue (line 8196) | def keysToValue(self, keys: bytes) -> tuple[int, bool]: ... method name (line 8197) | def name(self) -> bytes: ... method scope (line 8198) | def scope(self) -> bytes: ... method value (line 8199) | def value(self, index: int) -> int: ... method valueToKey (line 8200) | def valueToKey(self, value: int) -> bytes: ... method valueToKeys (line 8201) | def valueToKeys(self, value: int) -> QByteArray: ... method __copy__ (line 8202) | def __copy__(self) -> None: ... class QMetaMethod (line 8204) | class QMetaMethod(shiboken2.Object): class Access (line 8205) | class Access: method __init__ (line 8212) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8213) | def __add__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... method __and__ (line 8214) | def __and__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... method __bool__ (line 8215) | def __bool__(self) -> bool: ... method __eq__ (line 8216) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8217) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8218) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8219) | def __hash__(self) -> int: ... method __index__ (line 8220) | def __index__(self) -> int: ... method __int__ (line 8221) | def __int__(self) -> int: ... method __le__ (line 8222) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8223) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8224) | def __mul__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... method __ne__ (line 8225) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8226) | def __or__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... method __pos__ (line 8227) | def __pos__(self): ... method __radd__ (line 8228) | def __radd__(self, other: typing.SupportsInt) -> QMetaMethod.Access:... method __rand__ (line 8229) | def __rand__(self, other: typing.SupportsInt) -> QMetaMethod.Access:... method __rmul__ (line 8230) | def __rmul__(self, other: typing.SupportsInt) -> QMetaMethod.Access:... method __ror__ (line 8231) | def __ror__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... method __rsub__ (line 8232) | def __rsub__(self, other: typing.SupportsInt) -> QMetaMethod.Access:... method __rxor__ (line 8233) | def __rxor__(self, other: typing.SupportsInt) -> QMetaMethod.Access:... method __sub__ (line 8234) | def __sub__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... method __xor__ (line 8235) | def __xor__(self, other: typing.SupportsInt) -> QMetaMethod.Access: ... class MethodType (line 8237) | class MethodType: method __init__ (line 8245) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8246) | def __add__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTy... method __and__ (line 8247) | def __and__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTy... method __bool__ (line 8248) | def __bool__(self) -> bool: ... method __eq__ (line 8249) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8250) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8251) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8252) | def __hash__(self) -> int: ... method __index__ (line 8253) | def __index__(self) -> int: ... method __int__ (line 8254) | def __int__(self) -> int: ... method __le__ (line 8255) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8256) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8257) | def __mul__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTy... method __ne__ (line 8258) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8259) | def __or__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTyp... method __pos__ (line 8260) | def __pos__(self): ... method __radd__ (line 8261) | def __radd__(self, other: typing.SupportsInt) -> QMetaMethod.MethodT... method __rand__ (line 8262) | def __rand__(self, other: typing.SupportsInt) -> QMetaMethod.MethodT... method __rmul__ (line 8263) | def __rmul__(self, other: typing.SupportsInt) -> QMetaMethod.MethodT... method __ror__ (line 8264) | def __ror__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTy... method __rsub__ (line 8265) | def __rsub__(self, other: typing.SupportsInt) -> QMetaMethod.MethodT... method __rxor__ (line 8266) | def __rxor__(self, other: typing.SupportsInt) -> QMetaMethod.MethodT... method __sub__ (line 8267) | def __sub__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTy... method __xor__ (line 8268) | def __xor__(self, other: typing.SupportsInt) -> QMetaMethod.MethodTy... method __init__ (line 8277) | def __init__(self, QMetaMethod: QMetaMethod) -> None: ... method __init__ (line 8279) | def __init__(self) -> None: ... method access (line 8280) | def access(self) -> QMetaMethod.Access: ... method enclosingMetaObject (line 8281) | def enclosingMetaObject(self) -> QMetaObject: ... method invoke (line 8283) | def invoke(self, object: QObject, connectionType: Qt.ConnectionType, r... method invoke (line 8285) | def invoke(self, object: QObject, returnValue: QGenericReturnArgument,... method invoke (line 8287) | def invoke(self, object: QObject, connectionType: Qt.ConnectionType, v... method invoke (line 8289) | def invoke(self, object: QObject, val0: QGenericArgument = ..., val1: ... method invokeOnGadget (line 8291) | def invokeOnGadget(self, gadget: int, returnValue: QGenericReturnArgum... method invokeOnGadget (line 8293) | def invokeOnGadget(self, gadget: int, val0: QGenericArgument = ..., va... method isValid (line 8294) | def isValid(self) -> bool: ... method methodIndex (line 8295) | def methodIndex(self) -> int: ... method methodSignature (line 8296) | def methodSignature(self) -> QByteArray: ... method methodType (line 8297) | def methodType(self) -> QMetaMethod.MethodType: ... method name (line 8298) | def name(self) -> QByteArray: ... method parameterCount (line 8299) | def parameterCount(self) -> int: ... method parameterNames (line 8300) | def parameterNames(self) -> list[QByteArray]: ... method parameterType (line 8301) | def parameterType(self, index: int) -> int: ... method parameterTypes (line 8302) | def parameterTypes(self) -> list[QByteArray]: ... method returnType (line 8303) | def returnType(self) -> int: ... method revision (line 8304) | def revision(self) -> int: ... method tag (line 8305) | def tag(self) -> bytes: ... method typeName (line 8306) | def typeName(self) -> bytes: ... method __copy__ (line 8307) | def __copy__(self) -> None: ... method __eq__ (line 8308) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8309) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8310) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8311) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8312) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8313) | def __ne__(self, other: object) -> bool: ... class QMetaObject (line 8315) | class QMetaObject(shiboken2.Object): class Call (line 8316) | class Call: method __init__ (line 8333) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8334) | def __add__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __and__ (line 8335) | def __and__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __bool__ (line 8336) | def __bool__(self) -> bool: ... method __eq__ (line 8337) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8338) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8339) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8340) | def __hash__(self) -> int: ... method __index__ (line 8341) | def __index__(self) -> int: ... method __int__ (line 8342) | def __int__(self) -> int: ... method __le__ (line 8343) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8344) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8345) | def __mul__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __ne__ (line 8346) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8347) | def __or__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __pos__ (line 8348) | def __pos__(self): ... method __radd__ (line 8349) | def __radd__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __rand__ (line 8350) | def __rand__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __rmul__ (line 8351) | def __rmul__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __ror__ (line 8352) | def __ror__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __rsub__ (line 8353) | def __rsub__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __rxor__ (line 8354) | def __rxor__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __sub__ (line 8355) | def __sub__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... method __xor__ (line 8356) | def __xor__(self, other: typing.SupportsInt) -> QMetaObject.Call: ... class Connection (line 8358) | class Connection(shiboken2.Object): method __init__ (line 8360) | def __init__(self, other: QMetaObject.Connection) -> None: ... method __init__ (line 8362) | def __init__(self) -> None: ... method __init__ (line 8376) | def __init__(self) -> None: ... method cast (line 8377) | def cast(self, obj: QObject) -> QObject: ... method checkConnectArgs (line 8380) | def checkConnectArgs(signal: QMetaMethod, method: QMetaMethod) -> bool... method checkConnectArgs (line 8383) | def checkConnectArgs(signal: bytes, method: bytes) -> bool: ... method classInfo (line 8384) | def classInfo(self, index: int) -> QMetaClassInfo: ... method classInfoCount (line 8385) | def classInfoCount(self) -> int: ... method classInfoOffset (line 8386) | def classInfoOffset(self) -> int: ... method className (line 8387) | def className(self) -> bytes: ... method connectSlotsByName (line 8389) | def connectSlotsByName(o: QObject) -> None: ... method constructor (line 8390) | def constructor(self, index: int) -> QMetaMethod: ... method constructorCount (line 8391) | def constructorCount(self) -> int: ... method disconnect (line 8393) | def disconnect(sender: QObject, signal_index: int, receiver: QObject, ... method disconnectOne (line 8395) | def disconnectOne(sender: QObject, signal_index: int, receiver: QObjec... method enumerator (line 8396) | def enumerator(self, index: int) -> QMetaEnum: ... method enumeratorCount (line 8397) | def enumeratorCount(self) -> int: ... method enumeratorOffset (line 8398) | def enumeratorOffset(self) -> int: ... method indexOfClassInfo (line 8399) | def indexOfClassInfo(self, name: bytes) -> int: ... method indexOfConstructor (line 8400) | def indexOfConstructor(self, constructor: bytes) -> int: ... method indexOfEnumerator (line 8401) | def indexOfEnumerator(self, name: bytes) -> int: ... method indexOfMethod (line 8402) | def indexOfMethod(self, method: bytes) -> int: ... method indexOfProperty (line 8403) | def indexOfProperty(self, name: bytes) -> int: ... method indexOfSignal (line 8404) | def indexOfSignal(self, signal: bytes) -> int: ... method indexOfSlot (line 8405) | def indexOfSlot(self, slot: bytes) -> int: ... method inherits (line 8406) | def inherits(self, metaObject: QMetaObject) -> bool: ... method invokeMethod (line 8409) | def invokeMethod(obj: QObject, member: bytes, arg__3: Qt.ConnectionTyp... method invokeMethod (line 8412) | def invokeMethod(obj: QObject, member: bytes, type: Qt.ConnectionType,... method invokeMethod (line 8415) | def invokeMethod(obj: QObject, member: bytes, ret: QGenericReturnArgum... method invokeMethod (line 8418) | def invokeMethod(obj: QObject, member: bytes, val0: QGenericArgument =... method method (line 8419) | def method(self, index: int) -> QMetaMethod: ... method methodCount (line 8420) | def methodCount(self) -> int: ... method methodOffset (line 8421) | def methodOffset(self) -> int: ... method newInstance (line 8422) | def newInstance(self, val0: QGenericArgument = ..., val1: QGenericArgu... method normalizedSignature (line 8424) | def normalizedSignature(method: bytes) -> QByteArray: ... method normalizedType (line 8426) | def normalizedType(type: bytes) -> QByteArray: ... method property (line 8427) | def property(self, index: int) -> QMetaProperty: ... method propertyCount (line 8428) | def propertyCount(self) -> int: ... method propertyOffset (line 8429) | def propertyOffset(self) -> int: ... method superClass (line 8430) | def superClass(self) -> QMetaObject: ... method userProperty (line 8431) | def userProperty(self) -> QMetaProperty: ... class QMetaProperty (line 8433) | class QMetaProperty(shiboken2.Object): method __init__ (line 8435) | def __init__(self, QMetaProperty: QMetaProperty) -> None: ... method __init__ (line 8437) | def __init__(self) -> None: ... method enumerator (line 8438) | def enumerator(self) -> QMetaEnum: ... method hasNotifySignal (line 8439) | def hasNotifySignal(self) -> bool: ... method hasStdCppSet (line 8440) | def hasStdCppSet(self) -> bool: ... method isConstant (line 8441) | def isConstant(self) -> bool: ... method isDesignable (line 8442) | def isDesignable(self, obj: QObject | None = ...) -> bool: ... method isEditable (line 8443) | def isEditable(self, obj: QObject | None = ...) -> bool: ... method isEnumType (line 8444) | def isEnumType(self) -> bool: ... method isFinal (line 8445) | def isFinal(self) -> bool: ... method isFlagType (line 8446) | def isFlagType(self) -> bool: ... method isReadable (line 8447) | def isReadable(self) -> bool: ... method isRequired (line 8448) | def isRequired(self) -> bool: ... method isResettable (line 8449) | def isResettable(self) -> bool: ... method isScriptable (line 8450) | def isScriptable(self, obj: QObject | None = ...) -> bool: ... method isStored (line 8451) | def isStored(self, obj: QObject | None = ...) -> bool: ... method isUser (line 8452) | def isUser(self, obj: QObject | None = ...) -> bool: ... method isValid (line 8453) | def isValid(self) -> bool: ... method isWritable (line 8454) | def isWritable(self) -> bool: ... method name (line 8455) | def name(self) -> bytes: ... method notifySignal (line 8456) | def notifySignal(self) -> QMetaMethod: ... method notifySignalIndex (line 8457) | def notifySignalIndex(self) -> int: ... method propertyIndex (line 8458) | def propertyIndex(self) -> int: ... method read (line 8459) | def read(self, obj: QObject) -> typing.Any: ... method readOnGadget (line 8460) | def readOnGadget(self, gadget: int) -> typing.Any: ... method relativePropertyIndex (line 8461) | def relativePropertyIndex(self) -> int: ... method reset (line 8462) | def reset(self, obj: QObject) -> bool: ... method resetOnGadget (line 8463) | def resetOnGadget(self, gadget: int) -> bool: ... method revision (line 8464) | def revision(self) -> int: ... method type (line 8465) | def type(self) -> type: ... method typeName (line 8466) | def typeName(self) -> bytes: ... method userType (line 8467) | def userType(self) -> int: ... method write (line 8468) | def write(self, obj: QObject, value: typing.Any) -> bool: ... method writeOnGadget (line 8469) | def writeOnGadget(self, gadget: int, value: typing.Any) -> bool: ... method __copy__ (line 8470) | def __copy__(self) -> None: ... class QMimeData (line 8472) | class QMimeData(QObject): method __init__ (line 8474) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method clear (line 8475) | def clear(self) -> None: ... method colorData (line 8476) | def colorData(self) -> typing.Any: ... method data (line 8477) | def data(self, mimetype: str) -> QByteArray: ... method formats (line 8478) | def formats(self) -> list[str]: ... method hasColor (line 8479) | def hasColor(self) -> bool: ... method hasFormat (line 8480) | def hasFormat(self, mimetype: str) -> bool: ... method hasHtml (line 8481) | def hasHtml(self) -> bool: ... method hasImage (line 8482) | def hasImage(self) -> bool: ... method hasText (line 8483) | def hasText(self) -> bool: ... method hasUrls (line 8484) | def hasUrls(self) -> bool: ... method html (line 8485) | def html(self) -> str: ... method imageData (line 8486) | def imageData(self) -> typing.Any: ... method removeFormat (line 8487) | def removeFormat(self, mimetype: str) -> None: ... method retrieveData (line 8488) | def retrieveData(self, mimetype: str, preferredType: type) -> typing.A... method setColorData (line 8489) | def setColorData(self, color: typing.Any) -> None: ... method setData (line 8490) | def setData(self, mimetype: str, data: QByteArray | bytes) -> None: ... method setHtml (line 8491) | def setHtml(self, html: str) -> None: ... method setImageData (line 8492) | def setImageData(self, image: typing.Any) -> None: ... method setText (line 8493) | def setText(self, text: str) -> None: ... method setUrls (line 8494) | def setUrls(self, urls: typing.Iterable[QUrl]) -> None: ... method text (line 8495) | def text(self) -> str: ... method urls (line 8496) | def urls(self) -> list[QUrl]: ... class QMimeDatabase (line 8498) | class QMimeDatabase(shiboken2.Object): class MatchMode (line 8499) | class MatchMode: method __init__ (line 8506) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8507) | def __add__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchM... method __and__ (line 8508) | def __and__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchM... method __bool__ (line 8509) | def __bool__(self) -> bool: ... method __eq__ (line 8510) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8511) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8512) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8513) | def __hash__(self) -> int: ... method __index__ (line 8514) | def __index__(self) -> int: ... method __int__ (line 8515) | def __int__(self) -> int: ... method __le__ (line 8516) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8517) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8518) | def __mul__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchM... method __ne__ (line 8519) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8520) | def __or__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchMo... method __pos__ (line 8521) | def __pos__(self): ... method __radd__ (line 8522) | def __radd__(self, other: typing.SupportsInt) -> QMimeDatabase.Match... method __rand__ (line 8523) | def __rand__(self, other: typing.SupportsInt) -> QMimeDatabase.Match... method __rmul__ (line 8524) | def __rmul__(self, other: typing.SupportsInt) -> QMimeDatabase.Match... method __ror__ (line 8525) | def __ror__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchM... method __rsub__ (line 8526) | def __rsub__(self, other: typing.SupportsInt) -> QMimeDatabase.Match... method __rxor__ (line 8527) | def __rxor__(self, other: typing.SupportsInt) -> QMimeDatabase.Match... method __sub__ (line 8528) | def __sub__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchM... method __xor__ (line 8529) | def __xor__(self, other: typing.SupportsInt) -> QMimeDatabase.MatchM... method __init__ (line 8533) | def __init__(self) -> None: ... method allMimeTypes (line 8534) | def allMimeTypes(self) -> list[QMimeType]: ... method mimeTypeForData (line 8536) | def mimeTypeForData(self, device: QIODevice) -> QMimeType: ... method mimeTypeForData (line 8538) | def mimeTypeForData(self, data: QByteArray | bytes) -> QMimeType: ... method mimeTypeForFile (line 8540) | def mimeTypeForFile(self, fileName: str, mode: QMimeDatabase.MatchMode... method mimeTypeForFile (line 8542) | def mimeTypeForFile(self, fileInfo: QFileInfo, mode: QMimeDatabase.Mat... method mimeTypeForFileNameAndData (line 8544) | def mimeTypeForFileNameAndData(self, fileName: str, device: QIODevice)... method mimeTypeForFileNameAndData (line 8546) | def mimeTypeForFileNameAndData(self, fileName: str, data: QByteArray |... method mimeTypeForName (line 8547) | def mimeTypeForName(self, nameOrAlias: str) -> QMimeType: ... method mimeTypeForUrl (line 8548) | def mimeTypeForUrl(self, url: QUrl) -> QMimeType: ... method mimeTypesForFileName (line 8549) | def mimeTypesForFileName(self, fileName: str) -> list[QMimeType]: ... method suffixForFileName (line 8550) | def suffixForFileName(self, fileName: str) -> str: ... class QMimeType (line 8552) | class QMimeType(shiboken2.Object): method __init__ (line 8554) | def __init__(self, other: QMimeType) -> None: ... method __init__ (line 8556) | def __init__(self) -> None: ... method aliases (line 8557) | def aliases(self) -> list[str]: ... method allAncestors (line 8558) | def allAncestors(self) -> list[str]: ... method comment (line 8559) | def comment(self) -> str: ... method filterString (line 8560) | def filterString(self) -> str: ... method genericIconName (line 8561) | def genericIconName(self) -> str: ... method globPatterns (line 8562) | def globPatterns(self) -> list[str]: ... method iconName (line 8563) | def iconName(self) -> str: ... method inherits (line 8564) | def inherits(self, mimeTypeName: str) -> bool: ... method isDefault (line 8565) | def isDefault(self) -> bool: ... method isValid (line 8566) | def isValid(self) -> bool: ... method name (line 8567) | def name(self) -> str: ... method parentMimeTypes (line 8568) | def parentMimeTypes(self) -> list[str]: ... method preferredSuffix (line 8569) | def preferredSuffix(self) -> str: ... method suffixes (line 8570) | def suffixes(self) -> list[str]: ... method swap (line 8571) | def swap(self, other: QMimeType) -> None: ... method __copy__ (line 8572) | def __copy__(self) -> None: ... method __eq__ (line 8573) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8574) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8575) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8576) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8577) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8578) | def __ne__(self, other: object) -> bool: ... class QModelIndex (line 8580) | class QModelIndex(shiboken2.Object): method __init__ (line 8582) | def __init__(self, QModelIndex: QModelIndex) -> None: ... method __init__ (line 8584) | def __init__(self) -> None: ... method child (line 8585) | def child(self, row: int, column: int) -> QModelIndex: ... method column (line 8586) | def column(self) -> int: ... method data (line 8587) | def data(self, role: Qt.ItemDataRole = ...) -> typing.Any: ... method flags (line 8588) | def flags(self) -> Qt.ItemFlags | Qt.ItemFlag: ... method internalId (line 8589) | def internalId(self) -> int: ... method internalPointer (line 8590) | def internalPointer(self) -> int: ... method isValid (line 8591) | def isValid(self) -> bool: ... method model (line 8592) | def model(self) -> QAbstractItemModel: ... method parent (line 8593) | def parent(self) -> QModelIndex: ... method row (line 8594) | def row(self) -> int: ... method sibling (line 8595) | def sibling(self, row: int, column: int) -> QModelIndex: ... method siblingAtColumn (line 8596) | def siblingAtColumn(self, column: int) -> QModelIndex: ... method siblingAtRow (line 8597) | def siblingAtRow(self, row: int) -> QModelIndex: ... method __copy__ (line 8598) | def __copy__(self) -> None: ... method __eq__ (line 8599) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8600) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8601) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8602) | def __hash__(self) -> int: ... method __le__ (line 8603) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8604) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8605) | def __ne__(self, other: object) -> bool: ... class QMutex (line 8607) | class QMutex(QBasicMutex): class RecursionMode (line 8608) | class RecursionMode: method __init__ (line 8614) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8615) | def __add__(self, other: typing.SupportsInt) -> QMutex.RecursionMode... method __and__ (line 8616) | def __and__(self, other: typing.SupportsInt) -> QMutex.RecursionMode... method __bool__ (line 8617) | def __bool__(self) -> bool: ... method __eq__ (line 8618) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8619) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8620) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8621) | def __hash__(self) -> int: ... method __index__ (line 8622) | def __index__(self) -> int: ... method __int__ (line 8623) | def __int__(self) -> int: ... method __le__ (line 8624) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8625) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8626) | def __mul__(self, other: typing.SupportsInt) -> QMutex.RecursionMode... method __ne__ (line 8627) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8628) | def __or__(self, other: typing.SupportsInt) -> QMutex.RecursionMode:... method __pos__ (line 8629) | def __pos__(self): ... method __radd__ (line 8630) | def __radd__(self, other: typing.SupportsInt) -> QMutex.RecursionMod... method __rand__ (line 8631) | def __rand__(self, other: typing.SupportsInt) -> QMutex.RecursionMod... method __rmul__ (line 8632) | def __rmul__(self, other: typing.SupportsInt) -> QMutex.RecursionMod... method __ror__ (line 8633) | def __ror__(self, other: typing.SupportsInt) -> QMutex.RecursionMode... method __rsub__ (line 8634) | def __rsub__(self, other: typing.SupportsInt) -> QMutex.RecursionMod... method __rxor__ (line 8635) | def __rxor__(self, other: typing.SupportsInt) -> QMutex.RecursionMod... method __sub__ (line 8636) | def __sub__(self, other: typing.SupportsInt) -> QMutex.RecursionMode... method __xor__ (line 8637) | def __xor__(self, other: typing.SupportsInt) -> QMutex.RecursionMode... method __init__ (line 8641) | def __init__(self, mode: QMutex.RecursionMode) -> None: ... method __init__ (line 8643) | def __init__(self) -> None: ... method isRecursive (line 8644) | def isRecursive(self) -> bool: ... method lock (line 8645) | def lock(self) -> None: ... method tryLock (line 8647) | def tryLock(self, timeout: int = ...) -> bool: ... method try_lock (line 8648) | def try_lock(self) -> bool: ... method unlock (line 8649) | def unlock(self) -> None: ... class QMutexLocker (line 8651) | class QMutexLocker(shiboken2.Object): method __init__ (line 8653) | def __init__(self, m: QBasicMutex) -> None: ... method __init__ (line 8655) | def __init__(self, m: QRecursiveMutex) -> None: ... method mutex (line 8656) | def mutex(self) -> QMutex: ... method relock (line 8657) | def relock(self) -> None: ... method unlock (line 8658) | def unlock(self) -> None: ... method __enter__ (line 8659) | def __enter__(self) -> None: ... method __exit__ (line 8660) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object) -> ... class QObject (line 8662) | class QObject(shiboken2.Object): method __init__ (line 8666) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method blockSignals (line 8667) | def blockSignals(self, b: bool) -> bool: ... method childEvent (line 8668) | def childEvent(self, event: QChildEvent) -> None: ... method children (line 8669) | def children(self) -> list[QObject]: ... method connect (line 8671) | def connect(self) -> typing.Any: ... method connectNotify (line 8672) | def connectNotify(self, signal: QMetaMethod) -> None: ... method customEvent (line 8673) | def customEvent(self, event: QEvent) -> None: ... method deleteLater (line 8674) | def deleteLater(self) -> None: ... method disconnect (line 8677) | def disconnect(cls, sender: QObject, signal: QMetaMethod, receiver: QO... method disconnect (line 8680) | def disconnect(cls, arg__1: QObject, arg__2: str = ..., arg__3: typing... method disconnect (line 8683) | def disconnect(cls, arg__1: QMetaObject.Connection) -> bool: ... method disconnectNotify (line 8684) | def disconnectNotify(self, signal: QMetaMethod) -> None: ... method dumpObjectInfo (line 8685) | def dumpObjectInfo(self) -> None: ... method dumpObjectTree (line 8686) | def dumpObjectTree(self) -> None: ... method dynamicPropertyNames (line 8687) | def dynamicPropertyNames(self) -> list[QByteArray]: ... method emit (line 8688) | def emit(self, arg__1: bytes, *args: None) -> bool: ... method event (line 8689) | def event(self, event: QEvent) -> bool: ... method eventFilter (line 8690) | def eventFilter(self, watched: QObject, event: QEvent) -> bool: ... method findChild (line 8691) | def findChild(self, arg__1: type[T], arg__2: str) -> T: ... method findChildren (line 8693) | def findChildren(self, arg__1: type[T], arg__2: QRegExp) -> list[T]: ... method findChildren (line 8695) | def findChildren(self, arg__1: type[T], arg__2: QRegularExpression) ->... method findChildren (line 8697) | def findChildren(self, arg__1: type[T], arg__2: str = ...) -> list[T]:... method inherits (line 8698) | def inherits(self, classname: bytes) -> bool: ... method installEventFilter (line 8699) | def installEventFilter(self, filterObj: QObject) -> None: ... method isSignalConnected (line 8700) | def isSignalConnected(self, signal: QMetaMethod) -> bool: ... method isWidgetType (line 8701) | def isWidgetType(self) -> bool: ... method isWindowType (line 8702) | def isWindowType(self) -> bool: ... method killTimer (line 8703) | def killTimer(self, id: int) -> None: ... method metaObject (line 8704) | def metaObject(self) -> QMetaObject: ... method moveToThread (line 8705) | def moveToThread(self, thread: QThread) -> None: ... method objectName (line 8706) | def objectName(self) -> str: ... method parent (line 8707) | def parent(self) -> QObject: ... method property (line 8708) | def property(self, name: str) -> typing.Any: ... method receivers (line 8709) | def receivers(self, signal: bytes) -> int: ... method registerUserData (line 8711) | def registerUserData() -> int: ... method removeEventFilter (line 8712) | def removeEventFilter(self, obj: QObject) -> None: ... method sender (line 8713) | def sender(self) -> QObject: ... method senderSignalIndex (line 8714) | def senderSignalIndex(self) -> int: ... method setObjectName (line 8715) | def setObjectName(self, name: str) -> None: ... method setParent (line 8716) | def setParent(self, parent: QObject | None) -> None: ... method setProperty (line 8717) | def setProperty(self, name: str, value: typing.Any) -> bool: ... method signalsBlocked (line 8718) | def signalsBlocked(self) -> bool: ... method startTimer (line 8719) | def startTimer(self, interval: int, timerType: Qt.TimerType = ...) -> ... method thread (line 8720) | def thread(self) -> QThread: ... method timerEvent (line 8721) | def timerEvent(self, event: QTimerEvent) -> None: ... method tr (line 8722) | def tr(self, arg__1: bytes, arg__2: bytes = ..., arg__3: int = ...) ->... class QOperatingSystemVersion (line 8724) | class QOperatingSystemVersion(shiboken2.Object): class OSType (line 8725) | class OSType: method __init__ (line 8736) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8737) | def __add__(self, other: typing.SupportsInt) -> QOperatingSystemVers... method __and__ (line 8738) | def __and__(self, other: typing.SupportsInt) -> QOperatingSystemVers... method __bool__ (line 8739) | def __bool__(self) -> bool: ... method __eq__ (line 8740) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8741) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8742) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8743) | def __hash__(self) -> int: ... method __index__ (line 8744) | def __index__(self) -> int: ... method __int__ (line 8745) | def __int__(self) -> int: ... method __le__ (line 8746) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8747) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8748) | def __mul__(self, other: typing.SupportsInt) -> QOperatingSystemVers... method __ne__ (line 8749) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8750) | def __or__(self, other: typing.SupportsInt) -> QOperatingSystemVersi... method __pos__ (line 8751) | def __pos__(self): ... method __radd__ (line 8752) | def __radd__(self, other: typing.SupportsInt) -> QOperatingSystemVer... method __rand__ (line 8753) | def __rand__(self, other: typing.SupportsInt) -> QOperatingSystemVer... method __rmul__ (line 8754) | def __rmul__(self, other: typing.SupportsInt) -> QOperatingSystemVer... method __ror__ (line 8755) | def __ror__(self, other: typing.SupportsInt) -> QOperatingSystemVers... method __rsub__ (line 8756) | def __rsub__(self, other: typing.SupportsInt) -> QOperatingSystemVer... method __rxor__ (line 8757) | def __rxor__(self, other: typing.SupportsInt) -> QOperatingSystemVer... method __sub__ (line 8758) | def __sub__(self, other: typing.SupportsInt) -> QOperatingSystemVers... method __xor__ (line 8759) | def __xor__(self, other: typing.SupportsInt) -> QOperatingSystemVers... method __init__ (line 8790) | def __init__(self, osType: QOperatingSystemVersion.OSType, vmajor: int... method __init__ (line 8792) | def __init__(self, QOperatingSystemVersion: QOperatingSystemVersion) -... method current (line 8794) | def current() -> QOperatingSystemVersion: ... method currentType (line 8796) | def currentType() -> QOperatingSystemVersion.OSType: ... method majorVersion (line 8797) | def majorVersion(self) -> int: ... method microVersion (line 8798) | def microVersion(self) -> int: ... method minorVersion (line 8799) | def minorVersion(self) -> int: ... method name (line 8800) | def name(self) -> str: ... method segmentCount (line 8801) | def segmentCount(self) -> int: ... method type (line 8802) | def type(self) -> QOperatingSystemVersion.OSType: ... method __copy__ (line 8803) | def __copy__(self) -> None: ... class QParallelAnimationGroup (line 8805) | class QParallelAnimationGroup(QAnimationGroup): method __init__ (line 8807) | def __init__(self, parent: QObject | None = ..., currentLoop: int = ..... method duration (line 8808) | def duration(self) -> int: ... method event (line 8809) | def event(self, event: QEvent) -> bool: ... method updateCurrentTime (line 8810) | def updateCurrentTime(self, currentTime: int) -> None: ... method updateDirection (line 8811) | def updateDirection(self, direction: QAbstractAnimation.Direction) -> ... method updateState (line 8812) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QPauseAnimation (line 8814) | class QPauseAnimation(QAbstractAnimation): method __init__ (line 8817) | def __init__(self, msecs: int, parent: QObject | None = ..., currentLo... method __init__ (line 8819) | def __init__(self, parent: QObject | None = ..., currentLoop: int = ..... method duration (line 8820) | def duration(self) -> int: ... method event (line 8821) | def event(self, e: QEvent) -> bool: ... method setDuration (line 8822) | def setDuration(self, msecs: int) -> None: ... method updateCurrentTime (line 8823) | def updateCurrentTime(self, arg__1: int) -> None: ... class QPersistentModelIndex (line 8825) | class QPersistentModelIndex(shiboken2.Object): method __init__ (line 8827) | def __init__(self, other: QPersistentModelIndex) -> None: ... method __init__ (line 8829) | def __init__(self, index: QModelIndex) -> None: ... method __init__ (line 8831) | def __init__(self) -> None: ... method child (line 8832) | def child(self, row: int, column: int) -> QModelIndex: ... method column (line 8833) | def column(self) -> int: ... method data (line 8834) | def data(self, role: Qt.ItemDataRole = ...) -> typing.Any: ... method flags (line 8835) | def flags(self) -> Qt.ItemFlags | Qt.ItemFlag: ... method internalId (line 8836) | def internalId(self) -> int: ... method internalPointer (line 8837) | def internalPointer(self) -> int: ... method isValid (line 8838) | def isValid(self) -> bool: ... method model (line 8839) | def model(self) -> QAbstractItemModel: ... method parent (line 8840) | def parent(self) -> QModelIndex: ... method row (line 8841) | def row(self) -> int: ... method sibling (line 8842) | def sibling(self, row: int, column: int) -> QModelIndex: ... method swap (line 8843) | def swap(self, other: QPersistentModelIndex) -> None: ... method __copy__ (line 8844) | def __copy__(self) -> None: ... method __eq__ (line 8845) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8846) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8847) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8848) | def __hash__(self) -> int: ... method __le__ (line 8849) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8850) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8851) | def __ne__(self, other: object) -> bool: ... class QPluginLoader (line 8853) | class QPluginLoader(QObject): method __init__ (line 8856) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method __init__ (line 8858) | def __init__(self, fileName: str, parent: QObject | None = ..., destro... method errorString (line 8859) | def errorString(self) -> str: ... method fileName (line 8860) | def fileName(self) -> str: ... method instance (line 8861) | def instance(self) -> QObject: ... method isLoaded (line 8862) | def isLoaded(self) -> bool: ... method load (line 8863) | def load(self) -> bool: ... method metaData (line 8864) | def metaData(self) -> dict[str, QJsonValue]: ... method setFileName (line 8865) | def setFileName(self, fileName: str) -> None: ... method staticInstances (line 8867) | def staticInstances() -> list[QObject]: ... method unload (line 8868) | def unload(self) -> bool: ... class QPoint (line 8870) | class QPoint(shiboken2.Object): method __init__ (line 8872) | def __init__(self, xpos: int, ypos: int) -> None: ... method __init__ (line 8874) | def __init__(self, QPoint: QPoint) -> None: ... method __init__ (line 8876) | def __init__(self) -> None: ... method dotProduct (line 8878) | def dotProduct(p1: QPoint, p2: QPoint) -> int: ... method isNull (line 8879) | def isNull(self) -> bool: ... method manhattanLength (line 8880) | def manhattanLength(self) -> int: ... method setX (line 8881) | def setX(self, x: int) -> None: ... method setY (line 8882) | def setY(self, y: int) -> None: ... method toTuple (line 8883) | def toTuple(self) -> tuple: ... method transposed (line 8884) | def transposed(self) -> QPoint: ... method x (line 8885) | def x(self) -> int: ... method y (line 8886) | def y(self) -> int: ... method __add__ (line 8887) | def __add__(self, p2: QPoint) -> QPoint: ... method __bool__ (line 8888) | def __bool__(self) -> bool: ... method __copy__ (line 8889) | def __copy__(self) -> None: ... method __eq__ (line 8890) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8891) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8892) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8893) | def __hash__(self) -> int: ... method __iadd__ (line 8894) | def __iadd__(self, p: QPoint) -> QPoint: ... method __imul__ (line 8896) | def __imul__(self, factor: float) -> QPoint: ... method __imul__ (line 8898) | def __imul__(self, factor: int) -> QPoint: ... # type: ignore[overloa... method __isub__ (line 8899) | def __isub__(self, p: QPoint) -> QPoint: ... method __le__ (line 8900) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8901) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8903) | def __mul__(self, factor: float) -> QPoint: ... method __mul__ (line 8905) | def __mul__(self, factor: int) -> QPoint: ... # type: ignore[overload... method __ne__ (line 8906) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 8907) | def __neg__(self) -> QPoint: ... method __pos__ (line 8908) | def __pos__(self) -> QPoint: ... method __radd__ (line 8909) | def __radd__(self, other): ... method __rmul__ (line 8910) | def __rmul__(self, other): ... method __rsub__ (line 8911) | def __rsub__(self, other): ... method __rtruediv__ (line 8912) | def __rtruediv__(self, other): ... method __sub__ (line 8913) | def __sub__(self, p2: QPoint) -> QPoint: ... method __truediv__ (line 8914) | def __truediv__(self, other): ... class QPointF (line 8916) | class QPointF(shiboken2.Object): method __init__ (line 8918) | def __init__(self, xpos: float, ypos: float) -> None: ... method __init__ (line 8920) | def __init__(self, p: QPoint) -> None: ... method __init__ (line 8922) | def __init__(self, QPointF: QPointF) -> None: ... method __init__ (line 8924) | def __init__(self) -> None: ... method dotProduct (line 8926) | def dotProduct(p1: QPointF, p2: QPointF) -> float: ... method isNull (line 8927) | def isNull(self) -> bool: ... method manhattanLength (line 8928) | def manhattanLength(self) -> float: ... method setX (line 8929) | def setX(self, x: float) -> None: ... method setY (line 8930) | def setY(self, y: float) -> None: ... method toPoint (line 8931) | def toPoint(self) -> QPoint: ... method toTuple (line 8932) | def toTuple(self) -> tuple: ... method transposed (line 8933) | def transposed(self) -> QPointF: ... method x (line 8934) | def x(self) -> float: ... method y (line 8935) | def y(self) -> float: ... method __add__ (line 8936) | def __add__(self, p2: QPointF) -> QPointF: ... method __bool__ (line 8937) | def __bool__(self) -> bool: ... method __copy__ (line 8938) | def __copy__(self) -> None: ... method __eq__ (line 8939) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8940) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8941) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 8942) | def __iadd__(self, p: QPointF) -> QPointF: ... method __imul__ (line 8943) | def __imul__(self, c: float) -> QPointF: ... method __isub__ (line 8944) | def __isub__(self, p: QPointF) -> QPointF: ... method __le__ (line 8945) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8946) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8947) | def __mul__(self, c: float) -> QPointF: ... method __ne__ (line 8948) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 8949) | def __neg__(self) -> QPointF: ... method __pos__ (line 8950) | def __pos__(self) -> QPointF: ... method __radd__ (line 8951) | def __radd__(self, other): ... method __rmul__ (line 8952) | def __rmul__(self, other): ... method __rsub__ (line 8953) | def __rsub__(self, other): ... method __rtruediv__ (line 8954) | def __rtruediv__(self, other): ... method __sub__ (line 8955) | def __sub__(self, p2: QPointF) -> QPointF: ... method __truediv__ (line 8956) | def __truediv__(self, other): ... class QProcess (line 8958) | class QProcess(QIODevice): class ExitStatus (line 8959) | class ExitStatus: method __init__ (line 8965) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8966) | def __add__(self, other: typing.SupportsInt) -> QProcess.ExitStatus:... method __and__ (line 8967) | def __and__(self, other: typing.SupportsInt) -> QProcess.ExitStatus:... method __bool__ (line 8968) | def __bool__(self) -> bool: ... method __eq__ (line 8969) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8970) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8971) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8972) | def __hash__(self) -> int: ... method __index__ (line 8973) | def __index__(self) -> int: ... method __int__ (line 8974) | def __int__(self) -> int: ... method __le__ (line 8975) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8976) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8977) | def __mul__(self, other: typing.SupportsInt) -> QProcess.ExitStatus:... method __ne__ (line 8978) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8979) | def __or__(self, other: typing.SupportsInt) -> QProcess.ExitStatus: ... method __pos__ (line 8980) | def __pos__(self): ... method __radd__ (line 8981) | def __radd__(self, other: typing.SupportsInt) -> QProcess.ExitStatus... method __rand__ (line 8982) | def __rand__(self, other: typing.SupportsInt) -> QProcess.ExitStatus... method __rmul__ (line 8983) | def __rmul__(self, other: typing.SupportsInt) -> QProcess.ExitStatus... method __ror__ (line 8984) | def __ror__(self, other: typing.SupportsInt) -> QProcess.ExitStatus:... method __rsub__ (line 8985) | def __rsub__(self, other: typing.SupportsInt) -> QProcess.ExitStatus... method __rxor__ (line 8986) | def __rxor__(self, other: typing.SupportsInt) -> QProcess.ExitStatus... method __sub__ (line 8987) | def __sub__(self, other: typing.SupportsInt) -> QProcess.ExitStatus:... method __xor__ (line 8988) | def __xor__(self, other: typing.SupportsInt) -> QProcess.ExitStatus:... class InputChannelMode (line 8990) | class InputChannelMode: method __init__ (line 8996) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8997) | def __add__(self, other: typing.SupportsInt) -> QProcess.InputChanne... method __and__ (line 8998) | def __and__(self, other: typing.SupportsInt) -> QProcess.InputChanne... method __bool__ (line 8999) | def __bool__(self) -> bool: ... method __eq__ (line 9000) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9001) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9002) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9003) | def __hash__(self) -> int: ... method __index__ (line 9004) | def __index__(self) -> int: ... method __int__ (line 9005) | def __int__(self) -> int: ... method __le__ (line 9006) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9007) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9008) | def __mul__(self, other: typing.SupportsInt) -> QProcess.InputChanne... method __ne__ (line 9009) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9010) | def __or__(self, other: typing.SupportsInt) -> QProcess.InputChannel... method __pos__ (line 9011) | def __pos__(self): ... method __radd__ (line 9012) | def __radd__(self, other: typing.SupportsInt) -> QProcess.InputChann... method __rand__ (line 9013) | def __rand__(self, other: typing.SupportsInt) -> QProcess.InputChann... method __rmul__ (line 9014) | def __rmul__(self, other: typing.SupportsInt) -> QProcess.InputChann... method __ror__ (line 9015) | def __ror__(self, other: typing.SupportsInt) -> QProcess.InputChanne... method __rsub__ (line 9016) | def __rsub__(self, other: typing.SupportsInt) -> QProcess.InputChann... method __rxor__ (line 9017) | def __rxor__(self, other: typing.SupportsInt) -> QProcess.InputChann... method __sub__ (line 9018) | def __sub__(self, other: typing.SupportsInt) -> QProcess.InputChanne... method __xor__ (line 9019) | def __xor__(self, other: typing.SupportsInt) -> QProcess.InputChanne... class ProcessChannel (line 9021) | class ProcessChannel: method __init__ (line 9027) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9028) | def __add__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __and__ (line 9029) | def __and__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __bool__ (line 9030) | def __bool__(self) -> bool: ... method __eq__ (line 9031) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9032) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9033) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9034) | def __hash__(self) -> int: ... method __index__ (line 9035) | def __index__(self) -> int: ... method __int__ (line 9036) | def __int__(self) -> int: ... method __le__ (line 9037) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9038) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9039) | def __mul__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __ne__ (line 9040) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9041) | def __or__(self, other: typing.SupportsInt) -> QProcess.ProcessChann... method __pos__ (line 9042) | def __pos__(self): ... method __radd__ (line 9043) | def __radd__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __rand__ (line 9044) | def __rand__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __rmul__ (line 9045) | def __rmul__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __ror__ (line 9046) | def __ror__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __rsub__ (line 9047) | def __rsub__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __rxor__ (line 9048) | def __rxor__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __sub__ (line 9049) | def __sub__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __xor__ (line 9050) | def __xor__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... class ProcessChannelMode (line 9052) | class ProcessChannelMode: method __init__ (line 9061) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9062) | def __add__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __and__ (line 9063) | def __and__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __bool__ (line 9064) | def __bool__(self) -> bool: ... method __eq__ (line 9065) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9066) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9067) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9068) | def __hash__(self) -> int: ... method __index__ (line 9069) | def __index__(self) -> int: ... method __int__ (line 9070) | def __int__(self) -> int: ... method __le__ (line 9071) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9072) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9073) | def __mul__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __ne__ (line 9074) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9075) | def __or__(self, other: typing.SupportsInt) -> QProcess.ProcessChann... method __pos__ (line 9076) | def __pos__(self): ... method __radd__ (line 9077) | def __radd__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __rand__ (line 9078) | def __rand__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __rmul__ (line 9079) | def __rmul__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __ror__ (line 9080) | def __ror__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __rsub__ (line 9081) | def __rsub__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __rxor__ (line 9082) | def __rxor__(self, other: typing.SupportsInt) -> QProcess.ProcessCha... method __sub__ (line 9083) | def __sub__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... method __xor__ (line 9084) | def __xor__(self, other: typing.SupportsInt) -> QProcess.ProcessChan... class ProcessError (line 9086) | class ProcessError: method __init__ (line 9096) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9097) | def __add__(self, other: typing.SupportsInt) -> QProcess.ProcessErro... method __and__ (line 9098) | def __and__(self, other: typing.SupportsInt) -> QProcess.ProcessErro... method __bool__ (line 9099) | def __bool__(self) -> bool: ... method __eq__ (line 9100) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9101) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9102) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9103) | def __hash__(self) -> int: ... method __index__ (line 9104) | def __index__(self) -> int: ... method __int__ (line 9105) | def __int__(self) -> int: ... method __le__ (line 9106) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9107) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9108) | def __mul__(self, other: typing.SupportsInt) -> QProcess.ProcessErro... method __ne__ (line 9109) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9110) | def __or__(self, other: typing.SupportsInt) -> QProcess.ProcessError... method __pos__ (line 9111) | def __pos__(self): ... method __radd__ (line 9112) | def __radd__(self, other: typing.SupportsInt) -> QProcess.ProcessErr... method __rand__ (line 9113) | def __rand__(self, other: typing.SupportsInt) -> QProcess.ProcessErr... method __rmul__ (line 9114) | def __rmul__(self, other: typing.SupportsInt) -> QProcess.ProcessErr... method __ror__ (line 9115) | def __ror__(self, other: typing.SupportsInt) -> QProcess.ProcessErro... method __rsub__ (line 9116) | def __rsub__(self, other: typing.SupportsInt) -> QProcess.ProcessErr... method __rxor__ (line 9117) | def __rxor__(self, other: typing.SupportsInt) -> QProcess.ProcessErr... method __sub__ (line 9118) | def __sub__(self, other: typing.SupportsInt) -> QProcess.ProcessErro... method __xor__ (line 9119) | def __xor__(self, other: typing.SupportsInt) -> QProcess.ProcessErro... class ProcessState (line 9121) | class ProcessState: method __init__ (line 9128) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9129) | def __add__(self, other: typing.SupportsInt) -> QProcess.ProcessStat... method __and__ (line 9130) | def __and__(self, other: typing.SupportsInt) -> QProcess.ProcessStat... method __bool__ (line 9131) | def __bool__(self) -> bool: ... method __eq__ (line 9132) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9133) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9134) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9135) | def __hash__(self) -> int: ... method __index__ (line 9136) | def __index__(self) -> int: ... method __int__ (line 9137) | def __int__(self) -> int: ... method __le__ (line 9138) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9139) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9140) | def __mul__(self, other: typing.SupportsInt) -> QProcess.ProcessStat... method __ne__ (line 9141) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9142) | def __or__(self, other: typing.SupportsInt) -> QProcess.ProcessState... method __pos__ (line 9143) | def __pos__(self): ... method __radd__ (line 9144) | def __radd__(self, other: typing.SupportsInt) -> QProcess.ProcessSta... method __rand__ (line 9145) | def __rand__(self, other: typing.SupportsInt) -> QProcess.ProcessSta... method __rmul__ (line 9146) | def __rmul__(self, other: typing.SupportsInt) -> QProcess.ProcessSta... method __ror__ (line 9147) | def __ror__(self, other: typing.SupportsInt) -> QProcess.ProcessStat... method __rsub__ (line 9148) | def __rsub__(self, other: typing.SupportsInt) -> QProcess.ProcessSta... method __rxor__ (line 9149) | def __rxor__(self, other: typing.SupportsInt) -> QProcess.ProcessSta... method __sub__ (line 9150) | def __sub__(self, other: typing.SupportsInt) -> QProcess.ProcessStat... method __xor__ (line 9151) | def __xor__(self, other: typing.SupportsInt) -> QProcess.ProcessStat... method __init__ (line 9180) | def __init__(self, parent: QObject | None = ..., aboutToClose: typing.... method arguments (line 9181) | def arguments(self) -> list[str]: ... method atEnd (line 9182) | def atEnd(self) -> bool: ... method bytesAvailable (line 9183) | def bytesAvailable(self) -> int: ... method bytesToWrite (line 9184) | def bytesToWrite(self) -> int: ... method canReadLine (line 9185) | def canReadLine(self) -> bool: ... method close (line 9186) | def close(self) -> None: ... method closeReadChannel (line 9187) | def closeReadChannel(self, channel: QProcess.ProcessChannel) -> None: ... method closeWriteChannel (line 9188) | def closeWriteChannel(self) -> None: ... method environment (line 9189) | def environment(self) -> list[str]: ... method execute (line 9192) | def execute(program: str, arguments: typing.Iterable[str]) -> int: ... method execute (line 9195) | def execute(command: str) -> int: ... method exitCode (line 9196) | def exitCode(self) -> int: ... method exitStatus (line 9197) | def exitStatus(self) -> QProcess.ExitStatus: ... method inputChannelMode (line 9198) | def inputChannelMode(self) -> QProcess.InputChannelMode: ... method isSequential (line 9199) | def isSequential(self) -> bool: ... method kill (line 9200) | def kill(self) -> None: ... method nullDevice (line 9202) | def nullDevice() -> str: ... method open (line 9203) | def open(self, mode: QIODevice.OpenMode | QIODevice.OpenModeFlag = ...... method pid (line 9204) | def pid(self) -> int: ... method processChannelMode (line 9205) | def processChannelMode(self) -> QProcess.ProcessChannelMode: ... method processEnvironment (line 9206) | def processEnvironment(self) -> QProcessEnvironment: ... method processId (line 9207) | def processId(self) -> int: ... method program (line 9208) | def program(self) -> str: ... method readAllStandardError (line 9209) | def readAllStandardError(self) -> QByteArray: ... method readAllStandardOutput (line 9210) | def readAllStandardOutput(self) -> QByteArray: ... method readChannel (line 9211) | def readChannel(self) -> QProcess.ProcessChannel: ... method readData (line 9212) | def readData(self, data: bytes, maxlen: int) -> int: ... method setArguments (line 9213) | def setArguments(self, arguments: typing.Iterable[str]) -> None: ... method setEnvironment (line 9214) | def setEnvironment(self, environment: typing.Iterable[str]) -> None: ... method setInputChannelMode (line 9215) | def setInputChannelMode(self, mode: QProcess.InputChannelMode) -> None... method setProcessChannelMode (line 9216) | def setProcessChannelMode(self, mode: QProcess.ProcessChannelMode) -> ... method setProcessEnvironment (line 9217) | def setProcessEnvironment(self, environment: QProcessEnvironment) -> N... method setProcessState (line 9218) | def setProcessState(self, state: QProcess.ProcessState) -> None: ... method setProgram (line 9219) | def setProgram(self, program: str) -> None: ... method setReadChannel (line 9220) | def setReadChannel(self, channel: QProcess.ProcessChannel) -> None: ... method setStandardErrorFile (line 9221) | def setStandardErrorFile(self, fileName: str, mode: QIODevice.OpenMode... method setStandardInputFile (line 9222) | def setStandardInputFile(self, fileName: str) -> None: ... method setStandardOutputFile (line 9223) | def setStandardOutputFile(self, fileName: str, mode: QIODevice.OpenMod... method setStandardOutputProcess (line 9224) | def setStandardOutputProcess(self, destination: QProcess) -> None: ... method setWorkingDirectory (line 9225) | def setWorkingDirectory(self, dir: str) -> None: ... method setupChildProcess (line 9226) | def setupChildProcess(self) -> None: ... method start (line 9228) | def start(self, program: str, arguments: typing.Iterable[str], mode: Q... method start (line 9230) | def start(self, command: str, mode: QIODevice.OpenMode | QIODevice.Ope... method start (line 9232) | def start(self, mode: QIODevice.OpenMode | QIODevice.OpenModeFlag = ..... method startDetached (line 9234) | def startDetached(self) -> typing.Any: ... method state (line 9235) | def state(self) -> QProcess.ProcessState: ... method systemEnvironment (line 9237) | def systemEnvironment() -> list[str]: ... method terminate (line 9238) | def terminate(self) -> None: ... method waitForBytesWritten (line 9239) | def waitForBytesWritten(self, msecs: int = ...) -> bool: ... method waitForFinished (line 9240) | def waitForFinished(self, msecs: int = ...) -> bool: ... method waitForReadyRead (line 9241) | def waitForReadyRead(self, msecs: int = ...) -> bool: ... method waitForStarted (line 9242) | def waitForStarted(self, msecs: int = ...) -> bool: ... method workingDirectory (line 9243) | def workingDirectory(self) -> str: ... method writeData (line 9244) | def writeData(self, data: bytes, len: int) -> int: ... class QProcessEnvironment (line 9246) | class QProcessEnvironment(shiboken2.Object): method __init__ (line 9248) | def __init__(self, other: QProcessEnvironment) -> None: ... method __init__ (line 9250) | def __init__(self) -> None: ... method clear (line 9251) | def clear(self) -> None: ... method contains (line 9252) | def contains(self, name: str) -> bool: ... method insert (line 9254) | def insert(self, name: str, value: str) -> None: ... method insert (line 9256) | def insert(self, e: QProcessEnvironment) -> None: ... method isEmpty (line 9257) | def isEmpty(self) -> bool: ... method keys (line 9258) | def keys(self) -> list[str]: ... method remove (line 9259) | def remove(self, name: str) -> None: ... method swap (line 9260) | def swap(self, other: QProcessEnvironment) -> None: ... method systemEnvironment (line 9262) | def systemEnvironment() -> QProcessEnvironment: ... method toStringList (line 9263) | def toStringList(self) -> list[str]: ... method value (line 9264) | def value(self, name: str, defaultValue: str = ...) -> str: ... method __copy__ (line 9265) | def __copy__(self) -> None: ... method __eq__ (line 9266) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9267) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9268) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9269) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9270) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9271) | def __ne__(self, other: object) -> bool: ... class QPropertyAnimation (line 9273) | class QPropertyAnimation(QVariantAnimation): method __init__ (line 9276) | def __init__(self, target: QObject, propertyName: QByteArray | bytes, ... method __init__ (line 9278) | def __init__(self, parent: QObject | None = ..., currentLoop: int = ..... method event (line 9279) | def event(self, event: QEvent) -> bool: ... method propertyName (line 9280) | def propertyName(self) -> QByteArray: ... method setPropertyName (line 9281) | def setPropertyName(self, propertyName: QByteArray | bytes) -> None: ... method setTargetObject (line 9282) | def setTargetObject(self, target: QObject) -> None: ... method targetObject (line 9283) | def targetObject(self) -> QObject: ... method updateCurrentValue (line 9284) | def updateCurrentValue(self, value: typing.Any) -> None: ... method updateState (line 9285) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QRandomGenerator (line 9287) | class QRandomGenerator(shiboken2.Object): method __init__ (line 9289) | def __init__(self, seedBuffer: int, len: int) -> None: ... method __init__ (line 9291) | def __init__(self, begin: int, end: int) -> None: ... method __init__ (line 9293) | def __init__(self, seedValue: int = ...) -> None: ... method __init__ (line 9295) | def __init__(self, other: QRandomGenerator) -> None: ... method bounded (line 9297) | def bounded(self, lowest: int, highest: int) -> int: ... method bounded (line 9299) | def bounded(self, highest: float) -> float: ... method bounded (line 9301) | def bounded(self, highest: int) -> int: ... # type: ignore[overload-c... method discard (line 9302) | def discard(self, z: int) -> None: ... method generate (line 9303) | def generate(self) -> int: ... method generate64 (line 9304) | def generate64(self) -> int: ... method generateDouble (line 9305) | def generateDouble(self) -> float: ... method global_ (line 9307) | def global_() -> QRandomGenerator: ... method max (line 9309) | def max() -> int: ... method min (line 9311) | def min() -> int: ... method securelySeeded (line 9313) | def securelySeeded() -> QRandomGenerator: ... method seed (line 9314) | def seed(self, s: int = ...) -> None: ... method system (line 9316) | def system() -> QRandomGenerator: ... class QRandomGenerator64 (line 9318) | class QRandomGenerator64(QRandomGenerator): method __init__ (line 9320) | def __init__(self, seedBuffer: int, len: int) -> None: ... method __init__ (line 9322) | def __init__(self, begin: int, end: int) -> None: ... method __init__ (line 9324) | def __init__(self, seedValue: int = ...) -> None: ... method __init__ (line 9326) | def __init__(self, other: QRandomGenerator) -> None: ... method discard (line 9327) | def discard(self, z: int) -> None: ... method generate (line 9328) | def generate(self) -> int: ... method global_ (line 9330) | def global_() -> QRandomGenerator64: ... method max (line 9332) | def max() -> int: ... method min (line 9334) | def min() -> int: ... method securelySeeded (line 9336) | def securelySeeded() -> QRandomGenerator64: ... method system (line 9338) | def system() -> QRandomGenerator64: ... class QReadLocker (line 9340) | class QReadLocker(shiboken2.Object): method __init__ (line 9341) | def __init__(self, readWriteLock: QReadWriteLock) -> None: ... method readWriteLock (line 9342) | def readWriteLock(self) -> QReadWriteLock: ... method relock (line 9343) | def relock(self) -> None: ... method unlock (line 9344) | def unlock(self) -> None: ... method __enter__ (line 9345) | def __enter__(self) -> None: ... method __exit__ (line 9346) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object) -> ... class QReadWriteLock (line 9348) | class QReadWriteLock(shiboken2.Object): class RecursionMode (line 9349) | class RecursionMode: method __init__ (line 9355) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9356) | def __add__(self, other: typing.SupportsInt) -> QReadWriteLock.Recur... method __and__ (line 9357) | def __and__(self, other: typing.SupportsInt) -> QReadWriteLock.Recur... method __bool__ (line 9358) | def __bool__(self) -> bool: ... method __eq__ (line 9359) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9360) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9361) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9362) | def __hash__(self) -> int: ... method __index__ (line 9363) | def __index__(self) -> int: ... method __int__ (line 9364) | def __int__(self) -> int: ... method __le__ (line 9365) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9366) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9367) | def __mul__(self, other: typing.SupportsInt) -> QReadWriteLock.Recur... method __ne__ (line 9368) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9369) | def __or__(self, other: typing.SupportsInt) -> QReadWriteLock.Recurs... method __pos__ (line 9370) | def __pos__(self): ... method __radd__ (line 9371) | def __radd__(self, other: typing.SupportsInt) -> QReadWriteLock.Recu... method __rand__ (line 9372) | def __rand__(self, other: typing.SupportsInt) -> QReadWriteLock.Recu... method __rmul__ (line 9373) | def __rmul__(self, other: typing.SupportsInt) -> QReadWriteLock.Recu... method __ror__ (line 9374) | def __ror__(self, other: typing.SupportsInt) -> QReadWriteLock.Recur... method __rsub__ (line 9375) | def __rsub__(self, other: typing.SupportsInt) -> QReadWriteLock.Recu... method __rxor__ (line 9376) | def __rxor__(self, other: typing.SupportsInt) -> QReadWriteLock.Recu... method __sub__ (line 9377) | def __sub__(self, other: typing.SupportsInt) -> QReadWriteLock.Recur... method __xor__ (line 9378) | def __xor__(self, other: typing.SupportsInt) -> QReadWriteLock.Recur... method __init__ (line 9381) | def __init__(self, recursionMode: QReadWriteLock.RecursionMode = ...) ... method lockForRead (line 9382) | def lockForRead(self) -> None: ... method lockForWrite (line 9383) | def lockForWrite(self) -> None: ... method tryLockForRead (line 9385) | def tryLockForRead(self, timeout: int) -> bool: ... method tryLockForRead (line 9387) | def tryLockForRead(self) -> bool: ... method tryLockForWrite (line 9389) | def tryLockForWrite(self, timeout: int) -> bool: ... method tryLockForWrite (line 9391) | def tryLockForWrite(self) -> bool: ... method unlock (line 9392) | def unlock(self) -> None: ... class QRect (line 9394) | class QRect(shiboken2.Object): method __init__ (line 9396) | def __init__(self, left: int, top: int, width: int, height: int) -> No... method __init__ (line 9398) | def __init__(self, topleft: QPoint, size: QSize) -> None: ... method __init__ (line 9400) | def __init__(self, topleft: QPoint, bottomright: QPoint) -> None: ... method __init__ (line 9402) | def __init__(self, QRect: QRect) -> None: ... method __init__ (line 9404) | def __init__(self) -> None: ... method adjust (line 9405) | def adjust(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method adjusted (line 9406) | def adjusted(self, x1: int, y1: int, x2: int, y2: int) -> QRect: ... method bottom (line 9407) | def bottom(self) -> int: ... method bottomLeft (line 9408) | def bottomLeft(self) -> QPoint: ... method bottomRight (line 9409) | def bottomRight(self) -> QPoint: ... method center (line 9410) | def center(self) -> QPoint: ... method contains (line 9412) | def contains(self, x: int, y: int, proper: bool) -> bool: ... method contains (line 9414) | def contains(self, x: int, y: int) -> bool: ... method contains (line 9416) | def contains(self, r: QRect, proper: bool = ...) -> bool: ... method contains (line 9418) | def contains(self, p: QPoint, proper: bool = ...) -> bool: ... method getCoords (line 9419) | def getCoords(self) -> tuple[int, int, int, int]: ... method getRect (line 9420) | def getRect(self) -> tuple[int, int, int, int]: ... method height (line 9421) | def height(self) -> int: ... method intersected (line 9422) | def intersected(self, other: QRect) -> QRect: ... method intersects (line 9423) | def intersects(self, r: QRect) -> bool: ... method isEmpty (line 9424) | def isEmpty(self) -> bool: ... method isNull (line 9425) | def isNull(self) -> bool: ... method isValid (line 9426) | def isValid(self) -> bool: ... method left (line 9427) | def left(self) -> int: ... method marginsAdded (line 9428) | def marginsAdded(self, margins: QMargins) -> QRect: ... method marginsRemoved (line 9429) | def marginsRemoved(self, margins: QMargins) -> QRect: ... method moveBottom (line 9430) | def moveBottom(self, pos: int) -> None: ... method moveBottomLeft (line 9431) | def moveBottomLeft(self, p: QPoint) -> None: ... method moveBottomRight (line 9432) | def moveBottomRight(self, p: QPoint) -> None: ... method moveCenter (line 9433) | def moveCenter(self, p: QPoint) -> None: ... method moveLeft (line 9434) | def moveLeft(self, pos: int) -> None: ... method moveRight (line 9435) | def moveRight(self, pos: int) -> None: ... method moveTo (line 9437) | def moveTo(self, x: int, t: int) -> None: ... method moveTo (line 9439) | def moveTo(self, p: QPoint) -> None: ... method moveTop (line 9440) | def moveTop(self, pos: int) -> None: ... method moveTopLeft (line 9441) | def moveTopLeft(self, p: QPoint) -> None: ... method moveTopRight (line 9442) | def moveTopRight(self, p: QPoint) -> None: ... method normalized (line 9443) | def normalized(self) -> QRect: ... method right (line 9444) | def right(self) -> int: ... method setBottom (line 9445) | def setBottom(self, pos: int) -> None: ... method setBottomLeft (line 9446) | def setBottomLeft(self, p: QPoint) -> None: ... method setBottomRight (line 9447) | def setBottomRight(self, p: QPoint) -> None: ... method setCoords (line 9448) | def setCoords(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method setHeight (line 9449) | def setHeight(self, h: int) -> None: ... method setLeft (line 9450) | def setLeft(self, pos: int) -> None: ... method setRect (line 9451) | def setRect(self, x: int, y: int, w: int, h: int) -> None: ... method setRight (line 9452) | def setRight(self, pos: int) -> None: ... method setSize (line 9453) | def setSize(self, s: QSize) -> None: ... method setTop (line 9454) | def setTop(self, pos: int) -> None: ... method setTopLeft (line 9455) | def setTopLeft(self, p: QPoint) -> None: ... method setTopRight (line 9456) | def setTopRight(self, p: QPoint) -> None: ... method setWidth (line 9457) | def setWidth(self, w: int) -> None: ... method setX (line 9458) | def setX(self, x: int) -> None: ... method setY (line 9459) | def setY(self, y: int) -> None: ... method size (line 9460) | def size(self) -> QSize: ... method top (line 9461) | def top(self) -> int: ... method topLeft (line 9462) | def topLeft(self) -> QPoint: ... method topRight (line 9463) | def topRight(self) -> QPoint: ... method translate (line 9465) | def translate(self, dx: int, dy: int) -> None: ... method translate (line 9467) | def translate(self, p: QPoint) -> None: ... method translated (line 9469) | def translated(self, dx: int, dy: int) -> QRect: ... method translated (line 9471) | def translated(self, p: QPoint) -> QRect: ... method transposed (line 9472) | def transposed(self) -> QRect: ... method united (line 9473) | def united(self, other: QRect) -> QRect: ... method width (line 9474) | def width(self) -> int: ... method x (line 9475) | def x(self) -> int: ... method y (line 9476) | def y(self) -> int: ... method __add__ (line 9477) | def __add__(self, margins: QMargins) -> QRect: ... method __and__ (line 9478) | def __and__(self, r: QRect) -> QRect: ... method __bool__ (line 9479) | def __bool__(self) -> bool: ... method __copy__ (line 9480) | def __copy__(self) -> None: ... method __eq__ (line 9481) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9482) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9483) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9484) | def __hash__(self) -> int: ... method __iadd__ (line 9485) | def __iadd__(self, margins: QMargins) -> QRect: ... method __iand__ (line 9486) | def __iand__(self, r: QRect) -> QRect: ... method __ior__ (line 9487) | def __ior__(self, r: QRect) -> QRect: ... method __isub__ (line 9488) | def __isub__(self, margins: QMargins) -> QRect: ... method __le__ (line 9489) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9490) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9491) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9492) | def __or__(self, r: QRect) -> QRect: ... method __radd__ (line 9493) | def __radd__(self, other): ... method __rand__ (line 9494) | def __rand__(self, other): ... method __ror__ (line 9495) | def __ror__(self, other): ... method __rsub__ (line 9496) | def __rsub__(self, other): ... method __sub__ (line 9497) | def __sub__(self, rhs: QMargins) -> QRect: ... class QRectF (line 9499) | class QRectF(shiboken2.Object): method __init__ (line 9501) | def __init__(self, left: float, top: float, width: float, height: floa... method __init__ (line 9503) | def __init__(self, topleft: QPointF, size: QSizeF) -> None: ... method __init__ (line 9505) | def __init__(self, topleft: QPointF, bottomRight: QPointF) -> None: ... method __init__ (line 9507) | def __init__(self, rect: QRect) -> None: ... method __init__ (line 9509) | def __init__(self, QRectF: QRectF) -> None: ... method __init__ (line 9511) | def __init__(self) -> None: ... method adjust (line 9512) | def adjust(self, x1: float, y1: float, x2: float, y2: float) -> None: ... method adjusted (line 9513) | def adjusted(self, x1: float, y1: float, x2: float, y2: float) -> QRec... method bottom (line 9514) | def bottom(self) -> float: ... method bottomLeft (line 9515) | def bottomLeft(self) -> QPointF: ... method bottomRight (line 9516) | def bottomRight(self) -> QPointF: ... method center (line 9517) | def center(self) -> QPointF: ... method contains (line 9519) | def contains(self, x: float, y: float) -> bool: ... method contains (line 9521) | def contains(self, r: QRectF) -> bool: ... method contains (line 9523) | def contains(self, p: QPointF) -> bool: ... method getCoords (line 9524) | def getCoords(self) -> tuple[float, float, float, float]: ... method getRect (line 9525) | def getRect(self) -> tuple[float, float, float, float]: ... method height (line 9526) | def height(self) -> float: ... method intersected (line 9527) | def intersected(self, other: QRectF) -> QRectF: ... method intersects (line 9528) | def intersects(self, r: QRectF) -> bool: ... method isEmpty (line 9529) | def isEmpty(self) -> bool: ... method isNull (line 9530) | def isNull(self) -> bool: ... method isValid (line 9531) | def isValid(self) -> bool: ... method left (line 9532) | def left(self) -> float: ... method marginsAdded (line 9533) | def marginsAdded(self, margins: QMarginsF) -> QRectF: ... method marginsRemoved (line 9534) | def marginsRemoved(self, margins: QMarginsF) -> QRectF: ... method moveBottom (line 9535) | def moveBottom(self, pos: float) -> None: ... method moveBottomLeft (line 9536) | def moveBottomLeft(self, p: QPointF) -> None: ... method moveBottomRight (line 9537) | def moveBottomRight(self, p: QPointF) -> None: ... method moveCenter (line 9538) | def moveCenter(self, p: QPointF) -> None: ... method moveLeft (line 9539) | def moveLeft(self, pos: float) -> None: ... method moveRight (line 9540) | def moveRight(self, pos: float) -> None: ... method moveTo (line 9542) | def moveTo(self, x: float, y: float) -> None: ... method moveTo (line 9544) | def moveTo(self, p: QPointF) -> None: ... method moveTop (line 9545) | def moveTop(self, pos: float) -> None: ... method moveTopLeft (line 9546) | def moveTopLeft(self, p: QPointF) -> None: ... method moveTopRight (line 9547) | def moveTopRight(self, p: QPointF) -> None: ... method normalized (line 9548) | def normalized(self) -> QRectF: ... method right (line 9549) | def right(self) -> float: ... method setBottom (line 9550) | def setBottom(self, pos: float) -> None: ... method setBottomLeft (line 9551) | def setBottomLeft(self, p: QPointF) -> None: ... method setBottomRight (line 9552) | def setBottomRight(self, p: QPointF) -> None: ... method setCoords (line 9553) | def setCoords(self, x1: float, y1: float, x2: float, y2: float) -> Non... method setHeight (line 9554) | def setHeight(self, h: float) -> None: ... method setLeft (line 9555) | def setLeft(self, pos: float) -> None: ... method setRect (line 9556) | def setRect(self, x: float, y: float, w: float, h: float) -> None: ... method setRight (line 9557) | def setRight(self, pos: float) -> None: ... method setSize (line 9558) | def setSize(self, s: QSizeF) -> None: ... method setTop (line 9559) | def setTop(self, pos: float) -> None: ... method setTopLeft (line 9560) | def setTopLeft(self, p: QPointF) -> None: ... method setTopRight (line 9561) | def setTopRight(self, p: QPointF) -> None: ... method setWidth (line 9562) | def setWidth(self, w: float) -> None: ... method setX (line 9563) | def setX(self, pos: float) -> None: ... method setY (line 9564) | def setY(self, pos: float) -> None: ... method size (line 9565) | def size(self) -> QSizeF: ... method toAlignedRect (line 9566) | def toAlignedRect(self) -> QRect: ... method toRect (line 9567) | def toRect(self) -> QRect: ... method top (line 9568) | def top(self) -> float: ... method topLeft (line 9569) | def topLeft(self) -> QPointF: ... method topRight (line 9570) | def topRight(self) -> QPointF: ... method translate (line 9572) | def translate(self, dx: float, dy: float) -> None: ... method translate (line 9574) | def translate(self, p: QPointF) -> None: ... method translated (line 9576) | def translated(self, dx: float, dy: float) -> QRectF: ... method translated (line 9578) | def translated(self, p: QPointF) -> QRectF: ... method transposed (line 9579) | def transposed(self) -> QRectF: ... method united (line 9580) | def united(self, other: QRectF) -> QRectF: ... method width (line 9581) | def width(self) -> float: ... method x (line 9582) | def x(self) -> float: ... method y (line 9583) | def y(self) -> float: ... method __add__ (line 9585) | def __add__(self, rhs: QMarginsF) -> QRectF: ... method __add__ (line 9587) | def __add__(self, lhs: QMarginsF) -> QRectF: ... # type: ignore[overl... method __and__ (line 9588) | def __and__(self, r: QRectF) -> QRectF: ... method __bool__ (line 9589) | def __bool__(self) -> bool: ... method __copy__ (line 9590) | def __copy__(self) -> None: ... method __eq__ (line 9591) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9592) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9593) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 9594) | def __iadd__(self, margins: QMarginsF) -> QRectF: ... # type: ignore[... method __iand__ (line 9595) | def __iand__(self, r: QRectF) -> QRectF: ... method __ior__ (line 9596) | def __ior__(self, r: QRectF) -> QRectF: ... method __isub__ (line 9597) | def __isub__(self, margins: QMarginsF) -> QRectF: ... method __le__ (line 9598) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9599) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9600) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9601) | def __or__(self, r: QRectF) -> QRectF: ... method __radd__ (line 9602) | def __radd__(self, other): ... method __rand__ (line 9603) | def __rand__(self, other): ... method __ror__ (line 9604) | def __ror__(self, other): ... method __rsub__ (line 9605) | def __rsub__(self, other): ... method __sub__ (line 9606) | def __sub__(self, rhs: QMarginsF) -> QRectF: ... class QRecursiveMutex (line 9608) | class QRecursiveMutex(shiboken2.Object): method __init__ (line 9609) | def __init__(self) -> None: ... class QRegExp (line 9611) | class QRegExp(shiboken2.Object): class CaretMode (line 9612) | class CaretMode: method __init__ (line 9619) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9620) | def __add__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __and__ (line 9621) | def __and__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __bool__ (line 9622) | def __bool__(self) -> bool: ... method __eq__ (line 9623) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9624) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9625) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9626) | def __hash__(self) -> int: ... method __index__ (line 9627) | def __index__(self) -> int: ... method __int__ (line 9628) | def __int__(self) -> int: ... method __le__ (line 9629) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9630) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9631) | def __mul__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __ne__ (line 9632) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9633) | def __or__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __pos__ (line 9634) | def __pos__(self): ... method __radd__ (line 9635) | def __radd__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __rand__ (line 9636) | def __rand__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __rmul__ (line 9637) | def __rmul__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __ror__ (line 9638) | def __ror__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __rsub__ (line 9639) | def __rsub__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __rxor__ (line 9640) | def __rxor__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __sub__ (line 9641) | def __sub__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... method __xor__ (line 9642) | def __xor__(self, other: typing.SupportsInt) -> QRegExp.CaretMode: ... class PatternSyntax (line 9644) | class PatternSyntax: method __init__ (line 9654) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9655) | def __add__(self, other: typing.SupportsInt) -> QRegExp.PatternSynta... method __and__ (line 9656) | def __and__(self, other: typing.SupportsInt) -> QRegExp.PatternSynta... method __bool__ (line 9657) | def __bool__(self) -> bool: ... method __eq__ (line 9658) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9659) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9660) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9661) | def __hash__(self) -> int: ... method __index__ (line 9662) | def __index__(self) -> int: ... method __int__ (line 9663) | def __int__(self) -> int: ... method __le__ (line 9664) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9665) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9666) | def __mul__(self, other: typing.SupportsInt) -> QRegExp.PatternSynta... method __ne__ (line 9667) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9668) | def __or__(self, other: typing.SupportsInt) -> QRegExp.PatternSyntax... method __pos__ (line 9669) | def __pos__(self): ... method __radd__ (line 9670) | def __radd__(self, other: typing.SupportsInt) -> QRegExp.PatternSynt... method __rand__ (line 9671) | def __rand__(self, other: typing.SupportsInt) -> QRegExp.PatternSynt... method __rmul__ (line 9672) | def __rmul__(self, other: typing.SupportsInt) -> QRegExp.PatternSynt... method __ror__ (line 9673) | def __ror__(self, other: typing.SupportsInt) -> QRegExp.PatternSynta... method __rsub__ (line 9674) | def __rsub__(self, other: typing.SupportsInt) -> QRegExp.PatternSynt... method __rxor__ (line 9675) | def __rxor__(self, other: typing.SupportsInt) -> QRegExp.PatternSynt... method __sub__ (line 9676) | def __sub__(self, other: typing.SupportsInt) -> QRegExp.PatternSynta... method __xor__ (line 9677) | def __xor__(self, other: typing.SupportsInt) -> QRegExp.PatternSynta... method __init__ (line 9688) | def __init__(self, pattern: str, cs: Qt.CaseSensitivity = ..., syntax:... method __init__ (line 9690) | def __init__(self, rx: QRegExp) -> None: ... method __init__ (line 9692) | def __init__(self) -> None: ... method cap (line 9693) | def cap(self, nth: int = ...) -> str: ... method captureCount (line 9694) | def captureCount(self) -> int: ... method capturedTexts (line 9695) | def capturedTexts(self) -> list[str]: ... method caseSensitivity (line 9696) | def caseSensitivity(self) -> Qt.CaseSensitivity: ... method errorString (line 9697) | def errorString(self) -> str: ... method escape (line 9699) | def escape(str: str) -> str: ... method exactMatch (line 9700) | def exactMatch(self, str: str) -> bool: ... method indexIn (line 9701) | def indexIn(self, str: str, offset: int = ..., caretMode: QRegExp.Care... method isEmpty (line 9702) | def isEmpty(self) -> bool: ... method isMinimal (line 9703) | def isMinimal(self) -> bool: ... method isValid (line 9704) | def isValid(self) -> bool: ... method lastIndexIn (line 9705) | def lastIndexIn(self, str: str, offset: int = ..., caretMode: QRegExp.... method matchedLength (line 9706) | def matchedLength(self) -> int: ... method pattern (line 9707) | def pattern(self) -> str: ... method patternSyntax (line 9708) | def patternSyntax(self) -> QRegExp.PatternSyntax: ... method pos (line 9709) | def pos(self, nth: int = ...) -> int: ... method replace (line 9710) | def replace(self, sourceString: str, after: str) -> str: ... method setCaseSensitivity (line 9711) | def setCaseSensitivity(self, cs: Qt.CaseSensitivity) -> None: ... method setMinimal (line 9712) | def setMinimal(self, minimal: bool) -> None: ... method setPattern (line 9713) | def setPattern(self, pattern: str) -> None: ... method setPatternSyntax (line 9714) | def setPatternSyntax(self, syntax: QRegExp.PatternSyntax) -> None: ... method swap (line 9715) | def swap(self, other: QRegExp) -> None: ... method __copy__ (line 9716) | def __copy__(self) -> None: ... method __eq__ (line 9717) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9718) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9719) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9720) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9721) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9722) | def __ne__(self, other: object) -> bool: ... class QRegularExpression (line 9724) | class QRegularExpression(shiboken2.Object): class MatchOption (line 9725) | class MatchOption: method __init__ (line 9732) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9733) | def __and__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __bool__ (line 9734) | def __bool__(self) -> bool: ... method __eq__ (line 9735) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9736) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9737) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9738) | def __hash__(self) -> int: ... method __index__ (line 9739) | def __index__(self) -> int: ... method __int__ (line 9740) | def __int__(self) -> int: ... method __invert__ (line 9741) | def __invert__(self) -> QRegularExpression.MatchOptions: ... method __le__ (line 9742) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9743) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9744) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9745) | def __or__(self, other: typing.SupportsInt) -> QRegularExpression.Ma... method __rand__ (line 9746) | def __rand__(self, other: typing.SupportsInt) -> QRegularExpression.... method __ror__ (line 9747) | def __ror__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __rxor__ (line 9748) | def __rxor__(self, other: typing.SupportsInt) -> QRegularExpression.... method __xor__ (line 9749) | def __xor__(self, other: typing.SupportsInt) -> QRegularExpression.M... class MatchOptions (line 9751) | class MatchOptions: method __init__ (line 9753) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9754) | def __and__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __bool__ (line 9755) | def __bool__(self) -> bool: ... method __eq__ (line 9756) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9757) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9758) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9759) | def __index__(self) -> int: ... method __int__ (line 9760) | def __int__(self) -> int: ... method __invert__ (line 9761) | def __invert__(self) -> QRegularExpression.MatchOptions: ... method __le__ (line 9762) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9763) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9764) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9765) | def __or__(self, other: typing.SupportsInt) -> QRegularExpression.Ma... method __rand__ (line 9766) | def __rand__(self, other: typing.SupportsInt) -> QRegularExpression.... method __ror__ (line 9767) | def __ror__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __rxor__ (line 9768) | def __rxor__(self, other: typing.SupportsInt) -> QRegularExpression.... method __xor__ (line 9769) | def __xor__(self, other: typing.SupportsInt) -> QRegularExpression.M... class MatchType (line 9771) | class MatchType: method __init__ (line 9779) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9780) | def __add__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __and__ (line 9781) | def __and__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __bool__ (line 9782) | def __bool__(self) -> bool: ... method __eq__ (line 9783) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9784) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9785) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9786) | def __hash__(self) -> int: ... method __index__ (line 9787) | def __index__(self) -> int: ... method __int__ (line 9788) | def __int__(self) -> int: ... method __le__ (line 9789) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9790) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9791) | def __mul__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __ne__ (line 9792) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9793) | def __or__(self, other: typing.SupportsInt) -> QRegularExpression.Ma... method __pos__ (line 9794) | def __pos__(self): ... method __radd__ (line 9795) | def __radd__(self, other: typing.SupportsInt) -> QRegularExpression.... method __rand__ (line 9796) | def __rand__(self, other: typing.SupportsInt) -> QRegularExpression.... method __rmul__ (line 9797) | def __rmul__(self, other: typing.SupportsInt) -> QRegularExpression.... method __ror__ (line 9798) | def __ror__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __rsub__ (line 9799) | def __rsub__(self, other: typing.SupportsInt) -> QRegularExpression.... method __rxor__ (line 9800) | def __rxor__(self, other: typing.SupportsInt) -> QRegularExpression.... method __sub__ (line 9801) | def __sub__(self, other: typing.SupportsInt) -> QRegularExpression.M... method __xor__ (line 9802) | def __xor__(self, other: typing.SupportsInt) -> QRegularExpression.M... class PatternOption (line 9804) | class PatternOption: method __init__ (line 9818) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9819) | def __and__(self, other: typing.SupportsInt) -> QRegularExpression.P... method __bool__ (line 9820) | def __bool__(self) -> bool: ... method __eq__ (line 9821) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9822) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9823) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9824) | def __hash__(self) -> int: ... method __index__ (line 9825) | def __index__(self) -> int: ... method __int__ (line 9826) | def __int__(self) -> int: ... method __invert__ (line 9827) | def __invert__(self) -> QRegularExpression.PatternOptions: ... method __le__ (line 9828) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9829) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9830) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9831) | def __or__(self, other: typing.SupportsInt) -> QRegularExpression.Pa... method __rand__ (line 9832) | def __rand__(self, other: typing.SupportsInt) -> QRegularExpression.... method __ror__ (line 9833) | def __ror__(self, other: typing.SupportsInt) -> QRegularExpression.P... method __rxor__ (line 9834) | def __rxor__(self, other: typing.SupportsInt) -> QRegularExpression.... method __xor__ (line 9835) | def __xor__(self, other: typing.SupportsInt) -> QRegularExpression.P... class PatternOptions (line 9837) | class PatternOptions: method __init__ (line 9839) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9840) | def __and__(self, other: typing.SupportsInt) -> QRegularExpression.P... method __bool__ (line 9841) | def __bool__(self) -> bool: ... method __eq__ (line 9842) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9843) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9844) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9845) | def __index__(self) -> int: ... method __int__ (line 9846) | def __int__(self) -> int: ... method __invert__ (line 9847) | def __invert__(self) -> QRegularExpression.PatternOptions: ... method __le__ (line 9848) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9849) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9850) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9851) | def __or__(self, other: typing.SupportsInt) -> QRegularExpression.Pa... method __rand__ (line 9852) | def __rand__(self, other: typing.SupportsInt) -> QRegularExpression.... method __ror__ (line 9853) | def __ror__(self, other: typing.SupportsInt) -> QRegularExpression.P... method __rxor__ (line 9854) | def __rxor__(self, other: typing.SupportsInt) -> QRegularExpression.... method __xor__ (line 9855) | def __xor__(self, other: typing.SupportsInt) -> QRegularExpression.P... method __init__ (line 9874) | def __init__(self, pattern: str, options: QRegularExpression.PatternOp... method __init__ (line 9876) | def __init__(self, re: QRegularExpression) -> None: ... method __init__ (line 9878) | def __init__(self) -> None: ... method anchoredPattern (line 9880) | def anchoredPattern(expression: str) -> str: ... method captureCount (line 9881) | def captureCount(self) -> int: ... method errorString (line 9882) | def errorString(self) -> str: ... method escape (line 9884) | def escape(str: str) -> str: ... method globalMatch (line 9886) | def globalMatch(self, subjectRef: str, offset: int = ..., matchType: Q... method globalMatch (line 9888) | def globalMatch(self, subject: str, offset: int = ..., matchType: QReg... method isValid (line 9889) | def isValid(self) -> bool: ... method match (line 9891) | def match(self, subjectRef: str, offset: int = ..., matchType: QRegula... method match (line 9893) | def match(self, subject: str, offset: int = ..., matchType: QRegularEx... method namedCaptureGroups (line 9894) | def namedCaptureGroups(self) -> list[str]: ... method optimize (line 9895) | def optimize(self) -> None: ... method pattern (line 9896) | def pattern(self) -> str: ... method patternErrorOffset (line 9897) | def patternErrorOffset(self) -> int: ... method patternOptions (line 9898) | def patternOptions(self) -> QRegularExpression.PatternOptions | QRegul... method setPattern (line 9899) | def setPattern(self, pattern: str) -> None: ... method setPatternOptions (line 9900) | def setPatternOptions(self, options: QRegularExpression.PatternOptions... method swap (line 9901) | def swap(self, other: QRegularExpression) -> None: ... method wildcardToRegularExpression (line 9903) | def wildcardToRegularExpression(str: str) -> str: ... method __copy__ (line 9904) | def __copy__(self) -> None: ... method __eq__ (line 9905) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9906) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9907) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9908) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9909) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9910) | def __ne__(self, other: object) -> bool: ... class QRegularExpressionMatch (line 9912) | class QRegularExpressionMatch(shiboken2.Object): method __init__ (line 9914) | def __init__(self, match: QRegularExpressionMatch) -> None: ... method __init__ (line 9916) | def __init__(self) -> None: ... method captured (line 9918) | def captured(self, nth: int = ...) -> str: ... method captured (line 9920) | def captured(self, name: str) -> str: ... method capturedEnd (line 9922) | def capturedEnd(self, nth: int = ...) -> int: ... method capturedEnd (line 9924) | def capturedEnd(self, name: str) -> int: ... method capturedLength (line 9926) | def capturedLength(self, nth: int = ...) -> int: ... method capturedLength (line 9928) | def capturedLength(self, name: str) -> int: ... method capturedRef (line 9930) | def capturedRef(self, nth: int = ...) -> str: ... method capturedRef (line 9932) | def capturedRef(self, name: str) -> str: ... method capturedStart (line 9934) | def capturedStart(self, nth: int = ...) -> int: ... method capturedStart (line 9936) | def capturedStart(self, name: str) -> int: ... method capturedTexts (line 9937) | def capturedTexts(self) -> list[str]: ... method hasMatch (line 9938) | def hasMatch(self) -> bool: ... method hasPartialMatch (line 9939) | def hasPartialMatch(self) -> bool: ... method isValid (line 9940) | def isValid(self) -> bool: ... method lastCapturedIndex (line 9941) | def lastCapturedIndex(self) -> int: ... method matchOptions (line 9942) | def matchOptions(self) -> QRegularExpression.MatchOptions | QRegularEx... method matchType (line 9943) | def matchType(self) -> QRegularExpression.MatchType: ... method regularExpression (line 9944) | def regularExpression(self) -> QRegularExpression: ... method swap (line 9945) | def swap(self, other: QRegularExpressionMatch) -> None: ... method __copy__ (line 9946) | def __copy__(self) -> None: ... class QRegularExpressionMatchIterator (line 9948) | class QRegularExpressionMatchIterator(shiboken2.Object): method __init__ (line 9950) | def __init__(self, iterator: QRegularExpressionMatchIterator) -> None:... method __init__ (line 9952) | def __init__(self) -> None: ... method hasNext (line 9953) | def hasNext(self) -> bool: ... method isValid (line 9954) | def isValid(self) -> bool: ... method matchOptions (line 9955) | def matchOptions(self) -> QRegularExpression.MatchOptions | QRegularEx... method matchType (line 9956) | def matchType(self) -> QRegularExpression.MatchType: ... method next (line 9957) | def next(self) -> QRegularExpressionMatch: ... method peekNext (line 9958) | def peekNext(self) -> QRegularExpressionMatch: ... method regularExpression (line 9959) | def regularExpression(self) -> QRegularExpression: ... method swap (line 9960) | def swap(self, other: QRegularExpressionMatchIterator) -> None: ... method __copy__ (line 9961) | def __copy__(self) -> None: ... class QResource (line 9963) | class QResource(shiboken2.Object): class Compression (line 9964) | class Compression: method __init__ (line 9971) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9972) | def __add__(self, other: typing.SupportsInt) -> QResource.Compressio... method __and__ (line 9973) | def __and__(self, other: typing.SupportsInt) -> QResource.Compressio... method __bool__ (line 9974) | def __bool__(self) -> bool: ... method __eq__ (line 9975) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9976) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9977) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9978) | def __hash__(self) -> int: ... method __index__ (line 9979) | def __index__(self) -> int: ... method __int__ (line 9980) | def __int__(self) -> int: ... method __le__ (line 9981) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9982) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9983) | def __mul__(self, other: typing.SupportsInt) -> QResource.Compressio... method __ne__ (line 9984) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9985) | def __or__(self, other: typing.SupportsInt) -> QResource.Compression... method __pos__ (line 9986) | def __pos__(self): ... method __radd__ (line 9987) | def __radd__(self, other: typing.SupportsInt) -> QResource.Compressi... method __rand__ (line 9988) | def __rand__(self, other: typing.SupportsInt) -> QResource.Compressi... method __rmul__ (line 9989) | def __rmul__(self, other: typing.SupportsInt) -> QResource.Compressi... method __ror__ (line 9990) | def __ror__(self, other: typing.SupportsInt) -> QResource.Compressio... method __rsub__ (line 9991) | def __rsub__(self, other: typing.SupportsInt) -> QResource.Compressi... method __rxor__ (line 9992) | def __rxor__(self, other: typing.SupportsInt) -> QResource.Compressi... method __sub__ (line 9993) | def __sub__(self, other: typing.SupportsInt) -> QResource.Compressio... method __xor__ (line 9994) | def __xor__(self, other: typing.SupportsInt) -> QResource.Compressio... method __init__ (line 9998) | def __init__(self, file: str = ..., locale: QLocale = ...) -> None: ... method absoluteFilePath (line 9999) | def absoluteFilePath(self) -> str: ... method addSearchPath (line 10001) | def addSearchPath(path: str) -> None: ... method children (line 10002) | def children(self) -> list[str]: ... method compressionAlgorithm (line 10003) | def compressionAlgorithm(self) -> QResource.Compression: ... method data (line 10004) | def data(self) -> bytes: ... method fileName (line 10005) | def fileName(self) -> str: ... method isCompressed (line 10006) | def isCompressed(self) -> bool: ... method isDir (line 10007) | def isDir(self) -> bool: ... method isFile (line 10008) | def isFile(self) -> bool: ... method isValid (line 10009) | def isValid(self) -> bool: ... method lastModified (line 10010) | def lastModified(self) -> QDateTime: ... method locale (line 10011) | def locale(self) -> QLocale: ... method registerResource (line 10013) | def registerResource(rccFilename: str, resourceRoot: str = ...) -> boo... method registerResourceData (line 10015) | def registerResourceData(rccData: bytes, resourceRoot: str = ...) -> b... method searchPaths (line 10017) | def searchPaths() -> list[str]: ... method setFileName (line 10018) | def setFileName(self, file: str) -> None: ... method setLocale (line 10019) | def setLocale(self, locale: QLocale) -> None: ... method size (line 10020) | def size(self) -> int: ... method uncompressedData (line 10021) | def uncompressedData(self) -> QByteArray: ... method uncompressedSize (line 10022) | def uncompressedSize(self) -> int: ... method unregisterResource (line 10024) | def unregisterResource(rccFilename: str, resourceRoot: str = ...) -> b... method unregisterResourceData (line 10026) | def unregisterResourceData(rccData: bytes, resourceRoot: str = ...) ->... class QRunnable (line 10028) | class QRunnable(shiboken2.Object): method __init__ (line 10029) | def __init__(self) -> None: ... method autoDelete (line 10030) | def autoDelete(self) -> bool: ... method run (line 10031) | def run(self) -> None: ... method setAutoDelete (line 10032) | def setAutoDelete(self, _autoDelete: bool) -> None: ... class QSaveFile (line 10034) | class QSaveFile(QFileDevice): method __init__ (line 10037) | def __init__(self, name: str, parent: QObject | None, aboutToClose: ty... method __init__ (line 10039) | def __init__(self, parent: QObject | None = ..., aboutToClose: typing.... method __init__ (line 10041) | def __init__(self, name: str, aboutToClose: typing.Callable = ..., byt... method cancelWriting (line 10042) | def cancelWriting(self) -> None: ... method close (line 10043) | def close(self) -> None: ... method commit (line 10044) | def commit(self) -> bool: ... method directWriteFallback (line 10045) | def directWriteFallback(self) -> bool: ... method fileName (line 10046) | def fileName(self) -> str: ... method open (line 10047) | def open(self, flags: QIODevice.OpenMode | QIODevice.OpenModeFlag) -> ... method setDirectWriteFallback (line 10048) | def setDirectWriteFallback(self, enabled: bool) -> None: ... method setFileName (line 10049) | def setFileName(self, name: str) -> None: ... method writeData (line 10050) | def writeData(self, data: bytes, len: int) -> int: ... class QSemaphore (line 10052) | class QSemaphore(shiboken2.Object): method __init__ (line 10053) | def __init__(self, n: int = ...) -> None: ... method acquire (line 10054) | def acquire(self, n: int = ...) -> None: ... method available (line 10055) | def available(self) -> int: ... method release (line 10056) | def release(self, n: int = ...) -> None: ... method tryAcquire (line 10058) | def tryAcquire(self, n: int, timeout: int) -> bool: ... method tryAcquire (line 10060) | def tryAcquire(self, n: int = ...) -> bool: ... class QSemaphoreReleaser (line 10062) | class QSemaphoreReleaser(shiboken2.Object): method __init__ (line 10064) | def __init__(self, sem: QSemaphore, n: int = ...) -> None: ... method __init__ (line 10066) | def __init__(self) -> None: ... method cancel (line 10067) | def cancel(self) -> QSemaphore: ... method semaphore (line 10068) | def semaphore(self) -> QSemaphore: ... method swap (line 10069) | def swap(self, other: QSemaphoreReleaser) -> None: ... class QSequentialAnimationGroup (line 10071) | class QSequentialAnimationGroup(QAnimationGroup): method __init__ (line 10074) | def __init__(self, parent: QObject | None = ..., currentAnimation: QAb... method addPause (line 10075) | def addPause(self, msecs: int) -> QPauseAnimation: ... method currentAnimation (line 10076) | def currentAnimation(self) -> QAbstractAnimation: ... method duration (line 10077) | def duration(self) -> int: ... method event (line 10078) | def event(self, event: QEvent) -> bool: ... method insertPause (line 10079) | def insertPause(self, index: int, msecs: int) -> QPauseAnimation: ... method updateCurrentTime (line 10080) | def updateCurrentTime(self, arg__1: int) -> None: ... method updateDirection (line 10081) | def updateDirection(self, direction: QAbstractAnimation.Direction) -> ... method updateState (line 10082) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QSettings (line 10084) | class QSettings(QObject): class Format (line 10085) | class Format: method __init__ (line 10108) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10109) | def __add__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __and__ (line 10110) | def __and__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __bool__ (line 10111) | def __bool__(self) -> bool: ... method __eq__ (line 10112) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10113) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10114) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10115) | def __hash__(self) -> int: ... method __index__ (line 10116) | def __index__(self) -> int: ... method __int__ (line 10117) | def __int__(self) -> int: ... method __le__ (line 10118) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10119) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10120) | def __mul__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __ne__ (line 10121) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10122) | def __or__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __pos__ (line 10123) | def __pos__(self): ... method __radd__ (line 10124) | def __radd__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __rand__ (line 10125) | def __rand__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __rmul__ (line 10126) | def __rmul__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __ror__ (line 10127) | def __ror__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __rsub__ (line 10128) | def __rsub__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __rxor__ (line 10129) | def __rxor__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __sub__ (line 10130) | def __sub__(self, other: typing.SupportsInt) -> QSettings.Format: ... method __xor__ (line 10131) | def __xor__(self, other: typing.SupportsInt) -> QSettings.Format: ... class Scope (line 10133) | class Scope: method __init__ (line 10139) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10140) | def __add__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __and__ (line 10141) | def __and__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __bool__ (line 10142) | def __bool__(self) -> bool: ... method __eq__ (line 10143) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10144) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10145) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10146) | def __hash__(self) -> int: ... method __index__ (line 10147) | def __index__(self) -> int: ... method __int__ (line 10148) | def __int__(self) -> int: ... method __le__ (line 10149) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10150) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10151) | def __mul__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __ne__ (line 10152) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10153) | def __or__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __pos__ (line 10154) | def __pos__(self): ... method __radd__ (line 10155) | def __radd__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __rand__ (line 10156) | def __rand__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __rmul__ (line 10157) | def __rmul__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __ror__ (line 10158) | def __ror__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __rsub__ (line 10159) | def __rsub__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __rxor__ (line 10160) | def __rxor__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __sub__ (line 10161) | def __sub__(self, other: typing.SupportsInt) -> QSettings.Scope: ... method __xor__ (line 10162) | def __xor__(self, other: typing.SupportsInt) -> QSettings.Scope: ... class Status (line 10164) | class Status: method __init__ (line 10171) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10172) | def __add__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __and__ (line 10173) | def __and__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __bool__ (line 10174) | def __bool__(self) -> bool: ... method __eq__ (line 10175) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10176) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10177) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10178) | def __hash__(self) -> int: ... method __index__ (line 10179) | def __index__(self) -> int: ... method __int__ (line 10180) | def __int__(self) -> int: ... method __le__ (line 10181) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10182) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10183) | def __mul__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __ne__ (line 10184) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10185) | def __or__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __pos__ (line 10186) | def __pos__(self): ... method __radd__ (line 10187) | def __radd__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __rand__ (line 10188) | def __rand__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __rmul__ (line 10189) | def __rmul__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __ror__ (line 10190) | def __ror__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __rsub__ (line 10191) | def __rsub__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __rxor__ (line 10192) | def __rxor__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __sub__ (line 10193) | def __sub__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __xor__ (line 10194) | def __xor__(self, other: typing.SupportsInt) -> QSettings.Status: ... method __init__ (line 10221) | def __init__(self, format: QSettings.Format, scope: QSettings.Scope, o... method __init__ (line 10223) | def __init__(self, scope: QSettings.Scope, organization: str, applicat... method __init__ (line 10225) | def __init__(self, organization: str, application: str = ..., parent: ... method __init__ (line 10227) | def __init__(self, fileName: str, format: QSettings.Format, parent: QO... method __init__ (line 10229) | def __init__(self, scope: QSettings.Scope, parent: QObject | None = ..... method __init__ (line 10231) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method allKeys (line 10232) | def allKeys(self) -> list[str]: ... method applicationName (line 10233) | def applicationName(self) -> str: ... method beginGroup (line 10234) | def beginGroup(self, prefix: str) -> None: ... method beginReadArray (line 10235) | def beginReadArray(self, prefix: str) -> int: ... method beginWriteArray (line 10236) | def beginWriteArray(self, prefix: str, size: int = ...) -> None: ... method childGroups (line 10237) | def childGroups(self) -> list[str]: ... method childKeys (line 10238) | def childKeys(self) -> list[str]: ... method clear (line 10239) | def clear(self) -> None: ... method contains (line 10240) | def contains(self, key: str) -> bool: ... method defaultFormat (line 10242) | def defaultFormat() -> QSettings.Format: ... method endArray (line 10243) | def endArray(self) -> None: ... method endGroup (line 10244) | def endGroup(self) -> None: ... method event (line 10245) | def event(self, event: QEvent) -> bool: ... method fallbacksEnabled (line 10246) | def fallbacksEnabled(self) -> bool: ... method fileName (line 10247) | def fileName(self) -> str: ... method format (line 10248) | def format(self) -> QSettings.Format: ... method group (line 10249) | def group(self) -> str: ... method iniCodec (line 10250) | def iniCodec(self) -> QTextCodec: ... method isAtomicSyncRequired (line 10251) | def isAtomicSyncRequired(self) -> bool: ... method isWritable (line 10252) | def isWritable(self) -> bool: ... method organizationName (line 10253) | def organizationName(self) -> str: ... method remove (line 10254) | def remove(self, key: str) -> None: ... method scope (line 10255) | def scope(self) -> QSettings.Scope: ... method setArrayIndex (line 10256) | def setArrayIndex(self, i: int) -> None: ... method setAtomicSyncRequired (line 10257) | def setAtomicSyncRequired(self, enable: bool) -> None: ... method setDefaultFormat (line 10259) | def setDefaultFormat(format: QSettings.Format) -> None: ... method setFallbacksEnabled (line 10260) | def setFallbacksEnabled(self, b: bool) -> None: ... method setIniCodec (line 10262) | def setIniCodec(self, codecName: bytes) -> None: ... method setIniCodec (line 10264) | def setIniCodec(self, codec: QTextCodec) -> None: ... method setPath (line 10266) | def setPath(format: QSettings.Format, scope: QSettings.Scope, path: st... method setValue (line 10267) | def setValue(self, key: str, value: typing.Any) -> None: ... method status (line 10268) | def status(self) -> QSettings.Status: ... method sync (line 10269) | def sync(self) -> None: ... method value (line 10270) | def value(self, arg__1: str, defaultValue: typing.Any | None = ..., ty... class QSignalBlocker (line 10272) | class QSignalBlocker(shiboken2.Object): method __init__ (line 10273) | def __init__(self, o: QObject) -> None: ... method reblock (line 10274) | def reblock(self) -> None: ... method unblock (line 10275) | def unblock(self) -> None: ... class QSignalMapper (line 10277) | class QSignalMapper(QObject): method __init__ (line 10284) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method map (line 10286) | def map(self, sender: QObject) -> None: ... method map (line 10288) | def map(self) -> None: ... method mapping (line 10290) | def mapping(self, text: str) -> QObject: ... method mapping (line 10292) | def mapping(self, object: QObject) -> QObject: ... method mapping (line 10294) | def mapping(self, id: int) -> QObject: ... method removeMappings (line 10295) | def removeMappings(self, sender: QObject) -> None: ... method setMapping (line 10297) | def setMapping(self, sender: QObject, text: str) -> None: ... method setMapping (line 10299) | def setMapping(self, sender: QObject, object: QObject) -> None: ... method setMapping (line 10301) | def setMapping(self, sender: QObject, id: int) -> None: ... class QSignalTransition (line 10303) | class QSignalTransition(QAbstractTransition): method __init__ (line 10306) | def __init__(self, arg__1: object, arg__2: QState | None = ..., destro... method __init__ (line 10308) | def __init__(self, sender: QObject, signal: bytes, sourceState: QState... method __init__ (line 10310) | def __init__(self, sourceState: QState | None = ..., destroyed: typing... method event (line 10311) | def event(self, e: QEvent) -> bool: ... method eventTest (line 10312) | def eventTest(self, event: QEvent) -> bool: ... method onTransition (line 10313) | def onTransition(self, event: QEvent) -> None: ... method senderObject (line 10314) | def senderObject(self) -> QObject: ... method setSenderObject (line 10315) | def setSenderObject(self, sender: QObject) -> None: ... method setSignal (line 10316) | def setSignal(self, signal: QByteArray | bytes) -> None: ... method signal (line 10317) | def signal(self) -> QByteArray: ... class QSize (line 10319) | class QSize(shiboken2.Object): method __init__ (line 10321) | def __init__(self, w: int, h: int) -> None: ... method __init__ (line 10323) | def __init__(self, QSize: QSize) -> None: ... method __init__ (line 10325) | def __init__(self) -> None: ... method boundedTo (line 10326) | def boundedTo(self, arg__1: QSize) -> QSize: ... method expandedTo (line 10327) | def expandedTo(self, arg__1: QSize) -> QSize: ... method grownBy (line 10328) | def grownBy(self, m: QMargins) -> QSize: ... method height (line 10329) | def height(self) -> int: ... method isEmpty (line 10330) | def isEmpty(self) -> bool: ... method isNull (line 10331) | def isNull(self) -> bool: ... method isValid (line 10332) | def isValid(self) -> bool: ... method scale (line 10334) | def scale(self, w: int, h: int, mode: Qt.AspectRatioMode) -> None: ... method scale (line 10336) | def scale(self, s: QSize, mode: Qt.AspectRatioMode) -> None: ... method scaled (line 10338) | def scaled(self, w: int, h: int, mode: Qt.AspectRatioMode) -> QSize: ... method scaled (line 10340) | def scaled(self, s: QSize, mode: Qt.AspectRatioMode) -> QSize: ... method setHeight (line 10341) | def setHeight(self, h: int) -> None: ... method setWidth (line 10342) | def setWidth(self, w: int) -> None: ... method shrunkBy (line 10343) | def shrunkBy(self, m: QMargins) -> QSize: ... method toTuple (line 10344) | def toTuple(self) -> tuple: ... method transpose (line 10345) | def transpose(self) -> None: ... method transposed (line 10346) | def transposed(self) -> QSize: ... method width (line 10347) | def width(self) -> int: ... method __add__ (line 10348) | def __add__(self, s2: QSize) -> QSize: ... method __bool__ (line 10349) | def __bool__(self) -> bool: ... method __copy__ (line 10350) | def __copy__(self) -> None: ... method __eq__ (line 10351) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10352) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10353) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10354) | def __hash__(self) -> int: ... method __iadd__ (line 10355) | def __iadd__(self, arg__1: QSize) -> QSize: ... method __imul__ (line 10356) | def __imul__(self, c: float) -> QSize: ... method __isub__ (line 10357) | def __isub__(self, arg__1: QSize) -> QSize: ... method __le__ (line 10358) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10359) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10360) | def __mul__(self, c: float) -> QSize: ... method __ne__ (line 10361) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 10362) | def __radd__(self, other): ... method __rmul__ (line 10363) | def __rmul__(self, other): ... method __rsub__ (line 10364) | def __rsub__(self, other): ... method __rtruediv__ (line 10365) | def __rtruediv__(self, other): ... method __sub__ (line 10366) | def __sub__(self, s2: QSize) -> QSize: ... method __truediv__ (line 10367) | def __truediv__(self, other): ... class QSizeF (line 10369) | class QSizeF(shiboken2.Object): method __init__ (line 10371) | def __init__(self, w: float, h: float) -> None: ... method __init__ (line 10373) | def __init__(self, sz: QSize) -> None: ... method __init__ (line 10375) | def __init__(self, QSizeF: QSizeF) -> None: ... method __init__ (line 10377) | def __init__(self) -> None: ... method boundedTo (line 10378) | def boundedTo(self, arg__1: QSizeF) -> QSizeF: ... method expandedTo (line 10379) | def expandedTo(self, arg__1: QSizeF) -> QSizeF: ... method grownBy (line 10380) | def grownBy(self, m: QMarginsF) -> QSizeF: ... method height (line 10381) | def height(self) -> float: ... method isEmpty (line 10382) | def isEmpty(self) -> bool: ... method isNull (line 10383) | def isNull(self) -> bool: ... method isValid (line 10384) | def isValid(self) -> bool: ... method scale (line 10386) | def scale(self, w: float, h: float, mode: Qt.AspectRatioMode) -> None:... method scale (line 10388) | def scale(self, s: QSizeF, mode: Qt.AspectRatioMode) -> None: ... method scaled (line 10390) | def scaled(self, w: float, h: float, mode: Qt.AspectRatioMode) -> QSiz... method scaled (line 10392) | def scaled(self, s: QSizeF, mode: Qt.AspectRatioMode) -> QSizeF: ... method setHeight (line 10393) | def setHeight(self, h: float) -> None: ... method setWidth (line 10394) | def setWidth(self, w: float) -> None: ... method shrunkBy (line 10395) | def shrunkBy(self, m: QMarginsF) -> QSizeF: ... method toSize (line 10396) | def toSize(self) -> QSize: ... method toTuple (line 10397) | def toTuple(self) -> tuple: ... method transpose (line 10398) | def transpose(self) -> None: ... method transposed (line 10399) | def transposed(self) -> QSizeF: ... method width (line 10400) | def width(self) -> float: ... method __add__ (line 10401) | def __add__(self, s2: QSizeF) -> QSizeF: ... method __bool__ (line 10402) | def __bool__(self) -> bool: ... method __copy__ (line 10403) | def __copy__(self) -> None: ... method __eq__ (line 10404) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10405) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10406) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 10407) | def __iadd__(self, arg__1: QSizeF) -> QSizeF: ... method __imul__ (line 10408) | def __imul__(self, c: float) -> QSizeF: ... method __isub__ (line 10409) | def __isub__(self, arg__1: QSizeF) -> QSizeF: ... method __le__ (line 10410) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10411) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10412) | def __mul__(self, c: float) -> QSizeF: ... method __ne__ (line 10413) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 10414) | def __radd__(self, other): ... method __rmul__ (line 10415) | def __rmul__(self, other): ... method __rsub__ (line 10416) | def __rsub__(self, other): ... method __rtruediv__ (line 10417) | def __rtruediv__(self, other): ... method __sub__ (line 10418) | def __sub__(self, s2: QSizeF) -> QSizeF: ... method __truediv__ (line 10419) | def __truediv__(self, other): ... class QSocketDescriptor (line 10421) | class QSocketDescriptor(shiboken2.Object): method __init__ (line 10423) | def __init__(self, descriptor: int = ...) -> None: ... method __init__ (line 10425) | def __init__(self, QSocketDescriptor: QSocketDescriptor) -> None: ... method isValid (line 10426) | def isValid(self) -> bool: ... method __copy__ (line 10427) | def __copy__(self) -> None: ... class QSocketNotifier (line 10429) | class QSocketNotifier(QObject): class Type (line 10430) | class Type: method __init__ (line 10437) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10438) | def __add__(self, other: typing.SupportsInt) -> QSocketNotifier.Type... method __and__ (line 10439) | def __and__(self, other: typing.SupportsInt) -> QSocketNotifier.Type... method __bool__ (line 10440) | def __bool__(self) -> bool: ... method __eq__ (line 10441) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10442) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10443) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10444) | def __hash__(self) -> int: ... method __index__ (line 10445) | def __index__(self) -> int: ... method __int__ (line 10446) | def __int__(self) -> int: ... method __le__ (line 10447) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10448) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10449) | def __mul__(self, other: typing.SupportsInt) -> QSocketNotifier.Type... method __ne__ (line 10450) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10451) | def __or__(self, other: typing.SupportsInt) -> QSocketNotifier.Type:... method __pos__ (line 10452) | def __pos__(self): ... method __radd__ (line 10453) | def __radd__(self, other: typing.SupportsInt) -> QSocketNotifier.Typ... method __rand__ (line 10454) | def __rand__(self, other: typing.SupportsInt) -> QSocketNotifier.Typ... method __rmul__ (line 10455) | def __rmul__(self, other: typing.SupportsInt) -> QSocketNotifier.Typ... method __ror__ (line 10456) | def __ror__(self, other: typing.SupportsInt) -> QSocketNotifier.Type... method __rsub__ (line 10457) | def __rsub__(self, other: typing.SupportsInt) -> QSocketNotifier.Typ... method __rxor__ (line 10458) | def __rxor__(self, other: typing.SupportsInt) -> QSocketNotifier.Typ... method __sub__ (line 10459) | def __sub__(self, other: typing.SupportsInt) -> QSocketNotifier.Type... method __xor__ (line 10460) | def __xor__(self, other: typing.SupportsInt) -> QSocketNotifier.Type... method __init__ (line 10467) | def __init__(self, socket: int, arg__2: QSocketNotifier.Type, parent: ... method __init__ (line 10469) | def __init__(self, arg__1: object, arg__2: QSocketNotifier.Type, paren... method event (line 10470) | def event(self, arg__1: QEvent) -> bool: ... method isEnabled (line 10471) | def isEnabled(self) -> bool: ... method setEnabled (line 10472) | def setEnabled(self, arg__1: bool) -> None: ... method socket (line 10473) | def socket(self) -> int: ... method type (line 10474) | def type(self) -> QSocketNotifier.Type: ... class QSortFilterProxyModel (line 10476) | class QSortFilterProxyModel(QAbstractProxyModel): method __init__ (line 10485) | def __init__(self, parent: QObject | None = ..., columnsAboutToBeInser... method buddy (line 10486) | def buddy(self, index: QModelIndex) -> QModelIndex: ... method canFetchMore (line 10487) | def canFetchMore(self, parent: QModelIndex) -> bool: ... method columnCount (line 10488) | def columnCount(self, parent: QModelIndex = ...) -> int: ... method data (line 10489) | def data(self, index: QModelIndex, role: Qt.ItemDataRole = ...) -> typ... method dropMimeData (line 10490) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method dynamicSortFilter (line 10491) | def dynamicSortFilter(self) -> bool: ... method fetchMore (line 10492) | def fetchMore(self, parent: QModelIndex) -> None: ... method filterAcceptsColumn (line 10493) | def filterAcceptsColumn(self, source_column: int, source_parent: QMode... method filterAcceptsRow (line 10494) | def filterAcceptsRow(self, source_row: int, source_parent: QModelIndex... method filterCaseSensitivity (line 10495) | def filterCaseSensitivity(self) -> Qt.CaseSensitivity: ... method filterKeyColumn (line 10496) | def filterKeyColumn(self) -> int: ... method filterRegExp (line 10497) | def filterRegExp(self) -> QRegExp: ... method filterRegularExpression (line 10498) | def filterRegularExpression(self) -> QRegularExpression: ... method filterRole (line 10499) | def filterRole(self) -> Qt.ItemDataRole: ... method flags (line 10500) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method hasChildren (line 10501) | def hasChildren(self, parent: QModelIndex = ...) -> bool: ... method headerData (line 10502) | def headerData(self, section: int, orientation: Qt.Orientation, role: ... method index (line 10503) | def index(self, row: int, column: int, parent: QModelIndex = ...) -> Q... method insertColumns (line 10504) | def insertColumns(self, column: int, count: int, parent: QModelIndex =... method insertRows (line 10505) | def insertRows(self, row: int, count: int, parent: QModelIndex = ...) ... method invalidate (line 10506) | def invalidate(self) -> None: ... method invalidateFilter (line 10507) | def invalidateFilter(self) -> None: ... method isRecursiveFilteringEnabled (line 10508) | def isRecursiveFilteringEnabled(self) -> bool: ... method isSortLocaleAware (line 10509) | def isSortLocaleAware(self) -> bool: ... method lessThan (line 10510) | def lessThan(self, source_left: QModelIndex, source_right: QModelIndex... method mapFromSource (line 10511) | def mapFromSource(self, sourceIndex: QModelIndex) -> QModelIndex: ... method mapSelectionFromSource (line 10512) | def mapSelectionFromSource(self, sourceSelection: QItemSelection) -> Q... method mapSelectionToSource (line 10513) | def mapSelectionToSource(self, proxySelection: QItemSelection) -> QIte... method mapToSource (line 10514) | def mapToSource(self, proxyIndex: QModelIndex) -> QModelIndex: ... method match (line 10515) | def match(self, start: QModelIndex, role: Qt.ItemDataRole, value: typi... method mimeData (line 10516) | def mimeData(self, indexes: list[int]) -> QMimeData: ... # type: igno... method mimeTypes (line 10517) | def mimeTypes(self) -> list[str]: ... method parent (line 10519) | def parent(self, child: QModelIndex) -> QModelIndex: ... method parent (line 10521) | def parent(self) -> QObject: ... method removeColumns (line 10522) | def removeColumns(self, column: int, count: int, parent: QModelIndex =... method removeRows (line 10523) | def removeRows(self, row: int, count: int, parent: QModelIndex = ...) ... method rowCount (line 10524) | def rowCount(self, parent: QModelIndex = ...) -> int: ... method setData (line 10525) | def setData(self, index: QModelIndex, value: typing.Any, role: Qt.Item... method setDynamicSortFilter (line 10526) | def setDynamicSortFilter(self, enable: bool) -> None: ... method setFilterCaseSensitivity (line 10527) | def setFilterCaseSensitivity(self, cs: Qt.CaseSensitivity) -> None: ... method setFilterFixedString (line 10528) | def setFilterFixedString(self, pattern: str) -> None: ... method setFilterKeyColumn (line 10529) | def setFilterKeyColumn(self, column: int) -> None: ... method setFilterRegExp (line 10531) | def setFilterRegExp(self, regExp: QRegExp) -> None: ... method setFilterRegExp (line 10533) | def setFilterRegExp(self, pattern: str) -> None: ... method setFilterRegularExpression (line 10535) | def setFilterRegularExpression(self, regularExpression: QRegularExpres... method setFilterRegularExpression (line 10537) | def setFilterRegularExpression(self, pattern: str) -> None: ... method setFilterRole (line 10538) | def setFilterRole(self, role: Qt.ItemDataRole) -> None: ... method setFilterWildcard (line 10539) | def setFilterWildcard(self, pattern: str) -> None: ... method setHeaderData (line 10540) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setRecursiveFilteringEnabled (line 10541) | def setRecursiveFilteringEnabled(self, recursive: bool) -> None: ... method setSortCaseSensitivity (line 10542) | def setSortCaseSensitivity(self, cs: Qt.CaseSensitivity) -> None: ... method setSortLocaleAware (line 10543) | def setSortLocaleAware(self, on: bool) -> None: ... method setSortRole (line 10544) | def setSortRole(self, role: Qt.ItemDataRole) -> None: ... method setSourceModel (line 10545) | def setSourceModel(self, sourceModel: QAbstractItemModel) -> None: ... method sibling (line 10546) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... method sort (line 10547) | def sort(self, column: int, order: Qt.SortOrder = ...) -> None: ... method sortCaseSensitivity (line 10548) | def sortCaseSensitivity(self) -> Qt.CaseSensitivity: ... method sortColumn (line 10549) | def sortColumn(self) -> int: ... method sortOrder (line 10550) | def sortOrder(self) -> Qt.SortOrder: ... method sortRole (line 10551) | def sortRole(self) -> int: ... method span (line 10552) | def span(self, index: QModelIndex) -> QSize: ... method supportedDropActions (line 10553) | def supportedDropActions(self) -> Qt.DropActions | Qt.DropAction: ... class QStandardPaths (line 10555) | class QStandardPaths(shiboken2.Object): class LocateOption (line 10556) | class LocateOption: method __init__ (line 10562) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 10563) | def __and__(self, other: typing.SupportsInt) -> QStandardPaths.Locat... method __bool__ (line 10564) | def __bool__(self) -> bool: ... method __eq__ (line 10565) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10566) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10567) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10568) | def __hash__(self) -> int: ... method __index__ (line 10569) | def __index__(self) -> int: ... method __int__ (line 10570) | def __int__(self) -> int: ... method __invert__ (line 10571) | def __invert__(self) -> QStandardPaths.LocateOptions: ... method __le__ (line 10572) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10573) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10574) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10575) | def __or__(self, other: typing.SupportsInt) -> QStandardPaths.Locate... method __rand__ (line 10576) | def __rand__(self, other: typing.SupportsInt) -> QStandardPaths.Loca... method __ror__ (line 10577) | def __ror__(self, other: typing.SupportsInt) -> QStandardPaths.Locat... method __rxor__ (line 10578) | def __rxor__(self, other: typing.SupportsInt) -> QStandardPaths.Loca... method __xor__ (line 10579) | def __xor__(self, other: typing.SupportsInt) -> QStandardPaths.Locat... class LocateOptions (line 10581) | class LocateOptions: method __init__ (line 10583) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 10584) | def __and__(self, other: typing.SupportsInt) -> QStandardPaths.Locat... method __bool__ (line 10585) | def __bool__(self) -> bool: ... method __eq__ (line 10586) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10587) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10588) | def __gt__(self, other: object) -> bool: ... method __index__ (line 10589) | def __index__(self) -> int: ... method __int__ (line 10590) | def __int__(self) -> int: ... method __invert__ (line 10591) | def __invert__(self) -> QStandardPaths.LocateOptions: ... method __le__ (line 10592) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10593) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10594) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10595) | def __or__(self, other: typing.SupportsInt) -> QStandardPaths.Locate... method __rand__ (line 10596) | def __rand__(self, other: typing.SupportsInt) -> QStandardPaths.Loca... method __ror__ (line 10597) | def __ror__(self, other: typing.SupportsInt) -> QStandardPaths.Locat... method __rxor__ (line 10598) | def __rxor__(self, other: typing.SupportsInt) -> QStandardPaths.Loca... method __xor__ (line 10599) | def __xor__(self, other: typing.SupportsInt) -> QStandardPaths.Locat... class StandardLocation (line 10601) | class StandardLocation: method __init__ (line 10625) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10626) | def __add__(self, other: typing.SupportsInt) -> QStandardPaths.Stand... method __and__ (line 10627) | def __and__(self, other: typing.SupportsInt) -> QStandardPaths.Stand... method __bool__ (line 10628) | def __bool__(self) -> bool: ... method __eq__ (line 10629) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10630) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10631) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10632) | def __hash__(self) -> int: ... method __index__ (line 10633) | def __index__(self) -> int: ... method __int__ (line 10634) | def __int__(self) -> int: ... method __le__ (line 10635) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10636) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10637) | def __mul__(self, other: typing.SupportsInt) -> QStandardPaths.Stand... method __ne__ (line 10638) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10639) | def __or__(self, other: typing.SupportsInt) -> QStandardPaths.Standa... method __pos__ (line 10640) | def __pos__(self): ... method __radd__ (line 10641) | def __radd__(self, other: typing.SupportsInt) -> QStandardPaths.Stan... method __rand__ (line 10642) | def __rand__(self, other: typing.SupportsInt) -> QStandardPaths.Stan... method __rmul__ (line 10643) | def __rmul__(self, other: typing.SupportsInt) -> QStandardPaths.Stan... method __ror__ (line 10644) | def __ror__(self, other: typing.SupportsInt) -> QStandardPaths.Stand... method __rsub__ (line 10645) | def __rsub__(self, other: typing.SupportsInt) -> QStandardPaths.Stan... method __rxor__ (line 10646) | def __rxor__(self, other: typing.SupportsInt) -> QStandardPaths.Stan... method __sub__ (line 10647) | def __sub__(self, other: typing.SupportsInt) -> QStandardPaths.Stand... method __xor__ (line 10648) | def __xor__(self, other: typing.SupportsInt) -> QStandardPaths.Stand... method __init__ (line 10672) | def __init__(cls, *args, **kwargs) -> None: ... method displayName (line 10674) | def displayName(type: QStandardPaths.StandardLocation) -> str: ... method enableTestMode (line 10676) | def enableTestMode(testMode: bool) -> None: ... method findExecutable (line 10678) | def findExecutable(executableName: str, paths: typing.Iterable[str] = ... method isTestModeEnabled (line 10680) | def isTestModeEnabled() -> bool: ... method locate (line 10682) | def locate(type: QStandardPaths.StandardLocation, fileName: str, optio... method locateAll (line 10684) | def locateAll(type: QStandardPaths.StandardLocation, fileName: str, op... method setTestModeEnabled (line 10686) | def setTestModeEnabled(testMode: bool) -> None: ... method standardLocations (line 10688) | def standardLocations(type: QStandardPaths.StandardLocation) -> list[s... method writableLocation (line 10690) | def writableLocation(type: QStandardPaths.StandardLocation) -> str: ... class QState (line 10692) | class QState(QAbstractState): class ChildMode (line 10693) | class ChildMode: method __init__ (line 10699) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10700) | def __add__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __and__ (line 10701) | def __and__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __bool__ (line 10702) | def __bool__(self) -> bool: ... method __eq__ (line 10703) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10704) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10705) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10706) | def __hash__(self) -> int: ... method __index__ (line 10707) | def __index__(self) -> int: ... method __int__ (line 10708) | def __int__(self) -> int: ... method __le__ (line 10709) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10710) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10711) | def __mul__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __ne__ (line 10712) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10713) | def __or__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __pos__ (line 10714) | def __pos__(self): ... method __radd__ (line 10715) | def __radd__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __rand__ (line 10716) | def __rand__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __rmul__ (line 10717) | def __rmul__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __ror__ (line 10718) | def __ror__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __rsub__ (line 10719) | def __rsub__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __rxor__ (line 10720) | def __rxor__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __sub__ (line 10721) | def __sub__(self, other: typing.SupportsInt) -> QState.ChildMode: ... method __xor__ (line 10722) | def __xor__(self, other: typing.SupportsInt) -> QState.ChildMode: ... class RestorePolicy (line 10724) | class RestorePolicy: method __init__ (line 10730) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10731) | def __add__(self, other: typing.SupportsInt) -> QState.RestorePolicy... method __and__ (line 10732) | def __and__(self, other: typing.SupportsInt) -> QState.RestorePolicy... method __bool__ (line 10733) | def __bool__(self) -> bool: ... method __eq__ (line 10734) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10735) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10736) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10737) | def __hash__(self) -> int: ... method __index__ (line 10738) | def __index__(self) -> int: ... method __int__ (line 10739) | def __int__(self) -> int: ... method __le__ (line 10740) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10741) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10742) | def __mul__(self, other: typing.SupportsInt) -> QState.RestorePolicy... method __ne__ (line 10743) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10744) | def __or__(self, other: typing.SupportsInt) -> QState.RestorePolicy:... method __pos__ (line 10745) | def __pos__(self): ... method __radd__ (line 10746) | def __radd__(self, other: typing.SupportsInt) -> QState.RestorePolic... method __rand__ (line 10747) | def __rand__(self, other: typing.SupportsInt) -> QState.RestorePolic... method __rmul__ (line 10748) | def __rmul__(self, other: typing.SupportsInt) -> QState.RestorePolic... method __ror__ (line 10749) | def __ror__(self, other: typing.SupportsInt) -> QState.RestorePolicy... method __rsub__ (line 10750) | def __rsub__(self, other: typing.SupportsInt) -> QState.RestorePolic... method __rxor__ (line 10751) | def __rxor__(self, other: typing.SupportsInt) -> QState.RestorePolic... method __sub__ (line 10752) | def __sub__(self, other: typing.SupportsInt) -> QState.RestorePolicy... method __xor__ (line 10753) | def __xor__(self, other: typing.SupportsInt) -> QState.RestorePolicy... method __init__ (line 10765) | def __init__(self, parent: QState | None = ..., active: bool = ..., ac... method __init__ (line 10767) | def __init__(self, childMode: QState.ChildMode, parent: QState | None ... method addTransition (line 10769) | def addTransition(self, sender: QObject, signal: bytes, target: QAbstr... method addTransition (line 10771) | def addTransition(self, arg__1: object, arg__2: QAbstractState) -> QSi... method addTransition (line 10773) | def addTransition(self, transition: QAbstractTransition) -> None: ... method addTransition (line 10775) | def addTransition(self, target: QAbstractState) -> QAbstractTransition... method assignProperty (line 10776) | def assignProperty(self, object: QObject, name: str, value: typing.Any... method childMode (line 10777) | def childMode(self) -> QState.ChildMode: ... method errorState (line 10778) | def errorState(self) -> QAbstractState: ... method event (line 10779) | def event(self, e: QEvent) -> bool: ... method initialState (line 10780) | def initialState(self) -> QAbstractState: ... method onEntry (line 10781) | def onEntry(self, event: QEvent) -> None: ... method onExit (line 10782) | def onExit(self, event: QEvent) -> None: ... method removeTransition (line 10783) | def removeTransition(self, transition: QAbstractTransition) -> None: ... method setChildMode (line 10784) | def setChildMode(self, mode: QState.ChildMode) -> None: ... method setErrorState (line 10785) | def setErrorState(self, state: QAbstractState) -> None: ... method setInitialState (line 10786) | def setInitialState(self, state: QAbstractState) -> None: ... method transitions (line 10787) | def transitions(self) -> list[QAbstractTransition]: ... class QStateMachine (line 10789) | class QStateMachine(QState): class Error (line 10790) | class Error: method __init__ (line 10799) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10800) | def __add__(self, other: typing.SupportsInt) -> QStateMachine.Error:... method __and__ (line 10801) | def __and__(self, other: typing.SupportsInt) -> QStateMachine.Error:... method __bool__ (line 10802) | def __bool__(self) -> bool: ... method __eq__ (line 10803) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10804) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10805) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10806) | def __hash__(self) -> int: ... method __index__ (line 10807) | def __index__(self) -> int: ... method __int__ (line 10808) | def __int__(self) -> int: ... method __le__ (line 10809) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10810) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10811) | def __mul__(self, other: typing.SupportsInt) -> QStateMachine.Error:... method __ne__ (line 10812) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10813) | def __or__(self, other: typing.SupportsInt) -> QStateMachine.Error: ... method __pos__ (line 10814) | def __pos__(self): ... method __radd__ (line 10815) | def __radd__(self, other: typing.SupportsInt) -> QStateMachine.Error... method __rand__ (line 10816) | def __rand__(self, other: typing.SupportsInt) -> QStateMachine.Error... method __rmul__ (line 10817) | def __rmul__(self, other: typing.SupportsInt) -> QStateMachine.Error... method __ror__ (line 10818) | def __ror__(self, other: typing.SupportsInt) -> QStateMachine.Error:... method __rsub__ (line 10819) | def __rsub__(self, other: typing.SupportsInt) -> QStateMachine.Error... method __rxor__ (line 10820) | def __rxor__(self, other: typing.SupportsInt) -> QStateMachine.Error... method __sub__ (line 10821) | def __sub__(self, other: typing.SupportsInt) -> QStateMachine.Error:... method __xor__ (line 10822) | def __xor__(self, other: typing.SupportsInt) -> QStateMachine.Error:... class EventPriority (line 10824) | class EventPriority: method __init__ (line 10830) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10831) | def __add__(self, other: typing.SupportsInt) -> QStateMachine.EventP... method __and__ (line 10832) | def __and__(self, other: typing.SupportsInt) -> QStateMachine.EventP... method __bool__ (line 10833) | def __bool__(self) -> bool: ... method __eq__ (line 10834) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10835) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10836) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10837) | def __hash__(self) -> int: ... method __index__ (line 10838) | def __index__(self) -> int: ... method __int__ (line 10839) | def __int__(self) -> int: ... method __le__ (line 10840) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10841) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10842) | def __mul__(self, other: typing.SupportsInt) -> QStateMachine.EventP... method __ne__ (line 10843) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10844) | def __or__(self, other: typing.SupportsInt) -> QStateMachine.EventPr... method __pos__ (line 10845) | def __pos__(self): ... method __radd__ (line 10846) | def __radd__(self, other: typing.SupportsInt) -> QStateMachine.Event... method __rand__ (line 10847) | def __rand__(self, other: typing.SupportsInt) -> QStateMachine.Event... method __rmul__ (line 10848) | def __rmul__(self, other: typing.SupportsInt) -> QStateMachine.Event... method __ror__ (line 10849) | def __ror__(self, other: typing.SupportsInt) -> QStateMachine.EventP... method __rsub__ (line 10850) | def __rsub__(self, other: typing.SupportsInt) -> QStateMachine.Event... method __rxor__ (line 10851) | def __rxor__(self, other: typing.SupportsInt) -> QStateMachine.Event... method __sub__ (line 10852) | def __sub__(self, other: typing.SupportsInt) -> QStateMachine.EventP... method __xor__ (line 10853) | def __xor__(self, other: typing.SupportsInt) -> QStateMachine.EventP... class SignalEvent (line 10855) | class SignalEvent(QEvent): method __init__ (line 10857) | def __init__(self, sender: QObject, signalIndex: int, arguments: typ... method __init__ (line 10859) | def __init__(self, SignalEvent: QStateMachine.SignalEvent) -> None: ... method arguments (line 10860) | def arguments(self) -> list[typing.Any]: ... method sender (line 10861) | def sender(self) -> QObject: ... method signalIndex (line 10862) | def signalIndex(self) -> int: ... method __copy__ (line 10863) | def __copy__(self) -> None: ... class WrappedEvent (line 10865) | class WrappedEvent(QEvent): method __init__ (line 10867) | def __init__(self, object: QObject, event: QEvent) -> None: ... method __init__ (line 10869) | def __init__(self, WrappedEvent: QStateMachine.WrappedEvent) -> None... method event (line 10870) | def event(self) -> QEvent: ... method object (line 10871) | def object(self) -> QObject: ... method __copy__ (line 10872) | def __copy__(self) -> None: ... method __init__ (line 10885) | def __init__(self, parent: QObject | None = ..., active: bool = ..., a... method __init__ (line 10887) | def __init__(self, childMode: QState.ChildMode, parent: QObject | None... method addDefaultAnimation (line 10888) | def addDefaultAnimation(self, animation: QAbstractAnimation) -> None: ... method addState (line 10889) | def addState(self, state: QAbstractState) -> None: ... method beginMicrostep (line 10890) | def beginMicrostep(self, event: QEvent) -> None: ... method beginSelectTransitions (line 10891) | def beginSelectTransitions(self, event: QEvent) -> None: ... method cancelDelayedEvent (line 10892) | def cancelDelayedEvent(self, id: int) -> bool: ... method clearError (line 10893) | def clearError(self) -> None: ... method configuration (line 10895) | def configuration(self) -> set[QAbstractState]: ... method configuration (line 10897) | def configuration(self) -> list[QAbstractState]: ... # type: ignore[o... method defaultAnimations (line 10898) | def defaultAnimations(self) -> list[QAbstractAnimation]: ... method endMicrostep (line 10899) | def endMicrostep(self, event: QEvent) -> None: ... method endSelectTransitions (line 10900) | def endSelectTransitions(self, event: QEvent) -> None: ... method error (line 10901) | def error(self) -> QStateMachine.Error: ... method errorString (line 10902) | def errorString(self) -> str: ... method event (line 10903) | def event(self, e: QEvent) -> bool: ... method eventFilter (line 10904) | def eventFilter(self, watched: QObject, event: QEvent) -> bool: ... method globalRestorePolicy (line 10905) | def globalRestorePolicy(self) -> QState.RestorePolicy: ... method isAnimated (line 10906) | def isAnimated(self) -> bool: ... method isRunning (line 10907) | def isRunning(self) -> bool: ... method onEntry (line 10908) | def onEntry(self, event: QEvent) -> None: ... method onExit (line 10909) | def onExit(self, event: QEvent) -> None: ... method postDelayedEvent (line 10910) | def postDelayedEvent(self, event: QEvent, delay: int) -> int: ... method postEvent (line 10911) | def postEvent(self, event: QEvent, priority: QStateMachine.EventPriori... method removeDefaultAnimation (line 10912) | def removeDefaultAnimation(self, animation: QAbstractAnimation) -> Non... method removeState (line 10913) | def removeState(self, state: QAbstractState) -> None: ... method setAnimated (line 10914) | def setAnimated(self, enabled: bool) -> None: ... method setGlobalRestorePolicy (line 10915) | def setGlobalRestorePolicy(self, restorePolicy: QState.RestorePolicy) ... method setRunning (line 10916) | def setRunning(self, running: bool) -> None: ... method start (line 10917) | def start(self) -> None: ... method stop (line 10918) | def stop(self) -> None: ... class QStorageInfo (line 10920) | class QStorageInfo(shiboken2.Object): method __init__ (line 10922) | def __init__(self, path: str) -> None: ... method __init__ (line 10924) | def __init__(self, other: QStorageInfo) -> None: ... method __init__ (line 10926) | def __init__(self, dir: QDir) -> None: ... method __init__ (line 10928) | def __init__(self) -> None: ... method blockSize (line 10929) | def blockSize(self) -> int: ... method bytesAvailable (line 10930) | def bytesAvailable(self) -> int: ... method bytesFree (line 10931) | def bytesFree(self) -> int: ... method bytesTotal (line 10932) | def bytesTotal(self) -> int: ... method device (line 10933) | def device(self) -> QByteArray: ... method displayName (line 10934) | def displayName(self) -> str: ... method fileSystemType (line 10935) | def fileSystemType(self) -> QByteArray: ... method isReadOnly (line 10936) | def isReadOnly(self) -> bool: ... method isReady (line 10937) | def isReady(self) -> bool: ... method isRoot (line 10938) | def isRoot(self) -> bool: ... method isValid (line 10939) | def isValid(self) -> bool: ... method mountedVolumes (line 10941) | def mountedVolumes() -> list[QStorageInfo]: ... method name (line 10942) | def name(self) -> str: ... method refresh (line 10943) | def refresh(self) -> None: ... method root (line 10945) | def root() -> QStorageInfo: ... method rootPath (line 10946) | def rootPath(self) -> str: ... method setPath (line 10947) | def setPath(self, path: str) -> None: ... method subvolume (line 10948) | def subvolume(self) -> QByteArray: ... method swap (line 10949) | def swap(self, other: QStorageInfo) -> None: ... method __copy__ (line 10950) | def __copy__(self) -> None: ... method __eq__ (line 10951) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10952) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10953) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10954) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10955) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10956) | def __ne__(self, other: object) -> bool: ... class QStringListModel (line 10958) | class QStringListModel(QAbstractListModel): method __init__ (line 10961) | def __init__(self, strings: typing.Iterable[str], parent: QObject | No... method __init__ (line 10963) | def __init__(self, parent: QObject | None = ..., columnsAboutToBeInser... method data (line 10964) | def data(self, index: QModelIndex, role: Qt.ItemDataRole = ...) -> typ... method flags (line 10965) | def flags(self, index: QModelIndex) -> Qt.ItemFlags | Qt.ItemFlag: ... method insertRows (line 10966) | def insertRows(self, row: int, count: int, parent: QModelIndex = ...) ... method itemData (line 10967) | def itemData(self, index: QModelIndex) -> dict[int, typing.Any]: ... method moveRows (line 10968) | def moveRows(self, sourceParent: QModelIndex, sourceRow: int, count: i... method removeRows (line 10969) | def removeRows(self, row: int, count: int, parent: QModelIndex = ...) ... method rowCount (line 10970) | def rowCount(self, parent: QModelIndex = ...) -> int: ... method setData (line 10971) | def setData(self, index: QModelIndex, value: typing.Any, role: Qt.Item... method setItemData (line 10972) | def setItemData(self, index: QModelIndex, roles: dict[int, typing.Any]... method setStringList (line 10973) | def setStringList(self, strings: typing.Iterable[str]) -> None: ... method sibling (line 10974) | def sibling(self, row: int, column: int, idx: QModelIndex) -> QModelIn... method sort (line 10975) | def sort(self, column: int, order: Qt.SortOrder = ...) -> None: ... method stringList (line 10976) | def stringList(self) -> list[str]: ... method supportedDropActions (line 10977) | def supportedDropActions(self) -> Qt.DropActions | Qt.DropAction: ... class QSysInfo (line 10979) | class QSysInfo(shiboken2.Object): class Endian (line 10980) | class Endian: method __init__ (line 10987) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10988) | def __add__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __and__ (line 10989) | def __and__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __bool__ (line 10990) | def __bool__(self) -> bool: ... method __eq__ (line 10991) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10992) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10993) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10994) | def __hash__(self) -> int: ... method __index__ (line 10995) | def __index__(self) -> int: ... method __int__ (line 10996) | def __int__(self) -> int: ... method __le__ (line 10997) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10998) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10999) | def __mul__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __ne__ (line 11000) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11001) | def __or__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __pos__ (line 11002) | def __pos__(self): ... method __radd__ (line 11003) | def __radd__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __rand__ (line 11004) | def __rand__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __rmul__ (line 11005) | def __rmul__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __ror__ (line 11006) | def __ror__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __rsub__ (line 11007) | def __rsub__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __rxor__ (line 11008) | def __rxor__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __sub__ (line 11009) | def __sub__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... method __xor__ (line 11010) | def __xor__(self, other: typing.SupportsInt) -> QSysInfo.Endian: ... class MacVersion (line 11012) | class MacVersion: method __init__ (line 11073) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11074) | def __add__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion:... method __and__ (line 11075) | def __and__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion:... method __bool__ (line 11076) | def __bool__(self) -> bool: ... method __eq__ (line 11077) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11078) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11079) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11080) | def __hash__(self) -> int: ... method __index__ (line 11081) | def __index__(self) -> int: ... method __int__ (line 11082) | def __int__(self) -> int: ... method __le__ (line 11083) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11084) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11085) | def __mul__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion:... method __ne__ (line 11086) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11087) | def __or__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion: ... method __pos__ (line 11088) | def __pos__(self): ... method __radd__ (line 11089) | def __radd__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion... method __rand__ (line 11090) | def __rand__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion... method __rmul__ (line 11091) | def __rmul__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion... method __ror__ (line 11092) | def __ror__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion:... method __rsub__ (line 11093) | def __rsub__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion... method __rxor__ (line 11094) | def __rxor__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion... method __sub__ (line 11095) | def __sub__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion:... method __xor__ (line 11096) | def __xor__(self, other: typing.SupportsInt) -> QSysInfo.MacVersion:... class Sizes (line 11098) | class Sizes: method __init__ (line 11103) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11104) | def __add__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __and__ (line 11105) | def __and__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __bool__ (line 11106) | def __bool__(self) -> bool: ... method __eq__ (line 11107) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11108) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11109) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11110) | def __hash__(self) -> int: ... method __index__ (line 11111) | def __index__(self) -> int: ... method __int__ (line 11112) | def __int__(self) -> int: ... method __le__ (line 11113) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11114) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11115) | def __mul__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __ne__ (line 11116) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11117) | def __or__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __pos__ (line 11118) | def __pos__(self): ... method __radd__ (line 11119) | def __radd__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __rand__ (line 11120) | def __rand__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __rmul__ (line 11121) | def __rmul__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __ror__ (line 11122) | def __ror__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __rsub__ (line 11123) | def __rsub__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __rxor__ (line 11124) | def __rxor__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __sub__ (line 11125) | def __sub__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __xor__ (line 11126) | def __xor__(self, other: typing.SupportsInt) -> QSysInfo.Sizes: ... method __init__ (line 11189) | def __init__(self) -> None: ... method bootUniqueId (line 11191) | def bootUniqueId() -> QByteArray: ... method buildAbi (line 11193) | def buildAbi() -> str: ... method buildCpuArchitecture (line 11195) | def buildCpuArchitecture() -> str: ... method currentCpuArchitecture (line 11197) | def currentCpuArchitecture() -> str: ... method kernelType (line 11199) | def kernelType() -> str: ... method kernelVersion (line 11201) | def kernelVersion() -> str: ... method macVersion (line 11203) | def macVersion() -> QSysInfo.MacVersion: ... method machineHostName (line 11205) | def machineHostName() -> str: ... method machineUniqueId (line 11207) | def machineUniqueId() -> QByteArray: ... method prettyProductName (line 11209) | def prettyProductName() -> str: ... method productType (line 11211) | def productType() -> str: ... method productVersion (line 11213) | def productVersion() -> str: ... class QSystemSemaphore (line 11215) | class QSystemSemaphore(shiboken2.Object): class AccessMode (line 11216) | class AccessMode: method __init__ (line 11222) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11223) | def __add__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acc... method __and__ (line 11224) | def __and__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acc... method __bool__ (line 11225) | def __bool__(self) -> bool: ... method __eq__ (line 11226) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11227) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11228) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11229) | def __hash__(self) -> int: ... method __index__ (line 11230) | def __index__(self) -> int: ... method __int__ (line 11231) | def __int__(self) -> int: ... method __le__ (line 11232) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11233) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11234) | def __mul__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acc... method __ne__ (line 11235) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11236) | def __or__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acce... method __pos__ (line 11237) | def __pos__(self): ... method __radd__ (line 11238) | def __radd__(self, other: typing.SupportsInt) -> QSystemSemaphore.Ac... method __rand__ (line 11239) | def __rand__(self, other: typing.SupportsInt) -> QSystemSemaphore.Ac... method __rmul__ (line 11240) | def __rmul__(self, other: typing.SupportsInt) -> QSystemSemaphore.Ac... method __ror__ (line 11241) | def __ror__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acc... method __rsub__ (line 11242) | def __rsub__(self, other: typing.SupportsInt) -> QSystemSemaphore.Ac... method __rxor__ (line 11243) | def __rxor__(self, other: typing.SupportsInt) -> QSystemSemaphore.Ac... method __sub__ (line 11244) | def __sub__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acc... method __xor__ (line 11245) | def __xor__(self, other: typing.SupportsInt) -> QSystemSemaphore.Acc... class SystemSemaphoreError (line 11247) | class SystemSemaphoreError: method __init__ (line 11258) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11259) | def __add__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sys... method __and__ (line 11260) | def __and__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sys... method __bool__ (line 11261) | def __bool__(self) -> bool: ... method __eq__ (line 11262) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11263) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11264) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11265) | def __hash__(self) -> int: ... method __index__ (line 11266) | def __index__(self) -> int: ... method __int__ (line 11267) | def __int__(self) -> int: ... method __le__ (line 11268) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11269) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11270) | def __mul__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sys... method __ne__ (line 11271) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11272) | def __or__(self, other: typing.SupportsInt) -> QSystemSemaphore.Syst... method __pos__ (line 11273) | def __pos__(self): ... method __radd__ (line 11274) | def __radd__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sy... method __rand__ (line 11275) | def __rand__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sy... method __rmul__ (line 11276) | def __rmul__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sy... method __ror__ (line 11277) | def __ror__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sys... method __rsub__ (line 11278) | def __rsub__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sy... method __rxor__ (line 11279) | def __rxor__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sy... method __sub__ (line 11280) | def __sub__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sys... method __xor__ (line 11281) | def __xor__(self, other: typing.SupportsInt) -> QSystemSemaphore.Sys... method __init__ (line 11291) | def __init__(self, key: str, initialValue: int = ..., mode: QSystemSem... method acquire (line 11292) | def acquire(self) -> bool: ... method error (line 11293) | def error(self) -> QSystemSemaphore.SystemSemaphoreError: ... method errorString (line 11294) | def errorString(self) -> str: ... method key (line 11295) | def key(self) -> str: ... method release (line 11296) | def release(self, n: int = ...) -> bool: ... method setKey (line 11297) | def setKey(self, key: str, initialValue: int = ..., mode: QSystemSemap... class QTemporaryDir (line 11299) | class QTemporaryDir(shiboken2.Object): method __init__ (line 11301) | def __init__(self, templateName: str) -> None: ... method __init__ (line 11303) | def __init__(self) -> None: ... method autoRemove (line 11304) | def autoRemove(self) -> bool: ... method errorString (line 11305) | def errorString(self) -> str: ... method filePath (line 11306) | def filePath(self, fileName: str) -> str: ... method isValid (line 11307) | def isValid(self) -> bool: ... method path (line 11308) | def path(self) -> str: ... method remove (line 11309) | def remove(self) -> bool: ... method setAutoRemove (line 11310) | def setAutoRemove(self, b: bool) -> None: ... class QTemporaryFile (line 11312) | class QTemporaryFile(QFile): method __init__ (line 11315) | def __init__(self, templateName: str, parent: QObject | None, aboutToC... method __init__ (line 11317) | def __init__(self, templateName: str, aboutToClose: typing.Callable = ... method __init__ (line 11319) | def __init__(self, parent: QObject | None, aboutToClose: typing.Callab... method __init__ (line 11321) | def __init__(self, aboutToClose: typing.Callable = ..., bytesWritten: ... method autoRemove (line 11322) | def autoRemove(self) -> bool: ... method createLocalFile (line 11325) | def createLocalFile(fileName: str) -> QTemporaryFile: ... method createLocalFile (line 11328) | def createLocalFile(file: QFile) -> QTemporaryFile: ... method createNativeFile (line 11331) | def createNativeFile(fileName: str) -> QTemporaryFile: ... method createNativeFile (line 11334) | def createNativeFile(file: QFile) -> QTemporaryFile: ... method fileName (line 11335) | def fileName(self) -> str: ... method fileTemplate (line 11336) | def fileTemplate(self) -> str: ... method open (line 11338) | def open(self, flags: QIODevice.OpenMode | QIODevice.OpenModeFlag) -> ... method open (line 11340) | def open(self) -> bool: ... method rename (line 11341) | def rename(self, newName: str) -> bool: ... # type: ignore[override] method setAutoRemove (line 11342) | def setAutoRemove(self, b: bool) -> None: ... method setFileTemplate (line 11343) | def setFileTemplate(self, name: str) -> None: ... class QTextBoundaryFinder (line 11345) | class QTextBoundaryFinder(shiboken2.Object): class BoundaryReason (line 11346) | class BoundaryReason: method __init__ (line 11356) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11357) | def __and__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __bool__ (line 11358) | def __bool__(self) -> bool: ... method __eq__ (line 11359) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11360) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11361) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11362) | def __hash__(self) -> int: ... method __index__ (line 11363) | def __index__(self) -> int: ... method __int__ (line 11364) | def __int__(self) -> int: ... method __invert__ (line 11365) | def __invert__(self) -> QTextBoundaryFinder.BoundaryReasons: ... method __le__ (line 11366) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11367) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11368) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11369) | def __or__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.B... method __rand__ (line 11370) | def __rand__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __ror__ (line 11371) | def __ror__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __rxor__ (line 11372) | def __rxor__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __xor__ (line 11373) | def __xor__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... class BoundaryReasons (line 11375) | class BoundaryReasons: method __init__ (line 11377) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11378) | def __and__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __bool__ (line 11379) | def __bool__(self) -> bool: ... method __eq__ (line 11380) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11381) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11382) | def __gt__(self, other: object) -> bool: ... method __index__ (line 11383) | def __index__(self) -> int: ... method __int__ (line 11384) | def __int__(self) -> int: ... method __invert__ (line 11385) | def __invert__(self) -> QTextBoundaryFinder.BoundaryReasons: ... method __le__ (line 11386) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11387) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11388) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11389) | def __or__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.B... method __rand__ (line 11390) | def __rand__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __ror__ (line 11391) | def __ror__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __rxor__ (line 11392) | def __rxor__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __xor__ (line 11393) | def __xor__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... class BoundaryType (line 11395) | class BoundaryType: method __init__ (line 11403) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11404) | def __add__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __and__ (line 11405) | def __and__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __bool__ (line 11406) | def __bool__(self) -> bool: ... method __eq__ (line 11407) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11408) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11409) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11410) | def __hash__(self) -> int: ... method __index__ (line 11411) | def __index__(self) -> int: ... method __int__ (line 11412) | def __int__(self) -> int: ... method __le__ (line 11413) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11414) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11415) | def __mul__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __ne__ (line 11416) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11417) | def __or__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.B... method __pos__ (line 11418) | def __pos__(self): ... method __radd__ (line 11419) | def __radd__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __rand__ (line 11420) | def __rand__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __rmul__ (line 11421) | def __rmul__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __ror__ (line 11422) | def __ror__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __rsub__ (line 11423) | def __rsub__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __rxor__ (line 11424) | def __rxor__(self, other: typing.SupportsInt) -> QTextBoundaryFinder... method __sub__ (line 11425) | def __sub__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __xor__ (line 11426) | def __xor__(self, other: typing.SupportsInt) -> QTextBoundaryFinder.... method __init__ (line 11438) | def __init__(self, type: QTextBoundaryFinder.BoundaryType, string: str... method __init__ (line 11440) | def __init__(self, other: QTextBoundaryFinder) -> None: ... method __init__ (line 11442) | def __init__(self) -> None: ... method boundaryReasons (line 11443) | def boundaryReasons(self) -> QTextBoundaryFinder.BoundaryReasons | QTe... method isAtBoundary (line 11444) | def isAtBoundary(self) -> bool: ... method isValid (line 11445) | def isValid(self) -> bool: ... method position (line 11446) | def position(self) -> int: ... method setPosition (line 11447) | def setPosition(self, position: int) -> None: ... method string (line 11448) | def string(self) -> str: ... method toEnd (line 11449) | def toEnd(self) -> None: ... method toNextBoundary (line 11450) | def toNextBoundary(self) -> int: ... method toPreviousBoundary (line 11451) | def toPreviousBoundary(self) -> int: ... method toStart (line 11452) | def toStart(self) -> None: ... method type (line 11453) | def type(self) -> QTextBoundaryFinder.BoundaryType: ... method __copy__ (line 11454) | def __copy__(self) -> None: ... class QTextCodec (line 11456) | class QTextCodec(shiboken2.Object): class ConversionFlag (line 11457) | class ConversionFlag: method __init__ (line 11465) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11466) | def __and__(self, other: typing.SupportsInt) -> QTextCodec.Conversio... method __bool__ (line 11467) | def __bool__(self) -> bool: ... method __eq__ (line 11468) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11469) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11470) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11471) | def __hash__(self) -> int: ... method __index__ (line 11472) | def __index__(self) -> int: ... method __int__ (line 11473) | def __int__(self) -> int: ... method __invert__ (line 11474) | def __invert__(self) -> QTextCodec.ConversionFlags: ... method __le__ (line 11475) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11476) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11477) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11478) | def __or__(self, other: typing.SupportsInt) -> QTextCodec.Conversion... method __rand__ (line 11479) | def __rand__(self, other: typing.SupportsInt) -> QTextCodec.Conversi... method __ror__ (line 11480) | def __ror__(self, other: typing.SupportsInt) -> QTextCodec.Conversio... method __rxor__ (line 11481) | def __rxor__(self, other: typing.SupportsInt) -> QTextCodec.Conversi... method __xor__ (line 11482) | def __xor__(self, other: typing.SupportsInt) -> QTextCodec.Conversio... class ConversionFlags (line 11484) | class ConversionFlags: method __init__ (line 11486) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11487) | def __and__(self, other: typing.SupportsInt) -> QTextCodec.Conversio... method __bool__ (line 11488) | def __bool__(self) -> bool: ... method __eq__ (line 11489) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11490) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11491) | def __gt__(self, other: object) -> bool: ... method __index__ (line 11492) | def __index__(self) -> int: ... method __int__ (line 11493) | def __int__(self) -> int: ... method __invert__ (line 11494) | def __invert__(self) -> QTextCodec.ConversionFlags: ... method __le__ (line 11495) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11496) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11497) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11498) | def __or__(self, other: typing.SupportsInt) -> QTextCodec.Conversion... method __rand__ (line 11499) | def __rand__(self, other: typing.SupportsInt) -> QTextCodec.Conversi... method __ror__ (line 11500) | def __ror__(self, other: typing.SupportsInt) -> QTextCodec.Conversio... method __rxor__ (line 11501) | def __rxor__(self, other: typing.SupportsInt) -> QTextCodec.Conversi... method __xor__ (line 11502) | def __xor__(self, other: typing.SupportsInt) -> QTextCodec.Conversio... class ConverterState (line 11504) | class ConverterState(shiboken2.Object): method __init__ (line 11508) | def __init__(self, f: QTextCodec.ConversionFlags | QTextCodec.Conver... method __init__ (line 11513) | def __init__(self) -> None: ... method aliases (line 11514) | def aliases(self) -> list[QByteArray]: ... method availableCodecs (line 11516) | def availableCodecs() -> list[QByteArray]: ... method availableMibs (line 11518) | def availableMibs() -> list[int]: ... method canEncode (line 11519) | def canEncode(self, arg__1: str) -> bool: ... method codecForHtml (line 11522) | def codecForHtml(ba: QByteArray | bytes, defaultCodec: QTextCodec) -> ... method codecForHtml (line 11525) | def codecForHtml(ba: QByteArray | bytes) -> QTextCodec: ... method codecForLocale (line 11527) | def codecForLocale() -> QTextCodec: ... method codecForMib (line 11529) | def codecForMib(mib: int) -> QTextCodec: ... method codecForName (line 11532) | def codecForName(name: QByteArray | bytes) -> QTextCodec: ... method codecForName (line 11535) | def codecForName(name: bytes) -> QTextCodec: ... # type: ignore[overl... method codecForUtfText (line 11538) | def codecForUtfText(ba: QByteArray | bytes, defaultCodec: QTextCodec) ... method codecForUtfText (line 11541) | def codecForUtfText(ba: QByteArray | bytes) -> QTextCodec: ... method convertToUnicode (line 11542) | def convertToUnicode(self, in_: bytes, length: int, state: QTextCodec.... method fromUnicode (line 11543) | def fromUnicode(self, uc: str) -> QByteArray: ... method makeDecoder (line 11544) | def makeDecoder(self, flags: QTextCodec.ConversionFlags | QTextCodec.C... method makeEncoder (line 11545) | def makeEncoder(self, flags: QTextCodec.ConversionFlags | QTextCodec.C... method mibEnum (line 11546) | def mibEnum(self) -> int: ... method name (line 11547) | def name(self) -> QByteArray: ... method setCodecForLocale (line 11549) | def setCodecForLocale(c: QTextCodec) -> None: ... method toUnicode (line 11551) | def toUnicode(self, in_: bytes, length: int, state: QTextCodec.Convert... method toUnicode (line 11553) | def toUnicode(self, chars: bytes) -> str: ... method toUnicode (line 11555) | def toUnicode(self, arg__1: QByteArray | bytes) -> str: ... class QTextDecoder (line 11557) | class QTextDecoder(shiboken2.Object): method __init__ (line 11559) | def __init__(self, codec: QTextCodec, flags: QTextCodec.ConversionFlag... method __init__ (line 11561) | def __init__(self, codec: QTextCodec) -> None: ... method hasFailure (line 11562) | def hasFailure(self) -> bool: ... method needsMoreData (line 11563) | def needsMoreData(self) -> bool: ... method toUnicode (line 11564) | def toUnicode(self, ba: QByteArray | bytes) -> str: ... class QTextEncoder (line 11566) | class QTextEncoder(shiboken2.Object): method __init__ (line 11568) | def __init__(self, codec: QTextCodec, flags: QTextCodec.ConversionFlag... method __init__ (line 11570) | def __init__(self, codec: QTextCodec) -> None: ... method fromUnicode (line 11571) | def fromUnicode(self, str: str) -> QByteArray: ... method hasFailure (line 11572) | def hasFailure(self) -> bool: ... class QTextStream (line 11574) | class QTextStream(shiboken2.Object): class FieldAlignment (line 11575) | class FieldAlignment: method __init__ (line 11583) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11584) | def __add__(self, other: typing.SupportsInt) -> QTextStream.FieldAli... method __and__ (line 11585) | def __and__(self, other: typing.SupportsInt) -> QTextStream.FieldAli... method __bool__ (line 11586) | def __bool__(self) -> bool: ... method __eq__ (line 11587) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11588) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11589) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11590) | def __hash__(self) -> int: ... method __index__ (line 11591) | def __index__(self) -> int: ... method __int__ (line 11592) | def __int__(self) -> int: ... method __le__ (line 11593) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11594) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11595) | def __mul__(self, other: typing.SupportsInt) -> QTextStream.FieldAli... method __ne__ (line 11596) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11597) | def __or__(self, other: typing.SupportsInt) -> QTextStream.FieldAlig... method __pos__ (line 11598) | def __pos__(self): ... method __radd__ (line 11599) | def __radd__(self, other: typing.SupportsInt) -> QTextStream.FieldAl... method __rand__ (line 11600) | def __rand__(self, other: typing.SupportsInt) -> QTextStream.FieldAl... method __rmul__ (line 11601) | def __rmul__(self, other: typing.SupportsInt) -> QTextStream.FieldAl... method __ror__ (line 11602) | def __ror__(self, other: typing.SupportsInt) -> QTextStream.FieldAli... method __rsub__ (line 11603) | def __rsub__(self, other: typing.SupportsInt) -> QTextStream.FieldAl... method __rxor__ (line 11604) | def __rxor__(self, other: typing.SupportsInt) -> QTextStream.FieldAl... method __sub__ (line 11605) | def __sub__(self, other: typing.SupportsInt) -> QTextStream.FieldAli... method __xor__ (line 11606) | def __xor__(self, other: typing.SupportsInt) -> QTextStream.FieldAli... class NumberFlag (line 11608) | class NumberFlag: method __init__ (line 11617) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11618) | def __and__(self, other: typing.SupportsInt) -> QTextStream.NumberFl... method __bool__ (line 11619) | def __bool__(self) -> bool: ... method __eq__ (line 11620) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11621) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11622) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11623) | def __hash__(self) -> int: ... method __index__ (line 11624) | def __index__(self) -> int: ... method __int__ (line 11625) | def __int__(self) -> int: ... method __invert__ (line 11626) | def __invert__(self) -> QTextStream.NumberFlags: ... method __le__ (line 11627) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11628) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11629) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11630) | def __or__(self, other: typing.SupportsInt) -> QTextStream.NumberFla... method __rand__ (line 11631) | def __rand__(self, other: typing.SupportsInt) -> QTextStream.NumberF... method __ror__ (line 11632) | def __ror__(self, other: typing.SupportsInt) -> QTextStream.NumberFl... method __rxor__ (line 11633) | def __rxor__(self, other: typing.SupportsInt) -> QTextStream.NumberF... method __xor__ (line 11634) | def __xor__(self, other: typing.SupportsInt) -> QTextStream.NumberFl... class NumberFlags (line 11636) | class NumberFlags: method __init__ (line 11638) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11639) | def __and__(self, other: typing.SupportsInt) -> QTextStream.NumberFl... method __bool__ (line 11640) | def __bool__(self) -> bool: ... method __eq__ (line 11641) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11642) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11643) | def __gt__(self, other: object) -> bool: ... method __index__ (line 11644) | def __index__(self) -> int: ... method __int__ (line 11645) | def __int__(self) -> int: ... method __invert__ (line 11646) | def __invert__(self) -> QTextStream.NumberFlags: ... method __le__ (line 11647) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11648) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11649) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11650) | def __or__(self, other: typing.SupportsInt) -> QTextStream.NumberFla... method __rand__ (line 11651) | def __rand__(self, other: typing.SupportsInt) -> QTextStream.NumberF... method __ror__ (line 11652) | def __ror__(self, other: typing.SupportsInt) -> QTextStream.NumberFl... method __rxor__ (line 11653) | def __rxor__(self, other: typing.SupportsInt) -> QTextStream.NumberF... method __xor__ (line 11654) | def __xor__(self, other: typing.SupportsInt) -> QTextStream.NumberFl... class RealNumberNotation (line 11656) | class RealNumberNotation: method __init__ (line 11663) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11664) | def __add__(self, other: typing.SupportsInt) -> QTextStream.RealNumb... method __and__ (line 11665) | def __and__(self, other: typing.SupportsInt) -> QTextStream.RealNumb... method __bool__ (line 11666) | def __bool__(self) -> bool: ... method __eq__ (line 11667) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11668) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11669) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11670) | def __hash__(self) -> int: ... method __index__ (line 11671) | def __index__(self) -> int: ... method __int__ (line 11672) | def __int__(self) -> int: ... method __le__ (line 11673) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11674) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11675) | def __mul__(self, other: typing.SupportsInt) -> QTextStream.RealNumb... method __ne__ (line 11676) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11677) | def __or__(self, other: typing.SupportsInt) -> QTextStream.RealNumbe... method __pos__ (line 11678) | def __pos__(self): ... method __radd__ (line 11679) | def __radd__(self, other: typing.SupportsInt) -> QTextStream.RealNum... method __rand__ (line 11680) | def __rand__(self, other: typing.SupportsInt) -> QTextStream.RealNum... method __rmul__ (line 11681) | def __rmul__(self, other: typing.SupportsInt) -> QTextStream.RealNum... method __ror__ (line 11682) | def __ror__(self, other: typing.SupportsInt) -> QTextStream.RealNumb... method __rsub__ (line 11683) | def __rsub__(self, other: typing.SupportsInt) -> QTextStream.RealNum... method __rxor__ (line 11684) | def __rxor__(self, other: typing.SupportsInt) -> QTextStream.RealNum... method __sub__ (line 11685) | def __sub__(self, other: typing.SupportsInt) -> QTextStream.RealNumb... method __xor__ (line 11686) | def __xor__(self, other: typing.SupportsInt) -> QTextStream.RealNumb... class Status (line 11688) | class Status: method __init__ (line 11696) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11697) | def __add__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __and__ (line 11698) | def __and__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __bool__ (line 11699) | def __bool__(self) -> bool: ... method __eq__ (line 11700) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11701) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11702) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11703) | def __hash__(self) -> int: ... method __index__ (line 11704) | def __index__(self) -> int: ... method __int__ (line 11705) | def __int__(self) -> int: ... method __le__ (line 11706) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11707) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11708) | def __mul__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __ne__ (line 11709) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11710) | def __or__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __pos__ (line 11711) | def __pos__(self): ... method __radd__ (line 11712) | def __radd__(self, other: typing.SupportsInt) -> QTextStream.Status:... method __rand__ (line 11713) | def __rand__(self, other: typing.SupportsInt) -> QTextStream.Status:... method __rmul__ (line 11714) | def __rmul__(self, other: typing.SupportsInt) -> QTextStream.Status:... method __ror__ (line 11715) | def __ror__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __rsub__ (line 11716) | def __rsub__(self, other: typing.SupportsInt) -> QTextStream.Status:... method __rxor__ (line 11717) | def __rxor__(self, other: typing.SupportsInt) -> QTextStream.Status:... method __sub__ (line 11718) | def __sub__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __xor__ (line 11719) | def __xor__(self, other: typing.SupportsInt) -> QTextStream.Status: ... method __init__ (line 11737) | def __init__(self, array: QByteArray | bytes, openMode: QIODevice.Open... method __init__ (line 11739) | def __init__(self, device: QIODevice) -> None: ... method __init__ (line 11741) | def __init__(self) -> None: ... method atEnd (line 11742) | def atEnd(self) -> bool: ... method autoDetectUnicode (line 11743) | def autoDetectUnicode(self) -> bool: ... method codec (line 11744) | def codec(self) -> QTextCodec: ... method device (line 11745) | def device(self) -> QIODevice: ... method fieldAlignment (line 11746) | def fieldAlignment(self) -> QTextStream.FieldAlignment: ... method fieldWidth (line 11747) | def fieldWidth(self) -> int: ... method flush (line 11748) | def flush(self) -> None: ... method generateByteOrderMark (line 11749) | def generateByteOrderMark(self) -> bool: ... method integerBase (line 11750) | def integerBase(self) -> int: ... method locale (line 11751) | def locale(self) -> QLocale: ... method numberFlags (line 11752) | def numberFlags(self) -> QTextStream.NumberFlags | QTextStream.NumberF... method padChar (line 11753) | def padChar(self) -> str: ... method pos (line 11754) | def pos(self) -> int: ... method read (line 11755) | def read(self, maxlen: int) -> str: ... method readAll (line 11756) | def readAll(self) -> str: ... method readLine (line 11757) | def readLine(self, maxlen: int = ...) -> str: ... method realNumberNotation (line 11758) | def realNumberNotation(self) -> QTextStream.RealNumberNotation: ... method realNumberPrecision (line 11759) | def realNumberPrecision(self) -> int: ... method reset (line 11760) | def reset(self) -> None: ... method resetStatus (line 11761) | def resetStatus(self) -> None: ... method seek (line 11762) | def seek(self, pos: int) -> bool: ... method setAutoDetectUnicode (line 11763) | def setAutoDetectUnicode(self, enabled: bool) -> None: ... method setCodec (line 11765) | def setCodec(self, codecName: bytes) -> None: ... method setCodec (line 11767) | def setCodec(self, codec: QTextCodec) -> None: ... method setDevice (line 11768) | def setDevice(self, device: QIODevice) -> None: ... method setFieldAlignment (line 11769) | def setFieldAlignment(self, alignment: QTextStream.FieldAlignment) -> ... method setFieldWidth (line 11770) | def setFieldWidth(self, width: int) -> None: ... method setGenerateByteOrderMark (line 11771) | def setGenerateByteOrderMark(self, generate: bool) -> None: ... method setIntegerBase (line 11772) | def setIntegerBase(self, base: int) -> None: ... method setLocale (line 11773) | def setLocale(self, locale: QLocale) -> None: ... method setNumberFlags (line 11774) | def setNumberFlags(self, flags: QTextStream.NumberFlags | QTextStream.... method setPadChar (line 11775) | def setPadChar(self, ch: str) -> None: ... method setRealNumberNotation (line 11776) | def setRealNumberNotation(self, notation: QTextStream.RealNumberNotati... method setRealNumberPrecision (line 11777) | def setRealNumberPrecision(self, precision: int) -> None: ... method setStatus (line 11778) | def setStatus(self, status: QTextStream.Status) -> None: ... method skipWhiteSpace (line 11779) | def skipWhiteSpace(self) -> None: ... method status (line 11780) | def status(self) -> QTextStream.Status: ... method string (line 11781) | def string(self) -> list[str]: ... method __lshift__ (line 11783) | def __lshift__(self, s: str) -> QTextStream: ... method __lshift__ (line 11785) | def __lshift__(self, m: QTextStreamManipulator) -> QTextStream: ... method __lshift__ (line 11787) | def __lshift__(self, i: int) -> QTextStream: ... method __lshift__ (line 11789) | def __lshift__(self, f: float) -> QTextStream: ... method __lshift__ (line 11791) | def __lshift__(self, ch: str) -> QTextStream: ... # type: ignore[over... method __lshift__ (line 11793) | def __lshift__(self, ch: int) -> QTextStream: ... # type: ignore[over... method __lshift__ (line 11795) | def __lshift__(self, array: QByteArray | bytes) -> QTextStream: ... method __rlshift__ (line 11796) | def __rlshift__(self, other): ... method __rrshift__ (line 11797) | def __rrshift__(self, other): ... method __rshift__ (line 11798) | def __rshift__(self, array: QByteArray | bytes) -> QTextStream: ... class QTextStreamManipulator (line 11800) | class QTextStreamManipulator(shiboken2.Object): method __init__ (line 11802) | def __init__(cls, *args, **kwargs) -> None: ... method exec_ (line 11803) | def exec_(self, s: QTextStream) -> None: ... method __copy__ (line 11804) | def __copy__(self) -> None: ... class QThread (line 11806) | class QThread(QObject): class Priority (line 11807) | class Priority: method __init__ (line 11819) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11820) | def __add__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __and__ (line 11821) | def __and__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __bool__ (line 11822) | def __bool__(self) -> bool: ... method __eq__ (line 11823) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11824) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11825) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11826) | def __hash__(self) -> int: ... method __index__ (line 11827) | def __index__(self) -> int: ... method __int__ (line 11828) | def __int__(self) -> int: ... method __le__ (line 11829) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11830) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11831) | def __mul__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __ne__ (line 11832) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11833) | def __or__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __pos__ (line 11834) | def __pos__(self): ... method __radd__ (line 11835) | def __radd__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __rand__ (line 11836) | def __rand__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __rmul__ (line 11837) | def __rmul__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __ror__ (line 11838) | def __ror__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __rsub__ (line 11839) | def __rsub__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __rxor__ (line 11840) | def __rxor__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __sub__ (line 11841) | def __sub__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __xor__ (line 11842) | def __xor__(self, other: typing.SupportsInt) -> QThread.Priority: ... method __init__ (line 11854) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method currentThread (line 11856) | def currentThread() -> QThread: ... method event (line 11857) | def event(self, event: QEvent) -> bool: ... method eventDispatcher (line 11858) | def eventDispatcher(self) -> QAbstractEventDispatcher: ... method exec_ (line 11859) | def exec_(self) -> int: ... method exit (line 11860) | def exit(self, retcode: int = ...) -> None: ... method idealThreadCount (line 11862) | def idealThreadCount() -> int: ... method isFinished (line 11863) | def isFinished(self) -> bool: ... method isInterruptionRequested (line 11864) | def isInterruptionRequested(self) -> bool: ... method isRunning (line 11865) | def isRunning(self) -> bool: ... method loopLevel (line 11866) | def loopLevel(self) -> int: ... method msleep (line 11868) | def msleep(arg__1: int) -> None: ... method priority (line 11869) | def priority(self) -> QThread.Priority: ... method quit (line 11870) | def quit(self) -> None: ... method requestInterruption (line 11871) | def requestInterruption(self) -> None: ... method run (line 11872) | def run(self) -> None: ... method setEventDispatcher (line 11873) | def setEventDispatcher(self, eventDispatcher: QAbstractEventDispatcher... method setPriority (line 11874) | def setPriority(self, priority: QThread.Priority) -> None: ... method setStackSize (line 11875) | def setStackSize(self, stackSize: int) -> None: ... method setTerminationEnabled (line 11877) | def setTerminationEnabled(enabled: bool = ...) -> None: ... method sleep (line 11879) | def sleep(arg__1: int) -> None: ... method stackSize (line 11880) | def stackSize(self) -> int: ... method start (line 11881) | def start(self, priority: QThread.Priority = ...) -> None: ... method terminate (line 11882) | def terminate(self) -> None: ... method usleep (line 11884) | def usleep(arg__1: int) -> None: ... method wait (line 11886) | def wait(self, time: int) -> bool: ... method wait (line 11888) | def wait(self, deadline: QDeadlineTimer = ...) -> bool: ... method yieldCurrentThread (line 11890) | def yieldCurrentThread() -> None: ... class QThreadPool (line 11892) | class QThreadPool(QObject): method __init__ (line 11894) | def __init__(self, parent: QObject | None = ..., activeThreadCount: in... method activeThreadCount (line 11895) | def activeThreadCount(self) -> int: ... method cancel (line 11896) | def cancel(self, runnable: QRunnable) -> None: ... method clear (line 11897) | def clear(self) -> None: ... method contains (line 11898) | def contains(self, thread: QThread) -> bool: ... method expiryTimeout (line 11899) | def expiryTimeout(self) -> int: ... method globalInstance (line 11901) | def globalInstance() -> QThreadPool: ... method maxThreadCount (line 11902) | def maxThreadCount(self) -> int: ... method releaseThread (line 11903) | def releaseThread(self) -> None: ... method reserveThread (line 11904) | def reserveThread(self) -> None: ... method setExpiryTimeout (line 11905) | def setExpiryTimeout(self, expiryTimeout: int) -> None: ... method setMaxThreadCount (line 11906) | def setMaxThreadCount(self, maxThreadCount: int) -> None: ... method setStackSize (line 11907) | def setStackSize(self, stackSize: int) -> None: ... method stackSize (line 11908) | def stackSize(self) -> int: ... method start (line 11909) | def start(self, runnable: QRunnable, priority: int = ...) -> None: ... method tryStart (line 11910) | def tryStart(self, runnable: QRunnable) -> bool: ... method tryTake (line 11911) | def tryTake(self, runnable: QRunnable) -> bool: ... method waitForDone (line 11912) | def waitForDone(self, msecs: int = ...) -> bool: ... class QTime (line 11914) | class QTime(shiboken2.Object): method __init__ (line 11916) | def __init__(self, h: int, m: int, s: int = ..., ms: int = ...) -> Non... method __init__ (line 11918) | def __init__(self, QTime: QTime) -> None: ... method __init__ (line 11920) | def __init__(self) -> None: ... method addMSecs (line 11921) | def addMSecs(self, ms: int) -> QTime: ... method addSecs (line 11922) | def addSecs(self, secs: int) -> QTime: ... method currentTime (line 11924) | def currentTime() -> QTime: ... method elapsed (line 11925) | def elapsed(self) -> int: ... method fromMSecsSinceStartOfDay (line 11927) | def fromMSecsSinceStartOfDay(msecs: int) -> QTime: ... method fromString (line 11930) | def fromString(s: str, format: str) -> QTime: ... method fromString (line 11933) | def fromString(s: str, f: Qt.DateFormat = ...) -> QTime: ... method hour (line 11934) | def hour(self) -> int: ... method isNull (line 11935) | def isNull(self) -> bool: ... method isValid (line 11937) | def isValid(self) -> typing.Any: ... method minute (line 11938) | def minute(self) -> int: ... method msec (line 11939) | def msec(self) -> int: ... method msecsSinceStartOfDay (line 11940) | def msecsSinceStartOfDay(self) -> int: ... method msecsTo (line 11941) | def msecsTo(self, arg__1: QTime) -> int: ... method restart (line 11942) | def restart(self) -> int: ... method second (line 11943) | def second(self) -> int: ... method secsTo (line 11944) | def secsTo(self, arg__1: QTime) -> int: ... method setHMS (line 11945) | def setHMS(self, h: int, m: int, s: int, ms: int = ...) -> bool: ... method start (line 11946) | def start(self) -> None: ... method toPython (line 11947) | def toPython(self) -> typing.Any: ... method toString (line 11949) | def toString(self, format: str) -> str: ... method toString (line 11951) | def toString(self, f: Qt.DateFormat = ...) -> str: ... method __bool__ (line 11952) | def __bool__(self) -> bool: ... method __copy__ (line 11953) | def __copy__(self) -> None: ... method __eq__ (line 11954) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11955) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11956) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11957) | def __hash__(self) -> int: ... method __le__ (line 11958) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11959) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11960) | def __ne__(self, other: object) -> bool: ... class QTimeLine (line 11962) | class QTimeLine(QObject): class CurveShape (line 11963) | class CurveShape: method __init__ (line 11973) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11974) | def __add__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape... method __and__ (line 11975) | def __and__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape... method __bool__ (line 11976) | def __bool__(self) -> bool: ... method __eq__ (line 11977) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11978) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11979) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11980) | def __hash__(self) -> int: ... method __index__ (line 11981) | def __index__(self) -> int: ... method __int__ (line 11982) | def __int__(self) -> int: ... method __le__ (line 11983) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11984) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11985) | def __mul__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape... method __ne__ (line 11986) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11987) | def __or__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape:... method __pos__ (line 11988) | def __pos__(self): ... method __radd__ (line 11989) | def __radd__(self, other: typing.SupportsInt) -> QTimeLine.CurveShap... method __rand__ (line 11990) | def __rand__(self, other: typing.SupportsInt) -> QTimeLine.CurveShap... method __rmul__ (line 11991) | def __rmul__(self, other: typing.SupportsInt) -> QTimeLine.CurveShap... method __ror__ (line 11992) | def __ror__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape... method __rsub__ (line 11993) | def __rsub__(self, other: typing.SupportsInt) -> QTimeLine.CurveShap... method __rxor__ (line 11994) | def __rxor__(self, other: typing.SupportsInt) -> QTimeLine.CurveShap... method __sub__ (line 11995) | def __sub__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape... method __xor__ (line 11996) | def __xor__(self, other: typing.SupportsInt) -> QTimeLine.CurveShape... class Direction (line 11998) | class Direction: method __init__ (line 12004) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12005) | def __add__(self, other: typing.SupportsInt) -> QTimeLine.Direction:... method __and__ (line 12006) | def __and__(self, other: typing.SupportsInt) -> QTimeLine.Direction:... method __bool__ (line 12007) | def __bool__(self) -> bool: ... method __eq__ (line 12008) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12009) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12010) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12011) | def __hash__(self) -> int: ... method __index__ (line 12012) | def __index__(self) -> int: ... method __int__ (line 12013) | def __int__(self) -> int: ... method __le__ (line 12014) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12015) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12016) | def __mul__(self, other: typing.SupportsInt) -> QTimeLine.Direction:... method __ne__ (line 12017) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12018) | def __or__(self, other: typing.SupportsInt) -> QTimeLine.Direction: ... method __pos__ (line 12019) | def __pos__(self): ... method __radd__ (line 12020) | def __radd__(self, other: typing.SupportsInt) -> QTimeLine.Direction... method __rand__ (line 12021) | def __rand__(self, other: typing.SupportsInt) -> QTimeLine.Direction... method __rmul__ (line 12022) | def __rmul__(self, other: typing.SupportsInt) -> QTimeLine.Direction... method __ror__ (line 12023) | def __ror__(self, other: typing.SupportsInt) -> QTimeLine.Direction:... method __rsub__ (line 12024) | def __rsub__(self, other: typing.SupportsInt) -> QTimeLine.Direction... method __rxor__ (line 12025) | def __rxor__(self, other: typing.SupportsInt) -> QTimeLine.Direction... method __sub__ (line 12026) | def __sub__(self, other: typing.SupportsInt) -> QTimeLine.Direction:... method __xor__ (line 12027) | def __xor__(self, other: typing.SupportsInt) -> QTimeLine.Direction:... class State (line 12029) | class State: method __init__ (line 12036) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12037) | def __add__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __and__ (line 12038) | def __and__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __bool__ (line 12039) | def __bool__(self) -> bool: ... method __eq__ (line 12040) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12041) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12042) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12043) | def __hash__(self) -> int: ... method __index__ (line 12044) | def __index__(self) -> int: ... method __int__ (line 12045) | def __int__(self) -> int: ... method __le__ (line 12046) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12047) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12048) | def __mul__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __ne__ (line 12049) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12050) | def __or__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __pos__ (line 12051) | def __pos__(self): ... method __radd__ (line 12052) | def __radd__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __rand__ (line 12053) | def __rand__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __rmul__ (line 12054) | def __rmul__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __ror__ (line 12055) | def __ror__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __rsub__ (line 12056) | def __rsub__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __rxor__ (line 12057) | def __rxor__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __sub__ (line 12058) | def __sub__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __xor__ (line 12059) | def __xor__(self, other: typing.SupportsInt) -> QTimeLine.State: ... method __init__ (line 12076) | def __init__(self, duration: int = ..., parent: QObject | None = ..., ... method currentFrame (line 12077) | def currentFrame(self) -> int: ... method currentTime (line 12078) | def currentTime(self) -> int: ... method currentValue (line 12079) | def currentValue(self) -> float: ... method curveShape (line 12080) | def curveShape(self) -> QTimeLine.CurveShape: ... method direction (line 12081) | def direction(self) -> QTimeLine.Direction: ... method duration (line 12082) | def duration(self) -> int: ... method easingCurve (line 12083) | def easingCurve(self) -> QEasingCurve: ... method endFrame (line 12084) | def endFrame(self) -> int: ... method frameForTime (line 12085) | def frameForTime(self, msec: int) -> int: ... method loopCount (line 12086) | def loopCount(self) -> int: ... method resume (line 12087) | def resume(self) -> None: ... method setCurrentTime (line 12088) | def setCurrentTime(self, msec: int) -> None: ... method setCurveShape (line 12089) | def setCurveShape(self, shape: QTimeLine.CurveShape) -> None: ... method setDirection (line 12090) | def setDirection(self, direction: QTimeLine.Direction) -> None: ... method setDuration (line 12091) | def setDuration(self, duration: int) -> None: ... method setEasingCurve (line 12092) | def setEasingCurve(self, curve: QEasingCurve | QEasingCurve.Type) -> N... method setEndFrame (line 12093) | def setEndFrame(self, frame: int) -> None: ... method setFrameRange (line 12094) | def setFrameRange(self, startFrame: int, endFrame: int) -> None: ... method setLoopCount (line 12095) | def setLoopCount(self, count: int) -> None: ... method setPaused (line 12096) | def setPaused(self, paused: bool) -> None: ... method setStartFrame (line 12097) | def setStartFrame(self, frame: int) -> None: ... method setUpdateInterval (line 12098) | def setUpdateInterval(self, interval: int) -> None: ... method start (line 12099) | def start(self) -> None: ... method startFrame (line 12100) | def startFrame(self) -> int: ... method state (line 12101) | def state(self) -> QTimeLine.State: ... method stop (line 12102) | def stop(self) -> None: ... method timerEvent (line 12103) | def timerEvent(self, event: QTimerEvent) -> None: ... method toggleDirection (line 12104) | def toggleDirection(self) -> None: ... method updateInterval (line 12105) | def updateInterval(self) -> int: ... method valueForTime (line 12106) | def valueForTime(self, msec: int) -> float: ... class QTimeZone (line 12108) | class QTimeZone(shiboken2.Object): class NameType (line 12109) | class NameType: method __init__ (line 12117) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12118) | def __add__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... method __and__ (line 12119) | def __and__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... method __bool__ (line 12120) | def __bool__(self) -> bool: ... method __eq__ (line 12121) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12122) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12123) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12124) | def __hash__(self) -> int: ... method __index__ (line 12125) | def __index__(self) -> int: ... method __int__ (line 12126) | def __int__(self) -> int: ... method __le__ (line 12127) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12128) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12129) | def __mul__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... method __ne__ (line 12130) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12131) | def __or__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... method __pos__ (line 12132) | def __pos__(self): ... method __radd__ (line 12133) | def __radd__(self, other: typing.SupportsInt) -> QTimeZone.NameType:... method __rand__ (line 12134) | def __rand__(self, other: typing.SupportsInt) -> QTimeZone.NameType:... method __rmul__ (line 12135) | def __rmul__(self, other: typing.SupportsInt) -> QTimeZone.NameType:... method __ror__ (line 12136) | def __ror__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... method __rsub__ (line 12137) | def __rsub__(self, other: typing.SupportsInt) -> QTimeZone.NameType:... method __rxor__ (line 12138) | def __rxor__(self, other: typing.SupportsInt) -> QTimeZone.NameType:... method __sub__ (line 12139) | def __sub__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... method __xor__ (line 12140) | def __xor__(self, other: typing.SupportsInt) -> QTimeZone.NameType: ... class OffsetData (line 12142) | class OffsetData(shiboken2.Object): method __init__ (line 12149) | def __init__(self, OffsetData: QTimeZone.OffsetData) -> None: ... method __init__ (line 12151) | def __init__(self) -> None: ... method __copy__ (line 12152) | def __copy__(self) -> None: ... class TimeType (line 12154) | class TimeType: method __init__ (line 12161) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12162) | def __add__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __and__ (line 12163) | def __and__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __bool__ (line 12164) | def __bool__(self) -> bool: ... method __eq__ (line 12165) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12166) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12167) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12168) | def __hash__(self) -> int: ... method __index__ (line 12169) | def __index__(self) -> int: ... method __int__ (line 12170) | def __int__(self) -> int: ... method __le__ (line 12171) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12172) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12173) | def __mul__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __ne__ (line 12174) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12175) | def __or__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __pos__ (line 12176) | def __pos__(self): ... method __radd__ (line 12177) | def __radd__(self, other: typing.SupportsInt) -> QTimeZone.TimeType:... method __rand__ (line 12178) | def __rand__(self, other: typing.SupportsInt) -> QTimeZone.TimeType:... method __rmul__ (line 12179) | def __rmul__(self, other: typing.SupportsInt) -> QTimeZone.TimeType:... method __ror__ (line 12180) | def __ror__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __rsub__ (line 12181) | def __rsub__(self, other: typing.SupportsInt) -> QTimeZone.TimeType:... method __rxor__ (line 12182) | def __rxor__(self, other: typing.SupportsInt) -> QTimeZone.TimeType:... method __sub__ (line 12183) | def __sub__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __xor__ (line 12184) | def __xor__(self, other: typing.SupportsInt) -> QTimeZone.TimeType: ... method __init__ (line 12193) | def __init__(self, zoneId: QByteArray | bytes, offsetSeconds: int, nam... method __init__ (line 12195) | def __init__(self, other: QTimeZone) -> None: ... method __init__ (line 12197) | def __init__(self, offsetSeconds: int) -> None: ... method __init__ (line 12199) | def __init__(self, ianaId: QByteArray | bytes) -> None: ... method __init__ (line 12201) | def __init__(self) -> None: ... method abbreviation (line 12202) | def abbreviation(self, atDateTime: QDateTime | datetime.datetime) -> s... method availableTimeZoneIds (line 12205) | def availableTimeZoneIds(offsetSeconds: int) -> list[QByteArray]: ... method availableTimeZoneIds (line 12208) | def availableTimeZoneIds(country: QLocale.Country) -> list[QByteArray]... method availableTimeZoneIds (line 12211) | def availableTimeZoneIds() -> list[QByteArray]: ... method comment (line 12212) | def comment(self) -> str: ... method country (line 12213) | def country(self) -> QLocale.Country: ... method daylightTimeOffset (line 12214) | def daylightTimeOffset(self, atDateTime: QDateTime | datetime.datetime... method displayName (line 12216) | def displayName(self, timeType: QTimeZone.TimeType, nameType: QTimeZon... method displayName (line 12218) | def displayName(self, atDateTime: QDateTime | datetime.datetime, nameT... method hasDaylightTime (line 12219) | def hasDaylightTime(self) -> bool: ... method hasTransitions (line 12220) | def hasTransitions(self) -> bool: ... method ianaIdToWindowsId (line 12222) | def ianaIdToWindowsId(ianaId: QByteArray | bytes) -> QByteArray: ... method id (line 12223) | def id(self) -> QByteArray: ... method isDaylightTime (line 12224) | def isDaylightTime(self, atDateTime: QDateTime | datetime.datetime) ->... method isTimeZoneIdAvailable (line 12226) | def isTimeZoneIdAvailable(ianaId: QByteArray | bytes) -> bool: ... method isValid (line 12227) | def isValid(self) -> bool: ... method nextTransition (line 12228) | def nextTransition(self, afterDateTime: QDateTime | datetime.datetime)... method offsetData (line 12229) | def offsetData(self, forDateTime: QDateTime | datetime.datetime) -> QT... method offsetFromUtc (line 12230) | def offsetFromUtc(self, atDateTime: QDateTime | datetime.datetime) -> ... method previousTransition (line 12231) | def previousTransition(self, beforeDateTime: QDateTime | datetime.date... method standardTimeOffset (line 12232) | def standardTimeOffset(self, atDateTime: QDateTime | datetime.datetime... method swap (line 12233) | def swap(self, other: QTimeZone) -> None: ... method systemTimeZone (line 12235) | def systemTimeZone() -> QTimeZone: ... method systemTimeZoneId (line 12237) | def systemTimeZoneId() -> QByteArray: ... method transitions (line 12238) | def transitions(self, fromDateTime: QDateTime | datetime.datetime, toD... method utc (line 12240) | def utc() -> QTimeZone: ... method windowsIdToDefaultIanaId (line 12243) | def windowsIdToDefaultIanaId(windowsId: QByteArray | bytes, country: Q... method windowsIdToDefaultIanaId (line 12246) | def windowsIdToDefaultIanaId(windowsId: QByteArray | bytes) -> QByteAr... method windowsIdToIanaIds (line 12249) | def windowsIdToIanaIds(windowsId: QByteArray | bytes, country: QLocale... method windowsIdToIanaIds (line 12252) | def windowsIdToIanaIds(windowsId: QByteArray | bytes) -> list[QByteArr... method __copy__ (line 12253) | def __copy__(self) -> None: ... method __eq__ (line 12254) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12255) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12256) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12257) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12258) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12259) | def __ne__(self, other: object) -> bool: ... class QTimer (line 12261) | class QTimer(QObject): method __init__ (line 12264) | def __init__(self, parent: QObject | None = ..., active: bool = ..., d... method interval (line 12265) | def interval(self) -> int: ... method isActive (line 12266) | def isActive(self) -> bool: ... method isSingleShot (line 12267) | def isSingleShot(self) -> bool: ... method killTimer (line 12268) | def killTimer(self, arg__1: int) -> None: ... method remainingTime (line 12269) | def remainingTime(self) -> int: ... method setInterval (line 12270) | def setInterval(self, msec: int) -> None: ... method setSingleShot (line 12271) | def setSingleShot(self, singleShot: bool) -> None: ... method setTimerType (line 12272) | def setTimerType(self, atype: Qt.TimerType) -> None: ... method singleShot (line 12275) | def singleShot(msec: int, timerType: Qt.TimerType, receiver: QObject, ... method singleShot (line 12278) | def singleShot(msec: int, receiver: QObject, member: bytes) -> None: ... method singleShot (line 12281) | def singleShot(arg__1: int, arg__2: typing.Callable) -> None: ... method start (line 12283) | def start(self, msec: int) -> None: ... method start (line 12285) | def start(self) -> None: ... method stop (line 12286) | def stop(self) -> None: ... method timerEvent (line 12287) | def timerEvent(self, arg__1: QTimerEvent) -> None: ... method timerId (line 12288) | def timerId(self) -> int: ... method timerType (line 12289) | def timerType(self) -> Qt.TimerType: ... class QTimerEvent (line 12291) | class QTimerEvent(QEvent): method __init__ (line 12292) | def __init__(self, timerId: int) -> None: ... method timerId (line 12293) | def timerId(self) -> int: ... class QTranslator (line 12295) | class QTranslator(QObject): method __init__ (line 12297) | def __init__(self, parent: QObject | None = ..., destroyed: typing.Cal... method filePath (line 12298) | def filePath(self) -> str: ... method isEmpty (line 12299) | def isEmpty(self) -> bool: ... method language (line 12300) | def language(self) -> str: ... method load (line 12302) | def load(self, locale: QLocale, filename: str, prefix: str = ..., dire... method load (line 12304) | def load(self, filename: str, directory: str = ..., search_delimiters:... method load (line 12306) | def load(self, data: bytes, len: int, directory: str = ...) -> bool: ... method translate (line 12307) | def translate(self, context: bytes, sourceText: bytes, disambiguation:... class QTransposeProxyModel (line 12309) | class QTransposeProxyModel(QAbstractProxyModel): method __init__ (line 12311) | def __init__(self, parent: QObject | None = ..., columnsAboutToBeInser... method columnCount (line 12312) | def columnCount(self, parent: QModelIndex = ...) -> int: ... method headerData (line 12313) | def headerData(self, section: int, orientation: Qt.Orientation, role: ... method index (line 12314) | def index(self, row: int, column: int, parent: QModelIndex = ...) -> Q... method insertColumns (line 12315) | def insertColumns(self, column: int, count: int, parent: QModelIndex =... method insertRows (line 12316) | def insertRows(self, row: int, count: int, parent: QModelIndex = ...) ... method itemData (line 12317) | def itemData(self, index: QModelIndex) -> dict[int, typing.Any]: ... method mapFromSource (line 12318) | def mapFromSource(self, sourceIndex: QModelIndex) -> QModelIndex: ... method mapToSource (line 12319) | def mapToSource(self, proxyIndex: QModelIndex) -> QModelIndex: ... method moveColumns (line 12320) | def moveColumns(self, sourceParent: QModelIndex, sourceColumn: int, co... method moveRows (line 12321) | def moveRows(self, sourceParent: QModelIndex, sourceRow: int, count: i... method parent (line 12323) | def parent(self, index: QModelIndex) -> QModelIndex: ... method parent (line 12325) | def parent(self) -> QObject: ... method removeColumns (line 12326) | def removeColumns(self, column: int, count: int, parent: QModelIndex =... method removeRows (line 12327) | def removeRows(self, row: int, count: int, parent: QModelIndex = ...) ... method rowCount (line 12328) | def rowCount(self, parent: QModelIndex = ...) -> int: ... method setHeaderData (line 12329) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setItemData (line 12330) | def setItemData(self, index: QModelIndex, roles: dict[int, typing.Any]... method setSourceModel (line 12331) | def setSourceModel(self, newSourceModel: QAbstractItemModel) -> None: ... method sort (line 12332) | def sort(self, column: int, order: Qt.SortOrder = ...) -> None: ... method span (line 12333) | def span(self, index: QModelIndex) -> QSize: ... class QUrl (line 12335) | class QUrl(shiboken2.Object): class ComponentFormattingOption (line 12336) | class ComponentFormattingOption: method __init__ (line 12348) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12349) | def __and__(self, other: typing.SupportsInt) -> QUrl.FormattingOptio... method __bool__ (line 12350) | def __bool__(self) -> bool: ... method __eq__ (line 12351) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12352) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12353) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12354) | def __hash__(self) -> int: ... method __index__ (line 12355) | def __index__(self) -> int: ... method __int__ (line 12356) | def __int__(self) -> int: ... method __invert__ (line 12357) | def __invert__(self) -> QUrl.FormattingOptions: ... method __le__ (line 12358) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12359) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12360) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12361) | def __or__(self, other: typing.SupportsInt) -> QUrl.FormattingOption... method __rand__ (line 12362) | def __rand__(self, other: typing.SupportsInt) -> QUrl.FormattingOpti... method __ror__ (line 12363) | def __ror__(self, other: typing.SupportsInt) -> QUrl.FormattingOptio... method __rxor__ (line 12364) | def __rxor__(self, other: typing.SupportsInt) -> QUrl.FormattingOpti... method __xor__ (line 12365) | def __xor__(self, other: typing.SupportsInt) -> QUrl.FormattingOptio... class FormattingOptions (line 12367) | class FormattingOptions: method __init__ (line 12369) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12370) | def __and__(self, other: typing.SupportsInt) -> QUrl.FormattingOptio... method __bool__ (line 12371) | def __bool__(self) -> bool: ... method __eq__ (line 12372) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12373) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12374) | def __gt__(self, other: object) -> bool: ... method __index__ (line 12375) | def __index__(self) -> int: ... method __int__ (line 12376) | def __int__(self) -> int: ... method __invert__ (line 12377) | def __invert__(self) -> QUrl.FormattingOptions: ... method __le__ (line 12378) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12379) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12380) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12381) | def __or__(self, other: typing.SupportsInt) -> QUrl.FormattingOption... method __rand__ (line 12382) | def __rand__(self, other: typing.SupportsInt) -> QUrl.FormattingOpti... method __ror__ (line 12383) | def __ror__(self, other: typing.SupportsInt) -> QUrl.FormattingOptio... method __rxor__ (line 12384) | def __rxor__(self, other: typing.SupportsInt) -> QUrl.FormattingOpti... method __xor__ (line 12385) | def __xor__(self, other: typing.SupportsInt) -> QUrl.FormattingOptio... class ParsingMode (line 12387) | class ParsingMode: method __init__ (line 12394) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12395) | def __add__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __and__ (line 12396) | def __and__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __bool__ (line 12397) | def __bool__(self) -> bool: ... method __eq__ (line 12398) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12399) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12400) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12401) | def __hash__(self) -> int: ... method __index__ (line 12402) | def __index__(self) -> int: ... method __int__ (line 12403) | def __int__(self) -> int: ... method __le__ (line 12404) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12405) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12406) | def __mul__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __ne__ (line 12407) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12408) | def __or__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __pos__ (line 12409) | def __pos__(self): ... method __radd__ (line 12410) | def __radd__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __rand__ (line 12411) | def __rand__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __rmul__ (line 12412) | def __rmul__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __ror__ (line 12413) | def __ror__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __rsub__ (line 12414) | def __rsub__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __rxor__ (line 12415) | def __rxor__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __sub__ (line 12416) | def __sub__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... method __xor__ (line 12417) | def __xor__(self, other: typing.SupportsInt) -> QUrl.ParsingMode: ... class UrlFormattingOption (line 12419) | class UrlFormattingOption: method __init__ (line 12436) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12437) | def __add__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOp... method __and__ (line 12438) | def __and__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOp... method __bool__ (line 12439) | def __bool__(self) -> bool: ... method __eq__ (line 12440) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12441) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12442) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12443) | def __hash__(self) -> int: ... method __index__ (line 12444) | def __index__(self) -> int: ... method __int__ (line 12445) | def __int__(self) -> int: ... method __le__ (line 12446) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12447) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12448) | def __mul__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOp... method __ne__ (line 12449) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12450) | def __or__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOpt... method __pos__ (line 12451) | def __pos__(self): ... method __radd__ (line 12452) | def __radd__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingO... method __rand__ (line 12453) | def __rand__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingO... method __rmul__ (line 12454) | def __rmul__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingO... method __ror__ (line 12455) | def __ror__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOp... method __rsub__ (line 12456) | def __rsub__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingO... method __rxor__ (line 12457) | def __rxor__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingO... method __sub__ (line 12458) | def __sub__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOp... method __xor__ (line 12459) | def __xor__(self, other: typing.SupportsInt) -> QUrl.UrlFormattingOp... class UserInputResolutionOption (line 12461) | class UserInputResolutionOption: method __init__ (line 12467) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12468) | def __and__(self, other: typing.SupportsInt) -> QUrl.UserInputResolu... method __bool__ (line 12469) | def __bool__(self) -> bool: ... method __eq__ (line 12470) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12471) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12472) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12473) | def __hash__(self) -> int: ... method __index__ (line 12474) | def __index__(self) -> int: ... method __int__ (line 12475) | def __int__(self) -> int: ... method __invert__ (line 12476) | def __invert__(self) -> QUrl.UserInputResolutionOptions: ... method __le__ (line 12477) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12478) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12479) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12480) | def __or__(self, other: typing.SupportsInt) -> QUrl.UserInputResolut... method __rand__ (line 12481) | def __rand__(self, other: typing.SupportsInt) -> QUrl.UserInputResol... method __ror__ (line 12482) | def __ror__(self, other: typing.SupportsInt) -> QUrl.UserInputResolu... method __rxor__ (line 12483) | def __rxor__(self, other: typing.SupportsInt) -> QUrl.UserInputResol... method __xor__ (line 12484) | def __xor__(self, other: typing.SupportsInt) -> QUrl.UserInputResolu... class UserInputResolutionOptions (line 12486) | class UserInputResolutionOptions: method __init__ (line 12488) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12489) | def __and__(self, other: typing.SupportsInt) -> QUrl.UserInputResolu... method __bool__ (line 12490) | def __bool__(self) -> bool: ... method __eq__ (line 12491) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12492) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12493) | def __gt__(self, other: object) -> bool: ... method __index__ (line 12494) | def __index__(self) -> int: ... method __int__ (line 12495) | def __int__(self) -> int: ... method __invert__ (line 12496) | def __invert__(self) -> QUrl.UserInputResolutionOptions: ... method __le__ (line 12497) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12498) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12499) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12500) | def __or__(self, other: typing.SupportsInt) -> QUrl.UserInputResolut... method __rand__ (line 12501) | def __rand__(self, other: typing.SupportsInt) -> QUrl.UserInputResol... method __ror__ (line 12502) | def __ror__(self, other: typing.SupportsInt) -> QUrl.UserInputResolu... method __rxor__ (line 12503) | def __rxor__(self, other: typing.SupportsInt) -> QUrl.UserInputResol... method __xor__ (line 12504) | def __xor__(self, other: typing.SupportsInt) -> QUrl.UserInputResolu... method __init__ (line 12532) | def __init__(self, url: str, mode: QUrl.ParsingMode = ...) -> None: ... method __init__ (line 12534) | def __init__(self, copy: QUrl) -> None: ... method __init__ (line 12536) | def __init__(self) -> None: ... method adjusted (line 12537) | def adjusted(self, options: QUrl.FormattingOptions | QUrl.ComponentFor... method authority (line 12538) | def authority(self, options: QUrl.ComponentFormattingOption = ...) -> ... method clear (line 12539) | def clear(self) -> None: ... method errorString (line 12540) | def errorString(self) -> str: ... method fileName (line 12541) | def fileName(self, options: QUrl.ComponentFormattingOption = ...) -> s... method fragment (line 12542) | def fragment(self, options: QUrl.ComponentFormattingOption = ...) -> s... method fromAce (line 12544) | def fromAce(arg__1: QByteArray | bytes) -> str: ... method fromEncoded (line 12546) | def fromEncoded(url: QByteArray | bytes, mode: QUrl.ParsingMode = ...)... method fromLocalFile (line 12548) | def fromLocalFile(localfile: str) -> QUrl: ... method fromPercentEncoding (line 12550) | def fromPercentEncoding(arg__1: QByteArray | bytes) -> str: ... method fromStringList (line 12552) | def fromStringList(uris: typing.Iterable[str], mode: QUrl.ParsingMode ... method fromUserInput (line 12555) | def fromUserInput(userInput: str, workingDirectory: str, options: QUrl... method fromUserInput (line 12558) | def fromUserInput(userInput: str) -> QUrl: ... method hasFragment (line 12559) | def hasFragment(self) -> bool: ... method hasQuery (line 12560) | def hasQuery(self) -> bool: ... method host (line 12561) | def host(self, arg__1: QUrl.ComponentFormattingOption = ...) -> str: ... method idnWhitelist (line 12563) | def idnWhitelist() -> list[str]: ... method isEmpty (line 12564) | def isEmpty(self) -> bool: ... method isLocalFile (line 12565) | def isLocalFile(self) -> bool: ... method isParentOf (line 12566) | def isParentOf(self, url: QUrl) -> bool: ... method isRelative (line 12567) | def isRelative(self) -> bool: ... method isValid (line 12568) | def isValid(self) -> bool: ... method matches (line 12569) | def matches(self, url: QUrl, options: QUrl.FormattingOptions | QUrl.Co... method password (line 12570) | def password(self, arg__1: QUrl.ComponentFormattingOption = ...) -> st... method path (line 12571) | def path(self, options: QUrl.ComponentFormattingOption = ...) -> str: ... method port (line 12572) | def port(self, defaultPort: int = ...) -> int: ... method query (line 12573) | def query(self, arg__1: QUrl.ComponentFormattingOption = ...) -> str: ... method resolved (line 12574) | def resolved(self, relative: QUrl) -> QUrl: ... method scheme (line 12575) | def scheme(self) -> str: ... method setAuthority (line 12576) | def setAuthority(self, authority: str, mode: QUrl.ParsingMode = ...) -... method setFragment (line 12577) | def setFragment(self, fragment: str, mode: QUrl.ParsingMode = ...) -> ... method setHost (line 12578) | def setHost(self, host: str, mode: QUrl.ParsingMode = ...) -> None: ... method setIdnWhitelist (line 12580) | def setIdnWhitelist(arg__1: typing.Iterable[str]) -> None: ... method setPassword (line 12581) | def setPassword(self, password: str, mode: QUrl.ParsingMode = ...) -> ... method setPath (line 12582) | def setPath(self, path: str, mode: QUrl.ParsingMode = ...) -> None: ... method setPort (line 12583) | def setPort(self, port: int) -> None: ... method setQuery (line 12585) | def setQuery(self, query: str, mode: QUrl.ParsingMode = ...) -> None: ... method setQuery (line 12587) | def setQuery(self, query: QUrlQuery) -> None: ... method setScheme (line 12588) | def setScheme(self, scheme: str) -> None: ... method setUrl (line 12589) | def setUrl(self, url: str, mode: QUrl.ParsingMode = ...) -> None: ... method setUserInfo (line 12590) | def setUserInfo(self, userInfo: str, mode: QUrl.ParsingMode = ...) -> ... method setUserName (line 12591) | def setUserName(self, userName: str, mode: QUrl.ParsingMode = ...) -> ... method swap (line 12592) | def swap(self, other: QUrl) -> None: ... method toAce (line 12594) | def toAce(arg__1: str) -> QByteArray: ... method toDisplayString (line 12595) | def toDisplayString(self, options: QUrl.FormattingOptions | QUrl.Compo... method toEncoded (line 12596) | def toEncoded(self, options: QUrl.FormattingOptions | QUrl.ComponentFo... method toLocalFile (line 12597) | def toLocalFile(self) -> str: ... method toPercentEncoding (line 12599) | def toPercentEncoding(arg__1: str, exclude: QByteArray | bytes = ..., ... method toString (line 12600) | def toString(self, options: QUrl.FormattingOptions | QUrl.ComponentFor... method toStringList (line 12602) | def toStringList(uris: typing.Iterable[QUrl], options: QUrl.Formatting... method topLevelDomain (line 12603) | def topLevelDomain(self, options: QUrl.ComponentFormattingOption = ...... method url (line 12604) | def url(self, options: QUrl.FormattingOptions | QUrl.ComponentFormatti... method userInfo (line 12605) | def userInfo(self, options: QUrl.ComponentFormattingOption = ...) -> s... method userName (line 12606) | def userName(self, options: QUrl.ComponentFormattingOption = ...) -> s... method __copy__ (line 12607) | def __copy__(self) -> None: ... method __eq__ (line 12608) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12609) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12610) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12611) | def __hash__(self) -> int: ... method __le__ (line 12612) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12613) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12614) | def __ne__(self, other: object) -> bool: ... class QUrlQuery (line 12616) | class QUrlQuery(shiboken2.Object): method __init__ (line 12618) | def __init__(self, url: QUrl) -> None: ... method __init__ (line 12620) | def __init__(self, queryString: str) -> None: ... method __init__ (line 12622) | def __init__(self, other: QUrlQuery) -> None: ... method __init__ (line 12624) | def __init__(self) -> None: ... method addQueryItem (line 12625) | def addQueryItem(self, key: str, value: str) -> None: ... method allQueryItemValues (line 12626) | def allQueryItemValues(self, key: str, encoding: QUrl.ComponentFormatt... method clear (line 12627) | def clear(self) -> None: ... method defaultQueryPairDelimiter (line 12629) | def defaultQueryPairDelimiter() -> str: ... method defaultQueryValueDelimiter (line 12631) | def defaultQueryValueDelimiter() -> str: ... method hasQueryItem (line 12632) | def hasQueryItem(self, key: str) -> bool: ... method isEmpty (line 12633) | def isEmpty(self) -> bool: ... method query (line 12634) | def query(self, encoding: QUrl.ComponentFormattingOption = ...) -> str... method queryItemValue (line 12635) | def queryItemValue(self, key: str, encoding: QUrl.ComponentFormattingO... method queryItems (line 12636) | def queryItems(self, encoding: QUrl.ComponentFormattingOption = ...) -... method queryPairDelimiter (line 12637) | def queryPairDelimiter(self) -> str: ... method queryValueDelimiter (line 12638) | def queryValueDelimiter(self) -> str: ... method removeAllQueryItems (line 12639) | def removeAllQueryItems(self, key: str) -> None: ... method removeQueryItem (line 12640) | def removeQueryItem(self, key: str) -> None: ... method setQuery (line 12641) | def setQuery(self, queryString: str) -> None: ... method setQueryDelimiters (line 12642) | def setQueryDelimiters(self, valueDelimiter: str, pairDelimiter: str) ... method setQueryItems (line 12643) | def setQueryItems(self, query: typing.Iterable[tuple[str, str]]) -> No... method swap (line 12644) | def swap(self, other: QUrlQuery) -> None: ... method toString (line 12645) | def toString(self, encoding: QUrl.ComponentFormattingOption = ...) -> ... method __copy__ (line 12646) | def __copy__(self) -> None: ... method __eq__ (line 12647) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12648) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12649) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12650) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12651) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12652) | def __ne__(self, other: object) -> bool: ... class QUuid (line 12654) | class QUuid(shiboken2.Object): class StringFormat (line 12655) | class StringFormat: method __init__ (line 12662) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12663) | def __add__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... method __and__ (line 12664) | def __and__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... method __bool__ (line 12665) | def __bool__(self) -> bool: ... method __eq__ (line 12666) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12667) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12668) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12669) | def __hash__(self) -> int: ... method __index__ (line 12670) | def __index__(self) -> int: ... method __int__ (line 12671) | def __int__(self) -> int: ... method __le__ (line 12672) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12673) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12674) | def __mul__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... method __ne__ (line 12675) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12676) | def __or__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... method __pos__ (line 12677) | def __pos__(self): ... method __radd__ (line 12678) | def __radd__(self, other: typing.SupportsInt) -> QUuid.StringFormat:... method __rand__ (line 12679) | def __rand__(self, other: typing.SupportsInt) -> QUuid.StringFormat:... method __rmul__ (line 12680) | def __rmul__(self, other: typing.SupportsInt) -> QUuid.StringFormat:... method __ror__ (line 12681) | def __ror__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... method __rsub__ (line 12682) | def __rsub__(self, other: typing.SupportsInt) -> QUuid.StringFormat:... method __rxor__ (line 12683) | def __rxor__(self, other: typing.SupportsInt) -> QUuid.StringFormat:... method __sub__ (line 12684) | def __sub__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... method __xor__ (line 12685) | def __xor__(self, other: typing.SupportsInt) -> QUuid.StringFormat: ... class Variant (line 12687) | class Variant: method __init__ (line 12696) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12697) | def __add__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __and__ (line 12698) | def __and__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __bool__ (line 12699) | def __bool__(self) -> bool: ... method __eq__ (line 12700) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12701) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12702) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12703) | def __hash__(self) -> int: ... method __index__ (line 12704) | def __index__(self) -> int: ... method __int__ (line 12705) | def __int__(self) -> int: ... method __le__ (line 12706) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12707) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12708) | def __mul__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __ne__ (line 12709) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12710) | def __or__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __pos__ (line 12711) | def __pos__(self): ... method __radd__ (line 12712) | def __radd__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __rand__ (line 12713) | def __rand__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __rmul__ (line 12714) | def __rmul__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __ror__ (line 12715) | def __ror__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __rsub__ (line 12716) | def __rsub__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __rxor__ (line 12717) | def __rxor__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __sub__ (line 12718) | def __sub__(self, other: typing.SupportsInt) -> QUuid.Variant: ... method __xor__ (line 12719) | def __xor__(self, other: typing.SupportsInt) -> QUuid.Variant: ... class Version (line 12721) | class Version: method __init__ (line 12732) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12733) | def __add__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __and__ (line 12734) | def __and__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __bool__ (line 12735) | def __bool__(self) -> bool: ... method __eq__ (line 12736) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12737) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12738) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12739) | def __hash__(self) -> int: ... method __index__ (line 12740) | def __index__(self) -> int: ... method __int__ (line 12741) | def __int__(self) -> int: ... method __le__ (line 12742) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12743) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12744) | def __mul__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __ne__ (line 12745) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12746) | def __or__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __pos__ (line 12747) | def __pos__(self): ... method __radd__ (line 12748) | def __radd__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __rand__ (line 12749) | def __rand__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __rmul__ (line 12750) | def __rmul__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __ror__ (line 12751) | def __ror__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __rsub__ (line 12752) | def __rsub__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __rxor__ (line 12753) | def __rxor__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __sub__ (line 12754) | def __sub__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __xor__ (line 12755) | def __xor__(self, other: typing.SupportsInt) -> QUuid.Version: ... method __init__ (line 12772) | def __init__(self, l: int, w1: int, w2: int, b1: int, b2: int, b3: int... method __init__ (line 12774) | def __init__(self, arg__1: QByteArray | bytes) -> None: ... method __init__ (line 12776) | def __init__(self, arg__1: str) -> None: ... method __init__ (line 12778) | def __init__(self, arg__1: bytes) -> None: ... # type: ignore[overloa... method __init__ (line 12780) | def __init__(self) -> None: ... method createUuid (line 12782) | def createUuid() -> QUuid: ... method createUuidV3 (line 12785) | def createUuidV3(ns: QUuid, baseData: QByteArray | bytes) -> QUuid: ... method createUuidV3 (line 12788) | def createUuidV3(ns: QUuid, baseData: str) -> QUuid: ... method createUuidV5 (line 12791) | def createUuidV5(ns: QUuid, baseData: QByteArray | bytes) -> QUuid: ... method createUuidV5 (line 12794) | def createUuidV5(ns: QUuid, baseData: str) -> QUuid: ... method fromRfc4122 (line 12796) | def fromRfc4122(arg__1: QByteArray | bytes) -> QUuid: ... method isNull (line 12797) | def isNull(self) -> bool: ... method toByteArray (line 12799) | def toByteArray(self, mode: QUuid.StringFormat) -> QByteArray: ... method toByteArray (line 12801) | def toByteArray(self) -> QByteArray: ... method toRfc4122 (line 12802) | def toRfc4122(self) -> QByteArray: ... method toString (line 12804) | def toString(self, mode: QUuid.StringFormat) -> str: ... method toString (line 12806) | def toString(self) -> str: ... method variant (line 12807) | def variant(self) -> QUuid.Variant: ... method version (line 12808) | def version(self) -> QUuid.Version: ... method __bool__ (line 12809) | def __bool__(self) -> bool: ... method __copy__ (line 12810) | def __copy__(self) -> None: ... method __eq__ (line 12811) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12812) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12813) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12814) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12815) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12816) | def __ne__(self, other: object) -> bool: ... class QVariantAnimation (line 12818) | class QVariantAnimation(QAbstractAnimation): method __init__ (line 12821) | def __init__(self, parent: QObject | None = ..., currentLoop: int = ..... method currentValue (line 12822) | def currentValue(self) -> typing.Any: ... method duration (line 12823) | def duration(self) -> int: ... method easingCurve (line 12824) | def easingCurve(self) -> QEasingCurve: ... method endValue (line 12825) | def endValue(self) -> typing.Any: ... method event (line 12826) | def event(self, event: QEvent) -> bool: ... method interpolated (line 12827) | def interpolated(self, from_: typing.Any, to: typing.Any, progress: fl... method keyValueAt (line 12828) | def keyValueAt(self, step: float) -> typing.Any: ... method keyValues (line 12829) | def keyValues(self) -> list[tuple[float, typing.Any]]: ... method setDuration (line 12830) | def setDuration(self, msecs: int) -> None: ... method setEasingCurve (line 12831) | def setEasingCurve(self, easing: QEasingCurve | QEasingCurve.Type) -> ... method setEndValue (line 12832) | def setEndValue(self, value: typing.Any) -> None: ... method setKeyValueAt (line 12833) | def setKeyValueAt(self, step: float, value: typing.Any) -> None: ... method setKeyValues (line 12834) | def setKeyValues(self, values: list[tuple[float, typing.Any]]) -> None... method setStartValue (line 12835) | def setStartValue(self, value: typing.Any) -> None: ... method startValue (line 12836) | def startValue(self) -> typing.Any: ... method updateCurrentTime (line 12837) | def updateCurrentTime(self, arg__1: int) -> None: ... method updateCurrentValue (line 12838) | def updateCurrentValue(self, value: typing.Any) -> None: ... method updateState (line 12839) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QVersionNumber (line 12841) | class QVersionNumber(shiboken2.Object): method __init__ (line 12843) | def __init__(self, maj: int, min: int, mic: int) -> None: ... method __init__ (line 12845) | def __init__(self, maj: int, min: int) -> None: ... method __init__ (line 12847) | def __init__(self, seg: list[int]) -> None: ... method __init__ (line 12849) | def __init__(self, maj: int) -> None: ... method __init__ (line 12851) | def __init__(self) -> None: ... method commonPrefix (line 12853) | def commonPrefix(v1: QVersionNumber, v2: QVersionNumber) -> QVersionNu... method compare (line 12855) | def compare(v1: QVersionNumber, v2: QVersionNumber) -> int: ... method fromString (line 12857) | def fromString(string: str) -> tuple[QVersionNumber, int]: ... method isNormalized (line 12858) | def isNormalized(self) -> bool: ... method isNull (line 12859) | def isNull(self) -> bool: ... method isPrefixOf (line 12860) | def isPrefixOf(self, other: QVersionNumber) -> bool: ... method majorVersion (line 12861) | def majorVersion(self) -> int: ... method microVersion (line 12862) | def microVersion(self) -> int: ... method minorVersion (line 12863) | def minorVersion(self) -> int: ... method normalized (line 12864) | def normalized(self) -> QVersionNumber: ... method segmentAt (line 12865) | def segmentAt(self, index: int) -> int: ... method segmentCount (line 12866) | def segmentCount(self) -> int: ... method segments (line 12867) | def segments(self) -> list[int]: ... method toString (line 12868) | def toString(self) -> str: ... method __bool__ (line 12869) | def __bool__(self) -> bool: ... method __copy__ (line 12870) | def __copy__(self) -> None: ... method __eq__ (line 12871) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12872) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12873) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12874) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12875) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12876) | def __ne__(self, other: object) -> bool: ... class QWaitCondition (line 12878) | class QWaitCondition(shiboken2.Object): method __init__ (line 12879) | def __init__(self) -> None: ... method notify_all (line 12880) | def notify_all(self) -> None: ... method notify_one (line 12881) | def notify_one(self) -> None: ... method wait (line 12883) | def wait(self, lockedReadWriteLock: QReadWriteLock, time: int) -> bool... method wait (line 12885) | def wait(self, lockedReadWriteLock: QReadWriteLock, deadline: QDeadlin... method wait (line 12887) | def wait(self, lockedMutex: QMutex, time: int) -> bool: ... method wait (line 12889) | def wait(self, lockedMutex: QMutex, deadline: QDeadlineTimer = ...) ->... method wakeAll (line 12890) | def wakeAll(self) -> None: ... method wakeOne (line 12891) | def wakeOne(self) -> None: ... class QWriteLocker (line 12893) | class QWriteLocker(shiboken2.Object): method __init__ (line 12894) | def __init__(self, readWriteLock: QReadWriteLock) -> None: ... method readWriteLock (line 12895) | def readWriteLock(self) -> QReadWriteLock: ... method relock (line 12896) | def relock(self) -> None: ... method unlock (line 12897) | def unlock(self) -> None: ... method __enter__ (line 12898) | def __enter__(self) -> None: ... method __exit__ (line 12899) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object) -> ... class QXmlStreamAttribute (line 12901) | class QXmlStreamAttribute(shiboken2.Object): method __init__ (line 12903) | def __init__(self, namespaceUri: str, name: str, value: str) -> None: ... method __init__ (line 12905) | def __init__(self, qualifiedName: str, value: str) -> None: ... method __init__ (line 12907) | def __init__(self, arg__1: QXmlStreamAttribute) -> None: ... method __init__ (line 12909) | def __init__(self) -> None: ... method isDefault (line 12910) | def isDefault(self) -> bool: ... method name (line 12911) | def name(self) -> str: ... method namespaceUri (line 12912) | def namespaceUri(self) -> str: ... method prefix (line 12913) | def prefix(self) -> str: ... method qualifiedName (line 12914) | def qualifiedName(self) -> str: ... method value (line 12915) | def value(self) -> str: ... method __copy__ (line 12916) | def __copy__(self) -> None: ... method __eq__ (line 12917) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12918) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12919) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12920) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12921) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12922) | def __ne__(self, other: object) -> bool: ... class QXmlStreamAttributes (line 12924) | class QXmlStreamAttributes(shiboken2.Object): method __init__ (line 12926) | def __init__(self, QXmlStreamAttributes: QXmlStreamAttributes) -> None... method __init__ (line 12928) | def __init__(self) -> None: ... method append (line 12930) | def append(self, namespaceUri: str, name: str, value: str) -> None: ... method append (line 12932) | def append(self, qualifiedName: str, value: str) -> None: ... method at (line 12933) | def at(self, i: int) -> QXmlStreamAttribute: ... method back (line 12934) | def back(self) -> QXmlStreamAttribute: ... method capacity (line 12935) | def capacity(self) -> int: ... method clear (line 12936) | def clear(self) -> None: ... method constData (line 12937) | def constData(self) -> QXmlStreamAttribute: ... method constFirst (line 12938) | def constFirst(self) -> QXmlStreamAttribute: ... method constLast (line 12939) | def constLast(self) -> QXmlStreamAttribute: ... method contains (line 12940) | def contains(self, t: QXmlStreamAttribute) -> bool: ... method count (line 12942) | def count(self, t: QXmlStreamAttribute) -> int: ... method count (line 12944) | def count(self) -> int: ... method data (line 12945) | def data(self) -> QXmlStreamAttribute: ... method empty (line 12946) | def empty(self) -> bool: ... method endsWith (line 12947) | def endsWith(self, t: QXmlStreamAttribute) -> bool: ... method fill (line 12948) | def fill(self, t: QXmlStreamAttribute, size: int = ...) -> list[QXmlSt... method first (line 12949) | def first(self) -> QXmlStreamAttribute: ... method front (line 12950) | def front(self) -> QXmlStreamAttribute: ... method hasAttribute (line 12952) | def hasAttribute(self, namespaceUri: str, name: str) -> bool: ... method hasAttribute (line 12954) | def hasAttribute(self, qualifiedName: str) -> bool: ... method indexOf (line 12955) | def indexOf(self, t: QXmlStreamAttribute, from_: int = ...) -> int: ... method insert (line 12957) | def insert(self, i: int, n: int, t: QXmlStreamAttribute) -> None: ... method insert (line 12959) | def insert(self, i: int, t: QXmlStreamAttribute) -> None: ... method isEmpty (line 12960) | def isEmpty(self) -> bool: ... method isSharedWith (line 12961) | def isSharedWith(self, other: list[QXmlStreamAttribute]) -> bool: ... method last (line 12962) | def last(self) -> QXmlStreamAttribute: ... method lastIndexOf (line 12963) | def lastIndexOf(self, t: QXmlStreamAttribute, from_: int = ...) -> int... method length (line 12964) | def length(self) -> int: ... method mid (line 12965) | def mid(self, pos: int, len: int = ...) -> list[QXmlStreamAttribute]: ... method move (line 12966) | def move(self, from_: int, to: int) -> None: ... method prepend (line 12967) | def prepend(self, t: QXmlStreamAttribute) -> None: ... method remove (line 12969) | def remove(self, i: int, n: int) -> None: ... method remove (line 12971) | def remove(self, i: int) -> None: ... method removeAll (line 12972) | def removeAll(self, t: QXmlStreamAttribute) -> int: ... method removeAt (line 12973) | def removeAt(self, i: int) -> None: ... method removeFirst (line 12974) | def removeFirst(self) -> None: ... method removeLast (line 12975) | def removeLast(self) -> None: ... method removeOne (line 12976) | def removeOne(self, t: QXmlStreamAttribute) -> bool: ... method replace (line 12977) | def replace(self, i: int, t: QXmlStreamAttribute) -> None: ... method reserve (line 12978) | def reserve(self, size: int) -> None: ... method resize (line 12979) | def resize(self, size: int) -> None: ... method setSharable (line 12980) | def setSharable(self, sharable: bool) -> None: ... method shrink_to_fit (line 12981) | def shrink_to_fit(self) -> None: ... method size (line 12982) | def size(self) -> int: ... method squeeze (line 12983) | def squeeze(self) -> None: ... method startsWith (line 12984) | def startsWith(self, t: QXmlStreamAttribute) -> bool: ... method swap (line 12985) | def swap(self, other: list[QXmlStreamAttribute]) -> None: ... method swapItemsAt (line 12986) | def swapItemsAt(self, i: int, j: int) -> None: ... method takeAt (line 12987) | def takeAt(self, i: int) -> QXmlStreamAttribute: ... method takeFirst (line 12988) | def takeFirst(self) -> QXmlStreamAttribute: ... method takeLast (line 12989) | def takeLast(self) -> QXmlStreamAttribute: ... method value (line 12991) | def value(self, namespaceUri: str, name: str) -> str: ... method value (line 12993) | def value(self, qualifiedName: str) -> str: ... method __add__ (line 12994) | def __add__(self, l: list[QXmlStreamAttribute]) -> list[QXmlStreamAttr... method __copy__ (line 12995) | def __copy__(self) -> None: ... method __delitem__ (line 12996) | def __delitem__(self, other) -> None: ... method __eq__ (line 12997) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12998) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 12999) | def __getitem__(self, index): ... method __gt__ (line 13000) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 13001) | def __iadd__(self, t: QXmlStreamAttribute) -> list[QXmlStreamAttribute... method __le__ (line 13002) | def __le__(self, other: object) -> bool: ... method __len__ (line 13003) | def __len__(self) -> int: ... method __lshift__ (line 13005) | def __lshift__(self, t: QXmlStreamAttribute) -> list[QXmlStreamAttribu... method __lshift__ (line 13007) | def __lshift__(self, l: list[QXmlStreamAttribute]) -> list[QXmlStreamA... method __lt__ (line 13008) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13009) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 13010) | def __radd__(self, other): ... method __rlshift__ (line 13011) | def __rlshift__(self, other): ... method __setitem__ (line 13012) | def __setitem__(self, index, object) -> None: ... class QXmlStreamEntityDeclaration (line 13014) | class QXmlStreamEntityDeclaration(shiboken2.Object): method __init__ (line 13016) | def __init__(self, arg__1: QXmlStreamEntityDeclaration) -> None: ... method __init__ (line 13018) | def __init__(self) -> None: ... method name (line 13019) | def name(self) -> str: ... method notationName (line 13020) | def notationName(self) -> str: ... method publicId (line 13021) | def publicId(self) -> str: ... method systemId (line 13022) | def systemId(self) -> str: ... method value (line 13023) | def value(self) -> str: ... method __copy__ (line 13024) | def __copy__(self) -> None: ... method __eq__ (line 13025) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13026) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13027) | def __gt__(self, other: object) -> bool: ... method __le__ (line 13028) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13029) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13030) | def __ne__(self, other: object) -> bool: ... class QXmlStreamEntityResolver (line 13032) | class QXmlStreamEntityResolver(shiboken2.Object): method __init__ (line 13033) | def __init__(self) -> None: ... method resolveEntity (line 13034) | def resolveEntity(self, publicId: str, systemId: str) -> str: ... method resolveUndeclaredEntity (line 13035) | def resolveUndeclaredEntity(self, name: str) -> str: ... class QXmlStreamNamespaceDeclaration (line 13037) | class QXmlStreamNamespaceDeclaration(shiboken2.Object): method __init__ (line 13039) | def __init__(self, prefix: str, namespaceUri: str) -> None: ... method __init__ (line 13041) | def __init__(self, arg__1: QXmlStreamNamespaceDeclaration) -> None: ... method __init__ (line 13043) | def __init__(self) -> None: ... method namespaceUri (line 13044) | def namespaceUri(self) -> str: ... method prefix (line 13045) | def prefix(self) -> str: ... method __copy__ (line 13046) | def __copy__(self) -> None: ... method __eq__ (line 13047) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13048) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13049) | def __gt__(self, other: object) -> bool: ... method __le__ (line 13050) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13051) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13052) | def __ne__(self, other: object) -> bool: ... class QXmlStreamNotationDeclaration (line 13054) | class QXmlStreamNotationDeclaration(shiboken2.Object): method __init__ (line 13056) | def __init__(self, arg__1: QXmlStreamNotationDeclaration) -> None: ... method __init__ (line 13058) | def __init__(self) -> None: ... method name (line 13059) | def name(self) -> str: ... method publicId (line 13060) | def publicId(self) -> str: ... method systemId (line 13061) | def systemId(self) -> str: ... method __copy__ (line 13062) | def __copy__(self) -> None: ... method __eq__ (line 13063) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13064) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13065) | def __gt__(self, other: object) -> bool: ... method __le__ (line 13066) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13067) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13068) | def __ne__(self, other: object) -> bool: ... class QXmlStreamReader (line 13070) | class QXmlStreamReader(shiboken2.Object): class Error (line 13071) | class Error: method __init__ (line 13080) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13081) | def __add__(self, other: typing.SupportsInt) -> QXmlStreamReader.Err... method __and__ (line 13082) | def __and__(self, other: typing.SupportsInt) -> QXmlStreamReader.Err... method __bool__ (line 13083) | def __bool__(self) -> bool: ... method __eq__ (line 13084) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13085) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13086) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13087) | def __hash__(self) -> int: ... method __index__ (line 13088) | def __index__(self) -> int: ... method __int__ (line 13089) | def __int__(self) -> int: ... method __le__ (line 13090) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13091) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13092) | def __mul__(self, other: typing.SupportsInt) -> QXmlStreamReader.Err... method __ne__ (line 13093) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13094) | def __or__(self, other: typing.SupportsInt) -> QXmlStreamReader.Erro... method __pos__ (line 13095) | def __pos__(self): ... method __radd__ (line 13096) | def __radd__(self, other: typing.SupportsInt) -> QXmlStreamReader.Er... method __rand__ (line 13097) | def __rand__(self, other: typing.SupportsInt) -> QXmlStreamReader.Er... method __rmul__ (line 13098) | def __rmul__(self, other: typing.SupportsInt) -> QXmlStreamReader.Er... method __ror__ (line 13099) | def __ror__(self, other: typing.SupportsInt) -> QXmlStreamReader.Err... method __rsub__ (line 13100) | def __rsub__(self, other: typing.SupportsInt) -> QXmlStreamReader.Er... method __rxor__ (line 13101) | def __rxor__(self, other: typing.SupportsInt) -> QXmlStreamReader.Er... method __sub__ (line 13102) | def __sub__(self, other: typing.SupportsInt) -> QXmlStreamReader.Err... method __xor__ (line 13103) | def __xor__(self, other: typing.SupportsInt) -> QXmlStreamReader.Err... class ReadElementTextBehaviour (line 13105) | class ReadElementTextBehaviour: method __init__ (line 13112) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13113) | def __add__(self, other: typing.SupportsInt) -> QXmlStreamReader.Rea... method __and__ (line 13114) | def __and__(self, other: typing.SupportsInt) -> QXmlStreamReader.Rea... method __bool__ (line 13115) | def __bool__(self) -> bool: ... method __eq__ (line 13116) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13117) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13118) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13119) | def __hash__(self) -> int: ... method __index__ (line 13120) | def __index__(self) -> int: ... method __int__ (line 13121) | def __int__(self) -> int: ... method __le__ (line 13122) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13123) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13124) | def __mul__(self, other: typing.SupportsInt) -> QXmlStreamReader.Rea... method __ne__ (line 13125) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13126) | def __or__(self, other: typing.SupportsInt) -> QXmlStreamReader.Read... method __pos__ (line 13127) | def __pos__(self): ... method __radd__ (line 13128) | def __radd__(self, other: typing.SupportsInt) -> QXmlStreamReader.Re... method __rand__ (line 13129) | def __rand__(self, other: typing.SupportsInt) -> QXmlStreamReader.Re... method __rmul__ (line 13130) | def __rmul__(self, other: typing.SupportsInt) -> QXmlStreamReader.Re... method __ror__ (line 13131) | def __ror__(self, other: typing.SupportsInt) -> QXmlStreamReader.Rea... method __rsub__ (line 13132) | def __rsub__(self, other: typing.SupportsInt) -> QXmlStreamReader.Re... method __rxor__ (line 13133) | def __rxor__(self, other: typing.SupportsInt) -> QXmlStreamReader.Re... method __sub__ (line 13134) | def __sub__(self, other: typing.SupportsInt) -> QXmlStreamReader.Rea... method __xor__ (line 13135) | def __xor__(self, other: typing.SupportsInt) -> QXmlStreamReader.Rea... class TokenType (line 13137) | class TokenType: method __init__ (line 13152) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13153) | def __add__(self, other: typing.SupportsInt) -> QXmlStreamReader.Tok... method __and__ (line 13154) | def __and__(self, other: typing.SupportsInt) -> QXmlStreamReader.Tok... method __bool__ (line 13155) | def __bool__(self) -> bool: ... method __eq__ (line 13156) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13157) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13158) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13159) | def __hash__(self) -> int: ... method __index__ (line 13160) | def __index__(self) -> int: ... method __int__ (line 13161) | def __int__(self) -> int: ... method __le__ (line 13162) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13163) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13164) | def __mul__(self, other: typing.SupportsInt) -> QXmlStreamReader.Tok... method __ne__ (line 13165) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13166) | def __or__(self, other: typing.SupportsInt) -> QXmlStreamReader.Toke... method __pos__ (line 13167) | def __pos__(self): ... method __radd__ (line 13168) | def __radd__(self, other: typing.SupportsInt) -> QXmlStreamReader.To... method __rand__ (line 13169) | def __rand__(self, other: typing.SupportsInt) -> QXmlStreamReader.To... method __rmul__ (line 13170) | def __rmul__(self, other: typing.SupportsInt) -> QXmlStreamReader.To... method __ror__ (line 13171) | def __ror__(self, other: typing.SupportsInt) -> QXmlStreamReader.Tok... method __rsub__ (line 13172) | def __rsub__(self, other: typing.SupportsInt) -> QXmlStreamReader.To... method __rxor__ (line 13173) | def __rxor__(self, other: typing.SupportsInt) -> QXmlStreamReader.To... method __sub__ (line 13174) | def __sub__(self, other: typing.SupportsInt) -> QXmlStreamReader.Tok... method __xor__ (line 13175) | def __xor__(self, other: typing.SupportsInt) -> QXmlStreamReader.Tok... method __init__ (line 13196) | def __init__(self, device: QIODevice) -> None: ... method __init__ (line 13198) | def __init__(self, data: QByteArray | bytes) -> None: ... method __init__ (line 13200) | def __init__(self, data: str) -> None: ... method __init__ (line 13202) | def __init__(self, data: bytes) -> None: ... # type: ignore[overload-... method __init__ (line 13204) | def __init__(self) -> None: ... method addData (line 13206) | def addData(self, data: QByteArray | bytes) -> None: ... method addData (line 13208) | def addData(self, data: str) -> None: ... method addData (line 13210) | def addData(self, data: bytes) -> None: ... # type: ignore[overload-c... method addExtraNamespaceDeclaration (line 13211) | def addExtraNamespaceDeclaration(self, extraNamespaceDeclaraction: QXm... method addExtraNamespaceDeclarations (line 13212) | def addExtraNamespaceDeclarations(self, extraNamespaceDeclaractions: l... method atEnd (line 13213) | def atEnd(self) -> bool: ... method attributes (line 13214) | def attributes(self) -> QXmlStreamAttributes: ... method characterOffset (line 13215) | def characterOffset(self) -> int: ... method clear (line 13216) | def clear(self) -> None: ... method columnNumber (line 13217) | def columnNumber(self) -> int: ... method device (line 13218) | def device(self) -> QIODevice: ... method documentEncoding (line 13219) | def documentEncoding(self) -> str: ... method documentVersion (line 13220) | def documentVersion(self) -> str: ... method dtdName (line 13221) | def dtdName(self) -> str: ... method dtdPublicId (line 13222) | def dtdPublicId(self) -> str: ... method dtdSystemId (line 13223) | def dtdSystemId(self) -> str: ... method entityDeclarations (line 13224) | def entityDeclarations(self) -> list[QXmlStreamEntityDeclaration]: ... method entityExpansionLimit (line 13225) | def entityExpansionLimit(self) -> int: ... method entityResolver (line 13226) | def entityResolver(self) -> QXmlStreamEntityResolver: ... method error (line 13227) | def error(self) -> QXmlStreamReader.Error: ... method errorString (line 13228) | def errorString(self) -> str: ... method hasError (line 13229) | def hasError(self) -> bool: ... method isCDATA (line 13230) | def isCDATA(self) -> bool: ... method isCharacters (line 13231) | def isCharacters(self) -> bool: ... method isComment (line 13232) | def isComment(self) -> bool: ... method isDTD (line 13233) | def isDTD(self) -> bool: ... method isEndDocument (line 13234) | def isEndDocument(self) -> bool: ... method isEndElement (line 13235) | def isEndElement(self) -> bool: ... method isEntityReference (line 13236) | def isEntityReference(self) -> bool: ... method isProcessingInstruction (line 13237) | def isProcessingInstruction(self) -> bool: ... method isStandaloneDocument (line 13238) | def isStandaloneDocument(self) -> bool: ... method isStartDocument (line 13239) | def isStartDocument(self) -> bool: ... method isStartElement (line 13240) | def isStartElement(self) -> bool: ... method isWhitespace (line 13241) | def isWhitespace(self) -> bool: ... method lineNumber (line 13242) | def lineNumber(self) -> int: ... method name (line 13243) | def name(self) -> str: ... method namespaceDeclarations (line 13244) | def namespaceDeclarations(self) -> list[QXmlStreamNamespaceDeclaration... method namespaceProcessing (line 13245) | def namespaceProcessing(self) -> bool: ... method namespaceUri (line 13246) | def namespaceUri(self) -> str: ... method notationDeclarations (line 13247) | def notationDeclarations(self) -> list[QXmlStreamNotationDeclaration]:... method prefix (line 13248) | def prefix(self) -> str: ... method processingInstructionData (line 13249) | def processingInstructionData(self) -> str: ... method processingInstructionTarget (line 13250) | def processingInstructionTarget(self) -> str: ... method qualifiedName (line 13251) | def qualifiedName(self) -> str: ... method raiseError (line 13252) | def raiseError(self, message: str = ...) -> None: ... method readElementText (line 13253) | def readElementText(self, behaviour: QXmlStreamReader.ReadElementTextB... method readNext (line 13254) | def readNext(self) -> QXmlStreamReader.TokenType: ... method readNextStartElement (line 13255) | def readNextStartElement(self) -> bool: ... method setDevice (line 13256) | def setDevice(self, device: QIODevice) -> None: ... method setEntityExpansionLimit (line 13257) | def setEntityExpansionLimit(self, limit: int) -> None: ... method setEntityResolver (line 13258) | def setEntityResolver(self, resolver: QXmlStreamEntityResolver) -> Non... method setNamespaceProcessing (line 13259) | def setNamespaceProcessing(self, arg__1: bool) -> None: ... method skipCurrentElement (line 13260) | def skipCurrentElement(self) -> None: ... method text (line 13261) | def text(self) -> str: ... method tokenString (line 13262) | def tokenString(self) -> str: ... method tokenType (line 13263) | def tokenType(self) -> QXmlStreamReader.TokenType: ... class QXmlStreamWriter (line 13265) | class QXmlStreamWriter(shiboken2.Object): method __init__ (line 13267) | def __init__(self, device: QIODevice) -> None: ... method __init__ (line 13269) | def __init__(self, array: QByteArray | bytes) -> None: ... method __init__ (line 13271) | def __init__(self) -> None: ... method autoFormatting (line 13272) | def autoFormatting(self) -> bool: ... method autoFormattingIndent (line 13273) | def autoFormattingIndent(self) -> int: ... method codec (line 13274) | def codec(self) -> QTextCodec: ... method device (line 13275) | def device(self) -> QIODevice: ... method hasError (line 13276) | def hasError(self) -> bool: ... method setAutoFormatting (line 13277) | def setAutoFormatting(self, arg__1: bool) -> None: ... method setAutoFormattingIndent (line 13278) | def setAutoFormattingIndent(self, spacesOrTabs: int) -> None: ... method setCodec (line 13280) | def setCodec(self, codecName: bytes) -> None: ... method setCodec (line 13282) | def setCodec(self, codec: QTextCodec) -> None: ... method setDevice (line 13283) | def setDevice(self, device: QIODevice) -> None: ... method writeAttribute (line 13285) | def writeAttribute(self, namespaceUri: str, name: str, value: str) -> ... method writeAttribute (line 13287) | def writeAttribute(self, qualifiedName: str, value: str) -> None: ... method writeAttribute (line 13289) | def writeAttribute(self, attribute: QXmlStreamAttribute) -> None: ... method writeAttributes (line 13290) | def writeAttributes(self, attributes: QXmlStreamAttributes) -> None: ... method writeCDATA (line 13291) | def writeCDATA(self, text: str) -> None: ... method writeCharacters (line 13292) | def writeCharacters(self, text: str) -> None: ... method writeComment (line 13293) | def writeComment(self, text: str) -> None: ... method writeCurrentToken (line 13294) | def writeCurrentToken(self, reader: QXmlStreamReader) -> None: ... method writeDTD (line 13295) | def writeDTD(self, dtd: str) -> None: ... method writeDefaultNamespace (line 13296) | def writeDefaultNamespace(self, namespaceUri: str) -> None: ... method writeEmptyElement (line 13298) | def writeEmptyElement(self, namespaceUri: str, name: str) -> None: ... method writeEmptyElement (line 13300) | def writeEmptyElement(self, qualifiedName: str) -> None: ... method writeEndDocument (line 13301) | def writeEndDocument(self) -> None: ... method writeEndElement (line 13302) | def writeEndElement(self) -> None: ... method writeEntityReference (line 13303) | def writeEntityReference(self, name: str) -> None: ... method writeNamespace (line 13304) | def writeNamespace(self, namespaceUri: str, prefix: str = ...) -> None... method writeProcessingInstruction (line 13305) | def writeProcessingInstruction(self, target: str, data: str = ...) -> ... method writeStartDocument (line 13307) | def writeStartDocument(self, version: str, standalone: bool) -> None: ... method writeStartDocument (line 13309) | def writeStartDocument(self, version: str) -> None: ... method writeStartDocument (line 13311) | def writeStartDocument(self) -> None: ... method writeStartElement (line 13313) | def writeStartElement(self, namespaceUri: str, name: str) -> None: ... method writeStartElement (line 13315) | def writeStartElement(self, qualifiedName: str) -> None: ... method writeTextElement (line 13317) | def writeTextElement(self, namespaceUri: str, name: str, text: str) ->... method writeTextElement (line 13319) | def writeTextElement(self, qualifiedName: str, text: str) -> None: ... class Qt (line 13321) | class Qt(shiboken2.Object): class Alignment (line 13322) | class Alignment: method __init__ (line 13324) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13325) | def __and__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __bool__ (line 13326) | def __bool__(self) -> bool: ... method __eq__ (line 13327) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13328) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13329) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13330) | def __index__(self) -> int: ... method __int__ (line 13331) | def __int__(self) -> int: ... method __invert__ (line 13332) | def __invert__(self) -> Qt.Alignment: ... method __le__ (line 13333) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13334) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13335) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13336) | def __or__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __rand__ (line 13337) | def __rand__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __ror__ (line 13338) | def __ror__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __rxor__ (line 13339) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __xor__ (line 13340) | def __xor__(self, other: typing.SupportsInt) -> Qt.Alignment: ... class AlignmentFlag (line 13342) | class AlignmentFlag: method __init__ (line 13360) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13361) | def __and__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __bool__ (line 13362) | def __bool__(self) -> bool: ... method __eq__ (line 13363) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13364) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13365) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13366) | def __hash__(self) -> int: ... method __index__ (line 13367) | def __index__(self) -> int: ... method __int__ (line 13368) | def __int__(self) -> int: ... method __invert__ (line 13369) | def __invert__(self) -> Qt.Alignment: ... method __le__ (line 13370) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13371) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13372) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13373) | def __or__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __rand__ (line 13374) | def __rand__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __ror__ (line 13375) | def __ror__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __rxor__ (line 13376) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Alignment: ... method __xor__ (line 13377) | def __xor__(self, other: typing.SupportsInt) -> Qt.Alignment: ... class AnchorPoint (line 13379) | class AnchorPoint: method __init__ (line 13389) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13390) | def __add__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __and__ (line 13391) | def __and__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __bool__ (line 13392) | def __bool__(self) -> bool: ... method __eq__ (line 13393) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13394) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13395) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13396) | def __hash__(self) -> int: ... method __index__ (line 13397) | def __index__(self) -> int: ... method __int__ (line 13398) | def __int__(self) -> int: ... method __le__ (line 13399) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13400) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13401) | def __mul__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __ne__ (line 13402) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13403) | def __or__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __pos__ (line 13404) | def __pos__(self): ... method __radd__ (line 13405) | def __radd__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __rand__ (line 13406) | def __rand__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __rmul__ (line 13407) | def __rmul__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __ror__ (line 13408) | def __ror__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __rsub__ (line 13409) | def __rsub__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __rxor__ (line 13410) | def __rxor__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __sub__ (line 13411) | def __sub__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... method __xor__ (line 13412) | def __xor__(self, other: typing.SupportsInt) -> Qt.AnchorPoint: ... class ApplicationAttribute (line 13414) | class ApplicationAttribute: method __init__ (line 13452) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13453) | def __add__(self, other: typing.SupportsInt) -> Qt.ApplicationAttrib... method __and__ (line 13454) | def __and__(self, other: typing.SupportsInt) -> Qt.ApplicationAttrib... method __bool__ (line 13455) | def __bool__(self) -> bool: ... method __eq__ (line 13456) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13457) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13458) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13459) | def __hash__(self) -> int: ... method __index__ (line 13460) | def __index__(self) -> int: ... method __int__ (line 13461) | def __int__(self) -> int: ... method __le__ (line 13462) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13463) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13464) | def __mul__(self, other: typing.SupportsInt) -> Qt.ApplicationAttrib... method __ne__ (line 13465) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13466) | def __or__(self, other: typing.SupportsInt) -> Qt.ApplicationAttribu... method __pos__ (line 13467) | def __pos__(self): ... method __radd__ (line 13468) | def __radd__(self, other: typing.SupportsInt) -> Qt.ApplicationAttri... method __rand__ (line 13469) | def __rand__(self, other: typing.SupportsInt) -> Qt.ApplicationAttri... method __rmul__ (line 13470) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ApplicationAttri... method __ror__ (line 13471) | def __ror__(self, other: typing.SupportsInt) -> Qt.ApplicationAttrib... method __rsub__ (line 13472) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ApplicationAttri... method __rxor__ (line 13473) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ApplicationAttri... method __sub__ (line 13474) | def __sub__(self, other: typing.SupportsInt) -> Qt.ApplicationAttrib... method __xor__ (line 13475) | def __xor__(self, other: typing.SupportsInt) -> Qt.ApplicationAttrib... class ApplicationState (line 13477) | class ApplicationState: method __init__ (line 13485) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13486) | def __and__(self, other: typing.SupportsInt) -> Qt.ApplicationStates... method __bool__ (line 13487) | def __bool__(self) -> bool: ... method __eq__ (line 13488) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13489) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13490) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13491) | def __hash__(self) -> int: ... method __index__ (line 13492) | def __index__(self) -> int: ... method __int__ (line 13493) | def __int__(self) -> int: ... method __invert__ (line 13494) | def __invert__(self) -> Qt.ApplicationStates: ... method __le__ (line 13495) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13496) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13497) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13498) | def __or__(self, other: typing.SupportsInt) -> Qt.ApplicationStates:... method __rand__ (line 13499) | def __rand__(self, other: typing.SupportsInt) -> Qt.ApplicationState... method __ror__ (line 13500) | def __ror__(self, other: typing.SupportsInt) -> Qt.ApplicationStates... method __rxor__ (line 13501) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ApplicationState... method __xor__ (line 13502) | def __xor__(self, other: typing.SupportsInt) -> Qt.ApplicationStates... class ApplicationStates (line 13504) | class ApplicationStates: method __init__ (line 13506) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13507) | def __and__(self, other: typing.SupportsInt) -> Qt.ApplicationStates... method __bool__ (line 13508) | def __bool__(self) -> bool: ... method __eq__ (line 13509) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13510) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13511) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13512) | def __index__(self) -> int: ... method __int__ (line 13513) | def __int__(self) -> int: ... method __invert__ (line 13514) | def __invert__(self) -> Qt.ApplicationStates: ... method __le__ (line 13515) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13516) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13517) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13518) | def __or__(self, other: typing.SupportsInt) -> Qt.ApplicationStates:... method __rand__ (line 13519) | def __rand__(self, other: typing.SupportsInt) -> Qt.ApplicationState... method __ror__ (line 13520) | def __ror__(self, other: typing.SupportsInt) -> Qt.ApplicationStates... method __rxor__ (line 13521) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ApplicationState... method __xor__ (line 13522) | def __xor__(self, other: typing.SupportsInt) -> Qt.ApplicationStates... class ArrowType (line 13524) | class ArrowType: method __init__ (line 13533) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13534) | def __add__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __and__ (line 13535) | def __and__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __bool__ (line 13536) | def __bool__(self) -> bool: ... method __eq__ (line 13537) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13538) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13539) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13540) | def __hash__(self) -> int: ... method __index__ (line 13541) | def __index__(self) -> int: ... method __int__ (line 13542) | def __int__(self) -> int: ... method __le__ (line 13543) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13544) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13545) | def __mul__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __ne__ (line 13546) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13547) | def __or__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __pos__ (line 13548) | def __pos__(self): ... method __radd__ (line 13549) | def __radd__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __rand__ (line 13550) | def __rand__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __rmul__ (line 13551) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __ror__ (line 13552) | def __ror__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __rsub__ (line 13553) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __rxor__ (line 13554) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __sub__ (line 13555) | def __sub__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... method __xor__ (line 13556) | def __xor__(self, other: typing.SupportsInt) -> Qt.ArrowType: ... class AspectRatioMode (line 13558) | class AspectRatioMode: method __init__ (line 13565) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13566) | def __add__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... method __and__ (line 13567) | def __and__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... method __bool__ (line 13568) | def __bool__(self) -> bool: ... method __eq__ (line 13569) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13570) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13571) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13572) | def __hash__(self) -> int: ... method __index__ (line 13573) | def __index__(self) -> int: ... method __int__ (line 13574) | def __int__(self) -> int: ... method __le__ (line 13575) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13576) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13577) | def __mul__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... method __ne__ (line 13578) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13579) | def __or__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... method __pos__ (line 13580) | def __pos__(self): ... method __radd__ (line 13581) | def __radd__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode:... method __rand__ (line 13582) | def __rand__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode:... method __rmul__ (line 13583) | def __rmul__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode:... method __ror__ (line 13584) | def __ror__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... method __rsub__ (line 13585) | def __rsub__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode:... method __rxor__ (line 13586) | def __rxor__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode:... method __sub__ (line 13587) | def __sub__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... method __xor__ (line 13588) | def __xor__(self, other: typing.SupportsInt) -> Qt.AspectRatioMode: ... class Axis (line 13590) | class Axis: method __init__ (line 13597) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13598) | def __add__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __and__ (line 13599) | def __and__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __bool__ (line 13600) | def __bool__(self) -> bool: ... method __eq__ (line 13601) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13602) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13603) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13604) | def __hash__(self) -> int: ... method __index__ (line 13605) | def __index__(self) -> int: ... method __int__ (line 13606) | def __int__(self) -> int: ... method __le__ (line 13607) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13608) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13609) | def __mul__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __ne__ (line 13610) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13611) | def __or__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __pos__ (line 13612) | def __pos__(self): ... method __radd__ (line 13613) | def __radd__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __rand__ (line 13614) | def __rand__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __rmul__ (line 13615) | def __rmul__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __ror__ (line 13616) | def __ror__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __rsub__ (line 13617) | def __rsub__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __rxor__ (line 13618) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __sub__ (line 13619) | def __sub__(self, other: typing.SupportsInt) -> Qt.Axis: ... method __xor__ (line 13620) | def __xor__(self, other: typing.SupportsInt) -> Qt.Axis: ... class BGMode (line 13622) | class BGMode: method __init__ (line 13628) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13629) | def __add__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __and__ (line 13630) | def __and__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __bool__ (line 13631) | def __bool__(self) -> bool: ... method __eq__ (line 13632) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13633) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13634) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13635) | def __hash__(self) -> int: ... method __index__ (line 13636) | def __index__(self) -> int: ... method __int__ (line 13637) | def __int__(self) -> int: ... method __le__ (line 13638) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13639) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13640) | def __mul__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __ne__ (line 13641) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13642) | def __or__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __pos__ (line 13643) | def __pos__(self): ... method __radd__ (line 13644) | def __radd__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __rand__ (line 13645) | def __rand__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __rmul__ (line 13646) | def __rmul__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __ror__ (line 13647) | def __ror__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __rsub__ (line 13648) | def __rsub__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __rxor__ (line 13649) | def __rxor__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __sub__ (line 13650) | def __sub__(self, other: typing.SupportsInt) -> Qt.BGMode: ... method __xor__ (line 13651) | def __xor__(self, other: typing.SupportsInt) -> Qt.BGMode: ... class BrushStyle (line 13653) | class BrushStyle: method __init__ (line 13676) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13677) | def __add__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __and__ (line 13678) | def __and__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __bool__ (line 13679) | def __bool__(self) -> bool: ... method __eq__ (line 13680) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13681) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13682) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13683) | def __hash__(self) -> int: ... method __index__ (line 13684) | def __index__(self) -> int: ... method __int__ (line 13685) | def __int__(self) -> int: ... method __le__ (line 13686) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13687) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13688) | def __mul__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __ne__ (line 13689) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13690) | def __or__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __pos__ (line 13691) | def __pos__(self): ... method __radd__ (line 13692) | def __radd__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __rand__ (line 13693) | def __rand__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __rmul__ (line 13694) | def __rmul__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __ror__ (line 13695) | def __ror__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __rsub__ (line 13696) | def __rsub__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __rxor__ (line 13697) | def __rxor__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __sub__ (line 13698) | def __sub__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... method __xor__ (line 13699) | def __xor__(self, other: typing.SupportsInt) -> Qt.BrushStyle: ... class CaseSensitivity (line 13701) | class CaseSensitivity: method __init__ (line 13707) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13708) | def __add__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... method __and__ (line 13709) | def __and__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... method __bool__ (line 13710) | def __bool__(self) -> bool: ... method __eq__ (line 13711) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13712) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13713) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13714) | def __hash__(self) -> int: ... method __index__ (line 13715) | def __index__(self) -> int: ... method __int__ (line 13716) | def __int__(self) -> int: ... method __le__ (line 13717) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13718) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13719) | def __mul__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... method __ne__ (line 13720) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13721) | def __or__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... method __pos__ (line 13722) | def __pos__(self): ... method __radd__ (line 13723) | def __radd__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity:... method __rand__ (line 13724) | def __rand__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity:... method __rmul__ (line 13725) | def __rmul__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity:... method __ror__ (line 13726) | def __ror__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... method __rsub__ (line 13727) | def __rsub__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity:... method __rxor__ (line 13728) | def __rxor__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity:... method __sub__ (line 13729) | def __sub__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... method __xor__ (line 13730) | def __xor__(self, other: typing.SupportsInt) -> Qt.CaseSensitivity: ... class CheckState (line 13732) | class CheckState: method __init__ (line 13739) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13740) | def __add__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __and__ (line 13741) | def __and__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __bool__ (line 13742) | def __bool__(self) -> bool: ... method __eq__ (line 13743) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13744) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13745) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13746) | def __hash__(self) -> int: ... method __index__ (line 13747) | def __index__(self) -> int: ... method __int__ (line 13748) | def __int__(self) -> int: ... method __le__ (line 13749) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13750) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13751) | def __mul__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __ne__ (line 13752) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13753) | def __or__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __pos__ (line 13754) | def __pos__(self): ... method __radd__ (line 13755) | def __radd__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __rand__ (line 13756) | def __rand__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __rmul__ (line 13757) | def __rmul__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __ror__ (line 13758) | def __ror__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __rsub__ (line 13759) | def __rsub__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __rxor__ (line 13760) | def __rxor__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __sub__ (line 13761) | def __sub__(self, other: typing.SupportsInt) -> Qt.CheckState: ... method __xor__ (line 13762) | def __xor__(self, other: typing.SupportsInt) -> Qt.CheckState: ... class ChecksumType (line 13764) | class ChecksumType: method __init__ (line 13770) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13771) | def __add__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __and__ (line 13772) | def __and__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __bool__ (line 13773) | def __bool__(self) -> bool: ... method __eq__ (line 13774) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13775) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13776) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13777) | def __hash__(self) -> int: ... method __index__ (line 13778) | def __index__(self) -> int: ... method __int__ (line 13779) | def __int__(self) -> int: ... method __le__ (line 13780) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13781) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13782) | def __mul__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __ne__ (line 13783) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13784) | def __or__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __pos__ (line 13785) | def __pos__(self): ... method __radd__ (line 13786) | def __radd__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __rand__ (line 13787) | def __rand__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __rmul__ (line 13788) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __ror__ (line 13789) | def __ror__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __rsub__ (line 13790) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __rxor__ (line 13791) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __sub__ (line 13792) | def __sub__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... method __xor__ (line 13793) | def __xor__(self, other: typing.SupportsInt) -> Qt.ChecksumType: ... class ClipOperation (line 13795) | class ClipOperation: method __init__ (line 13802) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13803) | def __add__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __and__ (line 13804) | def __and__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __bool__ (line 13805) | def __bool__(self) -> bool: ... method __eq__ (line 13806) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13807) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13808) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13809) | def __hash__(self) -> int: ... method __index__ (line 13810) | def __index__(self) -> int: ... method __int__ (line 13811) | def __int__(self) -> int: ... method __le__ (line 13812) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13813) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13814) | def __mul__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __ne__ (line 13815) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13816) | def __or__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __pos__ (line 13817) | def __pos__(self): ... method __radd__ (line 13818) | def __radd__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __rand__ (line 13819) | def __rand__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __rmul__ (line 13820) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __ror__ (line 13821) | def __ror__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __rsub__ (line 13822) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __rxor__ (line 13823) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __sub__ (line 13824) | def __sub__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... method __xor__ (line 13825) | def __xor__(self, other: typing.SupportsInt) -> Qt.ClipOperation: ... class ConnectionType (line 13827) | class ConnectionType: method __init__ (line 13836) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13837) | def __add__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __and__ (line 13838) | def __and__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __bool__ (line 13839) | def __bool__(self) -> bool: ... method __eq__ (line 13840) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13841) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13842) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13843) | def __hash__(self) -> int: ... method __index__ (line 13844) | def __index__(self) -> int: ... method __int__ (line 13845) | def __int__(self) -> int: ... method __le__ (line 13846) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13847) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13848) | def __mul__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __ne__ (line 13849) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13850) | def __or__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __pos__ (line 13851) | def __pos__(self): ... method __radd__ (line 13852) | def __radd__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __rand__ (line 13853) | def __rand__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __rmul__ (line 13854) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __ror__ (line 13855) | def __ror__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __rsub__ (line 13856) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __rxor__ (line 13857) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __sub__ (line 13858) | def __sub__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... method __xor__ (line 13859) | def __xor__(self, other: typing.SupportsInt) -> Qt.ConnectionType: ... class ContextMenuPolicy (line 13861) | class ContextMenuPolicy: method __init__ (line 13870) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13871) | def __add__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy... method __and__ (line 13872) | def __and__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy... method __bool__ (line 13873) | def __bool__(self) -> bool: ... method __eq__ (line 13874) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13875) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13876) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13877) | def __hash__(self) -> int: ... method __index__ (line 13878) | def __index__(self) -> int: ... method __int__ (line 13879) | def __int__(self) -> int: ... method __le__ (line 13880) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13881) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13882) | def __mul__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy... method __ne__ (line 13883) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13884) | def __or__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy:... method __pos__ (line 13885) | def __pos__(self): ... method __radd__ (line 13886) | def __radd__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolic... method __rand__ (line 13887) | def __rand__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolic... method __rmul__ (line 13888) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolic... method __ror__ (line 13889) | def __ror__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy... method __rsub__ (line 13890) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolic... method __rxor__ (line 13891) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolic... method __sub__ (line 13892) | def __sub__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy... method __xor__ (line 13893) | def __xor__(self, other: typing.SupportsInt) -> Qt.ContextMenuPolicy... class CoordinateSystem (line 13895) | class CoordinateSystem: method __init__ (line 13901) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13902) | def __add__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem:... method __and__ (line 13903) | def __and__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem:... method __bool__ (line 13904) | def __bool__(self) -> bool: ... method __eq__ (line 13905) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13906) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13907) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13908) | def __hash__(self) -> int: ... method __index__ (line 13909) | def __index__(self) -> int: ... method __int__ (line 13910) | def __int__(self) -> int: ... method __le__ (line 13911) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13912) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13913) | def __mul__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem:... method __ne__ (line 13914) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13915) | def __or__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem: ... method __pos__ (line 13916) | def __pos__(self): ... method __radd__ (line 13917) | def __radd__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem... method __rand__ (line 13918) | def __rand__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem... method __rmul__ (line 13919) | def __rmul__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem... method __ror__ (line 13920) | def __ror__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem:... method __rsub__ (line 13921) | def __rsub__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem... method __rxor__ (line 13922) | def __rxor__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem... method __sub__ (line 13923) | def __sub__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem:... method __xor__ (line 13924) | def __xor__(self, other: typing.SupportsInt) -> Qt.CoordinateSystem:... class Corner (line 13926) | class Corner: method __init__ (line 13934) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13935) | def __add__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __and__ (line 13936) | def __and__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __bool__ (line 13937) | def __bool__(self) -> bool: ... method __eq__ (line 13938) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13939) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13940) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13941) | def __hash__(self) -> int: ... method __index__ (line 13942) | def __index__(self) -> int: ... method __int__ (line 13943) | def __int__(self) -> int: ... method __le__ (line 13944) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13945) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13946) | def __mul__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __ne__ (line 13947) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13948) | def __or__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __pos__ (line 13949) | def __pos__(self): ... method __radd__ (line 13950) | def __radd__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __rand__ (line 13951) | def __rand__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __rmul__ (line 13952) | def __rmul__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __ror__ (line 13953) | def __ror__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __rsub__ (line 13954) | def __rsub__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __rxor__ (line 13955) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __sub__ (line 13956) | def __sub__(self, other: typing.SupportsInt) -> Qt.Corner: ... method __xor__ (line 13957) | def __xor__(self, other: typing.SupportsInt) -> Qt.Corner: ... class CursorMoveStyle (line 13959) | class CursorMoveStyle: method __init__ (line 13965) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13966) | def __add__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... method __and__ (line 13967) | def __and__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... method __bool__ (line 13968) | def __bool__(self) -> bool: ... method __eq__ (line 13969) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13970) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13971) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13972) | def __hash__(self) -> int: ... method __index__ (line 13973) | def __index__(self) -> int: ... method __int__ (line 13974) | def __int__(self) -> int: ... method __le__ (line 13975) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13976) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13977) | def __mul__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... method __ne__ (line 13978) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13979) | def __or__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... method __pos__ (line 13980) | def __pos__(self): ... method __radd__ (line 13981) | def __radd__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle:... method __rand__ (line 13982) | def __rand__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle:... method __rmul__ (line 13983) | def __rmul__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle:... method __ror__ (line 13984) | def __ror__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... method __rsub__ (line 13985) | def __rsub__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle:... method __rxor__ (line 13986) | def __rxor__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle:... method __sub__ (line 13987) | def __sub__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... method __xor__ (line 13988) | def __xor__(self, other: typing.SupportsInt) -> Qt.CursorMoveStyle: ... class CursorShape (line 13990) | class CursorShape: method __init__ (line 14019) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14020) | def __add__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __and__ (line 14021) | def __and__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __bool__ (line 14022) | def __bool__(self) -> bool: ... method __eq__ (line 14023) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14024) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14025) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14026) | def __hash__(self) -> int: ... method __index__ (line 14027) | def __index__(self) -> int: ... method __int__ (line 14028) | def __int__(self) -> int: ... method __le__ (line 14029) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14030) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14031) | def __mul__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __ne__ (line 14032) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14033) | def __or__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __pos__ (line 14034) | def __pos__(self): ... method __radd__ (line 14035) | def __radd__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __rand__ (line 14036) | def __rand__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __rmul__ (line 14037) | def __rmul__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __ror__ (line 14038) | def __ror__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __rsub__ (line 14039) | def __rsub__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __rxor__ (line 14040) | def __rxor__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __sub__ (line 14041) | def __sub__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... method __xor__ (line 14042) | def __xor__(self, other: typing.SupportsInt) -> Qt.CursorShape: ... class DateFormat (line 14044) | class DateFormat: method __init__ (line 14059) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14060) | def __add__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __and__ (line 14061) | def __and__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __bool__ (line 14062) | def __bool__(self) -> bool: ... method __eq__ (line 14063) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14064) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14065) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14066) | def __hash__(self) -> int: ... method __index__ (line 14067) | def __index__(self) -> int: ... method __int__ (line 14068) | def __int__(self) -> int: ... method __le__ (line 14069) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14070) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14071) | def __mul__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __ne__ (line 14072) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14073) | def __or__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __pos__ (line 14074) | def __pos__(self): ... method __radd__ (line 14075) | def __radd__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __rand__ (line 14076) | def __rand__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __rmul__ (line 14077) | def __rmul__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __ror__ (line 14078) | def __ror__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __rsub__ (line 14079) | def __rsub__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __rxor__ (line 14080) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __sub__ (line 14081) | def __sub__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... method __xor__ (line 14082) | def __xor__(self, other: typing.SupportsInt) -> Qt.DateFormat: ... class DayOfWeek (line 14084) | class DayOfWeek: method __init__ (line 14095) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14096) | def __add__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __and__ (line 14097) | def __and__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __bool__ (line 14098) | def __bool__(self) -> bool: ... method __eq__ (line 14099) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14100) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14101) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14102) | def __hash__(self) -> int: ... method __index__ (line 14103) | def __index__(self) -> int: ... method __int__ (line 14104) | def __int__(self) -> int: ... method __le__ (line 14105) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14106) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14107) | def __mul__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __ne__ (line 14108) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14109) | def __or__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __pos__ (line 14110) | def __pos__(self): ... method __radd__ (line 14111) | def __radd__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __rand__ (line 14112) | def __rand__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __rmul__ (line 14113) | def __rmul__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __ror__ (line 14114) | def __ror__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __rsub__ (line 14115) | def __rsub__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __rxor__ (line 14116) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __sub__ (line 14117) | def __sub__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... method __xor__ (line 14118) | def __xor__(self, other: typing.SupportsInt) -> Qt.DayOfWeek: ... class DockWidgetArea (line 14120) | class DockWidgetArea: method __init__ (line 14131) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14132) | def __and__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... method __bool__ (line 14133) | def __bool__(self) -> bool: ... method __eq__ (line 14134) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14135) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14136) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14137) | def __hash__(self) -> int: ... method __index__ (line 14138) | def __index__(self) -> int: ... method __int__ (line 14139) | def __int__(self) -> int: ... method __invert__ (line 14140) | def __invert__(self) -> Qt.DockWidgetAreas: ... method __le__ (line 14141) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14142) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14143) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14144) | def __or__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... method __rand__ (line 14145) | def __rand__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas:... method __ror__ (line 14146) | def __ror__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... method __rxor__ (line 14147) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas:... method __xor__ (line 14148) | def __xor__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... class DockWidgetAreaSizes (line 14150) | class DockWidgetAreaSizes: method __init__ (line 14155) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14156) | def __add__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSiz... method __and__ (line 14157) | def __and__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSiz... method __bool__ (line 14158) | def __bool__(self) -> bool: ... method __eq__ (line 14159) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14160) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14161) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14162) | def __hash__(self) -> int: ... method __index__ (line 14163) | def __index__(self) -> int: ... method __int__ (line 14164) | def __int__(self) -> int: ... method __le__ (line 14165) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14166) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14167) | def __mul__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSiz... method __ne__ (line 14168) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14169) | def __or__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSize... method __pos__ (line 14170) | def __pos__(self): ... method __radd__ (line 14171) | def __radd__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSi... method __rand__ (line 14172) | def __rand__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSi... method __rmul__ (line 14173) | def __rmul__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSi... method __ror__ (line 14174) | def __ror__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSiz... method __rsub__ (line 14175) | def __rsub__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSi... method __rxor__ (line 14176) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSi... method __sub__ (line 14177) | def __sub__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSiz... method __xor__ (line 14178) | def __xor__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreaSiz... class DockWidgetAreas (line 14180) | class DockWidgetAreas: method __init__ (line 14182) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14183) | def __and__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... method __bool__ (line 14184) | def __bool__(self) -> bool: ... method __eq__ (line 14185) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14186) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14187) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14188) | def __index__(self) -> int: ... method __int__ (line 14189) | def __int__(self) -> int: ... method __invert__ (line 14190) | def __invert__(self) -> Qt.DockWidgetAreas: ... method __le__ (line 14191) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14192) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14193) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14194) | def __or__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... method __rand__ (line 14195) | def __rand__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas:... method __ror__ (line 14196) | def __ror__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... method __rxor__ (line 14197) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas:... method __xor__ (line 14198) | def __xor__(self, other: typing.SupportsInt) -> Qt.DockWidgetAreas: ... class DropAction (line 14200) | class DropAction: method __init__ (line 14210) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14211) | def __and__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __bool__ (line 14212) | def __bool__(self) -> bool: ... method __eq__ (line 14213) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14214) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14215) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14216) | def __hash__(self) -> int: ... method __index__ (line 14217) | def __index__(self) -> int: ... method __int__ (line 14218) | def __int__(self) -> int: ... method __invert__ (line 14219) | def __invert__(self) -> Qt.DropActions: ... method __le__ (line 14220) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14221) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14222) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14223) | def __or__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __rand__ (line 14224) | def __rand__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __ror__ (line 14225) | def __ror__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __rxor__ (line 14226) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __xor__ (line 14227) | def __xor__(self, other: typing.SupportsInt) -> Qt.DropActions: ... class DropActions (line 14229) | class DropActions: method __init__ (line 14231) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14232) | def __and__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __bool__ (line 14233) | def __bool__(self) -> bool: ... method __eq__ (line 14234) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14235) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14236) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14237) | def __index__(self) -> int: ... method __int__ (line 14238) | def __int__(self) -> int: ... method __invert__ (line 14239) | def __invert__(self) -> Qt.DropActions: ... method __le__ (line 14240) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14241) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14242) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14243) | def __or__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __rand__ (line 14244) | def __rand__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __ror__ (line 14245) | def __ror__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __rxor__ (line 14246) | def __rxor__(self, other: typing.SupportsInt) -> Qt.DropActions: ... method __xor__ (line 14247) | def __xor__(self, other: typing.SupportsInt) -> Qt.DropActions: ... class Edge (line 14249) | class Edge: method __init__ (line 14257) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14258) | def __and__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __bool__ (line 14259) | def __bool__(self) -> bool: ... method __eq__ (line 14260) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14261) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14262) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14263) | def __hash__(self) -> int: ... method __index__ (line 14264) | def __index__(self) -> int: ... method __int__ (line 14265) | def __int__(self) -> int: ... method __invert__ (line 14266) | def __invert__(self) -> Qt.Edges: ... method __le__ (line 14267) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14268) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14269) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14270) | def __or__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __rand__ (line 14271) | def __rand__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __ror__ (line 14272) | def __ror__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __rxor__ (line 14273) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __xor__ (line 14274) | def __xor__(self, other: typing.SupportsInt) -> Qt.Edges: ... class Edges (line 14276) | class Edges: method __init__ (line 14278) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14279) | def __and__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __bool__ (line 14280) | def __bool__(self) -> bool: ... method __eq__ (line 14281) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14282) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14283) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14284) | def __index__(self) -> int: ... method __int__ (line 14285) | def __int__(self) -> int: ... method __invert__ (line 14286) | def __invert__(self) -> Qt.Edges: ... method __le__ (line 14287) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14288) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14289) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14290) | def __or__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __rand__ (line 14291) | def __rand__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __ror__ (line 14292) | def __ror__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __rxor__ (line 14293) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Edges: ... method __xor__ (line 14294) | def __xor__(self, other: typing.SupportsInt) -> Qt.Edges: ... class EnterKeyType (line 14296) | class EnterKeyType: method __init__ (line 14308) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14309) | def __add__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __and__ (line 14310) | def __and__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __bool__ (line 14311) | def __bool__(self) -> bool: ... method __eq__ (line 14312) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14313) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14314) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14315) | def __hash__(self) -> int: ... method __index__ (line 14316) | def __index__(self) -> int: ... method __int__ (line 14317) | def __int__(self) -> int: ... method __le__ (line 14318) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14319) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14320) | def __mul__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __ne__ (line 14321) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14322) | def __or__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __pos__ (line 14323) | def __pos__(self): ... method __radd__ (line 14324) | def __radd__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __rand__ (line 14325) | def __rand__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __rmul__ (line 14326) | def __rmul__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __ror__ (line 14327) | def __ror__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __rsub__ (line 14328) | def __rsub__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __rxor__ (line 14329) | def __rxor__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __sub__ (line 14330) | def __sub__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... method __xor__ (line 14331) | def __xor__(self, other: typing.SupportsInt) -> Qt.EnterKeyType: ... class EventPriority (line 14333) | class EventPriority: method __init__ (line 14340) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14341) | def __add__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __and__ (line 14342) | def __and__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __bool__ (line 14343) | def __bool__(self) -> bool: ... method __eq__ (line 14344) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14345) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14346) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14347) | def __hash__(self) -> int: ... method __index__ (line 14348) | def __index__(self) -> int: ... method __int__ (line 14349) | def __int__(self) -> int: ... method __le__ (line 14350) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14351) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14352) | def __mul__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __ne__ (line 14353) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14354) | def __or__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __pos__ (line 14355) | def __pos__(self): ... method __radd__ (line 14356) | def __radd__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __rand__ (line 14357) | def __rand__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __rmul__ (line 14358) | def __rmul__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __ror__ (line 14359) | def __ror__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __rsub__ (line 14360) | def __rsub__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __rxor__ (line 14361) | def __rxor__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __sub__ (line 14362) | def __sub__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... method __xor__ (line 14363) | def __xor__(self, other: typing.SupportsInt) -> Qt.EventPriority: ... class FillRule (line 14365) | class FillRule: method __init__ (line 14371) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14372) | def __add__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __and__ (line 14373) | def __and__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __bool__ (line 14374) | def __bool__(self) -> bool: ... method __eq__ (line 14375) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14376) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14377) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14378) | def __hash__(self) -> int: ... method __index__ (line 14379) | def __index__(self) -> int: ... method __int__ (line 14380) | def __int__(self) -> int: ... method __le__ (line 14381) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14382) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14383) | def __mul__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __ne__ (line 14384) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14385) | def __or__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __pos__ (line 14386) | def __pos__(self): ... method __radd__ (line 14387) | def __radd__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __rand__ (line 14388) | def __rand__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __rmul__ (line 14389) | def __rmul__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __ror__ (line 14390) | def __ror__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __rsub__ (line 14391) | def __rsub__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __rxor__ (line 14392) | def __rxor__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __sub__ (line 14393) | def __sub__(self, other: typing.SupportsInt) -> Qt.FillRule: ... method __xor__ (line 14394) | def __xor__(self, other: typing.SupportsInt) -> Qt.FillRule: ... class FindChildOption (line 14396) | class FindChildOption: method __init__ (line 14402) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14403) | def __and__(self, other: typing.SupportsInt) -> Qt.FindChildOptions:... method __bool__ (line 14404) | def __bool__(self) -> bool: ... method __eq__ (line 14405) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14406) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14407) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14408) | def __hash__(self) -> int: ... method __index__ (line 14409) | def __index__(self) -> int: ... method __int__ (line 14410) | def __int__(self) -> int: ... method __invert__ (line 14411) | def __invert__(self) -> Qt.FindChildOptions: ... method __le__ (line 14412) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14413) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14414) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14415) | def __or__(self, other: typing.SupportsInt) -> Qt.FindChildOptions: ... method __rand__ (line 14416) | def __rand__(self, other: typing.SupportsInt) -> Qt.FindChildOptions... method __ror__ (line 14417) | def __ror__(self, other: typing.SupportsInt) -> Qt.FindChildOptions:... method __rxor__ (line 14418) | def __rxor__(self, other: typing.SupportsInt) -> Qt.FindChildOptions... method __xor__ (line 14419) | def __xor__(self, other: typing.SupportsInt) -> Qt.FindChildOptions:... class FindChildOptions (line 14421) | class FindChildOptions: method __init__ (line 14423) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14424) | def __and__(self, other: typing.SupportsInt) -> Qt.FindChildOptions:... method __bool__ (line 14425) | def __bool__(self) -> bool: ... method __eq__ (line 14426) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14427) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14428) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14429) | def __index__(self) -> int: ... method __int__ (line 14430) | def __int__(self) -> int: ... method __invert__ (line 14431) | def __invert__(self) -> Qt.FindChildOptions: ... method __le__ (line 14432) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14433) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14434) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14435) | def __or__(self, other: typing.SupportsInt) -> Qt.FindChildOptions: ... method __rand__ (line 14436) | def __rand__(self, other: typing.SupportsInt) -> Qt.FindChildOptions... method __ror__ (line 14437) | def __ror__(self, other: typing.SupportsInt) -> Qt.FindChildOptions:... method __rxor__ (line 14438) | def __rxor__(self, other: typing.SupportsInt) -> Qt.FindChildOptions... method __xor__ (line 14439) | def __xor__(self, other: typing.SupportsInt) -> Qt.FindChildOptions:... class FocusPolicy (line 14441) | class FocusPolicy: method __init__ (line 14450) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14451) | def __add__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __and__ (line 14452) | def __and__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __bool__ (line 14453) | def __bool__(self) -> bool: ... method __eq__ (line 14454) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14455) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14456) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14457) | def __hash__(self) -> int: ... method __index__ (line 14458) | def __index__(self) -> int: ... method __int__ (line 14459) | def __int__(self) -> int: ... method __le__ (line 14460) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14461) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14462) | def __mul__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __ne__ (line 14463) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14464) | def __or__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __pos__ (line 14465) | def __pos__(self): ... method __radd__ (line 14466) | def __radd__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __rand__ (line 14467) | def __rand__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __rmul__ (line 14468) | def __rmul__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __ror__ (line 14469) | def __ror__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __rsub__ (line 14470) | def __rsub__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __rxor__ (line 14471) | def __rxor__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __sub__ (line 14472) | def __sub__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... method __xor__ (line 14473) | def __xor__(self, other: typing.SupportsInt) -> Qt.FocusPolicy: ... class FocusReason (line 14475) | class FocusReason: method __init__ (line 14488) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14489) | def __add__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __and__ (line 14490) | def __and__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __bool__ (line 14491) | def __bool__(self) -> bool: ... method __eq__ (line 14492) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14493) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14494) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14495) | def __hash__(self) -> int: ... method __index__ (line 14496) | def __index__(self) -> int: ... method __int__ (line 14497) | def __int__(self) -> int: ... method __le__ (line 14498) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14499) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14500) | def __mul__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __ne__ (line 14501) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14502) | def __or__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __pos__ (line 14503) | def __pos__(self): ... method __radd__ (line 14504) | def __radd__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __rand__ (line 14505) | def __rand__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __rmul__ (line 14506) | def __rmul__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __ror__ (line 14507) | def __ror__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __rsub__ (line 14508) | def __rsub__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __rxor__ (line 14509) | def __rxor__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __sub__ (line 14510) | def __sub__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... method __xor__ (line 14511) | def __xor__(self, other: typing.SupportsInt) -> Qt.FocusReason: ... class GestureFlag (line 14513) | class GestureFlag: method __init__ (line 14520) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14521) | def __and__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __bool__ (line 14522) | def __bool__(self) -> bool: ... method __eq__ (line 14523) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14524) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14525) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14526) | def __hash__(self) -> int: ... method __index__ (line 14527) | def __index__(self) -> int: ... method __int__ (line 14528) | def __int__(self) -> int: ... method __invert__ (line 14529) | def __invert__(self) -> Qt.GestureFlags: ... method __le__ (line 14530) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14531) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14532) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14533) | def __or__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __rand__ (line 14534) | def __rand__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __ror__ (line 14535) | def __ror__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __rxor__ (line 14536) | def __rxor__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __xor__ (line 14537) | def __xor__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... class GestureFlags (line 14539) | class GestureFlags: method __init__ (line 14541) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14542) | def __and__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __bool__ (line 14543) | def __bool__(self) -> bool: ... method __eq__ (line 14544) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14545) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14546) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14547) | def __index__(self) -> int: ... method __int__ (line 14548) | def __int__(self) -> int: ... method __invert__ (line 14549) | def __invert__(self) -> Qt.GestureFlags: ... method __le__ (line 14550) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14551) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14552) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14553) | def __or__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __rand__ (line 14554) | def __rand__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __ror__ (line 14555) | def __ror__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __rxor__ (line 14556) | def __rxor__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... method __xor__ (line 14557) | def __xor__(self, other: typing.SupportsInt) -> Qt.GestureFlags: ... class GestureState (line 14559) | class GestureState: method __init__ (line 14568) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14569) | def __add__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __and__ (line 14570) | def __and__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __bool__ (line 14571) | def __bool__(self) -> bool: ... method __eq__ (line 14572) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14573) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14574) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14575) | def __hash__(self) -> int: ... method __index__ (line 14576) | def __index__(self) -> int: ... method __int__ (line 14577) | def __int__(self) -> int: ... method __le__ (line 14578) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14579) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14580) | def __mul__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __ne__ (line 14581) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14582) | def __or__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __pos__ (line 14583) | def __pos__(self): ... method __radd__ (line 14584) | def __radd__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __rand__ (line 14585) | def __rand__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __rmul__ (line 14586) | def __rmul__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __ror__ (line 14587) | def __ror__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __rsub__ (line 14588) | def __rsub__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __rxor__ (line 14589) | def __rxor__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __sub__ (line 14590) | def __sub__(self, other: typing.SupportsInt) -> Qt.GestureState: ... method __xor__ (line 14591) | def __xor__(self, other: typing.SupportsInt) -> Qt.GestureState: ... class GestureType (line 14593) | class GestureType: method __init__ (line 14604) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14605) | def __add__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __and__ (line 14606) | def __and__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __bool__ (line 14607) | def __bool__(self) -> bool: ... method __eq__ (line 14608) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14609) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14610) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14611) | def __hash__(self) -> int: ... method __index__ (line 14612) | def __index__(self) -> int: ... method __int__ (line 14613) | def __int__(self) -> int: ... method __le__ (line 14614) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14615) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14616) | def __mul__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __ne__ (line 14617) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14618) | def __or__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __pos__ (line 14619) | def __pos__(self): ... method __radd__ (line 14620) | def __radd__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __rand__ (line 14621) | def __rand__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __rmul__ (line 14622) | def __rmul__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __ror__ (line 14623) | def __ror__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __rsub__ (line 14624) | def __rsub__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __rxor__ (line 14625) | def __rxor__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __sub__ (line 14626) | def __sub__(self, other: typing.SupportsInt) -> Qt.GestureType: ... method __xor__ (line 14627) | def __xor__(self, other: typing.SupportsInt) -> Qt.GestureType: ... class GlobalColor (line 14629) | class GlobalColor: method __init__ (line 14653) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14654) | def __add__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __and__ (line 14655) | def __and__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __bool__ (line 14656) | def __bool__(self) -> bool: ... method __eq__ (line 14657) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14658) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14659) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14660) | def __hash__(self) -> int: ... method __index__ (line 14661) | def __index__(self) -> int: ... method __int__ (line 14662) | def __int__(self) -> int: ... method __le__ (line 14663) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14664) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14665) | def __mul__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __ne__ (line 14666) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14667) | def __or__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __pos__ (line 14668) | def __pos__(self): ... method __radd__ (line 14669) | def __radd__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __rand__ (line 14670) | def __rand__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __rmul__ (line 14671) | def __rmul__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __ror__ (line 14672) | def __ror__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __rsub__ (line 14673) | def __rsub__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __rxor__ (line 14674) | def __rxor__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __sub__ (line 14675) | def __sub__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... method __xor__ (line 14676) | def __xor__(self, other: typing.SupportsInt) -> Qt.GlobalColor: ... class HighDpiScaleFactorRoundingPolicy (line 14678) | class HighDpiScaleFactorRoundingPolicy: method __init__ (line 14688) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14689) | def __add__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFacto... method __and__ (line 14690) | def __and__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFacto... method __bool__ (line 14691) | def __bool__(self) -> bool: ... method __eq__ (line 14692) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14693) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14694) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14695) | def __hash__(self) -> int: ... method __index__ (line 14696) | def __index__(self) -> int: ... method __int__ (line 14697) | def __int__(self) -> int: ... method __le__ (line 14698) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14699) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14700) | def __mul__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFacto... method __ne__ (line 14701) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14702) | def __or__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFactor... method __pos__ (line 14703) | def __pos__(self): ... method __radd__ (line 14704) | def __radd__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFact... method __rand__ (line 14705) | def __rand__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFact... method __rmul__ (line 14706) | def __rmul__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFact... method __ror__ (line 14707) | def __ror__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFacto... method __rsub__ (line 14708) | def __rsub__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFact... method __rxor__ (line 14709) | def __rxor__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFact... method __sub__ (line 14710) | def __sub__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFacto... method __xor__ (line 14711) | def __xor__(self, other: typing.SupportsInt) -> Qt.HighDpiScaleFacto... class HitTestAccuracy (line 14713) | class HitTestAccuracy: method __init__ (line 14719) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14720) | def __add__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... method __and__ (line 14721) | def __and__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... method __bool__ (line 14722) | def __bool__(self) -> bool: ... method __eq__ (line 14723) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14724) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14725) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14726) | def __hash__(self) -> int: ... method __index__ (line 14727) | def __index__(self) -> int: ... method __int__ (line 14728) | def __int__(self) -> int: ... method __le__ (line 14729) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14730) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14731) | def __mul__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... method __ne__ (line 14732) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14733) | def __or__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... method __pos__ (line 14734) | def __pos__(self): ... method __radd__ (line 14735) | def __radd__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy:... method __rand__ (line 14736) | def __rand__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy:... method __rmul__ (line 14737) | def __rmul__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy:... method __ror__ (line 14738) | def __ror__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... method __rsub__ (line 14739) | def __rsub__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy:... method __rxor__ (line 14740) | def __rxor__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy:... method __sub__ (line 14741) | def __sub__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... method __xor__ (line 14742) | def __xor__(self, other: typing.SupportsInt) -> Qt.HitTestAccuracy: ... class ImageConversionFlag (line 14744) | class ImageConversionFlag: method __init__ (line 14767) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14768) | def __and__(self, other: typing.SupportsInt) -> Qt.ImageConversionFl... method __bool__ (line 14769) | def __bool__(self) -> bool: ... method __eq__ (line 14770) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14771) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14772) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14773) | def __hash__(self) -> int: ... method __index__ (line 14774) | def __index__(self) -> int: ... method __int__ (line 14775) | def __int__(self) -> int: ... method __invert__ (line 14776) | def __invert__(self) -> Qt.ImageConversionFlags: ... method __le__ (line 14777) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14778) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14779) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14780) | def __or__(self, other: typing.SupportsInt) -> Qt.ImageConversionFla... method __rand__ (line 14781) | def __rand__(self, other: typing.SupportsInt) -> Qt.ImageConversionF... method __ror__ (line 14782) | def __ror__(self, other: typing.SupportsInt) -> Qt.ImageConversionFl... method __rxor__ (line 14783) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ImageConversionF... method __xor__ (line 14784) | def __xor__(self, other: typing.SupportsInt) -> Qt.ImageConversionFl... class ImageConversionFlags (line 14786) | class ImageConversionFlags: method __init__ (line 14788) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14789) | def __and__(self, other: typing.SupportsInt) -> Qt.ImageConversionFl... method __bool__ (line 14790) | def __bool__(self) -> bool: ... method __eq__ (line 14791) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14792) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14793) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14794) | def __index__(self) -> int: ... method __int__ (line 14795) | def __int__(self) -> int: ... method __invert__ (line 14796) | def __invert__(self) -> Qt.ImageConversionFlags: ... method __le__ (line 14797) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14798) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14799) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14800) | def __or__(self, other: typing.SupportsInt) -> Qt.ImageConversionFla... method __rand__ (line 14801) | def __rand__(self, other: typing.SupportsInt) -> Qt.ImageConversionF... method __ror__ (line 14802) | def __ror__(self, other: typing.SupportsInt) -> Qt.ImageConversionFl... method __rxor__ (line 14803) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ImageConversionF... method __xor__ (line 14804) | def __xor__(self, other: typing.SupportsInt) -> Qt.ImageConversionFl... class InputMethodHint (line 14806) | class InputMethodHint: method __init__ (line 14833) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14834) | def __and__(self, other: typing.SupportsInt) -> Qt.InputMethodHints:... method __bool__ (line 14835) | def __bool__(self) -> bool: ... method __eq__ (line 14836) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14837) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14838) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14839) | def __hash__(self) -> int: ... method __index__ (line 14840) | def __index__(self) -> int: ... method __int__ (line 14841) | def __int__(self) -> int: ... method __invert__ (line 14842) | def __invert__(self) -> Qt.InputMethodHints: ... method __le__ (line 14843) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14844) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14845) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14846) | def __or__(self, other: typing.SupportsInt) -> Qt.InputMethodHints: ... method __rand__ (line 14847) | def __rand__(self, other: typing.SupportsInt) -> Qt.InputMethodHints... method __ror__ (line 14848) | def __ror__(self, other: typing.SupportsInt) -> Qt.InputMethodHints:... method __rxor__ (line 14849) | def __rxor__(self, other: typing.SupportsInt) -> Qt.InputMethodHints... method __xor__ (line 14850) | def __xor__(self, other: typing.SupportsInt) -> Qt.InputMethodHints:... class InputMethodHints (line 14852) | class InputMethodHints: method __init__ (line 14854) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14855) | def __and__(self, other: typing.SupportsInt) -> Qt.InputMethodHints:... method __bool__ (line 14856) | def __bool__(self) -> bool: ... method __eq__ (line 14857) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14858) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14859) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14860) | def __index__(self) -> int: ... method __int__ (line 14861) | def __int__(self) -> int: ... method __invert__ (line 14862) | def __invert__(self) -> Qt.InputMethodHints: ... method __le__ (line 14863) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14864) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14865) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14866) | def __or__(self, other: typing.SupportsInt) -> Qt.InputMethodHints: ... method __rand__ (line 14867) | def __rand__(self, other: typing.SupportsInt) -> Qt.InputMethodHints... method __ror__ (line 14868) | def __ror__(self, other: typing.SupportsInt) -> Qt.InputMethodHints:... method __rxor__ (line 14869) | def __rxor__(self, other: typing.SupportsInt) -> Qt.InputMethodHints... method __xor__ (line 14870) | def __xor__(self, other: typing.SupportsInt) -> Qt.InputMethodHints:... class InputMethodQueries (line 14872) | class InputMethodQueries: method __init__ (line 14874) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14875) | def __and__(self, other: typing.SupportsInt) -> Qt.InputMethodQuerie... method __bool__ (line 14876) | def __bool__(self) -> bool: ... method __eq__ (line 14877) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14878) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14879) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14880) | def __index__(self) -> int: ... method __int__ (line 14881) | def __int__(self) -> int: ... method __invert__ (line 14882) | def __invert__(self) -> Qt.InputMethodQueries: ... method __le__ (line 14883) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14884) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14885) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14886) | def __or__(self, other: typing.SupportsInt) -> Qt.InputMethodQueries... method __rand__ (line 14887) | def __rand__(self, other: typing.SupportsInt) -> Qt.InputMethodQueri... method __ror__ (line 14888) | def __ror__(self, other: typing.SupportsInt) -> Qt.InputMethodQuerie... method __rxor__ (line 14889) | def __rxor__(self, other: typing.SupportsInt) -> Qt.InputMethodQueri... method __xor__ (line 14890) | def __xor__(self, other: typing.SupportsInt) -> Qt.InputMethodQuerie... class InputMethodQuery (line 14892) | class InputMethodQuery: method __init__ (line 14916) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14917) | def __and__(self, other: typing.SupportsInt) -> Qt.InputMethodQuerie... method __bool__ (line 14918) | def __bool__(self) -> bool: ... method __eq__ (line 14919) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14920) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14921) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14922) | def __hash__(self) -> int: ... method __index__ (line 14923) | def __index__(self) -> int: ... method __int__ (line 14924) | def __int__(self) -> int: ... method __invert__ (line 14925) | def __invert__(self) -> Qt.InputMethodQueries: ... method __le__ (line 14926) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14927) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14928) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14929) | def __or__(self, other: typing.SupportsInt) -> Qt.InputMethodQueries... method __rand__ (line 14930) | def __rand__(self, other: typing.SupportsInt) -> Qt.InputMethodQueri... method __ror__ (line 14931) | def __ror__(self, other: typing.SupportsInt) -> Qt.InputMethodQuerie... method __rxor__ (line 14932) | def __rxor__(self, other: typing.SupportsInt) -> Qt.InputMethodQueri... method __xor__ (line 14933) | def __xor__(self, other: typing.SupportsInt) -> Qt.InputMethodQuerie... class ItemDataRole (line 14935) | class ItemDataRole: method __init__ (line 14962) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14963) | def __add__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __and__ (line 14964) | def __and__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __bool__ (line 14965) | def __bool__(self) -> bool: ... method __eq__ (line 14966) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14967) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14968) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14969) | def __hash__(self) -> int: ... method __index__ (line 14970) | def __index__(self) -> int: ... method __int__ (line 14971) | def __int__(self) -> int: ... method __le__ (line 14972) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14973) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14974) | def __mul__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __ne__ (line 14975) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14976) | def __or__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __pos__ (line 14977) | def __pos__(self): ... method __radd__ (line 14978) | def __radd__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __rand__ (line 14979) | def __rand__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __rmul__ (line 14980) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __ror__ (line 14981) | def __ror__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __rsub__ (line 14982) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __rxor__ (line 14983) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __sub__ (line 14984) | def __sub__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... method __xor__ (line 14985) | def __xor__(self, other: typing.SupportsInt) -> Qt.ItemDataRole: ... class ItemFlag (line 14987) | class ItemFlag: method __init__ (line 15002) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15003) | def __and__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __bool__ (line 15004) | def __bool__(self) -> bool: ... method __eq__ (line 15005) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15006) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15007) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15008) | def __hash__(self) -> int: ... method __index__ (line 15009) | def __index__(self) -> int: ... method __int__ (line 15010) | def __int__(self) -> int: ... method __invert__ (line 15011) | def __invert__(self) -> Qt.ItemFlags: ... method __le__ (line 15012) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15013) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15014) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15015) | def __or__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __rand__ (line 15016) | def __rand__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __ror__ (line 15017) | def __ror__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __rxor__ (line 15018) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __xor__ (line 15019) | def __xor__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... class ItemFlags (line 15021) | class ItemFlags: method __init__ (line 15023) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15024) | def __and__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __bool__ (line 15025) | def __bool__(self) -> bool: ... method __eq__ (line 15026) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15027) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15028) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15029) | def __index__(self) -> int: ... method __int__ (line 15030) | def __int__(self) -> int: ... method __invert__ (line 15031) | def __invert__(self) -> Qt.ItemFlags: ... method __le__ (line 15032) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15033) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15034) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15035) | def __or__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __rand__ (line 15036) | def __rand__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __ror__ (line 15037) | def __ror__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __rxor__ (line 15038) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... method __xor__ (line 15039) | def __xor__(self, other: typing.SupportsInt) -> Qt.ItemFlags: ... class ItemSelectionMode (line 15041) | class ItemSelectionMode: method __init__ (line 15049) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15050) | def __add__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode... method __and__ (line 15051) | def __and__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode... method __bool__ (line 15052) | def __bool__(self) -> bool: ... method __eq__ (line 15053) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15054) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15055) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15056) | def __hash__(self) -> int: ... method __index__ (line 15057) | def __index__(self) -> int: ... method __int__ (line 15058) | def __int__(self) -> int: ... method __le__ (line 15059) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15060) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15061) | def __mul__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode... method __ne__ (line 15062) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15063) | def __or__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode:... method __pos__ (line 15064) | def __pos__(self): ... method __radd__ (line 15065) | def __radd__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMod... method __rand__ (line 15066) | def __rand__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMod... method __rmul__ (line 15067) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMod... method __ror__ (line 15068) | def __ror__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode... method __rsub__ (line 15069) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMod... method __rxor__ (line 15070) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMod... method __sub__ (line 15071) | def __sub__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode... method __xor__ (line 15072) | def __xor__(self, other: typing.SupportsInt) -> Qt.ItemSelectionMode... class ItemSelectionOperation (line 15074) | class ItemSelectionOperation: method __init__ (line 15080) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15081) | def __add__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOper... method __and__ (line 15082) | def __and__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOper... method __bool__ (line 15083) | def __bool__(self) -> bool: ... method __eq__ (line 15084) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15085) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15086) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15087) | def __hash__(self) -> int: ... method __index__ (line 15088) | def __index__(self) -> int: ... method __int__ (line 15089) | def __int__(self) -> int: ... method __le__ (line 15090) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15091) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15092) | def __mul__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOper... method __ne__ (line 15093) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15094) | def __or__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOpera... method __pos__ (line 15095) | def __pos__(self): ... method __radd__ (line 15096) | def __radd__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOpe... method __rand__ (line 15097) | def __rand__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOpe... method __rmul__ (line 15098) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOpe... method __ror__ (line 15099) | def __ror__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOper... method __rsub__ (line 15100) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOpe... method __rxor__ (line 15101) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOpe... method __sub__ (line 15102) | def __sub__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOper... method __xor__ (line 15103) | def __xor__(self, other: typing.SupportsInt) -> Qt.ItemSelectionOper... class Key (line 15105) | class Key: method __init__ (line 15578) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15579) | def __add__(self, other: typing.SupportsInt) -> Qt.Key: ... method __and__ (line 15580) | def __and__(self, other: typing.SupportsInt) -> Qt.Key: ... method __bool__ (line 15581) | def __bool__(self) -> bool: ... method __eq__ (line 15582) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15583) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15584) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15585) | def __hash__(self) -> int: ... method __index__ (line 15586) | def __index__(self) -> int: ... method __int__ (line 15587) | def __int__(self) -> int: ... method __le__ (line 15588) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15589) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15590) | def __mul__(self, other: typing.SupportsInt) -> Qt.Key: ... method __ne__ (line 15591) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15592) | def __or__(self, other: typing.SupportsInt) -> Qt.Key: ... method __pos__ (line 15593) | def __pos__(self): ... method __radd__ (line 15594) | def __radd__(self, other: typing.SupportsInt) -> Qt.Key: ... method __rand__ (line 15595) | def __rand__(self, other: typing.SupportsInt) -> Qt.Key: ... method __rmul__ (line 15596) | def __rmul__(self, other: typing.SupportsInt) -> Qt.Key: ... method __ror__ (line 15597) | def __ror__(self, other: typing.SupportsInt) -> Qt.Key: ... method __rsub__ (line 15598) | def __rsub__(self, other: typing.SupportsInt) -> Qt.Key: ... method __rxor__ (line 15599) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Key: ... method __sub__ (line 15600) | def __sub__(self, other: typing.SupportsInt) -> Qt.Key: ... method __xor__ (line 15601) | def __xor__(self, other: typing.SupportsInt) -> Qt.Key: ... class KeyboardModifier (line 15603) | class KeyboardModifier: method __init__ (line 15615) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15616) | def __and__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers... method __bool__ (line 15617) | def __bool__(self) -> bool: ... method __eq__ (line 15618) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15619) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15620) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15621) | def __hash__(self) -> int: ... method __index__ (line 15622) | def __index__(self) -> int: ... method __int__ (line 15623) | def __int__(self) -> int: ... method __invert__ (line 15624) | def __invert__(self) -> Qt.KeyboardModifiers: ... method __le__ (line 15625) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15626) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15627) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15628) | def __or__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers:... method __rand__ (line 15629) | def __rand__(self, other: typing.SupportsInt) -> Qt.KeyboardModifier... method __ror__ (line 15630) | def __ror__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers... method __rxor__ (line 15631) | def __rxor__(self, other: typing.SupportsInt) -> Qt.KeyboardModifier... method __xor__ (line 15632) | def __xor__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers... class KeyboardModifiers (line 15634) | class KeyboardModifiers: method __init__ (line 15636) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15637) | def __and__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers... method __bool__ (line 15638) | def __bool__(self) -> bool: ... method __eq__ (line 15639) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15640) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15641) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15642) | def __index__(self) -> int: ... method __int__ (line 15643) | def __int__(self) -> int: ... method __invert__ (line 15644) | def __invert__(self) -> Qt.KeyboardModifiers: ... method __le__ (line 15645) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15646) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15647) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15648) | def __or__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers:... method __rand__ (line 15649) | def __rand__(self, other: typing.SupportsInt) -> Qt.KeyboardModifier... method __ror__ (line 15650) | def __ror__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers... method __rxor__ (line 15651) | def __rxor__(self, other: typing.SupportsInt) -> Qt.KeyboardModifier... method __xor__ (line 15652) | def __xor__(self, other: typing.SupportsInt) -> Qt.KeyboardModifiers... class LayoutDirection (line 15654) | class LayoutDirection: method __init__ (line 15661) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15662) | def __add__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... method __and__ (line 15663) | def __and__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... method __bool__ (line 15664) | def __bool__(self) -> bool: ... method __eq__ (line 15665) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15666) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15667) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15668) | def __hash__(self) -> int: ... method __index__ (line 15669) | def __index__(self) -> int: ... method __int__ (line 15670) | def __int__(self) -> int: ... method __le__ (line 15671) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15672) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15673) | def __mul__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... method __ne__ (line 15674) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15675) | def __or__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... method __pos__ (line 15676) | def __pos__(self): ... method __radd__ (line 15677) | def __radd__(self, other: typing.SupportsInt) -> Qt.LayoutDirection:... method __rand__ (line 15678) | def __rand__(self, other: typing.SupportsInt) -> Qt.LayoutDirection:... method __rmul__ (line 15679) | def __rmul__(self, other: typing.SupportsInt) -> Qt.LayoutDirection:... method __ror__ (line 15680) | def __ror__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... method __rsub__ (line 15681) | def __rsub__(self, other: typing.SupportsInt) -> Qt.LayoutDirection:... method __rxor__ (line 15682) | def __rxor__(self, other: typing.SupportsInt) -> Qt.LayoutDirection:... method __sub__ (line 15683) | def __sub__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... method __xor__ (line 15684) | def __xor__(self, other: typing.SupportsInt) -> Qt.LayoutDirection: ... class MaskMode (line 15686) | class MaskMode: method __init__ (line 15692) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15693) | def __add__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __and__ (line 15694) | def __and__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __bool__ (line 15695) | def __bool__(self) -> bool: ... method __eq__ (line 15696) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15697) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15698) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15699) | def __hash__(self) -> int: ... method __index__ (line 15700) | def __index__(self) -> int: ... method __int__ (line 15701) | def __int__(self) -> int: ... method __le__ (line 15702) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15703) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15704) | def __mul__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __ne__ (line 15705) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15706) | def __or__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __pos__ (line 15707) | def __pos__(self): ... method __radd__ (line 15708) | def __radd__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __rand__ (line 15709) | def __rand__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __rmul__ (line 15710) | def __rmul__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __ror__ (line 15711) | def __ror__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __rsub__ (line 15712) | def __rsub__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __rxor__ (line 15713) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __sub__ (line 15714) | def __sub__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... method __xor__ (line 15715) | def __xor__(self, other: typing.SupportsInt) -> Qt.MaskMode: ... class MatchFlag (line 15717) | class MatchFlag: method __init__ (line 15732) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15733) | def __and__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __bool__ (line 15734) | def __bool__(self) -> bool: ... method __eq__ (line 15735) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15736) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15737) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15738) | def __hash__(self) -> int: ... method __index__ (line 15739) | def __index__(self) -> int: ... method __int__ (line 15740) | def __int__(self) -> int: ... method __invert__ (line 15741) | def __invert__(self) -> Qt.MatchFlags: ... method __le__ (line 15742) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15743) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15744) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15745) | def __or__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __rand__ (line 15746) | def __rand__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __ror__ (line 15747) | def __ror__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __rxor__ (line 15748) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __xor__ (line 15749) | def __xor__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... class MatchFlags (line 15751) | class MatchFlags: method __init__ (line 15753) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15754) | def __and__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __bool__ (line 15755) | def __bool__(self) -> bool: ... method __eq__ (line 15756) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15757) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15758) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15759) | def __index__(self) -> int: ... method __int__ (line 15760) | def __int__(self) -> int: ... method __invert__ (line 15761) | def __invert__(self) -> Qt.MatchFlags: ... method __le__ (line 15762) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15763) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15764) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15765) | def __or__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __rand__ (line 15766) | def __rand__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __ror__ (line 15767) | def __ror__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __rxor__ (line 15768) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... method __xor__ (line 15769) | def __xor__(self, other: typing.SupportsInt) -> Qt.MatchFlags: ... class Modifier (line 15771) | class Modifier: method __init__ (line 15781) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15782) | def __add__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __and__ (line 15783) | def __and__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __bool__ (line 15784) | def __bool__(self) -> bool: ... method __eq__ (line 15785) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15786) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15787) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15788) | def __hash__(self) -> int: ... method __index__ (line 15789) | def __index__(self) -> int: ... method __int__ (line 15790) | def __int__(self) -> int: ... method __le__ (line 15791) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15792) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15793) | def __mul__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __ne__ (line 15794) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15795) | def __or__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __pos__ (line 15796) | def __pos__(self): ... method __radd__ (line 15797) | def __radd__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __rand__ (line 15798) | def __rand__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __rmul__ (line 15799) | def __rmul__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __ror__ (line 15800) | def __ror__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __rsub__ (line 15801) | def __rsub__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __rxor__ (line 15802) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __sub__ (line 15803) | def __sub__(self, other: typing.SupportsInt) -> Qt.Modifier: ... method __xor__ (line 15804) | def __xor__(self, other: typing.SupportsInt) -> Qt.Modifier: ... class MouseButton (line 15806) | class MouseButton: method __init__ (line 15847) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15848) | def __and__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __bool__ (line 15849) | def __bool__(self) -> bool: ... method __eq__ (line 15850) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15851) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15852) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15853) | def __hash__(self) -> int: ... method __index__ (line 15854) | def __index__(self) -> int: ... method __int__ (line 15855) | def __int__(self) -> int: ... method __invert__ (line 15856) | def __invert__(self) -> Qt.MouseButtons: ... method __le__ (line 15857) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15858) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15859) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15860) | def __or__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __rand__ (line 15861) | def __rand__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __ror__ (line 15862) | def __ror__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __rxor__ (line 15863) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __xor__ (line 15864) | def __xor__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... class MouseButtons (line 15866) | class MouseButtons: method __init__ (line 15868) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15869) | def __and__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __bool__ (line 15870) | def __bool__(self) -> bool: ... method __eq__ (line 15871) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15872) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15873) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15874) | def __index__(self) -> int: ... method __int__ (line 15875) | def __int__(self) -> int: ... method __invert__ (line 15876) | def __invert__(self) -> Qt.MouseButtons: ... method __le__ (line 15877) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15878) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15879) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15880) | def __or__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __rand__ (line 15881) | def __rand__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __ror__ (line 15882) | def __ror__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __rxor__ (line 15883) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... method __xor__ (line 15884) | def __xor__(self, other: typing.SupportsInt) -> Qt.MouseButtons: ... class MouseEventFlag (line 15886) | class MouseEventFlag: method __init__ (line 15892) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15893) | def __and__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... method __bool__ (line 15894) | def __bool__(self) -> bool: ... method __eq__ (line 15895) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15896) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15897) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15898) | def __hash__(self) -> int: ... method __index__ (line 15899) | def __index__(self) -> int: ... method __int__ (line 15900) | def __int__(self) -> int: ... method __invert__ (line 15901) | def __invert__(self) -> Qt.MouseEventFlags: ... method __le__ (line 15902) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15903) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15904) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15905) | def __or__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... method __rand__ (line 15906) | def __rand__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags:... method __ror__ (line 15907) | def __ror__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... method __rxor__ (line 15908) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags:... method __xor__ (line 15909) | def __xor__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... class MouseEventFlags (line 15911) | class MouseEventFlags: method __init__ (line 15913) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15914) | def __and__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... method __bool__ (line 15915) | def __bool__(self) -> bool: ... method __eq__ (line 15916) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15917) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15918) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15919) | def __index__(self) -> int: ... method __int__ (line 15920) | def __int__(self) -> int: ... method __invert__ (line 15921) | def __invert__(self) -> Qt.MouseEventFlags: ... method __le__ (line 15922) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15923) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15924) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15925) | def __or__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... method __rand__ (line 15926) | def __rand__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags:... method __ror__ (line 15927) | def __ror__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... method __rxor__ (line 15928) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags:... method __xor__ (line 15929) | def __xor__(self, other: typing.SupportsInt) -> Qt.MouseEventFlags: ... class MouseEventSource (line 15931) | class MouseEventSource: method __init__ (line 15939) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15940) | def __add__(self, other: typing.SupportsInt) -> Qt.MouseEventSource:... method __and__ (line 15941) | def __and__(self, other: typing.SupportsInt) -> Qt.MouseEventSource:... method __bool__ (line 15942) | def __bool__(self) -> bool: ... method __eq__ (line 15943) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15944) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15945) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15946) | def __hash__(self) -> int: ... method __index__ (line 15947) | def __index__(self) -> int: ... method __int__ (line 15948) | def __int__(self) -> int: ... method __le__ (line 15949) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15950) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15951) | def __mul__(self, other: typing.SupportsInt) -> Qt.MouseEventSource:... method __ne__ (line 15952) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15953) | def __or__(self, other: typing.SupportsInt) -> Qt.MouseEventSource: ... method __pos__ (line 15954) | def __pos__(self): ... method __radd__ (line 15955) | def __radd__(self, other: typing.SupportsInt) -> Qt.MouseEventSource... method __rand__ (line 15956) | def __rand__(self, other: typing.SupportsInt) -> Qt.MouseEventSource... method __rmul__ (line 15957) | def __rmul__(self, other: typing.SupportsInt) -> Qt.MouseEventSource... method __ror__ (line 15958) | def __ror__(self, other: typing.SupportsInt) -> Qt.MouseEventSource:... method __rsub__ (line 15959) | def __rsub__(self, other: typing.SupportsInt) -> Qt.MouseEventSource... method __rxor__ (line 15960) | def __rxor__(self, other: typing.SupportsInt) -> Qt.MouseEventSource... method __sub__ (line 15961) | def __sub__(self, other: typing.SupportsInt) -> Qt.MouseEventSource:... method __xor__ (line 15962) | def __xor__(self, other: typing.SupportsInt) -> Qt.MouseEventSource:... class NativeGestureType (line 15964) | class NativeGestureType: method __init__ (line 15975) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15976) | def __add__(self, other: typing.SupportsInt) -> Qt.NativeGestureType... method __and__ (line 15977) | def __and__(self, other: typing.SupportsInt) -> Qt.NativeGestureType... method __bool__ (line 15978) | def __bool__(self) -> bool: ... method __eq__ (line 15979) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15980) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15981) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15982) | def __hash__(self) -> int: ... method __index__ (line 15983) | def __index__(self) -> int: ... method __int__ (line 15984) | def __int__(self) -> int: ... method __le__ (line 15985) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15986) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15987) | def __mul__(self, other: typing.SupportsInt) -> Qt.NativeGestureType... method __ne__ (line 15988) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15989) | def __or__(self, other: typing.SupportsInt) -> Qt.NativeGestureType:... method __pos__ (line 15990) | def __pos__(self): ... method __radd__ (line 15991) | def __radd__(self, other: typing.SupportsInt) -> Qt.NativeGestureTyp... method __rand__ (line 15992) | def __rand__(self, other: typing.SupportsInt) -> Qt.NativeGestureTyp... method __rmul__ (line 15993) | def __rmul__(self, other: typing.SupportsInt) -> Qt.NativeGestureTyp... method __ror__ (line 15994) | def __ror__(self, other: typing.SupportsInt) -> Qt.NativeGestureType... method __rsub__ (line 15995) | def __rsub__(self, other: typing.SupportsInt) -> Qt.NativeGestureTyp... method __rxor__ (line 15996) | def __rxor__(self, other: typing.SupportsInt) -> Qt.NativeGestureTyp... method __sub__ (line 15997) | def __sub__(self, other: typing.SupportsInt) -> Qt.NativeGestureType... method __xor__ (line 15998) | def __xor__(self, other: typing.SupportsInt) -> Qt.NativeGestureType... class NavigationMode (line 16000) | class NavigationMode: method __init__ (line 16009) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16010) | def __add__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __and__ (line 16011) | def __and__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __bool__ (line 16012) | def __bool__(self) -> bool: ... method __eq__ (line 16013) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16014) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16015) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16016) | def __hash__(self) -> int: ... method __index__ (line 16017) | def __index__(self) -> int: ... method __int__ (line 16018) | def __int__(self) -> int: ... method __le__ (line 16019) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16020) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16021) | def __mul__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __ne__ (line 16022) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16023) | def __or__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __pos__ (line 16024) | def __pos__(self): ... method __radd__ (line 16025) | def __radd__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __rand__ (line 16026) | def __rand__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __rmul__ (line 16027) | def __rmul__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __ror__ (line 16028) | def __ror__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __rsub__ (line 16029) | def __rsub__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __rxor__ (line 16030) | def __rxor__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __sub__ (line 16031) | def __sub__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... method __xor__ (line 16032) | def __xor__(self, other: typing.SupportsInt) -> Qt.NavigationMode: ... class Orientation (line 16034) | class Orientation: method __init__ (line 16040) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16041) | def __and__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __bool__ (line 16042) | def __bool__(self) -> bool: ... method __eq__ (line 16043) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16044) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16045) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16046) | def __hash__(self) -> int: ... method __index__ (line 16047) | def __index__(self) -> int: ... method __int__ (line 16048) | def __int__(self) -> int: ... method __invert__ (line 16049) | def __invert__(self) -> Qt.Orientations: ... method __le__ (line 16050) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16051) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16052) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16053) | def __or__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __rand__ (line 16054) | def __rand__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __ror__ (line 16055) | def __ror__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __rxor__ (line 16056) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __xor__ (line 16057) | def __xor__(self, other: typing.SupportsInt) -> Qt.Orientations: ... class Orientations (line 16059) | class Orientations: method __init__ (line 16061) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16062) | def __and__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __bool__ (line 16063) | def __bool__(self) -> bool: ... method __eq__ (line 16064) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16065) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16066) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16067) | def __index__(self) -> int: ... method __int__ (line 16068) | def __int__(self) -> int: ... method __invert__ (line 16069) | def __invert__(self) -> Qt.Orientations: ... method __le__ (line 16070) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16071) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16072) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16073) | def __or__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __rand__ (line 16074) | def __rand__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __ror__ (line 16075) | def __ror__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __rxor__ (line 16076) | def __rxor__(self, other: typing.SupportsInt) -> Qt.Orientations: ... method __xor__ (line 16077) | def __xor__(self, other: typing.SupportsInt) -> Qt.Orientations: ... class PenCapStyle (line 16079) | class PenCapStyle: method __init__ (line 16087) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16088) | def __add__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __and__ (line 16089) | def __and__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __bool__ (line 16090) | def __bool__(self) -> bool: ... method __eq__ (line 16091) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16092) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16093) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16094) | def __hash__(self) -> int: ... method __index__ (line 16095) | def __index__(self) -> int: ... method __int__ (line 16096) | def __int__(self) -> int: ... method __le__ (line 16097) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16098) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16099) | def __mul__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __ne__ (line 16100) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16101) | def __or__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __pos__ (line 16102) | def __pos__(self): ... method __radd__ (line 16103) | def __radd__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __rand__ (line 16104) | def __rand__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __rmul__ (line 16105) | def __rmul__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __ror__ (line 16106) | def __ror__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __rsub__ (line 16107) | def __rsub__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __rxor__ (line 16108) | def __rxor__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __sub__ (line 16109) | def __sub__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... method __xor__ (line 16110) | def __xor__(self, other: typing.SupportsInt) -> Qt.PenCapStyle: ... class PenJoinStyle (line 16112) | class PenJoinStyle: method __init__ (line 16121) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16122) | def __add__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __and__ (line 16123) | def __and__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __bool__ (line 16124) | def __bool__(self) -> bool: ... method __eq__ (line 16125) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16126) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16127) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16128) | def __hash__(self) -> int: ... method __index__ (line 16129) | def __index__(self) -> int: ... method __int__ (line 16130) | def __int__(self) -> int: ... method __le__ (line 16131) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16132) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16133) | def __mul__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __ne__ (line 16134) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16135) | def __or__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __pos__ (line 16136) | def __pos__(self): ... method __radd__ (line 16137) | def __radd__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __rand__ (line 16138) | def __rand__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __rmul__ (line 16139) | def __rmul__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __ror__ (line 16140) | def __ror__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __rsub__ (line 16141) | def __rsub__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __rxor__ (line 16142) | def __rxor__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __sub__ (line 16143) | def __sub__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... method __xor__ (line 16144) | def __xor__(self, other: typing.SupportsInt) -> Qt.PenJoinStyle: ... class PenStyle (line 16146) | class PenStyle: method __init__ (line 16158) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16159) | def __add__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __and__ (line 16160) | def __and__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __bool__ (line 16161) | def __bool__(self) -> bool: ... method __eq__ (line 16162) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16163) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16164) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16165) | def __hash__(self) -> int: ... method __index__ (line 16166) | def __index__(self) -> int: ... method __int__ (line 16167) | def __int__(self) -> int: ... method __le__ (line 16168) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16169) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16170) | def __mul__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __ne__ (line 16171) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16172) | def __or__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __pos__ (line 16173) | def __pos__(self): ... method __radd__ (line 16174) | def __radd__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __rand__ (line 16175) | def __rand__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __rmul__ (line 16176) | def __rmul__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __ror__ (line 16177) | def __ror__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __rsub__ (line 16178) | def __rsub__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __rxor__ (line 16179) | def __rxor__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __sub__ (line 16180) | def __sub__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... method __xor__ (line 16181) | def __xor__(self, other: typing.SupportsInt) -> Qt.PenStyle: ... class ScreenOrientation (line 16183) | class ScreenOrientation: method __init__ (line 16192) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16193) | def __and__(self, other: typing.SupportsInt) -> Qt.ScreenOrientation... method __bool__ (line 16194) | def __bool__(self) -> bool: ... method __eq__ (line 16195) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16196) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16197) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16198) | def __hash__(self) -> int: ... method __index__ (line 16199) | def __index__(self) -> int: ... method __int__ (line 16200) | def __int__(self) -> int: ... method __invert__ (line 16201) | def __invert__(self) -> Qt.ScreenOrientations: ... method __le__ (line 16202) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16203) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16204) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16205) | def __or__(self, other: typing.SupportsInt) -> Qt.ScreenOrientations... method __rand__ (line 16206) | def __rand__(self, other: typing.SupportsInt) -> Qt.ScreenOrientatio... method __ror__ (line 16207) | def __ror__(self, other: typing.SupportsInt) -> Qt.ScreenOrientation... method __rxor__ (line 16208) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ScreenOrientatio... method __xor__ (line 16209) | def __xor__(self, other: typing.SupportsInt) -> Qt.ScreenOrientation... class ScreenOrientations (line 16211) | class ScreenOrientations: method __init__ (line 16213) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16214) | def __and__(self, other: typing.SupportsInt) -> Qt.ScreenOrientation... method __bool__ (line 16215) | def __bool__(self) -> bool: ... method __eq__ (line 16216) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16217) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16218) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16219) | def __index__(self) -> int: ... method __int__ (line 16220) | def __int__(self) -> int: ... method __invert__ (line 16221) | def __invert__(self) -> Qt.ScreenOrientations: ... method __le__ (line 16222) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16223) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16224) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16225) | def __or__(self, other: typing.SupportsInt) -> Qt.ScreenOrientations... method __rand__ (line 16226) | def __rand__(self, other: typing.SupportsInt) -> Qt.ScreenOrientatio... method __ror__ (line 16227) | def __ror__(self, other: typing.SupportsInt) -> Qt.ScreenOrientation... method __rxor__ (line 16228) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ScreenOrientatio... method __xor__ (line 16229) | def __xor__(self, other: typing.SupportsInt) -> Qt.ScreenOrientation... class ScrollBarPolicy (line 16231) | class ScrollBarPolicy: method __init__ (line 16238) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16239) | def __add__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... method __and__ (line 16240) | def __and__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... method __bool__ (line 16241) | def __bool__(self) -> bool: ... method __eq__ (line 16242) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16243) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16244) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16245) | def __hash__(self) -> int: ... method __index__ (line 16246) | def __index__(self) -> int: ... method __int__ (line 16247) | def __int__(self) -> int: ... method __le__ (line 16248) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16249) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16250) | def __mul__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... method __ne__ (line 16251) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16252) | def __or__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... method __pos__ (line 16253) | def __pos__(self): ... method __radd__ (line 16254) | def __radd__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy:... method __rand__ (line 16255) | def __rand__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy:... method __rmul__ (line 16256) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy:... method __ror__ (line 16257) | def __ror__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... method __rsub__ (line 16258) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy:... method __rxor__ (line 16259) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy:... method __sub__ (line 16260) | def __sub__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... method __xor__ (line 16261) | def __xor__(self, other: typing.SupportsInt) -> Qt.ScrollBarPolicy: ... class ScrollPhase (line 16263) | class ScrollPhase: method __init__ (line 16272) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16273) | def __add__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __and__ (line 16274) | def __and__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __bool__ (line 16275) | def __bool__(self) -> bool: ... method __eq__ (line 16276) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16277) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16278) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16279) | def __hash__(self) -> int: ... method __index__ (line 16280) | def __index__(self) -> int: ... method __int__ (line 16281) | def __int__(self) -> int: ... method __le__ (line 16282) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16283) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16284) | def __mul__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __ne__ (line 16285) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16286) | def __or__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __pos__ (line 16287) | def __pos__(self): ... method __radd__ (line 16288) | def __radd__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __rand__ (line 16289) | def __rand__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __rmul__ (line 16290) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __ror__ (line 16291) | def __ror__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __rsub__ (line 16292) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __rxor__ (line 16293) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __sub__ (line 16294) | def __sub__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... method __xor__ (line 16295) | def __xor__(self, other: typing.SupportsInt) -> Qt.ScrollPhase: ... class ShortcutContext (line 16297) | class ShortcutContext: method __init__ (line 16305) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16306) | def __add__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... method __and__ (line 16307) | def __and__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... method __bool__ (line 16308) | def __bool__(self) -> bool: ... method __eq__ (line 16309) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16310) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16311) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16312) | def __hash__(self) -> int: ... method __index__ (line 16313) | def __index__(self) -> int: ... method __int__ (line 16314) | def __int__(self) -> int: ... method __le__ (line 16315) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16316) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16317) | def __mul__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... method __ne__ (line 16318) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16319) | def __or__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... method __pos__ (line 16320) | def __pos__(self): ... method __radd__ (line 16321) | def __radd__(self, other: typing.SupportsInt) -> Qt.ShortcutContext:... method __rand__ (line 16322) | def __rand__(self, other: typing.SupportsInt) -> Qt.ShortcutContext:... method __rmul__ (line 16323) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ShortcutContext:... method __ror__ (line 16324) | def __ror__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... method __rsub__ (line 16325) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ShortcutContext:... method __rxor__ (line 16326) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ShortcutContext:... method __sub__ (line 16327) | def __sub__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... method __xor__ (line 16328) | def __xor__(self, other: typing.SupportsInt) -> Qt.ShortcutContext: ... class SizeHint (line 16330) | class SizeHint: method __init__ (line 16339) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16340) | def __add__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __and__ (line 16341) | def __and__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __bool__ (line 16342) | def __bool__(self) -> bool: ... method __eq__ (line 16343) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16344) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16345) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16346) | def __hash__(self) -> int: ... method __index__ (line 16347) | def __index__(self) -> int: ... method __int__ (line 16348) | def __int__(self) -> int: ... method __le__ (line 16349) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16350) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16351) | def __mul__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __ne__ (line 16352) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16353) | def __or__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __pos__ (line 16354) | def __pos__(self): ... method __radd__ (line 16355) | def __radd__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __rand__ (line 16356) | def __rand__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __rmul__ (line 16357) | def __rmul__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __ror__ (line 16358) | def __ror__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __rsub__ (line 16359) | def __rsub__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __rxor__ (line 16360) | def __rxor__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __sub__ (line 16361) | def __sub__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... method __xor__ (line 16362) | def __xor__(self, other: typing.SupportsInt) -> Qt.SizeHint: ... class SizeMode (line 16364) | class SizeMode: method __init__ (line 16370) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16371) | def __add__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __and__ (line 16372) | def __and__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __bool__ (line 16373) | def __bool__(self) -> bool: ... method __eq__ (line 16374) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16375) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16376) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16377) | def __hash__(self) -> int: ... method __index__ (line 16378) | def __index__(self) -> int: ... method __int__ (line 16379) | def __int__(self) -> int: ... method __le__ (line 16380) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16381) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16382) | def __mul__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __ne__ (line 16383) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16384) | def __or__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __pos__ (line 16385) | def __pos__(self): ... method __radd__ (line 16386) | def __radd__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __rand__ (line 16387) | def __rand__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __rmul__ (line 16388) | def __rmul__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __ror__ (line 16389) | def __ror__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __rsub__ (line 16390) | def __rsub__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __rxor__ (line 16391) | def __rxor__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __sub__ (line 16392) | def __sub__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... method __xor__ (line 16393) | def __xor__(self, other: typing.SupportsInt) -> Qt.SizeMode: ... class SortOrder (line 16395) | class SortOrder: method __init__ (line 16401) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16402) | def __add__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __and__ (line 16403) | def __and__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __bool__ (line 16404) | def __bool__(self) -> bool: ... method __eq__ (line 16405) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16406) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16407) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16408) | def __hash__(self) -> int: ... method __index__ (line 16409) | def __index__(self) -> int: ... method __int__ (line 16410) | def __int__(self) -> int: ... method __le__ (line 16411) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16412) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16413) | def __mul__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __ne__ (line 16414) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16415) | def __or__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __pos__ (line 16416) | def __pos__(self): ... method __radd__ (line 16417) | def __radd__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __rand__ (line 16418) | def __rand__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __rmul__ (line 16419) | def __rmul__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __ror__ (line 16420) | def __ror__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __rsub__ (line 16421) | def __rsub__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __rxor__ (line 16422) | def __rxor__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __sub__ (line 16423) | def __sub__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... method __xor__ (line 16424) | def __xor__(self, other: typing.SupportsInt) -> Qt.SortOrder: ... class SplitBehavior (line 16426) | class SplitBehavior: method __init__ (line 16428) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16429) | def __and__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __bool__ (line 16430) | def __bool__(self) -> bool: ... method __eq__ (line 16431) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16432) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16433) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16434) | def __index__(self) -> int: ... method __int__ (line 16435) | def __int__(self) -> int: ... method __invert__ (line 16436) | def __invert__(self) -> Qt.SplitBehavior: ... method __le__ (line 16437) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16438) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16439) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16440) | def __or__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __rand__ (line 16441) | def __rand__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __ror__ (line 16442) | def __ror__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __rxor__ (line 16443) | def __rxor__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __xor__ (line 16444) | def __xor__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... class SplitBehaviorFlags (line 16446) | class SplitBehaviorFlags: method __init__ (line 16452) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16453) | def __and__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __bool__ (line 16454) | def __bool__(self) -> bool: ... method __eq__ (line 16455) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16456) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16457) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16458) | def __hash__(self) -> int: ... method __index__ (line 16459) | def __index__(self) -> int: ... method __int__ (line 16460) | def __int__(self) -> int: ... method __invert__ (line 16461) | def __invert__(self) -> Qt.SplitBehavior: ... method __le__ (line 16462) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16463) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16464) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16465) | def __or__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __rand__ (line 16466) | def __rand__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __ror__ (line 16467) | def __ror__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __rxor__ (line 16468) | def __rxor__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... method __xor__ (line 16469) | def __xor__(self, other: typing.SupportsInt) -> Qt.SplitBehavior: ... class TabFocusBehavior (line 16471) | class TabFocusBehavior: method __init__ (line 16479) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16480) | def __add__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior:... method __and__ (line 16481) | def __and__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior:... method __bool__ (line 16482) | def __bool__(self) -> bool: ... method __eq__ (line 16483) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16484) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16485) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16486) | def __hash__(self) -> int: ... method __index__ (line 16487) | def __index__(self) -> int: ... method __int__ (line 16488) | def __int__(self) -> int: ... method __le__ (line 16489) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16490) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16491) | def __mul__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior:... method __ne__ (line 16492) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16493) | def __or__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior: ... method __pos__ (line 16494) | def __pos__(self): ... method __radd__ (line 16495) | def __radd__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior... method __rand__ (line 16496) | def __rand__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior... method __rmul__ (line 16497) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior... method __ror__ (line 16498) | def __ror__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior:... method __rsub__ (line 16499) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior... method __rxor__ (line 16500) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior... method __sub__ (line 16501) | def __sub__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior:... method __xor__ (line 16502) | def __xor__(self, other: typing.SupportsInt) -> Qt.TabFocusBehavior:... class TextElideMode (line 16504) | class TextElideMode: method __init__ (line 16512) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16513) | def __add__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __and__ (line 16514) | def __and__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __bool__ (line 16515) | def __bool__(self) -> bool: ... method __eq__ (line 16516) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16517) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16518) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16519) | def __hash__(self) -> int: ... method __index__ (line 16520) | def __index__(self) -> int: ... method __int__ (line 16521) | def __int__(self) -> int: ... method __le__ (line 16522) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16523) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16524) | def __mul__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __ne__ (line 16525) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16526) | def __or__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __pos__ (line 16527) | def __pos__(self): ... method __radd__ (line 16528) | def __radd__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __rand__ (line 16529) | def __rand__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __rmul__ (line 16530) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __ror__ (line 16531) | def __ror__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __rsub__ (line 16532) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __rxor__ (line 16533) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __sub__ (line 16534) | def __sub__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... method __xor__ (line 16535) | def __xor__(self, other: typing.SupportsInt) -> Qt.TextElideMode: ... class TextFlag (line 16537) | class TextFlag: method __init__ (line 16555) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16556) | def __add__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __and__ (line 16557) | def __and__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __bool__ (line 16558) | def __bool__(self) -> bool: ... method __eq__ (line 16559) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16560) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16561) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16562) | def __hash__(self) -> int: ... method __index__ (line 16563) | def __index__(self) -> int: ... method __int__ (line 16564) | def __int__(self) -> int: ... method __le__ (line 16565) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16566) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16567) | def __mul__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __ne__ (line 16568) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16569) | def __or__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __pos__ (line 16570) | def __pos__(self): ... method __radd__ (line 16571) | def __radd__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __rand__ (line 16572) | def __rand__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __rmul__ (line 16573) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __ror__ (line 16574) | def __ror__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __rsub__ (line 16575) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __rxor__ (line 16576) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __sub__ (line 16577) | def __sub__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... method __xor__ (line 16578) | def __xor__(self, other: typing.SupportsInt) -> Qt.TextFlag: ... class TextFormat (line 16580) | class TextFormat: method __init__ (line 16588) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16589) | def __add__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __and__ (line 16590) | def __and__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __bool__ (line 16591) | def __bool__(self) -> bool: ... method __eq__ (line 16592) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16593) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16594) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16595) | def __hash__(self) -> int: ... method __index__ (line 16596) | def __index__(self) -> int: ... method __int__ (line 16597) | def __int__(self) -> int: ... method __le__ (line 16598) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16599) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16600) | def __mul__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __ne__ (line 16601) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16602) | def __or__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __pos__ (line 16603) | def __pos__(self): ... method __radd__ (line 16604) | def __radd__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __rand__ (line 16605) | def __rand__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __rmul__ (line 16606) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __ror__ (line 16607) | def __ror__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __rsub__ (line 16608) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __rxor__ (line 16609) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __sub__ (line 16610) | def __sub__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... method __xor__ (line 16611) | def __xor__(self, other: typing.SupportsInt) -> Qt.TextFormat: ... class TextInteractionFlag (line 16613) | class TextInteractionFlag: method __init__ (line 16625) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16626) | def __and__(self, other: typing.SupportsInt) -> Qt.TextInteractionFl... method __bool__ (line 16627) | def __bool__(self) -> bool: ... method __eq__ (line 16628) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16629) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16630) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16631) | def __hash__(self) -> int: ... method __index__ (line 16632) | def __index__(self) -> int: ... method __int__ (line 16633) | def __int__(self) -> int: ... method __invert__ (line 16634) | def __invert__(self) -> Qt.TextInteractionFlags: ... method __le__ (line 16635) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16636) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16637) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16638) | def __or__(self, other: typing.SupportsInt) -> Qt.TextInteractionFla... method __rand__ (line 16639) | def __rand__(self, other: typing.SupportsInt) -> Qt.TextInteractionF... method __ror__ (line 16640) | def __ror__(self, other: typing.SupportsInt) -> Qt.TextInteractionFl... method __rxor__ (line 16641) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TextInteractionF... method __xor__ (line 16642) | def __xor__(self, other: typing.SupportsInt) -> Qt.TextInteractionFl... class TextInteractionFlags (line 16644) | class TextInteractionFlags: method __init__ (line 16646) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16647) | def __and__(self, other: typing.SupportsInt) -> Qt.TextInteractionFl... method __bool__ (line 16648) | def __bool__(self) -> bool: ... method __eq__ (line 16649) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16650) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16651) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16652) | def __index__(self) -> int: ... method __int__ (line 16653) | def __int__(self) -> int: ... method __invert__ (line 16654) | def __invert__(self) -> Qt.TextInteractionFlags: ... method __le__ (line 16655) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16656) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16657) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16658) | def __or__(self, other: typing.SupportsInt) -> Qt.TextInteractionFla... method __rand__ (line 16659) | def __rand__(self, other: typing.SupportsInt) -> Qt.TextInteractionF... method __ror__ (line 16660) | def __ror__(self, other: typing.SupportsInt) -> Qt.TextInteractionFl... method __rxor__ (line 16661) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TextInteractionF... method __xor__ (line 16662) | def __xor__(self, other: typing.SupportsInt) -> Qt.TextInteractionFl... class TileRule (line 16664) | class TileRule: method __init__ (line 16671) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16672) | def __add__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __and__ (line 16673) | def __and__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __bool__ (line 16674) | def __bool__(self) -> bool: ... method __eq__ (line 16675) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16676) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16677) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16678) | def __hash__(self) -> int: ... method __index__ (line 16679) | def __index__(self) -> int: ... method __int__ (line 16680) | def __int__(self) -> int: ... method __le__ (line 16681) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16682) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16683) | def __mul__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __ne__ (line 16684) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16685) | def __or__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __pos__ (line 16686) | def __pos__(self): ... method __radd__ (line 16687) | def __radd__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __rand__ (line 16688) | def __rand__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __rmul__ (line 16689) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __ror__ (line 16690) | def __ror__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __rsub__ (line 16691) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __rxor__ (line 16692) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __sub__ (line 16693) | def __sub__(self, other: typing.SupportsInt) -> Qt.TileRule: ... method __xor__ (line 16694) | def __xor__(self, other: typing.SupportsInt) -> Qt.TileRule: ... class TimeSpec (line 16696) | class TimeSpec: method __init__ (line 16704) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16705) | def __add__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __and__ (line 16706) | def __and__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __bool__ (line 16707) | def __bool__(self) -> bool: ... method __eq__ (line 16708) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16709) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16710) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16711) | def __hash__(self) -> int: ... method __index__ (line 16712) | def __index__(self) -> int: ... method __int__ (line 16713) | def __int__(self) -> int: ... method __le__ (line 16714) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16715) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16716) | def __mul__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __ne__ (line 16717) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16718) | def __or__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __pos__ (line 16719) | def __pos__(self): ... method __radd__ (line 16720) | def __radd__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __rand__ (line 16721) | def __rand__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __rmul__ (line 16722) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __ror__ (line 16723) | def __ror__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __rsub__ (line 16724) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __rxor__ (line 16725) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __sub__ (line 16726) | def __sub__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... method __xor__ (line 16727) | def __xor__(self, other: typing.SupportsInt) -> Qt.TimeSpec: ... class TimerType (line 16729) | class TimerType: method __init__ (line 16736) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16737) | def __add__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __and__ (line 16738) | def __and__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __bool__ (line 16739) | def __bool__(self) -> bool: ... method __eq__ (line 16740) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16741) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16742) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16743) | def __hash__(self) -> int: ... method __index__ (line 16744) | def __index__(self) -> int: ... method __int__ (line 16745) | def __int__(self) -> int: ... method __le__ (line 16746) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16747) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16748) | def __mul__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __ne__ (line 16749) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16750) | def __or__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __pos__ (line 16751) | def __pos__(self): ... method __radd__ (line 16752) | def __radd__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __rand__ (line 16753) | def __rand__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __rmul__ (line 16754) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __ror__ (line 16755) | def __ror__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __rsub__ (line 16756) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __rxor__ (line 16757) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __sub__ (line 16758) | def __sub__(self, other: typing.SupportsInt) -> Qt.TimerType: ... method __xor__ (line 16759) | def __xor__(self, other: typing.SupportsInt) -> Qt.TimerType: ... class ToolBarArea (line 16761) | class ToolBarArea: method __init__ (line 16772) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16773) | def __and__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __bool__ (line 16774) | def __bool__(self) -> bool: ... method __eq__ (line 16775) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16776) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16777) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16778) | def __hash__(self) -> int: ... method __index__ (line 16779) | def __index__(self) -> int: ... method __int__ (line 16780) | def __int__(self) -> int: ... method __invert__ (line 16781) | def __invert__(self) -> Qt.ToolBarAreas: ... method __le__ (line 16782) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16783) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16784) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16785) | def __or__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __rand__ (line 16786) | def __rand__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __ror__ (line 16787) | def __ror__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __rxor__ (line 16788) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __xor__ (line 16789) | def __xor__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... class ToolBarAreaSizes (line 16791) | class ToolBarAreaSizes: method __init__ (line 16796) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16797) | def __add__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes:... method __and__ (line 16798) | def __and__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes:... method __bool__ (line 16799) | def __bool__(self) -> bool: ... method __eq__ (line 16800) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16801) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16802) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16803) | def __hash__(self) -> int: ... method __index__ (line 16804) | def __index__(self) -> int: ... method __int__ (line 16805) | def __int__(self) -> int: ... method __le__ (line 16806) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16807) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16808) | def __mul__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes:... method __ne__ (line 16809) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16810) | def __or__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes: ... method __pos__ (line 16811) | def __pos__(self): ... method __radd__ (line 16812) | def __radd__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes... method __rand__ (line 16813) | def __rand__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes... method __rmul__ (line 16814) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes... method __ror__ (line 16815) | def __ror__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes:... method __rsub__ (line 16816) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes... method __rxor__ (line 16817) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes... method __sub__ (line 16818) | def __sub__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes:... method __xor__ (line 16819) | def __xor__(self, other: typing.SupportsInt) -> Qt.ToolBarAreaSizes:... class ToolBarAreas (line 16821) | class ToolBarAreas: method __init__ (line 16823) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16824) | def __and__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __bool__ (line 16825) | def __bool__(self) -> bool: ... method __eq__ (line 16826) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16827) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16828) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16829) | def __index__(self) -> int: ... method __int__ (line 16830) | def __int__(self) -> int: ... method __invert__ (line 16831) | def __invert__(self) -> Qt.ToolBarAreas: ... method __le__ (line 16832) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16833) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16834) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16835) | def __or__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __rand__ (line 16836) | def __rand__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __ror__ (line 16837) | def __ror__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __rxor__ (line 16838) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... method __xor__ (line 16839) | def __xor__(self, other: typing.SupportsInt) -> Qt.ToolBarAreas: ... class ToolButtonStyle (line 16841) | class ToolButtonStyle: method __init__ (line 16850) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16851) | def __add__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... method __and__ (line 16852) | def __and__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... method __bool__ (line 16853) | def __bool__(self) -> bool: ... method __eq__ (line 16854) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16855) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16856) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16857) | def __hash__(self) -> int: ... method __index__ (line 16858) | def __index__(self) -> int: ... method __int__ (line 16859) | def __int__(self) -> int: ... method __le__ (line 16860) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16861) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16862) | def __mul__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... method __ne__ (line 16863) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16864) | def __or__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... method __pos__ (line 16865) | def __pos__(self): ... method __radd__ (line 16866) | def __radd__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle:... method __rand__ (line 16867) | def __rand__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle:... method __rmul__ (line 16868) | def __rmul__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle:... method __ror__ (line 16869) | def __ror__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... method __rsub__ (line 16870) | def __rsub__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle:... method __rxor__ (line 16871) | def __rxor__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle:... method __sub__ (line 16872) | def __sub__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... method __xor__ (line 16873) | def __xor__(self, other: typing.SupportsInt) -> Qt.ToolButtonStyle: ... class TouchPointState (line 16875) | class TouchPointState: method __init__ (line 16883) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16884) | def __and__(self, other: typing.SupportsInt) -> Qt.TouchPointStates:... method __bool__ (line 16885) | def __bool__(self) -> bool: ... method __eq__ (line 16886) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16887) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16888) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16889) | def __hash__(self) -> int: ... method __index__ (line 16890) | def __index__(self) -> int: ... method __int__ (line 16891) | def __int__(self) -> int: ... method __invert__ (line 16892) | def __invert__(self) -> Qt.TouchPointStates: ... method __le__ (line 16893) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16894) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16895) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16896) | def __or__(self, other: typing.SupportsInt) -> Qt.TouchPointStates: ... method __rand__ (line 16897) | def __rand__(self, other: typing.SupportsInt) -> Qt.TouchPointStates... method __ror__ (line 16898) | def __ror__(self, other: typing.SupportsInt) -> Qt.TouchPointStates:... method __rxor__ (line 16899) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TouchPointStates... method __xor__ (line 16900) | def __xor__(self, other: typing.SupportsInt) -> Qt.TouchPointStates:... class TouchPointStates (line 16902) | class TouchPointStates: method __init__ (line 16904) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16905) | def __and__(self, other: typing.SupportsInt) -> Qt.TouchPointStates:... method __bool__ (line 16906) | def __bool__(self) -> bool: ... method __eq__ (line 16907) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16908) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16909) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16910) | def __index__(self) -> int: ... method __int__ (line 16911) | def __int__(self) -> int: ... method __invert__ (line 16912) | def __invert__(self) -> Qt.TouchPointStates: ... method __le__ (line 16913) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16914) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16915) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16916) | def __or__(self, other: typing.SupportsInt) -> Qt.TouchPointStates: ... method __rand__ (line 16917) | def __rand__(self, other: typing.SupportsInt) -> Qt.TouchPointStates... method __ror__ (line 16918) | def __ror__(self, other: typing.SupportsInt) -> Qt.TouchPointStates:... method __rxor__ (line 16919) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TouchPointStates... method __xor__ (line 16920) | def __xor__(self, other: typing.SupportsInt) -> Qt.TouchPointStates:... class TransformationMode (line 16922) | class TransformationMode: method __init__ (line 16928) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16929) | def __add__(self, other: typing.SupportsInt) -> Qt.TransformationMod... method __and__ (line 16930) | def __and__(self, other: typing.SupportsInt) -> Qt.TransformationMod... method __bool__ (line 16931) | def __bool__(self) -> bool: ... method __eq__ (line 16932) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16933) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16934) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16935) | def __hash__(self) -> int: ... method __index__ (line 16936) | def __index__(self) -> int: ... method __int__ (line 16937) | def __int__(self) -> int: ... method __le__ (line 16938) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16939) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16940) | def __mul__(self, other: typing.SupportsInt) -> Qt.TransformationMod... method __ne__ (line 16941) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16942) | def __or__(self, other: typing.SupportsInt) -> Qt.TransformationMode... method __pos__ (line 16943) | def __pos__(self): ... method __radd__ (line 16944) | def __radd__(self, other: typing.SupportsInt) -> Qt.TransformationMo... method __rand__ (line 16945) | def __rand__(self, other: typing.SupportsInt) -> Qt.TransformationMo... method __rmul__ (line 16946) | def __rmul__(self, other: typing.SupportsInt) -> Qt.TransformationMo... method __ror__ (line 16947) | def __ror__(self, other: typing.SupportsInt) -> Qt.TransformationMod... method __rsub__ (line 16948) | def __rsub__(self, other: typing.SupportsInt) -> Qt.TransformationMo... method __rxor__ (line 16949) | def __rxor__(self, other: typing.SupportsInt) -> Qt.TransformationMo... method __sub__ (line 16950) | def __sub__(self, other: typing.SupportsInt) -> Qt.TransformationMod... method __xor__ (line 16951) | def __xor__(self, other: typing.SupportsInt) -> Qt.TransformationMod... class UIEffect (line 16953) | class UIEffect: method __init__ (line 16964) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16965) | def __add__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __and__ (line 16966) | def __and__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __bool__ (line 16967) | def __bool__(self) -> bool: ... method __eq__ (line 16968) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16969) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16970) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16971) | def __hash__(self) -> int: ... method __index__ (line 16972) | def __index__(self) -> int: ... method __int__ (line 16973) | def __int__(self) -> int: ... method __le__ (line 16974) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16975) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16976) | def __mul__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __ne__ (line 16977) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16978) | def __or__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __pos__ (line 16979) | def __pos__(self): ... method __radd__ (line 16980) | def __radd__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __rand__ (line 16981) | def __rand__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __rmul__ (line 16982) | def __rmul__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __ror__ (line 16983) | def __ror__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __rsub__ (line 16984) | def __rsub__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __rxor__ (line 16985) | def __rxor__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __sub__ (line 16986) | def __sub__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... method __xor__ (line 16987) | def __xor__(self, other: typing.SupportsInt) -> Qt.UIEffect: ... class WhiteSpaceMode (line 16989) | class WhiteSpaceMode: method __init__ (line 16997) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16998) | def __add__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __and__ (line 16999) | def __and__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __bool__ (line 17000) | def __bool__(self) -> bool: ... method __eq__ (line 17001) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17002) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17003) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 17004) | def __hash__(self) -> int: ... method __index__ (line 17005) | def __index__(self) -> int: ... method __int__ (line 17006) | def __int__(self) -> int: ... method __le__ (line 17007) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17008) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 17009) | def __mul__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __ne__ (line 17010) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17011) | def __or__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __pos__ (line 17012) | def __pos__(self): ... method __radd__ (line 17013) | def __radd__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __rand__ (line 17014) | def __rand__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __rmul__ (line 17015) | def __rmul__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __ror__ (line 17016) | def __ror__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __rsub__ (line 17017) | def __rsub__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __rxor__ (line 17018) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __sub__ (line 17019) | def __sub__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... method __xor__ (line 17020) | def __xor__(self, other: typing.SupportsInt) -> Qt.WhiteSpaceMode: ... class WidgetAttribute (line 17022) | class WidgetAttribute: method __init__ (line 17141) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 17142) | def __add__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... method __and__ (line 17143) | def __and__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... method __bool__ (line 17144) | def __bool__(self) -> bool: ... method __eq__ (line 17145) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17146) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17147) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 17148) | def __hash__(self) -> int: ... method __index__ (line 17149) | def __index__(self) -> int: ... method __int__ (line 17150) | def __int__(self) -> int: ... method __le__ (line 17151) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17152) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 17153) | def __mul__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... method __ne__ (line 17154) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17155) | def __or__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... method __pos__ (line 17156) | def __pos__(self): ... method __radd__ (line 17157) | def __radd__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute:... method __rand__ (line 17158) | def __rand__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute:... method __rmul__ (line 17159) | def __rmul__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute:... method __ror__ (line 17160) | def __ror__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... method __rsub__ (line 17161) | def __rsub__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute:... method __rxor__ (line 17162) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute:... method __sub__ (line 17163) | def __sub__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... method __xor__ (line 17164) | def __xor__(self, other: typing.SupportsInt) -> Qt.WidgetAttribute: ... class WindowFlags (line 17166) | class WindowFlags: method __init__ (line 17168) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 17169) | def __and__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __bool__ (line 17170) | def __bool__(self) -> bool: ... method __eq__ (line 17171) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17172) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17173) | def __gt__(self, other: object) -> bool: ... method __index__ (line 17174) | def __index__(self) -> int: ... method __int__ (line 17175) | def __int__(self) -> int: ... method __invert__ (line 17176) | def __invert__(self) -> Qt.WindowFlags: ... method __le__ (line 17177) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17178) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 17179) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17180) | def __or__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __rand__ (line 17181) | def __rand__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __ror__ (line 17182) | def __ror__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __rxor__ (line 17183) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __xor__ (line 17184) | def __xor__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... class WindowFrameSection (line 17186) | class WindowFrameSection: method __init__ (line 17200) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 17201) | def __add__(self, other: typing.SupportsInt) -> Qt.WindowFrameSectio... method __and__ (line 17202) | def __and__(self, other: typing.SupportsInt) -> Qt.WindowFrameSectio... method __bool__ (line 17203) | def __bool__(self) -> bool: ... method __eq__ (line 17204) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17205) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17206) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 17207) | def __hash__(self) -> int: ... method __index__ (line 17208) | def __index__(self) -> int: ... method __int__ (line 17209) | def __int__(self) -> int: ... method __le__ (line 17210) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17211) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 17212) | def __mul__(self, other: typing.SupportsInt) -> Qt.WindowFrameSectio... method __ne__ (line 17213) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17214) | def __or__(self, other: typing.SupportsInt) -> Qt.WindowFrameSection... method __pos__ (line 17215) | def __pos__(self): ... method __radd__ (line 17216) | def __radd__(self, other: typing.SupportsInt) -> Qt.WindowFrameSecti... method __rand__ (line 17217) | def __rand__(self, other: typing.SupportsInt) -> Qt.WindowFrameSecti... method __rmul__ (line 17218) | def __rmul__(self, other: typing.SupportsInt) -> Qt.WindowFrameSecti... method __ror__ (line 17219) | def __ror__(self, other: typing.SupportsInt) -> Qt.WindowFrameSectio... method __rsub__ (line 17220) | def __rsub__(self, other: typing.SupportsInt) -> Qt.WindowFrameSecti... method __rxor__ (line 17221) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WindowFrameSecti... method __sub__ (line 17222) | def __sub__(self, other: typing.SupportsInt) -> Qt.WindowFrameSectio... method __xor__ (line 17223) | def __xor__(self, other: typing.SupportsInt) -> Qt.WindowFrameSectio... class WindowModality (line 17225) | class WindowModality: method __init__ (line 17232) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 17233) | def __add__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __and__ (line 17234) | def __and__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __bool__ (line 17235) | def __bool__(self) -> bool: ... method __eq__ (line 17236) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17237) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17238) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 17239) | def __hash__(self) -> int: ... method __index__ (line 17240) | def __index__(self) -> int: ... method __int__ (line 17241) | def __int__(self) -> int: ... method __le__ (line 17242) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17243) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 17244) | def __mul__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __ne__ (line 17245) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17246) | def __or__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __pos__ (line 17247) | def __pos__(self): ... method __radd__ (line 17248) | def __radd__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __rand__ (line 17249) | def __rand__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __rmul__ (line 17250) | def __rmul__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __ror__ (line 17251) | def __ror__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __rsub__ (line 17252) | def __rsub__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __rxor__ (line 17253) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __sub__ (line 17254) | def __sub__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... method __xor__ (line 17255) | def __xor__(self, other: typing.SupportsInt) -> Qt.WindowModality: ... class WindowState (line 17257) | class WindowState: method __init__ (line 17266) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 17267) | def __and__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __bool__ (line 17268) | def __bool__(self) -> bool: ... method __eq__ (line 17269) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17270) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17271) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 17272) | def __hash__(self) -> int: ... method __index__ (line 17273) | def __index__(self) -> int: ... method __int__ (line 17274) | def __int__(self) -> int: ... method __invert__ (line 17275) | def __invert__(self) -> Qt.WindowStates: ... method __le__ (line 17276) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17277) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 17278) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17279) | def __or__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __rand__ (line 17280) | def __rand__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __ror__ (line 17281) | def __ror__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __rxor__ (line 17282) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __xor__ (line 17283) | def __xor__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... class WindowStates (line 17285) | class WindowStates: method __init__ (line 17287) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 17288) | def __and__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __bool__ (line 17289) | def __bool__(self) -> bool: ... method __eq__ (line 17290) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17291) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17292) | def __gt__(self, other: object) -> bool: ... method __index__ (line 17293) | def __index__(self) -> int: ... method __int__ (line 17294) | def __int__(self) -> int: ... method __invert__ (line 17295) | def __invert__(self) -> Qt.WindowStates: ... method __le__ (line 17296) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17297) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 17298) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17299) | def __or__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __rand__ (line 17300) | def __rand__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __ror__ (line 17301) | def __ror__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __rxor__ (line 17302) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... method __xor__ (line 17303) | def __xor__(self, other: typing.SupportsInt) -> Qt.WindowStates: ... class WindowType (line 17305) | class WindowType: method __init__ (line 17347) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 17348) | def __and__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __bool__ (line 17349) | def __bool__(self) -> bool: ... method __eq__ (line 17350) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 17351) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17352) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 17353) | def __hash__(self) -> int: ... method __index__ (line 17354) | def __index__(self) -> int: ... method __int__ (line 17355) | def __int__(self) -> int: ... method __invert__ (line 17356) | def __invert__(self) -> Qt.WindowFlags: ... method __le__ (line 17357) | def __le__(self, other: object) -> bool: ... method __lt__ (line 17358) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 17359) | def __ne__(self, other: object) -> bool: ... method __or__ (line 17360) | def __or__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __rand__ (line 17361) | def __rand__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __ror__ (line 17362) | def __ror__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __rxor__ (line 17363) | def __rxor__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __xor__ (line 17364) | def __xor__(self, other: typing.SupportsInt) -> Qt.WindowFlags: ... method __init__ (line 18559) | def __init__(cls, *args, **kwargs) -> None: ... method bin (line 18561) | def bin(s: QTextStream) -> QTextStream: ... method bom (line 18563) | def bom(s: QTextStream) -> QTextStream: ... method center (line 18565) | def center(s: QTextStream) -> QTextStream: ... method dec (line 18567) | def dec(s: QTextStream) -> QTextStream: ... method endl (line 18569) | def endl(s: QTextStream) -> QTextStream: ... method fixed (line 18571) | def fixed(s: QTextStream) -> QTextStream: ... method flush (line 18573) | def flush(s: QTextStream) -> QTextStream: ... method forcepoint (line 18575) | def forcepoint(s: QTextStream) -> QTextStream: ... method forcesign (line 18577) | def forcesign(s: QTextStream) -> QTextStream: ... method hex (line 18579) | def hex(s: QTextStream) -> QTextStream: ... method left (line 18581) | def left(s: QTextStream) -> QTextStream: ... method lowercasebase (line 18583) | def lowercasebase(s: QTextStream) -> QTextStream: ... method lowercasedigits (line 18585) | def lowercasedigits(s: QTextStream) -> QTextStream: ... method noforcepoint (line 18587) | def noforcepoint(s: QTextStream) -> QTextStream: ... method noforcesign (line 18589) | def noforcesign(s: QTextStream) -> QTextStream: ... method noshowbase (line 18591) | def noshowbase(s: QTextStream) -> QTextStream: ... method oct (line 18593) | def oct(s: QTextStream) -> QTextStream: ... method reset (line 18595) | def reset(s: QTextStream) -> QTextStream: ... method right (line 18597) | def right(s: QTextStream) -> QTextStream: ... method scientific (line 18599) | def scientific(s: QTextStream) -> QTextStream: ... method showbase (line 18601) | def showbase(s: QTextStream) -> QTextStream: ... method uppercasebase (line 18603) | def uppercasebase(s: QTextStream) -> QTextStream: ... method uppercasedigits (line 18605) | def uppercasedigits(s: QTextStream) -> QTextStream: ... method ws (line 18607) | def ws(s: QTextStream) -> QTextStream: ... class QtMsgType (line 18609) | class QtMsgType: method __init__ (line 18619) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 18620) | def __add__(self, other: typing.SupportsInt) -> QtMsgType: ... method __and__ (line 18621) | def __and__(self, other: typing.SupportsInt) -> QtMsgType: ... method __bool__ (line 18622) | def __bool__(self) -> bool: ... method __eq__ (line 18623) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 18624) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 18625) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 18626) | def __hash__(self) -> int: ... method __index__ (line 18627) | def __index__(self) -> int: ... method __int__ (line 18628) | def __int__(self) -> int: ... method __le__ (line 18629) | def __le__(self, other: object) -> bool: ... method __lt__ (line 18630) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 18631) | def __mul__(self, other: typing.SupportsInt) -> QtMsgType: ... method __ne__ (line 18632) | def __ne__(self, other: object) -> bool: ... method __or__ (line 18633) | def __or__(self, other: typing.SupportsInt) -> QtMsgType: ... method __pos__ (line 18634) | def __pos__(self): ... method __radd__ (line 18635) | def __radd__(self, other: typing.SupportsInt) -> QtMsgType: ... method __rand__ (line 18636) | def __rand__(self, other: typing.SupportsInt) -> QtMsgType: ... method __rmul__ (line 18637) | def __rmul__(self, other: typing.SupportsInt) -> QtMsgType: ... method __ror__ (line 18638) | def __ror__(self, other: typing.SupportsInt) -> QtMsgType: ... method __rsub__ (line 18639) | def __rsub__(self, other: typing.SupportsInt) -> QtMsgType: ... method __rxor__ (line 18640) | def __rxor__(self, other: typing.SupportsInt) -> QtMsgType: ... method __sub__ (line 18641) | def __sub__(self, other: typing.SupportsInt) -> QtMsgType: ... method __xor__ (line 18642) | def __xor__(self, other: typing.SupportsInt) -> QtMsgType: ... class Signal (line 18644) | class Signal: method __init__ (line 18645) | def __init__(self, *args, **kwargs) -> None: ... method __call__ (line 18646) | def __call__(self, *args, **kwargs): ... method __get__ (line 18648) | def __get__(self, instance: None, owner: type[QObject]) -> Signal: ... method __get__ (line 18650) | def __get__(self, instance: QObject, owner: type[QObject]) -> SignalIn... method __getitem__ (line 18651) | def __getitem__(self, index) -> SignalInstance: ... class SignalInstance (line 18653) | class SignalInstance: method __init__ (line 18655) | def __init__(cls, *args, **kwargs) -> None: ... method connect (line 18656) | def connect(self, slot: typing.Callable, type: Qt.ConnectionType = ...... method disconnect (line 18657) | def disconnect(self, slot: typing.Callable | None = ...) -> None: ... method emit (line 18658) | def emit(self, *args: typing.Any) -> None: ... method __call__ (line 18659) | def __call__(self, *args, **kwargs): ... method __getitem__ (line 18660) | def __getitem__(self, index) -> SignalInstance: ... class Slot (line 18662) | class Slot: method __init__ (line 18663) | def __init__(self, *types: type, name: str | None = ..., result: type ... method __call__ (line 18664) | def __call__(self, _func: typing.Callable[P, T]) -> typing.Callable[P,... function QEnum (line 18666) | def QEnum(arg__1: object) -> typing.Any: ... function QFlag (line 18667) | def QFlag(arg__1: object) -> typing.Any: ... function QT_TRANSLATE_NOOP (line 18668) | def QT_TRANSLATE_NOOP(arg__1: object, arg__2: object) -> typing.Any: ... function QT_TRANSLATE_NOOP3 (line 18669) | def QT_TRANSLATE_NOOP3(arg__1: object, arg__2: object, arg__3: object) -... function QT_TRANSLATE_NOOP_UTF8 (line 18670) | def QT_TRANSLATE_NOOP_UTF8(arg__1: object) -> typing.Any: ... function QT_TR_NOOP (line 18671) | def QT_TR_NOOP(arg__1: object) -> typing.Any: ... function QT_TR_NOOP_UTF8 (line 18672) | def QT_TR_NOOP_UTF8(arg__1: object) -> typing.Any: ... function SIGNAL (line 18673) | def SIGNAL(arg__1: bytes) -> str: ... function SLOT (line 18674) | def SLOT(arg__1: bytes) -> str: ... function __init_feature__ (line 18675) | def __init_feature__() -> None: ... function __moduleShutdown (line 18676) | def __moduleShutdown() -> None: ... function qAbs (line 18677) | def qAbs(arg__1: float) -> float: ... function qAcos (line 18678) | def qAcos(v: float) -> float: ... function qAddPostRoutine (line 18679) | def qAddPostRoutine(arg__1: object) -> None: ... function qAsin (line 18680) | def qAsin(v: float) -> float: ... function qAtan (line 18681) | def qAtan(v: float) -> float: ... function qAtan2 (line 18682) | def qAtan2(y: float, x: float) -> float: ... function qChecksum (line 18683) | def qChecksum(s: bytes, len: int) -> int: ... function qCompress (line 18685) | def qCompress(data: bytes, nbytes: int, compressionLevel: int = ...) -> ... function qCompress (line 18687) | def qCompress(data: QByteArray | bytes, compressionLevel: int = ...) -> ... function qCritical (line 18688) | def qCritical(arg__1: bytes) -> None: ... function qDebug (line 18689) | def qDebug(arg__1: bytes) -> None: ... function qExp (line 18690) | def qExp(v: float) -> float: ... function qFabs (line 18691) | def qFabs(v: float) -> float: ... function qFastCos (line 18692) | def qFastCos(x: float) -> float: ... function qFastSin (line 18693) | def qFastSin(x: float) -> float: ... function qFatal (line 18694) | def qFatal(arg__1: bytes) -> None: ... function qFuzzyCompare (line 18695) | def qFuzzyCompare(p1: float, p2: float) -> bool: ... function qFuzzyIsNull (line 18696) | def qFuzzyIsNull(d: float) -> bool: ... function qInstallMessageHandler (line 18697) | def qInstallMessageHandler(arg__1: object) -> typing.Any: ... function qIsFinite (line 18698) | def qIsFinite(d: float) -> bool: ... function qIsInf (line 18699) | def qIsInf(d: float) -> bool: ... function qIsNaN (line 18700) | def qIsNaN(d: float) -> bool: ... function qIsNull (line 18701) | def qIsNull(d: float) -> bool: ... function qRegisterResourceData (line 18702) | def qRegisterResourceData(arg__1: int, arg__2: bytes, arg__3: bytes, arg... function qTan (line 18703) | def qTan(v: float) -> float: ... function qUncompress (line 18705) | def qUncompress(data: bytes, nbytes: int) -> QByteArray: ... function qUncompress (line 18707) | def qUncompress(data: QByteArray | bytes) -> QByteArray: ... function qUnregisterResourceData (line 18708) | def qUnregisterResourceData(arg__1: int, arg__2: bytes, arg__3: bytes, a... function qVersion (line 18709) | def qVersion() -> str: ... function qWarning (line 18710) | def qWarning(arg__1: bytes) -> None: ... function qrand (line 18711) | def qrand() -> int: ... function qsrand (line 18712) | def qsrand(seed: int) -> None: ... function qtTrId (line 18713) | def qtTrId(id: bytes, n: int = ...) -> str: ... FILE: pyside/stubs/PySide2-stubs/QtDataVisualization.pyi class QtDataVisualization (line 12) | class QtDataVisualization(shiboken2.Object): class Q3DBars (line 13) | class Q3DBars(QtDataVisualization.QAbstract3DGraph): method __init__ (line 25) | def __init__(self, format: PySide2.QtGui.QSurfaceFormat | None = ...... method addAxis (line 26) | def addAxis(self, axis: QtDataVisualization.QAbstract3DAxis) -> None... method addSeries (line 27) | def addSeries(self, series: QtDataVisualization.QBar3DSeries) -> Non... method axes (line 28) | def axes(self) -> list[QtDataVisualization.QAbstract3DAxis]: ... method barSpacing (line 29) | def barSpacing(self) -> PySide2.QtCore.QSizeF: ... method barThickness (line 30) | def barThickness(self) -> float: ... method columnAxis (line 31) | def columnAxis(self) -> QtDataVisualization.QCategory3DAxis: ... method floorLevel (line 32) | def floorLevel(self) -> float: ... method insertSeries (line 33) | def insertSeries(self, index: int, series: QtDataVisualization.QBar3... method isBarSpacingRelative (line 34) | def isBarSpacingRelative(self) -> bool: ... method isMultiSeriesUniform (line 35) | def isMultiSeriesUniform(self) -> bool: ... method primarySeries (line 36) | def primarySeries(self) -> QtDataVisualization.QBar3DSeries: ... method releaseAxis (line 37) | def releaseAxis(self, axis: QtDataVisualization.QAbstract3DAxis) -> ... method removeSeries (line 38) | def removeSeries(self, series: QtDataVisualization.QBar3DSeries) -> ... method rowAxis (line 39) | def rowAxis(self) -> QtDataVisualization.QCategory3DAxis: ... method selectedSeries (line 40) | def selectedSeries(self) -> QtDataVisualization.QBar3DSeries: ... method seriesList (line 41) | def seriesList(self) -> list[QtDataVisualization.QBar3DSeries]: ... method setBarSpacing (line 42) | def setBarSpacing(self, spacing: PySide2.QtCore.QSizeF) -> None: ... method setBarSpacingRelative (line 43) | def setBarSpacingRelative(self, relative: bool) -> None: ... method setBarThickness (line 44) | def setBarThickness(self, thicknessRatio: float) -> None: ... method setColumnAxis (line 45) | def setColumnAxis(self, axis: QtDataVisualization.QCategory3DAxis) -... method setFloorLevel (line 46) | def setFloorLevel(self, level: float) -> None: ... method setMultiSeriesUniform (line 47) | def setMultiSeriesUniform(self, uniform: bool) -> None: ... method setPrimarySeries (line 48) | def setPrimarySeries(self, series: QtDataVisualization.QBar3DSeries)... method setRowAxis (line 49) | def setRowAxis(self, axis: QtDataVisualization.QCategory3DAxis) -> N... method setValueAxis (line 50) | def setValueAxis(self, axis: QtDataVisualization.QValue3DAxis) -> No... method valueAxis (line 51) | def valueAxis(self) -> QtDataVisualization.QValue3DAxis: ... class Q3DCamera (line 53) | class Q3DCamera(QtDataVisualization.Q3DObject): class CameraPreset (line 54) | class CameraPreset: method __init__ (line 83) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 84) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 85) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 86) | def __bool__(self) -> bool: ... method __eq__ (line 87) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 88) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 89) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 90) | def __hash__(self) -> int: ... method __index__ (line 91) | def __index__(self) -> int: ... method __int__ (line 92) | def __int__(self) -> int: ... method __le__ (line 93) | def __le__(self, other: object) -> bool: ... method __lt__ (line 94) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 95) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 96) | def __ne__(self, other: object) -> bool: ... method __or__ (line 97) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 98) | def __pos__(self): ... method __radd__ (line 99) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 100) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 101) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 102) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 103) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 104) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 105) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 106) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 142) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., came... method cameraPreset (line 143) | def cameraPreset(self) -> QtDataVisualization.Q3DCamera.CameraPreset... method copyValuesFrom (line 144) | def copyValuesFrom(self, source: QtDataVisualization.Q3DObject) -> N... method maxZoomLevel (line 145) | def maxZoomLevel(self) -> float: ... method minZoomLevel (line 146) | def minZoomLevel(self) -> float: ... method setCameraPosition (line 147) | def setCameraPosition(self, horizontal: float, vertical: float, zoom... method setCameraPreset (line 148) | def setCameraPreset(self, preset: QtDataVisualization.Q3DCamera.Came... method setMaxZoomLevel (line 149) | def setMaxZoomLevel(self, zoomLevel: float) -> None: ... method setMinZoomLevel (line 150) | def setMinZoomLevel(self, zoomLevel: float) -> None: ... method setTarget (line 151) | def setTarget(self, target: PySide2.QtGui.QVector3D) -> None: ... method setWrapXRotation (line 152) | def setWrapXRotation(self, isEnabled: bool) -> None: ... method setWrapYRotation (line 153) | def setWrapYRotation(self, isEnabled: bool) -> None: ... method setXRotation (line 154) | def setXRotation(self, rotation: float) -> None: ... method setYRotation (line 155) | def setYRotation(self, rotation: float) -> None: ... method setZoomLevel (line 156) | def setZoomLevel(self, zoomLevel: float) -> None: ... method target (line 157) | def target(self) -> PySide2.QtGui.QVector3D: ... method wrapXRotation (line 158) | def wrapXRotation(self) -> bool: ... method wrapYRotation (line 159) | def wrapYRotation(self) -> bool: ... method xRotation (line 160) | def xRotation(self) -> float: ... method yRotation (line 161) | def yRotation(self) -> float: ... method zoomLevel (line 162) | def zoomLevel(self) -> float: ... class Q3DInputHandler (line 164) | class Q3DInputHandler(QtDataVisualization.QAbstract3DInputHandler): method __init__ (line 170) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method isRotationEnabled (line 171) | def isRotationEnabled(self) -> bool: ... method isSelectionEnabled (line 172) | def isSelectionEnabled(self) -> bool: ... method isZoomAtTargetEnabled (line 173) | def isZoomAtTargetEnabled(self) -> bool: ... method isZoomEnabled (line 174) | def isZoomEnabled(self) -> bool: ... method mouseMoveEvent (line 175) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent, mousePos:... method mousePressEvent (line 176) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent, mousePos... method mouseReleaseEvent (line 177) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent, mouseP... method setRotationEnabled (line 178) | def setRotationEnabled(self, enable: bool) -> None: ... method setSelectionEnabled (line 179) | def setSelectionEnabled(self, enable: bool) -> None: ... method setZoomAtTargetEnabled (line 180) | def setZoomAtTargetEnabled(self, enable: bool) -> None: ... method setZoomEnabled (line 181) | def setZoomEnabled(self, enable: bool) -> None: ... method wheelEvent (line 182) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class Q3DLight (line 184) | class Q3DLight(QtDataVisualization.Q3DObject): method __init__ (line 187) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., auto... method isAutoPosition (line 188) | def isAutoPosition(self) -> bool: ... method setAutoPosition (line 189) | def setAutoPosition(self, enabled: bool) -> None: ... class Q3DObject (line 191) | class Q3DObject(PySide2.QtCore.QObject): method __init__ (line 194) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method copyValuesFrom (line 195) | def copyValuesFrom(self, source: QtDataVisualization.Q3DObject) -> N... method isDirty (line 196) | def isDirty(self) -> bool: ... method parentScene (line 197) | def parentScene(self) -> QtDataVisualization.Q3DScene: ... method position (line 198) | def position(self) -> PySide2.QtGui.QVector3D: ... method setDirty (line 199) | def setDirty(self, dirty: bool) -> None: ... method setPosition (line 200) | def setPosition(self, position: PySide2.QtGui.QVector3D) -> None: ... class Q3DScatter (line 202) | class Q3DScatter(QtDataVisualization.QAbstract3DGraph): method __init__ (line 208) | def __init__(self, format: PySide2.QtGui.QSurfaceFormat | None = ...... method addAxis (line 209) | def addAxis(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method addSeries (line 210) | def addSeries(self, series: QtDataVisualization.QScatter3DSeries) ->... method axes (line 211) | def axes(self) -> list[QtDataVisualization.QValue3DAxis]: ... method axisX (line 212) | def axisX(self) -> QtDataVisualization.QValue3DAxis: ... method axisY (line 213) | def axisY(self) -> QtDataVisualization.QValue3DAxis: ... method axisZ (line 214) | def axisZ(self) -> QtDataVisualization.QValue3DAxis: ... method releaseAxis (line 215) | def releaseAxis(self, axis: QtDataVisualization.QValue3DAxis) -> Non... method removeSeries (line 216) | def removeSeries(self, series: QtDataVisualization.QScatter3DSeries)... method selectedSeries (line 217) | def selectedSeries(self) -> QtDataVisualization.QScatter3DSeries: ... method seriesList (line 218) | def seriesList(self) -> list[QtDataVisualization.QScatter3DSeries]: ... method setAxisX (line 219) | def setAxisX(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method setAxisY (line 220) | def setAxisY(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method setAxisZ (line 221) | def setAxisZ(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... class Q3DScene (line 223) | class Q3DScene(PySide2.QtCore.QObject): method __init__ (line 235) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., acti... method activeCamera (line 236) | def activeCamera(self) -> QtDataVisualization.Q3DCamera: ... method activeLight (line 237) | def activeLight(self) -> QtDataVisualization.Q3DLight: ... method devicePixelRatio (line 238) | def devicePixelRatio(self) -> float: ... method graphPositionQuery (line 239) | def graphPositionQuery(self) -> PySide2.QtCore.QPoint: ... method invalidSelectionPoint (line 241) | def invalidSelectionPoint() -> PySide2.QtCore.QPoint: ... method isPointInPrimarySubView (line 242) | def isPointInPrimarySubView(self, point: PySide2.QtCore.QPoint) -> b... method isPointInSecondarySubView (line 243) | def isPointInSecondarySubView(self, point: PySide2.QtCore.QPoint) ->... method isSecondarySubviewOnTop (line 244) | def isSecondarySubviewOnTop(self) -> bool: ... method isSlicingActive (line 245) | def isSlicingActive(self) -> bool: ... method primarySubViewport (line 246) | def primarySubViewport(self) -> PySide2.QtCore.QRect: ... method secondarySubViewport (line 247) | def secondarySubViewport(self) -> PySide2.QtCore.QRect: ... method selectionQueryPosition (line 248) | def selectionQueryPosition(self) -> PySide2.QtCore.QPoint: ... method setActiveCamera (line 249) | def setActiveCamera(self, camera: QtDataVisualization.Q3DCamera) -> ... method setActiveLight (line 250) | def setActiveLight(self, light: QtDataVisualization.Q3DLight) -> Non... method setDevicePixelRatio (line 251) | def setDevicePixelRatio(self, pixelRatio: float) -> None: ... method setGraphPositionQuery (line 252) | def setGraphPositionQuery(self, point: PySide2.QtCore.QPoint) -> Non... method setPrimarySubViewport (line 253) | def setPrimarySubViewport(self, primarySubViewport: PySide2.QtCore.Q... method setSecondarySubViewport (line 254) | def setSecondarySubViewport(self, secondarySubViewport: PySide2.QtCo... method setSecondarySubviewOnTop (line 255) | def setSecondarySubviewOnTop(self, isSecondaryOnTop: bool) -> None: ... method setSelectionQueryPosition (line 256) | def setSelectionQueryPosition(self, point: PySide2.QtCore.QPoint) ->... method setSlicingActive (line 257) | def setSlicingActive(self, isSlicing: bool) -> None: ... method viewport (line 258) | def viewport(self) -> PySide2.QtCore.QRect: ... class Q3DSurface (line 260) | class Q3DSurface(QtDataVisualization.QAbstract3DGraph): method __init__ (line 267) | def __init__(self, format: PySide2.QtGui.QSurfaceFormat | None = ...... method addAxis (line 268) | def addAxis(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method addSeries (line 269) | def addSeries(self, series: QtDataVisualization.QSurface3DSeries) ->... method axes (line 270) | def axes(self) -> list[QtDataVisualization.QValue3DAxis]: ... method axisX (line 271) | def axisX(self) -> QtDataVisualization.QValue3DAxis: ... method axisY (line 272) | def axisY(self) -> QtDataVisualization.QValue3DAxis: ... method axisZ (line 273) | def axisZ(self) -> QtDataVisualization.QValue3DAxis: ... method flipHorizontalGrid (line 274) | def flipHorizontalGrid(self) -> bool: ... method releaseAxis (line 275) | def releaseAxis(self, axis: QtDataVisualization.QValue3DAxis) -> Non... method removeSeries (line 276) | def removeSeries(self, series: QtDataVisualization.QSurface3DSeries)... method selectedSeries (line 277) | def selectedSeries(self) -> QtDataVisualization.QSurface3DSeries: ... method seriesList (line 278) | def seriesList(self) -> list[QtDataVisualization.QSurface3DSeries]: ... method setAxisX (line 279) | def setAxisX(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method setAxisY (line 280) | def setAxisY(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method setAxisZ (line 281) | def setAxisZ(self, axis: QtDataVisualization.QValue3DAxis) -> None: ... method setFlipHorizontalGrid (line 282) | def setFlipHorizontalGrid(self, flip: bool) -> None: ... class Q3DTheme (line 284) | class Q3DTheme(PySide2.QtCore.QObject): class ColorStyle (line 285) | class ColorStyle: method __init__ (line 292) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 293) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 294) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 295) | def __bool__(self) -> bool: ... method __eq__ (line 296) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 297) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 298) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 299) | def __hash__(self) -> int: ... method __index__ (line 300) | def __index__(self) -> int: ... method __int__ (line 301) | def __int__(self) -> int: ... method __le__ (line 302) | def __le__(self, other: object) -> bool: ... method __lt__ (line 303) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 304) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 305) | def __ne__(self, other: object) -> bool: ... method __or__ (line 306) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 307) | def __pos__(self): ... method __radd__ (line 308) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 309) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 310) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 311) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 312) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 313) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 314) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 315) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class Theme (line 317) | class Theme: method __init__ (line 330) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 331) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 332) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 333) | def __bool__(self) -> bool: ... method __eq__ (line 334) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 335) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 336) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 337) | def __hash__(self) -> int: ... method __index__ (line 338) | def __index__(self) -> int: ... method __int__ (line 339) | def __int__(self) -> int: ... method __le__ (line 340) | def __le__(self, other: object) -> bool: ... method __lt__ (line 341) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 342) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 343) | def __ne__(self, other: object) -> bool: ... method __or__ (line 344) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 345) | def __pos__(self): ... method __radd__ (line 346) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 347) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 348) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 349) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 350) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 351) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 352) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 353) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 390) | def __init__(self, themeType: QtDataVisualization.Q3DTheme.Theme, pa... method __init__ (line 392) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., ambi... method ambientLightStrength (line 393) | def ambientLightStrength(self) -> float: ... method backgroundColor (line 394) | def backgroundColor(self) -> PySide2.QtGui.QColor: ... method baseColors (line 395) | def baseColors(self) -> list[PySide2.QtGui.QColor]: ... method baseGradients (line 396) | def baseGradients(self) -> list[PySide2.QtGui.QLinearGradient]: ... method colorStyle (line 397) | def colorStyle(self) -> QtDataVisualization.Q3DTheme.ColorStyle: ... method font (line 398) | def font(self) -> PySide2.QtGui.QFont: ... method gridLineColor (line 399) | def gridLineColor(self) -> PySide2.QtGui.QColor: ... method highlightLightStrength (line 400) | def highlightLightStrength(self) -> float: ... method isBackgroundEnabled (line 401) | def isBackgroundEnabled(self) -> bool: ... method isGridEnabled (line 402) | def isGridEnabled(self) -> bool: ... method isLabelBackgroundEnabled (line 403) | def isLabelBackgroundEnabled(self) -> bool: ... method isLabelBorderEnabled (line 404) | def isLabelBorderEnabled(self) -> bool: ... method labelBackgroundColor (line 405) | def labelBackgroundColor(self) -> PySide2.QtGui.QColor: ... method labelTextColor (line 406) | def labelTextColor(self) -> PySide2.QtGui.QColor: ... method lightColor (line 407) | def lightColor(self) -> PySide2.QtGui.QColor: ... method lightStrength (line 408) | def lightStrength(self) -> float: ... method multiHighlightColor (line 409) | def multiHighlightColor(self) -> PySide2.QtGui.QColor: ... method multiHighlightGradient (line 410) | def multiHighlightGradient(self) -> PySide2.QtGui.QLinearGradient: ... method setAmbientLightStrength (line 411) | def setAmbientLightStrength(self, strength: float) -> None: ... method setBackgroundColor (line 412) | def setBackgroundColor(self, color: PySide2.QtGui.QColor | PySide2.Q... method setBackgroundEnabled (line 413) | def setBackgroundEnabled(self, enabled: bool) -> None: ... method setBaseColors (line 414) | def setBaseColors(self, colors: typing.Iterable[PySide2.QtGui.QColor... method setBaseGradients (line 415) | def setBaseGradients(self, gradients: typing.Iterable[PySide2.QtGui.... method setColorStyle (line 416) | def setColorStyle(self, style: QtDataVisualization.Q3DTheme.ColorSty... method setFont (line 417) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setGridEnabled (line 418) | def setGridEnabled(self, enabled: bool) -> None: ... method setGridLineColor (line 419) | def setGridLineColor(self, color: PySide2.QtGui.QColor | PySide2.QtC... method setHighlightLightStrength (line 420) | def setHighlightLightStrength(self, strength: float) -> None: ... method setLabelBackgroundColor (line 421) | def setLabelBackgroundColor(self, color: PySide2.QtGui.QColor | PySi... method setLabelBackgroundEnabled (line 422) | def setLabelBackgroundEnabled(self, enabled: bool) -> None: ... method setLabelBorderEnabled (line 423) | def setLabelBorderEnabled(self, enabled: bool) -> None: ... method setLabelTextColor (line 424) | def setLabelTextColor(self, color: PySide2.QtGui.QColor | PySide2.Qt... method setLightColor (line 425) | def setLightColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore... method setLightStrength (line 426) | def setLightStrength(self, strength: float) -> None: ... method setMultiHighlightColor (line 427) | def setMultiHighlightColor(self, color: PySide2.QtGui.QColor | PySid... method setMultiHighlightGradient (line 428) | def setMultiHighlightGradient(self, gradient: PySide2.QtGui.QLinearG... method setSingleHighlightColor (line 429) | def setSingleHighlightColor(self, color: PySide2.QtGui.QColor | PySi... method setSingleHighlightGradient (line 430) | def setSingleHighlightGradient(self, gradient: PySide2.QtGui.QLinear... method setType (line 431) | def setType(self, themeType: QtDataVisualization.Q3DTheme.Theme) -> ... method setWindowColor (line 432) | def setWindowColor(self, color: PySide2.QtGui.QColor | PySide2.QtCor... method singleHighlightColor (line 433) | def singleHighlightColor(self) -> PySide2.QtGui.QColor: ... method singleHighlightGradient (line 434) | def singleHighlightGradient(self) -> PySide2.QtGui.QLinearGradient: ... method type (line 435) | def type(self) -> QtDataVisualization.Q3DTheme.Theme: ... method windowColor (line 436) | def windowColor(self) -> PySide2.QtGui.QColor: ... class QAbstract3DAxis (line 438) | class QAbstract3DAxis(PySide2.QtCore.QObject): class AxisOrientation (line 439) | class AxisOrientation: method __init__ (line 447) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 448) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 449) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 450) | def __bool__(self) -> bool: ... method __eq__ (line 451) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 452) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 453) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 454) | def __hash__(self) -> int: ... method __index__ (line 455) | def __index__(self) -> int: ... method __int__ (line 456) | def __int__(self) -> int: ... method __le__ (line 457) | def __le__(self, other: object) -> bool: ... method __lt__ (line 458) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 459) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 460) | def __ne__(self, other: object) -> bool: ... method __or__ (line 461) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 462) | def __pos__(self): ... method __radd__ (line 463) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 464) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 465) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 466) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 467) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 468) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 469) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 470) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class AxisType (line 472) | class AxisType: method __init__ (line 479) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 480) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 481) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 482) | def __bool__(self) -> bool: ... method __eq__ (line 483) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 484) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 485) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 486) | def __hash__(self) -> int: ... method __index__ (line 487) | def __index__(self) -> int: ... method __int__ (line 488) | def __int__(self) -> int: ... method __le__ (line 489) | def __le__(self, other: object) -> bool: ... method __lt__ (line 490) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 491) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 492) | def __ne__(self, other: object) -> bool: ... method __or__ (line 493) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 494) | def __pos__(self): ... method __radd__ (line 495) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 496) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 497) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 498) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 499) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 500) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 501) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 502) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 522) | def __init__(cls, *args, autoAdjustRange: bool = ..., autoAdjustRang... method isAutoAdjustRange (line 523) | def isAutoAdjustRange(self) -> bool: ... method isTitleFixed (line 524) | def isTitleFixed(self) -> bool: ... method isTitleVisible (line 525) | def isTitleVisible(self) -> bool: ... method labelAutoRotation (line 526) | def labelAutoRotation(self) -> float: ... method labels (line 527) | def labels(self) -> list[str]: ... method max (line 528) | def max(self) -> float: ... method min (line 529) | def min(self) -> float: ... method orientation (line 530) | def orientation(self) -> QtDataVisualization.QAbstract3DAxis.AxisOri... method setAutoAdjustRange (line 531) | def setAutoAdjustRange(self, autoAdjust: bool) -> None: ... method setLabelAutoRotation (line 532) | def setLabelAutoRotation(self, angle: float) -> None: ... method setLabels (line 533) | def setLabels(self, labels: typing.Iterable[str]) -> None: ... method setMax (line 534) | def setMax(self, max: float) -> None: ... method setMin (line 535) | def setMin(self, min: float) -> None: ... method setRange (line 536) | def setRange(self, min: float, max: float) -> None: ... method setTitle (line 537) | def setTitle(self, title: str) -> None: ... method setTitleFixed (line 538) | def setTitleFixed(self, fixed: bool) -> None: ... method setTitleVisible (line 539) | def setTitleVisible(self, visible: bool) -> None: ... method title (line 540) | def title(self) -> str: ... method type (line 541) | def type(self) -> QtDataVisualization.QAbstract3DAxis.AxisType: ... class QAbstract3DGraph (line 543) | class QAbstract3DGraph(PySide2.QtGui.QWindow): class ElementType (line 544) | class ElementType: method __init__ (line 554) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 555) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 556) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 557) | def __bool__(self) -> bool: ... method __eq__ (line 558) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 559) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 560) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 561) | def __hash__(self) -> int: ... method __index__ (line 562) | def __index__(self) -> int: ... method __int__ (line 563) | def __int__(self) -> int: ... method __le__ (line 564) | def __le__(self, other: object) -> bool: ... method __lt__ (line 565) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 566) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 567) | def __ne__(self, other: object) -> bool: ... method __or__ (line 568) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 569) | def __pos__(self): ... method __radd__ (line 570) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 571) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 572) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 573) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 574) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 575) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 576) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 577) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class OptimizationHint (line 579) | class OptimizationHint: method __init__ (line 585) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 586) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 587) | def __bool__(self) -> bool: ... method __eq__ (line 588) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 589) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 590) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 591) | def __hash__(self) -> int: ... method __index__ (line 592) | def __index__(self) -> int: ... method __int__ (line 593) | def __int__(self) -> int: ... method __invert__ (line 594) | def __invert__(self) -> QtDataVisualization.QAbstract3DGraph.Optim... method __le__ (line 595) | def __le__(self, other: object) -> bool: ... method __lt__ (line 596) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 597) | def __ne__(self, other: object) -> bool: ... method __or__ (line 598) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __rand__ (line 599) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 600) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rxor__ (line 601) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __xor__ (line 602) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class OptimizationHints (line 604) | class OptimizationHints: method __init__ (line 606) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 607) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 608) | def __bool__(self) -> bool: ... method __eq__ (line 609) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 610) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 611) | def __gt__(self, other: object) -> bool: ... method __index__ (line 612) | def __index__(self) -> int: ... method __int__ (line 613) | def __int__(self) -> int: ... method __invert__ (line 614) | def __invert__(self) -> QtDataVisualization.QAbstract3DGraph.Optim... method __le__ (line 615) | def __le__(self, other: object) -> bool: ... method __lt__ (line 616) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 617) | def __ne__(self, other: object) -> bool: ... method __or__ (line 618) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __rand__ (line 619) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 620) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rxor__ (line 621) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __xor__ (line 622) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class SelectionFlag (line 624) | class SelectionFlag: method __init__ (line 638) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 639) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 640) | def __bool__(self) -> bool: ... method __eq__ (line 641) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 642) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 643) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 644) | def __hash__(self) -> int: ... method __index__ (line 645) | def __index__(self) -> int: ... method __int__ (line 646) | def __int__(self) -> int: ... method __invert__ (line 647) | def __invert__(self) -> QtDataVisualization.QAbstract3DGraph.Selec... method __le__ (line 648) | def __le__(self, other: object) -> bool: ... method __lt__ (line 649) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 650) | def __ne__(self, other: object) -> bool: ... method __or__ (line 651) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __rand__ (line 652) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 653) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rxor__ (line 654) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __xor__ (line 655) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class SelectionFlags (line 657) | class SelectionFlags: method __init__ (line 659) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 660) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 661) | def __bool__(self) -> bool: ... method __eq__ (line 662) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 663) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 664) | def __gt__(self, other: object) -> bool: ... method __index__ (line 665) | def __index__(self) -> int: ... method __int__ (line 666) | def __int__(self) -> int: ... method __invert__ (line 667) | def __invert__(self) -> QtDataVisualization.QAbstract3DGraph.Selec... method __le__ (line 668) | def __le__(self, other: object) -> bool: ... method __lt__ (line 669) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 670) | def __ne__(self, other: object) -> bool: ... method __or__ (line 671) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __rand__ (line 672) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 673) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rxor__ (line 674) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __xor__ (line 675) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class ShadowQuality (line 677) | class ShadowQuality: method __init__ (line 688) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 689) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 690) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 691) | def __bool__(self) -> bool: ... method __eq__ (line 692) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 693) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 694) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 695) | def __hash__(self) -> int: ... method __index__ (line 696) | def __index__(self) -> int: ... method __int__ (line 697) | def __int__(self) -> int: ... method __le__ (line 698) | def __le__(self, other: object) -> bool: ... method __lt__ (line 699) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 700) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 701) | def __ne__(self, other: object) -> bool: ... method __or__ (line 702) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 703) | def __pos__(self): ... method __radd__ (line 704) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 705) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 706) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 707) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 708) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 709) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 710) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 711) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 757) | def __init__(cls, *args, active: bool = ..., activeChanged: typing.C... method activeInputHandler (line 758) | def activeInputHandler(self) -> QtDataVisualization.QAbstract3DInput... method activeTheme (line 759) | def activeTheme(self) -> QtDataVisualization.Q3DTheme: ... method addCustomItem (line 760) | def addCustomItem(self, item: QtDataVisualization.QCustom3DItem) -> ... method addInputHandler (line 761) | def addInputHandler(self, inputHandler: QtDataVisualization.QAbstrac... method addTheme (line 762) | def addTheme(self, theme: QtDataVisualization.Q3DTheme) -> None: ... method aspectRatio (line 763) | def aspectRatio(self) -> float: ... method clearSelection (line 764) | def clearSelection(self) -> None: ... method currentFps (line 765) | def currentFps(self) -> float: ... method customItems (line 766) | def customItems(self) -> list[QtDataVisualization.QCustom3DItem]: ... method event (line 767) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method exposeEvent (line 768) | def exposeEvent(self, event: PySide2.QtGui.QExposeEvent) -> None: ... method hasContext (line 769) | def hasContext(self) -> bool: ... method horizontalAspectRatio (line 770) | def horizontalAspectRatio(self) -> float: ... method inputHandlers (line 771) | def inputHandlers(self) -> list[QtDataVisualization.QAbstract3DInput... method isOrthoProjection (line 772) | def isOrthoProjection(self) -> bool: ... method isPolar (line 773) | def isPolar(self) -> bool: ... method isReflection (line 774) | def isReflection(self) -> bool: ... method locale (line 775) | def locale(self) -> PySide2.QtCore.QLocale: ... method margin (line 776) | def margin(self) -> float: ... method measureFps (line 777) | def measureFps(self) -> bool: ... method mouseDoubleClickEvent (line 778) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) ->... method mouseMoveEvent (line 779) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 780) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method mouseReleaseEvent (line 781) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> Non... method optimizationHints (line 782) | def optimizationHints(self) -> QtDataVisualization.QAbstract3DGraph.... method queriedGraphPosition (line 783) | def queriedGraphPosition(self) -> PySide2.QtGui.QVector3D: ... method radialLabelOffset (line 784) | def radialLabelOffset(self) -> float: ... method reflectivity (line 785) | def reflectivity(self) -> float: ... method releaseCustomItem (line 786) | def releaseCustomItem(self, item: QtDataVisualization.QCustom3DItem)... method releaseInputHandler (line 787) | def releaseInputHandler(self, inputHandler: QtDataVisualization.QAbs... method releaseTheme (line 788) | def releaseTheme(self, theme: QtDataVisualization.Q3DTheme) -> None:... method removeCustomItem (line 789) | def removeCustomItem(self, item: QtDataVisualization.QCustom3DItem) ... method removeCustomItemAt (line 790) | def removeCustomItemAt(self, position: PySide2.QtGui.QVector3D) -> N... method removeCustomItems (line 791) | def removeCustomItems(self) -> None: ... method renderToImage (line 792) | def renderToImage(self, msaaSamples: int = ..., imageSize: PySide2.Q... method resizeEvent (line 793) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method scene (line 794) | def scene(self) -> QtDataVisualization.Q3DScene: ... method selectedAxis (line 795) | def selectedAxis(self) -> QtDataVisualization.QAbstract3DAxis: ... method selectedCustomItem (line 796) | def selectedCustomItem(self) -> QtDataVisualization.QCustom3DItem: ... method selectedCustomItemIndex (line 797) | def selectedCustomItemIndex(self) -> int: ... method selectedElement (line 798) | def selectedElement(self) -> QtDataVisualization.QAbstract3DGraph.El... method selectedLabelIndex (line 799) | def selectedLabelIndex(self) -> int: ... method selectionMode (line 800) | def selectionMode(self) -> QtDataVisualization.QAbstract3DGraph.Sele... method setActiveInputHandler (line 801) | def setActiveInputHandler(self, inputHandler: QtDataVisualization.QA... method setActiveTheme (line 802) | def setActiveTheme(self, theme: QtDataVisualization.Q3DTheme) -> Non... method setAspectRatio (line 803) | def setAspectRatio(self, ratio: float) -> None: ... method setHorizontalAspectRatio (line 804) | def setHorizontalAspectRatio(self, ratio: float) -> None: ... method setLocale (line 805) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setMargin (line 806) | def setMargin(self, margin: float) -> None: ... method setMeasureFps (line 807) | def setMeasureFps(self, enable: bool) -> None: ... method setOptimizationHints (line 808) | def setOptimizationHints(self, hints: QtDataVisualization.QAbstract3... method setOrthoProjection (line 809) | def setOrthoProjection(self, enable: bool) -> None: ... method setPolar (line 810) | def setPolar(self, enable: bool) -> None: ... method setRadialLabelOffset (line 811) | def setRadialLabelOffset(self, offset: float) -> None: ... method setReflection (line 812) | def setReflection(self, enable: bool) -> None: ... method setReflectivity (line 813) | def setReflectivity(self, reflectivity: float) -> None: ... method setSelectionMode (line 814) | def setSelectionMode(self, mode: QtDataVisualization.QAbstract3DGrap... method setShadowQuality (line 815) | def setShadowQuality(self, quality: QtDataVisualization.QAbstract3DG... method shadowQuality (line 816) | def shadowQuality(self) -> QtDataVisualization.QAbstract3DGraph.Shad... method shadowsSupported (line 817) | def shadowsSupported(self) -> bool: ... method themes (line 818) | def themes(self) -> list[QtDataVisualization.Q3DTheme]: ... method touchEvent (line 819) | def touchEvent(self, event: PySide2.QtGui.QTouchEvent) -> None: ... method wheelEvent (line 820) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class QAbstract3DInputHandler (line 822) | class QAbstract3DInputHandler(PySide2.QtCore.QObject): class InputView (line 823) | class InputView: method __init__ (line 830) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 831) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 832) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 833) | def __bool__(self) -> bool: ... method __eq__ (line 834) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 835) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 836) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 837) | def __hash__(self) -> int: ... method __index__ (line 838) | def __index__(self) -> int: ... method __int__ (line 839) | def __int__(self) -> int: ... method __le__ (line 840) | def __le__(self, other: object) -> bool: ... method __lt__ (line 841) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 842) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 843) | def __ne__(self, other: object) -> bool: ... method __or__ (line 844) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 845) | def __pos__(self): ... method __radd__ (line 846) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 847) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 848) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 849) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 850) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 851) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 852) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 853) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 861) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method inputPosition (line 862) | def inputPosition(self) -> PySide2.QtCore.QPoint: ... method inputView (line 863) | def inputView(self) -> QtDataVisualization.QAbstract3DInputHandler.I... method mouseDoubleClickEvent (line 864) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) ->... method mouseMoveEvent (line 865) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent, mousePos:... method mousePressEvent (line 866) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent, mousePos... method mouseReleaseEvent (line 867) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent, mouseP... method prevDistance (line 868) | def prevDistance(self) -> int: ... method previousInputPos (line 869) | def previousInputPos(self) -> PySide2.QtCore.QPoint: ... method scene (line 870) | def scene(self) -> QtDataVisualization.Q3DScene: ... method setInputPosition (line 871) | def setInputPosition(self, position: PySide2.QtCore.QPoint) -> None:... method setInputView (line 872) | def setInputView(self, inputView: QtDataVisualization.QAbstract3DInp... method setPrevDistance (line 873) | def setPrevDistance(self, distance: int) -> None: ... method setPreviousInputPos (line 874) | def setPreviousInputPos(self, position: PySide2.QtCore.QPoint) -> No... method setScene (line 875) | def setScene(self, scene: QtDataVisualization.Q3DScene) -> None: ... method touchEvent (line 876) | def touchEvent(self, event: PySide2.QtGui.QTouchEvent) -> None: ... method wheelEvent (line 877) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class QAbstract3DSeries (line 879) | class QAbstract3DSeries(PySide2.QtCore.QObject): class Mesh (line 880) | class Mesh: method __init__ (line 896) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 897) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 898) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 899) | def __bool__(self) -> bool: ... method __eq__ (line 900) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 901) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 902) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 903) | def __hash__(self) -> int: ... method __index__ (line 904) | def __index__(self) -> int: ... method __int__ (line 905) | def __int__(self) -> int: ... method __le__ (line 906) | def __le__(self, other: object) -> bool: ... method __lt__ (line 907) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 908) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 909) | def __ne__(self, other: object) -> bool: ... method __or__ (line 910) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 911) | def __pos__(self): ... method __radd__ (line 912) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 913) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 914) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 915) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 916) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 917) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 918) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 919) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class SeriesType (line 921) | class SeriesType: method __init__ (line 929) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 930) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 931) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 932) | def __bool__(self) -> bool: ... method __eq__ (line 933) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 934) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 935) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 936) | def __hash__(self) -> int: ... method __index__ (line 937) | def __index__(self) -> int: ... method __int__ (line 938) | def __int__(self) -> int: ... method __le__ (line 939) | def __le__(self, other: object) -> bool: ... method __lt__ (line 940) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 941) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 942) | def __ne__(self, other: object) -> bool: ... method __or__ (line 943) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 944) | def __pos__(self): ... method __radd__ (line 945) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 946) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 947) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 948) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 949) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 950) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 951) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 952) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 987) | def __init__(cls, *args, baseColor: PySide2.QtGui.QColor | PySide2.Q... method baseColor (line 988) | def baseColor(self) -> PySide2.QtGui.QColor: ... method baseGradient (line 989) | def baseGradient(self) -> PySide2.QtGui.QLinearGradient: ... method colorStyle (line 990) | def colorStyle(self) -> QtDataVisualization.Q3DTheme.ColorStyle: ... method isItemLabelVisible (line 991) | def isItemLabelVisible(self) -> bool: ... method isMeshSmooth (line 992) | def isMeshSmooth(self) -> bool: ... method isVisible (line 993) | def isVisible(self) -> bool: ... method itemLabel (line 994) | def itemLabel(self) -> str: ... method itemLabelFormat (line 995) | def itemLabelFormat(self) -> str: ... method mesh (line 996) | def mesh(self) -> QtDataVisualization.QAbstract3DSeries.Mesh: ... method meshRotation (line 997) | def meshRotation(self) -> PySide2.QtGui.QQuaternion: ... method multiHighlightColor (line 998) | def multiHighlightColor(self) -> PySide2.QtGui.QColor: ... method multiHighlightGradient (line 999) | def multiHighlightGradient(self) -> PySide2.QtGui.QLinearGradient: ... method name (line 1000) | def name(self) -> str: ... method setBaseColor (line 1001) | def setBaseColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.... method setBaseGradient (line 1002) | def setBaseGradient(self, gradient: PySide2.QtGui.QLinearGradient) -... method setColorStyle (line 1003) | def setColorStyle(self, style: QtDataVisualization.Q3DTheme.ColorSty... method setItemLabelFormat (line 1004) | def setItemLabelFormat(self, format: str) -> None: ... method setItemLabelVisible (line 1005) | def setItemLabelVisible(self, visible: bool) -> None: ... method setMesh (line 1006) | def setMesh(self, mesh: QtDataVisualization.QAbstract3DSeries.Mesh) ... method setMeshAxisAndAngle (line 1007) | def setMeshAxisAndAngle(self, axis: PySide2.QtGui.QVector3D, angle: ... method setMeshRotation (line 1008) | def setMeshRotation(self, rotation: PySide2.QtGui.QQuaternion) -> No... method setMeshSmooth (line 1009) | def setMeshSmooth(self, enable: bool) -> None: ... method setMultiHighlightColor (line 1010) | def setMultiHighlightColor(self, color: PySide2.QtGui.QColor | PySid... method setMultiHighlightGradient (line 1011) | def setMultiHighlightGradient(self, gradient: PySide2.QtGui.QLinearG... method setName (line 1012) | def setName(self, name: str) -> None: ... method setSingleHighlightColor (line 1013) | def setSingleHighlightColor(self, color: PySide2.QtGui.QColor | PySi... method setSingleHighlightGradient (line 1014) | def setSingleHighlightGradient(self, gradient: PySide2.QtGui.QLinear... method setUserDefinedMesh (line 1015) | def setUserDefinedMesh(self, fileName: str) -> None: ... method setVisible (line 1016) | def setVisible(self, visible: bool) -> None: ... method singleHighlightColor (line 1017) | def singleHighlightColor(self) -> PySide2.QtGui.QColor: ... method singleHighlightGradient (line 1018) | def singleHighlightGradient(self) -> PySide2.QtGui.QLinearGradient: ... method type (line 1019) | def type(self) -> QtDataVisualization.QAbstract3DSeries.SeriesType: ... method userDefinedMesh (line 1020) | def userDefinedMesh(self) -> str: ... class QAbstractDataProxy (line 1022) | class QAbstractDataProxy(PySide2.QtCore.QObject): class DataType (line 1023) | class DataType: method __init__ (line 1031) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1032) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 1033) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 1034) | def __bool__(self) -> bool: ... method __eq__ (line 1035) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1036) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1037) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1038) | def __hash__(self) -> int: ... method __index__ (line 1039) | def __index__(self) -> int: ... method __int__ (line 1040) | def __int__(self) -> int: ... method __le__ (line 1041) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1042) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1043) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 1044) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1045) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 1046) | def __pos__(self): ... method __radd__ (line 1047) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 1048) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 1049) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 1050) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 1051) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 1052) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 1053) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 1054) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 1061) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectNam... method type (line 1062) | def type(self) -> QtDataVisualization.QAbstractDataProxy.DataType: ... class QBar3DSeries (line 1064) | class QBar3DSeries(QtDataVisualization.QAbstract3DSeries): method __init__ (line 1070) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., base... method __init__ (line 1072) | def __init__(self, dataProxy: QtDataVisualization.QBarDataProxy, par... method dataProxy (line 1073) | def dataProxy(self) -> QtDataVisualization.QBarDataProxy: ... method invalidSelectionPosition (line 1075) | def invalidSelectionPosition() -> PySide2.QtCore.QPoint: ... method meshAngle (line 1076) | def meshAngle(self) -> float: ... method selectedBar (line 1077) | def selectedBar(self) -> PySide2.QtCore.QPoint: ... method setDataProxy (line 1078) | def setDataProxy(self, proxy: QtDataVisualization.QBarDataProxy) -> ... method setMeshAngle (line 1079) | def setMeshAngle(self, angle: float) -> None: ... method setSelectedBar (line 1080) | def setSelectedBar(self, position: PySide2.QtCore.QPoint) -> None: ... class QBarDataItem (line 1082) | class QBarDataItem(shiboken2.Object): method __init__ (line 1084) | def __init__(self, value: float, angle: float) -> None: ... method __init__ (line 1086) | def __init__(self, value: float) -> None: ... method __init__ (line 1088) | def __init__(self, other: QtDataVisualization.QBarDataItem) -> None:... method __init__ (line 1090) | def __init__(self) -> None: ... method createExtraData (line 1091) | def createExtraData(self) -> None: ... method rotation (line 1092) | def rotation(self) -> float: ... method setRotation (line 1093) | def setRotation(self, angle: float) -> None: ... method setValue (line 1094) | def setValue(self, val: float) -> None: ... method value (line 1095) | def value(self) -> float: ... method __copy__ (line 1096) | def __copy__(self) -> None: ... class QBarDataProxy (line 1098) | class QBarDataProxy(QtDataVisualization.QAbstractDataProxy): method __init__ (line 1110) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method addRow (line 1112) | def addRow(self, row: list[QtDataVisualization.QBarDataItem], label:... method addRow (line 1114) | def addRow(self, row: list[QtDataVisualization.QBarDataItem]) -> int... method addRows (line 1116) | def addRows(self, rows: list[list[QtDataVisualization.QBarDataItem]]... method addRows (line 1118) | def addRows(self, rows: list[list[QtDataVisualization.QBarDataItem]]... method array (line 1119) | def array(self) -> list[list[QtDataVisualization.QBarDataItem]]: ... method columnLabels (line 1120) | def columnLabels(self) -> list[str]: ... method insertRow (line 1122) | def insertRow(self, rowIndex: int, row: list[QtDataVisualization.QBa... method insertRow (line 1124) | def insertRow(self, rowIndex: int, row: list[QtDataVisualization.QBa... method insertRows (line 1126) | def insertRows(self, rowIndex: int, rows: list[list[QtDataVisualizat... method insertRows (line 1128) | def insertRows(self, rowIndex: int, rows: list[list[QtDataVisualizat... method itemAt (line 1130) | def itemAt(self, rowIndex: int, columnIndex: int) -> QtDataVisualiza... method itemAt (line 1132) | def itemAt(self, position: PySide2.QtCore.QPoint) -> QtDataVisualiza... method removeRows (line 1133) | def removeRows(self, rowIndex: int, removeCount: int, removeLabels: ... method resetArray (line 1135) | def resetArray(self, newArray: list[list[QtDataVisualization.QBarDat... method resetArray (line 1137) | def resetArray(self, newArray: list[list[QtDataVisualization.QBarDat... method resetArray (line 1139) | def resetArray(self) -> None: ... method rowAt (line 1140) | def rowAt(self, rowIndex: int) -> list[QtDataVisualization.QBarDataI... method rowCount (line 1141) | def rowCount(self) -> int: ... method rowLabels (line 1142) | def rowLabels(self) -> list[str]: ... method series (line 1143) | def series(self) -> QtDataVisualization.QBar3DSeries: ... method setColumnLabels (line 1144) | def setColumnLabels(self, labels: typing.Iterable[str]) -> None: ... method setItem (line 1146) | def setItem(self, rowIndex: int, columnIndex: int, item: QtDataVisua... method setItem (line 1148) | def setItem(self, position: PySide2.QtCore.QPoint, item: QtDataVisua... method setRow (line 1150) | def setRow(self, rowIndex: int, row: list[QtDataVisualization.QBarDa... method setRow (line 1152) | def setRow(self, rowIndex: int, row: list[QtDataVisualization.QBarDa... method setRowLabels (line 1153) | def setRowLabels(self, labels: typing.Iterable[str]) -> None: ... method setRows (line 1155) | def setRows(self, rowIndex: int, rows: list[list[QtDataVisualization... method setRows (line 1157) | def setRows(self, rowIndex: int, rows: list[list[QtDataVisualization... class QCategory3DAxis (line 1159) | class QCategory3DAxis(QtDataVisualization.QAbstract3DAxis): method __init__ (line 1162) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., auto... method labels (line 1163) | def labels(self) -> list[str]: ... method setLabels (line 1164) | def setLabels(self, labels: typing.Iterable[str]) -> None: ... class QCustom3DItem (line 1166) | class QCustom3DItem(PySide2.QtCore.QObject): method __init__ (line 1178) | def __init__(self, meshFile: str, position: PySide2.QtGui.QVector3D,... method __init__ (line 1180) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method isPositionAbsolute (line 1181) | def isPositionAbsolute(self) -> bool: ... method isScalingAbsolute (line 1182) | def isScalingAbsolute(self) -> bool: ... method isShadowCasting (line 1183) | def isShadowCasting(self) -> bool: ... method isVisible (line 1184) | def isVisible(self) -> bool: ... method meshFile (line 1185) | def meshFile(self) -> str: ... method position (line 1186) | def position(self) -> PySide2.QtGui.QVector3D: ... method rotation (line 1187) | def rotation(self) -> PySide2.QtGui.QQuaternion: ... method scaling (line 1188) | def scaling(self) -> PySide2.QtGui.QVector3D: ... method setMeshFile (line 1189) | def setMeshFile(self, meshFile: str) -> None: ... method setPosition (line 1190) | def setPosition(self, position: PySide2.QtGui.QVector3D) -> None: ... method setPositionAbsolute (line 1191) | def setPositionAbsolute(self, positionAbsolute: bool) -> None: ... method setRotation (line 1192) | def setRotation(self, rotation: PySide2.QtGui.QQuaternion) -> None: ... method setRotationAxisAndAngle (line 1193) | def setRotationAxisAndAngle(self, axis: PySide2.QtGui.QVector3D, ang... method setScaling (line 1194) | def setScaling(self, scaling: PySide2.QtGui.QVector3D) -> None: ... method setScalingAbsolute (line 1195) | def setScalingAbsolute(self, scalingAbsolute: bool) -> None: ... method setShadowCasting (line 1196) | def setShadowCasting(self, enabled: bool) -> None: ... method setTextureFile (line 1197) | def setTextureFile(self, textureFile: str) -> None: ... method setTextureImage (line 1198) | def setTextureImage(self, textureImage: PySide2.QtGui.QImage) -> Non... method setVisible (line 1199) | def setVisible(self, visible: bool) -> None: ... method textureFile (line 1200) | def textureFile(self) -> str: ... class QCustom3DLabel (line 1202) | class QCustom3DLabel(QtDataVisualization.QCustom3DItem): method __init__ (line 1212) | def __init__(self, text: str, font: PySide2.QtGui.QFont, position: P... method __init__ (line 1214) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., back... method backgroundColor (line 1215) | def backgroundColor(self) -> PySide2.QtGui.QColor: ... method font (line 1216) | def font(self) -> PySide2.QtGui.QFont: ... method isBackgroundEnabled (line 1217) | def isBackgroundEnabled(self) -> bool: ... method isBorderEnabled (line 1218) | def isBorderEnabled(self) -> bool: ... method isFacingCamera (line 1219) | def isFacingCamera(self) -> bool: ... method setBackgroundColor (line 1220) | def setBackgroundColor(self, color: PySide2.QtGui.QColor | PySide2.Q... method setBackgroundEnabled (line 1221) | def setBackgroundEnabled(self, enabled: bool) -> None: ... method setBorderEnabled (line 1222) | def setBorderEnabled(self, enabled: bool) -> None: ... method setFacingCamera (line 1223) | def setFacingCamera(self, enabled: bool) -> None: ... method setFont (line 1224) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setText (line 1225) | def setText(self, text: str) -> None: ... method setTextColor (line 1226) | def setTextColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.... method text (line 1227) | def text(self) -> str: ... method textColor (line 1228) | def textColor(self) -> PySide2.QtGui.QColor: ... class QCustom3DVolume (line 1230) | class QCustom3DVolume(QtDataVisualization.QCustom3DItem): method __init__ (line 1251) | def __init__(self, position: PySide2.QtGui.QVector3D, scaling: PySid... method __init__ (line 1253) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., alph... method alphaMultiplier (line 1254) | def alphaMultiplier(self) -> float: ... method colorTable (line 1255) | def colorTable(self) -> list[int]: ... method createTextureData (line 1256) | def createTextureData(self, images: list[PySide2.QtGui.QImage]) -> l... method drawSliceFrames (line 1257) | def drawSliceFrames(self) -> bool: ... method drawSlices (line 1258) | def drawSlices(self) -> bool: ... method preserveOpacity (line 1259) | def preserveOpacity(self) -> bool: ... method renderSlice (line 1260) | def renderSlice(self, axis: PySide2.QtCore.Qt.Axis, index: int) -> P... method setAlphaMultiplier (line 1261) | def setAlphaMultiplier(self, mult: float) -> None: ... method setColorTable (line 1262) | def setColorTable(self, colors: list[int]) -> None: ... method setDrawSliceFrames (line 1263) | def setDrawSliceFrames(self, enable: bool) -> None: ... method setDrawSlices (line 1264) | def setDrawSlices(self, enable: bool) -> None: ... method setPreserveOpacity (line 1265) | def setPreserveOpacity(self, enable: bool) -> None: ... method setSliceFrameColor (line 1266) | def setSliceFrameColor(self, color: PySide2.QtGui.QColor | PySide2.Q... method setSliceFrameGaps (line 1267) | def setSliceFrameGaps(self, values: PySide2.QtGui.QVector3D) -> None... method setSliceFrameThicknesses (line 1268) | def setSliceFrameThicknesses(self, values: PySide2.QtGui.QVector3D) ... method setSliceFrameWidths (line 1269) | def setSliceFrameWidths(self, values: PySide2.QtGui.QVector3D) -> No... method setSliceIndexX (line 1270) | def setSliceIndexX(self, value: int) -> None: ... method setSliceIndexY (line 1271) | def setSliceIndexY(self, value: int) -> None: ... method setSliceIndexZ (line 1272) | def setSliceIndexZ(self, value: int) -> None: ... method setSliceIndices (line 1273) | def setSliceIndices(self, x: int, y: int, z: int) -> None: ... method setSubTextureData (line 1275) | def setSubTextureData(self, axis: PySide2.QtCore.Qt.Axis, index: int... method setSubTextureData (line 1277) | def setSubTextureData(self, axis: PySide2.QtCore.Qt.Axis, index: int... method setTextureData (line 1278) | def setTextureData(self, data: list[int]) -> None: ... method setTextureDepth (line 1279) | def setTextureDepth(self, value: int) -> None: ... method setTextureDimensions (line 1280) | def setTextureDimensions(self, width: int, height: int, depth: int) ... method setTextureFormat (line 1281) | def setTextureFormat(self, format: PySide2.QtGui.QImage.Format) -> N... method setTextureHeight (line 1282) | def setTextureHeight(self, value: int) -> None: ... method setTextureWidth (line 1283) | def setTextureWidth(self, value: int) -> None: ... method setUseHighDefShader (line 1284) | def setUseHighDefShader(self, enable: bool) -> None: ... method sliceFrameColor (line 1285) | def sliceFrameColor(self) -> PySide2.QtGui.QColor: ... method sliceFrameGaps (line 1286) | def sliceFrameGaps(self) -> PySide2.QtGui.QVector3D: ... method sliceFrameThicknesses (line 1287) | def sliceFrameThicknesses(self) -> PySide2.QtGui.QVector3D: ... method sliceFrameWidths (line 1288) | def sliceFrameWidths(self) -> PySide2.QtGui.QVector3D: ... method sliceIndexX (line 1289) | def sliceIndexX(self) -> int: ... method sliceIndexY (line 1290) | def sliceIndexY(self) -> int: ... method sliceIndexZ (line 1291) | def sliceIndexZ(self) -> int: ... method textureData (line 1292) | def textureData(self) -> list[int]: ... method textureDataWidth (line 1293) | def textureDataWidth(self) -> int: ... method textureDepth (line 1294) | def textureDepth(self) -> int: ... method textureFormat (line 1295) | def textureFormat(self) -> PySide2.QtGui.QImage.Format: ... method textureHeight (line 1296) | def textureHeight(self) -> int: ... method textureWidth (line 1297) | def textureWidth(self) -> int: ... method useHighDefShader (line 1298) | def useHighDefShader(self) -> bool: ... class QHeightMapSurfaceDataProxy (line 1300) | class QHeightMapSurfaceDataProxy(QtDataVisualization.QSurfaceDataProxy): method __init__ (line 1309) | def __init__(self, image: PySide2.QtGui.QImage, parent: PySide2.QtCo... method __init__ (line 1311) | def __init__(self, filename: str, parent: PySide2.QtCore.QObject | N... method __init__ (line 1313) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method heightMap (line 1314) | def heightMap(self) -> PySide2.QtGui.QImage: ... method heightMapFile (line 1315) | def heightMapFile(self) -> str: ... method maxXValue (line 1316) | def maxXValue(self) -> float: ... method maxZValue (line 1317) | def maxZValue(self) -> float: ... method minXValue (line 1318) | def minXValue(self) -> float: ... method minZValue (line 1319) | def minZValue(self) -> float: ... method setHeightMap (line 1320) | def setHeightMap(self, image: PySide2.QtGui.QImage) -> None: ... method setHeightMapFile (line 1321) | def setHeightMapFile(self, filename: str) -> None: ... method setMaxXValue (line 1322) | def setMaxXValue(self, max: float) -> None: ... method setMaxZValue (line 1323) | def setMaxZValue(self, max: float) -> None: ... method setMinXValue (line 1324) | def setMinXValue(self, min: float) -> None: ... method setMinZValue (line 1325) | def setMinZValue(self, min: float) -> None: ... method setValueRanges (line 1326) | def setValueRanges(self, minX: float, maxX: float, minZ: float, maxZ... class QItemModelBarDataProxy (line 1328) | class QItemModelBarDataProxy(QtDataVisualization.QBarDataProxy): class MultiMatchBehavior (line 1329) | class MultiMatchBehavior: method __init__ (line 1337) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1338) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 1339) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 1340) | def __bool__(self) -> bool: ... method __eq__ (line 1341) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1342) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1343) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1344) | def __hash__(self) -> int: ... method __index__ (line 1345) | def __index__(self) -> int: ... method __int__ (line 1346) | def __int__(self) -> int: ... method __le__ (line 1347) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1348) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1349) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 1350) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1351) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 1352) | def __pos__(self): ... method __radd__ (line 1353) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 1354) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 1355) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 1356) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 1357) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 1358) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 1359) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 1360) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 1386) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method __init__ (line 1388) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, val... method __init__ (line 1390) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1392) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1394) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1396) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1398) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, par... method autoColumnCategories (line 1399) | def autoColumnCategories(self) -> bool: ... method autoRowCategories (line 1400) | def autoRowCategories(self) -> bool: ... method columnCategories (line 1401) | def columnCategories(self) -> list[str]: ... method columnCategoryIndex (line 1402) | def columnCategoryIndex(self, category: str) -> int: ... method columnRole (line 1403) | def columnRole(self) -> str: ... method columnRolePattern (line 1404) | def columnRolePattern(self) -> PySide2.QtCore.QRegExp: ... method columnRoleReplace (line 1405) | def columnRoleReplace(self) -> str: ... method itemModel (line 1406) | def itemModel(self) -> PySide2.QtCore.QAbstractItemModel: ... method multiMatchBehavior (line 1407) | def multiMatchBehavior(self) -> QtDataVisualization.QItemModelBarDat... method remap (line 1408) | def remap(self, rowRole: str, columnRole: str, valueRole: str, rotat... method rotationRole (line 1409) | def rotationRole(self) -> str: ... method rotationRolePattern (line 1410) | def rotationRolePattern(self) -> PySide2.QtCore.QRegExp: ... method rotationRoleReplace (line 1411) | def rotationRoleReplace(self) -> str: ... method rowCategories (line 1412) | def rowCategories(self) -> list[str]: ... method rowCategoryIndex (line 1413) | def rowCategoryIndex(self, category: str) -> int: ... method rowRole (line 1414) | def rowRole(self) -> str: ... method rowRolePattern (line 1415) | def rowRolePattern(self) -> PySide2.QtCore.QRegExp: ... method rowRoleReplace (line 1416) | def rowRoleReplace(self) -> str: ... method setAutoColumnCategories (line 1417) | def setAutoColumnCategories(self, enable: bool) -> None: ... method setAutoRowCategories (line 1418) | def setAutoRowCategories(self, enable: bool) -> None: ... method setColumnCategories (line 1419) | def setColumnCategories(self, categories: typing.Iterable[str]) -> N... method setColumnRole (line 1420) | def setColumnRole(self, role: str) -> None: ... method setColumnRolePattern (line 1421) | def setColumnRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> N... method setColumnRoleReplace (line 1422) | def setColumnRoleReplace(self, replace: str) -> None: ... method setItemModel (line 1423) | def setItemModel(self, itemModel: PySide2.QtCore.QAbstractItemModel)... method setMultiMatchBehavior (line 1424) | def setMultiMatchBehavior(self, behavior: QtDataVisualization.QItemM... method setRotationRole (line 1425) | def setRotationRole(self, role: str) -> None: ... method setRotationRolePattern (line 1426) | def setRotationRolePattern(self, pattern: PySide2.QtCore.QRegExp) ->... method setRotationRoleReplace (line 1427) | def setRotationRoleReplace(self, replace: str) -> None: ... method setRowCategories (line 1428) | def setRowCategories(self, categories: typing.Iterable[str]) -> None... method setRowRole (line 1429) | def setRowRole(self, role: str) -> None: ... method setRowRolePattern (line 1430) | def setRowRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> None... method setRowRoleReplace (line 1431) | def setRowRoleReplace(self, replace: str) -> None: ... method setUseModelCategories (line 1432) | def setUseModelCategories(self, enable: bool) -> None: ... method setValueRole (line 1433) | def setValueRole(self, role: str) -> None: ... method setValueRolePattern (line 1434) | def setValueRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> No... method setValueRoleReplace (line 1435) | def setValueRoleReplace(self, replace: str) -> None: ... method useModelCategories (line 1436) | def useModelCategories(self) -> bool: ... method valueRole (line 1437) | def valueRole(self) -> str: ... method valueRolePattern (line 1438) | def valueRolePattern(self) -> PySide2.QtCore.QRegExp: ... method valueRoleReplace (line 1439) | def valueRoleReplace(self) -> str: ... class QItemModelScatterDataProxy (line 1441) | class QItemModelScatterDataProxy(QtDataVisualization.QScatterDataProxy): method __init__ (line 1457) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method __init__ (line 1459) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, xPo... method __init__ (line 1461) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, xPo... method __init__ (line 1463) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, par... method itemModel (line 1464) | def itemModel(self) -> PySide2.QtCore.QAbstractItemModel: ... method remap (line 1465) | def remap(self, xPosRole: str, yPosRole: str, zPosRole: str, rotatio... method rotationRole (line 1466) | def rotationRole(self) -> str: ... method rotationRolePattern (line 1467) | def rotationRolePattern(self) -> PySide2.QtCore.QRegExp: ... method rotationRoleReplace (line 1468) | def rotationRoleReplace(self) -> str: ... method setItemModel (line 1469) | def setItemModel(self, itemModel: PySide2.QtCore.QAbstractItemModel)... method setRotationRole (line 1470) | def setRotationRole(self, role: str) -> None: ... method setRotationRolePattern (line 1471) | def setRotationRolePattern(self, pattern: PySide2.QtCore.QRegExp) ->... method setRotationRoleReplace (line 1472) | def setRotationRoleReplace(self, replace: str) -> None: ... method setXPosRole (line 1473) | def setXPosRole(self, role: str) -> None: ... method setXPosRolePattern (line 1474) | def setXPosRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> Non... method setXPosRoleReplace (line 1475) | def setXPosRoleReplace(self, replace: str) -> None: ... method setYPosRole (line 1476) | def setYPosRole(self, role: str) -> None: ... method setYPosRolePattern (line 1477) | def setYPosRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> Non... method setYPosRoleReplace (line 1478) | def setYPosRoleReplace(self, replace: str) -> None: ... method setZPosRole (line 1479) | def setZPosRole(self, role: str) -> None: ... method setZPosRolePattern (line 1480) | def setZPosRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> Non... method setZPosRoleReplace (line 1481) | def setZPosRoleReplace(self, replace: str) -> None: ... method xPosRole (line 1482) | def xPosRole(self) -> str: ... method xPosRolePattern (line 1483) | def xPosRolePattern(self) -> PySide2.QtCore.QRegExp: ... method xPosRoleReplace (line 1484) | def xPosRoleReplace(self) -> str: ... method yPosRole (line 1485) | def yPosRole(self) -> str: ... method yPosRolePattern (line 1486) | def yPosRolePattern(self) -> PySide2.QtCore.QRegExp: ... method yPosRoleReplace (line 1487) | def yPosRoleReplace(self) -> str: ... method zPosRole (line 1488) | def zPosRole(self) -> str: ... method zPosRolePattern (line 1489) | def zPosRolePattern(self) -> PySide2.QtCore.QRegExp: ... method zPosRoleReplace (line 1490) | def zPosRoleReplace(self) -> str: ... class QItemModelSurfaceDataProxy (line 1492) | class QItemModelSurfaceDataProxy(QtDataVisualization.QSurfaceDataProxy): class MultiMatchBehavior (line 1493) | class MultiMatchBehavior: method __init__ (line 1501) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1502) | def __add__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __and__ (line 1503) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 1504) | def __bool__(self) -> bool: ... method __eq__ (line 1505) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1506) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1507) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1508) | def __hash__(self) -> int: ... method __index__ (line 1509) | def __index__(self) -> int: ... method __int__ (line 1510) | def __int__(self) -> int: ... method __le__ (line 1511) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1512) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1513) | def __mul__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __ne__ (line 1514) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1515) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __pos__ (line 1516) | def __pos__(self): ... method __radd__ (line 1517) | def __radd__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rand__ (line 1518) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rmul__ (line 1519) | def __rmul__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 1520) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rsub__ (line 1521) | def __rsub__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __rxor__ (line 1522) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __sub__ (line 1523) | def __sub__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __xor__ (line 1524) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 1553) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method __init__ (line 1555) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, yPo... method __init__ (line 1557) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1559) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1561) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1563) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, row... method __init__ (line 1565) | def __init__(self, itemModel: PySide2.QtCore.QAbstractItemModel, par... method autoColumnCategories (line 1566) | def autoColumnCategories(self) -> bool: ... method autoRowCategories (line 1567) | def autoRowCategories(self) -> bool: ... method columnCategories (line 1568) | def columnCategories(self) -> list[str]: ... method columnCategoryIndex (line 1569) | def columnCategoryIndex(self, category: str) -> int: ... method columnRole (line 1570) | def columnRole(self) -> str: ... method columnRolePattern (line 1571) | def columnRolePattern(self) -> PySide2.QtCore.QRegExp: ... method columnRoleReplace (line 1572) | def columnRoleReplace(self) -> str: ... method itemModel (line 1573) | def itemModel(self) -> PySide2.QtCore.QAbstractItemModel: ... method multiMatchBehavior (line 1574) | def multiMatchBehavior(self) -> QtDataVisualization.QItemModelSurfac... method remap (line 1575) | def remap(self, rowRole: str, columnRole: str, xPosRole: str, yPosRo... method rowCategories (line 1576) | def rowCategories(self) -> list[str]: ... method rowCategoryIndex (line 1577) | def rowCategoryIndex(self, category: str) -> int: ... method rowRole (line 1578) | def rowRole(self) -> str: ... method rowRolePattern (line 1579) | def rowRolePattern(self) -> PySide2.QtCore.QRegExp: ... method rowRoleReplace (line 1580) | def rowRoleReplace(self) -> str: ... method setAutoColumnCategories (line 1581) | def setAutoColumnCategories(self, enable: bool) -> None: ... method setAutoRowCategories (line 1582) | def setAutoRowCategories(self, enable: bool) -> None: ... method setColumnCategories (line 1583) | def setColumnCategories(self, categories: typing.Iterable[str]) -> N... method setColumnRole (line 1584) | def setColumnRole(self, role: str) -> None: ... method setColumnRolePattern (line 1585) | def setColumnRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> N... method setColumnRoleReplace (line 1586) | def setColumnRoleReplace(self, replace: str) -> None: ... method setItemModel (line 1587) | def setItemModel(self, itemModel: PySide2.QtCore.QAbstractItemModel)... method setMultiMatchBehavior (line 1588) | def setMultiMatchBehavior(self, behavior: QtDataVisualization.QItemM... method setRowCategories (line 1589) | def setRowCategories(self, categories: typing.Iterable[str]) -> None... method setRowRole (line 1590) | def setRowRole(self, role: str) -> None: ... method setRowRolePattern (line 1591) | def setRowRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> None... method setRowRoleReplace (line 1592) | def setRowRoleReplace(self, replace: str) -> None: ... method setUseModelCategories (line 1593) | def setUseModelCategories(self, enable: bool) -> None: ... method setXPosRole (line 1594) | def setXPosRole(self, role: str) -> None: ... method setXPosRolePattern (line 1595) | def setXPosRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> Non... method setXPosRoleReplace (line 1596) | def setXPosRoleReplace(self, replace: str) -> None: ... method setYPosRole (line 1597) | def setYPosRole(self, role: str) -> None: ... method setYPosRolePattern (line 1598) | def setYPosRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> Non... method setYPosRoleReplace (line 1599) | def setYPosRoleReplace(self, replace: str) -> None: ... method setZPosRole (line 1600) | def setZPosRole(self, role: str) -> None: ... method setZPosRolePattern (line 1601) | def setZPosRolePattern(self, pattern: PySide2.QtCore.QRegExp) -> Non... method setZPosRoleReplace (line 1602) | def setZPosRoleReplace(self, replace: str) -> None: ... method useModelCategories (line 1603) | def useModelCategories(self) -> bool: ... method xPosRole (line 1604) | def xPosRole(self) -> str: ... method xPosRolePattern (line 1605) | def xPosRolePattern(self) -> PySide2.QtCore.QRegExp: ... method xPosRoleReplace (line 1606) | def xPosRoleReplace(self) -> str: ... method yPosRole (line 1607) | def yPosRole(self) -> str: ... method yPosRolePattern (line 1608) | def yPosRolePattern(self) -> PySide2.QtCore.QRegExp: ... method yPosRoleReplace (line 1609) | def yPosRoleReplace(self) -> str: ... method zPosRole (line 1610) | def zPosRole(self) -> str: ... method zPosRolePattern (line 1611) | def zPosRolePattern(self) -> PySide2.QtCore.QRegExp: ... method zPosRoleReplace (line 1612) | def zPosRoleReplace(self) -> str: ... class QLogValue3DAxisFormatter (line 1614) | class QLogValue3DAxisFormatter(QtDataVisualization.QValue3DAxisFormatt... method __init__ (line 1619) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., auto... method autoSubGrid (line 1620) | def autoSubGrid(self) -> bool: ... method base (line 1621) | def base(self) -> float: ... method createNewInstance (line 1622) | def createNewInstance(self) -> QtDataVisualization.QValue3DAxisForma... method populateCopy (line 1623) | def populateCopy(self, copy: QtDataVisualization.QValue3DAxisFormatt... method positionAt (line 1624) | def positionAt(self, value: float) -> float: ... method recalculate (line 1625) | def recalculate(self) -> None: ... method setAutoSubGrid (line 1626) | def setAutoSubGrid(self, enabled: bool) -> None: ... method setBase (line 1627) | def setBase(self, base: float) -> None: ... method setShowEdgeLabels (line 1628) | def setShowEdgeLabels(self, enabled: bool) -> None: ... method showEdgeLabels (line 1629) | def showEdgeLabels(self) -> bool: ... method valueAt (line 1630) | def valueAt(self, position: float) -> float: ... class QScatter3DSeries (line 1632) | class QScatter3DSeries(QtDataVisualization.QAbstract3DSeries): method __init__ (line 1638) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., base... method __init__ (line 1640) | def __init__(self, dataProxy: QtDataVisualization.QScatterDataProxy,... method dataProxy (line 1641) | def dataProxy(self) -> QtDataVisualization.QScatterDataProxy: ... method invalidSelectionIndex (line 1643) | def invalidSelectionIndex() -> int: ... method itemSize (line 1644) | def itemSize(self) -> float: ... method selectedItem (line 1645) | def selectedItem(self) -> int: ... method setDataProxy (line 1646) | def setDataProxy(self, proxy: QtDataVisualization.QScatterDataProxy)... method setItemSize (line 1647) | def setItemSize(self, size: float) -> None: ... method setSelectedItem (line 1648) | def setSelectedItem(self, index: int) -> None: ... class QScatterDataItem (line 1650) | class QScatterDataItem(shiboken2.Object): method __init__ (line 1652) | def __init__(self, position: PySide2.QtGui.QVector3D, rotation: PySi... method __init__ (line 1654) | def __init__(self, position: PySide2.QtGui.QVector3D) -> None: ... method __init__ (line 1656) | def __init__(self, other: QtDataVisualization.QScatterDataItem) -> N... method __init__ (line 1658) | def __init__(self) -> None: ... method createExtraData (line 1659) | def createExtraData(self) -> None: ... method position (line 1660) | def position(self) -> PySide2.QtGui.QVector3D: ... method rotation (line 1661) | def rotation(self) -> PySide2.QtGui.QQuaternion: ... method setPosition (line 1662) | def setPosition(self, pos: PySide2.QtGui.QVector3D) -> None: ... method setRotation (line 1663) | def setRotation(self, rot: PySide2.QtGui.QQuaternion) -> None: ... method setX (line 1664) | def setX(self, value: float) -> None: ... method setY (line 1665) | def setY(self, value: float) -> None: ... method setZ (line 1666) | def setZ(self, value: float) -> None: ... method x (line 1667) | def x(self) -> float: ... method y (line 1668) | def y(self) -> float: ... method z (line 1669) | def z(self) -> float: ... method __copy__ (line 1670) | def __copy__(self) -> None: ... class QScatterDataProxy (line 1672) | class QScatterDataProxy(QtDataVisualization.QAbstractDataProxy): method __init__ (line 1681) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method addItem (line 1682) | def addItem(self, item: QtDataVisualization.QScatterDataItem) -> int... method addItems (line 1683) | def addItems(self, items: list[QtDataVisualization.QScatterDataItem]... method array (line 1684) | def array(self) -> list[QtDataVisualization.QScatterDataItem]: ... method insertItem (line 1685) | def insertItem(self, index: int, item: QtDataVisualization.QScatterD... method insertItems (line 1686) | def insertItems(self, index: int, items: list[QtDataVisualization.QS... method itemAt (line 1687) | def itemAt(self, index: int) -> QtDataVisualization.QScatterDataItem... method itemCount (line 1688) | def itemCount(self) -> int: ... method removeItems (line 1689) | def removeItems(self, index: int, removeCount: int) -> None: ... method resetArray (line 1690) | def resetArray(self, newArray: list[QtDataVisualization.QScatterData... method series (line 1691) | def series(self) -> QtDataVisualization.QScatter3DSeries: ... method setItem (line 1692) | def setItem(self, index: int, item: QtDataVisualization.QScatterData... method setItems (line 1693) | def setItems(self, index: int, items: list[QtDataVisualization.QScat... class QSurface3DSeries (line 1695) | class QSurface3DSeries(QtDataVisualization.QAbstract3DSeries): class DrawFlag (line 1696) | class DrawFlag: method __init__ (line 1703) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1704) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 1705) | def __bool__(self) -> bool: ... method __eq__ (line 1706) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1707) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1708) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1709) | def __hash__(self) -> int: ... method __index__ (line 1710) | def __index__(self) -> int: ... method __int__ (line 1711) | def __int__(self) -> int: ... method __invert__ (line 1712) | def __invert__(self) -> QtDataVisualization.QSurface3DSeries.DrawF... method __le__ (line 1713) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1714) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1715) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1716) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __rand__ (line 1717) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 1718) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rxor__ (line 1719) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __xor__ (line 1720) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... class DrawFlags (line 1722) | class DrawFlags: method __init__ (line 1724) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1725) | def __and__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __bool__ (line 1726) | def __bool__(self) -> bool: ... method __eq__ (line 1727) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1728) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1729) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1730) | def __index__(self) -> int: ... method __int__ (line 1731) | def __int__(self) -> int: ... method __invert__ (line 1732) | def __invert__(self) -> QtDataVisualization.QSurface3DSeries.DrawF... method __le__ (line 1733) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1734) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1735) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1736) | def __or__(self, other: typing.SupportsInt) -> QtDataVisualization... method __rand__ (line 1737) | def __rand__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __ror__ (line 1738) | def __ror__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __rxor__ (line 1739) | def __rxor__(self, other: typing.SupportsInt) -> QtDataVisualizati... method __xor__ (line 1740) | def __xor__(self, other: typing.SupportsInt) -> QtDataVisualizatio... method __init__ (line 1753) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., base... method __init__ (line 1755) | def __init__(self, dataProxy: QtDataVisualization.QSurfaceDataProxy,... method dataProxy (line 1756) | def dataProxy(self) -> QtDataVisualization.QSurfaceDataProxy: ... method drawMode (line 1757) | def drawMode(self) -> QtDataVisualization.QSurface3DSeries.DrawFlags... method invalidSelectionPosition (line 1759) | def invalidSelectionPosition() -> PySide2.QtCore.QPoint: ... method isFlatShadingEnabled (line 1760) | def isFlatShadingEnabled(self) -> bool: ... method isFlatShadingSupported (line 1761) | def isFlatShadingSupported(self) -> bool: ... method selectedPoint (line 1762) | def selectedPoint(self) -> PySide2.QtCore.QPoint: ... method setDataProxy (line 1763) | def setDataProxy(self, proxy: QtDataVisualization.QSurfaceDataProxy)... method setDrawMode (line 1764) | def setDrawMode(self, mode: QtDataVisualization.QSurface3DSeries.Dra... method setFlatShadingEnabled (line 1765) | def setFlatShadingEnabled(self, enabled: bool) -> None: ... method setSelectedPoint (line 1766) | def setSelectedPoint(self, position: PySide2.QtCore.QPoint) -> None:... method setTexture (line 1767) | def setTexture(self, texture: PySide2.QtGui.QImage) -> None: ... method setTextureFile (line 1768) | def setTextureFile(self, filename: str) -> None: ... method texture (line 1769) | def texture(self) -> PySide2.QtGui.QImage: ... method textureFile (line 1770) | def textureFile(self) -> str: ... class QSurfaceDataItem (line 1772) | class QSurfaceDataItem(shiboken2.Object): method __init__ (line 1774) | def __init__(self, position: PySide2.QtGui.QVector3D) -> None: ... method __init__ (line 1776) | def __init__(self, other: QtDataVisualization.QSurfaceDataItem) -> N... method __init__ (line 1778) | def __init__(self) -> None: ... method createExtraData (line 1779) | def createExtraData(self) -> None: ... method position (line 1780) | def position(self) -> PySide2.QtGui.QVector3D: ... method setPosition (line 1781) | def setPosition(self, pos: PySide2.QtGui.QVector3D) -> None: ... method setX (line 1782) | def setX(self, value: float) -> None: ... method setY (line 1783) | def setY(self, value: float) -> None: ... method setZ (line 1784) | def setZ(self, value: float) -> None: ... method x (line 1785) | def x(self) -> float: ... method y (line 1786) | def y(self) -> float: ... method z (line 1787) | def z(self) -> float: ... method __copy__ (line 1788) | def __copy__(self) -> None: ... class QSurfaceDataProxy (line 1790) | class QSurfaceDataProxy(QtDataVisualization.QAbstractDataProxy): method __init__ (line 1801) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., arra... method addRow (line 1802) | def addRow(self, row: list[QtDataVisualization.QSurfaceDataItem]) ->... method addRows (line 1803) | def addRows(self, rows: list[list[QtDataVisualization.QSurfaceDataIt... method array (line 1804) | def array(self) -> list[list[QtDataVisualization.QSurfaceDataItem]]:... method columnCount (line 1805) | def columnCount(self) -> int: ... method insertRow (line 1806) | def insertRow(self, rowIndex: int, row: list[QtDataVisualization.QSu... method insertRows (line 1807) | def insertRows(self, rowIndex: int, rows: list[list[QtDataVisualizat... method itemAt (line 1809) | def itemAt(self, rowIndex: int, columnIndex: int) -> QtDataVisualiza... method itemAt (line 1811) | def itemAt(self, position: PySide2.QtCore.QPoint) -> QtDataVisualiza... method removeRows (line 1812) | def removeRows(self, rowIndex: int, removeCount: int) -> None: ... method resetArray (line 1813) | def resetArray(self, newArray: list[list[QtDataVisualization.QSurfac... method rowCount (line 1814) | def rowCount(self) -> int: ... method series (line 1815) | def series(self) -> QtDataVisualization.QSurface3DSeries: ... method setItem (line 1817) | def setItem(self, rowIndex: int, columnIndex: int, item: QtDataVisua... method setItem (line 1819) | def setItem(self, position: PySide2.QtCore.QPoint, item: QtDataVisua... method setRow (line 1820) | def setRow(self, rowIndex: int, row: list[QtDataVisualization.QSurfa... method setRows (line 1821) | def setRows(self, rowIndex: int, rows: list[list[QtDataVisualization... class QTouch3DInputHandler (line 1823) | class QTouch3DInputHandler(QtDataVisualization.Q3DInputHandler): method __init__ (line 1825) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method touchEvent (line 1826) | def touchEvent(self, event: PySide2.QtGui.QTouchEvent) -> None: ... class QValue3DAxis (line 1828) | class QValue3DAxis(QtDataVisualization.QAbstract3DAxis): method __init__ (line 1835) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., auto... method formatter (line 1836) | def formatter(self) -> QtDataVisualization.QValue3DAxisFormatter: ... method labelFormat (line 1837) | def labelFormat(self) -> str: ... method reversed (line 1838) | def reversed(self) -> bool: ... method segmentCount (line 1839) | def segmentCount(self) -> int: ... method setFormatter (line 1840) | def setFormatter(self, formatter: QtDataVisualization.QValue3DAxisFo... method setLabelFormat (line 1841) | def setLabelFormat(self, format: str) -> None: ... method setReversed (line 1842) | def setReversed(self, enable: bool) -> None: ... method setSegmentCount (line 1843) | def setSegmentCount(self, count: int) -> None: ... method setSubSegmentCount (line 1844) | def setSubSegmentCount(self, count: int) -> None: ... method subSegmentCount (line 1845) | def subSegmentCount(self) -> int: ... class QValue3DAxisFormatter (line 1847) | class QValue3DAxisFormatter(PySide2.QtCore.QObject): method __init__ (line 1849) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., dest... method allowNegatives (line 1850) | def allowNegatives(self) -> bool: ... method allowZero (line 1851) | def allowZero(self) -> bool: ... method axis (line 1852) | def axis(self) -> QtDataVisualization.QValue3DAxis: ... method createNewInstance (line 1853) | def createNewInstance(self) -> QtDataVisualization.QValue3DAxisForma... method gridPositions (line 1854) | def gridPositions(self) -> list[float]: ... method labelPositions (line 1855) | def labelPositions(self) -> list[float]: ... method labelStrings (line 1856) | def labelStrings(self) -> list[str]: ... method locale (line 1857) | def locale(self) -> PySide2.QtCore.QLocale: ... method markDirty (line 1858) | def markDirty(self, labelsChange: bool = ...) -> None: ... method populateCopy (line 1859) | def populateCopy(self, copy: QtDataVisualization.QValue3DAxisFormatt... method positionAt (line 1860) | def positionAt(self, value: float) -> float: ... method recalculate (line 1861) | def recalculate(self) -> None: ... method setAllowNegatives (line 1862) | def setAllowNegatives(self, allow: bool) -> None: ... method setAllowZero (line 1863) | def setAllowZero(self, allow: bool) -> None: ... method setLocale (line 1864) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method stringForValue (line 1865) | def stringForValue(self, value: float, format: str) -> str: ... method subGridPositions (line 1866) | def subGridPositions(self) -> list[float]: ... method valueAt (line 1867) | def valueAt(self, position: float) -> float: ... method __init__ (line 1873) | def __init__(cls, *args, **kwargs) -> None: ... method qDefaultSurfaceFormat (line 1876) | def qDefaultSurfaceFormat(antialias: bool) -> PySide2.QtGui.QSurfaceFo... method qDefaultSurfaceFormat (line 1879) | def qDefaultSurfaceFormat(antialias: bool = ...) -> PySide2.QtGui.QSur... FILE: pyside/stubs/PySide2-stubs/QtGui.pyi class _add_QImageReader_imageFormat_overloads (line 11) | class _add_QImageReader_imageFormat_overloads: class StaticOverloads (line 18) | class StaticOverloads: class imageFormat (line 19) | class imageFormat: method __call__ (line 22) | def __call__(device: PySide2.QtCore.QIODevice) -> PySide2.QtCore.Q... method __call__ (line 25) | def __call__(fileName: str) -> PySide2.QtCore.QByteArray: ... class InstanceOverloads (line 27) | class InstanceOverloads: class imageFormat (line 28) | class imageFormat: method __call__ (line 30) | def __call__(self) -> QImage.Format: ... method __call__ (line 32) | def __call__(self, device: PySide2.QtCore.QIODevice) -> PySide2.Qt... method __call__ (line 34) | def __call__(self, fileName: str) -> PySide2.QtCore.QByteArray: ... method __init__ (line 36) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 39) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 42) | def __get__(self, object: QImageReader, owner: typing.Any) -> Instance... class _add_QOpenGLBuffer_release_overloads (line 44) | class _add_QOpenGLBuffer_release_overloads: class StaticOverloads (line 51) | class StaticOverloads: class release (line 52) | class release: method __call__ (line 54) | def __call__(type: QOpenGLBuffer.Type) -> None: ... class InstanceOverloads (line 56) | class InstanceOverloads: class release (line 57) | class release: method __call__ (line 59) | def __call__(self) -> None: ... method __call__ (line 61) | def __call__(self, type: QOpenGLBuffer.Type) -> None: ... method __init__ (line 63) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 66) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 69) | def __get__(self, object: QOpenGLBuffer, owner: typing.Any) -> Instanc... class _add_QPageSize_definitionSize_overloads (line 71) | class _add_QPageSize_definitionSize_overloads: class StaticOverloads (line 78) | class StaticOverloads: class definitionSize (line 79) | class definitionSize: method __call__ (line 81) | def __call__(pageSizeId: QPageSize.PageSizeId) -> PySide2.QtCore.Q... class InstanceOverloads (line 83) | class InstanceOverloads: class definitionSize (line 84) | class definitionSize: method __call__ (line 86) | def __call__(self) -> PySide2.QtCore.QSizeF: ... method __call__ (line 88) | def __call__(self, pageSizeId: QPageSize.PageSizeId) -> PySide2.Qt... method __init__ (line 90) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 93) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 96) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_definitionUnits_overloads (line 98) | class _add_QPageSize_definitionUnits_overloads: class StaticOverloads (line 105) | class StaticOverloads: class definitionUnits (line 106) | class definitionUnits: method __call__ (line 108) | def __call__(pageSizeId: QPageSize.PageSizeId) -> QPageSize.Unit: ... class InstanceOverloads (line 110) | class InstanceOverloads: class definitionUnits (line 111) | class definitionUnits: method __call__ (line 113) | def __call__(self) -> QPageSize.Unit: ... method __call__ (line 115) | def __call__(self, pageSizeId: QPageSize.PageSizeId) -> QPageSize.... method __init__ (line 117) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 120) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 123) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_id_overloads (line 125) | class _add_QPageSize_id_overloads: class StaticOverloads (line 132) | class StaticOverloads: class id (line 133) | class id: method __call__ (line 136) | def __call__(pointSize: PySide2.QtCore.QSize, matchPolicy: QPageSi... method __call__ (line 139) | def __call__(size: PySide2.QtCore.QSizeF, units: QPageSize.Unit, m... method __call__ (line 142) | def __call__(windowsId: int) -> QPageSize.PageSizeId: ... class InstanceOverloads (line 144) | class InstanceOverloads: class id (line 145) | class id: method __call__ (line 147) | def __call__(self) -> QPageSize.PageSizeId: ... method __call__ (line 149) | def __call__(self, pointSize: PySide2.QtCore.QSize, matchPolicy: Q... method __call__ (line 151) | def __call__(self, size: PySide2.QtCore.QSizeF, units: QPageSize.U... method __call__ (line 153) | def __call__(self, windowsId: int) -> QPageSize.PageSizeId: ... method __init__ (line 155) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 158) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 161) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_key_overloads (line 163) | class _add_QPageSize_key_overloads: class StaticOverloads (line 170) | class StaticOverloads: class key (line 171) | class key: method __call__ (line 173) | def __call__(pageSizeId: QPageSize.PageSizeId) -> str: ... class InstanceOverloads (line 175) | class InstanceOverloads: class key (line 176) | class key: method __call__ (line 178) | def __call__(self) -> str: ... method __call__ (line 180) | def __call__(self, pageSizeId: QPageSize.PageSizeId) -> str: ... method __init__ (line 182) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 185) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 188) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_name_overloads (line 190) | class _add_QPageSize_name_overloads: class StaticOverloads (line 197) | class StaticOverloads: class name (line 198) | class name: method __call__ (line 200) | def __call__(pageSizeId: QPageSize.PageSizeId) -> str: ... class InstanceOverloads (line 202) | class InstanceOverloads: class name (line 203) | class name: method __call__ (line 205) | def __call__(self) -> str: ... method __call__ (line 207) | def __call__(self, pageSizeId: QPageSize.PageSizeId) -> str: ... method __init__ (line 209) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 212) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 215) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_size_overloads (line 217) | class _add_QPageSize_size_overloads: class StaticOverloads (line 224) | class StaticOverloads: class size (line 225) | class size: method __call__ (line 227) | def __call__(pageSizeId: QPageSize.PageSizeId, units: QPageSize.Un... class InstanceOverloads (line 229) | class InstanceOverloads: class size (line 230) | class size: method __call__ (line 232) | def __call__(self, units: QPageSize.Unit) -> PySide2.QtCore.QSizeF... method __call__ (line 234) | def __call__(self, pageSizeId: QPageSize.PageSizeId, units: QPageS... method __init__ (line 236) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 239) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 242) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_sizePixels_overloads (line 244) | class _add_QPageSize_sizePixels_overloads: class StaticOverloads (line 251) | class StaticOverloads: class sizePixels (line 252) | class sizePixels: method __call__ (line 254) | def __call__(pageSizeId: QPageSize.PageSizeId, resolution: int) ->... class InstanceOverloads (line 256) | class InstanceOverloads: class sizePixels (line 257) | class sizePixels: method __call__ (line 259) | def __call__(self, resolution: int) -> PySide2.QtCore.QSize: ... method __call__ (line 261) | def __call__(self, pageSizeId: QPageSize.PageSizeId, resolution: i... method __init__ (line 263) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 266) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 269) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_sizePoints_overloads (line 271) | class _add_QPageSize_sizePoints_overloads: class StaticOverloads (line 278) | class StaticOverloads: class sizePoints (line 279) | class sizePoints: method __call__ (line 281) | def __call__(pageSizeId: QPageSize.PageSizeId) -> PySide2.QtCore.Q... class InstanceOverloads (line 283) | class InstanceOverloads: class sizePoints (line 284) | class sizePoints: method __call__ (line 286) | def __call__(self) -> PySide2.QtCore.QSize: ... method __call__ (line 288) | def __call__(self, pageSizeId: QPageSize.PageSizeId) -> PySide2.Qt... method __init__ (line 290) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 293) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 296) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_windowsId_overloads (line 298) | class _add_QPageSize_windowsId_overloads: class StaticOverloads (line 305) | class StaticOverloads: class windowsId (line 306) | class windowsId: method __call__ (line 308) | def __call__(pageSizeId: QPageSize.PageSizeId) -> int: ... class InstanceOverloads (line 310) | class InstanceOverloads: class windowsId (line 311) | class windowsId: method __call__ (line 313) | def __call__(self) -> int: ... method __call__ (line 315) | def __call__(self, pageSizeId: QPageSize.PageSizeId) -> int: ... method __init__ (line 317) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 320) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 323) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPixmapCache_find_overloads (line 325) | class _add_QPixmapCache_find_overloads: class StaticOverloads (line 332) | class StaticOverloads: class find (line 333) | class find: method __call__ (line 336) | def __call__(key: QPixmapCache.Key, pixmap: QPixmap) -> bool: ... method __call__ (line 339) | def __call__(key: str) -> QPixmap: ... method __call__ (line 342) | def __call__(key: str, pixmap: QPixmap) -> bool: ... class InstanceOverloads (line 344) | class InstanceOverloads: class find (line 345) | class find: method __call__ (line 347) | def __call__(self, arg__1: QPixmapCache.Key) -> None: ... method __call__ (line 349) | def __call__(self, key: QPixmapCache.Key, pixmap: QPixmap) -> bool... method __call__ (line 351) | def __call__(self, key: str) -> QPixmap: ... method __call__ (line 353) | def __call__(self, key: str, pixmap: QPixmap) -> bool: ... method __init__ (line 355) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 358) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 361) | def __get__(self, object: QPixmapCache, owner: typing.Any) -> Instance... class QAbstractOpenGLFunctions (line 363) | class QAbstractOpenGLFunctions(shiboken2.Object): method __init__ (line 364) | def __init__(self) -> None: ... method initializeOpenGLFunctions (line 365) | def initializeOpenGLFunctions(self) -> bool: ... method isInitialized (line 366) | def isInitialized(self) -> bool: ... method owningContext (line 367) | def owningContext(self) -> QOpenGLContext: ... method setOwningContext (line 368) | def setOwningContext(self, context: QOpenGLContext) -> None: ... class QAbstractTextDocumentLayout (line 370) | class QAbstractTextDocumentLayout(PySide2.QtCore.QObject): class PaintContext (line 371) | class PaintContext(shiboken2.Object): method __init__ (line 376) | def __init__(self, PaintContext: QAbstractTextDocumentLayout.PaintCo... method __init__ (line 378) | def __init__(self) -> None: ... method __copy__ (line 379) | def __copy__(self) -> None: ... class Selection (line 381) | class Selection(shiboken2.Object): method __init__ (line 385) | def __init__(self, Selection: QAbstractTextDocumentLayout.Selection)... method __init__ (line 387) | def __init__(self) -> None: ... method __copy__ (line 388) | def __copy__(self) -> None: ... method __init__ (line 394) | def __init__(self, doc: QTextDocument, destroyed: typing.Callable = ..... method anchorAt (line 395) | def anchorAt(self, pos: PySide2.QtCore.QPointF) -> str: ... method blockBoundingRect (line 396) | def blockBoundingRect(self, block: QTextBlock) -> PySide2.QtCore.QRect... method blockWithMarkerAt (line 397) | def blockWithMarkerAt(self, pos: PySide2.QtCore.QPointF) -> QTextBlock... method document (line 398) | def document(self) -> QTextDocument: ... method documentChanged (line 399) | def documentChanged(self, from_: int, charsRemoved: int, charsAdded: i... method documentSize (line 400) | def documentSize(self) -> PySide2.QtCore.QSizeF: ... method draw (line 401) | def draw(self, painter: QPainter, context: QAbstractTextDocumentLayout... method drawInlineObject (line 402) | def drawInlineObject(self, painter: QPainter, rect: PySide2.QtCore.QRe... method format (line 403) | def format(self, pos: int) -> QTextCharFormat: ... method formatAt (line 404) | def formatAt(self, pos: PySide2.QtCore.QPointF) -> QTextFormat: ... method formatIndex (line 405) | def formatIndex(self, pos: int) -> int: ... method frameBoundingRect (line 406) | def frameBoundingRect(self, frame: QTextFrame) -> PySide2.QtCore.QRect... method handlerForObject (line 407) | def handlerForObject(self, objectType: int) -> QTextObjectInterface: ... method hitTest (line 408) | def hitTest(self, point: PySide2.QtCore.QPointF, accuracy: PySide2.QtC... method imageAt (line 409) | def imageAt(self, pos: PySide2.QtCore.QPointF) -> str: ... method pageCount (line 410) | def pageCount(self) -> int: ... method paintDevice (line 411) | def paintDevice(self) -> QPaintDevice: ... method positionInlineObject (line 412) | def positionInlineObject(self, item: QTextInlineObject, posInDocument:... method registerHandler (line 413) | def registerHandler(self, objectType: int, component: PySide2.QtCore.Q... method resizeInlineObject (line 414) | def resizeInlineObject(self, item: QTextInlineObject, posInDocument: i... method setPaintDevice (line 415) | def setPaintDevice(self, device: QPaintDevice) -> None: ... method unregisterHandler (line 416) | def unregisterHandler(self, objectType: int, component: PySide2.QtCore... class QAccessible (line 418) | class QAccessible(shiboken2.Object): class Event (line 419) | class Event: method __init__ (line 492) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 493) | def __add__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __and__ (line 494) | def __and__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __bool__ (line 495) | def __bool__(self) -> bool: ... method __eq__ (line 496) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 497) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 498) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 499) | def __hash__(self) -> int: ... method __index__ (line 500) | def __index__(self) -> int: ... method __int__ (line 501) | def __int__(self) -> int: ... method __le__ (line 502) | def __le__(self, other: object) -> bool: ... method __lt__ (line 503) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 504) | def __mul__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __ne__ (line 505) | def __ne__(self, other: object) -> bool: ... method __or__ (line 506) | def __or__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __pos__ (line 507) | def __pos__(self): ... method __radd__ (line 508) | def __radd__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __rand__ (line 509) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __rmul__ (line 510) | def __rmul__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __ror__ (line 511) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __rsub__ (line 512) | def __rsub__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __rxor__ (line 513) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __sub__ (line 514) | def __sub__(self, other: typing.SupportsInt) -> QAccessible.Event: ... method __xor__ (line 515) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.Event: ... class InterfaceType (line 517) | class InterfaceType: method __init__ (line 528) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 529) | def __add__(self, other: typing.SupportsInt) -> QAccessible.Interfac... method __and__ (line 530) | def __and__(self, other: typing.SupportsInt) -> QAccessible.Interfac... method __bool__ (line 531) | def __bool__(self) -> bool: ... method __eq__ (line 532) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 533) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 534) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 535) | def __hash__(self) -> int: ... method __index__ (line 536) | def __index__(self) -> int: ... method __int__ (line 537) | def __int__(self) -> int: ... method __le__ (line 538) | def __le__(self, other: object) -> bool: ... method __lt__ (line 539) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 540) | def __mul__(self, other: typing.SupportsInt) -> QAccessible.Interfac... method __ne__ (line 541) | def __ne__(self, other: object) -> bool: ... method __or__ (line 542) | def __or__(self, other: typing.SupportsInt) -> QAccessible.Interface... method __pos__ (line 543) | def __pos__(self): ... method __radd__ (line 544) | def __radd__(self, other: typing.SupportsInt) -> QAccessible.Interfa... method __rand__ (line 545) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.Interfa... method __rmul__ (line 546) | def __rmul__(self, other: typing.SupportsInt) -> QAccessible.Interfa... method __ror__ (line 547) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.Interfac... method __rsub__ (line 548) | def __rsub__(self, other: typing.SupportsInt) -> QAccessible.Interfa... method __rxor__ (line 549) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.Interfa... method __sub__ (line 550) | def __sub__(self, other: typing.SupportsInt) -> QAccessible.Interfac... method __xor__ (line 551) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.Interfac... class Relation (line 553) | class Relation: method __init__ (line 555) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 556) | def __and__(self, other: typing.SupportsInt) -> QAccessible.Relation... method __bool__ (line 557) | def __bool__(self) -> bool: ... method __eq__ (line 558) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 559) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 560) | def __gt__(self, other: object) -> bool: ... method __index__ (line 561) | def __index__(self) -> int: ... method __int__ (line 562) | def __int__(self) -> int: ... method __invert__ (line 563) | def __invert__(self) -> QAccessible.Relation: ... method __le__ (line 564) | def __le__(self, other: object) -> bool: ... method __lt__ (line 565) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 566) | def __ne__(self, other: object) -> bool: ... method __or__ (line 567) | def __or__(self, other: typing.SupportsInt) -> QAccessible.Relation:... method __rand__ (line 568) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.Relatio... method __ror__ (line 569) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.Relation... method __rxor__ (line 570) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.Relatio... method __xor__ (line 571) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.Relation... class RelationFlag (line 573) | class RelationFlag: method __init__ (line 582) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 583) | def __and__(self, other: typing.SupportsInt) -> QAccessible.Relation... method __bool__ (line 584) | def __bool__(self) -> bool: ... method __eq__ (line 585) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 586) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 587) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 588) | def __hash__(self) -> int: ... method __index__ (line 589) | def __index__(self) -> int: ... method __int__ (line 590) | def __int__(self) -> int: ... method __invert__ (line 591) | def __invert__(self) -> QAccessible.Relation: ... method __le__ (line 592) | def __le__(self, other: object) -> bool: ... method __lt__ (line 593) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 594) | def __ne__(self, other: object) -> bool: ... method __or__ (line 595) | def __or__(self, other: typing.SupportsInt) -> QAccessible.Relation:... method __rand__ (line 596) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.Relatio... method __ror__ (line 597) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.Relation... method __rxor__ (line 598) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.Relatio... method __xor__ (line 599) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.Relation... class Role (line 601) | class Role: method __init__ (line 682) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 683) | def __add__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __and__ (line 684) | def __and__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __bool__ (line 685) | def __bool__(self) -> bool: ... method __eq__ (line 686) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 687) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 688) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 689) | def __hash__(self) -> int: ... method __index__ (line 690) | def __index__(self) -> int: ... method __int__ (line 691) | def __int__(self) -> int: ... method __le__ (line 692) | def __le__(self, other: object) -> bool: ... method __lt__ (line 693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 694) | def __mul__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __ne__ (line 695) | def __ne__(self, other: object) -> bool: ... method __or__ (line 696) | def __or__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __pos__ (line 697) | def __pos__(self): ... method __radd__ (line 698) | def __radd__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __rand__ (line 699) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __rmul__ (line 700) | def __rmul__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __ror__ (line 701) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __rsub__ (line 702) | def __rsub__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __rxor__ (line 703) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __sub__ (line 704) | def __sub__(self, other: typing.SupportsInt) -> QAccessible.Role: ... method __xor__ (line 705) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.Role: ... class State (line 707) | class State(shiboken2.Object): method __init__ (line 746) | def __init__(self, State: QAccessible.State) -> None: ... method __init__ (line 748) | def __init__(self) -> None: ... method __copy__ (line 749) | def __copy__(self) -> None: ... method __eq__ (line 750) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 751) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 752) | def __gt__(self, other: object) -> bool: ... method __le__ (line 753) | def __le__(self, other: object) -> bool: ... method __lt__ (line 754) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 755) | def __ne__(self, other: object) -> bool: ... class Text (line 757) | class Text: method __init__ (line 768) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 769) | def __add__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __and__ (line 770) | def __and__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __bool__ (line 771) | def __bool__(self) -> bool: ... method __eq__ (line 772) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 773) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 774) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 775) | def __hash__(self) -> int: ... method __index__ (line 776) | def __index__(self) -> int: ... method __int__ (line 777) | def __int__(self) -> int: ... method __le__ (line 778) | def __le__(self, other: object) -> bool: ... method __lt__ (line 779) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 780) | def __mul__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __ne__ (line 781) | def __ne__(self, other: object) -> bool: ... method __or__ (line 782) | def __or__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __pos__ (line 783) | def __pos__(self): ... method __radd__ (line 784) | def __radd__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __rand__ (line 785) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __rmul__ (line 786) | def __rmul__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __ror__ (line 787) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __rsub__ (line 788) | def __rsub__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __rxor__ (line 789) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __sub__ (line 790) | def __sub__(self, other: typing.SupportsInt) -> QAccessible.Text: ... method __xor__ (line 791) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.Text: ... class TextBoundaryType (line 793) | class TextBoundaryType: method __init__ (line 803) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 804) | def __add__(self, other: typing.SupportsInt) -> QAccessible.TextBoun... method __and__ (line 805) | def __and__(self, other: typing.SupportsInt) -> QAccessible.TextBoun... method __bool__ (line 806) | def __bool__(self) -> bool: ... method __eq__ (line 807) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 808) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 809) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 810) | def __hash__(self) -> int: ... method __index__ (line 811) | def __index__(self) -> int: ... method __int__ (line 812) | def __int__(self) -> int: ... method __le__ (line 813) | def __le__(self, other: object) -> bool: ... method __lt__ (line 814) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 815) | def __mul__(self, other: typing.SupportsInt) -> QAccessible.TextBoun... method __ne__ (line 816) | def __ne__(self, other: object) -> bool: ... method __or__ (line 817) | def __or__(self, other: typing.SupportsInt) -> QAccessible.TextBound... method __pos__ (line 818) | def __pos__(self): ... method __radd__ (line 819) | def __radd__(self, other: typing.SupportsInt) -> QAccessible.TextBou... method __rand__ (line 820) | def __rand__(self, other: typing.SupportsInt) -> QAccessible.TextBou... method __rmul__ (line 821) | def __rmul__(self, other: typing.SupportsInt) -> QAccessible.TextBou... method __ror__ (line 822) | def __ror__(self, other: typing.SupportsInt) -> QAccessible.TextBoun... method __rsub__ (line 823) | def __rsub__(self, other: typing.SupportsInt) -> QAccessible.TextBou... method __rxor__ (line 824) | def __rxor__(self, other: typing.SupportsInt) -> QAccessible.TextBou... method __sub__ (line 825) | def __sub__(self, other: typing.SupportsInt) -> QAccessible.TextBoun... method __xor__ (line 826) | def __xor__(self, other: typing.SupportsInt) -> QAccessible.TextBoun... method __init__ (line 999) | def __init__(cls, *args, **kwargs) -> None: ... method accessibleInterface (line 1001) | def accessibleInterface(uniqueId: int) -> QAccessibleInterface: ... method cleanup (line 1003) | def cleanup() -> None: ... method deleteAccessibleInterface (line 1005) | def deleteAccessibleInterface(uniqueId: int) -> None: ... method isActive (line 1007) | def isActive() -> bool: ... method qAccessibleTextBoundaryHelper (line 1009) | def qAccessibleTextBoundaryHelper(cursor: QTextCursor, boundaryType: Q... method queryAccessibleInterface (line 1011) | def queryAccessibleInterface(arg__1: PySide2.QtCore.QObject) -> QAcces... method registerAccessibleInterface (line 1013) | def registerAccessibleInterface(iface: QAccessibleInterface) -> int: ... method setActive (line 1015) | def setActive(active: bool) -> None: ... method setRootObject (line 1017) | def setRootObject(object: PySide2.QtCore.QObject) -> None: ... method uniqueId (line 1019) | def uniqueId(iface: QAccessibleInterface) -> int: ... method updateAccessibility (line 1021) | def updateAccessibility(event: QAccessibleEvent) -> None: ... method __copy__ (line 1022) | def __copy__(self) -> None: ... class QAccessibleEditableTextInterface (line 1024) | class QAccessibleEditableTextInterface(shiboken2.Object): method __init__ (line 1025) | def __init__(self) -> None: ... method deleteText (line 1026) | def deleteText(self, startOffset: int, endOffset: int) -> None: ... method insertText (line 1027) | def insertText(self, offset: int, text: str) -> None: ... method replaceText (line 1028) | def replaceText(self, startOffset: int, endOffset: int, text: str) -> ... class QAccessibleEvent (line 1030) | class QAccessibleEvent(shiboken2.Object): method __init__ (line 1032) | def __init__(self, obj: PySide2.QtCore.QObject, typ: QAccessible.Event... method __init__ (line 1034) | def __init__(self, iface: QAccessibleInterface, typ: QAccessible.Event... method accessibleInterface (line 1035) | def accessibleInterface(self) -> QAccessibleInterface: ... method child (line 1036) | def child(self) -> int: ... method object (line 1037) | def object(self) -> PySide2.QtCore.QObject: ... method setChild (line 1038) | def setChild(self, chld: int) -> None: ... method type (line 1039) | def type(self) -> QAccessible.Event: ... method uniqueId (line 1040) | def uniqueId(self) -> int: ... class QAccessibleInterface (line 1042) | class QAccessibleInterface(shiboken2.Object): method __init__ (line 1043) | def __init__(self) -> None: ... method backgroundColor (line 1044) | def backgroundColor(self) -> QColor: ... method child (line 1045) | def child(self, index: int) -> QAccessibleInterface: ... method childAt (line 1046) | def childAt(self, x: int, y: int) -> QAccessibleInterface: ... method childCount (line 1047) | def childCount(self) -> int: ... method editableTextInterface (line 1048) | def editableTextInterface(self) -> QAccessibleEditableTextInterface: ... method focusChild (line 1049) | def focusChild(self) -> QAccessibleInterface: ... method foregroundColor (line 1050) | def foregroundColor(self) -> QColor: ... method indexOfChild (line 1051) | def indexOfChild(self, arg__1: QAccessibleInterface) -> int: ... method interface_cast (line 1052) | def interface_cast(self, arg__1: QAccessible.InterfaceType) -> int: ... method isValid (line 1053) | def isValid(self) -> bool: ... method object (line 1054) | def object(self) -> PySide2.QtCore.QObject: ... method parent (line 1055) | def parent(self) -> QAccessibleInterface: ... method rect (line 1056) | def rect(self) -> PySide2.QtCore.QRect: ... method relations (line 1057) | def relations(self, match: QAccessible.Relation | QAccessible.Relation... method role (line 1058) | def role(self) -> QAccessible.Role: ... method setText (line 1059) | def setText(self, t: QAccessible.Text, text: str) -> None: ... method state (line 1060) | def state(self) -> QAccessible.State: ... method tableCellInterface (line 1061) | def tableCellInterface(self) -> QAccessibleTableCellInterface: ... method text (line 1062) | def text(self, t: QAccessible.Text) -> str: ... method textInterface (line 1063) | def textInterface(self) -> QAccessibleTextInterface: ... method valueInterface (line 1064) | def valueInterface(self) -> QAccessibleValueInterface: ... method virtual_hook (line 1065) | def virtual_hook(self, id: int, data: int) -> None: ... method window (line 1066) | def window(self) -> QWindow: ... class QAccessibleObject (line 1068) | class QAccessibleObject(QAccessibleInterface): method __init__ (line 1069) | def __init__(self, object: PySide2.QtCore.QObject) -> None: ... method childAt (line 1070) | def childAt(self, x: int, y: int) -> QAccessibleInterface: ... method isValid (line 1071) | def isValid(self) -> bool: ... method object (line 1072) | def object(self) -> PySide2.QtCore.QObject: ... method rect (line 1073) | def rect(self) -> PySide2.QtCore.QRect: ... method setText (line 1074) | def setText(self, t: QAccessible.Text, text: str) -> None: ... class QAccessibleStateChangeEvent (line 1076) | class QAccessibleStateChangeEvent(QAccessibleEvent): method __init__ (line 1078) | def __init__(self, obj: PySide2.QtCore.QObject, state: QAccessible.Sta... method __init__ (line 1080) | def __init__(self, iface: QAccessibleInterface, state: QAccessible.Sta... method changedStates (line 1081) | def changedStates(self) -> QAccessible.State: ... class QAccessibleTableCellInterface (line 1083) | class QAccessibleTableCellInterface(shiboken2.Object): method __init__ (line 1084) | def __init__(self) -> None: ... method columnExtent (line 1085) | def columnExtent(self) -> int: ... method columnHeaderCells (line 1086) | def columnHeaderCells(self) -> list[QAccessibleInterface]: ... method columnIndex (line 1087) | def columnIndex(self) -> int: ... method isSelected (line 1088) | def isSelected(self) -> bool: ... method rowExtent (line 1089) | def rowExtent(self) -> int: ... method rowHeaderCells (line 1090) | def rowHeaderCells(self) -> list[QAccessibleInterface]: ... method rowIndex (line 1091) | def rowIndex(self) -> int: ... method table (line 1092) | def table(self) -> QAccessibleInterface: ... class QAccessibleTableModelChangeEvent (line 1094) | class QAccessibleTableModelChangeEvent(QAccessibleEvent): class ModelChangeType (line 1095) | class ModelChangeType: method __init__ (line 1105) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1106) | def __add__(self, other: typing.SupportsInt) -> QAccessibleTableMode... method __and__ (line 1107) | def __and__(self, other: typing.SupportsInt) -> QAccessibleTableMode... method __bool__ (line 1108) | def __bool__(self) -> bool: ... method __eq__ (line 1109) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1110) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1111) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1112) | def __hash__(self) -> int: ... method __index__ (line 1113) | def __index__(self) -> int: ... method __int__ (line 1114) | def __int__(self) -> int: ... method __le__ (line 1115) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1116) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1117) | def __mul__(self, other: typing.SupportsInt) -> QAccessibleTableMode... method __ne__ (line 1118) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1119) | def __or__(self, other: typing.SupportsInt) -> QAccessibleTableModel... method __pos__ (line 1120) | def __pos__(self): ... method __radd__ (line 1121) | def __radd__(self, other: typing.SupportsInt) -> QAccessibleTableMod... method __rand__ (line 1122) | def __rand__(self, other: typing.SupportsInt) -> QAccessibleTableMod... method __rmul__ (line 1123) | def __rmul__(self, other: typing.SupportsInt) -> QAccessibleTableMod... method __ror__ (line 1124) | def __ror__(self, other: typing.SupportsInt) -> QAccessibleTableMode... method __rsub__ (line 1125) | def __rsub__(self, other: typing.SupportsInt) -> QAccessibleTableMod... method __rxor__ (line 1126) | def __rxor__(self, other: typing.SupportsInt) -> QAccessibleTableMod... method __sub__ (line 1127) | def __sub__(self, other: typing.SupportsInt) -> QAccessibleTableMode... method __xor__ (line 1128) | def __xor__(self, other: typing.SupportsInt) -> QAccessibleTableMode... method __init__ (line 1136) | def __init__(self, obj: PySide2.QtCore.QObject, changeType: QAccessibl... method __init__ (line 1138) | def __init__(self, iface: QAccessibleInterface, changeType: QAccessibl... method firstColumn (line 1139) | def firstColumn(self) -> int: ... method firstRow (line 1140) | def firstRow(self) -> int: ... method lastColumn (line 1141) | def lastColumn(self) -> int: ... method lastRow (line 1142) | def lastRow(self) -> int: ... method modelChangeType (line 1143) | def modelChangeType(self) -> QAccessibleTableModelChangeEvent.ModelCha... method setFirstColumn (line 1144) | def setFirstColumn(self, col: int) -> None: ... method setFirstRow (line 1145) | def setFirstRow(self, row: int) -> None: ... method setLastColumn (line 1146) | def setLastColumn(self, col: int) -> None: ... method setLastRow (line 1147) | def setLastRow(self, row: int) -> None: ... method setModelChangeType (line 1148) | def setModelChangeType(self, changeType: QAccessibleTableModelChangeEv... class QAccessibleTextCursorEvent (line 1150) | class QAccessibleTextCursorEvent(QAccessibleEvent): method __init__ (line 1152) | def __init__(self, obj: PySide2.QtCore.QObject, cursorPos: int) -> Non... method __init__ (line 1154) | def __init__(self, iface: QAccessibleInterface, cursorPos: int) -> Non... method cursorPosition (line 1155) | def cursorPosition(self) -> int: ... method setCursorPosition (line 1156) | def setCursorPosition(self, position: int) -> None: ... class QAccessibleTextInsertEvent (line 1158) | class QAccessibleTextInsertEvent(QAccessibleTextCursorEvent): method __init__ (line 1160) | def __init__(self, obj: PySide2.QtCore.QObject, position: int, text: s... method __init__ (line 1162) | def __init__(self, iface: QAccessibleInterface, position: int, text: s... method changePosition (line 1163) | def changePosition(self) -> int: ... method textInserted (line 1164) | def textInserted(self) -> str: ... class QAccessibleTextInterface (line 1166) | class QAccessibleTextInterface(shiboken2.Object): method __init__ (line 1167) | def __init__(self) -> None: ... method addSelection (line 1168) | def addSelection(self, startOffset: int, endOffset: int) -> None: ... method attributes (line 1169) | def attributes(self, offset: int) -> tuple[str, int, int]: ... method characterCount (line 1170) | def characterCount(self) -> int: ... method characterRect (line 1171) | def characterRect(self, offset: int) -> PySide2.QtCore.QRect: ... method cursorPosition (line 1172) | def cursorPosition(self) -> int: ... method offsetAtPoint (line 1173) | def offsetAtPoint(self, point: PySide2.QtCore.QPoint) -> int: ... method removeSelection (line 1174) | def removeSelection(self, selectionIndex: int) -> None: ... method scrollToSubstring (line 1175) | def scrollToSubstring(self, startIndex: int, endIndex: int) -> None: ... method selection (line 1176) | def selection(self, selectionIndex: int) -> tuple[int, int]: ... method selectionCount (line 1177) | def selectionCount(self) -> int: ... method setCursorPosition (line 1178) | def setCursorPosition(self, position: int) -> None: ... method setSelection (line 1179) | def setSelection(self, selectionIndex: int, startOffset: int, endOffse... method text (line 1180) | def text(self, startOffset: int, endOffset: int) -> str: ... method textAfterOffset (line 1181) | def textAfterOffset(self, offset: int, boundaryType: QAccessible.TextB... method textAtOffset (line 1182) | def textAtOffset(self, offset: int, boundaryType: QAccessible.TextBoun... method textBeforeOffset (line 1183) | def textBeforeOffset(self, offset: int, boundaryType: QAccessible.Text... class QAccessibleTextRemoveEvent (line 1185) | class QAccessibleTextRemoveEvent(QAccessibleTextCursorEvent): method __init__ (line 1187) | def __init__(self, obj: PySide2.QtCore.QObject, position: int, text: s... method __init__ (line 1189) | def __init__(self, iface: QAccessibleInterface, position: int, text: s... method changePosition (line 1190) | def changePosition(self) -> int: ... method textRemoved (line 1191) | def textRemoved(self) -> str: ... class QAccessibleTextSelectionEvent (line 1193) | class QAccessibleTextSelectionEvent(QAccessibleTextCursorEvent): method __init__ (line 1195) | def __init__(self, obj: PySide2.QtCore.QObject, start: int, end: int) ... method __init__ (line 1197) | def __init__(self, iface: QAccessibleInterface, start: int, end: int) ... method selectionEnd (line 1198) | def selectionEnd(self) -> int: ... method selectionStart (line 1199) | def selectionStart(self) -> int: ... method setSelection (line 1200) | def setSelection(self, start: int, end: int) -> None: ... class QAccessibleTextUpdateEvent (line 1202) | class QAccessibleTextUpdateEvent(QAccessibleTextCursorEvent): method __init__ (line 1204) | def __init__(self, obj: PySide2.QtCore.QObject, position: int, oldText... method __init__ (line 1206) | def __init__(self, iface: QAccessibleInterface, position: int, oldText... method changePosition (line 1207) | def changePosition(self) -> int: ... method textInserted (line 1208) | def textInserted(self) -> str: ... method textRemoved (line 1209) | def textRemoved(self) -> str: ... class QAccessibleValueChangeEvent (line 1211) | class QAccessibleValueChangeEvent(QAccessibleEvent): method __init__ (line 1213) | def __init__(self, obj: PySide2.QtCore.QObject, val: typing.Any) -> No... method __init__ (line 1215) | def __init__(self, iface: QAccessibleInterface, val: typing.Any) -> No... method setValue (line 1216) | def setValue(self, val: typing.Any) -> None: ... method value (line 1217) | def value(self) -> typing.Any: ... class QAccessibleValueInterface (line 1219) | class QAccessibleValueInterface(shiboken2.Object): method __init__ (line 1220) | def __init__(self) -> None: ... method currentValue (line 1221) | def currentValue(self) -> typing.Any: ... method maximumValue (line 1222) | def maximumValue(self) -> typing.Any: ... method minimumStepSize (line 1223) | def minimumStepSize(self) -> typing.Any: ... method minimumValue (line 1224) | def minimumValue(self) -> typing.Any: ... method setCurrentValue (line 1225) | def setCurrentValue(self, value: typing.Any) -> None: ... class QActionEvent (line 1227) | class QActionEvent(PySide2.QtCore.QEvent): method __init__ (line 1229) | def __init__(cls, *args, **kwargs) -> None: ... class QBackingStore (line 1231) | class QBackingStore(shiboken2.Object): method __init__ (line 1232) | def __init__(self, window: QWindow) -> None: ... method beginPaint (line 1233) | def beginPaint(self, arg__1: QRegion) -> None: ... method endPaint (line 1234) | def endPaint(self) -> None: ... method flush (line 1235) | def flush(self, region: QRegion, window: QWindow | None = ..., offset:... method hasStaticContents (line 1236) | def hasStaticContents(self) -> bool: ... method paintDevice (line 1237) | def paintDevice(self) -> QPaintDevice: ... method resize (line 1238) | def resize(self, size: PySide2.QtCore.QSize) -> None: ... method scroll (line 1239) | def scroll(self, area: QRegion, dx: int, dy: int) -> bool: ... method setStaticContents (line 1240) | def setStaticContents(self, region: QRegion) -> None: ... method size (line 1241) | def size(self) -> PySide2.QtCore.QSize: ... method staticContents (line 1242) | def staticContents(self) -> QRegion: ... method window (line 1243) | def window(self) -> QWindow: ... class QBitmap (line 1245) | class QBitmap(QPixmap): method __init__ (line 1247) | def __init__(self, w: int, h: int) -> None: ... method __init__ (line 1249) | def __init__(self, fileName: str, format: bytes | None = ...) -> None:... method __init__ (line 1251) | def __init__(self, other: QBitmap) -> None: ... method __init__ (line 1253) | def __init__(self, arg__1: PySide2.QtCore.QSize) -> None: ... method __init__ (line 1255) | def __init__(self, arg__1: QPixmap) -> None: ... method __init__ (line 1257) | def __init__(self) -> None: ... method clear (line 1258) | def clear(self) -> None: ... method fromData (line 1260) | def fromData(size: PySide2.QtCore.QSize, bits: bytes, monoFormat: QIma... method fromImage (line 1263) | def fromImage(image: QImage, flags: PySide2.QtCore.Qt.ImageConversionF... method fromImage (line 1266) | def fromImage(image: QImage, flags: PySide2.QtCore.Qt.ImageConversionF... method swap (line 1268) | def swap(self, other: QBitmap) -> None: ... method swap (line 1270) | def swap(self, other: QPixmap) -> None: ... method transformed (line 1272) | def transformed(self, arg__1: QMatrix, mode: PySide2.QtCore.Qt.Transfo... method transformed (line 1274) | def transformed(self, matrix: QTransform) -> QBitmap: ... method transformed (line 1276) | def transformed(self, arg__1: QMatrix) -> QBitmap: ... # type: ignore... method __bool__ (line 1277) | def __bool__(self) -> bool: ... method __copy__ (line 1278) | def __copy__(self) -> None: ... class QBrush (line 1280) | class QBrush(shiboken2.Object): method __init__ (line 1282) | def __init__(self, color: PySide2.QtCore.Qt.GlobalColor, pixmap: QPixm... method __init__ (line 1284) | def __init__(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int... method __init__ (line 1286) | def __init__(self, color: PySide2.QtCore.Qt.GlobalColor, bs: PySide2.Q... method __init__ (line 1288) | def __init__(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int... method __init__ (line 1290) | def __init__(self, pixmap: QPixmap) -> None: ... method __init__ (line 1292) | def __init__(self, image: QImage) -> None: ... method __init__ (line 1294) | def __init__(self, gradient: QGradient) -> None: ... method __init__ (line 1296) | def __init__(self, bs: PySide2.QtCore.Qt.BrushStyle) -> None: ... method __init__ (line 1298) | def __init__(self, brush: QBrush | QColor | PySide2.QtCore.Qt.GlobalCo... method __init__ (line 1300) | def __init__(self) -> None: ... method color (line 1301) | def color(self) -> QColor: ... method gradient (line 1302) | def gradient(self) -> QGradient: ... method isOpaque (line 1303) | def isOpaque(self) -> bool: ... method matrix (line 1304) | def matrix(self) -> QMatrix: ... method setColor (line 1306) | def setColor(self, color: PySide2.QtCore.Qt.GlobalColor) -> None: ... method setColor (line 1308) | def setColor(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int... method setMatrix (line 1309) | def setMatrix(self, mat: QMatrix) -> None: ... method setStyle (line 1310) | def setStyle(self, arg__1: PySide2.QtCore.Qt.BrushStyle) -> None: ... method setTexture (line 1311) | def setTexture(self, pixmap: QPixmap) -> None: ... method setTextureImage (line 1312) | def setTextureImage(self, image: QImage) -> None: ... method setTransform (line 1313) | def setTransform(self, arg__1: QTransform) -> None: ... method style (line 1314) | def style(self) -> PySide2.QtCore.Qt.BrushStyle: ... method swap (line 1315) | def swap(self, other: QBrush | QColor | PySide2.QtCore.Qt.GlobalColor ... method texture (line 1316) | def texture(self) -> QPixmap: ... method textureImage (line 1317) | def textureImage(self) -> QImage: ... method transform (line 1318) | def transform(self) -> QTransform: ... method __copy__ (line 1319) | def __copy__(self) -> None: ... method __eq__ (line 1320) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1321) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1322) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1323) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1324) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 1325) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1326) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1327) | def __rlshift__(self, other): ... method __rrshift__ (line 1328) | def __rrshift__(self, other): ... method __rshift__ (line 1329) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QClipboard (line 1331) | class QClipboard(PySide2.QtCore.QObject): class Mode (line 1332) | class Mode: method __init__ (line 1340) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1341) | def __add__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __and__ (line 1342) | def __and__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __bool__ (line 1343) | def __bool__(self) -> bool: ... method __eq__ (line 1344) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1345) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1346) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1347) | def __hash__(self) -> int: ... method __index__ (line 1348) | def __index__(self) -> int: ... method __int__ (line 1349) | def __int__(self) -> int: ... method __le__ (line 1350) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1351) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1352) | def __mul__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __ne__ (line 1353) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1354) | def __or__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __pos__ (line 1355) | def __pos__(self): ... method __radd__ (line 1356) | def __radd__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __rand__ (line 1357) | def __rand__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __rmul__ (line 1358) | def __rmul__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __ror__ (line 1359) | def __ror__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __rsub__ (line 1360) | def __rsub__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __rxor__ (line 1361) | def __rxor__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __sub__ (line 1362) | def __sub__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __xor__ (line 1363) | def __xor__(self, other: typing.SupportsInt) -> QClipboard.Mode: ... method __init__ (line 1374) | def __init__(cls, *args, changed: typing.Callable = ..., dataChanged: ... method clear (line 1375) | def clear(self, mode: QClipboard.Mode = ...) -> None: ... method image (line 1376) | def image(self, mode: QClipboard.Mode = ...) -> QImage: ... method mimeData (line 1377) | def mimeData(self, mode: QClipboard.Mode = ...) -> PySide2.QtCore.QMim... method ownsClipboard (line 1378) | def ownsClipboard(self) -> bool: ... method ownsFindBuffer (line 1379) | def ownsFindBuffer(self) -> bool: ... method ownsSelection (line 1380) | def ownsSelection(self) -> bool: ... method pixmap (line 1381) | def pixmap(self, mode: QClipboard.Mode = ...) -> QPixmap: ... method setImage (line 1382) | def setImage(self, arg__1: QImage, mode: QClipboard.Mode = ...) -> Non... method setMimeData (line 1383) | def setMimeData(self, data: PySide2.QtCore.QMimeData, mode: QClipboard... method setPixmap (line 1384) | def setPixmap(self, arg__1: QPixmap, mode: QClipboard.Mode = ...) -> N... method setText (line 1385) | def setText(self, arg__1: str, mode: QClipboard.Mode = ...) -> None: ... method supportsFindBuffer (line 1386) | def supportsFindBuffer(self) -> bool: ... method supportsSelection (line 1387) | def supportsSelection(self) -> bool: ... method text (line 1389) | def text(self, subtype: str, mode: QClipboard.Mode = ...) -> str: ... method text (line 1391) | def text(self, mode: QClipboard.Mode = ...) -> str: ... class QCloseEvent (line 1393) | class QCloseEvent(PySide2.QtCore.QEvent): method __init__ (line 1394) | def __init__(self) -> None: ... class QColor (line 1396) | class QColor(shiboken2.Object): class NameFormat (line 1397) | class NameFormat: method __init__ (line 1403) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1404) | def __add__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __and__ (line 1405) | def __and__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __bool__ (line 1406) | def __bool__(self) -> bool: ... method __eq__ (line 1407) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1408) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1409) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1410) | def __hash__(self) -> int: ... method __index__ (line 1411) | def __index__(self) -> int: ... method __int__ (line 1412) | def __int__(self) -> int: ... method __le__ (line 1413) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1414) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1415) | def __mul__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __ne__ (line 1416) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1417) | def __or__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __pos__ (line 1418) | def __pos__(self): ... method __radd__ (line 1419) | def __radd__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __rand__ (line 1420) | def __rand__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __rmul__ (line 1421) | def __rmul__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __ror__ (line 1422) | def __ror__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __rsub__ (line 1423) | def __rsub__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __rxor__ (line 1424) | def __rxor__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __sub__ (line 1425) | def __sub__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... method __xor__ (line 1426) | def __xor__(self, other: typing.SupportsInt) -> QColor.NameFormat: ... class Spec (line 1428) | class Spec: method __init__ (line 1438) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1439) | def __add__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __and__ (line 1440) | def __and__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __bool__ (line 1441) | def __bool__(self) -> bool: ... method __eq__ (line 1442) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1443) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1444) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1445) | def __hash__(self) -> int: ... method __index__ (line 1446) | def __index__(self) -> int: ... method __int__ (line 1447) | def __int__(self) -> int: ... method __le__ (line 1448) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1449) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1450) | def __mul__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __ne__ (line 1451) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1452) | def __or__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __pos__ (line 1453) | def __pos__(self): ... method __radd__ (line 1454) | def __radd__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __rand__ (line 1455) | def __rand__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __rmul__ (line 1456) | def __rmul__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __ror__ (line 1457) | def __ror__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __rsub__ (line 1458) | def __rsub__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __rxor__ (line 1459) | def __rxor__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __sub__ (line 1460) | def __sub__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __xor__ (line 1461) | def __xor__(self, other: typing.SupportsInt) -> QColor.Spec: ... method __init__ (line 1471) | def __init__(self, spec: QColor.Spec, a1: int, a2: int, a3: int, a4: i... method __init__ (line 1473) | def __init__(self, r: int, g: int, b: int, a: int = ...) -> None: ... method __init__ (line 1475) | def __init__(self, rgb: int) -> None: ... method __init__ (line 1477) | def __init__(self, name: str) -> None: ... method __init__ (line 1479) | def __init__(self, color: PySide2.QtCore.Qt.GlobalColor) -> None: ... method __init__ (line 1481) | def __init__(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int... method __init__ (line 1483) | def __init__(self, arg__1: typing.Any) -> None: ... method __init__ (line 1485) | def __init__(self) -> None: ... method alpha (line 1486) | def alpha(self) -> int: ... method alphaF (line 1487) | def alphaF(self) -> float: ... method black (line 1488) | def black(self) -> int: ... method blackF (line 1489) | def blackF(self) -> float: ... method blue (line 1490) | def blue(self) -> int: ... method blueF (line 1491) | def blueF(self) -> float: ... method colorNames (line 1493) | def colorNames() -> list[str]: ... method convertTo (line 1494) | def convertTo(self, colorSpec: QColor.Spec) -> QColor: ... method cyan (line 1495) | def cyan(self) -> int: ... method cyanF (line 1496) | def cyanF(self) -> float: ... method dark (line 1497) | def dark(self, f: int = ...) -> QColor: ... method darker (line 1498) | def darker(self, f: int = ...) -> QColor: ... method fromCmyk (line 1500) | def fromCmyk(c: int, m: int, y: int, k: int, a: int = ...) -> QColor: ... method fromCmykF (line 1502) | def fromCmykF(c: float, m: float, y: float, k: float, a: float = ...) ... method fromHsl (line 1504) | def fromHsl(h: int, s: int, l: int, a: int = ...) -> QColor: ... method fromHslF (line 1506) | def fromHslF(h: float, s: float, l: float, a: float = ...) -> QColor: ... method fromHsv (line 1508) | def fromHsv(h: int, s: int, v: int, a: int = ...) -> QColor: ... method fromHsvF (line 1510) | def fromHsvF(h: float, s: float, v: float, a: float = ...) -> QColor: ... method fromRgb (line 1513) | def fromRgb(r: int, g: int, b: int, a: int = ...) -> QColor: ... method fromRgb (line 1516) | def fromRgb(rgb: int) -> QColor: ... method fromRgbF (line 1518) | def fromRgbF(r: float, g: float, b: float, a: float = ...) -> QColor: ... method fromRgba (line 1520) | def fromRgba(rgba: int) -> QColor: ... method fromRgba64 (line 1522) | def fromRgba64(r: int, g: int, b: int, a: int = ...) -> QColor: ... method getCmyk (line 1523) | def getCmyk(self) -> tuple[int, int, int, int, int]: ... method getCmykF (line 1524) | def getCmykF(self) -> tuple[float, float, float, float, float]: ... method getHsl (line 1525) | def getHsl(self) -> tuple[int, int, int, int]: ... method getHslF (line 1526) | def getHslF(self) -> tuple[float, float, float, float]: ... method getHsv (line 1527) | def getHsv(self) -> tuple[int, int, int, int]: ... method getHsvF (line 1528) | def getHsvF(self) -> tuple[float, float, float, float]: ... method getRgb (line 1529) | def getRgb(self) -> tuple[int, int, int, int]: ... method getRgbF (line 1530) | def getRgbF(self) -> tuple[float, float, float, float]: ... method green (line 1531) | def green(self) -> int: ... method greenF (line 1532) | def greenF(self) -> float: ... method hslHue (line 1533) | def hslHue(self) -> int: ... method hslHueF (line 1534) | def hslHueF(self) -> float: ... method hslSaturation (line 1535) | def hslSaturation(self) -> int: ... method hslSaturationF (line 1536) | def hslSaturationF(self) -> float: ... method hsvHue (line 1537) | def hsvHue(self) -> int: ... method hsvHueF (line 1538) | def hsvHueF(self) -> float: ... method hsvSaturation (line 1539) | def hsvSaturation(self) -> int: ... method hsvSaturationF (line 1540) | def hsvSaturationF(self) -> float: ... method hue (line 1541) | def hue(self) -> int: ... method hueF (line 1542) | def hueF(self) -> float: ... method isValid (line 1543) | def isValid(self) -> bool: ... method isValidColor (line 1545) | def isValidColor(name: str) -> bool: ... method light (line 1546) | def light(self, f: int = ...) -> QColor: ... method lighter (line 1547) | def lighter(self, f: int = ...) -> QColor: ... method lightness (line 1548) | def lightness(self) -> int: ... method lightnessF (line 1549) | def lightnessF(self) -> float: ... method magenta (line 1550) | def magenta(self) -> int: ... method magentaF (line 1551) | def magentaF(self) -> float: ... method name (line 1553) | def name(self, format: QColor.NameFormat) -> str: ... method name (line 1555) | def name(self) -> str: ... method red (line 1556) | def red(self) -> int: ... method redF (line 1557) | def redF(self) -> float: ... method rgb (line 1558) | def rgb(self) -> int: ... method rgba (line 1559) | def rgba(self) -> int: ... method saturation (line 1560) | def saturation(self) -> int: ... method saturationF (line 1561) | def saturationF(self) -> float: ... method setAlpha (line 1562) | def setAlpha(self, alpha: int) -> None: ... method setAlphaF (line 1563) | def setAlphaF(self, alpha: float) -> None: ... method setBlue (line 1564) | def setBlue(self, blue: int) -> None: ... method setBlueF (line 1565) | def setBlueF(self, blue: float) -> None: ... method setCmyk (line 1566) | def setCmyk(self, c: int, m: int, y: int, k: int, a: int = ...) -> Non... method setCmykF (line 1567) | def setCmykF(self, c: float, m: float, y: float, k: float, a: float = ... method setGreen (line 1568) | def setGreen(self, green: int) -> None: ... method setGreenF (line 1569) | def setGreenF(self, green: float) -> None: ... method setHsl (line 1570) | def setHsl(self, h: int, s: int, l: int, a: int = ...) -> None: ... method setHslF (line 1571) | def setHslF(self, h: float, s: float, l: float, a: float = ...) -> Non... method setHsv (line 1572) | def setHsv(self, h: int, s: int, v: int, a: int = ...) -> None: ... method setHsvF (line 1573) | def setHsvF(self, h: float, s: float, v: float, a: float = ...) -> Non... method setNamedColor (line 1574) | def setNamedColor(self, name: str) -> None: ... method setRed (line 1575) | def setRed(self, red: int) -> None: ... method setRedF (line 1576) | def setRedF(self, red: float) -> None: ... method setRgb (line 1578) | def setRgb(self, r: int, g: int, b: int, a: int = ...) -> None: ... method setRgb (line 1580) | def setRgb(self, rgb: int) -> None: ... method setRgbF (line 1581) | def setRgbF(self, r: float, g: float, b: float, a: float = ...) -> Non... method setRgba (line 1582) | def setRgba(self, rgba: int) -> None: ... method spec (line 1583) | def spec(self) -> QColor.Spec: ... method toCmyk (line 1584) | def toCmyk(self) -> QColor: ... method toExtendedRgb (line 1585) | def toExtendedRgb(self) -> QColor: ... method toHsl (line 1586) | def toHsl(self) -> QColor: ... method toHsv (line 1587) | def toHsv(self) -> QColor: ... method toRgb (line 1588) | def toRgb(self) -> QColor: ... method toTuple (line 1589) | def toTuple(self) -> tuple: ... method value (line 1590) | def value(self) -> int: ... method valueF (line 1591) | def valueF(self) -> float: ... method yellow (line 1592) | def yellow(self) -> int: ... method yellowF (line 1593) | def yellowF(self) -> float: ... method __copy__ (line 1594) | def __copy__(self) -> None: ... method __eq__ (line 1595) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1596) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1597) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1598) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1599) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 1600) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1601) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1602) | def __rlshift__(self, other): ... method __rrshift__ (line 1603) | def __rrshift__(self, other): ... method __rshift__ (line 1604) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QColorConstants (line 1606) | class QColorConstants(shiboken2.Object): class Svg (line 1607) | class Svg(shiboken2.Object): method __init__ (line 1756) | def __init__(cls, *args, **kwargs) -> None: ... method __init__ (line 1778) | def __init__(cls, *args, **kwargs) -> None: ... class QColorSpace (line 1780) | class QColorSpace(shiboken2.Object): class NamedColorSpace (line 1781) | class NamedColorSpace: method __init__ (line 1790) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1791) | def __add__(self, other: typing.SupportsInt) -> QColorSpace.NamedCol... method __and__ (line 1792) | def __and__(self, other: typing.SupportsInt) -> QColorSpace.NamedCol... method __bool__ (line 1793) | def __bool__(self) -> bool: ... method __eq__ (line 1794) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1795) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1796) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1797) | def __hash__(self) -> int: ... method __index__ (line 1798) | def __index__(self) -> int: ... method __int__ (line 1799) | def __int__(self) -> int: ... method __le__ (line 1800) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1801) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1802) | def __mul__(self, other: typing.SupportsInt) -> QColorSpace.NamedCol... method __ne__ (line 1803) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1804) | def __or__(self, other: typing.SupportsInt) -> QColorSpace.NamedColo... method __pos__ (line 1805) | def __pos__(self): ... method __radd__ (line 1806) | def __radd__(self, other: typing.SupportsInt) -> QColorSpace.NamedCo... method __rand__ (line 1807) | def __rand__(self, other: typing.SupportsInt) -> QColorSpace.NamedCo... method __rmul__ (line 1808) | def __rmul__(self, other: typing.SupportsInt) -> QColorSpace.NamedCo... method __ror__ (line 1809) | def __ror__(self, other: typing.SupportsInt) -> QColorSpace.NamedCol... method __rsub__ (line 1810) | def __rsub__(self, other: typing.SupportsInt) -> QColorSpace.NamedCo... method __rxor__ (line 1811) | def __rxor__(self, other: typing.SupportsInt) -> QColorSpace.NamedCo... method __sub__ (line 1812) | def __sub__(self, other: typing.SupportsInt) -> QColorSpace.NamedCol... method __xor__ (line 1813) | def __xor__(self, other: typing.SupportsInt) -> QColorSpace.NamedCol... class Primaries (line 1815) | class Primaries: method __init__ (line 1824) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1825) | def __add__(self, other: typing.SupportsInt) -> QColorSpace.Primarie... method __and__ (line 1826) | def __and__(self, other: typing.SupportsInt) -> QColorSpace.Primarie... method __bool__ (line 1827) | def __bool__(self) -> bool: ... method __eq__ (line 1828) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1829) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1830) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1831) | def __hash__(self) -> int: ... method __index__ (line 1832) | def __index__(self) -> int: ... method __int__ (line 1833) | def __int__(self) -> int: ... method __le__ (line 1834) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1835) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1836) | def __mul__(self, other: typing.SupportsInt) -> QColorSpace.Primarie... method __ne__ (line 1837) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1838) | def __or__(self, other: typing.SupportsInt) -> QColorSpace.Primaries... method __pos__ (line 1839) | def __pos__(self): ... method __radd__ (line 1840) | def __radd__(self, other: typing.SupportsInt) -> QColorSpace.Primari... method __rand__ (line 1841) | def __rand__(self, other: typing.SupportsInt) -> QColorSpace.Primari... method __rmul__ (line 1842) | def __rmul__(self, other: typing.SupportsInt) -> QColorSpace.Primari... method __ror__ (line 1843) | def __ror__(self, other: typing.SupportsInt) -> QColorSpace.Primarie... method __rsub__ (line 1844) | def __rsub__(self, other: typing.SupportsInt) -> QColorSpace.Primari... method __rxor__ (line 1845) | def __rxor__(self, other: typing.SupportsInt) -> QColorSpace.Primari... method __sub__ (line 1846) | def __sub__(self, other: typing.SupportsInt) -> QColorSpace.Primarie... method __xor__ (line 1847) | def __xor__(self, other: typing.SupportsInt) -> QColorSpace.Primarie... class TransferFunction (line 1849) | class TransferFunction: method __init__ (line 1858) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1859) | def __add__(self, other: typing.SupportsInt) -> QColorSpace.Transfer... method __and__ (line 1860) | def __and__(self, other: typing.SupportsInt) -> QColorSpace.Transfer... method __bool__ (line 1861) | def __bool__(self) -> bool: ... method __eq__ (line 1862) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1863) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1864) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1865) | def __hash__(self) -> int: ... method __index__ (line 1866) | def __index__(self) -> int: ... method __int__ (line 1867) | def __int__(self) -> int: ... method __le__ (line 1868) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1869) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1870) | def __mul__(self, other: typing.SupportsInt) -> QColorSpace.Transfer... method __ne__ (line 1871) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1872) | def __or__(self, other: typing.SupportsInt) -> QColorSpace.TransferF... method __pos__ (line 1873) | def __pos__(self): ... method __radd__ (line 1874) | def __radd__(self, other: typing.SupportsInt) -> QColorSpace.Transfe... method __rand__ (line 1875) | def __rand__(self, other: typing.SupportsInt) -> QColorSpace.Transfe... method __rmul__ (line 1876) | def __rmul__(self, other: typing.SupportsInt) -> QColorSpace.Transfe... method __ror__ (line 1877) | def __ror__(self, other: typing.SupportsInt) -> QColorSpace.Transfer... method __rsub__ (line 1878) | def __rsub__(self, other: typing.SupportsInt) -> QColorSpace.Transfe... method __rxor__ (line 1879) | def __rxor__(self, other: typing.SupportsInt) -> QColorSpace.Transfe... method __sub__ (line 1880) | def __sub__(self, other: typing.SupportsInt) -> QColorSpace.Transfer... method __xor__ (line 1881) | def __xor__(self, other: typing.SupportsInt) -> QColorSpace.Transfer... method __init__ (line 1888) | def __init__(self, whitePoint: PySide2.QtCore.QPointF, redPoint: PySid... method __init__ (line 1890) | def __init__(self, primaries: QColorSpace.Primaries, fun: QColorSpace.... method __init__ (line 1892) | def __init__(self, primaries: QColorSpace.Primaries, gamma: float) -> ... method __init__ (line 1894) | def __init__(self, namedColorSpace: QColorSpace.NamedColorSpace) -> No... method __init__ (line 1896) | def __init__(self, colorSpace: QColorSpace) -> None: ... method __init__ (line 1898) | def __init__(self) -> None: ... method fromIccProfile (line 1900) | def fromIccProfile(iccProfile: PySide2.QtCore.QByteArray | bytes) -> Q... method gamma (line 1901) | def gamma(self) -> float: ... method iccProfile (line 1902) | def iccProfile(self) -> PySide2.QtCore.QByteArray: ... method isValid (line 1903) | def isValid(self) -> bool: ... method primaries (line 1904) | def primaries(self) -> QColorSpace.Primaries: ... method setPrimaries (line 1906) | def setPrimaries(self, whitePoint: PySide2.QtCore.QPointF, redPoint: P... method setPrimaries (line 1908) | def setPrimaries(self, primariesId: QColorSpace.Primaries) -> None: ... method setTransferFunction (line 1909) | def setTransferFunction(self, transferFunction: QColorSpace.TransferFu... method swap (line 1910) | def swap(self, colorSpace: QColorSpace) -> None: ... method transferFunction (line 1911) | def transferFunction(self) -> QColorSpace.TransferFunction: ... method withTransferFunction (line 1912) | def withTransferFunction(self, transferFunction: QColorSpace.TransferF... method __copy__ (line 1913) | def __copy__(self) -> None: ... method __eq__ (line 1914) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1915) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1916) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1917) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1918) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 1919) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1920) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1921) | def __rlshift__(self, other): ... method __rrshift__ (line 1922) | def __rrshift__(self, other): ... method __rshift__ (line 1923) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QConicalGradient (line 1925) | class QConicalGradient(QGradient): method __init__ (line 1927) | def __init__(self, cx: float, cy: float, startAngle: float) -> None: ... method __init__ (line 1929) | def __init__(self, center: PySide2.QtCore.QPointF, startAngle: float) ... method __init__ (line 1931) | def __init__(self, QConicalGradient: QConicalGradient) -> None: ... method __init__ (line 1933) | def __init__(self) -> None: ... method angle (line 1934) | def angle(self) -> float: ... method center (line 1935) | def center(self) -> PySide2.QtCore.QPointF: ... method setAngle (line 1936) | def setAngle(self, angle: float) -> None: ... method setCenter (line 1938) | def setCenter(self, x: float, y: float) -> None: ... method setCenter (line 1940) | def setCenter(self, center: PySide2.QtCore.QPointF) -> None: ... method __copy__ (line 1941) | def __copy__(self) -> None: ... class QContextMenuEvent (line 1943) | class QContextMenuEvent(QInputEvent): class Reason (line 1944) | class Reason: method __init__ (line 1951) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1952) | def __add__(self, other: typing.SupportsInt) -> QContextMenuEvent.Re... method __and__ (line 1953) | def __and__(self, other: typing.SupportsInt) -> QContextMenuEvent.Re... method __bool__ (line 1954) | def __bool__(self) -> bool: ... method __eq__ (line 1955) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1956) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1957) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1958) | def __hash__(self) -> int: ... method __index__ (line 1959) | def __index__(self) -> int: ... method __int__ (line 1960) | def __int__(self) -> int: ... method __le__ (line 1961) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1962) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1963) | def __mul__(self, other: typing.SupportsInt) -> QContextMenuEvent.Re... method __ne__ (line 1964) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1965) | def __or__(self, other: typing.SupportsInt) -> QContextMenuEvent.Rea... method __pos__ (line 1966) | def __pos__(self): ... method __radd__ (line 1967) | def __radd__(self, other: typing.SupportsInt) -> QContextMenuEvent.R... method __rand__ (line 1968) | def __rand__(self, other: typing.SupportsInt) -> QContextMenuEvent.R... method __rmul__ (line 1969) | def __rmul__(self, other: typing.SupportsInt) -> QContextMenuEvent.R... method __ror__ (line 1970) | def __ror__(self, other: typing.SupportsInt) -> QContextMenuEvent.Re... method __rsub__ (line 1971) | def __rsub__(self, other: typing.SupportsInt) -> QContextMenuEvent.R... method __rxor__ (line 1972) | def __rxor__(self, other: typing.SupportsInt) -> QContextMenuEvent.R... method __sub__ (line 1973) | def __sub__(self, other: typing.SupportsInt) -> QContextMenuEvent.Re... method __xor__ (line 1974) | def __xor__(self, other: typing.SupportsInt) -> QContextMenuEvent.Re... method __init__ (line 1979) | def __init__(self, reason: QContextMenuEvent.Reason, pos: PySide2.QtCo... method __init__ (line 1981) | def __init__(self, reason: QContextMenuEvent.Reason, pos: PySide2.QtCo... method __init__ (line 1983) | def __init__(self, reason: QContextMenuEvent.Reason, pos: PySide2.QtCo... method globalPos (line 1984) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method globalX (line 1985) | def globalX(self) -> int: ... method globalY (line 1986) | def globalY(self) -> int: ... method pos (line 1987) | def pos(self) -> PySide2.QtCore.QPoint: ... method reason (line 1988) | def reason(self) -> QContextMenuEvent.Reason: ... method x (line 1989) | def x(self) -> int: ... method y (line 1990) | def y(self) -> int: ... class QCursor (line 1992) | class QCursor(shiboken2.Object): method __init__ (line 1994) | def __init__(self, bitmap: QBitmap, mask: QBitmap, hotX: int = ..., ho... method __init__ (line 1996) | def __init__(self, pixmap: QPixmap, hotX: int = ..., hotY: int = ...) ... method __init__ (line 1998) | def __init__(self, shape: PySide2.QtCore.Qt.CursorShape) -> None: ... method __init__ (line 2000) | def __init__(self, cursor: QCursor | PySide2.QtCore.Qt.CursorShape) ->... method __init__ (line 2002) | def __init__(self) -> None: ... method bitmap (line 2003) | def bitmap(self) -> QBitmap: ... method hotSpot (line 2004) | def hotSpot(self) -> PySide2.QtCore.QPoint: ... method mask (line 2005) | def mask(self) -> QBitmap: ... method pixmap (line 2006) | def pixmap(self) -> QPixmap: ... method pos (line 2009) | def pos(screen: QScreen) -> PySide2.QtCore.QPoint: ... method pos (line 2012) | def pos() -> PySide2.QtCore.QPoint: ... method setPos (line 2015) | def setPos(screen: QScreen, x: int, y: int) -> None: ... method setPos (line 2018) | def setPos(x: int, y: int) -> None: ... method setPos (line 2021) | def setPos(screen: QScreen, p: PySide2.QtCore.QPoint) -> None: ... method setPos (line 2024) | def setPos(p: PySide2.QtCore.QPoint) -> None: ... method setShape (line 2025) | def setShape(self, newShape: PySide2.QtCore.Qt.CursorShape) -> None: ... method shape (line 2026) | def shape(self) -> PySide2.QtCore.Qt.CursorShape: ... method swap (line 2027) | def swap(self, other: QCursor | PySide2.QtCore.Qt.CursorShape) -> None... method __copy__ (line 2028) | def __copy__(self) -> None: ... method __eq__ (line 2029) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2030) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2031) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2032) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 2033) | def __lshift__(self, outS: PySide2.QtCore.QDataStream) -> PySide2.QtCo... method __lt__ (line 2034) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2035) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 2036) | def __rlshift__(self, other): ... method __rrshift__ (line 2037) | def __rrshift__(self, other): ... method __rshift__ (line 2038) | def __rshift__(self, inS: PySide2.QtCore.QDataStream) -> PySide2.QtCor... class QDesktopServices (line 2040) | class QDesktopServices(shiboken2.Object): method __init__ (line 2041) | def __init__(self) -> None: ... method openUrl (line 2043) | def openUrl(url: PySide2.QtCore.QUrl) -> bool: ... method setUrlHandler (line 2045) | def setUrlHandler(scheme: str, receiver: PySide2.QtCore.QObject, metho... method unsetUrlHandler (line 2047) | def unsetUrlHandler(scheme: str) -> None: ... class QDoubleValidator (line 2049) | class QDoubleValidator(QValidator): class Notation (line 2050) | class Notation: method __init__ (line 2056) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2057) | def __add__(self, other: typing.SupportsInt) -> QDoubleValidator.Not... method __and__ (line 2058) | def __and__(self, other: typing.SupportsInt) -> QDoubleValidator.Not... method __bool__ (line 2059) | def __bool__(self) -> bool: ... method __eq__ (line 2060) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2061) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2062) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2063) | def __hash__(self) -> int: ... method __index__ (line 2064) | def __index__(self) -> int: ... method __int__ (line 2065) | def __int__(self) -> int: ... method __le__ (line 2066) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2067) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2068) | def __mul__(self, other: typing.SupportsInt) -> QDoubleValidator.Not... method __ne__ (line 2069) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2070) | def __or__(self, other: typing.SupportsInt) -> QDoubleValidator.Nota... method __pos__ (line 2071) | def __pos__(self): ... method __radd__ (line 2072) | def __radd__(self, other: typing.SupportsInt) -> QDoubleValidator.No... method __rand__ (line 2073) | def __rand__(self, other: typing.SupportsInt) -> QDoubleValidator.No... method __rmul__ (line 2074) | def __rmul__(self, other: typing.SupportsInt) -> QDoubleValidator.No... method __ror__ (line 2075) | def __ror__(self, other: typing.SupportsInt) -> QDoubleValidator.Not... method __rsub__ (line 2076) | def __rsub__(self, other: typing.SupportsInt) -> QDoubleValidator.No... method __rxor__ (line 2077) | def __rxor__(self, other: typing.SupportsInt) -> QDoubleValidator.No... method __sub__ (line 2078) | def __sub__(self, other: typing.SupportsInt) -> QDoubleValidator.Not... method __xor__ (line 2079) | def __xor__(self, other: typing.SupportsInt) -> QDoubleValidator.Not... method __init__ (line 2088) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., bottom... method __init__ (line 2090) | def __init__(self, bottom: float, top: float, decimals: int, parent: P... method bottom (line 2091) | def bottom(self) -> float: ... method decimals (line 2092) | def decimals(self) -> int: ... method notation (line 2093) | def notation(self) -> QDoubleValidator.Notation: ... method setBottom (line 2094) | def setBottom(self, arg__1: float) -> None: ... method setDecimals (line 2095) | def setDecimals(self, arg__1: int) -> None: ... method setNotation (line 2096) | def setNotation(self, arg__1: QDoubleValidator.Notation) -> None: ... method setRange (line 2097) | def setRange(self, bottom: float, top: float, decimals: int = ...) -> ... method setTop (line 2098) | def setTop(self, arg__1: float) -> None: ... method top (line 2099) | def top(self) -> float: ... method validate (line 2100) | def validate(self, arg__1: str, arg__2: int) -> QValidator.State: ... class QDrag (line 2102) | class QDrag(PySide2.QtCore.QObject): method __init__ (line 2106) | def __init__(self, dragSource: PySide2.QtCore.QObject, destroyed: typi... method cancel (line 2108) | def cancel() -> None: ... method defaultAction (line 2109) | def defaultAction(self) -> PySide2.QtCore.Qt.DropAction: ... method dragCursor (line 2110) | def dragCursor(self, action: PySide2.QtCore.Qt.DropAction) -> QPixmap:... method exec_ (line 2112) | def exec_(self, supportedActions: PySide2.QtCore.Qt.DropActions | PySi... method exec_ (line 2114) | def exec_(self, supportedActions: PySide2.QtCore.Qt.DropActions | PySi... method hotSpot (line 2115) | def hotSpot(self) -> PySide2.QtCore.QPoint: ... method mimeData (line 2116) | def mimeData(self) -> PySide2.QtCore.QMimeData: ... method pixmap (line 2117) | def pixmap(self) -> QPixmap: ... method setDragCursor (line 2118) | def setDragCursor(self, cursor: QPixmap, action: PySide2.QtCore.Qt.Dro... method setHotSpot (line 2119) | def setHotSpot(self, hotspot: PySide2.QtCore.QPoint) -> None: ... method setMimeData (line 2120) | def setMimeData(self, data: PySide2.QtCore.QMimeData) -> None: ... method setPixmap (line 2121) | def setPixmap(self, arg__1: QPixmap) -> None: ... method source (line 2122) | def source(self) -> PySide2.QtCore.QObject: ... method start (line 2123) | def start(self, supportedActions: PySide2.QtCore.Qt.DropActions | PySi... method supportedActions (line 2124) | def supportedActions(self) -> PySide2.QtCore.Qt.DropActions | PySide2.... method target (line 2125) | def target(self) -> PySide2.QtCore.QObject: ... class QDragEnterEvent (line 2127) | class QDragEnterEvent(QDragMoveEvent): method __init__ (line 2128) | def __init__(self, pos: PySide2.QtCore.QPoint, actions: PySide2.QtCore... class QDragLeaveEvent (line 2130) | class QDragLeaveEvent(PySide2.QtCore.QEvent): method __init__ (line 2131) | def __init__(self) -> None: ... class QDragMoveEvent (line 2133) | class QDragMoveEvent(QDropEvent): method __init__ (line 2134) | def __init__(self, pos: PySide2.QtCore.QPoint, actions: PySide2.QtCore... method accept (line 2136) | def accept(self, r: PySide2.QtCore.QRect) -> None: ... method accept (line 2138) | def accept(self) -> None: ... method answerRect (line 2139) | def answerRect(self) -> PySide2.QtCore.QRect: ... method ignore (line 2141) | def ignore(self, r: PySide2.QtCore.QRect) -> None: ... method ignore (line 2143) | def ignore(self) -> None: ... class QDropEvent (line 2145) | class QDropEvent(PySide2.QtCore.QEvent): method __init__ (line 2146) | def __init__(self, pos: PySide2.QtCore.QPointF, actions: PySide2.QtCor... method acceptProposedAction (line 2147) | def acceptProposedAction(self) -> None: ... method dropAction (line 2148) | def dropAction(self) -> PySide2.QtCore.Qt.DropAction: ... method keyboardModifiers (line 2149) | def keyboardModifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | P... method mimeData (line 2150) | def mimeData(self) -> PySide2.QtCore.QMimeData: ... method mouseButtons (line 2151) | def mouseButtons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtC... method pos (line 2152) | def pos(self) -> PySide2.QtCore.QPoint: ... method posF (line 2153) | def posF(self) -> PySide2.QtCore.QPointF: ... method possibleActions (line 2154) | def possibleActions(self) -> PySide2.QtCore.Qt.DropActions | PySide2.Q... method proposedAction (line 2155) | def proposedAction(self) -> PySide2.QtCore.Qt.DropAction: ... method setDropAction (line 2156) | def setDropAction(self, action: PySide2.QtCore.Qt.DropAction) -> None:... method source (line 2157) | def source(self) -> PySide2.QtCore.QObject: ... class QEnterEvent (line 2159) | class QEnterEvent(PySide2.QtCore.QEvent): method __init__ (line 2160) | def __init__(self, localPos: PySide2.QtCore.QPointF, windowPos: PySide... method globalPos (line 2161) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method globalX (line 2162) | def globalX(self) -> int: ... method globalY (line 2163) | def globalY(self) -> int: ... method localPos (line 2164) | def localPos(self) -> PySide2.QtCore.QPointF: ... method pos (line 2165) | def pos(self) -> PySide2.QtCore.QPoint: ... method screenPos (line 2166) | def screenPos(self) -> PySide2.QtCore.QPointF: ... method windowPos (line 2167) | def windowPos(self) -> PySide2.QtCore.QPointF: ... method x (line 2168) | def x(self) -> int: ... method y (line 2169) | def y(self) -> int: ... class QExposeEvent (line 2171) | class QExposeEvent(PySide2.QtCore.QEvent): method __init__ (line 2173) | def __init__(self, rgn: QRegion) -> None: ... method region (line 2174) | def region(self) -> QRegion: ... class QFileOpenEvent (line 2176) | class QFileOpenEvent(PySide2.QtCore.QEvent): method __init__ (line 2178) | def __init__(self, url: PySide2.QtCore.QUrl) -> None: ... method __init__ (line 2180) | def __init__(self, file: str) -> None: ... method file (line 2181) | def file(self) -> str: ... method openFile (line 2182) | def openFile(self, file: PySide2.QtCore.QFile, flags: PySide2.QtCore.Q... method url (line 2183) | def url(self) -> PySide2.QtCore.QUrl: ... class QFocusEvent (line 2185) | class QFocusEvent(PySide2.QtCore.QEvent): method __init__ (line 2186) | def __init__(self, type: PySide2.QtCore.QEvent.Type, reason: PySide2.Q... method gotFocus (line 2187) | def gotFocus(self) -> bool: ... method lostFocus (line 2188) | def lostFocus(self) -> bool: ... method reason (line 2189) | def reason(self) -> PySide2.QtCore.Qt.FocusReason: ... class QFont (line 2191) | class QFont(shiboken2.Object): class Capitalization (line 2192) | class Capitalization: method __init__ (line 2201) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2202) | def __add__(self, other: typing.SupportsInt) -> QFont.Capitalization... method __and__ (line 2203) | def __and__(self, other: typing.SupportsInt) -> QFont.Capitalization... method __bool__ (line 2204) | def __bool__(self) -> bool: ... method __eq__ (line 2205) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2206) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2207) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2208) | def __hash__(self) -> int: ... method __index__ (line 2209) | def __index__(self) -> int: ... method __int__ (line 2210) | def __int__(self) -> int: ... method __le__ (line 2211) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2212) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2213) | def __mul__(self, other: typing.SupportsInt) -> QFont.Capitalization... method __ne__ (line 2214) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2215) | def __or__(self, other: typing.SupportsInt) -> QFont.Capitalization:... method __pos__ (line 2216) | def __pos__(self): ... method __radd__ (line 2217) | def __radd__(self, other: typing.SupportsInt) -> QFont.Capitalizatio... method __rand__ (line 2218) | def __rand__(self, other: typing.SupportsInt) -> QFont.Capitalizatio... method __rmul__ (line 2219) | def __rmul__(self, other: typing.SupportsInt) -> QFont.Capitalizatio... method __ror__ (line 2220) | def __ror__(self, other: typing.SupportsInt) -> QFont.Capitalization... method __rsub__ (line 2221) | def __rsub__(self, other: typing.SupportsInt) -> QFont.Capitalizatio... method __rxor__ (line 2222) | def __rxor__(self, other: typing.SupportsInt) -> QFont.Capitalizatio... method __sub__ (line 2223) | def __sub__(self, other: typing.SupportsInt) -> QFont.Capitalization... method __xor__ (line 2224) | def __xor__(self, other: typing.SupportsInt) -> QFont.Capitalization... class HintingPreference (line 2226) | class HintingPreference: method __init__ (line 2234) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2235) | def __add__(self, other: typing.SupportsInt) -> QFont.HintingPrefere... method __and__ (line 2236) | def __and__(self, other: typing.SupportsInt) -> QFont.HintingPrefere... method __bool__ (line 2237) | def __bool__(self) -> bool: ... method __eq__ (line 2238) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2239) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2240) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2241) | def __hash__(self) -> int: ... method __index__ (line 2242) | def __index__(self) -> int: ... method __int__ (line 2243) | def __int__(self) -> int: ... method __le__ (line 2244) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2245) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2246) | def __mul__(self, other: typing.SupportsInt) -> QFont.HintingPrefere... method __ne__ (line 2247) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2248) | def __or__(self, other: typing.SupportsInt) -> QFont.HintingPreferen... method __pos__ (line 2249) | def __pos__(self): ... method __radd__ (line 2250) | def __radd__(self, other: typing.SupportsInt) -> QFont.HintingPrefer... method __rand__ (line 2251) | def __rand__(self, other: typing.SupportsInt) -> QFont.HintingPrefer... method __rmul__ (line 2252) | def __rmul__(self, other: typing.SupportsInt) -> QFont.HintingPrefer... method __ror__ (line 2253) | def __ror__(self, other: typing.SupportsInt) -> QFont.HintingPrefere... method __rsub__ (line 2254) | def __rsub__(self, other: typing.SupportsInt) -> QFont.HintingPrefer... method __rxor__ (line 2255) | def __rxor__(self, other: typing.SupportsInt) -> QFont.HintingPrefer... method __sub__ (line 2256) | def __sub__(self, other: typing.SupportsInt) -> QFont.HintingPrefere... method __xor__ (line 2257) | def __xor__(self, other: typing.SupportsInt) -> QFont.HintingPrefere... class SpacingType (line 2259) | class SpacingType: method __init__ (line 2265) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2266) | def __add__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __and__ (line 2267) | def __and__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __bool__ (line 2268) | def __bool__(self) -> bool: ... method __eq__ (line 2269) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2270) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2271) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2272) | def __hash__(self) -> int: ... method __index__ (line 2273) | def __index__(self) -> int: ... method __int__ (line 2274) | def __int__(self) -> int: ... method __le__ (line 2275) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2276) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2277) | def __mul__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __ne__ (line 2278) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2279) | def __or__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __pos__ (line 2280) | def __pos__(self): ... method __radd__ (line 2281) | def __radd__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __rand__ (line 2282) | def __rand__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __rmul__ (line 2283) | def __rmul__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __ror__ (line 2284) | def __ror__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __rsub__ (line 2285) | def __rsub__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __rxor__ (line 2286) | def __rxor__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __sub__ (line 2287) | def __sub__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... method __xor__ (line 2288) | def __xor__(self, other: typing.SupportsInt) -> QFont.SpacingType: ... class Stretch (line 2290) | class Stretch: method __init__ (line 2304) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2305) | def __add__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __and__ (line 2306) | def __and__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __bool__ (line 2307) | def __bool__(self) -> bool: ... method __eq__ (line 2308) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2309) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2310) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2311) | def __hash__(self) -> int: ... method __index__ (line 2312) | def __index__(self) -> int: ... method __int__ (line 2313) | def __int__(self) -> int: ... method __le__ (line 2314) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2315) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2316) | def __mul__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __ne__ (line 2317) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2318) | def __or__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __pos__ (line 2319) | def __pos__(self): ... method __radd__ (line 2320) | def __radd__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __rand__ (line 2321) | def __rand__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __rmul__ (line 2322) | def __rmul__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __ror__ (line 2323) | def __ror__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __rsub__ (line 2324) | def __rsub__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __rxor__ (line 2325) | def __rxor__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __sub__ (line 2326) | def __sub__(self, other: typing.SupportsInt) -> QFont.Stretch: ... method __xor__ (line 2327) | def __xor__(self, other: typing.SupportsInt) -> QFont.Stretch: ... class Style (line 2329) | class Style: method __init__ (line 2336) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2337) | def __add__(self, other: typing.SupportsInt) -> QFont.Style: ... method __and__ (line 2338) | def __and__(self, other: typing.SupportsInt) -> QFont.Style: ... method __bool__ (line 2339) | def __bool__(self) -> bool: ... method __eq__ (line 2340) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2341) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2342) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2343) | def __hash__(self) -> int: ... method __index__ (line 2344) | def __index__(self) -> int: ... method __int__ (line 2345) | def __int__(self) -> int: ... method __le__ (line 2346) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2347) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2348) | def __mul__(self, other: typing.SupportsInt) -> QFont.Style: ... method __ne__ (line 2349) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2350) | def __or__(self, other: typing.SupportsInt) -> QFont.Style: ... method __pos__ (line 2351) | def __pos__(self): ... method __radd__ (line 2352) | def __radd__(self, other: typing.SupportsInt) -> QFont.Style: ... method __rand__ (line 2353) | def __rand__(self, other: typing.SupportsInt) -> QFont.Style: ... method __rmul__ (line 2354) | def __rmul__(self, other: typing.SupportsInt) -> QFont.Style: ... method __ror__ (line 2355) | def __ror__(self, other: typing.SupportsInt) -> QFont.Style: ... method __rsub__ (line 2356) | def __rsub__(self, other: typing.SupportsInt) -> QFont.Style: ... method __rxor__ (line 2357) | def __rxor__(self, other: typing.SupportsInt) -> QFont.Style: ... method __sub__ (line 2358) | def __sub__(self, other: typing.SupportsInt) -> QFont.Style: ... method __xor__ (line 2359) | def __xor__(self, other: typing.SupportsInt) -> QFont.Style: ... class StyleHint (line 2361) | class StyleHint: method __init__ (line 2378) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2379) | def __add__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __and__ (line 2380) | def __and__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __bool__ (line 2381) | def __bool__(self) -> bool: ... method __eq__ (line 2382) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2383) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2384) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2385) | def __hash__(self) -> int: ... method __index__ (line 2386) | def __index__(self) -> int: ... method __int__ (line 2387) | def __int__(self) -> int: ... method __le__ (line 2388) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2389) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2390) | def __mul__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __ne__ (line 2391) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2392) | def __or__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __pos__ (line 2393) | def __pos__(self): ... method __radd__ (line 2394) | def __radd__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __rand__ (line 2395) | def __rand__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __rmul__ (line 2396) | def __rmul__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __ror__ (line 2397) | def __ror__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __rsub__ (line 2398) | def __rsub__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __rxor__ (line 2399) | def __rxor__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __sub__ (line 2400) | def __sub__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... method __xor__ (line 2401) | def __xor__(self, other: typing.SupportsInt) -> QFont.StyleHint: ... class StyleStrategy (line 2403) | class StyleStrategy: method __init__ (line 2421) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2422) | def __add__(self, other: typing.SupportsInt) -> QFont.StyleStrategy:... method __and__ (line 2423) | def __and__(self, other: typing.SupportsInt) -> QFont.StyleStrategy:... method __bool__ (line 2424) | def __bool__(self) -> bool: ... method __eq__ (line 2425) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2426) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2427) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2428) | def __hash__(self) -> int: ... method __index__ (line 2429) | def __index__(self) -> int: ... method __int__ (line 2430) | def __int__(self) -> int: ... method __le__ (line 2431) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2432) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2433) | def __mul__(self, other: typing.SupportsInt) -> QFont.StyleStrategy:... method __ne__ (line 2434) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2435) | def __or__(self, other: typing.SupportsInt) -> QFont.StyleStrategy: ... method __pos__ (line 2436) | def __pos__(self): ... method __radd__ (line 2437) | def __radd__(self, other: typing.SupportsInt) -> QFont.StyleStrategy... method __rand__ (line 2438) | def __rand__(self, other: typing.SupportsInt) -> QFont.StyleStrategy... method __rmul__ (line 2439) | def __rmul__(self, other: typing.SupportsInt) -> QFont.StyleStrategy... method __ror__ (line 2440) | def __ror__(self, other: typing.SupportsInt) -> QFont.StyleStrategy:... method __rsub__ (line 2441) | def __rsub__(self, other: typing.SupportsInt) -> QFont.StyleStrategy... method __rxor__ (line 2442) | def __rxor__(self, other: typing.SupportsInt) -> QFont.StyleStrategy... method __sub__ (line 2443) | def __sub__(self, other: typing.SupportsInt) -> QFont.StyleStrategy:... method __xor__ (line 2444) | def __xor__(self, other: typing.SupportsInt) -> QFont.StyleStrategy:... class Weight (line 2446) | class Weight: method __init__ (line 2459) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2460) | def __add__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __and__ (line 2461) | def __and__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __bool__ (line 2462) | def __bool__(self) -> bool: ... method __eq__ (line 2463) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2464) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2465) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2466) | def __hash__(self) -> int: ... method __index__ (line 2467) | def __index__(self) -> int: ... method __int__ (line 2468) | def __int__(self) -> int: ... method __le__ (line 2469) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2470) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2471) | def __mul__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __ne__ (line 2472) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2473) | def __or__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __pos__ (line 2474) | def __pos__(self): ... method __radd__ (line 2475) | def __radd__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __rand__ (line 2476) | def __rand__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __rmul__ (line 2477) | def __rmul__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __ror__ (line 2478) | def __ror__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __rsub__ (line 2479) | def __rsub__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __rxor__ (line 2480) | def __rxor__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __sub__ (line 2481) | def __sub__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __xor__ (line 2482) | def __xor__(self, other: typing.SupportsInt) -> QFont.Weight: ... method __init__ (line 2544) | def __init__(self, family: str, pointSize: int = ..., weight: typing.S... method __init__ (line 2546) | def __init__(self, font: QFont, pd: QPaintDevice) -> None: ... method __init__ (line 2548) | def __init__(self, font: QFont) -> None: ... method __init__ (line 2550) | def __init__(self) -> None: ... method bold (line 2551) | def bold(self) -> bool: ... method cacheStatistics (line 2553) | def cacheStatistics() -> None: ... method capitalization (line 2554) | def capitalization(self) -> QFont.Capitalization: ... method cleanup (line 2556) | def cleanup() -> None: ... method defaultFamily (line 2557) | def defaultFamily(self) -> str: ... method exactMatch (line 2558) | def exactMatch(self) -> bool: ... method families (line 2559) | def families(self) -> list[str]: ... method family (line 2560) | def family(self) -> str: ... method fixedPitch (line 2561) | def fixedPitch(self) -> bool: ... method fromString (line 2562) | def fromString(self, arg__1: str) -> bool: ... method hintingPreference (line 2563) | def hintingPreference(self) -> QFont.HintingPreference: ... method initialize (line 2565) | def initialize() -> None: ... method insertSubstitution (line 2567) | def insertSubstitution(arg__1: str, arg__2: str) -> None: ... method insertSubstitutions (line 2569) | def insertSubstitutions(arg__1: str, arg__2: typing.Iterable[str]) -> ... method isCopyOf (line 2570) | def isCopyOf(self, arg__1: QFont) -> bool: ... method italic (line 2571) | def italic(self) -> bool: ... method kerning (line 2572) | def kerning(self) -> bool: ... method key (line 2573) | def key(self) -> str: ... method lastResortFamily (line 2574) | def lastResortFamily(self) -> str: ... method lastResortFont (line 2575) | def lastResortFont(self) -> str: ... method letterSpacing (line 2576) | def letterSpacing(self) -> float: ... method letterSpacingType (line 2577) | def letterSpacingType(self) -> QFont.SpacingType: ... method overline (line 2578) | def overline(self) -> bool: ... method pixelSize (line 2579) | def pixelSize(self) -> int: ... method pointSize (line 2580) | def pointSize(self) -> int: ... method pointSizeF (line 2581) | def pointSizeF(self) -> float: ... method rawMode (line 2582) | def rawMode(self) -> bool: ... method rawName (line 2583) | def rawName(self) -> str: ... method removeSubstitutions (line 2585) | def removeSubstitutions(arg__1: str) -> None: ... method resolve (line 2587) | def resolve(self, mask: int) -> None: ... method resolve (line 2589) | def resolve(self, arg__1: QFont) -> QFont: ... method resolve (line 2591) | def resolve(self) -> int: ... method setBold (line 2592) | def setBold(self, arg__1: bool) -> None: ... method setCapitalization (line 2593) | def setCapitalization(self, arg__1: QFont.Capitalization) -> None: ... method setFamilies (line 2594) | def setFamilies(self, arg__1: typing.Iterable[str]) -> None: ... method setFamily (line 2595) | def setFamily(self, arg__1: str) -> None: ... method setFixedPitch (line 2596) | def setFixedPitch(self, arg__1: bool) -> None: ... method setHintingPreference (line 2597) | def setHintingPreference(self, hintingPreference: QFont.HintingPrefere... method setItalic (line 2598) | def setItalic(self, b: bool) -> None: ... method setKerning (line 2599) | def setKerning(self, arg__1: bool) -> None: ... method setLetterSpacing (line 2600) | def setLetterSpacing(self, type: QFont.SpacingType, spacing: float) ->... method setOverline (line 2601) | def setOverline(self, arg__1: bool) -> None: ... method setPixelSize (line 2602) | def setPixelSize(self, arg__1: int) -> None: ... method setPointSize (line 2603) | def setPointSize(self, arg__1: int) -> None: ... method setPointSizeF (line 2604) | def setPointSizeF(self, arg__1: float) -> None: ... method setRawMode (line 2605) | def setRawMode(self, arg__1: bool) -> None: ... method setRawName (line 2606) | def setRawName(self, arg__1: str) -> None: ... method setStretch (line 2607) | def setStretch(self, arg__1: int) -> None: ... method setStrikeOut (line 2608) | def setStrikeOut(self, arg__1: bool) -> None: ... method setStyle (line 2609) | def setStyle(self, style: QFont.Style) -> None: ... method setStyleHint (line 2610) | def setStyleHint(self, arg__1: QFont.StyleHint, strategy: QFont.StyleS... method setStyleName (line 2611) | def setStyleName(self, arg__1: str) -> None: ... method setStyleStrategy (line 2612) | def setStyleStrategy(self, s: QFont.StyleStrategy) -> None: ... method setUnderline (line 2613) | def setUnderline(self, arg__1: bool) -> None: ... method setWeight (line 2614) | def setWeight(self, arg__1: int | QFont.Weight) -> None: ... method setWordSpacing (line 2615) | def setWordSpacing(self, spacing: float) -> None: ... method stretch (line 2616) | def stretch(self) -> int: ... method strikeOut (line 2617) | def strikeOut(self) -> bool: ... method style (line 2618) | def style(self) -> QFont.Style: ... method styleHint (line 2619) | def styleHint(self) -> QFont.StyleHint: ... method styleName (line 2620) | def styleName(self) -> str: ... method styleStrategy (line 2621) | def styleStrategy(self) -> QFont.StyleStrategy: ... method substitute (line 2623) | def substitute(arg__1: str) -> str: ... method substitutes (line 2625) | def substitutes(arg__1: str) -> list[str]: ... method substitutions (line 2627) | def substitutions() -> list[str]: ... method swap (line 2628) | def swap(self, other: QFont) -> None: ... method toString (line 2629) | def toString(self) -> str: ... method underline (line 2630) | def underline(self) -> bool: ... method weight (line 2631) | def weight(self) -> int: ... method wordSpacing (line 2632) | def wordSpacing(self) -> float: ... method __copy__ (line 2633) | def __copy__(self) -> None: ... method __eq__ (line 2634) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2635) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2636) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2637) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 2638) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 2639) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2640) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 2641) | def __rlshift__(self, other): ... method __rrshift__ (line 2642) | def __rrshift__(self, other): ... method __rshift__ (line 2643) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QFontDatabase (line 2645) | class QFontDatabase(shiboken2.Object): class SystemFont (line 2646) | class SystemFont: method __init__ (line 2654) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2655) | def __add__(self, other: typing.SupportsInt) -> QFontDatabase.System... method __and__ (line 2656) | def __and__(self, other: typing.SupportsInt) -> QFontDatabase.System... method __bool__ (line 2657) | def __bool__(self) -> bool: ... method __eq__ (line 2658) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2659) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2660) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2661) | def __hash__(self) -> int: ... method __index__ (line 2662) | def __index__(self) -> int: ... method __int__ (line 2663) | def __int__(self) -> int: ... method __le__ (line 2664) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2665) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2666) | def __mul__(self, other: typing.SupportsInt) -> QFontDatabase.System... method __ne__ (line 2667) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2668) | def __or__(self, other: typing.SupportsInt) -> QFontDatabase.SystemF... method __pos__ (line 2669) | def __pos__(self): ... method __radd__ (line 2670) | def __radd__(self, other: typing.SupportsInt) -> QFontDatabase.Syste... method __rand__ (line 2671) | def __rand__(self, other: typing.SupportsInt) -> QFontDatabase.Syste... method __rmul__ (line 2672) | def __rmul__(self, other: typing.SupportsInt) -> QFontDatabase.Syste... method __ror__ (line 2673) | def __ror__(self, other: typing.SupportsInt) -> QFontDatabase.System... method __rsub__ (line 2674) | def __rsub__(self, other: typing.SupportsInt) -> QFontDatabase.Syste... method __rxor__ (line 2675) | def __rxor__(self, other: typing.SupportsInt) -> QFontDatabase.Syste... method __sub__ (line 2676) | def __sub__(self, other: typing.SupportsInt) -> QFontDatabase.System... method __xor__ (line 2677) | def __xor__(self, other: typing.SupportsInt) -> QFontDatabase.System... class WritingSystem (line 2679) | class WritingSystem: method __init__ (line 2719) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2720) | def __add__(self, other: typing.SupportsInt) -> QFontDatabase.Writin... method __and__ (line 2721) | def __and__(self, other: typing.SupportsInt) -> QFontDatabase.Writin... method __bool__ (line 2722) | def __bool__(self) -> bool: ... method __eq__ (line 2723) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2724) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2725) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2726) | def __hash__(self) -> int: ... method __index__ (line 2727) | def __index__(self) -> int: ... method __int__ (line 2728) | def __int__(self) -> int: ... method __le__ (line 2729) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2730) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2731) | def __mul__(self, other: typing.SupportsInt) -> QFontDatabase.Writin... method __ne__ (line 2732) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2733) | def __or__(self, other: typing.SupportsInt) -> QFontDatabase.Writing... method __pos__ (line 2734) | def __pos__(self): ... method __radd__ (line 2735) | def __radd__(self, other: typing.SupportsInt) -> QFontDatabase.Writi... method __rand__ (line 2736) | def __rand__(self, other: typing.SupportsInt) -> QFontDatabase.Writi... method __rmul__ (line 2737) | def __rmul__(self, other: typing.SupportsInt) -> QFontDatabase.Writi... method __ror__ (line 2738) | def __ror__(self, other: typing.SupportsInt) -> QFontDatabase.Writin... method __rsub__ (line 2739) | def __rsub__(self, other: typing.SupportsInt) -> QFontDatabase.Writi... method __rxor__ (line 2740) | def __rxor__(self, other: typing.SupportsInt) -> QFontDatabase.Writi... method __sub__ (line 2741) | def __sub__(self, other: typing.SupportsInt) -> QFontDatabase.Writin... method __xor__ (line 2742) | def __xor__(self, other: typing.SupportsInt) -> QFontDatabase.Writin... method __init__ (line 2784) | def __init__(self, QFontDatabase: QFontDatabase) -> None: ... method __init__ (line 2786) | def __init__(self) -> None: ... method addApplicationFont (line 2788) | def addApplicationFont(fileName: str) -> int: ... method addApplicationFontFromData (line 2790) | def addApplicationFontFromData(fontData: PySide2.QtCore.QByteArray | b... method applicationFontFamilies (line 2792) | def applicationFontFamilies(id: int) -> list[str]: ... method bold (line 2793) | def bold(self, family: str, style: str) -> bool: ... method families (line 2794) | def families(self, writingSystem: QFontDatabase.WritingSystem = ...) -... method font (line 2795) | def font(self, family: str, style: str, pointSize: int) -> QFont: ... method hasFamily (line 2796) | def hasFamily(self, family: str) -> bool: ... method isBitmapScalable (line 2797) | def isBitmapScalable(self, family: str, style: str = ...) -> bool: ... method isFixedPitch (line 2798) | def isFixedPitch(self, family: str, style: str = ...) -> bool: ... method isPrivateFamily (line 2799) | def isPrivateFamily(self, family: str) -> bool: ... method isScalable (line 2800) | def isScalable(self, family: str, style: str = ...) -> bool: ... method isSmoothlyScalable (line 2801) | def isSmoothlyScalable(self, family: str, style: str = ...) -> bool: ... method italic (line 2802) | def italic(self, family: str, style: str) -> bool: ... method pointSizes (line 2803) | def pointSizes(self, family: str, style: str = ...) -> list[int]: ... method removeAllApplicationFonts (line 2805) | def removeAllApplicationFonts() -> bool: ... method removeApplicationFont (line 2807) | def removeApplicationFont(id: int) -> bool: ... method smoothSizes (line 2808) | def smoothSizes(self, family: str, style: str) -> list[int]: ... method standardSizes (line 2810) | def standardSizes() -> list[int]: ... method styleString (line 2812) | def styleString(self, fontInfo: QFontInfo) -> str: ... method styleString (line 2814) | def styleString(self, font: QFont) -> str: ... method styles (line 2815) | def styles(self, family: str) -> list[str]: ... method supportsThreadedFontRendering (line 2817) | def supportsThreadedFontRendering() -> bool: ... method systemFont (line 2819) | def systemFont(type: QFontDatabase.SystemFont) -> QFont: ... method weight (line 2820) | def weight(self, family: str, style: str) -> int: ... method writingSystemName (line 2822) | def writingSystemName(writingSystem: QFontDatabase.WritingSystem) -> s... method writingSystemSample (line 2824) | def writingSystemSample(writingSystem: QFontDatabase.WritingSystem) ->... method writingSystems (line 2826) | def writingSystems(self, family: str) -> list[QFontDatabase.WritingSys... method writingSystems (line 2828) | def writingSystems(self) -> list[QFontDatabase.WritingSystem]: ... method __copy__ (line 2829) | def __copy__(self) -> None: ... class QFontInfo (line 2831) | class QFontInfo(shiboken2.Object): method __init__ (line 2833) | def __init__(self, arg__1: QFont) -> None: ... method __init__ (line 2835) | def __init__(self, arg__1: QFontInfo) -> None: ... method bold (line 2836) | def bold(self) -> bool: ... method exactMatch (line 2837) | def exactMatch(self) -> bool: ... method family (line 2838) | def family(self) -> str: ... method fixedPitch (line 2839) | def fixedPitch(self) -> bool: ... method italic (line 2840) | def italic(self) -> bool: ... method overline (line 2841) | def overline(self) -> bool: ... method pixelSize (line 2842) | def pixelSize(self) -> int: ... method pointSize (line 2843) | def pointSize(self) -> int: ... method pointSizeF (line 2844) | def pointSizeF(self) -> float: ... method rawMode (line 2845) | def rawMode(self) -> bool: ... method strikeOut (line 2846) | def strikeOut(self) -> bool: ... method style (line 2847) | def style(self) -> QFont.Style: ... method styleHint (line 2848) | def styleHint(self) -> QFont.StyleHint: ... method styleName (line 2849) | def styleName(self) -> str: ... method swap (line 2850) | def swap(self, other: QFontInfo) -> None: ... method underline (line 2851) | def underline(self) -> bool: ... method weight (line 2852) | def weight(self) -> int: ... method __copy__ (line 2853) | def __copy__(self) -> None: ... class QFontMetrics (line 2855) | class QFontMetrics(shiboken2.Object): method __init__ (line 2857) | def __init__(self, font: QFont, pd: QPaintDevice) -> None: ... method __init__ (line 2859) | def __init__(self, arg__1: QFont) -> None: ... method __init__ (line 2861) | def __init__(self, arg__1: QFontMetrics) -> None: ... method ascent (line 2862) | def ascent(self) -> int: ... method averageCharWidth (line 2863) | def averageCharWidth(self) -> int: ... method boundingRect (line 2865) | def boundingRect(self, x: int, y: int, w: int, h: int, flags: typing.S... method boundingRect (line 2867) | def boundingRect(self, r: PySide2.QtCore.QRect, flags: typing.Supports... method boundingRect (line 2869) | def boundingRect(self, text: str) -> PySide2.QtCore.QRect: ... method boundingRectChar (line 2870) | def boundingRectChar(self, arg__1: str) -> PySide2.QtCore.QRect: ... method capHeight (line 2871) | def capHeight(self) -> int: ... method charWidth (line 2872) | def charWidth(self, str: str, pos: int) -> int: ... method descent (line 2873) | def descent(self) -> int: ... method elidedText (line 2874) | def elidedText(self, text: str, mode: PySide2.QtCore.Qt.TextElideMode,... method fontDpi (line 2875) | def fontDpi(self) -> float: ... method height (line 2876) | def height(self) -> int: ... method horizontalAdvance (line 2878) | def horizontalAdvance(self, arg__1: str, len: int = ...) -> int: ... method inFont (line 2879) | def inFont(self, arg__1: str) -> bool: ... method inFontUcs4 (line 2880) | def inFontUcs4(self, ucs4: int) -> bool: ... method leading (line 2881) | def leading(self) -> int: ... method leftBearing (line 2882) | def leftBearing(self, arg__1: str) -> int: ... method lineSpacing (line 2883) | def lineSpacing(self) -> int: ... method lineWidth (line 2884) | def lineWidth(self) -> int: ... method maxWidth (line 2885) | def maxWidth(self) -> int: ... method minLeftBearing (line 2886) | def minLeftBearing(self) -> int: ... method minRightBearing (line 2887) | def minRightBearing(self) -> int: ... method overlinePos (line 2888) | def overlinePos(self) -> int: ... method rightBearing (line 2889) | def rightBearing(self, arg__1: str) -> int: ... method size (line 2890) | def size(self, flags: typing.SupportsInt, str: str, tabstops: int = ..... method strikeOutPos (line 2891) | def strikeOutPos(self) -> int: ... method swap (line 2892) | def swap(self, other: QFontMetrics) -> None: ... method tightBoundingRect (line 2893) | def tightBoundingRect(self, text: str) -> PySide2.QtCore.QRect: ... method underlinePos (line 2894) | def underlinePos(self) -> int: ... method width (line 2896) | def width(self, arg__1: str, len: int, flags: typing.SupportsInt) -> i... method width (line 2898) | def width(self, arg__1: str, len: int = ...) -> int: ... method widthChar (line 2899) | def widthChar(self, arg__1: str) -> int: ... method xHeight (line 2900) | def xHeight(self) -> int: ... method __copy__ (line 2901) | def __copy__(self) -> None: ... method __eq__ (line 2902) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2903) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2904) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2905) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2906) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2907) | def __ne__(self, other: object) -> bool: ... class QFontMetricsF (line 2909) | class QFontMetricsF(shiboken2.Object): method __init__ (line 2911) | def __init__(self, font: QFont, pd: QPaintDevice) -> None: ... method __init__ (line 2913) | def __init__(self, font: QFont) -> None: ... method __init__ (line 2915) | def __init__(self, arg__1: QFontMetrics) -> None: ... method __init__ (line 2917) | def __init__(self, arg__1: QFontMetricsF) -> None: ... method ascent (line 2918) | def ascent(self) -> float: ... method averageCharWidth (line 2919) | def averageCharWidth(self) -> float: ... method boundingRect (line 2921) | def boundingRect(self, r: PySide2.QtCore.QRectF, flags: typing.Support... method boundingRect (line 2923) | def boundingRect(self, string: str) -> PySide2.QtCore.QRectF: ... method boundingRectChar (line 2924) | def boundingRectChar(self, arg__1: str) -> PySide2.QtCore.QRectF: ... method capHeight (line 2925) | def capHeight(self) -> float: ... method descent (line 2926) | def descent(self) -> float: ... method elidedText (line 2927) | def elidedText(self, text: str, mode: PySide2.QtCore.Qt.TextElideMode,... method fontDpi (line 2928) | def fontDpi(self) -> float: ... method height (line 2929) | def height(self) -> float: ... method horizontalAdvance (line 2931) | def horizontalAdvance(self, string: str, length: int = ...) -> float: ... method horizontalAdvance (line 2933) | def horizontalAdvance(self, arg__1: str) -> float: ... method inFont (line 2934) | def inFont(self, arg__1: str) -> bool: ... method inFontUcs4 (line 2935) | def inFontUcs4(self, ucs4: int) -> bool: ... method leading (line 2936) | def leading(self) -> float: ... method leftBearing (line 2937) | def leftBearing(self, arg__1: str) -> float: ... method lineSpacing (line 2938) | def lineSpacing(self) -> float: ... method lineWidth (line 2939) | def lineWidth(self) -> float: ... method maxWidth (line 2940) | def maxWidth(self) -> float: ... method minLeftBearing (line 2941) | def minLeftBearing(self) -> float: ... method minRightBearing (line 2942) | def minRightBearing(self) -> float: ... method overlinePos (line 2943) | def overlinePos(self) -> float: ... method rightBearing (line 2944) | def rightBearing(self, arg__1: str) -> float: ... method size (line 2945) | def size(self, flags: typing.SupportsInt, str: str, tabstops: int = ..... method strikeOutPos (line 2946) | def strikeOutPos(self) -> float: ... method swap (line 2947) | def swap(self, other: QFontMetricsF) -> None: ... method tightBoundingRect (line 2948) | def tightBoundingRect(self, text: str) -> PySide2.QtCore.QRectF: ... method underlinePos (line 2949) | def underlinePos(self) -> float: ... method width (line 2950) | def width(self, string: str) -> float: ... method widthChar (line 2951) | def widthChar(self, arg__1: str) -> float: ... method xHeight (line 2952) | def xHeight(self) -> float: ... method __copy__ (line 2953) | def __copy__(self) -> None: ... method __eq__ (line 2954) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2955) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2956) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2957) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2958) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2959) | def __ne__(self, other: object) -> bool: ... class QGradient (line 2961) | class QGradient(shiboken2.Object): class CoordinateMode (line 2962) | class CoordinateMode: method __init__ (line 2970) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2971) | def __add__(self, other: typing.SupportsInt) -> QGradient.Coordinate... method __and__ (line 2972) | def __and__(self, other: typing.SupportsInt) -> QGradient.Coordinate... method __bool__ (line 2973) | def __bool__(self) -> bool: ... method __eq__ (line 2974) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2975) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2976) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2977) | def __hash__(self) -> int: ... method __index__ (line 2978) | def __index__(self) -> int: ... method __int__ (line 2979) | def __int__(self) -> int: ... method __le__ (line 2980) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2981) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2982) | def __mul__(self, other: typing.SupportsInt) -> QGradient.Coordinate... method __ne__ (line 2983) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2984) | def __or__(self, other: typing.SupportsInt) -> QGradient.CoordinateM... method __pos__ (line 2985) | def __pos__(self): ... method __radd__ (line 2986) | def __radd__(self, other: typing.SupportsInt) -> QGradient.Coordinat... method __rand__ (line 2987) | def __rand__(self, other: typing.SupportsInt) -> QGradient.Coordinat... method __rmul__ (line 2988) | def __rmul__(self, other: typing.SupportsInt) -> QGradient.Coordinat... method __ror__ (line 2989) | def __ror__(self, other: typing.SupportsInt) -> QGradient.Coordinate... method __rsub__ (line 2990) | def __rsub__(self, other: typing.SupportsInt) -> QGradient.Coordinat... method __rxor__ (line 2991) | def __rxor__(self, other: typing.SupportsInt) -> QGradient.Coordinat... method __sub__ (line 2992) | def __sub__(self, other: typing.SupportsInt) -> QGradient.Coordinate... method __xor__ (line 2993) | def __xor__(self, other: typing.SupportsInt) -> QGradient.Coordinate... class InterpolationMode (line 2995) | class InterpolationMode: method __init__ (line 3001) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3002) | def __add__(self, other: typing.SupportsInt) -> QGradient.Interpolat... method __and__ (line 3003) | def __and__(self, other: typing.SupportsInt) -> QGradient.Interpolat... method __bool__ (line 3004) | def __bool__(self) -> bool: ... method __eq__ (line 3005) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3006) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3007) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3008) | def __hash__(self) -> int: ... method __index__ (line 3009) | def __index__(self) -> int: ... method __int__ (line 3010) | def __int__(self) -> int: ... method __le__ (line 3011) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3012) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3013) | def __mul__(self, other: typing.SupportsInt) -> QGradient.Interpolat... method __ne__ (line 3014) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3015) | def __or__(self, other: typing.SupportsInt) -> QGradient.Interpolati... method __pos__ (line 3016) | def __pos__(self): ... method __radd__ (line 3017) | def __radd__(self, other: typing.SupportsInt) -> QGradient.Interpola... method __rand__ (line 3018) | def __rand__(self, other: typing.SupportsInt) -> QGradient.Interpola... method __rmul__ (line 3019) | def __rmul__(self, other: typing.SupportsInt) -> QGradient.Interpola... method __ror__ (line 3020) | def __ror__(self, other: typing.SupportsInt) -> QGradient.Interpolat... method __rsub__ (line 3021) | def __rsub__(self, other: typing.SupportsInt) -> QGradient.Interpola... method __rxor__ (line 3022) | def __rxor__(self, other: typing.SupportsInt) -> QGradient.Interpola... method __sub__ (line 3023) | def __sub__(self, other: typing.SupportsInt) -> QGradient.Interpolat... method __xor__ (line 3024) | def __xor__(self, other: typing.SupportsInt) -> QGradient.Interpolat... class Preset (line 3026) | class Preset: method __init__ (line 3199) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3200) | def __add__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __and__ (line 3201) | def __and__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __bool__ (line 3202) | def __bool__(self) -> bool: ... method __eq__ (line 3203) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3204) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3205) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3206) | def __hash__(self) -> int: ... method __index__ (line 3207) | def __index__(self) -> int: ... method __int__ (line 3208) | def __int__(self) -> int: ... method __le__ (line 3209) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3210) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3211) | def __mul__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __ne__ (line 3212) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3213) | def __or__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __pos__ (line 3214) | def __pos__(self): ... method __radd__ (line 3215) | def __radd__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __rand__ (line 3216) | def __rand__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __rmul__ (line 3217) | def __rmul__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __ror__ (line 3218) | def __ror__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __rsub__ (line 3219) | def __rsub__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __rxor__ (line 3220) | def __rxor__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __sub__ (line 3221) | def __sub__(self, other: typing.SupportsInt) -> QGradient.Preset: ... method __xor__ (line 3222) | def __xor__(self, other: typing.SupportsInt) -> QGradient.Preset: ... class Spread (line 3224) | class Spread: method __init__ (line 3231) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3232) | def __add__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __and__ (line 3233) | def __and__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __bool__ (line 3234) | def __bool__(self) -> bool: ... method __eq__ (line 3235) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3236) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3237) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3238) | def __hash__(self) -> int: ... method __index__ (line 3239) | def __index__(self) -> int: ... method __int__ (line 3240) | def __int__(self) -> int: ... method __le__ (line 3241) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3242) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3243) | def __mul__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __ne__ (line 3244) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3245) | def __or__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __pos__ (line 3246) | def __pos__(self): ... method __radd__ (line 3247) | def __radd__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __rand__ (line 3248) | def __rand__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __rmul__ (line 3249) | def __rmul__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __ror__ (line 3250) | def __ror__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __rsub__ (line 3251) | def __rsub__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __rxor__ (line 3252) | def __rxor__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __sub__ (line 3253) | def __sub__(self, other: typing.SupportsInt) -> QGradient.Spread: ... method __xor__ (line 3254) | def __xor__(self, other: typing.SupportsInt) -> QGradient.Spread: ... class Type (line 3256) | class Type: method __init__ (line 3264) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3265) | def __add__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __and__ (line 3266) | def __and__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __bool__ (line 3267) | def __bool__(self) -> bool: ... method __eq__ (line 3268) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3269) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3270) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3271) | def __hash__(self) -> int: ... method __index__ (line 3272) | def __index__(self) -> int: ... method __int__ (line 3273) | def __int__(self) -> int: ... method __le__ (line 3274) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3275) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3276) | def __mul__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __ne__ (line 3277) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3278) | def __or__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __pos__ (line 3279) | def __pos__(self): ... method __radd__ (line 3280) | def __radd__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __rand__ (line 3281) | def __rand__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __rmul__ (line 3282) | def __rmul__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __ror__ (line 3283) | def __ror__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __rsub__ (line 3284) | def __rsub__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __rxor__ (line 3285) | def __rxor__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __sub__ (line 3286) | def __sub__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __xor__ (line 3287) | def __xor__(self, other: typing.SupportsInt) -> QGradient.Type: ... method __init__ (line 3471) | def __init__(self, arg__1: QGradient.Preset) -> None: ... method __init__ (line 3473) | def __init__(self, QGradient: QGradient) -> None: ... method __init__ (line 3475) | def __init__(self) -> None: ... method coordinateMode (line 3476) | def coordinateMode(self) -> QGradient.CoordinateMode: ... method interpolationMode (line 3477) | def interpolationMode(self) -> QGradient.InterpolationMode: ... method setColorAt (line 3478) | def setColorAt(self, pos: float, color: QColor | PySide2.QtCore.Qt.Glo... method setCoordinateMode (line 3479) | def setCoordinateMode(self, mode: QGradient.CoordinateMode) -> None: ... method setInterpolationMode (line 3480) | def setInterpolationMode(self, mode: QGradient.InterpolationMode) -> N... method setSpread (line 3481) | def setSpread(self, spread: QGradient.Spread) -> None: ... method setStops (line 3482) | def setStops(self, stops: list[tuple[float, QColor]]) -> None: ... method spread (line 3483) | def spread(self) -> QGradient.Spread: ... method stops (line 3484) | def stops(self) -> list[tuple[float, QColor]]: ... method type (line 3485) | def type(self) -> QGradient.Type: ... method __copy__ (line 3486) | def __copy__(self) -> None: ... method __eq__ (line 3487) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3488) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3489) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3490) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3491) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3492) | def __ne__(self, other: object) -> bool: ... class QGuiApplication (line 3494) | class QGuiApplication(PySide2.QtCore.QCoreApplication): method __init__ (line 3511) | def __init__(self, arg__1: typing.Iterable[str], destroyed: typing.Cal... method __init__ (line 3513) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method allWindows (line 3515) | def allWindows() -> list[QWindow]: ... method applicationDisplayName (line 3517) | def applicationDisplayName() -> str: ... method applicationState (line 3519) | def applicationState() -> PySide2.QtCore.Qt.ApplicationState: ... method changeOverrideCursor (line 3521) | def changeOverrideCursor(arg__1: QCursor | PySide2.QtCore.Qt.CursorSha... method clipboard (line 3523) | def clipboard() -> QClipboard: ... method desktopFileName (line 3525) | def desktopFileName() -> str: ... method desktopSettingsAware (line 3527) | def desktopSettingsAware() -> bool: ... method devicePixelRatio (line 3528) | def devicePixelRatio(self) -> float: ... method event (line 3529) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method exec_ (line 3531) | def exec_() -> int: ... method focusObject (line 3533) | def focusObject() -> PySide2.QtCore.QObject: ... method focusWindow (line 3535) | def focusWindow() -> QWindow: ... method font (line 3537) | def font() -> QFont: ... method highDpiScaleFactorRoundingPolicy (line 3539) | def highDpiScaleFactorRoundingPolicy() -> PySide2.QtCore.Qt.HighDpiSca... method inputMethod (line 3541) | def inputMethod() -> QInputMethod: ... method isFallbackSessionManagementEnabled (line 3543) | def isFallbackSessionManagementEnabled() -> bool: ... method isLeftToRight (line 3545) | def isLeftToRight() -> bool: ... method isRightToLeft (line 3547) | def isRightToLeft() -> bool: ... method isSavingSession (line 3548) | def isSavingSession(self) -> bool: ... method isSessionRestored (line 3549) | def isSessionRestored(self) -> bool: ... method keyboardModifiers (line 3551) | def keyboardModifiers() -> PySide2.QtCore.Qt.KeyboardModifiers | PySid... method layoutDirection (line 3553) | def layoutDirection() -> PySide2.QtCore.Qt.LayoutDirection: ... method modalWindow (line 3555) | def modalWindow() -> QWindow: ... method mouseButtons (line 3557) | def mouseButtons() -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.... method notify (line 3558) | def notify(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.QtCor... method overrideCursor (line 3560) | def overrideCursor() -> QCursor: ... method palette (line 3562) | def palette() -> QPalette: ... method platformName (line 3564) | def platformName() -> str: ... method primaryScreen (line 3566) | def primaryScreen() -> QScreen: ... method queryKeyboardModifiers (line 3568) | def queryKeyboardModifiers() -> PySide2.QtCore.Qt.KeyboardModifiers | ... method quitOnLastWindowClosed (line 3570) | def quitOnLastWindowClosed() -> bool: ... method restoreOverrideCursor (line 3572) | def restoreOverrideCursor() -> None: ... method screenAt (line 3574) | def screenAt(point: PySide2.QtCore.QPoint) -> QScreen: ... method screens (line 3576) | def screens() -> list[QScreen]: ... method sessionId (line 3577) | def sessionId(self) -> str: ... method sessionKey (line 3578) | def sessionKey(self) -> str: ... method setApplicationDisplayName (line 3580) | def setApplicationDisplayName(name: str) -> None: ... method setDesktopFileName (line 3582) | def setDesktopFileName(name: str) -> None: ... method setDesktopSettingsAware (line 3584) | def setDesktopSettingsAware(on: bool) -> None: ... method setFallbackSessionManagementEnabled (line 3586) | def setFallbackSessionManagementEnabled(arg__1: bool) -> None: ... method setFont (line 3588) | def setFont(arg__1: QFont) -> None: ... method setHighDpiScaleFactorRoundingPolicy (line 3590) | def setHighDpiScaleFactorRoundingPolicy(policy: PySide2.QtCore.Qt.High... method setLayoutDirection (line 3592) | def setLayoutDirection(direction: PySide2.QtCore.Qt.LayoutDirection) -... method setOverrideCursor (line 3594) | def setOverrideCursor(arg__1: QCursor | PySide2.QtCore.Qt.CursorShape)... method setPalette (line 3596) | def setPalette(pal: QPalette) -> None: ... method setQuitOnLastWindowClosed (line 3598) | def setQuitOnLastWindowClosed(quit: bool) -> None: ... method setWindowIcon (line 3600) | def setWindowIcon(icon: QIcon) -> None: ... method styleHints (line 3602) | def styleHints() -> QStyleHints: ... method sync (line 3604) | def sync() -> None: ... method topLevelAt (line 3606) | def topLevelAt(pos: PySide2.QtCore.QPoint) -> QWindow: ... method topLevelWindows (line 3608) | def topLevelWindows() -> list[QWindow]: ... method windowIcon (line 3610) | def windowIcon() -> QIcon: ... class QHelpEvent (line 3612) | class QHelpEvent(PySide2.QtCore.QEvent): method __init__ (line 3613) | def __init__(self, type: PySide2.QtCore.QEvent.Type, pos: PySide2.QtCo... method globalPos (line 3614) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method globalX (line 3615) | def globalX(self) -> int: ... method globalY (line 3616) | def globalY(self) -> int: ... method pos (line 3617) | def pos(self) -> PySide2.QtCore.QPoint: ... method x (line 3618) | def x(self) -> int: ... method y (line 3619) | def y(self) -> int: ... class QHideEvent (line 3621) | class QHideEvent(PySide2.QtCore.QEvent): method __init__ (line 3622) | def __init__(self) -> None: ... class QHoverEvent (line 3624) | class QHoverEvent(QInputEvent): method __init__ (line 3625) | def __init__(self, type: PySide2.QtCore.QEvent.Type, pos: PySide2.QtCo... method oldPos (line 3626) | def oldPos(self) -> PySide2.QtCore.QPoint: ... method oldPosF (line 3627) | def oldPosF(self) -> PySide2.QtCore.QPointF: ... method pos (line 3628) | def pos(self) -> PySide2.QtCore.QPoint: ... method posF (line 3629) | def posF(self) -> PySide2.QtCore.QPointF: ... class QIcon (line 3631) | class QIcon(shiboken2.Object): class Mode (line 3632) | class Mode: method __init__ (line 3640) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3641) | def __add__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __and__ (line 3642) | def __and__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __bool__ (line 3643) | def __bool__(self) -> bool: ... method __eq__ (line 3644) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3645) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3646) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3647) | def __hash__(self) -> int: ... method __index__ (line 3648) | def __index__(self) -> int: ... method __int__ (line 3649) | def __int__(self) -> int: ... method __le__ (line 3650) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3651) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3652) | def __mul__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __ne__ (line 3653) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3654) | def __or__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __pos__ (line 3655) | def __pos__(self): ... method __radd__ (line 3656) | def __radd__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __rand__ (line 3657) | def __rand__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __rmul__ (line 3658) | def __rmul__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __ror__ (line 3659) | def __ror__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __rsub__ (line 3660) | def __rsub__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __rxor__ (line 3661) | def __rxor__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __sub__ (line 3662) | def __sub__(self, other: typing.SupportsInt) -> QIcon.Mode: ... method __xor__ (line 3663) | def __xor__(self, other: typing.SupportsInt) -> QIcon.Mode: ... class State (line 3665) | class State: method __init__ (line 3671) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3672) | def __add__(self, other: typing.SupportsInt) -> QIcon.State: ... method __and__ (line 3673) | def __and__(self, other: typing.SupportsInt) -> QIcon.State: ... method __bool__ (line 3674) | def __bool__(self) -> bool: ... method __eq__ (line 3675) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3676) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3677) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3678) | def __hash__(self) -> int: ... method __index__ (line 3679) | def __index__(self) -> int: ... method __int__ (line 3680) | def __int__(self) -> int: ... method __le__ (line 3681) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3682) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3683) | def __mul__(self, other: typing.SupportsInt) -> QIcon.State: ... method __ne__ (line 3684) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3685) | def __or__(self, other: typing.SupportsInt) -> QIcon.State: ... method __pos__ (line 3686) | def __pos__(self): ... method __radd__ (line 3687) | def __radd__(self, other: typing.SupportsInt) -> QIcon.State: ... method __rand__ (line 3688) | def __rand__(self, other: typing.SupportsInt) -> QIcon.State: ... method __rmul__ (line 3689) | def __rmul__(self, other: typing.SupportsInt) -> QIcon.State: ... method __ror__ (line 3690) | def __ror__(self, other: typing.SupportsInt) -> QIcon.State: ... method __rsub__ (line 3691) | def __rsub__(self, other: typing.SupportsInt) -> QIcon.State: ... method __rxor__ (line 3692) | def __rxor__(self, other: typing.SupportsInt) -> QIcon.State: ... method __sub__ (line 3693) | def __sub__(self, other: typing.SupportsInt) -> QIcon.State: ... method __xor__ (line 3694) | def __xor__(self, other: typing.SupportsInt) -> QIcon.State: ... method __init__ (line 3702) | def __init__(self, pixmap: QPixmap) -> None: ... method __init__ (line 3704) | def __init__(self, other: QIcon) -> None: ... method __init__ (line 3706) | def __init__(self, fileName: str) -> None: ... method __init__ (line 3708) | def __init__(self, engine: QIconEngine) -> None: ... method __init__ (line 3710) | def __init__(self) -> None: ... method actualSize (line 3712) | def actualSize(self, window: QWindow, size: PySide2.QtCore.QSize, mode... method actualSize (line 3714) | def actualSize(self, size: PySide2.QtCore.QSize, mode: QIcon.Mode = ..... method addFile (line 3715) | def addFile(self, fileName: str, size: PySide2.QtCore.QSize = ..., mod... method addPixmap (line 3716) | def addPixmap(self, pixmap: QPixmap, mode: QIcon.Mode = ..., state: QI... method availableSizes (line 3717) | def availableSizes(self, mode: QIcon.Mode = ..., state: QIcon.State = ... method cacheKey (line 3718) | def cacheKey(self) -> int: ... method fallbackSearchPaths (line 3720) | def fallbackSearchPaths() -> list[str]: ... method fallbackThemeName (line 3722) | def fallbackThemeName() -> str: ... method fromTheme (line 3725) | def fromTheme(name: str, fallback: QIcon) -> QIcon: ... method fromTheme (line 3728) | def fromTheme(name: str) -> QIcon: ... method hasThemeIcon (line 3730) | def hasThemeIcon(name: str) -> bool: ... method isMask (line 3731) | def isMask(self) -> bool: ... method isNull (line 3732) | def isNull(self) -> bool: ... method name (line 3733) | def name(self) -> str: ... method paint (line 3735) | def paint(self, painter: QPainter, x: int, y: int, w: int, h: int, ali... method paint (line 3737) | def paint(self, painter: QPainter, rect: PySide2.QtCore.QRect, alignme... method pixmap (line 3739) | def pixmap(self, window: QWindow, size: PySide2.QtCore.QSize, mode: QI... method pixmap (line 3741) | def pixmap(self, w: int, h: int, mode: QIcon.Mode = ..., state: QIcon.... method pixmap (line 3743) | def pixmap(self, size: PySide2.QtCore.QSize, mode: QIcon.Mode = ..., s... method pixmap (line 3745) | def pixmap(self, extent: int, mode: QIcon.Mode = ..., state: QIcon.Sta... method setFallbackSearchPaths (line 3747) | def setFallbackSearchPaths(paths: typing.Iterable[str]) -> None: ... method setFallbackThemeName (line 3749) | def setFallbackThemeName(name: str) -> None: ... method setIsMask (line 3750) | def setIsMask(self, isMask: bool) -> None: ... method setThemeName (line 3752) | def setThemeName(path: str) -> None: ... method setThemeSearchPaths (line 3754) | def setThemeSearchPaths(searchpath: typing.Iterable[str]) -> None: ... method swap (line 3755) | def swap(self, other: QIcon) -> None: ... method themeName (line 3757) | def themeName() -> str: ... method themeSearchPaths (line 3759) | def themeSearchPaths() -> list[str]: ... method __bool__ (line 3760) | def __bool__(self) -> bool: ... method __copy__ (line 3761) | def __copy__(self) -> None: ... method __lshift__ (line 3762) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rlshift__ (line 3763) | def __rlshift__(self, other): ... method __rrshift__ (line 3764) | def __rrshift__(self, other): ... method __rshift__ (line 3765) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QIconDragEvent (line 3767) | class QIconDragEvent(PySide2.QtCore.QEvent): method __init__ (line 3768) | def __init__(self) -> None: ... class QIconEngine (line 3770) | class QIconEngine(shiboken2.Object): class AvailableSizesArgument (line 3771) | class AvailableSizesArgument(shiboken2.Object): method __init__ (line 3775) | def __init__(self) -> None: ... class IconEngineHook (line 3777) | class IconEngineHook: method __init__ (line 3785) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3786) | def __add__(self, other: typing.SupportsInt) -> QIconEngine.IconEngi... method __and__ (line 3787) | def __and__(self, other: typing.SupportsInt) -> QIconEngine.IconEngi... method __bool__ (line 3788) | def __bool__(self) -> bool: ... method __eq__ (line 3789) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3790) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3791) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3792) | def __hash__(self) -> int: ... method __index__ (line 3793) | def __index__(self) -> int: ... method __int__ (line 3794) | def __int__(self) -> int: ... method __le__ (line 3795) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3796) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3797) | def __mul__(self, other: typing.SupportsInt) -> QIconEngine.IconEngi... method __ne__ (line 3798) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3799) | def __or__(self, other: typing.SupportsInt) -> QIconEngine.IconEngin... method __pos__ (line 3800) | def __pos__(self): ... method __radd__ (line 3801) | def __radd__(self, other: typing.SupportsInt) -> QIconEngine.IconEng... method __rand__ (line 3802) | def __rand__(self, other: typing.SupportsInt) -> QIconEngine.IconEng... method __rmul__ (line 3803) | def __rmul__(self, other: typing.SupportsInt) -> QIconEngine.IconEng... method __ror__ (line 3804) | def __ror__(self, other: typing.SupportsInt) -> QIconEngine.IconEngi... method __rsub__ (line 3805) | def __rsub__(self, other: typing.SupportsInt) -> QIconEngine.IconEng... method __rxor__ (line 3806) | def __rxor__(self, other: typing.SupportsInt) -> QIconEngine.IconEng... method __sub__ (line 3807) | def __sub__(self, other: typing.SupportsInt) -> QIconEngine.IconEngi... method __xor__ (line 3808) | def __xor__(self, other: typing.SupportsInt) -> QIconEngine.IconEngi... method __init__ (line 3814) | def __init__(self, other: QIconEngine) -> None: ... method __init__ (line 3816) | def __init__(self) -> None: ... method actualSize (line 3817) | def actualSize(self, size: PySide2.QtCore.QSize, mode: QIcon.Mode, sta... method addFile (line 3818) | def addFile(self, fileName: str, size: PySide2.QtCore.QSize, mode: QIc... method addPixmap (line 3819) | def addPixmap(self, pixmap: QPixmap, mode: QIcon.Mode, state: QIcon.St... method availableSizes (line 3820) | def availableSizes(self, mode: QIcon.Mode = ..., state: QIcon.State = ... method clone (line 3821) | def clone(self) -> QIconEngine: ... method iconName (line 3822) | def iconName(self) -> str: ... method isNull (line 3823) | def isNull(self) -> bool: ... method key (line 3824) | def key(self) -> str: ... method paint (line 3825) | def paint(self, painter: QPainter, rect: PySide2.QtCore.QRect, mode: Q... method pixmap (line 3826) | def pixmap(self, size: PySide2.QtCore.QSize, mode: QIcon.Mode, state: ... method read (line 3827) | def read(self, in_: PySide2.QtCore.QDataStream) -> bool: ... method scaledPixmap (line 3828) | def scaledPixmap(self, size: PySide2.QtCore.QSize, mode: QIcon.Mode, s... method write (line 3829) | def write(self, out: PySide2.QtCore.QDataStream) -> bool: ... method __bool__ (line 3830) | def __bool__(self) -> bool: ... class QImage (line 3832) | class QImage(QPaintDevice): class Format (line 3833) | class Format: method __init__ (line 3868) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3869) | def __add__(self, other: typing.SupportsInt) -> QImage.Format: ... method __and__ (line 3870) | def __and__(self, other: typing.SupportsInt) -> QImage.Format: ... method __bool__ (line 3871) | def __bool__(self) -> bool: ... method __eq__ (line 3872) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3873) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3874) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3875) | def __hash__(self) -> int: ... method __index__ (line 3876) | def __index__(self) -> int: ... method __int__ (line 3877) | def __int__(self) -> int: ... method __le__ (line 3878) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3879) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3880) | def __mul__(self, other: typing.SupportsInt) -> QImage.Format: ... method __ne__ (line 3881) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3882) | def __or__(self, other: typing.SupportsInt) -> QImage.Format: ... method __pos__ (line 3883) | def __pos__(self): ... method __radd__ (line 3884) | def __radd__(self, other: typing.SupportsInt) -> QImage.Format: ... method __rand__ (line 3885) | def __rand__(self, other: typing.SupportsInt) -> QImage.Format: ... method __rmul__ (line 3886) | def __rmul__(self, other: typing.SupportsInt) -> QImage.Format: ... method __ror__ (line 3887) | def __ror__(self, other: typing.SupportsInt) -> QImage.Format: ... method __rsub__ (line 3888) | def __rsub__(self, other: typing.SupportsInt) -> QImage.Format: ... method __rxor__ (line 3889) | def __rxor__(self, other: typing.SupportsInt) -> QImage.Format: ... method __sub__ (line 3890) | def __sub__(self, other: typing.SupportsInt) -> QImage.Format: ... method __xor__ (line 3891) | def __xor__(self, other: typing.SupportsInt) -> QImage.Format: ... class InvertMode (line 3893) | class InvertMode: method __init__ (line 3899) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3900) | def __add__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __and__ (line 3901) | def __and__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __bool__ (line 3902) | def __bool__(self) -> bool: ... method __eq__ (line 3903) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3904) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3905) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3906) | def __hash__(self) -> int: ... method __index__ (line 3907) | def __index__(self) -> int: ... method __int__ (line 3908) | def __int__(self) -> int: ... method __le__ (line 3909) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3910) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3911) | def __mul__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __ne__ (line 3912) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3913) | def __or__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __pos__ (line 3914) | def __pos__(self): ... method __radd__ (line 3915) | def __radd__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __rand__ (line 3916) | def __rand__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __rmul__ (line 3917) | def __rmul__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __ror__ (line 3918) | def __ror__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __rsub__ (line 3919) | def __rsub__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __rxor__ (line 3920) | def __rxor__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __sub__ (line 3921) | def __sub__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __xor__ (line 3922) | def __xor__(self, other: typing.SupportsInt) -> QImage.InvertMode: ... method __init__ (line 3957) | def __init__(self, data: bytes, width: int, height: int, bytesPerLine:... method __init__ (line 3959) | def __init__(self, data: bytes, width: int, height: int, format: QImag... method __init__ (line 3961) | def __init__(self, arg__1: str, arg__2: int, arg__3: int, arg__4: int,... method __init__ (line 3963) | def __init__(self, arg__1: str, arg__2: int, arg__3: int, arg__4: QIma... method __init__ (line 3965) | def __init__(self, width: int, height: int, format: QImage.Format) -> ... method __init__ (line 3967) | def __init__(self, size: PySide2.QtCore.QSize, format: QImage.Format) ... method __init__ (line 3969) | def __init__(self, fileName: str, format: bytes | None = ...) -> None:... method __init__ (line 3971) | def __init__(self, xpm: typing.Iterable[str]) -> None: ... method __init__ (line 3973) | def __init__(self, arg__1: QImage) -> None: ... method __init__ (line 3975) | def __init__(self) -> None: ... method allGray (line 3976) | def allGray(self) -> bool: ... method alphaChannel (line 3977) | def alphaChannel(self) -> QImage: ... method bitPlaneCount (line 3978) | def bitPlaneCount(self) -> int: ... method bits (line 3979) | def bits(self) -> bytes: ... method byteCount (line 3980) | def byteCount(self) -> int: ... method bytesPerLine (line 3981) | def bytesPerLine(self) -> int: ... method cacheKey (line 3982) | def cacheKey(self) -> int: ... method color (line 3983) | def color(self, i: int) -> int: ... method colorCount (line 3984) | def colorCount(self) -> int: ... method colorSpace (line 3985) | def colorSpace(self) -> QColorSpace: ... method colorTable (line 3986) | def colorTable(self) -> list[int]: ... method constBits (line 3987) | def constBits(self) -> bytes: ... method constScanLine (line 3988) | def constScanLine(self, arg__1: int) -> bytes: ... method convertTo (line 3989) | def convertTo(self, f: QImage.Format, flags: PySide2.QtCore.Qt.ImageCo... method convertToColorSpace (line 3990) | def convertToColorSpace(self, arg__1: QColorSpace) -> None: ... method convertToFormat (line 3992) | def convertToFormat(self, f: QImage.Format, colorTable: list[int], fla... method convertToFormat (line 3994) | def convertToFormat(self, f: QImage.Format, flags: PySide2.QtCore.Qt.I... method convertToFormat_helper (line 3995) | def convertToFormat_helper(self, format: QImage.Format, flags: PySide2... method convertToFormat_inplace (line 3996) | def convertToFormat_inplace(self, format: QImage.Format, flags: PySide... method convertedToColorSpace (line 3997) | def convertedToColorSpace(self, arg__1: QColorSpace) -> QImage: ... method copy (line 3999) | def copy(self, x: int, y: int, w: int, h: int) -> QImage: ... method copy (line 4001) | def copy(self, rect: PySide2.QtCore.QRect = ...) -> QImage: ... method createAlphaMask (line 4002) | def createAlphaMask(self, flags: PySide2.QtCore.Qt.ImageConversionFlag... method createHeuristicMask (line 4003) | def createHeuristicMask(self, clipTight: bool = ...) -> QImage: ... method createMaskFromColor (line 4004) | def createMaskFromColor(self, color: int, mode: PySide2.QtCore.Qt.Mask... method depth (line 4005) | def depth(self) -> int: ... method devType (line 4006) | def devType(self) -> int: ... method devicePixelRatio (line 4007) | def devicePixelRatio(self) -> float: ... # type: ignore[override] method dotsPerMeterX (line 4008) | def dotsPerMeterX(self) -> int: ... method dotsPerMeterY (line 4009) | def dotsPerMeterY(self) -> int: ... method fill (line 4011) | def fill(self, pixel: int) -> None: ... method fill (line 4013) | def fill(self, color: PySide2.QtCore.Qt.GlobalColor) -> None: ... method fill (line 4015) | def fill(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int) ->... method format (line 4016) | def format(self) -> QImage.Format: ... method fromData (line 4018) | def fromData(data: PySide2.QtCore.QByteArray | bytes, format: bytes | ... method hasAlphaChannel (line 4019) | def hasAlphaChannel(self) -> bool: ... method height (line 4020) | def height(self) -> int: ... method invertPixels (line 4021) | def invertPixels(self, mode: QImage.InvertMode = ...) -> None: ... method isGrayscale (line 4022) | def isGrayscale(self) -> bool: ... method isNull (line 4023) | def isNull(self) -> bool: ... method load (line 4025) | def load(self, fileName: str, format: bytes | None = ...) -> bool: ... method load (line 4027) | def load(self, device: PySide2.QtCore.QIODevice, format: bytes) -> boo... method loadFromData (line 4028) | def loadFromData(self, data: PySide2.QtCore.QByteArray | bytes, aforma... method metric (line 4029) | def metric(self, metric: QPaintDevice.PaintDeviceMetric) -> int: ... method mirrored (line 4030) | def mirrored(self, horizontally: bool = ..., vertically: bool = ...) -... method mirrored_helper (line 4031) | def mirrored_helper(self, horizontal: bool, vertical: bool) -> QImage:... method mirrored_inplace (line 4032) | def mirrored_inplace(self, horizontal: bool, vertical: bool) -> None: ... method offset (line 4033) | def offset(self) -> PySide2.QtCore.QPoint: ... method paintEngine (line 4034) | def paintEngine(self) -> QPaintEngine: ... method pixel (line 4036) | def pixel(self, x: int, y: int) -> int: ... method pixel (line 4038) | def pixel(self, pt: PySide2.QtCore.QPoint) -> int: ... method pixelColor (line 4040) | def pixelColor(self, x: int, y: int) -> QColor: ... method pixelColor (line 4042) | def pixelColor(self, pt: PySide2.QtCore.QPoint) -> QColor: ... method pixelFormat (line 4043) | def pixelFormat(self) -> QPixelFormat: ... method pixelIndex (line 4045) | def pixelIndex(self, x: int, y: int) -> int: ... method pixelIndex (line 4047) | def pixelIndex(self, pt: PySide2.QtCore.QPoint) -> int: ... method rect (line 4048) | def rect(self) -> PySide2.QtCore.QRect: ... method reinterpretAsFormat (line 4049) | def reinterpretAsFormat(self, f: QImage.Format) -> bool: ... method rgbSwapped (line 4050) | def rgbSwapped(self) -> QImage: ... method rgbSwapped_helper (line 4051) | def rgbSwapped_helper(self) -> QImage: ... method rgbSwapped_inplace (line 4052) | def rgbSwapped_inplace(self) -> None: ... method save (line 4054) | def save(self, fileName: str, format: bytes | None = ..., quality: int... method save (line 4056) | def save(self, device: PySide2.QtCore.QIODevice, format: bytes | None ... method scaled (line 4058) | def scaled(self, w: int, h: int, aspectMode: PySide2.QtCore.Qt.AspectR... method scaled (line 4060) | def scaled(self, s: PySide2.QtCore.QSize, aspectMode: PySide2.QtCore.Q... method scaledToHeight (line 4061) | def scaledToHeight(self, h: int, mode: PySide2.QtCore.Qt.Transformatio... method scaledToWidth (line 4062) | def scaledToWidth(self, w: int, mode: PySide2.QtCore.Qt.Transformation... method scanLine (line 4063) | def scanLine(self, arg__1: int) -> bytes: ... method setAlphaChannel (line 4064) | def setAlphaChannel(self, alphaChannel: QImage) -> None: ... method setColor (line 4065) | def setColor(self, i: int, c: int) -> None: ... method setColorCount (line 4066) | def setColorCount(self, arg__1: int) -> None: ... method setColorSpace (line 4067) | def setColorSpace(self, arg__1: QColorSpace) -> None: ... method setColorTable (line 4068) | def setColorTable(self, colors: list[int]) -> None: ... method setDevicePixelRatio (line 4069) | def setDevicePixelRatio(self, scaleFactor: float) -> None: ... method setDotsPerMeterX (line 4070) | def setDotsPerMeterX(self, arg__1: int) -> None: ... method setDotsPerMeterY (line 4071) | def setDotsPerMeterY(self, arg__1: int) -> None: ... method setOffset (line 4072) | def setOffset(self, arg__1: PySide2.QtCore.QPoint) -> None: ... method setPixel (line 4074) | def setPixel(self, x: int, y: int, index_or_rgb: int) -> None: ... method setPixel (line 4076) | def setPixel(self, pt: PySide2.QtCore.QPoint, index_or_rgb: int) -> No... method setPixelColor (line 4078) | def setPixelColor(self, x: int, y: int, c: QColor | PySide2.QtCore.Qt.... method setPixelColor (line 4080) | def setPixelColor(self, pt: PySide2.QtCore.QPoint, c: QColor | PySide2... method setText (line 4081) | def setText(self, key: str, value: str) -> None: ... method size (line 4082) | def size(self) -> PySide2.QtCore.QSize: ... method sizeInBytes (line 4083) | def sizeInBytes(self) -> int: ... method smoothScaled (line 4084) | def smoothScaled(self, w: int, h: int) -> QImage: ... method swap (line 4085) | def swap(self, other: QImage) -> None: ... method text (line 4086) | def text(self, key: str = ...) -> str: ... method textKeys (line 4087) | def textKeys(self) -> list[str]: ... method toImageFormat (line 4089) | def toImageFormat(format: QPixelFormat) -> QImage.Format: ... method toPixelFormat (line 4091) | def toPixelFormat(format: QImage.Format) -> QPixelFormat: ... method transformed (line 4093) | def transformed(self, matrix: QMatrix, mode: PySide2.QtCore.Qt.Transfo... method transformed (line 4095) | def transformed(self, matrix: QTransform, mode: PySide2.QtCore.Qt.Tran... method trueMatrix (line 4098) | def trueMatrix(arg__1: QMatrix, w: int, h: int) -> QMatrix: ... method trueMatrix (line 4101) | def trueMatrix(arg__1: QTransform, w: int, h: int) -> QTransform: ... method valid (line 4103) | def valid(self, x: int, y: int) -> bool: ... method valid (line 4105) | def valid(self, pt: PySide2.QtCore.QPoint) -> bool: ... method width (line 4106) | def width(self) -> int: ... method __bool__ (line 4107) | def __bool__(self) -> bool: ... method __copy__ (line 4108) | def __copy__(self) -> None: ... method __eq__ (line 4109) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4110) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4111) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4112) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4113) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 4114) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4115) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 4116) | def __rlshift__(self, other): ... method __rrshift__ (line 4117) | def __rrshift__(self, other): ... method __rshift__ (line 4118) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QImageIOHandler (line 4120) | class QImageIOHandler(shiboken2.Object): class ImageOption (line 4121) | class ImageOption: method __init__ (line 4145) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4146) | def __add__(self, other: typing.SupportsInt) -> QImageIOHandler.Imag... method __and__ (line 4147) | def __and__(self, other: typing.SupportsInt) -> QImageIOHandler.Imag... method __bool__ (line 4148) | def __bool__(self) -> bool: ... method __eq__ (line 4149) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4150) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4151) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4152) | def __hash__(self) -> int: ... method __index__ (line 4153) | def __index__(self) -> int: ... method __int__ (line 4154) | def __int__(self) -> int: ... method __le__ (line 4155) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4156) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4157) | def __mul__(self, other: typing.SupportsInt) -> QImageIOHandler.Imag... method __ne__ (line 4158) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4159) | def __or__(self, other: typing.SupportsInt) -> QImageIOHandler.Image... method __pos__ (line 4160) | def __pos__(self): ... method __radd__ (line 4161) | def __radd__(self, other: typing.SupportsInt) -> QImageIOHandler.Ima... method __rand__ (line 4162) | def __rand__(self, other: typing.SupportsInt) -> QImageIOHandler.Ima... method __rmul__ (line 4163) | def __rmul__(self, other: typing.SupportsInt) -> QImageIOHandler.Ima... method __ror__ (line 4164) | def __ror__(self, other: typing.SupportsInt) -> QImageIOHandler.Imag... method __rsub__ (line 4165) | def __rsub__(self, other: typing.SupportsInt) -> QImageIOHandler.Ima... method __rxor__ (line 4166) | def __rxor__(self, other: typing.SupportsInt) -> QImageIOHandler.Ima... method __sub__ (line 4167) | def __sub__(self, other: typing.SupportsInt) -> QImageIOHandler.Imag... method __xor__ (line 4168) | def __xor__(self, other: typing.SupportsInt) -> QImageIOHandler.Imag... class Transformation (line 4170) | class Transformation: method __init__ (line 4182) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4183) | def __and__(self, other: typing.SupportsInt) -> QImageIOHandler.Tran... method __bool__ (line 4184) | def __bool__(self) -> bool: ... method __eq__ (line 4185) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4186) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4187) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4188) | def __hash__(self) -> int: ... method __index__ (line 4189) | def __index__(self) -> int: ... method __int__ (line 4190) | def __int__(self) -> int: ... method __invert__ (line 4191) | def __invert__(self) -> QImageIOHandler.Transformations: ... method __le__ (line 4192) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4193) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4194) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4195) | def __or__(self, other: typing.SupportsInt) -> QImageIOHandler.Trans... method __rand__ (line 4196) | def __rand__(self, other: typing.SupportsInt) -> QImageIOHandler.Tra... method __ror__ (line 4197) | def __ror__(self, other: typing.SupportsInt) -> QImageIOHandler.Tran... method __rxor__ (line 4198) | def __rxor__(self, other: typing.SupportsInt) -> QImageIOHandler.Tra... method __xor__ (line 4199) | def __xor__(self, other: typing.SupportsInt) -> QImageIOHandler.Tran... class Transformations (line 4201) | class Transformations: method __init__ (line 4203) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4204) | def __and__(self, other: typing.SupportsInt) -> QImageIOHandler.Tran... method __bool__ (line 4205) | def __bool__(self) -> bool: ... method __eq__ (line 4206) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4207) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4208) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4209) | def __index__(self) -> int: ... method __int__ (line 4210) | def __int__(self) -> int: ... method __invert__ (line 4211) | def __invert__(self) -> QImageIOHandler.Transformations: ... method __le__ (line 4212) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4213) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4214) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4215) | def __or__(self, other: typing.SupportsInt) -> QImageIOHandler.Trans... method __rand__ (line 4216) | def __rand__(self, other: typing.SupportsInt) -> QImageIOHandler.Tra... method __ror__ (line 4217) | def __ror__(self, other: typing.SupportsInt) -> QImageIOHandler.Tran... method __rxor__ (line 4218) | def __rxor__(self, other: typing.SupportsInt) -> QImageIOHandler.Tra... method __xor__ (line 4219) | def __xor__(self, other: typing.SupportsInt) -> QImageIOHandler.Tran... method __init__ (line 4248) | def __init__(self) -> None: ... method canRead (line 4249) | def canRead(self) -> bool: ... method currentImageNumber (line 4250) | def currentImageNumber(self) -> int: ... method currentImageRect (line 4251) | def currentImageRect(self) -> PySide2.QtCore.QRect: ... method device (line 4252) | def device(self) -> PySide2.QtCore.QIODevice: ... method format (line 4253) | def format(self) -> PySide2.QtCore.QByteArray: ... method imageCount (line 4254) | def imageCount(self) -> int: ... method jumpToImage (line 4255) | def jumpToImage(self, imageNumber: int) -> bool: ... method jumpToNextImage (line 4256) | def jumpToNextImage(self) -> bool: ... method loopCount (line 4257) | def loopCount(self) -> int: ... method name (line 4258) | def name(self) -> PySide2.QtCore.QByteArray: ... method nextImageDelay (line 4259) | def nextImageDelay(self) -> int: ... method option (line 4260) | def option(self, option: QImageIOHandler.ImageOption) -> typing.Any: ... method read (line 4261) | def read(self, image: QImage) -> bool: ... method setDevice (line 4262) | def setDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setFormat (line 4263) | def setFormat(self, format: PySide2.QtCore.QByteArray | bytes) -> None... method setOption (line 4264) | def setOption(self, option: QImageIOHandler.ImageOption, value: typing... method supportsOption (line 4265) | def supportsOption(self, option: QImageIOHandler.ImageOption) -> bool:... method write (line 4266) | def write(self, image: QImage) -> bool: ... class QImageReader (line 4268) | class QImageReader(shiboken2.Object): class ImageReaderError (line 4269) | class ImageReaderError: method __init__ (line 4278) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4279) | def __add__(self, other: typing.SupportsInt) -> QImageReader.ImageRe... method __and__ (line 4280) | def __and__(self, other: typing.SupportsInt) -> QImageReader.ImageRe... method __bool__ (line 4281) | def __bool__(self) -> bool: ... method __eq__ (line 4282) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4283) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4284) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4285) | def __hash__(self) -> int: ... method __index__ (line 4286) | def __index__(self) -> int: ... method __int__ (line 4287) | def __int__(self) -> int: ... method __le__ (line 4288) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4289) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4290) | def __mul__(self, other: typing.SupportsInt) -> QImageReader.ImageRe... method __ne__ (line 4291) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4292) | def __or__(self, other: typing.SupportsInt) -> QImageReader.ImageRea... method __pos__ (line 4293) | def __pos__(self): ... method __radd__ (line 4294) | def __radd__(self, other: typing.SupportsInt) -> QImageReader.ImageR... method __rand__ (line 4295) | def __rand__(self, other: typing.SupportsInt) -> QImageReader.ImageR... method __rmul__ (line 4296) | def __rmul__(self, other: typing.SupportsInt) -> QImageReader.ImageR... method __ror__ (line 4297) | def __ror__(self, other: typing.SupportsInt) -> QImageReader.ImageRe... method __rsub__ (line 4298) | def __rsub__(self, other: typing.SupportsInt) -> QImageReader.ImageR... method __rxor__ (line 4299) | def __rxor__(self, other: typing.SupportsInt) -> QImageReader.ImageR... method __sub__ (line 4300) | def __sub__(self, other: typing.SupportsInt) -> QImageReader.ImageRe... method __xor__ (line 4301) | def __xor__(self, other: typing.SupportsInt) -> QImageReader.ImageRe... method __init__ (line 4308) | def __init__(self, fileName: str, format: PySide2.QtCore.QByteArray | ... method __init__ (line 4310) | def __init__(self, device: PySide2.QtCore.QIODevice, format: PySide2.Q... method __init__ (line 4312) | def __init__(self) -> None: ... method autoDetectImageFormat (line 4313) | def autoDetectImageFormat(self) -> bool: ... method autoTransform (line 4314) | def autoTransform(self) -> bool: ... method backgroundColor (line 4315) | def backgroundColor(self) -> QColor: ... method canRead (line 4316) | def canRead(self) -> bool: ... method clipRect (line 4317) | def clipRect(self) -> PySide2.QtCore.QRect: ... method currentImageNumber (line 4318) | def currentImageNumber(self) -> int: ... method currentImageRect (line 4319) | def currentImageRect(self) -> PySide2.QtCore.QRect: ... method decideFormatFromContent (line 4320) | def decideFormatFromContent(self) -> bool: ... method device (line 4321) | def device(self) -> PySide2.QtCore.QIODevice: ... method error (line 4322) | def error(self) -> QImageReader.ImageReaderError: ... method errorString (line 4323) | def errorString(self) -> str: ... method fileName (line 4324) | def fileName(self) -> str: ... method format (line 4325) | def format(self) -> PySide2.QtCore.QByteArray: ... method gamma (line 4326) | def gamma(self) -> float: ... method imageCount (line 4327) | def imageCount(self) -> int: ... method imageFormat (line 4329) | def imageFormat(self) -> typing.Any: ... method imageFormatsForMimeType (line 4331) | def imageFormatsForMimeType(mimeType: PySide2.QtCore.QByteArray | byte... method jumpToImage (line 4332) | def jumpToImage(self, imageNumber: int) -> bool: ... method jumpToNextImage (line 4333) | def jumpToNextImage(self) -> bool: ... method loopCount (line 4334) | def loopCount(self) -> int: ... method nextImageDelay (line 4335) | def nextImageDelay(self) -> int: ... method quality (line 4336) | def quality(self) -> int: ... method read (line 4337) | def read(self) -> QImage: ... method scaledClipRect (line 4338) | def scaledClipRect(self) -> PySide2.QtCore.QRect: ... method scaledSize (line 4339) | def scaledSize(self) -> PySide2.QtCore.QSize: ... method setAutoDetectImageFormat (line 4340) | def setAutoDetectImageFormat(self, enabled: bool) -> None: ... method setAutoTransform (line 4341) | def setAutoTransform(self, enabled: bool) -> None: ... method setBackgroundColor (line 4342) | def setBackgroundColor(self, color: QColor | PySide2.QtCore.Qt.GlobalC... method setClipRect (line 4343) | def setClipRect(self, rect: PySide2.QtCore.QRect) -> None: ... method setDecideFormatFromContent (line 4344) | def setDecideFormatFromContent(self, ignored: bool) -> None: ... method setDevice (line 4345) | def setDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setFileName (line 4346) | def setFileName(self, fileName: str) -> None: ... method setFormat (line 4347) | def setFormat(self, format: PySide2.QtCore.QByteArray | bytes) -> None... method setGamma (line 4348) | def setGamma(self, gamma: float) -> None: ... method setQuality (line 4349) | def setQuality(self, quality: int) -> None: ... method setScaledClipRect (line 4350) | def setScaledClipRect(self, rect: PySide2.QtCore.QRect) -> None: ... method setScaledSize (line 4351) | def setScaledSize(self, size: PySide2.QtCore.QSize) -> None: ... method size (line 4352) | def size(self) -> PySide2.QtCore.QSize: ... method subType (line 4353) | def subType(self) -> PySide2.QtCore.QByteArray: ... method supportedImageFormats (line 4355) | def supportedImageFormats() -> list[PySide2.QtCore.QByteArray]: ... method supportedMimeTypes (line 4357) | def supportedMimeTypes() -> list[PySide2.QtCore.QByteArray]: ... method supportedSubTypes (line 4358) | def supportedSubTypes(self) -> list[PySide2.QtCore.QByteArray]: ... method supportsAnimation (line 4359) | def supportsAnimation(self) -> bool: ... method supportsOption (line 4360) | def supportsOption(self, option: QImageIOHandler.ImageOption) -> bool:... method text (line 4361) | def text(self, key: str) -> str: ... method textKeys (line 4362) | def textKeys(self) -> list[str]: ... method transformation (line 4363) | def transformation(self) -> QImageIOHandler.Transformations | QImageIO... class QImageWriter (line 4365) | class QImageWriter(shiboken2.Object): class ImageWriterError (line 4366) | class ImageWriterError: method __init__ (line 4374) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4375) | def __add__(self, other: typing.SupportsInt) -> QImageWriter.ImageWr... method __and__ (line 4376) | def __and__(self, other: typing.SupportsInt) -> QImageWriter.ImageWr... method __bool__ (line 4377) | def __bool__(self) -> bool: ... method __eq__ (line 4378) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4379) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4380) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4381) | def __hash__(self) -> int: ... method __index__ (line 4382) | def __index__(self) -> int: ... method __int__ (line 4383) | def __int__(self) -> int: ... method __le__ (line 4384) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4385) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4386) | def __mul__(self, other: typing.SupportsInt) -> QImageWriter.ImageWr... method __ne__ (line 4387) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4388) | def __or__(self, other: typing.SupportsInt) -> QImageWriter.ImageWri... method __pos__ (line 4389) | def __pos__(self): ... method __radd__ (line 4390) | def __radd__(self, other: typing.SupportsInt) -> QImageWriter.ImageW... method __rand__ (line 4391) | def __rand__(self, other: typing.SupportsInt) -> QImageWriter.ImageW... method __rmul__ (line 4392) | def __rmul__(self, other: typing.SupportsInt) -> QImageWriter.ImageW... method __ror__ (line 4393) | def __ror__(self, other: typing.SupportsInt) -> QImageWriter.ImageWr... method __rsub__ (line 4394) | def __rsub__(self, other: typing.SupportsInt) -> QImageWriter.ImageW... method __rxor__ (line 4395) | def __rxor__(self, other: typing.SupportsInt) -> QImageWriter.ImageW... method __sub__ (line 4396) | def __sub__(self, other: typing.SupportsInt) -> QImageWriter.ImageWr... method __xor__ (line 4397) | def __xor__(self, other: typing.SupportsInt) -> QImageWriter.ImageWr... method __init__ (line 4403) | def __init__(self, fileName: str, format: PySide2.QtCore.QByteArray | ... method __init__ (line 4405) | def __init__(self, device: PySide2.QtCore.QIODevice, format: PySide2.Q... method __init__ (line 4407) | def __init__(self) -> None: ... method canWrite (line 4408) | def canWrite(self) -> bool: ... method compression (line 4409) | def compression(self) -> int: ... method description (line 4410) | def description(self) -> str: ... method device (line 4411) | def device(self) -> PySide2.QtCore.QIODevice: ... method error (line 4412) | def error(self) -> QImageWriter.ImageWriterError: ... method errorString (line 4413) | def errorString(self) -> str: ... method fileName (line 4414) | def fileName(self) -> str: ... method format (line 4415) | def format(self) -> PySide2.QtCore.QByteArray: ... method gamma (line 4416) | def gamma(self) -> float: ... method imageFormatsForMimeType (line 4418) | def imageFormatsForMimeType(mimeType: PySide2.QtCore.QByteArray | byte... method optimizedWrite (line 4419) | def optimizedWrite(self) -> bool: ... method progressiveScanWrite (line 4420) | def progressiveScanWrite(self) -> bool: ... method quality (line 4421) | def quality(self) -> int: ... method setCompression (line 4422) | def setCompression(self, compression: int) -> None: ... method setDescription (line 4423) | def setDescription(self, description: str) -> None: ... method setDevice (line 4424) | def setDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setFileName (line 4425) | def setFileName(self, fileName: str) -> None: ... method setFormat (line 4426) | def setFormat(self, format: PySide2.QtCore.QByteArray | bytes) -> None... method setGamma (line 4427) | def setGamma(self, gamma: float) -> None: ... method setOptimizedWrite (line 4428) | def setOptimizedWrite(self, optimize: bool) -> None: ... method setProgressiveScanWrite (line 4429) | def setProgressiveScanWrite(self, progressive: bool) -> None: ... method setQuality (line 4430) | def setQuality(self, quality: int) -> None: ... method setSubType (line 4431) | def setSubType(self, type: PySide2.QtCore.QByteArray | bytes) -> None:... method setText (line 4432) | def setText(self, key: str, text: str) -> None: ... method setTransformation (line 4433) | def setTransformation(self, orientation: QImageIOHandler.Transformatio... method subType (line 4434) | def subType(self) -> PySide2.QtCore.QByteArray: ... method supportedImageFormats (line 4436) | def supportedImageFormats() -> list[PySide2.QtCore.QByteArray]: ... method supportedMimeTypes (line 4438) | def supportedMimeTypes() -> list[PySide2.QtCore.QByteArray]: ... method supportedSubTypes (line 4439) | def supportedSubTypes(self) -> list[PySide2.QtCore.QByteArray]: ... method supportsOption (line 4440) | def supportsOption(self, option: QImageIOHandler.ImageOption) -> bool:... method transformation (line 4441) | def transformation(self) -> QImageIOHandler.Transformations | QImageIO... method write (line 4442) | def write(self, image: QImage) -> bool: ... class QInputEvent (line 4444) | class QInputEvent(PySide2.QtCore.QEvent): method __init__ (line 4446) | def __init__(self, type: PySide2.QtCore.QEvent.Type, modifiers: PySide... method modifiers (line 4447) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method setModifiers (line 4448) | def setModifiers(self, amodifiers: PySide2.QtCore.Qt.KeyboardModifiers... method setTimestamp (line 4449) | def setTimestamp(self, atimestamp: int) -> None: ... method timestamp (line 4450) | def timestamp(self) -> int: ... class QInputMethod (line 4452) | class QInputMethod(PySide2.QtCore.QObject): class Action (line 4453) | class Action: method __init__ (line 4459) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4460) | def __add__(self, other: typing.SupportsInt) -> QInputMethod.Action:... method __and__ (line 4461) | def __and__(self, other: typing.SupportsInt) -> QInputMethod.Action:... method __bool__ (line 4462) | def __bool__(self) -> bool: ... method __eq__ (line 4463) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4464) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4465) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4466) | def __hash__(self) -> int: ... method __index__ (line 4467) | def __index__(self) -> int: ... method __int__ (line 4468) | def __int__(self) -> int: ... method __le__ (line 4469) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4470) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4471) | def __mul__(self, other: typing.SupportsInt) -> QInputMethod.Action:... method __ne__ (line 4472) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4473) | def __or__(self, other: typing.SupportsInt) -> QInputMethod.Action: ... method __pos__ (line 4474) | def __pos__(self): ... method __radd__ (line 4475) | def __radd__(self, other: typing.SupportsInt) -> QInputMethod.Action... method __rand__ (line 4476) | def __rand__(self, other: typing.SupportsInt) -> QInputMethod.Action... method __rmul__ (line 4477) | def __rmul__(self, other: typing.SupportsInt) -> QInputMethod.Action... method __ror__ (line 4478) | def __ror__(self, other: typing.SupportsInt) -> QInputMethod.Action:... method __rsub__ (line 4479) | def __rsub__(self, other: typing.SupportsInt) -> QInputMethod.Action... method __rxor__ (line 4480) | def __rxor__(self, other: typing.SupportsInt) -> QInputMethod.Action... method __sub__ (line 4481) | def __sub__(self, other: typing.SupportsInt) -> QInputMethod.Action:... method __xor__ (line 4482) | def __xor__(self, other: typing.SupportsInt) -> QInputMethod.Action:... method __init__ (line 4495) | def __init__(cls, *args, anchorRectangle: PySide2.QtCore.QRectF = ...,... method anchorRectangle (line 4496) | def anchorRectangle(self) -> PySide2.QtCore.QRectF: ... method commit (line 4497) | def commit(self) -> None: ... method cursorRectangle (line 4498) | def cursorRectangle(self) -> PySide2.QtCore.QRectF: ... method hide (line 4499) | def hide(self) -> None: ... method inputDirection (line 4500) | def inputDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method inputItemClipRectangle (line 4501) | def inputItemClipRectangle(self) -> PySide2.QtCore.QRectF: ... method inputItemRectangle (line 4502) | def inputItemRectangle(self) -> PySide2.QtCore.QRectF: ... method inputItemTransform (line 4503) | def inputItemTransform(self) -> QTransform: ... method invokeAction (line 4504) | def invokeAction(self, a: QInputMethod.Action, cursorPosition: int) ->... method isAnimating (line 4505) | def isAnimating(self) -> bool: ... method isVisible (line 4506) | def isVisible(self) -> bool: ... method keyboardRectangle (line 4507) | def keyboardRectangle(self) -> PySide2.QtCore.QRectF: ... method locale (line 4508) | def locale(self) -> PySide2.QtCore.QLocale: ... method queryFocusObject (line 4510) | def queryFocusObject(query: PySide2.QtCore.Qt.InputMethodQuery, argume... method reset (line 4511) | def reset(self) -> None: ... method setInputItemRectangle (line 4512) | def setInputItemRectangle(self, rect: PySide2.QtCore.QRectF) -> None: ... method setInputItemTransform (line 4513) | def setInputItemTransform(self, transform: QTransform) -> None: ... method setVisible (line 4514) | def setVisible(self, visible: bool) -> None: ... method show (line 4515) | def show(self) -> None: ... method update (line 4516) | def update(self, queries: PySide2.QtCore.Qt.InputMethodQueries | PySid... class QInputMethodEvent (line 4518) | class QInputMethodEvent(PySide2.QtCore.QEvent): class Attribute (line 4519) | class Attribute(shiboken2.Object): method __init__ (line 4525) | def __init__(self, typ: QInputMethodEvent.AttributeType, s: int, l: ... method __init__ (line 4527) | def __init__(self, typ: QInputMethodEvent.AttributeType, s: int, l: ... method __init__ (line 4529) | def __init__(self, Attribute: QInputMethodEvent.Attribute) -> None: ... method __copy__ (line 4530) | def __copy__(self) -> None: ... class AttributeType (line 4532) | class AttributeType: method __init__ (line 4541) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4542) | def __add__(self, other: typing.SupportsInt) -> QInputMethodEvent.At... method __and__ (line 4543) | def __and__(self, other: typing.SupportsInt) -> QInputMethodEvent.At... method __bool__ (line 4544) | def __bool__(self) -> bool: ... method __eq__ (line 4545) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4546) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4547) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4548) | def __hash__(self) -> int: ... method __index__ (line 4549) | def __index__(self) -> int: ... method __int__ (line 4550) | def __int__(self) -> int: ... method __le__ (line 4551) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4552) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4553) | def __mul__(self, other: typing.SupportsInt) -> QInputMethodEvent.At... method __ne__ (line 4554) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4555) | def __or__(self, other: typing.SupportsInt) -> QInputMethodEvent.Att... method __pos__ (line 4556) | def __pos__(self): ... method __radd__ (line 4557) | def __radd__(self, other: typing.SupportsInt) -> QInputMethodEvent.A... method __rand__ (line 4558) | def __rand__(self, other: typing.SupportsInt) -> QInputMethodEvent.A... method __rmul__ (line 4559) | def __rmul__(self, other: typing.SupportsInt) -> QInputMethodEvent.A... method __ror__ (line 4560) | def __ror__(self, other: typing.SupportsInt) -> QInputMethodEvent.At... method __rsub__ (line 4561) | def __rsub__(self, other: typing.SupportsInt) -> QInputMethodEvent.A... method __rxor__ (line 4562) | def __rxor__(self, other: typing.SupportsInt) -> QInputMethodEvent.A... method __sub__ (line 4563) | def __sub__(self, other: typing.SupportsInt) -> QInputMethodEvent.At... method __xor__ (line 4564) | def __xor__(self, other: typing.SupportsInt) -> QInputMethodEvent.At... method __init__ (line 4571) | def __init__(self, preeditText: str, attributes: typing.Iterable[QInpu... method __init__ (line 4573) | def __init__(self, other: QInputMethodEvent) -> None: ... method __init__ (line 4575) | def __init__(self) -> None: ... method attributes (line 4576) | def attributes(self) -> list[QInputMethodEvent.Attribute]: ... method commitString (line 4577) | def commitString(self) -> str: ... method preeditString (line 4578) | def preeditString(self) -> str: ... method replacementLength (line 4579) | def replacementLength(self) -> int: ... method replacementStart (line 4580) | def replacementStart(self) -> int: ... method setCommitString (line 4581) | def setCommitString(self, commitString: str, replaceFrom: int = ..., r... class QInputMethodQueryEvent (line 4583) | class QInputMethodQueryEvent(PySide2.QtCore.QEvent): method __init__ (line 4584) | def __init__(self, queries: PySide2.QtCore.Qt.InputMethodQueries | PyS... method queries (line 4585) | def queries(self) -> PySide2.QtCore.Qt.InputMethodQueries | PySide2.Qt... method setValue (line 4586) | def setValue(self, query: PySide2.QtCore.Qt.InputMethodQuery, value: t... method value (line 4587) | def value(self, query: PySide2.QtCore.Qt.InputMethodQuery) -> typing.A... class QIntValidator (line 4589) | class QIntValidator(QValidator): method __init__ (line 4594) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., bottom... method __init__ (line 4596) | def __init__(self, bottom: int, top: int, parent: PySide2.QtCore.QObje... method bottom (line 4597) | def bottom(self) -> int: ... method fixup (line 4598) | def fixup(self, input: str) -> None: ... method setBottom (line 4599) | def setBottom(self, arg__1: int) -> None: ... method setRange (line 4600) | def setRange(self, bottom: int, top: int) -> None: ... method setTop (line 4601) | def setTop(self, arg__1: int) -> None: ... method top (line 4602) | def top(self) -> int: ... method validate (line 4603) | def validate(self, arg__1: str, arg__2: int) -> QValidator.State: ... class QKeyEvent (line 4605) | class QKeyEvent(QInputEvent): method __init__ (line 4611) | def __init__(self, type: PySide2.QtCore.QEvent.Type, key: int, modifie... method __init__ (line 4613) | def __init__(self, type: PySide2.QtCore.QEvent.Type, key: int, modifie... method count (line 4614) | def count(self) -> int: ... method isAutoRepeat (line 4615) | def isAutoRepeat(self) -> bool: ... method key (line 4616) | def key(self) -> int: ... method matches (line 4617) | def matches(self, key: QKeySequence.StandardKey) -> bool: ... method modifiers (line 4618) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method nativeModifiers (line 4619) | def nativeModifiers(self) -> int: ... method nativeScanCode (line 4620) | def nativeScanCode(self) -> int: ... method nativeVirtualKey (line 4621) | def nativeVirtualKey(self) -> int: ... method text (line 4622) | def text(self) -> str: ... method __eq__ (line 4623) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4624) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4625) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4626) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4627) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4628) | def __ne__(self, other: object) -> bool: ... class QKeySequence (line 4630) | class QKeySequence(shiboken2.Object): class SequenceFormat (line 4631) | class SequenceFormat: method __init__ (line 4637) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4638) | def __add__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __and__ (line 4639) | def __and__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __bool__ (line 4640) | def __bool__(self) -> bool: ... method __eq__ (line 4641) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4642) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4643) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4644) | def __hash__(self) -> int: ... method __index__ (line 4645) | def __index__(self) -> int: ... method __int__ (line 4646) | def __int__(self) -> int: ... method __le__ (line 4647) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4648) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4649) | def __mul__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __ne__ (line 4650) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4651) | def __or__(self, other: typing.SupportsInt) -> QKeySequence.Sequence... method __pos__ (line 4652) | def __pos__(self): ... method __radd__ (line 4653) | def __radd__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __rand__ (line 4654) | def __rand__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __rmul__ (line 4655) | def __rmul__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __ror__ (line 4656) | def __ror__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __rsub__ (line 4657) | def __rsub__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __rxor__ (line 4658) | def __rxor__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __sub__ (line 4659) | def __sub__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __xor__ (line 4660) | def __xor__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... class SequenceMatch (line 4662) | class SequenceMatch: method __init__ (line 4669) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4670) | def __add__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __and__ (line 4671) | def __and__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __bool__ (line 4672) | def __bool__(self) -> bool: ... method __eq__ (line 4673) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4674) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4675) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4676) | def __hash__(self) -> int: ... method __index__ (line 4677) | def __index__(self) -> int: ... method __int__ (line 4678) | def __int__(self) -> int: ... method __le__ (line 4679) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4680) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4681) | def __mul__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __ne__ (line 4682) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4683) | def __or__(self, other: typing.SupportsInt) -> QKeySequence.Sequence... method __pos__ (line 4684) | def __pos__(self): ... method __radd__ (line 4685) | def __radd__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __rand__ (line 4686) | def __rand__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __rmul__ (line 4687) | def __rmul__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __ror__ (line 4688) | def __ror__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __rsub__ (line 4689) | def __rsub__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __rxor__ (line 4690) | def __rxor__(self, other: typing.SupportsInt) -> QKeySequence.Sequen... method __sub__ (line 4691) | def __sub__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... method __xor__ (line 4692) | def __xor__(self, other: typing.SupportsInt) -> QKeySequence.Sequenc... class StandardKey (line 4694) | class StandardKey: method __init__ (line 4769) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4770) | def __add__(self, other: typing.SupportsInt) -> QKeySequence.Standar... method __and__ (line 4771) | def __and__(self, other: typing.SupportsInt) -> QKeySequence.Standar... method __bool__ (line 4772) | def __bool__(self) -> bool: ... method __eq__ (line 4773) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4774) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4775) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4776) | def __hash__(self) -> int: ... method __index__ (line 4777) | def __index__(self) -> int: ... method __int__ (line 4778) | def __int__(self) -> int: ... method __le__ (line 4779) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4780) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4781) | def __mul__(self, other: typing.SupportsInt) -> QKeySequence.Standar... method __ne__ (line 4782) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4783) | def __or__(self, other: typing.SupportsInt) -> QKeySequence.Standard... method __pos__ (line 4784) | def __pos__(self): ... method __radd__ (line 4785) | def __radd__(self, other: typing.SupportsInt) -> QKeySequence.Standa... method __rand__ (line 4786) | def __rand__(self, other: typing.SupportsInt) -> QKeySequence.Standa... method __rmul__ (line 4787) | def __rmul__(self, other: typing.SupportsInt) -> QKeySequence.Standa... method __ror__ (line 4788) | def __ror__(self, other: typing.SupportsInt) -> QKeySequence.Standar... method __rsub__ (line 4789) | def __rsub__(self, other: typing.SupportsInt) -> QKeySequence.Standa... method __rxor__ (line 4790) | def __rxor__(self, other: typing.SupportsInt) -> QKeySequence.Standa... method __sub__ (line 4791) | def __sub__(self, other: typing.SupportsInt) -> QKeySequence.Standar... method __xor__ (line 4792) | def __xor__(self, other: typing.SupportsInt) -> QKeySequence.Standar... method __init__ (line 4870) | def __init__(self, k1: int, k2: int = ..., k3: int = ..., k4: int = ..... method __init__ (line 4872) | def __init__(self, key: str, format: QKeySequence.SequenceFormat = ...... method __init__ (line 4874) | def __init__(self, ks: QKeySequence | str) -> None: ... method __init__ (line 4876) | def __init__(self, key: QKeySequence.StandardKey) -> None: ... method __init__ (line 4878) | def __init__(self) -> None: ... method count (line 4879) | def count(self) -> int: ... method fromString (line 4881) | def fromString(str: str, format: QKeySequence.SequenceFormat = ...) ->... method isEmpty (line 4882) | def isEmpty(self) -> bool: ... method keyBindings (line 4884) | def keyBindings(key: QKeySequence.StandardKey) -> list[QKeySequence]: ... method listFromString (line 4886) | def listFromString(str: str, format: QKeySequence.SequenceFormat = ...... method listToString (line 4888) | def listToString(list: typing.Iterable[QKeySequence], format: QKeySequ... method matches (line 4889) | def matches(self, seq: QKeySequence | str) -> QKeySequence.SequenceMat... method mnemonic (line 4891) | def mnemonic(text: str) -> QKeySequence: ... method swap (line 4892) | def swap(self, other: QKeySequence | str) -> None: ... method toString (line 4893) | def toString(self, format: QKeySequence.SequenceFormat = ...) -> str: ... method __copy__ (line 4894) | def __copy__(self) -> None: ... method __eq__ (line 4895) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4896) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 4897) | def __getitem__(self, index): ... method __gt__ (line 4898) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4899) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4900) | def __lshift__(self, in_: PySide2.QtCore.QDataStream) -> PySide2.QtCor... method __lt__ (line 4901) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4902) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 4903) | def __rlshift__(self, other): ... method __rrshift__ (line 4904) | def __rrshift__(self, other): ... method __rshift__ (line 4905) | def __rshift__(self, out: PySide2.QtCore.QDataStream) -> PySide2.QtCor... class QLinearGradient (line 4907) | class QLinearGradient(QGradient): method __init__ (line 4909) | def __init__(self, xStart: float, yStart: float, xFinalStop: float, yF... method __init__ (line 4911) | def __init__(self, start: PySide2.QtCore.QPointF, finalStop: PySide2.Q... method __init__ (line 4913) | def __init__(self, QLinearGradient: QLinearGradient) -> None: ... method __init__ (line 4915) | def __init__(self) -> None: ... method finalStop (line 4916) | def finalStop(self) -> PySide2.QtCore.QPointF: ... method setFinalStop (line 4918) | def setFinalStop(self, x: float, y: float) -> None: ... method setFinalStop (line 4920) | def setFinalStop(self, stop: PySide2.QtCore.QPointF) -> None: ... method setStart (line 4922) | def setStart(self, x: float, y: float) -> None: ... method setStart (line 4924) | def setStart(self, start: PySide2.QtCore.QPointF) -> None: ... method start (line 4925) | def start(self) -> PySide2.QtCore.QPointF: ... method __copy__ (line 4926) | def __copy__(self) -> None: ... class QMatrix (line 4928) | class QMatrix(shiboken2.Object): method __init__ (line 4930) | def __init__(self, m11: float, m12: float, m21: float, m22: float, dx:... method __init__ (line 4932) | def __init__(self, other: QMatrix) -> None: ... method __init__ (line 4934) | def __init__(self) -> None: ... method determinant (line 4935) | def determinant(self) -> float: ... method dx (line 4936) | def dx(self) -> float: ... method dy (line 4937) | def dy(self) -> float: ... method inverted (line 4938) | def inverted(self) -> tuple[QMatrix, bool]: ... method isIdentity (line 4939) | def isIdentity(self) -> bool: ... method isInvertible (line 4940) | def isInvertible(self) -> bool: ... method m11 (line 4941) | def m11(self) -> float: ... method m12 (line 4942) | def m12(self) -> float: ... method m21 (line 4943) | def m21(self) -> float: ... method m22 (line 4944) | def m22(self) -> float: ... method map (line 4946) | def map(self, x: int, y: int) -> tuple[int, int]: ... method map (line 4948) | def map(self, x: float, y: float) -> tuple[float, float]: ... method map (line 4950) | def map(self, r: QRegion) -> QRegion: ... method map (line 4952) | def map(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QPoint: ... method map (line 4954) | def map(self, p: PySide2.QtCore.QPointF) -> PySide2.QtCore.QPointF: ... method map (line 4956) | def map(self, p: QPainterPath) -> QPainterPath: ... method map (line 4958) | def map(self, l: PySide2.QtCore.QLine) -> PySide2.QtCore.QLine: ... method map (line 4960) | def map(self, l: PySide2.QtCore.QLineF) -> PySide2.QtCore.QLineF: ... method map (line 4962) | def map(self, a: QPolygon) -> QPolygon: ... method map (line 4964) | def map(self, a: QPolygonF) -> QPolygonF: ... method mapRect (line 4966) | def mapRect(self, arg__1: PySide2.QtCore.QRect) -> PySide2.QtCore.QRec... method mapRect (line 4968) | def mapRect(self, arg__1: PySide2.QtCore.QRectF) -> PySide2.QtCore.QRe... method mapToPolygon (line 4969) | def mapToPolygon(self, r: PySide2.QtCore.QRect) -> QPolygon: ... method reset (line 4970) | def reset(self) -> None: ... method rotate (line 4971) | def rotate(self, a: float) -> QMatrix: ... method scale (line 4972) | def scale(self, sx: float, sy: float) -> QMatrix: ... method setMatrix (line 4973) | def setMatrix(self, m11: float, m12: float, m21: float, m22: float, dx... method shear (line 4974) | def shear(self, sh: float, sv: float) -> QMatrix: ... method translate (line 4975) | def translate(self, dx: float, dy: float) -> QMatrix: ... method __copy__ (line 4976) | def __copy__(self) -> None: ... method __eq__ (line 4977) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4978) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4979) | def __gt__(self, other: object) -> bool: ... method __imul__ (line 4980) | def __imul__(self, arg__1: QMatrix) -> QMatrix: ... # type: ignore[misc] method __le__ (line 4981) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4982) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 4983) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4985) | def __mul__(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QPoint: ... method __mul__ (line 4987) | def __mul__(self, p: PySide2.QtCore.QPointF) -> PySide2.QtCore.QPointF... method __mul__ (line 4989) | def __mul__(self, o: QMatrix) -> QMatrix: ... method __mul__ (line 4991) | def __mul__(self, l: PySide2.QtCore.QLine) -> PySide2.QtCore.QLine: ... method __mul__ (line 4993) | def __mul__(self, l: PySide2.QtCore.QLineF) -> PySide2.QtCore.QLineF: ... method __ne__ (line 4994) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 4995) | def __rlshift__(self, other): ... method __rmul__ (line 4996) | def __rmul__(self, other): ... method __rrshift__ (line 4997) | def __rrshift__(self, other): ... method __rshift__ (line 4998) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QMatrix2x2 (line 5000) | class QMatrix2x2(shiboken2.Object): method __init__ (line 5003) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5005) | def __init__(self, QMatrix2x2: QMatrix2x2) -> None: ... method __init__ (line 5007) | def __init__(self) -> None: ... method data (line 5008) | def data(self) -> float: ... method fill (line 5009) | def fill(self, value: float) -> None: ... method isIdentity (line 5010) | def isIdentity(self) -> bool: ... method setToIdentity (line 5011) | def setToIdentity(self) -> None: ... method transposed (line 5012) | def transposed(self) -> QMatrix2x2: ... method __call__ (line 5013) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5014) | def __copy__(self) -> None: ... method __eq__ (line 5015) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5016) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5017) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5018) | def __iadd__(self, other: QMatrix2x2) -> QMatrix2x2: ... method __imul__ (line 5019) | def __imul__(self, factor: float) -> QMatrix2x2: ... method __isub__ (line 5020) | def __isub__(self, other: QMatrix2x2) -> QMatrix2x2: ... method __le__ (line 5021) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5022) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5023) | def __ne__(self, other: object) -> bool: ... class QMatrix2x3 (line 5025) | class QMatrix2x3(shiboken2.Object): method __init__ (line 5028) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5030) | def __init__(self, QMatrix2x3: QMatrix2x3) -> None: ... method __init__ (line 5032) | def __init__(self) -> None: ... method data (line 5033) | def data(self) -> float: ... method fill (line 5034) | def fill(self, value: float) -> None: ... method isIdentity (line 5035) | def isIdentity(self) -> bool: ... method setToIdentity (line 5036) | def setToIdentity(self) -> None: ... method transposed (line 5037) | def transposed(self) -> QMatrix3x2: ... method __call__ (line 5038) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5039) | def __copy__(self) -> None: ... method __eq__ (line 5040) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5041) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5042) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5043) | def __iadd__(self, other: QMatrix2x3) -> QMatrix2x3: ... method __imul__ (line 5044) | def __imul__(self, factor: float) -> QMatrix2x3: ... method __isub__ (line 5045) | def __isub__(self, other: QMatrix2x3) -> QMatrix2x3: ... method __le__ (line 5046) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5047) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5048) | def __ne__(self, other: object) -> bool: ... class QMatrix2x4 (line 5050) | class QMatrix2x4(shiboken2.Object): method __init__ (line 5053) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5055) | def __init__(self, QMatrix2x4: QMatrix2x4) -> None: ... method __init__ (line 5057) | def __init__(self) -> None: ... method data (line 5058) | def data(self) -> float: ... method fill (line 5059) | def fill(self, value: float) -> None: ... method isIdentity (line 5060) | def isIdentity(self) -> bool: ... method setToIdentity (line 5061) | def setToIdentity(self) -> None: ... method transposed (line 5062) | def transposed(self) -> QMatrix4x2: ... method __call__ (line 5063) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5064) | def __copy__(self) -> None: ... method __eq__ (line 5065) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5066) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5067) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5068) | def __iadd__(self, other: QMatrix2x4) -> QMatrix2x4: ... method __imul__ (line 5069) | def __imul__(self, factor: float) -> QMatrix2x4: ... method __isub__ (line 5070) | def __isub__(self, other: QMatrix2x4) -> QMatrix2x4: ... method __le__ (line 5071) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5072) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5073) | def __ne__(self, other: object) -> bool: ... class QMatrix3x2 (line 5075) | class QMatrix3x2(shiboken2.Object): method __init__ (line 5078) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5080) | def __init__(self, QMatrix3x2: QMatrix3x2) -> None: ... method __init__ (line 5082) | def __init__(self) -> None: ... method data (line 5083) | def data(self) -> float: ... method fill (line 5084) | def fill(self, value: float) -> None: ... method isIdentity (line 5085) | def isIdentity(self) -> bool: ... method setToIdentity (line 5086) | def setToIdentity(self) -> None: ... method transposed (line 5087) | def transposed(self) -> QMatrix2x3: ... method __call__ (line 5088) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5089) | def __copy__(self) -> None: ... method __eq__ (line 5090) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5091) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5092) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5093) | def __iadd__(self, other: QMatrix3x2) -> QMatrix3x2: ... method __imul__ (line 5094) | def __imul__(self, factor: float) -> QMatrix3x2: ... method __isub__ (line 5095) | def __isub__(self, other: QMatrix3x2) -> QMatrix3x2: ... method __le__ (line 5096) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5097) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5098) | def __ne__(self, other: object) -> bool: ... class QMatrix3x3 (line 5100) | class QMatrix3x3(shiboken2.Object): method __init__ (line 5103) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5105) | def __init__(self, QMatrix3x3: QMatrix3x3) -> None: ... method __init__ (line 5107) | def __init__(self) -> None: ... method data (line 5108) | def data(self) -> float: ... method fill (line 5109) | def fill(self, value: float) -> None: ... method isIdentity (line 5110) | def isIdentity(self) -> bool: ... method setToIdentity (line 5111) | def setToIdentity(self) -> None: ... method transposed (line 5112) | def transposed(self) -> QMatrix3x3: ... method __call__ (line 5113) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5114) | def __copy__(self) -> None: ... method __eq__ (line 5115) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5116) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5117) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5118) | def __iadd__(self, other: QMatrix3x3) -> QMatrix3x3: ... method __imul__ (line 5119) | def __imul__(self, factor: float) -> QMatrix3x3: ... method __isub__ (line 5120) | def __isub__(self, other: QMatrix3x3) -> QMatrix3x3: ... method __le__ (line 5121) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5122) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5123) | def __ne__(self, other: object) -> bool: ... class QMatrix3x4 (line 5125) | class QMatrix3x4(shiboken2.Object): method __init__ (line 5128) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5130) | def __init__(self, QMatrix3x4: QMatrix3x4) -> None: ... method __init__ (line 5132) | def __init__(self) -> None: ... method data (line 5133) | def data(self) -> float: ... method fill (line 5134) | def fill(self, value: float) -> None: ... method isIdentity (line 5135) | def isIdentity(self) -> bool: ... method setToIdentity (line 5136) | def setToIdentity(self) -> None: ... method transposed (line 5137) | def transposed(self) -> QMatrix4x3: ... method __call__ (line 5138) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5139) | def __copy__(self) -> None: ... method __eq__ (line 5140) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5141) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5142) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5143) | def __iadd__(self, other: QMatrix3x4) -> QMatrix3x4: ... method __imul__ (line 5144) | def __imul__(self, factor: float) -> QMatrix3x4: ... method __isub__ (line 5145) | def __isub__(self, other: QMatrix3x4) -> QMatrix3x4: ... method __le__ (line 5146) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5147) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5148) | def __ne__(self, other: object) -> bool: ... class QMatrix4x2 (line 5150) | class QMatrix4x2(shiboken2.Object): method __init__ (line 5153) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5155) | def __init__(self, QMatrix4x2: QMatrix4x2) -> None: ... method __init__ (line 5157) | def __init__(self) -> None: ... method data (line 5158) | def data(self) -> float: ... method fill (line 5159) | def fill(self, value: float) -> None: ... method isIdentity (line 5160) | def isIdentity(self) -> bool: ... method setToIdentity (line 5161) | def setToIdentity(self) -> None: ... method transposed (line 5162) | def transposed(self) -> QMatrix2x4: ... method __call__ (line 5163) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5164) | def __copy__(self) -> None: ... method __eq__ (line 5165) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5166) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5167) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5168) | def __iadd__(self, other: QMatrix4x2) -> QMatrix4x2: ... method __imul__ (line 5169) | def __imul__(self, factor: float) -> QMatrix4x2: ... method __isub__ (line 5170) | def __isub__(self, other: QMatrix4x2) -> QMatrix4x2: ... method __le__ (line 5171) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5172) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5173) | def __ne__(self, other: object) -> bool: ... class QMatrix4x3 (line 5175) | class QMatrix4x3(shiboken2.Object): method __init__ (line 5178) | def __init__(self, arg__1: typing.Iterable) -> None: ... method __init__ (line 5180) | def __init__(self, QMatrix4x3: QMatrix4x3) -> None: ... method __init__ (line 5182) | def __init__(self) -> None: ... method data (line 5183) | def data(self) -> float: ... method fill (line 5184) | def fill(self, value: float) -> None: ... method isIdentity (line 5185) | def isIdentity(self) -> bool: ... method setToIdentity (line 5186) | def setToIdentity(self) -> None: ... method transposed (line 5187) | def transposed(self) -> QMatrix3x4: ... method __call__ (line 5188) | def __call__(self, row: int, column: int) -> float: ... method __copy__ (line 5189) | def __copy__(self) -> None: ... method __eq__ (line 5190) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5191) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5192) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5193) | def __iadd__(self, other: QMatrix4x3) -> QMatrix4x3: ... method __imul__ (line 5194) | def __imul__(self, factor: float) -> QMatrix4x3: ... method __isub__ (line 5195) | def __isub__(self, other: QMatrix4x3) -> QMatrix4x3: ... method __le__ (line 5196) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5197) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5198) | def __ne__(self, other: object) -> bool: ... class QMatrix4x4 (line 5200) | class QMatrix4x4(shiboken2.Object): method __init__ (line 5203) | def __init__(self, m11: float, m12: float, m13: float, m14: float, m21... method __init__ (line 5205) | def __init__(self, values: typing.Iterable[float]) -> None: ... method __init__ (line 5207) | def __init__(self, transform: QTransform) -> None: ... method __init__ (line 5209) | def __init__(self, matrix: QMatrix) -> None: ... method __init__ (line 5211) | def __init__(self) -> None: ... method __dummy (line 5212) | def __dummy(self, arg__1: typing.Iterable[float]) -> None: ... method column (line 5213) | def column(self, index: int) -> QVector4D: ... method copyDataTo (line 5214) | def copyDataTo(self) -> float: ... method data (line 5215) | def data(self) -> list[float]: ... method determinant (line 5216) | def determinant(self) -> float: ... method fill (line 5217) | def fill(self, value: float) -> None: ... method flipCoordinates (line 5218) | def flipCoordinates(self) -> None: ... method frustum (line 5219) | def frustum(self, left: float, right: float, bottom: float, top: float... method inverted (line 5220) | def inverted(self) -> tuple[QMatrix4x4, bool]: ... method isAffine (line 5221) | def isAffine(self) -> bool: ... method isIdentity (line 5222) | def isIdentity(self) -> bool: ... method lookAt (line 5223) | def lookAt(self, eye: QVector3D, center: QVector3D, up: QVector3D) -> ... method map (line 5225) | def map(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCore.QPoint: ... method map (line 5227) | def map(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCore.QPointF... method map (line 5229) | def map(self, point: QVector3D) -> QVector3D: ... method map (line 5231) | def map(self, point: QVector4D) -> QVector4D: ... method mapRect (line 5233) | def mapRect(self, rect: PySide2.QtCore.QRect) -> PySide2.QtCore.QRect:... method mapRect (line 5235) | def mapRect(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtCore.QRect... method mapVector (line 5236) | def mapVector(self, vector: QVector3D) -> QVector3D: ... method normalMatrix (line 5237) | def normalMatrix(self) -> QMatrix3x3: ... method optimize (line 5238) | def optimize(self) -> None: ... method ortho (line 5240) | def ortho(self, left: float, right: float, bottom: float, top: float, ... method ortho (line 5242) | def ortho(self, rect: PySide2.QtCore.QRect) -> None: ... method ortho (line 5244) | def ortho(self, rect: PySide2.QtCore.QRectF) -> None: ... method perspective (line 5245) | def perspective(self, verticalAngle: float, aspectRatio: float, nearPl... method rotate (line 5247) | def rotate(self, angle: float, x: float, y: float, z: float = ...) -> ... method rotate (line 5249) | def rotate(self, angle: float, vector: QVector3D) -> None: ... method rotate (line 5251) | def rotate(self, quaternion: QQuaternion) -> None: ... method row (line 5252) | def row(self, index: int) -> QVector4D: ... method scale (line 5254) | def scale(self, x: float, y: float, z: float) -> None: ... method scale (line 5256) | def scale(self, x: float, y: float) -> None: ... method scale (line 5258) | def scale(self, vector: QVector3D) -> None: ... method scale (line 5260) | def scale(self, factor: float) -> None: ... method setColumn (line 5261) | def setColumn(self, index: int, value: QVector4D) -> None: ... method setRow (line 5262) | def setRow(self, index: int, value: QVector4D) -> None: ... method setToIdentity (line 5263) | def setToIdentity(self) -> None: ... method toAffine (line 5264) | def toAffine(self) -> QMatrix: ... method toTransform (line 5266) | def toTransform(self, distanceToPlane: float) -> QTransform: ... method toTransform (line 5268) | def toTransform(self) -> QTransform: ... method translate (line 5270) | def translate(self, x: float, y: float, z: float) -> None: ... method translate (line 5272) | def translate(self, x: float, y: float) -> None: ... method translate (line 5274) | def translate(self, vector: QVector3D) -> None: ... method transposed (line 5275) | def transposed(self) -> QMatrix4x4: ... method viewport (line 5277) | def viewport(self, left: float, bottom: float, width: float, height: f... method viewport (line 5279) | def viewport(self, rect: PySide2.QtCore.QRectF) -> None: ... method __add__ (line 5280) | def __add__(self, m2: QMatrix4x4) -> QMatrix4x4: ... method __copy__ (line 5281) | def __copy__(self) -> None: ... method __eq__ (line 5282) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5283) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 5284) | def __getitem__(self, index): ... method __gt__ (line 5285) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5286) | def __iadd__(self, other: QMatrix4x4) -> QMatrix4x4: ... method __imul__ (line 5288) | def __imul__(self, other: QMatrix4x4) -> QMatrix4x4: ... method __imul__ (line 5290) | def __imul__(self, factor: float) -> QMatrix4x4: ... method __isub__ (line 5291) | def __isub__(self, other: QMatrix4x4) -> QMatrix4x4: ... method __le__ (line 5292) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 5293) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 5294) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5296) | def __mul__(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCore.QPoi... method __mul__ (line 5298) | def __mul__(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCore.QPo... method __mul__ (line 5300) | def __mul__(self, m2: QMatrix4x4) -> QMatrix4x4: ... method __mul__ (line 5302) | def __mul__(self, factor: float) -> QMatrix4x4: ... method __ne__ (line 5303) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 5304) | def __neg__(self) -> QMatrix4x4: ... method __radd__ (line 5305) | def __radd__(self, other): ... method __rlshift__ (line 5306) | def __rlshift__(self, other): ... method __rmul__ (line 5307) | def __rmul__(self, other): ... method __rrshift__ (line 5308) | def __rrshift__(self, other): ... method __rshift__ (line 5309) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 5310) | def __rsub__(self, other): ... method __rtruediv__ (line 5311) | def __rtruediv__(self, other): ... method __sub__ (line 5312) | def __sub__(self, m2: QMatrix4x4) -> QMatrix4x4: ... method __truediv__ (line 5313) | def __truediv__(self, other): ... class QMouseEvent (line 5315) | class QMouseEvent(QInputEvent): method __init__ (line 5322) | def __init__(self, type: PySide2.QtCore.QEvent.Type, localPos: PySide2... method __init__ (line 5324) | def __init__(self, type: PySide2.QtCore.QEvent.Type, localPos: PySide2... method __init__ (line 5326) | def __init__(self, type: PySide2.QtCore.QEvent.Type, localPos: PySide2... method __init__ (line 5328) | def __init__(self, type: PySide2.QtCore.QEvent.Type, localPos: PySide2... method button (line 5329) | def button(self) -> PySide2.QtCore.Qt.MouseButton: ... method buttons (line 5330) | def buttons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.Q... method flags (line 5331) | def flags(self) -> PySide2.QtCore.Qt.MouseEventFlags | PySide2.QtCore.... method globalPos (line 5332) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method globalX (line 5333) | def globalX(self) -> int: ... method globalY (line 5334) | def globalY(self) -> int: ... method localPos (line 5335) | def localPos(self) -> PySide2.QtCore.QPointF: ... method pos (line 5336) | def pos(self) -> PySide2.QtCore.QPoint: ... method screenPos (line 5337) | def screenPos(self) -> PySide2.QtCore.QPointF: ... method setLocalPos (line 5338) | def setLocalPos(self, localPosition: PySide2.QtCore.QPointF) -> None: ... method source (line 5339) | def source(self) -> PySide2.QtCore.Qt.MouseEventSource: ... method windowPos (line 5340) | def windowPos(self) -> PySide2.QtCore.QPointF: ... method x (line 5341) | def x(self) -> int: ... method y (line 5342) | def y(self) -> int: ... class QMoveEvent (line 5344) | class QMoveEvent(PySide2.QtCore.QEvent): method __init__ (line 5345) | def __init__(self, pos: PySide2.QtCore.QPoint, oldPos: PySide2.QtCore.... method oldPos (line 5346) | def oldPos(self) -> PySide2.QtCore.QPoint: ... method pos (line 5347) | def pos(self) -> PySide2.QtCore.QPoint: ... class QMovie (line 5349) | class QMovie(PySide2.QtCore.QObject): class CacheMode (line 5350) | class CacheMode: method __init__ (line 5356) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5357) | def __add__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __and__ (line 5358) | def __and__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __bool__ (line 5359) | def __bool__(self) -> bool: ... method __eq__ (line 5360) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5361) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5362) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5363) | def __hash__(self) -> int: ... method __index__ (line 5364) | def __index__(self) -> int: ... method __int__ (line 5365) | def __int__(self) -> int: ... method __le__ (line 5366) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5367) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5368) | def __mul__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __ne__ (line 5369) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5370) | def __or__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __pos__ (line 5371) | def __pos__(self): ... method __radd__ (line 5372) | def __radd__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __rand__ (line 5373) | def __rand__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __rmul__ (line 5374) | def __rmul__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __ror__ (line 5375) | def __ror__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __rsub__ (line 5376) | def __rsub__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __rxor__ (line 5377) | def __rxor__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __sub__ (line 5378) | def __sub__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... method __xor__ (line 5379) | def __xor__(self, other: typing.SupportsInt) -> QMovie.CacheMode: ... class MovieState (line 5381) | class MovieState: method __init__ (line 5388) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5389) | def __add__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __and__ (line 5390) | def __and__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __bool__ (line 5391) | def __bool__(self) -> bool: ... method __eq__ (line 5392) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5393) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5394) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5395) | def __hash__(self) -> int: ... method __index__ (line 5396) | def __index__(self) -> int: ... method __int__ (line 5397) | def __int__(self) -> int: ... method __le__ (line 5398) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5399) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5400) | def __mul__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __ne__ (line 5401) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5402) | def __or__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __pos__ (line 5403) | def __pos__(self): ... method __radd__ (line 5404) | def __radd__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __rand__ (line 5405) | def __rand__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __rmul__ (line 5406) | def __rmul__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __ror__ (line 5407) | def __ror__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __rsub__ (line 5408) | def __rsub__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __rxor__ (line 5409) | def __rxor__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __sub__ (line 5410) | def __sub__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __xor__ (line 5411) | def __xor__(self, other: typing.SupportsInt) -> QMovie.MovieState: ... method __init__ (line 5426) | def __init__(self, fileName: str, format: PySide2.QtCore.QByteArray | ... method __init__ (line 5428) | def __init__(self, device: PySide2.QtCore.QIODevice, format: PySide2.Q... method __init__ (line 5430) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., cacheM... method backgroundColor (line 5431) | def backgroundColor(self) -> QColor: ... method cacheMode (line 5432) | def cacheMode(self) -> QMovie.CacheMode: ... method currentFrameNumber (line 5433) | def currentFrameNumber(self) -> int: ... method currentImage (line 5434) | def currentImage(self) -> QImage: ... method currentPixmap (line 5435) | def currentPixmap(self) -> QPixmap: ... method device (line 5436) | def device(self) -> PySide2.QtCore.QIODevice: ... method fileName (line 5437) | def fileName(self) -> str: ... method format (line 5438) | def format(self) -> PySide2.QtCore.QByteArray: ... method frameCount (line 5439) | def frameCount(self) -> int: ... method frameRect (line 5440) | def frameRect(self) -> PySide2.QtCore.QRect: ... method isValid (line 5441) | def isValid(self) -> bool: ... method jumpToFrame (line 5442) | def jumpToFrame(self, frameNumber: int) -> bool: ... method jumpToNextFrame (line 5443) | def jumpToNextFrame(self) -> bool: ... method lastError (line 5444) | def lastError(self) -> QImageReader.ImageReaderError: ... method lastErrorString (line 5445) | def lastErrorString(self) -> str: ... method loopCount (line 5446) | def loopCount(self) -> int: ... method nextFrameDelay (line 5447) | def nextFrameDelay(self) -> int: ... method scaledSize (line 5448) | def scaledSize(self) -> PySide2.QtCore.QSize: ... method setBackgroundColor (line 5449) | def setBackgroundColor(self, color: QColor | PySide2.QtCore.Qt.GlobalC... method setCacheMode (line 5450) | def setCacheMode(self, mode: QMovie.CacheMode) -> None: ... method setDevice (line 5451) | def setDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setFileName (line 5452) | def setFileName(self, fileName: str) -> None: ... method setFormat (line 5453) | def setFormat(self, format: PySide2.QtCore.QByteArray | bytes) -> None... method setPaused (line 5454) | def setPaused(self, paused: bool) -> None: ... method setScaledSize (line 5455) | def setScaledSize(self, size: PySide2.QtCore.QSize) -> None: ... method setSpeed (line 5456) | def setSpeed(self, percentSpeed: int) -> None: ... method speed (line 5457) | def speed(self) -> int: ... method start (line 5458) | def start(self) -> None: ... method state (line 5459) | def state(self) -> QMovie.MovieState: ... method stop (line 5460) | def stop(self) -> None: ... method supportedFormats (line 5462) | def supportedFormats() -> list[PySide2.QtCore.QByteArray]: ... class QNativeGestureEvent (line 5464) | class QNativeGestureEvent(QInputEvent): method __init__ (line 5466) | def __init__(self, type: PySide2.QtCore.Qt.NativeGestureType, dev: QTo... method __init__ (line 5468) | def __init__(self, type: PySide2.QtCore.Qt.NativeGestureType, localPos... method device (line 5469) | def device(self) -> QTouchDevice: ... method gestureType (line 5470) | def gestureType(self) -> PySide2.QtCore.Qt.NativeGestureType: ... method globalPos (line 5471) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method localPos (line 5472) | def localPos(self) -> PySide2.QtCore.QPointF: ... method pos (line 5473) | def pos(self) -> PySide2.QtCore.QPoint: ... method screenPos (line 5474) | def screenPos(self) -> PySide2.QtCore.QPointF: ... method value (line 5475) | def value(self) -> float: ... method windowPos (line 5476) | def windowPos(self) -> PySide2.QtCore.QPointF: ... class QOffscreenSurface (line 5478) | class QOffscreenSurface(PySide2.QtCore.QObject, QSurface): method __init__ (line 5482) | def __init__(self, screen: QScreen, parent: PySide2.QtCore.QObject | N... method __init__ (line 5484) | def __init__(self, screen: QScreen | None = ..., destroyed: typing.Cal... method create (line 5485) | def create(self) -> None: ... method destroy (line 5486) | def destroy(self) -> None: ... method format (line 5487) | def format(self) -> QSurfaceFormat: ... method isValid (line 5488) | def isValid(self) -> bool: ... method nativeHandle (line 5489) | def nativeHandle(self) -> int: ... method requestedFormat (line 5490) | def requestedFormat(self) -> QSurfaceFormat: ... method screen (line 5491) | def screen(self) -> QScreen: ... method setFormat (line 5492) | def setFormat(self, format: QSurfaceFormat) -> None: ... method setNativeHandle (line 5493) | def setNativeHandle(self, handle: int) -> None: ... method setScreen (line 5494) | def setScreen(self, screen: QScreen) -> None: ... method size (line 5495) | def size(self) -> PySide2.QtCore.QSize: ... method surfaceHandle (line 5496) | def surfaceHandle(self) -> int: ... method surfaceType (line 5497) | def surfaceType(self) -> QSurface.SurfaceType: ... class QOpenGLBuffer (line 5499) | class QOpenGLBuffer(shiboken2.Object): class Access (line 5500) | class Access: method __init__ (line 5507) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5508) | def __add__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access... method __and__ (line 5509) | def __and__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access... method __bool__ (line 5510) | def __bool__(self) -> bool: ... method __eq__ (line 5511) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5512) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5513) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5514) | def __hash__(self) -> int: ... method __index__ (line 5515) | def __index__(self) -> int: ... method __int__ (line 5516) | def __int__(self) -> int: ... method __le__ (line 5517) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5518) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5519) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access... method __ne__ (line 5520) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5521) | def __or__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access:... method __pos__ (line 5522) | def __pos__(self): ... method __radd__ (line 5523) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Acces... method __rand__ (line 5524) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Acces... method __rmul__ (line 5525) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Acces... method __ror__ (line 5526) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access... method __rsub__ (line 5527) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Acces... method __rxor__ (line 5528) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Acces... method __sub__ (line 5529) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access... method __xor__ (line 5530) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Access... class RangeAccessFlag (line 5532) | class RangeAccessFlag: method __init__ (line 5542) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5543) | def __and__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeA... method __bool__ (line 5544) | def __bool__(self) -> bool: ... method __eq__ (line 5545) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5546) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5547) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5548) | def __hash__(self) -> int: ... method __index__ (line 5549) | def __index__(self) -> int: ... method __int__ (line 5550) | def __int__(self) -> int: ... method __invert__ (line 5551) | def __invert__(self) -> QOpenGLBuffer.RangeAccessFlags: ... method __le__ (line 5552) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5553) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5554) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5555) | def __or__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeAc... method __rand__ (line 5556) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Range... method __ror__ (line 5557) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeA... method __rxor__ (line 5558) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Range... method __xor__ (line 5559) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeA... class RangeAccessFlags (line 5561) | class RangeAccessFlags: method __init__ (line 5563) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5564) | def __and__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeA... method __bool__ (line 5565) | def __bool__(self) -> bool: ... method __eq__ (line 5566) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5567) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5568) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5569) | def __index__(self) -> int: ... method __int__ (line 5570) | def __int__(self) -> int: ... method __invert__ (line 5571) | def __invert__(self) -> QOpenGLBuffer.RangeAccessFlags: ... method __le__ (line 5572) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5573) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5574) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5575) | def __or__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeAc... method __rand__ (line 5576) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Range... method __ror__ (line 5577) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeA... method __rxor__ (line 5578) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Range... method __xor__ (line 5579) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.RangeA... class Type (line 5581) | class Type: method __init__ (line 5589) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5590) | def __add__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... method __and__ (line 5591) | def __and__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... method __bool__ (line 5592) | def __bool__(self) -> bool: ... method __eq__ (line 5593) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5594) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5595) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5596) | def __hash__(self) -> int: ... method __index__ (line 5597) | def __index__(self) -> int: ... method __int__ (line 5598) | def __int__(self) -> int: ... method __le__ (line 5599) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5600) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5601) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... method __ne__ (line 5602) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5603) | def __or__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... method __pos__ (line 5604) | def __pos__(self): ... method __radd__ (line 5605) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type:... method __rand__ (line 5606) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type:... method __rmul__ (line 5607) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type:... method __ror__ (line 5608) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... method __rsub__ (line 5609) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type:... method __rxor__ (line 5610) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type:... method __sub__ (line 5611) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... method __xor__ (line 5612) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Type: ... class UsagePattern (line 5614) | class UsagePattern: method __init__ (line 5627) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5628) | def __add__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsageP... method __and__ (line 5629) | def __and__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsageP... method __bool__ (line 5630) | def __bool__(self) -> bool: ... method __eq__ (line 5631) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5632) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5633) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5634) | def __hash__(self) -> int: ... method __index__ (line 5635) | def __index__(self) -> int: ... method __int__ (line 5636) | def __int__(self) -> int: ... method __le__ (line 5637) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5638) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5639) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsageP... method __ne__ (line 5640) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5641) | def __or__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsagePa... method __pos__ (line 5642) | def __pos__(self): ... method __radd__ (line 5643) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Usage... method __rand__ (line 5644) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Usage... method __rmul__ (line 5645) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Usage... method __ror__ (line 5646) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsageP... method __rsub__ (line 5647) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Usage... method __rxor__ (line 5648) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.Usage... method __sub__ (line 5649) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsageP... method __xor__ (line 5650) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLBuffer.UsageP... method __init__ (line 5674) | def __init__(self, type: QOpenGLBuffer.Type) -> None: ... method __init__ (line 5676) | def __init__(self, other: QOpenGLBuffer) -> None: ... method __init__ (line 5678) | def __init__(self) -> None: ... method allocate (line 5680) | def allocate(self, data: int, count: int) -> None: ... method allocate (line 5682) | def allocate(self, count: int) -> None: ... method bind (line 5683) | def bind(self) -> bool: ... method bufferId (line 5684) | def bufferId(self) -> int: ... method create (line 5685) | def create(self) -> bool: ... method destroy (line 5686) | def destroy(self) -> None: ... method isCreated (line 5687) | def isCreated(self) -> bool: ... method map (line 5688) | def map(self, access: QOpenGLBuffer.Access) -> int: ... method mapRange (line 5689) | def mapRange(self, offset: int, count: int, access: QOpenGLBuffer.Rang... method read (line 5690) | def read(self, offset: int, data: int, count: int) -> bool: ... method release (line 5692) | def release(self) -> typing.Any: ... method setUsagePattern (line 5693) | def setUsagePattern(self, value: QOpenGLBuffer.UsagePattern) -> None: ... method size (line 5694) | def size(self) -> int: ... method type (line 5695) | def type(self) -> QOpenGLBuffer.Type: ... method unmap (line 5696) | def unmap(self) -> bool: ... method usagePattern (line 5697) | def usagePattern(self) -> QOpenGLBuffer.UsagePattern: ... method write (line 5698) | def write(self, offset: int, data: int, count: int) -> None: ... class QOpenGLContext (line 5700) | class QOpenGLContext(PySide2.QtCore.QObject): class OpenGLModuleType (line 5701) | class OpenGLModuleType: method __init__ (line 5707) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5708) | def __add__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenG... method __and__ (line 5709) | def __and__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenG... method __bool__ (line 5710) | def __bool__(self) -> bool: ... method __eq__ (line 5711) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5712) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5713) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5714) | def __hash__(self) -> int: ... method __index__ (line 5715) | def __index__(self) -> int: ... method __int__ (line 5716) | def __int__(self) -> int: ... method __le__ (line 5717) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5718) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5719) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenG... method __ne__ (line 5720) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5721) | def __or__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenGL... method __pos__ (line 5722) | def __pos__(self): ... method __radd__ (line 5723) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLContext.Open... method __rand__ (line 5724) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLContext.Open... method __rmul__ (line 5725) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLContext.Open... method __ror__ (line 5726) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenG... method __rsub__ (line 5727) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLContext.Open... method __rxor__ (line 5728) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLContext.Open... method __sub__ (line 5729) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenG... method __xor__ (line 5730) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLContext.OpenG... method __init__ (line 5735) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aboutT... method areSharing (line 5737) | def areSharing(first: QOpenGLContext, second: QOpenGLContext) -> bool:... method create (line 5738) | def create(self) -> bool: ... method currentContext (line 5740) | def currentContext() -> QOpenGLContext: ... method defaultFramebufferObject (line 5741) | def defaultFramebufferObject(self) -> int: ... method doneCurrent (line 5742) | def doneCurrent(self) -> None: ... method extensions (line 5743) | def extensions(self) -> set[PySide2.QtCore.QByteArray]: ... method extraFunctions (line 5744) | def extraFunctions(self) -> QOpenGLExtraFunctions: ... method format (line 5745) | def format(self) -> QSurfaceFormat: ... method functions (line 5746) | def functions(self) -> QOpenGLFunctions: ... method globalShareContext (line 5748) | def globalShareContext() -> QOpenGLContext: ... method hasExtension (line 5749) | def hasExtension(self, extension: PySide2.QtCore.QByteArray | bytes) -... method isOpenGLES (line 5750) | def isOpenGLES(self) -> bool: ... method isValid (line 5751) | def isValid(self) -> bool: ... method makeCurrent (line 5752) | def makeCurrent(self, surface: QSurface) -> bool: ... method nativeHandle (line 5753) | def nativeHandle(self) -> typing.Any: ... method openGLModuleHandle (line 5755) | def openGLModuleHandle() -> int: ... method openGLModuleType (line 5757) | def openGLModuleType() -> QOpenGLContext.OpenGLModuleType: ... method screen (line 5758) | def screen(self) -> QScreen: ... method setFormat (line 5759) | def setFormat(self, format: QSurfaceFormat) -> None: ... method setNativeHandle (line 5760) | def setNativeHandle(self, handle: typing.Any) -> None: ... method setScreen (line 5761) | def setScreen(self, screen: QScreen) -> None: ... method setShareContext (line 5762) | def setShareContext(self, shareContext: QOpenGLContext) -> None: ... method shareContext (line 5763) | def shareContext(self) -> QOpenGLContext: ... method shareGroup (line 5764) | def shareGroup(self) -> QOpenGLContextGroup: ... method supportsThreadedOpenGL (line 5766) | def supportsThreadedOpenGL() -> bool: ... method surface (line 5767) | def surface(self) -> QSurface: ... method swapBuffers (line 5768) | def swapBuffers(self, surface: QSurface) -> None: ... method versionFunctions (line 5769) | def versionFunctions(self, versionProfile: QOpenGLVersionProfile = ...... class QOpenGLContextGroup (line 5771) | class QOpenGLContextGroup(PySide2.QtCore.QObject): method __init__ (line 5774) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method currentContextGroup (line 5776) | def currentContextGroup() -> QOpenGLContextGroup: ... method shares (line 5777) | def shares(self) -> list[QOpenGLContext]: ... class QOpenGLDebugLogger (line 5779) | class QOpenGLDebugLogger(PySide2.QtCore.QObject): class LoggingMode (line 5780) | class LoggingMode: method __init__ (line 5786) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5787) | def __add__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.L... method __and__ (line 5788) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.L... method __bool__ (line 5789) | def __bool__(self) -> bool: ... method __eq__ (line 5790) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5791) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5792) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5793) | def __hash__(self) -> int: ... method __index__ (line 5794) | def __index__(self) -> int: ... method __int__ (line 5795) | def __int__(self) -> int: ... method __le__ (line 5796) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5797) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5798) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.L... method __ne__ (line 5799) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5800) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.Lo... method __pos__ (line 5801) | def __pos__(self): ... method __radd__ (line 5802) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.... method __rand__ (line 5803) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.... method __rmul__ (line 5804) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.... method __ror__ (line 5805) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.L... method __rsub__ (line 5806) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.... method __rxor__ (line 5807) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.... method __sub__ (line 5808) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.L... method __xor__ (line 5809) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugLogger.L... method __init__ (line 5814) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method disableMessages (line 5816) | def disableMessages(self, sources: QOpenGLDebugMessage.Sources | QOpen... method disableMessages (line 5818) | def disableMessages(self, ids: list[int], sources: QOpenGLDebugMessage... method enableMessages (line 5820) | def enableMessages(self, sources: QOpenGLDebugMessage.Sources | QOpenG... method enableMessages (line 5822) | def enableMessages(self, ids: list[int], sources: QOpenGLDebugMessage.... method initialize (line 5823) | def initialize(self) -> bool: ... method isLogging (line 5824) | def isLogging(self) -> bool: ... method logMessage (line 5825) | def logMessage(self, debugMessage: QOpenGLDebugMessage) -> None: ... method loggedMessages (line 5826) | def loggedMessages(self) -> list[QOpenGLDebugMessage]: ... method loggingMode (line 5827) | def loggingMode(self) -> QOpenGLDebugLogger.LoggingMode: ... method maximumMessageLength (line 5828) | def maximumMessageLength(self) -> int: ... method popGroup (line 5829) | def popGroup(self) -> None: ... method pushGroup (line 5830) | def pushGroup(self, name: str, id: int = ..., source: QOpenGLDebugMess... method startLogging (line 5831) | def startLogging(self, loggingMode: QOpenGLDebugLogger.LoggingMode = .... method stopLogging (line 5832) | def stopLogging(self) -> None: ... class QOpenGLDebugMessage (line 5834) | class QOpenGLDebugMessage(shiboken2.Object): class Severities (line 5835) | class Severities: method __init__ (line 5837) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5838) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __bool__ (line 5839) | def __bool__(self) -> bool: ... method __eq__ (line 5840) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5841) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5842) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5843) | def __index__(self) -> int: ... method __int__ (line 5844) | def __int__(self) -> int: ... method __invert__ (line 5845) | def __invert__(self) -> QOpenGLDebugMessage.Severities: ... method __le__ (line 5846) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5847) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5848) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5849) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.S... method __rand__ (line 5850) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __ror__ (line 5851) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __rxor__ (line 5852) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __xor__ (line 5853) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... class Severity (line 5855) | class Severity: method __init__ (line 5866) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5867) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __bool__ (line 5868) | def __bool__(self) -> bool: ... method __eq__ (line 5869) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5870) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5871) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5872) | def __hash__(self) -> int: ... method __index__ (line 5873) | def __index__(self) -> int: ... method __int__ (line 5874) | def __int__(self) -> int: ... method __invert__ (line 5875) | def __invert__(self) -> QOpenGLDebugMessage.Severities: ... method __le__ (line 5876) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5877) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5878) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5879) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.S... method __rand__ (line 5880) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __ror__ (line 5881) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __rxor__ (line 5882) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __xor__ (line 5883) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... class Source (line 5885) | class Source: method __init__ (line 5898) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5899) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __bool__ (line 5900) | def __bool__(self) -> bool: ... method __eq__ (line 5901) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5902) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5903) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5904) | def __hash__(self) -> int: ... method __index__ (line 5905) | def __index__(self) -> int: ... method __int__ (line 5906) | def __int__(self) -> int: ... method __invert__ (line 5907) | def __invert__(self) -> QOpenGLDebugMessage.Sources: ... method __le__ (line 5908) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5909) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5910) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5911) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.S... method __rand__ (line 5912) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __ror__ (line 5913) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __rxor__ (line 5914) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __xor__ (line 5915) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... class Sources (line 5917) | class Sources: method __init__ (line 5919) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5920) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __bool__ (line 5921) | def __bool__(self) -> bool: ... method __eq__ (line 5922) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5923) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5924) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5925) | def __index__(self) -> int: ... method __int__ (line 5926) | def __int__(self) -> int: ... method __invert__ (line 5927) | def __invert__(self) -> QOpenGLDebugMessage.Sources: ... method __le__ (line 5928) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5929) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5930) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5931) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.S... method __rand__ (line 5932) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __ror__ (line 5933) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __rxor__ (line 5934) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __xor__ (line 5935) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... class Type (line 5937) | class Type: method __init__ (line 5953) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5954) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __bool__ (line 5955) | def __bool__(self) -> bool: ... method __eq__ (line 5956) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5957) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5958) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5959) | def __hash__(self) -> int: ... method __index__ (line 5960) | def __index__(self) -> int: ... method __int__ (line 5961) | def __int__(self) -> int: ... method __invert__ (line 5962) | def __invert__(self) -> QOpenGLDebugMessage.Types: ... method __le__ (line 5963) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5964) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5965) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5966) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.T... method __rand__ (line 5967) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __ror__ (line 5968) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __rxor__ (line 5969) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __xor__ (line 5970) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... class Types (line 5972) | class Types: method __init__ (line 5974) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5975) | def __and__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __bool__ (line 5976) | def __bool__(self) -> bool: ... method __eq__ (line 5977) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5978) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5979) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5980) | def __index__(self) -> int: ... method __int__ (line 5981) | def __int__(self) -> int: ... method __invert__ (line 5982) | def __invert__(self) -> QOpenGLDebugMessage.Types: ... method __le__ (line 5983) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5984) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5985) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5986) | def __or__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.T... method __rand__ (line 5987) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __ror__ (line 5988) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __rxor__ (line 5989) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage... method __xor__ (line 5990) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLDebugMessage.... method __init__ (line 6020) | def __init__(self, debugMessage: QOpenGLDebugMessage) -> None: ... method __init__ (line 6022) | def __init__(self) -> None: ... method createApplicationMessage (line 6024) | def createApplicationMessage(text: str, id: int = ..., severity: QOpen... method createThirdPartyMessage (line 6026) | def createThirdPartyMessage(text: str, id: int = ..., severity: QOpenG... method id (line 6027) | def id(self) -> int: ... method message (line 6028) | def message(self) -> str: ... method severity (line 6029) | def severity(self) -> QOpenGLDebugMessage.Severity: ... method source (line 6030) | def source(self) -> QOpenGLDebugMessage.Source: ... method swap (line 6031) | def swap(self, other: QOpenGLDebugMessage) -> None: ... method type (line 6032) | def type(self) -> QOpenGLDebugMessage.Type: ... method __copy__ (line 6033) | def __copy__(self) -> None: ... method __eq__ (line 6034) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6035) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6036) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6037) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6038) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6039) | def __ne__(self, other: object) -> bool: ... class QOpenGLExtraFunctions (line 6041) | class QOpenGLExtraFunctions(QOpenGLFunctions): method __init__ (line 6043) | def __init__(self, context: QOpenGLContext) -> None: ... method __init__ (line 6045) | def __init__(self) -> None: ... method glActiveShaderProgram (line 6046) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glBeginQuery (line 6047) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 6048) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindBufferBase (line 6049) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindImageTexture (line 6050) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 6051) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindSampler (line 6052) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTransformFeedback (line 6053) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 6054) | def glBindVertexArray(self, array: int) -> None: ... method glBlendBarrier (line 6055) | def glBlendBarrier(self) -> None: ... method glBlendEquationSeparatei (line 6056) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 6057) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFuncSeparatei (line 6058) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 6059) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 6060) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glClearBufferfi (line 6061) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 6062) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 6063) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 6064) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glColorMaski (line 6065) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glCompressedTexImage3D (line 6066) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage3D (line 6067) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyImageSubData (line 6068) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexSubImage3D (line 6069) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glDebugMessageControl (line 6070) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 6071) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteProgramPipelines (line 6072) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 6073) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteSamplers (line 6074) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteTransformFeedbacks (line 6075) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 6076) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDisablei (line 6077) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 6078) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArraysIndirect (line 6079) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 6080) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffers (line 6081) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElementsBaseVertex (line 6082) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 6083) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 6084) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 6085) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 6086) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 6087) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEnablei (line 6088) | def glEnablei(self, target: int, index: int) -> None: ... method glEndQuery (line 6089) | def glEndQuery(self, target: int) -> None: ... method glFramebufferParameteri (line 6090) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferTexture (line 6091) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTextureLayer (line 6092) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glGenProgramPipelines (line 6093) | def glGenProgramPipelines(self, n: int, pipelines: typing.Iterable[int... method glGenQueries (line 6094) | def glGenQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glGenSamplers (line 6095) | def glGenSamplers(self, count: int, samplers: typing.Iterable[int]) ->... method glGenTransformFeedbacks (line 6096) | def glGenTransformFeedbacks(self, n: int, ids: typing.Iterable[int]) -... method glGenVertexArrays (line 6097) | def glGenVertexArrays(self, n: int, arrays: typing.Iterable[int]) -> N... method glGetActiveUniformBlockiv (line 6098) | def glGetActiveUniformBlockiv(self, program: int, uniformBlockIndex: i... method glGetActiveUniformsiv (line 6099) | def glGetActiveUniformsiv(self, program: int, uniformCount: int, unifo... method glGetBufferParameteri64v (line 6100) | def glGetBufferParameteri64v(self, target: int, pname: int) -> int: ... method glGetFragDataLocation (line 6101) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetFramebufferParameteriv (line 6102) | def glGetFramebufferParameteriv(self, target: int, pname: int, params:... method glGetGraphicsResetStatus (line 6103) | def glGetGraphicsResetStatus(self) -> int: ... method glGetInteger64i_v (line 6104) | def glGetInteger64i_v(self, target: int, index: int) -> int: ... method glGetInteger64v (line 6105) | def glGetInteger64v(self, pname: int) -> int: ... method glGetIntegeri_v (line 6106) | def glGetIntegeri_v(self, target: int, index: int, data: typing.Iterab... method glGetInternalformativ (line 6107) | def glGetInternalformativ(self, target: int, internalformat: int, pnam... method glGetMultisamplefv (line 6108) | def glGetMultisamplefv(self, pname: int, index: int, val: typing.Itera... method glGetProgramBinary (line 6109) | def glGetProgramBinary(self, program: int, bufSize: int, binary: int) ... method glGetProgramInterfaceiv (line 6110) | def glGetProgramInterfaceiv(self, program: int, programInterface: int,... method glGetProgramPipelineiv (line 6111) | def glGetProgramPipelineiv(self, pipeline: int, pname: int, params: ty... method glGetProgramResourceIndex (line 6112) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 6113) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceiv (line 6114) | def glGetProgramResourceiv(self, program: int, programInterface: int, ... method glGetQueryObjectuiv (line 6115) | def glGetQueryObjectuiv(self, id: int, pname: int, params: typing.Iter... method glGetQueryiv (line 6116) | def glGetQueryiv(self, target: int, pname: int, params: typing.Iterabl... method glGetSamplerParameterIiv (line 6117) | def glGetSamplerParameterIiv(self, sampler: int, pname: int) -> int: ... method glGetSamplerParameterIuiv (line 6118) | def glGetSamplerParameterIuiv(self, sampler: int, pname: int) -> int: ... method glGetSamplerParameterfv (line 6119) | def glGetSamplerParameterfv(self, sampler: int, pname: int, params: ty... method glGetSamplerParameteriv (line 6120) | def glGetSamplerParameteriv(self, sampler: int, pname: int, params: ty... method glGetStringi (line 6121) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetTexLevelParameterfv (line 6122) | def glGetTexLevelParameterfv(self, target: int, level: int, pname: int... method glGetTexLevelParameteriv (line 6123) | def glGetTexLevelParameteriv(self, target: int, level: int, pname: int... method glGetTexParameterIiv (line 6124) | def glGetTexParameterIiv(self, target: int, pname: int) -> int: ... method glGetTexParameterIuiv (line 6125) | def glGetTexParameterIuiv(self, target: int, pname: int) -> int: ... method glGetUniformBlockIndex (line 6126) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformuiv (line 6127) | def glGetUniformuiv(self, program: int, location: int, params: typing.... method glGetVertexAttribIiv (line 6128) | def glGetVertexAttribIiv(self, index: int, pname: int, params: typing.... method glGetVertexAttribIuiv (line 6129) | def glGetVertexAttribIuiv(self, index: int, pname: int, params: typing... method glGetnUniformfv (line 6130) | def glGetnUniformfv(self, program: int, location: int, bufSize: int) -... method glGetnUniformiv (line 6131) | def glGetnUniformiv(self, program: int, location: int, bufSize: int) -... method glGetnUniformuiv (line 6132) | def glGetnUniformuiv(self, program: int, location: int, bufSize: int) ... method glInvalidateFramebuffer (line 6133) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 6134) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glIsEnabledi (line 6135) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsProgramPipeline (line 6136) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 6137) | def glIsQuery(self, id: int) -> int: ... method glIsSampler (line 6138) | def glIsSampler(self, sampler: int) -> int: ... method glIsTransformFeedback (line 6139) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 6140) | def glIsVertexArray(self, array: int) -> int: ... method glMemoryBarrier (line 6141) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMemoryBarrierByRegion (line 6142) | def glMemoryBarrierByRegion(self, barriers: int) -> None: ... method glMinSampleShading (line 6143) | def glMinSampleShading(self, value: float) -> None: ... method glObjectLabel (line 6144) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 6145) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes) -> Non... method glPatchParameteri (line 6146) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPopDebugGroup (line 6147) | def glPopDebugGroup(self) -> None: ... method glPrimitiveBoundingBox (line 6148) | def glPrimitiveBoundingBox(self, minX: float, minY: float, minZ: float... method glProgramBinary (line 6149) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 6150) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1f (line 6151) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 6152) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 6153) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 6154) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 6155) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 6156) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2f (line 6157) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 6158) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 6159) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 6160) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 6161) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 6162) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3f (line 6163) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 6164) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 6165) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 6166) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 6167) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 6168) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4f (line 6169) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 6170) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 6171) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 6172) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 6173) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 6174) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2fv (line 6175) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3fv (line 6176) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 6177) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3fv (line 6178) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2fv (line 6179) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 6180) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4fv (line 6181) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2fv (line 6182) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 6183) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glPushDebugGroup (line 6184) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glReadBuffer (line 6185) | def glReadBuffer(self, mode: int) -> None: ... method glReadnPixels (line 6186) | def glReadnPixels(self, x: int, y: int, width: int, height: int, forma... method glRenderbufferStorageMultisample (line 6187) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleMaski (line 6188) | def glSampleMaski(self, maskNumber: int, mask: int) -> None: ... method glSamplerParameterIiv (line 6189) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 6190) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 6191) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 6192) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 6193) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 6194) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glTexBuffer (line 6195) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexImage3D (line 6196) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterIiv (line 6197) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 6198) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexStorage2D (line 6199) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 6200) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 6201) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 6202) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage3D (line 6203) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1ui (line 6204) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 6205) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2ui (line 6206) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 6207) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3ui (line 6208) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 6209) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4ui (line 6210) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 6211) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 6212) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2x3fv (line 6213) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 6214) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 6215) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 6216) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 6217) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 6218) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 6219) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgramStages (line 6220) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgramPipeline (line 6221) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertexAttribBinding (line 6222) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 6223) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 6224) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI4i (line 6225) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 6226) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ui (line 6227) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 6228) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIFormat (line 6229) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 6230) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexBindingDivisor (line 6231) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... class QOpenGLFramebufferObject (line 6233) | class QOpenGLFramebufferObject(shiboken2.Object): class Attachment (line 6234) | class Attachment: method __init__ (line 6241) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6242) | def __add__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __and__ (line 6243) | def __and__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __bool__ (line 6244) | def __bool__(self) -> bool: ... method __eq__ (line 6245) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6246) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6247) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6248) | def __hash__(self) -> int: ... method __index__ (line 6249) | def __index__(self) -> int: ... method __int__ (line 6250) | def __int__(self) -> int: ... method __le__ (line 6251) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6252) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6253) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __ne__ (line 6254) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6255) | def __or__(self, other: typing.SupportsInt) -> QOpenGLFramebufferObj... method __pos__ (line 6256) | def __pos__(self): ... method __radd__ (line 6257) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __rand__ (line 6258) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __rmul__ (line 6259) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __ror__ (line 6260) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __rsub__ (line 6261) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __rxor__ (line 6262) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __sub__ (line 6263) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __xor__ (line 6264) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... class FramebufferRestorePolicy (line 6266) | class FramebufferRestorePolicy: method __init__ (line 6273) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6274) | def __add__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __and__ (line 6275) | def __and__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __bool__ (line 6276) | def __bool__(self) -> bool: ... method __eq__ (line 6277) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6278) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6279) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6280) | def __hash__(self) -> int: ... method __index__ (line 6281) | def __index__(self) -> int: ... method __int__ (line 6282) | def __int__(self) -> int: ... method __le__ (line 6283) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6284) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6285) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __ne__ (line 6286) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6287) | def __or__(self, other: typing.SupportsInt) -> QOpenGLFramebufferObj... method __pos__ (line 6288) | def __pos__(self): ... method __radd__ (line 6289) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __rand__ (line 6290) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __rmul__ (line 6291) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __ror__ (line 6292) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __rsub__ (line 6293) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __rxor__ (line 6294) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLFramebufferO... method __sub__ (line 6295) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __xor__ (line 6296) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLFramebufferOb... method __init__ (line 6304) | def __init__(self, width: int, height: int, attachment: QOpenGLFramebu... method __init__ (line 6306) | def __init__(self, size: PySide2.QtCore.QSize, attachment: QOpenGLFram... method __init__ (line 6308) | def __init__(self, width: int, height: int, target: int = ...) -> None... method __init__ (line 6310) | def __init__(self, width: int, height: int, format: QOpenGLFramebuffer... method __init__ (line 6312) | def __init__(self, size: PySide2.QtCore.QSize, target: int = ...) -> N... method __init__ (line 6314) | def __init__(self, size: PySide2.QtCore.QSize, format: QOpenGLFramebuf... method addColorAttachment (line 6316) | def addColorAttachment(self, width: int, height: int, internalFormat: ... method addColorAttachment (line 6318) | def addColorAttachment(self, size: PySide2.QtCore.QSize, internalForma... method attachment (line 6319) | def attachment(self) -> QOpenGLFramebufferObject.Attachment: ... method bind (line 6320) | def bind(self) -> bool: ... method bindDefault (line 6322) | def bindDefault() -> bool: ... method blitFramebuffer (line 6325) | def blitFramebuffer(target: QOpenGLFramebufferObject, targetRect: PySi... method blitFramebuffer (line 6328) | def blitFramebuffer(target: QOpenGLFramebufferObject, targetRect: PySi... method blitFramebuffer (line 6331) | def blitFramebuffer(target: QOpenGLFramebufferObject, targetRect: PySi... method blitFramebuffer (line 6334) | def blitFramebuffer(target: QOpenGLFramebufferObject, source: QOpenGLF... method format (line 6335) | def format(self) -> QOpenGLFramebufferObjectFormat: ... method handle (line 6336) | def handle(self) -> int: ... method hasOpenGLFramebufferBlit (line 6338) | def hasOpenGLFramebufferBlit() -> bool: ... method hasOpenGLFramebufferObjects (line 6340) | def hasOpenGLFramebufferObjects() -> bool: ... method height (line 6341) | def height(self) -> int: ... method isBound (line 6342) | def isBound(self) -> bool: ... method isValid (line 6343) | def isValid(self) -> bool: ... method release (line 6344) | def release(self) -> bool: ... method setAttachment (line 6345) | def setAttachment(self, attachment: QOpenGLFramebufferObject.Attachmen... method size (line 6346) | def size(self) -> PySide2.QtCore.QSize: ... method sizes (line 6347) | def sizes(self) -> list[PySide2.QtCore.QSize]: ... method takeTexture (line 6349) | def takeTexture(self, colorAttachmentIndex: int) -> int: ... method takeTexture (line 6351) | def takeTexture(self) -> int: ... method texture (line 6352) | def texture(self) -> int: ... method textures (line 6353) | def textures(self) -> list[int]: ... method toImage (line 6355) | def toImage(self, flipped: bool, colorAttachmentIndex: int) -> QImage:... method toImage (line 6357) | def toImage(self, flipped: bool) -> QImage: ... method toImage (line 6359) | def toImage(self) -> QImage: ... method width (line 6360) | def width(self) -> int: ... class QOpenGLFramebufferObjectFormat (line 6362) | class QOpenGLFramebufferObjectFormat(shiboken2.Object): method __init__ (line 6364) | def __init__(self, other: QOpenGLFramebufferObjectFormat) -> None: ... method __init__ (line 6366) | def __init__(self) -> None: ... method attachment (line 6367) | def attachment(self) -> QOpenGLFramebufferObject.Attachment: ... method internalTextureFormat (line 6368) | def internalTextureFormat(self) -> int: ... method mipmap (line 6369) | def mipmap(self) -> bool: ... method samples (line 6370) | def samples(self) -> int: ... method setAttachment (line 6371) | def setAttachment(self, attachment: QOpenGLFramebufferObject.Attachmen... method setInternalTextureFormat (line 6372) | def setInternalTextureFormat(self, internalTextureFormat: int) -> None... method setMipmap (line 6373) | def setMipmap(self, enabled: bool) -> None: ... method setSamples (line 6374) | def setSamples(self, samples: int) -> None: ... method setTextureTarget (line 6375) | def setTextureTarget(self, target: int) -> None: ... method textureTarget (line 6376) | def textureTarget(self) -> int: ... method __copy__ (line 6377) | def __copy__(self) -> None: ... method __eq__ (line 6378) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6379) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6380) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6381) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6382) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6383) | def __ne__(self, other: object) -> bool: ... class QOpenGLFunctions (line 6385) | class QOpenGLFunctions(shiboken2.Object): class OpenGLFeature (line 6386) | class OpenGLFeature: method __init__ (line 6408) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6409) | def __and__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Ope... method __bool__ (line 6410) | def __bool__(self) -> bool: ... method __eq__ (line 6411) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6412) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6413) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6414) | def __hash__(self) -> int: ... method __index__ (line 6415) | def __index__(self) -> int: ... method __int__ (line 6416) | def __int__(self) -> int: ... method __invert__ (line 6417) | def __invert__(self) -> QOpenGLFunctions.OpenGLFeatures: ... method __le__ (line 6418) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6419) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6420) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6421) | def __or__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Open... method __rand__ (line 6422) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Op... method __ror__ (line 6423) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Ope... method __rxor__ (line 6424) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Op... method __xor__ (line 6425) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Ope... class OpenGLFeatures (line 6427) | class OpenGLFeatures: method __init__ (line 6429) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6430) | def __and__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Ope... method __bool__ (line 6431) | def __bool__(self) -> bool: ... method __eq__ (line 6432) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6433) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6434) | def __gt__(self, other: object) -> bool: ... method __index__ (line 6435) | def __index__(self) -> int: ... method __int__ (line 6436) | def __int__(self) -> int: ... method __invert__ (line 6437) | def __invert__(self) -> QOpenGLFunctions.OpenGLFeatures: ... method __le__ (line 6438) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6439) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6440) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6441) | def __or__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Open... method __rand__ (line 6442) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Op... method __ror__ (line 6443) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Ope... method __rxor__ (line 6444) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Op... method __xor__ (line 6445) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLFunctions.Ope... method __init__ (line 6465) | def __init__(self, context: QOpenGLContext) -> None: ... method __init__ (line 6467) | def __init__(self) -> None: ... method glActiveTexture (line 6468) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 6469) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBindAttribLocation (line 6470) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 6471) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindFramebuffer (line 6472) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 6473) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindTexture (line 6474) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 6475) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 6476) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 6477) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 6478) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 6479) | def glBlendFuncSeparate(self, srcRGB: int, dstRGB: int, srcAlpha: int,... method glCheckFramebufferStatus (line 6480) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClear (line 6481) | def glClear(self, mask: int) -> None: ... method glClearColor (line 6482) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepthf (line 6483) | def glClearDepthf(self, depth: float) -> None: ... method glClearStencil (line 6484) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 6485) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glCompileShader (line 6486) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage2D (line 6487) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexSubImage2D (line 6488) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCopyTexImage2D (line 6489) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage2D (line 6490) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 6491) | def glCreateProgram(self) -> int: ... method glCreateShader (line 6492) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 6493) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 6494) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 6495) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 6496) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteRenderbuffers (line 6497) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 6498) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 6499) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 6500) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 6501) | def glDepthMask(self, flag: int) -> None: ... method glDepthRangef (line 6502) | def glDepthRangef(self, zNear: float, zFar: float) -> None: ... method glDetachShader (line 6503) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 6504) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 6505) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDrawArrays (line 6506) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawElements (line 6507) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glEnable (line 6508) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 6509) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glFinish (line 6510) | def glFinish(self) -> None: ... method glFlush (line 6511) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 6512) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture2D (line 6513) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFrontFace (line 6514) | def glFrontFace(self, mode: int) -> None: ... method glGenBuffers (line 6515) | def glGenBuffers(self, n: int, buffers: typing.Iterable[int]) -> None:... method glGenFramebuffers (line 6516) | def glGenFramebuffers(self, n: int, framebuffers: typing.Iterable[int]... method glGenRenderbuffers (line 6517) | def glGenRenderbuffers(self, n: int, renderbuffers: typing.Iterable[in... method glGenTextures (line 6518) | def glGenTextures(self, n: int, textures: typing.Iterable[int]) -> Non... method glGenerateMipmap (line 6519) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttachedShaders (line 6520) | def glGetAttachedShaders(self, program: int, maxcount: int, count: typ... method glGetAttribLocation (line 6521) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetBufferParameteriv (line 6522) | def glGetBufferParameteriv(self, target: int, pname: int, params: typi... method glGetError (line 6523) | def glGetError(self) -> int: ... method glGetFloatv (line 6524) | def glGetFloatv(self, pname: int, params: typing.Iterable[float]) -> N... method glGetFramebufferAttachmentParameteriv (line 6525) | def glGetFramebufferAttachmentParameteriv(self, target: int, attachmen... method glGetIntegerv (line 6526) | def glGetIntegerv(self, pname: int, params: typing.Iterable[int]) -> N... method glGetProgramiv (line 6527) | def glGetProgramiv(self, program: int, pname: int, params: typing.Iter... method glGetRenderbufferParameteriv (line 6528) | def glGetRenderbufferParameteriv(self, target: int, pname: int, params... method glGetShaderPrecisionFormat (line 6529) | def glGetShaderPrecisionFormat(self, shadertype: int, precisiontype: i... method glGetShaderiv (line 6530) | def glGetShaderiv(self, shader: int, pname: int, params: typing.Iterab... method glGetString (line 6531) | def glGetString(self, name: int) -> bytes: ... method glGetTexParameterfv (line 6532) | def glGetTexParameterfv(self, target: int, pname: int, params: typing.... method glGetTexParameteriv (line 6533) | def glGetTexParameteriv(self, target: int, pname: int, params: typing.... method glGetUniformLocation (line 6534) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glGetUniformfv (line 6535) | def glGetUniformfv(self, program: int, location: int, params: typing.I... method glGetUniformiv (line 6536) | def glGetUniformiv(self, program: int, location: int, params: typing.I... method glGetVertexAttribfv (line 6537) | def glGetVertexAttribfv(self, index: int, pname: int, params: typing.I... method glGetVertexAttribiv (line 6538) | def glGetVertexAttribiv(self, index: int, pname: int, params: typing.I... method glHint (line 6539) | def glHint(self, target: int, mode: int) -> None: ... method glIsBuffer (line 6540) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 6541) | def glIsEnabled(self, cap: int) -> int: ... method glIsFramebuffer (line 6542) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 6543) | def glIsProgram(self, program: int) -> int: ... method glIsRenderbuffer (line 6544) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsShader (line 6545) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 6546) | def glIsTexture(self, texture: int) -> int: ... method glLineWidth (line 6547) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 6548) | def glLinkProgram(self, program: int) -> None: ... method glPixelStorei (line 6549) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPolygonOffset (line 6550) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glReadPixels (line 6551) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 6552) | def glReleaseShaderCompiler(self) -> None: ... method glRenderbufferStorage (line 6553) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glSampleCoverage (line 6554) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScissor (line 6555) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glShaderBinary (line 6556) | def glShaderBinary(self, n: int, shaders: typing.Iterable[int], binary... method glStencilFunc (line 6557) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 6558) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 6559) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 6560) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 6561) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 6562) | def glStencilOpSeparate(self, face: int, fail: int, zfail: int, zpass:... method glTexImage2D (line 6563) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 6564) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 6565) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 6566) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 6567) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage2D (line 6568) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 6569) | def glUniform1f(self, location: int, x: float) -> None: ... method glUniform1fv (line 6570) | def glUniform1fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform1i (line 6571) | def glUniform1i(self, location: int, x: int) -> None: ... method glUniform1iv (line 6572) | def glUniform1iv(self, location: int, count: int, v: typing.Iterable[i... method glUniform2f (line 6573) | def glUniform2f(self, location: int, x: float, y: float) -> None: ... method glUniform2fv (line 6574) | def glUniform2fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform2i (line 6575) | def glUniform2i(self, location: int, x: int, y: int) -> None: ... method glUniform2iv (line 6576) | def glUniform2iv(self, location: int, count: int, v: typing.Iterable[i... method glUniform3f (line 6577) | def glUniform3f(self, location: int, x: float, y: float, z: float) -> ... method glUniform3fv (line 6578) | def glUniform3fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform3i (line 6579) | def glUniform3i(self, location: int, x: int, y: int, z: int) -> None: ... method glUniform3iv (line 6580) | def glUniform3iv(self, location: int, count: int, v: typing.Iterable[i... method glUniform4f (line 6581) | def glUniform4f(self, location: int, x: float, y: float, z: float, w: ... method glUniform4fv (line 6582) | def glUniform4fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform4i (line 6583) | def glUniform4i(self, location: int, x: int, y: int, z: int, w: int) -... method glUniform4iv (line 6584) | def glUniform4iv(self, location: int, count: int, v: typing.Iterable[i... method glUniformMatrix2fv (line 6585) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 6586) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 6587) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUseProgram (line 6588) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 6589) | def glValidateProgram(self, program: int) -> None: ... method glVertexAttrib1f (line 6590) | def glVertexAttrib1f(self, indx: int, x: float) -> None: ... method glVertexAttrib1fv (line 6591) | def glVertexAttrib1fv(self, indx: int, values: typing.Iterable[float])... method glVertexAttrib2f (line 6592) | def glVertexAttrib2f(self, indx: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 6593) | def glVertexAttrib2fv(self, indx: int, values: typing.Iterable[float])... method glVertexAttrib3f (line 6594) | def glVertexAttrib3f(self, indx: int, x: float, y: float, z: float) ->... method glVertexAttrib3fv (line 6595) | def glVertexAttrib3fv(self, indx: int, values: typing.Iterable[float])... method glVertexAttrib4f (line 6596) | def glVertexAttrib4f(self, indx: int, x: float, y: float, z: float, w:... method glVertexAttrib4fv (line 6597) | def glVertexAttrib4fv(self, indx: int, values: typing.Iterable[float])... method glVertexAttribPointer (line 6598) | def glVertexAttribPointer(self, indx: int, size: int, type: int, norma... method glViewport (line 6599) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method hasOpenGLFeature (line 6600) | def hasOpenGLFeature(self, feature: QOpenGLFunctions.OpenGLFeature) ->... method initializeOpenGLFunctions (line 6601) | def initializeOpenGLFunctions(self) -> None: ... method openGLFeatures (line 6602) | def openGLFeatures(self) -> QOpenGLFunctions.OpenGLFeatures | QOpenGLF... class QOpenGLPixelTransferOptions (line 6604) | class QOpenGLPixelTransferOptions(shiboken2.Object): method __init__ (line 6606) | def __init__(self, arg__1: QOpenGLPixelTransferOptions) -> None: ... method __init__ (line 6608) | def __init__(self) -> None: ... method alignment (line 6609) | def alignment(self) -> int: ... method imageHeight (line 6610) | def imageHeight(self) -> int: ... method isLeastSignificantBitFirst (line 6611) | def isLeastSignificantBitFirst(self) -> bool: ... method isSwapBytesEnabled (line 6612) | def isSwapBytesEnabled(self) -> bool: ... method rowLength (line 6613) | def rowLength(self) -> int: ... method setAlignment (line 6614) | def setAlignment(self, alignment: int) -> None: ... method setImageHeight (line 6615) | def setImageHeight(self, imageHeight: int) -> None: ... method setLeastSignificantByteFirst (line 6616) | def setLeastSignificantByteFirst(self, lsbFirst: bool) -> None: ... method setRowLength (line 6617) | def setRowLength(self, rowLength: int) -> None: ... method setSkipImages (line 6618) | def setSkipImages(self, skipImages: int) -> None: ... method setSkipPixels (line 6619) | def setSkipPixels(self, skipPixels: int) -> None: ... method setSkipRows (line 6620) | def setSkipRows(self, skipRows: int) -> None: ... method setSwapBytesEnabled (line 6621) | def setSwapBytesEnabled(self, swapBytes: bool) -> None: ... method skipImages (line 6622) | def skipImages(self) -> int: ... method skipPixels (line 6623) | def skipPixels(self) -> int: ... method skipRows (line 6624) | def skipRows(self) -> int: ... method swap (line 6625) | def swap(self, other: QOpenGLPixelTransferOptions) -> None: ... method __copy__ (line 6626) | def __copy__(self) -> None: ... class QOpenGLShader (line 6628) | class QOpenGLShader(PySide2.QtCore.QObject): class ShaderType (line 6629) | class ShaderType: method __init__ (line 6631) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6632) | def __and__(self, other: typing.SupportsInt) -> QOpenGLShader.Shader... method __bool__ (line 6633) | def __bool__(self) -> bool: ... method __eq__ (line 6634) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6635) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6636) | def __gt__(self, other: object) -> bool: ... method __index__ (line 6637) | def __index__(self) -> int: ... method __int__ (line 6638) | def __int__(self) -> int: ... method __invert__ (line 6639) | def __invert__(self) -> QOpenGLShader.ShaderType: ... method __le__ (line 6640) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6641) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6642) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6643) | def __or__(self, other: typing.SupportsInt) -> QOpenGLShader.ShaderT... method __rand__ (line 6644) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLShader.Shade... method __ror__ (line 6645) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLShader.Shader... method __rxor__ (line 6646) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLShader.Shade... method __xor__ (line 6647) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLShader.Shader... class ShaderTypeBit (line 6649) | class ShaderTypeBit: method __init__ (line 6659) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6660) | def __and__(self, other: typing.SupportsInt) -> QOpenGLShader.Shader... method __bool__ (line 6661) | def __bool__(self) -> bool: ... method __eq__ (line 6662) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6663) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6664) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6665) | def __hash__(self) -> int: ... method __index__ (line 6666) | def __index__(self) -> int: ... method __int__ (line 6667) | def __int__(self) -> int: ... method __invert__ (line 6668) | def __invert__(self) -> QOpenGLShader.ShaderType: ... method __le__ (line 6669) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6670) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6671) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6672) | def __or__(self, other: typing.SupportsInt) -> QOpenGLShader.ShaderT... method __rand__ (line 6673) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLShader.Shade... method __ror__ (line 6674) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLShader.Shader... method __rxor__ (line 6675) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLShader.Shade... method __xor__ (line 6676) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLShader.Shader... method __init__ (line 6684) | def __init__(self, type: QOpenGLShader.ShaderType | QOpenGLShader.Shad... method compileSourceCode (line 6686) | def compileSourceCode(self, source: PySide2.QtCore.QByteArray | bytes)... method compileSourceCode (line 6688) | def compileSourceCode(self, source: str) -> bool: ... method compileSourceCode (line 6690) | def compileSourceCode(self, source: bytes) -> bool: ... # type: ignor... method compileSourceFile (line 6691) | def compileSourceFile(self, fileName: str) -> bool: ... method hasOpenGLShaders (line 6693) | def hasOpenGLShaders(type: QOpenGLShader.ShaderType | QOpenGLShader.Sh... method isCompiled (line 6694) | def isCompiled(self) -> bool: ... method log (line 6695) | def log(self) -> str: ... method shaderId (line 6696) | def shaderId(self) -> int: ... method shaderType (line 6697) | def shaderType(self) -> QOpenGLShader.ShaderType | QOpenGLShader.Shade... method sourceCode (line 6698) | def sourceCode(self) -> PySide2.QtCore.QByteArray: ... class QOpenGLShaderProgram (line 6700) | class QOpenGLShaderProgram(PySide2.QtCore.QObject): method __init__ (line 6702) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method addCacheableShaderFromSourceCode (line 6704) | def addCacheableShaderFromSourceCode(self, type: QOpenGLShader.ShaderT... method addCacheableShaderFromSourceCode (line 6706) | def addCacheableShaderFromSourceCode(self, type: QOpenGLShader.ShaderT... method addCacheableShaderFromSourceCode (line 6708) | def addCacheableShaderFromSourceCode(self, type: QOpenGLShader.ShaderT... method addCacheableShaderFromSourceFile (line 6709) | def addCacheableShaderFromSourceFile(self, type: QOpenGLShader.ShaderT... method addShader (line 6710) | def addShader(self, shader: QOpenGLShader) -> bool: ... method addShaderFromSourceCode (line 6712) | def addShaderFromSourceCode(self, type: QOpenGLShader.ShaderType | QOp... method addShaderFromSourceCode (line 6714) | def addShaderFromSourceCode(self, type: QOpenGLShader.ShaderType | QOp... method addShaderFromSourceCode (line 6716) | def addShaderFromSourceCode(self, type: QOpenGLShader.ShaderType | QOp... method addShaderFromSourceFile (line 6717) | def addShaderFromSourceFile(self, type: QOpenGLShader.ShaderType | QOp... method attributeLocation (line 6719) | def attributeLocation(self, name: PySide2.QtCore.QByteArray | bytes) -... method attributeLocation (line 6721) | def attributeLocation(self, name: str) -> int: ... method attributeLocation (line 6723) | def attributeLocation(self, name: bytes) -> int: ... # type: ignore[o... method bind (line 6724) | def bind(self) -> bool: ... method bindAttributeLocation (line 6726) | def bindAttributeLocation(self, name: PySide2.QtCore.QByteArray | byte... method bindAttributeLocation (line 6728) | def bindAttributeLocation(self, name: str, location: int) -> None: ... method bindAttributeLocation (line 6730) | def bindAttributeLocation(self, name: bytes, location: int) -> None: .... method create (line 6731) | def create(self) -> bool: ... method defaultInnerTessellationLevels (line 6732) | def defaultInnerTessellationLevels(self) -> list[float]: ... method defaultOuterTessellationLevels (line 6733) | def defaultOuterTessellationLevels(self) -> list[float]: ... method disableAttributeArray (line 6735) | def disableAttributeArray(self, name: bytes) -> None: ... method disableAttributeArray (line 6737) | def disableAttributeArray(self, location: int) -> None: ... method enableAttributeArray (line 6739) | def enableAttributeArray(self, name: bytes) -> None: ... method enableAttributeArray (line 6741) | def enableAttributeArray(self, location: int) -> None: ... method hasOpenGLShaderPrograms (line 6743) | def hasOpenGLShaderPrograms(context: QOpenGLContext | None = ...) -> b... method isLinked (line 6744) | def isLinked(self) -> bool: ... method link (line 6745) | def link(self) -> bool: ... method log (line 6746) | def log(self) -> str: ... method maxGeometryOutputVertices (line 6747) | def maxGeometryOutputVertices(self) -> int: ... method patchVertexCount (line 6748) | def patchVertexCount(self) -> int: ... method programId (line 6749) | def programId(self) -> int: ... method release (line 6750) | def release(self) -> None: ... method removeAllShaders (line 6751) | def removeAllShaders(self) -> None: ... method removeShader (line 6752) | def removeShader(self, shader: QOpenGLShader) -> None: ... method setAttributeArray (line 6754) | def setAttributeArray(self, name: bytes, type: int, values: int, tuple... method setAttributeArray (line 6756) | def setAttributeArray(self, location: int, type: int, values: int, tup... method setAttributeArray (line 6758) | def setAttributeArray(self, name: bytes, values: typing.Iterable[float... method setAttributeArray (line 6760) | def setAttributeArray(self, location: int, values: typing.Iterable[flo... method setAttributeBuffer (line 6762) | def setAttributeBuffer(self, name: bytes, type: int, offset: int, tupl... method setAttributeBuffer (line 6764) | def setAttributeBuffer(self, location: int, type: int, offset: int, tu... method setAttributeValue (line 6766) | def setAttributeValue(self, name: bytes, x: float, y: float, z: float,... method setAttributeValue (line 6768) | def setAttributeValue(self, location: int, x: float, y: float, z: floa... method setAttributeValue (line 6770) | def setAttributeValue(self, name: bytes, x: float, y: float, z: float)... method setAttributeValue (line 6772) | def setAttributeValue(self, name: bytes, values: typing.Iterable[float... method setAttributeValue (line 6774) | def setAttributeValue(self, location: int, x: float, y: float, z: floa... method setAttributeValue (line 6776) | def setAttributeValue(self, location: int, values: typing.Iterable[flo... method setAttributeValue (line 6778) | def setAttributeValue(self, name: bytes, x: float, y: float) -> None: ... method setAttributeValue (line 6780) | def setAttributeValue(self, location: int, x: float, y: float) -> None... method setAttributeValue (line 6782) | def setAttributeValue(self, name: bytes, value: QColor | PySide2.QtCor... method setAttributeValue (line 6784) | def setAttributeValue(self, name: bytes, value: QVector2D) -> None: ... method setAttributeValue (line 6786) | def setAttributeValue(self, name: bytes, value: QVector3D) -> None: ... method setAttributeValue (line 6788) | def setAttributeValue(self, name: bytes, value: QVector4D) -> None: ... method setAttributeValue (line 6790) | def setAttributeValue(self, name: bytes, value: float) -> None: ... method setAttributeValue (line 6792) | def setAttributeValue(self, location: int, value: QColor | PySide2.QtC... method setAttributeValue (line 6794) | def setAttributeValue(self, location: int, value: QVector2D) -> None: ... method setAttributeValue (line 6796) | def setAttributeValue(self, location: int, value: QVector3D) -> None: ... method setAttributeValue (line 6798) | def setAttributeValue(self, location: int, value: QVector4D) -> None: ... method setAttributeValue (line 6800) | def setAttributeValue(self, location: int, value: float) -> None: ... method setDefaultInnerTessellationLevels (line 6801) | def setDefaultInnerTessellationLevels(self, levels: list[float]) -> No... method setDefaultOuterTessellationLevels (line 6802) | def setDefaultOuterTessellationLevels(self, levels: list[float]) -> No... method setPatchVertexCount (line 6803) | def setPatchVertexCount(self, count: int) -> None: ... method setUniformValue (line 6805) | def setUniformValue(self, name: bytes, x: float, y: float, z: float, w... method setUniformValue (line 6807) | def setUniformValue(self, location: int, x: float, y: float, z: float,... method setUniformValue (line 6809) | def setUniformValue(self, name: bytes, x: float, y: float, z: float) -... method setUniformValue (line 6811) | def setUniformValue(self, location: int, x: float, y: float, z: float)... method setUniformValue (line 6813) | def setUniformValue(self, name: bytes, x: float, y: float) -> None: ... method setUniformValue (line 6815) | def setUniformValue(self, location: int, x: float, y: float) -> None: ... method setUniformValue (line 6817) | def setUniformValue(self, name: bytes, value: QMatrix2x2) -> None: ... method setUniformValue (line 6819) | def setUniformValue(self, name: bytes, value: QMatrix2x3) -> None: ... method setUniformValue (line 6821) | def setUniformValue(self, name: bytes, value: QMatrix2x4) -> None: ... method setUniformValue (line 6823) | def setUniformValue(self, name: bytes, value: QMatrix3x2) -> None: ... method setUniformValue (line 6825) | def setUniformValue(self, name: bytes, value: QMatrix3x3) -> None: ... method setUniformValue (line 6827) | def setUniformValue(self, name: bytes, value: QMatrix3x4) -> None: ... method setUniformValue (line 6829) | def setUniformValue(self, name: bytes, value: QMatrix4x2) -> None: ... method setUniformValue (line 6831) | def setUniformValue(self, name: bytes, value: QMatrix4x3) -> None: ... method setUniformValue (line 6833) | def setUniformValue(self, name: bytes, value: QMatrix4x4) -> None: ... method setUniformValue (line 6835) | def setUniformValue(self, name: bytes, value: QTransform) -> None: ... method setUniformValue (line 6837) | def setUniformValue(self, name: bytes, value: QVector2D) -> None: ... method setUniformValue (line 6839) | def setUniformValue(self, name: bytes, value: QVector3D) -> None: ... method setUniformValue (line 6841) | def setUniformValue(self, name: bytes, value: QVector4D) -> None: ... method setUniformValue (line 6843) | def setUniformValue(self, name: bytes, value: tuple[tuple[float, float... method setUniformValue (line 6845) | def setUniformValue(self, name: bytes, value: tuple[tuple[float, float... method setUniformValue (line 6847) | def setUniformValue(self, name: bytes, value: tuple[tuple[float, float... method setUniformValue (line 6849) | def setUniformValue(self, name: bytes, size: PySide2.QtCore.QSize) -> ... method setUniformValue (line 6851) | def setUniformValue(self, name: bytes, size: PySide2.QtCore.QSizeF) ->... method setUniformValue (line 6853) | def setUniformValue(self, name: bytes, point: PySide2.QtCore.QPoint) -... method setUniformValue (line 6855) | def setUniformValue(self, name: bytes, point: PySide2.QtCore.QPointF) ... method setUniformValue (line 6857) | def setUniformValue(self, name: bytes, color: QColor | PySide2.QtCore.... method setUniformValue (line 6859) | def setUniformValue(self, location: int, value: QMatrix2x2) -> None: ... method setUniformValue (line 6861) | def setUniformValue(self, location: int, value: QMatrix2x3) -> None: ... method setUniformValue (line 6863) | def setUniformValue(self, location: int, value: QMatrix2x4) -> None: ... method setUniformValue (line 6865) | def setUniformValue(self, location: int, value: QMatrix3x2) -> None: ... method setUniformValue (line 6867) | def setUniformValue(self, location: int, value: QMatrix3x3) -> None: ... method setUniformValue (line 6869) | def setUniformValue(self, location: int, value: QMatrix3x4) -> None: ... method setUniformValue (line 6871) | def setUniformValue(self, location: int, value: QMatrix4x2) -> None: ... method setUniformValue (line 6873) | def setUniformValue(self, location: int, value: QMatrix4x3) -> None: ... method setUniformValue (line 6875) | def setUniformValue(self, location: int, value: QMatrix4x4) -> None: ... method setUniformValue (line 6877) | def setUniformValue(self, location: int, value: QTransform) -> None: ... method setUniformValue (line 6879) | def setUniformValue(self, location: int, value: QVector2D) -> None: ... method setUniformValue (line 6881) | def setUniformValue(self, location: int, value: QVector3D) -> None: ... method setUniformValue (line 6883) | def setUniformValue(self, location: int, value: QVector4D) -> None: ... method setUniformValue (line 6885) | def setUniformValue(self, location: int, value: float) -> None: ... method setUniformValue (line 6887) | def setUniformValue(self, location: int, value: tuple[tuple[float, flo... method setUniformValue (line 6889) | def setUniformValue(self, location: int, value: tuple[tuple[float, flo... method setUniformValue (line 6891) | def setUniformValue(self, location: int, value: tuple[tuple[float, flo... method setUniformValue (line 6893) | def setUniformValue(self, location: int, value: int) -> None: ... # t... method setUniformValue (line 6895) | def setUniformValue(self, location: int, size: PySide2.QtCore.QSize) -... method setUniformValue (line 6897) | def setUniformValue(self, location: int, size: PySide2.QtCore.QSizeF) ... method setUniformValue (line 6899) | def setUniformValue(self, location: int, point: PySide2.QtCore.QPoint)... method setUniformValue (line 6901) | def setUniformValue(self, location: int, point: PySide2.QtCore.QPointF... method setUniformValue (line 6903) | def setUniformValue(self, location: int, color: QColor | PySide2.QtCor... method setUniformValue1f (line 6905) | def setUniformValue1f(self, arg__1: bytes, arg__2: float) -> None: ... method setUniformValue1f (line 6907) | def setUniformValue1f(self, arg__1: int, arg__2: float) -> None: ... method setUniformValue1i (line 6909) | def setUniformValue1i(self, arg__1: bytes, arg__2: int) -> None: ... method setUniformValue1i (line 6911) | def setUniformValue1i(self, arg__1: int, arg__2: int) -> None: ... method setUniformValueArray (line 6913) | def setUniformValueArray(self, name: bytes, values: typing.Iterable[fl... method setUniformValueArray (line 6915) | def setUniformValueArray(self, location: int, values: typing.Iterable[... method setUniformValueArray (line 6917) | def setUniformValueArray(self, name: bytes, values: typing.Iterable[in... method setUniformValueArray (line 6919) | def setUniformValueArray(self, location: int, values: typing.Iterable[... method shaders (line 6920) | def shaders(self) -> list[QOpenGLShader]: ... method uniformLocation (line 6922) | def uniformLocation(self, name: PySide2.QtCore.QByteArray | bytes) -> ... method uniformLocation (line 6924) | def uniformLocation(self, name: str) -> int: ... method uniformLocation (line 6926) | def uniformLocation(self, name: bytes) -> int: ... # type: ignore[ove... class QOpenGLTexture (line 6928) | class QOpenGLTexture(shiboken2.Object): class BindingTarget (line 6929) | class BindingTarget: method __init__ (line 6944) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6945) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindi... method __and__ (line 6946) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindi... method __bool__ (line 6947) | def __bool__(self) -> bool: ... method __eq__ (line 6948) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6949) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6950) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6951) | def __hash__(self) -> int: ... method __index__ (line 6952) | def __index__(self) -> int: ... method __int__ (line 6953) | def __int__(self) -> int: ... method __le__ (line 6954) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6955) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6956) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindi... method __ne__ (line 6957) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6958) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindin... method __pos__ (line 6959) | def __pos__(self): ... method __radd__ (line 6960) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bind... method __rand__ (line 6961) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bind... method __rmul__ (line 6962) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bind... method __ror__ (line 6963) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindi... method __rsub__ (line 6964) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bind... method __rxor__ (line 6965) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bind... method __sub__ (line 6966) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindi... method __xor__ (line 6967) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Bindi... class ComparisonFunction (line 6969) | class ComparisonFunction: method __init__ (line 6981) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6982) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __and__ (line 6983) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __bool__ (line 6984) | def __bool__(self) -> bool: ... method __eq__ (line 6985) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6986) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6987) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6988) | def __hash__(self) -> int: ... method __index__ (line 6989) | def __index__(self) -> int: ... method __int__ (line 6990) | def __int__(self) -> int: ... method __le__ (line 6991) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6992) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6993) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __ne__ (line 6994) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6995) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compar... method __pos__ (line 6996) | def __pos__(self): ... method __radd__ (line 6997) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __rand__ (line 6998) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __rmul__ (line 6999) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __ror__ (line 7000) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __rsub__ (line 7001) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __rxor__ (line 7002) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __sub__ (line 7003) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __xor__ (line 7004) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... class ComparisonMode (line 7006) | class ComparisonMode: method __init__ (line 7012) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7013) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __and__ (line 7014) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __bool__ (line 7015) | def __bool__(self) -> bool: ... method __eq__ (line 7016) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7017) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7018) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7019) | def __hash__(self) -> int: ... method __index__ (line 7020) | def __index__(self) -> int: ... method __int__ (line 7021) | def __int__(self) -> int: ... method __le__ (line 7022) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7023) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7024) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __ne__ (line 7025) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7026) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compar... method __pos__ (line 7027) | def __pos__(self): ... method __radd__ (line 7028) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __rand__ (line 7029) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __rmul__ (line 7030) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __ror__ (line 7031) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __rsub__ (line 7032) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __rxor__ (line 7033) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Comp... method __sub__ (line 7034) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... method __xor__ (line 7035) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Compa... class CoordinateDirection (line 7037) | class CoordinateDirection: method __init__ (line 7044) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7045) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coord... method __and__ (line 7046) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coord... method __bool__ (line 7047) | def __bool__(self) -> bool: ... method __eq__ (line 7048) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7049) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7050) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7051) | def __hash__(self) -> int: ... method __index__ (line 7052) | def __index__(self) -> int: ... method __int__ (line 7053) | def __int__(self) -> int: ... method __le__ (line 7054) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7055) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7056) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coord... method __ne__ (line 7057) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7058) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coordi... method __pos__ (line 7059) | def __pos__(self): ... method __radd__ (line 7060) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coor... method __rand__ (line 7061) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coor... method __rmul__ (line 7062) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coor... method __ror__ (line 7063) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coord... method __rsub__ (line 7064) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coor... method __rxor__ (line 7065) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coor... method __sub__ (line 7066) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coord... method __xor__ (line 7067) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Coord... class CubeMapFace (line 7069) | class CubeMapFace: method __init__ (line 7079) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7080) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeM... method __and__ (line 7081) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeM... method __bool__ (line 7082) | def __bool__(self) -> bool: ... method __eq__ (line 7083) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7084) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7085) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7086) | def __hash__(self) -> int: ... method __index__ (line 7087) | def __index__(self) -> int: ... method __int__ (line 7088) | def __int__(self) -> int: ... method __le__ (line 7089) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7090) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7091) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeM... method __ne__ (line 7092) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7093) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeMa... method __pos__ (line 7094) | def __pos__(self): ... method __radd__ (line 7095) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Cube... method __rand__ (line 7096) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Cube... method __rmul__ (line 7097) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Cube... method __ror__ (line 7098) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeM... method __rsub__ (line 7099) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Cube... method __rxor__ (line 7100) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Cube... method __sub__ (line 7101) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeM... method __xor__ (line 7102) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.CubeM... class DepthStencilMode (line 7104) | class DepthStencilMode: method __init__ (line 7110) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7111) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Depth... method __and__ (line 7112) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Depth... method __bool__ (line 7113) | def __bool__(self) -> bool: ... method __eq__ (line 7114) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7115) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7116) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7117) | def __hash__(self) -> int: ... method __index__ (line 7118) | def __index__(self) -> int: ... method __int__ (line 7119) | def __int__(self) -> int: ... method __le__ (line 7120) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7121) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7122) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Depth... method __ne__ (line 7123) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7124) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.DepthS... method __pos__ (line 7125) | def __pos__(self): ... method __radd__ (line 7126) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Dept... method __rand__ (line 7127) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Dept... method __rmul__ (line 7128) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Dept... method __ror__ (line 7129) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Depth... method __rsub__ (line 7130) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Dept... method __rxor__ (line 7131) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Dept... method __sub__ (line 7132) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Depth... method __xor__ (line 7133) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Depth... class Feature (line 7135) | class Feature: method __init__ (line 7156) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 7157) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featu... method __bool__ (line 7158) | def __bool__(self) -> bool: ... method __eq__ (line 7159) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7160) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7161) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7162) | def __hash__(self) -> int: ... method __index__ (line 7163) | def __index__(self) -> int: ... method __int__ (line 7164) | def __int__(self) -> int: ... method __invert__ (line 7165) | def __invert__(self) -> QOpenGLTexture.Features: ... method __le__ (line 7166) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7167) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7168) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7169) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featur... method __rand__ (line 7170) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Feat... method __ror__ (line 7171) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featu... method __rxor__ (line 7172) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Feat... method __xor__ (line 7173) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featu... class Features (line 7175) | class Features: method __init__ (line 7177) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 7178) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featu... method __bool__ (line 7179) | def __bool__(self) -> bool: ... method __eq__ (line 7180) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7181) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7182) | def __gt__(self, other: object) -> bool: ... method __index__ (line 7183) | def __index__(self) -> int: ... method __int__ (line 7184) | def __int__(self) -> int: ... method __invert__ (line 7185) | def __invert__(self) -> QOpenGLTexture.Features: ... method __le__ (line 7186) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7187) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7188) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7189) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featur... method __rand__ (line 7190) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Feat... method __ror__ (line 7191) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featu... method __rxor__ (line 7192) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Feat... method __xor__ (line 7193) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Featu... class Filter (line 7195) | class Filter: method __init__ (line 7205) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7206) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filte... method __and__ (line 7207) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filte... method __bool__ (line 7208) | def __bool__(self) -> bool: ... method __eq__ (line 7209) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7210) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7211) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7212) | def __hash__(self) -> int: ... method __index__ (line 7213) | def __index__(self) -> int: ... method __int__ (line 7214) | def __int__(self) -> int: ... method __le__ (line 7215) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7216) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7217) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filte... method __ne__ (line 7218) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7219) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filter... method __pos__ (line 7220) | def __pos__(self): ... method __radd__ (line 7221) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filt... method __rand__ (line 7222) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filt... method __rmul__ (line 7223) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filt... method __ror__ (line 7224) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filte... method __rsub__ (line 7225) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filt... method __rxor__ (line 7226) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filt... method __sub__ (line 7227) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filte... method __xor__ (line 7228) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Filte... class MipMapGeneration (line 7230) | class MipMapGeneration: method __init__ (line 7236) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7237) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMa... method __and__ (line 7238) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMa... method __bool__ (line 7239) | def __bool__(self) -> bool: ... method __eq__ (line 7240) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7241) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7242) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7243) | def __hash__(self) -> int: ... method __index__ (line 7244) | def __index__(self) -> int: ... method __int__ (line 7245) | def __int__(self) -> int: ... method __le__ (line 7246) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7247) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7248) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMa... method __ne__ (line 7249) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7250) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMap... method __pos__ (line 7251) | def __pos__(self): ... method __radd__ (line 7252) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipM... method __rand__ (line 7253) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipM... method __rmul__ (line 7254) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipM... method __ror__ (line 7255) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMa... method __rsub__ (line 7256) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipM... method __rxor__ (line 7257) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipM... method __sub__ (line 7258) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMa... method __xor__ (line 7259) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.MipMa... class PixelFormat (line 7261) | class PixelFormat: method __init__ (line 7284) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7285) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __and__ (line 7286) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __bool__ (line 7287) | def __bool__(self) -> bool: ... method __eq__ (line 7288) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7289) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7290) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7291) | def __hash__(self) -> int: ... method __index__ (line 7292) | def __index__(self) -> int: ... method __int__ (line 7293) | def __int__(self) -> int: ... method __le__ (line 7294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7295) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7296) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __ne__ (line 7297) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7298) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.PixelF... method __pos__ (line 7299) | def __pos__(self): ... method __radd__ (line 7300) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __rand__ (line 7301) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __rmul__ (line 7302) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __ror__ (line 7303) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __rsub__ (line 7304) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __rxor__ (line 7305) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __sub__ (line 7306) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __xor__ (line 7307) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... class PixelType (line 7309) | class PixelType: method __init__ (line 7339) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7340) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __and__ (line 7341) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __bool__ (line 7342) | def __bool__(self) -> bool: ... method __eq__ (line 7343) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7344) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7345) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7346) | def __hash__(self) -> int: ... method __index__ (line 7347) | def __index__(self) -> int: ... method __int__ (line 7348) | def __int__(self) -> int: ... method __le__ (line 7349) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7350) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7351) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __ne__ (line 7352) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7353) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.PixelT... method __pos__ (line 7354) | def __pos__(self): ... method __radd__ (line 7355) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __rand__ (line 7356) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __rmul__ (line 7357) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __ror__ (line 7358) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __rsub__ (line 7359) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __rxor__ (line 7360) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixe... method __sub__ (line 7361) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... method __xor__ (line 7362) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Pixel... class SwizzleComponent (line 7364) | class SwizzleComponent: method __init__ (line 7372) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7373) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __and__ (line 7374) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __bool__ (line 7375) | def __bool__(self) -> bool: ... method __eq__ (line 7376) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7377) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7378) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7379) | def __hash__(self) -> int: ... method __index__ (line 7380) | def __index__(self) -> int: ... method __int__ (line 7381) | def __int__(self) -> int: ... method __le__ (line 7382) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7383) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7384) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __ne__ (line 7385) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7386) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizzl... method __pos__ (line 7387) | def __pos__(self): ... method __radd__ (line 7388) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __rand__ (line 7389) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __rmul__ (line 7390) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __ror__ (line 7391) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __rsub__ (line 7392) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __rxor__ (line 7393) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __sub__ (line 7394) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __xor__ (line 7395) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... class SwizzleValue (line 7397) | class SwizzleValue: method __init__ (line 7407) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7408) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __and__ (line 7409) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __bool__ (line 7410) | def __bool__(self) -> bool: ... method __eq__ (line 7411) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7412) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7413) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7414) | def __hash__(self) -> int: ... method __index__ (line 7415) | def __index__(self) -> int: ... method __int__ (line 7416) | def __int__(self) -> int: ... method __le__ (line 7417) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7418) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7419) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __ne__ (line 7420) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7421) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizzl... method __pos__ (line 7422) | def __pos__(self): ... method __radd__ (line 7423) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __rand__ (line 7424) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __rmul__ (line 7425) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __ror__ (line 7426) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __rsub__ (line 7427) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __rxor__ (line 7428) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swiz... method __sub__ (line 7429) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... method __xor__ (line 7430) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Swizz... class Target (line 7432) | class Target: method __init__ (line 7447) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7448) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targe... method __and__ (line 7449) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targe... method __bool__ (line 7450) | def __bool__(self) -> bool: ... method __eq__ (line 7451) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7452) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7453) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7454) | def __hash__(self) -> int: ... method __index__ (line 7455) | def __index__(self) -> int: ... method __int__ (line 7456) | def __int__(self) -> int: ... method __le__ (line 7457) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7458) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7459) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targe... method __ne__ (line 7460) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7461) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Target... method __pos__ (line 7462) | def __pos__(self): ... method __radd__ (line 7463) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targ... method __rand__ (line 7464) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targ... method __rmul__ (line 7465) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targ... method __ror__ (line 7466) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targe... method __rsub__ (line 7467) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targ... method __rxor__ (line 7468) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targ... method __sub__ (line 7469) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targe... method __xor__ (line 7470) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Targe... class TextureFormat (line 7472) | class TextureFormat: method __init__ (line 7602) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7603) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __and__ (line 7604) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __bool__ (line 7605) | def __bool__(self) -> bool: ... method __eq__ (line 7606) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7607) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7608) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7609) | def __hash__(self) -> int: ... method __index__ (line 7610) | def __index__(self) -> int: ... method __int__ (line 7611) | def __int__(self) -> int: ... method __le__ (line 7612) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7613) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7614) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __ne__ (line 7615) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7616) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textur... method __pos__ (line 7617) | def __pos__(self): ... method __radd__ (line 7618) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rand__ (line 7619) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rmul__ (line 7620) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __ror__ (line 7621) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __rsub__ (line 7622) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rxor__ (line 7623) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __sub__ (line 7624) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __xor__ (line 7625) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... class TextureFormatClass (line 7627) | class TextureFormatClass: method __init__ (line 7649) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7650) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __and__ (line 7651) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __bool__ (line 7652) | def __bool__(self) -> bool: ... method __eq__ (line 7653) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7654) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7655) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7656) | def __hash__(self) -> int: ... method __index__ (line 7657) | def __index__(self) -> int: ... method __int__ (line 7658) | def __int__(self) -> int: ... method __le__ (line 7659) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7660) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7661) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __ne__ (line 7662) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7663) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textur... method __pos__ (line 7664) | def __pos__(self): ... method __radd__ (line 7665) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rand__ (line 7666) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rmul__ (line 7667) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __ror__ (line 7668) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __rsub__ (line 7669) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rxor__ (line 7670) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __sub__ (line 7671) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __xor__ (line 7672) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... class TextureUnitReset (line 7674) | class TextureUnitReset: method __init__ (line 7680) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7681) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __and__ (line 7682) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __bool__ (line 7683) | def __bool__(self) -> bool: ... method __eq__ (line 7684) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7685) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7686) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7687) | def __hash__(self) -> int: ... method __index__ (line 7688) | def __index__(self) -> int: ... method __int__ (line 7689) | def __int__(self) -> int: ... method __le__ (line 7690) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7691) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7692) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __ne__ (line 7693) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7694) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textur... method __pos__ (line 7695) | def __pos__(self): ... method __radd__ (line 7696) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rand__ (line 7697) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rmul__ (line 7698) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __ror__ (line 7699) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __rsub__ (line 7700) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __rxor__ (line 7701) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Text... method __sub__ (line 7702) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... method __xor__ (line 7703) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Textu... class WrapMode (line 7705) | class WrapMode: method __init__ (line 7713) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7714) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapM... method __and__ (line 7715) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapM... method __bool__ (line 7716) | def __bool__(self) -> bool: ... method __eq__ (line 7717) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7718) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7719) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7720) | def __hash__(self) -> int: ... method __index__ (line 7721) | def __index__(self) -> int: ... method __int__ (line 7722) | def __int__(self) -> int: ... method __le__ (line 7723) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7724) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7725) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapM... method __ne__ (line 7726) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7727) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapMo... method __pos__ (line 7728) | def __pos__(self): ... method __radd__ (line 7729) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTexture.Wrap... method __rand__ (line 7730) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTexture.Wrap... method __rmul__ (line 7731) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTexture.Wrap... method __ror__ (line 7732) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapM... method __rsub__ (line 7733) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTexture.Wrap... method __rxor__ (line 7734) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTexture.Wrap... method __sub__ (line 7735) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapM... method __xor__ (line 7736) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTexture.WrapM... method __init__ (line 8011) | def __init__(self, image: QImage, genMipMaps: QOpenGLTexture.MipMapGen... method __init__ (line 8013) | def __init__(self, target: QOpenGLTexture.Target) -> None: ... method allocateStorage (line 8015) | def allocateStorage(self, pixelFormat: QOpenGLTexture.PixelFormat, pix... method allocateStorage (line 8017) | def allocateStorage(self) -> None: ... method bind (line 8019) | def bind(self, unit: int, reset: QOpenGLTexture.TextureUnitReset = ...... method bind (line 8021) | def bind(self) -> None: ... method borderColor (line 8022) | def borderColor(self) -> QColor: ... method boundTextureId (line 8025) | def boundTextureId(unit: int, target: QOpenGLTexture.BindingTarget) ->... method boundTextureId (line 8028) | def boundTextureId(target: QOpenGLTexture.BindingTarget) -> int: ... method comparisonFunction (line 8029) | def comparisonFunction(self) -> QOpenGLTexture.ComparisonFunction: ... method comparisonMode (line 8030) | def comparisonMode(self) -> QOpenGLTexture.ComparisonMode: ... method create (line 8031) | def create(self) -> bool: ... method createTextureView (line 8032) | def createTextureView(self, target: QOpenGLTexture.Target, viewFormat:... method depth (line 8033) | def depth(self) -> int: ... method depthStencilMode (line 8034) | def depthStencilMode(self) -> QOpenGLTexture.DepthStencilMode: ... method destroy (line 8035) | def destroy(self) -> None: ... method faces (line 8036) | def faces(self) -> int: ... method format (line 8037) | def format(self) -> QOpenGLTexture.TextureFormat: ... method generateMipMaps (line 8039) | def generateMipMaps(self, baseLevel: int, resetBaseLevel: bool = ...) ... method generateMipMaps (line 8041) | def generateMipMaps(self) -> None: ... method hasFeature (line 8043) | def hasFeature(feature: QOpenGLTexture.Feature) -> bool: ... method height (line 8044) | def height(self) -> int: ... method isAutoMipMapGenerationEnabled (line 8045) | def isAutoMipMapGenerationEnabled(self) -> bool: ... method isBound (line 8047) | def isBound(self, unit: int) -> bool: ... method isBound (line 8049) | def isBound(self) -> bool: ... method isCreated (line 8050) | def isCreated(self) -> bool: ... method isFixedSamplePositions (line 8051) | def isFixedSamplePositions(self) -> bool: ... method isStorageAllocated (line 8052) | def isStorageAllocated(self) -> bool: ... method isTextureView (line 8053) | def isTextureView(self) -> bool: ... method layers (line 8054) | def layers(self) -> int: ... method levelOfDetailRange (line 8055) | def levelOfDetailRange(self) -> tuple[float, float]: ... method levelofDetailBias (line 8056) | def levelofDetailBias(self) -> float: ... method magnificationFilter (line 8057) | def magnificationFilter(self) -> QOpenGLTexture.Filter: ... method maximumAnisotropy (line 8058) | def maximumAnisotropy(self) -> float: ... method maximumLevelOfDetail (line 8059) | def maximumLevelOfDetail(self) -> float: ... method maximumMipLevels (line 8060) | def maximumMipLevels(self) -> int: ... method minMagFilters (line 8061) | def minMagFilters(self) -> tuple[QOpenGLTexture.Filter, QOpenGLTexture... method minificationFilter (line 8062) | def minificationFilter(self) -> QOpenGLTexture.Filter: ... method minimumLevelOfDetail (line 8063) | def minimumLevelOfDetail(self) -> float: ... method mipBaseLevel (line 8064) | def mipBaseLevel(self) -> int: ... method mipLevelRange (line 8065) | def mipLevelRange(self) -> tuple[int, int]: ... method mipLevels (line 8066) | def mipLevels(self) -> int: ... method mipMaxLevel (line 8067) | def mipMaxLevel(self) -> int: ... method release (line 8069) | def release(self, unit: int, reset: QOpenGLTexture.TextureUnitReset = ... method release (line 8071) | def release(self) -> None: ... method samples (line 8072) | def samples(self) -> int: ... method setAutoMipMapGenerationEnabled (line 8073) | def setAutoMipMapGenerationEnabled(self, enabled: bool) -> None: ... method setBorderColor (line 8075) | def setBorderColor(self, r: float, g: float, b: float, a: float) -> No... method setBorderColor (line 8077) | def setBorderColor(self, r: int, g: int, b: int, a: int) -> None: ... ... method setBorderColor (line 8079) | def setBorderColor(self, color: QColor | PySide2.QtCore.Qt.GlobalColor... method setComparisonFunction (line 8080) | def setComparisonFunction(self, function: QOpenGLTexture.ComparisonFun... method setComparisonMode (line 8081) | def setComparisonMode(self, mode: QOpenGLTexture.ComparisonMode) -> No... method setCompressedData (line 8083) | def setCompressedData(self, mipLevel: int, layer: int, layerCount: int... method setCompressedData (line 8085) | def setCompressedData(self, mipLevel: int, layer: int, cubeFace: QOpen... method setCompressedData (line 8087) | def setCompressedData(self, mipLevel: int, layer: int, dataSize: int, ... method setCompressedData (line 8089) | def setCompressedData(self, mipLevel: int, dataSize: int, data: int, o... method setCompressedData (line 8091) | def setCompressedData(self, dataSize: int, data: int, options: QOpenGL... method setData (line 8093) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 8095) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 8097) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 8099) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 8101) | def setData(self, mipLevel: int, layer: int, layerCount: int, cubeFace... method setData (line 8103) | def setData(self, mipLevel: int, layer: int, cubeFace: QOpenGLTexture.... method setData (line 8105) | def setData(self, mipLevel: int, layer: int, sourceFormat: QOpenGLText... method setData (line 8107) | def setData(self, mipLevel: int, sourceFormat: QOpenGLTexture.PixelFor... method setData (line 8109) | def setData(self, sourceFormat: QOpenGLTexture.PixelFormat, sourceType... method setData (line 8111) | def setData(self, image: QImage, genMipMaps: QOpenGLTexture.MipMapGene... method setDepthStencilMode (line 8112) | def setDepthStencilMode(self, mode: QOpenGLTexture.DepthStencilMode) -... method setFixedSamplePositions (line 8113) | def setFixedSamplePositions(self, fixed: bool) -> None: ... method setFormat (line 8114) | def setFormat(self, format: QOpenGLTexture.TextureFormat) -> None: ... method setLayers (line 8115) | def setLayers(self, layers: int) -> None: ... method setLevelOfDetailRange (line 8116) | def setLevelOfDetailRange(self, min: float, max: float) -> None: ... method setLevelofDetailBias (line 8117) | def setLevelofDetailBias(self, bias: float) -> None: ... method setMagnificationFilter (line 8118) | def setMagnificationFilter(self, filter: QOpenGLTexture.Filter) -> Non... method setMaximumAnisotropy (line 8119) | def setMaximumAnisotropy(self, anisotropy: float) -> None: ... method setMaximumLevelOfDetail (line 8120) | def setMaximumLevelOfDetail(self, value: float) -> None: ... method setMinMagFilters (line 8121) | def setMinMagFilters(self, minificationFilter: QOpenGLTexture.Filter, ... method setMinificationFilter (line 8122) | def setMinificationFilter(self, filter: QOpenGLTexture.Filter) -> None... method setMinimumLevelOfDetail (line 8123) | def setMinimumLevelOfDetail(self, value: float) -> None: ... method setMipBaseLevel (line 8124) | def setMipBaseLevel(self, baseLevel: int) -> None: ... method setMipLevelRange (line 8125) | def setMipLevelRange(self, baseLevel: int, maxLevel: int) -> None: ... method setMipLevels (line 8126) | def setMipLevels(self, levels: int) -> None: ... method setMipMaxLevel (line 8127) | def setMipMaxLevel(self, maxLevel: int) -> None: ... method setSamples (line 8128) | def setSamples(self, samples: int) -> None: ... method setSize (line 8129) | def setSize(self, width: int, height: int = ..., depth: int = ...) -> ... method setSwizzleMask (line 8131) | def setSwizzleMask(self, r: QOpenGLTexture.SwizzleValue, g: QOpenGLTex... method setSwizzleMask (line 8133) | def setSwizzleMask(self, component: QOpenGLTexture.SwizzleComponent, v... method setWrapMode (line 8135) | def setWrapMode(self, direction: QOpenGLTexture.CoordinateDirection, m... method setWrapMode (line 8137) | def setWrapMode(self, mode: QOpenGLTexture.WrapMode) -> None: ... method swizzleMask (line 8138) | def swizzleMask(self, component: QOpenGLTexture.SwizzleComponent) -> Q... method target (line 8139) | def target(self) -> QOpenGLTexture.Target: ... method textureId (line 8140) | def textureId(self) -> int: ... method width (line 8141) | def width(self) -> int: ... method wrapMode (line 8142) | def wrapMode(self, direction: QOpenGLTexture.CoordinateDirection) -> Q... class QOpenGLTextureBlitter (line 8144) | class QOpenGLTextureBlitter(shiboken2.Object): class Origin (line 8145) | class Origin: method __init__ (line 8151) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8152) | def __add__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitte... method __and__ (line 8153) | def __and__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitte... method __bool__ (line 8154) | def __bool__(self) -> bool: ... method __eq__ (line 8155) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8156) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8157) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8158) | def __hash__(self) -> int: ... method __index__ (line 8159) | def __index__(self) -> int: ... method __int__ (line 8160) | def __int__(self) -> int: ... method __le__ (line 8161) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8162) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8163) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitte... method __ne__ (line 8164) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8165) | def __or__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitter... method __pos__ (line 8166) | def __pos__(self): ... method __radd__ (line 8167) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitt... method __rand__ (line 8168) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitt... method __rmul__ (line 8169) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitt... method __ror__ (line 8170) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitte... method __rsub__ (line 8171) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitt... method __rxor__ (line 8172) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitt... method __sub__ (line 8173) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitte... method __xor__ (line 8174) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLTextureBlitte... method __init__ (line 8177) | def __init__(self) -> None: ... method bind (line 8178) | def bind(self, target: int = ...) -> None: ... method blit (line 8180) | def blit(self, texture: int, targetTransform: QMatrix4x4, sourceTransf... method blit (line 8182) | def blit(self, texture: int, targetTransform: QMatrix4x4, sourceOrigin... method create (line 8183) | def create(self) -> bool: ... method destroy (line 8184) | def destroy(self) -> None: ... method isCreated (line 8185) | def isCreated(self) -> bool: ... method release (line 8186) | def release(self) -> None: ... method setOpacity (line 8187) | def setOpacity(self, opacity: float) -> None: ... method setRedBlueSwizzle (line 8188) | def setRedBlueSwizzle(self, swizzle: bool) -> None: ... method sourceTransform (line 8190) | def sourceTransform(subTexture: PySide2.QtCore.QRectF, textureSize: Py... method supportsExternalOESTarget (line 8191) | def supportsExternalOESTarget(self) -> bool: ... method targetTransform (line 8193) | def targetTransform(target: PySide2.QtCore.QRectF, viewport: PySide2.Q... class QOpenGLTimeMonitor (line 8195) | class QOpenGLTimeMonitor(PySide2.QtCore.QObject): method __init__ (line 8197) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method create (line 8198) | def create(self) -> bool: ... method destroy (line 8199) | def destroy(self) -> None: ... method isCreated (line 8200) | def isCreated(self) -> bool: ... method isResultAvailable (line 8201) | def isResultAvailable(self) -> bool: ... method objectIds (line 8202) | def objectIds(self) -> list[int]: ... method recordSample (line 8203) | def recordSample(self) -> int: ... method reset (line 8204) | def reset(self) -> None: ... method sampleCount (line 8205) | def sampleCount(self) -> int: ... method setSampleCount (line 8206) | def setSampleCount(self, sampleCount: int) -> None: ... method waitForIntervals (line 8207) | def waitForIntervals(self) -> list[int]: ... method waitForSamples (line 8208) | def waitForSamples(self) -> list[int]: ... class QOpenGLTimerQuery (line 8210) | class QOpenGLTimerQuery(PySide2.QtCore.QObject): method __init__ (line 8212) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method begin (line 8213) | def begin(self) -> None: ... method create (line 8214) | def create(self) -> bool: ... method destroy (line 8215) | def destroy(self) -> None: ... method end (line 8216) | def end(self) -> None: ... method isCreated (line 8217) | def isCreated(self) -> bool: ... method isResultAvailable (line 8218) | def isResultAvailable(self) -> bool: ... method objectId (line 8219) | def objectId(self) -> int: ... method recordTimestamp (line 8220) | def recordTimestamp(self) -> None: ... method waitForResult (line 8221) | def waitForResult(self) -> int: ... method waitForTimestamp (line 8222) | def waitForTimestamp(self) -> int: ... class QOpenGLVersionProfile (line 8224) | class QOpenGLVersionProfile(shiboken2.Object): method __init__ (line 8226) | def __init__(self, other: QOpenGLVersionProfile) -> None: ... method __init__ (line 8228) | def __init__(self, format: QSurfaceFormat) -> None: ... method __init__ (line 8230) | def __init__(self) -> None: ... method hasProfiles (line 8231) | def hasProfiles(self) -> bool: ... method isLegacyVersion (line 8232) | def isLegacyVersion(self) -> bool: ... method isValid (line 8233) | def isValid(self) -> bool: ... method profile (line 8234) | def profile(self) -> QSurfaceFormat.OpenGLContextProfile: ... method setProfile (line 8235) | def setProfile(self, profile: QSurfaceFormat.OpenGLContextProfile) -> ... method setVersion (line 8236) | def setVersion(self, majorVersion: int, minorVersion: int) -> None: ... method version (line 8237) | def version(self) -> tuple[int, int]: ... method __copy__ (line 8238) | def __copy__(self) -> None: ... method __eq__ (line 8239) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8240) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8241) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8242) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8243) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8244) | def __ne__(self, other: object) -> bool: ... class QOpenGLVertexArrayObject (line 8246) | class QOpenGLVertexArrayObject(PySide2.QtCore.QObject): class Binder (line 8247) | class Binder(shiboken2.Object): method __init__ (line 8248) | def __init__(self, v: QOpenGLVertexArrayObject) -> None: ... method rebind (line 8249) | def rebind(self) -> None: ... method release (line 8250) | def release(self) -> None: ... method __init__ (line 8252) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method bind (line 8253) | def bind(self) -> None: ... method create (line 8254) | def create(self) -> bool: ... method destroy (line 8255) | def destroy(self) -> None: ... method isCreated (line 8256) | def isCreated(self) -> bool: ... method objectId (line 8257) | def objectId(self) -> int: ... method release (line 8258) | def release(self) -> None: ... class QOpenGLWindow (line 8260) | class QOpenGLWindow(QPaintDeviceWindow): class UpdateBehavior (line 8261) | class UpdateBehavior: method __init__ (line 8268) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8269) | def __add__(self, other: typing.SupportsInt) -> QOpenGLWindow.Update... method __and__ (line 8270) | def __and__(self, other: typing.SupportsInt) -> QOpenGLWindow.Update... method __bool__ (line 8271) | def __bool__(self) -> bool: ... method __eq__ (line 8272) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8273) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8274) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8275) | def __hash__(self) -> int: ... method __index__ (line 8276) | def __index__(self) -> int: ... method __int__ (line 8277) | def __int__(self) -> int: ... method __le__ (line 8278) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8279) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8280) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLWindow.Update... method __ne__ (line 8281) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8282) | def __or__(self, other: typing.SupportsInt) -> QOpenGLWindow.UpdateB... method __pos__ (line 8283) | def __pos__(self): ... method __radd__ (line 8284) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLWindow.Updat... method __rand__ (line 8285) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLWindow.Updat... method __rmul__ (line 8286) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLWindow.Updat... method __ror__ (line 8287) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLWindow.Update... method __rsub__ (line 8288) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLWindow.Updat... method __rxor__ (line 8289) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLWindow.Updat... method __sub__ (line 8290) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLWindow.Update... method __xor__ (line 8291) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLWindow.Update... method __init__ (line 8298) | def __init__(self, shareContext: QOpenGLContext, updateBehavior: QOpen... method __init__ (line 8300) | def __init__(self, updateBehavior: QOpenGLWindow.UpdateBehavior = ...,... method context (line 8301) | def context(self) -> QOpenGLContext: ... method defaultFramebufferObject (line 8302) | def defaultFramebufferObject(self) -> int: ... method doneCurrent (line 8303) | def doneCurrent(self) -> None: ... method grabFramebuffer (line 8304) | def grabFramebuffer(self) -> QImage: ... method initializeGL (line 8305) | def initializeGL(self) -> None: ... method isValid (line 8306) | def isValid(self) -> bool: ... method makeCurrent (line 8307) | def makeCurrent(self) -> None: ... method metric (line 8308) | def metric(self, metric: QPaintDevice.PaintDeviceMetric) -> int: ... method paintEvent (line 8309) | def paintEvent(self, event: QPaintEvent) -> None: ... method paintGL (line 8310) | def paintGL(self) -> None: ... method paintOverGL (line 8311) | def paintOverGL(self) -> None: ... method paintUnderGL (line 8312) | def paintUnderGL(self) -> None: ... method redirected (line 8313) | def redirected(self, arg__1: PySide2.QtCore.QPoint) -> QPaintDevice: ... method resizeEvent (line 8314) | def resizeEvent(self, event: QResizeEvent) -> None: ... method resizeGL (line 8315) | def resizeGL(self, w: int, h: int) -> None: ... method shareContext (line 8316) | def shareContext(self) -> QOpenGLContext: ... method updateBehavior (line 8317) | def updateBehavior(self) -> QOpenGLWindow.UpdateBehavior: ... class QPageLayout (line 8319) | class QPageLayout(shiboken2.Object): class Mode (line 8320) | class Mode: method __init__ (line 8326) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8327) | def __add__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __and__ (line 8328) | def __and__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __bool__ (line 8329) | def __bool__(self) -> bool: ... method __eq__ (line 8330) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8331) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8332) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8333) | def __hash__(self) -> int: ... method __index__ (line 8334) | def __index__(self) -> int: ... method __int__ (line 8335) | def __int__(self) -> int: ... method __le__ (line 8336) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8337) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8338) | def __mul__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __ne__ (line 8339) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8340) | def __or__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __pos__ (line 8341) | def __pos__(self): ... method __radd__ (line 8342) | def __radd__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __rand__ (line 8343) | def __rand__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __rmul__ (line 8344) | def __rmul__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __ror__ (line 8345) | def __ror__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __rsub__ (line 8346) | def __rsub__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __rxor__ (line 8347) | def __rxor__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __sub__ (line 8348) | def __sub__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... method __xor__ (line 8349) | def __xor__(self, other: typing.SupportsInt) -> QPageLayout.Mode: ... class Orientation (line 8351) | class Orientation: method __init__ (line 8357) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8358) | def __add__(self, other: typing.SupportsInt) -> QPageLayout.Orientat... method __and__ (line 8359) | def __and__(self, other: typing.SupportsInt) -> QPageLayout.Orientat... method __bool__ (line 8360) | def __bool__(self) -> bool: ... method __eq__ (line 8361) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8362) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8363) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8364) | def __hash__(self) -> int: ... method __index__ (line 8365) | def __index__(self) -> int: ... method __int__ (line 8366) | def __int__(self) -> int: ... method __le__ (line 8367) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8368) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8369) | def __mul__(self, other: typing.SupportsInt) -> QPageLayout.Orientat... method __ne__ (line 8370) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8371) | def __or__(self, other: typing.SupportsInt) -> QPageLayout.Orientati... method __pos__ (line 8372) | def __pos__(self): ... method __radd__ (line 8373) | def __radd__(self, other: typing.SupportsInt) -> QPageLayout.Orienta... method __rand__ (line 8374) | def __rand__(self, other: typing.SupportsInt) -> QPageLayout.Orienta... method __rmul__ (line 8375) | def __rmul__(self, other: typing.SupportsInt) -> QPageLayout.Orienta... method __ror__ (line 8376) | def __ror__(self, other: typing.SupportsInt) -> QPageLayout.Orientat... method __rsub__ (line 8377) | def __rsub__(self, other: typing.SupportsInt) -> QPageLayout.Orienta... method __rxor__ (line 8378) | def __rxor__(self, other: typing.SupportsInt) -> QPageLayout.Orienta... method __sub__ (line 8379) | def __sub__(self, other: typing.SupportsInt) -> QPageLayout.Orientat... method __xor__ (line 8380) | def __xor__(self, other: typing.SupportsInt) -> QPageLayout.Orientat... class Unit (line 8382) | class Unit: method __init__ (line 8392) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8393) | def __add__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __and__ (line 8394) | def __and__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __bool__ (line 8395) | def __bool__(self) -> bool: ... method __eq__ (line 8396) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8397) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8398) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8399) | def __hash__(self) -> int: ... method __index__ (line 8400) | def __index__(self) -> int: ... method __int__ (line 8401) | def __int__(self) -> int: ... method __le__ (line 8402) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8403) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8404) | def __mul__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __ne__ (line 8405) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8406) | def __or__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __pos__ (line 8407) | def __pos__(self): ... method __radd__ (line 8408) | def __radd__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __rand__ (line 8409) | def __rand__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __rmul__ (line 8410) | def __rmul__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __ror__ (line 8411) | def __ror__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __rsub__ (line 8412) | def __rsub__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __rxor__ (line 8413) | def __rxor__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __sub__ (line 8414) | def __sub__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __xor__ (line 8415) | def __xor__(self, other: typing.SupportsInt) -> QPageLayout.Unit: ... method __init__ (line 8427) | def __init__(self, pageSize: QPageSize, orientation: QPageLayout.Orien... method __init__ (line 8429) | def __init__(self, other: QPageLayout) -> None: ... method __init__ (line 8431) | def __init__(self) -> None: ... method fullRect (line 8433) | def fullRect(self, units: QPageLayout.Unit) -> PySide2.QtCore.QRectF: ... method fullRect (line 8435) | def fullRect(self) -> PySide2.QtCore.QRectF: ... method fullRectPixels (line 8436) | def fullRectPixels(self, resolution: int) -> PySide2.QtCore.QRect: ... method fullRectPoints (line 8437) | def fullRectPoints(self) -> PySide2.QtCore.QRect: ... method isEquivalentTo (line 8438) | def isEquivalentTo(self, other: QPageLayout) -> bool: ... method isValid (line 8439) | def isValid(self) -> bool: ... method margins (line 8441) | def margins(self, units: QPageLayout.Unit) -> PySide2.QtCore.QMarginsF... method margins (line 8443) | def margins(self) -> PySide2.QtCore.QMarginsF: ... method marginsPixels (line 8444) | def marginsPixels(self, resolution: int) -> PySide2.QtCore.QMargins: ... method marginsPoints (line 8445) | def marginsPoints(self) -> PySide2.QtCore.QMargins: ... method maximumMargins (line 8446) | def maximumMargins(self) -> PySide2.QtCore.QMarginsF: ... method minimumMargins (line 8447) | def minimumMargins(self) -> PySide2.QtCore.QMarginsF: ... method mode (line 8448) | def mode(self) -> QPageLayout.Mode: ... method orientation (line 8449) | def orientation(self) -> QPageLayout.Orientation: ... method pageSize (line 8450) | def pageSize(self) -> QPageSize: ... method paintRect (line 8452) | def paintRect(self, units: QPageLayout.Unit) -> PySide2.QtCore.QRectF:... method paintRect (line 8454) | def paintRect(self) -> PySide2.QtCore.QRectF: ... method paintRectPixels (line 8455) | def paintRectPixels(self, resolution: int) -> PySide2.QtCore.QRect: ... method paintRectPoints (line 8456) | def paintRectPoints(self) -> PySide2.QtCore.QRect: ... method setBottomMargin (line 8457) | def setBottomMargin(self, bottomMargin: float) -> bool: ... method setLeftMargin (line 8458) | def setLeftMargin(self, leftMargin: float) -> bool: ... method setMargins (line 8459) | def setMargins(self, margins: PySide2.QtCore.QMarginsF) -> bool: ... method setMinimumMargins (line 8460) | def setMinimumMargins(self, minMargins: PySide2.QtCore.QMarginsF) -> N... method setMode (line 8461) | def setMode(self, mode: QPageLayout.Mode) -> None: ... method setOrientation (line 8462) | def setOrientation(self, orientation: QPageLayout.Orientation) -> None... method setPageSize (line 8463) | def setPageSize(self, pageSize: QPageSize, minMargins: PySide2.QtCore.... method setRightMargin (line 8464) | def setRightMargin(self, rightMargin: float) -> bool: ... method setTopMargin (line 8465) | def setTopMargin(self, topMargin: float) -> bool: ... method setUnits (line 8466) | def setUnits(self, units: QPageLayout.Unit) -> None: ... method swap (line 8467) | def swap(self, other: QPageLayout) -> None: ... method units (line 8468) | def units(self) -> QPageLayout.Unit: ... method __copy__ (line 8469) | def __copy__(self) -> None: ... method __eq__ (line 8470) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8471) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8472) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8473) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8474) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8475) | def __ne__(self, other: object) -> bool: ... class QPageSize (line 8477) | class QPageSize(shiboken2.Object): class PageSizeId (line 8478) | class PageSizeId: method __init__ (line 8609) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8610) | def __add__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId... method __and__ (line 8611) | def __and__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId... method __bool__ (line 8612) | def __bool__(self) -> bool: ... method __eq__ (line 8613) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8614) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8615) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8616) | def __hash__(self) -> int: ... method __index__ (line 8617) | def __index__(self) -> int: ... method __int__ (line 8618) | def __int__(self) -> int: ... method __le__ (line 8619) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8620) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8621) | def __mul__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId... method __ne__ (line 8622) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8623) | def __or__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId:... method __pos__ (line 8624) | def __pos__(self): ... method __radd__ (line 8625) | def __radd__(self, other: typing.SupportsInt) -> QPageSize.PageSizeI... method __rand__ (line 8626) | def __rand__(self, other: typing.SupportsInt) -> QPageSize.PageSizeI... method __rmul__ (line 8627) | def __rmul__(self, other: typing.SupportsInt) -> QPageSize.PageSizeI... method __ror__ (line 8628) | def __ror__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId... method __rsub__ (line 8629) | def __rsub__(self, other: typing.SupportsInt) -> QPageSize.PageSizeI... method __rxor__ (line 8630) | def __rxor__(self, other: typing.SupportsInt) -> QPageSize.PageSizeI... method __sub__ (line 8631) | def __sub__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId... method __xor__ (line 8632) | def __xor__(self, other: typing.SupportsInt) -> QPageSize.PageSizeId... class SizeMatchPolicy (line 8634) | class SizeMatchPolicy: method __init__ (line 8641) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8642) | def __add__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchP... method __and__ (line 8643) | def __and__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchP... method __bool__ (line 8644) | def __bool__(self) -> bool: ... method __eq__ (line 8645) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8646) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8647) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8648) | def __hash__(self) -> int: ... method __index__ (line 8649) | def __index__(self) -> int: ... method __int__ (line 8650) | def __int__(self) -> int: ... method __le__ (line 8651) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8652) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8653) | def __mul__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchP... method __ne__ (line 8654) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8655) | def __or__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchPo... method __pos__ (line 8656) | def __pos__(self): ... method __radd__ (line 8657) | def __radd__(self, other: typing.SupportsInt) -> QPageSize.SizeMatch... method __rand__ (line 8658) | def __rand__(self, other: typing.SupportsInt) -> QPageSize.SizeMatch... method __rmul__ (line 8659) | def __rmul__(self, other: typing.SupportsInt) -> QPageSize.SizeMatch... method __ror__ (line 8660) | def __ror__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchP... method __rsub__ (line 8661) | def __rsub__(self, other: typing.SupportsInt) -> QPageSize.SizeMatch... method __rxor__ (line 8662) | def __rxor__(self, other: typing.SupportsInt) -> QPageSize.SizeMatch... method __sub__ (line 8663) | def __sub__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchP... method __xor__ (line 8664) | def __xor__(self, other: typing.SupportsInt) -> QPageSize.SizeMatchP... class Unit (line 8666) | class Unit: method __init__ (line 8676) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8677) | def __add__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __and__ (line 8678) | def __and__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __bool__ (line 8679) | def __bool__(self) -> bool: ... method __eq__ (line 8680) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8681) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8682) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8683) | def __hash__(self) -> int: ... method __index__ (line 8684) | def __index__(self) -> int: ... method __int__ (line 8685) | def __int__(self) -> int: ... method __le__ (line 8686) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8687) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8688) | def __mul__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __ne__ (line 8689) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8690) | def __or__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __pos__ (line 8691) | def __pos__(self): ... method __radd__ (line 8692) | def __radd__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __rand__ (line 8693) | def __rand__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __rmul__ (line 8694) | def __rmul__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __ror__ (line 8695) | def __ror__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __rsub__ (line 8696) | def __rsub__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __rxor__ (line 8697) | def __rxor__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __sub__ (line 8698) | def __sub__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __xor__ (line 8699) | def __xor__(self, other: typing.SupportsInt) -> QPageSize.Unit: ... method __init__ (line 8837) | def __init__(self, size: PySide2.QtCore.QSizeF, units: QPageSize.Unit,... method __init__ (line 8839) | def __init__(self, pointSize: PySide2.QtCore.QSize, name: str = ..., m... method __init__ (line 8841) | def __init__(self, pageSizeId: QPageSize.PageSizeId) -> None: ... method __init__ (line 8843) | def __init__(self, other: QPageSize) -> None: ... method __init__ (line 8845) | def __init__(self) -> None: ... method definitionSize (line 8847) | def definitionSize(self) -> typing.Any: ... method definitionUnits (line 8849) | def definitionUnits(self) -> typing.Any: ... method id (line 8851) | def id(self) -> typing.Any: ... method isEquivalentTo (line 8852) | def isEquivalentTo(self, other: QPageSize) -> bool: ... method isValid (line 8853) | def isValid(self) -> bool: ... method key (line 8855) | def key(self) -> typing.Any: ... method name (line 8857) | def name(self) -> typing.Any: ... method rect (line 8858) | def rect(self, units: QPageSize.Unit) -> PySide2.QtCore.QRectF: ... method rectPixels (line 8859) | def rectPixels(self, resolution: int) -> PySide2.QtCore.QRect: ... method rectPoints (line 8860) | def rectPoints(self) -> PySide2.QtCore.QRect: ... method size (line 8862) | def size(self) -> typing.Any: ... method sizePixels (line 8864) | def sizePixels(self) -> typing.Any: ... method sizePoints (line 8866) | def sizePoints(self) -> typing.Any: ... method swap (line 8867) | def swap(self, other: QPageSize) -> None: ... method windowsId (line 8869) | def windowsId(self) -> typing.Any: ... method __copy__ (line 8870) | def __copy__(self) -> None: ... method __eq__ (line 8871) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8872) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8873) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8874) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8875) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8876) | def __ne__(self, other: object) -> bool: ... class QPagedPaintDevice (line 8878) | class QPagedPaintDevice(QPaintDevice): class Margins (line 8879) | class Margins(shiboken2.Object): method __init__ (line 8885) | def __init__(self, Margins: QPagedPaintDevice.Margins) -> None: ... method __init__ (line 8887) | def __init__(self) -> None: ... method __copy__ (line 8888) | def __copy__(self) -> None: ... class PageSize (line 8890) | class PageSize: method __init__ (line 9021) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9022) | def __add__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pa... method __and__ (line 9023) | def __and__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pa... method __bool__ (line 9024) | def __bool__(self) -> bool: ... method __eq__ (line 9025) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9026) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9027) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9028) | def __hash__(self) -> int: ... method __index__ (line 9029) | def __index__(self) -> int: ... method __int__ (line 9030) | def __int__(self) -> int: ... method __le__ (line 9031) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9032) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9033) | def __mul__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pa... method __ne__ (line 9034) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9035) | def __or__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pag... method __pos__ (line 9036) | def __pos__(self): ... method __radd__ (line 9037) | def __radd__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __rand__ (line 9038) | def __rand__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __rmul__ (line 9039) | def __rmul__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __ror__ (line 9040) | def __ror__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pa... method __rsub__ (line 9041) | def __rsub__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __rxor__ (line 9042) | def __rxor__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __sub__ (line 9043) | def __sub__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pa... method __xor__ (line 9044) | def __xor__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pa... class PdfVersion (line 9046) | class PdfVersion: method __init__ (line 9053) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9054) | def __add__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pd... method __and__ (line 9055) | def __and__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pd... method __bool__ (line 9056) | def __bool__(self) -> bool: ... method __eq__ (line 9057) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9058) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9059) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9060) | def __hash__(self) -> int: ... method __index__ (line 9061) | def __index__(self) -> int: ... method __int__ (line 9062) | def __int__(self) -> int: ... method __le__ (line 9063) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9064) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9065) | def __mul__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pd... method __ne__ (line 9066) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9067) | def __or__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pdf... method __pos__ (line 9068) | def __pos__(self): ... method __radd__ (line 9069) | def __radd__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __rand__ (line 9070) | def __rand__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __rmul__ (line 9071) | def __rmul__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __ror__ (line 9072) | def __ror__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pd... method __rsub__ (line 9073) | def __rsub__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __rxor__ (line 9074) | def __rxor__(self, other: typing.SupportsInt) -> QPagedPaintDevice.P... method __sub__ (line 9075) | def __sub__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pd... method __xor__ (line 9076) | def __xor__(self, other: typing.SupportsInt) -> QPagedPaintDevice.Pd... method __init__ (line 9207) | def __init__(self) -> None: ... method devicePageLayout (line 9208) | def devicePageLayout(self) -> QPageLayout: ... method margins (line 9209) | def margins(self) -> QPagedPaintDevice.Margins: ... method newPage (line 9210) | def newPage(self) -> bool: ... method pageLayout (line 9211) | def pageLayout(self) -> QPageLayout: ... method pageSize (line 9212) | def pageSize(self) -> QPagedPaintDevice.PageSize: ... method pageSizeMM (line 9213) | def pageSizeMM(self) -> PySide2.QtCore.QSizeF: ... method setMargins (line 9214) | def setMargins(self, margins: QPagedPaintDevice.Margins) -> None: ... method setPageLayout (line 9215) | def setPageLayout(self, pageLayout: QPageLayout) -> bool: ... method setPageMargins (line 9217) | def setPageMargins(self, margins: PySide2.QtCore.QMarginsF, units: QPa... method setPageMargins (line 9219) | def setPageMargins(self, margins: PySide2.QtCore.QMarginsF) -> bool: ... method setPageOrientation (line 9220) | def setPageOrientation(self, orientation: QPageLayout.Orientation) -> ... method setPageSize (line 9222) | def setPageSize(self, size: QPagedPaintDevice.PageSize) -> None: ... method setPageSize (line 9224) | def setPageSize(self, pageSize: QPageSize) -> bool: ... method setPageSizeMM (line 9225) | def setPageSizeMM(self, size: PySide2.QtCore.QSizeF) -> None: ... class QPaintDevice (line 9227) | class QPaintDevice(shiboken2.Object): class PaintDeviceMetric (line 9228) | class PaintDeviceMetric: method __init__ (line 9244) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9245) | def __add__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDe... method __and__ (line 9246) | def __and__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDe... method __bool__ (line 9247) | def __bool__(self) -> bool: ... method __eq__ (line 9248) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9249) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9250) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9251) | def __hash__(self) -> int: ... method __index__ (line 9252) | def __index__(self) -> int: ... method __int__ (line 9253) | def __int__(self) -> int: ... method __le__ (line 9254) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9255) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9256) | def __mul__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDe... method __ne__ (line 9257) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9258) | def __or__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDev... method __pos__ (line 9259) | def __pos__(self): ... method __radd__ (line 9260) | def __radd__(self, other: typing.SupportsInt) -> QPaintDevice.PaintD... method __rand__ (line 9261) | def __rand__(self, other: typing.SupportsInt) -> QPaintDevice.PaintD... method __rmul__ (line 9262) | def __rmul__(self, other: typing.SupportsInt) -> QPaintDevice.PaintD... method __ror__ (line 9263) | def __ror__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDe... method __rsub__ (line 9264) | def __rsub__(self, other: typing.SupportsInt) -> QPaintDevice.PaintD... method __rxor__ (line 9265) | def __rxor__(self, other: typing.SupportsInt) -> QPaintDevice.PaintD... method __sub__ (line 9266) | def __sub__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDe... method __xor__ (line 9267) | def __xor__(self, other: typing.SupportsInt) -> QPaintDevice.PaintDe... method __init__ (line 9281) | def __init__(self) -> None: ... method colorCount (line 9282) | def colorCount(self) -> int: ... method depth (line 9283) | def depth(self) -> int: ... method devType (line 9284) | def devType(self) -> int: ... method devicePixelRatio (line 9285) | def devicePixelRatio(self) -> int: ... method devicePixelRatioF (line 9286) | def devicePixelRatioF(self) -> float: ... method devicePixelRatioFScale (line 9288) | def devicePixelRatioFScale() -> float: ... method height (line 9289) | def height(self) -> int: ... method heightMM (line 9290) | def heightMM(self) -> int: ... method initPainter (line 9291) | def initPainter(self, painter: QPainter) -> None: ... method logicalDpiX (line 9292) | def logicalDpiX(self) -> int: ... method logicalDpiY (line 9293) | def logicalDpiY(self) -> int: ... method metric (line 9294) | def metric(self, metric: QPaintDevice.PaintDeviceMetric) -> int: ... method paintEngine (line 9295) | def paintEngine(self) -> QPaintEngine: ... method paintingActive (line 9296) | def paintingActive(self) -> bool: ... method physicalDpiX (line 9297) | def physicalDpiX(self) -> int: ... method physicalDpiY (line 9298) | def physicalDpiY(self) -> int: ... method redirected (line 9299) | def redirected(self, offset: PySide2.QtCore.QPoint) -> QPaintDevice: ... method sharedPainter (line 9300) | def sharedPainter(self) -> QPainter: ... method width (line 9301) | def width(self) -> int: ... method widthMM (line 9302) | def widthMM(self) -> int: ... class QPaintDeviceWindow (line 9304) | class QPaintDeviceWindow(QWindow, QPaintDevice): # type: ignore[misc] method __init__ (line 9307) | def __init__(cls, *args, active: bool = ..., activeChanged: typing.Cal... method event (line 9308) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method exposeEvent (line 9309) | def exposeEvent(self, arg__1: QExposeEvent) -> None: ... method metric (line 9310) | def metric(self, metric: QPaintDevice.PaintDeviceMetric) -> int: ... method paintEngine (line 9311) | def paintEngine(self) -> QPaintEngine: ... method paintEvent (line 9312) | def paintEvent(self, event: QPaintEvent) -> None: ... method update (line 9314) | def update(self, region: QRegion) -> None: ... method update (line 9316) | def update(self, rect: PySide2.QtCore.QRect) -> None: ... method update (line 9318) | def update(self) -> None: ... class QPaintEngine (line 9320) | class QPaintEngine(shiboken2.Object): class DirtyFlag (line 9321) | class DirtyFlag: method __init__ (line 9339) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9340) | def __and__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFl... method __bool__ (line 9341) | def __bool__(self) -> bool: ... method __eq__ (line 9342) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9343) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9344) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9345) | def __hash__(self) -> int: ... method __index__ (line 9346) | def __index__(self) -> int: ... method __int__ (line 9347) | def __int__(self) -> int: ... method __invert__ (line 9348) | def __invert__(self) -> QPaintEngine.DirtyFlags: ... method __le__ (line 9349) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9350) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9351) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9352) | def __or__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFla... method __rand__ (line 9353) | def __rand__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyF... method __ror__ (line 9354) | def __ror__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFl... method __rxor__ (line 9355) | def __rxor__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyF... method __xor__ (line 9356) | def __xor__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFl... class DirtyFlags (line 9358) | class DirtyFlags: method __init__ (line 9360) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9361) | def __and__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFl... method __bool__ (line 9362) | def __bool__(self) -> bool: ... method __eq__ (line 9363) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9364) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9365) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9366) | def __index__(self) -> int: ... method __int__ (line 9367) | def __int__(self) -> int: ... method __invert__ (line 9368) | def __invert__(self) -> QPaintEngine.DirtyFlags: ... method __le__ (line 9369) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9370) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9371) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9372) | def __or__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFla... method __rand__ (line 9373) | def __rand__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyF... method __ror__ (line 9374) | def __ror__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFl... method __rxor__ (line 9375) | def __rxor__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyF... method __xor__ (line 9376) | def __xor__(self, other: typing.SupportsInt) -> QPaintEngine.DirtyFl... class PaintEngineFeature (line 9378) | class PaintEngineFeature: method __init__ (line 9402) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9403) | def __and__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEn... method __bool__ (line 9404) | def __bool__(self) -> bool: ... method __eq__ (line 9405) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9406) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9407) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9408) | def __hash__(self) -> int: ... method __index__ (line 9409) | def __index__(self) -> int: ... method __int__ (line 9410) | def __int__(self) -> int: ... method __invert__ (line 9411) | def __invert__(self) -> QPaintEngine.PaintEngineFeatures: ... method __le__ (line 9412) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9413) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9414) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9415) | def __or__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEng... method __rand__ (line 9416) | def __rand__(self, other: typing.SupportsInt) -> QPaintEngine.PaintE... method __ror__ (line 9417) | def __ror__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEn... method __rxor__ (line 9418) | def __rxor__(self, other: typing.SupportsInt) -> QPaintEngine.PaintE... method __xor__ (line 9419) | def __xor__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEn... class PaintEngineFeatures (line 9421) | class PaintEngineFeatures: method __init__ (line 9423) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9424) | def __and__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEn... method __bool__ (line 9425) | def __bool__(self) -> bool: ... method __eq__ (line 9426) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9427) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9428) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9429) | def __index__(self) -> int: ... method __int__ (line 9430) | def __int__(self) -> int: ... method __invert__ (line 9431) | def __invert__(self) -> QPaintEngine.PaintEngineFeatures: ... method __le__ (line 9432) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9433) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9434) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9435) | def __or__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEng... method __rand__ (line 9436) | def __rand__(self, other: typing.SupportsInt) -> QPaintEngine.PaintE... method __ror__ (line 9437) | def __ror__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEn... method __rxor__ (line 9438) | def __rxor__(self, other: typing.SupportsInt) -> QPaintEngine.PaintE... method __xor__ (line 9439) | def __xor__(self, other: typing.SupportsInt) -> QPaintEngine.PaintEn... class PolygonDrawMode (line 9441) | class PolygonDrawMode: method __init__ (line 9449) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9450) | def __add__(self, other: typing.SupportsInt) -> QPaintEngine.Polygon... method __and__ (line 9451) | def __and__(self, other: typing.SupportsInt) -> QPaintEngine.Polygon... method __bool__ (line 9452) | def __bool__(self) -> bool: ... method __eq__ (line 9453) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9454) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9455) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9456) | def __hash__(self) -> int: ... method __index__ (line 9457) | def __index__(self) -> int: ... method __int__ (line 9458) | def __int__(self) -> int: ... method __le__ (line 9459) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9460) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9461) | def __mul__(self, other: typing.SupportsInt) -> QPaintEngine.Polygon... method __ne__ (line 9462) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9463) | def __or__(self, other: typing.SupportsInt) -> QPaintEngine.PolygonD... method __pos__ (line 9464) | def __pos__(self): ... method __radd__ (line 9465) | def __radd__(self, other: typing.SupportsInt) -> QPaintEngine.Polygo... method __rand__ (line 9466) | def __rand__(self, other: typing.SupportsInt) -> QPaintEngine.Polygo... method __rmul__ (line 9467) | def __rmul__(self, other: typing.SupportsInt) -> QPaintEngine.Polygo... method __ror__ (line 9468) | def __ror__(self, other: typing.SupportsInt) -> QPaintEngine.Polygon... method __rsub__ (line 9469) | def __rsub__(self, other: typing.SupportsInt) -> QPaintEngine.Polygo... method __rxor__ (line 9470) | def __rxor__(self, other: typing.SupportsInt) -> QPaintEngine.Polygo... method __sub__ (line 9471) | def __sub__(self, other: typing.SupportsInt) -> QPaintEngine.Polygon... method __xor__ (line 9472) | def __xor__(self, other: typing.SupportsInt) -> QPaintEngine.Polygon... class Type (line 9474) | class Type: method __init__ (line 9498) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9499) | def __add__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __and__ (line 9500) | def __and__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __bool__ (line 9501) | def __bool__(self) -> bool: ... method __eq__ (line 9502) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9503) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9504) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9505) | def __hash__(self) -> int: ... method __index__ (line 9506) | def __index__(self) -> int: ... method __int__ (line 9507) | def __int__(self) -> int: ... method __le__ (line 9508) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9509) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9510) | def __mul__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __ne__ (line 9511) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9512) | def __or__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __pos__ (line 9513) | def __pos__(self): ... method __radd__ (line 9514) | def __radd__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __rand__ (line 9515) | def __rand__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __rmul__ (line 9516) | def __rmul__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __ror__ (line 9517) | def __ror__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __rsub__ (line 9518) | def __rsub__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __rxor__ (line 9519) | def __rxor__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __sub__ (line 9520) | def __sub__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __xor__ (line 9521) | def __xor__(self, other: typing.SupportsInt) -> QPaintEngine.Type: ... method __init__ (line 9585) | def __init__(self, features: QPaintEngine.PaintEngineFeatures | QPaint... method begin (line 9586) | def begin(self, pdev: QPaintDevice) -> bool: ... method clearDirty (line 9587) | def clearDirty(self, df: QPaintEngine.DirtyFlags | QPaintEngine.DirtyF... method coordinateOffset (line 9588) | def coordinateOffset(self) -> PySide2.QtCore.QPoint: ... method drawEllipse (line 9590) | def drawEllipse(self, r: PySide2.QtCore.QRect) -> None: ... method drawEllipse (line 9592) | def drawEllipse(self, r: PySide2.QtCore.QRectF) -> None: ... method drawImage (line 9593) | def drawImage(self, r: PySide2.QtCore.QRectF, pm: QImage, sr: PySide2.... method drawLines (line 9595) | def drawLines(self, lines: PySide2.QtCore.QLine, lineCount: int) -> No... method drawLines (line 9597) | def drawLines(self, lines: PySide2.QtCore.QLineF, lineCount: int) -> N... method drawPath (line 9598) | def drawPath(self, path: QPainterPath) -> None: ... method drawPixmap (line 9599) | def drawPixmap(self, r: PySide2.QtCore.QRectF, pm: QPixmap, sr: PySide... method drawPoints (line 9601) | def drawPoints(self, points: PySide2.QtCore.QPoint, pointCount: int) -... method drawPoints (line 9603) | def drawPoints(self, points: PySide2.QtCore.QPointF, pointCount: int) ... method drawPolygon (line 9605) | def drawPolygon(self, points: PySide2.QtCore.QPoint, pointCount: int, ... method drawPolygon (line 9607) | def drawPolygon(self, points: PySide2.QtCore.QPointF, pointCount: int,... method drawRects (line 9609) | def drawRects(self, rects: PySide2.QtCore.QRect, rectCount: int) -> No... method drawRects (line 9611) | def drawRects(self, rects: PySide2.QtCore.QRectF, rectCount: int) -> N... method drawTextItem (line 9612) | def drawTextItem(self, p: PySide2.QtCore.QPointF, textItem: QTextItem)... method drawTiledPixmap (line 9613) | def drawTiledPixmap(self, r: PySide2.QtCore.QRectF, pixmap: QPixmap, s... method end (line 9614) | def end(self) -> bool: ... method hasFeature (line 9615) | def hasFeature(self, feature: QPaintEngine.PaintEngineFeatures | QPain... method isActive (line 9616) | def isActive(self) -> bool: ... method isExtended (line 9617) | def isExtended(self) -> bool: ... method paintDevice (line 9618) | def paintDevice(self) -> QPaintDevice: ... method painter (line 9619) | def painter(self) -> QPainter: ... method setActive (line 9620) | def setActive(self, newState: bool) -> None: ... method setDirty (line 9621) | def setDirty(self, df: QPaintEngine.DirtyFlags | QPaintEngine.DirtyFla... method setSystemClip (line 9622) | def setSystemClip(self, baseClip: QRegion) -> None: ... method setSystemRect (line 9623) | def setSystemRect(self, rect: PySide2.QtCore.QRect) -> None: ... method syncState (line 9624) | def syncState(self) -> None: ... method systemClip (line 9625) | def systemClip(self) -> QRegion: ... method systemRect (line 9626) | def systemRect(self) -> PySide2.QtCore.QRect: ... method testDirty (line 9627) | def testDirty(self, df: QPaintEngine.DirtyFlags | QPaintEngine.DirtyFl... method type (line 9628) | def type(self) -> QPaintEngine.Type: ... method updateState (line 9629) | def updateState(self, state: QPaintEngineState) -> None: ... class QPaintEngineState (line 9631) | class QPaintEngineState(shiboken2.Object): method __init__ (line 9633) | def __init__(self) -> None: ... method backgroundBrush (line 9634) | def backgroundBrush(self) -> QBrush: ... method backgroundMode (line 9635) | def backgroundMode(self) -> PySide2.QtCore.Qt.BGMode: ... method brush (line 9636) | def brush(self) -> QBrush: ... method brushNeedsResolving (line 9637) | def brushNeedsResolving(self) -> bool: ... method brushOrigin (line 9638) | def brushOrigin(self) -> PySide2.QtCore.QPointF: ... method clipOperation (line 9639) | def clipOperation(self) -> PySide2.QtCore.Qt.ClipOperation: ... method clipPath (line 9640) | def clipPath(self) -> QPainterPath: ... method clipRegion (line 9641) | def clipRegion(self) -> QRegion: ... method compositionMode (line 9642) | def compositionMode(self) -> QPainter.CompositionMode: ... method font (line 9643) | def font(self) -> QFont: ... method isClipEnabled (line 9644) | def isClipEnabled(self) -> bool: ... method matrix (line 9645) | def matrix(self) -> QMatrix: ... method opacity (line 9646) | def opacity(self) -> float: ... method painter (line 9647) | def painter(self) -> QPainter: ... method pen (line 9648) | def pen(self) -> QPen: ... method penNeedsResolving (line 9649) | def penNeedsResolving(self) -> bool: ... method renderHints (line 9650) | def renderHints(self) -> QPainter.RenderHints | QPainter.RenderHint: ... method state (line 9651) | def state(self) -> QPaintEngine.DirtyFlags | QPaintEngine.DirtyFlag: ... method transform (line 9652) | def transform(self) -> QTransform: ... class QPaintEvent (line 9654) | class QPaintEvent(PySide2.QtCore.QEvent): method __init__ (line 9656) | def __init__(self, paintRegion: QRegion) -> None: ... method __init__ (line 9658) | def __init__(self, paintRect: PySide2.QtCore.QRect) -> None: ... method rect (line 9659) | def rect(self) -> PySide2.QtCore.QRect: ... method region (line 9660) | def region(self) -> QRegion: ... class QPainter (line 9662) | class QPainter(shiboken2.Object): class CompositionMode (line 9663) | class CompositionMode: method __init__ (line 9705) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9706) | def __add__(self, other: typing.SupportsInt) -> QPainter.Composition... method __and__ (line 9707) | def __and__(self, other: typing.SupportsInt) -> QPainter.Composition... method __bool__ (line 9708) | def __bool__(self) -> bool: ... method __eq__ (line 9709) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9710) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9711) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9712) | def __hash__(self) -> int: ... method __index__ (line 9713) | def __index__(self) -> int: ... method __int__ (line 9714) | def __int__(self) -> int: ... method __le__ (line 9715) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9716) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9717) | def __mul__(self, other: typing.SupportsInt) -> QPainter.Composition... method __ne__ (line 9718) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9719) | def __or__(self, other: typing.SupportsInt) -> QPainter.CompositionM... method __pos__ (line 9720) | def __pos__(self): ... method __radd__ (line 9721) | def __radd__(self, other: typing.SupportsInt) -> QPainter.Compositio... method __rand__ (line 9722) | def __rand__(self, other: typing.SupportsInt) -> QPainter.Compositio... method __rmul__ (line 9723) | def __rmul__(self, other: typing.SupportsInt) -> QPainter.Compositio... method __ror__ (line 9724) | def __ror__(self, other: typing.SupportsInt) -> QPainter.Composition... method __rsub__ (line 9725) | def __rsub__(self, other: typing.SupportsInt) -> QPainter.Compositio... method __rxor__ (line 9726) | def __rxor__(self, other: typing.SupportsInt) -> QPainter.Compositio... method __sub__ (line 9727) | def __sub__(self, other: typing.SupportsInt) -> QPainter.Composition... method __xor__ (line 9728) | def __xor__(self, other: typing.SupportsInt) -> QPainter.Composition... class PixmapFragment (line 9730) | class PixmapFragment(shiboken2.Object): method __init__ (line 9742) | def __init__(self, PixmapFragment: QPainter.PixmapFragment) -> None:... method __init__ (line 9744) | def __init__(self) -> None: ... method create (line 9746) | def create(pos: PySide2.QtCore.QPointF, sourceRect: PySide2.QtCore.Q... method __copy__ (line 9747) | def __copy__(self) -> None: ... class PixmapFragmentHint (line 9749) | class PixmapFragmentHint: method __init__ (line 9754) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9755) | def __and__(self, other: typing.SupportsInt) -> QPainter.PixmapFragm... method __bool__ (line 9756) | def __bool__(self) -> bool: ... method __eq__ (line 9757) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9758) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9759) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9760) | def __hash__(self) -> int: ... method __index__ (line 9761) | def __index__(self) -> int: ... method __int__ (line 9762) | def __int__(self) -> int: ... method __invert__ (line 9763) | def __invert__(self) -> QPainter.PixmapFragmentHints: ... method __le__ (line 9764) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9765) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9766) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9767) | def __or__(self, other: typing.SupportsInt) -> QPainter.PixmapFragme... method __rand__ (line 9768) | def __rand__(self, other: typing.SupportsInt) -> QPainter.PixmapFrag... method __ror__ (line 9769) | def __ror__(self, other: typing.SupportsInt) -> QPainter.PixmapFragm... method __rxor__ (line 9770) | def __rxor__(self, other: typing.SupportsInt) -> QPainter.PixmapFrag... method __xor__ (line 9771) | def __xor__(self, other: typing.SupportsInt) -> QPainter.PixmapFragm... class PixmapFragmentHints (line 9773) | class PixmapFragmentHints: method __init__ (line 9775) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9776) | def __and__(self, other: typing.SupportsInt) -> QPainter.PixmapFragm... method __bool__ (line 9777) | def __bool__(self) -> bool: ... method __eq__ (line 9778) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9779) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9780) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9781) | def __index__(self) -> int: ... method __int__ (line 9782) | def __int__(self) -> int: ... method __invert__ (line 9783) | def __invert__(self) -> QPainter.PixmapFragmentHints: ... method __le__ (line 9784) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9785) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9786) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9787) | def __or__(self, other: typing.SupportsInt) -> QPainter.PixmapFragme... method __rand__ (line 9788) | def __rand__(self, other: typing.SupportsInt) -> QPainter.PixmapFrag... method __ror__ (line 9789) | def __ror__(self, other: typing.SupportsInt) -> QPainter.PixmapFragm... method __rxor__ (line 9790) | def __rxor__(self, other: typing.SupportsInt) -> QPainter.PixmapFrag... method __xor__ (line 9791) | def __xor__(self, other: typing.SupportsInt) -> QPainter.PixmapFragm... class RenderHint (line 9793) | class RenderHint: method __init__ (line 9804) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9805) | def __and__(self, other: typing.SupportsInt) -> QPainter.RenderHints... method __bool__ (line 9806) | def __bool__(self) -> bool: ... method __eq__ (line 9807) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9808) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9809) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9810) | def __hash__(self) -> int: ... method __index__ (line 9811) | def __index__(self) -> int: ... method __int__ (line 9812) | def __int__(self) -> int: ... method __invert__ (line 9813) | def __invert__(self) -> QPainter.RenderHints: ... method __le__ (line 9814) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9815) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9816) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9817) | def __or__(self, other: typing.SupportsInt) -> QPainter.RenderHints:... method __rand__ (line 9818) | def __rand__(self, other: typing.SupportsInt) -> QPainter.RenderHint... method __ror__ (line 9819) | def __ror__(self, other: typing.SupportsInt) -> QPainter.RenderHints... method __rxor__ (line 9820) | def __rxor__(self, other: typing.SupportsInt) -> QPainter.RenderHint... method __xor__ (line 9821) | def __xor__(self, other: typing.SupportsInt) -> QPainter.RenderHints... class RenderHints (line 9823) | class RenderHints: method __init__ (line 9825) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9826) | def __and__(self, other: typing.SupportsInt) -> QPainter.RenderHints... method __bool__ (line 9827) | def __bool__(self) -> bool: ... method __eq__ (line 9828) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9829) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9830) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9831) | def __index__(self) -> int: ... method __int__ (line 9832) | def __int__(self) -> int: ... method __invert__ (line 9833) | def __invert__(self) -> QPainter.RenderHints: ... method __le__ (line 9834) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9835) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9836) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9837) | def __or__(self, other: typing.SupportsInt) -> QPainter.RenderHints:... method __rand__ (line 9838) | def __rand__(self, other: typing.SupportsInt) -> QPainter.RenderHint... method __ror__ (line 9839) | def __ror__(self, other: typing.SupportsInt) -> QPainter.RenderHints... method __rxor__ (line 9840) | def __rxor__(self, other: typing.SupportsInt) -> QPainter.RenderHint... method __xor__ (line 9841) | def __xor__(self, other: typing.SupportsInt) -> QPainter.RenderHints... method __init__ (line 9889) | def __init__(self, arg__1: QPaintDevice) -> None: ... method __init__ (line 9891) | def __init__(self) -> None: ... method background (line 9892) | def background(self) -> QBrush: ... method backgroundMode (line 9893) | def backgroundMode(self) -> PySide2.QtCore.Qt.BGMode: ... method begin (line 9894) | def begin(self, arg__1: QPaintDevice) -> bool: ... method beginNativePainting (line 9895) | def beginNativePainting(self) -> None: ... method boundingRect (line 9897) | def boundingRect(self, x: int, y: int, w: int, h: int, flags: typing.S... method boundingRect (line 9899) | def boundingRect(self, rect: PySide2.QtCore.QRectF, text: str, o: QTex... method boundingRect (line 9901) | def boundingRect(self, rect: PySide2.QtCore.QRect, flags: typing.Suppo... method boundingRect (line 9903) | def boundingRect(self, rect: PySide2.QtCore.QRectF, flags: typing.Supp... method brush (line 9904) | def brush(self) -> QBrush: ... method brushOrigin (line 9905) | def brushOrigin(self) -> PySide2.QtCore.QPoint: ... method clipBoundingRect (line 9906) | def clipBoundingRect(self) -> PySide2.QtCore.QRectF: ... method clipPath (line 9907) | def clipPath(self) -> QPainterPath: ... method clipRegion (line 9908) | def clipRegion(self) -> QRegion: ... method combinedMatrix (line 9909) | def combinedMatrix(self) -> QMatrix: ... method combinedTransform (line 9910) | def combinedTransform(self) -> QTransform: ... method compositionMode (line 9911) | def compositionMode(self) -> QPainter.CompositionMode: ... method device (line 9912) | def device(self) -> QPaintDevice: ... method deviceMatrix (line 9913) | def deviceMatrix(self) -> QMatrix: ... method deviceTransform (line 9914) | def deviceTransform(self) -> QTransform: ... method drawArc (line 9916) | def drawArc(self, x: int, y: int, w: int, h: int, a: int, alen: int) -... method drawArc (line 9918) | def drawArc(self, rect: PySide2.QtCore.QRectF, a: int, alen: int) -> N... method drawArc (line 9920) | def drawArc(self, arg__1: PySide2.QtCore.QRect, a: int, alen: int) -> ... method drawChord (line 9922) | def drawChord(self, x: int, y: int, w: int, h: int, a: int, alen: int)... method drawChord (line 9924) | def drawChord(self, rect: PySide2.QtCore.QRectF, a: int, alen: int) ->... method drawChord (line 9926) | def drawChord(self, arg__1: PySide2.QtCore.QRect, a: int, alen: int) -... method drawConvexPolygon (line 9928) | def drawConvexPolygon(self, polygon: QPolygon) -> None: ... method drawConvexPolygon (line 9930) | def drawConvexPolygon(self, polygon: QPolygonF) -> None: ... method drawConvexPolygon (line 9932) | def drawConvexPolygon(self, arg__1: list[PySide2.QtCore.QPointF]) -> N... method drawConvexPolygon (line 9934) | def drawConvexPolygon(self, arg__1: list[PySide2.QtCore.QPoint]) -> No... method drawEllipse (line 9936) | def drawEllipse(self, x: int, y: int, w: int, h: int) -> None: ... method drawEllipse (line 9938) | def drawEllipse(self, center: PySide2.QtCore.QPoint, rx: int, ry: int)... method drawEllipse (line 9940) | def drawEllipse(self, center: PySide2.QtCore.QPointF, rx: float, ry: f... method drawEllipse (line 9942) | def drawEllipse(self, r: PySide2.QtCore.QRect) -> None: ... method drawEllipse (line 9944) | def drawEllipse(self, r: PySide2.QtCore.QRectF) -> None: ... method drawImage (line 9946) | def drawImage(self, x: int, y: int, image: QImage, sx: int = ..., sy: ... method drawImage (line 9948) | def drawImage(self, targetRect: PySide2.QtCore.QRect, image: QImage, s... method drawImage (line 9950) | def drawImage(self, targetRect: PySide2.QtCore.QRectF, image: QImage, ... method drawImage (line 9952) | def drawImage(self, p: PySide2.QtCore.QPoint, image: QImage, sr: PySid... method drawImage (line 9954) | def drawImage(self, p: PySide2.QtCore.QPointF, image: QImage, sr: PySi... method drawImage (line 9956) | def drawImage(self, r: PySide2.QtCore.QRect, image: QImage) -> None: ... method drawImage (line 9958) | def drawImage(self, r: PySide2.QtCore.QRectF, image: QImage) -> None: ... method drawImage (line 9960) | def drawImage(self, p: PySide2.QtCore.QPoint, image: QImage) -> None: ... method drawImage (line 9962) | def drawImage(self, p: PySide2.QtCore.QPointF, image: QImage) -> None:... method drawLine (line 9964) | def drawLine(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method drawLine (line 9966) | def drawLine(self, p1: PySide2.QtCore.QPoint, p2: PySide2.QtCore.QPoin... method drawLine (line 9968) | def drawLine(self, p1: PySide2.QtCore.QPointF, p2: PySide2.QtCore.QPoi... method drawLine (line 9970) | def drawLine(self, line: PySide2.QtCore.QLine) -> None: ... method drawLine (line 9972) | def drawLine(self, line: PySide2.QtCore.QLineF) -> None: ... method drawLines (line 9974) | def drawLines(self, pointPairs: list[PySide2.QtCore.QPointF]) -> None:... method drawLines (line 9976) | def drawLines(self, pointPairs: list[PySide2.QtCore.QPoint]) -> None: ... method drawLines (line 9978) | def drawLines(self, lines: list[PySide2.QtCore.QLineF]) -> None: ... method drawLines (line 9980) | def drawLines(self, lines: list[PySide2.QtCore.QLine]) -> None: ... method drawPath (line 9981) | def drawPath(self, path: QPainterPath) -> None: ... method drawPicture (line 9983) | def drawPicture(self, x: int, y: int, picture: QPicture) -> None: ... method drawPicture (line 9985) | def drawPicture(self, p: PySide2.QtCore.QPoint, picture: QPicture) -> ... method drawPicture (line 9987) | def drawPicture(self, p: PySide2.QtCore.QPointF, picture: QPicture) ->... method drawPie (line 9989) | def drawPie(self, x: int, y: int, w: int, h: int, a: int, alen: int) -... method drawPie (line 9991) | def drawPie(self, rect: PySide2.QtCore.QRectF, a: int, alen: int) -> N... method drawPie (line 9993) | def drawPie(self, arg__1: PySide2.QtCore.QRect, a: int, alen: int) -> ... method drawPixmap (line 9995) | def drawPixmap(self, x: int, y: int, w: int, h: int, pm: QPixmap, sx: ... method drawPixmap (line 9997) | def drawPixmap(self, x: int, y: int, pm: QPixmap, sx: int, sy: int, sw... method drawPixmap (line 9999) | def drawPixmap(self, x: int, y: int, w: int, h: int, pm: QPixmap) -> N... method drawPixmap (line 10001) | def drawPixmap(self, x: int, y: int, pm: QPixmap) -> None: ... method drawPixmap (line 10003) | def drawPixmap(self, targetRect: PySide2.QtCore.QRect, pixmap: QPixmap... method drawPixmap (line 10005) | def drawPixmap(self, targetRect: PySide2.QtCore.QRectF, pixmap: QPixma... method drawPixmap (line 10007) | def drawPixmap(self, p: PySide2.QtCore.QPoint, pm: QPixmap, sr: PySide... method drawPixmap (line 10009) | def drawPixmap(self, p: PySide2.QtCore.QPointF, pm: QPixmap, sr: PySid... method drawPixmap (line 10011) | def drawPixmap(self, r: PySide2.QtCore.QRect, pm: QPixmap) -> None: ... method drawPixmap (line 10013) | def drawPixmap(self, p: PySide2.QtCore.QPoint, pm: QPixmap) -> None: ... method drawPixmap (line 10015) | def drawPixmap(self, p: PySide2.QtCore.QPointF, pm: QPixmap) -> None: ... method drawPixmapFragments (line 10016) | def drawPixmapFragments(self, fragments: QPainter.PixmapFragment, frag... method drawPoint (line 10018) | def drawPoint(self, x: int, y: int) -> None: ... method drawPoint (line 10020) | def drawPoint(self, pt: PySide2.QtCore.QPointF) -> None: ... method drawPoint (line 10022) | def drawPoint(self, p: PySide2.QtCore.QPoint) -> None: ... method drawPoints (line 10024) | def drawPoints(self, points: QPolygon) -> None: ... method drawPoints (line 10026) | def drawPoints(self, points: QPolygonF) -> None: ... method drawPoints (line 10028) | def drawPoints(self, arg__1: list[PySide2.QtCore.QPointF]) -> None: ... method drawPoints (line 10030) | def drawPoints(self, arg__1: list[PySide2.QtCore.QPoint]) -> None: ... method drawPolygon (line 10032) | def drawPolygon(self, polygon: QPolygon, fillRule: PySide2.QtCore.Qt.F... method drawPolygon (line 10034) | def drawPolygon(self, polygon: QPolygonF, fillRule: PySide2.QtCore.Qt.... method drawPolygon (line 10036) | def drawPolygon(self, arg__1: list[PySide2.QtCore.QPointF], arg__2: Py... method drawPolygon (line 10038) | def drawPolygon(self, arg__1: list[PySide2.QtCore.QPoint], arg__2: PyS... method drawPolyline (line 10040) | def drawPolyline(self, polyline: QPolygonF) -> None: ... method drawPolyline (line 10042) | def drawPolyline(self, polygon: QPolygon) -> None: ... method drawPolyline (line 10044) | def drawPolyline(self, arg__1: list[PySide2.QtCore.QPointF]) -> None: ... method drawPolyline (line 10046) | def drawPolyline(self, arg__1: list[PySide2.QtCore.QPoint]) -> None: ... method drawRect (line 10048) | def drawRect(self, x1: int, y1: int, w: int, h: int) -> None: ... method drawRect (line 10050) | def drawRect(self, rect: PySide2.QtCore.QRect) -> None: ... method drawRect (line 10052) | def drawRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method drawRects (line 10054) | def drawRects(self, rectangles: list[PySide2.QtCore.QRectF]) -> None: ... method drawRects (line 10056) | def drawRects(self, rectangles: list[PySide2.QtCore.QRect]) -> None: ... method drawRoundRect (line 10058) | def drawRoundRect(self, x: int, y: int, w: int, h: int, xRound: int = ... method drawRoundRect (line 10060) | def drawRoundRect(self, r: PySide2.QtCore.QRect, xround: int = ..., yr... method drawRoundRect (line 10062) | def drawRoundRect(self, r: PySide2.QtCore.QRectF, xround: int = ..., y... method drawRoundedRect (line 10064) | def drawRoundedRect(self, x: int, y: int, w: int, h: int, xRadius: flo... method drawRoundedRect (line 10066) | def drawRoundedRect(self, rect: PySide2.QtCore.QRect, xRadius: float, ... method drawRoundedRect (line 10068) | def drawRoundedRect(self, rect: PySide2.QtCore.QRectF, xRadius: float,... method drawStaticText (line 10070) | def drawStaticText(self, left: int, top: int, staticText: QStaticText)... method drawStaticText (line 10072) | def drawStaticText(self, topLeftPosition: PySide2.QtCore.QPoint, stati... method drawStaticText (line 10074) | def drawStaticText(self, topLeftPosition: PySide2.QtCore.QPointF, stat... method drawText (line 10076) | def drawText(self, x: int, y: int, w: int, h: int, flags: typing.Suppo... method drawText (line 10078) | def drawText(self, r: PySide2.QtCore.QRect, flags: typing.SupportsInt,... method drawText (line 10080) | def drawText(self, r: PySide2.QtCore.QRectF, flags: typing.SupportsInt... method drawText (line 10082) | def drawText(self, x: int, y: int, s: str) -> None: ... method drawText (line 10084) | def drawText(self, r: PySide2.QtCore.QRectF, text: str, o: QTextOption... method drawText (line 10086) | def drawText(self, p: PySide2.QtCore.QPoint, s: str) -> None: ... method drawText (line 10088) | def drawText(self, p: PySide2.QtCore.QPointF, s: str) -> None: ... method drawTextItem (line 10090) | def drawTextItem(self, x: int, y: int, ti: QTextItem) -> None: ... method drawTextItem (line 10092) | def drawTextItem(self, p: PySide2.QtCore.QPoint, ti: QTextItem) -> Non... method drawTextItem (line 10094) | def drawTextItem(self, p: PySide2.QtCore.QPointF, ti: QTextItem) -> No... method drawTiledPixmap (line 10096) | def drawTiledPixmap(self, x: int, y: int, w: int, h: int, arg__5: QPix... method drawTiledPixmap (line 10098) | def drawTiledPixmap(self, rect: PySide2.QtCore.QRectF, pm: QPixmap, of... method drawTiledPixmap (line 10100) | def drawTiledPixmap(self, arg__1: PySide2.QtCore.QRect, arg__2: QPixma... method end (line 10101) | def end(self) -> bool: ... method endNativePainting (line 10102) | def endNativePainting(self) -> None: ... method eraseRect (line 10104) | def eraseRect(self, x: int, y: int, w: int, h: int) -> None: ... method eraseRect (line 10106) | def eraseRect(self, arg__1: PySide2.QtCore.QRect) -> None: ... method eraseRect (line 10108) | def eraseRect(self, arg__1: PySide2.QtCore.QRectF) -> None: ... method fillPath (line 10109) | def fillPath(self, path: QPainterPath, brush: QBrush | QColor | PySide... method fillRect (line 10111) | def fillRect(self, x: int, y: int, w: int, h: int, style: PySide2.QtCo... method fillRect (line 10113) | def fillRect(self, x: int, y: int, w: int, h: int, preset: QGradient.P... method fillRect (line 10115) | def fillRect(self, x: int, y: int, w: int, h: int, color: QColor | PyS... method fillRect (line 10117) | def fillRect(self, x: int, y: int, w: int, h: int, c: PySide2.QtCore.Q... method fillRect (line 10119) | def fillRect(self, x: int, y: int, w: int, h: int, arg__5: QBrush | QC... method fillRect (line 10121) | def fillRect(self, r: PySide2.QtCore.QRect, style: PySide2.QtCore.Qt.B... method fillRect (line 10123) | def fillRect(self, r: PySide2.QtCore.QRectF, style: PySide2.QtCore.Qt.... method fillRect (line 10125) | def fillRect(self, r: PySide2.QtCore.QRect, preset: QGradient.Preset) ... method fillRect (line 10127) | def fillRect(self, r: PySide2.QtCore.QRectF, preset: QGradient.Preset)... method fillRect (line 10129) | def fillRect(self, r: PySide2.QtCore.QRect, c: PySide2.QtCore.Qt.Globa... method fillRect (line 10131) | def fillRect(self, r: PySide2.QtCore.QRectF, c: PySide2.QtCore.Qt.Glob... method fillRect (line 10133) | def fillRect(self, arg__1: PySide2.QtCore.QRect, color: QColor | PySid... method fillRect (line 10135) | def fillRect(self, arg__1: PySide2.QtCore.QRectF, color: QColor | PySi... method fillRect (line 10137) | def fillRect(self, arg__1: PySide2.QtCore.QRect, arg__2: QBrush | QCol... method fillRect (line 10139) | def fillRect(self, arg__1: PySide2.QtCore.QRectF, arg__2: QBrush | QCo... method font (line 10140) | def font(self) -> QFont: ... method fontInfo (line 10141) | def fontInfo(self) -> QFontInfo: ... method fontMetrics (line 10142) | def fontMetrics(self) -> QFontMetrics: ... method hasClipping (line 10143) | def hasClipping(self) -> bool: ... method initFrom (line 10144) | def initFrom(self, device: QPaintDevice) -> None: ... method isActive (line 10145) | def isActive(self) -> bool: ... method layoutDirection (line 10146) | def layoutDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method matrix (line 10147) | def matrix(self) -> QMatrix: ... method matrixEnabled (line 10148) | def matrixEnabled(self) -> bool: ... method opacity (line 10149) | def opacity(self) -> float: ... method paintEngine (line 10150) | def paintEngine(self) -> QPaintEngine: ... method pen (line 10151) | def pen(self) -> QPen: ... method redirected (line 10153) | def redirected(device: QPaintDevice, offset: PySide2.QtCore.QPoint | N... method renderHints (line 10154) | def renderHints(self) -> QPainter.RenderHints | QPainter.RenderHint: ... method resetMatrix (line 10155) | def resetMatrix(self) -> None: ... method resetTransform (line 10156) | def resetTransform(self) -> None: ... method restore (line 10157) | def restore(self) -> None: ... method restoreRedirected (line 10159) | def restoreRedirected(device: QPaintDevice) -> None: ... method rotate (line 10160) | def rotate(self, a: float) -> None: ... method save (line 10161) | def save(self) -> None: ... method scale (line 10162) | def scale(self, sx: float, sy: float) -> None: ... method setBackground (line 10163) | def setBackground(self, bg: QBrush | QColor | PySide2.QtCore.Qt.Global... method setBackgroundMode (line 10164) | def setBackgroundMode(self, mode: PySide2.QtCore.Qt.BGMode) -> None: ... method setBrush (line 10166) | def setBrush(self, style: PySide2.QtCore.Qt.BrushStyle) -> None: ... method setBrush (line 10168) | def setBrush(self, brush: QBrush | QColor | PySide2.QtCore.Qt.GlobalCo... method setBrushOrigin (line 10170) | def setBrushOrigin(self, x: int, y: int) -> None: ... method setBrushOrigin (line 10172) | def setBrushOrigin(self, arg__1: PySide2.QtCore.QPoint) -> None: ... method setBrushOrigin (line 10174) | def setBrushOrigin(self, arg__1: PySide2.QtCore.QPointF) -> None: ... method setClipPath (line 10175) | def setClipPath(self, path: QPainterPath, op: PySide2.QtCore.Qt.ClipOp... method setClipRect (line 10177) | def setClipRect(self, x: int, y: int, w: int, h: int, op: PySide2.QtCo... method setClipRect (line 10179) | def setClipRect(self, arg__1: PySide2.QtCore.QRect, op: PySide2.QtCore... method setClipRect (line 10181) | def setClipRect(self, arg__1: PySide2.QtCore.QRectF, op: PySide2.QtCor... method setClipRegion (line 10182) | def setClipRegion(self, arg__1: QRegion, op: PySide2.QtCore.Qt.ClipOpe... method setClipping (line 10183) | def setClipping(self, enable: bool) -> None: ... method setCompositionMode (line 10184) | def setCompositionMode(self, mode: QPainter.CompositionMode) -> None: ... method setFont (line 10185) | def setFont(self, f: QFont) -> None: ... method setLayoutDirection (line 10186) | def setLayoutDirection(self, direction: PySide2.QtCore.Qt.LayoutDirect... method setMatrix (line 10187) | def setMatrix(self, matrix: QMatrix, combine: bool = ...) -> None: ... method setMatrixEnabled (line 10188) | def setMatrixEnabled(self, enabled: bool) -> None: ... method setOpacity (line 10189) | def setOpacity(self, opacity: float) -> None: ... method setPen (line 10191) | def setPen(self, style: PySide2.QtCore.Qt.PenStyle) -> None: ... method setPen (line 10193) | def setPen(self, pen: QPen) -> None: ... method setPen (line 10195) | def setPen(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int) ... method setRedirected (line 10197) | def setRedirected(device: QPaintDevice, replacement: QPaintDevice, off... method setRenderHint (line 10198) | def setRenderHint(self, hint: QPainter.RenderHint, on: bool = ...) -> ... method setRenderHints (line 10199) | def setRenderHints(self, hints: QPainter.RenderHints | QPainter.Render... method setTransform (line 10200) | def setTransform(self, transform: QTransform, combine: bool = ...) -> ... method setViewTransformEnabled (line 10201) | def setViewTransformEnabled(self, enable: bool) -> None: ... method setViewport (line 10203) | def setViewport(self, x: int, y: int, w: int, h: int) -> None: ... method setViewport (line 10205) | def setViewport(self, viewport: PySide2.QtCore.QRect) -> None: ... method setWindow (line 10207) | def setWindow(self, x: int, y: int, w: int, h: int) -> None: ... method setWindow (line 10209) | def setWindow(self, window: PySide2.QtCore.QRect) -> None: ... method setWorldMatrix (line 10210) | def setWorldMatrix(self, matrix: QMatrix, combine: bool = ...) -> None... method setWorldMatrixEnabled (line 10211) | def setWorldMatrixEnabled(self, enabled: bool) -> None: ... method setWorldTransform (line 10212) | def setWorldTransform(self, matrix: QTransform, combine: bool = ...) -... method shear (line 10213) | def shear(self, sh: float, sv: float) -> None: ... method strokePath (line 10214) | def strokePath(self, path: QPainterPath, pen: QPen) -> None: ... method testRenderHint (line 10215) | def testRenderHint(self, hint: QPainter.RenderHint) -> bool: ... method transform (line 10216) | def transform(self) -> QTransform: ... method translate (line 10218) | def translate(self, dx: float, dy: float) -> None: ... method translate (line 10220) | def translate(self, offset: PySide2.QtCore.QPoint) -> None: ... method translate (line 10222) | def translate(self, offset: PySide2.QtCore.QPointF) -> None: ... method viewTransformEnabled (line 10223) | def viewTransformEnabled(self) -> bool: ... method viewport (line 10224) | def viewport(self) -> PySide2.QtCore.QRect: ... method window (line 10225) | def window(self) -> PySide2.QtCore.QRect: ... method worldMatrix (line 10226) | def worldMatrix(self) -> QMatrix: ... method worldMatrixEnabled (line 10227) | def worldMatrixEnabled(self) -> bool: ... method worldTransform (line 10228) | def worldTransform(self) -> QTransform: ... class QPainterPath (line 10230) | class QPainterPath(shiboken2.Object): class Element (line 10231) | class Element(shiboken2.Object): method __init__ (line 10236) | def __init__(self, Element: QPainterPath.Element) -> None: ... method __init__ (line 10238) | def __init__(self) -> None: ... method isCurveTo (line 10239) | def isCurveTo(self) -> bool: ... method isLineTo (line 10240) | def isLineTo(self) -> bool: ... method isMoveTo (line 10241) | def isMoveTo(self) -> bool: ... method __copy__ (line 10242) | def __copy__(self) -> None: ... method __eq__ (line 10243) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10244) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10245) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10246) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10247) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10248) | def __ne__(self, other: object) -> bool: ... class ElementType (line 10250) | class ElementType: method __init__ (line 10258) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10259) | def __add__(self, other: typing.SupportsInt) -> QPainterPath.Element... method __and__ (line 10260) | def __and__(self, other: typing.SupportsInt) -> QPainterPath.Element... method __bool__ (line 10261) | def __bool__(self) -> bool: ... method __eq__ (line 10262) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10263) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10264) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10265) | def __hash__(self) -> int: ... method __index__ (line 10266) | def __index__(self) -> int: ... method __int__ (line 10267) | def __int__(self) -> int: ... method __le__ (line 10268) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10269) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10270) | def __mul__(self, other: typing.SupportsInt) -> QPainterPath.Element... method __ne__ (line 10271) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10272) | def __or__(self, other: typing.SupportsInt) -> QPainterPath.ElementT... method __pos__ (line 10273) | def __pos__(self): ... method __radd__ (line 10274) | def __radd__(self, other: typing.SupportsInt) -> QPainterPath.Elemen... method __rand__ (line 10275) | def __rand__(self, other: typing.SupportsInt) -> QPainterPath.Elemen... method __rmul__ (line 10276) | def __rmul__(self, other: typing.SupportsInt) -> QPainterPath.Elemen... method __ror__ (line 10277) | def __ror__(self, other: typing.SupportsInt) -> QPainterPath.Element... method __rsub__ (line 10278) | def __rsub__(self, other: typing.SupportsInt) -> QPainterPath.Elemen... method __rxor__ (line 10279) | def __rxor__(self, other: typing.SupportsInt) -> QPainterPath.Elemen... method __sub__ (line 10280) | def __sub__(self, other: typing.SupportsInt) -> QPainterPath.Element... method __xor__ (line 10281) | def __xor__(self, other: typing.SupportsInt) -> QPainterPath.Element... method __init__ (line 10287) | def __init__(self, startPoint: PySide2.QtCore.QPointF) -> None: ... method __init__ (line 10289) | def __init__(self, other: QPainterPath) -> None: ... method __init__ (line 10291) | def __init__(self) -> None: ... method addEllipse (line 10293) | def addEllipse(self, x: float, y: float, w: float, h: float) -> None: ... method addEllipse (line 10295) | def addEllipse(self, center: PySide2.QtCore.QPointF, rx: float, ry: fl... method addEllipse (line 10297) | def addEllipse(self, rect: PySide2.QtCore.QRectF) -> None: ... method addPath (line 10298) | def addPath(self, path: QPainterPath) -> None: ... method addPolygon (line 10299) | def addPolygon(self, polygon: QPolygonF) -> None: ... method addRect (line 10301) | def addRect(self, x: float, y: float, w: float, h: float) -> None: ... method addRect (line 10303) | def addRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method addRegion (line 10304) | def addRegion(self, region: QRegion) -> None: ... method addRoundRect (line 10306) | def addRoundRect(self, x: float, y: float, w: float, h: float, xRnd: i... method addRoundRect (line 10308) | def addRoundRect(self, x: float, y: float, w: float, h: float, roundne... method addRoundRect (line 10310) | def addRoundRect(self, rect: PySide2.QtCore.QRectF, xRnd: int, yRnd: i... method addRoundRect (line 10312) | def addRoundRect(self, rect: PySide2.QtCore.QRectF, roundness: int) ->... method addRoundedRect (line 10314) | def addRoundedRect(self, x: float, y: float, w: float, h: float, xRadi... method addRoundedRect (line 10316) | def addRoundedRect(self, rect: PySide2.QtCore.QRectF, xRadius: float, ... method addText (line 10318) | def addText(self, x: float, y: float, f: QFont, text: str) -> None: ... method addText (line 10320) | def addText(self, point: PySide2.QtCore.QPointF, f: QFont, text: str) ... method angleAtPercent (line 10321) | def angleAtPercent(self, t: float) -> float: ... method arcMoveTo (line 10323) | def arcMoveTo(self, x: float, y: float, w: float, h: float, angle: flo... method arcMoveTo (line 10325) | def arcMoveTo(self, rect: PySide2.QtCore.QRectF, angle: float) -> None... method arcTo (line 10327) | def arcTo(self, x: float, y: float, w: float, h: float, startAngle: fl... method arcTo (line 10329) | def arcTo(self, rect: PySide2.QtCore.QRectF, startAngle: float, arcLen... method boundingRect (line 10330) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method capacity (line 10331) | def capacity(self) -> int: ... method clear (line 10332) | def clear(self) -> None: ... method closeSubpath (line 10333) | def closeSubpath(self) -> None: ... method connectPath (line 10334) | def connectPath(self, path: QPainterPath) -> None: ... method contains (line 10336) | def contains(self, rect: PySide2.QtCore.QRectF) -> bool: ... method contains (line 10338) | def contains(self, pt: PySide2.QtCore.QPointF) -> bool: ... method contains (line 10340) | def contains(self, p: QPainterPath) -> bool: ... method controlPointRect (line 10341) | def controlPointRect(self) -> PySide2.QtCore.QRectF: ... method cubicTo (line 10343) | def cubicTo(self, ctrlPt1x: float, ctrlPt1y: float, ctrlPt2x: float, c... method cubicTo (line 10345) | def cubicTo(self, ctrlPt1: PySide2.QtCore.QPointF, ctrlPt2: PySide2.Qt... method currentPosition (line 10346) | def currentPosition(self) -> PySide2.QtCore.QPointF: ... method elementAt (line 10347) | def elementAt(self, i: int) -> QPainterPath.Element: ... method elementCount (line 10348) | def elementCount(self) -> int: ... method fillRule (line 10349) | def fillRule(self) -> PySide2.QtCore.Qt.FillRule: ... method intersected (line 10350) | def intersected(self, r: QPainterPath) -> QPainterPath: ... method intersects (line 10352) | def intersects(self, rect: PySide2.QtCore.QRectF) -> bool: ... method intersects (line 10354) | def intersects(self, p: QPainterPath) -> bool: ... method isEmpty (line 10355) | def isEmpty(self) -> bool: ... method length (line 10356) | def length(self) -> float: ... method lineTo (line 10358) | def lineTo(self, x: float, y: float) -> None: ... method lineTo (line 10360) | def lineTo(self, p: PySide2.QtCore.QPointF) -> None: ... method moveTo (line 10362) | def moveTo(self, x: float, y: float) -> None: ... method moveTo (line 10364) | def moveTo(self, p: PySide2.QtCore.QPointF) -> None: ... method percentAtLength (line 10365) | def percentAtLength(self, t: float) -> float: ... method pointAtPercent (line 10366) | def pointAtPercent(self, t: float) -> PySide2.QtCore.QPointF: ... method quadTo (line 10368) | def quadTo(self, ctrlPtx: float, ctrlPty: float, endPtx: float, endPty... method quadTo (line 10370) | def quadTo(self, ctrlPt: PySide2.QtCore.QPointF, endPt: PySide2.QtCore... method reserve (line 10371) | def reserve(self, size: int) -> None: ... method setElementPositionAt (line 10372) | def setElementPositionAt(self, i: int, x: float, y: float) -> None: ... method setFillRule (line 10373) | def setFillRule(self, fillRule: PySide2.QtCore.Qt.FillRule) -> None: ... method simplified (line 10374) | def simplified(self) -> QPainterPath: ... method slopeAtPercent (line 10375) | def slopeAtPercent(self, t: float) -> float: ... method subtracted (line 10376) | def subtracted(self, r: QPainterPath) -> QPainterPath: ... method subtractedInverted (line 10377) | def subtractedInverted(self, r: QPainterPath) -> QPainterPath: ... method swap (line 10378) | def swap(self, other: QPainterPath) -> None: ... method toFillPolygon (line 10380) | def toFillPolygon(self, matrix: QMatrix) -> QPolygonF: ... method toFillPolygon (line 10382) | def toFillPolygon(self, matrix: QTransform = ...) -> QPolygonF: ... method toFillPolygons (line 10384) | def toFillPolygons(self, matrix: QMatrix) -> list[QPolygonF]: ... method toFillPolygons (line 10386) | def toFillPolygons(self, matrix: QTransform = ...) -> list[QPolygonF]:... method toReversed (line 10387) | def toReversed(self) -> QPainterPath: ... method toSubpathPolygons (line 10389) | def toSubpathPolygons(self, matrix: QMatrix) -> list[QPolygonF]: ... method toSubpathPolygons (line 10391) | def toSubpathPolygons(self, matrix: QTransform = ...) -> list[QPolygon... method translate (line 10393) | def translate(self, dx: float, dy: float) -> None: ... method translate (line 10395) | def translate(self, offset: PySide2.QtCore.QPointF) -> None: ... method translated (line 10397) | def translated(self, dx: float, dy: float) -> QPainterPath: ... method translated (line 10399) | def translated(self, offset: PySide2.QtCore.QPointF) -> QPainterPath: ... method united (line 10400) | def united(self, r: QPainterPath) -> QPainterPath: ... method __add__ (line 10401) | def __add__(self, other: QPainterPath) -> QPainterPath: ... method __and__ (line 10402) | def __and__(self, other: QPainterPath) -> QPainterPath: ... method __copy__ (line 10403) | def __copy__(self) -> None: ... method __eq__ (line 10404) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10405) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10406) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 10407) | def __iadd__(self, other: QPainterPath) -> QPainterPath: ... method __iand__ (line 10408) | def __iand__(self, other: QPainterPath) -> QPainterPath: ... method __ior__ (line 10409) | def __ior__(self, other: QPainterPath) -> QPainterPath: ... method __isub__ (line 10410) | def __isub__(self, other: QPainterPath) -> QPainterPath: ... method __le__ (line 10411) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10412) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 10413) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10415) | def __mul__(self, m: QMatrix) -> QPainterPath: ... method __mul__ (line 10417) | def __mul__(self, m: QTransform) -> QPainterPath: ... method __ne__ (line 10418) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10419) | def __or__(self, other: QPainterPath) -> QPainterPath: ... method __radd__ (line 10420) | def __radd__(self, other): ... method __rand__ (line 10421) | def __rand__(self, other): ... method __rlshift__ (line 10422) | def __rlshift__(self, other): ... method __rmul__ (line 10423) | def __rmul__(self, other): ... method __ror__ (line 10424) | def __ror__(self, other): ... method __rrshift__ (line 10425) | def __rrshift__(self, other): ... method __rshift__ (line 10426) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 10427) | def __rsub__(self, other): ... method __sub__ (line 10428) | def __sub__(self, other: QPainterPath) -> QPainterPath: ... class QPainterPathStroker (line 10430) | class QPainterPathStroker(shiboken2.Object): method __init__ (line 10432) | def __init__(self, pen: QPen) -> None: ... method __init__ (line 10434) | def __init__(self) -> None: ... method capStyle (line 10435) | def capStyle(self) -> PySide2.QtCore.Qt.PenCapStyle: ... method createStroke (line 10436) | def createStroke(self, path: QPainterPath) -> QPainterPath: ... method curveThreshold (line 10437) | def curveThreshold(self) -> float: ... method dashOffset (line 10438) | def dashOffset(self) -> float: ... method dashPattern (line 10439) | def dashPattern(self) -> list[float]: ... method joinStyle (line 10440) | def joinStyle(self) -> PySide2.QtCore.Qt.PenJoinStyle: ... method miterLimit (line 10441) | def miterLimit(self) -> float: ... method setCapStyle (line 10442) | def setCapStyle(self, style: PySide2.QtCore.Qt.PenCapStyle) -> None: ... method setCurveThreshold (line 10443) | def setCurveThreshold(self, threshold: float) -> None: ... method setDashOffset (line 10444) | def setDashOffset(self, offset: float) -> None: ... method setDashPattern (line 10446) | def setDashPattern(self, dashPattern: list[float]) -> None: ... method setDashPattern (line 10448) | def setDashPattern(self, arg__1: PySide2.QtCore.Qt.PenStyle) -> None: ... method setJoinStyle (line 10449) | def setJoinStyle(self, style: PySide2.QtCore.Qt.PenJoinStyle) -> None:... method setMiterLimit (line 10450) | def setMiterLimit(self, length: float) -> None: ... method setWidth (line 10451) | def setWidth(self, width: float) -> None: ... method width (line 10452) | def width(self) -> float: ... class QPalette (line 10454) | class QPalette(shiboken2.Object): class ColorGroup (line 10455) | class ColorGroup: method __init__ (line 10466) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10467) | def __add__(self, other: typing.SupportsInt) -> QPalette.ColorGroup:... method __and__ (line 10468) | def __and__(self, other: typing.SupportsInt) -> QPalette.ColorGroup:... method __bool__ (line 10469) | def __bool__(self) -> bool: ... method __eq__ (line 10470) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10471) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10472) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10473) | def __hash__(self) -> int: ... method __index__ (line 10474) | def __index__(self) -> int: ... method __int__ (line 10475) | def __int__(self) -> int: ... method __le__ (line 10476) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10477) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10478) | def __mul__(self, other: typing.SupportsInt) -> QPalette.ColorGroup:... method __ne__ (line 10479) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10480) | def __or__(self, other: typing.SupportsInt) -> QPalette.ColorGroup: ... method __pos__ (line 10481) | def __pos__(self): ... method __radd__ (line 10482) | def __radd__(self, other: typing.SupportsInt) -> QPalette.ColorGroup... method __rand__ (line 10483) | def __rand__(self, other: typing.SupportsInt) -> QPalette.ColorGroup... method __rmul__ (line 10484) | def __rmul__(self, other: typing.SupportsInt) -> QPalette.ColorGroup... method __ror__ (line 10485) | def __ror__(self, other: typing.SupportsInt) -> QPalette.ColorGroup:... method __rsub__ (line 10486) | def __rsub__(self, other: typing.SupportsInt) -> QPalette.ColorGroup... method __rxor__ (line 10487) | def __rxor__(self, other: typing.SupportsInt) -> QPalette.ColorGroup... method __sub__ (line 10488) | def __sub__(self, other: typing.SupportsInt) -> QPalette.ColorGroup:... method __xor__ (line 10489) | def __xor__(self, other: typing.SupportsInt) -> QPalette.ColorGroup:... class ColorRole (line 10491) | class ColorRole: method __init__ (line 10519) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10520) | def __add__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __and__ (line 10521) | def __and__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __bool__ (line 10522) | def __bool__(self) -> bool: ... method __eq__ (line 10523) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10524) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10525) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10526) | def __hash__(self) -> int: ... method __index__ (line 10527) | def __index__(self) -> int: ... method __int__ (line 10528) | def __int__(self) -> int: ... method __le__ (line 10529) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10530) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10531) | def __mul__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __ne__ (line 10532) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10533) | def __or__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __pos__ (line 10534) | def __pos__(self): ... method __radd__ (line 10535) | def __radd__(self, other: typing.SupportsInt) -> QPalette.ColorRole:... method __rand__ (line 10536) | def __rand__(self, other: typing.SupportsInt) -> QPalette.ColorRole:... method __rmul__ (line 10537) | def __rmul__(self, other: typing.SupportsInt) -> QPalette.ColorRole:... method __ror__ (line 10538) | def __ror__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __rsub__ (line 10539) | def __rsub__(self, other: typing.SupportsInt) -> QPalette.ColorRole:... method __rxor__ (line 10540) | def __rxor__(self, other: typing.SupportsInt) -> QPalette.ColorRole:... method __sub__ (line 10541) | def __sub__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __xor__ (line 10542) | def __xor__(self, other: typing.SupportsInt) -> QPalette.ColorRole: ... method __init__ (line 10575) | def __init__(self, windowText: QBrush | QColor | PySide2.QtCore.Qt.Glo... method __init__ (line 10577) | def __init__(self, windowText: QColor | PySide2.QtCore.Qt.GlobalColor ... method __init__ (line 10579) | def __init__(self, button: QColor | PySide2.QtCore.Qt.GlobalColor | in... method __init__ (line 10581) | def __init__(self, palette: QPalette) -> None: ... method __init__ (line 10583) | def __init__(self, button: PySide2.QtCore.Qt.GlobalColor) -> None: ... method __init__ (line 10585) | def __init__(self, button: QColor | PySide2.QtCore.Qt.GlobalColor | in... method __init__ (line 10587) | def __init__(self) -> None: ... method alternateBase (line 10588) | def alternateBase(self) -> QBrush: ... method background (line 10589) | def background(self) -> QBrush: ... method base (line 10590) | def base(self) -> QBrush: ... method brightText (line 10591) | def brightText(self) -> QBrush: ... method brush (line 10593) | def brush(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole) -> QB... method brush (line 10595) | def brush(self, cr: QPalette.ColorRole) -> QBrush: ... method button (line 10596) | def button(self) -> QBrush: ... method buttonText (line 10597) | def buttonText(self) -> QBrush: ... method cacheKey (line 10598) | def cacheKey(self) -> int: ... method color (line 10600) | def color(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole) -> QC... method color (line 10602) | def color(self, cr: QPalette.ColorRole) -> QColor: ... method currentColorGroup (line 10603) | def currentColorGroup(self) -> QPalette.ColorGroup: ... method dark (line 10604) | def dark(self) -> QBrush: ... method foreground (line 10605) | def foreground(self) -> QBrush: ... method highlight (line 10606) | def highlight(self) -> QBrush: ... method highlightedText (line 10607) | def highlightedText(self) -> QBrush: ... method isBrushSet (line 10608) | def isBrushSet(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole) ... method isCopyOf (line 10609) | def isCopyOf(self, p: QPalette) -> bool: ... method isEqual (line 10610) | def isEqual(self, cr1: QPalette.ColorGroup, cr2: QPalette.ColorGroup) ... method light (line 10611) | def light(self) -> QBrush: ... method link (line 10612) | def link(self) -> QBrush: ... method linkVisited (line 10613) | def linkVisited(self) -> QBrush: ... method mid (line 10614) | def mid(self) -> QBrush: ... method midlight (line 10615) | def midlight(self) -> QBrush: ... method placeholderText (line 10616) | def placeholderText(self) -> QBrush: ... method resolve (line 10618) | def resolve(self, mask: int) -> None: ... method resolve (line 10620) | def resolve(self, arg__1: QPalette) -> QPalette: ... method resolve (line 10622) | def resolve(self) -> int: ... method setBrush (line 10624) | def setBrush(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, br... method setBrush (line 10626) | def setBrush(self, cr: QPalette.ColorRole, brush: QBrush | QColor | Py... method setColor (line 10628) | def setColor(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, co... method setColor (line 10630) | def setColor(self, cr: QPalette.ColorRole, color: QColor | PySide2.QtC... method setColorGroup (line 10631) | def setColorGroup(self, cr: QPalette.ColorGroup, windowText: QBrush | ... method setCurrentColorGroup (line 10632) | def setCurrentColorGroup(self, cg: QPalette.ColorGroup) -> None: ... method shadow (line 10633) | def shadow(self) -> QBrush: ... method swap (line 10634) | def swap(self, other: QPalette) -> None: ... method text (line 10635) | def text(self) -> QBrush: ... method toolTipBase (line 10636) | def toolTipBase(self) -> QBrush: ... method toolTipText (line 10637) | def toolTipText(self) -> QBrush: ... method window (line 10638) | def window(self) -> QBrush: ... method windowText (line 10639) | def windowText(self) -> QBrush: ... method __copy__ (line 10640) | def __copy__(self) -> None: ... method __eq__ (line 10641) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10642) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10643) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10644) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10645) | def __lshift__(self, ds: PySide2.QtCore.QDataStream) -> PySide2.QtCore... method __lt__ (line 10646) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10647) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 10648) | def __rlshift__(self, other): ... method __rrshift__ (line 10649) | def __rrshift__(self, other): ... method __rshift__ (line 10650) | def __rshift__(self, ds: PySide2.QtCore.QDataStream) -> PySide2.QtCore... class QPdfWriter (line 10652) | class QPdfWriter(PySide2.QtCore.QObject, QPagedPaintDevice): method __init__ (line 10655) | def __init__(self, filename: str, destroyed: typing.Callable = ..., ob... method __init__ (line 10657) | def __init__(self, device: PySide2.QtCore.QIODevice, destroyed: typing... method addFileAttachment (line 10658) | def addFileAttachment(self, fileName: str, data: PySide2.QtCore.QByteA... method creator (line 10659) | def creator(self) -> str: ... method documentXmpMetadata (line 10660) | def documentXmpMetadata(self) -> PySide2.QtCore.QByteArray: ... method metric (line 10661) | def metric(self, id: QPaintDevice.PaintDeviceMetric) -> int: ... method newPage (line 10662) | def newPage(self) -> bool: ... method paintEngine (line 10663) | def paintEngine(self) -> QPaintEngine: ... method pdfVersion (line 10664) | def pdfVersion(self) -> QPagedPaintDevice.PdfVersion: ... method resolution (line 10665) | def resolution(self) -> int: ... method setCreator (line 10666) | def setCreator(self, creator: str) -> None: ... method setDocumentXmpMetadata (line 10667) | def setDocumentXmpMetadata(self, xmpMetadata: PySide2.QtCore.QByteArra... method setMargins (line 10668) | def setMargins(self, m: QPagedPaintDevice.Margins) -> None: ... method setPageSize (line 10669) | def setPageSize(self, size: QPagedPaintDevice.PageSize) -> None: ... ... method setPageSizeMM (line 10670) | def setPageSizeMM(self, size: PySide2.QtCore.QSizeF) -> None: ... method setPdfVersion (line 10671) | def setPdfVersion(self, version: QPagedPaintDevice.PdfVersion) -> None... method setResolution (line 10672) | def setResolution(self, resolution: int) -> None: ... method setTitle (line 10673) | def setTitle(self, title: str) -> None: ... method title (line 10674) | def title(self) -> str: ... class QPen (line 10676) | class QPen(shiboken2.Object): method __init__ (line 10678) | def __init__(self, brush: QBrush | QColor | PySide2.QtCore.Qt.GlobalCo... method __init__ (line 10680) | def __init__(self, pen: QPen) -> None: ... method __init__ (line 10682) | def __init__(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int... method __init__ (line 10684) | def __init__(self, arg__1: PySide2.QtCore.Qt.PenStyle) -> None: ... method __init__ (line 10686) | def __init__(self) -> None: ... method brush (line 10687) | def brush(self) -> QBrush: ... method capStyle (line 10688) | def capStyle(self) -> PySide2.QtCore.Qt.PenCapStyle: ... method color (line 10689) | def color(self) -> QColor: ... method dashOffset (line 10690) | def dashOffset(self) -> float: ... method dashPattern (line 10691) | def dashPattern(self) -> list[float]: ... method isCosmetic (line 10692) | def isCosmetic(self) -> bool: ... method isSolid (line 10693) | def isSolid(self) -> bool: ... method joinStyle (line 10694) | def joinStyle(self) -> PySide2.QtCore.Qt.PenJoinStyle: ... method miterLimit (line 10695) | def miterLimit(self) -> float: ... method setBrush (line 10696) | def setBrush(self, brush: QBrush | QColor | PySide2.QtCore.Qt.GlobalCo... method setCapStyle (line 10697) | def setCapStyle(self, pcs: PySide2.QtCore.Qt.PenCapStyle) -> None: ... method setColor (line 10698) | def setColor(self, color: QColor | PySide2.QtCore.Qt.GlobalColor | int... method setCosmetic (line 10699) | def setCosmetic(self, cosmetic: bool) -> None: ... method setDashOffset (line 10700) | def setDashOffset(self, doffset: float) -> None: ... method setDashPattern (line 10701) | def setDashPattern(self, pattern: list[float]) -> None: ... method setJoinStyle (line 10702) | def setJoinStyle(self, pcs: PySide2.QtCore.Qt.PenJoinStyle) -> None: ... method setMiterLimit (line 10703) | def setMiterLimit(self, limit: float) -> None: ... method setStyle (line 10704) | def setStyle(self, arg__1: PySide2.QtCore.Qt.PenStyle) -> None: ... method setWidth (line 10705) | def setWidth(self, width: int) -> None: ... method setWidthF (line 10706) | def setWidthF(self, width: float) -> None: ... method style (line 10707) | def style(self) -> PySide2.QtCore.Qt.PenStyle: ... method swap (line 10708) | def swap(self, other: QPen) -> None: ... method width (line 10709) | def width(self) -> int: ... method widthF (line 10710) | def widthF(self) -> float: ... method __copy__ (line 10711) | def __copy__(self) -> None: ... method __eq__ (line 10712) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10713) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10714) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10715) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10716) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 10717) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10718) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 10719) | def __rlshift__(self, other): ... method __rrshift__ (line 10720) | def __rrshift__(self, other): ... method __rshift__ (line 10721) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QPicture (line 10723) | class QPicture(QPaintDevice): method __init__ (line 10725) | def __init__(self, formatVersion: int = ...) -> None: ... method __init__ (line 10727) | def __init__(self, arg__1: QPicture) -> None: ... method boundingRect (line 10728) | def boundingRect(self) -> PySide2.QtCore.QRect: ... method data (line 10729) | def data(self) -> bytes: ... method devType (line 10730) | def devType(self) -> int: ... method inputFormatList (line 10732) | def inputFormatList() -> list[str]: ... method inputFormats (line 10734) | def inputFormats() -> list[PySide2.QtCore.QByteArray]: ... method isNull (line 10735) | def isNull(self) -> bool: ... method load (line 10737) | def load(self, fileName: str, format: bytes | None = ...) -> bool: ... method load (line 10739) | def load(self, dev: PySide2.QtCore.QIODevice, format: bytes | None = .... method metric (line 10740) | def metric(self, m: QPaintDevice.PaintDeviceMetric) -> int: ... method outputFormatList (line 10742) | def outputFormatList() -> list[str]: ... method outputFormats (line 10744) | def outputFormats() -> list[PySide2.QtCore.QByteArray]: ... method paintEngine (line 10745) | def paintEngine(self) -> QPaintEngine: ... method pictureFormat (line 10747) | def pictureFormat(fileName: str) -> bytes: ... method play (line 10748) | def play(self, p: QPainter) -> bool: ... method save (line 10750) | def save(self, fileName: str, format: bytes | None = ...) -> bool: ... method save (line 10752) | def save(self, dev: PySide2.QtCore.QIODevice, format: bytes | None = .... method setBoundingRect (line 10753) | def setBoundingRect(self, r: PySide2.QtCore.QRect) -> None: ... method setData (line 10754) | def setData(self, data: bytes, size: int) -> None: ... method size (line 10755) | def size(self) -> int: ... method swap (line 10756) | def swap(self, other: QPicture) -> None: ... method __bool__ (line 10757) | def __bool__(self) -> bool: ... method __copy__ (line 10758) | def __copy__(self) -> None: ... method __lshift__ (line 10759) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rlshift__ (line 10760) | def __rlshift__(self, other): ... method __rrshift__ (line 10761) | def __rrshift__(self, other): ... method __rshift__ (line 10762) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QPictureIO (line 10764) | class QPictureIO(shiboken2.Object): method __init__ (line 10766) | def __init__(self, ioDevice: PySide2.QtCore.QIODevice, format: bytes) ... method __init__ (line 10768) | def __init__(self, fileName: str, format: bytes) -> None: ... method __init__ (line 10770) | def __init__(self) -> None: ... method description (line 10771) | def description(self) -> str: ... method fileName (line 10772) | def fileName(self) -> str: ... method format (line 10773) | def format(self) -> bytes: ... method gamma (line 10774) | def gamma(self) -> float: ... method inputFormats (line 10776) | def inputFormats() -> list[PySide2.QtCore.QByteArray]: ... method ioDevice (line 10777) | def ioDevice(self) -> PySide2.QtCore.QIODevice: ... method outputFormats (line 10779) | def outputFormats() -> list[PySide2.QtCore.QByteArray]: ... method parameters (line 10780) | def parameters(self) -> bytes: ... method picture (line 10781) | def picture(self) -> QPicture: ... method pictureFormat (line 10784) | def pictureFormat(fileName: str) -> PySide2.QtCore.QByteArray: ... method pictureFormat (line 10787) | def pictureFormat(arg__1: PySide2.QtCore.QIODevice) -> PySide2.QtCore.... method quality (line 10788) | def quality(self) -> int: ... method read (line 10789) | def read(self) -> bool: ... method setDescription (line 10790) | def setDescription(self, arg__1: str) -> None: ... method setFileName (line 10791) | def setFileName(self, arg__1: str) -> None: ... method setFormat (line 10792) | def setFormat(self, arg__1: bytes) -> None: ... method setGamma (line 10793) | def setGamma(self, arg__1: float) -> None: ... method setIODevice (line 10794) | def setIODevice(self, arg__1: PySide2.QtCore.QIODevice) -> None: ... method setParameters (line 10795) | def setParameters(self, arg__1: bytes) -> None: ... method setPicture (line 10796) | def setPicture(self, arg__1: QPicture) -> None: ... method setQuality (line 10797) | def setQuality(self, arg__1: int) -> None: ... method setStatus (line 10798) | def setStatus(self, arg__1: int) -> None: ... method status (line 10799) | def status(self) -> int: ... method write (line 10800) | def write(self) -> bool: ... class QPixelFormat (line 10802) | class QPixelFormat(shiboken2.Object): class AlphaPosition (line 10803) | class AlphaPosition: method __init__ (line 10809) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10810) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPo... method __and__ (line 10811) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPo... method __bool__ (line 10812) | def __bool__(self) -> bool: ... method __eq__ (line 10813) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10814) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10815) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10816) | def __hash__(self) -> int: ... method __index__ (line 10817) | def __index__(self) -> int: ... method __int__ (line 10818) | def __int__(self) -> int: ... method __le__ (line 10819) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10820) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10821) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPo... method __ne__ (line 10822) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10823) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPos... method __pos__ (line 10824) | def __pos__(self): ... method __radd__ (line 10825) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __rand__ (line 10826) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __rmul__ (line 10827) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __ror__ (line 10828) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPo... method __rsub__ (line 10829) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __rxor__ (line 10830) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __sub__ (line 10831) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPo... method __xor__ (line 10832) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPo... class AlphaPremultiplied (line 10834) | class AlphaPremultiplied: method __init__ (line 10840) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10841) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPr... method __and__ (line 10842) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPr... method __bool__ (line 10843) | def __bool__(self) -> bool: ... method __eq__ (line 10844) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10845) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10846) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10847) | def __hash__(self) -> int: ... method __index__ (line 10848) | def __index__(self) -> int: ... method __int__ (line 10849) | def __int__(self) -> int: ... method __le__ (line 10850) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10851) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10852) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPr... method __ne__ (line 10853) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10854) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPre... method __pos__ (line 10855) | def __pos__(self): ... method __radd__ (line 10856) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __rand__ (line 10857) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __rmul__ (line 10858) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __ror__ (line 10859) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPr... method __rsub__ (line 10860) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __rxor__ (line 10861) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaP... method __sub__ (line 10862) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPr... method __xor__ (line 10863) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaPr... class AlphaUsage (line 10865) | class AlphaUsage: method __init__ (line 10871) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10872) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUs... method __and__ (line 10873) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUs... method __bool__ (line 10874) | def __bool__(self) -> bool: ... method __eq__ (line 10875) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10876) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10877) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10878) | def __hash__(self) -> int: ... method __index__ (line 10879) | def __index__(self) -> int: ... method __int__ (line 10880) | def __int__(self) -> int: ... method __le__ (line 10881) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10882) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10883) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUs... method __ne__ (line 10884) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10885) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUsa... method __pos__ (line 10886) | def __pos__(self): ... method __radd__ (line 10887) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaU... method __rand__ (line 10888) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaU... method __rmul__ (line 10889) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaU... method __ror__ (line 10890) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUs... method __rsub__ (line 10891) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaU... method __rxor__ (line 10892) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaU... method __sub__ (line 10893) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUs... method __xor__ (line 10894) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.AlphaUs... class ByteOrder (line 10896) | class ByteOrder: method __init__ (line 10903) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10904) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrd... method __and__ (line 10905) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrd... method __bool__ (line 10906) | def __bool__(self) -> bool: ... method __eq__ (line 10907) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10908) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10909) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10910) | def __hash__(self) -> int: ... method __index__ (line 10911) | def __index__(self) -> int: ... method __int__ (line 10912) | def __int__(self) -> int: ... method __le__ (line 10913) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10914) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10915) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrd... method __ne__ (line 10916) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10917) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrde... method __pos__ (line 10918) | def __pos__(self): ... method __radd__ (line 10919) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOr... method __rand__ (line 10920) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOr... method __rmul__ (line 10921) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOr... method __ror__ (line 10922) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrd... method __rsub__ (line 10923) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOr... method __rxor__ (line 10924) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOr... method __sub__ (line 10925) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrd... method __xor__ (line 10926) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.ByteOrd... class ColorModel (line 10928) | class ColorModel: method __init__ (line 10941) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10942) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMo... method __and__ (line 10943) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMo... method __bool__ (line 10944) | def __bool__(self) -> bool: ... method __eq__ (line 10945) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10946) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10947) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10948) | def __hash__(self) -> int: ... method __index__ (line 10949) | def __index__(self) -> int: ... method __int__ (line 10950) | def __int__(self) -> int: ... method __le__ (line 10951) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10952) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10953) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMo... method __ne__ (line 10954) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10955) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMod... method __pos__ (line 10956) | def __pos__(self): ... method __radd__ (line 10957) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.ColorM... method __rand__ (line 10958) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.ColorM... method __rmul__ (line 10959) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.ColorM... method __ror__ (line 10960) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMo... method __rsub__ (line 10961) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.ColorM... method __rxor__ (line 10962) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.ColorM... method __sub__ (line 10963) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMo... method __xor__ (line 10964) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.ColorMo... class TypeInterpretation (line 10966) | class TypeInterpretation: method __init__ (line 10974) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10975) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInt... method __and__ (line 10976) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInt... method __bool__ (line 10977) | def __bool__(self) -> bool: ... method __eq__ (line 10978) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10979) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10980) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10981) | def __hash__(self) -> int: ... method __index__ (line 10982) | def __index__(self) -> int: ... method __int__ (line 10983) | def __int__(self) -> int: ... method __le__ (line 10984) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10985) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10986) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInt... method __ne__ (line 10987) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10988) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInte... method __pos__ (line 10989) | def __pos__(self): ... method __radd__ (line 10990) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.TypeIn... method __rand__ (line 10991) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.TypeIn... method __rmul__ (line 10992) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.TypeIn... method __ror__ (line 10993) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInt... method __rsub__ (line 10994) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.TypeIn... method __rxor__ (line 10995) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.TypeIn... method __sub__ (line 10996) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInt... method __xor__ (line 10997) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.TypeInt... class YUVLayout (line 10999) | class YUVLayout: method __init__ (line 11019) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11020) | def __add__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayo... method __and__ (line 11021) | def __and__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayo... method __bool__ (line 11022) | def __bool__(self) -> bool: ... method __eq__ (line 11023) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11024) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11025) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11026) | def __hash__(self) -> int: ... method __index__ (line 11027) | def __index__(self) -> int: ... method __int__ (line 11028) | def __int__(self) -> int: ... method __le__ (line 11029) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11030) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11031) | def __mul__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayo... method __ne__ (line 11032) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11033) | def __or__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayou... method __pos__ (line 11034) | def __pos__(self): ... method __radd__ (line 11035) | def __radd__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLay... method __rand__ (line 11036) | def __rand__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLay... method __rmul__ (line 11037) | def __rmul__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLay... method __ror__ (line 11038) | def __ror__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayo... method __rsub__ (line 11039) | def __rsub__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLay... method __rxor__ (line 11040) | def __rxor__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLay... method __sub__ (line 11041) | def __sub__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayo... method __xor__ (line 11042) | def __xor__(self, other: typing.SupportsInt) -> QPixelFormat.YUVLayo... method __init__ (line 11082) | def __init__(self, colorModel: QPixelFormat.ColorModel, firstSize: int... method __init__ (line 11084) | def __init__(self, QPixelFormat: QPixelFormat) -> None: ... method __init__ (line 11086) | def __init__(self) -> None: ... method alphaPosition (line 11087) | def alphaPosition(self) -> QPixelFormat.AlphaPosition: ... method alphaSize (line 11088) | def alphaSize(self) -> int: ... method alphaUsage (line 11089) | def alphaUsage(self) -> QPixelFormat.AlphaUsage: ... method bitsPerPixel (line 11090) | def bitsPerPixel(self) -> int: ... method blackSize (line 11091) | def blackSize(self) -> int: ... method blueSize (line 11092) | def blueSize(self) -> int: ... method brightnessSize (line 11093) | def brightnessSize(self) -> int: ... method byteOrder (line 11094) | def byteOrder(self) -> QPixelFormat.ByteOrder: ... method channelCount (line 11095) | def channelCount(self) -> int: ... method colorModel (line 11096) | def colorModel(self) -> QPixelFormat.ColorModel: ... method cyanSize (line 11097) | def cyanSize(self) -> int: ... method greenSize (line 11098) | def greenSize(self) -> int: ... method hueSize (line 11099) | def hueSize(self) -> int: ... method lightnessSize (line 11100) | def lightnessSize(self) -> int: ... method magentaSize (line 11101) | def magentaSize(self) -> int: ... method premultiplied (line 11102) | def premultiplied(self) -> QPixelFormat.AlphaPremultiplied: ... method redSize (line 11103) | def redSize(self) -> int: ... method saturationSize (line 11104) | def saturationSize(self) -> int: ... method subEnum (line 11105) | def subEnum(self) -> int: ... method typeInterpretation (line 11106) | def typeInterpretation(self) -> QPixelFormat.TypeInterpretation: ... method yellowSize (line 11107) | def yellowSize(self) -> int: ... method yuvLayout (line 11108) | def yuvLayout(self) -> QPixelFormat.YUVLayout: ... method __copy__ (line 11109) | def __copy__(self) -> None: ... class QPixmap (line 11111) | class QPixmap(QPaintDevice): method __init__ (line 11113) | def __init__(self, fileName: str, format: bytes | None = ..., flags: P... method __init__ (line 11115) | def __init__(self, w: int, h: int) -> None: ... method __init__ (line 11117) | def __init__(self, xpm: typing.Iterable[str]) -> None: ... method __init__ (line 11119) | def __init__(self, image: QImage) -> None: ... method __init__ (line 11121) | def __init__(self, arg__1: PySide2.QtCore.QSize) -> None: ... method __init__ (line 11123) | def __init__(self, arg__1: QPixmap) -> None: ... method __init__ (line 11125) | def __init__(self) -> None: ... method cacheKey (line 11126) | def cacheKey(self) -> int: ... method convertFromImage (line 11127) | def convertFromImage(self, img: QImage, flags: PySide2.QtCore.Qt.Image... method copy (line 11129) | def copy(self, x: int, y: int, width: int, height: int) -> QPixmap: ... method copy (line 11131) | def copy(self, rect: PySide2.QtCore.QRect = ...) -> QPixmap: ... method createHeuristicMask (line 11132) | def createHeuristicMask(self, clipTight: bool = ...) -> QBitmap: ... method createMaskFromColor (line 11133) | def createMaskFromColor(self, maskColor: QColor | PySide2.QtCore.Qt.Gl... method defaultDepth (line 11135) | def defaultDepth() -> int: ... method depth (line 11136) | def depth(self) -> int: ... method devType (line 11137) | def devType(self) -> int: ... method devicePixelRatio (line 11138) | def devicePixelRatio(self) -> float: ... # type: ignore[override] method fill (line 11140) | def fill(self, device: QPaintDevice, xofs: int, yofs: int) -> None: ... method fill (line 11142) | def fill(self, device: QPaintDevice, ofs: PySide2.QtCore.QPoint) -> No... method fill (line 11144) | def fill(self, fillColor: QColor | PySide2.QtCore.Qt.GlobalColor | int... method fromImage (line 11146) | def fromImage(image: QImage, flags: PySide2.QtCore.Qt.ImageConversionF... method fromImageInPlace (line 11148) | def fromImageInPlace(image: QImage, flags: PySide2.QtCore.Qt.ImageConv... method fromImageReader (line 11150) | def fromImageReader(imageReader: QImageReader, flags: PySide2.QtCore.Q... method grabWidget (line 11153) | def grabWidget(widget: PySide2.QtCore.QObject, x: int = ..., y: int = ... method grabWidget (line 11156) | def grabWidget(widget: PySide2.QtCore.QObject, rect: PySide2.QtCore.QR... method grabWindow (line 11158) | def grabWindow(arg__1: int, x: int = ..., y: int = ..., w: int = ..., ... method hasAlpha (line 11159) | def hasAlpha(self) -> bool: ... method hasAlphaChannel (line 11160) | def hasAlphaChannel(self) -> bool: ... method height (line 11161) | def height(self) -> int: ... method isNull (line 11162) | def isNull(self) -> bool: ... method isQBitmap (line 11163) | def isQBitmap(self) -> bool: ... method load (line 11164) | def load(self, fileName: str, format: bytes | None = ..., flags: PySid... method loadFromData (line 11166) | def loadFromData(self, buf: bytes, len: int, format: bytes | None = ..... method loadFromData (line 11168) | def loadFromData(self, data: PySide2.QtCore.QByteArray | bytes, format... method mask (line 11169) | def mask(self) -> QBitmap: ... method metric (line 11170) | def metric(self, arg__1: QPaintDevice.PaintDeviceMetric) -> int: ... method paintEngine (line 11171) | def paintEngine(self) -> QPaintEngine: ... method rect (line 11172) | def rect(self) -> PySide2.QtCore.QRect: ... method save (line 11174) | def save(self, fileName: str, format: bytes | None = ..., quality: int... method save (line 11176) | def save(self, device: PySide2.QtCore.QIODevice, format: bytes | None ... method scaled (line 11178) | def scaled(self, w: int, h: int, aspectMode: PySide2.QtCore.Qt.AspectR... method scaled (line 11180) | def scaled(self, s: PySide2.QtCore.QSize, aspectMode: PySide2.QtCore.Q... method scaledToHeight (line 11181) | def scaledToHeight(self, h: int, mode: PySide2.QtCore.Qt.Transformatio... method scaledToWidth (line 11182) | def scaledToWidth(self, w: int, mode: PySide2.QtCore.Qt.Transformation... method scroll (line 11184) | def scroll(self, dx: int, dy: int, x: int, y: int, width: int, height:... method scroll (line 11186) | def scroll(self, dx: int, dy: int, rect: PySide2.QtCore.QRect, exposed... method setDevicePixelRatio (line 11187) | def setDevicePixelRatio(self, scaleFactor: float) -> None: ... method setMask (line 11188) | def setMask(self, arg__1: QBitmap) -> None: ... method size (line 11189) | def size(self) -> PySide2.QtCore.QSize: ... method swap (line 11190) | def swap(self, other: QPixmap) -> None: ... method toImage (line 11191) | def toImage(self) -> QImage: ... method transformed (line 11193) | def transformed(self, arg__1: QMatrix, mode: PySide2.QtCore.Qt.Transfo... method transformed (line 11195) | def transformed(self, arg__1: QTransform, mode: PySide2.QtCore.Qt.Tran... method trueMatrix (line 11198) | def trueMatrix(m: QMatrix, w: int, h: int) -> QMatrix: ... method trueMatrix (line 11201) | def trueMatrix(m: QTransform, w: int, h: int) -> QTransform: ... method width (line 11202) | def width(self) -> int: ... method __bool__ (line 11203) | def __bool__(self) -> bool: ... method __copy__ (line 11204) | def __copy__(self) -> None: ... method __lshift__ (line 11205) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rlshift__ (line 11206) | def __rlshift__(self, other): ... method __rrshift__ (line 11207) | def __rrshift__(self, other): ... method __rshift__ (line 11208) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QPixmapCache (line 11210) | class QPixmapCache(shiboken2.Object): class Key (line 11211) | class Key(shiboken2.Object): method __init__ (line 11213) | def __init__(self, other: QPixmapCache.Key) -> None: ... method __init__ (line 11215) | def __init__(self) -> None: ... method isValid (line 11216) | def isValid(self) -> bool: ... method swap (line 11217) | def swap(self, other: QPixmapCache.Key) -> None: ... method __copy__ (line 11218) | def __copy__(self) -> None: ... method __eq__ (line 11219) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11220) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11221) | def __gt__(self, other: object) -> bool: ... method __le__ (line 11222) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11223) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11224) | def __ne__(self, other: object) -> bool: ... method __init__ (line 11225) | def __init__(self) -> None: ... method cacheLimit (line 11227) | def cacheLimit() -> int: ... method clear (line 11229) | def clear() -> None: ... method find (line 11231) | def find(self) -> typing.Any: ... method insert (line 11234) | def insert(key: str, pixmap: QPixmap) -> bool: ... method insert (line 11237) | def insert(pixmap: QPixmap) -> QPixmapCache.Key: ... method remove (line 11240) | def remove(key: QPixmapCache.Key) -> None: ... method remove (line 11243) | def remove(key: str) -> None: ... method replace (line 11245) | def replace(key: QPixmapCache.Key, pixmap: QPixmap) -> bool: ... method setCacheLimit (line 11247) | def setCacheLimit(arg__1: int) -> None: ... class QPointingDeviceUniqueId (line 11249) | class QPointingDeviceUniqueId(shiboken2.Object): method __init__ (line 11251) | def __init__(self, QPointingDeviceUniqueId: QPointingDeviceUniqueId) -... method __init__ (line 11253) | def __init__(self) -> None: ... method fromNumericId (line 11255) | def fromNumericId(id: int) -> QPointingDeviceUniqueId: ... method isValid (line 11256) | def isValid(self) -> bool: ... method numericId (line 11257) | def numericId(self) -> int: ... method __copy__ (line 11258) | def __copy__(self) -> None: ... method __eq__ (line 11259) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11260) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11261) | def __gt__(self, other: object) -> bool: ... method __le__ (line 11262) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11263) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11264) | def __ne__(self, other: object) -> bool: ... class QPolygon (line 11266) | class QPolygon(shiboken2.Object): method __init__ (line 11268) | def __init__(self, r: PySide2.QtCore.QRect, closed: bool = ...) -> Non... method __init__ (line 11270) | def __init__(self, v: list[PySide2.QtCore.QPoint]) -> None: ... method __init__ (line 11272) | def __init__(self, size: int) -> None: ... method __init__ (line 11274) | def __init__(self, other: QPolygon) -> None: ... method __init__ (line 11276) | def __init__(self) -> None: ... method append (line 11278) | def append(self, t: PySide2.QtCore.QPoint) -> None: ... method append (line 11280) | def append(self, l: list[PySide2.QtCore.QPoint]) -> None: ... method at (line 11281) | def at(self, i: int) -> PySide2.QtCore.QPoint: ... method back (line 11282) | def back(self) -> PySide2.QtCore.QPoint: ... method boundingRect (line 11283) | def boundingRect(self) -> PySide2.QtCore.QRect: ... method capacity (line 11284) | def capacity(self) -> int: ... method clear (line 11285) | def clear(self) -> None: ... method constData (line 11286) | def constData(self) -> PySide2.QtCore.QPoint: ... method constFirst (line 11287) | def constFirst(self) -> PySide2.QtCore.QPoint: ... method constLast (line 11288) | def constLast(self) -> PySide2.QtCore.QPoint: ... method contains (line 11289) | def contains(self, t: PySide2.QtCore.QPoint) -> bool: ... method containsPoint (line 11290) | def containsPoint(self, pt: PySide2.QtCore.QPoint, fillRule: PySide2.Q... method count (line 11292) | def count(self, t: PySide2.QtCore.QPoint) -> int: ... method count (line 11294) | def count(self) -> int: ... method data (line 11295) | def data(self) -> PySide2.QtCore.QPoint: ... method empty (line 11296) | def empty(self) -> bool: ... method endsWith (line 11297) | def endsWith(self, t: PySide2.QtCore.QPoint) -> bool: ... method fill (line 11298) | def fill(self, t: PySide2.QtCore.QPoint, size: int = ...) -> list[PySi... method first (line 11299) | def first(self) -> PySide2.QtCore.QPoint: ... method fromList (line 11301) | def fromList(list: typing.Iterable[PySide2.QtCore.QPoint]) -> list[PyS... method front (line 11302) | def front(self) -> PySide2.QtCore.QPoint: ... method indexOf (line 11303) | def indexOf(self, t: PySide2.QtCore.QPoint, from_: int = ...) -> int: ... method insert (line 11305) | def insert(self, i: int, n: int, t: PySide2.QtCore.QPoint) -> None: ... method insert (line 11307) | def insert(self, i: int, t: PySide2.QtCore.QPoint) -> None: ... method intersected (line 11308) | def intersected(self, r: QPolygon) -> QPolygon: ... method intersects (line 11309) | def intersects(self, r: QPolygon) -> bool: ... method isEmpty (line 11310) | def isEmpty(self) -> bool: ... method isSharedWith (line 11311) | def isSharedWith(self, other: list[PySide2.QtCore.QPoint]) -> bool: ... method last (line 11312) | def last(self) -> PySide2.QtCore.QPoint: ... method lastIndexOf (line 11313) | def lastIndexOf(self, t: PySide2.QtCore.QPoint, from_: int = ...) -> i... method length (line 11314) | def length(self) -> int: ... method mid (line 11315) | def mid(self, pos: int, len: int = ...) -> list[PySide2.QtCore.QPoint]... method move (line 11316) | def move(self, from_: int, to: int) -> None: ... method pop_back (line 11317) | def pop_back(self) -> None: ... method pop_front (line 11318) | def pop_front(self) -> None: ... method prepend (line 11319) | def prepend(self, t: PySide2.QtCore.QPoint) -> None: ... method push_back (line 11320) | def push_back(self, t: PySide2.QtCore.QPoint) -> None: ... method push_front (line 11321) | def push_front(self, t: PySide2.QtCore.QPoint) -> None: ... method remove (line 11323) | def remove(self, i: int, n: int) -> None: ... method remove (line 11325) | def remove(self, i: int) -> None: ... method removeAll (line 11326) | def removeAll(self, t: PySide2.QtCore.QPoint) -> int: ... method removeAt (line 11327) | def removeAt(self, i: int) -> None: ... method removeFirst (line 11328) | def removeFirst(self) -> None: ... method removeLast (line 11329) | def removeLast(self) -> None: ... method removeOne (line 11330) | def removeOne(self, t: PySide2.QtCore.QPoint) -> bool: ... method replace (line 11331) | def replace(self, i: int, t: PySide2.QtCore.QPoint) -> None: ... method reserve (line 11332) | def reserve(self, size: int) -> None: ... method resize (line 11333) | def resize(self, size: int) -> None: ... method setSharable (line 11334) | def setSharable(self, sharable: bool) -> None: ... method shrink_to_fit (line 11335) | def shrink_to_fit(self) -> None: ... method size (line 11336) | def size(self) -> int: ... method squeeze (line 11337) | def squeeze(self) -> None: ... method startsWith (line 11338) | def startsWith(self, t: PySide2.QtCore.QPoint) -> bool: ... method subtracted (line 11339) | def subtracted(self, r: QPolygon) -> QPolygon: ... method swap (line 11340) | def swap(self, other: QPolygon) -> None: ... method swapItemsAt (line 11341) | def swapItemsAt(self, i: int, j: int) -> None: ... method takeAt (line 11342) | def takeAt(self, i: int) -> PySide2.QtCore.QPoint: ... method takeFirst (line 11343) | def takeFirst(self) -> PySide2.QtCore.QPoint: ... method takeLast (line 11344) | def takeLast(self) -> PySide2.QtCore.QPoint: ... method toList (line 11345) | def toList(self) -> list[PySide2.QtCore.QPoint]: ... method translate (line 11347) | def translate(self, dx: int, dy: int) -> None: ... method translate (line 11349) | def translate(self, offset: PySide2.QtCore.QPoint) -> None: ... method translated (line 11351) | def translated(self, dx: int, dy: int) -> QPolygon: ... method translated (line 11353) | def translated(self, offset: PySide2.QtCore.QPoint) -> QPolygon: ... method united (line 11354) | def united(self, r: QPolygon) -> QPolygon: ... method value (line 11356) | def value(self, i: int, defaultValue: PySide2.QtCore.QPoint) -> PySide... method value (line 11358) | def value(self, i: int) -> PySide2.QtCore.QPoint: ... method __add__ (line 11359) | def __add__(self, l: list[PySide2.QtCore.QPoint]) -> list[PySide2.QtCo... method __copy__ (line 11360) | def __copy__(self) -> None: ... method __delitem__ (line 11361) | def __delitem__(self, other) -> None: ... method __eq__ (line 11362) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11363) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 11364) | def __getitem__(self, index): ... method __gt__ (line 11365) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 11366) | def __iadd__(self, t: PySide2.QtCore.QPoint) -> QPolygon: ... # type:... method __le__ (line 11367) | def __le__(self, other: object) -> bool: ... method __len__ (line 11368) | def __len__(self) -> int: ... method __lshift__ (line 11370) | def __lshift__(self, t: PySide2.QtCore.QPoint) -> QPolygon: ... method __lshift__ (line 11372) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lshift__ (line 11374) | def __lshift__(self, l: list[PySide2.QtCore.QPoint]) -> QPolygon: ... method __lt__ (line 11375) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11377) | def __mul__(self, m: QMatrix) -> QPolygon: ... method __mul__ (line 11379) | def __mul__(self, m: QTransform) -> QPolygon: ... method __ne__ (line 11380) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 11381) | def __radd__(self, other): ... method __rlshift__ (line 11382) | def __rlshift__(self, other): ... method __rmul__ (line 11383) | def __rmul__(self, other): ... method __rrshift__ (line 11384) | def __rrshift__(self, other): ... method __rshift__ (line 11385) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __setitem__ (line 11386) | def __setitem__(self, index, object) -> None: ... class QPolygonF (line 11388) | class QPolygonF(shiboken2.Object): method __init__ (line 11390) | def __init__(self, v: list[PySide2.QtCore.QPointF]) -> None: ... method __init__ (line 11392) | def __init__(self, size: int) -> None: ... method __init__ (line 11394) | def __init__(self, r: PySide2.QtCore.QRectF) -> None: ... method __init__ (line 11396) | def __init__(self, a: QPolygon) -> None: ... method __init__ (line 11398) | def __init__(self, a: QPolygonF) -> None: ... method __init__ (line 11400) | def __init__(self) -> None: ... method append (line 11402) | def append(self, t: PySide2.QtCore.QPointF) -> None: ... method append (line 11404) | def append(self, l: list[PySide2.QtCore.QPointF]) -> None: ... method at (line 11405) | def at(self, i: int) -> PySide2.QtCore.QPointF: ... method back (line 11406) | def back(self) -> PySide2.QtCore.QPointF: ... method boundingRect (line 11407) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method capacity (line 11408) | def capacity(self) -> int: ... method clear (line 11409) | def clear(self) -> None: ... method constData (line 11410) | def constData(self) -> PySide2.QtCore.QPointF: ... method constFirst (line 11411) | def constFirst(self) -> PySide2.QtCore.QPointF: ... method constLast (line 11412) | def constLast(self) -> PySide2.QtCore.QPointF: ... method contains (line 11413) | def contains(self, t: PySide2.QtCore.QPointF) -> bool: ... method containsPoint (line 11414) | def containsPoint(self, pt: PySide2.QtCore.QPointF, fillRule: PySide2.... method count (line 11416) | def count(self, t: PySide2.QtCore.QPointF) -> int: ... method count (line 11418) | def count(self) -> int: ... method data (line 11419) | def data(self) -> PySide2.QtCore.QPointF: ... method empty (line 11420) | def empty(self) -> bool: ... method endsWith (line 11421) | def endsWith(self, t: PySide2.QtCore.QPointF) -> bool: ... method fill (line 11422) | def fill(self, t: PySide2.QtCore.QPointF, size: int = ...) -> list[PyS... method first (line 11423) | def first(self) -> PySide2.QtCore.QPointF: ... method fromList (line 11425) | def fromList(list: typing.Iterable[PySide2.QtCore.QPointF]) -> list[Py... method front (line 11426) | def front(self) -> PySide2.QtCore.QPointF: ... method indexOf (line 11427) | def indexOf(self, t: PySide2.QtCore.QPointF, from_: int = ...) -> int:... method insert (line 11429) | def insert(self, i: int, n: int, t: PySide2.QtCore.QPointF) -> None: ... method insert (line 11431) | def insert(self, i: int, t: PySide2.QtCore.QPointF) -> None: ... method intersected (line 11432) | def intersected(self, r: QPolygonF) -> QPolygonF: ... method intersects (line 11433) | def intersects(self, r: QPolygonF) -> bool: ... method isClosed (line 11434) | def isClosed(self) -> bool: ... method isEmpty (line 11435) | def isEmpty(self) -> bool: ... method isSharedWith (line 11436) | def isSharedWith(self, other: list[PySide2.QtCore.QPointF]) -> bool: ... method last (line 11437) | def last(self) -> PySide2.QtCore.QPointF: ... method lastIndexOf (line 11438) | def lastIndexOf(self, t: PySide2.QtCore.QPointF, from_: int = ...) -> ... method length (line 11439) | def length(self) -> int: ... method mid (line 11440) | def mid(self, pos: int, len: int = ...) -> list[PySide2.QtCore.QPointF... method move (line 11441) | def move(self, from_: int, to: int) -> None: ... method pop_back (line 11442) | def pop_back(self) -> None: ... method pop_front (line 11443) | def pop_front(self) -> None: ... method prepend (line 11444) | def prepend(self, t: PySide2.QtCore.QPointF) -> None: ... method push_back (line 11445) | def push_back(self, t: PySide2.QtCore.QPointF) -> None: ... method push_front (line 11446) | def push_front(self, t: PySide2.QtCore.QPointF) -> None: ... method remove (line 11448) | def remove(self, i: int, n: int) -> None: ... method remove (line 11450) | def remove(self, i: int) -> None: ... method removeAll (line 11451) | def removeAll(self, t: PySide2.QtCore.QPointF) -> int: ... method removeAt (line 11452) | def removeAt(self, i: int) -> None: ... method removeFirst (line 11453) | def removeFirst(self) -> None: ... method removeLast (line 11454) | def removeLast(self) -> None: ... method removeOne (line 11455) | def removeOne(self, t: PySide2.QtCore.QPointF) -> bool: ... method replace (line 11456) | def replace(self, i: int, t: PySide2.QtCore.QPointF) -> None: ... method reserve (line 11457) | def reserve(self, size: int) -> None: ... method resize (line 11458) | def resize(self, size: int) -> None: ... method setSharable (line 11459) | def setSharable(self, sharable: bool) -> None: ... method shrink_to_fit (line 11460) | def shrink_to_fit(self) -> None: ... method size (line 11461) | def size(self) -> int: ... method squeeze (line 11462) | def squeeze(self) -> None: ... method startsWith (line 11463) | def startsWith(self, t: PySide2.QtCore.QPointF) -> bool: ... method subtracted (line 11464) | def subtracted(self, r: QPolygonF) -> QPolygonF: ... method swap (line 11465) | def swap(self, other: QPolygonF) -> None: ... method swapItemsAt (line 11466) | def swapItemsAt(self, i: int, j: int) -> None: ... method takeAt (line 11467) | def takeAt(self, i: int) -> PySide2.QtCore.QPointF: ... method takeFirst (line 11468) | def takeFirst(self) -> PySide2.QtCore.QPointF: ... method takeLast (line 11469) | def takeLast(self) -> PySide2.QtCore.QPointF: ... method toList (line 11470) | def toList(self) -> list[PySide2.QtCore.QPointF]: ... method toPolygon (line 11471) | def toPolygon(self) -> QPolygon: ... method translate (line 11473) | def translate(self, dx: float, dy: float) -> None: ... method translate (line 11475) | def translate(self, offset: PySide2.QtCore.QPointF) -> None: ... method translated (line 11477) | def translated(self, dx: float, dy: float) -> QPolygonF: ... method translated (line 11479) | def translated(self, offset: PySide2.QtCore.QPointF) -> QPolygonF: ... method united (line 11480) | def united(self, r: QPolygonF) -> QPolygonF: ... method value (line 11482) | def value(self, i: int, defaultValue: PySide2.QtCore.QPointF) -> PySid... method value (line 11484) | def value(self, i: int) -> PySide2.QtCore.QPointF: ... method __add__ (line 11485) | def __add__(self, l: list[PySide2.QtCore.QPointF]) -> list[PySide2.QtC... method __copy__ (line 11486) | def __copy__(self) -> None: ... method __delitem__ (line 11487) | def __delitem__(self, other) -> None: ... method __eq__ (line 11488) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11489) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 11490) | def __getitem__(self, index): ... method __gt__ (line 11491) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 11492) | def __iadd__(self, t: PySide2.QtCore.QPointF) -> list[PySide2.QtCore.Q... method __le__ (line 11493) | def __le__(self, other: object) -> bool: ... method __len__ (line 11494) | def __len__(self) -> int: ... method __lshift__ (line 11495) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 11496) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11498) | def __mul__(self, m: QMatrix) -> QPolygonF: ... method __mul__ (line 11500) | def __mul__(self, m: QTransform) -> QPolygonF: ... method __ne__ (line 11501) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 11502) | def __radd__(self, other): ... method __rlshift__ (line 11503) | def __rlshift__(self, other): ... method __rmul__ (line 11504) | def __rmul__(self, other): ... method __rrshift__ (line 11505) | def __rrshift__(self, other): ... method __rshift__ (line 11506) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __setitem__ (line 11507) | def __setitem__(self, index, object) -> None: ... class QPyTextObject (line 11509) | class QPyTextObject(PySide2.QtCore.QObject, QTextObjectInterface): method __init__ (line 11511) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method drawObject (line 11512) | def drawObject(self, painter: QPainter, rect: PySide2.QtCore.QRectF, d... method intrinsicSize (line 11513) | def intrinsicSize(self, doc: QTextDocument, posInDocument: int, format... class QQuaternion (line 11515) | class QQuaternion(shiboken2.Object): method __init__ (line 11517) | def __init__(self, scalar: float, xpos: float, ypos: float, zpos: floa... method __init__ (line 11519) | def __init__(self, scalar: float, vector: QVector3D) -> None: ... method __init__ (line 11521) | def __init__(self, vector: QVector4D) -> None: ... method __init__ (line 11523) | def __init__(self) -> None: ... method conjugate (line 11524) | def conjugate(self) -> QQuaternion: ... method conjugated (line 11525) | def conjugated(self) -> QQuaternion: ... method dotProduct (line 11527) | def dotProduct(q1: QQuaternion, q2: QQuaternion) -> float: ... method fromAxes (line 11529) | def fromAxes(xAxis: QVector3D, yAxis: QVector3D, zAxis: QVector3D) -> ... method fromAxisAndAngle (line 11532) | def fromAxisAndAngle(x: float, y: float, z: float, angle: float) -> QQ... method fromAxisAndAngle (line 11535) | def fromAxisAndAngle(axis: QVector3D, angle: float) -> QQuaternion: ... method fromDirection (line 11537) | def fromDirection(direction: QVector3D, up: QVector3D) -> QQuaternion:... method fromEulerAngles (line 11540) | def fromEulerAngles(pitch: float, yaw: float, roll: float) -> QQuatern... method fromEulerAngles (line 11543) | def fromEulerAngles(eulerAngles: QVector3D) -> QQuaternion: ... method fromRotationMatrix (line 11545) | def fromRotationMatrix(rot3x3: QMatrix3x3) -> QQuaternion: ... method getAxes (line 11546) | def getAxes(self, xAxis: QVector3D, yAxis: QVector3D, zAxis: QVector3D... method inverted (line 11547) | def inverted(self) -> QQuaternion: ... method isIdentity (line 11548) | def isIdentity(self) -> bool: ... method isNull (line 11549) | def isNull(self) -> bool: ... method length (line 11550) | def length(self) -> float: ... method lengthSquared (line 11551) | def lengthSquared(self) -> float: ... method nlerp (line 11553) | def nlerp(q1: QQuaternion, q2: QQuaternion, t: float) -> QQuaternion: ... method normalize (line 11554) | def normalize(self) -> None: ... method normalized (line 11555) | def normalized(self) -> QQuaternion: ... method rotatedVector (line 11556) | def rotatedVector(self, vector: QVector3D) -> QVector3D: ... method rotationTo (line 11558) | def rotationTo(from_: QVector3D, to: QVector3D) -> QQuaternion: ... method scalar (line 11559) | def scalar(self) -> float: ... method setScalar (line 11560) | def setScalar(self, scalar: float) -> None: ... method setVector (line 11562) | def setVector(self, x: float, y: float, z: float) -> None: ... method setVector (line 11564) | def setVector(self, vector: QVector3D) -> None: ... method setX (line 11565) | def setX(self, x: float) -> None: ... method setY (line 11566) | def setY(self, y: float) -> None: ... method setZ (line 11567) | def setZ(self, z: float) -> None: ... method slerp (line 11569) | def slerp(q1: QQuaternion, q2: QQuaternion, t: float) -> QQuaternion: ... method toEulerAngles (line 11570) | def toEulerAngles(self) -> QVector3D: ... method toRotationMatrix (line 11571) | def toRotationMatrix(self) -> QMatrix3x3: ... method toVector4D (line 11572) | def toVector4D(self) -> QVector4D: ... method vector (line 11573) | def vector(self) -> QVector3D: ... method x (line 11574) | def x(self) -> float: ... method y (line 11575) | def y(self) -> float: ... method z (line 11576) | def z(self) -> float: ... method __add__ (line 11577) | def __add__(self, q2: QQuaternion) -> QQuaternion: ... method __bool__ (line 11578) | def __bool__(self) -> bool: ... method __copy__ (line 11579) | def __copy__(self) -> None: ... method __eq__ (line 11580) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11581) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11582) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 11583) | def __iadd__(self, quaternion: QQuaternion) -> QQuaternion: ... method __imul__ (line 11585) | def __imul__(self, quaternion: QQuaternion) -> QQuaternion: ... method __imul__ (line 11587) | def __imul__(self, factor: float) -> QQuaternion: ... method __isub__ (line 11588) | def __isub__(self, quaternion: QQuaternion) -> QQuaternion: ... method __le__ (line 11589) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 11590) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 11591) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11593) | def __mul__(self, q2: QQuaternion) -> QQuaternion: ... method __mul__ (line 11595) | def __mul__(self, factor: float) -> QQuaternion: ... method __ne__ (line 11596) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 11597) | def __neg__(self) -> QQuaternion: ... method __radd__ (line 11598) | def __radd__(self, other): ... method __rlshift__ (line 11599) | def __rlshift__(self, other): ... method __rmul__ (line 11600) | def __rmul__(self, other): ... method __rrshift__ (line 11601) | def __rrshift__(self, other): ... method __rshift__ (line 11602) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 11603) | def __rsub__(self, other): ... method __rtruediv__ (line 11604) | def __rtruediv__(self, other): ... method __sub__ (line 11605) | def __sub__(self, q2: QQuaternion) -> QQuaternion: ... method __truediv__ (line 11606) | def __truediv__(self, other): ... class QRadialGradient (line 11608) | class QRadialGradient(QGradient): method __init__ (line 11610) | def __init__(self, cx: float, cy: float, centerRadius: float, fx: floa... method __init__ (line 11612) | def __init__(self, cx: float, cy: float, radius: float, fx: float, fy:... method __init__ (line 11614) | def __init__(self, center: PySide2.QtCore.QPointF, centerRadius: float... method __init__ (line 11616) | def __init__(self, cx: float, cy: float, radius: float) -> None: ... method __init__ (line 11618) | def __init__(self, center: PySide2.QtCore.QPointF, radius: float, foca... method __init__ (line 11620) | def __init__(self, center: PySide2.QtCore.QPointF, radius: float) -> N... method __init__ (line 11622) | def __init__(self, QRadialGradient: QRadialGradient) -> None: ... method __init__ (line 11624) | def __init__(self) -> None: ... method center (line 11625) | def center(self) -> PySide2.QtCore.QPointF: ... method centerRadius (line 11626) | def centerRadius(self) -> float: ... method focalPoint (line 11627) | def focalPoint(self) -> PySide2.QtCore.QPointF: ... method focalRadius (line 11628) | def focalRadius(self) -> float: ... method radius (line 11629) | def radius(self) -> float: ... method setCenter (line 11631) | def setCenter(self, x: float, y: float) -> None: ... method setCenter (line 11633) | def setCenter(self, center: PySide2.QtCore.QPointF) -> None: ... method setCenterRadius (line 11634) | def setCenterRadius(self, radius: float) -> None: ... method setFocalPoint (line 11636) | def setFocalPoint(self, x: float, y: float) -> None: ... method setFocalPoint (line 11638) | def setFocalPoint(self, focalPoint: PySide2.QtCore.QPointF) -> None: ... method setFocalRadius (line 11639) | def setFocalRadius(self, radius: float) -> None: ... method setRadius (line 11640) | def setRadius(self, radius: float) -> None: ... method __copy__ (line 11641) | def __copy__(self) -> None: ... class QRasterWindow (line 11643) | class QRasterWindow(QPaintDeviceWindow): method __init__ (line 11645) | def __init__(self, parent: QWindow | None = ..., active: bool = ..., a... method metric (line 11646) | def metric(self, metric: QPaintDevice.PaintDeviceMetric) -> int: ... method redirected (line 11647) | def redirected(self, arg__1: PySide2.QtCore.QPoint) -> QPaintDevice: ... class QRawFont (line 11649) | class QRawFont(shiboken2.Object): class AntialiasingType (line 11650) | class AntialiasingType: method __init__ (line 11656) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11657) | def __add__(self, other: typing.SupportsInt) -> QRawFont.Antialiasin... method __and__ (line 11658) | def __and__(self, other: typing.SupportsInt) -> QRawFont.Antialiasin... method __bool__ (line 11659) | def __bool__(self) -> bool: ... method __eq__ (line 11660) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11661) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11662) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11663) | def __hash__(self) -> int: ... method __index__ (line 11664) | def __index__(self) -> int: ... method __int__ (line 11665) | def __int__(self) -> int: ... method __le__ (line 11666) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11667) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11668) | def __mul__(self, other: typing.SupportsInt) -> QRawFont.Antialiasin... method __ne__ (line 11669) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11670) | def __or__(self, other: typing.SupportsInt) -> QRawFont.Antialiasing... method __pos__ (line 11671) | def __pos__(self): ... method __radd__ (line 11672) | def __radd__(self, other: typing.SupportsInt) -> QRawFont.Antialiasi... method __rand__ (line 11673) | def __rand__(self, other: typing.SupportsInt) -> QRawFont.Antialiasi... method __rmul__ (line 11674) | def __rmul__(self, other: typing.SupportsInt) -> QRawFont.Antialiasi... method __ror__ (line 11675) | def __ror__(self, other: typing.SupportsInt) -> QRawFont.Antialiasin... method __rsub__ (line 11676) | def __rsub__(self, other: typing.SupportsInt) -> QRawFont.Antialiasi... method __rxor__ (line 11677) | def __rxor__(self, other: typing.SupportsInt) -> QRawFont.Antialiasi... method __sub__ (line 11678) | def __sub__(self, other: typing.SupportsInt) -> QRawFont.Antialiasin... method __xor__ (line 11679) | def __xor__(self, other: typing.SupportsInt) -> QRawFont.Antialiasin... class LayoutFlag (line 11681) | class LayoutFlag: method __init__ (line 11688) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11689) | def __and__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags... method __bool__ (line 11690) | def __bool__(self) -> bool: ... method __eq__ (line 11691) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11692) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11693) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11694) | def __hash__(self) -> int: ... method __index__ (line 11695) | def __index__(self) -> int: ... method __int__ (line 11696) | def __int__(self) -> int: ... method __invert__ (line 11697) | def __invert__(self) -> QRawFont.LayoutFlags: ... method __le__ (line 11698) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11699) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11700) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11701) | def __or__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags:... method __rand__ (line 11702) | def __rand__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlag... method __ror__ (line 11703) | def __ror__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags... method __rxor__ (line 11704) | def __rxor__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlag... method __xor__ (line 11705) | def __xor__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags... class LayoutFlags (line 11707) | class LayoutFlags: method __init__ (line 11709) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11710) | def __and__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags... method __bool__ (line 11711) | def __bool__(self) -> bool: ... method __eq__ (line 11712) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11713) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11714) | def __gt__(self, other: object) -> bool: ... method __index__ (line 11715) | def __index__(self) -> int: ... method __int__ (line 11716) | def __int__(self) -> int: ... method __invert__ (line 11717) | def __invert__(self) -> QRawFont.LayoutFlags: ... method __le__ (line 11718) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11719) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11720) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11721) | def __or__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags:... method __rand__ (line 11722) | def __rand__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlag... method __ror__ (line 11723) | def __ror__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags... method __rxor__ (line 11724) | def __rxor__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlag... method __xor__ (line 11725) | def __xor__(self, other: typing.SupportsInt) -> QRawFont.LayoutFlags... method __init__ (line 11732) | def __init__(self, fontData: PySide2.QtCore.QByteArray | bytes, pixelS... method __init__ (line 11734) | def __init__(self, fileName: str, pixelSize: float, hintingPreference:... method __init__ (line 11736) | def __init__(self, other: QRawFont) -> None: ... method __init__ (line 11738) | def __init__(self) -> None: ... method advancesForGlyphIndexes (line 11740) | def advancesForGlyphIndexes(self, glyphIndexes: list[int], layoutFlags... method advancesForGlyphIndexes (line 11742) | def advancesForGlyphIndexes(self, glyphIndexes: list[int]) -> list[PyS... method alphaMapForGlyph (line 11743) | def alphaMapForGlyph(self, glyphIndex: int, antialiasingType: QRawFont... method ascent (line 11744) | def ascent(self) -> float: ... method averageCharWidth (line 11745) | def averageCharWidth(self) -> float: ... method boundingRect (line 11746) | def boundingRect(self, glyphIndex: int) -> PySide2.QtCore.QRectF: ... method capHeight (line 11747) | def capHeight(self) -> float: ... method descent (line 11748) | def descent(self) -> float: ... method familyName (line 11749) | def familyName(self) -> str: ... method fontTable (line 11750) | def fontTable(self, tagName: bytes) -> PySide2.QtCore.QByteArray: ... method fromFont (line 11752) | def fromFont(font: QFont, writingSystem: QFontDatabase.WritingSystem =... method glyphIndexesForString (line 11753) | def glyphIndexesForString(self, text: str) -> list[int]: ... method hintingPreference (line 11754) | def hintingPreference(self) -> QFont.HintingPreference: ... method isValid (line 11755) | def isValid(self) -> bool: ... method leading (line 11756) | def leading(self) -> float: ... method lineThickness (line 11757) | def lineThickness(self) -> float: ... method loadFromData (line 11758) | def loadFromData(self, fontData: PySide2.QtCore.QByteArray | bytes, pi... method loadFromFile (line 11759) | def loadFromFile(self, fileName: str, pixelSize: float, hintingPrefere... method maxCharWidth (line 11760) | def maxCharWidth(self) -> float: ... method pathForGlyph (line 11761) | def pathForGlyph(self, glyphIndex: int) -> QPainterPath: ... method pixelSize (line 11762) | def pixelSize(self) -> float: ... method setPixelSize (line 11763) | def setPixelSize(self, pixelSize: float) -> None: ... method style (line 11764) | def style(self) -> QFont.Style: ... method styleName (line 11765) | def styleName(self) -> str: ... method supportedWritingSystems (line 11766) | def supportedWritingSystems(self) -> list[QFontDatabase.WritingSystem]... method supportsCharacter (line 11768) | def supportsCharacter(self, ucs4: int) -> bool: ... method supportsCharacter (line 11770) | def supportsCharacter(self, character: str) -> bool: ... method swap (line 11771) | def swap(self, other: QRawFont) -> None: ... method underlinePosition (line 11772) | def underlinePosition(self) -> float: ... method unitsPerEm (line 11773) | def unitsPerEm(self) -> float: ... method weight (line 11774) | def weight(self) -> int: ... method xHeight (line 11775) | def xHeight(self) -> float: ... method __copy__ (line 11776) | def __copy__(self) -> None: ... method __eq__ (line 11777) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11778) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11779) | def __gt__(self, other: object) -> bool: ... method __le__ (line 11780) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11781) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11782) | def __ne__(self, other: object) -> bool: ... class QRegExpValidator (line 11784) | class QRegExpValidator(QValidator): method __init__ (line 11788) | def __init__(self, rx: PySide2.QtCore.QRegExp, parent: PySide2.QtCore.... method __init__ (line 11790) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., change... method regExp (line 11791) | def regExp(self) -> PySide2.QtCore.QRegExp: ... method setRegExp (line 11792) | def setRegExp(self, rx: PySide2.QtCore.QRegExp) -> None: ... method validate (line 11793) | def validate(self, input: str, pos: int) -> QValidator.State: ... class QRegion (line 11795) | class QRegion(shiboken2.Object): class RegionType (line 11796) | class RegionType: method __init__ (line 11802) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11803) | def __add__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __and__ (line 11804) | def __and__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __bool__ (line 11805) | def __bool__(self) -> bool: ... method __eq__ (line 11806) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11807) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11808) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11809) | def __hash__(self) -> int: ... method __index__ (line 11810) | def __index__(self) -> int: ... method __int__ (line 11811) | def __int__(self) -> int: ... method __le__ (line 11812) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11813) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11814) | def __mul__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __ne__ (line 11815) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11816) | def __or__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __pos__ (line 11817) | def __pos__(self): ... method __radd__ (line 11818) | def __radd__(self, other: typing.SupportsInt) -> QRegion.RegionType:... method __rand__ (line 11819) | def __rand__(self, other: typing.SupportsInt) -> QRegion.RegionType:... method __rmul__ (line 11820) | def __rmul__(self, other: typing.SupportsInt) -> QRegion.RegionType:... method __ror__ (line 11821) | def __ror__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __rsub__ (line 11822) | def __rsub__(self, other: typing.SupportsInt) -> QRegion.RegionType:... method __rxor__ (line 11823) | def __rxor__(self, other: typing.SupportsInt) -> QRegion.RegionType:... method __sub__ (line 11824) | def __sub__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __xor__ (line 11825) | def __xor__(self, other: typing.SupportsInt) -> QRegion.RegionType: ... method __init__ (line 11829) | def __init__(self, x: int, y: int, w: int, h: int, t: QRegion.RegionTy... method __init__ (line 11831) | def __init__(self, r: PySide2.QtCore.QRect, t: QRegion.RegionType = ..... method __init__ (line 11833) | def __init__(self, pa: QPolygon, fillRule: PySide2.QtCore.Qt.FillRule ... method __init__ (line 11835) | def __init__(self, region: QRegion) -> None: ... method __init__ (line 11837) | def __init__(self, bitmap: QBitmap) -> None: ... method __init__ (line 11839) | def __init__(self) -> None: ... method begin (line 11840) | def begin(self) -> PySide2.QtCore.QRect: ... method boundingRect (line 11841) | def boundingRect(self) -> PySide2.QtCore.QRect: ... method cbegin (line 11842) | def cbegin(self) -> PySide2.QtCore.QRect: ... method cend (line 11843) | def cend(self) -> PySide2.QtCore.QRect: ... method contains (line 11845) | def contains(self, r: PySide2.QtCore.QRect) -> bool: ... method contains (line 11847) | def contains(self, p: PySide2.QtCore.QPoint) -> bool: ... method end (line 11848) | def end(self) -> PySide2.QtCore.QRect: ... method intersected (line 11850) | def intersected(self, r: PySide2.QtCore.QRect) -> QRegion: ... method intersected (line 11852) | def intersected(self, r: QRegion) -> QRegion: ... method intersects (line 11854) | def intersects(self, r: PySide2.QtCore.QRect) -> bool: ... method intersects (line 11856) | def intersects(self, r: QRegion) -> bool: ... method isEmpty (line 11857) | def isEmpty(self) -> bool: ... method isNull (line 11858) | def isNull(self) -> bool: ... method rectCount (line 11859) | def rectCount(self) -> int: ... method rects (line 11860) | def rects(self) -> list[PySide2.QtCore.QRect]: ... method setRects (line 11861) | def setRects(self, rect: PySide2.QtCore.QRect, num: int) -> None: ... method subtracted (line 11862) | def subtracted(self, r: QRegion) -> QRegion: ... method swap (line 11863) | def swap(self, other: QRegion) -> None: ... method translate (line 11865) | def translate(self, dx: int, dy: int) -> None: ... method translate (line 11867) | def translate(self, p: PySide2.QtCore.QPoint) -> None: ... method translated (line 11869) | def translated(self, dx: int, dy: int) -> QRegion: ... method translated (line 11871) | def translated(self, p: PySide2.QtCore.QPoint) -> QRegion: ... method united (line 11873) | def united(self, r: PySide2.QtCore.QRect) -> QRegion: ... method united (line 11875) | def united(self, r: QRegion) -> QRegion: ... method xored (line 11876) | def xored(self, r: QRegion) -> QRegion: ... method __add__ (line 11878) | def __add__(self, r: PySide2.QtCore.QRect) -> QRegion: ... method __add__ (line 11880) | def __add__(self, r: QRegion) -> QRegion: ... method __and__ (line 11882) | def __and__(self, r: PySide2.QtCore.QRect) -> QRegion: ... method __and__ (line 11884) | def __and__(self, r: QRegion) -> QRegion: ... method __bool__ (line 11885) | def __bool__(self) -> bool: ... method __copy__ (line 11886) | def __copy__(self) -> None: ... method __eq__ (line 11887) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11888) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11889) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 11891) | def __iadd__(self, r: PySide2.QtCore.QRect) -> QRegion: ... method __iadd__ (line 11893) | def __iadd__(self, r: QRegion) -> QRegion: ... method __ior__ (line 11894) | def __ior__(self, r: QRegion) -> QRegion: ... method __isub__ (line 11895) | def __isub__(self, r: QRegion) -> QRegion: ... method __ixor__ (line 11896) | def __ixor__(self, r: QRegion) -> QRegion: ... method __le__ (line 11897) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 11898) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 11899) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11901) | def __mul__(self, m: QMatrix) -> QRegion: ... method __mul__ (line 11903) | def __mul__(self, m: QTransform) -> QRegion: ... method __ne__ (line 11904) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11905) | def __or__(self, r: QRegion) -> QRegion: ... method __radd__ (line 11906) | def __radd__(self, other): ... method __rand__ (line 11907) | def __rand__(self, other): ... method __rlshift__ (line 11908) | def __rlshift__(self, other): ... method __rmul__ (line 11909) | def __rmul__(self, other): ... method __ror__ (line 11910) | def __ror__(self, other): ... method __rrshift__ (line 11911) | def __rrshift__(self, other): ... method __rshift__ (line 11912) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 11913) | def __rsub__(self, other): ... method __rxor__ (line 11914) | def __rxor__(self, other): ... method __sub__ (line 11915) | def __sub__(self, r: QRegion) -> QRegion: ... method __xor__ (line 11916) | def __xor__(self, r: QRegion) -> QRegion: ... class QRegularExpressionValidator (line 11918) | class QRegularExpressionValidator(QValidator): method __init__ (line 11922) | def __init__(self, re: PySide2.QtCore.QRegularExpression, parent: PySi... method __init__ (line 11924) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., change... method regularExpression (line 11925) | def regularExpression(self) -> PySide2.QtCore.QRegularExpression: ... method setRegularExpression (line 11926) | def setRegularExpression(self, re: PySide2.QtCore.QRegularExpression) ... method validate (line 11927) | def validate(self, input: str, pos: int) -> QValidator.State: ... class QResizeEvent (line 11929) | class QResizeEvent(PySide2.QtCore.QEvent): method __init__ (line 11930) | def __init__(self, size: PySide2.QtCore.QSize, oldSize: PySide2.QtCore... method oldSize (line 11931) | def oldSize(self) -> PySide2.QtCore.QSize: ... method size (line 11932) | def size(self) -> PySide2.QtCore.QSize: ... class QScreen (line 11934) | class QScreen(PySide2.QtCore.QObject): method __init__ (line 11946) | def __init__(cls, *args, availableGeometry: PySide2.QtCore.QRect = ...... method angleBetween (line 11947) | def angleBetween(self, a: PySide2.QtCore.Qt.ScreenOrientation, b: PySi... method availableGeometry (line 11948) | def availableGeometry(self) -> PySide2.QtCore.QRect: ... method availableSize (line 11949) | def availableSize(self) -> PySide2.QtCore.QSize: ... method availableVirtualGeometry (line 11950) | def availableVirtualGeometry(self) -> PySide2.QtCore.QRect: ... method availableVirtualSize (line 11951) | def availableVirtualSize(self) -> PySide2.QtCore.QSize: ... method depth (line 11952) | def depth(self) -> int: ... method devicePixelRatio (line 11953) | def devicePixelRatio(self) -> float: ... method geometry (line 11954) | def geometry(self) -> PySide2.QtCore.QRect: ... method grabWindow (line 11955) | def grabWindow(self, window: int, x: int = ..., y: int = ..., w: int =... method isLandscape (line 11956) | def isLandscape(self, orientation: PySide2.QtCore.Qt.ScreenOrientation... method isPortrait (line 11957) | def isPortrait(self, orientation: PySide2.QtCore.Qt.ScreenOrientation)... method logicalDotsPerInch (line 11958) | def logicalDotsPerInch(self) -> float: ... method logicalDotsPerInchX (line 11959) | def logicalDotsPerInchX(self) -> float: ... method logicalDotsPerInchY (line 11960) | def logicalDotsPerInchY(self) -> float: ... method manufacturer (line 11961) | def manufacturer(self) -> str: ... method mapBetween (line 11962) | def mapBetween(self, a: PySide2.QtCore.Qt.ScreenOrientation, b: PySide... method model (line 11963) | def model(self) -> str: ... method name (line 11964) | def name(self) -> str: ... method nativeOrientation (line 11965) | def nativeOrientation(self) -> PySide2.QtCore.Qt.ScreenOrientation: ... method orientation (line 11966) | def orientation(self) -> PySide2.QtCore.Qt.ScreenOrientation: ... method orientationUpdateMask (line 11967) | def orientationUpdateMask(self) -> PySide2.QtCore.Qt.ScreenOrientation... method physicalDotsPerInch (line 11968) | def physicalDotsPerInch(self) -> float: ... method physicalDotsPerInchX (line 11969) | def physicalDotsPerInchX(self) -> float: ... method physicalDotsPerInchY (line 11970) | def physicalDotsPerInchY(self) -> float: ... method physicalSize (line 11971) | def physicalSize(self) -> PySide2.QtCore.QSizeF: ... method primaryOrientation (line 11972) | def primaryOrientation(self) -> PySide2.QtCore.Qt.ScreenOrientation: ... method refreshRate (line 11973) | def refreshRate(self) -> float: ... method serialNumber (line 11974) | def serialNumber(self) -> str: ... method setOrientationUpdateMask (line 11975) | def setOrientationUpdateMask(self, mask: PySide2.QtCore.Qt.ScreenOrien... method size (line 11976) | def size(self) -> PySide2.QtCore.QSize: ... method transformBetween (line 11977) | def transformBetween(self, a: PySide2.QtCore.Qt.ScreenOrientation, b: ... method virtualGeometry (line 11978) | def virtualGeometry(self) -> PySide2.QtCore.QRect: ... method virtualSiblingAt (line 11979) | def virtualSiblingAt(self, point: PySide2.QtCore.QPoint) -> QScreen: ... method virtualSiblings (line 11980) | def virtualSiblings(self) -> list[QScreen]: ... method virtualSize (line 11981) | def virtualSize(self) -> PySide2.QtCore.QSize: ... class QScrollEvent (line 11983) | class QScrollEvent(PySide2.QtCore.QEvent): class ScrollState (line 11984) | class ScrollState: method __init__ (line 11991) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11992) | def __add__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollS... method __and__ (line 11993) | def __and__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollS... method __bool__ (line 11994) | def __bool__(self) -> bool: ... method __eq__ (line 11995) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11996) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11997) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11998) | def __hash__(self) -> int: ... method __index__ (line 11999) | def __index__(self) -> int: ... method __int__ (line 12000) | def __int__(self) -> int: ... method __le__ (line 12001) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12002) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12003) | def __mul__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollS... method __ne__ (line 12004) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12005) | def __or__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollSt... method __pos__ (line 12006) | def __pos__(self): ... method __radd__ (line 12007) | def __radd__(self, other: typing.SupportsInt) -> QScrollEvent.Scroll... method __rand__ (line 12008) | def __rand__(self, other: typing.SupportsInt) -> QScrollEvent.Scroll... method __rmul__ (line 12009) | def __rmul__(self, other: typing.SupportsInt) -> QScrollEvent.Scroll... method __ror__ (line 12010) | def __ror__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollS... method __rsub__ (line 12011) | def __rsub__(self, other: typing.SupportsInt) -> QScrollEvent.Scroll... method __rxor__ (line 12012) | def __rxor__(self, other: typing.SupportsInt) -> QScrollEvent.Scroll... method __sub__ (line 12013) | def __sub__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollS... method __xor__ (line 12014) | def __xor__(self, other: typing.SupportsInt) -> QScrollEvent.ScrollS... method __init__ (line 12018) | def __init__(self, contentPos: PySide2.QtCore.QPointF, overshoot: PySi... method contentPos (line 12019) | def contentPos(self) -> PySide2.QtCore.QPointF: ... method overshootDistance (line 12020) | def overshootDistance(self) -> PySide2.QtCore.QPointF: ... method scrollState (line 12021) | def scrollState(self) -> QScrollEvent.ScrollState: ... class QScrollPrepareEvent (line 12023) | class QScrollPrepareEvent(PySide2.QtCore.QEvent): method __init__ (line 12024) | def __init__(self, startPos: PySide2.QtCore.QPointF) -> None: ... method contentPos (line 12025) | def contentPos(self) -> PySide2.QtCore.QPointF: ... method contentPosRange (line 12026) | def contentPosRange(self) -> PySide2.QtCore.QRectF: ... method setContentPos (line 12027) | def setContentPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setContentPosRange (line 12028) | def setContentPosRange(self, rect: PySide2.QtCore.QRectF) -> None: ... method setViewportSize (line 12029) | def setViewportSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method startPos (line 12030) | def startPos(self) -> PySide2.QtCore.QPointF: ... method viewportSize (line 12031) | def viewportSize(self) -> PySide2.QtCore.QSizeF: ... class QSessionManager (line 12033) | class QSessionManager(PySide2.QtCore.QObject): class RestartHint (line 12034) | class RestartHint: method __init__ (line 12042) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12043) | def __add__(self, other: typing.SupportsInt) -> QSessionManager.Rest... method __and__ (line 12044) | def __and__(self, other: typing.SupportsInt) -> QSessionManager.Rest... method __bool__ (line 12045) | def __bool__(self) -> bool: ... method __eq__ (line 12046) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12047) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12048) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12049) | def __hash__(self) -> int: ... method __index__ (line 12050) | def __index__(self) -> int: ... method __int__ (line 12051) | def __int__(self) -> int: ... method __le__ (line 12052) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12053) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12054) | def __mul__(self, other: typing.SupportsInt) -> QSessionManager.Rest... method __ne__ (line 12055) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12056) | def __or__(self, other: typing.SupportsInt) -> QSessionManager.Resta... method __pos__ (line 12057) | def __pos__(self): ... method __radd__ (line 12058) | def __radd__(self, other: typing.SupportsInt) -> QSessionManager.Res... method __rand__ (line 12059) | def __rand__(self, other: typing.SupportsInt) -> QSessionManager.Res... method __rmul__ (line 12060) | def __rmul__(self, other: typing.SupportsInt) -> QSessionManager.Res... method __ror__ (line 12061) | def __ror__(self, other: typing.SupportsInt) -> QSessionManager.Rest... method __rsub__ (line 12062) | def __rsub__(self, other: typing.SupportsInt) -> QSessionManager.Res... method __rxor__ (line 12063) | def __rxor__(self, other: typing.SupportsInt) -> QSessionManager.Res... method __sub__ (line 12064) | def __sub__(self, other: typing.SupportsInt) -> QSessionManager.Rest... method __xor__ (line 12065) | def __xor__(self, other: typing.SupportsInt) -> QSessionManager.Rest... method __init__ (line 12072) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method allowsErrorInteraction (line 12073) | def allowsErrorInteraction(self) -> bool: ... method allowsInteraction (line 12074) | def allowsInteraction(self) -> bool: ... method cancel (line 12075) | def cancel(self) -> None: ... method discardCommand (line 12076) | def discardCommand(self) -> list[str]: ... method isPhase2 (line 12077) | def isPhase2(self) -> bool: ... method release (line 12078) | def release(self) -> None: ... method requestPhase2 (line 12079) | def requestPhase2(self) -> None: ... method restartCommand (line 12080) | def restartCommand(self) -> list[str]: ... method restartHint (line 12081) | def restartHint(self) -> QSessionManager.RestartHint: ... method sessionId (line 12082) | def sessionId(self) -> str: ... method sessionKey (line 12083) | def sessionKey(self) -> str: ... method setDiscardCommand (line 12084) | def setDiscardCommand(self, arg__1: typing.Iterable[str]) -> None: ... method setManagerProperty (line 12086) | def setManagerProperty(self, name: str, value: str) -> None: ... method setManagerProperty (line 12088) | def setManagerProperty(self, name: str, value: typing.Iterable[str]) -... method setRestartCommand (line 12089) | def setRestartCommand(self, arg__1: typing.Iterable[str]) -> None: ... method setRestartHint (line 12090) | def setRestartHint(self, arg__1: QSessionManager.RestartHint) -> None:... class QShortcutEvent (line 12092) | class QShortcutEvent(PySide2.QtCore.QEvent): method __init__ (line 12093) | def __init__(self, key: QKeySequence | str, id: int, ambiguous: bool =... method isAmbiguous (line 12094) | def isAmbiguous(self) -> bool: ... method key (line 12095) | def key(self) -> QKeySequence: ... method shortcutId (line 12096) | def shortcutId(self) -> int: ... class QShowEvent (line 12098) | class QShowEvent(PySide2.QtCore.QEvent): method __init__ (line 12099) | def __init__(self) -> None: ... class QStandardItem (line 12101) | class QStandardItem(shiboken2.Object): class ItemType (line 12102) | class ItemType: method __init__ (line 12108) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12109) | def __add__(self, other: typing.SupportsInt) -> QStandardItem.ItemTy... method __and__ (line 12110) | def __and__(self, other: typing.SupportsInt) -> QStandardItem.ItemTy... method __bool__ (line 12111) | def __bool__(self) -> bool: ... method __eq__ (line 12112) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12113) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12114) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12115) | def __hash__(self) -> int: ... method __index__ (line 12116) | def __index__(self) -> int: ... method __int__ (line 12117) | def __int__(self) -> int: ... method __le__ (line 12118) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12119) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12120) | def __mul__(self, other: typing.SupportsInt) -> QStandardItem.ItemTy... method __ne__ (line 12121) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12122) | def __or__(self, other: typing.SupportsInt) -> QStandardItem.ItemTyp... method __pos__ (line 12123) | def __pos__(self): ... method __radd__ (line 12124) | def __radd__(self, other: typing.SupportsInt) -> QStandardItem.ItemT... method __rand__ (line 12125) | def __rand__(self, other: typing.SupportsInt) -> QStandardItem.ItemT... method __rmul__ (line 12126) | def __rmul__(self, other: typing.SupportsInt) -> QStandardItem.ItemT... method __ror__ (line 12127) | def __ror__(self, other: typing.SupportsInt) -> QStandardItem.ItemTy... method __rsub__ (line 12128) | def __rsub__(self, other: typing.SupportsInt) -> QStandardItem.ItemT... method __rxor__ (line 12129) | def __rxor__(self, other: typing.SupportsInt) -> QStandardItem.ItemT... method __sub__ (line 12130) | def __sub__(self, other: typing.SupportsInt) -> QStandardItem.ItemTy... method __xor__ (line 12131) | def __xor__(self, other: typing.SupportsInt) -> QStandardItem.ItemTy... method __init__ (line 12135) | def __init__(self, rows: int, columns: int = ...) -> None: ... method __init__ (line 12137) | def __init__(self, icon: QIcon, text: str) -> None: ... method __init__ (line 12139) | def __init__(self, text: str) -> None: ... method __init__ (line 12141) | def __init__(self, other: QStandardItem) -> None: ... method __init__ (line 12143) | def __init__(self) -> None: ... method accessibleDescription (line 12144) | def accessibleDescription(self) -> str: ... method accessibleText (line 12145) | def accessibleText(self) -> str: ... method appendColumn (line 12146) | def appendColumn(self, items: typing.Iterable[QStandardItem]) -> None:... method appendRow (line 12148) | def appendRow(self, items: typing.Iterable[QStandardItem]) -> None: ... method appendRow (line 12150) | def appendRow(self, item: QStandardItem) -> None: ... method appendRows (line 12151) | def appendRows(self, items: typing.Iterable[QStandardItem]) -> None: ... method background (line 12152) | def background(self) -> QBrush: ... method checkState (line 12153) | def checkState(self) -> PySide2.QtCore.Qt.CheckState: ... method child (line 12154) | def child(self, row: int, column: int = ...) -> QStandardItem: ... method clearData (line 12155) | def clearData(self) -> None: ... method clone (line 12156) | def clone(self) -> QStandardItem: ... method column (line 12157) | def column(self) -> int: ... method columnCount (line 12158) | def columnCount(self) -> int: ... method data (line 12159) | def data(self, role: PySide2.QtCore.Qt.ItemDataRole = ...) -> typing.A... method emitDataChanged (line 12160) | def emitDataChanged(self) -> None: ... method flags (line 12161) | def flags(self) -> PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore.Qt.Ite... method font (line 12162) | def font(self) -> QFont: ... method foreground (line 12163) | def foreground(self) -> QBrush: ... method hasChildren (line 12164) | def hasChildren(self) -> bool: ... method icon (line 12165) | def icon(self) -> QIcon: ... method index (line 12166) | def index(self) -> PySide2.QtCore.QModelIndex: ... method insertColumn (line 12167) | def insertColumn(self, column: int, items: typing.Iterable[QStandardIt... method insertColumns (line 12168) | def insertColumns(self, column: int, count: int) -> None: ... method insertRow (line 12170) | def insertRow(self, row: int, items: typing.Iterable[QStandardItem]) -... method insertRow (line 12172) | def insertRow(self, row: int, item: QStandardItem) -> None: ... method insertRows (line 12174) | def insertRows(self, row: int, items: typing.Iterable[QStandardItem]) ... method insertRows (line 12176) | def insertRows(self, row: int, count: int) -> None: ... method isAutoTristate (line 12177) | def isAutoTristate(self) -> bool: ... method isCheckable (line 12178) | def isCheckable(self) -> bool: ... method isDragEnabled (line 12179) | def isDragEnabled(self) -> bool: ... method isDropEnabled (line 12180) | def isDropEnabled(self) -> bool: ... method isEditable (line 12181) | def isEditable(self) -> bool: ... method isEnabled (line 12182) | def isEnabled(self) -> bool: ... method isSelectable (line 12183) | def isSelectable(self) -> bool: ... method isTristate (line 12184) | def isTristate(self) -> bool: ... method isUserTristate (line 12185) | def isUserTristate(self) -> bool: ... method model (line 12186) | def model(self) -> QStandardItemModel: ... method parent (line 12187) | def parent(self) -> QStandardItem: ... method read (line 12188) | def read(self, in_: PySide2.QtCore.QDataStream) -> None: ... method removeColumn (line 12189) | def removeColumn(self, column: int) -> None: ... method removeColumns (line 12190) | def removeColumns(self, column: int, count: int) -> None: ... method removeRow (line 12191) | def removeRow(self, row: int) -> None: ... method removeRows (line 12192) | def removeRows(self, row: int, count: int) -> None: ... method row (line 12193) | def row(self) -> int: ... method rowCount (line 12194) | def rowCount(self) -> int: ... method setAccessibleDescription (line 12195) | def setAccessibleDescription(self, accessibleDescription: str) -> None... method setAccessibleText (line 12196) | def setAccessibleText(self, accessibleText: str) -> None: ... method setAutoTristate (line 12197) | def setAutoTristate(self, tristate: bool) -> None: ... method setBackground (line 12198) | def setBackground(self, brush: QBrush | QColor | PySide2.QtCore.Qt.Glo... method setCheckState (line 12199) | def setCheckState(self, checkState: PySide2.QtCore.Qt.CheckState) -> N... method setCheckable (line 12200) | def setCheckable(self, checkable: bool) -> None: ... method setChild (line 12202) | def setChild(self, row: int, column: int, item: QStandardItem) -> None... method setChild (line 12204) | def setChild(self, row: int, item: QStandardItem) -> None: ... method setColumnCount (line 12205) | def setColumnCount(self, columns: int) -> None: ... method setData (line 12206) | def setData(self, value: typing.Any, role: PySide2.QtCore.Qt.ItemDataR... method setDragEnabled (line 12207) | def setDragEnabled(self, dragEnabled: bool) -> None: ... method setDropEnabled (line 12208) | def setDropEnabled(self, dropEnabled: bool) -> None: ... method setEditable (line 12209) | def setEditable(self, editable: bool) -> None: ... method setEnabled (line 12210) | def setEnabled(self, enabled: bool) -> None: ... method setFlags (line 12211) | def setFlags(self, flags: PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore... method setFont (line 12212) | def setFont(self, font: QFont) -> None: ... method setForeground (line 12213) | def setForeground(self, brush: QBrush | QColor | PySide2.QtCore.Qt.Glo... method setIcon (line 12214) | def setIcon(self, icon: QIcon) -> None: ... method setRowCount (line 12215) | def setRowCount(self, rows: int) -> None: ... method setSelectable (line 12216) | def setSelectable(self, selectable: bool) -> None: ... method setSizeHint (line 12217) | def setSizeHint(self, sizeHint: PySide2.QtCore.QSize) -> None: ... method setStatusTip (line 12218) | def setStatusTip(self, statusTip: str) -> None: ... method setText (line 12219) | def setText(self, text: str) -> None: ... method setTextAlignment (line 12220) | def setTextAlignment(self, textAlignment: PySide2.QtCore.Qt.Alignment ... method setToolTip (line 12221) | def setToolTip(self, toolTip: str) -> None: ... method setTristate (line 12222) | def setTristate(self, tristate: bool) -> None: ... method setUserTristate (line 12223) | def setUserTristate(self, tristate: bool) -> None: ... method setWhatsThis (line 12224) | def setWhatsThis(self, whatsThis: str) -> None: ... method sizeHint (line 12225) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sortChildren (line 12226) | def sortChildren(self, column: int, order: PySide2.QtCore.Qt.SortOrder... method statusTip (line 12227) | def statusTip(self) -> str: ... method takeChild (line 12228) | def takeChild(self, row: int, column: int = ...) -> QStandardItem: ... method takeColumn (line 12229) | def takeColumn(self, column: int) -> list[QStandardItem]: ... method takeRow (line 12230) | def takeRow(self, row: int) -> list[QStandardItem]: ... method text (line 12231) | def text(self) -> str: ... method textAlignment (line 12232) | def textAlignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCor... method toolTip (line 12233) | def toolTip(self) -> str: ... method type (line 12234) | def type(self) -> QStandardItem.ItemType: ... method whatsThis (line 12235) | def whatsThis(self) -> str: ... method write (line 12236) | def write(self, out: PySide2.QtCore.QDataStream) -> None: ... method __eq__ (line 12237) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12238) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12239) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12240) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 12241) | def __lshift__(self, out: PySide2.QtCore.QDataStream) -> PySide2.QtCor... method __lt__ (line 12242) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12243) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 12244) | def __rlshift__(self, other): ... method __rrshift__ (line 12245) | def __rrshift__(self, other): ... method __rshift__ (line 12246) | def __rshift__(self, in_: PySide2.QtCore.QDataStream) -> PySide2.QtCor... class QStandardItemModel (line 12248) | class QStandardItemModel(PySide2.QtCore.QAbstractItemModel): method __init__ (line 12252) | def __init__(self, rows: int, columns: int, parent: PySide2.QtCore.QOb... method __init__ (line 12254) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., column... method appendColumn (line 12255) | def appendColumn(self, items: typing.Iterable[QStandardItem]) -> None:... method appendRow (line 12257) | def appendRow(self, items: typing.Iterable[QStandardItem]) -> None: ... method appendRow (line 12259) | def appendRow(self, item: QStandardItem) -> None: ... method clear (line 12260) | def clear(self) -> None: ... method clearItemData (line 12261) | def clearItemData(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method columnCount (line 12262) | def columnCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int... method data (line 12263) | def data(self, index: PySide2.QtCore.QModelIndex, role: PySide2.QtCore... method dropMimeData (line 12264) | def dropMimeData(self, data: PySide2.QtCore.QMimeData, action: PySide2... method findItems (line 12265) | def findItems(self, text: str, flags: PySide2.QtCore.Qt.MatchFlags | P... method flags (line 12266) | def flags(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.Q... method hasChildren (line 12267) | def hasChildren(self, parent: PySide2.QtCore.QModelIndex = ...) -> boo... method headerData (line 12268) | def headerData(self, section: int, orientation: PySide2.QtCore.Qt.Orie... method horizontalHeaderItem (line 12269) | def horizontalHeaderItem(self, column: int) -> QStandardItem: ... method index (line 12270) | def index(self, row: int, column: int, parent: PySide2.QtCore.QModelIn... method indexFromItem (line 12271) | def indexFromItem(self, item: QStandardItem) -> PySide2.QtCore.QModelI... method insertColumn (line 12273) | def insertColumn(self, column: int, parent: PySide2.QtCore.QModelIndex... method insertColumn (line 12275) | def insertColumn(self, column: int, items: typing.Iterable[QStandardIt... method insertColumns (line 12276) | def insertColumns(self, column: int, count: int, parent: PySide2.QtCor... method insertRow (line 12278) | def insertRow(self, row: int, parent: PySide2.QtCore.QModelIndex = ...... method insertRow (line 12280) | def insertRow(self, row: int, items: typing.Iterable[QStandardItem]) -... method insertRow (line 12282) | def insertRow(self, row: int, item: QStandardItem) -> None: ... method insertRows (line 12283) | def insertRows(self, row: int, count: int, parent: PySide2.QtCore.QMod... method invisibleRootItem (line 12284) | def invisibleRootItem(self) -> QStandardItem: ... method item (line 12285) | def item(self, row: int, column: int = ...) -> QStandardItem: ... method itemData (line 12286) | def itemData(self, index: PySide2.QtCore.QModelIndex) -> dict[int, typ... method itemFromIndex (line 12287) | def itemFromIndex(self, index: PySide2.QtCore.QModelIndex) -> QStandar... method itemPrototype (line 12288) | def itemPrototype(self) -> QStandardItem: ... method mimeData (line 12289) | def mimeData(self, indexes: list[PySide2.QtCore.QModelIndex]) -> PySid... method mimeTypes (line 12290) | def mimeTypes(self) -> list[str]: ... method parent (line 12292) | def parent(self, child: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.... method parent (line 12294) | def parent(self) -> PySide2.QtCore.QObject: ... method removeColumns (line 12295) | def removeColumns(self, column: int, count: int, parent: PySide2.QtCor... method removeRows (line 12296) | def removeRows(self, row: int, count: int, parent: PySide2.QtCore.QMod... method rowCount (line 12297) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... method setColumnCount (line 12298) | def setColumnCount(self, columns: int) -> None: ... method setData (line 12299) | def setData(self, index: PySide2.QtCore.QModelIndex, value: typing.Any... method setHeaderData (line 12300) | def setHeaderData(self, section: int, orientation: PySide2.QtCore.Qt.O... method setHorizontalHeaderItem (line 12301) | def setHorizontalHeaderItem(self, column: int, item: QStandardItem) ->... method setHorizontalHeaderLabels (line 12302) | def setHorizontalHeaderLabels(self, labels: typing.Iterable[str]) -> N... method setItem (line 12304) | def setItem(self, row: int, column: int, item: QStandardItem) -> None:... method setItem (line 12306) | def setItem(self, row: int, item: QStandardItem) -> None: ... method setItemData (line 12307) | def setItemData(self, index: PySide2.QtCore.QModelIndex, roles: dict[i... method setItemPrototype (line 12308) | def setItemPrototype(self, item: QStandardItem) -> None: ... method setItemRoleNames (line 12309) | def setItemRoleNames(self, roleNames: dict[int, PySide2.QtCore.QByteAr... method setRowCount (line 12310) | def setRowCount(self, rows: int) -> None: ... method setSortRole (line 12311) | def setSortRole(self, role: PySide2.QtCore.Qt.ItemDataRole) -> None: ... method setVerticalHeaderItem (line 12312) | def setVerticalHeaderItem(self, row: int, item: QStandardItem) -> None... method setVerticalHeaderLabels (line 12313) | def setVerticalHeaderLabels(self, labels: typing.Iterable[str]) -> Non... method sibling (line 12314) | def sibling(self, row: int, column: int, idx: PySide2.QtCore.QModelInd... method sort (line 12315) | def sort(self, column: int, order: PySide2.QtCore.Qt.SortOrder = ...) ... method sortRole (line 12316) | def sortRole(self) -> int: ... method supportedDropActions (line 12317) | def supportedDropActions(self) -> PySide2.QtCore.Qt.DropActions | PySi... method takeColumn (line 12318) | def takeColumn(self, column: int) -> list[QStandardItem]: ... method takeHorizontalHeaderItem (line 12319) | def takeHorizontalHeaderItem(self, column: int) -> QStandardItem: ... method takeItem (line 12320) | def takeItem(self, row: int, column: int = ...) -> QStandardItem: ... method takeRow (line 12321) | def takeRow(self, row: int) -> list[QStandardItem]: ... method takeVerticalHeaderItem (line 12322) | def takeVerticalHeaderItem(self, row: int) -> QStandardItem: ... method verticalHeaderItem (line 12323) | def verticalHeaderItem(self, row: int) -> QStandardItem: ... class QStaticText (line 12325) | class QStaticText(shiboken2.Object): class PerformanceHint (line 12326) | class PerformanceHint: method __init__ (line 12332) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12333) | def __add__(self, other: typing.SupportsInt) -> QStaticText.Performa... method __and__ (line 12334) | def __and__(self, other: typing.SupportsInt) -> QStaticText.Performa... method __bool__ (line 12335) | def __bool__(self) -> bool: ... method __eq__ (line 12336) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12337) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12338) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12339) | def __hash__(self) -> int: ... method __index__ (line 12340) | def __index__(self) -> int: ... method __int__ (line 12341) | def __int__(self) -> int: ... method __le__ (line 12342) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12343) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12344) | def __mul__(self, other: typing.SupportsInt) -> QStaticText.Performa... method __ne__ (line 12345) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12346) | def __or__(self, other: typing.SupportsInt) -> QStaticText.Performan... method __pos__ (line 12347) | def __pos__(self): ... method __radd__ (line 12348) | def __radd__(self, other: typing.SupportsInt) -> QStaticText.Perform... method __rand__ (line 12349) | def __rand__(self, other: typing.SupportsInt) -> QStaticText.Perform... method __rmul__ (line 12350) | def __rmul__(self, other: typing.SupportsInt) -> QStaticText.Perform... method __ror__ (line 12351) | def __ror__(self, other: typing.SupportsInt) -> QStaticText.Performa... method __rsub__ (line 12352) | def __rsub__(self, other: typing.SupportsInt) -> QStaticText.Perform... method __rxor__ (line 12353) | def __rxor__(self, other: typing.SupportsInt) -> QStaticText.Perform... method __sub__ (line 12354) | def __sub__(self, other: typing.SupportsInt) -> QStaticText.Performa... method __xor__ (line 12355) | def __xor__(self, other: typing.SupportsInt) -> QStaticText.Performa... method __init__ (line 12359) | def __init__(self, text: str) -> None: ... method __init__ (line 12361) | def __init__(self, other: QStaticText) -> None: ... method __init__ (line 12363) | def __init__(self) -> None: ... method performanceHint (line 12364) | def performanceHint(self) -> QStaticText.PerformanceHint: ... method prepare (line 12365) | def prepare(self, matrix: QTransform = ..., font: QFont = ...) -> None... method setPerformanceHint (line 12366) | def setPerformanceHint(self, performanceHint: QStaticText.PerformanceH... method setText (line 12367) | def setText(self, text: str) -> None: ... method setTextFormat (line 12368) | def setTextFormat(self, textFormat: PySide2.QtCore.Qt.TextFormat) -> N... method setTextOption (line 12369) | def setTextOption(self, textOption: QTextOption) -> None: ... method setTextWidth (line 12370) | def setTextWidth(self, textWidth: float) -> None: ... method size (line 12371) | def size(self) -> PySide2.QtCore.QSizeF: ... method swap (line 12372) | def swap(self, other: QStaticText) -> None: ... method text (line 12373) | def text(self) -> str: ... method textFormat (line 12374) | def textFormat(self) -> PySide2.QtCore.Qt.TextFormat: ... method textOption (line 12375) | def textOption(self) -> QTextOption: ... method textWidth (line 12376) | def textWidth(self) -> float: ... method __copy__ (line 12377) | def __copy__(self) -> None: ... method __eq__ (line 12378) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12379) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12380) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12381) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12382) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12383) | def __ne__(self, other: object) -> bool: ... class QStatusTipEvent (line 12385) | class QStatusTipEvent(PySide2.QtCore.QEvent): method __init__ (line 12386) | def __init__(self, tip: str) -> None: ... method tip (line 12387) | def tip(self) -> str: ... class QStyleHints (line 12389) | class QStyleHints(PySide2.QtCore.QObject): method __init__ (line 12403) | def __init__(cls, *args, cursorFlashTime: int = ..., cursorFlashTimeCh... method cursorFlashTime (line 12404) | def cursorFlashTime(self) -> int: ... method fontSmoothingGamma (line 12405) | def fontSmoothingGamma(self) -> float: ... method keyboardAutoRepeatRate (line 12406) | def keyboardAutoRepeatRate(self) -> int: ... method keyboardInputInterval (line 12407) | def keyboardInputInterval(self) -> int: ... method mouseDoubleClickDistance (line 12408) | def mouseDoubleClickDistance(self) -> int: ... method mouseDoubleClickInterval (line 12409) | def mouseDoubleClickInterval(self) -> int: ... method mousePressAndHoldInterval (line 12410) | def mousePressAndHoldInterval(self) -> int: ... method mouseQuickSelectionThreshold (line 12411) | def mouseQuickSelectionThreshold(self) -> int: ... method passwordMaskCharacter (line 12412) | def passwordMaskCharacter(self) -> str: ... method passwordMaskDelay (line 12413) | def passwordMaskDelay(self) -> int: ... method setCursorFlashTime (line 12414) | def setCursorFlashTime(self, cursorFlashTime: int) -> None: ... method setFocusOnTouchRelease (line 12415) | def setFocusOnTouchRelease(self) -> bool: ... method setKeyboardInputInterval (line 12416) | def setKeyboardInputInterval(self, keyboardInputInterval: int) -> None... method setMouseDoubleClickInterval (line 12417) | def setMouseDoubleClickInterval(self, mouseDoubleClickInterval: int) -... method setMousePressAndHoldInterval (line 12418) | def setMousePressAndHoldInterval(self, mousePressAndHoldInterval: int)... method setMouseQuickSelectionThreshold (line 12419) | def setMouseQuickSelectionThreshold(self, threshold: int) -> None: ... method setShowShortcutsInContextMenus (line 12420) | def setShowShortcutsInContextMenus(self, showShortcutsInContextMenus: ... method setStartDragDistance (line 12421) | def setStartDragDistance(self, startDragDistance: int) -> None: ... method setStartDragTime (line 12422) | def setStartDragTime(self, startDragTime: int) -> None: ... method setTabFocusBehavior (line 12423) | def setTabFocusBehavior(self, tabFocusBehavior: PySide2.QtCore.Qt.TabF... method setUseHoverEffects (line 12424) | def setUseHoverEffects(self, useHoverEffects: bool) -> None: ... method setWheelScrollLines (line 12425) | def setWheelScrollLines(self, scrollLines: int) -> None: ... method showIsFullScreen (line 12426) | def showIsFullScreen(self) -> bool: ... method showIsMaximized (line 12427) | def showIsMaximized(self) -> bool: ... method showShortcutsInContextMenus (line 12428) | def showShortcutsInContextMenus(self) -> bool: ... method singleClickActivation (line 12429) | def singleClickActivation(self) -> bool: ... method startDragDistance (line 12430) | def startDragDistance(self) -> int: ... method startDragTime (line 12431) | def startDragTime(self) -> int: ... method startDragVelocity (line 12432) | def startDragVelocity(self) -> int: ... method tabFocusBehavior (line 12433) | def tabFocusBehavior(self) -> PySide2.QtCore.Qt.TabFocusBehavior: ... method touchDoubleTapDistance (line 12434) | def touchDoubleTapDistance(self) -> int: ... method useHoverEffects (line 12435) | def useHoverEffects(self) -> bool: ... method useRtlExtensions (line 12436) | def useRtlExtensions(self) -> bool: ... method wheelScrollLines (line 12437) | def wheelScrollLines(self) -> int: ... class QSurface (line 12439) | class QSurface(shiboken2.Object): class SurfaceClass (line 12440) | class SurfaceClass: method __init__ (line 12446) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12447) | def __add__(self, other: typing.SupportsInt) -> QSurface.SurfaceClas... method __and__ (line 12448) | def __and__(self, other: typing.SupportsInt) -> QSurface.SurfaceClas... method __bool__ (line 12449) | def __bool__(self) -> bool: ... method __eq__ (line 12450) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12451) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12452) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12453) | def __hash__(self) -> int: ... method __index__ (line 12454) | def __index__(self) -> int: ... method __int__ (line 12455) | def __int__(self) -> int: ... method __le__ (line 12456) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12457) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12458) | def __mul__(self, other: typing.SupportsInt) -> QSurface.SurfaceClas... method __ne__ (line 12459) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12460) | def __or__(self, other: typing.SupportsInt) -> QSurface.SurfaceClass... method __pos__ (line 12461) | def __pos__(self): ... method __radd__ (line 12462) | def __radd__(self, other: typing.SupportsInt) -> QSurface.SurfaceCla... method __rand__ (line 12463) | def __rand__(self, other: typing.SupportsInt) -> QSurface.SurfaceCla... method __rmul__ (line 12464) | def __rmul__(self, other: typing.SupportsInt) -> QSurface.SurfaceCla... method __ror__ (line 12465) | def __ror__(self, other: typing.SupportsInt) -> QSurface.SurfaceClas... method __rsub__ (line 12466) | def __rsub__(self, other: typing.SupportsInt) -> QSurface.SurfaceCla... method __rxor__ (line 12467) | def __rxor__(self, other: typing.SupportsInt) -> QSurface.SurfaceCla... method __sub__ (line 12468) | def __sub__(self, other: typing.SupportsInt) -> QSurface.SurfaceClas... method __xor__ (line 12469) | def __xor__(self, other: typing.SupportsInt) -> QSurface.SurfaceClas... class SurfaceType (line 12471) | class SurfaceType: method __init__ (line 12481) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12482) | def __add__(self, other: typing.SupportsInt) -> QSurface.SurfaceType... method __and__ (line 12483) | def __and__(self, other: typing.SupportsInt) -> QSurface.SurfaceType... method __bool__ (line 12484) | def __bool__(self) -> bool: ... method __eq__ (line 12485) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12486) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12487) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12488) | def __hash__(self) -> int: ... method __index__ (line 12489) | def __index__(self) -> int: ... method __int__ (line 12490) | def __int__(self) -> int: ... method __le__ (line 12491) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12492) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12493) | def __mul__(self, other: typing.SupportsInt) -> QSurface.SurfaceType... method __ne__ (line 12494) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12495) | def __or__(self, other: typing.SupportsInt) -> QSurface.SurfaceType:... method __pos__ (line 12496) | def __pos__(self): ... method __radd__ (line 12497) | def __radd__(self, other: typing.SupportsInt) -> QSurface.SurfaceTyp... method __rand__ (line 12498) | def __rand__(self, other: typing.SupportsInt) -> QSurface.SurfaceTyp... method __rmul__ (line 12499) | def __rmul__(self, other: typing.SupportsInt) -> QSurface.SurfaceTyp... method __ror__ (line 12500) | def __ror__(self, other: typing.SupportsInt) -> QSurface.SurfaceType... method __rsub__ (line 12501) | def __rsub__(self, other: typing.SupportsInt) -> QSurface.SurfaceTyp... method __rxor__ (line 12502) | def __rxor__(self, other: typing.SupportsInt) -> QSurface.SurfaceTyp... method __sub__ (line 12503) | def __sub__(self, other: typing.SupportsInt) -> QSurface.SurfaceType... method __xor__ (line 12504) | def __xor__(self, other: typing.SupportsInt) -> QSurface.SurfaceType... method __init__ (line 12514) | def __init__(self, type: QSurface.SurfaceClass) -> None: ... method format (line 12515) | def format(self) -> QSurfaceFormat: ... method size (line 12516) | def size(self) -> PySide2.QtCore.QSize: ... method supportsOpenGL (line 12517) | def supportsOpenGL(self) -> bool: ... method surfaceClass (line 12518) | def surfaceClass(self) -> QSurface.SurfaceClass: ... method surfaceHandle (line 12519) | def surfaceHandle(self) -> int: ... method surfaceType (line 12520) | def surfaceType(self) -> QSurface.SurfaceType: ... class QSurfaceFormat (line 12522) | class QSurfaceFormat(shiboken2.Object): class ColorSpace (line 12523) | class ColorSpace: method __init__ (line 12529) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12530) | def __add__(self, other: typing.SupportsInt) -> QSurfaceFormat.Color... method __and__ (line 12531) | def __and__(self, other: typing.SupportsInt) -> QSurfaceFormat.Color... method __bool__ (line 12532) | def __bool__(self) -> bool: ... method __eq__ (line 12533) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12534) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12535) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12536) | def __hash__(self) -> int: ... method __index__ (line 12537) | def __index__(self) -> int: ... method __int__ (line 12538) | def __int__(self) -> int: ... method __le__ (line 12539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12540) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12541) | def __mul__(self, other: typing.SupportsInt) -> QSurfaceFormat.Color... method __ne__ (line 12542) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12543) | def __or__(self, other: typing.SupportsInt) -> QSurfaceFormat.ColorS... method __pos__ (line 12544) | def __pos__(self): ... method __radd__ (line 12545) | def __radd__(self, other: typing.SupportsInt) -> QSurfaceFormat.Colo... method __rand__ (line 12546) | def __rand__(self, other: typing.SupportsInt) -> QSurfaceFormat.Colo... method __rmul__ (line 12547) | def __rmul__(self, other: typing.SupportsInt) -> QSurfaceFormat.Colo... method __ror__ (line 12548) | def __ror__(self, other: typing.SupportsInt) -> QSurfaceFormat.Color... method __rsub__ (line 12549) | def __rsub__(self, other: typing.SupportsInt) -> QSurfaceFormat.Colo... method __rxor__ (line 12550) | def __rxor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Colo... method __sub__ (line 12551) | def __sub__(self, other: typing.SupportsInt) -> QSurfaceFormat.Color... method __xor__ (line 12552) | def __xor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Color... class FormatOption (line 12554) | class FormatOption: method __init__ (line 12562) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12563) | def __and__(self, other: typing.SupportsInt) -> QSurfaceFormat.Forma... method __bool__ (line 12564) | def __bool__(self) -> bool: ... method __eq__ (line 12565) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12566) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12567) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12568) | def __hash__(self) -> int: ... method __index__ (line 12569) | def __index__(self) -> int: ... method __int__ (line 12570) | def __int__(self) -> int: ... method __invert__ (line 12571) | def __invert__(self) -> QSurfaceFormat.FormatOptions: ... method __le__ (line 12572) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12573) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12574) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12575) | def __or__(self, other: typing.SupportsInt) -> QSurfaceFormat.Format... method __rand__ (line 12576) | def __rand__(self, other: typing.SupportsInt) -> QSurfaceFormat.Form... method __ror__ (line 12577) | def __ror__(self, other: typing.SupportsInt) -> QSurfaceFormat.Forma... method __rxor__ (line 12578) | def __rxor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Form... method __xor__ (line 12579) | def __xor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Forma... class FormatOptions (line 12581) | class FormatOptions: method __init__ (line 12583) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12584) | def __and__(self, other: typing.SupportsInt) -> QSurfaceFormat.Forma... method __bool__ (line 12585) | def __bool__(self) -> bool: ... method __eq__ (line 12586) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12587) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12588) | def __gt__(self, other: object) -> bool: ... method __index__ (line 12589) | def __index__(self) -> int: ... method __int__ (line 12590) | def __int__(self) -> int: ... method __invert__ (line 12591) | def __invert__(self) -> QSurfaceFormat.FormatOptions: ... method __le__ (line 12592) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12593) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12594) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12595) | def __or__(self, other: typing.SupportsInt) -> QSurfaceFormat.Format... method __rand__ (line 12596) | def __rand__(self, other: typing.SupportsInt) -> QSurfaceFormat.Form... method __ror__ (line 12597) | def __ror__(self, other: typing.SupportsInt) -> QSurfaceFormat.Forma... method __rxor__ (line 12598) | def __rxor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Form... method __xor__ (line 12599) | def __xor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Forma... class OpenGLContextProfile (line 12601) | class OpenGLContextProfile: method __init__ (line 12608) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12609) | def __add__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenG... method __and__ (line 12610) | def __and__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenG... method __bool__ (line 12611) | def __bool__(self) -> bool: ... method __eq__ (line 12612) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12613) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12614) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12615) | def __hash__(self) -> int: ... method __index__ (line 12616) | def __index__(self) -> int: ... method __int__ (line 12617) | def __int__(self) -> int: ... method __le__ (line 12618) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12619) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12620) | def __mul__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenG... method __ne__ (line 12621) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12622) | def __or__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenGL... method __pos__ (line 12623) | def __pos__(self): ... method __radd__ (line 12624) | def __radd__(self, other: typing.SupportsInt) -> QSurfaceFormat.Open... method __rand__ (line 12625) | def __rand__(self, other: typing.SupportsInt) -> QSurfaceFormat.Open... method __rmul__ (line 12626) | def __rmul__(self, other: typing.SupportsInt) -> QSurfaceFormat.Open... method __ror__ (line 12627) | def __ror__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenG... method __rsub__ (line 12628) | def __rsub__(self, other: typing.SupportsInt) -> QSurfaceFormat.Open... method __rxor__ (line 12629) | def __rxor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Open... method __sub__ (line 12630) | def __sub__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenG... method __xor__ (line 12631) | def __xor__(self, other: typing.SupportsInt) -> QSurfaceFormat.OpenG... class RenderableType (line 12633) | class RenderableType: method __init__ (line 12641) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12642) | def __add__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rende... method __and__ (line 12643) | def __and__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rende... method __bool__ (line 12644) | def __bool__(self) -> bool: ... method __eq__ (line 12645) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12646) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12647) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12648) | def __hash__(self) -> int: ... method __index__ (line 12649) | def __index__(self) -> int: ... method __int__ (line 12650) | def __int__(self) -> int: ... method __le__ (line 12651) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12652) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12653) | def __mul__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rende... method __ne__ (line 12654) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12655) | def __or__(self, other: typing.SupportsInt) -> QSurfaceFormat.Render... method __pos__ (line 12656) | def __pos__(self): ... method __radd__ (line 12657) | def __radd__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rend... method __rand__ (line 12658) | def __rand__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rend... method __rmul__ (line 12659) | def __rmul__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rend... method __ror__ (line 12660) | def __ror__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rende... method __rsub__ (line 12661) | def __rsub__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rend... method __rxor__ (line 12662) | def __rxor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rend... method __sub__ (line 12663) | def __sub__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rende... method __xor__ (line 12664) | def __xor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Rende... class SwapBehavior (line 12666) | class SwapBehavior: method __init__ (line 12674) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12675) | def __add__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapB... method __and__ (line 12676) | def __and__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapB... method __bool__ (line 12677) | def __bool__(self) -> bool: ... method __eq__ (line 12678) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12679) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12680) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12681) | def __hash__(self) -> int: ... method __index__ (line 12682) | def __index__(self) -> int: ... method __int__ (line 12683) | def __int__(self) -> int: ... method __le__ (line 12684) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12685) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12686) | def __mul__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapB... method __ne__ (line 12687) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12688) | def __or__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapBe... method __pos__ (line 12689) | def __pos__(self): ... method __radd__ (line 12690) | def __radd__(self, other: typing.SupportsInt) -> QSurfaceFormat.Swap... method __rand__ (line 12691) | def __rand__(self, other: typing.SupportsInt) -> QSurfaceFormat.Swap... method __rmul__ (line 12692) | def __rmul__(self, other: typing.SupportsInt) -> QSurfaceFormat.Swap... method __ror__ (line 12693) | def __ror__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapB... method __rsub__ (line 12694) | def __rsub__(self, other: typing.SupportsInt) -> QSurfaceFormat.Swap... method __rxor__ (line 12695) | def __rxor__(self, other: typing.SupportsInt) -> QSurfaceFormat.Swap... method __sub__ (line 12696) | def __sub__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapB... method __xor__ (line 12697) | def __xor__(self, other: typing.SupportsInt) -> QSurfaceFormat.SwapB... method __init__ (line 12716) | def __init__(self, other: QSurfaceFormat) -> None: ... method __init__ (line 12718) | def __init__(self, options: QSurfaceFormat.FormatOptions | QSurfaceFor... method __init__ (line 12720) | def __init__(self) -> None: ... method alphaBufferSize (line 12721) | def alphaBufferSize(self) -> int: ... method blueBufferSize (line 12722) | def blueBufferSize(self) -> int: ... method colorSpace (line 12723) | def colorSpace(self) -> QSurfaceFormat.ColorSpace: ... method defaultFormat (line 12725) | def defaultFormat() -> QSurfaceFormat: ... method depthBufferSize (line 12726) | def depthBufferSize(self) -> int: ... method greenBufferSize (line 12727) | def greenBufferSize(self) -> int: ... method hasAlpha (line 12728) | def hasAlpha(self) -> bool: ... method majorVersion (line 12729) | def majorVersion(self) -> int: ... method minorVersion (line 12730) | def minorVersion(self) -> int: ... method options (line 12731) | def options(self) -> QSurfaceFormat.FormatOptions | QSurfaceFormat.For... method profile (line 12732) | def profile(self) -> QSurfaceFormat.OpenGLContextProfile: ... method redBufferSize (line 12733) | def redBufferSize(self) -> int: ... method renderableType (line 12734) | def renderableType(self) -> QSurfaceFormat.RenderableType: ... method samples (line 12735) | def samples(self) -> int: ... method setAlphaBufferSize (line 12736) | def setAlphaBufferSize(self, size: int) -> None: ... method setBlueBufferSize (line 12737) | def setBlueBufferSize(self, size: int) -> None: ... method setColorSpace (line 12738) | def setColorSpace(self, colorSpace: QSurfaceFormat.ColorSpace) -> None... method setDefaultFormat (line 12740) | def setDefaultFormat(format: QSurfaceFormat) -> None: ... method setDepthBufferSize (line 12741) | def setDepthBufferSize(self, size: int) -> None: ... method setGreenBufferSize (line 12742) | def setGreenBufferSize(self, size: int) -> None: ... method setMajorVersion (line 12743) | def setMajorVersion(self, majorVersion: int) -> None: ... method setMinorVersion (line 12744) | def setMinorVersion(self, minorVersion: int) -> None: ... method setOption (line 12746) | def setOption(self, option: QSurfaceFormat.FormatOption, on: bool = ..... method setOption (line 12748) | def setOption(self, opt: QSurfaceFormat.FormatOptions | QSurfaceFormat... method setOptions (line 12749) | def setOptions(self, options: QSurfaceFormat.FormatOptions | QSurfaceF... method setProfile (line 12750) | def setProfile(self, profile: QSurfaceFormat.OpenGLContextProfile) -> ... method setRedBufferSize (line 12751) | def setRedBufferSize(self, size: int) -> None: ... method setRenderableType (line 12752) | def setRenderableType(self, type: QSurfaceFormat.RenderableType) -> No... method setSamples (line 12753) | def setSamples(self, numSamples: int) -> None: ... method setStencilBufferSize (line 12754) | def setStencilBufferSize(self, size: int) -> None: ... method setStereo (line 12755) | def setStereo(self, enable: bool) -> None: ... method setSwapBehavior (line 12756) | def setSwapBehavior(self, behavior: QSurfaceFormat.SwapBehavior) -> No... method setSwapInterval (line 12757) | def setSwapInterval(self, interval: int) -> None: ... method setVersion (line 12758) | def setVersion(self, major: int, minor: int) -> None: ... method stencilBufferSize (line 12759) | def stencilBufferSize(self) -> int: ... method stereo (line 12760) | def stereo(self) -> bool: ... method swapBehavior (line 12761) | def swapBehavior(self) -> QSurfaceFormat.SwapBehavior: ... method swapInterval (line 12762) | def swapInterval(self) -> int: ... method testOption (line 12764) | def testOption(self, option: QSurfaceFormat.FormatOption) -> bool: ... method testOption (line 12766) | def testOption(self, opt: QSurfaceFormat.FormatOptions | QSurfaceForma... method version (line 12767) | def version(self) -> tuple[int, int]: ... method __copy__ (line 12768) | def __copy__(self) -> None: ... method __eq__ (line 12769) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12770) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12771) | def __gt__(self, other: object) -> bool: ... method __le__ (line 12772) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12773) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12774) | def __ne__(self, other: object) -> bool: ... class QSyntaxHighlighter (line 12776) | class QSyntaxHighlighter(PySide2.QtCore.QObject): method __init__ (line 12779) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method __init__ (line 12781) | def __init__(self, parent: QTextDocument, destroyed: typing.Callable =... method currentBlock (line 12782) | def currentBlock(self) -> QTextBlock: ... method currentBlockState (line 12783) | def currentBlockState(self) -> int: ... method currentBlockUserData (line 12784) | def currentBlockUserData(self) -> QTextBlockUserData: ... method document (line 12785) | def document(self) -> QTextDocument: ... method format (line 12786) | def format(self, pos: int) -> QTextCharFormat: ... method highlightBlock (line 12787) | def highlightBlock(self, text: str) -> None: ... method previousBlockState (line 12788) | def previousBlockState(self) -> int: ... method rehighlight (line 12789) | def rehighlight(self) -> None: ... method rehighlightBlock (line 12790) | def rehighlightBlock(self, block: QTextBlock) -> None: ... method setCurrentBlockState (line 12791) | def setCurrentBlockState(self, newState: int) -> None: ... method setCurrentBlockUserData (line 12792) | def setCurrentBlockUserData(self, data: QTextBlockUserData) -> None: ... method setDocument (line 12793) | def setDocument(self, doc: QTextDocument) -> None: ... method setFormat (line 12795) | def setFormat(self, start: int, count: int, format: QTextCharFormat) -... method setFormat (line 12797) | def setFormat(self, start: int, count: int, font: QFont) -> None: ... method setFormat (line 12799) | def setFormat(self, start: int, count: int, color: QColor | PySide2.Qt... class QTabletEvent (line 12801) | class QTabletEvent(QInputEvent): class PointerType (line 12802) | class PointerType: method __init__ (line 12810) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12811) | def __add__(self, other: typing.SupportsInt) -> QTabletEvent.Pointer... method __and__ (line 12812) | def __and__(self, other: typing.SupportsInt) -> QTabletEvent.Pointer... method __bool__ (line 12813) | def __bool__(self) -> bool: ... method __eq__ (line 12814) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12815) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12816) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12817) | def __hash__(self) -> int: ... method __index__ (line 12818) | def __index__(self) -> int: ... method __int__ (line 12819) | def __int__(self) -> int: ... method __le__ (line 12820) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12821) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12822) | def __mul__(self, other: typing.SupportsInt) -> QTabletEvent.Pointer... method __ne__ (line 12823) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12824) | def __or__(self, other: typing.SupportsInt) -> QTabletEvent.PointerT... method __pos__ (line 12825) | def __pos__(self): ... method __radd__ (line 12826) | def __radd__(self, other: typing.SupportsInt) -> QTabletEvent.Pointe... method __rand__ (line 12827) | def __rand__(self, other: typing.SupportsInt) -> QTabletEvent.Pointe... method __rmul__ (line 12828) | def __rmul__(self, other: typing.SupportsInt) -> QTabletEvent.Pointe... method __ror__ (line 12829) | def __ror__(self, other: typing.SupportsInt) -> QTabletEvent.Pointer... method __rsub__ (line 12830) | def __rsub__(self, other: typing.SupportsInt) -> QTabletEvent.Pointe... method __rxor__ (line 12831) | def __rxor__(self, other: typing.SupportsInt) -> QTabletEvent.Pointe... method __sub__ (line 12832) | def __sub__(self, other: typing.SupportsInt) -> QTabletEvent.Pointer... method __xor__ (line 12833) | def __xor__(self, other: typing.SupportsInt) -> QTabletEvent.Pointer... class TabletDevice (line 12835) | class TabletDevice: method __init__ (line 12846) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12847) | def __add__(self, other: typing.SupportsInt) -> QTabletEvent.TabletD... method __and__ (line 12848) | def __and__(self, other: typing.SupportsInt) -> QTabletEvent.TabletD... method __bool__ (line 12849) | def __bool__(self) -> bool: ... method __eq__ (line 12850) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12851) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12852) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12853) | def __hash__(self) -> int: ... method __index__ (line 12854) | def __index__(self) -> int: ... method __int__ (line 12855) | def __int__(self) -> int: ... method __le__ (line 12856) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12857) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12858) | def __mul__(self, other: typing.SupportsInt) -> QTabletEvent.TabletD... method __ne__ (line 12859) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12860) | def __or__(self, other: typing.SupportsInt) -> QTabletEvent.TabletDe... method __pos__ (line 12861) | def __pos__(self): ... method __radd__ (line 12862) | def __radd__(self, other: typing.SupportsInt) -> QTabletEvent.Tablet... method __rand__ (line 12863) | def __rand__(self, other: typing.SupportsInt) -> QTabletEvent.Tablet... method __rmul__ (line 12864) | def __rmul__(self, other: typing.SupportsInt) -> QTabletEvent.Tablet... method __ror__ (line 12865) | def __ror__(self, other: typing.SupportsInt) -> QTabletEvent.TabletD... method __rsub__ (line 12866) | def __rsub__(self, other: typing.SupportsInt) -> QTabletEvent.Tablet... method __rxor__ (line 12867) | def __rxor__(self, other: typing.SupportsInt) -> QTabletEvent.Tablet... method __sub__ (line 12868) | def __sub__(self, other: typing.SupportsInt) -> QTabletEvent.TabletD... method __xor__ (line 12869) | def __xor__(self, other: typing.SupportsInt) -> QTabletEvent.TabletD... method __init__ (line 12882) | def __init__(self, t: PySide2.QtCore.QEvent.Type, pos: PySide2.QtCore.... method __init__ (line 12884) | def __init__(self, t: PySide2.QtCore.QEvent.Type, pos: PySide2.QtCore.... method button (line 12885) | def button(self) -> PySide2.QtCore.Qt.MouseButton: ... method buttons (line 12886) | def buttons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.Q... method device (line 12887) | def device(self) -> QTabletEvent.TabletDevice: ... method deviceType (line 12888) | def deviceType(self) -> QTabletEvent.TabletDevice: ... method globalPos (line 12889) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method globalPosF (line 12890) | def globalPosF(self) -> PySide2.QtCore.QPointF: ... method globalX (line 12891) | def globalX(self) -> int: ... method globalY (line 12892) | def globalY(self) -> int: ... method hiResGlobalX (line 12893) | def hiResGlobalX(self) -> float: ... method hiResGlobalY (line 12894) | def hiResGlobalY(self) -> float: ... method pointerType (line 12895) | def pointerType(self) -> QTabletEvent.PointerType: ... method pos (line 12896) | def pos(self) -> PySide2.QtCore.QPoint: ... method posF (line 12897) | def posF(self) -> PySide2.QtCore.QPointF: ... method pressure (line 12898) | def pressure(self) -> float: ... method rotation (line 12899) | def rotation(self) -> float: ... method tangentialPressure (line 12900) | def tangentialPressure(self) -> float: ... method uniqueId (line 12901) | def uniqueId(self) -> int: ... method x (line 12902) | def x(self) -> int: ... method xTilt (line 12903) | def xTilt(self) -> int: ... method y (line 12904) | def y(self) -> int: ... method yTilt (line 12905) | def yTilt(self) -> int: ... method z (line 12906) | def z(self) -> int: ... class QTextBlock (line 12908) | class QTextBlock(shiboken2.Object): class iterator (line 12909) | class iterator(shiboken2.Object): method __init__ (line 12911) | def __init__(self, o: QTextBlock.iterator) -> None: ... method __init__ (line 12913) | def __init__(self) -> None: ... method atEnd (line 12914) | def atEnd(self) -> bool: ... method fragment (line 12915) | def fragment(self) -> QTextFragment: ... method __copy__ (line 12916) | def __copy__(self) -> None: ... method __eq__ (line 12917) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12918) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12919) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 12920) | def __iadd__(self, arg__1: int) -> QTextBlock.iterator: ... method __isub__ (line 12921) | def __isub__(self, arg__1: int) -> QTextBlock.iterator: ... method __iter__ (line 12922) | def __iter__(self) -> typing.Iterator: ... method __le__ (line 12923) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12924) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12925) | def __ne__(self, other: object) -> bool: ... method __next__ (line 12926) | def __next__(self) -> typing.Any: ... method __init__ (line 12928) | def __init__(self, o: QTextBlock) -> None: ... method __init__ (line 12930) | def __init__(self) -> None: ... method begin (line 12931) | def begin(self) -> QTextBlock.iterator: ... method blockFormat (line 12932) | def blockFormat(self) -> QTextBlockFormat: ... method blockFormatIndex (line 12933) | def blockFormatIndex(self) -> int: ... method blockNumber (line 12934) | def blockNumber(self) -> int: ... method charFormat (line 12935) | def charFormat(self) -> QTextCharFormat: ... method charFormatIndex (line 12936) | def charFormatIndex(self) -> int: ... method clearLayout (line 12937) | def clearLayout(self) -> None: ... method contains (line 12938) | def contains(self, position: int) -> bool: ... method document (line 12939) | def document(self) -> QTextDocument: ... method end (line 12940) | def end(self) -> QTextBlock.iterator: ... method firstLineNumber (line 12941) | def firstLineNumber(self) -> int: ... method fragmentIndex (line 12942) | def fragmentIndex(self) -> int: ... method isValid (line 12943) | def isValid(self) -> bool: ... method isVisible (line 12944) | def isVisible(self) -> bool: ... method layout (line 12945) | def layout(self) -> QTextLayout: ... method length (line 12946) | def length(self) -> int: ... method lineCount (line 12947) | def lineCount(self) -> int: ... method next (line 12948) | def next(self) -> QTextBlock: ... method position (line 12949) | def position(self) -> int: ... method previous (line 12950) | def previous(self) -> QTextBlock: ... method revision (line 12951) | def revision(self) -> int: ... method setLineCount (line 12952) | def setLineCount(self, count: int) -> None: ... method setRevision (line 12953) | def setRevision(self, rev: int) -> None: ... method setUserData (line 12954) | def setUserData(self, data: QTextBlockUserData) -> None: ... method setUserState (line 12955) | def setUserState(self, state: int) -> None: ... method setVisible (line 12956) | def setVisible(self, visible: bool) -> None: ... method text (line 12957) | def text(self) -> str: ... method textDirection (line 12958) | def textDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method textFormats (line 12959) | def textFormats(self) -> list[QTextLayout.FormatRange]: ... method textList (line 12960) | def textList(self) -> QTextList: ... method userData (line 12961) | def userData(self) -> QTextBlockUserData: ... method userState (line 12962) | def userState(self) -> int: ... method __copy__ (line 12963) | def __copy__(self) -> None: ... method __eq__ (line 12964) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12965) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12966) | def __gt__(self, other: object) -> bool: ... method __iter__ (line 12967) | def __iter__(self) -> typing.Iterator: ... method __le__ (line 12968) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12969) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12970) | def __ne__(self, other: object) -> bool: ... class QTextBlockFormat (line 12972) | class QTextBlockFormat(QTextFormat): class LineHeightTypes (line 12973) | class LineHeightTypes: method __init__ (line 12982) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12983) | def __add__(self, other: typing.SupportsInt) -> QTextBlockFormat.Lin... method __and__ (line 12984) | def __and__(self, other: typing.SupportsInt) -> QTextBlockFormat.Lin... method __bool__ (line 12985) | def __bool__(self) -> bool: ... method __eq__ (line 12986) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12987) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12988) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12989) | def __hash__(self) -> int: ... method __index__ (line 12990) | def __index__(self) -> int: ... method __int__ (line 12991) | def __int__(self) -> int: ... method __le__ (line 12992) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12993) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12994) | def __mul__(self, other: typing.SupportsInt) -> QTextBlockFormat.Lin... method __ne__ (line 12995) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12996) | def __or__(self, other: typing.SupportsInt) -> QTextBlockFormat.Line... method __pos__ (line 12997) | def __pos__(self): ... method __radd__ (line 12998) | def __radd__(self, other: typing.SupportsInt) -> QTextBlockFormat.Li... method __rand__ (line 12999) | def __rand__(self, other: typing.SupportsInt) -> QTextBlockFormat.Li... method __rmul__ (line 13000) | def __rmul__(self, other: typing.SupportsInt) -> QTextBlockFormat.Li... method __ror__ (line 13001) | def __ror__(self, other: typing.SupportsInt) -> QTextBlockFormat.Lin... method __rsub__ (line 13002) | def __rsub__(self, other: typing.SupportsInt) -> QTextBlockFormat.Li... method __rxor__ (line 13003) | def __rxor__(self, other: typing.SupportsInt) -> QTextBlockFormat.Li... method __sub__ (line 13004) | def __sub__(self, other: typing.SupportsInt) -> QTextBlockFormat.Lin... method __xor__ (line 13005) | def __xor__(self, other: typing.SupportsInt) -> QTextBlockFormat.Lin... class MarkerType (line 13007) | class MarkerType: method __init__ (line 13014) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13015) | def __add__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mar... method __and__ (line 13016) | def __and__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mar... method __bool__ (line 13017) | def __bool__(self) -> bool: ... method __eq__ (line 13018) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13019) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13020) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13021) | def __hash__(self) -> int: ... method __index__ (line 13022) | def __index__(self) -> int: ... method __int__ (line 13023) | def __int__(self) -> int: ... method __le__ (line 13024) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13025) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13026) | def __mul__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mar... method __ne__ (line 13027) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13028) | def __or__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mark... method __pos__ (line 13029) | def __pos__(self): ... method __radd__ (line 13030) | def __radd__(self, other: typing.SupportsInt) -> QTextBlockFormat.Ma... method __rand__ (line 13031) | def __rand__(self, other: typing.SupportsInt) -> QTextBlockFormat.Ma... method __rmul__ (line 13032) | def __rmul__(self, other: typing.SupportsInt) -> QTextBlockFormat.Ma... method __ror__ (line 13033) | def __ror__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mar... method __rsub__ (line 13034) | def __rsub__(self, other: typing.SupportsInt) -> QTextBlockFormat.Ma... method __rxor__ (line 13035) | def __rxor__(self, other: typing.SupportsInt) -> QTextBlockFormat.Ma... method __sub__ (line 13036) | def __sub__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mar... method __xor__ (line 13037) | def __xor__(self, other: typing.SupportsInt) -> QTextBlockFormat.Mar... method __init__ (line 13044) | def __init__(self, fmt: QTextFormat) -> None: ... method __init__ (line 13046) | def __init__(self, QTextBlockFormat: QTextBlockFormat) -> None: ... method __init__ (line 13048) | def __init__(self) -> None: ... method alignment (line 13049) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method bottomMargin (line 13050) | def bottomMargin(self) -> float: ... method headingLevel (line 13051) | def headingLevel(self) -> int: ... method indent (line 13052) | def indent(self) -> int: ... method isValid (line 13053) | def isValid(self) -> bool: ... method leftMargin (line 13054) | def leftMargin(self) -> float: ... method lineHeight (line 13056) | def lineHeight(self, scriptLineHeight: float, scaling: float) -> float... method lineHeight (line 13058) | def lineHeight(self) -> float: ... method lineHeightType (line 13059) | def lineHeightType(self) -> int: ... method marker (line 13060) | def marker(self) -> QTextBlockFormat.MarkerType: ... method nonBreakableLines (line 13061) | def nonBreakableLines(self) -> bool: ... method pageBreakPolicy (line 13062) | def pageBreakPolicy(self) -> QTextFormat.PageBreakFlags | QTextFormat.... method rightMargin (line 13063) | def rightMargin(self) -> float: ... method setAlignment (line 13064) | def setAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | PySide... method setBottomMargin (line 13065) | def setBottomMargin(self, margin: float) -> None: ... method setHeadingLevel (line 13066) | def setHeadingLevel(self, alevel: int) -> None: ... method setIndent (line 13067) | def setIndent(self, indent: int) -> None: ... method setLeftMargin (line 13068) | def setLeftMargin(self, margin: float) -> None: ... method setLineHeight (line 13069) | def setLineHeight(self, height: float, heightType: int) -> None: ... method setMarker (line 13070) | def setMarker(self, marker: QTextBlockFormat.MarkerType) -> None: ... method setNonBreakableLines (line 13071) | def setNonBreakableLines(self, b: bool) -> None: ... method setPageBreakPolicy (line 13072) | def setPageBreakPolicy(self, flags: QTextFormat.PageBreakFlags | QText... method setRightMargin (line 13073) | def setRightMargin(self, margin: float) -> None: ... method setTabPositions (line 13074) | def setTabPositions(self, tabs: typing.Iterable[QTextOption.Tab]) -> N... method setTextIndent (line 13075) | def setTextIndent(self, aindent: float) -> None: ... method setTopMargin (line 13076) | def setTopMargin(self, margin: float) -> None: ... method tabPositions (line 13077) | def tabPositions(self) -> list[QTextOption.Tab]: ... method textIndent (line 13078) | def textIndent(self) -> float: ... method topMargin (line 13079) | def topMargin(self) -> float: ... method __copy__ (line 13080) | def __copy__(self) -> None: ... class QTextBlockGroup (line 13082) | class QTextBlockGroup(QTextObject): method __init__ (line 13084) | def __init__(self, doc: QTextDocument, destroyed: typing.Callable = ..... method blockFormatChanged (line 13085) | def blockFormatChanged(self, block: QTextBlock) -> None: ... method blockInserted (line 13086) | def blockInserted(self, block: QTextBlock) -> None: ... method blockList (line 13087) | def blockList(self) -> list[QTextBlock]: ... method blockRemoved (line 13088) | def blockRemoved(self, block: QTextBlock) -> None: ... class QTextBlockUserData (line 13090) | class QTextBlockUserData(shiboken2.Object): method __init__ (line 13091) | def __init__(self) -> None: ... class QTextCharFormat (line 13093) | class QTextCharFormat(QTextFormat): class FontPropertiesInheritanceBehavior (line 13094) | class FontPropertiesInheritanceBehavior: method __init__ (line 13100) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13101) | def __add__(self, other: typing.SupportsInt) -> QTextCharFormat.Font... method __and__ (line 13102) | def __and__(self, other: typing.SupportsInt) -> QTextCharFormat.Font... method __bool__ (line 13103) | def __bool__(self) -> bool: ... method __eq__ (line 13104) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13105) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13106) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13107) | def __hash__(self) -> int: ... method __index__ (line 13108) | def __index__(self) -> int: ... method __int__ (line 13109) | def __int__(self) -> int: ... method __le__ (line 13110) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13111) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13112) | def __mul__(self, other: typing.SupportsInt) -> QTextCharFormat.Font... method __ne__ (line 13113) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13114) | def __or__(self, other: typing.SupportsInt) -> QTextCharFormat.FontP... method __pos__ (line 13115) | def __pos__(self): ... method __radd__ (line 13116) | def __radd__(self, other: typing.SupportsInt) -> QTextCharFormat.Fon... method __rand__ (line 13117) | def __rand__(self, other: typing.SupportsInt) -> QTextCharFormat.Fon... method __rmul__ (line 13118) | def __rmul__(self, other: typing.SupportsInt) -> QTextCharFormat.Fon... method __ror__ (line 13119) | def __ror__(self, other: typing.SupportsInt) -> QTextCharFormat.Font... method __rsub__ (line 13120) | def __rsub__(self, other: typing.SupportsInt) -> QTextCharFormat.Fon... method __rxor__ (line 13121) | def __rxor__(self, other: typing.SupportsInt) -> QTextCharFormat.Fon... method __sub__ (line 13122) | def __sub__(self, other: typing.SupportsInt) -> QTextCharFormat.Font... method __xor__ (line 13123) | def __xor__(self, other: typing.SupportsInt) -> QTextCharFormat.Font... class UnderlineStyle (line 13125) | class UnderlineStyle: method __init__ (line 13137) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13138) | def __add__(self, other: typing.SupportsInt) -> QTextCharFormat.Unde... method __and__ (line 13139) | def __and__(self, other: typing.SupportsInt) -> QTextCharFormat.Unde... method __bool__ (line 13140) | def __bool__(self) -> bool: ... method __eq__ (line 13141) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13142) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13143) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13144) | def __hash__(self) -> int: ... method __index__ (line 13145) | def __index__(self) -> int: ... method __int__ (line 13146) | def __int__(self) -> int: ... method __le__ (line 13147) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13148) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13149) | def __mul__(self, other: typing.SupportsInt) -> QTextCharFormat.Unde... method __ne__ (line 13150) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13151) | def __or__(self, other: typing.SupportsInt) -> QTextCharFormat.Under... method __pos__ (line 13152) | def __pos__(self): ... method __radd__ (line 13153) | def __radd__(self, other: typing.SupportsInt) -> QTextCharFormat.Und... method __rand__ (line 13154) | def __rand__(self, other: typing.SupportsInt) -> QTextCharFormat.Und... method __rmul__ (line 13155) | def __rmul__(self, other: typing.SupportsInt) -> QTextCharFormat.Und... method __ror__ (line 13156) | def __ror__(self, other: typing.SupportsInt) -> QTextCharFormat.Unde... method __rsub__ (line 13157) | def __rsub__(self, other: typing.SupportsInt) -> QTextCharFormat.Und... method __rxor__ (line 13158) | def __rxor__(self, other: typing.SupportsInt) -> QTextCharFormat.Und... method __sub__ (line 13159) | def __sub__(self, other: typing.SupportsInt) -> QTextCharFormat.Unde... method __xor__ (line 13160) | def __xor__(self, other: typing.SupportsInt) -> QTextCharFormat.Unde... class VerticalAlignment (line 13162) | class VerticalAlignment: method __init__ (line 13173) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13174) | def __add__(self, other: typing.SupportsInt) -> QTextCharFormat.Vert... method __and__ (line 13175) | def __and__(self, other: typing.SupportsInt) -> QTextCharFormat.Vert... method __bool__ (line 13176) | def __bool__(self) -> bool: ... method __eq__ (line 13177) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13178) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13179) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13180) | def __hash__(self) -> int: ... method __index__ (line 13181) | def __index__(self) -> int: ... method __int__ (line 13182) | def __int__(self) -> int: ... method __le__ (line 13183) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13184) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13185) | def __mul__(self, other: typing.SupportsInt) -> QTextCharFormat.Vert... method __ne__ (line 13186) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13187) | def __or__(self, other: typing.SupportsInt) -> QTextCharFormat.Verti... method __pos__ (line 13188) | def __pos__(self): ... method __radd__ (line 13189) | def __radd__(self, other: typing.SupportsInt) -> QTextCharFormat.Ver... method __rand__ (line 13190) | def __rand__(self, other: typing.SupportsInt) -> QTextCharFormat.Ver... method __rmul__ (line 13191) | def __rmul__(self, other: typing.SupportsInt) -> QTextCharFormat.Ver... method __ror__ (line 13192) | def __ror__(self, other: typing.SupportsInt) -> QTextCharFormat.Vert... method __rsub__ (line 13193) | def __rsub__(self, other: typing.SupportsInt) -> QTextCharFormat.Ver... method __rxor__ (line 13194) | def __rxor__(self, other: typing.SupportsInt) -> QTextCharFormat.Ver... method __sub__ (line 13195) | def __sub__(self, other: typing.SupportsInt) -> QTextCharFormat.Vert... method __xor__ (line 13196) | def __xor__(self, other: typing.SupportsInt) -> QTextCharFormat.Vert... method __init__ (line 13215) | def __init__(self, fmt: QTextFormat) -> None: ... method __init__ (line 13217) | def __init__(self, QTextCharFormat: QTextCharFormat) -> None: ... method __init__ (line 13219) | def __init__(self) -> None: ... method anchorHref (line 13220) | def anchorHref(self) -> str: ... method anchorName (line 13221) | def anchorName(self) -> str: ... method anchorNames (line 13222) | def anchorNames(self) -> list[str]: ... method font (line 13223) | def font(self) -> QFont: ... method fontCapitalization (line 13224) | def fontCapitalization(self) -> QFont.Capitalization: ... method fontFamilies (line 13225) | def fontFamilies(self) -> typing.Any: ... method fontFamily (line 13226) | def fontFamily(self) -> str: ... method fontFixedPitch (line 13227) | def fontFixedPitch(self) -> bool: ... method fontHintingPreference (line 13228) | def fontHintingPreference(self) -> QFont.HintingPreference: ... method fontItalic (line 13229) | def fontItalic(self) -> bool: ... method fontKerning (line 13230) | def fontKerning(self) -> bool: ... method fontLetterSpacing (line 13231) | def fontLetterSpacing(self) -> float: ... method fontLetterSpacingType (line 13232) | def fontLetterSpacingType(self) -> QFont.SpacingType: ... method fontOverline (line 13233) | def fontOverline(self) -> bool: ... method fontPointSize (line 13234) | def fontPointSize(self) -> float: ... method fontStretch (line 13235) | def fontStretch(self) -> int: ... method fontStrikeOut (line 13236) | def fontStrikeOut(self) -> bool: ... method fontStyleHint (line 13237) | def fontStyleHint(self) -> QFont.StyleHint: ... method fontStyleName (line 13238) | def fontStyleName(self) -> typing.Any: ... method fontStyleStrategy (line 13239) | def fontStyleStrategy(self) -> QFont.StyleStrategy: ... method fontUnderline (line 13240) | def fontUnderline(self) -> bool: ... method fontWeight (line 13241) | def fontWeight(self) -> int: ... method fontWordSpacing (line 13242) | def fontWordSpacing(self) -> float: ... method isAnchor (line 13243) | def isAnchor(self) -> bool: ... method isValid (line 13244) | def isValid(self) -> bool: ... method setAnchor (line 13245) | def setAnchor(self, anchor: bool) -> None: ... method setAnchorHref (line 13246) | def setAnchorHref(self, value: str) -> None: ... method setAnchorName (line 13247) | def setAnchorName(self, name: str) -> None: ... method setAnchorNames (line 13248) | def setAnchorNames(self, names: typing.Iterable[str]) -> None: ... method setFont (line 13250) | def setFont(self, font: QFont, behavior: QTextCharFormat.FontPropertie... method setFont (line 13252) | def setFont(self, font: QFont) -> None: ... method setFontCapitalization (line 13253) | def setFontCapitalization(self, capitalization: QFont.Capitalization) ... method setFontFamilies (line 13254) | def setFontFamilies(self, families: typing.Iterable[str]) -> None: ... method setFontFamily (line 13255) | def setFontFamily(self, family: str) -> None: ... method setFontFixedPitch (line 13256) | def setFontFixedPitch(self, fixedPitch: bool) -> None: ... method setFontHintingPreference (line 13257) | def setFontHintingPreference(self, hintingPreference: QFont.HintingPre... method setFontItalic (line 13258) | def setFontItalic(self, italic: bool) -> None: ... method setFontKerning (line 13259) | def setFontKerning(self, enable: bool) -> None: ... method setFontLetterSpacing (line 13260) | def setFontLetterSpacing(self, spacing: float) -> None: ... method setFontLetterSpacingType (line 13261) | def setFontLetterSpacingType(self, letterSpacingType: QFont.SpacingTyp... method setFontOverline (line 13262) | def setFontOverline(self, overline: bool) -> None: ... method setFontPointSize (line 13263) | def setFontPointSize(self, size: float) -> None: ... method setFontStretch (line 13264) | def setFontStretch(self, factor: int) -> None: ... method setFontStrikeOut (line 13265) | def setFontStrikeOut(self, strikeOut: bool) -> None: ... method setFontStyleHint (line 13266) | def setFontStyleHint(self, hint: QFont.StyleHint, strategy: QFont.Styl... method setFontStyleName (line 13267) | def setFontStyleName(self, styleName: str) -> None: ... method setFontStyleStrategy (line 13268) | def setFontStyleStrategy(self, strategy: QFont.StyleStrategy) -> None:... method setFontUnderline (line 13269) | def setFontUnderline(self, underline: bool) -> None: ... method setFontWeight (line 13270) | def setFontWeight(self, weight: typing.SupportsInt) -> None: ... method setFontWordSpacing (line 13271) | def setFontWordSpacing(self, spacing: float) -> None: ... method setTableCellColumnSpan (line 13272) | def setTableCellColumnSpan(self, tableCellColumnSpan: int) -> None: ... method setTableCellRowSpan (line 13273) | def setTableCellRowSpan(self, tableCellRowSpan: int) -> None: ... method setTextOutline (line 13274) | def setTextOutline(self, pen: QPen) -> None: ... method setToolTip (line 13275) | def setToolTip(self, tip: str) -> None: ... method setUnderlineColor (line 13276) | def setUnderlineColor(self, color: QColor | PySide2.QtCore.Qt.GlobalCo... method setUnderlineStyle (line 13277) | def setUnderlineStyle(self, style: QTextCharFormat.UnderlineStyle) -> ... method setVerticalAlignment (line 13278) | def setVerticalAlignment(self, alignment: QTextCharFormat.VerticalAlig... method tableCellColumnSpan (line 13279) | def tableCellColumnSpan(self) -> int: ... method tableCellRowSpan (line 13280) | def tableCellRowSpan(self) -> int: ... method textOutline (line 13281) | def textOutline(self) -> QPen: ... method toolTip (line 13282) | def toolTip(self) -> str: ... method underlineColor (line 13283) | def underlineColor(self) -> QColor: ... method underlineStyle (line 13284) | def underlineStyle(self) -> QTextCharFormat.UnderlineStyle: ... method verticalAlignment (line 13285) | def verticalAlignment(self) -> QTextCharFormat.VerticalAlignment: ... method __copy__ (line 13286) | def __copy__(self) -> None: ... class QTextCursor (line 13288) | class QTextCursor(shiboken2.Object): class MoveMode (line 13289) | class MoveMode: method __init__ (line 13295) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13296) | def __add__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode... method __and__ (line 13297) | def __and__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode... method __bool__ (line 13298) | def __bool__(self) -> bool: ... method __eq__ (line 13299) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13300) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13301) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13302) | def __hash__(self) -> int: ... method __index__ (line 13303) | def __index__(self) -> int: ... method __int__ (line 13304) | def __int__(self) -> int: ... method __le__ (line 13305) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13306) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13307) | def __mul__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode... method __ne__ (line 13308) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13309) | def __or__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode:... method __pos__ (line 13310) | def __pos__(self): ... method __radd__ (line 13311) | def __radd__(self, other: typing.SupportsInt) -> QTextCursor.MoveMod... method __rand__ (line 13312) | def __rand__(self, other: typing.SupportsInt) -> QTextCursor.MoveMod... method __rmul__ (line 13313) | def __rmul__(self, other: typing.SupportsInt) -> QTextCursor.MoveMod... method __ror__ (line 13314) | def __ror__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode... method __rsub__ (line 13315) | def __rsub__(self, other: typing.SupportsInt) -> QTextCursor.MoveMod... method __rxor__ (line 13316) | def __rxor__(self, other: typing.SupportsInt) -> QTextCursor.MoveMod... method __sub__ (line 13317) | def __sub__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode... method __xor__ (line 13318) | def __xor__(self, other: typing.SupportsInt) -> QTextCursor.MoveMode... class MoveOperation (line 13320) | class MoveOperation: method __init__ (line 13349) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13350) | def __add__(self, other: typing.SupportsInt) -> QTextCursor.MoveOper... method __and__ (line 13351) | def __and__(self, other: typing.SupportsInt) -> QTextCursor.MoveOper... method __bool__ (line 13352) | def __bool__(self) -> bool: ... method __eq__ (line 13353) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13354) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13355) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13356) | def __hash__(self) -> int: ... method __index__ (line 13357) | def __index__(self) -> int: ... method __int__ (line 13358) | def __int__(self) -> int: ... method __le__ (line 13359) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13360) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13361) | def __mul__(self, other: typing.SupportsInt) -> QTextCursor.MoveOper... method __ne__ (line 13362) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13363) | def __or__(self, other: typing.SupportsInt) -> QTextCursor.MoveOpera... method __pos__ (line 13364) | def __pos__(self): ... method __radd__ (line 13365) | def __radd__(self, other: typing.SupportsInt) -> QTextCursor.MoveOpe... method __rand__ (line 13366) | def __rand__(self, other: typing.SupportsInt) -> QTextCursor.MoveOpe... method __rmul__ (line 13367) | def __rmul__(self, other: typing.SupportsInt) -> QTextCursor.MoveOpe... method __ror__ (line 13368) | def __ror__(self, other: typing.SupportsInt) -> QTextCursor.MoveOper... method __rsub__ (line 13369) | def __rsub__(self, other: typing.SupportsInt) -> QTextCursor.MoveOpe... method __rxor__ (line 13370) | def __rxor__(self, other: typing.SupportsInt) -> QTextCursor.MoveOpe... method __sub__ (line 13371) | def __sub__(self, other: typing.SupportsInt) -> QTextCursor.MoveOper... method __xor__ (line 13372) | def __xor__(self, other: typing.SupportsInt) -> QTextCursor.MoveOper... class SelectionType (line 13374) | class SelectionType: method __init__ (line 13382) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13383) | def __add__(self, other: typing.SupportsInt) -> QTextCursor.Selectio... method __and__ (line 13384) | def __and__(self, other: typing.SupportsInt) -> QTextCursor.Selectio... method __bool__ (line 13385) | def __bool__(self) -> bool: ... method __eq__ (line 13386) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13387) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13388) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13389) | def __hash__(self) -> int: ... method __index__ (line 13390) | def __index__(self) -> int: ... method __int__ (line 13391) | def __int__(self) -> int: ... method __le__ (line 13392) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13393) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13394) | def __mul__(self, other: typing.SupportsInt) -> QTextCursor.Selectio... method __ne__ (line 13395) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13396) | def __or__(self, other: typing.SupportsInt) -> QTextCursor.Selection... method __pos__ (line 13397) | def __pos__(self): ... method __radd__ (line 13398) | def __radd__(self, other: typing.SupportsInt) -> QTextCursor.Selecti... method __rand__ (line 13399) | def __rand__(self, other: typing.SupportsInt) -> QTextCursor.Selecti... method __rmul__ (line 13400) | def __rmul__(self, other: typing.SupportsInt) -> QTextCursor.Selecti... method __ror__ (line 13401) | def __ror__(self, other: typing.SupportsInt) -> QTextCursor.Selectio... method __rsub__ (line 13402) | def __rsub__(self, other: typing.SupportsInt) -> QTextCursor.Selecti... method __rxor__ (line 13403) | def __rxor__(self, other: typing.SupportsInt) -> QTextCursor.Selecti... method __sub__ (line 13404) | def __sub__(self, other: typing.SupportsInt) -> QTextCursor.Selectio... method __xor__ (line 13405) | def __xor__(self, other: typing.SupportsInt) -> QTextCursor.Selectio... method __init__ (line 13438) | def __init__(self, frame: QTextFrame) -> None: ... method __init__ (line 13440) | def __init__(self, document: QTextDocument) -> None: ... method __init__ (line 13442) | def __init__(self, cursor: QTextCursor) -> None: ... method __init__ (line 13444) | def __init__(self, block: QTextBlock) -> None: ... method __init__ (line 13446) | def __init__(self) -> None: ... method anchor (line 13447) | def anchor(self) -> int: ... method atBlockEnd (line 13448) | def atBlockEnd(self) -> bool: ... method atBlockStart (line 13449) | def atBlockStart(self) -> bool: ... method atEnd (line 13450) | def atEnd(self) -> bool: ... method atStart (line 13451) | def atStart(self) -> bool: ... method beginEditBlock (line 13452) | def beginEditBlock(self) -> None: ... method block (line 13453) | def block(self) -> QTextBlock: ... method blockCharFormat (line 13454) | def blockCharFormat(self) -> QTextCharFormat: ... method blockFormat (line 13455) | def blockFormat(self) -> QTextBlockFormat: ... method blockNumber (line 13456) | def blockNumber(self) -> int: ... method charFormat (line 13457) | def charFormat(self) -> QTextCharFormat: ... method clearSelection (line 13458) | def clearSelection(self) -> None: ... method columnNumber (line 13459) | def columnNumber(self) -> int: ... method createList (line 13461) | def createList(self, style: QTextListFormat.Style) -> QTextList: ... method createList (line 13463) | def createList(self, format: QTextListFormat) -> QTextList: ... method currentFrame (line 13464) | def currentFrame(self) -> QTextFrame: ... method currentList (line 13465) | def currentList(self) -> QTextList: ... method currentTable (line 13466) | def currentTable(self) -> QTextTable: ... method deleteChar (line 13467) | def deleteChar(self) -> None: ... method deletePreviousChar (line 13468) | def deletePreviousChar(self) -> None: ... method document (line 13469) | def document(self) -> QTextDocument: ... method endEditBlock (line 13470) | def endEditBlock(self) -> None: ... method hasComplexSelection (line 13471) | def hasComplexSelection(self) -> bool: ... method hasSelection (line 13472) | def hasSelection(self) -> bool: ... method insertBlock (line 13474) | def insertBlock(self, format: QTextBlockFormat, charFormat: QTextCharF... method insertBlock (line 13476) | def insertBlock(self, format: QTextBlockFormat) -> None: ... method insertBlock (line 13478) | def insertBlock(self) -> None: ... method insertFragment (line 13479) | def insertFragment(self, fragment: QTextDocumentFragment) -> None: ... method insertFrame (line 13480) | def insertFrame(self, format: QTextFrameFormat) -> QTextFrame: ... method insertHtml (line 13481) | def insertHtml(self, html: str) -> None: ... method insertImage (line 13483) | def insertImage(self, image: QImage, name: str = ...) -> None: ... method insertImage (line 13485) | def insertImage(self, format: QTextImageFormat, alignment: QTextFrameF... method insertImage (line 13487) | def insertImage(self, name: str) -> None: ... method insertImage (line 13489) | def insertImage(self, format: QTextImageFormat) -> None: ... method insertList (line 13491) | def insertList(self, style: QTextListFormat.Style) -> QTextList: ... method insertList (line 13493) | def insertList(self, format: QTextListFormat) -> QTextList: ... method insertTable (line 13495) | def insertTable(self, rows: int, cols: int, format: QTextTableFormat) ... method insertTable (line 13497) | def insertTable(self, rows: int, cols: int) -> QTextTable: ... method insertText (line 13499) | def insertText(self, text: str, format: QTextCharFormat) -> None: ... method insertText (line 13501) | def insertText(self, text: str) -> None: ... method isCopyOf (line 13502) | def isCopyOf(self, other: QTextCursor) -> bool: ... method isNull (line 13503) | def isNull(self) -> bool: ... method joinPreviousEditBlock (line 13504) | def joinPreviousEditBlock(self) -> None: ... method keepPositionOnInsert (line 13505) | def keepPositionOnInsert(self) -> bool: ... method mergeBlockCharFormat (line 13506) | def mergeBlockCharFormat(self, modifier: QTextCharFormat) -> None: ... method mergeBlockFormat (line 13507) | def mergeBlockFormat(self, modifier: QTextBlockFormat) -> None: ... method mergeCharFormat (line 13508) | def mergeCharFormat(self, modifier: QTextCharFormat) -> None: ... method movePosition (line 13509) | def movePosition(self, op: QTextCursor.MoveOperation, arg__2: QTextCur... method position (line 13510) | def position(self) -> int: ... method positionInBlock (line 13511) | def positionInBlock(self) -> int: ... method removeSelectedText (line 13512) | def removeSelectedText(self) -> None: ... method select (line 13513) | def select(self, selection: QTextCursor.SelectionType) -> None: ... method selectedTableCells (line 13514) | def selectedTableCells(self) -> tuple[int, int, int, int]: ... method selectedText (line 13515) | def selectedText(self) -> str: ... method selection (line 13516) | def selection(self) -> QTextDocumentFragment: ... method selectionEnd (line 13517) | def selectionEnd(self) -> int: ... method selectionStart (line 13518) | def selectionStart(self) -> int: ... method setBlockCharFormat (line 13519) | def setBlockCharFormat(self, format: QTextCharFormat) -> None: ... method setBlockFormat (line 13520) | def setBlockFormat(self, format: QTextBlockFormat) -> None: ... method setCharFormat (line 13521) | def setCharFormat(self, format: QTextCharFormat) -> None: ... method setKeepPositionOnInsert (line 13522) | def setKeepPositionOnInsert(self, b: bool) -> None: ... method setPosition (line 13523) | def setPosition(self, pos: int, mode: QTextCursor.MoveMode = ...) -> N... method setVerticalMovementX (line 13524) | def setVerticalMovementX(self, x: int) -> None: ... method setVisualNavigation (line 13525) | def setVisualNavigation(self, b: bool) -> None: ... method swap (line 13526) | def swap(self, other: QTextCursor) -> None: ... method verticalMovementX (line 13527) | def verticalMovementX(self) -> int: ... method visualNavigation (line 13528) | def visualNavigation(self) -> bool: ... method __bool__ (line 13529) | def __bool__(self) -> bool: ... method __copy__ (line 13530) | def __copy__(self) -> None: ... method __eq__ (line 13531) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13532) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13533) | def __gt__(self, other: object) -> bool: ... method __le__ (line 13534) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13535) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13536) | def __ne__(self, other: object) -> bool: ... class QTextDocument (line 13538) | class QTextDocument(PySide2.QtCore.QObject): class FindFlag (line 13539) | class FindFlag: method __init__ (line 13546) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13547) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.FindFl... method __bool__ (line 13548) | def __bool__(self) -> bool: ... method __eq__ (line 13549) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13550) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13551) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13552) | def __hash__(self) -> int: ... method __index__ (line 13553) | def __index__(self) -> int: ... method __int__ (line 13554) | def __int__(self) -> int: ... method __invert__ (line 13555) | def __invert__(self) -> QTextDocument.FindFlags: ... method __le__ (line 13556) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13557) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13558) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13559) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.FindFla... method __rand__ (line 13560) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.FindF... method __ror__ (line 13561) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.FindFl... method __rxor__ (line 13562) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.FindF... method __xor__ (line 13563) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.FindFl... class FindFlags (line 13565) | class FindFlags: method __init__ (line 13567) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13568) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.FindFl... method __bool__ (line 13569) | def __bool__(self) -> bool: ... method __eq__ (line 13570) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13571) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13572) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13573) | def __index__(self) -> int: ... method __int__ (line 13574) | def __int__(self) -> int: ... method __invert__ (line 13575) | def __invert__(self) -> QTextDocument.FindFlags: ... method __le__ (line 13576) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13577) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13578) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13579) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.FindFla... method __rand__ (line 13580) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.FindF... method __ror__ (line 13581) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.FindFl... method __rxor__ (line 13582) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.FindF... method __xor__ (line 13583) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.FindFl... class MarkdownFeature (line 13585) | class MarkdownFeature: method __init__ (line 13592) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13593) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.Markdo... method __bool__ (line 13594) | def __bool__(self) -> bool: ... method __eq__ (line 13595) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13596) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13597) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13598) | def __hash__(self) -> int: ... method __index__ (line 13599) | def __index__(self) -> int: ... method __int__ (line 13600) | def __int__(self) -> int: ... method __invert__ (line 13601) | def __invert__(self) -> QTextDocument.MarkdownFeatures: ... method __le__ (line 13602) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13603) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13604) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13605) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.Markdow... method __rand__ (line 13606) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.Markd... method __ror__ (line 13607) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.Markdo... method __rxor__ (line 13608) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.Markd... method __xor__ (line 13609) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.Markdo... class MarkdownFeatures (line 13611) | class MarkdownFeatures: method __init__ (line 13613) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13614) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.Markdo... method __bool__ (line 13615) | def __bool__(self) -> bool: ... method __eq__ (line 13616) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13617) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13618) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13619) | def __index__(self) -> int: ... method __int__ (line 13620) | def __int__(self) -> int: ... method __invert__ (line 13621) | def __invert__(self) -> QTextDocument.MarkdownFeatures: ... method __le__ (line 13622) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13623) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13624) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13625) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.Markdow... method __rand__ (line 13626) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.Markd... method __ror__ (line 13627) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.Markdo... method __rxor__ (line 13628) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.Markd... method __xor__ (line 13629) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.Markdo... class MetaInformation (line 13631) | class MetaInformation: method __init__ (line 13637) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13638) | def __add__(self, other: typing.SupportsInt) -> QTextDocument.MetaIn... method __and__ (line 13639) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.MetaIn... method __bool__ (line 13640) | def __bool__(self) -> bool: ... method __eq__ (line 13641) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13642) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13643) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13644) | def __hash__(self) -> int: ... method __index__ (line 13645) | def __index__(self) -> int: ... method __int__ (line 13646) | def __int__(self) -> int: ... method __le__ (line 13647) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13648) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13649) | def __mul__(self, other: typing.SupportsInt) -> QTextDocument.MetaIn... method __ne__ (line 13650) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13651) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.MetaInf... method __pos__ (line 13652) | def __pos__(self): ... method __radd__ (line 13653) | def __radd__(self, other: typing.SupportsInt) -> QTextDocument.MetaI... method __rand__ (line 13654) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.MetaI... method __rmul__ (line 13655) | def __rmul__(self, other: typing.SupportsInt) -> QTextDocument.MetaI... method __ror__ (line 13656) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.MetaIn... method __rsub__ (line 13657) | def __rsub__(self, other: typing.SupportsInt) -> QTextDocument.MetaI... method __rxor__ (line 13658) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.MetaI... method __sub__ (line 13659) | def __sub__(self, other: typing.SupportsInt) -> QTextDocument.MetaIn... method __xor__ (line 13660) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.MetaIn... class ResourceType (line 13662) | class ResourceType: method __init__ (line 13672) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13673) | def __add__(self, other: typing.SupportsInt) -> QTextDocument.Resour... method __and__ (line 13674) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.Resour... method __bool__ (line 13675) | def __bool__(self) -> bool: ... method __eq__ (line 13676) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13677) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13678) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13679) | def __hash__(self) -> int: ... method __index__ (line 13680) | def __index__(self) -> int: ... method __int__ (line 13681) | def __int__(self) -> int: ... method __le__ (line 13682) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13683) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13684) | def __mul__(self, other: typing.SupportsInt) -> QTextDocument.Resour... method __ne__ (line 13685) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13686) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.Resourc... method __pos__ (line 13687) | def __pos__(self): ... method __radd__ (line 13688) | def __radd__(self, other: typing.SupportsInt) -> QTextDocument.Resou... method __rand__ (line 13689) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.Resou... method __rmul__ (line 13690) | def __rmul__(self, other: typing.SupportsInt) -> QTextDocument.Resou... method __ror__ (line 13691) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.Resour... method __rsub__ (line 13692) | def __rsub__(self, other: typing.SupportsInt) -> QTextDocument.Resou... method __rxor__ (line 13693) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.Resou... method __sub__ (line 13694) | def __sub__(self, other: typing.SupportsInt) -> QTextDocument.Resour... method __xor__ (line 13695) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.Resour... class Stacks (line 13697) | class Stacks: method __init__ (line 13704) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13705) | def __add__(self, other: typing.SupportsInt) -> QTextDocument.Stacks... method __and__ (line 13706) | def __and__(self, other: typing.SupportsInt) -> QTextDocument.Stacks... method __bool__ (line 13707) | def __bool__(self) -> bool: ... method __eq__ (line 13708) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13709) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13710) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13711) | def __hash__(self) -> int: ... method __index__ (line 13712) | def __index__(self) -> int: ... method __int__ (line 13713) | def __int__(self) -> int: ... method __le__ (line 13714) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13715) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13716) | def __mul__(self, other: typing.SupportsInt) -> QTextDocument.Stacks... method __ne__ (line 13717) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13718) | def __or__(self, other: typing.SupportsInt) -> QTextDocument.Stacks:... method __pos__ (line 13719) | def __pos__(self): ... method __radd__ (line 13720) | def __radd__(self, other: typing.SupportsInt) -> QTextDocument.Stack... method __rand__ (line 13721) | def __rand__(self, other: typing.SupportsInt) -> QTextDocument.Stack... method __rmul__ (line 13722) | def __rmul__(self, other: typing.SupportsInt) -> QTextDocument.Stack... method __ror__ (line 13723) | def __ror__(self, other: typing.SupportsInt) -> QTextDocument.Stacks... method __rsub__ (line 13724) | def __rsub__(self, other: typing.SupportsInt) -> QTextDocument.Stack... method __rxor__ (line 13725) | def __rxor__(self, other: typing.SupportsInt) -> QTextDocument.Stack... method __sub__ (line 13726) | def __sub__(self, other: typing.SupportsInt) -> QTextDocument.Stacks... method __xor__ (line 13727) | def __xor__(self, other: typing.SupportsInt) -> QTextDocument.Stacks... method __init__ (line 13757) | def __init__(self, text: str, parent: PySide2.QtCore.QObject | None = ... method __init__ (line 13759) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., baseUr... method addResource (line 13760) | def addResource(self, type: int, name: PySide2.QtCore.QUrl, resource: ... method adjustSize (line 13761) | def adjustSize(self) -> None: ... method allFormats (line 13762) | def allFormats(self) -> list[QTextFormat]: ... method availableRedoSteps (line 13763) | def availableRedoSteps(self) -> int: ... method availableUndoSteps (line 13764) | def availableUndoSteps(self) -> int: ... method baseUrl (line 13765) | def baseUrl(self) -> PySide2.QtCore.QUrl: ... method begin (line 13766) | def begin(self) -> QTextBlock: ... method blockCount (line 13767) | def blockCount(self) -> int: ... method characterAt (line 13768) | def characterAt(self, pos: int) -> str: ... method characterCount (line 13769) | def characterCount(self) -> int: ... method clear (line 13770) | def clear(self) -> None: ... method clearUndoRedoStacks (line 13771) | def clearUndoRedoStacks(self, historyToClear: QTextDocument.Stacks = .... method clone (line 13772) | def clone(self, parent: PySide2.QtCore.QObject | None = ...) -> QTextD... method createObject (line 13773) | def createObject(self, f: QTextFormat) -> QTextObject: ... method defaultCursorMoveStyle (line 13774) | def defaultCursorMoveStyle(self) -> PySide2.QtCore.Qt.CursorMoveStyle:... method defaultFont (line 13775) | def defaultFont(self) -> QFont: ... method defaultStyleSheet (line 13776) | def defaultStyleSheet(self) -> str: ... method defaultTextOption (line 13777) | def defaultTextOption(self) -> QTextOption: ... method documentLayout (line 13778) | def documentLayout(self) -> QAbstractTextDocumentLayout: ... method documentMargin (line 13779) | def documentMargin(self) -> float: ... method drawContents (line 13780) | def drawContents(self, painter: QPainter, rect: PySide2.QtCore.QRectF ... method end (line 13781) | def end(self) -> QTextBlock: ... method find (line 13783) | def find(self, subString: str, from_: int = ..., options: QTextDocumen... method find (line 13785) | def find(self, subString: str, cursor: QTextCursor, options: QTextDocu... method find (line 13787) | def find(self, expr: PySide2.QtCore.QRegExp, from_: int = ..., options... method find (line 13789) | def find(self, expr: PySide2.QtCore.QRegularExpression, from_: int = .... method find (line 13791) | def find(self, expr: PySide2.QtCore.QRegExp, cursor: QTextCursor, opti... method find (line 13793) | def find(self, expr: PySide2.QtCore.QRegularExpression, cursor: QTextC... method findBlock (line 13794) | def findBlock(self, pos: int) -> QTextBlock: ... method findBlockByLineNumber (line 13795) | def findBlockByLineNumber(self, blockNumber: int) -> QTextBlock: ... method findBlockByNumber (line 13796) | def findBlockByNumber(self, blockNumber: int) -> QTextBlock: ... method firstBlock (line 13797) | def firstBlock(self) -> QTextBlock: ... method frameAt (line 13798) | def frameAt(self, pos: int) -> QTextFrame: ... method idealWidth (line 13799) | def idealWidth(self) -> float: ... method indentWidth (line 13800) | def indentWidth(self) -> float: ... method isEmpty (line 13801) | def isEmpty(self) -> bool: ... method isModified (line 13802) | def isModified(self) -> bool: ... method isRedoAvailable (line 13803) | def isRedoAvailable(self) -> bool: ... method isUndoAvailable (line 13804) | def isUndoAvailable(self) -> bool: ... method isUndoRedoEnabled (line 13805) | def isUndoRedoEnabled(self) -> bool: ... method lastBlock (line 13806) | def lastBlock(self) -> QTextBlock: ... method lineCount (line 13807) | def lineCount(self) -> int: ... method loadResource (line 13808) | def loadResource(self, type: int, name: PySide2.QtCore.QUrl) -> typing... method markContentsDirty (line 13809) | def markContentsDirty(self, from_: int, length: int) -> None: ... method maximumBlockCount (line 13810) | def maximumBlockCount(self) -> int: ... method metaInformation (line 13811) | def metaInformation(self, info: QTextDocument.MetaInformation) -> str:... method object (line 13812) | def object(self, objectIndex: int) -> QTextObject: ... method objectForFormat (line 13813) | def objectForFormat(self, arg__1: QTextFormat) -> QTextObject: ... method pageCount (line 13814) | def pageCount(self) -> int: ... method pageSize (line 13815) | def pageSize(self) -> PySide2.QtCore.QSizeF: ... method print_ (line 13816) | def print_(self, printer: QPagedPaintDevice) -> None: ... method redo (line 13818) | def redo(self, cursor: QTextCursor) -> None: ... method redo (line 13820) | def redo(self) -> None: ... method resource (line 13821) | def resource(self, type: int, name: PySide2.QtCore.QUrl) -> typing.Any... method revision (line 13822) | def revision(self) -> int: ... method rootFrame (line 13823) | def rootFrame(self) -> QTextFrame: ... method setBaseUrl (line 13824) | def setBaseUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method setDefaultCursorMoveStyle (line 13825) | def setDefaultCursorMoveStyle(self, style: PySide2.QtCore.Qt.CursorMov... method setDefaultFont (line 13826) | def setDefaultFont(self, font: QFont) -> None: ... method setDefaultStyleSheet (line 13827) | def setDefaultStyleSheet(self, sheet: str) -> None: ... method setDefaultTextOption (line 13828) | def setDefaultTextOption(self, option: QTextOption) -> None: ... method setDocumentLayout (line 13829) | def setDocumentLayout(self, layout: QAbstractTextDocumentLayout) -> No... method setDocumentMargin (line 13830) | def setDocumentMargin(self, margin: float) -> None: ... method setHtml (line 13831) | def setHtml(self, html: str) -> None: ... method setIndentWidth (line 13832) | def setIndentWidth(self, width: float) -> None: ... method setMarkdown (line 13833) | def setMarkdown(self, markdown: str, features: QTextDocument.MarkdownF... method setMaximumBlockCount (line 13834) | def setMaximumBlockCount(self, maximum: int) -> None: ... method setMetaInformation (line 13835) | def setMetaInformation(self, info: QTextDocument.MetaInformation, arg_... method setModified (line 13836) | def setModified(self, m: bool = ...) -> None: ... method setPageSize (line 13837) | def setPageSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method setPlainText (line 13838) | def setPlainText(self, text: str) -> None: ... method setTextWidth (line 13839) | def setTextWidth(self, width: float) -> None: ... method setUndoRedoEnabled (line 13840) | def setUndoRedoEnabled(self, enable: bool) -> None: ... method setUseDesignMetrics (line 13841) | def setUseDesignMetrics(self, b: bool) -> None: ... method size (line 13842) | def size(self) -> PySide2.QtCore.QSizeF: ... method textWidth (line 13843) | def textWidth(self) -> float: ... method toHtml (line 13844) | def toHtml(self, encoding: PySide2.QtCore.QByteArray | bytes = ...) ->... method toMarkdown (line 13845) | def toMarkdown(self, features: QTextDocument.MarkdownFeatures | QTextD... method toPlainText (line 13846) | def toPlainText(self) -> str: ... method toRawText (line 13847) | def toRawText(self) -> str: ... method undo (line 13849) | def undo(self, cursor: QTextCursor) -> None: ... method undo (line 13851) | def undo(self) -> None: ... method useDesignMetrics (line 13852) | def useDesignMetrics(self) -> bool: ... class QTextDocumentFragment (line 13854) | class QTextDocumentFragment(shiboken2.Object): method __init__ (line 13856) | def __init__(self, rhs: QTextDocumentFragment) -> None: ... method __init__ (line 13858) | def __init__(self, range: QTextCursor) -> None: ... method __init__ (line 13860) | def __init__(self, document: QTextDocument) -> None: ... method __init__ (line 13862) | def __init__(self) -> None: ... method fromHtml (line 13865) | def fromHtml(html: str, resourceProvider: QTextDocument) -> QTextDocum... method fromHtml (line 13868) | def fromHtml(html: str) -> QTextDocumentFragment: ... method fromPlainText (line 13870) | def fromPlainText(plainText: str) -> QTextDocumentFragment: ... method isEmpty (line 13871) | def isEmpty(self) -> bool: ... method toHtml (line 13872) | def toHtml(self, encoding: PySide2.QtCore.QByteArray | bytes = ...) ->... method toPlainText (line 13873) | def toPlainText(self) -> str: ... method __copy__ (line 13874) | def __copy__(self) -> None: ... class QTextDocumentWriter (line 13876) | class QTextDocumentWriter(shiboken2.Object): method __init__ (line 13878) | def __init__(self, fileName: str, format: PySide2.QtCore.QByteArray | ... method __init__ (line 13880) | def __init__(self, device: PySide2.QtCore.QIODevice, format: PySide2.Q... method __init__ (line 13882) | def __init__(self) -> None: ... method codec (line 13883) | def codec(self) -> PySide2.QtCore.QTextCodec: ... method device (line 13884) | def device(self) -> PySide2.QtCore.QIODevice: ... method fileName (line 13885) | def fileName(self) -> str: ... method format (line 13886) | def format(self) -> PySide2.QtCore.QByteArray: ... method setCodec (line 13887) | def setCodec(self, codec: PySide2.QtCore.QTextCodec) -> None: ... method setDevice (line 13888) | def setDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setFileName (line 13889) | def setFileName(self, fileName: str) -> None: ... method setFormat (line 13890) | def setFormat(self, format: PySide2.QtCore.QByteArray | bytes) -> None... method supportedDocumentFormats (line 13892) | def supportedDocumentFormats() -> list[PySide2.QtCore.QByteArray]: ... method write (line 13894) | def write(self, fragment: QTextDocumentFragment) -> bool: ... method write (line 13896) | def write(self, document: QTextDocument) -> bool: ... class QTextFormat (line 13898) | class QTextFormat(shiboken2.Object): class FormatType (line 13899) | class FormatType: method __init__ (line 13910) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13911) | def __add__(self, other: typing.SupportsInt) -> QTextFormat.FormatTy... method __and__ (line 13912) | def __and__(self, other: typing.SupportsInt) -> QTextFormat.FormatTy... method __bool__ (line 13913) | def __bool__(self) -> bool: ... method __eq__ (line 13914) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13915) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13916) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13917) | def __hash__(self) -> int: ... method __index__ (line 13918) | def __index__(self) -> int: ... method __int__ (line 13919) | def __int__(self) -> int: ... method __le__ (line 13920) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13921) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13922) | def __mul__(self, other: typing.SupportsInt) -> QTextFormat.FormatTy... method __ne__ (line 13923) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13924) | def __or__(self, other: typing.SupportsInt) -> QTextFormat.FormatTyp... method __pos__ (line 13925) | def __pos__(self): ... method __radd__ (line 13926) | def __radd__(self, other: typing.SupportsInt) -> QTextFormat.FormatT... method __rand__ (line 13927) | def __rand__(self, other: typing.SupportsInt) -> QTextFormat.FormatT... method __rmul__ (line 13928) | def __rmul__(self, other: typing.SupportsInt) -> QTextFormat.FormatT... method __ror__ (line 13929) | def __ror__(self, other: typing.SupportsInt) -> QTextFormat.FormatTy... method __rsub__ (line 13930) | def __rsub__(self, other: typing.SupportsInt) -> QTextFormat.FormatT... method __rxor__ (line 13931) | def __rxor__(self, other: typing.SupportsInt) -> QTextFormat.FormatT... method __sub__ (line 13932) | def __sub__(self, other: typing.SupportsInt) -> QTextFormat.FormatTy... method __xor__ (line 13933) | def __xor__(self, other: typing.SupportsInt) -> QTextFormat.FormatTy... class ObjectTypes (line 13935) | class ObjectTypes: method __init__ (line 13944) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13945) | def __add__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTy... method __and__ (line 13946) | def __and__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTy... method __bool__ (line 13947) | def __bool__(self) -> bool: ... method __eq__ (line 13948) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13949) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13950) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13951) | def __hash__(self) -> int: ... method __index__ (line 13952) | def __index__(self) -> int: ... method __int__ (line 13953) | def __int__(self) -> int: ... method __le__ (line 13954) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13955) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13956) | def __mul__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTy... method __ne__ (line 13957) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13958) | def __or__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTyp... method __pos__ (line 13959) | def __pos__(self): ... method __radd__ (line 13960) | def __radd__(self, other: typing.SupportsInt) -> QTextFormat.ObjectT... method __rand__ (line 13961) | def __rand__(self, other: typing.SupportsInt) -> QTextFormat.ObjectT... method __rmul__ (line 13962) | def __rmul__(self, other: typing.SupportsInt) -> QTextFormat.ObjectT... method __ror__ (line 13963) | def __ror__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTy... method __rsub__ (line 13964) | def __rsub__(self, other: typing.SupportsInt) -> QTextFormat.ObjectT... method __rxor__ (line 13965) | def __rxor__(self, other: typing.SupportsInt) -> QTextFormat.ObjectT... method __sub__ (line 13966) | def __sub__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTy... method __xor__ (line 13967) | def __xor__(self, other: typing.SupportsInt) -> QTextFormat.ObjectTy... class PageBreakFlag (line 13969) | class PageBreakFlag: method __init__ (line 13976) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13977) | def __and__(self, other: typing.SupportsInt) -> QTextFormat.PageBrea... method __bool__ (line 13978) | def __bool__(self) -> bool: ... method __eq__ (line 13979) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13980) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13981) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13982) | def __hash__(self) -> int: ... method __index__ (line 13983) | def __index__(self) -> int: ... method __int__ (line 13984) | def __int__(self) -> int: ... method __invert__ (line 13985) | def __invert__(self) -> QTextFormat.PageBreakFlags: ... method __le__ (line 13986) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13987) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13988) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13989) | def __or__(self, other: typing.SupportsInt) -> QTextFormat.PageBreak... method __rand__ (line 13990) | def __rand__(self, other: typing.SupportsInt) -> QTextFormat.PageBre... method __ror__ (line 13991) | def __ror__(self, other: typing.SupportsInt) -> QTextFormat.PageBrea... method __rxor__ (line 13992) | def __rxor__(self, other: typing.SupportsInt) -> QTextFormat.PageBre... method __xor__ (line 13993) | def __xor__(self, other: typing.SupportsInt) -> QTextFormat.PageBrea... class PageBreakFlags (line 13995) | class PageBreakFlags: method __init__ (line 13997) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13998) | def __and__(self, other: typing.SupportsInt) -> QTextFormat.PageBrea... method __bool__ (line 13999) | def __bool__(self) -> bool: ... method __eq__ (line 14000) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14001) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14002) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14003) | def __index__(self) -> int: ... method __int__ (line 14004) | def __int__(self) -> int: ... method __invert__ (line 14005) | def __invert__(self) -> QTextFormat.PageBreakFlags: ... method __le__ (line 14006) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14007) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14008) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14009) | def __or__(self, other: typing.SupportsInt) -> QTextFormat.PageBreak... method __rand__ (line 14010) | def __rand__(self, other: typing.SupportsInt) -> QTextFormat.PageBre... method __ror__ (line 14011) | def __ror__(self, other: typing.SupportsInt) -> QTextFormat.PageBrea... method __rxor__ (line 14012) | def __rxor__(self, other: typing.SupportsInt) -> QTextFormat.PageBre... method __xor__ (line 14013) | def __xor__(self, other: typing.SupportsInt) -> QTextFormat.PageBrea... class Property (line 14015) | class Property: method __init__ (line 14124) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14125) | def __add__(self, other: typing.SupportsInt) -> QTextFormat.Property... method __and__ (line 14126) | def __and__(self, other: typing.SupportsInt) -> QTextFormat.Property... method __bool__ (line 14127) | def __bool__(self) -> bool: ... method __eq__ (line 14128) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14129) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14130) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14131) | def __hash__(self) -> int: ... method __index__ (line 14132) | def __index__(self) -> int: ... method __int__ (line 14133) | def __int__(self) -> int: ... method __le__ (line 14134) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14135) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14136) | def __mul__(self, other: typing.SupportsInt) -> QTextFormat.Property... method __ne__ (line 14137) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14138) | def __or__(self, other: typing.SupportsInt) -> QTextFormat.Property:... method __pos__ (line 14139) | def __pos__(self): ... method __radd__ (line 14140) | def __radd__(self, other: typing.SupportsInt) -> QTextFormat.Propert... method __rand__ (line 14141) | def __rand__(self, other: typing.SupportsInt) -> QTextFormat.Propert... method __rmul__ (line 14142) | def __rmul__(self, other: typing.SupportsInt) -> QTextFormat.Propert... method __ror__ (line 14143) | def __ror__(self, other: typing.SupportsInt) -> QTextFormat.Property... method __rsub__ (line 14144) | def __rsub__(self, other: typing.SupportsInt) -> QTextFormat.Propert... method __rxor__ (line 14145) | def __rxor__(self, other: typing.SupportsInt) -> QTextFormat.Propert... method __sub__ (line 14146) | def __sub__(self, other: typing.SupportsInt) -> QTextFormat.Property... method __xor__ (line 14147) | def __xor__(self, other: typing.SupportsInt) -> QTextFormat.Property... method __init__ (line 14269) | def __init__(self, type: int) -> None: ... method __init__ (line 14271) | def __init__(self, rhs: QTextFormat) -> None: ... method __init__ (line 14273) | def __init__(self) -> None: ... method background (line 14274) | def background(self) -> QBrush: ... method boolProperty (line 14275) | def boolProperty(self, propertyId: int) -> bool: ... method brushProperty (line 14276) | def brushProperty(self, propertyId: int) -> QBrush: ... method clearBackground (line 14277) | def clearBackground(self) -> None: ... method clearForeground (line 14278) | def clearForeground(self) -> None: ... method clearProperty (line 14279) | def clearProperty(self, propertyId: int) -> None: ... method colorProperty (line 14280) | def colorProperty(self, propertyId: int) -> QColor: ... method doubleProperty (line 14281) | def doubleProperty(self, propertyId: int) -> float: ... method foreground (line 14282) | def foreground(self) -> QBrush: ... method hasProperty (line 14283) | def hasProperty(self, propertyId: int) -> bool: ... method intProperty (line 14284) | def intProperty(self, propertyId: int) -> int: ... method isBlockFormat (line 14285) | def isBlockFormat(self) -> bool: ... method isCharFormat (line 14286) | def isCharFormat(self) -> bool: ... method isEmpty (line 14287) | def isEmpty(self) -> bool: ... method isFrameFormat (line 14288) | def isFrameFormat(self) -> bool: ... method isImageFormat (line 14289) | def isImageFormat(self) -> bool: ... method isListFormat (line 14290) | def isListFormat(self) -> bool: ... method isTableCellFormat (line 14291) | def isTableCellFormat(self) -> bool: ... method isTableFormat (line 14292) | def isTableFormat(self) -> bool: ... method isValid (line 14293) | def isValid(self) -> bool: ... method layoutDirection (line 14294) | def layoutDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method lengthProperty (line 14295) | def lengthProperty(self, propertyId: int) -> QTextLength: ... method lengthVectorProperty (line 14296) | def lengthVectorProperty(self, propertyId: int) -> list[QTextLength]: ... method merge (line 14297) | def merge(self, other: QTextFormat) -> None: ... method objectIndex (line 14298) | def objectIndex(self) -> int: ... method objectType (line 14299) | def objectType(self) -> int: ... method penProperty (line 14300) | def penProperty(self, propertyId: int) -> QPen: ... method properties (line 14301) | def properties(self) -> dict[int, typing.Any]: ... method property (line 14302) | def property(self, propertyId: int) -> typing.Any: ... method propertyCount (line 14303) | def propertyCount(self) -> int: ... method setBackground (line 14304) | def setBackground(self, brush: QBrush | QColor | PySide2.QtCore.Qt.Glo... method setForeground (line 14305) | def setForeground(self, brush: QBrush | QColor | PySide2.QtCore.Qt.Glo... method setLayoutDirection (line 14306) | def setLayoutDirection(self, direction: PySide2.QtCore.Qt.LayoutDirect... method setObjectIndex (line 14307) | def setObjectIndex(self, object: int) -> None: ... method setObjectType (line 14308) | def setObjectType(self, type: int) -> None: ... method setProperty (line 14310) | def setProperty(self, propertyId: int, value: typing.Any) -> None: ... method setProperty (line 14312) | def setProperty(self, propertyId: int, lengths: list[QTextLength]) -> ... method stringProperty (line 14313) | def stringProperty(self, propertyId: int) -> str: ... method swap (line 14314) | def swap(self, other: QTextFormat) -> None: ... method toBlockFormat (line 14315) | def toBlockFormat(self) -> QTextBlockFormat: ... method toCharFormat (line 14316) | def toCharFormat(self) -> QTextCharFormat: ... method toFrameFormat (line 14317) | def toFrameFormat(self) -> QTextFrameFormat: ... method toImageFormat (line 14318) | def toImageFormat(self) -> QTextImageFormat: ... method toListFormat (line 14319) | def toListFormat(self) -> QTextListFormat: ... method toTableCellFormat (line 14320) | def toTableCellFormat(self) -> QTextTableCellFormat: ... method toTableFormat (line 14321) | def toTableFormat(self) -> QTextTableFormat: ... method type (line 14322) | def type(self) -> int: ... method __copy__ (line 14323) | def __copy__(self) -> None: ... method __eq__ (line 14324) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14325) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14326) | def __gt__(self, other: object) -> bool: ... method __le__ (line 14327) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 14328) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 14329) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14330) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 14331) | def __rlshift__(self, other): ... method __rrshift__ (line 14332) | def __rrshift__(self, other): ... method __rshift__ (line 14333) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QTextFragment (line 14335) | class QTextFragment(shiboken2.Object): method __init__ (line 14337) | def __init__(self, o: QTextFragment) -> None: ... method __init__ (line 14339) | def __init__(self) -> None: ... method charFormat (line 14340) | def charFormat(self) -> QTextCharFormat: ... method charFormatIndex (line 14341) | def charFormatIndex(self) -> int: ... method contains (line 14342) | def contains(self, position: int) -> bool: ... method isValid (line 14343) | def isValid(self) -> bool: ... method length (line 14344) | def length(self) -> int: ... method position (line 14345) | def position(self) -> int: ... method text (line 14346) | def text(self) -> str: ... method __copy__ (line 14347) | def __copy__(self) -> None: ... method __eq__ (line 14348) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14349) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14350) | def __gt__(self, other: object) -> bool: ... method __le__ (line 14351) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14352) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14353) | def __ne__(self, other: object) -> bool: ... class QTextFrame (line 14355) | class QTextFrame(QTextObject): class iterator (line 14356) | class iterator(shiboken2.Object): method __init__ (line 14358) | def __init__(self, o: QTextFrame.iterator) -> None: ... method __init__ (line 14360) | def __init__(self) -> None: ... method atEnd (line 14361) | def atEnd(self) -> bool: ... method currentBlock (line 14362) | def currentBlock(self) -> QTextBlock: ... method currentFrame (line 14363) | def currentFrame(self) -> QTextFrame: ... method parentFrame (line 14364) | def parentFrame(self) -> QTextFrame: ... method __copy__ (line 14365) | def __copy__(self) -> None: ... method __eq__ (line 14366) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14367) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14368) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 14369) | def __iadd__(self, arg__1: int) -> QTextFrame.iterator: ... method __isub__ (line 14370) | def __isub__(self, arg__1: int) -> QTextFrame.iterator: ... method __iter__ (line 14371) | def __iter__(self) -> typing.Iterator: ... method __le__ (line 14372) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14373) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14374) | def __ne__(self, other: object) -> bool: ... method __next__ (line 14375) | def __next__(self) -> typing.Any: ... method __init__ (line 14377) | def __init__(self, doc: QTextDocument, destroyed: typing.Callable = ..... method begin (line 14378) | def begin(self) -> QTextFrame.iterator: ... method childFrames (line 14379) | def childFrames(self) -> list[QTextFrame]: ... method end (line 14380) | def end(self) -> QTextFrame.iterator: ... method firstCursorPosition (line 14381) | def firstCursorPosition(self) -> QTextCursor: ... method firstPosition (line 14382) | def firstPosition(self) -> int: ... method frameFormat (line 14383) | def frameFormat(self) -> QTextFrameFormat: ... method lastCursorPosition (line 14384) | def lastCursorPosition(self) -> QTextCursor: ... method lastPosition (line 14385) | def lastPosition(self) -> int: ... method parentFrame (line 14386) | def parentFrame(self) -> QTextFrame: ... method setFrameFormat (line 14387) | def setFrameFormat(self, format: QTextFrameFormat) -> None: ... method __iter__ (line 14388) | def __iter__(self) -> typing.Iterator: ... class QTextFrameFormat (line 14390) | class QTextFrameFormat(QTextFormat): class BorderStyle (line 14391) | class BorderStyle: method __init__ (line 14406) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14407) | def __add__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bor... method __and__ (line 14408) | def __and__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bor... method __bool__ (line 14409) | def __bool__(self) -> bool: ... method __eq__ (line 14410) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14411) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14412) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14413) | def __hash__(self) -> int: ... method __index__ (line 14414) | def __index__(self) -> int: ... method __int__ (line 14415) | def __int__(self) -> int: ... method __le__ (line 14416) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14417) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14418) | def __mul__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bor... method __ne__ (line 14419) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14420) | def __or__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bord... method __pos__ (line 14421) | def __pos__(self): ... method __radd__ (line 14422) | def __radd__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bo... method __rand__ (line 14423) | def __rand__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bo... method __rmul__ (line 14424) | def __rmul__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bo... method __ror__ (line 14425) | def __ror__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bor... method __rsub__ (line 14426) | def __rsub__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bo... method __rxor__ (line 14427) | def __rxor__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bo... method __sub__ (line 14428) | def __sub__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bor... method __xor__ (line 14429) | def __xor__(self, other: typing.SupportsInt) -> QTextFrameFormat.Bor... class Position (line 14431) | class Position: method __init__ (line 14438) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14439) | def __add__(self, other: typing.SupportsInt) -> QTextFrameFormat.Pos... method __and__ (line 14440) | def __and__(self, other: typing.SupportsInt) -> QTextFrameFormat.Pos... method __bool__ (line 14441) | def __bool__(self) -> bool: ... method __eq__ (line 14442) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14443) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14444) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14445) | def __hash__(self) -> int: ... method __index__ (line 14446) | def __index__(self) -> int: ... method __int__ (line 14447) | def __int__(self) -> int: ... method __le__ (line 14448) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14449) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14450) | def __mul__(self, other: typing.SupportsInt) -> QTextFrameFormat.Pos... method __ne__ (line 14451) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14452) | def __or__(self, other: typing.SupportsInt) -> QTextFrameFormat.Posi... method __pos__ (line 14453) | def __pos__(self): ... method __radd__ (line 14454) | def __radd__(self, other: typing.SupportsInt) -> QTextFrameFormat.Po... method __rand__ (line 14455) | def __rand__(self, other: typing.SupportsInt) -> QTextFrameFormat.Po... method __rmul__ (line 14456) | def __rmul__(self, other: typing.SupportsInt) -> QTextFrameFormat.Po... method __ror__ (line 14457) | def __ror__(self, other: typing.SupportsInt) -> QTextFrameFormat.Pos... method __rsub__ (line 14458) | def __rsub__(self, other: typing.SupportsInt) -> QTextFrameFormat.Po... method __rxor__ (line 14459) | def __rxor__(self, other: typing.SupportsInt) -> QTextFrameFormat.Po... method __sub__ (line 14460) | def __sub__(self, other: typing.SupportsInt) -> QTextFrameFormat.Pos... method __xor__ (line 14461) | def __xor__(self, other: typing.SupportsInt) -> QTextFrameFormat.Pos... method __init__ (line 14477) | def __init__(self, fmt: QTextFormat) -> None: ... method __init__ (line 14479) | def __init__(self, QTextFrameFormat: QTextFrameFormat) -> None: ... method __init__ (line 14481) | def __init__(self) -> None: ... method border (line 14482) | def border(self) -> float: ... method borderBrush (line 14483) | def borderBrush(self) -> QBrush: ... method borderStyle (line 14484) | def borderStyle(self) -> QTextFrameFormat.BorderStyle: ... method bottomMargin (line 14485) | def bottomMargin(self) -> float: ... method height (line 14486) | def height(self) -> QTextLength: ... method isValid (line 14487) | def isValid(self) -> bool: ... method leftMargin (line 14488) | def leftMargin(self) -> float: ... method margin (line 14489) | def margin(self) -> float: ... method padding (line 14490) | def padding(self) -> float: ... method pageBreakPolicy (line 14491) | def pageBreakPolicy(self) -> QTextFormat.PageBreakFlags | QTextFormat.... method position (line 14492) | def position(self) -> QTextFrameFormat.Position: ... method rightMargin (line 14493) | def rightMargin(self) -> float: ... method setBorder (line 14494) | def setBorder(self, border: float) -> None: ... method setBorderBrush (line 14495) | def setBorderBrush(self, brush: QBrush | QColor | PySide2.QtCore.Qt.Gl... method setBorderStyle (line 14496) | def setBorderStyle(self, style: QTextFrameFormat.BorderStyle) -> None:... method setBottomMargin (line 14497) | def setBottomMargin(self, margin: float) -> None: ... method setHeight (line 14499) | def setHeight(self, height: QTextLength) -> None: ... method setHeight (line 14501) | def setHeight(self, height: float) -> None: ... method setLeftMargin (line 14502) | def setLeftMargin(self, margin: float) -> None: ... method setMargin (line 14503) | def setMargin(self, margin: float) -> None: ... method setPadding (line 14504) | def setPadding(self, padding: float) -> None: ... method setPageBreakPolicy (line 14505) | def setPageBreakPolicy(self, flags: QTextFormat.PageBreakFlags | QText... method setPosition (line 14506) | def setPosition(self, f: QTextFrameFormat.Position) -> None: ... method setRightMargin (line 14507) | def setRightMargin(self, margin: float) -> None: ... method setTopMargin (line 14508) | def setTopMargin(self, margin: float) -> None: ... method setWidth (line 14510) | def setWidth(self, width: float) -> None: ... method setWidth (line 14512) | def setWidth(self, length: QTextLength) -> None: ... method topMargin (line 14513) | def topMargin(self) -> float: ... method width (line 14514) | def width(self) -> QTextLength: ... method __copy__ (line 14515) | def __copy__(self) -> None: ... class QTextImageFormat (line 14517) | class QTextImageFormat(QTextCharFormat): method __init__ (line 14519) | def __init__(self, format: QTextFormat) -> None: ... method __init__ (line 14521) | def __init__(self, QTextImageFormat: QTextImageFormat) -> None: ... method __init__ (line 14523) | def __init__(self) -> None: ... method height (line 14524) | def height(self) -> float: ... method isValid (line 14525) | def isValid(self) -> bool: ... method name (line 14526) | def name(self) -> str: ... method quality (line 14527) | def quality(self) -> int: ... method setHeight (line 14528) | def setHeight(self, height: float) -> None: ... method setName (line 14529) | def setName(self, name: str) -> None: ... method setQuality (line 14530) | def setQuality(self, quality: int = ...) -> None: ... method setWidth (line 14531) | def setWidth(self, width: float) -> None: ... method width (line 14532) | def width(self) -> float: ... method __copy__ (line 14533) | def __copy__(self) -> None: ... class QTextInlineObject (line 14535) | class QTextInlineObject(shiboken2.Object): method __init__ (line 14536) | def __init__(self) -> None: ... method ascent (line 14537) | def ascent(self) -> float: ... method descent (line 14538) | def descent(self) -> float: ... method format (line 14539) | def format(self) -> QTextFormat: ... method formatIndex (line 14540) | def formatIndex(self) -> int: ... method height (line 14541) | def height(self) -> float: ... method isValid (line 14542) | def isValid(self) -> bool: ... method rect (line 14543) | def rect(self) -> PySide2.QtCore.QRectF: ... method setAscent (line 14544) | def setAscent(self, a: float) -> None: ... method setDescent (line 14545) | def setDescent(self, d: float) -> None: ... method setWidth (line 14546) | def setWidth(self, w: float) -> None: ... method textDirection (line 14547) | def textDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method textPosition (line 14548) | def textPosition(self) -> int: ... method width (line 14549) | def width(self) -> float: ... method __copy__ (line 14550) | def __copy__(self) -> None: ... class QTextItem (line 14552) | class QTextItem(shiboken2.Object): class RenderFlag (line 14553) | class RenderFlag: method __init__ (line 14562) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14563) | def __and__(self, other: typing.SupportsInt) -> QTextItem.RenderFlag... method __bool__ (line 14564) | def __bool__(self) -> bool: ... method __eq__ (line 14565) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14566) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14567) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14568) | def __hash__(self) -> int: ... method __index__ (line 14569) | def __index__(self) -> int: ... method __int__ (line 14570) | def __int__(self) -> int: ... method __invert__ (line 14571) | def __invert__(self) -> QTextItem.RenderFlags: ... method __le__ (line 14572) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14573) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14574) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14575) | def __or__(self, other: typing.SupportsInt) -> QTextItem.RenderFlags... method __rand__ (line 14576) | def __rand__(self, other: typing.SupportsInt) -> QTextItem.RenderFla... method __ror__ (line 14577) | def __ror__(self, other: typing.SupportsInt) -> QTextItem.RenderFlag... method __rxor__ (line 14578) | def __rxor__(self, other: typing.SupportsInt) -> QTextItem.RenderFla... method __xor__ (line 14579) | def __xor__(self, other: typing.SupportsInt) -> QTextItem.RenderFlag... class RenderFlags (line 14581) | class RenderFlags: method __init__ (line 14583) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14584) | def __and__(self, other: typing.SupportsInt) -> QTextItem.RenderFlag... method __bool__ (line 14585) | def __bool__(self) -> bool: ... method __eq__ (line 14586) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14587) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14588) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14589) | def __index__(self) -> int: ... method __int__ (line 14590) | def __int__(self) -> int: ... method __invert__ (line 14591) | def __invert__(self) -> QTextItem.RenderFlags: ... method __le__ (line 14592) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14593) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14594) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14595) | def __or__(self, other: typing.SupportsInt) -> QTextItem.RenderFlags... method __rand__ (line 14596) | def __rand__(self, other: typing.SupportsInt) -> QTextItem.RenderFla... method __ror__ (line 14597) | def __ror__(self, other: typing.SupportsInt) -> QTextItem.RenderFlag... method __rxor__ (line 14598) | def __rxor__(self, other: typing.SupportsInt) -> QTextItem.RenderFla... method __xor__ (line 14599) | def __xor__(self, other: typing.SupportsInt) -> QTextItem.RenderFlag... method __init__ (line 14605) | def __init__(self) -> None: ... method ascent (line 14606) | def ascent(self) -> float: ... method descent (line 14607) | def descent(self) -> float: ... method font (line 14608) | def font(self) -> QFont: ... method renderFlags (line 14609) | def renderFlags(self) -> QTextItem.RenderFlags | QTextItem.RenderFlag:... method text (line 14610) | def text(self) -> str: ... method width (line 14611) | def width(self) -> float: ... class QTextLayout (line 14613) | class QTextLayout(shiboken2.Object): class CursorMode (line 14614) | class CursorMode: method __init__ (line 14620) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14621) | def __add__(self, other: typing.SupportsInt) -> QTextLayout.CursorMo... method __and__ (line 14622) | def __and__(self, other: typing.SupportsInt) -> QTextLayout.CursorMo... method __bool__ (line 14623) | def __bool__(self) -> bool: ... method __eq__ (line 14624) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14625) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14626) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14627) | def __hash__(self) -> int: ... method __index__ (line 14628) | def __index__(self) -> int: ... method __int__ (line 14629) | def __int__(self) -> int: ... method __le__ (line 14630) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14631) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14632) | def __mul__(self, other: typing.SupportsInt) -> QTextLayout.CursorMo... method __ne__ (line 14633) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14634) | def __or__(self, other: typing.SupportsInt) -> QTextLayout.CursorMod... method __pos__ (line 14635) | def __pos__(self): ... method __radd__ (line 14636) | def __radd__(self, other: typing.SupportsInt) -> QTextLayout.CursorM... method __rand__ (line 14637) | def __rand__(self, other: typing.SupportsInt) -> QTextLayout.CursorM... method __rmul__ (line 14638) | def __rmul__(self, other: typing.SupportsInt) -> QTextLayout.CursorM... method __ror__ (line 14639) | def __ror__(self, other: typing.SupportsInt) -> QTextLayout.CursorMo... method __rsub__ (line 14640) | def __rsub__(self, other: typing.SupportsInt) -> QTextLayout.CursorM... method __rxor__ (line 14641) | def __rxor__(self, other: typing.SupportsInt) -> QTextLayout.CursorM... method __sub__ (line 14642) | def __sub__(self, other: typing.SupportsInt) -> QTextLayout.CursorMo... method __xor__ (line 14643) | def __xor__(self, other: typing.SupportsInt) -> QTextLayout.CursorMo... class FormatRange (line 14645) | class FormatRange(shiboken2.Object): method __init__ (line 14650) | def __init__(self, FormatRange: QTextLayout.FormatRange) -> None: ... method __init__ (line 14652) | def __init__(self) -> None: ... method __copy__ (line 14653) | def __copy__(self) -> None: ... method __init__ (line 14657) | def __init__(self, text: str, font: QFont, paintdevice: QPaintDevice |... method __init__ (line 14659) | def __init__(self, text: str) -> None: ... method __init__ (line 14661) | def __init__(self, b: QTextBlock) -> None: ... method __init__ (line 14663) | def __init__(self) -> None: ... method additionalFormats (line 14664) | def additionalFormats(self) -> list[QTextLayout.FormatRange]: ... method beginLayout (line 14665) | def beginLayout(self) -> None: ... method boundingRect (line 14666) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method cacheEnabled (line 14667) | def cacheEnabled(self) -> bool: ... method clearAdditionalFormats (line 14668) | def clearAdditionalFormats(self) -> None: ... method clearFormats (line 14669) | def clearFormats(self) -> None: ... method clearLayout (line 14670) | def clearLayout(self) -> None: ... method createLine (line 14671) | def createLine(self) -> QTextLine: ... method cursorMoveStyle (line 14672) | def cursorMoveStyle(self) -> PySide2.QtCore.Qt.CursorMoveStyle: ... method draw (line 14673) | def draw(self, p: QPainter, pos: PySide2.QtCore.QPointF, selections: l... method drawCursor (line 14675) | def drawCursor(self, p: QPainter, pos: PySide2.QtCore.QPointF, cursorP... method drawCursor (line 14677) | def drawCursor(self, p: QPainter, pos: PySide2.QtCore.QPointF, cursorP... method endLayout (line 14678) | def endLayout(self) -> None: ... method font (line 14679) | def font(self) -> QFont: ... method formats (line 14680) | def formats(self) -> list[QTextLayout.FormatRange]: ... method isValidCursorPosition (line 14681) | def isValidCursorPosition(self, pos: int) -> bool: ... method leftCursorPosition (line 14682) | def leftCursorPosition(self, oldPos: int) -> int: ... method lineAt (line 14683) | def lineAt(self, i: int) -> QTextLine: ... method lineCount (line 14684) | def lineCount(self) -> int: ... method lineForTextPosition (line 14685) | def lineForTextPosition(self, pos: int) -> QTextLine: ... method maximumWidth (line 14686) | def maximumWidth(self) -> float: ... method minimumWidth (line 14687) | def minimumWidth(self) -> float: ... method nextCursorPosition (line 14688) | def nextCursorPosition(self, oldPos: int, mode: QTextLayout.CursorMode... method position (line 14689) | def position(self) -> PySide2.QtCore.QPointF: ... method preeditAreaPosition (line 14690) | def preeditAreaPosition(self) -> int: ... method preeditAreaText (line 14691) | def preeditAreaText(self) -> str: ... method previousCursorPosition (line 14692) | def previousCursorPosition(self, oldPos: int, mode: QTextLayout.Cursor... method rightCursorPosition (line 14693) | def rightCursorPosition(self, oldPos: int) -> int: ... method setAdditionalFormats (line 14694) | def setAdditionalFormats(self, overrides: typing.Iterable[QTextLayout.... method setCacheEnabled (line 14695) | def setCacheEnabled(self, enable: bool) -> None: ... method setCursorMoveStyle (line 14696) | def setCursorMoveStyle(self, style: PySide2.QtCore.Qt.CursorMoveStyle)... method setFlags (line 14697) | def setFlags(self, flags: typing.SupportsInt) -> None: ... method setFont (line 14698) | def setFont(self, f: QFont) -> None: ... method setFormats (line 14699) | def setFormats(self, overrides: list[QTextLayout.FormatRange]) -> None... method setPosition (line 14700) | def setPosition(self, p: PySide2.QtCore.QPointF) -> None: ... method setPreeditArea (line 14701) | def setPreeditArea(self, position: int, text: str) -> None: ... method setRawFont (line 14702) | def setRawFont(self, rawFont: QRawFont) -> None: ... method setText (line 14703) | def setText(self, string: str) -> None: ... method setTextOption (line 14704) | def setTextOption(self, option: QTextOption) -> None: ... method text (line 14705) | def text(self) -> str: ... method textOption (line 14706) | def textOption(self) -> QTextOption: ... class QTextLength (line 14708) | class QTextLength(shiboken2.Object): class Type (line 14709) | class Type: method __init__ (line 14716) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14717) | def __add__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __and__ (line 14718) | def __and__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __bool__ (line 14719) | def __bool__(self) -> bool: ... method __eq__ (line 14720) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14721) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14722) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14723) | def __hash__(self) -> int: ... method __index__ (line 14724) | def __index__(self) -> int: ... method __int__ (line 14725) | def __int__(self) -> int: ... method __le__ (line 14726) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14727) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14728) | def __mul__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __ne__ (line 14729) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14730) | def __or__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __pos__ (line 14731) | def __pos__(self): ... method __radd__ (line 14732) | def __radd__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __rand__ (line 14733) | def __rand__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __rmul__ (line 14734) | def __rmul__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __ror__ (line 14735) | def __ror__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __rsub__ (line 14736) | def __rsub__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __rxor__ (line 14737) | def __rxor__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __sub__ (line 14738) | def __sub__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __xor__ (line 14739) | def __xor__(self, other: typing.SupportsInt) -> QTextLength.Type: ... method __init__ (line 14744) | def __init__(self, type: QTextLength.Type, value: float) -> None: ... method __init__ (line 14746) | def __init__(self, QTextLength: QTextLength) -> None: ... method __init__ (line 14748) | def __init__(self) -> None: ... method rawValue (line 14749) | def rawValue(self) -> float: ... method type (line 14750) | def type(self) -> QTextLength.Type: ... method value (line 14751) | def value(self, maximumLength: float) -> float: ... method __copy__ (line 14752) | def __copy__(self) -> None: ... method __eq__ (line 14753) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14754) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14755) | def __gt__(self, other: object) -> bool: ... method __le__ (line 14756) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 14757) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 14758) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14759) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 14760) | def __rlshift__(self, other): ... method __rrshift__ (line 14761) | def __rrshift__(self, other): ... method __rshift__ (line 14762) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QTextLine (line 14764) | class QTextLine(shiboken2.Object): class CursorPosition (line 14765) | class CursorPosition: method __init__ (line 14771) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14772) | def __add__(self, other: typing.SupportsInt) -> QTextLine.CursorPosi... method __and__ (line 14773) | def __and__(self, other: typing.SupportsInt) -> QTextLine.CursorPosi... method __bool__ (line 14774) | def __bool__(self) -> bool: ... method __eq__ (line 14775) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14776) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14777) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14778) | def __hash__(self) -> int: ... method __index__ (line 14779) | def __index__(self) -> int: ... method __int__ (line 14780) | def __int__(self) -> int: ... method __le__ (line 14781) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14782) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14783) | def __mul__(self, other: typing.SupportsInt) -> QTextLine.CursorPosi... method __ne__ (line 14784) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14785) | def __or__(self, other: typing.SupportsInt) -> QTextLine.CursorPosit... method __pos__ (line 14786) | def __pos__(self): ... method __radd__ (line 14787) | def __radd__(self, other: typing.SupportsInt) -> QTextLine.CursorPos... method __rand__ (line 14788) | def __rand__(self, other: typing.SupportsInt) -> QTextLine.CursorPos... method __rmul__ (line 14789) | def __rmul__(self, other: typing.SupportsInt) -> QTextLine.CursorPos... method __ror__ (line 14790) | def __ror__(self, other: typing.SupportsInt) -> QTextLine.CursorPosi... method __rsub__ (line 14791) | def __rsub__(self, other: typing.SupportsInt) -> QTextLine.CursorPos... method __rxor__ (line 14792) | def __rxor__(self, other: typing.SupportsInt) -> QTextLine.CursorPos... method __sub__ (line 14793) | def __sub__(self, other: typing.SupportsInt) -> QTextLine.CursorPosi... method __xor__ (line 14794) | def __xor__(self, other: typing.SupportsInt) -> QTextLine.CursorPosi... class Edge (line 14796) | class Edge: method __init__ (line 14802) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14803) | def __add__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __and__ (line 14804) | def __and__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __bool__ (line 14805) | def __bool__(self) -> bool: ... method __eq__ (line 14806) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14807) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14808) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14809) | def __hash__(self) -> int: ... method __index__ (line 14810) | def __index__(self) -> int: ... method __int__ (line 14811) | def __int__(self) -> int: ... method __le__ (line 14812) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14813) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14814) | def __mul__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __ne__ (line 14815) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14816) | def __or__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __pos__ (line 14817) | def __pos__(self): ... method __radd__ (line 14818) | def __radd__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __rand__ (line 14819) | def __rand__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __rmul__ (line 14820) | def __rmul__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __ror__ (line 14821) | def __ror__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __rsub__ (line 14822) | def __rsub__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __rxor__ (line 14823) | def __rxor__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __sub__ (line 14824) | def __sub__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __xor__ (line 14825) | def __xor__(self, other: typing.SupportsInt) -> QTextLine.Edge: ... method __init__ (line 14830) | def __init__(self) -> None: ... method ascent (line 14831) | def ascent(self) -> float: ... method cursorToX (line 14832) | def cursorToX(self, cursorPos: int, edge: QTextLine.Edge = ...) -> flo... method descent (line 14833) | def descent(self) -> float: ... method draw (line 14834) | def draw(self, p: QPainter, point: PySide2.QtCore.QPointF, selection: ... method height (line 14835) | def height(self) -> float: ... method horizontalAdvance (line 14836) | def horizontalAdvance(self) -> float: ... method isValid (line 14837) | def isValid(self) -> bool: ... method leading (line 14838) | def leading(self) -> float: ... method leadingIncluded (line 14839) | def leadingIncluded(self) -> bool: ... method lineNumber (line 14840) | def lineNumber(self) -> int: ... method naturalTextRect (line 14841) | def naturalTextRect(self) -> PySide2.QtCore.QRectF: ... method naturalTextWidth (line 14842) | def naturalTextWidth(self) -> float: ... method position (line 14843) | def position(self) -> PySide2.QtCore.QPointF: ... method rect (line 14844) | def rect(self) -> PySide2.QtCore.QRectF: ... method setLeadingIncluded (line 14845) | def setLeadingIncluded(self, included: bool) -> None: ... method setLineWidth (line 14846) | def setLineWidth(self, width: float) -> None: ... method setNumColumns (line 14848) | def setNumColumns(self, columns: int, alignmentWidth: float) -> None: ... method setNumColumns (line 14850) | def setNumColumns(self, columns: int) -> None: ... method setPosition (line 14851) | def setPosition(self, pos: PySide2.QtCore.QPointF) -> None: ... method textLength (line 14852) | def textLength(self) -> int: ... method textStart (line 14853) | def textStart(self) -> int: ... method width (line 14854) | def width(self) -> float: ... method x (line 14855) | def x(self) -> float: ... method xToCursor (line 14856) | def xToCursor(self, x: float, edge: QTextLine.CursorPosition = ...) ->... method y (line 14857) | def y(self) -> float: ... method __copy__ (line 14858) | def __copy__(self) -> None: ... class QTextList (line 14860) | class QTextList(QTextBlockGroup): method __init__ (line 14862) | def __init__(self, doc: QTextDocument, destroyed: typing.Callable = ..... method add (line 14863) | def add(self, block: QTextBlock) -> None: ... method count (line 14864) | def count(self) -> int: ... method format (line 14865) | def format(self) -> QTextListFormat: ... method item (line 14866) | def item(self, i: int) -> QTextBlock: ... method itemNumber (line 14867) | def itemNumber(self, arg__1: QTextBlock) -> int: ... method itemText (line 14868) | def itemText(self, arg__1: QTextBlock) -> str: ... method remove (line 14869) | def remove(self, arg__1: QTextBlock) -> None: ... method removeItem (line 14870) | def removeItem(self, i: int) -> None: ... method setFormat (line 14872) | def setFormat(self, format: QTextFormat) -> None: ... method setFormat (line 14874) | def setFormat(self, format: QTextListFormat) -> None: ... # type: ign... class QTextListFormat (line 14876) | class QTextListFormat(QTextFormat): class Style (line 14877) | class Style: method __init__ (line 14890) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14891) | def __add__(self, other: typing.SupportsInt) -> QTextListFormat.Styl... method __and__ (line 14892) | def __and__(self, other: typing.SupportsInt) -> QTextListFormat.Styl... method __bool__ (line 14893) | def __bool__(self) -> bool: ... method __eq__ (line 14894) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14895) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14896) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14897) | def __hash__(self) -> int: ... method __index__ (line 14898) | def __index__(self) -> int: ... method __int__ (line 14899) | def __int__(self) -> int: ... method __le__ (line 14900) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14901) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14902) | def __mul__(self, other: typing.SupportsInt) -> QTextListFormat.Styl... method __ne__ (line 14903) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14904) | def __or__(self, other: typing.SupportsInt) -> QTextListFormat.Style... method __pos__ (line 14905) | def __pos__(self): ... method __radd__ (line 14906) | def __radd__(self, other: typing.SupportsInt) -> QTextListFormat.Sty... method __rand__ (line 14907) | def __rand__(self, other: typing.SupportsInt) -> QTextListFormat.Sty... method __rmul__ (line 14908) | def __rmul__(self, other: typing.SupportsInt) -> QTextListFormat.Sty... method __ror__ (line 14909) | def __ror__(self, other: typing.SupportsInt) -> QTextListFormat.Styl... method __rsub__ (line 14910) | def __rsub__(self, other: typing.SupportsInt) -> QTextListFormat.Sty... method __rxor__ (line 14911) | def __rxor__(self, other: typing.SupportsInt) -> QTextListFormat.Sty... method __sub__ (line 14912) | def __sub__(self, other: typing.SupportsInt) -> QTextListFormat.Styl... method __xor__ (line 14913) | def __xor__(self, other: typing.SupportsInt) -> QTextListFormat.Styl... method __init__ (line 14924) | def __init__(self, fmt: QTextFormat) -> None: ... method __init__ (line 14926) | def __init__(self, QTextListFormat: QTextListFormat) -> None: ... method __init__ (line 14928) | def __init__(self) -> None: ... method indent (line 14929) | def indent(self) -> int: ... method isValid (line 14930) | def isValid(self) -> bool: ... method numberPrefix (line 14931) | def numberPrefix(self) -> str: ... method numberSuffix (line 14932) | def numberSuffix(self) -> str: ... method setIndent (line 14933) | def setIndent(self, indent: int) -> None: ... method setNumberPrefix (line 14934) | def setNumberPrefix(self, numberPrefix: str) -> None: ... method setNumberSuffix (line 14935) | def setNumberSuffix(self, numberSuffix: str) -> None: ... method setStyle (line 14936) | def setStyle(self, style: QTextListFormat.Style) -> None: ... method style (line 14937) | def style(self) -> QTextListFormat.Style: ... method __copy__ (line 14938) | def __copy__(self) -> None: ... class QTextObject (line 14940) | class QTextObject(PySide2.QtCore.QObject): method __init__ (line 14942) | def __init__(self, doc: QTextDocument, destroyed: typing.Callable = ..... method document (line 14943) | def document(self) -> QTextDocument: ... method format (line 14944) | def format(self) -> QTextFormat: ... method formatIndex (line 14945) | def formatIndex(self) -> int: ... method objectIndex (line 14946) | def objectIndex(self) -> int: ... method setFormat (line 14947) | def setFormat(self, format: QTextFormat) -> None: ... class QTextObjectInterface (line 14949) | class QTextObjectInterface(shiboken2.Object): method __init__ (line 14950) | def __init__(self) -> None: ... method drawObject (line 14951) | def drawObject(self, painter: QPainter, rect: PySide2.QtCore.QRectF, d... method intrinsicSize (line 14952) | def intrinsicSize(self, doc: QTextDocument, posInDocument: int, format... class QTextOption (line 14954) | class QTextOption(shiboken2.Object): class Flag (line 14955) | class Flag: method __init__ (line 14965) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14966) | def __and__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __bool__ (line 14967) | def __bool__(self) -> bool: ... method __eq__ (line 14968) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14969) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14970) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14971) | def __hash__(self) -> int: ... method __index__ (line 14972) | def __index__(self) -> int: ... method __int__ (line 14973) | def __int__(self) -> int: ... method __invert__ (line 14974) | def __invert__(self) -> QTextOption.Flags: ... method __le__ (line 14975) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14976) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14977) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14978) | def __or__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __rand__ (line 14979) | def __rand__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __ror__ (line 14980) | def __ror__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __rxor__ (line 14981) | def __rxor__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __xor__ (line 14982) | def __xor__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... class Flags (line 14984) | class Flags: method __init__ (line 14986) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14987) | def __and__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __bool__ (line 14988) | def __bool__(self) -> bool: ... method __eq__ (line 14989) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14990) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14991) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14992) | def __index__(self) -> int: ... method __int__ (line 14993) | def __int__(self) -> int: ... method __invert__ (line 14994) | def __invert__(self) -> QTextOption.Flags: ... method __le__ (line 14995) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14996) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14997) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14998) | def __or__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __rand__ (line 14999) | def __rand__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __ror__ (line 15000) | def __ror__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __rxor__ (line 15001) | def __rxor__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... method __xor__ (line 15002) | def __xor__(self, other: typing.SupportsInt) -> QTextOption.Flags: ... class Tab (line 15004) | class Tab(shiboken2.Object): method __init__ (line 15009) | def __init__(self, pos: float, tabType: QTextOption.TabType, delim: ... method __init__ (line 15011) | def __init__(self, Tab: QTextOption.Tab) -> None: ... method __init__ (line 15013) | def __init__(self) -> None: ... method __copy__ (line 15014) | def __copy__(self) -> None: ... method __eq__ (line 15015) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15016) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15017) | def __gt__(self, other: object) -> bool: ... method __le__ (line 15018) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15019) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15020) | def __ne__(self, other: object) -> bool: ... class TabType (line 15022) | class TabType: method __init__ (line 15030) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15031) | def __add__(self, other: typing.SupportsInt) -> QTextOption.TabType:... method __and__ (line 15032) | def __and__(self, other: typing.SupportsInt) -> QTextOption.TabType:... method __bool__ (line 15033) | def __bool__(self) -> bool: ... method __eq__ (line 15034) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15035) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15036) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15037) | def __hash__(self) -> int: ... method __index__ (line 15038) | def __index__(self) -> int: ... method __int__ (line 15039) | def __int__(self) -> int: ... method __le__ (line 15040) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15041) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15042) | def __mul__(self, other: typing.SupportsInt) -> QTextOption.TabType:... method __ne__ (line 15043) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15044) | def __or__(self, other: typing.SupportsInt) -> QTextOption.TabType: ... method __pos__ (line 15045) | def __pos__(self): ... method __radd__ (line 15046) | def __radd__(self, other: typing.SupportsInt) -> QTextOption.TabType... method __rand__ (line 15047) | def __rand__(self, other: typing.SupportsInt) -> QTextOption.TabType... method __rmul__ (line 15048) | def __rmul__(self, other: typing.SupportsInt) -> QTextOption.TabType... method __ror__ (line 15049) | def __ror__(self, other: typing.SupportsInt) -> QTextOption.TabType:... method __rsub__ (line 15050) | def __rsub__(self, other: typing.SupportsInt) -> QTextOption.TabType... method __rxor__ (line 15051) | def __rxor__(self, other: typing.SupportsInt) -> QTextOption.TabType... method __sub__ (line 15052) | def __sub__(self, other: typing.SupportsInt) -> QTextOption.TabType:... method __xor__ (line 15053) | def __xor__(self, other: typing.SupportsInt) -> QTextOption.TabType:... class WrapMode (line 15055) | class WrapMode: method __init__ (line 15064) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15065) | def __add__(self, other: typing.SupportsInt) -> QTextOption.WrapMode... method __and__ (line 15066) | def __and__(self, other: typing.SupportsInt) -> QTextOption.WrapMode... method __bool__ (line 15067) | def __bool__(self) -> bool: ... method __eq__ (line 15068) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15069) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15070) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15071) | def __hash__(self) -> int: ... method __index__ (line 15072) | def __index__(self) -> int: ... method __int__ (line 15073) | def __int__(self) -> int: ... method __le__ (line 15074) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15075) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15076) | def __mul__(self, other: typing.SupportsInt) -> QTextOption.WrapMode... method __ne__ (line 15077) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15078) | def __or__(self, other: typing.SupportsInt) -> QTextOption.WrapMode:... method __pos__ (line 15079) | def __pos__(self): ... method __radd__ (line 15080) | def __radd__(self, other: typing.SupportsInt) -> QTextOption.WrapMod... method __rand__ (line 15081) | def __rand__(self, other: typing.SupportsInt) -> QTextOption.WrapMod... method __rmul__ (line 15082) | def __rmul__(self, other: typing.SupportsInt) -> QTextOption.WrapMod... method __ror__ (line 15083) | def __ror__(self, other: typing.SupportsInt) -> QTextOption.WrapMode... method __rsub__ (line 15084) | def __rsub__(self, other: typing.SupportsInt) -> QTextOption.WrapMod... method __rxor__ (line 15085) | def __rxor__(self, other: typing.SupportsInt) -> QTextOption.WrapMod... method __sub__ (line 15086) | def __sub__(self, other: typing.SupportsInt) -> QTextOption.WrapMode... method __xor__ (line 15087) | def __xor__(self, other: typing.SupportsInt) -> QTextOption.WrapMode... method __init__ (line 15104) | def __init__(self, o: QTextOption) -> None: ... method __init__ (line 15106) | def __init__(self, alignment: PySide2.QtCore.Qt.Alignment | PySide2.Qt... method __init__ (line 15108) | def __init__(self) -> None: ... method alignment (line 15109) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method flags (line 15110) | def flags(self) -> QTextOption.Flags | QTextOption.Flag: ... method setAlignment (line 15111) | def setAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | PySide... method setFlags (line 15112) | def setFlags(self, flags: QTextOption.Flags | QTextOption.Flag) -> Non... method setTabArray (line 15113) | def setTabArray(self, tabStops: typing.Iterable[float]) -> None: ... method setTabStop (line 15114) | def setTabStop(self, tabStop: float) -> None: ... method setTabStopDistance (line 15115) | def setTabStopDistance(self, tabStopDistance: float) -> None: ... method setTabs (line 15116) | def setTabs(self, tabStops: typing.Iterable[QTextOption.Tab]) -> None:... method setTextDirection (line 15117) | def setTextDirection(self, aDirection: PySide2.QtCore.Qt.LayoutDirecti... method setUseDesignMetrics (line 15118) | def setUseDesignMetrics(self, b: bool) -> None: ... method setWrapMode (line 15119) | def setWrapMode(self, wrap: QTextOption.WrapMode) -> None: ... method tabArray (line 15120) | def tabArray(self) -> list[float]: ... method tabStop (line 15121) | def tabStop(self) -> float: ... method tabStopDistance (line 15122) | def tabStopDistance(self) -> float: ... method tabs (line 15123) | def tabs(self) -> list[QTextOption.Tab]: ... method textDirection (line 15124) | def textDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method useDesignMetrics (line 15125) | def useDesignMetrics(self) -> bool: ... method wrapMode (line 15126) | def wrapMode(self) -> QTextOption.WrapMode: ... method __copy__ (line 15127) | def __copy__(self) -> None: ... class QTextTable (line 15129) | class QTextTable(QTextFrame): method __init__ (line 15131) | def __init__(self, doc: QTextDocument, destroyed: typing.Callable = ..... method appendColumns (line 15132) | def appendColumns(self, count: int) -> None: ... method appendRows (line 15133) | def appendRows(self, count: int) -> None: ... method cellAt (line 15135) | def cellAt(self, row: int, col: int) -> QTextTableCell: ... method cellAt (line 15137) | def cellAt(self, position: int) -> QTextTableCell: ... method cellAt (line 15139) | def cellAt(self, c: QTextCursor) -> QTextTableCell: ... method columns (line 15140) | def columns(self) -> int: ... method format (line 15141) | def format(self) -> QTextTableFormat: ... method insertColumns (line 15142) | def insertColumns(self, pos: int, num: int) -> None: ... method insertRows (line 15143) | def insertRows(self, pos: int, num: int) -> None: ... method mergeCells (line 15145) | def mergeCells(self, row: int, col: int, numRows: int, numCols: int) -... method mergeCells (line 15147) | def mergeCells(self, cursor: QTextCursor) -> None: ... method removeColumns (line 15148) | def removeColumns(self, pos: int, num: int) -> None: ... method removeRows (line 15149) | def removeRows(self, pos: int, num: int) -> None: ... method resize (line 15150) | def resize(self, rows: int, cols: int) -> None: ... method rowEnd (line 15151) | def rowEnd(self, c: QTextCursor) -> QTextCursor: ... method rowStart (line 15152) | def rowStart(self, c: QTextCursor) -> QTextCursor: ... method rows (line 15153) | def rows(self) -> int: ... method setFormat (line 15155) | def setFormat(self, format: QTextFormat) -> None: ... method setFormat (line 15157) | def setFormat(self, format: QTextTableFormat) -> None: ... # type: ig... method splitCell (line 15158) | def splitCell(self, row: int, col: int, numRows: int, numCols: int) ->... class QTextTableCell (line 15160) | class QTextTableCell(shiboken2.Object): method __init__ (line 15162) | def __init__(self, o: QTextTableCell) -> None: ... method __init__ (line 15164) | def __init__(self) -> None: ... method begin (line 15165) | def begin(self) -> QTextFrame.iterator: ... method column (line 15166) | def column(self) -> int: ... method columnSpan (line 15167) | def columnSpan(self) -> int: ... method end (line 15168) | def end(self) -> QTextFrame.iterator: ... method firstCursorPosition (line 15169) | def firstCursorPosition(self) -> QTextCursor: ... method firstPosition (line 15170) | def firstPosition(self) -> int: ... method format (line 15171) | def format(self) -> QTextCharFormat: ... method isValid (line 15172) | def isValid(self) -> bool: ... method lastCursorPosition (line 15173) | def lastCursorPosition(self) -> QTextCursor: ... method lastPosition (line 15174) | def lastPosition(self) -> int: ... method row (line 15175) | def row(self) -> int: ... method rowSpan (line 15176) | def rowSpan(self) -> int: ... method setFormat (line 15177) | def setFormat(self, format: QTextCharFormat) -> None: ... method tableCellFormatIndex (line 15178) | def tableCellFormatIndex(self) -> int: ... method __copy__ (line 15179) | def __copy__(self) -> None: ... method __eq__ (line 15180) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15181) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15182) | def __gt__(self, other: object) -> bool: ... method __le__ (line 15183) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15184) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15185) | def __ne__(self, other: object) -> bool: ... class QTextTableCellFormat (line 15187) | class QTextTableCellFormat(QTextCharFormat): method __init__ (line 15189) | def __init__(self, fmt: QTextFormat) -> None: ... method __init__ (line 15191) | def __init__(self, QTextTableCellFormat: QTextTableCellFormat) -> None... method __init__ (line 15193) | def __init__(self) -> None: ... method bottomBorder (line 15194) | def bottomBorder(self) -> float: ... method bottomBorderBrush (line 15195) | def bottomBorderBrush(self) -> QBrush: ... method bottomBorderStyle (line 15196) | def bottomBorderStyle(self) -> QTextFrameFormat.BorderStyle: ... method bottomPadding (line 15197) | def bottomPadding(self) -> float: ... method isValid (line 15198) | def isValid(self) -> bool: ... method leftBorder (line 15199) | def leftBorder(self) -> float: ... method leftBorderBrush (line 15200) | def leftBorderBrush(self) -> QBrush: ... method leftBorderStyle (line 15201) | def leftBorderStyle(self) -> QTextFrameFormat.BorderStyle: ... method leftPadding (line 15202) | def leftPadding(self) -> float: ... method rightBorder (line 15203) | def rightBorder(self) -> float: ... method rightBorderBrush (line 15204) | def rightBorderBrush(self) -> QBrush: ... method rightBorderStyle (line 15205) | def rightBorderStyle(self) -> QTextFrameFormat.BorderStyle: ... method rightPadding (line 15206) | def rightPadding(self) -> float: ... method setBorder (line 15207) | def setBorder(self, width: float) -> None: ... method setBorderBrush (line 15208) | def setBorderBrush(self, brush: QBrush | QColor | PySide2.QtCore.Qt.Gl... method setBorderStyle (line 15209) | def setBorderStyle(self, style: QTextFrameFormat.BorderStyle) -> None:... method setBottomBorder (line 15210) | def setBottomBorder(self, width: float) -> None: ... method setBottomBorderBrush (line 15211) | def setBottomBorderBrush(self, brush: QBrush | QColor | PySide2.QtCore... method setBottomBorderStyle (line 15212) | def setBottomBorderStyle(self, style: QTextFrameFormat.BorderStyle) ->... method setBottomPadding (line 15213) | def setBottomPadding(self, padding: float) -> None: ... method setLeftBorder (line 15214) | def setLeftBorder(self, width: float) -> None: ... method setLeftBorderBrush (line 15215) | def setLeftBorderBrush(self, brush: QBrush | QColor | PySide2.QtCore.Q... method setLeftBorderStyle (line 15216) | def setLeftBorderStyle(self, style: QTextFrameFormat.BorderStyle) -> N... method setLeftPadding (line 15217) | def setLeftPadding(self, padding: float) -> None: ... method setPadding (line 15218) | def setPadding(self, padding: float) -> None: ... method setRightBorder (line 15219) | def setRightBorder(self, width: float) -> None: ... method setRightBorderBrush (line 15220) | def setRightBorderBrush(self, brush: QBrush | QColor | PySide2.QtCore.... method setRightBorderStyle (line 15221) | def setRightBorderStyle(self, style: QTextFrameFormat.BorderStyle) -> ... method setRightPadding (line 15222) | def setRightPadding(self, padding: float) -> None: ... method setTopBorder (line 15223) | def setTopBorder(self, width: float) -> None: ... method setTopBorderBrush (line 15224) | def setTopBorderBrush(self, brush: QBrush | QColor | PySide2.QtCore.Qt... method setTopBorderStyle (line 15225) | def setTopBorderStyle(self, style: QTextFrameFormat.BorderStyle) -> No... method setTopPadding (line 15226) | def setTopPadding(self, padding: float) -> None: ... method topBorder (line 15227) | def topBorder(self) -> float: ... method topBorderBrush (line 15228) | def topBorderBrush(self) -> QBrush: ... method topBorderStyle (line 15229) | def topBorderStyle(self) -> QTextFrameFormat.BorderStyle: ... method topPadding (line 15230) | def topPadding(self) -> float: ... method __copy__ (line 15231) | def __copy__(self) -> None: ... class QTextTableFormat (line 15233) | class QTextTableFormat(QTextFrameFormat): method __init__ (line 15235) | def __init__(self, fmt: QTextFormat) -> None: ... method __init__ (line 15237) | def __init__(self, QTextTableFormat: QTextTableFormat) -> None: ... method __init__ (line 15239) | def __init__(self) -> None: ... method alignment (line 15240) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method borderCollapse (line 15241) | def borderCollapse(self) -> bool: ... method cellPadding (line 15242) | def cellPadding(self) -> float: ... method cellSpacing (line 15243) | def cellSpacing(self) -> float: ... method clearColumnWidthConstraints (line 15244) | def clearColumnWidthConstraints(self) -> None: ... method columnWidthConstraints (line 15245) | def columnWidthConstraints(self) -> list[QTextLength]: ... method columns (line 15246) | def columns(self) -> int: ... method headerRowCount (line 15247) | def headerRowCount(self) -> int: ... method isValid (line 15248) | def isValid(self) -> bool: ... method setAlignment (line 15249) | def setAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | PySide... method setBorderCollapse (line 15250) | def setBorderCollapse(self, borderCollapse: bool) -> None: ... method setCellPadding (line 15251) | def setCellPadding(self, padding: float) -> None: ... method setCellSpacing (line 15252) | def setCellSpacing(self, spacing: float) -> None: ... method setColumnWidthConstraints (line 15253) | def setColumnWidthConstraints(self, constraints: list[QTextLength]) ->... method setColumns (line 15254) | def setColumns(self, columns: int) -> None: ... method setHeaderRowCount (line 15255) | def setHeaderRowCount(self, count: int) -> None: ... method __copy__ (line 15256) | def __copy__(self) -> None: ... class QToolBarChangeEvent (line 15258) | class QToolBarChangeEvent(PySide2.QtCore.QEvent): method __init__ (line 15259) | def __init__(self, t: bool) -> None: ... method toggle (line 15260) | def toggle(self) -> bool: ... class QTouchDevice (line 15262) | class QTouchDevice(shiboken2.Object): class Capabilities (line 15263) | class Capabilities: method __init__ (line 15265) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15266) | def __and__(self, other: typing.SupportsInt) -> QTouchDevice.Capabil... method __bool__ (line 15267) | def __bool__(self) -> bool: ... method __eq__ (line 15268) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15269) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15270) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15271) | def __index__(self) -> int: ... method __int__ (line 15272) | def __int__(self) -> int: ... method __invert__ (line 15273) | def __invert__(self) -> QTouchDevice.Capabilities: ... method __le__ (line 15274) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15275) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15276) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15277) | def __or__(self, other: typing.SupportsInt) -> QTouchDevice.Capabili... method __rand__ (line 15278) | def __rand__(self, other: typing.SupportsInt) -> QTouchDevice.Capabi... method __ror__ (line 15279) | def __ror__(self, other: typing.SupportsInt) -> QTouchDevice.Capabil... method __rxor__ (line 15280) | def __rxor__(self, other: typing.SupportsInt) -> QTouchDevice.Capabi... method __xor__ (line 15281) | def __xor__(self, other: typing.SupportsInt) -> QTouchDevice.Capabil... class CapabilityFlag (line 15283) | class CapabilityFlag: method __init__ (line 15294) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15295) | def __and__(self, other: typing.SupportsInt) -> QTouchDevice.Capabil... method __bool__ (line 15296) | def __bool__(self) -> bool: ... method __eq__ (line 15297) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15298) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15299) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15300) | def __hash__(self) -> int: ... method __index__ (line 15301) | def __index__(self) -> int: ... method __int__ (line 15302) | def __int__(self) -> int: ... method __invert__ (line 15303) | def __invert__(self) -> QTouchDevice.Capabilities: ... method __le__ (line 15304) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15305) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15306) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15307) | def __or__(self, other: typing.SupportsInt) -> QTouchDevice.Capabili... method __rand__ (line 15308) | def __rand__(self, other: typing.SupportsInt) -> QTouchDevice.Capabi... method __ror__ (line 15309) | def __ror__(self, other: typing.SupportsInt) -> QTouchDevice.Capabil... method __rxor__ (line 15310) | def __rxor__(self, other: typing.SupportsInt) -> QTouchDevice.Capabi... method __xor__ (line 15311) | def __xor__(self, other: typing.SupportsInt) -> QTouchDevice.Capabil... class DeviceType (line 15313) | class DeviceType: method __init__ (line 15319) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15320) | def __add__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceT... method __and__ (line 15321) | def __and__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceT... method __bool__ (line 15322) | def __bool__(self) -> bool: ... method __eq__ (line 15323) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15324) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15325) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15326) | def __hash__(self) -> int: ... method __index__ (line 15327) | def __index__(self) -> int: ... method __int__ (line 15328) | def __int__(self) -> int: ... method __le__ (line 15329) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15330) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15331) | def __mul__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceT... method __ne__ (line 15332) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15333) | def __or__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceTy... method __pos__ (line 15334) | def __pos__(self): ... method __radd__ (line 15335) | def __radd__(self, other: typing.SupportsInt) -> QTouchDevice.Device... method __rand__ (line 15336) | def __rand__(self, other: typing.SupportsInt) -> QTouchDevice.Device... method __rmul__ (line 15337) | def __rmul__(self, other: typing.SupportsInt) -> QTouchDevice.Device... method __ror__ (line 15338) | def __ror__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceT... method __rsub__ (line 15339) | def __rsub__(self, other: typing.SupportsInt) -> QTouchDevice.Device... method __rxor__ (line 15340) | def __rxor__(self, other: typing.SupportsInt) -> QTouchDevice.Device... method __sub__ (line 15341) | def __sub__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceT... method __xor__ (line 15342) | def __xor__(self, other: typing.SupportsInt) -> QTouchDevice.DeviceT... method __init__ (line 15352) | def __init__(self) -> None: ... method capabilities (line 15353) | def capabilities(self) -> QTouchDevice.Capabilities | QTouchDevice.Cap... method devices (line 15355) | def devices() -> list[QTouchDevice]: ... method maximumTouchPoints (line 15356) | def maximumTouchPoints(self) -> int: ... method name (line 15357) | def name(self) -> str: ... method setCapabilities (line 15358) | def setCapabilities(self, caps: QTouchDevice.Capabilities | QTouchDevi... method setMaximumTouchPoints (line 15359) | def setMaximumTouchPoints(self, max: int) -> None: ... method setName (line 15360) | def setName(self, name: str) -> None: ... method setType (line 15361) | def setType(self, devType: QTouchDevice.DeviceType) -> None: ... method type (line 15362) | def type(self) -> QTouchDevice.DeviceType: ... class QTouchEvent (line 15364) | class QTouchEvent(QInputEvent): class TouchPoint (line 15365) | class TouchPoint(shiboken2.Object): class InfoFlag (line 15366) | class InfoFlag: method __init__ (line 15372) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15373) | def __and__(self, other: typing.SupportsInt) -> QTouchEvent.TouchP... method __bool__ (line 15374) | def __bool__(self) -> bool: ... method __eq__ (line 15375) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15376) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15377) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15378) | def __hash__(self) -> int: ... method __index__ (line 15379) | def __index__(self) -> int: ... method __int__ (line 15380) | def __int__(self) -> int: ... method __invert__ (line 15381) | def __invert__(self) -> QTouchEvent.TouchPoint.InfoFlags: ... method __le__ (line 15382) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15383) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15384) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15385) | def __or__(self, other: typing.SupportsInt) -> QTouchEvent.TouchPo... method __rand__ (line 15386) | def __rand__(self, other: typing.SupportsInt) -> QTouchEvent.Touch... method __ror__ (line 15387) | def __ror__(self, other: typing.SupportsInt) -> QTouchEvent.TouchP... method __rxor__ (line 15388) | def __rxor__(self, other: typing.SupportsInt) -> QTouchEvent.Touch... method __xor__ (line 15389) | def __xor__(self, other: typing.SupportsInt) -> QTouchEvent.TouchP... class InfoFlags (line 15391) | class InfoFlags: method __init__ (line 15393) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15394) | def __and__(self, other: typing.SupportsInt) -> QTouchEvent.TouchP... method __bool__ (line 15395) | def __bool__(self) -> bool: ... method __eq__ (line 15396) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15397) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15398) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15399) | def __index__(self) -> int: ... method __int__ (line 15400) | def __int__(self) -> int: ... method __invert__ (line 15401) | def __invert__(self) -> QTouchEvent.TouchPoint.InfoFlags: ... method __le__ (line 15402) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15403) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15404) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15405) | def __or__(self, other: typing.SupportsInt) -> QTouchEvent.TouchPo... method __rand__ (line 15406) | def __rand__(self, other: typing.SupportsInt) -> QTouchEvent.Touch... method __ror__ (line 15407) | def __ror__(self, other: typing.SupportsInt) -> QTouchEvent.TouchP... method __rxor__ (line 15408) | def __rxor__(self, other: typing.SupportsInt) -> QTouchEvent.Touch... method __xor__ (line 15409) | def __xor__(self, other: typing.SupportsInt) -> QTouchEvent.TouchP... method __init__ (line 15413) | def __init__(self, other: QTouchEvent.TouchPoint) -> None: ... method __init__ (line 15415) | def __init__(self, id: int = ...) -> None: ... method ellipseDiameters (line 15416) | def ellipseDiameters(self) -> PySide2.QtCore.QSizeF: ... method flags (line 15417) | def flags(self) -> QTouchEvent.TouchPoint.InfoFlags | QTouchEvent.To... method id (line 15418) | def id(self) -> int: ... method lastNormalizedPos (line 15419) | def lastNormalizedPos(self) -> PySide2.QtCore.QPointF: ... method lastPos (line 15420) | def lastPos(self) -> PySide2.QtCore.QPointF: ... method lastScenePos (line 15421) | def lastScenePos(self) -> PySide2.QtCore.QPointF: ... method lastScreenPos (line 15422) | def lastScreenPos(self) -> PySide2.QtCore.QPointF: ... method normalizedPos (line 15423) | def normalizedPos(self) -> PySide2.QtCore.QPointF: ... method pos (line 15424) | def pos(self) -> PySide2.QtCore.QPointF: ... method pressure (line 15425) | def pressure(self) -> float: ... method rawScreenPositions (line 15426) | def rawScreenPositions(self) -> list[PySide2.QtCore.QPointF]: ... method rect (line 15427) | def rect(self) -> PySide2.QtCore.QRectF: ... method rotation (line 15428) | def rotation(self) -> float: ... method scenePos (line 15429) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method sceneRect (line 15430) | def sceneRect(self) -> PySide2.QtCore.QRectF: ... method screenPos (line 15431) | def screenPos(self) -> PySide2.QtCore.QPointF: ... method screenRect (line 15432) | def screenRect(self) -> PySide2.QtCore.QRectF: ... method setEllipseDiameters (line 15433) | def setEllipseDiameters(self, dia: PySide2.QtCore.QSizeF) -> None: ... method setFlags (line 15434) | def setFlags(self, flags: QTouchEvent.TouchPoint.InfoFlags | QTouchE... method setId (line 15435) | def setId(self, id: int) -> None: ... method setLastNormalizedPos (line 15436) | def setLastNormalizedPos(self, lastNormalizedPos: PySide2.QtCore.QPo... method setLastPos (line 15437) | def setLastPos(self, lastPos: PySide2.QtCore.QPointF) -> None: ... method setLastScenePos (line 15438) | def setLastScenePos(self, lastScenePos: PySide2.QtCore.QPointF) -> N... method setLastScreenPos (line 15439) | def setLastScreenPos(self, lastScreenPos: PySide2.QtCore.QPointF) ->... method setNormalizedPos (line 15440) | def setNormalizedPos(self, normalizedPos: PySide2.QtCore.QPointF) ->... method setPos (line 15441) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setPressure (line 15442) | def setPressure(self, pressure: float) -> None: ... method setRawScreenPositions (line 15443) | def setRawScreenPositions(self, positions: list[PySide2.QtCore.QPoin... method setRect (line 15444) | def setRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method setRotation (line 15445) | def setRotation(self, angle: float) -> None: ... method setScenePos (line 15446) | def setScenePos(self, scenePos: PySide2.QtCore.QPointF) -> None: ... method setSceneRect (line 15447) | def setSceneRect(self, sceneRect: PySide2.QtCore.QRectF) -> None: ... method setScreenPos (line 15448) | def setScreenPos(self, screenPos: PySide2.QtCore.QPointF) -> None: ... method setScreenRect (line 15449) | def setScreenRect(self, screenRect: PySide2.QtCore.QRectF) -> None: ... method setStartNormalizedPos (line 15450) | def setStartNormalizedPos(self, startNormalizedPos: PySide2.QtCore.Q... method setStartPos (line 15451) | def setStartPos(self, startPos: PySide2.QtCore.QPointF) -> None: ... method setStartScenePos (line 15452) | def setStartScenePos(self, startScenePos: PySide2.QtCore.QPointF) ->... method setStartScreenPos (line 15453) | def setStartScreenPos(self, startScreenPos: PySide2.QtCore.QPointF) ... method setState (line 15454) | def setState(self, state: PySide2.QtCore.Qt.TouchPointStates | PySid... method setUniqueId (line 15455) | def setUniqueId(self, uid: int) -> None: ... method setVelocity (line 15456) | def setVelocity(self, v: QVector2D) -> None: ... method startNormalizedPos (line 15457) | def startNormalizedPos(self) -> PySide2.QtCore.QPointF: ... method startPos (line 15458) | def startPos(self) -> PySide2.QtCore.QPointF: ... method startScenePos (line 15459) | def startScenePos(self) -> PySide2.QtCore.QPointF: ... method startScreenPos (line 15460) | def startScreenPos(self) -> PySide2.QtCore.QPointF: ... method state (line 15461) | def state(self) -> PySide2.QtCore.Qt.TouchPointState: ... method swap (line 15462) | def swap(self, other: QTouchEvent.TouchPoint) -> None: ... method uniqueId (line 15463) | def uniqueId(self) -> QPointingDeviceUniqueId: ... method velocity (line 15464) | def velocity(self) -> QVector2D: ... method __copy__ (line 15465) | def __copy__(self) -> None: ... method __init__ (line 15467) | def __init__(self, eventType: PySide2.QtCore.QEvent.Type, device: QTou... method device (line 15468) | def device(self) -> QTouchDevice: ... method setDevice (line 15469) | def setDevice(self, adevice: QTouchDevice) -> None: ... method setTarget (line 15470) | def setTarget(self, atarget: PySide2.QtCore.QObject) -> None: ... method setTouchPointStates (line 15471) | def setTouchPointStates(self, aTouchPointStates: PySide2.QtCore.Qt.Tou... method setTouchPoints (line 15472) | def setTouchPoints(self, atouchPoints: typing.Iterable[QTouchEvent.Tou... method setWindow (line 15473) | def setWindow(self, awindow: QWindow) -> None: ... method target (line 15474) | def target(self) -> PySide2.QtCore.QObject: ... method touchPointStates (line 15475) | def touchPointStates(self) -> PySide2.QtCore.Qt.TouchPointStates | PyS... method touchPoints (line 15476) | def touchPoints(self) -> list[QTouchEvent.TouchPoint]: ... method window (line 15477) | def window(self) -> QWindow: ... class QTransform (line 15479) | class QTransform(shiboken2.Object): class TransformationType (line 15480) | class TransformationType: method __init__ (line 15490) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15491) | def __add__(self, other: typing.SupportsInt) -> QTransform.Transform... method __and__ (line 15492) | def __and__(self, other: typing.SupportsInt) -> QTransform.Transform... method __bool__ (line 15493) | def __bool__(self) -> bool: ... method __eq__ (line 15494) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15495) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15496) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15497) | def __hash__(self) -> int: ... method __index__ (line 15498) | def __index__(self) -> int: ... method __int__ (line 15499) | def __int__(self) -> int: ... method __le__ (line 15500) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15501) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15502) | def __mul__(self, other: typing.SupportsInt) -> QTransform.Transform... method __ne__ (line 15503) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15504) | def __or__(self, other: typing.SupportsInt) -> QTransform.Transforma... method __pos__ (line 15505) | def __pos__(self): ... method __radd__ (line 15506) | def __radd__(self, other: typing.SupportsInt) -> QTransform.Transfor... method __rand__ (line 15507) | def __rand__(self, other: typing.SupportsInt) -> QTransform.Transfor... method __rmul__ (line 15508) | def __rmul__(self, other: typing.SupportsInt) -> QTransform.Transfor... method __ror__ (line 15509) | def __ror__(self, other: typing.SupportsInt) -> QTransform.Transform... method __rsub__ (line 15510) | def __rsub__(self, other: typing.SupportsInt) -> QTransform.Transfor... method __rxor__ (line 15511) | def __rxor__(self, other: typing.SupportsInt) -> QTransform.Transfor... method __sub__ (line 15512) | def __sub__(self, other: typing.SupportsInt) -> QTransform.Transform... method __xor__ (line 15513) | def __xor__(self, other: typing.SupportsInt) -> QTransform.Transform... method __init__ (line 15521) | def __init__(self, h11: float, h12: float, h13: float, h21: float, h22... method __init__ (line 15523) | def __init__(self, h11: float, h12: float, h21: float, h22: float, dx:... method __init__ (line 15525) | def __init__(self, other: QTransform) -> None: ... method __init__ (line 15527) | def __init__(self, mtx: QMatrix) -> None: ... method __init__ (line 15529) | def __init__(self) -> None: ... method adjoint (line 15530) | def adjoint(self) -> QTransform: ... method det (line 15531) | def det(self) -> float: ... method determinant (line 15532) | def determinant(self) -> float: ... method dx (line 15533) | def dx(self) -> float: ... method dy (line 15534) | def dy(self) -> float: ... method fromScale (line 15536) | def fromScale(dx: float, dy: float) -> QTransform: ... method fromTranslate (line 15538) | def fromTranslate(dx: float, dy: float) -> QTransform: ... method inverted (line 15539) | def inverted(self) -> tuple[QTransform, bool]: ... method isAffine (line 15540) | def isAffine(self) -> bool: ... method isIdentity (line 15541) | def isIdentity(self) -> bool: ... method isInvertible (line 15542) | def isInvertible(self) -> bool: ... method isRotating (line 15543) | def isRotating(self) -> bool: ... method isScaling (line 15544) | def isScaling(self) -> bool: ... method isTranslating (line 15545) | def isTranslating(self) -> bool: ... method m11 (line 15546) | def m11(self) -> float: ... method m12 (line 15547) | def m12(self) -> float: ... method m13 (line 15548) | def m13(self) -> float: ... method m21 (line 15549) | def m21(self) -> float: ... method m22 (line 15550) | def m22(self) -> float: ... method m23 (line 15551) | def m23(self) -> float: ... method m31 (line 15552) | def m31(self) -> float: ... method m32 (line 15553) | def m32(self) -> float: ... method m33 (line 15554) | def m33(self) -> float: ... method map (line 15556) | def map(self, x: float, y: float) -> tuple[float, float]: ... method map (line 15558) | def map(self, r: QRegion) -> QRegion: ... method map (line 15560) | def map(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QPoint: ... method map (line 15562) | def map(self, p: PySide2.QtCore.QPointF) -> PySide2.QtCore.QPointF: ... method map (line 15564) | def map(self, p: QPainterPath) -> QPainterPath: ... method map (line 15566) | def map(self, l: PySide2.QtCore.QLine) -> PySide2.QtCore.QLine: ... method map (line 15568) | def map(self, l: PySide2.QtCore.QLineF) -> PySide2.QtCore.QLineF: ... method map (line 15570) | def map(self, a: QPolygon) -> QPolygon: ... method map (line 15572) | def map(self, a: QPolygonF) -> QPolygonF: ... method mapRect (line 15574) | def mapRect(self, arg__1: PySide2.QtCore.QRect) -> PySide2.QtCore.QRec... method mapRect (line 15576) | def mapRect(self, arg__1: PySide2.QtCore.QRectF) -> PySide2.QtCore.QRe... method mapToPolygon (line 15577) | def mapToPolygon(self, r: PySide2.QtCore.QRect) -> QPolygon: ... method quadToQuad (line 15580) | def quadToQuad(one: QPolygonF, two: QPolygonF, result: QTransform) -> ... method quadToQuad (line 15583) | def quadToQuad(arg__1: QPolygonF, arg__2: QPolygonF) -> typing.Any: ... method quadToSquare (line 15586) | def quadToSquare(quad: QPolygonF, result: QTransform) -> bool: ... method quadToSquare (line 15589) | def quadToSquare(arg__1: QPolygonF) -> typing.Any: ... method reset (line 15590) | def reset(self) -> None: ... method rotate (line 15591) | def rotate(self, a: float, axis: PySide2.QtCore.Qt.Axis = ...) -> QTra... method rotateRadians (line 15592) | def rotateRadians(self, a: float, axis: PySide2.QtCore.Qt.Axis = ...) ... method scale (line 15593) | def scale(self, sx: float, sy: float) -> QTransform: ... method setMatrix (line 15594) | def setMatrix(self, m11: float, m12: float, m13: float, m21: float, m2... method shear (line 15595) | def shear(self, sh: float, sv: float) -> QTransform: ... method squareToQuad (line 15598) | def squareToQuad(square: QPolygonF, result: QTransform) -> bool: ... method squareToQuad (line 15601) | def squareToQuad(arg__1: QPolygonF) -> typing.Any: ... method toAffine (line 15602) | def toAffine(self) -> QMatrix: ... method translate (line 15603) | def translate(self, dx: float, dy: float) -> QTransform: ... method transposed (line 15604) | def transposed(self) -> QTransform: ... method type (line 15605) | def type(self) -> QTransform.TransformationType: ... method __add__ (line 15606) | def __add__(self, n: float) -> QTransform: ... method __copy__ (line 15607) | def __copy__(self) -> None: ... method __eq__ (line 15608) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15609) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15610) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 15611) | def __iadd__(self, div: float) -> QTransform: ... method __imul__ (line 15613) | def __imul__(self, div: float) -> QTransform: ... method __imul__ (line 15615) | def __imul__(self, arg__1: QTransform) -> QTransform: ... method __isub__ (line 15616) | def __isub__(self, div: float) -> QTransform: ... method __le__ (line 15617) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 15618) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 15619) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15621) | def __mul__(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QPoint: ... method __mul__ (line 15623) | def __mul__(self, p: PySide2.QtCore.QPointF) -> PySide2.QtCore.QPointF... method __mul__ (line 15625) | def __mul__(self, o: QTransform) -> QTransform: ... method __mul__ (line 15627) | def __mul__(self, n: float) -> QTransform: ... method __mul__ (line 15629) | def __mul__(self, l: PySide2.QtCore.QLine) -> PySide2.QtCore.QLine: ... method __mul__ (line 15631) | def __mul__(self, l: PySide2.QtCore.QLineF) -> PySide2.QtCore.QLineF: ... method __ne__ (line 15632) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 15633) | def __radd__(self, other): ... method __rlshift__ (line 15634) | def __rlshift__(self, other): ... method __rmul__ (line 15635) | def __rmul__(self, other): ... method __rrshift__ (line 15636) | def __rrshift__(self, other): ... method __rshift__ (line 15637) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 15638) | def __rsub__(self, other): ... method __rtruediv__ (line 15639) | def __rtruediv__(self, other): ... method __sub__ (line 15640) | def __sub__(self, n: float) -> QTransform: ... method __truediv__ (line 15641) | def __truediv__(self, other): ... class QValidator (line 15643) | class QValidator(PySide2.QtCore.QObject): class State (line 15644) | class State: method __init__ (line 15651) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15652) | def __add__(self, other: typing.SupportsInt) -> QValidator.State: ... method __and__ (line 15653) | def __and__(self, other: typing.SupportsInt) -> QValidator.State: ... method __bool__ (line 15654) | def __bool__(self) -> bool: ... method __eq__ (line 15655) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15656) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15657) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15658) | def __hash__(self) -> int: ... method __index__ (line 15659) | def __index__(self) -> int: ... method __int__ (line 15660) | def __int__(self) -> int: ... method __le__ (line 15661) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15662) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15663) | def __mul__(self, other: typing.SupportsInt) -> QValidator.State: ... method __ne__ (line 15664) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15665) | def __or__(self, other: typing.SupportsInt) -> QValidator.State: ... method __pos__ (line 15666) | def __pos__(self): ... method __radd__ (line 15667) | def __radd__(self, other: typing.SupportsInt) -> QValidator.State: ... method __rand__ (line 15668) | def __rand__(self, other: typing.SupportsInt) -> QValidator.State: ... method __rmul__ (line 15669) | def __rmul__(self, other: typing.SupportsInt) -> QValidator.State: ... method __ror__ (line 15670) | def __ror__(self, other: typing.SupportsInt) -> QValidator.State: ... method __rsub__ (line 15671) | def __rsub__(self, other: typing.SupportsInt) -> QValidator.State: ... method __rxor__ (line 15672) | def __rxor__(self, other: typing.SupportsInt) -> QValidator.State: ... method __sub__ (line 15673) | def __sub__(self, other: typing.SupportsInt) -> QValidator.State: ... method __xor__ (line 15674) | def __xor__(self, other: typing.SupportsInt) -> QValidator.State: ... method __init__ (line 15680) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method fixup (line 15681) | def fixup(self, arg__1: str) -> None: ... method locale (line 15682) | def locale(self) -> PySide2.QtCore.QLocale: ... method setLocale (line 15683) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method validate (line 15684) | def validate(self, arg__1: str, arg__2: int) -> QValidator.State: ... class QVector2D (line 15686) | class QVector2D(shiboken2.Object): method __init__ (line 15688) | def __init__(self, xpos: float, ypos: float) -> None: ... method __init__ (line 15690) | def __init__(self, vector: QVector3D) -> None: ... method __init__ (line 15692) | def __init__(self, vector: QVector4D) -> None: ... method __init__ (line 15694) | def __init__(self, point: PySide2.QtCore.QPoint) -> None: ... method __init__ (line 15696) | def __init__(self, point: PySide2.QtCore.QPointF) -> None: ... method __init__ (line 15698) | def __init__(self) -> None: ... method distanceToLine (line 15699) | def distanceToLine(self, point: QVector2D, direction: QVector2D) -> fl... method distanceToPoint (line 15700) | def distanceToPoint(self, point: QVector2D) -> float: ... method dotProduct (line 15702) | def dotProduct(v1: QVector2D, v2: QVector2D) -> float: ... method isNull (line 15703) | def isNull(self) -> bool: ... method length (line 15704) | def length(self) -> float: ... method lengthSquared (line 15705) | def lengthSquared(self) -> float: ... method normalize (line 15706) | def normalize(self) -> None: ... method normalized (line 15707) | def normalized(self) -> QVector2D: ... method setX (line 15708) | def setX(self, x: float) -> None: ... method setY (line 15709) | def setY(self, y: float) -> None: ... method toPoint (line 15710) | def toPoint(self) -> PySide2.QtCore.QPoint: ... method toPointF (line 15711) | def toPointF(self) -> PySide2.QtCore.QPointF: ... method toTuple (line 15712) | def toTuple(self) -> tuple: ... method toVector3D (line 15713) | def toVector3D(self) -> QVector3D: ... method toVector4D (line 15714) | def toVector4D(self) -> QVector4D: ... method x (line 15715) | def x(self) -> float: ... method y (line 15716) | def y(self) -> float: ... method __add__ (line 15717) | def __add__(self, v2: QVector2D) -> QVector2D: ... method __bool__ (line 15718) | def __bool__(self) -> bool: ... method __copy__ (line 15719) | def __copy__(self) -> None: ... method __eq__ (line 15720) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15721) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15722) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 15723) | def __iadd__(self, vector: QVector2D) -> QVector2D: ... method __imul__ (line 15725) | def __imul__(self, vector: QVector2D) -> QVector2D: ... method __imul__ (line 15727) | def __imul__(self, factor: float) -> QVector2D: ... method __isub__ (line 15728) | def __isub__(self, vector: QVector2D) -> QVector2D: ... method __le__ (line 15729) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 15730) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 15731) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15733) | def __mul__(self, v2: QVector2D) -> QVector2D: ... method __mul__ (line 15735) | def __mul__(self, factor: float) -> QVector2D: ... method __ne__ (line 15736) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 15737) | def __neg__(self) -> QVector2D: ... method __radd__ (line 15738) | def __radd__(self, other): ... method __rlshift__ (line 15739) | def __rlshift__(self, other): ... method __rmul__ (line 15740) | def __rmul__(self, other): ... method __rrshift__ (line 15741) | def __rrshift__(self, other): ... method __rshift__ (line 15742) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 15743) | def __rsub__(self, other): ... method __rtruediv__ (line 15744) | def __rtruediv__(self, other): ... method __sub__ (line 15745) | def __sub__(self, v2: QVector2D) -> QVector2D: ... method __truediv__ (line 15746) | def __truediv__(self, other): ... class QVector3D (line 15748) | class QVector3D(shiboken2.Object): method __init__ (line 15750) | def __init__(self, xpos: float, ypos: float, zpos: float) -> None: ... method __init__ (line 15752) | def __init__(self, vector: QVector2D, zpos: float) -> None: ... method __init__ (line 15754) | def __init__(self, vector: QVector2D) -> None: ... method __init__ (line 15756) | def __init__(self, vector: QVector4D) -> None: ... method __init__ (line 15758) | def __init__(self, point: PySide2.QtCore.QPoint) -> None: ... method __init__ (line 15760) | def __init__(self, point: PySide2.QtCore.QPointF) -> None: ... method __init__ (line 15762) | def __init__(self) -> None: ... method crossProduct (line 15764) | def crossProduct(v1: QVector3D, v2: QVector3D) -> QVector3D: ... method distanceToLine (line 15765) | def distanceToLine(self, point: QVector3D, direction: QVector3D) -> fl... method distanceToPlane (line 15767) | def distanceToPlane(self, plane1: QVector3D, plane2: QVector3D, plane3... method distanceToPlane (line 15769) | def distanceToPlane(self, plane: QVector3D, normal: QVector3D) -> floa... method distanceToPoint (line 15770) | def distanceToPoint(self, point: QVector3D) -> float: ... method dotProduct (line 15772) | def dotProduct(v1: QVector3D, v2: QVector3D) -> float: ... method isNull (line 15773) | def isNull(self) -> bool: ... method length (line 15774) | def length(self) -> float: ... method lengthSquared (line 15775) | def lengthSquared(self) -> float: ... method normal (line 15778) | def normal(v1: QVector3D, v2: QVector3D, v3: QVector3D) -> QVector3D: ... method normal (line 15781) | def normal(v1: QVector3D, v2: QVector3D) -> QVector3D: ... method normalize (line 15782) | def normalize(self) -> None: ... method normalized (line 15783) | def normalized(self) -> QVector3D: ... method project (line 15784) | def project(self, modelView: QMatrix4x4, projection: QMatrix4x4, viewp... method setX (line 15785) | def setX(self, x: float) -> None: ... method setY (line 15786) | def setY(self, y: float) -> None: ... method setZ (line 15787) | def setZ(self, z: float) -> None: ... method toPoint (line 15788) | def toPoint(self) -> PySide2.QtCore.QPoint: ... method toPointF (line 15789) | def toPointF(self) -> PySide2.QtCore.QPointF: ... method toTuple (line 15790) | def toTuple(self) -> tuple: ... method toVector2D (line 15791) | def toVector2D(self) -> QVector2D: ... method toVector4D (line 15792) | def toVector4D(self) -> QVector4D: ... method unproject (line 15793) | def unproject(self, modelView: QMatrix4x4, projection: QMatrix4x4, vie... method x (line 15794) | def x(self) -> float: ... method y (line 15795) | def y(self) -> float: ... method z (line 15796) | def z(self) -> float: ... method __add__ (line 15797) | def __add__(self, v2: QVector3D) -> QVector3D: ... method __bool__ (line 15798) | def __bool__(self) -> bool: ... method __copy__ (line 15799) | def __copy__(self) -> None: ... method __eq__ (line 15800) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15801) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15802) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 15803) | def __iadd__(self, vector: QVector3D) -> QVector3D: ... method __imul__ (line 15805) | def __imul__(self, vector: QVector3D) -> QVector3D: ... method __imul__ (line 15807) | def __imul__(self, factor: float) -> QVector3D: ... method __isub__ (line 15808) | def __isub__(self, vector: QVector3D) -> QVector3D: ... method __le__ (line 15809) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 15810) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 15811) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15813) | def __mul__(self, v2: QVector3D) -> QVector3D: ... method __mul__ (line 15815) | def __mul__(self, quaternion: QQuaternion) -> QVector3D: ... method __mul__ (line 15817) | def __mul__(self, matrix: QMatrix4x4) -> QVector3D: ... method __mul__ (line 15819) | def __mul__(self, factor: float) -> QVector3D: ... method __ne__ (line 15820) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 15821) | def __neg__(self) -> QVector3D: ... method __radd__ (line 15822) | def __radd__(self, other): ... method __rlshift__ (line 15823) | def __rlshift__(self, other): ... method __rmul__ (line 15824) | def __rmul__(self, other): ... method __rrshift__ (line 15825) | def __rrshift__(self, other): ... method __rshift__ (line 15826) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 15827) | def __rsub__(self, other): ... method __rtruediv__ (line 15828) | def __rtruediv__(self, other): ... method __sub__ (line 15829) | def __sub__(self, v2: QVector3D) -> QVector3D: ... method __truediv__ (line 15830) | def __truediv__(self, other): ... class QVector4D (line 15832) | class QVector4D(shiboken2.Object): method __init__ (line 15834) | def __init__(self, xpos: float, ypos: float, zpos: float, wpos: float)... method __init__ (line 15836) | def __init__(self, vector: QVector2D, zpos: float, wpos: float) -> Non... method __init__ (line 15838) | def __init__(self, vector: QVector3D, wpos: float) -> None: ... method __init__ (line 15840) | def __init__(self, vector: QVector2D) -> None: ... method __init__ (line 15842) | def __init__(self, vector: QVector3D) -> None: ... method __init__ (line 15844) | def __init__(self, point: PySide2.QtCore.QPoint) -> None: ... method __init__ (line 15846) | def __init__(self, point: PySide2.QtCore.QPointF) -> None: ... method __init__ (line 15848) | def __init__(self) -> None: ... method dotProduct (line 15850) | def dotProduct(v1: QVector4D, v2: QVector4D) -> float: ... method isNull (line 15851) | def isNull(self) -> bool: ... method length (line 15852) | def length(self) -> float: ... method lengthSquared (line 15853) | def lengthSquared(self) -> float: ... method normalize (line 15854) | def normalize(self) -> None: ... method normalized (line 15855) | def normalized(self) -> QVector4D: ... method setW (line 15856) | def setW(self, w: float) -> None: ... method setX (line 15857) | def setX(self, x: float) -> None: ... method setY (line 15858) | def setY(self, y: float) -> None: ... method setZ (line 15859) | def setZ(self, z: float) -> None: ... method toPoint (line 15860) | def toPoint(self) -> PySide2.QtCore.QPoint: ... method toPointF (line 15861) | def toPointF(self) -> PySide2.QtCore.QPointF: ... method toTuple (line 15862) | def toTuple(self) -> tuple: ... method toVector2D (line 15863) | def toVector2D(self) -> QVector2D: ... method toVector2DAffine (line 15864) | def toVector2DAffine(self) -> QVector2D: ... method toVector3D (line 15865) | def toVector3D(self) -> QVector3D: ... method toVector3DAffine (line 15866) | def toVector3DAffine(self) -> QVector3D: ... method w (line 15867) | def w(self) -> float: ... method x (line 15868) | def x(self) -> float: ... method y (line 15869) | def y(self) -> float: ... method z (line 15870) | def z(self) -> float: ... method __add__ (line 15871) | def __add__(self, v2: QVector4D) -> QVector4D: ... method __bool__ (line 15872) | def __bool__(self) -> bool: ... method __copy__ (line 15873) | def __copy__(self) -> None: ... method __eq__ (line 15874) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15875) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15876) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 15877) | def __iadd__(self, vector: QVector4D) -> QVector4D: ... method __imul__ (line 15879) | def __imul__(self, vector: QVector4D) -> QVector4D: ... method __imul__ (line 15881) | def __imul__(self, factor: float) -> QVector4D: ... method __isub__ (line 15882) | def __isub__(self, vector: QVector4D) -> QVector4D: ... method __le__ (line 15883) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 15884) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 15885) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15887) | def __mul__(self, v2: QVector4D) -> QVector4D: ... method __mul__ (line 15889) | def __mul__(self, matrix: QMatrix4x4) -> QVector4D: ... method __mul__ (line 15891) | def __mul__(self, factor: float) -> QVector4D: ... method __ne__ (line 15892) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 15893) | def __neg__(self) -> QVector4D: ... method __radd__ (line 15894) | def __radd__(self, other): ... method __rlshift__ (line 15895) | def __rlshift__(self, other): ... method __rmul__ (line 15896) | def __rmul__(self, other): ... method __rrshift__ (line 15897) | def __rrshift__(self, other): ... method __rshift__ (line 15898) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rsub__ (line 15899) | def __rsub__(self, other): ... method __rtruediv__ (line 15900) | def __rtruediv__(self, other): ... method __sub__ (line 15901) | def __sub__(self, v2: QVector4D) -> QVector4D: ... method __truediv__ (line 15902) | def __truediv__(self, other): ... class QWhatsThisClickedEvent (line 15904) | class QWhatsThisClickedEvent(PySide2.QtCore.QEvent): method __init__ (line 15905) | def __init__(self, href: str) -> None: ... method href (line 15906) | def href(self) -> str: ... class QWheelEvent (line 15908) | class QWheelEvent(QInputEvent): method __init__ (line 15919) | def __init__(self, pos: PySide2.QtCore.QPointF, globalPos: PySide2.QtC... method __init__ (line 15921) | def __init__(self, pos: PySide2.QtCore.QPointF, globalPos: PySide2.QtC... method __init__ (line 15923) | def __init__(self, pos: PySide2.QtCore.QPointF, globalPos: PySide2.QtC... method __init__ (line 15925) | def __init__(self, pos: PySide2.QtCore.QPointF, globalPos: PySide2.QtC... method __init__ (line 15927) | def __init__(self, pos: PySide2.QtCore.QPointF, globalPos: PySide2.QtC... method __init__ (line 15929) | def __init__(self, pos: PySide2.QtCore.QPointF, globalPos: PySide2.QtC... method __init__ (line 15931) | def __init__(self, pos: PySide2.QtCore.QPointF, delta: int, buttons: P... method angleDelta (line 15932) | def angleDelta(self) -> PySide2.QtCore.QPoint: ... method buttons (line 15933) | def buttons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.Q... method delta (line 15934) | def delta(self) -> int: ... method globalPos (line 15935) | def globalPos(self) -> PySide2.QtCore.QPoint: ... method globalPosF (line 15936) | def globalPosF(self) -> PySide2.QtCore.QPointF: ... method globalPosition (line 15937) | def globalPosition(self) -> PySide2.QtCore.QPointF: ... method globalX (line 15938) | def globalX(self) -> int: ... method globalY (line 15939) | def globalY(self) -> int: ... method inverted (line 15940) | def inverted(self) -> bool: ... method orientation (line 15941) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method phase (line 15942) | def phase(self) -> PySide2.QtCore.Qt.ScrollPhase: ... method pixelDelta (line 15943) | def pixelDelta(self) -> PySide2.QtCore.QPoint: ... method pos (line 15944) | def pos(self) -> PySide2.QtCore.QPoint: ... method posF (line 15945) | def posF(self) -> PySide2.QtCore.QPointF: ... method position (line 15946) | def position(self) -> PySide2.QtCore.QPointF: ... method source (line 15947) | def source(self) -> PySide2.QtCore.Qt.MouseEventSource: ... method x (line 15948) | def x(self) -> int: ... method y (line 15949) | def y(self) -> int: ... class QWindow (line 15951) | class QWindow(PySide2.QtCore.QObject, QSurface): class AncestorMode (line 15952) | class AncestorMode: method __init__ (line 15958) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15959) | def __add__(self, other: typing.SupportsInt) -> QWindow.AncestorMode... method __and__ (line 15960) | def __and__(self, other: typing.SupportsInt) -> QWindow.AncestorMode... method __bool__ (line 15961) | def __bool__(self) -> bool: ... method __eq__ (line 15962) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15963) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15964) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15965) | def __hash__(self) -> int: ... method __index__ (line 15966) | def __index__(self) -> int: ... method __int__ (line 15967) | def __int__(self) -> int: ... method __le__ (line 15968) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15969) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15970) | def __mul__(self, other: typing.SupportsInt) -> QWindow.AncestorMode... method __ne__ (line 15971) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15972) | def __or__(self, other: typing.SupportsInt) -> QWindow.AncestorMode:... method __pos__ (line 15973) | def __pos__(self): ... method __radd__ (line 15974) | def __radd__(self, other: typing.SupportsInt) -> QWindow.AncestorMod... method __rand__ (line 15975) | def __rand__(self, other: typing.SupportsInt) -> QWindow.AncestorMod... method __rmul__ (line 15976) | def __rmul__(self, other: typing.SupportsInt) -> QWindow.AncestorMod... method __ror__ (line 15977) | def __ror__(self, other: typing.SupportsInt) -> QWindow.AncestorMode... method __rsub__ (line 15978) | def __rsub__(self, other: typing.SupportsInt) -> QWindow.AncestorMod... method __rxor__ (line 15979) | def __rxor__(self, other: typing.SupportsInt) -> QWindow.AncestorMod... method __sub__ (line 15980) | def __sub__(self, other: typing.SupportsInt) -> QWindow.AncestorMode... method __xor__ (line 15981) | def __xor__(self, other: typing.SupportsInt) -> QWindow.AncestorMode... class Visibility (line 15983) | class Visibility: method __init__ (line 15993) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15994) | def __add__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __and__ (line 15995) | def __and__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __bool__ (line 15996) | def __bool__(self) -> bool: ... method __eq__ (line 15997) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15998) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15999) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16000) | def __hash__(self) -> int: ... method __index__ (line 16001) | def __index__(self) -> int: ... method __int__ (line 16002) | def __int__(self) -> int: ... method __le__ (line 16003) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16004) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16005) | def __mul__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __ne__ (line 16006) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16007) | def __or__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __pos__ (line 16008) | def __pos__(self): ... method __radd__ (line 16009) | def __radd__(self, other: typing.SupportsInt) -> QWindow.Visibility:... method __rand__ (line 16010) | def __rand__(self, other: typing.SupportsInt) -> QWindow.Visibility:... method __rmul__ (line 16011) | def __rmul__(self, other: typing.SupportsInt) -> QWindow.Visibility:... method __ror__ (line 16012) | def __ror__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __rsub__ (line 16013) | def __rsub__(self, other: typing.SupportsInt) -> QWindow.Visibility:... method __rxor__ (line 16014) | def __rxor__(self, other: typing.SupportsInt) -> QWindow.Visibility:... method __sub__ (line 16015) | def __sub__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __xor__ (line 16016) | def __xor__(self, other: typing.SupportsInt) -> QWindow.Visibility: ... method __init__ (line 16046) | def __init__(self, screen: QScreen | None = ..., active: bool = ..., a... method __init__ (line 16048) | def __init__(self, parent: QWindow, active: bool = ..., activeChanged:... method accessibleRoot (line 16049) | def accessibleRoot(self) -> QAccessibleInterface: ... method alert (line 16050) | def alert(self, msec: int) -> None: ... method baseSize (line 16051) | def baseSize(self) -> PySide2.QtCore.QSize: ... method close (line 16052) | def close(self) -> bool: ... method contentOrientation (line 16053) | def contentOrientation(self) -> PySide2.QtCore.Qt.ScreenOrientation: ... method create (line 16054) | def create(self) -> None: ... method cursor (line 16055) | def cursor(self) -> QCursor: ... method destroy (line 16056) | def destroy(self) -> None: ... method devicePixelRatio (line 16057) | def devicePixelRatio(self) -> float: ... method event (line 16058) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method exposeEvent (line 16059) | def exposeEvent(self, arg__1: QExposeEvent) -> None: ... method filePath (line 16060) | def filePath(self) -> str: ... method flags (line 16061) | def flags(self) -> PySide2.QtCore.Qt.WindowFlags | PySide2.QtCore.Qt.W... method focusInEvent (line 16062) | def focusInEvent(self, arg__1: QFocusEvent) -> None: ... method focusObject (line 16063) | def focusObject(self) -> PySide2.QtCore.QObject: ... method focusOutEvent (line 16064) | def focusOutEvent(self, arg__1: QFocusEvent) -> None: ... method format (line 16065) | def format(self) -> QSurfaceFormat: ... method frameGeometry (line 16066) | def frameGeometry(self) -> PySide2.QtCore.QRect: ... method frameMargins (line 16067) | def frameMargins(self) -> PySide2.QtCore.QMargins: ... method framePosition (line 16068) | def framePosition(self) -> PySide2.QtCore.QPoint: ... method fromWinId (line 16070) | def fromWinId(id: int) -> QWindow: ... method geometry (line 16071) | def geometry(self) -> PySide2.QtCore.QRect: ... method height (line 16072) | def height(self) -> int: ... method hide (line 16073) | def hide(self) -> None: ... method hideEvent (line 16074) | def hideEvent(self, arg__1: QHideEvent) -> None: ... method icon (line 16075) | def icon(self) -> QIcon: ... method isActive (line 16076) | def isActive(self) -> bool: ... method isAncestorOf (line 16077) | def isAncestorOf(self, child: QWindow, mode: QWindow.AncestorMode = ..... method isExposed (line 16078) | def isExposed(self) -> bool: ... method isModal (line 16079) | def isModal(self) -> bool: ... method isTopLevel (line 16080) | def isTopLevel(self) -> bool: ... method isVisible (line 16081) | def isVisible(self) -> bool: ... method keyPressEvent (line 16082) | def keyPressEvent(self, arg__1: QKeyEvent) -> None: ... method keyReleaseEvent (line 16083) | def keyReleaseEvent(self, arg__1: QKeyEvent) -> None: ... method lower (line 16084) | def lower(self) -> None: ... method mapFromGlobal (line 16085) | def mapFromGlobal(self, pos: PySide2.QtCore.QPoint) -> PySide2.QtCore.... method mapToGlobal (line 16086) | def mapToGlobal(self, pos: PySide2.QtCore.QPoint) -> PySide2.QtCore.QP... method mask (line 16087) | def mask(self) -> QRegion: ... method maximumHeight (line 16088) | def maximumHeight(self) -> int: ... method maximumSize (line 16089) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method maximumWidth (line 16090) | def maximumWidth(self) -> int: ... method minimumHeight (line 16091) | def minimumHeight(self) -> int: ... method minimumSize (line 16092) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method minimumWidth (line 16093) | def minimumWidth(self) -> int: ... method modality (line 16094) | def modality(self) -> PySide2.QtCore.Qt.WindowModality: ... method mouseDoubleClickEvent (line 16095) | def mouseDoubleClickEvent(self, arg__1: QMouseEvent) -> None: ... method mouseMoveEvent (line 16096) | def mouseMoveEvent(self, arg__1: QMouseEvent) -> None: ... method mousePressEvent (line 16097) | def mousePressEvent(self, arg__1: QMouseEvent) -> None: ... method mouseReleaseEvent (line 16098) | def mouseReleaseEvent(self, arg__1: QMouseEvent) -> None: ... method moveEvent (line 16099) | def moveEvent(self, arg__1: QMoveEvent) -> None: ... method nativeEvent (line 16100) | def nativeEvent(self, eventType: PySide2.QtCore.QByteArray | bytes, me... method opacity (line 16101) | def opacity(self) -> float: ... method parent (line 16103) | def parent(self, mode: QWindow.AncestorMode) -> QWindow: ... method parent (line 16105) | def parent(self) -> QWindow: ... method position (line 16106) | def position(self) -> PySide2.QtCore.QPoint: ... method raise_ (line 16107) | def raise_(self) -> None: ... method reportContentOrientationChange (line 16108) | def reportContentOrientationChange(self, orientation: PySide2.QtCore.Q... method requestActivate (line 16109) | def requestActivate(self) -> None: ... method requestUpdate (line 16110) | def requestUpdate(self) -> None: ... method requestedFormat (line 16111) | def requestedFormat(self) -> QSurfaceFormat: ... method resize (line 16113) | def resize(self, w: int, h: int) -> None: ... method resize (line 16115) | def resize(self, newSize: PySide2.QtCore.QSize) -> None: ... method resizeEvent (line 16116) | def resizeEvent(self, arg__1: QResizeEvent) -> None: ... method screen (line 16117) | def screen(self) -> QScreen: ... method setBaseSize (line 16118) | def setBaseSize(self, size: PySide2.QtCore.QSize) -> None: ... method setCursor (line 16119) | def setCursor(self, arg__1: QCursor | PySide2.QtCore.Qt.CursorShape) -... method setFilePath (line 16120) | def setFilePath(self, filePath: str) -> None: ... method setFlag (line 16121) | def setFlag(self, arg__1: PySide2.QtCore.Qt.WindowType, on: bool = ...... method setFlags (line 16122) | def setFlags(self, flags: PySide2.QtCore.Qt.WindowFlags | PySide2.QtCo... method setFormat (line 16123) | def setFormat(self, format: QSurfaceFormat) -> None: ... method setFramePosition (line 16124) | def setFramePosition(self, point: PySide2.QtCore.QPoint) -> None: ... method setGeometry (line 16126) | def setGeometry(self, posx: int, posy: int, w: int, h: int) -> None: ... method setGeometry (line 16128) | def setGeometry(self, rect: PySide2.QtCore.QRect) -> None: ... method setHeight (line 16129) | def setHeight(self, arg: int) -> None: ... method setIcon (line 16130) | def setIcon(self, icon: QIcon) -> None: ... method setKeyboardGrabEnabled (line 16131) | def setKeyboardGrabEnabled(self, grab: bool) -> bool: ... method setMask (line 16132) | def setMask(self, region: QRegion) -> None: ... method setMaximumHeight (line 16133) | def setMaximumHeight(self, h: int) -> None: ... method setMaximumSize (line 16134) | def setMaximumSize(self, size: PySide2.QtCore.QSize) -> None: ... method setMaximumWidth (line 16135) | def setMaximumWidth(self, w: int) -> None: ... method setMinimumHeight (line 16136) | def setMinimumHeight(self, h: int) -> None: ... method setMinimumSize (line 16137) | def setMinimumSize(self, size: PySide2.QtCore.QSize) -> None: ... method setMinimumWidth (line 16138) | def setMinimumWidth(self, w: int) -> None: ... method setModality (line 16139) | def setModality(self, modality: PySide2.QtCore.Qt.WindowModality) -> N... method setMouseGrabEnabled (line 16140) | def setMouseGrabEnabled(self, grab: bool) -> bool: ... method setOpacity (line 16141) | def setOpacity(self, level: float) -> None: ... method setParent (line 16143) | def setParent(self, parent: PySide2.QtCore.QObject | None) -> None: ... method setParent (line 16145) | def setParent(self, parent: QWindow) -> None: ... # type: ignore[over... method setPosition (line 16147) | def setPosition(self, posx: int, posy: int) -> None: ... method setPosition (line 16149) | def setPosition(self, pt: PySide2.QtCore.QPoint) -> None: ... method setScreen (line 16150) | def setScreen(self, screen: QScreen) -> None: ... method setSizeIncrement (line 16151) | def setSizeIncrement(self, size: PySide2.QtCore.QSize) -> None: ... method setSurfaceType (line 16152) | def setSurfaceType(self, surfaceType: QSurface.SurfaceType) -> None: ... method setTitle (line 16153) | def setTitle(self, arg__1: str) -> None: ... method setTransientParent (line 16154) | def setTransientParent(self, parent: QWindow) -> None: ... method setVisibility (line 16155) | def setVisibility(self, v: QWindow.Visibility) -> None: ... method setVisible (line 16156) | def setVisible(self, visible: bool) -> None: ... method setWidth (line 16157) | def setWidth(self, arg: int) -> None: ... method setWindowState (line 16158) | def setWindowState(self, state: PySide2.QtCore.Qt.WindowState) -> None... method setWindowStates (line 16159) | def setWindowStates(self, states: PySide2.QtCore.Qt.WindowStates | PyS... method setX (line 16160) | def setX(self, arg: int) -> None: ... method setY (line 16161) | def setY(self, arg: int) -> None: ... method show (line 16162) | def show(self) -> None: ... method showEvent (line 16163) | def showEvent(self, arg__1: QShowEvent) -> None: ... method showFullScreen (line 16164) | def showFullScreen(self) -> None: ... method showMaximized (line 16165) | def showMaximized(self) -> None: ... method showMinimized (line 16166) | def showMinimized(self) -> None: ... method showNormal (line 16167) | def showNormal(self) -> None: ... method size (line 16168) | def size(self) -> PySide2.QtCore.QSize: ... method sizeIncrement (line 16169) | def sizeIncrement(self) -> PySide2.QtCore.QSize: ... method startSystemMove (line 16170) | def startSystemMove(self) -> bool: ... method startSystemResize (line 16171) | def startSystemResize(self, edges: PySide2.QtCore.Qt.Edges | PySide2.Q... method surfaceHandle (line 16172) | def surfaceHandle(self) -> int: ... method surfaceType (line 16173) | def surfaceType(self) -> QSurface.SurfaceType: ... method tabletEvent (line 16174) | def tabletEvent(self, arg__1: QTabletEvent) -> None: ... method title (line 16175) | def title(self) -> str: ... method touchEvent (line 16176) | def touchEvent(self, arg__1: QTouchEvent) -> None: ... method transientParent (line 16177) | def transientParent(self) -> QWindow: ... method type (line 16178) | def type(self) -> PySide2.QtCore.Qt.WindowType: ... method unsetCursor (line 16179) | def unsetCursor(self) -> None: ... method visibility (line 16180) | def visibility(self) -> QWindow.Visibility: ... method wheelEvent (line 16181) | def wheelEvent(self, arg__1: QWheelEvent) -> None: ... method width (line 16182) | def width(self) -> int: ... method winId (line 16183) | def winId(self) -> int: ... method windowState (line 16184) | def windowState(self) -> PySide2.QtCore.Qt.WindowState: ... method windowStates (line 16185) | def windowStates(self) -> PySide2.QtCore.Qt.WindowStates | PySide2.QtC... method x (line 16186) | def x(self) -> int: ... method y (line 16187) | def y(self) -> int: ... class QWindowStateChangeEvent (line 16189) | class QWindowStateChangeEvent(PySide2.QtCore.QEvent): method __init__ (line 16190) | def __init__(self, aOldState: PySide2.QtCore.Qt.WindowStates | PySide2... method isOverride (line 16191) | def isOverride(self) -> bool: ... method oldState (line 16192) | def oldState(self) -> PySide2.QtCore.Qt.WindowStates | PySide2.QtCore.... class Qt (line 16194) | class Qt(PySide2.QtCore.Qt): method __init__ (line 16196) | def __init__(cls, *args, **kwargs) -> None: ... method codecForHtml (line 16198) | def codecForHtml(ba: PySide2.QtCore.QByteArray | bytes) -> PySide2.QtC... method convertFromPlainText (line 16200) | def convertFromPlainText(plain: str, mode: PySide2.QtCore.Qt.WhiteSpac... method mightBeRichText (line 16202) | def mightBeRichText(arg__1: str) -> bool: ... function qAlpha (line 16204) | def qAlpha(rgb: int) -> int: ... function qBlue (line 16205) | def qBlue(rgb: int) -> int: ... function qGray (line 16207) | def qGray(r: int, g: int, b: int) -> int: ... function qGray (line 16209) | def qGray(rgb: int) -> int: ... function qGreen (line 16210) | def qGreen(rgb: int) -> int: ... function qIsGray (line 16211) | def qIsGray(rgb: int) -> bool: ... function qRed (line 16212) | def qRed(rgb: int) -> int: ... function qRgb (line 16213) | def qRgb(r: int, g: int, b: int) -> int: ... function qRgba (line 16214) | def qRgba(r: int, g: int, b: int, a: int) -> int: ... FILE: pyside/stubs/PySide2-stubs/QtHelp.pyi class QCompressedHelpInfo (line 13) | class QCompressedHelpInfo(shiboken2.Object): method __init__ (line 15) | def __init__(self, other: QCompressedHelpInfo) -> None: ... method __init__ (line 17) | def __init__(self) -> None: ... method component (line 18) | def component(self) -> str: ... method fromCompressedHelpFile (line 20) | def fromCompressedHelpFile(documentationFileName: str) -> QCompressedH... method isNull (line 21) | def isNull(self) -> bool: ... method namespaceName (line 22) | def namespaceName(self) -> str: ... method swap (line 23) | def swap(self, other: QCompressedHelpInfo) -> None: ... method version (line 24) | def version(self) -> PySide2.QtCore.QVersionNumber: ... method __bool__ (line 25) | def __bool__(self) -> bool: ... method __copy__ (line 26) | def __copy__(self) -> None: ... class QHelpContentItem (line 28) | class QHelpContentItem(shiboken2.Object): method __init__ (line 30) | def __init__(cls, *args, **kwargs) -> None: ... method child (line 31) | def child(self, row: int) -> QHelpContentItem: ... method childCount (line 32) | def childCount(self) -> int: ... method childPosition (line 33) | def childPosition(self, child: QHelpContentItem) -> int: ... method parent (line 34) | def parent(self) -> QHelpContentItem: ... method row (line 35) | def row(self) -> int: ... method title (line 36) | def title(self) -> str: ... method url (line 37) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 38) | def __copy__(self) -> None: ... class QHelpContentModel (line 40) | class QHelpContentModel(PySide2.QtCore.QAbstractItemModel): method __init__ (line 45) | def __init__(cls, *args, columnsAboutToBeInserted: typing.Callable = .... method columnCount (line 46) | def columnCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int... method contentItemAt (line 47) | def contentItemAt(self, index: PySide2.QtCore.QModelIndex) -> QHelpCon... method createContents (line 48) | def createContents(self, customFilterName: str) -> None: ... method data (line 49) | def data(self, index: PySide2.QtCore.QModelIndex, role: PySide2.QtCore... method index (line 50) | def index(self, row: int, column: int, parent: PySide2.QtCore.QModelIn... method isCreatingContents (line 51) | def isCreatingContents(self) -> bool: ... method parent (line 53) | def parent(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.... method parent (line 55) | def parent(self) -> PySide2.QtCore.QObject: ... method rowCount (line 56) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... class QHelpContentWidget (line 58) | class QHelpContentWidget(PySide2.QtWidgets.QTreeView): method __init__ (line 62) | def __init__(cls, *args, acceptDrops: bool = ..., accessibleDescriptio... method indexOf (line 63) | def indexOf(self, link: PySide2.QtCore.QUrl) -> PySide2.QtCore.QModelI... class QHelpEngine (line 65) | class QHelpEngine(QHelpEngineCore): method __init__ (line 67) | def __init__(self, collectionFile: str, parent: PySide2.QtCore.QObject... method contentModel (line 68) | def contentModel(self) -> QHelpContentModel: ... method contentWidget (line 69) | def contentWidget(self) -> QHelpContentWidget: ... method indexModel (line 70) | def indexModel(self) -> QHelpIndexModel: ... method indexWidget (line 71) | def indexWidget(self) -> QHelpIndexWidget: ... method searchEngine (line 72) | def searchEngine(self) -> QHelpSearchEngine: ... class QHelpEngineCore (line 74) | class QHelpEngineCore(PySide2.QtCore.QObject): method __init__ (line 81) | def __init__(self, collectionFile: str, parent: PySide2.QtCore.QObject... method addCustomFilter (line 82) | def addCustomFilter(self, filterName: str, attributes: typing.Iterable... method autoSaveFilter (line 83) | def autoSaveFilter(self) -> bool: ... method collectionFile (line 84) | def collectionFile(self) -> str: ... method copyCollectionFile (line 85) | def copyCollectionFile(self, fileName: str) -> bool: ... method currentFilter (line 86) | def currentFilter(self) -> str: ... method customFilters (line 87) | def customFilters(self) -> list[str]: ... method customValue (line 88) | def customValue(self, key: str, defaultValue: typing.Any = ...) -> typ... method documentationFileName (line 89) | def documentationFileName(self, namespaceName: str) -> str: ... method documentsForIdentifier (line 91) | def documentsForIdentifier(self, id: str, filterName: str) -> list[QHe... method documentsForIdentifier (line 93) | def documentsForIdentifier(self, id: str) -> list[QHelpLink]: ... method documentsForKeyword (line 95) | def documentsForKeyword(self, keyword: str, filterName: str) -> list[Q... method documentsForKeyword (line 97) | def documentsForKeyword(self, keyword: str) -> list[QHelpLink]: ... method error (line 98) | def error(self) -> str: ... method fileData (line 99) | def fileData(self, url: PySide2.QtCore.QUrl) -> PySide2.QtCore.QByteAr... method files (line 101) | def files(self, namespaceName: str, filterName: str, extensionFilter: ... method files (line 103) | def files(self, namespaceName: str, filterAttributes: typing.Iterable[... method filterAttributeSets (line 104) | def filterAttributeSets(self, namespaceName: str) -> list[list[str]]: ... method filterAttributes (line 106) | def filterAttributes(self, filterName: str) -> list[str]: ... method filterAttributes (line 108) | def filterAttributes(self) -> list[str]: ... method filterEngine (line 109) | def filterEngine(self) -> QHelpFilterEngine: ... method findFile (line 110) | def findFile(self, url: PySide2.QtCore.QUrl) -> PySide2.QtCore.QUrl: ... method linksForIdentifier (line 111) | def linksForIdentifier(self, id: str) -> dict[str, PySide2.QtCore.QUrl... method linksForKeyword (line 112) | def linksForKeyword(self, keyword: str) -> dict[str, PySide2.QtCore.QU... method metaData (line 114) | def metaData(documentationFileName: str, name: str) -> typing.Any: ... method namespaceName (line 116) | def namespaceName(documentationFileName: str) -> str: ... method registerDocumentation (line 117) | def registerDocumentation(self, documentationFileName: str) -> bool: ... method registeredDocumentations (line 118) | def registeredDocumentations(self) -> list[str]: ... method removeCustomFilter (line 119) | def removeCustomFilter(self, filterName: str) -> bool: ... method removeCustomValue (line 120) | def removeCustomValue(self, key: str) -> bool: ... method setAutoSaveFilter (line 121) | def setAutoSaveFilter(self, save: bool) -> None: ... method setCollectionFile (line 122) | def setCollectionFile(self, fileName: str) -> None: ... method setCurrentFilter (line 123) | def setCurrentFilter(self, filterName: str) -> None: ... method setCustomValue (line 124) | def setCustomValue(self, key: str, value: typing.Any) -> bool: ... method setUsesFilterEngine (line 125) | def setUsesFilterEngine(self, uses: bool) -> None: ... method setupData (line 126) | def setupData(self) -> bool: ... method unregisterDocumentation (line 127) | def unregisterDocumentation(self, namespaceName: str) -> bool: ... method usesFilterEngine (line 128) | def usesFilterEngine(self) -> bool: ... class QHelpFilterData (line 130) | class QHelpFilterData(shiboken2.Object): method __init__ (line 132) | def __init__(self, other: QHelpFilterData) -> None: ... method __init__ (line 134) | def __init__(self) -> None: ... method components (line 135) | def components(self) -> list[str]: ... method setComponents (line 136) | def setComponents(self, components: typing.Iterable[str]) -> None: ... method setVersions (line 137) | def setVersions(self, versions: typing.Iterable[PySide2.QtCore.QVersio... method swap (line 138) | def swap(self, other: QHelpFilterData) -> None: ... method versions (line 139) | def versions(self) -> list[PySide2.QtCore.QVersionNumber]: ... method __copy__ (line 140) | def __copy__(self) -> None: ... method __eq__ (line 141) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 142) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 143) | def __gt__(self, other: object) -> bool: ... method __le__ (line 144) | def __le__(self, other: object) -> bool: ... method __lt__ (line 145) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 146) | def __ne__(self, other: object) -> bool: ... class QHelpFilterEngine (line 148) | class QHelpFilterEngine(PySide2.QtCore.QObject): method __init__ (line 151) | def __init__(self, helpEngine: QHelpEngineCore, destroyed: typing.Call... method activeFilter (line 152) | def activeFilter(self) -> str: ... method availableComponents (line 153) | def availableComponents(self) -> list[str]: ... method availableVersions (line 154) | def availableVersions(self) -> list[PySide2.QtCore.QVersionNumber]: ... method filterData (line 155) | def filterData(self, filterName: str) -> QHelpFilterData: ... method filters (line 156) | def filters(self) -> list[str]: ... method indices (line 158) | def indices(self, filterName: str) -> list[str]: ... method indices (line 160) | def indices(self) -> list[str]: ... method namespaceToComponent (line 161) | def namespaceToComponent(self) -> dict[str, str]: ... method namespaceToVersion (line 162) | def namespaceToVersion(self) -> dict[str, PySide2.QtCore.QVersionNumbe... method namespacesForFilter (line 163) | def namespacesForFilter(self, filterName: str) -> list[str]: ... method removeFilter (line 164) | def removeFilter(self, filterName: str) -> bool: ... method setActiveFilter (line 165) | def setActiveFilter(self, filterName: str) -> bool: ... method setFilterData (line 166) | def setFilterData(self, filterName: str, filterData: QHelpFilterData) ... class QHelpFilterSettingsWidget (line 168) | class QHelpFilterSettingsWidget(PySide2.QtWidgets.QWidget): method __init__ (line 170) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method applySettings (line 171) | def applySettings(self, filterEngine: QHelpFilterEngine) -> bool: ... method readSettings (line 172) | def readSettings(self, filterEngine: QHelpFilterEngine) -> None: ... method setAvailableComponents (line 173) | def setAvailableComponents(self, components: typing.Iterable[str]) -> ... method setAvailableVersions (line 174) | def setAvailableVersions(self, versions: typing.Iterable[PySide2.QtCor... class QHelpIndexModel (line 176) | class QHelpIndexModel(PySide2.QtCore.QStringListModel): method __init__ (line 181) | def __init__(cls, *args, columnsAboutToBeInserted: typing.Callable = .... method createIndex (line 183) | def createIndex(self, row: int, column: int, ptr: object) -> PySide2.Q... method createIndex (line 185) | def createIndex(self, row: int, column: int, id: int = ...) -> PySide2... method createIndex (line 187) | def createIndex(self, customFilterName: str) -> None: ... method filter (line 188) | def filter(self, filter: str, wildcard: str = ...) -> PySide2.QtCore.Q... method helpEngine (line 189) | def helpEngine(self) -> QHelpEngineCore: ... method isCreatingIndex (line 190) | def isCreatingIndex(self) -> bool: ... method linksForKeyword (line 191) | def linksForKeyword(self, keyword: str) -> dict[str, PySide2.QtCore.QU... class QHelpIndexWidget (line 193) | class QHelpIndexWidget(PySide2.QtWidgets.QListView): method __init__ (line 200) | def __init__(cls, *args, acceptDrops: bool = ..., accessibleDescriptio... method activateCurrentItem (line 201) | def activateCurrentItem(self) -> None: ... method filterIndices (line 202) | def filterIndices(self, filter: str, wildcard: str = ...) -> None: ... class QHelpLink (line 204) | class QHelpLink(shiboken2.Object): method __init__ (line 208) | def __init__(self, QHelpLink: QHelpLink) -> None: ... method __init__ (line 210) | def __init__(self) -> None: ... method __copy__ (line 211) | def __copy__(self) -> None: ... class QHelpSearchEngine (line 213) | class QHelpSearchEngine(PySide2.QtCore.QObject): method __init__ (line 219) | def __init__(self, helpEngine: QHelpEngineCore, parent: PySide2.QtCore... method cancelIndexing (line 220) | def cancelIndexing(self) -> None: ... method cancelSearching (line 221) | def cancelSearching(self) -> None: ... method hitCount (line 222) | def hitCount(self) -> int: ... method hits (line 223) | def hits(self, start: int, end: int) -> list[tuple[str, str]]: ... method hitsCount (line 224) | def hitsCount(self) -> int: ... method query (line 225) | def query(self) -> list[QHelpSearchQuery]: ... method queryWidget (line 226) | def queryWidget(self) -> QHelpSearchQueryWidget: ... method reindexDocumentation (line 227) | def reindexDocumentation(self) -> None: ... method resultWidget (line 228) | def resultWidget(self) -> QHelpSearchResultWidget: ... method scheduleIndexDocumentation (line 229) | def scheduleIndexDocumentation(self) -> None: ... method search (line 231) | def search(self, searchInput: str) -> None: ... method search (line 233) | def search(self, queryList: typing.Iterable[QHelpSearchQuery]) -> None... method searchInput (line 234) | def searchInput(self) -> str: ... method searchResultCount (line 235) | def searchResultCount(self) -> int: ... method searchResults (line 236) | def searchResults(self, start: int, end: int) -> list[QHelpSearchResul... class QHelpSearchQuery (line 238) | class QHelpSearchQuery(shiboken2.Object): class FieldName (line 239) | class FieldName: method __init__ (line 249) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 250) | def __add__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fie... method __and__ (line 251) | def __and__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fie... method __bool__ (line 252) | def __bool__(self) -> bool: ... method __eq__ (line 253) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 254) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 255) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 256) | def __hash__(self) -> int: ... method __index__ (line 257) | def __index__(self) -> int: ... method __int__ (line 258) | def __int__(self) -> int: ... method __le__ (line 259) | def __le__(self, other: object) -> bool: ... method __lt__ (line 260) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 261) | def __mul__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fie... method __ne__ (line 262) | def __ne__(self, other: object) -> bool: ... method __or__ (line 263) | def __or__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fiel... method __pos__ (line 264) | def __pos__(self): ... method __radd__ (line 265) | def __radd__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fi... method __rand__ (line 266) | def __rand__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fi... method __rmul__ (line 267) | def __rmul__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fi... method __ror__ (line 268) | def __ror__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fie... method __rsub__ (line 269) | def __rsub__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fi... method __rxor__ (line 270) | def __rxor__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fi... method __sub__ (line 271) | def __sub__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fie... method __xor__ (line 272) | def __xor__(self, other: typing.SupportsInt) -> QHelpSearchQuery.Fie... method __init__ (line 282) | def __init__(self, field: QHelpSearchQuery.FieldName, wordList_: typin... method __init__ (line 284) | def __init__(self, QHelpSearchQuery: QHelpSearchQuery) -> None: ... method __init__ (line 286) | def __init__(self) -> None: ... method __copy__ (line 287) | def __copy__(self) -> None: ... class QHelpSearchQueryWidget (line 289) | class QHelpSearchQueryWidget(PySide2.QtWidgets.QWidget): method __init__ (line 292) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method changeEvent (line 293) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method collapseExtendedSearch (line 294) | def collapseExtendedSearch(self) -> None: ... method expandExtendedSearch (line 295) | def expandExtendedSearch(self) -> None: ... method focusInEvent (line 296) | def focusInEvent(self, focusEvent: PySide2.QtGui.QFocusEvent) -> None:... method isCompactMode (line 297) | def isCompactMode(self) -> bool: ... method query (line 298) | def query(self) -> list[QHelpSearchQuery]: ... method searchInput (line 299) | def searchInput(self) -> str: ... method setCompactMode (line 300) | def setCompactMode(self, on: bool) -> None: ... method setQuery (line 301) | def setQuery(self, queryList: typing.Iterable[QHelpSearchQuery]) -> No... method setSearchInput (line 302) | def setSearchInput(self, searchInput: str) -> None: ... class QHelpSearchResult (line 304) | class QHelpSearchResult(shiboken2.Object): method __init__ (line 306) | def __init__(self, url: PySide2.QtCore.QUrl, title: str, snippet: str)... method __init__ (line 308) | def __init__(self, other: QHelpSearchResult) -> None: ... method __init__ (line 310) | def __init__(self) -> None: ... method snippet (line 311) | def snippet(self) -> str: ... method title (line 312) | def title(self) -> str: ... method url (line 313) | def url(self) -> PySide2.QtCore.QUrl: ... class QHelpSearchResultWidget (line 315) | class QHelpSearchResultWidget(PySide2.QtWidgets.QWidget): method __init__ (line 319) | def __init__(cls, *args, acceptDrops: bool = ..., accessibleDescriptio... method changeEvent (line 320) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method linkAt (line 321) | def linkAt(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCore.QUrl:... FILE: pyside/stubs/PySide2-stubs/QtLocation.pyi class QGeoCodeReply (line 13) | class QGeoCodeReply(PySide2.QtCore.QObject): class Error (line 14) | class Error: method __init__ (line 25) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 26) | def __add__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error:... method __and__ (line 27) | def __and__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error:... method __bool__ (line 28) | def __bool__(self) -> bool: ... method __eq__ (line 29) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 30) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 31) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 32) | def __hash__(self) -> int: ... method __index__ (line 33) | def __index__(self) -> int: ... method __int__ (line 34) | def __int__(self) -> int: ... method __le__ (line 35) | def __le__(self, other: object) -> bool: ... method __lt__ (line 36) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 37) | def __mul__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error:... method __ne__ (line 38) | def __ne__(self, other: object) -> bool: ... method __or__ (line 39) | def __or__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error: ... method __pos__ (line 40) | def __pos__(self): ... method __radd__ (line 41) | def __radd__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error... method __rand__ (line 42) | def __rand__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error... method __rmul__ (line 43) | def __rmul__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error... method __ror__ (line 44) | def __ror__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error:... method __rsub__ (line 45) | def __rsub__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error... method __rxor__ (line 46) | def __rxor__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error... method __sub__ (line 47) | def __sub__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error:... method __xor__ (line 48) | def __xor__(self, other: typing.SupportsInt) -> QGeoCodeReply.Error:... method __init__ (line 61) | def __init__(self, error: QGeoCodeReply.Error, errorString: str, paren... method __init__ (line 63) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method abort (line 64) | def abort(self) -> None: ... method addLocation (line 65) | def addLocation(self, location: PySide2.QtPositioning.QGeoLocation) ->... method errorString (line 66) | def errorString(self) -> str: ... method isFinished (line 67) | def isFinished(self) -> bool: ... method limit (line 68) | def limit(self) -> int: ... method locations (line 69) | def locations(self) -> list[PySide2.QtPositioning.QGeoLocation]: ... method offset (line 70) | def offset(self) -> int: ... method setError (line 71) | def setError(self, error: QGeoCodeReply.Error, errorString: str) -> No... method setFinished (line 72) | def setFinished(self, finished: bool) -> None: ... method setLimit (line 73) | def setLimit(self, limit: int) -> None: ... method setLocations (line 74) | def setLocations(self, locations: typing.Iterable[PySide2.QtPositionin... method setOffset (line 75) | def setOffset(self, offset: int) -> None: ... method setViewport (line 76) | def setViewport(self, viewport: PySide2.QtPositioning.QGeoShape) -> No... method viewport (line 77) | def viewport(self) -> PySide2.QtPositioning.QGeoShape: ... class QGeoCodingManager (line 79) | class QGeoCodingManager(PySide2.QtCore.QObject): method __init__ (line 84) | def __init__(cls, *args, destroyed: typing.Callable = ..., error: typi... method geocode (line 86) | def geocode(self, searchString: str, limit: int = ..., offset: int = .... method geocode (line 88) | def geocode(self, address: PySide2.QtPositioning.QGeoAddress, bounds: ... method locale (line 89) | def locale(self) -> PySide2.QtCore.QLocale: ... method managerName (line 90) | def managerName(self) -> str: ... method managerVersion (line 91) | def managerVersion(self) -> int: ... method reverseGeocode (line 92) | def reverseGeocode(self, coordinate: PySide2.QtPositioning.QGeoCoordin... method setLocale (line 93) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... class QGeoCodingManagerEngine (line 95) | class QGeoCodingManagerEngine(PySide2.QtCore.QObject): method __init__ (line 99) | def __init__(self, parameters: dict[str, typing.Any], parent: PySide2.... method geocode (line 101) | def geocode(self, address: str, limit: int, offset: int, bounds: PySid... method geocode (line 103) | def geocode(self, address: PySide2.QtPositioning.QGeoAddress, bounds: ... method locale (line 104) | def locale(self) -> PySide2.QtCore.QLocale: ... method managerName (line 105) | def managerName(self) -> str: ... method managerVersion (line 106) | def managerVersion(self) -> int: ... method reverseGeocode (line 107) | def reverseGeocode(self, coordinate: PySide2.QtPositioning.QGeoCoordin... method setLocale (line 108) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... class QGeoManeuver (line 110) | class QGeoManeuver(shiboken2.Object): class InstructionDirection (line 111) | class InstructionDirection: method __init__ (line 127) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 128) | def __add__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruc... method __and__ (line 129) | def __and__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruc... method __bool__ (line 130) | def __bool__(self) -> bool: ... method __eq__ (line 131) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 132) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 133) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 134) | def __hash__(self) -> int: ... method __index__ (line 135) | def __index__(self) -> int: ... method __int__ (line 136) | def __int__(self) -> int: ... method __le__ (line 137) | def __le__(self, other: object) -> bool: ... method __lt__ (line 138) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 139) | def __mul__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruc... method __ne__ (line 140) | def __ne__(self, other: object) -> bool: ... method __or__ (line 141) | def __or__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruct... method __pos__ (line 142) | def __pos__(self): ... method __radd__ (line 143) | def __radd__(self, other: typing.SupportsInt) -> QGeoManeuver.Instru... method __rand__ (line 144) | def __rand__(self, other: typing.SupportsInt) -> QGeoManeuver.Instru... method __rmul__ (line 145) | def __rmul__(self, other: typing.SupportsInt) -> QGeoManeuver.Instru... method __ror__ (line 146) | def __ror__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruc... method __rsub__ (line 147) | def __rsub__(self, other: typing.SupportsInt) -> QGeoManeuver.Instru... method __rxor__ (line 148) | def __rxor__(self, other: typing.SupportsInt) -> QGeoManeuver.Instru... method __sub__ (line 149) | def __sub__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruc... method __xor__ (line 150) | def __xor__(self, other: typing.SupportsInt) -> QGeoManeuver.Instruc... method __init__ (line 164) | def __init__(self, other: QGeoManeuver) -> None: ... method __init__ (line 166) | def __init__(self) -> None: ... method direction (line 167) | def direction(self) -> QGeoManeuver.InstructionDirection: ... method distanceToNextInstruction (line 168) | def distanceToNextInstruction(self) -> float: ... method extendedAttributes (line 169) | def extendedAttributes(self) -> dict[str, typing.Any]: ... method instructionText (line 170) | def instructionText(self) -> str: ... method isValid (line 171) | def isValid(self) -> bool: ... method position (line 172) | def position(self) -> PySide2.QtPositioning.QGeoCoordinate: ... method setDirection (line 173) | def setDirection(self, direction: QGeoManeuver.InstructionDirection) -... method setDistanceToNextInstruction (line 174) | def setDistanceToNextInstruction(self, distance: float) -> None: ... method setExtendedAttributes (line 175) | def setExtendedAttributes(self, extendedAttributes: dict[str, typing.A... method setInstructionText (line 176) | def setInstructionText(self, instructionText: str) -> None: ... method setPosition (line 177) | def setPosition(self, position: PySide2.QtPositioning.QGeoCoordinate) ... method setTimeToNextInstruction (line 178) | def setTimeToNextInstruction(self, secs: int) -> None: ... method setWaypoint (line 179) | def setWaypoint(self, coordinate: PySide2.QtPositioning.QGeoCoordinate... method timeToNextInstruction (line 180) | def timeToNextInstruction(self) -> int: ... method waypoint (line 181) | def waypoint(self) -> PySide2.QtPositioning.QGeoCoordinate: ... method __copy__ (line 182) | def __copy__(self) -> None: ... method __eq__ (line 183) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 184) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 185) | def __gt__(self, other: object) -> bool: ... method __le__ (line 186) | def __le__(self, other: object) -> bool: ... method __lt__ (line 187) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 188) | def __ne__(self, other: object) -> bool: ... class QGeoRoute (line 190) | class QGeoRoute(shiboken2.Object): method __init__ (line 192) | def __init__(self, other: QGeoRoute) -> None: ... method __init__ (line 194) | def __init__(self) -> None: ... method bounds (line 195) | def bounds(self) -> PySide2.QtPositioning.QGeoRectangle: ... method distance (line 196) | def distance(self) -> float: ... method extendedAttributes (line 197) | def extendedAttributes(self) -> dict[str, typing.Any]: ... method firstRouteSegment (line 198) | def firstRouteSegment(self) -> QGeoRouteSegment: ... method path (line 199) | def path(self) -> list[PySide2.QtPositioning.QGeoCoordinate]: ... method request (line 200) | def request(self) -> QGeoRouteRequest: ... method routeId (line 201) | def routeId(self) -> str: ... method setBounds (line 202) | def setBounds(self, bounds: PySide2.QtPositioning.QGeoRectangle) -> No... method setDistance (line 203) | def setDistance(self, distance: float) -> None: ... method setExtendedAttributes (line 204) | def setExtendedAttributes(self, extendedAttributes: dict[str, typing.A... method setFirstRouteSegment (line 205) | def setFirstRouteSegment(self, routeSegment: QGeoRouteSegment) -> None... method setPath (line 206) | def setPath(self, path: typing.Iterable[PySide2.QtPositioning.QGeoCoor... method setRequest (line 207) | def setRequest(self, request: QGeoRouteRequest) -> None: ... method setRouteId (line 208) | def setRouteId(self, id: str) -> None: ... method setTravelMode (line 209) | def setTravelMode(self, mode: QGeoRouteRequest.TravelMode) -> None: ... method setTravelTime (line 210) | def setTravelTime(self, secs: int) -> None: ... method travelMode (line 211) | def travelMode(self) -> QGeoRouteRequest.TravelMode: ... method travelTime (line 212) | def travelTime(self) -> int: ... method __copy__ (line 213) | def __copy__(self) -> None: ... method __eq__ (line 214) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 215) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 216) | def __gt__(self, other: object) -> bool: ... method __le__ (line 217) | def __le__(self, other: object) -> bool: ... method __lt__ (line 218) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 219) | def __ne__(self, other: object) -> bool: ... class QGeoRouteReply (line 221) | class QGeoRouteReply(PySide2.QtCore.QObject): class Error (line 222) | class Error: method __init__ (line 232) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 233) | def __add__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error... method __and__ (line 234) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error... method __bool__ (line 235) | def __bool__(self) -> bool: ... method __eq__ (line 236) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 237) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 238) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 239) | def __hash__(self) -> int: ... method __index__ (line 240) | def __index__(self) -> int: ... method __int__ (line 241) | def __int__(self) -> int: ... method __le__ (line 242) | def __le__(self, other: object) -> bool: ... method __lt__ (line 243) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 244) | def __mul__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error... method __ne__ (line 245) | def __ne__(self, other: object) -> bool: ... method __or__ (line 246) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error:... method __pos__ (line 247) | def __pos__(self): ... method __radd__ (line 248) | def __radd__(self, other: typing.SupportsInt) -> QGeoRouteReply.Erro... method __rand__ (line 249) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteReply.Erro... method __rmul__ (line 250) | def __rmul__(self, other: typing.SupportsInt) -> QGeoRouteReply.Erro... method __ror__ (line 251) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error... method __rsub__ (line 252) | def __rsub__(self, other: typing.SupportsInt) -> QGeoRouteReply.Erro... method __rxor__ (line 253) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteReply.Erro... method __sub__ (line 254) | def __sub__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error... method __xor__ (line 255) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteReply.Error... method __init__ (line 267) | def __init__(self, error: QGeoRouteReply.Error, errorString: str, pare... method __init__ (line 269) | def __init__(self, request: QGeoRouteRequest, parent: PySide2.QtCore.Q... method abort (line 270) | def abort(self) -> None: ... method addRoutes (line 271) | def addRoutes(self, routes: typing.Iterable[QGeoRoute]) -> None: ... method errorString (line 272) | def errorString(self) -> str: ... method isFinished (line 273) | def isFinished(self) -> bool: ... method request (line 274) | def request(self) -> QGeoRouteRequest: ... method routes (line 275) | def routes(self) -> list[QGeoRoute]: ... method setError (line 276) | def setError(self, error: QGeoRouteReply.Error, errorString: str) -> N... method setFinished (line 277) | def setFinished(self, finished: bool) -> None: ... method setRoutes (line 278) | def setRoutes(self, routes: typing.Iterable[QGeoRoute]) -> None: ... class QGeoRouteRequest (line 280) | class QGeoRouteRequest(shiboken2.Object): class FeatureType (line 281) | class FeatureType: method __init__ (line 295) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 296) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __bool__ (line 297) | def __bool__(self) -> bool: ... method __eq__ (line 298) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 299) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 300) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 301) | def __hash__(self) -> int: ... method __index__ (line 302) | def __index__(self) -> int: ... method __int__ (line 303) | def __int__(self) -> int: ... method __invert__ (line 304) | def __invert__(self) -> QGeoRouteRequest.FeatureTypes: ... method __le__ (line 305) | def __le__(self, other: object) -> bool: ... method __lt__ (line 306) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 307) | def __ne__(self, other: object) -> bool: ... method __or__ (line 308) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Feat... method __rand__ (line 309) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __ror__ (line 310) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __rxor__ (line 311) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __xor__ (line 312) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... class FeatureTypes (line 314) | class FeatureTypes: method __init__ (line 316) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 317) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __bool__ (line 318) | def __bool__(self) -> bool: ... method __eq__ (line 319) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 320) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 321) | def __gt__(self, other: object) -> bool: ... method __index__ (line 322) | def __index__(self) -> int: ... method __int__ (line 323) | def __int__(self) -> int: ... method __invert__ (line 324) | def __invert__(self) -> QGeoRouteRequest.FeatureTypes: ... method __le__ (line 325) | def __le__(self, other: object) -> bool: ... method __lt__ (line 326) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 327) | def __ne__(self, other: object) -> bool: ... method __or__ (line 328) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Feat... method __rand__ (line 329) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __ror__ (line 330) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __rxor__ (line 331) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __xor__ (line 332) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... class FeatureWeight (line 334) | class FeatureWeight: method __init__ (line 343) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 344) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __bool__ (line 345) | def __bool__(self) -> bool: ... method __eq__ (line 346) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 347) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 348) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 349) | def __hash__(self) -> int: ... method __index__ (line 350) | def __index__(self) -> int: ... method __int__ (line 351) | def __int__(self) -> int: ... method __invert__ (line 352) | def __invert__(self) -> QGeoRouteRequest.FeatureWeights: ... method __le__ (line 353) | def __le__(self, other: object) -> bool: ... method __lt__ (line 354) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 355) | def __ne__(self, other: object) -> bool: ... method __or__ (line 356) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Feat... method __rand__ (line 357) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __ror__ (line 358) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __rxor__ (line 359) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __xor__ (line 360) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... class FeatureWeights (line 362) | class FeatureWeights: method __init__ (line 364) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 365) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __bool__ (line 366) | def __bool__(self) -> bool: ... method __eq__ (line 367) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 368) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 369) | def __gt__(self, other: object) -> bool: ... method __index__ (line 370) | def __index__(self) -> int: ... method __int__ (line 371) | def __int__(self) -> int: ... method __invert__ (line 372) | def __invert__(self) -> QGeoRouteRequest.FeatureWeights: ... method __le__ (line 373) | def __le__(self, other: object) -> bool: ... method __lt__ (line 374) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 375) | def __ne__(self, other: object) -> bool: ... method __or__ (line 376) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Feat... method __rand__ (line 377) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __ror__ (line 378) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... method __rxor__ (line 379) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fe... method __xor__ (line 380) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Fea... class ManeuverDetail (line 382) | class ManeuverDetail: method __init__ (line 388) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 389) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Man... method __bool__ (line 390) | def __bool__(self) -> bool: ... method __eq__ (line 391) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 392) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 393) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 394) | def __hash__(self) -> int: ... method __index__ (line 395) | def __index__(self) -> int: ... method __int__ (line 396) | def __int__(self) -> int: ... method __invert__ (line 397) | def __invert__(self) -> QGeoRouteRequest.ManeuverDetails: ... method __le__ (line 398) | def __le__(self, other: object) -> bool: ... method __lt__ (line 399) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 400) | def __ne__(self, other: object) -> bool: ... method __or__ (line 401) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Mane... method __rand__ (line 402) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ma... method __ror__ (line 403) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Man... method __rxor__ (line 404) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ma... method __xor__ (line 405) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Man... class ManeuverDetails (line 407) | class ManeuverDetails: method __init__ (line 409) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 410) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Man... method __bool__ (line 411) | def __bool__(self) -> bool: ... method __eq__ (line 412) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 413) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 414) | def __gt__(self, other: object) -> bool: ... method __index__ (line 415) | def __index__(self) -> int: ... method __int__ (line 416) | def __int__(self) -> int: ... method __invert__ (line 417) | def __invert__(self) -> QGeoRouteRequest.ManeuverDetails: ... method __le__ (line 418) | def __le__(self, other: object) -> bool: ... method __lt__ (line 419) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 420) | def __ne__(self, other: object) -> bool: ... method __or__ (line 421) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Mane... method __rand__ (line 422) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ma... method __ror__ (line 423) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Man... method __rxor__ (line 424) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ma... method __xor__ (line 425) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Man... class RouteOptimization (line 427) | class RouteOptimization: method __init__ (line 435) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 436) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rou... method __bool__ (line 437) | def __bool__(self) -> bool: ... method __eq__ (line 438) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 439) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 440) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 441) | def __hash__(self) -> int: ... method __index__ (line 442) | def __index__(self) -> int: ... method __int__ (line 443) | def __int__(self) -> int: ... method __invert__ (line 444) | def __invert__(self) -> QGeoRouteRequest.RouteOptimizations: ... method __le__ (line 445) | def __le__(self, other: object) -> bool: ... method __lt__ (line 446) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 447) | def __ne__(self, other: object) -> bool: ... method __or__ (line 448) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rout... method __rand__ (line 449) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ro... method __ror__ (line 450) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rou... method __rxor__ (line 451) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ro... method __xor__ (line 452) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rou... class RouteOptimizations (line 454) | class RouteOptimizations: method __init__ (line 456) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 457) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rou... method __bool__ (line 458) | def __bool__(self) -> bool: ... method __eq__ (line 459) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 460) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 461) | def __gt__(self, other: object) -> bool: ... method __index__ (line 462) | def __index__(self) -> int: ... method __int__ (line 463) | def __int__(self) -> int: ... method __invert__ (line 464) | def __invert__(self) -> QGeoRouteRequest.RouteOptimizations: ... method __le__ (line 465) | def __le__(self, other: object) -> bool: ... method __lt__ (line 466) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 467) | def __ne__(self, other: object) -> bool: ... method __or__ (line 468) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rout... method __rand__ (line 469) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ro... method __ror__ (line 470) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rou... method __rxor__ (line 471) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Ro... method __xor__ (line 472) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Rou... class SegmentDetail (line 474) | class SegmentDetail: method __init__ (line 480) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 481) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Seg... method __bool__ (line 482) | def __bool__(self) -> bool: ... method __eq__ (line 483) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 484) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 485) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 486) | def __hash__(self) -> int: ... method __index__ (line 487) | def __index__(self) -> int: ... method __int__ (line 488) | def __int__(self) -> int: ... method __invert__ (line 489) | def __invert__(self) -> QGeoRouteRequest.SegmentDetails: ... method __le__ (line 490) | def __le__(self, other: object) -> bool: ... method __lt__ (line 491) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 492) | def __ne__(self, other: object) -> bool: ... method __or__ (line 493) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Segm... method __rand__ (line 494) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Se... method __ror__ (line 495) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Seg... method __rxor__ (line 496) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Se... method __xor__ (line 497) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Seg... class SegmentDetails (line 499) | class SegmentDetails: method __init__ (line 501) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 502) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Seg... method __bool__ (line 503) | def __bool__(self) -> bool: ... method __eq__ (line 504) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 505) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 506) | def __gt__(self, other: object) -> bool: ... method __index__ (line 507) | def __index__(self) -> int: ... method __int__ (line 508) | def __int__(self) -> int: ... method __invert__ (line 509) | def __invert__(self) -> QGeoRouteRequest.SegmentDetails: ... method __le__ (line 510) | def __le__(self, other: object) -> bool: ... method __lt__ (line 511) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 512) | def __ne__(self, other: object) -> bool: ... method __or__ (line 513) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Segm... method __rand__ (line 514) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Se... method __ror__ (line 515) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Seg... method __rxor__ (line 516) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Se... method __xor__ (line 517) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Seg... class TravelMode (line 519) | class TravelMode: method __init__ (line 528) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 529) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tra... method __bool__ (line 530) | def __bool__(self) -> bool: ... method __eq__ (line 531) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 532) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 533) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 534) | def __hash__(self) -> int: ... method __index__ (line 535) | def __index__(self) -> int: ... method __int__ (line 536) | def __int__(self) -> int: ... method __invert__ (line 537) | def __invert__(self) -> QGeoRouteRequest.TravelModes: ... method __le__ (line 538) | def __le__(self, other: object) -> bool: ... method __lt__ (line 539) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 540) | def __ne__(self, other: object) -> bool: ... method __or__ (line 541) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Trav... method __rand__ (line 542) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tr... method __ror__ (line 543) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tra... method __rxor__ (line 544) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tr... method __xor__ (line 545) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tra... class TravelModes (line 547) | class TravelModes: method __init__ (line 549) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 550) | def __and__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tra... method __bool__ (line 551) | def __bool__(self) -> bool: ... method __eq__ (line 552) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 553) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 554) | def __gt__(self, other: object) -> bool: ... method __index__ (line 555) | def __index__(self) -> int: ... method __int__ (line 556) | def __int__(self) -> int: ... method __invert__ (line 557) | def __invert__(self) -> QGeoRouteRequest.TravelModes: ... method __le__ (line 558) | def __le__(self, other: object) -> bool: ... method __lt__ (line 559) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 560) | def __ne__(self, other: object) -> bool: ... method __or__ (line 561) | def __or__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Trav... method __rand__ (line 562) | def __rand__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tr... method __ror__ (line 563) | def __ror__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tra... method __rxor__ (line 564) | def __rxor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tr... method __xor__ (line 565) | def __xor__(self, other: typing.SupportsInt) -> QGeoRouteRequest.Tra... method __init__ (line 595) | def __init__(self, origin: PySide2.QtPositioning.QGeoCoordinate, desti... method __init__ (line 597) | def __init__(self, waypoints: typing.Iterable[PySide2.QtPositioning.QG... method __init__ (line 599) | def __init__(self, other: QGeoRouteRequest) -> None: ... method departureTime (line 600) | def departureTime(self) -> PySide2.QtCore.QDateTime: ... method excludeAreas (line 601) | def excludeAreas(self) -> list[PySide2.QtPositioning.QGeoRectangle]: ... method extraParameters (line 602) | def extraParameters(self) -> dict[str, typing.Any]: ... method featureTypes (line 603) | def featureTypes(self) -> list[QGeoRouteRequest.FeatureType]: ... method featureWeight (line 604) | def featureWeight(self, featureType: QGeoRouteRequest.FeatureType) -> ... method maneuverDetail (line 605) | def maneuverDetail(self) -> QGeoRouteRequest.ManeuverDetail: ... method numberAlternativeRoutes (line 606) | def numberAlternativeRoutes(self) -> int: ... method routeOptimization (line 607) | def routeOptimization(self) -> QGeoRouteRequest.RouteOptimizations | Q... method segmentDetail (line 608) | def segmentDetail(self) -> QGeoRouteRequest.SegmentDetail: ... method setDepartureTime (line 609) | def setDepartureTime(self, departureTime: PySide2.QtCore.QDateTime | d... method setExcludeAreas (line 610) | def setExcludeAreas(self, areas: typing.Iterable[PySide2.QtPositioning... method setExtraParameters (line 611) | def setExtraParameters(self, extraParameters: dict[str, typing.Any]) -... method setFeatureWeight (line 612) | def setFeatureWeight(self, featureType: QGeoRouteRequest.FeatureType, ... method setManeuverDetail (line 613) | def setManeuverDetail(self, maneuverDetail: QGeoRouteRequest.ManeuverD... method setNumberAlternativeRoutes (line 614) | def setNumberAlternativeRoutes(self, alternatives: int) -> None: ... method setRouteOptimization (line 615) | def setRouteOptimization(self, optimization: QGeoRouteRequest.RouteOpt... method setSegmentDetail (line 616) | def setSegmentDetail(self, segmentDetail: QGeoRouteRequest.SegmentDeta... method setTravelModes (line 617) | def setTravelModes(self, travelModes: QGeoRouteRequest.TravelModes | Q... method setWaypoints (line 618) | def setWaypoints(self, waypoints: typing.Iterable[PySide2.QtPositionin... method setWaypointsMetadata (line 619) | def setWaypointsMetadata(self, waypointMetadata: typing.Iterable[dict[... method travelModes (line 620) | def travelModes(self) -> QGeoRouteRequest.TravelModes | QGeoRouteReque... method waypoints (line 621) | def waypoints(self) -> list[PySide2.QtPositioning.QGeoCoordinate]: ... method waypointsMetadata (line 622) | def waypointsMetadata(self) -> list[dict[str, typing.Any]]: ... method __eq__ (line 623) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 624) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 625) | def __gt__(self, other: object) -> bool: ... method __le__ (line 626) | def __le__(self, other: object) -> bool: ... method __lt__ (line 627) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 628) | def __ne__(self, other: object) -> bool: ... class QGeoRouteSegment (line 630) | class QGeoRouteSegment(shiboken2.Object): method __init__ (line 632) | def __init__(self, other: QGeoRouteSegment) -> None: ... method __init__ (line 634) | def __init__(self) -> None: ... method distance (line 635) | def distance(self) -> float: ... method isLegLastSegment (line 636) | def isLegLastSegment(self) -> bool: ... method isValid (line 637) | def isValid(self) -> bool: ... method maneuver (line 638) | def maneuver(self) -> QGeoManeuver: ... method nextRouteSegment (line 639) | def nextRouteSegment(self) -> QGeoRouteSegment: ... method path (line 640) | def path(self) -> list[PySide2.QtPositioning.QGeoCoordinate]: ... method setDistance (line 641) | def setDistance(self, distance: float) -> None: ... method setManeuver (line 642) | def setManeuver(self, maneuver: QGeoManeuver) -> None: ... method setNextRouteSegment (line 643) | def setNextRouteSegment(self, routeSegment: QGeoRouteSegment) -> None:... method setPath (line 644) | def setPath(self, path: typing.Iterable[PySide2.QtPositioning.QGeoCoor... method setTravelTime (line 645) | def setTravelTime(self, secs: int) -> None: ... method travelTime (line 646) | def travelTime(self) -> int: ... method __copy__ (line 647) | def __copy__(self) -> None: ... method __eq__ (line 648) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 649) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 650) | def __gt__(self, other: object) -> bool: ... method __le__ (line 651) | def __le__(self, other: object) -> bool: ... method __lt__ (line 652) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 653) | def __ne__(self, other: object) -> bool: ... class QGeoRoutingManager (line 655) | class QGeoRoutingManager(PySide2.QtCore.QObject): method __init__ (line 660) | def __init__(cls, *args, destroyed: typing.Callable = ..., error: typi... method calculateRoute (line 661) | def calculateRoute(self, request: QGeoRouteRequest) -> QGeoRouteReply:... method locale (line 662) | def locale(self) -> PySide2.QtCore.QLocale: ... method managerName (line 663) | def managerName(self) -> str: ... method managerVersion (line 664) | def managerVersion(self) -> int: ... method measurementSystem (line 665) | def measurementSystem(self) -> PySide2.QtCore.QLocale.MeasurementSyste... method setLocale (line 666) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setMeasurementSystem (line 667) | def setMeasurementSystem(self, system: PySide2.QtCore.QLocale.Measurem... method supportedFeatureTypes (line 668) | def supportedFeatureTypes(self) -> QGeoRouteRequest.FeatureTypes | QGe... method supportedFeatureWeights (line 669) | def supportedFeatureWeights(self) -> QGeoRouteRequest.FeatureWeights |... method supportedManeuverDetails (line 670) | def supportedManeuverDetails(self) -> QGeoRouteRequest.ManeuverDetails... method supportedRouteOptimizations (line 671) | def supportedRouteOptimizations(self) -> QGeoRouteRequest.RouteOptimiz... method supportedSegmentDetails (line 672) | def supportedSegmentDetails(self) -> QGeoRouteRequest.SegmentDetails |... method supportedTravelModes (line 673) | def supportedTravelModes(self) -> QGeoRouteRequest.TravelModes | QGeoR... method updateRoute (line 674) | def updateRoute(self, route: QGeoRoute, position: PySide2.QtPositionin... class QGeoRoutingManagerEngine (line 676) | class QGeoRoutingManagerEngine(PySide2.QtCore.QObject): method __init__ (line 680) | def __init__(self, parameters: dict[str, typing.Any], parent: PySide2.... method calculateRoute (line 681) | def calculateRoute(self, request: QGeoRouteRequest) -> QGeoRouteReply:... method locale (line 682) | def locale(self) -> PySide2.QtCore.QLocale: ... method managerName (line 683) | def managerName(self) -> str: ... method managerVersion (line 684) | def managerVersion(self) -> int: ... method measurementSystem (line 685) | def measurementSystem(self) -> PySide2.QtCore.QLocale.MeasurementSyste... method setLocale (line 686) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setMeasurementSystem (line 687) | def setMeasurementSystem(self, system: PySide2.QtCore.QLocale.Measurem... method setSupportedFeatureTypes (line 688) | def setSupportedFeatureTypes(self, featureTypes: QGeoRouteRequest.Feat... method setSupportedFeatureWeights (line 689) | def setSupportedFeatureWeights(self, featureWeights: QGeoRouteRequest.... method setSupportedManeuverDetails (line 690) | def setSupportedManeuverDetails(self, maneuverDetails: QGeoRouteReques... method setSupportedRouteOptimizations (line 691) | def setSupportedRouteOptimizations(self, optimizations: QGeoRouteReque... method setSupportedSegmentDetails (line 692) | def setSupportedSegmentDetails(self, segmentDetails: QGeoRouteRequest.... method setSupportedTravelModes (line 693) | def setSupportedTravelModes(self, travelModes: QGeoRouteRequest.Travel... method supportedFeatureTypes (line 694) | def supportedFeatureTypes(self) -> QGeoRouteRequest.FeatureTypes | QGe... method supportedFeatureWeights (line 695) | def supportedFeatureWeights(self) -> QGeoRouteRequest.FeatureWeights |... method supportedManeuverDetails (line 696) | def supportedManeuverDetails(self) -> QGeoRouteRequest.ManeuverDetails... method supportedRouteOptimizations (line 697) | def supportedRouteOptimizations(self) -> QGeoRouteRequest.RouteOptimiz... method supportedSegmentDetails (line 698) | def supportedSegmentDetails(self) -> QGeoRouteRequest.SegmentDetails |... method supportedTravelModes (line 699) | def supportedTravelModes(self) -> QGeoRouteRequest.TravelModes | QGeoR... method updateRoute (line 700) | def updateRoute(self, route: QGeoRoute, position: PySide2.QtPositionin... class QGeoServiceProvider (line 702) | class QGeoServiceProvider(PySide2.QtCore.QObject): class Error (line 703) | class Error: method __init__ (line 713) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 714) | def __add__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __and__ (line 715) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 716) | def __bool__(self) -> bool: ... method __eq__ (line 717) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 718) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 719) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 720) | def __hash__(self) -> int: ... method __index__ (line 721) | def __index__(self) -> int: ... method __int__ (line 722) | def __int__(self) -> int: ... method __le__ (line 723) | def __le__(self, other: object) -> bool: ... method __lt__ (line 724) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 725) | def __mul__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __ne__ (line 726) | def __ne__(self, other: object) -> bool: ... method __or__ (line 727) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.E... method __pos__ (line 728) | def __pos__(self): ... method __radd__ (line 729) | def __radd__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __rand__ (line 730) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __rmul__ (line 731) | def __rmul__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 732) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rsub__ (line 733) | def __rsub__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __rxor__ (line 734) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __sub__ (line 735) | def __sub__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __xor__ (line 736) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class GeocodingFeature (line 738) | class GeocodingFeature: method __init__ (line 748) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 749) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 750) | def __bool__(self) -> bool: ... method __eq__ (line 751) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 752) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 753) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 754) | def __hash__(self) -> int: ... method __index__ (line 755) | def __index__(self) -> int: ... method __int__ (line 756) | def __int__(self) -> int: ... method __invert__ (line 757) | def __invert__(self) -> QGeoServiceProvider.GeocodingFeatures: ... method __le__ (line 758) | def __le__(self, other: object) -> bool: ... method __lt__ (line 759) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 760) | def __ne__(self, other: object) -> bool: ... method __or__ (line 761) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.G... method __rand__ (line 762) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 763) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 764) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 765) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class GeocodingFeatures (line 767) | class GeocodingFeatures: method __init__ (line 769) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 770) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 771) | def __bool__(self) -> bool: ... method __eq__ (line 772) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 773) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 774) | def __gt__(self, other: object) -> bool: ... method __index__ (line 775) | def __index__(self) -> int: ... method __int__ (line 776) | def __int__(self) -> int: ... method __invert__ (line 777) | def __invert__(self) -> QGeoServiceProvider.GeocodingFeatures: ... method __le__ (line 778) | def __le__(self, other: object) -> bool: ... method __lt__ (line 779) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 780) | def __ne__(self, other: object) -> bool: ... method __or__ (line 781) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.G... method __rand__ (line 782) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 783) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 784) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 785) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class MappingFeature (line 787) | class MappingFeature: method __init__ (line 796) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 797) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 798) | def __bool__(self) -> bool: ... method __eq__ (line 799) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 800) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 801) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 802) | def __hash__(self) -> int: ... method __index__ (line 803) | def __index__(self) -> int: ... method __int__ (line 804) | def __int__(self) -> int: ... method __invert__ (line 805) | def __invert__(self) -> QGeoServiceProvider.MappingFeatures: ... method __le__ (line 806) | def __le__(self, other: object) -> bool: ... method __lt__ (line 807) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 808) | def __ne__(self, other: object) -> bool: ... method __or__ (line 809) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.M... method __rand__ (line 810) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 811) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 812) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 813) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class MappingFeatures (line 815) | class MappingFeatures: method __init__ (line 817) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 818) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 819) | def __bool__(self) -> bool: ... method __eq__ (line 820) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 821) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 822) | def __gt__(self, other: object) -> bool: ... method __index__ (line 823) | def __index__(self) -> int: ... method __int__ (line 824) | def __int__(self) -> int: ... method __invert__ (line 825) | def __invert__(self) -> QGeoServiceProvider.MappingFeatures: ... method __le__ (line 826) | def __le__(self, other: object) -> bool: ... method __lt__ (line 827) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 828) | def __ne__(self, other: object) -> bool: ... method __or__ (line 829) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.M... method __rand__ (line 830) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 831) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 832) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 833) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class NavigationFeature (line 835) | class NavigationFeature: method __init__ (line 843) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 844) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 845) | def __bool__(self) -> bool: ... method __eq__ (line 846) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 847) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 848) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 849) | def __hash__(self) -> int: ... method __index__ (line 850) | def __index__(self) -> int: ... method __int__ (line 851) | def __int__(self) -> int: ... method __invert__ (line 852) | def __invert__(self) -> QGeoServiceProvider.NavigationFeatures: ... method __le__ (line 853) | def __le__(self, other: object) -> bool: ... method __lt__ (line 854) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 855) | def __ne__(self, other: object) -> bool: ... method __or__ (line 856) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.N... method __rand__ (line 857) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 858) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 859) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 860) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class NavigationFeatures (line 862) | class NavigationFeatures: method __init__ (line 864) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 865) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 866) | def __bool__(self) -> bool: ... method __eq__ (line 867) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 868) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 869) | def __gt__(self, other: object) -> bool: ... method __index__ (line 870) | def __index__(self) -> int: ... method __int__ (line 871) | def __int__(self) -> int: ... method __invert__ (line 872) | def __invert__(self) -> QGeoServiceProvider.NavigationFeatures: ... method __le__ (line 873) | def __le__(self, other: object) -> bool: ... method __lt__ (line 874) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 875) | def __ne__(self, other: object) -> bool: ... method __or__ (line 876) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.N... method __rand__ (line 877) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 878) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 879) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 880) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class PlacesFeature (line 882) | class PlacesFeature: method __init__ (line 899) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 900) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 901) | def __bool__(self) -> bool: ... method __eq__ (line 902) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 903) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 904) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 905) | def __hash__(self) -> int: ... method __index__ (line 906) | def __index__(self) -> int: ... method __int__ (line 907) | def __int__(self) -> int: ... method __invert__ (line 908) | def __invert__(self) -> QGeoServiceProvider.PlacesFeatures: ... method __le__ (line 909) | def __le__(self, other: object) -> bool: ... method __lt__ (line 910) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 911) | def __ne__(self, other: object) -> bool: ... method __or__ (line 912) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.P... method __rand__ (line 913) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 914) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 915) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 916) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class PlacesFeatures (line 918) | class PlacesFeatures: method __init__ (line 920) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 921) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 922) | def __bool__(self) -> bool: ... method __eq__ (line 923) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 924) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 925) | def __gt__(self, other: object) -> bool: ... method __index__ (line 926) | def __index__(self) -> int: ... method __int__ (line 927) | def __int__(self) -> int: ... method __invert__ (line 928) | def __invert__(self) -> QGeoServiceProvider.PlacesFeatures: ... method __le__ (line 929) | def __le__(self, other: object) -> bool: ... method __lt__ (line 930) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 931) | def __ne__(self, other: object) -> bool: ... method __or__ (line 932) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.P... method __rand__ (line 933) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 934) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 935) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 936) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class RoutingFeature (line 938) | class RoutingFeature: method __init__ (line 950) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 951) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 952) | def __bool__(self) -> bool: ... method __eq__ (line 953) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 954) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 955) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 956) | def __hash__(self) -> int: ... method __index__ (line 957) | def __index__(self) -> int: ... method __int__ (line 958) | def __int__(self) -> int: ... method __invert__ (line 959) | def __invert__(self) -> QGeoServiceProvider.RoutingFeatures: ... method __le__ (line 960) | def __le__(self, other: object) -> bool: ... method __lt__ (line 961) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 962) | def __ne__(self, other: object) -> bool: ... method __or__ (line 963) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.R... method __rand__ (line 964) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 965) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 966) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 967) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... class RoutingFeatures (line 969) | class RoutingFeatures: method __init__ (line 971) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 972) | def __and__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __bool__ (line 973) | def __bool__(self) -> bool: ... method __eq__ (line 974) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 975) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 976) | def __gt__(self, other: object) -> bool: ... method __index__ (line 977) | def __index__(self) -> int: ... method __int__ (line 978) | def __int__(self) -> int: ... method __invert__ (line 979) | def __invert__(self) -> QGeoServiceProvider.RoutingFeatures: ... method __le__ (line 980) | def __le__(self, other: object) -> bool: ... method __lt__ (line 981) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 982) | def __ne__(self, other: object) -> bool: ... method __or__ (line 983) | def __or__(self, other: typing.SupportsInt) -> QGeoServiceProvider.R... method __rand__ (line 984) | def __rand__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __ror__ (line 985) | def __ror__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __rxor__ (line 986) | def __rxor__(self, other: typing.SupportsInt) -> QGeoServiceProvider... method __xor__ (line 987) | def __xor__(self, other: typing.SupportsInt) -> QGeoServiceProvider.... method __init__ (line 1031) | def __init__(self, providerName: str, parameters: dict[str, typing.Any... method availableServiceProviders (line 1033) | def availableServiceProviders() -> list[str]: ... method error (line 1034) | def error(self) -> QGeoServiceProvider.Error: ... method errorString (line 1035) | def errorString(self) -> str: ... method geocodingError (line 1036) | def geocodingError(self) -> QGeoServiceProvider.Error: ... method geocodingErrorString (line 1037) | def geocodingErrorString(self) -> str: ... method geocodingFeatures (line 1038) | def geocodingFeatures(self) -> QGeoServiceProvider.GeocodingFeatures |... method geocodingManager (line 1039) | def geocodingManager(self) -> QGeoCodingManager: ... method mappingError (line 1040) | def mappingError(self) -> QGeoServiceProvider.Error: ... method mappingErrorString (line 1041) | def mappingErrorString(self) -> str: ... method mappingFeatures (line 1042) | def mappingFeatures(self) -> QGeoServiceProvider.MappingFeatures | QGe... method navigationError (line 1043) | def navigationError(self) -> QGeoServiceProvider.Error: ... method navigationErrorString (line 1044) | def navigationErrorString(self) -> str: ... method navigationFeatures (line 1045) | def navigationFeatures(self) -> QGeoServiceProvider.NavigationFeatures... method placeManager (line 1046) | def placeManager(self) -> QPlaceManager: ... method placesError (line 1047) | def placesError(self) -> QGeoServiceProvider.Error: ... method placesErrorString (line 1048) | def placesErrorString(self) -> str: ... method placesFeatures (line 1049) | def placesFeatures(self) -> QGeoServiceProvider.PlacesFeatures | QGeoS... method routingError (line 1050) | def routingError(self) -> QGeoServiceProvider.Error: ... method routingErrorString (line 1051) | def routingErrorString(self) -> str: ... method routingFeatures (line 1052) | def routingFeatures(self) -> QGeoServiceProvider.RoutingFeatures | QGe... method routingManager (line 1053) | def routingManager(self) -> QGeoRoutingManager: ... method setAllowExperimental (line 1054) | def setAllowExperimental(self, allow: bool) -> None: ... method setLocale (line 1055) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setParameters (line 1056) | def setParameters(self, parameters: dict[str, typing.Any]) -> None: ... class QGeoServiceProviderFactory (line 1058) | class QGeoServiceProviderFactory(shiboken2.Object): method __init__ (line 1059) | def __init__(self) -> None: ... method createGeocodingManagerEngine (line 1060) | def createGeocodingManagerEngine(self, parameters: dict[str, typing.An... method createPlaceManagerEngine (line 1061) | def createPlaceManagerEngine(self, parameters: dict[str, typing.Any], ... method createRoutingManagerEngine (line 1062) | def createRoutingManagerEngine(self, parameters: dict[str, typing.Any]... class QGeoServiceProviderFactoryV2 (line 1064) | class QGeoServiceProviderFactoryV2(QGeoServiceProviderFactory): method __init__ (line 1065) | def __init__(self) -> None: ... class QPlace (line 1067) | class QPlace(shiboken2.Object): method __init__ (line 1069) | def __init__(self, other: QPlace) -> None: ... method __init__ (line 1071) | def __init__(self) -> None: ... method appendContactDetail (line 1072) | def appendContactDetail(self, contactType: str, detail: QPlaceContactD... method attribution (line 1073) | def attribution(self) -> str: ... method categories (line 1074) | def categories(self) -> list[QPlaceCategory]: ... method contactDetails (line 1075) | def contactDetails(self, contactType: str) -> list[QPlaceContactDetail... method contactTypes (line 1076) | def contactTypes(self) -> list[str]: ... method content (line 1077) | def content(self, type: QPlaceContent.Type) -> dict[int, QPlaceContent... method detailsFetched (line 1078) | def detailsFetched(self) -> bool: ... method extendedAttribute (line 1079) | def extendedAttribute(self, attributeType: str) -> QPlaceAttribute: ... method extendedAttributeTypes (line 1080) | def extendedAttributeTypes(self) -> list[str]: ... method icon (line 1081) | def icon(self) -> QPlaceIcon: ... method insertContent (line 1082) | def insertContent(self, type: QPlaceContent.Type, content: dict[int, Q... method isEmpty (line 1083) | def isEmpty(self) -> bool: ... method location (line 1084) | def location(self) -> PySide2.QtPositioning.QGeoLocation: ... method name (line 1085) | def name(self) -> str: ... method placeId (line 1086) | def placeId(self) -> str: ... method primaryEmail (line 1087) | def primaryEmail(self) -> str: ... method primaryFax (line 1088) | def primaryFax(self) -> str: ... method primaryPhone (line 1089) | def primaryPhone(self) -> str: ... method primaryWebsite (line 1090) | def primaryWebsite(self) -> PySide2.QtCore.QUrl: ... method ratings (line 1091) | def ratings(self) -> QPlaceRatings: ... method removeContactDetails (line 1092) | def removeContactDetails(self, contactType: str) -> None: ... method removeExtendedAttribute (line 1093) | def removeExtendedAttribute(self, attributeType: str) -> None: ... method setAttribution (line 1094) | def setAttribution(self, attribution: str) -> None: ... method setCategories (line 1095) | def setCategories(self, categories: typing.Iterable[QPlaceCategory]) -... method setCategory (line 1096) | def setCategory(self, category: QPlaceCategory) -> None: ... method setContactDetails (line 1097) | def setContactDetails(self, contactType: str, details: typing.Iterable... method setContent (line 1098) | def setContent(self, type: QPlaceContent.Type, content: dict[int, QPla... method setDetailsFetched (line 1099) | def setDetailsFetched(self, fetched: bool) -> None: ... method setExtendedAttribute (line 1100) | def setExtendedAttribute(self, attributeType: str, attribute: QPlaceAt... method setIcon (line 1101) | def setIcon(self, icon: QPlaceIcon) -> None: ... method setLocation (line 1102) | def setLocation(self, location: PySide2.QtPositioning.QGeoLocation) ->... method setName (line 1103) | def setName(self, name: str) -> None: ... method setPlaceId (line 1104) | def setPlaceId(self, identifier: str) -> None: ... method setRatings (line 1105) | def setRatings(self, ratings: QPlaceRatings) -> None: ... method setSupplier (line 1106) | def setSupplier(self, supplier: QPlaceSupplier) -> None: ... method setTotalContentCount (line 1107) | def setTotalContentCount(self, type: QPlaceContent.Type, total: int) -... method supplier (line 1108) | def supplier(self) -> QPlaceSupplier: ... method totalContentCount (line 1109) | def totalContentCount(self, type: QPlaceContent.Type) -> int: ... method __copy__ (line 1110) | def __copy__(self) -> None: ... method __eq__ (line 1111) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1112) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1113) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1114) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1115) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1116) | def __ne__(self, other: object) -> bool: ... class QPlaceAttribute (line 1118) | class QPlaceAttribute(shiboken2.Object): method __init__ (line 1123) | def __init__(self, other: QPlaceAttribute) -> None: ... method __init__ (line 1125) | def __init__(self) -> None: ... method isEmpty (line 1126) | def isEmpty(self) -> bool: ... method label (line 1127) | def label(self) -> str: ... method setLabel (line 1128) | def setLabel(self, label: str) -> None: ... method setText (line 1129) | def setText(self, text: str) -> None: ... method text (line 1130) | def text(self) -> str: ... method __copy__ (line 1131) | def __copy__(self) -> None: ... method __eq__ (line 1132) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1133) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1134) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1135) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1136) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1137) | def __ne__(self, other: object) -> bool: ... class QPlaceCategory (line 1139) | class QPlaceCategory(shiboken2.Object): method __init__ (line 1141) | def __init__(self, other: QPlaceCategory) -> None: ... method __init__ (line 1143) | def __init__(self) -> None: ... method categoryId (line 1144) | def categoryId(self) -> str: ... method icon (line 1145) | def icon(self) -> QPlaceIcon: ... method isEmpty (line 1146) | def isEmpty(self) -> bool: ... method name (line 1147) | def name(self) -> str: ... method setCategoryId (line 1148) | def setCategoryId(self, identifier: str) -> None: ... method setIcon (line 1149) | def setIcon(self, icon: QPlaceIcon) -> None: ... method setName (line 1150) | def setName(self, name: str) -> None: ... method __copy__ (line 1151) | def __copy__(self) -> None: ... method __eq__ (line 1152) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1153) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1154) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1155) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1156) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1157) | def __ne__(self, other: object) -> bool: ... class QPlaceContactDetail (line 1159) | class QPlaceContactDetail(shiboken2.Object): method __init__ (line 1165) | def __init__(self, other: QPlaceContactDetail) -> None: ... method __init__ (line 1167) | def __init__(self) -> None: ... method clear (line 1168) | def clear(self) -> None: ... method label (line 1169) | def label(self) -> str: ... method setLabel (line 1170) | def setLabel(self, label: str) -> None: ... method setValue (line 1171) | def setValue(self, value: str) -> None: ... method value (line 1172) | def value(self) -> str: ... method __copy__ (line 1173) | def __copy__(self) -> None: ... method __eq__ (line 1174) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1175) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1176) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1177) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1178) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1179) | def __ne__(self, other: object) -> bool: ... class QPlaceContent (line 1181) | class QPlaceContent(shiboken2.Object): class Type (line 1182) | class Type: method __init__ (line 1191) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1192) | def __add__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __and__ (line 1193) | def __and__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __bool__ (line 1194) | def __bool__(self) -> bool: ... method __eq__ (line 1195) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1196) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1197) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1198) | def __hash__(self) -> int: ... method __index__ (line 1199) | def __index__(self) -> int: ... method __int__ (line 1200) | def __int__(self) -> int: ... method __le__ (line 1201) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1202) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1203) | def __mul__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __ne__ (line 1204) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1205) | def __or__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __pos__ (line 1206) | def __pos__(self): ... method __radd__ (line 1207) | def __radd__(self, other: typing.SupportsInt) -> QPlaceContent.Type:... method __rand__ (line 1208) | def __rand__(self, other: typing.SupportsInt) -> QPlaceContent.Type:... method __rmul__ (line 1209) | def __rmul__(self, other: typing.SupportsInt) -> QPlaceContent.Type:... method __ror__ (line 1210) | def __ror__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __rsub__ (line 1211) | def __rsub__(self, other: typing.SupportsInt) -> QPlaceContent.Type:... method __rxor__ (line 1212) | def __rxor__(self, other: typing.SupportsInt) -> QPlaceContent.Type:... method __sub__ (line 1213) | def __sub__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __xor__ (line 1214) | def __xor__(self, other: typing.SupportsInt) -> QPlaceContent.Type: ... method __init__ (line 1221) | def __init__(self, other: QPlaceContent) -> None: ... method __init__ (line 1223) | def __init__(self) -> None: ... method attribution (line 1224) | def attribution(self) -> str: ... method setAttribution (line 1225) | def setAttribution(self, attribution: str) -> None: ... method setSupplier (line 1226) | def setSupplier(self, supplier: QPlaceSupplier) -> None: ... method setUser (line 1227) | def setUser(self, user: QPlaceUser) -> None: ... method supplier (line 1228) | def supplier(self) -> QPlaceSupplier: ... method type (line 1229) | def type(self) -> QPlaceContent.Type: ... method user (line 1230) | def user(self) -> QPlaceUser: ... method __copy__ (line 1231) | def __copy__(self) -> None: ... method __eq__ (line 1232) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1233) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1234) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1235) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1236) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1237) | def __ne__(self, other: object) -> bool: ... class QPlaceContentReply (line 1239) | class QPlaceContentReply(QPlaceReply): method __init__ (line 1241) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method content (line 1242) | def content(self) -> dict[int, QPlaceContent]: ... method nextPageRequest (line 1243) | def nextPageRequest(self) -> QPlaceContentRequest: ... method previousPageRequest (line 1244) | def previousPageRequest(self) -> QPlaceContentRequest: ... method request (line 1245) | def request(self) -> QPlaceContentRequest: ... method setContent (line 1246) | def setContent(self, content: dict[int, QPlaceContent]) -> None: ... method setNextPageRequest (line 1247) | def setNextPageRequest(self, next: QPlaceContentRequest) -> None: ... method setPreviousPageRequest (line 1248) | def setPreviousPageRequest(self, previous: QPlaceContentRequest) -> No... method setRequest (line 1249) | def setRequest(self, request: QPlaceContentRequest) -> None: ... method setTotalCount (line 1250) | def setTotalCount(self, total: int) -> None: ... method totalCount (line 1251) | def totalCount(self) -> int: ... method type (line 1252) | def type(self) -> QPlaceReply.Type: ... class QPlaceContentRequest (line 1254) | class QPlaceContentRequest(shiboken2.Object): method __init__ (line 1256) | def __init__(self, other: QPlaceContentRequest) -> None: ... method __init__ (line 1258) | def __init__(self) -> None: ... method clear (line 1259) | def clear(self) -> None: ... method contentContext (line 1260) | def contentContext(self) -> typing.Any: ... method contentType (line 1261) | def contentType(self) -> QPlaceContent.Type: ... method limit (line 1262) | def limit(self) -> int: ... method placeId (line 1263) | def placeId(self) -> str: ... method setContentContext (line 1264) | def setContentContext(self, context: typing.Any) -> None: ... method setContentType (line 1265) | def setContentType(self, type: QPlaceContent.Type) -> None: ... method setLimit (line 1266) | def setLimit(self, limit: int) -> None: ... method setPlaceId (line 1267) | def setPlaceId(self, identifier: str) -> None: ... method __copy__ (line 1268) | def __copy__(self) -> None: ... method __eq__ (line 1269) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1270) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1271) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1272) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1273) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1274) | def __ne__(self, other: object) -> bool: ... class QPlaceDetailsReply (line 1276) | class QPlaceDetailsReply(QPlaceReply): method __init__ (line 1278) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method place (line 1279) | def place(self) -> QPlace: ... method setPlace (line 1280) | def setPlace(self, place: QPlace) -> None: ... method type (line 1281) | def type(self) -> QPlaceReply.Type: ... class QPlaceEditorial (line 1283) | class QPlaceEditorial(QPlaceContent): method __init__ (line 1285) | def __init__(self, other: QPlaceContent) -> None: ... method __init__ (line 1287) | def __init__(self) -> None: ... method language (line 1288) | def language(self) -> str: ... method setLanguage (line 1289) | def setLanguage(self, data: str) -> None: ... method setText (line 1290) | def setText(self, text: str) -> None: ... method setTitle (line 1291) | def setTitle(self, data: str) -> None: ... method text (line 1292) | def text(self) -> str: ... method title (line 1293) | def title(self) -> str: ... class QPlaceIcon (line 1295) | class QPlaceIcon(shiboken2.Object): method __init__ (line 1298) | def __init__(self, other: QPlaceIcon) -> None: ... method __init__ (line 1300) | def __init__(self) -> None: ... method isEmpty (line 1301) | def isEmpty(self) -> bool: ... method manager (line 1302) | def manager(self) -> QPlaceManager: ... method parameters (line 1303) | def parameters(self) -> dict[str, typing.Any]: ... method setManager (line 1304) | def setManager(self, manager: QPlaceManager) -> None: ... method setParameters (line 1305) | def setParameters(self, parameters: dict[str, typing.Any]) -> None: ... method url (line 1306) | def url(self, size: PySide2.QtCore.QSize = ...) -> PySide2.QtCore.QUrl... method __copy__ (line 1307) | def __copy__(self) -> None: ... method __eq__ (line 1308) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1309) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1310) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1311) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1312) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1313) | def __ne__(self, other: object) -> bool: ... class QPlaceIdReply (line 1315) | class QPlaceIdReply(QPlaceReply): class OperationType (line 1316) | class OperationType: method __init__ (line 1324) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1325) | def __add__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operat... method __and__ (line 1326) | def __and__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operat... method __bool__ (line 1327) | def __bool__(self) -> bool: ... method __eq__ (line 1328) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1329) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1330) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1331) | def __hash__(self) -> int: ... method __index__ (line 1332) | def __index__(self) -> int: ... method __int__ (line 1333) | def __int__(self) -> int: ... method __le__ (line 1334) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1335) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1336) | def __mul__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operat... method __ne__ (line 1337) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1338) | def __or__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operati... method __pos__ (line 1339) | def __pos__(self): ... method __radd__ (line 1340) | def __radd__(self, other: typing.SupportsInt) -> QPlaceIdReply.Opera... method __rand__ (line 1341) | def __rand__(self, other: typing.SupportsInt) -> QPlaceIdReply.Opera... method __rmul__ (line 1342) | def __rmul__(self, other: typing.SupportsInt) -> QPlaceIdReply.Opera... method __ror__ (line 1343) | def __ror__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operat... method __rsub__ (line 1344) | def __rsub__(self, other: typing.SupportsInt) -> QPlaceIdReply.Opera... method __rxor__ (line 1345) | def __rxor__(self, other: typing.SupportsInt) -> QPlaceIdReply.Opera... method __sub__ (line 1346) | def __sub__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operat... method __xor__ (line 1347) | def __xor__(self, other: typing.SupportsInt) -> QPlaceIdReply.Operat... method __init__ (line 1353) | def __init__(self, operationType: QPlaceIdReply.OperationType, parent:... method id (line 1354) | def id(self) -> str: ... method operationType (line 1355) | def operationType(self) -> QPlaceIdReply.OperationType: ... method setId (line 1356) | def setId(self, identifier: str) -> None: ... method type (line 1357) | def type(self) -> QPlaceReply.Type: ... class QPlaceImage (line 1359) | class QPlaceImage(QPlaceContent): method __init__ (line 1361) | def __init__(self, other: QPlaceContent) -> None: ... method __init__ (line 1363) | def __init__(self) -> None: ... method imageId (line 1364) | def imageId(self) -> str: ... method mimeType (line 1365) | def mimeType(self) -> str: ... method setImageId (line 1366) | def setImageId(self, identifier: str) -> None: ... method setMimeType (line 1367) | def setMimeType(self, data: str) -> None: ... method setUrl (line 1368) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method url (line 1369) | def url(self) -> PySide2.QtCore.QUrl: ... class QPlaceManager (line 1371) | class QPlaceManager(PySide2.QtCore.QObject): method __init__ (line 1383) | def __init__(cls, *args, categoryAdded: typing.Callable = ..., categor... method category (line 1384) | def category(self, categoryId: str) -> QPlaceCategory: ... method childCategories (line 1385) | def childCategories(self, parentId: str = ...) -> list[QPlaceCategory]... method childCategoryIds (line 1386) | def childCategoryIds(self, parentId: str = ...) -> list[str]: ... method compatiblePlace (line 1387) | def compatiblePlace(self, place: QPlace) -> QPlace: ... method getPlaceContent (line 1388) | def getPlaceContent(self, request: QPlaceContentRequest) -> QPlaceCont... method getPlaceDetails (line 1389) | def getPlaceDetails(self, placeId: str) -> QPlaceDetailsReply: ... method initializeCategories (line 1390) | def initializeCategories(self) -> QPlaceReply: ... method locales (line 1391) | def locales(self) -> list[PySide2.QtCore.QLocale]: ... method managerName (line 1392) | def managerName(self) -> str: ... method managerVersion (line 1393) | def managerVersion(self) -> int: ... method matchingPlaces (line 1394) | def matchingPlaces(self, request: QPlaceMatchRequest) -> QPlaceMatchRe... method parentCategoryId (line 1395) | def parentCategoryId(self, categoryId: str) -> str: ... method removeCategory (line 1396) | def removeCategory(self, categoryId: str) -> QPlaceIdReply: ... method removePlace (line 1397) | def removePlace(self, placeId: str) -> QPlaceIdReply: ... method saveCategory (line 1398) | def saveCategory(self, category: QPlaceCategory, parentId: str = ...) ... method savePlace (line 1399) | def savePlace(self, place: QPlace) -> QPlaceIdReply: ... method search (line 1400) | def search(self, query: QPlaceSearchRequest) -> QPlaceSearchReply: ... method searchSuggestions (line 1401) | def searchSuggestions(self, request: QPlaceSearchRequest) -> QPlaceSea... method setLocale (line 1402) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setLocales (line 1403) | def setLocales(self, locale: typing.Iterable[PySide2.QtCore.QLocale]) ... class QPlaceManagerEngine (line 1405) | class QPlaceManagerEngine(PySide2.QtCore.QObject): method __init__ (line 1416) | def __init__(self, parameters: dict[str, typing.Any], parent: PySide2.... method category (line 1417) | def category(self, categoryId: str) -> QPlaceCategory: ... method childCategories (line 1418) | def childCategories(self, parentId: str) -> list[QPlaceCategory]: ... method childCategoryIds (line 1419) | def childCategoryIds(self, categoryId: str) -> list[str]: ... method compatiblePlace (line 1420) | def compatiblePlace(self, original: QPlace) -> QPlace: ... method constructIconUrl (line 1421) | def constructIconUrl(self, icon: QPlaceIcon, size: PySide2.QtCore.QSiz... method getPlaceContent (line 1422) | def getPlaceContent(self, request: QPlaceContentRequest) -> QPlaceCont... method getPlaceDetails (line 1423) | def getPlaceDetails(self, placeId: str) -> QPlaceDetailsReply: ... method initializeCategories (line 1424) | def initializeCategories(self) -> QPlaceReply: ... method locales (line 1425) | def locales(self) -> list[PySide2.QtCore.QLocale]: ... method manager (line 1426) | def manager(self) -> QPlaceManager: ... method managerName (line 1427) | def managerName(self) -> str: ... method managerVersion (line 1428) | def managerVersion(self) -> int: ... method matchingPlaces (line 1429) | def matchingPlaces(self, request: QPlaceMatchRequest) -> QPlaceMatchRe... method parentCategoryId (line 1430) | def parentCategoryId(self, categoryId: str) -> str: ... method removeCategory (line 1431) | def removeCategory(self, categoryId: str) -> QPlaceIdReply: ... method removePlace (line 1432) | def removePlace(self, placeId: str) -> QPlaceIdReply: ... method saveCategory (line 1433) | def saveCategory(self, category: QPlaceCategory, parentId: str) -> QPl... method savePlace (line 1434) | def savePlace(self, place: QPlace) -> QPlaceIdReply: ... method search (line 1435) | def search(self, request: QPlaceSearchRequest) -> QPlaceSearchReply: ... method searchSuggestions (line 1436) | def searchSuggestions(self, request: QPlaceSearchRequest) -> QPlaceSea... method setLocales (line 1437) | def setLocales(self, locales: typing.Iterable[PySide2.QtCore.QLocale])... class QPlaceMatchReply (line 1439) | class QPlaceMatchReply(QPlaceReply): method __init__ (line 1441) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method places (line 1442) | def places(self) -> list[QPlace]: ... method request (line 1443) | def request(self) -> QPlaceMatchRequest: ... method setPlaces (line 1444) | def setPlaces(self, results: typing.Iterable[QPlace]) -> None: ... method setRequest (line 1445) | def setRequest(self, request: QPlaceMatchRequest) -> None: ... method type (line 1446) | def type(self) -> QPlaceReply.Type: ... class QPlaceMatchRequest (line 1448) | class QPlaceMatchRequest(shiboken2.Object): method __init__ (line 1451) | def __init__(self, other: QPlaceMatchRequest) -> None: ... method __init__ (line 1453) | def __init__(self) -> None: ... method clear (line 1454) | def clear(self) -> None: ... method parameters (line 1455) | def parameters(self) -> dict[str, typing.Any]: ... method places (line 1456) | def places(self) -> list[QPlace]: ... method setParameters (line 1457) | def setParameters(self, parameters: dict[str, typing.Any]) -> None: ... method setPlaces (line 1458) | def setPlaces(self, places: typing.Iterable[QPlace]) -> None: ... method setResults (line 1459) | def setResults(self, results: typing.Iterable[QPlaceSearchResult]) -> ... method __copy__ (line 1460) | def __copy__(self) -> None: ... method __eq__ (line 1461) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1462) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1463) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1464) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1465) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1466) | def __ne__(self, other: object) -> bool: ... class QPlaceProposedSearchResult (line 1468) | class QPlaceProposedSearchResult(QPlaceSearchResult): method __init__ (line 1470) | def __init__(self, other: QPlaceSearchResult) -> None: ... method __init__ (line 1472) | def __init__(self) -> None: ... method searchRequest (line 1473) | def searchRequest(self) -> QPlaceSearchRequest: ... method setSearchRequest (line 1474) | def setSearchRequest(self, request: QPlaceSearchRequest) -> None: ... class QPlaceRatings (line 1476) | class QPlaceRatings(shiboken2.Object): method __init__ (line 1478) | def __init__(self, other: QPlaceRatings) -> None: ... method __init__ (line 1480) | def __init__(self) -> None: ... method average (line 1481) | def average(self) -> float: ... method count (line 1482) | def count(self) -> int: ... method isEmpty (line 1483) | def isEmpty(self) -> bool: ... method maximum (line 1484) | def maximum(self) -> float: ... method setAverage (line 1485) | def setAverage(self, average: float) -> None: ... method setCount (line 1486) | def setCount(self, count: int) -> None: ... method setMaximum (line 1487) | def setMaximum(self, max: float) -> None: ... method __copy__ (line 1488) | def __copy__(self) -> None: ... method __eq__ (line 1489) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1490) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1491) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1492) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1493) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1494) | def __ne__(self, other: object) -> bool: ... class QPlaceReply (line 1496) | class QPlaceReply(PySide2.QtCore.QObject): class Error (line 1497) | class Error: method __init__ (line 1511) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1512) | def __add__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __and__ (line 1513) | def __and__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __bool__ (line 1514) | def __bool__(self) -> bool: ... method __eq__ (line 1515) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1516) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1517) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1518) | def __hash__(self) -> int: ... method __index__ (line 1519) | def __index__(self) -> int: ... method __int__ (line 1520) | def __int__(self) -> int: ... method __le__ (line 1521) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1522) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1523) | def __mul__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __ne__ (line 1524) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1525) | def __or__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __pos__ (line 1526) | def __pos__(self): ... method __radd__ (line 1527) | def __radd__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __rand__ (line 1528) | def __rand__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __rmul__ (line 1529) | def __rmul__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __ror__ (line 1530) | def __ror__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __rsub__ (line 1531) | def __rsub__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __rxor__ (line 1532) | def __rxor__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __sub__ (line 1533) | def __sub__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... method __xor__ (line 1534) | def __xor__(self, other: typing.SupportsInt) -> QPlaceReply.Error: ... class Type (line 1536) | class Type: method __init__ (line 1547) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1548) | def __add__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __and__ (line 1549) | def __and__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __bool__ (line 1550) | def __bool__(self) -> bool: ... method __eq__ (line 1551) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1552) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1553) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1554) | def __hash__(self) -> int: ... method __index__ (line 1555) | def __index__(self) -> int: ... method __int__ (line 1556) | def __int__(self) -> int: ... method __le__ (line 1557) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1558) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1559) | def __mul__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __ne__ (line 1560) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1561) | def __or__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __pos__ (line 1562) | def __pos__(self): ... method __radd__ (line 1563) | def __radd__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __rand__ (line 1564) | def __rand__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __rmul__ (line 1565) | def __rmul__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __ror__ (line 1566) | def __ror__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __rsub__ (line 1567) | def __rsub__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __rxor__ (line 1568) | def __rxor__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __sub__ (line 1569) | def __sub__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __xor__ (line 1570) | def __xor__(self, other: typing.SupportsInt) -> QPlaceReply.Type: ... method __init__ (line 1593) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method abort (line 1594) | def abort(self) -> None: ... method errorString (line 1595) | def errorString(self) -> str: ... method isFinished (line 1596) | def isFinished(self) -> bool: ... method setError (line 1597) | def setError(self, error: QPlaceReply.Error, errorString: str) -> None... method setFinished (line 1598) | def setFinished(self, finished: bool) -> None: ... method type (line 1599) | def type(self) -> QPlaceReply.Type: ... class QPlaceResult (line 1601) | class QPlaceResult(QPlaceSearchResult): method __init__ (line 1603) | def __init__(self, other: QPlaceSearchResult) -> None: ... method __init__ (line 1605) | def __init__(self) -> None: ... method distance (line 1606) | def distance(self) -> float: ... method isSponsored (line 1607) | def isSponsored(self) -> bool: ... method place (line 1608) | def place(self) -> QPlace: ... method setDistance (line 1609) | def setDistance(self, distance: float) -> None: ... method setPlace (line 1610) | def setPlace(self, place: QPlace) -> None: ... method setSponsored (line 1611) | def setSponsored(self, sponsored: bool) -> None: ... class QPlaceReview (line 1613) | class QPlaceReview(QPlaceContent): method __init__ (line 1615) | def __init__(self, other: QPlaceContent) -> None: ... method __init__ (line 1617) | def __init__(self) -> None: ... method dateTime (line 1618) | def dateTime(self) -> PySide2.QtCore.QDateTime: ... method language (line 1619) | def language(self) -> str: ... method rating (line 1620) | def rating(self) -> float: ... method reviewId (line 1621) | def reviewId(self) -> str: ... method setDateTime (line 1622) | def setDateTime(self, dt: PySide2.QtCore.QDateTime | datetime.datetime... method setLanguage (line 1623) | def setLanguage(self, data: str) -> None: ... method setRating (line 1624) | def setRating(self, data: float) -> None: ... method setReviewId (line 1625) | def setReviewId(self, identifier: str) -> None: ... method setText (line 1626) | def setText(self, text: str) -> None: ... method setTitle (line 1627) | def setTitle(self, data: str) -> None: ... method text (line 1628) | def text(self) -> str: ... method title (line 1629) | def title(self) -> str: ... class QPlaceSearchReply (line 1631) | class QPlaceSearchReply(QPlaceReply): method __init__ (line 1633) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method nextPageRequest (line 1634) | def nextPageRequest(self) -> QPlaceSearchRequest: ... method previousPageRequest (line 1635) | def previousPageRequest(self) -> QPlaceSearchRequest: ... method request (line 1636) | def request(self) -> QPlaceSearchRequest: ... method results (line 1637) | def results(self) -> list[QPlaceSearchResult]: ... method setNextPageRequest (line 1638) | def setNextPageRequest(self, next: QPlaceSearchRequest) -> None: ... method setPreviousPageRequest (line 1639) | def setPreviousPageRequest(self, previous: QPlaceSearchRequest) -> Non... method setRequest (line 1640) | def setRequest(self, request: QPlaceSearchRequest) -> None: ... method setResults (line 1641) | def setResults(self, results: typing.Iterable[QPlaceSearchResult]) -> ... method type (line 1642) | def type(self) -> QPlaceReply.Type: ... class QPlaceSearchRequest (line 1644) | class QPlaceSearchRequest(shiboken2.Object): class RelevanceHint (line 1645) | class RelevanceHint: method __init__ (line 1652) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1653) | def __add__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.... method __and__ (line 1654) | def __and__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.... method __bool__ (line 1655) | def __bool__(self) -> bool: ... method __eq__ (line 1656) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1657) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1658) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1659) | def __hash__(self) -> int: ... method __index__ (line 1660) | def __index__(self) -> int: ... method __int__ (line 1661) | def __int__(self) -> int: ... method __le__ (line 1662) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1663) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1664) | def __mul__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.... method __ne__ (line 1665) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1666) | def __or__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.R... method __pos__ (line 1667) | def __pos__(self): ... method __radd__ (line 1668) | def __radd__(self, other: typing.SupportsInt) -> QPlaceSearchRequest... method __rand__ (line 1669) | def __rand__(self, other: typing.SupportsInt) -> QPlaceSearchRequest... method __rmul__ (line 1670) | def __rmul__(self, other: typing.SupportsInt) -> QPlaceSearchRequest... method __ror__ (line 1671) | def __ror__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.... method __rsub__ (line 1672) | def __rsub__(self, other: typing.SupportsInt) -> QPlaceSearchRequest... method __rxor__ (line 1673) | def __rxor__(self, other: typing.SupportsInt) -> QPlaceSearchRequest... method __sub__ (line 1674) | def __sub__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.... method __xor__ (line 1675) | def __xor__(self, other: typing.SupportsInt) -> QPlaceSearchRequest.... method __init__ (line 1680) | def __init__(self, other: QPlaceSearchRequest) -> None: ... method __init__ (line 1682) | def __init__(self) -> None: ... method categories (line 1683) | def categories(self) -> list[QPlaceCategory]: ... method clear (line 1684) | def clear(self) -> None: ... method limit (line 1685) | def limit(self) -> int: ... method recommendationId (line 1686) | def recommendationId(self) -> str: ... method relevanceHint (line 1687) | def relevanceHint(self) -> QPlaceSearchRequest.RelevanceHint: ... method searchArea (line 1688) | def searchArea(self) -> PySide2.QtPositioning.QGeoShape: ... method searchContext (line 1689) | def searchContext(self) -> typing.Any: ... method searchTerm (line 1690) | def searchTerm(self) -> str: ... method setCategories (line 1691) | def setCategories(self, categories: typing.Iterable[QPlaceCategory]) -... method setCategory (line 1692) | def setCategory(self, category: QPlaceCategory) -> None: ... method setLimit (line 1693) | def setLimit(self, limit: int) -> None: ... method setRecommendationId (line 1694) | def setRecommendationId(self, recommendationId: str) -> None: ... method setRelevanceHint (line 1695) | def setRelevanceHint(self, hint: QPlaceSearchRequest.RelevanceHint) ->... method setSearchArea (line 1696) | def setSearchArea(self, area: PySide2.QtPositioning.QGeoShape) -> None... method setSearchContext (line 1697) | def setSearchContext(self, context: typing.Any) -> None: ... method setSearchTerm (line 1698) | def setSearchTerm(self, term: str) -> None: ... method __eq__ (line 1699) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1700) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1701) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1702) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1703) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1704) | def __ne__(self, other: object) -> bool: ... class QPlaceSearchResult (line 1706) | class QPlaceSearchResult(shiboken2.Object): class SearchResultType (line 1707) | class SearchResultType: method __init__ (line 1714) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1715) | def __add__(self, other: typing.SupportsInt) -> QPlaceSearchResult.S... method __and__ (line 1716) | def __and__(self, other: typing.SupportsInt) -> QPlaceSearchResult.S... method __bool__ (line 1717) | def __bool__(self) -> bool: ... method __eq__ (line 1718) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1719) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1720) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1721) | def __hash__(self) -> int: ... method __index__ (line 1722) | def __index__(self) -> int: ... method __int__ (line 1723) | def __int__(self) -> int: ... method __le__ (line 1724) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1725) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1726) | def __mul__(self, other: typing.SupportsInt) -> QPlaceSearchResult.S... method __ne__ (line 1727) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1728) | def __or__(self, other: typing.SupportsInt) -> QPlaceSearchResult.Se... method __pos__ (line 1729) | def __pos__(self): ... method __radd__ (line 1730) | def __radd__(self, other: typing.SupportsInt) -> QPlaceSearchResult.... method __rand__ (line 1731) | def __rand__(self, other: typing.SupportsInt) -> QPlaceSearchResult.... method __rmul__ (line 1732) | def __rmul__(self, other: typing.SupportsInt) -> QPlaceSearchResult.... method __ror__ (line 1733) | def __ror__(self, other: typing.SupportsInt) -> QPlaceSearchResult.S... method __rsub__ (line 1734) | def __rsub__(self, other: typing.SupportsInt) -> QPlaceSearchResult.... method __rxor__ (line 1735) | def __rxor__(self, other: typing.SupportsInt) -> QPlaceSearchResult.... method __sub__ (line 1736) | def __sub__(self, other: typing.SupportsInt) -> QPlaceSearchResult.S... method __xor__ (line 1737) | def __xor__(self, other: typing.SupportsInt) -> QPlaceSearchResult.S... method __init__ (line 1742) | def __init__(self, other: QPlaceSearchResult) -> None: ... method __init__ (line 1744) | def __init__(self) -> None: ... method icon (line 1745) | def icon(self) -> QPlaceIcon: ... method setIcon (line 1746) | def setIcon(self, icon: QPlaceIcon) -> None: ... method setTitle (line 1747) | def setTitle(self, title: str) -> None: ... method title (line 1748) | def title(self) -> str: ... method type (line 1749) | def type(self) -> QPlaceSearchResult.SearchResultType: ... method __eq__ (line 1750) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1751) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1752) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1753) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1754) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1755) | def __ne__(self, other: object) -> bool: ... class QPlaceSearchSuggestionReply (line 1757) | class QPlaceSearchSuggestionReply(QPlaceReply): method __init__ (line 1759) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aborte... method setSuggestions (line 1760) | def setSuggestions(self, suggestions: typing.Iterable[str]) -> None: ... method suggestions (line 1761) | def suggestions(self) -> list[str]: ... method type (line 1762) | def type(self) -> QPlaceReply.Type: ... class QPlaceSupplier (line 1764) | class QPlaceSupplier(shiboken2.Object): method __init__ (line 1766) | def __init__(self, other: QPlaceSupplier) -> None: ... method __init__ (line 1768) | def __init__(self) -> None: ... method icon (line 1769) | def icon(self) -> QPlaceIcon: ... method isEmpty (line 1770) | def isEmpty(self) -> bool: ... method name (line 1771) | def name(self) -> str: ... method setIcon (line 1772) | def setIcon(self, icon: QPlaceIcon) -> None: ... method setName (line 1773) | def setName(self, data: str) -> None: ... method setSupplierId (line 1774) | def setSupplierId(self, identifier: str) -> None: ... method setUrl (line 1775) | def setUrl(self, data: PySide2.QtCore.QUrl) -> None: ... method supplierId (line 1776) | def supplierId(self) -> str: ... method url (line 1777) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 1778) | def __copy__(self) -> None: ... method __eq__ (line 1779) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1780) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1781) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1782) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1783) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1784) | def __ne__(self, other: object) -> bool: ... class QPlaceUser (line 1786) | class QPlaceUser(shiboken2.Object): method __init__ (line 1788) | def __init__(self, other: QPlaceUser) -> None: ... method __init__ (line 1790) | def __init__(self) -> None: ... method name (line 1791) | def name(self) -> str: ... method setName (line 1792) | def setName(self, name: str) -> None: ... method setUserId (line 1793) | def setUserId(self, identifier: str) -> None: ... method userId (line 1794) | def userId(self) -> str: ... method __copy__ (line 1795) | def __copy__(self) -> None: ... method __eq__ (line 1796) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1797) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1798) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1799) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1800) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1801) | def __ne__(self, other: object) -> bool: ... FILE: pyside/stubs/PySide2-stubs/QtMacExtras.pyi class QMacPasteboardMime (line 12) | class QMacPasteboardMime(shiboken2.Object): class QMacPasteboardMimeType (line 13) | class QMacPasteboardMimeType: method __init__ (line 22) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 23) | def __add__(self, other: typing.SupportsInt) -> QMacPasteboardMime.Q... method __and__ (line 24) | def __and__(self, other: typing.SupportsInt) -> QMacPasteboardMime.Q... method __bool__ (line 25) | def __bool__(self) -> bool: ... method __eq__ (line 26) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 27) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 28) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 29) | def __hash__(self) -> int: ... method __index__ (line 30) | def __index__(self) -> int: ... method __int__ (line 31) | def __int__(self) -> int: ... method __le__ (line 32) | def __le__(self, other: object) -> bool: ... method __lt__ (line 33) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 34) | def __mul__(self, other: typing.SupportsInt) -> QMacPasteboardMime.Q... method __ne__ (line 35) | def __ne__(self, other: object) -> bool: ... method __or__ (line 36) | def __or__(self, other: typing.SupportsInt) -> QMacPasteboardMime.QM... method __pos__ (line 37) | def __pos__(self): ... method __radd__ (line 38) | def __radd__(self, other: typing.SupportsInt) -> QMacPasteboardMime.... method __rand__ (line 39) | def __rand__(self, other: typing.SupportsInt) -> QMacPasteboardMime.... method __rmul__ (line 40) | def __rmul__(self, other: typing.SupportsInt) -> QMacPasteboardMime.... method __ror__ (line 41) | def __ror__(self, other: typing.SupportsInt) -> QMacPasteboardMime.Q... method __rsub__ (line 42) | def __rsub__(self, other: typing.SupportsInt) -> QMacPasteboardMime.... method __rxor__ (line 43) | def __rxor__(self, other: typing.SupportsInt) -> QMacPasteboardMime.... method __sub__ (line 44) | def __sub__(self, other: typing.SupportsInt) -> QMacPasteboardMime.Q... method __xor__ (line 45) | def __xor__(self, other: typing.SupportsInt) -> QMacPasteboardMime.Q... method __init__ (line 51) | def __init__(self, arg__1: int) -> None: ... method canConvert (line 52) | def canConvert(self, mime: str, flav: str) -> bool: ... method convertFromMime (line 53) | def convertFromMime(self, mime: str, data: typing.Any, flav: str) -> l... method convertToMime (line 54) | def convertToMime(self, mime: str, data: typing.Iterable[PySide2.QtCor... method convertorName (line 55) | def convertorName(self) -> str: ... method count (line 56) | def count(self, mimeData: PySide2.QtCore.QMimeData) -> int: ... method flavorFor (line 57) | def flavorFor(self, mime: str) -> str: ... method mimeFor (line 58) | def mimeFor(self, flav: str) -> str: ... class QMacToolBar (line 60) | class QMacToolBar(PySide2.QtCore.QObject): method __init__ (line 63) | def __init__(self, identifier: str, parent: PySide2.QtCore.QObject | N... method __init__ (line 65) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method addAllowedItem (line 66) | def addAllowedItem(self, icon: PySide2.QtGui.QIcon, text: str) -> QMac... method addAllowedStandardItem (line 67) | def addAllowedStandardItem(self, standardItem: QMacToolBarItem.Standar... method addItem (line 68) | def addItem(self, icon: PySide2.QtGui.QIcon, text: str) -> QMacToolBar... method addSeparator (line 69) | def addSeparator(self) -> None: ... method addStandardItem (line 70) | def addStandardItem(self, standardItem: QMacToolBarItem.StandardItem) ... method allowedItems (line 71) | def allowedItems(self) -> list[QMacToolBarItem]: ... method attachToWindow (line 72) | def attachToWindow(self, window: PySide2.QtGui.QWindow) -> None: ... method detachFromWindow (line 73) | def detachFromWindow(self) -> None: ... method items (line 74) | def items(self) -> list[QMacToolBarItem]: ... method setAllowedItems (line 75) | def setAllowedItems(self, allowedItems: typing.Iterable[QMacToolBarIte... method setItems (line 76) | def setItems(self, items: typing.Iterable[QMacToolBarItem]) -> None: ... class QMacToolBarItem (line 78) | class QMacToolBarItem(PySide2.QtCore.QObject): class StandardItem (line 79) | class StandardItem: method __init__ (line 86) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 87) | def __add__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stan... method __and__ (line 88) | def __and__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stan... method __bool__ (line 89) | def __bool__(self) -> bool: ... method __eq__ (line 90) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 91) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 92) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 93) | def __hash__(self) -> int: ... method __index__ (line 94) | def __index__(self) -> int: ... method __int__ (line 95) | def __int__(self) -> int: ... method __le__ (line 96) | def __le__(self, other: object) -> bool: ... method __lt__ (line 97) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 98) | def __mul__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stan... method __ne__ (line 99) | def __ne__(self, other: object) -> bool: ... method __or__ (line 100) | def __or__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stand... method __pos__ (line 101) | def __pos__(self): ... method __radd__ (line 102) | def __radd__(self, other: typing.SupportsInt) -> QMacToolBarItem.Sta... method __rand__ (line 103) | def __rand__(self, other: typing.SupportsInt) -> QMacToolBarItem.Sta... method __rmul__ (line 104) | def __rmul__(self, other: typing.SupportsInt) -> QMacToolBarItem.Sta... method __ror__ (line 105) | def __ror__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stan... method __rsub__ (line 106) | def __rsub__(self, other: typing.SupportsInt) -> QMacToolBarItem.Sta... method __rxor__ (line 107) | def __rxor__(self, other: typing.SupportsInt) -> QMacToolBarItem.Sta... method __sub__ (line 108) | def __sub__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stan... method __xor__ (line 109) | def __xor__(self, other: typing.SupportsInt) -> QMacToolBarItem.Stan... method __init__ (line 115) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., activa... method icon (line 116) | def icon(self) -> PySide2.QtGui.QIcon: ... method selectable (line 117) | def selectable(self) -> bool: ... method setIcon (line 118) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setSelectable (line 119) | def setSelectable(self, selectable: bool) -> None: ... method setStandardItem (line 120) | def setStandardItem(self, standardItem: QMacToolBarItem.StandardItem) ... method setText (line 121) | def setText(self, text: str) -> None: ... method standardItem (line 122) | def standardItem(self) -> QMacToolBarItem.StandardItem: ... method text (line 123) | def text(self) -> str: ... function qRegisterDraggedTypes (line 125) | def qRegisterDraggedTypes(types: typing.Iterable[str]) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtMultimedia.pyi class _add_QSound_play_overloads (line 14) | class _add_QSound_play_overloads: class StaticOverloads (line 21) | class StaticOverloads: class play (line 22) | class play: method __call__ (line 24) | def __call__(filename: str) -> None: ... class InstanceOverloads (line 26) | class InstanceOverloads: class play (line 27) | class play: method __call__ (line 29) | def __call__(self) -> None: ... method __call__ (line 31) | def __call__(self, filename: str) -> None: ... method __init__ (line 33) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 36) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 39) | def __get__(self, object: QSound, owner: typing.Any) -> InstanceOverlo... class QAbstractAudioDeviceInfo (line 41) | class QAbstractAudioDeviceInfo(PySide2.QtCore.QObject): method __init__ (line 43) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method deviceName (line 44) | def deviceName(self) -> str: ... method isFormatSupported (line 45) | def isFormatSupported(self, format: QAudioFormat) -> bool: ... method preferredFormat (line 46) | def preferredFormat(self) -> QAudioFormat: ... method supportedByteOrders (line 47) | def supportedByteOrders(self) -> list[QAudioFormat.Endian]: ... method supportedChannelCounts (line 48) | def supportedChannelCounts(self) -> list[int]: ... method supportedCodecs (line 49) | def supportedCodecs(self) -> list[str]: ... method supportedSampleRates (line 50) | def supportedSampleRates(self) -> list[int]: ... method supportedSampleSizes (line 51) | def supportedSampleSizes(self) -> list[int]: ... method supportedSampleTypes (line 52) | def supportedSampleTypes(self) -> list[QAudioFormat.SampleType]: ... class QAbstractAudioInput (line 54) | class QAbstractAudioInput(PySide2.QtCore.QObject): method __init__ (line 59) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method bufferSize (line 60) | def bufferSize(self) -> int: ... method bytesReady (line 61) | def bytesReady(self) -> int: ... method elapsedUSecs (line 62) | def elapsedUSecs(self) -> int: ... method error (line 63) | def error(self) -> QAudio.Error: ... method format (line 64) | def format(self) -> QAudioFormat: ... method notifyInterval (line 65) | def notifyInterval(self) -> int: ... method periodSize (line 66) | def periodSize(self) -> int: ... method processedUSecs (line 67) | def processedUSecs(self) -> int: ... method reset (line 68) | def reset(self) -> None: ... method resume (line 69) | def resume(self) -> None: ... method setBufferSize (line 70) | def setBufferSize(self, value: int) -> None: ... method setFormat (line 71) | def setFormat(self, fmt: QAudioFormat) -> None: ... method setNotifyInterval (line 72) | def setNotifyInterval(self, milliSeconds: int) -> None: ... method setVolume (line 73) | def setVolume(self, arg__1: float) -> None: ... method start (line 75) | def start(self, device: PySide2.QtCore.QIODevice) -> None: ... method start (line 77) | def start(self) -> PySide2.QtCore.QIODevice: ... method state (line 78) | def state(self) -> QAudio.State: ... method stop (line 79) | def stop(self) -> None: ... method suspend (line 80) | def suspend(self) -> None: ... method volume (line 81) | def volume(self) -> float: ... class QAbstractAudioOutput (line 83) | class QAbstractAudioOutput(PySide2.QtCore.QObject): method __init__ (line 88) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method bufferSize (line 89) | def bufferSize(self) -> int: ... method bytesFree (line 90) | def bytesFree(self) -> int: ... method category (line 91) | def category(self) -> str: ... method elapsedUSecs (line 92) | def elapsedUSecs(self) -> int: ... method error (line 93) | def error(self) -> QAudio.Error: ... method format (line 94) | def format(self) -> QAudioFormat: ... method notifyInterval (line 95) | def notifyInterval(self) -> int: ... method periodSize (line 96) | def periodSize(self) -> int: ... method processedUSecs (line 97) | def processedUSecs(self) -> int: ... method reset (line 98) | def reset(self) -> None: ... method resume (line 99) | def resume(self) -> None: ... method setBufferSize (line 100) | def setBufferSize(self, value: int) -> None: ... method setCategory (line 101) | def setCategory(self, arg__1: str) -> None: ... method setFormat (line 102) | def setFormat(self, fmt: QAudioFormat) -> None: ... method setNotifyInterval (line 103) | def setNotifyInterval(self, milliSeconds: int) -> None: ... method setVolume (line 104) | def setVolume(self, arg__1: float) -> None: ... method start (line 106) | def start(self, device: PySide2.QtCore.QIODevice) -> None: ... method start (line 108) | def start(self) -> PySide2.QtCore.QIODevice: ... method state (line 109) | def state(self) -> QAudio.State: ... method stop (line 110) | def stop(self) -> None: ... method suspend (line 111) | def suspend(self) -> None: ... method volume (line 112) | def volume(self) -> float: ... class QAbstractVideoBuffer (line 114) | class QAbstractVideoBuffer(shiboken2.Object): class HandleType (line 115) | class HandleType: method __init__ (line 126) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 127) | def __add__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __and__ (line 128) | def __and__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __bool__ (line 129) | def __bool__(self) -> bool: ... method __eq__ (line 130) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 131) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 132) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 133) | def __hash__(self) -> int: ... method __index__ (line 134) | def __index__(self) -> int: ... method __int__ (line 135) | def __int__(self) -> int: ... method __le__ (line 136) | def __le__(self, other: object) -> bool: ... method __lt__ (line 137) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 138) | def __mul__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __ne__ (line 139) | def __ne__(self, other: object) -> bool: ... method __or__ (line 140) | def __or__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer.... method __pos__ (line 141) | def __pos__(self): ... method __radd__ (line 142) | def __radd__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __rand__ (line 143) | def __rand__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __rmul__ (line 144) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __ror__ (line 145) | def __ror__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __rsub__ (line 146) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __rxor__ (line 147) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __sub__ (line 148) | def __sub__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __xor__ (line 149) | def __xor__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... class MapMode (line 151) | class MapMode: method __init__ (line 159) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 160) | def __add__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __and__ (line 161) | def __and__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __bool__ (line 162) | def __bool__(self) -> bool: ... method __eq__ (line 163) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 164) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 165) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 166) | def __hash__(self) -> int: ... method __index__ (line 167) | def __index__(self) -> int: ... method __int__ (line 168) | def __int__(self) -> int: ... method __le__ (line 169) | def __le__(self, other: object) -> bool: ... method __lt__ (line 170) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 171) | def __mul__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __ne__ (line 172) | def __ne__(self, other: object) -> bool: ... method __or__ (line 173) | def __or__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer.... method __pos__ (line 174) | def __pos__(self): ... method __radd__ (line 175) | def __radd__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __rand__ (line 176) | def __rand__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __rmul__ (line 177) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __ror__ (line 178) | def __ror__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __rsub__ (line 179) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __rxor__ (line 180) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractVideoBuffe... method __sub__ (line 181) | def __sub__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __xor__ (line 182) | def __xor__(self, other: typing.SupportsInt) -> QAbstractVideoBuffer... method __init__ (line 195) | def __init__(self, type: QAbstractVideoBuffer.HandleType) -> None: ... method handle (line 196) | def handle(self) -> typing.Any: ... method handleType (line 197) | def handleType(self) -> QAbstractVideoBuffer.HandleType: ... method mapMode (line 198) | def mapMode(self) -> QAbstractVideoBuffer.MapMode: ... method release (line 199) | def release(self) -> None: ... method unmap (line 200) | def unmap(self) -> None: ... class QAbstractVideoFilter (line 202) | class QAbstractVideoFilter(PySide2.QtCore.QObject): method __init__ (line 205) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method createFilterRunnable (line 206) | def createFilterRunnable(self) -> QVideoFilterRunnable: ... method isActive (line 207) | def isActive(self) -> bool: ... method setActive (line 208) | def setActive(self, v: bool) -> None: ... class QAbstractVideoSurface (line 210) | class QAbstractVideoSurface(PySide2.QtCore.QObject): class Error (line 211) | class Error: method __init__ (line 220) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 221) | def __add__(self, other: typing.SupportsInt) -> QAbstractVideoSurfac... method __and__ (line 222) | def __and__(self, other: typing.SupportsInt) -> QAbstractVideoSurfac... method __bool__ (line 223) | def __bool__(self) -> bool: ... method __eq__ (line 224) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 225) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 226) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 227) | def __hash__(self) -> int: ... method __index__ (line 228) | def __index__(self) -> int: ... method __int__ (line 229) | def __int__(self) -> int: ... method __le__ (line 230) | def __le__(self, other: object) -> bool: ... method __lt__ (line 231) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 232) | def __mul__(self, other: typing.SupportsInt) -> QAbstractVideoSurfac... method __ne__ (line 233) | def __ne__(self, other: object) -> bool: ... method __or__ (line 234) | def __or__(self, other: typing.SupportsInt) -> QAbstractVideoSurface... method __pos__ (line 235) | def __pos__(self): ... method __radd__ (line 236) | def __radd__(self, other: typing.SupportsInt) -> QAbstractVideoSurfa... method __rand__ (line 237) | def __rand__(self, other: typing.SupportsInt) -> QAbstractVideoSurfa... method __rmul__ (line 238) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractVideoSurfa... method __ror__ (line 239) | def __ror__(self, other: typing.SupportsInt) -> QAbstractVideoSurfac... method __rsub__ (line 240) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractVideoSurfa... method __rxor__ (line 241) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractVideoSurfa... method __sub__ (line 242) | def __sub__(self, other: typing.SupportsInt) -> QAbstractVideoSurfac... method __xor__ (line 243) | def __xor__(self, other: typing.SupportsInt) -> QAbstractVideoSurfac... method __init__ (line 254) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method error (line 255) | def error(self) -> QAbstractVideoSurface.Error: ... method isActive (line 256) | def isActive(self) -> bool: ... method isFormatSupported (line 257) | def isFormatSupported(self, format: QVideoSurfaceFormat) -> bool: ... method nativeResolution (line 258) | def nativeResolution(self) -> PySide2.QtCore.QSize: ... method nearestFormat (line 259) | def nearestFormat(self, format: QVideoSurfaceFormat) -> QVideoSurfaceF... method present (line 260) | def present(self, frame: QVideoFrame) -> bool: ... method setError (line 261) | def setError(self, error: QAbstractVideoSurface.Error) -> None: ... method setNativeResolution (line 262) | def setNativeResolution(self, resolution: PySide2.QtCore.QSize) -> Non... method start (line 263) | def start(self, format: QVideoSurfaceFormat) -> bool: ... method stop (line 264) | def stop(self) -> None: ... method supportedPixelFormats (line 265) | def supportedPixelFormats(self, type: QAbstractVideoBuffer.HandleType ... method surfaceFormat (line 266) | def surfaceFormat(self) -> QVideoSurfaceFormat: ... class QAudio (line 268) | class QAudio(shiboken2.Object): class Error (line 269) | class Error: method __init__ (line 278) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 279) | def __add__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __and__ (line 280) | def __and__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __bool__ (line 281) | def __bool__(self) -> bool: ... method __eq__ (line 282) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 283) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 284) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 285) | def __hash__(self) -> int: ... method __index__ (line 286) | def __index__(self) -> int: ... method __int__ (line 287) | def __int__(self) -> int: ... method __le__ (line 288) | def __le__(self, other: object) -> bool: ... method __lt__ (line 289) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 290) | def __mul__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __ne__ (line 291) | def __ne__(self, other: object) -> bool: ... method __or__ (line 292) | def __or__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __pos__ (line 293) | def __pos__(self): ... method __radd__ (line 294) | def __radd__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __rand__ (line 295) | def __rand__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __rmul__ (line 296) | def __rmul__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __ror__ (line 297) | def __ror__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __rsub__ (line 298) | def __rsub__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __rxor__ (line 299) | def __rxor__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __sub__ (line 300) | def __sub__(self, other: typing.SupportsInt) -> QAudio.Error: ... method __xor__ (line 301) | def __xor__(self, other: typing.SupportsInt) -> QAudio.Error: ... class Mode (line 303) | class Mode: method __init__ (line 309) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 310) | def __add__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __and__ (line 311) | def __and__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __bool__ (line 312) | def __bool__(self) -> bool: ... method __eq__ (line 313) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 314) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 315) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 316) | def __hash__(self) -> int: ... method __index__ (line 317) | def __index__(self) -> int: ... method __int__ (line 318) | def __int__(self) -> int: ... method __le__ (line 319) | def __le__(self, other: object) -> bool: ... method __lt__ (line 320) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 321) | def __mul__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __ne__ (line 322) | def __ne__(self, other: object) -> bool: ... method __or__ (line 323) | def __or__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __pos__ (line 324) | def __pos__(self): ... method __radd__ (line 325) | def __radd__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __rand__ (line 326) | def __rand__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __rmul__ (line 327) | def __rmul__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __ror__ (line 328) | def __ror__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __rsub__ (line 329) | def __rsub__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __rxor__ (line 330) | def __rxor__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __sub__ (line 331) | def __sub__(self, other: typing.SupportsInt) -> QAudio.Mode: ... method __xor__ (line 332) | def __xor__(self, other: typing.SupportsInt) -> QAudio.Mode: ... class Role (line 334) | class Role: method __init__ (line 349) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 350) | def __add__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __and__ (line 351) | def __and__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __bool__ (line 352) | def __bool__(self) -> bool: ... method __eq__ (line 353) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 354) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 355) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 356) | def __hash__(self) -> int: ... method __index__ (line 357) | def __index__(self) -> int: ... method __int__ (line 358) | def __int__(self) -> int: ... method __le__ (line 359) | def __le__(self, other: object) -> bool: ... method __lt__ (line 360) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 361) | def __mul__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __ne__ (line 362) | def __ne__(self, other: object) -> bool: ... method __or__ (line 363) | def __or__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __pos__ (line 364) | def __pos__(self): ... method __radd__ (line 365) | def __radd__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __rand__ (line 366) | def __rand__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __rmul__ (line 367) | def __rmul__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __ror__ (line 368) | def __ror__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __rsub__ (line 369) | def __rsub__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __rxor__ (line 370) | def __rxor__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __sub__ (line 371) | def __sub__(self, other: typing.SupportsInt) -> QAudio.Role: ... method __xor__ (line 372) | def __xor__(self, other: typing.SupportsInt) -> QAudio.Role: ... class State (line 374) | class State: method __init__ (line 383) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 384) | def __add__(self, other: typing.SupportsInt) -> QAudio.State: ... method __and__ (line 385) | def __and__(self, other: typing.SupportsInt) -> QAudio.State: ... method __bool__ (line 386) | def __bool__(self) -> bool: ... method __eq__ (line 387) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 388) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 389) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 390) | def __hash__(self) -> int: ... method __index__ (line 391) | def __index__(self) -> int: ... method __int__ (line 392) | def __int__(self) -> int: ... method __le__ (line 393) | def __le__(self, other: object) -> bool: ... method __lt__ (line 394) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 395) | def __mul__(self, other: typing.SupportsInt) -> QAudio.State: ... method __ne__ (line 396) | def __ne__(self, other: object) -> bool: ... method __or__ (line 397) | def __or__(self, other: typing.SupportsInt) -> QAudio.State: ... method __pos__ (line 398) | def __pos__(self): ... method __radd__ (line 399) | def __radd__(self, other: typing.SupportsInt) -> QAudio.State: ... method __rand__ (line 400) | def __rand__(self, other: typing.SupportsInt) -> QAudio.State: ... method __rmul__ (line 401) | def __rmul__(self, other: typing.SupportsInt) -> QAudio.State: ... method __ror__ (line 402) | def __ror__(self, other: typing.SupportsInt) -> QAudio.State: ... method __rsub__ (line 403) | def __rsub__(self, other: typing.SupportsInt) -> QAudio.State: ... method __rxor__ (line 404) | def __rxor__(self, other: typing.SupportsInt) -> QAudio.State: ... method __sub__ (line 405) | def __sub__(self, other: typing.SupportsInt) -> QAudio.State: ... method __xor__ (line 406) | def __xor__(self, other: typing.SupportsInt) -> QAudio.State: ... class VolumeScale (line 408) | class VolumeScale: method __init__ (line 416) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 417) | def __add__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __and__ (line 418) | def __and__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __bool__ (line 419) | def __bool__(self) -> bool: ... method __eq__ (line 420) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 421) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 422) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 423) | def __hash__(self) -> int: ... method __index__ (line 424) | def __index__(self) -> int: ... method __int__ (line 425) | def __int__(self) -> int: ... method __le__ (line 426) | def __le__(self, other: object) -> bool: ... method __lt__ (line 427) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 428) | def __mul__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __ne__ (line 429) | def __ne__(self, other: object) -> bool: ... method __or__ (line 430) | def __or__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __pos__ (line 431) | def __pos__(self): ... method __radd__ (line 432) | def __radd__(self, other: typing.SupportsInt) -> QAudio.VolumeScale:... method __rand__ (line 433) | def __rand__(self, other: typing.SupportsInt) -> QAudio.VolumeScale:... method __rmul__ (line 434) | def __rmul__(self, other: typing.SupportsInt) -> QAudio.VolumeScale:... method __ror__ (line 435) | def __ror__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __rsub__ (line 436) | def __rsub__(self, other: typing.SupportsInt) -> QAudio.VolumeScale:... method __rxor__ (line 437) | def __rxor__(self, other: typing.SupportsInt) -> QAudio.VolumeScale:... method __sub__ (line 438) | def __sub__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __xor__ (line 439) | def __xor__(self, other: typing.SupportsInt) -> QAudio.VolumeScale: ... method __init__ (line 468) | def __init__(cls, *args, **kwargs) -> None: ... method convertVolume (line 470) | def convertVolume(volume: float, from_: QAudio.VolumeScale, to: QAudio... class QAudioBuffer (line 472) | class QAudioBuffer(shiboken2.Object): method __init__ (line 474) | def __init__(self, numFrames: int, format: QAudioFormat, startTime: in... method __init__ (line 476) | def __init__(self, data: PySide2.QtCore.QByteArray | bytes, format: QA... method __init__ (line 478) | def __init__(self, other: QAudioBuffer) -> None: ... method __init__ (line 480) | def __init__(self) -> None: ... method byteCount (line 481) | def byteCount(self) -> int: ... method constData (line 482) | def constData(self) -> int: ... method data (line 483) | def data(self) -> int: ... method duration (line 484) | def duration(self) -> int: ... method format (line 485) | def format(self) -> QAudioFormat: ... method frameCount (line 486) | def frameCount(self) -> int: ... method isValid (line 487) | def isValid(self) -> bool: ... method sampleCount (line 488) | def sampleCount(self) -> int: ... method startTime (line 489) | def startTime(self) -> int: ... method __copy__ (line 490) | def __copy__(self) -> None: ... class QAudioDecoder (line 492) | class QAudioDecoder(QMediaObject): class Error (line 493) | class Error: method __init__ (line 502) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 503) | def __add__(self, other: typing.SupportsInt) -> QAudioDecoder.Error:... method __and__ (line 504) | def __and__(self, other: typing.SupportsInt) -> QAudioDecoder.Error:... method __bool__ (line 505) | def __bool__(self) -> bool: ... method __eq__ (line 506) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 507) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 508) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 509) | def __hash__(self) -> int: ... method __index__ (line 510) | def __index__(self) -> int: ... method __int__ (line 511) | def __int__(self) -> int: ... method __le__ (line 512) | def __le__(self, other: object) -> bool: ... method __lt__ (line 513) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 514) | def __mul__(self, other: typing.SupportsInt) -> QAudioDecoder.Error:... method __ne__ (line 515) | def __ne__(self, other: object) -> bool: ... method __or__ (line 516) | def __or__(self, other: typing.SupportsInt) -> QAudioDecoder.Error: ... method __pos__ (line 517) | def __pos__(self): ... method __radd__ (line 518) | def __radd__(self, other: typing.SupportsInt) -> QAudioDecoder.Error... method __rand__ (line 519) | def __rand__(self, other: typing.SupportsInt) -> QAudioDecoder.Error... method __rmul__ (line 520) | def __rmul__(self, other: typing.SupportsInt) -> QAudioDecoder.Error... method __ror__ (line 521) | def __ror__(self, other: typing.SupportsInt) -> QAudioDecoder.Error:... method __rsub__ (line 522) | def __rsub__(self, other: typing.SupportsInt) -> QAudioDecoder.Error... method __rxor__ (line 523) | def __rxor__(self, other: typing.SupportsInt) -> QAudioDecoder.Error... method __sub__ (line 524) | def __sub__(self, other: typing.SupportsInt) -> QAudioDecoder.Error:... method __xor__ (line 525) | def __xor__(self, other: typing.SupportsInt) -> QAudioDecoder.Error:... class State (line 527) | class State: method __init__ (line 533) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 534) | def __add__(self, other: typing.SupportsInt) -> QAudioDecoder.State:... method __and__ (line 535) | def __and__(self, other: typing.SupportsInt) -> QAudioDecoder.State:... method __bool__ (line 536) | def __bool__(self) -> bool: ... method __eq__ (line 537) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 538) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 539) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 540) | def __hash__(self) -> int: ... method __index__ (line 541) | def __index__(self) -> int: ... method __int__ (line 542) | def __int__(self) -> int: ... method __le__ (line 543) | def __le__(self, other: object) -> bool: ... method __lt__ (line 544) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 545) | def __mul__(self, other: typing.SupportsInt) -> QAudioDecoder.State:... method __ne__ (line 546) | def __ne__(self, other: object) -> bool: ... method __or__ (line 547) | def __or__(self, other: typing.SupportsInt) -> QAudioDecoder.State: ... method __pos__ (line 548) | def __pos__(self): ... method __radd__ (line 549) | def __radd__(self, other: typing.SupportsInt) -> QAudioDecoder.State... method __rand__ (line 550) | def __rand__(self, other: typing.SupportsInt) -> QAudioDecoder.State... method __rmul__ (line 551) | def __rmul__(self, other: typing.SupportsInt) -> QAudioDecoder.State... method __ror__ (line 552) | def __ror__(self, other: typing.SupportsInt) -> QAudioDecoder.State:... method __rsub__ (line 553) | def __rsub__(self, other: typing.SupportsInt) -> QAudioDecoder.State... method __rxor__ (line 554) | def __rxor__(self, other: typing.SupportsInt) -> QAudioDecoder.State... method __sub__ (line 555) | def __sub__(self, other: typing.SupportsInt) -> QAudioDecoder.State:... method __xor__ (line 556) | def __xor__(self, other: typing.SupportsInt) -> QAudioDecoder.State:... method __init__ (line 574) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., availa... method audioFormat (line 575) | def audioFormat(self) -> QAudioFormat: ... method bind (line 576) | def bind(self, arg__1: PySide2.QtCore.QObject) -> bool: ... method bufferAvailable (line 577) | def bufferAvailable(self) -> bool: ... method duration (line 578) | def duration(self) -> int: ... method errorString (line 579) | def errorString(self) -> str: ... method hasSupport (line 581) | def hasSupport(mimeType: str, codecs: typing.Iterable[str] = ...) -> Q... method position (line 582) | def position(self) -> int: ... method read (line 583) | def read(self) -> QAudioBuffer: ... method setAudioFormat (line 584) | def setAudioFormat(self, format: QAudioFormat) -> None: ... method setSourceDevice (line 585) | def setSourceDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setSourceFilename (line 586) | def setSourceFilename(self, fileName: str) -> None: ... method sourceDevice (line 587) | def sourceDevice(self) -> PySide2.QtCore.QIODevice: ... method sourceFilename (line 588) | def sourceFilename(self) -> str: ... method start (line 589) | def start(self) -> None: ... method state (line 590) | def state(self) -> QAudioDecoder.State: ... method stop (line 591) | def stop(self) -> None: ... method unbind (line 592) | def unbind(self, arg__1: PySide2.QtCore.QObject) -> None: ... class QAudioDecoderControl (line 594) | class QAudioDecoderControl(QMediaControl): method __init__ (line 605) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method audioFormat (line 606) | def audioFormat(self) -> QAudioFormat: ... method bufferAvailable (line 607) | def bufferAvailable(self) -> bool: ... method duration (line 608) | def duration(self) -> int: ... method position (line 609) | def position(self) -> int: ... method read (line 610) | def read(self) -> QAudioBuffer: ... method setAudioFormat (line 611) | def setAudioFormat(self, format: QAudioFormat) -> None: ... method setSourceDevice (line 612) | def setSourceDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setSourceFilename (line 613) | def setSourceFilename(self, fileName: str) -> None: ... method sourceDevice (line 614) | def sourceDevice(self) -> PySide2.QtCore.QIODevice: ... method sourceFilename (line 615) | def sourceFilename(self) -> str: ... method start (line 616) | def start(self) -> None: ... method state (line 617) | def state(self) -> QAudioDecoder.State: ... method stop (line 618) | def stop(self) -> None: ... class QAudioDeviceInfo (line 620) | class QAudioDeviceInfo(shiboken2.Object): method __init__ (line 622) | def __init__(self, other: QAudioDeviceInfo) -> None: ... method __init__ (line 624) | def __init__(self) -> None: ... method availableDevices (line 626) | def availableDevices(mode: QAudio.Mode) -> list[QAudioDeviceInfo]: ... method defaultInputDevice (line 628) | def defaultInputDevice() -> QAudioDeviceInfo: ... method defaultOutputDevice (line 630) | def defaultOutputDevice() -> QAudioDeviceInfo: ... method deviceName (line 631) | def deviceName(self) -> str: ... method isFormatSupported (line 632) | def isFormatSupported(self, format: QAudioFormat) -> bool: ... method isNull (line 633) | def isNull(self) -> bool: ... method nearestFormat (line 634) | def nearestFormat(self, format: QAudioFormat) -> QAudioFormat: ... method preferredFormat (line 635) | def preferredFormat(self) -> QAudioFormat: ... method realm (line 636) | def realm(self) -> str: ... method supportedByteOrders (line 637) | def supportedByteOrders(self) -> list[QAudioFormat.Endian]: ... method supportedChannelCounts (line 638) | def supportedChannelCounts(self) -> list[int]: ... method supportedCodecs (line 639) | def supportedCodecs(self) -> list[str]: ... method supportedSampleRates (line 640) | def supportedSampleRates(self) -> list[int]: ... method supportedSampleSizes (line 641) | def supportedSampleSizes(self) -> list[int]: ... method supportedSampleTypes (line 642) | def supportedSampleTypes(self) -> list[QAudioFormat.SampleType]: ... method __bool__ (line 643) | def __bool__(self) -> bool: ... method __copy__ (line 644) | def __copy__(self) -> None: ... method __eq__ (line 645) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 646) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 647) | def __gt__(self, other: object) -> bool: ... method __le__ (line 648) | def __le__(self, other: object) -> bool: ... method __lt__ (line 649) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 650) | def __ne__(self, other: object) -> bool: ... class QAudioEncoderSettings (line 652) | class QAudioEncoderSettings(shiboken2.Object): method __init__ (line 654) | def __init__(self, other: QAudioEncoderSettings) -> None: ... method __init__ (line 656) | def __init__(self) -> None: ... method bitRate (line 657) | def bitRate(self) -> int: ... method channelCount (line 658) | def channelCount(self) -> int: ... method codec (line 659) | def codec(self) -> str: ... method encodingMode (line 660) | def encodingMode(self) -> QMultimedia.EncodingMode: ... method encodingOption (line 661) | def encodingOption(self, option: str) -> typing.Any: ... method encodingOptions (line 662) | def encodingOptions(self) -> dict[str, typing.Any]: ... method isNull (line 663) | def isNull(self) -> bool: ... method quality (line 664) | def quality(self) -> QMultimedia.EncodingQuality: ... method sampleRate (line 665) | def sampleRate(self) -> int: ... method setBitRate (line 666) | def setBitRate(self, bitrate: int) -> None: ... method setChannelCount (line 667) | def setChannelCount(self, channels: int) -> None: ... method setCodec (line 668) | def setCodec(self, codec: str) -> None: ... method setEncodingMode (line 669) | def setEncodingMode(self, arg__1: QMultimedia.EncodingMode) -> None: ... method setEncodingOption (line 670) | def setEncodingOption(self, option: str, value: typing.Any) -> None: ... method setEncodingOptions (line 671) | def setEncodingOptions(self, options: dict[str, typing.Any]) -> None: ... method setQuality (line 672) | def setQuality(self, quality: QMultimedia.EncodingQuality) -> None: ... method setSampleRate (line 673) | def setSampleRate(self, rate: int) -> None: ... method __bool__ (line 674) | def __bool__(self) -> bool: ... method __copy__ (line 675) | def __copy__(self) -> None: ... method __eq__ (line 676) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 677) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 678) | def __gt__(self, other: object) -> bool: ... method __le__ (line 679) | def __le__(self, other: object) -> bool: ... method __lt__ (line 680) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 681) | def __ne__(self, other: object) -> bool: ... class QAudioEncoderSettingsControl (line 683) | class QAudioEncoderSettingsControl(QMediaControl): method __init__ (line 685) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method audioSettings (line 686) | def audioSettings(self) -> QAudioEncoderSettings: ... method codecDescription (line 687) | def codecDescription(self, codecName: str) -> str: ... method setAudioSettings (line 688) | def setAudioSettings(self, settings: QAudioEncoderSettings) -> None: ... method supportedAudioCodecs (line 689) | def supportedAudioCodecs(self) -> list[str]: ... class QAudioFormat (line 691) | class QAudioFormat(shiboken2.Object): class Endian (line 692) | class Endian: method __init__ (line 698) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 699) | def __add__(self, other: typing.SupportsInt) -> QAudioFormat.Endian:... method __and__ (line 700) | def __and__(self, other: typing.SupportsInt) -> QAudioFormat.Endian:... method __bool__ (line 701) | def __bool__(self) -> bool: ... method __eq__ (line 702) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 703) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 704) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 705) | def __hash__(self) -> int: ... method __index__ (line 706) | def __index__(self) -> int: ... method __int__ (line 707) | def __int__(self) -> int: ... method __le__ (line 708) | def __le__(self, other: object) -> bool: ... method __lt__ (line 709) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 710) | def __mul__(self, other: typing.SupportsInt) -> QAudioFormat.Endian:... method __ne__ (line 711) | def __ne__(self, other: object) -> bool: ... method __or__ (line 712) | def __or__(self, other: typing.SupportsInt) -> QAudioFormat.Endian: ... method __pos__ (line 713) | def __pos__(self): ... method __radd__ (line 714) | def __radd__(self, other: typing.SupportsInt) -> QAudioFormat.Endian... method __rand__ (line 715) | def __rand__(self, other: typing.SupportsInt) -> QAudioFormat.Endian... method __rmul__ (line 716) | def __rmul__(self, other: typing.SupportsInt) -> QAudioFormat.Endian... method __ror__ (line 717) | def __ror__(self, other: typing.SupportsInt) -> QAudioFormat.Endian:... method __rsub__ (line 718) | def __rsub__(self, other: typing.SupportsInt) -> QAudioFormat.Endian... method __rxor__ (line 719) | def __rxor__(self, other: typing.SupportsInt) -> QAudioFormat.Endian... method __sub__ (line 720) | def __sub__(self, other: typing.SupportsInt) -> QAudioFormat.Endian:... method __xor__ (line 721) | def __xor__(self, other: typing.SupportsInt) -> QAudioFormat.Endian:... class SampleType (line 723) | class SampleType: method __init__ (line 731) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 732) | def __add__(self, other: typing.SupportsInt) -> QAudioFormat.SampleT... method __and__ (line 733) | def __and__(self, other: typing.SupportsInt) -> QAudioFormat.SampleT... method __bool__ (line 734) | def __bool__(self) -> bool: ... method __eq__ (line 735) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 736) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 737) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 738) | def __hash__(self) -> int: ... method __index__ (line 739) | def __index__(self) -> int: ... method __int__ (line 740) | def __int__(self) -> int: ... method __le__ (line 741) | def __le__(self, other: object) -> bool: ... method __lt__ (line 742) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 743) | def __mul__(self, other: typing.SupportsInt) -> QAudioFormat.SampleT... method __ne__ (line 744) | def __ne__(self, other: object) -> bool: ... method __or__ (line 745) | def __or__(self, other: typing.SupportsInt) -> QAudioFormat.SampleTy... method __pos__ (line 746) | def __pos__(self): ... method __radd__ (line 747) | def __radd__(self, other: typing.SupportsInt) -> QAudioFormat.Sample... method __rand__ (line 748) | def __rand__(self, other: typing.SupportsInt) -> QAudioFormat.Sample... method __rmul__ (line 749) | def __rmul__(self, other: typing.SupportsInt) -> QAudioFormat.Sample... method __ror__ (line 750) | def __ror__(self, other: typing.SupportsInt) -> QAudioFormat.SampleT... method __rsub__ (line 751) | def __rsub__(self, other: typing.SupportsInt) -> QAudioFormat.Sample... method __rxor__ (line 752) | def __rxor__(self, other: typing.SupportsInt) -> QAudioFormat.Sample... method __sub__ (line 753) | def __sub__(self, other: typing.SupportsInt) -> QAudioFormat.SampleT... method __xor__ (line 754) | def __xor__(self, other: typing.SupportsInt) -> QAudioFormat.SampleT... method __init__ (line 762) | def __init__(self, other: QAudioFormat) -> None: ... method __init__ (line 764) | def __init__(self) -> None: ... method byteOrder (line 765) | def byteOrder(self) -> QAudioFormat.Endian: ... method bytesForDuration (line 766) | def bytesForDuration(self, duration: int) -> int: ... method bytesForFrames (line 767) | def bytesForFrames(self, frameCount: int) -> int: ... method bytesPerFrame (line 768) | def bytesPerFrame(self) -> int: ... method channelCount (line 769) | def channelCount(self) -> int: ... method codec (line 770) | def codec(self) -> str: ... method durationForBytes (line 771) | def durationForBytes(self, byteCount: int) -> int: ... method durationForFrames (line 772) | def durationForFrames(self, frameCount: int) -> int: ... method framesForBytes (line 773) | def framesForBytes(self, byteCount: int) -> int: ... method framesForDuration (line 774) | def framesForDuration(self, duration: int) -> int: ... method isValid (line 775) | def isValid(self) -> bool: ... method sampleRate (line 776) | def sampleRate(self) -> int: ... method sampleSize (line 777) | def sampleSize(self) -> int: ... method sampleType (line 778) | def sampleType(self) -> QAudioFormat.SampleType: ... method setByteOrder (line 779) | def setByteOrder(self, byteOrder: QAudioFormat.Endian) -> None: ... method setChannelCount (line 780) | def setChannelCount(self, channelCount: int) -> None: ... method setCodec (line 781) | def setCodec(self, codec: str) -> None: ... method setSampleRate (line 782) | def setSampleRate(self, sampleRate: int) -> None: ... method setSampleSize (line 783) | def setSampleSize(self, sampleSize: int) -> None: ... method setSampleType (line 784) | def setSampleType(self, sampleType: QAudioFormat.SampleType) -> None: ... method __copy__ (line 785) | def __copy__(self) -> None: ... method __eq__ (line 786) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 787) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 788) | def __gt__(self, other: object) -> bool: ... method __le__ (line 789) | def __le__(self, other: object) -> bool: ... method __lt__ (line 790) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 791) | def __ne__(self, other: object) -> bool: ... class QAudioInput (line 793) | class QAudioInput(PySide2.QtCore.QObject): method __init__ (line 798) | def __init__(self, audioDeviceInfo: QAudioDeviceInfo, format: QAudioFo... method __init__ (line 800) | def __init__(self, format: QAudioFormat = ..., parent: PySide2.QtCore.... method bufferSize (line 801) | def bufferSize(self) -> int: ... method bytesReady (line 802) | def bytesReady(self) -> int: ... method elapsedUSecs (line 803) | def elapsedUSecs(self) -> int: ... method error (line 804) | def error(self) -> QAudio.Error: ... method format (line 805) | def format(self) -> QAudioFormat: ... method notifyInterval (line 806) | def notifyInterval(self) -> int: ... method periodSize (line 807) | def periodSize(self) -> int: ... method processedUSecs (line 808) | def processedUSecs(self) -> int: ... method reset (line 809) | def reset(self) -> None: ... method resume (line 810) | def resume(self) -> None: ... method setBufferSize (line 811) | def setBufferSize(self, bytes: int) -> None: ... method setNotifyInterval (line 812) | def setNotifyInterval(self, milliSeconds: int) -> None: ... method setVolume (line 813) | def setVolume(self, volume: float) -> None: ... method start (line 815) | def start(self, device: PySide2.QtCore.QIODevice) -> None: ... method start (line 817) | def start(self) -> PySide2.QtCore.QIODevice: ... method state (line 818) | def state(self) -> QAudio.State: ... method stop (line 819) | def stop(self) -> None: ... method suspend (line 820) | def suspend(self) -> None: ... method volume (line 821) | def volume(self) -> float: ... class QAudioInputSelectorControl (line 823) | class QAudioInputSelectorControl(QMediaControl): method __init__ (line 827) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method activeInput (line 828) | def activeInput(self) -> str: ... method availableInputs (line 829) | def availableInputs(self) -> list[str]: ... method defaultInput (line 830) | def defaultInput(self) -> str: ... method inputDescription (line 831) | def inputDescription(self, name: str) -> str: ... method setActiveInput (line 832) | def setActiveInput(self, name: str) -> None: ... class QAudioOutput (line 834) | class QAudioOutput(PySide2.QtCore.QObject): method __init__ (line 839) | def __init__(self, audioDeviceInfo: QAudioDeviceInfo, format: QAudioFo... method __init__ (line 841) | def __init__(self, format: QAudioFormat = ..., parent: PySide2.QtCore.... method bufferSize (line 842) | def bufferSize(self) -> int: ... method bytesFree (line 843) | def bytesFree(self) -> int: ... method category (line 844) | def category(self) -> str: ... method elapsedUSecs (line 845) | def elapsedUSecs(self) -> int: ... method error (line 846) | def error(self) -> QAudio.Error: ... method format (line 847) | def format(self) -> QAudioFormat: ... method notifyInterval (line 848) | def notifyInterval(self) -> int: ... method periodSize (line 849) | def periodSize(self) -> int: ... method processedUSecs (line 850) | def processedUSecs(self) -> int: ... method reset (line 851) | def reset(self) -> None: ... method resume (line 852) | def resume(self) -> None: ... method setBufferSize (line 853) | def setBufferSize(self, bytes: int) -> None: ... method setCategory (line 854) | def setCategory(self, category: str) -> None: ... method setNotifyInterval (line 855) | def setNotifyInterval(self, milliSeconds: int) -> None: ... method setVolume (line 856) | def setVolume(self, arg__1: float) -> None: ... method start (line 858) | def start(self, device: PySide2.QtCore.QIODevice) -> None: ... method start (line 860) | def start(self) -> PySide2.QtCore.QIODevice: ... method state (line 861) | def state(self) -> QAudio.State: ... method stop (line 862) | def stop(self) -> None: ... method suspend (line 863) | def suspend(self) -> None: ... method volume (line 864) | def volume(self) -> float: ... class QAudioOutputSelectorControl (line 866) | class QAudioOutputSelectorControl(QMediaControl): method __init__ (line 870) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method activeOutput (line 871) | def activeOutput(self) -> str: ... method availableOutputs (line 872) | def availableOutputs(self) -> list[str]: ... method defaultOutput (line 873) | def defaultOutput(self) -> str: ... method outputDescription (line 874) | def outputDescription(self, name: str) -> str: ... method setActiveOutput (line 875) | def setActiveOutput(self, name: str) -> None: ... class QAudioProbe (line 877) | class QAudioProbe(PySide2.QtCore.QObject): method __init__ (line 881) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., audioB... method isActive (line 882) | def isActive(self) -> bool: ... method setSource (line 884) | def setSource(self, source: QMediaObject) -> bool: ... method setSource (line 886) | def setSource(self, source: QMediaRecorder) -> bool: ... class QAudioRecorder (line 888) | class QAudioRecorder(QMediaRecorder): method __init__ (line 892) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., actual... method audioInput (line 893) | def audioInput(self) -> str: ... method audioInputDescription (line 894) | def audioInputDescription(self, name: str) -> str: ... method audioInputs (line 895) | def audioInputs(self) -> list[str]: ... method defaultAudioInput (line 896) | def defaultAudioInput(self) -> str: ... method setAudioInput (line 897) | def setAudioInput(self, name: str) -> None: ... class QAudioRoleControl (line 899) | class QAudioRoleControl(QMediaControl): method __init__ (line 902) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method audioRole (line 903) | def audioRole(self) -> QAudio.Role: ... method setAudioRole (line 904) | def setAudioRole(self, role: QAudio.Role) -> None: ... method supportedAudioRoles (line 905) | def supportedAudioRoles(self) -> list[QAudio.Role]: ... class QCamera (line 907) | class QCamera(QMediaObject): class CaptureMode (line 908) | class CaptureMode: method __init__ (line 915) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 916) | def __and__(self, other: typing.SupportsInt) -> QCamera.CaptureModes... method __bool__ (line 917) | def __bool__(self) -> bool: ... method __eq__ (line 918) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 919) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 920) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 921) | def __hash__(self) -> int: ... method __index__ (line 922) | def __index__(self) -> int: ... method __int__ (line 923) | def __int__(self) -> int: ... method __invert__ (line 924) | def __invert__(self) -> QCamera.CaptureModes: ... method __le__ (line 925) | def __le__(self, other: object) -> bool: ... method __lt__ (line 926) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 927) | def __ne__(self, other: object) -> bool: ... method __or__ (line 928) | def __or__(self, other: typing.SupportsInt) -> QCamera.CaptureModes:... method __rand__ (line 929) | def __rand__(self, other: typing.SupportsInt) -> QCamera.CaptureMode... method __ror__ (line 930) | def __ror__(self, other: typing.SupportsInt) -> QCamera.CaptureModes... method __rxor__ (line 931) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.CaptureMode... method __xor__ (line 932) | def __xor__(self, other: typing.SupportsInt) -> QCamera.CaptureModes... class CaptureModes (line 934) | class CaptureModes: method __init__ (line 936) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 937) | def __and__(self, other: typing.SupportsInt) -> QCamera.CaptureModes... method __bool__ (line 938) | def __bool__(self) -> bool: ... method __eq__ (line 939) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 940) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 941) | def __gt__(self, other: object) -> bool: ... method __index__ (line 942) | def __index__(self) -> int: ... method __int__ (line 943) | def __int__(self) -> int: ... method __invert__ (line 944) | def __invert__(self) -> QCamera.CaptureModes: ... method __le__ (line 945) | def __le__(self, other: object) -> bool: ... method __lt__ (line 946) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 947) | def __ne__(self, other: object) -> bool: ... method __or__ (line 948) | def __or__(self, other: typing.SupportsInt) -> QCamera.CaptureModes:... method __rand__ (line 949) | def __rand__(self, other: typing.SupportsInt) -> QCamera.CaptureMode... method __ror__ (line 950) | def __ror__(self, other: typing.SupportsInt) -> QCamera.CaptureModes... method __rxor__ (line 951) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.CaptureMode... method __xor__ (line 952) | def __xor__(self, other: typing.SupportsInt) -> QCamera.CaptureModes... class Error (line 954) | class Error: method __init__ (line 963) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 964) | def __add__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __and__ (line 965) | def __and__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __bool__ (line 966) | def __bool__(self) -> bool: ... method __eq__ (line 967) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 968) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 969) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 970) | def __hash__(self) -> int: ... method __index__ (line 971) | def __index__(self) -> int: ... method __int__ (line 972) | def __int__(self) -> int: ... method __le__ (line 973) | def __le__(self, other: object) -> bool: ... method __lt__ (line 974) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 975) | def __mul__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __ne__ (line 976) | def __ne__(self, other: object) -> bool: ... method __or__ (line 977) | def __or__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __pos__ (line 978) | def __pos__(self): ... method __radd__ (line 979) | def __radd__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __rand__ (line 980) | def __rand__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __rmul__ (line 981) | def __rmul__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __ror__ (line 982) | def __ror__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __rsub__ (line 983) | def __rsub__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __rxor__ (line 984) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __sub__ (line 985) | def __sub__(self, other: typing.SupportsInt) -> QCamera.Error: ... method __xor__ (line 986) | def __xor__(self, other: typing.SupportsInt) -> QCamera.Error: ... class FrameRateRange (line 988) | class FrameRateRange(shiboken2.Object): method __init__ (line 992) | def __init__(self, minimum: float, maximum: float) -> None: ... method __init__ (line 994) | def __init__(self, FrameRateRange: QCamera.FrameRateRange) -> None: ... method __init__ (line 996) | def __init__(self) -> None: ... method __copy__ (line 997) | def __copy__(self) -> None: ... method __eq__ (line 998) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 999) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1000) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1001) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1002) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1003) | def __ne__(self, other: object) -> bool: ... class LockChangeReason (line 1005) | class LockChangeReason: method __init__ (line 1014) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1015) | def __add__(self, other: typing.SupportsInt) -> QCamera.LockChangeRe... method __and__ (line 1016) | def __and__(self, other: typing.SupportsInt) -> QCamera.LockChangeRe... method __bool__ (line 1017) | def __bool__(self) -> bool: ... method __eq__ (line 1018) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1019) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1020) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1021) | def __hash__(self) -> int: ... method __index__ (line 1022) | def __index__(self) -> int: ... method __int__ (line 1023) | def __int__(self) -> int: ... method __le__ (line 1024) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1025) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1026) | def __mul__(self, other: typing.SupportsInt) -> QCamera.LockChangeRe... method __ne__ (line 1027) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1028) | def __or__(self, other: typing.SupportsInt) -> QCamera.LockChangeRea... method __pos__ (line 1029) | def __pos__(self): ... method __radd__ (line 1030) | def __radd__(self, other: typing.SupportsInt) -> QCamera.LockChangeR... method __rand__ (line 1031) | def __rand__(self, other: typing.SupportsInt) -> QCamera.LockChangeR... method __rmul__ (line 1032) | def __rmul__(self, other: typing.SupportsInt) -> QCamera.LockChangeR... method __ror__ (line 1033) | def __ror__(self, other: typing.SupportsInt) -> QCamera.LockChangeRe... method __rsub__ (line 1034) | def __rsub__(self, other: typing.SupportsInt) -> QCamera.LockChangeR... method __rxor__ (line 1035) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.LockChangeR... method __sub__ (line 1036) | def __sub__(self, other: typing.SupportsInt) -> QCamera.LockChangeRe... method __xor__ (line 1037) | def __xor__(self, other: typing.SupportsInt) -> QCamera.LockChangeRe... class LockStatus (line 1039) | class LockStatus: method __init__ (line 1046) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1047) | def __add__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... method __and__ (line 1048) | def __and__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... method __bool__ (line 1049) | def __bool__(self) -> bool: ... method __eq__ (line 1050) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1051) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1052) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1053) | def __hash__(self) -> int: ... method __index__ (line 1054) | def __index__(self) -> int: ... method __int__ (line 1055) | def __int__(self) -> int: ... method __le__ (line 1056) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1057) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1058) | def __mul__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... method __ne__ (line 1059) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1060) | def __or__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... method __pos__ (line 1061) | def __pos__(self): ... method __radd__ (line 1062) | def __radd__(self, other: typing.SupportsInt) -> QCamera.LockStatus:... method __rand__ (line 1063) | def __rand__(self, other: typing.SupportsInt) -> QCamera.LockStatus:... method __rmul__ (line 1064) | def __rmul__(self, other: typing.SupportsInt) -> QCamera.LockStatus:... method __ror__ (line 1065) | def __ror__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... method __rsub__ (line 1066) | def __rsub__(self, other: typing.SupportsInt) -> QCamera.LockStatus:... method __rxor__ (line 1067) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.LockStatus:... method __sub__ (line 1068) | def __sub__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... method __xor__ (line 1069) | def __xor__(self, other: typing.SupportsInt) -> QCamera.LockStatus: ... class LockType (line 1071) | class LockType: method __init__ (line 1079) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1080) | def __and__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __bool__ (line 1081) | def __bool__(self) -> bool: ... method __eq__ (line 1082) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1083) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1084) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1085) | def __hash__(self) -> int: ... method __index__ (line 1086) | def __index__(self) -> int: ... method __int__ (line 1087) | def __int__(self) -> int: ... method __invert__ (line 1088) | def __invert__(self) -> QCamera.LockTypes: ... method __le__ (line 1089) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1090) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1091) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1092) | def __or__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __rand__ (line 1093) | def __rand__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __ror__ (line 1094) | def __ror__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __rxor__ (line 1095) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __xor__ (line 1096) | def __xor__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... class LockTypes (line 1098) | class LockTypes: method __init__ (line 1100) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1101) | def __and__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __bool__ (line 1102) | def __bool__(self) -> bool: ... method __eq__ (line 1103) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1104) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1105) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1106) | def __index__(self) -> int: ... method __int__ (line 1107) | def __int__(self) -> int: ... method __invert__ (line 1108) | def __invert__(self) -> QCamera.LockTypes: ... method __le__ (line 1109) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1110) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1111) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1112) | def __or__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __rand__ (line 1113) | def __rand__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __ror__ (line 1114) | def __ror__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __rxor__ (line 1115) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... method __xor__ (line 1116) | def __xor__(self, other: typing.SupportsInt) -> QCamera.LockTypes: ... class Position (line 1118) | class Position: method __init__ (line 1125) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1126) | def __add__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __and__ (line 1127) | def __and__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __bool__ (line 1128) | def __bool__(self) -> bool: ... method __eq__ (line 1129) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1130) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1131) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1132) | def __hash__(self) -> int: ... method __index__ (line 1133) | def __index__(self) -> int: ... method __int__ (line 1134) | def __int__(self) -> int: ... method __le__ (line 1135) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1136) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1137) | def __mul__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __ne__ (line 1138) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1139) | def __or__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __pos__ (line 1140) | def __pos__(self): ... method __radd__ (line 1141) | def __radd__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __rand__ (line 1142) | def __rand__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __rmul__ (line 1143) | def __rmul__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __ror__ (line 1144) | def __ror__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __rsub__ (line 1145) | def __rsub__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __rxor__ (line 1146) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __sub__ (line 1147) | def __sub__(self, other: typing.SupportsInt) -> QCamera.Position: ... method __xor__ (line 1148) | def __xor__(self, other: typing.SupportsInt) -> QCamera.Position: ... class State (line 1150) | class State: method __init__ (line 1157) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1158) | def __add__(self, other: typing.SupportsInt) -> QCamera.State: ... method __and__ (line 1159) | def __and__(self, other: typing.SupportsInt) -> QCamera.State: ... method __bool__ (line 1160) | def __bool__(self) -> bool: ... method __eq__ (line 1161) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1162) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1163) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1164) | def __hash__(self) -> int: ... method __index__ (line 1165) | def __index__(self) -> int: ... method __int__ (line 1166) | def __int__(self) -> int: ... method __le__ (line 1167) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1168) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1169) | def __mul__(self, other: typing.SupportsInt) -> QCamera.State: ... method __ne__ (line 1170) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1171) | def __or__(self, other: typing.SupportsInt) -> QCamera.State: ... method __pos__ (line 1172) | def __pos__(self): ... method __radd__ (line 1173) | def __radd__(self, other: typing.SupportsInt) -> QCamera.State: ... method __rand__ (line 1174) | def __rand__(self, other: typing.SupportsInt) -> QCamera.State: ... method __rmul__ (line 1175) | def __rmul__(self, other: typing.SupportsInt) -> QCamera.State: ... method __ror__ (line 1176) | def __ror__(self, other: typing.SupportsInt) -> QCamera.State: ... method __rsub__ (line 1177) | def __rsub__(self, other: typing.SupportsInt) -> QCamera.State: ... method __rxor__ (line 1178) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.State: ... method __sub__ (line 1179) | def __sub__(self, other: typing.SupportsInt) -> QCamera.State: ... method __xor__ (line 1180) | def __xor__(self, other: typing.SupportsInt) -> QCamera.State: ... class Status (line 1182) | class Status: method __init__ (line 1195) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1196) | def __add__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __and__ (line 1197) | def __and__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __bool__ (line 1198) | def __bool__(self) -> bool: ... method __eq__ (line 1199) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1200) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1201) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1202) | def __hash__(self) -> int: ... method __index__ (line 1203) | def __index__(self) -> int: ... method __int__ (line 1204) | def __int__(self) -> int: ... method __le__ (line 1205) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1206) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1207) | def __mul__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __ne__ (line 1208) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1209) | def __or__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __pos__ (line 1210) | def __pos__(self): ... method __radd__ (line 1211) | def __radd__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __rand__ (line 1212) | def __rand__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __rmul__ (line 1213) | def __rmul__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __ror__ (line 1214) | def __ror__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __rsub__ (line 1215) | def __rsub__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __rxor__ (line 1216) | def __rxor__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __sub__ (line 1217) | def __sub__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __xor__ (line 1218) | def __xor__(self, other: typing.SupportsInt) -> QCamera.Status: ... method __init__ (line 1264) | def __init__(self, position: QCamera.Position, parent: PySide2.QtCore.... method __init__ (line 1266) | def __init__(self, deviceName: PySide2.QtCore.QByteArray | bytes, pare... method __init__ (line 1268) | def __init__(self, cameraInfo: QCameraInfo, parent: PySide2.QtCore.QOb... method __init__ (line 1270) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., availa... method availability (line 1271) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method availableDevices (line 1273) | def availableDevices() -> list[PySide2.QtCore.QByteArray]: ... method captureMode (line 1274) | def captureMode(self) -> QCamera.CaptureModes | QCamera.CaptureMode: ... method deviceDescription (line 1276) | def deviceDescription(device: PySide2.QtCore.QByteArray | bytes) -> st... method errorString (line 1277) | def errorString(self) -> str: ... method exposure (line 1278) | def exposure(self) -> QCameraExposure: ... method focus (line 1279) | def focus(self) -> QCameraFocus: ... method imageProcessing (line 1280) | def imageProcessing(self) -> QCameraImageProcessing: ... method isCaptureModeSupported (line 1281) | def isCaptureModeSupported(self, mode: QCamera.CaptureModes | QCamera.... method load (line 1282) | def load(self) -> None: ... method lockStatus (line 1284) | def lockStatus(self, lock: QCamera.LockType) -> QCamera.LockStatus: ... method lockStatus (line 1286) | def lockStatus(self) -> QCamera.LockStatus: ... method requestedLocks (line 1287) | def requestedLocks(self) -> QCamera.LockTypes | QCamera.LockType: ... method searchAndLock (line 1289) | def searchAndLock(self, locks: QCamera.LockTypes | QCamera.LockType) -... method searchAndLock (line 1291) | def searchAndLock(self) -> None: ... method setCaptureMode (line 1292) | def setCaptureMode(self, mode: QCamera.CaptureModes | QCamera.CaptureM... method setViewfinder (line 1294) | def setViewfinder(self, viewfinder: PySide2.QtMultimediaWidgets.QGraph... method setViewfinder (line 1296) | def setViewfinder(self, viewfinder: PySide2.QtMultimediaWidgets.QVideo... method setViewfinder (line 1298) | def setViewfinder(self, surface: QAbstractVideoSurface) -> None: ... method setViewfinderSettings (line 1299) | def setViewfinderSettings(self, settings: QCameraViewfinderSettings) -... method start (line 1300) | def start(self) -> None: ... method state (line 1301) | def state(self) -> QCamera.State: ... method status (line 1302) | def status(self) -> QCamera.Status: ... method stop (line 1303) | def stop(self) -> None: ... method supportedLocks (line 1304) | def supportedLocks(self) -> QCamera.LockTypes | QCamera.LockType: ... method supportedViewfinderFrameRateRanges (line 1305) | def supportedViewfinderFrameRateRanges(self, settings: QCameraViewfind... method supportedViewfinderPixelFormats (line 1306) | def supportedViewfinderPixelFormats(self, settings: QCameraViewfinderS... method supportedViewfinderResolutions (line 1307) | def supportedViewfinderResolutions(self, settings: QCameraViewfinderSe... method supportedViewfinderSettings (line 1308) | def supportedViewfinderSettings(self, settings: QCameraViewfinderSetti... method unload (line 1309) | def unload(self) -> None: ... method unlock (line 1311) | def unlock(self, locks: QCamera.LockTypes | QCamera.LockType) -> None:... method unlock (line 1313) | def unlock(self) -> None: ... method viewfinderSettings (line 1314) | def viewfinderSettings(self) -> QCameraViewfinderSettings: ... class QCameraCaptureBufferFormatControl (line 1316) | class QCameraCaptureBufferFormatControl(QMediaControl): method __init__ (line 1319) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method bufferFormat (line 1320) | def bufferFormat(self) -> QVideoFrame.PixelFormat: ... method setBufferFormat (line 1321) | def setBufferFormat(self, format: QVideoFrame.PixelFormat) -> None: ... method supportedBufferFormats (line 1322) | def supportedBufferFormats(self) -> list[QVideoFrame.PixelFormat]: ... class QCameraCaptureDestinationControl (line 1324) | class QCameraCaptureDestinationControl(QMediaControl): method __init__ (line 1327) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method captureDestination (line 1328) | def captureDestination(self) -> QCameraImageCapture.CaptureDestination... method isCaptureDestinationSupported (line 1329) | def isCaptureDestinationSupported(self, destination: QCameraImageCaptu... method setCaptureDestination (line 1330) | def setCaptureDestination(self, destination: QCameraImageCapture.Captu... class QCameraControl (line 1332) | class QCameraControl(QMediaControl): class PropertyChangeType (line 1333) | class PropertyChangeType: method __init__ (line 1342) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1343) | def __add__(self, other: typing.SupportsInt) -> QCameraControl.Prope... method __and__ (line 1344) | def __and__(self, other: typing.SupportsInt) -> QCameraControl.Prope... method __bool__ (line 1345) | def __bool__(self) -> bool: ... method __eq__ (line 1346) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1347) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1348) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1349) | def __hash__(self) -> int: ... method __index__ (line 1350) | def __index__(self) -> int: ... method __int__ (line 1351) | def __int__(self) -> int: ... method __le__ (line 1352) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1353) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1354) | def __mul__(self, other: typing.SupportsInt) -> QCameraControl.Prope... method __ne__ (line 1355) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1356) | def __or__(self, other: typing.SupportsInt) -> QCameraControl.Proper... method __pos__ (line 1357) | def __pos__(self): ... method __radd__ (line 1358) | def __radd__(self, other: typing.SupportsInt) -> QCameraControl.Prop... method __rand__ (line 1359) | def __rand__(self, other: typing.SupportsInt) -> QCameraControl.Prop... method __rmul__ (line 1360) | def __rmul__(self, other: typing.SupportsInt) -> QCameraControl.Prop... method __ror__ (line 1361) | def __ror__(self, other: typing.SupportsInt) -> QCameraControl.Prope... method __rsub__ (line 1362) | def __rsub__(self, other: typing.SupportsInt) -> QCameraControl.Prop... method __rxor__ (line 1363) | def __rxor__(self, other: typing.SupportsInt) -> QCameraControl.Prop... method __sub__ (line 1364) | def __sub__(self, other: typing.SupportsInt) -> QCameraControl.Prope... method __xor__ (line 1365) | def __xor__(self, other: typing.SupportsInt) -> QCameraControl.Prope... method __init__ (line 1376) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method canChangeProperty (line 1377) | def canChangeProperty(self, changeType: QCameraControl.PropertyChangeT... method captureMode (line 1378) | def captureMode(self) -> QCamera.CaptureModes | QCamera.CaptureMode: ... method isCaptureModeSupported (line 1379) | def isCaptureModeSupported(self, mode: QCamera.CaptureModes | QCamera.... method setCaptureMode (line 1380) | def setCaptureMode(self, arg__1: QCamera.CaptureModes | QCamera.Captur... method setState (line 1381) | def setState(self, state: QCamera.State) -> None: ... method state (line 1382) | def state(self) -> QCamera.State: ... method status (line 1383) | def status(self) -> QCamera.Status: ... class QCameraExposure (line 1385) | class QCameraExposure(PySide2.QtCore.QObject): class ExposureMode (line 1386) | class ExposureMode: method __init__ (line 1412) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1413) | def __add__(self, other: typing.SupportsInt) -> QCameraExposure.Expo... method __and__ (line 1414) | def __and__(self, other: typing.SupportsInt) -> QCameraExposure.Expo... method __bool__ (line 1415) | def __bool__(self) -> bool: ... method __eq__ (line 1416) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1417) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1418) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1419) | def __hash__(self) -> int: ... method __index__ (line 1420) | def __index__(self) -> int: ... method __int__ (line 1421) | def __int__(self) -> int: ... method __le__ (line 1422) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1423) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1424) | def __mul__(self, other: typing.SupportsInt) -> QCameraExposure.Expo... method __ne__ (line 1425) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1426) | def __or__(self, other: typing.SupportsInt) -> QCameraExposure.Expos... method __pos__ (line 1427) | def __pos__(self): ... method __radd__ (line 1428) | def __radd__(self, other: typing.SupportsInt) -> QCameraExposure.Exp... method __rand__ (line 1429) | def __rand__(self, other: typing.SupportsInt) -> QCameraExposure.Exp... method __rmul__ (line 1430) | def __rmul__(self, other: typing.SupportsInt) -> QCameraExposure.Exp... method __ror__ (line 1431) | def __ror__(self, other: typing.SupportsInt) -> QCameraExposure.Expo... method __rsub__ (line 1432) | def __rsub__(self, other: typing.SupportsInt) -> QCameraExposure.Exp... method __rxor__ (line 1433) | def __rxor__(self, other: typing.SupportsInt) -> QCameraExposure.Exp... method __sub__ (line 1434) | def __sub__(self, other: typing.SupportsInt) -> QCameraExposure.Expo... method __xor__ (line 1435) | def __xor__(self, other: typing.SupportsInt) -> QCameraExposure.Expo... class FlashMode (line 1437) | class FlashMode: method __init__ (line 1451) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1452) | def __and__(self, other: typing.SupportsInt) -> QCameraExposure.Flas... method __bool__ (line 1453) | def __bool__(self) -> bool: ... method __eq__ (line 1454) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1455) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1456) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1457) | def __hash__(self) -> int: ... method __index__ (line 1458) | def __index__(self) -> int: ... method __int__ (line 1459) | def __int__(self) -> int: ... method __invert__ (line 1460) | def __invert__(self) -> QCameraExposure.FlashModes: ... method __le__ (line 1461) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1462) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1463) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1464) | def __or__(self, other: typing.SupportsInt) -> QCameraExposure.Flash... method __rand__ (line 1465) | def __rand__(self, other: typing.SupportsInt) -> QCameraExposure.Fla... method __ror__ (line 1466) | def __ror__(self, other: typing.SupportsInt) -> QCameraExposure.Flas... method __rxor__ (line 1467) | def __rxor__(self, other: typing.SupportsInt) -> QCameraExposure.Fla... method __xor__ (line 1468) | def __xor__(self, other: typing.SupportsInt) -> QCameraExposure.Flas... class FlashModes (line 1470) | class FlashModes: method __init__ (line 1472) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1473) | def __and__(self, other: typing.SupportsInt) -> QCameraExposure.Flas... method __bool__ (line 1474) | def __bool__(self) -> bool: ... method __eq__ (line 1475) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1476) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1477) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1478) | def __index__(self) -> int: ... method __int__ (line 1479) | def __int__(self) -> int: ... method __invert__ (line 1480) | def __invert__(self) -> QCameraExposure.FlashModes: ... method __le__ (line 1481) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1482) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1483) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1484) | def __or__(self, other: typing.SupportsInt) -> QCameraExposure.Flash... method __rand__ (line 1485) | def __rand__(self, other: typing.SupportsInt) -> QCameraExposure.Fla... method __ror__ (line 1486) | def __ror__(self, other: typing.SupportsInt) -> QCameraExposure.Flas... method __rxor__ (line 1487) | def __rxor__(self, other: typing.SupportsInt) -> QCameraExposure.Fla... method __xor__ (line 1488) | def __xor__(self, other: typing.SupportsInt) -> QCameraExposure.Flas... class MeteringMode (line 1490) | class MeteringMode: method __init__ (line 1497) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1498) | def __add__(self, other: typing.SupportsInt) -> QCameraExposure.Mete... method __and__ (line 1499) | def __and__(self, other: typing.SupportsInt) -> QCameraExposure.Mete... method __bool__ (line 1500) | def __bool__(self) -> bool: ... method __eq__ (line 1501) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1502) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1503) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1504) | def __hash__(self) -> int: ... method __index__ (line 1505) | def __index__(self) -> int: ... method __int__ (line 1506) | def __int__(self) -> int: ... method __le__ (line 1507) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1508) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1509) | def __mul__(self, other: typing.SupportsInt) -> QCameraExposure.Mete... method __ne__ (line 1510) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1511) | def __or__(self, other: typing.SupportsInt) -> QCameraExposure.Meter... method __pos__ (line 1512) | def __pos__(self): ... method __radd__ (line 1513) | def __radd__(self, other: typing.SupportsInt) -> QCameraExposure.Met... method __rand__ (line 1514) | def __rand__(self, other: typing.SupportsInt) -> QCameraExposure.Met... method __rmul__ (line 1515) | def __rmul__(self, other: typing.SupportsInt) -> QCameraExposure.Met... method __ror__ (line 1516) | def __ror__(self, other: typing.SupportsInt) -> QCameraExposure.Mete... method __rsub__ (line 1517) | def __rsub__(self, other: typing.SupportsInt) -> QCameraExposure.Met... method __rxor__ (line 1518) | def __rxor__(self, other: typing.SupportsInt) -> QCameraExposure.Met... method __sub__ (line 1519) | def __sub__(self, other: typing.SupportsInt) -> QCameraExposure.Mete... method __xor__ (line 1520) | def __xor__(self, other: typing.SupportsInt) -> QCameraExposure.Mete... method __init__ (line 1565) | def __init__(cls, *args, aperture: float = ..., apertureChanged: typin... method aperture (line 1566) | def aperture(self) -> float: ... method exposureCompensation (line 1567) | def exposureCompensation(self) -> float: ... method exposureMode (line 1568) | def exposureMode(self) -> QCameraExposure.ExposureMode: ... method flashMode (line 1569) | def flashMode(self) -> QCameraExposure.FlashModes | QCameraExposure.Fl... method isAvailable (line 1570) | def isAvailable(self) -> bool: ... method isExposureModeSupported (line 1571) | def isExposureModeSupported(self, mode: QCameraExposure.ExposureMode) ... method isFlashModeSupported (line 1572) | def isFlashModeSupported(self, mode: QCameraExposure.FlashModes | QCam... method isFlashReady (line 1573) | def isFlashReady(self) -> bool: ... method isMeteringModeSupported (line 1574) | def isMeteringModeSupported(self, mode: QCameraExposure.MeteringMode) ... method isoSensitivity (line 1575) | def isoSensitivity(self) -> int: ... method meteringMode (line 1576) | def meteringMode(self) -> QCameraExposure.MeteringMode: ... method requestedAperture (line 1577) | def requestedAperture(self) -> float: ... method requestedIsoSensitivity (line 1578) | def requestedIsoSensitivity(self) -> int: ... method requestedShutterSpeed (line 1579) | def requestedShutterSpeed(self) -> float: ... method setAutoAperture (line 1580) | def setAutoAperture(self) -> None: ... method setAutoIsoSensitivity (line 1581) | def setAutoIsoSensitivity(self) -> None: ... method setAutoShutterSpeed (line 1582) | def setAutoShutterSpeed(self) -> None: ... method setExposureCompensation (line 1583) | def setExposureCompensation(self, ev: float) -> None: ... method setExposureMode (line 1584) | def setExposureMode(self, mode: QCameraExposure.ExposureMode) -> None:... method setFlashMode (line 1585) | def setFlashMode(self, mode: QCameraExposure.FlashModes | QCameraExpos... method setManualAperture (line 1586) | def setManualAperture(self, aperture: float) -> None: ... method setManualIsoSensitivity (line 1587) | def setManualIsoSensitivity(self, iso: int) -> None: ... method setManualShutterSpeed (line 1588) | def setManualShutterSpeed(self, seconds: float) -> None: ... method setMeteringMode (line 1589) | def setMeteringMode(self, mode: QCameraExposure.MeteringMode) -> None:... method setSpotMeteringPoint (line 1590) | def setSpotMeteringPoint(self, point: PySide2.QtCore.QPointF) -> None:... method shutterSpeed (line 1591) | def shutterSpeed(self) -> float: ... method spotMeteringPoint (line 1592) | def spotMeteringPoint(self) -> PySide2.QtCore.QPointF: ... class QCameraExposureControl (line 1594) | class QCameraExposureControl(QMediaControl): class ExposureParameter (line 1595) | class ExposureParameter: method __init__ (line 1610) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1611) | def __add__(self, other: typing.SupportsInt) -> QCameraExposureContr... method __and__ (line 1612) | def __and__(self, other: typing.SupportsInt) -> QCameraExposureContr... method __bool__ (line 1613) | def __bool__(self) -> bool: ... method __eq__ (line 1614) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1615) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1616) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1617) | def __hash__(self) -> int: ... method __index__ (line 1618) | def __index__(self) -> int: ... method __int__ (line 1619) | def __int__(self) -> int: ... method __le__ (line 1620) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1621) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1622) | def __mul__(self, other: typing.SupportsInt) -> QCameraExposureContr... method __ne__ (line 1623) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1624) | def __or__(self, other: typing.SupportsInt) -> QCameraExposureContro... method __pos__ (line 1625) | def __pos__(self): ... method __radd__ (line 1626) | def __radd__(self, other: typing.SupportsInt) -> QCameraExposureCont... method __rand__ (line 1627) | def __rand__(self, other: typing.SupportsInt) -> QCameraExposureCont... method __rmul__ (line 1628) | def __rmul__(self, other: typing.SupportsInt) -> QCameraExposureCont... method __ror__ (line 1629) | def __ror__(self, other: typing.SupportsInt) -> QCameraExposureContr... method __rsub__ (line 1630) | def __rsub__(self, other: typing.SupportsInt) -> QCameraExposureCont... method __rxor__ (line 1631) | def __rxor__(self, other: typing.SupportsInt) -> QCameraExposureCont... method __sub__ (line 1632) | def __sub__(self, other: typing.SupportsInt) -> QCameraExposureContr... method __xor__ (line 1633) | def __xor__(self, other: typing.SupportsInt) -> QCameraExposureContr... method __init__ (line 1649) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method actualValue (line 1650) | def actualValue(self, parameter: QCameraExposureControl.ExposureParame... method isParameterSupported (line 1651) | def isParameterSupported(self, parameter: QCameraExposureControl.Expos... method requestedValue (line 1652) | def requestedValue(self, parameter: QCameraExposureControl.ExposurePar... method setValue (line 1653) | def setValue(self, parameter: QCameraExposureControl.ExposureParameter... class QCameraFeedbackControl (line 1655) | class QCameraFeedbackControl(QMediaControl): class EventType (line 1656) | class EventType: method __init__ (line 1671) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1672) | def __add__(self, other: typing.SupportsInt) -> QCameraFeedbackContr... method __and__ (line 1673) | def __and__(self, other: typing.SupportsInt) -> QCameraFeedbackContr... method __bool__ (line 1674) | def __bool__(self) -> bool: ... method __eq__ (line 1675) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1676) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1677) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1678) | def __hash__(self) -> int: ... method __index__ (line 1679) | def __index__(self) -> int: ... method __int__ (line 1680) | def __int__(self) -> int: ... method __le__ (line 1681) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1682) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1683) | def __mul__(self, other: typing.SupportsInt) -> QCameraFeedbackContr... method __ne__ (line 1684) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1685) | def __or__(self, other: typing.SupportsInt) -> QCameraFeedbackContro... method __pos__ (line 1686) | def __pos__(self): ... method __radd__ (line 1687) | def __radd__(self, other: typing.SupportsInt) -> QCameraFeedbackCont... method __rand__ (line 1688) | def __rand__(self, other: typing.SupportsInt) -> QCameraFeedbackCont... method __rmul__ (line 1689) | def __rmul__(self, other: typing.SupportsInt) -> QCameraFeedbackCont... method __ror__ (line 1690) | def __ror__(self, other: typing.SupportsInt) -> QCameraFeedbackContr... method __rsub__ (line 1691) | def __rsub__(self, other: typing.SupportsInt) -> QCameraFeedbackCont... method __rxor__ (line 1692) | def __rxor__(self, other: typing.SupportsInt) -> QCameraFeedbackCont... method __sub__ (line 1693) | def __sub__(self, other: typing.SupportsInt) -> QCameraFeedbackContr... method __xor__ (line 1694) | def __xor__(self, other: typing.SupportsInt) -> QCameraFeedbackContr... method __init__ (line 1707) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method isEventFeedbackEnabled (line 1708) | def isEventFeedbackEnabled(self, arg__1: QCameraFeedbackControl.EventT... method isEventFeedbackLocked (line 1709) | def isEventFeedbackLocked(self, arg__1: QCameraFeedbackControl.EventTy... method resetEventFeedback (line 1710) | def resetEventFeedback(self, arg__1: QCameraFeedbackControl.EventType)... method setEventFeedbackEnabled (line 1711) | def setEventFeedbackEnabled(self, arg__1: QCameraFeedbackControl.Event... method setEventFeedbackSound (line 1712) | def setEventFeedbackSound(self, arg__1: QCameraFeedbackControl.EventTy... class QCameraFlashControl (line 1714) | class QCameraFlashControl(QMediaControl): method __init__ (line 1717) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method flashMode (line 1718) | def flashMode(self) -> QCameraExposure.FlashModes | QCameraExposure.Fl... method isFlashModeSupported (line 1719) | def isFlashModeSupported(self, mode: QCameraExposure.FlashModes | QCam... method isFlashReady (line 1720) | def isFlashReady(self) -> bool: ... method setFlashMode (line 1721) | def setFlashMode(self, mode: QCameraExposure.FlashModes | QCameraExpos... class QCameraFocus (line 1723) | class QCameraFocus(PySide2.QtCore.QObject): class FocusMode (line 1724) | class FocusMode: method __init__ (line 1734) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1735) | def __and__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMo... method __bool__ (line 1736) | def __bool__(self) -> bool: ... method __eq__ (line 1737) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1738) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1739) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1740) | def __hash__(self) -> int: ... method __index__ (line 1741) | def __index__(self) -> int: ... method __int__ (line 1742) | def __int__(self) -> int: ... method __invert__ (line 1743) | def __invert__(self) -> QCameraFocus.FocusModes: ... method __le__ (line 1744) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1745) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1746) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1747) | def __or__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMod... method __rand__ (line 1748) | def __rand__(self, other: typing.SupportsInt) -> QCameraFocus.FocusM... method __ror__ (line 1749) | def __ror__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMo... method __rxor__ (line 1750) | def __rxor__(self, other: typing.SupportsInt) -> QCameraFocus.FocusM... method __xor__ (line 1751) | def __xor__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMo... class FocusModes (line 1753) | class FocusModes: method __init__ (line 1755) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1756) | def __and__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMo... method __bool__ (line 1757) | def __bool__(self) -> bool: ... method __eq__ (line 1758) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1759) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1760) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1761) | def __index__(self) -> int: ... method __int__ (line 1762) | def __int__(self) -> int: ... method __invert__ (line 1763) | def __invert__(self) -> QCameraFocus.FocusModes: ... method __le__ (line 1764) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1765) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1766) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1767) | def __or__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMod... method __rand__ (line 1768) | def __rand__(self, other: typing.SupportsInt) -> QCameraFocus.FocusM... method __ror__ (line 1769) | def __ror__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMo... method __rxor__ (line 1770) | def __rxor__(self, other: typing.SupportsInt) -> QCameraFocus.FocusM... method __xor__ (line 1771) | def __xor__(self, other: typing.SupportsInt) -> QCameraFocus.FocusMo... class FocusPointMode (line 1773) | class FocusPointMode: method __init__ (line 1781) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1782) | def __add__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPo... method __and__ (line 1783) | def __and__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPo... method __bool__ (line 1784) | def __bool__(self) -> bool: ... method __eq__ (line 1785) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1786) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1787) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1788) | def __hash__(self) -> int: ... method __index__ (line 1789) | def __index__(self) -> int: ... method __int__ (line 1790) | def __int__(self) -> int: ... method __le__ (line 1791) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1792) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1793) | def __mul__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPo... method __ne__ (line 1794) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1795) | def __or__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPoi... method __pos__ (line 1796) | def __pos__(self): ... method __radd__ (line 1797) | def __radd__(self, other: typing.SupportsInt) -> QCameraFocus.FocusP... method __rand__ (line 1798) | def __rand__(self, other: typing.SupportsInt) -> QCameraFocus.FocusP... method __rmul__ (line 1799) | def __rmul__(self, other: typing.SupportsInt) -> QCameraFocus.FocusP... method __ror__ (line 1800) | def __ror__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPo... method __rsub__ (line 1801) | def __rsub__(self, other: typing.SupportsInt) -> QCameraFocus.FocusP... method __rxor__ (line 1802) | def __rxor__(self, other: typing.SupportsInt) -> QCameraFocus.FocusP... method __sub__ (line 1803) | def __sub__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPo... method __xor__ (line 1804) | def __xor__(self, other: typing.SupportsInt) -> QCameraFocus.FocusPo... method __init__ (line 1822) | def __init__(cls, *args, customFocusPoint: PySide2.QtCore.QPointF = ..... method customFocusPoint (line 1823) | def customFocusPoint(self) -> PySide2.QtCore.QPointF: ... method digitalZoom (line 1824) | def digitalZoom(self) -> float: ... method focusMode (line 1825) | def focusMode(self) -> QCameraFocus.FocusModes | QCameraFocus.FocusMod... method focusPointMode (line 1826) | def focusPointMode(self) -> QCameraFocus.FocusPointMode: ... method focusZones (line 1827) | def focusZones(self) -> list[QCameraFocusZone]: ... method isAvailable (line 1828) | def isAvailable(self) -> bool: ... method isFocusModeSupported (line 1829) | def isFocusModeSupported(self, mode: QCameraFocus.FocusModes | QCamera... method isFocusPointModeSupported (line 1830) | def isFocusPointModeSupported(self, arg__1: QCameraFocus.FocusPointMod... method maximumDigitalZoom (line 1831) | def maximumDigitalZoom(self) -> float: ... method maximumOpticalZoom (line 1832) | def maximumOpticalZoom(self) -> float: ... method opticalZoom (line 1833) | def opticalZoom(self) -> float: ... method setCustomFocusPoint (line 1834) | def setCustomFocusPoint(self, point: PySide2.QtCore.QPointF) -> None: ... method setFocusMode (line 1835) | def setFocusMode(self, mode: QCameraFocus.FocusModes | QCameraFocus.Fo... method setFocusPointMode (line 1836) | def setFocusPointMode(self, mode: QCameraFocus.FocusPointMode) -> None... method zoomTo (line 1837) | def zoomTo(self, opticalZoom: float, digitalZoom: float) -> None: ... class QCameraFocusControl (line 1839) | class QCameraFocusControl(QMediaControl): method __init__ (line 1845) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method customFocusPoint (line 1846) | def customFocusPoint(self) -> PySide2.QtCore.QPointF: ... method focusMode (line 1847) | def focusMode(self) -> QCameraFocus.FocusModes | QCameraFocus.FocusMod... method focusPointMode (line 1848) | def focusPointMode(self) -> QCameraFocus.FocusPointMode: ... method focusZones (line 1849) | def focusZones(self) -> list[QCameraFocusZone]: ... method isFocusModeSupported (line 1850) | def isFocusModeSupported(self, mode: QCameraFocus.FocusModes | QCamera... method isFocusPointModeSupported (line 1851) | def isFocusPointModeSupported(self, mode: QCameraFocus.FocusPointMode)... method setCustomFocusPoint (line 1852) | def setCustomFocusPoint(self, point: PySide2.QtCore.QPointF) -> None: ... method setFocusMode (line 1853) | def setFocusMode(self, mode: QCameraFocus.FocusModes | QCameraFocus.Fo... method setFocusPointMode (line 1854) | def setFocusPointMode(self, mode: QCameraFocus.FocusPointMode) -> None... class QCameraFocusZone (line 1856) | class QCameraFocusZone(shiboken2.Object): class FocusZoneStatus (line 1857) | class FocusZoneStatus: method __init__ (line 1865) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1866) | def __add__(self, other: typing.SupportsInt) -> QCameraFocusZone.Foc... method __and__ (line 1867) | def __and__(self, other: typing.SupportsInt) -> QCameraFocusZone.Foc... method __bool__ (line 1868) | def __bool__(self) -> bool: ... method __eq__ (line 1869) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1870) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1871) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1872) | def __hash__(self) -> int: ... method __index__ (line 1873) | def __index__(self) -> int: ... method __int__ (line 1874) | def __int__(self) -> int: ... method __le__ (line 1875) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1876) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1877) | def __mul__(self, other: typing.SupportsInt) -> QCameraFocusZone.Foc... method __ne__ (line 1878) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1879) | def __or__(self, other: typing.SupportsInt) -> QCameraFocusZone.Focu... method __pos__ (line 1880) | def __pos__(self): ... method __radd__ (line 1881) | def __radd__(self, other: typing.SupportsInt) -> QCameraFocusZone.Fo... method __rand__ (line 1882) | def __rand__(self, other: typing.SupportsInt) -> QCameraFocusZone.Fo... method __rmul__ (line 1883) | def __rmul__(self, other: typing.SupportsInt) -> QCameraFocusZone.Fo... method __ror__ (line 1884) | def __ror__(self, other: typing.SupportsInt) -> QCameraFocusZone.Foc... method __rsub__ (line 1885) | def __rsub__(self, other: typing.SupportsInt) -> QCameraFocusZone.Fo... method __rxor__ (line 1886) | def __rxor__(self, other: typing.SupportsInt) -> QCameraFocusZone.Fo... method __sub__ (line 1887) | def __sub__(self, other: typing.SupportsInt) -> QCameraFocusZone.Foc... method __xor__ (line 1888) | def __xor__(self, other: typing.SupportsInt) -> QCameraFocusZone.Foc... method __init__ (line 1894) | def __init__(self, area: PySide2.QtCore.QRectF, status: QCameraFocusZo... method __init__ (line 1896) | def __init__(self, other: QCameraFocusZone) -> None: ... method __init__ (line 1898) | def __init__(self) -> None: ... method area (line 1899) | def area(self) -> PySide2.QtCore.QRectF: ... method isValid (line 1900) | def isValid(self) -> bool: ... method setStatus (line 1901) | def setStatus(self, status: QCameraFocusZone.FocusZoneStatus) -> None:... method status (line 1902) | def status(self) -> QCameraFocusZone.FocusZoneStatus: ... method __copy__ (line 1903) | def __copy__(self) -> None: ... method __eq__ (line 1904) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1905) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1906) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1907) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1908) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1909) | def __ne__(self, other: object) -> bool: ... class QCameraImageCapture (line 1911) | class QCameraImageCapture(PySide2.QtCore.QObject, QMediaBindableInterface): class CaptureDestination (line 1912) | class CaptureDestination: method __init__ (line 1918) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1919) | def __and__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __bool__ (line 1920) | def __bool__(self) -> bool: ... method __eq__ (line 1921) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1922) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1923) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1924) | def __hash__(self) -> int: ... method __index__ (line 1925) | def __index__(self) -> int: ... method __int__ (line 1926) | def __int__(self) -> int: ... method __invert__ (line 1927) | def __invert__(self) -> QCameraImageCapture.CaptureDestinations: ... method __le__ (line 1928) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1929) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1930) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1931) | def __or__(self, other: typing.SupportsInt) -> QCameraImageCapture.C... method __rand__ (line 1932) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __ror__ (line 1933) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __rxor__ (line 1934) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __xor__ (line 1935) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageCapture.... class CaptureDestinations (line 1937) | class CaptureDestinations: method __init__ (line 1939) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1940) | def __and__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __bool__ (line 1941) | def __bool__(self) -> bool: ... method __eq__ (line 1942) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1943) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1944) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1945) | def __index__(self) -> int: ... method __int__ (line 1946) | def __int__(self) -> int: ... method __invert__ (line 1947) | def __invert__(self) -> QCameraImageCapture.CaptureDestinations: ... method __le__ (line 1948) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1949) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1950) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1951) | def __or__(self, other: typing.SupportsInt) -> QCameraImageCapture.C... method __rand__ (line 1952) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __ror__ (line 1953) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __rxor__ (line 1954) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __xor__ (line 1955) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageCapture.... class DriveMode (line 1957) | class DriveMode: method __init__ (line 1962) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1963) | def __add__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __and__ (line 1964) | def __and__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __bool__ (line 1965) | def __bool__(self) -> bool: ... method __eq__ (line 1966) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1967) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1968) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1969) | def __hash__(self) -> int: ... method __index__ (line 1970) | def __index__(self) -> int: ... method __int__ (line 1971) | def __int__(self) -> int: ... method __le__ (line 1972) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1973) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1974) | def __mul__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __ne__ (line 1975) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1976) | def __or__(self, other: typing.SupportsInt) -> QCameraImageCapture.D... method __pos__ (line 1977) | def __pos__(self): ... method __radd__ (line 1978) | def __radd__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __rand__ (line 1979) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __rmul__ (line 1980) | def __rmul__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __ror__ (line 1981) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __rsub__ (line 1982) | def __rsub__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __rxor__ (line 1983) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __sub__ (line 1984) | def __sub__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __xor__ (line 1985) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageCapture.... class Error (line 1987) | class Error: method __init__ (line 1997) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1998) | def __add__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __and__ (line 1999) | def __and__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __bool__ (line 2000) | def __bool__(self) -> bool: ... method __eq__ (line 2001) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2002) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2003) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2004) | def __hash__(self) -> int: ... method __index__ (line 2005) | def __index__(self) -> int: ... method __int__ (line 2006) | def __int__(self) -> int: ... method __le__ (line 2007) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2008) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2009) | def __mul__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __ne__ (line 2010) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2011) | def __or__(self, other: typing.SupportsInt) -> QCameraImageCapture.E... method __pos__ (line 2012) | def __pos__(self): ... method __radd__ (line 2013) | def __radd__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __rand__ (line 2014) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __rmul__ (line 2015) | def __rmul__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __ror__ (line 2016) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __rsub__ (line 2017) | def __rsub__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __rxor__ (line 2018) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageCapture... method __sub__ (line 2019) | def __sub__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __xor__ (line 2020) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageCapture.... method __init__ (line 2040) | def __init__(self, mediaObject: QMediaObject, parent: PySide2.QtCore.Q... method availability (line 2041) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method bufferFormat (line 2042) | def bufferFormat(self) -> QVideoFrame.PixelFormat: ... method cancelCapture (line 2043) | def cancelCapture(self) -> None: ... method capture (line 2044) | def capture(self, location: str = ...) -> int: ... method captureDestination (line 2045) | def captureDestination(self) -> QCameraImageCapture.CaptureDestination... method encodingSettings (line 2046) | def encodingSettings(self) -> QImageEncoderSettings: ... method errorString (line 2047) | def errorString(self) -> str: ... method imageCodecDescription (line 2048) | def imageCodecDescription(self, codecName: str) -> str: ... method isAvailable (line 2049) | def isAvailable(self) -> bool: ... method isCaptureDestinationSupported (line 2050) | def isCaptureDestinationSupported(self, destination: QCameraImageCaptu... method isReadyForCapture (line 2051) | def isReadyForCapture(self) -> bool: ... method mediaObject (line 2052) | def mediaObject(self) -> QMediaObject: ... method setBufferFormat (line 2053) | def setBufferFormat(self, format: QVideoFrame.PixelFormat) -> None: ... method setCaptureDestination (line 2054) | def setCaptureDestination(self, destination: QCameraImageCapture.Captu... method setEncodingSettings (line 2055) | def setEncodingSettings(self, settings: QImageEncoderSettings) -> None... method setMediaObject (line 2056) | def setMediaObject(self, arg__1: QMediaObject) -> bool: ... method supportedBufferFormats (line 2057) | def supportedBufferFormats(self) -> list[QVideoFrame.PixelFormat]: ... method supportedImageCodecs (line 2058) | def supportedImageCodecs(self) -> list[str]: ... class QCameraImageCaptureControl (line 2060) | class QCameraImageCaptureControl(QMediaControl): method __init__ (line 2069) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method cancelCapture (line 2070) | def cancelCapture(self) -> None: ... method capture (line 2071) | def capture(self, fileName: str) -> int: ... method driveMode (line 2072) | def driveMode(self) -> QCameraImageCapture.DriveMode: ... method isReadyForCapture (line 2073) | def isReadyForCapture(self) -> bool: ... method setDriveMode (line 2074) | def setDriveMode(self, mode: QCameraImageCapture.DriveMode) -> None: ... class QCameraImageProcessing (line 2076) | class QCameraImageProcessing(PySide2.QtCore.QObject): class ColorFilter (line 2077) | class ColorFilter: method __init__ (line 2091) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2092) | def __add__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __and__ (line 2093) | def __and__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __bool__ (line 2094) | def __bool__(self) -> bool: ... method __eq__ (line 2095) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2096) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2097) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2098) | def __hash__(self) -> int: ... method __index__ (line 2099) | def __index__(self) -> int: ... method __int__ (line 2100) | def __int__(self) -> int: ... method __le__ (line 2101) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2102) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2103) | def __mul__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __ne__ (line 2104) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2105) | def __or__(self, other: typing.SupportsInt) -> QCameraImageProcessin... method __pos__ (line 2106) | def __pos__(self): ... method __radd__ (line 2107) | def __radd__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rand__ (line 2108) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rmul__ (line 2109) | def __rmul__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __ror__ (line 2110) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __rsub__ (line 2111) | def __rsub__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rxor__ (line 2112) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __sub__ (line 2113) | def __sub__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __xor__ (line 2114) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageProcessi... class WhiteBalanceMode (line 2116) | class WhiteBalanceMode: method __init__ (line 2130) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2131) | def __add__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __and__ (line 2132) | def __and__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __bool__ (line 2133) | def __bool__(self) -> bool: ... method __eq__ (line 2134) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2135) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2136) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2137) | def __hash__(self) -> int: ... method __index__ (line 2138) | def __index__(self) -> int: ... method __int__ (line 2139) | def __int__(self) -> int: ... method __le__ (line 2140) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2141) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2142) | def __mul__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __ne__ (line 2143) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2144) | def __or__(self, other: typing.SupportsInt) -> QCameraImageProcessin... method __pos__ (line 2145) | def __pos__(self): ... method __radd__ (line 2146) | def __radd__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rand__ (line 2147) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rmul__ (line 2148) | def __rmul__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __ror__ (line 2149) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __rsub__ (line 2150) | def __rsub__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rxor__ (line 2151) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __sub__ (line 2152) | def __sub__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __xor__ (line 2153) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __init__ (line 2176) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method brightness (line 2177) | def brightness(self) -> float: ... method colorFilter (line 2178) | def colorFilter(self) -> QCameraImageProcessing.ColorFilter: ... method contrast (line 2179) | def contrast(self) -> float: ... method denoisingLevel (line 2180) | def denoisingLevel(self) -> float: ... method isAvailable (line 2181) | def isAvailable(self) -> bool: ... method isColorFilterSupported (line 2182) | def isColorFilterSupported(self, filter: QCameraImageProcessing.ColorF... method isWhiteBalanceModeSupported (line 2183) | def isWhiteBalanceModeSupported(self, mode: QCameraImageProcessing.Whi... method manualWhiteBalance (line 2184) | def manualWhiteBalance(self) -> float: ... method saturation (line 2185) | def saturation(self) -> float: ... method setBrightness (line 2186) | def setBrightness(self, value: float) -> None: ... method setColorFilter (line 2187) | def setColorFilter(self, filter: QCameraImageProcessing.ColorFilter) -... method setContrast (line 2188) | def setContrast(self, value: float) -> None: ... method setDenoisingLevel (line 2189) | def setDenoisingLevel(self, value: float) -> None: ... method setManualWhiteBalance (line 2190) | def setManualWhiteBalance(self, colorTemperature: float) -> None: ... method setSaturation (line 2191) | def setSaturation(self, value: float) -> None: ... method setSharpeningLevel (line 2192) | def setSharpeningLevel(self, value: float) -> None: ... method setWhiteBalanceMode (line 2193) | def setWhiteBalanceMode(self, mode: QCameraImageProcessing.WhiteBalanc... method sharpeningLevel (line 2194) | def sharpeningLevel(self) -> float: ... method whiteBalanceMode (line 2195) | def whiteBalanceMode(self) -> QCameraImageProcessing.WhiteBalanceMode:... class QCameraImageProcessingControl (line 2197) | class QCameraImageProcessingControl(QMediaControl): class ProcessingParameter (line 2198) | class ProcessingParameter: method __init__ (line 2216) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2217) | def __add__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __and__ (line 2218) | def __and__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __bool__ (line 2219) | def __bool__(self) -> bool: ... method __eq__ (line 2220) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2221) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2222) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2223) | def __hash__(self) -> int: ... method __index__ (line 2224) | def __index__(self) -> int: ... method __int__ (line 2225) | def __int__(self) -> int: ... method __le__ (line 2226) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2227) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2228) | def __mul__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __ne__ (line 2229) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2230) | def __or__(self, other: typing.SupportsInt) -> QCameraImageProcessin... method __pos__ (line 2231) | def __pos__(self): ... method __radd__ (line 2232) | def __radd__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rand__ (line 2233) | def __rand__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rmul__ (line 2234) | def __rmul__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __ror__ (line 2235) | def __ror__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __rsub__ (line 2236) | def __rsub__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __rxor__ (line 2237) | def __rxor__(self, other: typing.SupportsInt) -> QCameraImageProcess... method __sub__ (line 2238) | def __sub__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __xor__ (line 2239) | def __xor__(self, other: typing.SupportsInt) -> QCameraImageProcessi... method __init__ (line 2255) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method isParameterSupported (line 2256) | def isParameterSupported(self, arg__1: QCameraImageProcessingControl.P... method isParameterValueSupported (line 2257) | def isParameterValueSupported(self, parameter: QCameraImageProcessingC... method parameter (line 2258) | def parameter(self, parameter: QCameraImageProcessingControl.Processin... method setParameter (line 2259) | def setParameter(self, parameter: QCameraImageProcessingControl.Proces... class QCameraInfo (line 2261) | class QCameraInfo(shiboken2.Object): method __init__ (line 2263) | def __init__(self, other: QCameraInfo) -> None: ... method __init__ (line 2265) | def __init__(self, name: PySide2.QtCore.QByteArray | bytes = ...) -> N... method __init__ (line 2267) | def __init__(self, camera: QCamera) -> None: ... method availableCameras (line 2269) | def availableCameras(position: QCamera.Position = ...) -> list[QCamera... method defaultCamera (line 2271) | def defaultCamera() -> QCameraInfo: ... method description (line 2272) | def description(self) -> str: ... method deviceName (line 2273) | def deviceName(self) -> str: ... method isNull (line 2274) | def isNull(self) -> bool: ... method orientation (line 2275) | def orientation(self) -> int: ... method position (line 2276) | def position(self) -> QCamera.Position: ... method __bool__ (line 2277) | def __bool__(self) -> bool: ... method __copy__ (line 2278) | def __copy__(self) -> None: ... method __eq__ (line 2279) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2280) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2281) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2282) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2283) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2284) | def __ne__(self, other: object) -> bool: ... class QCameraInfoControl (line 2286) | class QCameraInfoControl(QMediaControl): method __init__ (line 2288) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method cameraOrientation (line 2289) | def cameraOrientation(self, deviceName: str) -> int: ... method cameraPosition (line 2290) | def cameraPosition(self, deviceName: str) -> QCamera.Position: ... class QCameraLocksControl (line 2292) | class QCameraLocksControl(QMediaControl): method __init__ (line 2295) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method lockStatus (line 2296) | def lockStatus(self, lock: QCamera.LockType) -> QCamera.LockStatus: ... method searchAndLock (line 2297) | def searchAndLock(self, locks: QCamera.LockTypes | QCamera.LockType) -... method supportedLocks (line 2298) | def supportedLocks(self) -> QCamera.LockTypes | QCamera.LockType: ... method unlock (line 2299) | def unlock(self, locks: QCamera.LockTypes | QCamera.LockType) -> None:... class QCameraViewfinderSettings (line 2301) | class QCameraViewfinderSettings(shiboken2.Object): method __init__ (line 2303) | def __init__(self, other: QCameraViewfinderSettings) -> None: ... method __init__ (line 2305) | def __init__(self) -> None: ... method isNull (line 2306) | def isNull(self) -> bool: ... method maximumFrameRate (line 2307) | def maximumFrameRate(self) -> float: ... method minimumFrameRate (line 2308) | def minimumFrameRate(self) -> float: ... method pixelAspectRatio (line 2309) | def pixelAspectRatio(self) -> PySide2.QtCore.QSize: ... method pixelFormat (line 2310) | def pixelFormat(self) -> QVideoFrame.PixelFormat: ... method resolution (line 2311) | def resolution(self) -> PySide2.QtCore.QSize: ... method setMaximumFrameRate (line 2312) | def setMaximumFrameRate(self, rate: float) -> None: ... method setMinimumFrameRate (line 2313) | def setMinimumFrameRate(self, rate: float) -> None: ... method setPixelAspectRatio (line 2315) | def setPixelAspectRatio(self, horizontal: int, vertical: int) -> None:... method setPixelAspectRatio (line 2317) | def setPixelAspectRatio(self, ratio: PySide2.QtCore.QSize) -> None: ... method setPixelFormat (line 2318) | def setPixelFormat(self, format: QVideoFrame.PixelFormat) -> None: ... method setResolution (line 2320) | def setResolution(self, width: int, height: int) -> None: ... method setResolution (line 2322) | def setResolution(self, arg__1: PySide2.QtCore.QSize) -> None: ... method swap (line 2323) | def swap(self, other: QCameraViewfinderSettings) -> None: ... method __bool__ (line 2324) | def __bool__(self) -> bool: ... method __copy__ (line 2325) | def __copy__(self) -> None: ... method __eq__ (line 2326) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2327) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2328) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2329) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2330) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2331) | def __ne__(self, other: object) -> bool: ... class QCameraViewfinderSettingsControl (line 2333) | class QCameraViewfinderSettingsControl(QMediaControl): class ViewfinderParameter (line 2334) | class ViewfinderParameter: method __init__ (line 2344) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2345) | def __add__(self, other: typing.SupportsInt) -> QCameraViewfinderSet... method __and__ (line 2346) | def __and__(self, other: typing.SupportsInt) -> QCameraViewfinderSet... method __bool__ (line 2347) | def __bool__(self) -> bool: ... method __eq__ (line 2348) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2349) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2350) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2351) | def __hash__(self) -> int: ... method __index__ (line 2352) | def __index__(self) -> int: ... method __int__ (line 2353) | def __int__(self) -> int: ... method __le__ (line 2354) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2355) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2356) | def __mul__(self, other: typing.SupportsInt) -> QCameraViewfinderSet... method __ne__ (line 2357) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2358) | def __or__(self, other: typing.SupportsInt) -> QCameraViewfinderSett... method __pos__ (line 2359) | def __pos__(self): ... method __radd__ (line 2360) | def __radd__(self, other: typing.SupportsInt) -> QCameraViewfinderSe... method __rand__ (line 2361) | def __rand__(self, other: typing.SupportsInt) -> QCameraViewfinderSe... method __rmul__ (line 2362) | def __rmul__(self, other: typing.SupportsInt) -> QCameraViewfinderSe... method __ror__ (line 2363) | def __ror__(self, other: typing.SupportsInt) -> QCameraViewfinderSet... method __rsub__ (line 2364) | def __rsub__(self, other: typing.SupportsInt) -> QCameraViewfinderSe... method __rxor__ (line 2365) | def __rxor__(self, other: typing.SupportsInt) -> QCameraViewfinderSe... method __sub__ (line 2366) | def __sub__(self, other: typing.SupportsInt) -> QCameraViewfinderSet... method __xor__ (line 2367) | def __xor__(self, other: typing.SupportsInt) -> QCameraViewfinderSet... method __init__ (line 2375) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method isViewfinderParameterSupported (line 2376) | def isViewfinderParameterSupported(self, parameter: QCameraViewfinderS... method setViewfinderParameter (line 2377) | def setViewfinderParameter(self, parameter: QCameraViewfinderSettingsC... method viewfinderParameter (line 2378) | def viewfinderParameter(self, parameter: QCameraViewfinderSettingsCont... class QCameraViewfinderSettingsControl2 (line 2380) | class QCameraViewfinderSettingsControl2(QMediaControl): method __init__ (line 2382) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method setViewfinderSettings (line 2383) | def setViewfinderSettings(self, settings: QCameraViewfinderSettings) -... method supportedViewfinderSettings (line 2384) | def supportedViewfinderSettings(self) -> list[QCameraViewfinderSetting... method viewfinderSettings (line 2385) | def viewfinderSettings(self) -> QCameraViewfinderSettings: ... class QCameraZoomControl (line 2387) | class QCameraZoomControl(QMediaControl): method __init__ (line 2395) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method currentDigitalZoom (line 2396) | def currentDigitalZoom(self) -> float: ... method currentOpticalZoom (line 2397) | def currentOpticalZoom(self) -> float: ... method maximumDigitalZoom (line 2398) | def maximumDigitalZoom(self) -> float: ... method maximumOpticalZoom (line 2399) | def maximumOpticalZoom(self) -> float: ... method requestedDigitalZoom (line 2400) | def requestedDigitalZoom(self) -> float: ... method requestedOpticalZoom (line 2401) | def requestedOpticalZoom(self) -> float: ... method zoomTo (line 2402) | def zoomTo(self, optical: float, digital: float) -> None: ... class QCustomAudioRoleControl (line 2404) | class QCustomAudioRoleControl(QMediaControl): method __init__ (line 2407) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method customAudioRole (line 2408) | def customAudioRole(self) -> str: ... method setCustomAudioRole (line 2409) | def setCustomAudioRole(self, role: str) -> None: ... method supportedCustomAudioRoles (line 2410) | def supportedCustomAudioRoles(self) -> list[str]: ... class QImageEncoderControl (line 2412) | class QImageEncoderControl(QMediaControl): method __init__ (line 2414) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method imageCodecDescription (line 2415) | def imageCodecDescription(self, codec: str) -> str: ... method imageSettings (line 2416) | def imageSettings(self) -> QImageEncoderSettings: ... method setImageSettings (line 2417) | def setImageSettings(self, settings: QImageEncoderSettings) -> None: ... method supportedImageCodecs (line 2418) | def supportedImageCodecs(self) -> list[str]: ... class QImageEncoderSettings (line 2420) | class QImageEncoderSettings(shiboken2.Object): method __init__ (line 2422) | def __init__(self, other: QImageEncoderSettings) -> None: ... method __init__ (line 2424) | def __init__(self) -> None: ... method codec (line 2425) | def codec(self) -> str: ... method encodingOption (line 2426) | def encodingOption(self, option: str) -> typing.Any: ... method encodingOptions (line 2427) | def encodingOptions(self) -> dict[str, typing.Any]: ... method isNull (line 2428) | def isNull(self) -> bool: ... method quality (line 2429) | def quality(self) -> QMultimedia.EncodingQuality: ... method resolution (line 2430) | def resolution(self) -> PySide2.QtCore.QSize: ... method setCodec (line 2431) | def setCodec(self, arg__1: str) -> None: ... method setEncodingOption (line 2432) | def setEncodingOption(self, option: str, value: typing.Any) -> None: ... method setEncodingOptions (line 2433) | def setEncodingOptions(self, options: dict[str, typing.Any]) -> None: ... method setQuality (line 2434) | def setQuality(self, quality: QMultimedia.EncodingQuality) -> None: ... method setResolution (line 2436) | def setResolution(self, width: int, height: int) -> None: ... method setResolution (line 2438) | def setResolution(self, arg__1: PySide2.QtCore.QSize) -> None: ... method __bool__ (line 2439) | def __bool__(self) -> bool: ... method __copy__ (line 2440) | def __copy__(self) -> None: ... method __eq__ (line 2441) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2442) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2443) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2444) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2445) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2446) | def __ne__(self, other: object) -> bool: ... class QMediaAudioProbeControl (line 2448) | class QMediaAudioProbeControl(QMediaControl): method __init__ (line 2452) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., audioB... class QMediaAvailabilityControl (line 2454) | class QMediaAvailabilityControl(QMediaControl): method __init__ (line 2457) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method availability (line 2458) | def availability(self) -> QMultimedia.AvailabilityStatus: ... class QMediaBindableInterface (line 2460) | class QMediaBindableInterface(shiboken2.Object): method __init__ (line 2461) | def __init__(self) -> None: ... method mediaObject (line 2462) | def mediaObject(self) -> QMediaObject: ... method setMediaObject (line 2463) | def setMediaObject(self, object: QMediaObject) -> bool: ... class QMediaContainerControl (line 2465) | class QMediaContainerControl(QMediaControl): method __init__ (line 2467) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method containerDescription (line 2468) | def containerDescription(self, formatMimeType: str) -> str: ... method containerFormat (line 2469) | def containerFormat(self) -> str: ... method setContainerFormat (line 2470) | def setContainerFormat(self, format: str) -> None: ... method supportedContainers (line 2471) | def supportedContainers(self) -> list[str]: ... class QMediaContent (line 2473) | class QMediaContent(shiboken2.Object): method __init__ (line 2475) | def __init__(self, playlist: QMediaPlaylist, contentUrl: PySide2.QtCor... method __init__ (line 2477) | def __init__(self, resources: typing.Iterable[QMediaResource]) -> None... method __init__ (line 2479) | def __init__(self, other: QMediaContent) -> None: ... method __init__ (line 2481) | def __init__(self, contentUrl: PySide2.QtCore.QUrl) -> None: ... method __init__ (line 2483) | def __init__(self, contentResource: QMediaResource) -> None: ... method __init__ (line 2485) | def __init__(self, contentRequest: PySide2.QtNetwork.QNetworkRequest) ... method __init__ (line 2487) | def __init__(self) -> None: ... method canonicalRequest (line 2488) | def canonicalRequest(self) -> PySide2.QtNetwork.QNetworkRequest: ... method canonicalResource (line 2489) | def canonicalResource(self) -> QMediaResource: ... method canonicalUrl (line 2490) | def canonicalUrl(self) -> PySide2.QtCore.QUrl: ... method isNull (line 2491) | def isNull(self) -> bool: ... method playlist (line 2492) | def playlist(self) -> QMediaPlaylist: ... method request (line 2493) | def request(self) -> PySide2.QtNetwork.QNetworkRequest: ... method resources (line 2494) | def resources(self) -> list[QMediaResource]: ... method __bool__ (line 2495) | def __bool__(self) -> bool: ... method __copy__ (line 2496) | def __copy__(self) -> None: ... method __eq__ (line 2497) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2498) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2499) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2500) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2501) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2502) | def __ne__(self, other: object) -> bool: ... class QMediaControl (line 2504) | class QMediaControl(PySide2.QtCore.QObject): method __init__ (line 2506) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... class QMediaGaplessPlaybackControl (line 2508) | class QMediaGaplessPlaybackControl(QMediaControl): method __init__ (line 2513) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method crossfadeTime (line 2514) | def crossfadeTime(self) -> float: ... method isCrossfadeSupported (line 2515) | def isCrossfadeSupported(self) -> bool: ... method nextMedia (line 2516) | def nextMedia(self) -> QMediaContent: ... method setCrossfadeTime (line 2517) | def setCrossfadeTime(self, crossfadeTime: float) -> None: ... method setNextMedia (line 2518) | def setNextMedia(self, media: QMediaContent) -> None: ... class QMediaNetworkAccessControl (line 2520) | class QMediaNetworkAccessControl(QMediaControl): method __init__ (line 2523) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method currentConfiguration (line 2524) | def currentConfiguration(self) -> PySide2.QtNetwork.QNetworkConfigurat... method setConfigurations (line 2525) | def setConfigurations(self, configuration: typing.Iterable[PySide2.QtN... class QMediaObject (line 2527) | class QMediaObject(PySide2.QtCore.QObject): method __init__ (line 2533) | def __init__(self, parent: PySide2.QtCore.QObject | None, service: QMe... method addPropertyWatch (line 2534) | def addPropertyWatch(self, name: PySide2.QtCore.QByteArray | bytes) ->... method availability (line 2535) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method availableMetaData (line 2536) | def availableMetaData(self) -> list[str]: ... method bind (line 2537) | def bind(self, arg__1: PySide2.QtCore.QObject) -> bool: ... method isAvailable (line 2538) | def isAvailable(self) -> bool: ... method isMetaDataAvailable (line 2539) | def isMetaDataAvailable(self) -> bool: ... method metaData (line 2540) | def metaData(self, key: str) -> typing.Any: ... method notifyInterval (line 2541) | def notifyInterval(self) -> int: ... method removePropertyWatch (line 2542) | def removePropertyWatch(self, name: PySide2.QtCore.QByteArray | bytes)... method service (line 2543) | def service(self) -> QMediaService: ... method setNotifyInterval (line 2544) | def setNotifyInterval(self, milliSeconds: int) -> None: ... method unbind (line 2545) | def unbind(self, arg__1: PySide2.QtCore.QObject) -> None: ... class QMediaPlayer (line 2547) | class QMediaPlayer(QMediaObject): class Error (line 2548) | class Error: method __init__ (line 2559) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2560) | def __add__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... method __and__ (line 2561) | def __and__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... method __bool__ (line 2562) | def __bool__(self) -> bool: ... method __eq__ (line 2563) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2564) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2565) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2566) | def __hash__(self) -> int: ... method __index__ (line 2567) | def __index__(self) -> int: ... method __int__ (line 2568) | def __int__(self) -> int: ... method __le__ (line 2569) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2570) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2571) | def __mul__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... method __ne__ (line 2572) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2573) | def __or__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... method __pos__ (line 2574) | def __pos__(self): ... method __radd__ (line 2575) | def __radd__(self, other: typing.SupportsInt) -> QMediaPlayer.Error:... method __rand__ (line 2576) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlayer.Error:... method __rmul__ (line 2577) | def __rmul__(self, other: typing.SupportsInt) -> QMediaPlayer.Error:... method __ror__ (line 2578) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... method __rsub__ (line 2579) | def __rsub__(self, other: typing.SupportsInt) -> QMediaPlayer.Error:... method __rxor__ (line 2580) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlayer.Error:... method __sub__ (line 2581) | def __sub__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... method __xor__ (line 2582) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlayer.Error: ... class Flag (line 2584) | class Flag: method __init__ (line 2591) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2592) | def __and__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... method __bool__ (line 2593) | def __bool__(self) -> bool: ... method __eq__ (line 2594) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2595) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2596) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2597) | def __hash__(self) -> int: ... method __index__ (line 2598) | def __index__(self) -> int: ... method __int__ (line 2599) | def __int__(self) -> int: ... method __invert__ (line 2600) | def __invert__(self) -> QMediaPlayer.Flags: ... method __le__ (line 2601) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2602) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2603) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2604) | def __or__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... method __rand__ (line 2605) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags:... method __ror__ (line 2606) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... method __rxor__ (line 2607) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags:... method __xor__ (line 2608) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... class Flags (line 2610) | class Flags: method __init__ (line 2612) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2613) | def __and__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... method __bool__ (line 2614) | def __bool__(self) -> bool: ... method __eq__ (line 2615) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2616) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2617) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2618) | def __index__(self) -> int: ... method __int__ (line 2619) | def __int__(self) -> int: ... method __invert__ (line 2620) | def __invert__(self) -> QMediaPlayer.Flags: ... method __le__ (line 2621) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2622) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2623) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2624) | def __or__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... method __rand__ (line 2625) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags:... method __ror__ (line 2626) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... method __rxor__ (line 2627) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags:... method __xor__ (line 2628) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlayer.Flags: ... class MediaStatus (line 2630) | class MediaStatus: method __init__ (line 2643) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2644) | def __add__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSt... method __and__ (line 2645) | def __and__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSt... method __bool__ (line 2646) | def __bool__(self) -> bool: ... method __eq__ (line 2647) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2648) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2649) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2650) | def __hash__(self) -> int: ... method __index__ (line 2651) | def __index__(self) -> int: ... method __int__ (line 2652) | def __int__(self) -> int: ... method __le__ (line 2653) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2654) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2655) | def __mul__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSt... method __ne__ (line 2656) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2657) | def __or__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSta... method __pos__ (line 2658) | def __pos__(self): ... method __radd__ (line 2659) | def __radd__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaS... method __rand__ (line 2660) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaS... method __rmul__ (line 2661) | def __rmul__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaS... method __ror__ (line 2662) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSt... method __rsub__ (line 2663) | def __rsub__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaS... method __rxor__ (line 2664) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaS... method __sub__ (line 2665) | def __sub__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSt... method __xor__ (line 2666) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlayer.MediaSt... class State (line 2668) | class State: method __init__ (line 2675) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2676) | def __add__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __and__ (line 2677) | def __and__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __bool__ (line 2678) | def __bool__(self) -> bool: ... method __eq__ (line 2679) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2680) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2681) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2682) | def __hash__(self) -> int: ... method __index__ (line 2683) | def __index__(self) -> int: ... method __int__ (line 2684) | def __int__(self) -> int: ... method __le__ (line 2685) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2686) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2687) | def __mul__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __ne__ (line 2688) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2689) | def __or__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __pos__ (line 2690) | def __pos__(self): ... method __radd__ (line 2691) | def __radd__(self, other: typing.SupportsInt) -> QMediaPlayer.State:... method __rand__ (line 2692) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlayer.State:... method __rmul__ (line 2693) | def __rmul__(self, other: typing.SupportsInt) -> QMediaPlayer.State:... method __ror__ (line 2694) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __rsub__ (line 2695) | def __rsub__(self, other: typing.SupportsInt) -> QMediaPlayer.State:... method __rxor__ (line 2696) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlayer.State:... method __sub__ (line 2697) | def __sub__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __xor__ (line 2698) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlayer.State: ... method __init__ (line 2739) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., flags:... method audioRole (line 2740) | def audioRole(self) -> QAudio.Role: ... method availability (line 2741) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method bind (line 2742) | def bind(self, arg__1: PySide2.QtCore.QObject) -> bool: ... method bufferStatus (line 2743) | def bufferStatus(self) -> int: ... method currentMedia (line 2744) | def currentMedia(self) -> QMediaContent: ... method currentNetworkConfiguration (line 2745) | def currentNetworkConfiguration(self) -> PySide2.QtNetwork.QNetworkCon... method customAudioRole (line 2746) | def customAudioRole(self) -> str: ... method duration (line 2747) | def duration(self) -> int: ... method errorString (line 2748) | def errorString(self) -> str: ... method hasSupport (line 2750) | def hasSupport(mimeType: str, codecs: typing.Iterable[str] = ..., flag... method isAudioAvailable (line 2751) | def isAudioAvailable(self) -> bool: ... method isMuted (line 2752) | def isMuted(self) -> bool: ... method isSeekable (line 2753) | def isSeekable(self) -> bool: ... method isVideoAvailable (line 2754) | def isVideoAvailable(self) -> bool: ... method media (line 2755) | def media(self) -> QMediaContent: ... method mediaStatus (line 2756) | def mediaStatus(self) -> QMediaPlayer.MediaStatus: ... method mediaStream (line 2757) | def mediaStream(self) -> PySide2.QtCore.QIODevice: ... method pause (line 2758) | def pause(self) -> None: ... method play (line 2759) | def play(self) -> None: ... method playbackRate (line 2760) | def playbackRate(self) -> float: ... method playlist (line 2761) | def playlist(self) -> QMediaPlaylist: ... method position (line 2762) | def position(self) -> int: ... method setAudioRole (line 2763) | def setAudioRole(self, audioRole: QAudio.Role) -> None: ... method setCustomAudioRole (line 2764) | def setCustomAudioRole(self, audioRole: str) -> None: ... method setMedia (line 2765) | def setMedia(self, media: QMediaContent, stream: PySide2.QtCore.QIODev... method setMuted (line 2766) | def setMuted(self, muted: bool) -> None: ... method setNetworkConfigurations (line 2767) | def setNetworkConfigurations(self, configurations: typing.Iterable[PyS... method setPlaybackRate (line 2768) | def setPlaybackRate(self, rate: float) -> None: ... method setPlaylist (line 2769) | def setPlaylist(self, playlist: QMediaPlaylist) -> None: ... method setPosition (line 2770) | def setPosition(self, position: int) -> None: ... method setVideoOutput (line 2772) | def setVideoOutput(self, surfaces: list[QAbstractVideoSurface]) -> Non... method setVideoOutput (line 2774) | def setVideoOutput(self, surface: QAbstractVideoSurface) -> None: ... method setVideoOutput (line 2776) | def setVideoOutput(self, arg__1: PySide2.QtMultimediaWidgets.QGraphics... method setVideoOutput (line 2778) | def setVideoOutput(self, arg__1: PySide2.QtMultimediaWidgets.QVideoWid... method setVolume (line 2779) | def setVolume(self, volume: int) -> None: ... method state (line 2780) | def state(self) -> QMediaPlayer.State: ... method stop (line 2781) | def stop(self) -> None: ... method supportedAudioRoles (line 2782) | def supportedAudioRoles(self) -> list[QAudio.Role]: ... method supportedCustomAudioRoles (line 2783) | def supportedCustomAudioRoles(self) -> list[str]: ... method supportedMimeTypes (line 2785) | def supportedMimeTypes(flags: QMediaPlayer.Flags | QMediaPlayer.Flag =... method unbind (line 2786) | def unbind(self, arg__1: PySide2.QtCore.QObject) -> None: ... method volume (line 2787) | def volume(self) -> int: ... class QMediaPlayerControl (line 2789) | class QMediaPlayerControl(QMediaControl): method __init__ (line 2805) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method availablePlaybackRanges (line 2806) | def availablePlaybackRanges(self) -> QMediaTimeRange: ... method bufferStatus (line 2807) | def bufferStatus(self) -> int: ... method duration (line 2808) | def duration(self) -> int: ... method isAudioAvailable (line 2809) | def isAudioAvailable(self) -> bool: ... method isMuted (line 2810) | def isMuted(self) -> bool: ... method isSeekable (line 2811) | def isSeekable(self) -> bool: ... method isVideoAvailable (line 2812) | def isVideoAvailable(self) -> bool: ... method media (line 2813) | def media(self) -> QMediaContent: ... method mediaStatus (line 2814) | def mediaStatus(self) -> QMediaPlayer.MediaStatus: ... method mediaStream (line 2815) | def mediaStream(self) -> PySide2.QtCore.QIODevice: ... method pause (line 2816) | def pause(self) -> None: ... method play (line 2817) | def play(self) -> None: ... method playbackRate (line 2818) | def playbackRate(self) -> float: ... method position (line 2819) | def position(self) -> int: ... method setMedia (line 2820) | def setMedia(self, media: QMediaContent, stream: PySide2.QtCore.QIODev... method setMuted (line 2821) | def setMuted(self, mute: bool) -> None: ... method setPlaybackRate (line 2822) | def setPlaybackRate(self, rate: float) -> None: ... method setPosition (line 2823) | def setPosition(self, position: int) -> None: ... method setVolume (line 2824) | def setVolume(self, volume: int) -> None: ... method state (line 2825) | def state(self) -> QMediaPlayer.State: ... method stop (line 2826) | def stop(self) -> None: ... method volume (line 2827) | def volume(self) -> int: ... class QMediaPlaylist (line 2829) | class QMediaPlaylist(PySide2.QtCore.QObject, QMediaBindableInterface): class Error (line 2830) | class Error: method __init__ (line 2839) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2840) | def __add__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error... method __and__ (line 2841) | def __and__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error... method __bool__ (line 2842) | def __bool__(self) -> bool: ... method __eq__ (line 2843) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2844) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2845) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2846) | def __hash__(self) -> int: ... method __index__ (line 2847) | def __index__(self) -> int: ... method __int__ (line 2848) | def __int__(self) -> int: ... method __le__ (line 2849) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2850) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2851) | def __mul__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error... method __ne__ (line 2852) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2853) | def __or__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error:... method __pos__ (line 2854) | def __pos__(self): ... method __radd__ (line 2855) | def __radd__(self, other: typing.SupportsInt) -> QMediaPlaylist.Erro... method __rand__ (line 2856) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlaylist.Erro... method __rmul__ (line 2857) | def __rmul__(self, other: typing.SupportsInt) -> QMediaPlaylist.Erro... method __ror__ (line 2858) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error... method __rsub__ (line 2859) | def __rsub__(self, other: typing.SupportsInt) -> QMediaPlaylist.Erro... method __rxor__ (line 2860) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlaylist.Erro... method __sub__ (line 2861) | def __sub__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error... method __xor__ (line 2862) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlaylist.Error... class PlaybackMode (line 2864) | class PlaybackMode: method __init__ (line 2873) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2874) | def __add__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playb... method __and__ (line 2875) | def __and__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playb... method __bool__ (line 2876) | def __bool__(self) -> bool: ... method __eq__ (line 2877) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2878) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2879) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2880) | def __hash__(self) -> int: ... method __index__ (line 2881) | def __index__(self) -> int: ... method __int__ (line 2882) | def __int__(self) -> int: ... method __le__ (line 2883) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2884) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2885) | def __mul__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playb... method __ne__ (line 2886) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2887) | def __or__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playba... method __pos__ (line 2888) | def __pos__(self): ... method __radd__ (line 2889) | def __radd__(self, other: typing.SupportsInt) -> QMediaPlaylist.Play... method __rand__ (line 2890) | def __rand__(self, other: typing.SupportsInt) -> QMediaPlaylist.Play... method __rmul__ (line 2891) | def __rmul__(self, other: typing.SupportsInt) -> QMediaPlaylist.Play... method __ror__ (line 2892) | def __ror__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playb... method __rsub__ (line 2893) | def __rsub__(self, other: typing.SupportsInt) -> QMediaPlaylist.Play... method __rxor__ (line 2894) | def __rxor__(self, other: typing.SupportsInt) -> QMediaPlaylist.Play... method __sub__ (line 2895) | def __sub__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playb... method __xor__ (line 2896) | def __xor__(self, other: typing.SupportsInt) -> QMediaPlaylist.Playb... method __init__ (line 2918) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., curren... method addMedia (line 2920) | def addMedia(self, items: typing.Iterable[QMediaContent]) -> bool: ... method addMedia (line 2922) | def addMedia(self, content: QMediaContent) -> bool: ... method clear (line 2923) | def clear(self) -> bool: ... method currentIndex (line 2924) | def currentIndex(self) -> int: ... method currentMedia (line 2925) | def currentMedia(self) -> QMediaContent: ... method error (line 2926) | def error(self) -> QMediaPlaylist.Error: ... method errorString (line 2927) | def errorString(self) -> str: ... method insertMedia (line 2929) | def insertMedia(self, index: int, items: typing.Iterable[QMediaContent... method insertMedia (line 2931) | def insertMedia(self, index: int, content: QMediaContent) -> bool: ... method isEmpty (line 2932) | def isEmpty(self) -> bool: ... method isReadOnly (line 2933) | def isReadOnly(self) -> bool: ... method load (line 2935) | def load(self, request: PySide2.QtNetwork.QNetworkRequest, format: byt... method load (line 2937) | def load(self, location: PySide2.QtCore.QUrl, format: bytes | None = .... method load (line 2939) | def load(self, device: PySide2.QtCore.QIODevice, format: bytes | None ... method media (line 2940) | def media(self, index: int) -> QMediaContent: ... method mediaCount (line 2941) | def mediaCount(self) -> int: ... method mediaObject (line 2942) | def mediaObject(self) -> QMediaObject: ... method moveMedia (line 2943) | def moveMedia(self, from_: int, to: int) -> bool: ... method next (line 2944) | def next(self) -> None: ... method nextIndex (line 2945) | def nextIndex(self, steps: int = ...) -> int: ... method playbackMode (line 2946) | def playbackMode(self) -> QMediaPlaylist.PlaybackMode: ... method previous (line 2947) | def previous(self) -> None: ... method previousIndex (line 2948) | def previousIndex(self, steps: int = ...) -> int: ... method removeMedia (line 2950) | def removeMedia(self, start: int, end: int) -> bool: ... method removeMedia (line 2952) | def removeMedia(self, pos: int) -> bool: ... method save (line 2954) | def save(self, location: PySide2.QtCore.QUrl, format: bytes | None = .... method save (line 2956) | def save(self, device: PySide2.QtCore.QIODevice, format: bytes) -> boo... method setCurrentIndex (line 2957) | def setCurrentIndex(self, index: int) -> None: ... method setMediaObject (line 2958) | def setMediaObject(self, object: QMediaObject) -> bool: ... method setPlaybackMode (line 2959) | def setPlaybackMode(self, mode: QMediaPlaylist.PlaybackMode) -> None: ... method shuffle (line 2960) | def shuffle(self) -> None: ... class QMediaRecorder (line 2962) | class QMediaRecorder(PySide2.QtCore.QObject, QMediaBindableInterface): class Error (line 2963) | class Error: method __init__ (line 2971) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2972) | def __add__(self, other: typing.SupportsInt) -> QMediaRecorder.Error... method __and__ (line 2973) | def __and__(self, other: typing.SupportsInt) -> QMediaRecorder.Error... method __bool__ (line 2974) | def __bool__(self) -> bool: ... method __eq__ (line 2975) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2976) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2977) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2978) | def __hash__(self) -> int: ... method __index__ (line 2979) | def __index__(self) -> int: ... method __int__ (line 2980) | def __int__(self) -> int: ... method __le__ (line 2981) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2982) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2983) | def __mul__(self, other: typing.SupportsInt) -> QMediaRecorder.Error... method __ne__ (line 2984) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2985) | def __or__(self, other: typing.SupportsInt) -> QMediaRecorder.Error:... method __pos__ (line 2986) | def __pos__(self): ... method __radd__ (line 2987) | def __radd__(self, other: typing.SupportsInt) -> QMediaRecorder.Erro... method __rand__ (line 2988) | def __rand__(self, other: typing.SupportsInt) -> QMediaRecorder.Erro... method __rmul__ (line 2989) | def __rmul__(self, other: typing.SupportsInt) -> QMediaRecorder.Erro... method __ror__ (line 2990) | def __ror__(self, other: typing.SupportsInt) -> QMediaRecorder.Error... method __rsub__ (line 2991) | def __rsub__(self, other: typing.SupportsInt) -> QMediaRecorder.Erro... method __rxor__ (line 2992) | def __rxor__(self, other: typing.SupportsInt) -> QMediaRecorder.Erro... method __sub__ (line 2993) | def __sub__(self, other: typing.SupportsInt) -> QMediaRecorder.Error... method __xor__ (line 2994) | def __xor__(self, other: typing.SupportsInt) -> QMediaRecorder.Error... class State (line 2996) | class State: method __init__ (line 3003) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3004) | def __add__(self, other: typing.SupportsInt) -> QMediaRecorder.State... method __and__ (line 3005) | def __and__(self, other: typing.SupportsInt) -> QMediaRecorder.State... method __bool__ (line 3006) | def __bool__(self) -> bool: ... method __eq__ (line 3007) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3008) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3009) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3010) | def __hash__(self) -> int: ... method __index__ (line 3011) | def __index__(self) -> int: ... method __int__ (line 3012) | def __int__(self) -> int: ... method __le__ (line 3013) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3014) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3015) | def __mul__(self, other: typing.SupportsInt) -> QMediaRecorder.State... method __ne__ (line 3016) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3017) | def __or__(self, other: typing.SupportsInt) -> QMediaRecorder.State:... method __pos__ (line 3018) | def __pos__(self): ... method __radd__ (line 3019) | def __radd__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __rand__ (line 3020) | def __rand__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __rmul__ (line 3021) | def __rmul__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __ror__ (line 3022) | def __ror__(self, other: typing.SupportsInt) -> QMediaRecorder.State... method __rsub__ (line 3023) | def __rsub__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __rxor__ (line 3024) | def __rxor__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __sub__ (line 3025) | def __sub__(self, other: typing.SupportsInt) -> QMediaRecorder.State... method __xor__ (line 3026) | def __xor__(self, other: typing.SupportsInt) -> QMediaRecorder.State... class Status (line 3028) | class Status: method __init__ (line 3040) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3041) | def __add__(self, other: typing.SupportsInt) -> QMediaRecorder.Statu... method __and__ (line 3042) | def __and__(self, other: typing.SupportsInt) -> QMediaRecorder.Statu... method __bool__ (line 3043) | def __bool__(self) -> bool: ... method __eq__ (line 3044) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3045) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3046) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3047) | def __hash__(self) -> int: ... method __index__ (line 3048) | def __index__(self) -> int: ... method __int__ (line 3049) | def __int__(self) -> int: ... method __le__ (line 3050) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3051) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3052) | def __mul__(self, other: typing.SupportsInt) -> QMediaRecorder.Statu... method __ne__ (line 3053) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3054) | def __or__(self, other: typing.SupportsInt) -> QMediaRecorder.Status... method __pos__ (line 3055) | def __pos__(self): ... method __radd__ (line 3056) | def __radd__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __rand__ (line 3057) | def __rand__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __rmul__ (line 3058) | def __rmul__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __ror__ (line 3059) | def __ror__(self, other: typing.SupportsInt) -> QMediaRecorder.Statu... method __rsub__ (line 3060) | def __rsub__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __rxor__ (line 3061) | def __rxor__(self, other: typing.SupportsInt) -> QMediaRecorder.Stat... method __sub__ (line 3062) | def __sub__(self, other: typing.SupportsInt) -> QMediaRecorder.Statu... method __xor__ (line 3063) | def __xor__(self, other: typing.SupportsInt) -> QMediaRecorder.Statu... method __init__ (line 3091) | def __init__(self, mediaObject: QMediaObject, parent: PySide2.QtCore.Q... method actualLocation (line 3092) | def actualLocation(self) -> PySide2.QtCore.QUrl: ... method audioCodecDescription (line 3093) | def audioCodecDescription(self, codecName: str) -> str: ... method audioSettings (line 3094) | def audioSettings(self) -> QAudioEncoderSettings: ... method availability (line 3095) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method availableMetaData (line 3096) | def availableMetaData(self) -> list[str]: ... method containerDescription (line 3097) | def containerDescription(self, format: str) -> str: ... method containerFormat (line 3098) | def containerFormat(self) -> str: ... method duration (line 3099) | def duration(self) -> int: ... method errorString (line 3100) | def errorString(self) -> str: ... method isAvailable (line 3101) | def isAvailable(self) -> bool: ... method isMetaDataAvailable (line 3102) | def isMetaDataAvailable(self) -> bool: ... method isMetaDataWritable (line 3103) | def isMetaDataWritable(self) -> bool: ... method isMuted (line 3104) | def isMuted(self) -> bool: ... method mediaObject (line 3105) | def mediaObject(self) -> QMediaObject: ... method metaData (line 3106) | def metaData(self, key: str) -> typing.Any: ... method outputLocation (line 3107) | def outputLocation(self) -> PySide2.QtCore.QUrl: ... method pause (line 3108) | def pause(self) -> None: ... method record (line 3109) | def record(self) -> None: ... method setAudioSettings (line 3110) | def setAudioSettings(self, audioSettings: QAudioEncoderSettings) -> No... method setContainerFormat (line 3111) | def setContainerFormat(self, container: str) -> None: ... method setEncodingSettings (line 3112) | def setEncodingSettings(self, audioSettings: QAudioEncoderSettings, vi... method setMediaObject (line 3113) | def setMediaObject(self, object: QMediaObject) -> bool: ... method setMetaData (line 3114) | def setMetaData(self, key: str, value: typing.Any) -> None: ... method setMuted (line 3115) | def setMuted(self, muted: bool) -> None: ... method setOutputLocation (line 3116) | def setOutputLocation(self, location: PySide2.QtCore.QUrl) -> bool: ... method setVideoSettings (line 3117) | def setVideoSettings(self, videoSettings: QVideoEncoderSettings) -> No... method setVolume (line 3118) | def setVolume(self, volume: float) -> None: ... method state (line 3119) | def state(self) -> QMediaRecorder.State: ... method status (line 3120) | def status(self) -> QMediaRecorder.Status: ... method stop (line 3121) | def stop(self) -> None: ... method supportedAudioCodecs (line 3122) | def supportedAudioCodecs(self) -> list[str]: ... method supportedContainers (line 3123) | def supportedContainers(self) -> list[str]: ... method supportedVideoCodecs (line 3124) | def supportedVideoCodecs(self) -> list[str]: ... method videoCodecDescription (line 3125) | def videoCodecDescription(self, codecName: str) -> str: ... method videoSettings (line 3126) | def videoSettings(self) -> QVideoEncoderSettings: ... method volume (line 3127) | def volume(self) -> float: ... class QMediaRecorderControl (line 3129) | class QMediaRecorderControl(QMediaControl): method __init__ (line 3138) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method applySettings (line 3139) | def applySettings(self) -> None: ... method duration (line 3140) | def duration(self) -> int: ... method isMuted (line 3141) | def isMuted(self) -> bool: ... method outputLocation (line 3142) | def outputLocation(self) -> PySide2.QtCore.QUrl: ... method setMuted (line 3143) | def setMuted(self, muted: bool) -> None: ... method setOutputLocation (line 3144) | def setOutputLocation(self, location: PySide2.QtCore.QUrl) -> bool: ... method setState (line 3145) | def setState(self, state: QMediaRecorder.State) -> None: ... method setVolume (line 3146) | def setVolume(self, volume: float) -> None: ... method state (line 3147) | def state(self) -> QMediaRecorder.State: ... method status (line 3148) | def status(self) -> QMediaRecorder.Status: ... method volume (line 3149) | def volume(self) -> float: ... class QMediaResource (line 3151) | class QMediaResource(shiboken2.Object): method __init__ (line 3153) | def __init__(self, url: PySide2.QtCore.QUrl, mimeType: str = ...) -> N... method __init__ (line 3155) | def __init__(self, request: PySide2.QtNetwork.QNetworkRequest, mimeTyp... method __init__ (line 3157) | def __init__(self, other: QMediaResource) -> None: ... method __init__ (line 3159) | def __init__(self) -> None: ... method audioBitRate (line 3160) | def audioBitRate(self) -> int: ... method audioCodec (line 3161) | def audioCodec(self) -> str: ... method channelCount (line 3162) | def channelCount(self) -> int: ... method dataSize (line 3163) | def dataSize(self) -> int: ... method isNull (line 3164) | def isNull(self) -> bool: ... method language (line 3165) | def language(self) -> str: ... method mimeType (line 3166) | def mimeType(self) -> str: ... method request (line 3167) | def request(self) -> PySide2.QtNetwork.QNetworkRequest: ... method resolution (line 3168) | def resolution(self) -> PySide2.QtCore.QSize: ... method sampleRate (line 3169) | def sampleRate(self) -> int: ... method setAudioBitRate (line 3170) | def setAudioBitRate(self, rate: int) -> None: ... method setAudioCodec (line 3171) | def setAudioCodec(self, codec: str) -> None: ... method setChannelCount (line 3172) | def setChannelCount(self, channels: int) -> None: ... method setDataSize (line 3173) | def setDataSize(self, size: int) -> None: ... method setLanguage (line 3174) | def setLanguage(self, language: str) -> None: ... method setResolution (line 3176) | def setResolution(self, width: int, height: int) -> None: ... method setResolution (line 3178) | def setResolution(self, resolution: PySide2.QtCore.QSize) -> None: ... method setSampleRate (line 3179) | def setSampleRate(self, frequency: int) -> None: ... method setVideoBitRate (line 3180) | def setVideoBitRate(self, rate: int) -> None: ... method setVideoCodec (line 3181) | def setVideoCodec(self, codec: str) -> None: ... method url (line 3182) | def url(self) -> PySide2.QtCore.QUrl: ... method videoBitRate (line 3183) | def videoBitRate(self) -> int: ... method videoCodec (line 3184) | def videoCodec(self) -> str: ... method __bool__ (line 3185) | def __bool__(self) -> bool: ... method __copy__ (line 3186) | def __copy__(self) -> None: ... method __eq__ (line 3187) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3188) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3189) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3190) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3191) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3192) | def __ne__(self, other: object) -> bool: ... class QMediaService (line 3194) | class QMediaService(PySide2.QtCore.QObject): method __init__ (line 3196) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method releaseControl (line 3197) | def releaseControl(self, control: QMediaControl) -> None: ... method requestControl (line 3198) | def requestControl(self, name: bytes) -> QMediaControl: ... class QMediaServiceCameraInfoInterface (line 3200) | class QMediaServiceCameraInfoInterface(shiboken2.Object): method __init__ (line 3201) | def __init__(self) -> None: ... method cameraOrientation (line 3202) | def cameraOrientation(self, device: PySide2.QtCore.QByteArray | bytes)... method cameraPosition (line 3203) | def cameraPosition(self, device: PySide2.QtCore.QByteArray | bytes) ->... class QMediaServiceDefaultDeviceInterface (line 3205) | class QMediaServiceDefaultDeviceInterface(shiboken2.Object): method __init__ (line 3206) | def __init__(self) -> None: ... method defaultDevice (line 3207) | def defaultDevice(self, service: PySide2.QtCore.QByteArray | bytes) ->... class QMediaServiceFeaturesInterface (line 3209) | class QMediaServiceFeaturesInterface(shiboken2.Object): method __init__ (line 3210) | def __init__(self) -> None: ... method supportedFeatures (line 3211) | def supportedFeatures(self, service: PySide2.QtCore.QByteArray | bytes... class QMediaServiceProviderHint (line 3213) | class QMediaServiceProviderHint(shiboken2.Object): class Feature (line 3214) | class Feature: method __init__ (line 3222) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3223) | def __and__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __bool__ (line 3224) | def __bool__(self) -> bool: ... method __eq__ (line 3225) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3226) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3227) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3228) | def __hash__(self) -> int: ... method __index__ (line 3229) | def __index__(self) -> int: ... method __int__ (line 3230) | def __int__(self) -> int: ... method __invert__ (line 3231) | def __invert__(self) -> QMediaServiceProviderHint.Features: ... method __le__ (line 3232) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3233) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3234) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3235) | def __or__(self, other: typing.SupportsInt) -> QMediaServiceProvider... method __rand__ (line 3236) | def __rand__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __ror__ (line 3237) | def __ror__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __rxor__ (line 3238) | def __rxor__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __xor__ (line 3239) | def __xor__(self, other: typing.SupportsInt) -> QMediaServiceProvide... class Features (line 3241) | class Features: method __init__ (line 3243) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3244) | def __and__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __bool__ (line 3245) | def __bool__(self) -> bool: ... method __eq__ (line 3246) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3247) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3248) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3249) | def __index__(self) -> int: ... method __int__ (line 3250) | def __int__(self) -> int: ... method __invert__ (line 3251) | def __invert__(self) -> QMediaServiceProviderHint.Features: ... method __le__ (line 3252) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3253) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3254) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3255) | def __or__(self, other: typing.SupportsInt) -> QMediaServiceProvider... method __rand__ (line 3256) | def __rand__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __ror__ (line 3257) | def __ror__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __rxor__ (line 3258) | def __rxor__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __xor__ (line 3259) | def __xor__(self, other: typing.SupportsInt) -> QMediaServiceProvide... class Type (line 3261) | class Type: method __init__ (line 3270) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3271) | def __add__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __and__ (line 3272) | def __and__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __bool__ (line 3273) | def __bool__(self) -> bool: ... method __eq__ (line 3274) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3275) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3276) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3277) | def __hash__(self) -> int: ... method __index__ (line 3278) | def __index__(self) -> int: ... method __int__ (line 3279) | def __int__(self) -> int: ... method __le__ (line 3280) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3281) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3282) | def __mul__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __ne__ (line 3283) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3284) | def __or__(self, other: typing.SupportsInt) -> QMediaServiceProvider... method __pos__ (line 3285) | def __pos__(self): ... method __radd__ (line 3286) | def __radd__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __rand__ (line 3287) | def __rand__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __rmul__ (line 3288) | def __rmul__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __ror__ (line 3289) | def __ror__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __rsub__ (line 3290) | def __rsub__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __rxor__ (line 3291) | def __rxor__(self, other: typing.SupportsInt) -> QMediaServiceProvid... method __sub__ (line 3292) | def __sub__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __xor__ (line 3293) | def __xor__(self, other: typing.SupportsInt) -> QMediaServiceProvide... method __init__ (line 3304) | def __init__(self, mimeType: str, codecs: typing.Iterable[str]) -> Non... method __init__ (line 3306) | def __init__(self, position: QCamera.Position) -> None: ... method __init__ (line 3308) | def __init__(self, other: QMediaServiceProviderHint) -> None: ... method __init__ (line 3310) | def __init__(self, features: QMediaServiceProviderHint.Features | QMed... method __init__ (line 3312) | def __init__(self, device: PySide2.QtCore.QByteArray | bytes) -> None:... method __init__ (line 3314) | def __init__(self) -> None: ... method cameraPosition (line 3315) | def cameraPosition(self) -> QCamera.Position: ... method codecs (line 3316) | def codecs(self) -> list[str]: ... method device (line 3317) | def device(self) -> PySide2.QtCore.QByteArray: ... method features (line 3318) | def features(self) -> QMediaServiceProviderHint.Features | QMediaServi... method isNull (line 3319) | def isNull(self) -> bool: ... method mimeType (line 3320) | def mimeType(self) -> str: ... method type (line 3321) | def type(self) -> QMediaServiceProviderHint.Type: ... method __bool__ (line 3322) | def __bool__(self) -> bool: ... method __copy__ (line 3323) | def __copy__(self) -> None: ... method __eq__ (line 3324) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3325) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3326) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3327) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3328) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3329) | def __ne__(self, other: object) -> bool: ... class QMediaServiceSupportedDevicesInterface (line 3331) | class QMediaServiceSupportedDevicesInterface(shiboken2.Object): method __init__ (line 3332) | def __init__(self) -> None: ... method deviceDescription (line 3333) | def deviceDescription(self, service: PySide2.QtCore.QByteArray | bytes... method devices (line 3334) | def devices(self, service: PySide2.QtCore.QByteArray | bytes) -> list[... class QMediaServiceSupportedFormatsInterface (line 3336) | class QMediaServiceSupportedFormatsInterface(shiboken2.Object): method __init__ (line 3337) | def __init__(self) -> None: ... method hasSupport (line 3338) | def hasSupport(self, mimeType: str, codecs: typing.Iterable[str]) -> Q... method supportedMimeTypes (line 3339) | def supportedMimeTypes(self) -> list[str]: ... class QMediaStreamsControl (line 3341) | class QMediaStreamsControl(QMediaControl): class StreamType (line 3342) | class StreamType: method __init__ (line 3351) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3352) | def __add__(self, other: typing.SupportsInt) -> QMediaStreamsControl... method __and__ (line 3353) | def __and__(self, other: typing.SupportsInt) -> QMediaStreamsControl... method __bool__ (line 3354) | def __bool__(self) -> bool: ... method __eq__ (line 3355) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3356) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3357) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3358) | def __hash__(self) -> int: ... method __index__ (line 3359) | def __index__(self) -> int: ... method __int__ (line 3360) | def __int__(self) -> int: ... method __le__ (line 3361) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3362) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3363) | def __mul__(self, other: typing.SupportsInt) -> QMediaStreamsControl... method __ne__ (line 3364) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3365) | def __or__(self, other: typing.SupportsInt) -> QMediaStreamsControl.... method __pos__ (line 3366) | def __pos__(self): ... method __radd__ (line 3367) | def __radd__(self, other: typing.SupportsInt) -> QMediaStreamsContro... method __rand__ (line 3368) | def __rand__(self, other: typing.SupportsInt) -> QMediaStreamsContro... method __rmul__ (line 3369) | def __rmul__(self, other: typing.SupportsInt) -> QMediaStreamsContro... method __ror__ (line 3370) | def __ror__(self, other: typing.SupportsInt) -> QMediaStreamsControl... method __rsub__ (line 3371) | def __rsub__(self, other: typing.SupportsInt) -> QMediaStreamsContro... method __rxor__ (line 3372) | def __rxor__(self, other: typing.SupportsInt) -> QMediaStreamsContro... method __sub__ (line 3373) | def __sub__(self, other: typing.SupportsInt) -> QMediaStreamsControl... method __xor__ (line 3374) | def __xor__(self, other: typing.SupportsInt) -> QMediaStreamsControl... method __init__ (line 3383) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method isActive (line 3384) | def isActive(self, streamNumber: int) -> bool: ... method metaData (line 3385) | def metaData(self, streamNumber: int, key: str) -> typing.Any: ... method setActive (line 3386) | def setActive(self, streamNumber: int, state: bool) -> None: ... method streamCount (line 3387) | def streamCount(self) -> int: ... method streamType (line 3388) | def streamType(self, streamNumber: int) -> QMediaStreamsControl.Stream... class QMediaTimeInterval (line 3390) | class QMediaTimeInterval(shiboken2.Object): method __init__ (line 3392) | def __init__(self, start: int, end: int) -> None: ... method __init__ (line 3394) | def __init__(self, arg__1: QMediaTimeInterval) -> None: ... method __init__ (line 3396) | def __init__(self) -> None: ... method contains (line 3397) | def contains(self, time: int) -> bool: ... method end (line 3398) | def end(self) -> int: ... method isNormal (line 3399) | def isNormal(self) -> bool: ... method normalized (line 3400) | def normalized(self) -> QMediaTimeInterval: ... method start (line 3401) | def start(self) -> int: ... method translated (line 3402) | def translated(self, offset: int) -> QMediaTimeInterval: ... method __copy__ (line 3403) | def __copy__(self) -> None: ... method __eq__ (line 3404) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3405) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3406) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3407) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3408) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3409) | def __ne__(self, other: object) -> bool: ... class QMediaTimeRange (line 3411) | class QMediaTimeRange(shiboken2.Object): method __init__ (line 3413) | def __init__(self, start: int, end: int) -> None: ... method __init__ (line 3415) | def __init__(self, range: QMediaTimeRange) -> None: ... method __init__ (line 3417) | def __init__(self, arg__1: QMediaTimeInterval) -> None: ... method __init__ (line 3419) | def __init__(self) -> None: ... method addInterval (line 3421) | def addInterval(self, start: int, end: int) -> None: ... method addInterval (line 3423) | def addInterval(self, interval: QMediaTimeInterval) -> None: ... method addTimeRange (line 3424) | def addTimeRange(self, arg__1: QMediaTimeRange) -> None: ... method clear (line 3425) | def clear(self) -> None: ... method contains (line 3426) | def contains(self, time: int) -> bool: ... method earliestTime (line 3427) | def earliestTime(self) -> int: ... method intervals (line 3428) | def intervals(self) -> list[QMediaTimeInterval]: ... method isContinuous (line 3429) | def isContinuous(self) -> bool: ... method isEmpty (line 3430) | def isEmpty(self) -> bool: ... method latestTime (line 3431) | def latestTime(self) -> int: ... method removeInterval (line 3433) | def removeInterval(self, start: int, end: int) -> None: ... method removeInterval (line 3435) | def removeInterval(self, interval: QMediaTimeInterval) -> None: ... method removeTimeRange (line 3436) | def removeTimeRange(self, arg__1: QMediaTimeRange) -> None: ... method __add__ (line 3437) | def __add__(self, arg__2: QMediaTimeRange) -> QMediaTimeRange: ... method __copy__ (line 3438) | def __copy__(self) -> None: ... method __eq__ (line 3439) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3440) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3441) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 3443) | def __iadd__(self, arg__1: QMediaTimeInterval) -> QMediaTimeRange: ... method __iadd__ (line 3445) | def __iadd__(self, arg__1: QMediaTimeRange) -> QMediaTimeRange: ... method __isub__ (line 3447) | def __isub__(self, arg__1: QMediaTimeInterval) -> QMediaTimeRange: ... method __isub__ (line 3449) | def __isub__(self, arg__1: QMediaTimeRange) -> QMediaTimeRange: ... method __le__ (line 3450) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3451) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3452) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 3453) | def __radd__(self, other): ... method __rsub__ (line 3454) | def __rsub__(self, other): ... method __sub__ (line 3455) | def __sub__(self, arg__2: QMediaTimeRange) -> QMediaTimeRange: ... class QMediaVideoProbeControl (line 3457) | class QMediaVideoProbeControl(QMediaControl): method __init__ (line 3461) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... class QMetaDataReaderControl (line 3463) | class QMetaDataReaderControl(QMediaControl): method __init__ (line 3467) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method availableMetaData (line 3468) | def availableMetaData(self) -> list[str]: ... method isMetaDataAvailable (line 3469) | def isMetaDataAvailable(self) -> bool: ... method metaData (line 3470) | def metaData(self, key: str) -> typing.Any: ... class QMetaDataWriterControl (line 3472) | class QMetaDataWriterControl(QMediaControl): method __init__ (line 3477) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method availableMetaData (line 3478) | def availableMetaData(self) -> list[str]: ... method isMetaDataAvailable (line 3479) | def isMetaDataAvailable(self) -> bool: ... method isWritable (line 3480) | def isWritable(self) -> bool: ... method metaData (line 3481) | def metaData(self, key: str) -> typing.Any: ... method setMetaData (line 3482) | def setMetaData(self, key: str, value: typing.Any) -> None: ... class QMultimedia (line 3484) | class QMultimedia(shiboken2.Object): class AvailabilityStatus (line 3485) | class AvailabilityStatus: method __init__ (line 3493) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3494) | def __add__(self, other: typing.SupportsInt) -> QMultimedia.Availabi... method __and__ (line 3495) | def __and__(self, other: typing.SupportsInt) -> QMultimedia.Availabi... method __bool__ (line 3496) | def __bool__(self) -> bool: ... method __eq__ (line 3497) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3498) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3499) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3500) | def __hash__(self) -> int: ... method __index__ (line 3501) | def __index__(self) -> int: ... method __int__ (line 3502) | def __int__(self) -> int: ... method __le__ (line 3503) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3504) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3505) | def __mul__(self, other: typing.SupportsInt) -> QMultimedia.Availabi... method __ne__ (line 3506) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3507) | def __or__(self, other: typing.SupportsInt) -> QMultimedia.Availabil... method __pos__ (line 3508) | def __pos__(self): ... method __radd__ (line 3509) | def __radd__(self, other: typing.SupportsInt) -> QMultimedia.Availab... method __rand__ (line 3510) | def __rand__(self, other: typing.SupportsInt) -> QMultimedia.Availab... method __rmul__ (line 3511) | def __rmul__(self, other: typing.SupportsInt) -> QMultimedia.Availab... method __ror__ (line 3512) | def __ror__(self, other: typing.SupportsInt) -> QMultimedia.Availabi... method __rsub__ (line 3513) | def __rsub__(self, other: typing.SupportsInt) -> QMultimedia.Availab... method __rxor__ (line 3514) | def __rxor__(self, other: typing.SupportsInt) -> QMultimedia.Availab... method __sub__ (line 3515) | def __sub__(self, other: typing.SupportsInt) -> QMultimedia.Availabi... method __xor__ (line 3516) | def __xor__(self, other: typing.SupportsInt) -> QMultimedia.Availabi... class EncodingMode (line 3518) | class EncodingMode: method __init__ (line 3526) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3527) | def __add__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __and__ (line 3528) | def __and__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __bool__ (line 3529) | def __bool__(self) -> bool: ... method __eq__ (line 3530) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3531) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3532) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3533) | def __hash__(self) -> int: ... method __index__ (line 3534) | def __index__(self) -> int: ... method __int__ (line 3535) | def __int__(self) -> int: ... method __le__ (line 3536) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3537) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3538) | def __mul__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __ne__ (line 3539) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3540) | def __or__(self, other: typing.SupportsInt) -> QMultimedia.EncodingM... method __pos__ (line 3541) | def __pos__(self): ... method __radd__ (line 3542) | def __radd__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __rand__ (line 3543) | def __rand__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __rmul__ (line 3544) | def __rmul__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __ror__ (line 3545) | def __ror__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __rsub__ (line 3546) | def __rsub__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __rxor__ (line 3547) | def __rxor__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __sub__ (line 3548) | def __sub__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __xor__ (line 3549) | def __xor__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... class EncodingQuality (line 3551) | class EncodingQuality: method __init__ (line 3560) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3561) | def __add__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __and__ (line 3562) | def __and__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __bool__ (line 3563) | def __bool__(self) -> bool: ... method __eq__ (line 3564) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3565) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3566) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3567) | def __hash__(self) -> int: ... method __index__ (line 3568) | def __index__(self) -> int: ... method __int__ (line 3569) | def __int__(self) -> int: ... method __le__ (line 3570) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3571) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3572) | def __mul__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __ne__ (line 3573) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3574) | def __or__(self, other: typing.SupportsInt) -> QMultimedia.EncodingQ... method __pos__ (line 3575) | def __pos__(self): ... method __radd__ (line 3576) | def __radd__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __rand__ (line 3577) | def __rand__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __rmul__ (line 3578) | def __rmul__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __ror__ (line 3579) | def __ror__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __rsub__ (line 3580) | def __rsub__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __rxor__ (line 3581) | def __rxor__(self, other: typing.SupportsInt) -> QMultimedia.Encodin... method __sub__ (line 3582) | def __sub__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... method __xor__ (line 3583) | def __xor__(self, other: typing.SupportsInt) -> QMultimedia.Encoding... class SupportEstimate (line 3585) | class SupportEstimate: method __init__ (line 3593) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3594) | def __add__(self, other: typing.SupportsInt) -> QMultimedia.SupportE... method __and__ (line 3595) | def __and__(self, other: typing.SupportsInt) -> QMultimedia.SupportE... method __bool__ (line 3596) | def __bool__(self) -> bool: ... method __eq__ (line 3597) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3598) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3599) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3600) | def __hash__(self) -> int: ... method __index__ (line 3601) | def __index__(self) -> int: ... method __int__ (line 3602) | def __int__(self) -> int: ... method __le__ (line 3603) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3604) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3605) | def __mul__(self, other: typing.SupportsInt) -> QMultimedia.SupportE... method __ne__ (line 3606) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3607) | def __or__(self, other: typing.SupportsInt) -> QMultimedia.SupportEs... method __pos__ (line 3608) | def __pos__(self): ... method __radd__ (line 3609) | def __radd__(self, other: typing.SupportsInt) -> QMultimedia.Support... method __rand__ (line 3610) | def __rand__(self, other: typing.SupportsInt) -> QMultimedia.Support... method __rmul__ (line 3611) | def __rmul__(self, other: typing.SupportsInt) -> QMultimedia.Support... method __ror__ (line 3612) | def __ror__(self, other: typing.SupportsInt) -> QMultimedia.SupportE... method __rsub__ (line 3613) | def __rsub__(self, other: typing.SupportsInt) -> QMultimedia.Support... method __rxor__ (line 3614) | def __rxor__(self, other: typing.SupportsInt) -> QMultimedia.Support... method __sub__ (line 3615) | def __sub__(self, other: typing.SupportsInt) -> QMultimedia.SupportE... method __xor__ (line 3616) | def __xor__(self, other: typing.SupportsInt) -> QMultimedia.SupportE... method __init__ (line 3635) | def __init__(cls, *args, **kwargs) -> None: ... class QRadioData (line 3637) | class QRadioData(PySide2.QtCore.QObject, QMediaBindableInterface): class Error (line 3638) | class Error: method __init__ (line 3646) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3647) | def __add__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __and__ (line 3648) | def __and__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __bool__ (line 3649) | def __bool__(self) -> bool: ... method __eq__ (line 3650) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3651) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3652) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3653) | def __hash__(self) -> int: ... method __index__ (line 3654) | def __index__(self) -> int: ... method __int__ (line 3655) | def __int__(self) -> int: ... method __le__ (line 3656) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3657) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3658) | def __mul__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __ne__ (line 3659) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3660) | def __or__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __pos__ (line 3661) | def __pos__(self): ... method __radd__ (line 3662) | def __radd__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __rand__ (line 3663) | def __rand__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __rmul__ (line 3664) | def __rmul__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __ror__ (line 3665) | def __ror__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __rsub__ (line 3666) | def __rsub__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __rxor__ (line 3667) | def __rxor__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __sub__ (line 3668) | def __sub__(self, other: typing.SupportsInt) -> QRadioData.Error: ... method __xor__ (line 3669) | def __xor__(self, other: typing.SupportsInt) -> QRadioData.Error: ... class ProgramType (line 3671) | class ProgramType: method __init__ (line 3723) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3724) | def __add__(self, other: typing.SupportsInt) -> QRadioData.ProgramTy... method __and__ (line 3725) | def __and__(self, other: typing.SupportsInt) -> QRadioData.ProgramTy... method __bool__ (line 3726) | def __bool__(self) -> bool: ... method __eq__ (line 3727) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3728) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3729) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3730) | def __hash__(self) -> int: ... method __index__ (line 3731) | def __index__(self) -> int: ... method __int__ (line 3732) | def __int__(self) -> int: ... method __le__ (line 3733) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3734) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3735) | def __mul__(self, other: typing.SupportsInt) -> QRadioData.ProgramTy... method __ne__ (line 3736) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3737) | def __or__(self, other: typing.SupportsInt) -> QRadioData.ProgramTyp... method __pos__ (line 3738) | def __pos__(self): ... method __radd__ (line 3739) | def __radd__(self, other: typing.SupportsInt) -> QRadioData.ProgramT... method __rand__ (line 3740) | def __rand__(self, other: typing.SupportsInt) -> QRadioData.ProgramT... method __rmul__ (line 3741) | def __rmul__(self, other: typing.SupportsInt) -> QRadioData.ProgramT... method __ror__ (line 3742) | def __ror__(self, other: typing.SupportsInt) -> QRadioData.ProgramTy... method __rsub__ (line 3743) | def __rsub__(self, other: typing.SupportsInt) -> QRadioData.ProgramT... method __rxor__ (line 3744) | def __rxor__(self, other: typing.SupportsInt) -> QRadioData.ProgramT... method __sub__ (line 3745) | def __sub__(self, other: typing.SupportsInt) -> QRadioData.ProgramTy... method __xor__ (line 3746) | def __xor__(self, other: typing.SupportsInt) -> QRadioData.ProgramTy... method __init__ (line 3807) | def __init__(self, mediaObject: QMediaObject, parent: PySide2.QtCore.Q... method availability (line 3808) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method errorString (line 3809) | def errorString(self) -> str: ... method isAlternativeFrequenciesEnabled (line 3810) | def isAlternativeFrequenciesEnabled(self) -> bool: ... method mediaObject (line 3811) | def mediaObject(self) -> QMediaObject: ... method programType (line 3812) | def programType(self) -> QRadioData.ProgramType: ... method programTypeName (line 3813) | def programTypeName(self) -> str: ... method radioText (line 3814) | def radioText(self) -> str: ... method setAlternativeFrequenciesEnabled (line 3815) | def setAlternativeFrequenciesEnabled(self, enabled: bool) -> None: ... method setMediaObject (line 3816) | def setMediaObject(self, arg__1: QMediaObject) -> bool: ... method stationId (line 3817) | def stationId(self) -> str: ... method stationName (line 3818) | def stationName(self) -> str: ... class QRadioDataControl (line 3820) | class QRadioDataControl(QMediaControl): method __init__ (line 3829) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method errorString (line 3830) | def errorString(self) -> str: ... method isAlternativeFrequenciesEnabled (line 3831) | def isAlternativeFrequenciesEnabled(self) -> bool: ... method programType (line 3832) | def programType(self) -> QRadioData.ProgramType: ... method programTypeName (line 3833) | def programTypeName(self) -> str: ... method radioText (line 3834) | def radioText(self) -> str: ... method setAlternativeFrequenciesEnabled (line 3835) | def setAlternativeFrequenciesEnabled(self, enabled: bool) -> None: ... method stationId (line 3836) | def stationId(self) -> str: ... method stationName (line 3837) | def stationName(self) -> str: ... class QRadioTuner (line 3839) | class QRadioTuner(QMediaObject): class Band (line 3840) | class Band: method __init__ (line 3849) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3850) | def __add__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __and__ (line 3851) | def __and__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __bool__ (line 3852) | def __bool__(self) -> bool: ... method __eq__ (line 3853) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3854) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3855) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3856) | def __hash__(self) -> int: ... method __index__ (line 3857) | def __index__(self) -> int: ... method __int__ (line 3858) | def __int__(self) -> int: ... method __le__ (line 3859) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3860) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3861) | def __mul__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __ne__ (line 3862) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3863) | def __or__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __pos__ (line 3864) | def __pos__(self): ... method __radd__ (line 3865) | def __radd__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __rand__ (line 3866) | def __rand__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __rmul__ (line 3867) | def __rmul__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __ror__ (line 3868) | def __ror__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __rsub__ (line 3869) | def __rsub__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __rxor__ (line 3870) | def __rxor__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __sub__ (line 3871) | def __sub__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... method __xor__ (line 3872) | def __xor__(self, other: typing.SupportsInt) -> QRadioTuner.Band: ... class Error (line 3874) | class Error: method __init__ (line 3882) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3883) | def __add__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __and__ (line 3884) | def __and__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __bool__ (line 3885) | def __bool__(self) -> bool: ... method __eq__ (line 3886) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3887) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3888) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3889) | def __hash__(self) -> int: ... method __index__ (line 3890) | def __index__(self) -> int: ... method __int__ (line 3891) | def __int__(self) -> int: ... method __le__ (line 3892) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3893) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3894) | def __mul__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __ne__ (line 3895) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3896) | def __or__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __pos__ (line 3897) | def __pos__(self): ... method __radd__ (line 3898) | def __radd__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __rand__ (line 3899) | def __rand__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __rmul__ (line 3900) | def __rmul__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __ror__ (line 3901) | def __ror__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __rsub__ (line 3902) | def __rsub__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __rxor__ (line 3903) | def __rxor__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __sub__ (line 3904) | def __sub__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... method __xor__ (line 3905) | def __xor__(self, other: typing.SupportsInt) -> QRadioTuner.Error: ... class SearchMode (line 3907) | class SearchMode: method __init__ (line 3913) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3914) | def __add__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMo... method __and__ (line 3915) | def __and__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMo... method __bool__ (line 3916) | def __bool__(self) -> bool: ... method __eq__ (line 3917) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3918) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3919) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3920) | def __hash__(self) -> int: ... method __index__ (line 3921) | def __index__(self) -> int: ... method __int__ (line 3922) | def __int__(self) -> int: ... method __le__ (line 3923) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3924) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3925) | def __mul__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMo... method __ne__ (line 3926) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3927) | def __or__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMod... method __pos__ (line 3928) | def __pos__(self): ... method __radd__ (line 3929) | def __radd__(self, other: typing.SupportsInt) -> QRadioTuner.SearchM... method __rand__ (line 3930) | def __rand__(self, other: typing.SupportsInt) -> QRadioTuner.SearchM... method __rmul__ (line 3931) | def __rmul__(self, other: typing.SupportsInt) -> QRadioTuner.SearchM... method __ror__ (line 3932) | def __ror__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMo... method __rsub__ (line 3933) | def __rsub__(self, other: typing.SupportsInt) -> QRadioTuner.SearchM... method __rxor__ (line 3934) | def __rxor__(self, other: typing.SupportsInt) -> QRadioTuner.SearchM... method __sub__ (line 3935) | def __sub__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMo... method __xor__ (line 3936) | def __xor__(self, other: typing.SupportsInt) -> QRadioTuner.SearchMo... class State (line 3938) | class State: method __init__ (line 3944) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3945) | def __add__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __and__ (line 3946) | def __and__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __bool__ (line 3947) | def __bool__(self) -> bool: ... method __eq__ (line 3948) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3949) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3950) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3951) | def __hash__(self) -> int: ... method __index__ (line 3952) | def __index__(self) -> int: ... method __int__ (line 3953) | def __int__(self) -> int: ... method __le__ (line 3954) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3955) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3956) | def __mul__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __ne__ (line 3957) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3958) | def __or__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __pos__ (line 3959) | def __pos__(self): ... method __radd__ (line 3960) | def __radd__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __rand__ (line 3961) | def __rand__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __rmul__ (line 3962) | def __rmul__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __ror__ (line 3963) | def __ror__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __rsub__ (line 3964) | def __rsub__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __rxor__ (line 3965) | def __rxor__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __sub__ (line 3966) | def __sub__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... method __xor__ (line 3967) | def __xor__(self, other: typing.SupportsInt) -> QRadioTuner.State: ... class StereoMode (line 3969) | class StereoMode: method __init__ (line 3976) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3977) | def __add__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMo... method __and__ (line 3978) | def __and__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMo... method __bool__ (line 3979) | def __bool__(self) -> bool: ... method __eq__ (line 3980) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3981) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3982) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3983) | def __hash__(self) -> int: ... method __index__ (line 3984) | def __index__(self) -> int: ... method __int__ (line 3985) | def __int__(self) -> int: ... method __le__ (line 3986) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3987) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3988) | def __mul__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMo... method __ne__ (line 3989) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3990) | def __or__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMod... method __pos__ (line 3991) | def __pos__(self): ... method __radd__ (line 3992) | def __radd__(self, other: typing.SupportsInt) -> QRadioTuner.StereoM... method __rand__ (line 3993) | def __rand__(self, other: typing.SupportsInt) -> QRadioTuner.StereoM... method __rmul__ (line 3994) | def __rmul__(self, other: typing.SupportsInt) -> QRadioTuner.StereoM... method __ror__ (line 3995) | def __ror__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMo... method __rsub__ (line 3996) | def __rsub__(self, other: typing.SupportsInt) -> QRadioTuner.StereoM... method __rxor__ (line 3997) | def __rxor__(self, other: typing.SupportsInt) -> QRadioTuner.StereoM... method __sub__ (line 3998) | def __sub__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMo... method __xor__ (line 3999) | def __xor__(self, other: typing.SupportsInt) -> QRadioTuner.StereoMo... method __init__ (line 4028) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., antenn... method availability (line 4029) | def availability(self) -> QMultimedia.AvailabilityStatus: ... method band (line 4030) | def band(self) -> QRadioTuner.Band: ... method cancelSearch (line 4031) | def cancelSearch(self) -> None: ... method errorString (line 4032) | def errorString(self) -> str: ... method frequency (line 4033) | def frequency(self) -> int: ... method frequencyRange (line 4034) | def frequencyRange(self, band: QRadioTuner.Band) -> tuple[int, int]: ... method frequencyStep (line 4035) | def frequencyStep(self, band: QRadioTuner.Band) -> int: ... method isAntennaConnected (line 4036) | def isAntennaConnected(self) -> bool: ... method isBandSupported (line 4037) | def isBandSupported(self, b: QRadioTuner.Band) -> bool: ... method isMuted (line 4038) | def isMuted(self) -> bool: ... method isSearching (line 4039) | def isSearching(self) -> bool: ... method isStereo (line 4040) | def isStereo(self) -> bool: ... method radioData (line 4041) | def radioData(self) -> QRadioData: ... method searchAllStations (line 4042) | def searchAllStations(self, searchMode: QRadioTuner.SearchMode = ...) ... method searchBackward (line 4043) | def searchBackward(self) -> None: ... method searchForward (line 4044) | def searchForward(self) -> None: ... method setBand (line 4045) | def setBand(self, band: QRadioTuner.Band) -> None: ... method setFrequency (line 4046) | def setFrequency(self, frequency: int) -> None: ... method setMuted (line 4047) | def setMuted(self, muted: bool) -> None: ... method setStereoMode (line 4048) | def setStereoMode(self, mode: QRadioTuner.StereoMode) -> None: ... method setVolume (line 4049) | def setVolume(self, volume: int) -> None: ... method signalStrength (line 4050) | def signalStrength(self) -> int: ... method start (line 4051) | def start(self) -> None: ... method state (line 4052) | def state(self) -> QRadioTuner.State: ... method stereoMode (line 4053) | def stereoMode(self) -> QRadioTuner.StereoMode: ... method stop (line 4054) | def stop(self) -> None: ... method volume (line 4055) | def volume(self) -> int: ... class QRadioTunerControl (line 4057) | class QRadioTunerControl(QMediaControl): method __init__ (line 4070) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method band (line 4071) | def band(self) -> QRadioTuner.Band: ... method cancelSearch (line 4072) | def cancelSearch(self) -> None: ... method errorString (line 4073) | def errorString(self) -> str: ... method frequency (line 4074) | def frequency(self) -> int: ... method frequencyRange (line 4075) | def frequencyRange(self, b: QRadioTuner.Band) -> tuple[int, int]: ... method frequencyStep (line 4076) | def frequencyStep(self, b: QRadioTuner.Band) -> int: ... method isAntennaConnected (line 4077) | def isAntennaConnected(self) -> bool: ... method isBandSupported (line 4078) | def isBandSupported(self, b: QRadioTuner.Band) -> bool: ... method isMuted (line 4079) | def isMuted(self) -> bool: ... method isSearching (line 4080) | def isSearching(self) -> bool: ... method isStereo (line 4081) | def isStereo(self) -> bool: ... method searchAllStations (line 4082) | def searchAllStations(self, searchMode: QRadioTuner.SearchMode = ...) ... method searchBackward (line 4083) | def searchBackward(self) -> None: ... method searchForward (line 4084) | def searchForward(self) -> None: ... method setBand (line 4085) | def setBand(self, b: QRadioTuner.Band) -> None: ... method setFrequency (line 4086) | def setFrequency(self, frequency: int) -> None: ... method setMuted (line 4087) | def setMuted(self, muted: bool) -> None: ... method setStereoMode (line 4088) | def setStereoMode(self, mode: QRadioTuner.StereoMode) -> None: ... method setVolume (line 4089) | def setVolume(self, volume: int) -> None: ... method signalStrength (line 4090) | def signalStrength(self) -> int: ... method start (line 4091) | def start(self) -> None: ... method state (line 4092) | def state(self) -> QRadioTuner.State: ... method stereoMode (line 4093) | def stereoMode(self) -> QRadioTuner.StereoMode: ... method stop (line 4094) | def stop(self) -> None: ... method volume (line 4095) | def volume(self) -> int: ... class QSound (line 4097) | class QSound(PySide2.QtCore.QObject): class Loop (line 4098) | class Loop: method __init__ (line 4103) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4104) | def __add__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __and__ (line 4105) | def __and__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __bool__ (line 4106) | def __bool__(self) -> bool: ... method __eq__ (line 4107) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4108) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4109) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4110) | def __hash__(self) -> int: ... method __index__ (line 4111) | def __index__(self) -> int: ... method __int__ (line 4112) | def __int__(self) -> int: ... method __le__ (line 4113) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4114) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4115) | def __mul__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __ne__ (line 4116) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4117) | def __or__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __pos__ (line 4118) | def __pos__(self): ... method __radd__ (line 4119) | def __radd__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __rand__ (line 4120) | def __rand__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __rmul__ (line 4121) | def __rmul__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __ror__ (line 4122) | def __ror__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __rsub__ (line 4123) | def __rsub__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __rxor__ (line 4124) | def __rxor__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __sub__ (line 4125) | def __sub__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __xor__ (line 4126) | def __xor__(self, other: typing.SupportsInt) -> QSound.Loop: ... method __init__ (line 4129) | def __init__(self, filename: str, parent: PySide2.QtCore.QObject | Non... method fileName (line 4130) | def fileName(self) -> str: ... method isFinished (line 4131) | def isFinished(self) -> bool: ... method loops (line 4132) | def loops(self) -> int: ... method loopsRemaining (line 4133) | def loopsRemaining(self) -> int: ... method play (line 4135) | def play(self) -> typing.Any: ... method setLoops (line 4136) | def setLoops(self, arg__1: int) -> None: ... method stop (line 4137) | def stop(self) -> None: ... class QSoundEffect (line 4139) | class QSoundEffect(PySide2.QtCore.QObject): class Loop (line 4140) | class Loop: method __init__ (line 4145) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4146) | def __add__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __and__ (line 4147) | def __and__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __bool__ (line 4148) | def __bool__(self) -> bool: ... method __eq__ (line 4149) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4150) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4151) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4152) | def __hash__(self) -> int: ... method __index__ (line 4153) | def __index__(self) -> int: ... method __int__ (line 4154) | def __int__(self) -> int: ... method __le__ (line 4155) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4156) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4157) | def __mul__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __ne__ (line 4158) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4159) | def __or__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __pos__ (line 4160) | def __pos__(self): ... method __radd__ (line 4161) | def __radd__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __rand__ (line 4162) | def __rand__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __rmul__ (line 4163) | def __rmul__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __ror__ (line 4164) | def __ror__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __rsub__ (line 4165) | def __rsub__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __rxor__ (line 4166) | def __rxor__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __sub__ (line 4167) | def __sub__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... method __xor__ (line 4168) | def __xor__(self, other: typing.SupportsInt) -> QSoundEffect.Loop: ... class Status (line 4170) | class Status: method __init__ (line 4178) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4179) | def __add__(self, other: typing.SupportsInt) -> QSoundEffect.Status:... method __and__ (line 4180) | def __and__(self, other: typing.SupportsInt) -> QSoundEffect.Status:... method __bool__ (line 4181) | def __bool__(self) -> bool: ... method __eq__ (line 4182) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4183) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4184) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4185) | def __hash__(self) -> int: ... method __index__ (line 4186) | def __index__(self) -> int: ... method __int__ (line 4187) | def __int__(self) -> int: ... method __le__ (line 4188) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4189) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4190) | def __mul__(self, other: typing.SupportsInt) -> QSoundEffect.Status:... method __ne__ (line 4191) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4192) | def __or__(self, other: typing.SupportsInt) -> QSoundEffect.Status: ... method __pos__ (line 4193) | def __pos__(self): ... method __radd__ (line 4194) | def __radd__(self, other: typing.SupportsInt) -> QSoundEffect.Status... method __rand__ (line 4195) | def __rand__(self, other: typing.SupportsInt) -> QSoundEffect.Status... method __rmul__ (line 4196) | def __rmul__(self, other: typing.SupportsInt) -> QSoundEffect.Status... method __ror__ (line 4197) | def __ror__(self, other: typing.SupportsInt) -> QSoundEffect.Status:... method __rsub__ (line 4198) | def __rsub__(self, other: typing.SupportsInt) -> QSoundEffect.Status... method __rxor__ (line 4199) | def __rxor__(self, other: typing.SupportsInt) -> QSoundEffect.Status... method __sub__ (line 4200) | def __sub__(self, other: typing.SupportsInt) -> QSoundEffect.Status:... method __xor__ (line 4201) | def __xor__(self, other: typing.SupportsInt) -> QSoundEffect.Status:... method __init__ (line 4218) | def __init__(self, audioDevice: QAudioDeviceInfo, parent: PySide2.QtCo... method __init__ (line 4220) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., catego... method category (line 4221) | def category(self) -> str: ... method isLoaded (line 4222) | def isLoaded(self) -> bool: ... method isMuted (line 4223) | def isMuted(self) -> bool: ... method isPlaying (line 4224) | def isPlaying(self) -> bool: ... method loopCount (line 4225) | def loopCount(self) -> int: ... method loopsRemaining (line 4226) | def loopsRemaining(self) -> int: ... method play (line 4227) | def play(self) -> None: ... method setCategory (line 4228) | def setCategory(self, category: str) -> None: ... method setLoopCount (line 4229) | def setLoopCount(self, loopCount: int) -> None: ... method setMuted (line 4230) | def setMuted(self, muted: bool) -> None: ... method setSource (line 4231) | def setSource(self, url: PySide2.QtCore.QUrl) -> None: ... method setVolume (line 4232) | def setVolume(self, volume: float) -> None: ... method source (line 4233) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 4234) | def status(self) -> QSoundEffect.Status: ... method stop (line 4235) | def stop(self) -> None: ... method supportedMimeTypes (line 4237) | def supportedMimeTypes() -> list[str]: ... method volume (line 4238) | def volume(self) -> float: ... class QVideoDeviceSelectorControl (line 4240) | class QVideoDeviceSelectorControl(QMediaControl): method __init__ (line 4244) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method defaultDevice (line 4245) | def defaultDevice(self) -> int: ... method deviceCount (line 4246) | def deviceCount(self) -> int: ... method deviceDescription (line 4247) | def deviceDescription(self, index: int) -> str: ... method deviceName (line 4248) | def deviceName(self, index: int) -> str: ... method selectedDevice (line 4249) | def selectedDevice(self) -> int: ... method setSelectedDevice (line 4250) | def setSelectedDevice(self, index: int) -> None: ... class QVideoEncoderSettings (line 4252) | class QVideoEncoderSettings(shiboken2.Object): method __init__ (line 4254) | def __init__(self, other: QVideoEncoderSettings) -> None: ... method __init__ (line 4256) | def __init__(self) -> None: ... method bitRate (line 4257) | def bitRate(self) -> int: ... method codec (line 4258) | def codec(self) -> str: ... method encodingMode (line 4259) | def encodingMode(self) -> QMultimedia.EncodingMode: ... method encodingOption (line 4260) | def encodingOption(self, option: str) -> typing.Any: ... method encodingOptions (line 4261) | def encodingOptions(self) -> dict[str, typing.Any]: ... method frameRate (line 4262) | def frameRate(self) -> float: ... method isNull (line 4263) | def isNull(self) -> bool: ... method quality (line 4264) | def quality(self) -> QMultimedia.EncodingQuality: ... method resolution (line 4265) | def resolution(self) -> PySide2.QtCore.QSize: ... method setBitRate (line 4266) | def setBitRate(self, bitrate: int) -> None: ... method setCodec (line 4267) | def setCodec(self, arg__1: str) -> None: ... method setEncodingMode (line 4268) | def setEncodingMode(self, arg__1: QMultimedia.EncodingMode) -> None: ... method setEncodingOption (line 4269) | def setEncodingOption(self, option: str, value: typing.Any) -> None: ... method setEncodingOptions (line 4270) | def setEncodingOptions(self, options: dict[str, typing.Any]) -> None: ... method setFrameRate (line 4271) | def setFrameRate(self, rate: float) -> None: ... method setQuality (line 4272) | def setQuality(self, quality: QMultimedia.EncodingQuality) -> None: ... method setResolution (line 4274) | def setResolution(self, width: int, height: int) -> None: ... method setResolution (line 4276) | def setResolution(self, arg__1: PySide2.QtCore.QSize) -> None: ... method __bool__ (line 4277) | def __bool__(self) -> bool: ... method __copy__ (line 4278) | def __copy__(self) -> None: ... method __eq__ (line 4279) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4280) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4281) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4282) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4283) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4284) | def __ne__(self, other: object) -> bool: ... class QVideoEncoderSettingsControl (line 4286) | class QVideoEncoderSettingsControl(QMediaControl): method __init__ (line 4288) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method setVideoSettings (line 4289) | def setVideoSettings(self, settings: QVideoEncoderSettings) -> None: ... method supportedVideoCodecs (line 4290) | def supportedVideoCodecs(self) -> list[str]: ... method videoCodecDescription (line 4291) | def videoCodecDescription(self, codec: str) -> str: ... method videoSettings (line 4292) | def videoSettings(self) -> QVideoEncoderSettings: ... class QVideoFilterRunnable (line 4294) | class QVideoFilterRunnable(shiboken2.Object): class RunFlag (line 4295) | class RunFlag: method __init__ (line 4300) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4301) | def __and__(self, other: typing.SupportsInt) -> QVideoFilterRunnable... method __bool__ (line 4302) | def __bool__(self) -> bool: ... method __eq__ (line 4303) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4304) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4305) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4306) | def __hash__(self) -> int: ... method __index__ (line 4307) | def __index__(self) -> int: ... method __int__ (line 4308) | def __int__(self) -> int: ... method __invert__ (line 4309) | def __invert__(self) -> QVideoFilterRunnable.RunFlags: ... method __le__ (line 4310) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4311) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4312) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4313) | def __or__(self, other: typing.SupportsInt) -> QVideoFilterRunnable.... method __rand__ (line 4314) | def __rand__(self, other: typing.SupportsInt) -> QVideoFilterRunnabl... method __ror__ (line 4315) | def __ror__(self, other: typing.SupportsInt) -> QVideoFilterRunnable... method __rxor__ (line 4316) | def __rxor__(self, other: typing.SupportsInt) -> QVideoFilterRunnabl... method __xor__ (line 4317) | def __xor__(self, other: typing.SupportsInt) -> QVideoFilterRunnable... class RunFlags (line 4319) | class RunFlags: method __init__ (line 4321) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4322) | def __and__(self, other: typing.SupportsInt) -> QVideoFilterRunnable... method __bool__ (line 4323) | def __bool__(self) -> bool: ... method __eq__ (line 4324) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4325) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4326) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4327) | def __index__(self) -> int: ... method __int__ (line 4328) | def __int__(self) -> int: ... method __invert__ (line 4329) | def __invert__(self) -> QVideoFilterRunnable.RunFlags: ... method __le__ (line 4330) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4331) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4332) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4333) | def __or__(self, other: typing.SupportsInt) -> QVideoFilterRunnable.... method __rand__ (line 4334) | def __rand__(self, other: typing.SupportsInt) -> QVideoFilterRunnabl... method __ror__ (line 4335) | def __ror__(self, other: typing.SupportsInt) -> QVideoFilterRunnable... method __rxor__ (line 4336) | def __rxor__(self, other: typing.SupportsInt) -> QVideoFilterRunnabl... method __xor__ (line 4337) | def __xor__(self, other: typing.SupportsInt) -> QVideoFilterRunnable... method __init__ (line 4339) | def __init__(self) -> None: ... method run (line 4340) | def run(self, input: QVideoFrame, surfaceFormat: QVideoSurfaceFormat, ... class QVideoFrame (line 4342) | class QVideoFrame(shiboken2.Object): class FieldType (line 4343) | class FieldType: method __init__ (line 4351) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4352) | def __add__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTyp... method __and__ (line 4353) | def __and__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTyp... method __bool__ (line 4354) | def __bool__(self) -> bool: ... method __eq__ (line 4355) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4356) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4357) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4358) | def __hash__(self) -> int: ... method __index__ (line 4359) | def __index__(self) -> int: ... method __int__ (line 4360) | def __int__(self) -> int: ... method __le__ (line 4361) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4362) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4363) | def __mul__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTyp... method __ne__ (line 4364) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4365) | def __or__(self, other: typing.SupportsInt) -> QVideoFrame.FieldType... method __pos__ (line 4366) | def __pos__(self): ... method __radd__ (line 4367) | def __radd__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTy... method __rand__ (line 4368) | def __rand__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTy... method __rmul__ (line 4369) | def __rmul__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTy... method __ror__ (line 4370) | def __ror__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTyp... method __rsub__ (line 4371) | def __rsub__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTy... method __rxor__ (line 4372) | def __rxor__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTy... method __sub__ (line 4373) | def __sub__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTyp... method __xor__ (line 4374) | def __xor__(self, other: typing.SupportsInt) -> QVideoFrame.FieldTyp... class PixelFormat (line 4376) | class PixelFormat: method __init__ (line 4417) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4418) | def __add__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFor... method __and__ (line 4419) | def __and__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFor... method __bool__ (line 4420) | def __bool__(self) -> bool: ... method __eq__ (line 4421) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4422) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4423) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4424) | def __hash__(self) -> int: ... method __index__ (line 4425) | def __index__(self) -> int: ... method __int__ (line 4426) | def __int__(self) -> int: ... method __le__ (line 4427) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4428) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4429) | def __mul__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFor... method __ne__ (line 4430) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4431) | def __or__(self, other: typing.SupportsInt) -> QVideoFrame.PixelForm... method __pos__ (line 4432) | def __pos__(self): ... method __radd__ (line 4433) | def __radd__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFo... method __rand__ (line 4434) | def __rand__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFo... method __rmul__ (line 4435) | def __rmul__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFo... method __ror__ (line 4436) | def __ror__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFor... method __rsub__ (line 4437) | def __rsub__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFo... method __rxor__ (line 4438) | def __rxor__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFo... method __sub__ (line 4439) | def __sub__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFor... method __xor__ (line 4440) | def __xor__(self, other: typing.SupportsInt) -> QVideoFrame.PixelFor... method __init__ (line 4483) | def __init__(self, bytes: int, size: PySide2.QtCore.QSize, bytesPerLin... method __init__ (line 4485) | def __init__(self, buffer: QAbstractVideoBuffer, size: PySide2.QtCore.... method __init__ (line 4487) | def __init__(self, other: QVideoFrame) -> None: ... method __init__ (line 4489) | def __init__(self, image: PySide2.QtGui.QImage) -> None: ... method __init__ (line 4491) | def __init__(self) -> None: ... method availableMetaData (line 4492) | def availableMetaData(self) -> dict[str, typing.Any]: ... method bits (line 4493) | def bits(self) -> bytes: ... method buffer (line 4494) | def buffer(self) -> QAbstractVideoBuffer: ... method bytesPerLine (line 4496) | def bytesPerLine(self, plane: int) -> int: ... method bytesPerLine (line 4498) | def bytesPerLine(self) -> int: ... method endTime (line 4499) | def endTime(self) -> int: ... method fieldType (line 4500) | def fieldType(self) -> QVideoFrame.FieldType: ... method handle (line 4501) | def handle(self) -> typing.Any: ... method handleType (line 4502) | def handleType(self) -> QAbstractVideoBuffer.HandleType: ... method height (line 4503) | def height(self) -> int: ... method image (line 4504) | def image(self) -> PySide2.QtGui.QImage: ... method imageFormatFromPixelFormat (line 4506) | def imageFormatFromPixelFormat(format: QVideoFrame.PixelFormat) -> PyS... method isMapped (line 4507) | def isMapped(self) -> bool: ... method isReadable (line 4508) | def isReadable(self) -> bool: ... method isValid (line 4509) | def isValid(self) -> bool: ... method isWritable (line 4510) | def isWritable(self) -> bool: ... method map (line 4511) | def map(self, mode: QAbstractVideoBuffer.MapMode) -> bool: ... method mapMode (line 4512) | def mapMode(self) -> QAbstractVideoBuffer.MapMode: ... method mappedBytes (line 4513) | def mappedBytes(self) -> int: ... method metaData (line 4514) | def metaData(self, key: str) -> typing.Any: ... method pixelFormat (line 4515) | def pixelFormat(self) -> QVideoFrame.PixelFormat: ... method pixelFormatFromImageFormat (line 4517) | def pixelFormatFromImageFormat(format: PySide2.QtGui.QImage.Format) ->... method planeCount (line 4518) | def planeCount(self) -> int: ... method setEndTime (line 4519) | def setEndTime(self, time: int) -> None: ... method setFieldType (line 4520) | def setFieldType(self, arg__1: QVideoFrame.FieldType) -> None: ... method setMetaData (line 4521) | def setMetaData(self, key: str, value: typing.Any) -> None: ... method setStartTime (line 4522) | def setStartTime(self, time: int) -> None: ... method size (line 4523) | def size(self) -> PySide2.QtCore.QSize: ... method startTime (line 4524) | def startTime(self) -> int: ... method unmap (line 4525) | def unmap(self) -> None: ... method width (line 4526) | def width(self) -> int: ... method __copy__ (line 4527) | def __copy__(self) -> None: ... method __eq__ (line 4528) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4529) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4530) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4531) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4532) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4533) | def __ne__(self, other: object) -> bool: ... class QVideoProbe (line 4535) | class QVideoProbe(PySide2.QtCore.QObject): method __init__ (line 4539) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method isActive (line 4540) | def isActive(self) -> bool: ... method setSource (line 4542) | def setSource(self, source: QMediaObject) -> bool: ... method setSource (line 4544) | def setSource(self, source: QMediaRecorder) -> bool: ... class QVideoRendererControl (line 4546) | class QVideoRendererControl(QMediaControl): method __init__ (line 4548) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method setSurface (line 4549) | def setSurface(self, surface: QAbstractVideoSurface) -> None: ... method surface (line 4550) | def surface(self) -> QAbstractVideoSurface: ... class QVideoSurfaceFormat (line 4552) | class QVideoSurfaceFormat(shiboken2.Object): class Direction (line 4553) | class Direction: method __init__ (line 4559) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4560) | def __add__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __and__ (line 4561) | def __and__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __bool__ (line 4562) | def __bool__(self) -> bool: ... method __eq__ (line 4563) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4564) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4565) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4566) | def __hash__(self) -> int: ... method __index__ (line 4567) | def __index__(self) -> int: ... method __int__ (line 4568) | def __int__(self) -> int: ... method __le__ (line 4569) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4570) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4571) | def __mul__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __ne__ (line 4572) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4573) | def __or__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.D... method __pos__ (line 4574) | def __pos__(self): ... method __radd__ (line 4575) | def __radd__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __rand__ (line 4576) | def __rand__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __rmul__ (line 4577) | def __rmul__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __ror__ (line 4578) | def __ror__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __rsub__ (line 4579) | def __rsub__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __rxor__ (line 4580) | def __rxor__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __sub__ (line 4581) | def __sub__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __xor__ (line 4582) | def __xor__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... class YCbCrColorSpace (line 4584) | class YCbCrColorSpace: method __init__ (line 4595) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4596) | def __add__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __and__ (line 4597) | def __and__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __bool__ (line 4598) | def __bool__(self) -> bool: ... method __eq__ (line 4599) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4600) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4601) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4602) | def __hash__(self) -> int: ... method __index__ (line 4603) | def __index__(self) -> int: ... method __int__ (line 4604) | def __int__(self) -> int: ... method __le__ (line 4605) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4606) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4607) | def __mul__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __ne__ (line 4608) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4609) | def __or__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.Y... method __pos__ (line 4610) | def __pos__(self): ... method __radd__ (line 4611) | def __radd__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __rand__ (line 4612) | def __rand__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __rmul__ (line 4613) | def __rmul__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __ror__ (line 4614) | def __ror__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __rsub__ (line 4615) | def __rsub__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __rxor__ (line 4616) | def __rxor__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat... method __sub__ (line 4617) | def __sub__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __xor__ (line 4618) | def __xor__(self, other: typing.SupportsInt) -> QVideoSurfaceFormat.... method __init__ (line 4629) | def __init__(self, size: PySide2.QtCore.QSize, pixelFormat: QVideoFram... method __init__ (line 4631) | def __init__(self, format: QVideoSurfaceFormat) -> None: ... method __init__ (line 4633) | def __init__(self) -> None: ... method frameHeight (line 4634) | def frameHeight(self) -> int: ... method frameRate (line 4635) | def frameRate(self) -> float: ... method frameSize (line 4636) | def frameSize(self) -> PySide2.QtCore.QSize: ... method frameWidth (line 4637) | def frameWidth(self) -> int: ... method handleType (line 4638) | def handleType(self) -> QAbstractVideoBuffer.HandleType: ... method isMirrored (line 4639) | def isMirrored(self) -> bool: ... method isValid (line 4640) | def isValid(self) -> bool: ... method pixelAspectRatio (line 4641) | def pixelAspectRatio(self) -> PySide2.QtCore.QSize: ... method pixelFormat (line 4642) | def pixelFormat(self) -> QVideoFrame.PixelFormat: ... method property (line 4643) | def property(self, name: bytes) -> typing.Any: ... method propertyNames (line 4644) | def propertyNames(self) -> list[PySide2.QtCore.QByteArray]: ... method scanLineDirection (line 4645) | def scanLineDirection(self) -> QVideoSurfaceFormat.Direction: ... method setFrameRate (line 4646) | def setFrameRate(self, rate: float) -> None: ... method setFrameSize (line 4648) | def setFrameSize(self, width: int, height: int) -> None: ... method setFrameSize (line 4650) | def setFrameSize(self, size: PySide2.QtCore.QSize) -> None: ... method setMirrored (line 4651) | def setMirrored(self, mirrored: bool) -> None: ... method setPixelAspectRatio (line 4653) | def setPixelAspectRatio(self, width: int, height: int) -> None: ... method setPixelAspectRatio (line 4655) | def setPixelAspectRatio(self, ratio: PySide2.QtCore.QSize) -> None: ... method setProperty (line 4656) | def setProperty(self, name: bytes, value: typing.Any) -> None: ... method setScanLineDirection (line 4657) | def setScanLineDirection(self, direction: QVideoSurfaceFormat.Directio... method setViewport (line 4658) | def setViewport(self, viewport: PySide2.QtCore.QRect) -> None: ... method setYCbCrColorSpace (line 4659) | def setYCbCrColorSpace(self, colorSpace: QVideoSurfaceFormat.YCbCrColo... method sizeHint (line 4660) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method viewport (line 4661) | def viewport(self) -> PySide2.QtCore.QRect: ... method yCbCrColorSpace (line 4662) | def yCbCrColorSpace(self) -> QVideoSurfaceFormat.YCbCrColorSpace: ... method __copy__ (line 4663) | def __copy__(self) -> None: ... method __eq__ (line 4664) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4665) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4666) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4667) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4668) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4669) | def __ne__(self, other: object) -> bool: ... class QVideoWindowControl (line 4671) | class QVideoWindowControl(QMediaControl): method __init__ (line 4679) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method aspectRatioMode (line 4680) | def aspectRatioMode(self) -> PySide2.QtCore.Qt.AspectRatioMode: ... method brightness (line 4681) | def brightness(self) -> int: ... method contrast (line 4682) | def contrast(self) -> int: ... method displayRect (line 4683) | def displayRect(self) -> PySide2.QtCore.QRect: ... method hue (line 4684) | def hue(self) -> int: ... method isFullScreen (line 4685) | def isFullScreen(self) -> bool: ... method nativeSize (line 4686) | def nativeSize(self) -> PySide2.QtCore.QSize: ... method repaint (line 4687) | def repaint(self) -> None: ... method saturation (line 4688) | def saturation(self) -> int: ... method setAspectRatioMode (line 4689) | def setAspectRatioMode(self, mode: PySide2.QtCore.Qt.AspectRatioMode) ... method setBrightness (line 4690) | def setBrightness(self, brightness: int) -> None: ... method setContrast (line 4691) | def setContrast(self, contrast: int) -> None: ... method setDisplayRect (line 4692) | def setDisplayRect(self, rect: PySide2.QtCore.QRect) -> None: ... method setFullScreen (line 4693) | def setFullScreen(self, fullScreen: bool) -> None: ... method setHue (line 4694) | def setHue(self, hue: int) -> None: ... method setSaturation (line 4695) | def setSaturation(self, saturation: int) -> None: ... method setWinId (line 4696) | def setWinId(self, id: int) -> None: ... method winId (line 4697) | def winId(self) -> int: ... FILE: pyside/stubs/PySide2-stubs/QtMultimediaWidgets.pyi class QCameraViewfinder (line 12) | class QCameraViewfinder(QVideoWidget): method __init__ (line 14) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method mediaObject (line 15) | def mediaObject(self) -> PySide2.QtMultimedia.QMediaObject: ... method setMediaObject (line 16) | def setMediaObject(self, object: PySide2.QtMultimedia.QMediaObject) ->... class QGraphicsVideoItem (line 18) | class QGraphicsVideoItem(PySide2.QtWidgets.QGraphicsObject, PySide2.QtMu... method __init__ (line 21) | def __init__(self, parent: PySide2.QtWidgets.QGraphicsItem | None = ..... method aspectRatioMode (line 22) | def aspectRatioMode(self) -> PySide2.QtCore.Qt.AspectRatioMode: ... method boundingRect (line 23) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method itemChange (line 24) | def itemChange(self, change: PySide2.QtWidgets.QGraphicsItem.GraphicsI... method mediaObject (line 25) | def mediaObject(self) -> PySide2.QtMultimedia.QMediaObject: ... method nativeSize (line 26) | def nativeSize(self) -> PySide2.QtCore.QSizeF: ... method offset (line 27) | def offset(self) -> PySide2.QtCore.QPointF: ... method paint (line 28) | def paint(self, painter: PySide2.QtGui.QPainter, option: PySide2.QtWid... method setAspectRatioMode (line 29) | def setAspectRatioMode(self, mode: PySide2.QtCore.Qt.AspectRatioMode) ... method setMediaObject (line 30) | def setMediaObject(self, object: PySide2.QtMultimedia.QMediaObject) ->... method setOffset (line 31) | def setOffset(self, offset: PySide2.QtCore.QPointF) -> None: ... method setSize (line 32) | def setSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method size (line 33) | def size(self) -> PySide2.QtCore.QSizeF: ... method timerEvent (line 34) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method videoSurface (line 35) | def videoSurface(self) -> PySide2.QtMultimedia.QAbstractVideoSurface: ... class QVideoWidget (line 37) | class QVideoWidget(PySide2.QtWidgets.QWidget, PySide2.QtMultimedia.QMedi... method __init__ (line 44) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method aspectRatioMode (line 45) | def aspectRatioMode(self) -> PySide2.QtCore.Qt.AspectRatioMode: ... method brightness (line 46) | def brightness(self) -> int: ... method contrast (line 47) | def contrast(self) -> int: ... method event (line 48) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method hideEvent (line 49) | def hideEvent(self, event: PySide2.QtGui.QHideEvent) -> None: ... method hue (line 50) | def hue(self) -> int: ... method mediaObject (line 51) | def mediaObject(self) -> PySide2.QtMultimedia.QMediaObject: ... method moveEvent (line 52) | def moveEvent(self, event: PySide2.QtGui.QMoveEvent) -> None: ... method paintEvent (line 53) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 54) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method saturation (line 55) | def saturation(self) -> int: ... method setAspectRatioMode (line 56) | def setAspectRatioMode(self, mode: PySide2.QtCore.Qt.AspectRatioMode) ... method setBrightness (line 57) | def setBrightness(self, brightness: int) -> None: ... method setContrast (line 58) | def setContrast(self, contrast: int) -> None: ... method setFullScreen (line 59) | def setFullScreen(self, fullScreen: bool) -> None: ... method setHue (line 60) | def setHue(self, hue: int) -> None: ... method setMediaObject (line 61) | def setMediaObject(self, object: PySide2.QtMultimedia.QMediaObject) ->... method setSaturation (line 62) | def setSaturation(self, saturation: int) -> None: ... method showEvent (line 63) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 64) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method videoSurface (line 65) | def videoSurface(self) -> PySide2.QtMultimedia.QAbstractVideoSurface: ... class QVideoWidgetControl (line 67) | class QVideoWidgetControl(PySide2.QtMultimedia.QMediaControl): method __init__ (line 74) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method aspectRatioMode (line 75) | def aspectRatioMode(self) -> PySide2.QtCore.Qt.AspectRatioMode: ... method brightness (line 76) | def brightness(self) -> int: ... method contrast (line 77) | def contrast(self) -> int: ... method hue (line 78) | def hue(self) -> int: ... method isFullScreen (line 79) | def isFullScreen(self) -> bool: ... method saturation (line 80) | def saturation(self) -> int: ... method setAspectRatioMode (line 81) | def setAspectRatioMode(self, mode: PySide2.QtCore.Qt.AspectRatioMode) ... method setBrightness (line 82) | def setBrightness(self, brightness: int) -> None: ... method setContrast (line 83) | def setContrast(self, contrast: int) -> None: ... method setFullScreen (line 84) | def setFullScreen(self, fullScreen: bool) -> None: ... method setHue (line 85) | def setHue(self, hue: int) -> None: ... method setSaturation (line 86) | def setSaturation(self, saturation: int) -> None: ... method videoWidget (line 87) | def videoWidget(self) -> PySide2.QtWidgets.QWidget: ... FILE: pyside/stubs/PySide2-stubs/QtNetwork.pyi class QAbstractNetworkCache (line 12) | class QAbstractNetworkCache(PySide2.QtCore.QObject): method __init__ (line 14) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method cacheSize (line 15) | def cacheSize(self) -> int: ... method clear (line 16) | def clear(self) -> None: ... method data (line 17) | def data(self, url: PySide2.QtCore.QUrl) -> PySide2.QtCore.QIODevice: ... method insert (line 18) | def insert(self, device: PySide2.QtCore.QIODevice) -> None: ... method metaData (line 19) | def metaData(self, url: PySide2.QtCore.QUrl) -> QNetworkCacheMetaData:... method prepare (line 20) | def prepare(self, metaData: QNetworkCacheMetaData) -> PySide2.QtCore.Q... method remove (line 21) | def remove(self, url: PySide2.QtCore.QUrl) -> bool: ... method updateMetaData (line 22) | def updateMetaData(self, metaData: QNetworkCacheMetaData) -> None: ... class QAbstractSocket (line 24) | class QAbstractSocket(PySide2.QtCore.QIODevice): class BindFlag (line 25) | class BindFlag: method __init__ (line 33) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 34) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Bind... method __bool__ (line 35) | def __bool__(self) -> bool: ... method __eq__ (line 36) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 37) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 38) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 39) | def __hash__(self) -> int: ... method __index__ (line 40) | def __index__(self) -> int: ... method __int__ (line 41) | def __int__(self) -> int: ... method __invert__ (line 42) | def __invert__(self) -> QAbstractSocket.BindMode: ... method __le__ (line 43) | def __le__(self, other: object) -> bool: ... method __lt__ (line 44) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 45) | def __ne__(self, other: object) -> bool: ... method __or__ (line 46) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.BindM... method __rand__ (line 47) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Bin... method __ror__ (line 48) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Bind... method __rxor__ (line 49) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Bin... method __xor__ (line 50) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Bind... class BindMode (line 52) | class BindMode: method __init__ (line 54) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 55) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Bind... method __bool__ (line 56) | def __bool__(self) -> bool: ... method __eq__ (line 57) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 58) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 59) | def __gt__(self, other: object) -> bool: ... method __index__ (line 60) | def __index__(self) -> int: ... method __int__ (line 61) | def __int__(self) -> int: ... method __invert__ (line 62) | def __invert__(self) -> QAbstractSocket.BindMode: ... method __le__ (line 63) | def __le__(self, other: object) -> bool: ... method __lt__ (line 64) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 65) | def __ne__(self, other: object) -> bool: ... method __or__ (line 66) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.BindM... method __rand__ (line 67) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Bin... method __ror__ (line 68) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Bind... method __rxor__ (line 69) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Bin... method __xor__ (line 70) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Bind... class NetworkLayerProtocol (line 72) | class NetworkLayerProtocol: method __init__ (line 80) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 81) | def __add__(self, other: typing.SupportsInt) -> QAbstractSocket.Netw... method __and__ (line 82) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Netw... method __bool__ (line 83) | def __bool__(self) -> bool: ... method __eq__ (line 84) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 85) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 86) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 87) | def __hash__(self) -> int: ... method __index__ (line 88) | def __index__(self) -> int: ... method __int__ (line 89) | def __int__(self) -> int: ... method __le__ (line 90) | def __le__(self, other: object) -> bool: ... method __lt__ (line 91) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 92) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSocket.Netw... method __ne__ (line 93) | def __ne__(self, other: object) -> bool: ... method __or__ (line 94) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Netwo... method __pos__ (line 95) | def __pos__(self): ... method __radd__ (line 96) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSocket.Net... method __rand__ (line 97) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Net... method __rmul__ (line 98) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSocket.Net... method __ror__ (line 99) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Netw... method __rsub__ (line 100) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSocket.Net... method __rxor__ (line 101) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Net... method __sub__ (line 102) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSocket.Netw... method __xor__ (line 103) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Netw... class PauseMode (line 105) | class PauseMode: method __init__ (line 111) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 112) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Paus... method __bool__ (line 113) | def __bool__(self) -> bool: ... method __eq__ (line 114) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 115) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 116) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 117) | def __hash__(self) -> int: ... method __index__ (line 118) | def __index__(self) -> int: ... method __int__ (line 119) | def __int__(self) -> int: ... method __invert__ (line 120) | def __invert__(self) -> QAbstractSocket.PauseModes: ... method __le__ (line 121) | def __le__(self, other: object) -> bool: ... method __lt__ (line 122) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 123) | def __ne__(self, other: object) -> bool: ... method __or__ (line 124) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Pause... method __rand__ (line 125) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Pau... method __ror__ (line 126) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Paus... method __rxor__ (line 127) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Pau... method __xor__ (line 128) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Paus... class PauseModes (line 130) | class PauseModes: method __init__ (line 132) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 133) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Paus... method __bool__ (line 134) | def __bool__(self) -> bool: ... method __eq__ (line 135) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 136) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 137) | def __gt__(self, other: object) -> bool: ... method __index__ (line 138) | def __index__(self) -> int: ... method __int__ (line 139) | def __int__(self) -> int: ... method __invert__ (line 140) | def __invert__(self) -> QAbstractSocket.PauseModes: ... method __le__ (line 141) | def __le__(self, other: object) -> bool: ... method __lt__ (line 142) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 143) | def __ne__(self, other: object) -> bool: ... method __or__ (line 144) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Pause... method __rand__ (line 145) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Pau... method __ror__ (line 146) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Paus... method __rxor__ (line 147) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Pau... method __xor__ (line 148) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Paus... class SocketError (line 150) | class SocketError: method __init__ (line 178) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 179) | def __add__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __and__ (line 180) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __bool__ (line 181) | def __bool__(self) -> bool: ... method __eq__ (line 182) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 183) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 184) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 185) | def __hash__(self) -> int: ... method __index__ (line 186) | def __index__(self) -> int: ... method __int__ (line 187) | def __int__(self) -> int: ... method __le__ (line 188) | def __le__(self, other: object) -> bool: ... method __lt__ (line 189) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 190) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __ne__ (line 191) | def __ne__(self, other: object) -> bool: ... method __or__ (line 192) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Socke... method __pos__ (line 193) | def __pos__(self): ... method __radd__ (line 194) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rand__ (line 195) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rmul__ (line 196) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __ror__ (line 197) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __rsub__ (line 198) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rxor__ (line 199) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __sub__ (line 200) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __xor__ (line 201) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... class SocketOption (line 203) | class SocketOption: method __init__ (line 215) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 216) | def __add__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __and__ (line 217) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __bool__ (line 218) | def __bool__(self) -> bool: ... method __eq__ (line 219) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 220) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 221) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 222) | def __hash__(self) -> int: ... method __index__ (line 223) | def __index__(self) -> int: ... method __int__ (line 224) | def __int__(self) -> int: ... method __le__ (line 225) | def __le__(self, other: object) -> bool: ... method __lt__ (line 226) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 227) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __ne__ (line 228) | def __ne__(self, other: object) -> bool: ... method __or__ (line 229) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Socke... method __pos__ (line 230) | def __pos__(self): ... method __radd__ (line 231) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rand__ (line 232) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rmul__ (line 233) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __ror__ (line 234) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __rsub__ (line 235) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rxor__ (line 236) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __sub__ (line 237) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __xor__ (line 238) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... class SocketState (line 240) | class SocketState: method __init__ (line 251) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 252) | def __add__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __and__ (line 253) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __bool__ (line 254) | def __bool__(self) -> bool: ... method __eq__ (line 255) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 256) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 257) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 258) | def __hash__(self) -> int: ... method __index__ (line 259) | def __index__(self) -> int: ... method __int__ (line 260) | def __int__(self) -> int: ... method __le__ (line 261) | def __le__(self, other: object) -> bool: ... method __lt__ (line 262) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 263) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __ne__ (line 264) | def __ne__(self, other: object) -> bool: ... method __or__ (line 265) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Socke... method __pos__ (line 266) | def __pos__(self): ... method __radd__ (line 267) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rand__ (line 268) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rmul__ (line 269) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __ror__ (line 270) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __rsub__ (line 271) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rxor__ (line 272) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __sub__ (line 273) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __xor__ (line 274) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... class SocketType (line 276) | class SocketType: method __init__ (line 284) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 285) | def __add__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __and__ (line 286) | def __and__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __bool__ (line 287) | def __bool__(self) -> bool: ... method __eq__ (line 288) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 289) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 290) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 291) | def __hash__(self) -> int: ... method __index__ (line 292) | def __index__(self) -> int: ... method __int__ (line 293) | def __int__(self) -> int: ... method __le__ (line 294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 295) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 296) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __ne__ (line 297) | def __ne__(self, other: object) -> bool: ... method __or__ (line 298) | def __or__(self, other: typing.SupportsInt) -> QAbstractSocket.Socke... method __pos__ (line 299) | def __pos__(self): ... method __radd__ (line 300) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rand__ (line 301) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rmul__ (line 302) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __ror__ (line 303) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __rsub__ (line 304) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __rxor__ (line 305) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSocket.Soc... method __sub__ (line 306) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __xor__ (line 307) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSocket.Sock... method __init__ (line 369) | def __init__(self, socketType: QAbstractSocket.SocketType, parent: PyS... method abort (line 370) | def abort(self) -> None: ... method atEnd (line 371) | def atEnd(self) -> bool: ... method bind (line 373) | def bind(self, address: QHostAddress, port: int = ..., mode: QAbstract... method bind (line 375) | def bind(self, port: int = ..., mode: QAbstractSocket.BindMode | QAbst... method bytesAvailable (line 376) | def bytesAvailable(self) -> int: ... method bytesToWrite (line 377) | def bytesToWrite(self) -> int: ... method canReadLine (line 378) | def canReadLine(self) -> bool: ... method close (line 379) | def close(self) -> None: ... method connectToHost (line 381) | def connectToHost(self, hostName: str, port: int, mode: PySide2.QtCore... method connectToHost (line 383) | def connectToHost(self, address: QHostAddress, port: int, mode: PySide... method disconnectFromHost (line 384) | def disconnectFromHost(self) -> None: ... method flush (line 385) | def flush(self) -> bool: ... method isSequential (line 386) | def isSequential(self) -> bool: ... method isValid (line 387) | def isValid(self) -> bool: ... method localAddress (line 388) | def localAddress(self) -> QHostAddress: ... method localPort (line 389) | def localPort(self) -> int: ... method pauseMode (line 390) | def pauseMode(self) -> QAbstractSocket.PauseModes | QAbstractSocket.Pa... method peerAddress (line 391) | def peerAddress(self) -> QHostAddress: ... method peerName (line 392) | def peerName(self) -> str: ... method peerPort (line 393) | def peerPort(self) -> int: ... method protocolTag (line 394) | def protocolTag(self) -> str: ... method proxy (line 395) | def proxy(self) -> QNetworkProxy: ... method readBufferSize (line 396) | def readBufferSize(self) -> int: ... method readData (line 397) | def readData(self, data: bytes, maxlen: int) -> int: ... method readLineData (line 398) | def readLineData(self, data: bytes, maxlen: int) -> int: ... method resume (line 399) | def resume(self) -> None: ... method setLocalAddress (line 400) | def setLocalAddress(self, address: QHostAddress) -> None: ... method setLocalPort (line 401) | def setLocalPort(self, port: int) -> None: ... method setPauseMode (line 402) | def setPauseMode(self, pauseMode: QAbstractSocket.PauseModes | QAbstra... method setPeerAddress (line 403) | def setPeerAddress(self, address: QHostAddress) -> None: ... method setPeerName (line 404) | def setPeerName(self, name: str) -> None: ... method setPeerPort (line 405) | def setPeerPort(self, port: int) -> None: ... method setProtocolTag (line 406) | def setProtocolTag(self, tag: str) -> None: ... method setProxy (line 407) | def setProxy(self, networkProxy: QNetworkProxy) -> None: ... method setReadBufferSize (line 408) | def setReadBufferSize(self, size: int) -> None: ... method setSocketDescriptor (line 409) | def setSocketDescriptor(self, socketDescriptor: int, state: QAbstractS... method setSocketError (line 410) | def setSocketError(self, socketError: QAbstractSocket.SocketError) -> ... method setSocketOption (line 411) | def setSocketOption(self, option: QAbstractSocket.SocketOption, value:... method setSocketState (line 412) | def setSocketState(self, state: QAbstractSocket.SocketState) -> None: ... method socketDescriptor (line 413) | def socketDescriptor(self) -> int: ... method socketOption (line 414) | def socketOption(self, option: QAbstractSocket.SocketOption) -> typing... method socketType (line 415) | def socketType(self) -> QAbstractSocket.SocketType: ... method state (line 416) | def state(self) -> QAbstractSocket.SocketState: ... method waitForBytesWritten (line 417) | def waitForBytesWritten(self, msecs: int = ...) -> bool: ... method waitForConnected (line 418) | def waitForConnected(self, msecs: int = ...) -> bool: ... method waitForDisconnected (line 419) | def waitForDisconnected(self, msecs: int = ...) -> bool: ... method waitForReadyRead (line 420) | def waitForReadyRead(self, msecs: int = ...) -> bool: ... method writeData (line 421) | def writeData(self, data: bytes, len: int) -> int: ... class QAuthenticator (line 423) | class QAuthenticator(shiboken2.Object): method __init__ (line 425) | def __init__(self, other: QAuthenticator) -> None: ... method __init__ (line 427) | def __init__(self) -> None: ... method isNull (line 428) | def isNull(self) -> bool: ... method option (line 429) | def option(self, opt: str) -> typing.Any: ... method options (line 430) | def options(self) -> dict[str, typing.Any]: ... method password (line 431) | def password(self) -> str: ... method realm (line 432) | def realm(self) -> str: ... method setOption (line 433) | def setOption(self, opt: str, value: typing.Any) -> None: ... method setPassword (line 434) | def setPassword(self, password: str) -> None: ... method setRealm (line 435) | def setRealm(self, realm: str) -> None: ... method setUser (line 436) | def setUser(self, user: str) -> None: ... method user (line 437) | def user(self) -> str: ... method __bool__ (line 438) | def __bool__(self) -> bool: ... method __copy__ (line 439) | def __copy__(self) -> None: ... method __eq__ (line 440) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 441) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 442) | def __gt__(self, other: object) -> bool: ... method __le__ (line 443) | def __le__(self, other: object) -> bool: ... method __lt__ (line 444) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 445) | def __ne__(self, other: object) -> bool: ... class QDnsDomainNameRecord (line 447) | class QDnsDomainNameRecord(shiboken2.Object): method __init__ (line 449) | def __init__(self, other: QDnsDomainNameRecord) -> None: ... method __init__ (line 451) | def __init__(self) -> None: ... method name (line 452) | def name(self) -> str: ... method swap (line 453) | def swap(self, other: QDnsDomainNameRecord) -> None: ... method timeToLive (line 454) | def timeToLive(self) -> int: ... method value (line 455) | def value(self) -> str: ... method __copy__ (line 456) | def __copy__(self) -> None: ... class QDnsHostAddressRecord (line 458) | class QDnsHostAddressRecord(shiboken2.Object): method __init__ (line 460) | def __init__(self, other: QDnsHostAddressRecord) -> None: ... method __init__ (line 462) | def __init__(self) -> None: ... method name (line 463) | def name(self) -> str: ... method swap (line 464) | def swap(self, other: QDnsHostAddressRecord) -> None: ... method timeToLive (line 465) | def timeToLive(self) -> int: ... method value (line 466) | def value(self) -> QHostAddress: ... method __copy__ (line 467) | def __copy__(self) -> None: ... class QDnsLookup (line 469) | class QDnsLookup(PySide2.QtCore.QObject): class Error (line 470) | class Error: method __init__ (line 482) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 483) | def __add__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __and__ (line 484) | def __and__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __bool__ (line 485) | def __bool__(self) -> bool: ... method __eq__ (line 486) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 487) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 488) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 489) | def __hash__(self) -> int: ... method __index__ (line 490) | def __index__(self) -> int: ... method __int__ (line 491) | def __int__(self) -> int: ... method __le__ (line 492) | def __le__(self, other: object) -> bool: ... method __lt__ (line 493) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 494) | def __mul__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __ne__ (line 495) | def __ne__(self, other: object) -> bool: ... method __or__ (line 496) | def __or__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __pos__ (line 497) | def __pos__(self): ... method __radd__ (line 498) | def __radd__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __rand__ (line 499) | def __rand__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __rmul__ (line 500) | def __rmul__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __ror__ (line 501) | def __ror__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __rsub__ (line 502) | def __rsub__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __rxor__ (line 503) | def __rxor__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __sub__ (line 504) | def __sub__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... method __xor__ (line 505) | def __xor__(self, other: typing.SupportsInt) -> QDnsLookup.Error: ... class Type (line 507) | class Type: method __init__ (line 520) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 521) | def __add__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __and__ (line 522) | def __and__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __bool__ (line 523) | def __bool__(self) -> bool: ... method __eq__ (line 524) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 525) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 526) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 527) | def __hash__(self) -> int: ... method __index__ (line 528) | def __index__(self) -> int: ... method __int__ (line 529) | def __int__(self) -> int: ... method __le__ (line 530) | def __le__(self, other: object) -> bool: ... method __lt__ (line 531) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 532) | def __mul__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __ne__ (line 533) | def __ne__(self, other: object) -> bool: ... method __or__ (line 534) | def __or__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __pos__ (line 535) | def __pos__(self): ... method __radd__ (line 536) | def __radd__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __rand__ (line 537) | def __rand__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __rmul__ (line 538) | def __rmul__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __ror__ (line 539) | def __ror__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __rsub__ (line 540) | def __rsub__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __rxor__ (line 541) | def __rxor__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __sub__ (line 542) | def __sub__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __xor__ (line 543) | def __xor__(self, other: typing.SupportsInt) -> QDnsLookup.Type: ... method __init__ (line 567) | def __init__(self, type: QDnsLookup.Type, name: str, parent: PySide2.Q... method __init__ (line 569) | def __init__(self, type: QDnsLookup.Type, name: str, nameserver: QHost... method __init__ (line 571) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method abort (line 572) | def abort(self) -> None: ... method canonicalNameRecords (line 573) | def canonicalNameRecords(self) -> list[QDnsDomainNameRecord]: ... method error (line 574) | def error(self) -> QDnsLookup.Error: ... method errorString (line 575) | def errorString(self) -> str: ... method hostAddressRecords (line 576) | def hostAddressRecords(self) -> list[QDnsHostAddressRecord]: ... method isFinished (line 577) | def isFinished(self) -> bool: ... method lookup (line 578) | def lookup(self) -> None: ... method mailExchangeRecords (line 579) | def mailExchangeRecords(self) -> list[QDnsMailExchangeRecord]: ... method name (line 580) | def name(self) -> str: ... method nameServerRecords (line 581) | def nameServerRecords(self) -> list[QDnsDomainNameRecord]: ... method nameserver (line 582) | def nameserver(self) -> QHostAddress: ... method pointerRecords (line 583) | def pointerRecords(self) -> list[QDnsDomainNameRecord]: ... method serviceRecords (line 584) | def serviceRecords(self) -> list[QDnsServiceRecord]: ... method setName (line 585) | def setName(self, name: str) -> None: ... method setNameserver (line 586) | def setNameserver(self, nameserver: QHostAddress) -> None: ... method setType (line 587) | def setType(self, arg__1: QDnsLookup.Type) -> None: ... method textRecords (line 588) | def textRecords(self) -> list[QDnsTextRecord]: ... method type (line 589) | def type(self) -> QDnsLookup.Type: ... class QDnsMailExchangeRecord (line 591) | class QDnsMailExchangeRecord(shiboken2.Object): method __init__ (line 593) | def __init__(self, other: QDnsMailExchangeRecord) -> None: ... method __init__ (line 595) | def __init__(self) -> None: ... method exchange (line 596) | def exchange(self) -> str: ... method name (line 597) | def name(self) -> str: ... method preference (line 598) | def preference(self) -> int: ... method swap (line 599) | def swap(self, other: QDnsMailExchangeRecord) -> None: ... method timeToLive (line 600) | def timeToLive(self) -> int: ... method __copy__ (line 601) | def __copy__(self) -> None: ... class QDnsServiceRecord (line 603) | class QDnsServiceRecord(shiboken2.Object): method __init__ (line 605) | def __init__(self, other: QDnsServiceRecord) -> None: ... method __init__ (line 607) | def __init__(self) -> None: ... method name (line 608) | def name(self) -> str: ... method port (line 609) | def port(self) -> int: ... method priority (line 610) | def priority(self) -> int: ... method swap (line 611) | def swap(self, other: QDnsServiceRecord) -> None: ... method target (line 612) | def target(self) -> str: ... method timeToLive (line 613) | def timeToLive(self) -> int: ... method weight (line 614) | def weight(self) -> int: ... method __copy__ (line 615) | def __copy__(self) -> None: ... class QDnsTextRecord (line 617) | class QDnsTextRecord(shiboken2.Object): method __init__ (line 619) | def __init__(self, other: QDnsTextRecord) -> None: ... method __init__ (line 621) | def __init__(self) -> None: ... method name (line 622) | def name(self) -> str: ... method swap (line 623) | def swap(self, other: QDnsTextRecord) -> None: ... method timeToLive (line 624) | def timeToLive(self) -> int: ... method values (line 625) | def values(self) -> list[PySide2.QtCore.QByteArray]: ... method __copy__ (line 626) | def __copy__(self) -> None: ... class QHostAddress (line 628) | class QHostAddress(shiboken2.Object): class ConversionMode (line 629) | class ConversionMode: method __init__ (line 631) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 632) | def __and__(self, other: typing.SupportsInt) -> QHostAddress.Convers... method __bool__ (line 633) | def __bool__(self) -> bool: ... method __eq__ (line 634) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 635) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 636) | def __gt__(self, other: object) -> bool: ... method __index__ (line 637) | def __index__(self) -> int: ... method __int__ (line 638) | def __int__(self) -> int: ... method __invert__ (line 639) | def __invert__(self) -> QHostAddress.ConversionMode: ... method __le__ (line 640) | def __le__(self, other: object) -> bool: ... method __lt__ (line 641) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 642) | def __ne__(self, other: object) -> bool: ... method __or__ (line 643) | def __or__(self, other: typing.SupportsInt) -> QHostAddress.Conversi... method __rand__ (line 644) | def __rand__(self, other: typing.SupportsInt) -> QHostAddress.Conver... method __ror__ (line 645) | def __ror__(self, other: typing.SupportsInt) -> QHostAddress.Convers... method __rxor__ (line 646) | def __rxor__(self, other: typing.SupportsInt) -> QHostAddress.Conver... method __xor__ (line 647) | def __xor__(self, other: typing.SupportsInt) -> QHostAddress.Convers... class ConversionModeFlag (line 649) | class ConversionModeFlag: method __init__ (line 659) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 660) | def __and__(self, other: typing.SupportsInt) -> QHostAddress.Convers... method __bool__ (line 661) | def __bool__(self) -> bool: ... method __eq__ (line 662) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 663) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 664) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 665) | def __hash__(self) -> int: ... method __index__ (line 666) | def __index__(self) -> int: ... method __int__ (line 667) | def __int__(self) -> int: ... method __invert__ (line 668) | def __invert__(self) -> QHostAddress.ConversionMode: ... method __le__ (line 669) | def __le__(self, other: object) -> bool: ... method __lt__ (line 670) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 671) | def __ne__(self, other: object) -> bool: ... method __or__ (line 672) | def __or__(self, other: typing.SupportsInt) -> QHostAddress.Conversi... method __rand__ (line 673) | def __rand__(self, other: typing.SupportsInt) -> QHostAddress.Conver... method __ror__ (line 674) | def __ror__(self, other: typing.SupportsInt) -> QHostAddress.Convers... method __rxor__ (line 675) | def __rxor__(self, other: typing.SupportsInt) -> QHostAddress.Conver... method __xor__ (line 676) | def __xor__(self, other: typing.SupportsInt) -> QHostAddress.Convers... class SpecialAddress (line 678) | class SpecialAddress: method __init__ (line 689) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 690) | def __add__(self, other: typing.SupportsInt) -> QHostAddress.Special... method __and__ (line 691) | def __and__(self, other: typing.SupportsInt) -> QHostAddress.Special... method __bool__ (line 692) | def __bool__(self) -> bool: ... method __eq__ (line 693) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 694) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 695) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 696) | def __hash__(self) -> int: ... method __index__ (line 697) | def __index__(self) -> int: ... method __int__ (line 698) | def __int__(self) -> int: ... method __le__ (line 699) | def __le__(self, other: object) -> bool: ... method __lt__ (line 700) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 701) | def __mul__(self, other: typing.SupportsInt) -> QHostAddress.Special... method __ne__ (line 702) | def __ne__(self, other: object) -> bool: ... method __or__ (line 703) | def __or__(self, other: typing.SupportsInt) -> QHostAddress.SpecialA... method __pos__ (line 704) | def __pos__(self): ... method __radd__ (line 705) | def __radd__(self, other: typing.SupportsInt) -> QHostAddress.Specia... method __rand__ (line 706) | def __rand__(self, other: typing.SupportsInt) -> QHostAddress.Specia... method __rmul__ (line 707) | def __rmul__(self, other: typing.SupportsInt) -> QHostAddress.Specia... method __ror__ (line 708) | def __ror__(self, other: typing.SupportsInt) -> QHostAddress.Special... method __rsub__ (line 709) | def __rsub__(self, other: typing.SupportsInt) -> QHostAddress.Specia... method __rxor__ (line 710) | def __rxor__(self, other: typing.SupportsInt) -> QHostAddress.Specia... method __sub__ (line 711) | def __sub__(self, other: typing.SupportsInt) -> QHostAddress.Special... method __xor__ (line 712) | def __xor__(self, other: typing.SupportsInt) -> QHostAddress.Special... method __init__ (line 727) | def __init__(self, ip6Addr: QIPv6Address) -> None: ... method __init__ (line 729) | def __init__(self, ip4Addr: int) -> None: ... method __init__ (line 731) | def __init__(self, copy: QHostAddress) -> None: ... method __init__ (line 733) | def __init__(self, address: QHostAddress.SpecialAddress) -> None: ... method __init__ (line 735) | def __init__(self, address: str) -> None: ... method __init__ (line 737) | def __init__(self) -> None: ... method clear (line 738) | def clear(self) -> None: ... method isBroadcast (line 739) | def isBroadcast(self) -> bool: ... method isEqual (line 740) | def isEqual(self, address: QHostAddress, mode: QHostAddress.Conversion... method isGlobal (line 741) | def isGlobal(self) -> bool: ... method isInSubnet (line 743) | def isInSubnet(self, subnet: QHostAddress, netmask: int) -> bool: ... method isInSubnet (line 745) | def isInSubnet(self, subnet: tuple[QHostAddress, int]) -> bool: ... method isLinkLocal (line 746) | def isLinkLocal(self) -> bool: ... method isLoopback (line 747) | def isLoopback(self) -> bool: ... method isMulticast (line 748) | def isMulticast(self) -> bool: ... method isNull (line 749) | def isNull(self) -> bool: ... method isSiteLocal (line 750) | def isSiteLocal(self) -> bool: ... method isUniqueLocalUnicast (line 751) | def isUniqueLocalUnicast(self) -> bool: ... method parseSubnet (line 753) | def parseSubnet(subnet: str) -> tuple[QHostAddress, int]: ... method protocol (line 754) | def protocol(self) -> QAbstractSocket.NetworkLayerProtocol: ... method scopeId (line 755) | def scopeId(self) -> str: ... method setAddress (line 757) | def setAddress(self, ip6Addr: QIPv6Address) -> None: ... method setAddress (line 759) | def setAddress(self, ip4Addr: int) -> None: ... method setAddress (line 761) | def setAddress(self, address: QHostAddress.SpecialAddress) -> None: ... method setAddress (line 763) | def setAddress(self, address: str) -> bool: ... method setScopeId (line 764) | def setScopeId(self, id: str) -> None: ... method swap (line 765) | def swap(self, other: QHostAddress) -> None: ... method toIPv4Address (line 767) | def toIPv4Address(self) -> int: ... method toIPv4Address (line 769) | def toIPv4Address(self) -> tuple[int, bool]: ... # type: ignore[overl... method toIPv6Address (line 770) | def toIPv6Address(self) -> QIPv6Address: ... method toString (line 771) | def toString(self) -> str: ... method __bool__ (line 772) | def __bool__(self) -> bool: ... method __copy__ (line 773) | def __copy__(self) -> None: ... method __eq__ (line 774) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 775) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 776) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 777) | def __hash__(self) -> int: ... method __le__ (line 778) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 779) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 780) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 781) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 782) | def __rlshift__(self, other): ... method __rrshift__ (line 783) | def __rrshift__(self, other): ... method __rshift__ (line 784) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QHostInfo (line 786) | class QHostInfo(shiboken2.Object): class HostInfoError (line 787) | class HostInfoError: method __init__ (line 794) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 795) | def __add__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoEr... method __and__ (line 796) | def __and__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoEr... method __bool__ (line 797) | def __bool__(self) -> bool: ... method __eq__ (line 798) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 799) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 800) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 801) | def __hash__(self) -> int: ... method __index__ (line 802) | def __index__(self) -> int: ... method __int__ (line 803) | def __int__(self) -> int: ... method __le__ (line 804) | def __le__(self, other: object) -> bool: ... method __lt__ (line 805) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 806) | def __mul__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoEr... method __ne__ (line 807) | def __ne__(self, other: object) -> bool: ... method __or__ (line 808) | def __or__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoErr... method __pos__ (line 809) | def __pos__(self): ... method __radd__ (line 810) | def __radd__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoE... method __rand__ (line 811) | def __rand__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoE... method __rmul__ (line 812) | def __rmul__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoE... method __ror__ (line 813) | def __ror__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoEr... method __rsub__ (line 814) | def __rsub__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoE... method __rxor__ (line 815) | def __rxor__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoE... method __sub__ (line 816) | def __sub__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoEr... method __xor__ (line 817) | def __xor__(self, other: typing.SupportsInt) -> QHostInfo.HostInfoEr... method __init__ (line 822) | def __init__(self, lookupId: int = ...) -> None: ... method __init__ (line 824) | def __init__(self, d: QHostInfo) -> None: ... method abortHostLookup (line 826) | def abortHostLookup(lookupId: int) -> None: ... method addresses (line 827) | def addresses(self) -> list[QHostAddress]: ... method error (line 828) | def error(self) -> QHostInfo.HostInfoError: ... method errorString (line 829) | def errorString(self) -> str: ... method fromName (line 831) | def fromName(name: str) -> QHostInfo: ... method hostName (line 832) | def hostName(self) -> str: ... method localDomainName (line 834) | def localDomainName() -> str: ... method localHostName (line 836) | def localHostName() -> str: ... method lookupId (line 837) | def lookupId(self) -> int: ... method setAddresses (line 838) | def setAddresses(self, addresses: typing.Iterable[QHostAddress]) -> No... method setError (line 839) | def setError(self, error: QHostInfo.HostInfoError) -> None: ... method setErrorString (line 840) | def setErrorString(self, errorString: str) -> None: ... method setHostName (line 841) | def setHostName(self, name: str) -> None: ... method setLookupId (line 842) | def setLookupId(self, id: int) -> None: ... method swap (line 843) | def swap(self, other: QHostInfo) -> None: ... method __copy__ (line 844) | def __copy__(self) -> None: ... class QHstsPolicy (line 846) | class QHstsPolicy(shiboken2.Object): class PolicyFlag (line 847) | class PolicyFlag: method __init__ (line 852) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 853) | def __and__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFl... method __bool__ (line 854) | def __bool__(self) -> bool: ... method __eq__ (line 855) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 856) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 857) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 858) | def __hash__(self) -> int: ... method __index__ (line 859) | def __index__(self) -> int: ... method __int__ (line 860) | def __int__(self) -> int: ... method __invert__ (line 861) | def __invert__(self) -> QHstsPolicy.PolicyFlags: ... method __le__ (line 862) | def __le__(self, other: object) -> bool: ... method __lt__ (line 863) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 864) | def __ne__(self, other: object) -> bool: ... method __or__ (line 865) | def __or__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFla... method __rand__ (line 866) | def __rand__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyF... method __ror__ (line 867) | def __ror__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFl... method __rxor__ (line 868) | def __rxor__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyF... method __xor__ (line 869) | def __xor__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFl... class PolicyFlags (line 871) | class PolicyFlags: method __init__ (line 873) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 874) | def __and__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFl... method __bool__ (line 875) | def __bool__(self) -> bool: ... method __eq__ (line 876) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 877) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 878) | def __gt__(self, other: object) -> bool: ... method __index__ (line 879) | def __index__(self) -> int: ... method __int__ (line 880) | def __int__(self) -> int: ... method __invert__ (line 881) | def __invert__(self) -> QHstsPolicy.PolicyFlags: ... method __le__ (line 882) | def __le__(self, other: object) -> bool: ... method __lt__ (line 883) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 884) | def __ne__(self, other: object) -> bool: ... method __or__ (line 885) | def __or__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFla... method __rand__ (line 886) | def __rand__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyF... method __ror__ (line 887) | def __ror__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFl... method __rxor__ (line 888) | def __rxor__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyF... method __xor__ (line 889) | def __xor__(self, other: typing.SupportsInt) -> QHstsPolicy.PolicyFl... method __init__ (line 892) | def __init__(self, expiry: PySide2.QtCore.QDateTime | datetime.datetim... method __init__ (line 894) | def __init__(self, rhs: QHstsPolicy) -> None: ... method __init__ (line 896) | def __init__(self) -> None: ... method expiry (line 897) | def expiry(self) -> PySide2.QtCore.QDateTime: ... method host (line 898) | def host(self, options: PySide2.QtCore.QUrl.ComponentFormattingOption ... method includesSubDomains (line 899) | def includesSubDomains(self) -> bool: ... method isExpired (line 900) | def isExpired(self) -> bool: ... method setExpiry (line 901) | def setExpiry(self, expiry: PySide2.QtCore.QDateTime | datetime.dateti... method setHost (line 902) | def setHost(self, host: str, mode: PySide2.QtCore.QUrl.ParsingMode = .... method setIncludesSubDomains (line 903) | def setIncludesSubDomains(self, include: bool) -> None: ... method swap (line 904) | def swap(self, other: QHstsPolicy) -> None: ... method __copy__ (line 905) | def __copy__(self) -> None: ... method __eq__ (line 906) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 907) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 908) | def __gt__(self, other: object) -> bool: ... method __le__ (line 909) | def __le__(self, other: object) -> bool: ... method __lt__ (line 910) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 911) | def __ne__(self, other: object) -> bool: ... class QHttpMultiPart (line 913) | class QHttpMultiPart(PySide2.QtCore.QObject): class ContentType (line 914) | class ContentType: method __init__ (line 922) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 923) | def __add__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conte... method __and__ (line 924) | def __and__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conte... method __bool__ (line 925) | def __bool__(self) -> bool: ... method __eq__ (line 926) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 927) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 928) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 929) | def __hash__(self) -> int: ... method __index__ (line 930) | def __index__(self) -> int: ... method __int__ (line 931) | def __int__(self) -> int: ... method __le__ (line 932) | def __le__(self, other: object) -> bool: ... method __lt__ (line 933) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 934) | def __mul__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conte... method __ne__ (line 935) | def __ne__(self, other: object) -> bool: ... method __or__ (line 936) | def __or__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conten... method __pos__ (line 937) | def __pos__(self): ... method __radd__ (line 938) | def __radd__(self, other: typing.SupportsInt) -> QHttpMultiPart.Cont... method __rand__ (line 939) | def __rand__(self, other: typing.SupportsInt) -> QHttpMultiPart.Cont... method __rmul__ (line 940) | def __rmul__(self, other: typing.SupportsInt) -> QHttpMultiPart.Cont... method __ror__ (line 941) | def __ror__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conte... method __rsub__ (line 942) | def __rsub__(self, other: typing.SupportsInt) -> QHttpMultiPart.Cont... method __rxor__ (line 943) | def __rxor__(self, other: typing.SupportsInt) -> QHttpMultiPart.Cont... method __sub__ (line 944) | def __sub__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conte... method __xor__ (line 945) | def __xor__(self, other: typing.SupportsInt) -> QHttpMultiPart.Conte... method __init__ (line 952) | def __init__(self, contentType: QHttpMultiPart.ContentType, parent: Py... method __init__ (line 954) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method append (line 955) | def append(self, httpPart: QHttpPart) -> None: ... method boundary (line 956) | def boundary(self) -> PySide2.QtCore.QByteArray: ... method setBoundary (line 957) | def setBoundary(self, boundary: PySide2.QtCore.QByteArray | bytes) -> ... method setContentType (line 958) | def setContentType(self, contentType: QHttpMultiPart.ContentType) -> N... class QHttpPart (line 960) | class QHttpPart(shiboken2.Object): method __init__ (line 962) | def __init__(self, other: QHttpPart) -> None: ... method __init__ (line 964) | def __init__(self) -> None: ... method setBody (line 965) | def setBody(self, body: PySide2.QtCore.QByteArray | bytes) -> None: ... method setBodyDevice (line 966) | def setBodyDevice(self, device: PySide2.QtCore.QIODevice) -> None: ... method setHeader (line 967) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: typin... method setRawHeader (line 968) | def setRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes, ... method swap (line 969) | def swap(self, other: QHttpPart) -> None: ... method __copy__ (line 970) | def __copy__(self) -> None: ... method __eq__ (line 971) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 972) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 973) | def __gt__(self, other: object) -> bool: ... method __le__ (line 974) | def __le__(self, other: object) -> bool: ... method __lt__ (line 975) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 976) | def __ne__(self, other: object) -> bool: ... class QIPv6Address (line 978) | class QIPv6Address(shiboken2.Object): method __init__ (line 980) | def __init__(self, QIPv6Address: QIPv6Address) -> None: ... method __init__ (line 982) | def __init__(self) -> None: ... method __copy__ (line 983) | def __copy__(self) -> None: ... method __delitem__ (line 984) | def __delitem__(self, other) -> None: ... method __getitem__ (line 985) | def __getitem__(self, index): ... method __len__ (line 986) | def __len__(self) -> int: ... method __setitem__ (line 987) | def __setitem__(self, index, object) -> None: ... class QLocalServer (line 989) | class QLocalServer(PySide2.QtCore.QObject): class SocketOption (line 990) | class SocketOption: method __init__ (line 999) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1000) | def __and__(self, other: typing.SupportsInt) -> QLocalServer.SocketO... method __bool__ (line 1001) | def __bool__(self) -> bool: ... method __eq__ (line 1002) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1003) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1004) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1005) | def __hash__(self) -> int: ... method __index__ (line 1006) | def __index__(self) -> int: ... method __int__ (line 1007) | def __int__(self) -> int: ... method __invert__ (line 1008) | def __invert__(self) -> QLocalServer.SocketOptions: ... method __le__ (line 1009) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1010) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1011) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1012) | def __or__(self, other: typing.SupportsInt) -> QLocalServer.SocketOp... method __rand__ (line 1013) | def __rand__(self, other: typing.SupportsInt) -> QLocalServer.Socket... method __ror__ (line 1014) | def __ror__(self, other: typing.SupportsInt) -> QLocalServer.SocketO... method __rxor__ (line 1015) | def __rxor__(self, other: typing.SupportsInt) -> QLocalServer.Socket... method __xor__ (line 1016) | def __xor__(self, other: typing.SupportsInt) -> QLocalServer.SocketO... class SocketOptions (line 1018) | class SocketOptions: method __init__ (line 1020) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1021) | def __and__(self, other: typing.SupportsInt) -> QLocalServer.SocketO... method __bool__ (line 1022) | def __bool__(self) -> bool: ... method __eq__ (line 1023) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1024) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1025) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1026) | def __index__(self) -> int: ... method __int__ (line 1027) | def __int__(self) -> int: ... method __invert__ (line 1028) | def __invert__(self) -> QLocalServer.SocketOptions: ... method __le__ (line 1029) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1030) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1031) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1032) | def __or__(self, other: typing.SupportsInt) -> QLocalServer.SocketOp... method __rand__ (line 1033) | def __rand__(self, other: typing.SupportsInt) -> QLocalServer.Socket... method __ror__ (line 1034) | def __ror__(self, other: typing.SupportsInt) -> QLocalServer.SocketO... method __rxor__ (line 1035) | def __rxor__(self, other: typing.SupportsInt) -> QLocalServer.Socket... method __xor__ (line 1036) | def __xor__(self, other: typing.SupportsInt) -> QLocalServer.SocketO... method __init__ (line 1044) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method close (line 1045) | def close(self) -> None: ... method errorString (line 1046) | def errorString(self) -> str: ... method fullServerName (line 1047) | def fullServerName(self) -> str: ... method hasPendingConnections (line 1048) | def hasPendingConnections(self) -> bool: ... method incomingConnection (line 1049) | def incomingConnection(self, socketDescriptor: int) -> None: ... method isListening (line 1050) | def isListening(self) -> bool: ... method listen (line 1052) | def listen(self, socketDescriptor: int) -> bool: ... method listen (line 1054) | def listen(self, name: str) -> bool: ... method maxPendingConnections (line 1055) | def maxPendingConnections(self) -> int: ... method nextPendingConnection (line 1056) | def nextPendingConnection(self) -> QLocalSocket: ... method removeServer (line 1058) | def removeServer(name: str) -> bool: ... method serverError (line 1059) | def serverError(self) -> QAbstractSocket.SocketError: ... method serverName (line 1060) | def serverName(self) -> str: ... method setMaxPendingConnections (line 1061) | def setMaxPendingConnections(self, numConnections: int) -> None: ... method setSocketOptions (line 1062) | def setSocketOptions(self, options: QLocalServer.SocketOptions | QLoca... method socketDescriptor (line 1063) | def socketDescriptor(self) -> int: ... method socketOptions (line 1064) | def socketOptions(self) -> QLocalServer.SocketOptions | QLocalServer.S... method waitForNewConnection (line 1065) | def waitForNewConnection(self, msec: int) -> tuple[bool, bool]: ... class QLocalSocket (line 1067) | class QLocalSocket(PySide2.QtCore.QIODevice): class LocalSocketError (line 1068) | class LocalSocketError: method __init__ (line 1083) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1084) | def __add__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __and__ (line 1085) | def __and__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __bool__ (line 1086) | def __bool__(self) -> bool: ... method __eq__ (line 1087) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1088) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1089) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1090) | def __hash__(self) -> int: ... method __index__ (line 1091) | def __index__(self) -> int: ... method __int__ (line 1092) | def __int__(self) -> int: ... method __le__ (line 1093) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1094) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1095) | def __mul__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __ne__ (line 1096) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1097) | def __or__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSoc... method __pos__ (line 1098) | def __pos__(self): ... method __radd__ (line 1099) | def __radd__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __rand__ (line 1100) | def __rand__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __rmul__ (line 1101) | def __rmul__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __ror__ (line 1102) | def __ror__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __rsub__ (line 1103) | def __rsub__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __rxor__ (line 1104) | def __rxor__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __sub__ (line 1105) | def __sub__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __xor__ (line 1106) | def __xor__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... class LocalSocketState (line 1108) | class LocalSocketState: method __init__ (line 1116) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1117) | def __add__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __and__ (line 1118) | def __and__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __bool__ (line 1119) | def __bool__(self) -> bool: ... method __eq__ (line 1120) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1121) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1122) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1123) | def __hash__(self) -> int: ... method __index__ (line 1124) | def __index__(self) -> int: ... method __int__ (line 1125) | def __int__(self) -> int: ... method __le__ (line 1126) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1127) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1128) | def __mul__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __ne__ (line 1129) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1130) | def __or__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSoc... method __pos__ (line 1131) | def __pos__(self): ... method __radd__ (line 1132) | def __radd__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __rand__ (line 1133) | def __rand__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __rmul__ (line 1134) | def __rmul__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __ror__ (line 1135) | def __ror__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __rsub__ (line 1136) | def __rsub__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __rxor__ (line 1137) | def __rxor__(self, other: typing.SupportsInt) -> QLocalSocket.LocalS... method __sub__ (line 1138) | def __sub__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __xor__ (line 1139) | def __xor__(self, other: typing.SupportsInt) -> QLocalSocket.LocalSo... method __init__ (line 1161) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aboutT... method abort (line 1162) | def abort(self) -> None: ... method bytesAvailable (line 1163) | def bytesAvailable(self) -> int: ... method bytesToWrite (line 1164) | def bytesToWrite(self) -> int: ... method canReadLine (line 1165) | def canReadLine(self) -> bool: ... method close (line 1166) | def close(self) -> None: ... method connectToServer (line 1168) | def connectToServer(self, name: str, openMode: PySide2.QtCore.QIODevic... method connectToServer (line 1170) | def connectToServer(self, openMode: PySide2.QtCore.QIODevice.OpenMode ... method disconnectFromServer (line 1171) | def disconnectFromServer(self) -> None: ... method flush (line 1172) | def flush(self) -> bool: ... method fullServerName (line 1173) | def fullServerName(self) -> str: ... method isSequential (line 1174) | def isSequential(self) -> bool: ... method isValid (line 1175) | def isValid(self) -> bool: ... method open (line 1176) | def open(self, openMode: PySide2.QtCore.QIODevice.OpenMode | PySide2.Q... method readBufferSize (line 1177) | def readBufferSize(self) -> int: ... method readData (line 1178) | def readData(self, arg__1: bytes, arg__2: int) -> int: ... method serverName (line 1179) | def serverName(self) -> str: ... method setReadBufferSize (line 1180) | def setReadBufferSize(self, size: int) -> None: ... method setServerName (line 1181) | def setServerName(self, name: str) -> None: ... method setSocketDescriptor (line 1182) | def setSocketDescriptor(self, socketDescriptor: int, socketState: QLoc... method socketDescriptor (line 1183) | def socketDescriptor(self) -> int: ... method state (line 1184) | def state(self) -> QLocalSocket.LocalSocketState: ... method waitForBytesWritten (line 1185) | def waitForBytesWritten(self, msecs: int = ...) -> bool: ... method waitForConnected (line 1186) | def waitForConnected(self, msecs: int = ...) -> bool: ... method waitForDisconnected (line 1187) | def waitForDisconnected(self, msecs: int = ...) -> bool: ... method waitForReadyRead (line 1188) | def waitForReadyRead(self, msecs: int = ...) -> bool: ... method writeData (line 1189) | def writeData(self, arg__1: bytes, arg__2: int) -> int: ... class QNetworkAccessManager (line 1191) | class QNetworkAccessManager(PySide2.QtCore.QObject): class NetworkAccessibility (line 1192) | class NetworkAccessibility: method __init__ (line 1199) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1200) | def __add__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __and__ (line 1201) | def __and__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __bool__ (line 1202) | def __bool__(self) -> bool: ... method __eq__ (line 1203) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1204) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1205) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1206) | def __hash__(self) -> int: ... method __index__ (line 1207) | def __index__(self) -> int: ... method __int__ (line 1208) | def __int__(self) -> int: ... method __le__ (line 1209) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1210) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1211) | def __mul__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __ne__ (line 1212) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1213) | def __or__(self, other: typing.SupportsInt) -> QNetworkAccessManager... method __pos__ (line 1214) | def __pos__(self): ... method __radd__ (line 1215) | def __radd__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __rand__ (line 1216) | def __rand__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __rmul__ (line 1217) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __ror__ (line 1218) | def __ror__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __rsub__ (line 1219) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __rxor__ (line 1220) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __sub__ (line 1221) | def __sub__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __xor__ (line 1222) | def __xor__(self, other: typing.SupportsInt) -> QNetworkAccessManage... class Operation (line 1224) | class Operation: method __init__ (line 1235) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1236) | def __add__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __and__ (line 1237) | def __and__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __bool__ (line 1238) | def __bool__(self) -> bool: ... method __eq__ (line 1239) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1240) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1241) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1242) | def __hash__(self) -> int: ... method __index__ (line 1243) | def __index__(self) -> int: ... method __int__ (line 1244) | def __int__(self) -> int: ... method __le__ (line 1245) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1246) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1247) | def __mul__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __ne__ (line 1248) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1249) | def __or__(self, other: typing.SupportsInt) -> QNetworkAccessManager... method __pos__ (line 1250) | def __pos__(self): ... method __radd__ (line 1251) | def __radd__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __rand__ (line 1252) | def __rand__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __rmul__ (line 1253) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __ror__ (line 1254) | def __ror__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __rsub__ (line 1255) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __rxor__ (line 1256) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkAccessManag... method __sub__ (line 1257) | def __sub__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __xor__ (line 1258) | def __xor__(self, other: typing.SupportsInt) -> QNetworkAccessManage... method __init__ (line 1278) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., authen... method activeConfiguration (line 1279) | def activeConfiguration(self) -> QNetworkConfiguration: ... method addStrictTransportSecurityHosts (line 1280) | def addStrictTransportSecurityHosts(self, knownHosts: list[QHstsPolicy... method autoDeleteReplies (line 1281) | def autoDeleteReplies(self) -> bool: ... method cache (line 1282) | def cache(self) -> QAbstractNetworkCache: ... method clearAccessCache (line 1283) | def clearAccessCache(self) -> None: ... method clearConnectionCache (line 1284) | def clearConnectionCache(self) -> None: ... method configuration (line 1285) | def configuration(self) -> QNetworkConfiguration: ... method connectToHost (line 1286) | def connectToHost(self, hostName: str, port: int = ...) -> None: ... method connectToHostEncrypted (line 1288) | def connectToHostEncrypted(self, hostName: str, port: int, sslConfigur... method connectToHostEncrypted (line 1290) | def connectToHostEncrypted(self, hostName: str, port: int = ..., sslCo... method cookieJar (line 1291) | def cookieJar(self) -> QNetworkCookieJar: ... method createRequest (line 1292) | def createRequest(self, op: QNetworkAccessManager.Operation, request: ... method deleteResource (line 1293) | def deleteResource(self, request: QNetworkRequest) -> QNetworkReply: ... method enableStrictTransportSecurityStore (line 1294) | def enableStrictTransportSecurityStore(self, enabled: bool, storeDir: ... method get (line 1295) | def get(self, request: QNetworkRequest) -> QNetworkReply: ... method head (line 1296) | def head(self, request: QNetworkRequest) -> QNetworkReply: ... method isStrictTransportSecurityEnabled (line 1297) | def isStrictTransportSecurityEnabled(self) -> bool: ... method isStrictTransportSecurityStoreEnabled (line 1298) | def isStrictTransportSecurityStoreEnabled(self) -> bool: ... method networkAccessible (line 1299) | def networkAccessible(self) -> QNetworkAccessManager.NetworkAccessibil... method post (line 1301) | def post(self, request: QNetworkRequest, multiPart: QHttpMultiPart) ->... method post (line 1303) | def post(self, request: QNetworkRequest, data: PySide2.QtCore.QByteArr... method post (line 1305) | def post(self, request: QNetworkRequest, data: PySide2.QtCore.QIODevic... method proxy (line 1306) | def proxy(self) -> QNetworkProxy: ... method proxyFactory (line 1307) | def proxyFactory(self) -> QNetworkProxyFactory: ... method put (line 1309) | def put(self, request: QNetworkRequest, multiPart: QHttpMultiPart) -> ... method put (line 1311) | def put(self, request: QNetworkRequest, data: PySide2.QtCore.QByteArra... method put (line 1313) | def put(self, request: QNetworkRequest, data: PySide2.QtCore.QIODevice... method redirectPolicy (line 1314) | def redirectPolicy(self) -> QNetworkRequest.RedirectPolicy: ... method sendCustomRequest (line 1316) | def sendCustomRequest(self, request: QNetworkRequest, verb: PySide2.Qt... method sendCustomRequest (line 1318) | def sendCustomRequest(self, request: QNetworkRequest, verb: PySide2.Qt... method sendCustomRequest (line 1320) | def sendCustomRequest(self, request: QNetworkRequest, verb: PySide2.Qt... method setAutoDeleteReplies (line 1321) | def setAutoDeleteReplies(self, autoDelete: bool) -> None: ... method setCache (line 1322) | def setCache(self, cache: QAbstractNetworkCache) -> None: ... method setConfiguration (line 1323) | def setConfiguration(self, config: QNetworkConfiguration) -> None: ... method setCookieJar (line 1324) | def setCookieJar(self, cookieJar: QNetworkCookieJar) -> None: ... method setNetworkAccessible (line 1325) | def setNetworkAccessible(self, accessible: QNetworkAccessManager.Netwo... method setProxy (line 1326) | def setProxy(self, proxy: QNetworkProxy) -> None: ... method setProxyFactory (line 1327) | def setProxyFactory(self, factory: QNetworkProxyFactory) -> None: ... method setRedirectPolicy (line 1328) | def setRedirectPolicy(self, policy: QNetworkRequest.RedirectPolicy) ->... method setStrictTransportSecurityEnabled (line 1329) | def setStrictTransportSecurityEnabled(self, enabled: bool) -> None: ... method setTransferTimeout (line 1330) | def setTransferTimeout(self, timeout: int = ...) -> None: ... method strictTransportSecurityHosts (line 1331) | def strictTransportSecurityHosts(self) -> list[QHstsPolicy]: ... method supportedSchemes (line 1332) | def supportedSchemes(self) -> list[str]: ... method supportedSchemesImplementation (line 1333) | def supportedSchemesImplementation(self) -> list[str]: ... method transferTimeout (line 1334) | def transferTimeout(self) -> int: ... class QNetworkAddressEntry (line 1336) | class QNetworkAddressEntry(shiboken2.Object): class DnsEligibilityStatus (line 1337) | class DnsEligibilityStatus: method __init__ (line 1344) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1345) | def __add__(self, other: typing.SupportsInt) -> QNetworkAddressEntry... method __and__ (line 1346) | def __and__(self, other: typing.SupportsInt) -> QNetworkAddressEntry... method __bool__ (line 1347) | def __bool__(self) -> bool: ... method __eq__ (line 1348) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1349) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1350) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1351) | def __hash__(self) -> int: ... method __index__ (line 1352) | def __index__(self) -> int: ... method __int__ (line 1353) | def __int__(self) -> int: ... method __le__ (line 1354) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1355) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1356) | def __mul__(self, other: typing.SupportsInt) -> QNetworkAddressEntry... method __ne__ (line 1357) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1358) | def __or__(self, other: typing.SupportsInt) -> QNetworkAddressEntry.... method __pos__ (line 1359) | def __pos__(self): ... method __radd__ (line 1360) | def __radd__(self, other: typing.SupportsInt) -> QNetworkAddressEntr... method __rand__ (line 1361) | def __rand__(self, other: typing.SupportsInt) -> QNetworkAddressEntr... method __rmul__ (line 1362) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkAddressEntr... method __ror__ (line 1363) | def __ror__(self, other: typing.SupportsInt) -> QNetworkAddressEntry... method __rsub__ (line 1364) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkAddressEntr... method __rxor__ (line 1365) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkAddressEntr... method __sub__ (line 1366) | def __sub__(self, other: typing.SupportsInt) -> QNetworkAddressEntry... method __xor__ (line 1367) | def __xor__(self, other: typing.SupportsInt) -> QNetworkAddressEntry... method __init__ (line 1372) | def __init__(self, other: QNetworkAddressEntry) -> None: ... method __init__ (line 1374) | def __init__(self) -> None: ... method broadcast (line 1375) | def broadcast(self) -> QHostAddress: ... method clearAddressLifetime (line 1376) | def clearAddressLifetime(self) -> None: ... method dnsEligibility (line 1377) | def dnsEligibility(self) -> QNetworkAddressEntry.DnsEligibilityStatus:... method ip (line 1378) | def ip(self) -> QHostAddress: ... method isLifetimeKnown (line 1379) | def isLifetimeKnown(self) -> bool: ... method isPermanent (line 1380) | def isPermanent(self) -> bool: ... method isTemporary (line 1381) | def isTemporary(self) -> bool: ... method netmask (line 1382) | def netmask(self) -> QHostAddress: ... method preferredLifetime (line 1383) | def preferredLifetime(self) -> PySide2.QtCore.QDeadlineTimer: ... method prefixLength (line 1384) | def prefixLength(self) -> int: ... method setAddressLifetime (line 1385) | def setAddressLifetime(self, preferred: PySide2.QtCore.QDeadlineTimer,... method setBroadcast (line 1386) | def setBroadcast(self, newBroadcast: QHostAddress) -> None: ... method setDnsEligibility (line 1387) | def setDnsEligibility(self, status: QNetworkAddressEntry.DnsEligibilit... method setIp (line 1388) | def setIp(self, newIp: QHostAddress) -> None: ... method setNetmask (line 1389) | def setNetmask(self, newNetmask: QHostAddress) -> None: ... method setPrefixLength (line 1390) | def setPrefixLength(self, length: int) -> None: ... method swap (line 1391) | def swap(self, other: QNetworkAddressEntry) -> None: ... method validityLifetime (line 1392) | def validityLifetime(self) -> PySide2.QtCore.QDeadlineTimer: ... method __copy__ (line 1393) | def __copy__(self) -> None: ... method __eq__ (line 1394) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1395) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1396) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1397) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1398) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1399) | def __ne__(self, other: object) -> bool: ... class QNetworkCacheMetaData (line 1401) | class QNetworkCacheMetaData(shiboken2.Object): method __init__ (line 1403) | def __init__(self, other: QNetworkCacheMetaData) -> None: ... method __init__ (line 1405) | def __init__(self) -> None: ... method attributes (line 1406) | def attributes(self) -> dict[QNetworkRequest.Attribute, typing.Any]: ... method expirationDate (line 1407) | def expirationDate(self) -> PySide2.QtCore.QDateTime: ... method isValid (line 1408) | def isValid(self) -> bool: ... method lastModified (line 1409) | def lastModified(self) -> PySide2.QtCore.QDateTime: ... method rawHeaders (line 1410) | def rawHeaders(self) -> list[tuple[PySide2.QtCore.QByteArray, PySide2.... method saveToDisk (line 1411) | def saveToDisk(self) -> bool: ... method setAttributes (line 1412) | def setAttributes(self, attributes: dict[QNetworkRequest.Attribute, ty... method setExpirationDate (line 1413) | def setExpirationDate(self, dateTime: PySide2.QtCore.QDateTime | datet... method setLastModified (line 1414) | def setLastModified(self, dateTime: PySide2.QtCore.QDateTime | datetim... method setRawHeaders (line 1415) | def setRawHeaders(self, headers: typing.Iterable[tuple[PySide2.QtCore.... method setSaveToDisk (line 1416) | def setSaveToDisk(self, allow: bool) -> None: ... method setUrl (line 1417) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method swap (line 1418) | def swap(self, other: QNetworkCacheMetaData) -> None: ... method url (line 1419) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 1420) | def __copy__(self) -> None: ... method __eq__ (line 1421) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1422) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1423) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1424) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1425) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 1426) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1427) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1428) | def __rlshift__(self, other): ... method __rrshift__ (line 1429) | def __rrshift__(self, other): ... method __rshift__ (line 1430) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QNetworkConfiguration (line 1432) | class QNetworkConfiguration(shiboken2.Object): class BearerType (line 1433) | class BearerType: method __init__ (line 1450) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1451) | def __add__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __and__ (line 1452) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1453) | def __bool__(self) -> bool: ... method __eq__ (line 1454) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1455) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1456) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1457) | def __hash__(self) -> int: ... method __index__ (line 1458) | def __index__(self) -> int: ... method __int__ (line 1459) | def __int__(self) -> int: ... method __le__ (line 1460) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1461) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1462) | def __mul__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __ne__ (line 1463) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1464) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __pos__ (line 1465) | def __pos__(self): ... method __radd__ (line 1466) | def __radd__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rand__ (line 1467) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rmul__ (line 1468) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1469) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rsub__ (line 1470) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rxor__ (line 1471) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __sub__ (line 1472) | def __sub__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __xor__ (line 1473) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... class Purpose (line 1475) | class Purpose: method __init__ (line 1483) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1484) | def __add__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __and__ (line 1485) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1486) | def __bool__(self) -> bool: ... method __eq__ (line 1487) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1488) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1489) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1490) | def __hash__(self) -> int: ... method __index__ (line 1491) | def __index__(self) -> int: ... method __int__ (line 1492) | def __int__(self) -> int: ... method __le__ (line 1493) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1494) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1495) | def __mul__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __ne__ (line 1496) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1497) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __pos__ (line 1498) | def __pos__(self): ... method __radd__ (line 1499) | def __radd__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rand__ (line 1500) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rmul__ (line 1501) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1502) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rsub__ (line 1503) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rxor__ (line 1504) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __sub__ (line 1505) | def __sub__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __xor__ (line 1506) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... class StateFlag (line 1508) | class StateFlag: method __init__ (line 1516) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1517) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1518) | def __bool__(self) -> bool: ... method __eq__ (line 1519) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1520) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1521) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1522) | def __hash__(self) -> int: ... method __index__ (line 1523) | def __index__(self) -> int: ... method __int__ (line 1524) | def __int__(self) -> int: ... method __invert__ (line 1525) | def __invert__(self) -> QNetworkConfiguration.StateFlags: ... method __le__ (line 1526) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1527) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1528) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1529) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __rand__ (line 1530) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1531) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rxor__ (line 1532) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __xor__ (line 1533) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... class StateFlags (line 1535) | class StateFlags: method __init__ (line 1537) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1538) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1539) | def __bool__(self) -> bool: ... method __eq__ (line 1540) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1541) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1542) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1543) | def __index__(self) -> int: ... method __int__ (line 1544) | def __int__(self) -> int: ... method __invert__ (line 1545) | def __invert__(self) -> QNetworkConfiguration.StateFlags: ... method __le__ (line 1546) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1547) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1548) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1549) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __rand__ (line 1550) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1551) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rxor__ (line 1552) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __xor__ (line 1553) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... class Type (line 1555) | class Type: method __init__ (line 1563) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1564) | def __add__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __and__ (line 1565) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1566) | def __bool__(self) -> bool: ... method __eq__ (line 1567) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1568) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1569) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1570) | def __hash__(self) -> int: ... method __index__ (line 1571) | def __index__(self) -> int: ... method __int__ (line 1572) | def __int__(self) -> int: ... method __le__ (line 1573) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1574) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1575) | def __mul__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __ne__ (line 1576) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1577) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __pos__ (line 1578) | def __pos__(self): ... method __radd__ (line 1579) | def __radd__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rand__ (line 1580) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rmul__ (line 1581) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1582) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rsub__ (line 1583) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __rxor__ (line 1584) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __sub__ (line 1585) | def __sub__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __xor__ (line 1586) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __init__ (line 1613) | def __init__(self, other: QNetworkConfiguration) -> None: ... method __init__ (line 1615) | def __init__(self) -> None: ... method bearerType (line 1616) | def bearerType(self) -> QNetworkConfiguration.BearerType: ... method bearerTypeFamily (line 1617) | def bearerTypeFamily(self) -> QNetworkConfiguration.BearerType: ... method bearerTypeName (line 1618) | def bearerTypeName(self) -> str: ... method children (line 1619) | def children(self) -> list[QNetworkConfiguration]: ... method connectTimeout (line 1620) | def connectTimeout(self) -> int: ... method identifier (line 1621) | def identifier(self) -> str: ... method isRoamingAvailable (line 1622) | def isRoamingAvailable(self) -> bool: ... method isValid (line 1623) | def isValid(self) -> bool: ... method name (line 1624) | def name(self) -> str: ... method purpose (line 1625) | def purpose(self) -> QNetworkConfiguration.Purpose: ... method setConnectTimeout (line 1626) | def setConnectTimeout(self, timeout: int) -> bool: ... method state (line 1627) | def state(self) -> QNetworkConfiguration.StateFlags | QNetworkConfigur... method swap (line 1628) | def swap(self, other: QNetworkConfiguration) -> None: ... method type (line 1629) | def type(self) -> QNetworkConfiguration.Type: ... method __copy__ (line 1630) | def __copy__(self) -> None: ... method __eq__ (line 1631) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1632) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1633) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1634) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1635) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1636) | def __ne__(self, other: object) -> bool: ... class QNetworkConfigurationManager (line 1638) | class QNetworkConfigurationManager(PySide2.QtCore.QObject): class Capabilities (line 1639) | class Capabilities: method __init__ (line 1641) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1642) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1643) | def __bool__(self) -> bool: ... method __eq__ (line 1644) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1645) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1646) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1647) | def __index__(self) -> int: ... method __int__ (line 1648) | def __int__(self) -> int: ... method __invert__ (line 1649) | def __invert__(self) -> QNetworkConfigurationManager.Capabilities: ... method __le__ (line 1650) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1651) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1652) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1653) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __rand__ (line 1654) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1655) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rxor__ (line 1656) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __xor__ (line 1657) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... class Capability (line 1659) | class Capability: method __init__ (line 1670) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1671) | def __and__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __bool__ (line 1672) | def __bool__(self) -> bool: ... method __eq__ (line 1673) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1674) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1675) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1676) | def __hash__(self) -> int: ... method __index__ (line 1677) | def __index__(self) -> int: ... method __int__ (line 1678) | def __int__(self) -> int: ... method __invert__ (line 1679) | def __invert__(self) -> QNetworkConfigurationManager.Capabilities: ... method __le__ (line 1680) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1681) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1682) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1683) | def __or__(self, other: typing.SupportsInt) -> QNetworkConfiguration... method __rand__ (line 1684) | def __rand__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __ror__ (line 1685) | def __ror__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __rxor__ (line 1686) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkConfigurati... method __xor__ (line 1687) | def __xor__(self, other: typing.SupportsInt) -> QNetworkConfiguratio... method __init__ (line 1701) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., config... method allConfigurations (line 1702) | def allConfigurations(self, flags: QNetworkConfiguration.StateFlags | ... method capabilities (line 1703) | def capabilities(self) -> QNetworkConfigurationManager.Capabilities | ... method configurationFromIdentifier (line 1704) | def configurationFromIdentifier(self, identifier: str) -> QNetworkConf... method defaultConfiguration (line 1705) | def defaultConfiguration(self) -> QNetworkConfiguration: ... method isOnline (line 1706) | def isOnline(self) -> bool: ... method updateConfigurations (line 1707) | def updateConfigurations(self) -> None: ... class QNetworkCookie (line 1709) | class QNetworkCookie(shiboken2.Object): class RawForm (line 1710) | class RawForm: method __init__ (line 1716) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1717) | def __add__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFo... method __and__ (line 1718) | def __and__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFo... method __bool__ (line 1719) | def __bool__(self) -> bool: ... method __eq__ (line 1720) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1721) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1722) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1723) | def __hash__(self) -> int: ... method __index__ (line 1724) | def __index__(self) -> int: ... method __int__ (line 1725) | def __int__(self) -> int: ... method __le__ (line 1726) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1727) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1728) | def __mul__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFo... method __ne__ (line 1729) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1730) | def __or__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFor... method __pos__ (line 1731) | def __pos__(self): ... method __radd__ (line 1732) | def __radd__(self, other: typing.SupportsInt) -> QNetworkCookie.RawF... method __rand__ (line 1733) | def __rand__(self, other: typing.SupportsInt) -> QNetworkCookie.RawF... method __rmul__ (line 1734) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkCookie.RawF... method __ror__ (line 1735) | def __ror__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFo... method __rsub__ (line 1736) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkCookie.RawF... method __rxor__ (line 1737) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkCookie.RawF... method __sub__ (line 1738) | def __sub__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFo... method __xor__ (line 1739) | def __xor__(self, other: typing.SupportsInt) -> QNetworkCookie.RawFo... method __init__ (line 1743) | def __init__(self, name: PySide2.QtCore.QByteArray | bytes = ..., valu... method __init__ (line 1745) | def __init__(self, other: QNetworkCookie) -> None: ... method domain (line 1746) | def domain(self) -> str: ... method expirationDate (line 1747) | def expirationDate(self) -> PySide2.QtCore.QDateTime: ... method hasSameIdentifier (line 1748) | def hasSameIdentifier(self, other: QNetworkCookie) -> bool: ... method isHttpOnly (line 1749) | def isHttpOnly(self) -> bool: ... method isSecure (line 1750) | def isSecure(self) -> bool: ... method isSessionCookie (line 1751) | def isSessionCookie(self) -> bool: ... method name (line 1752) | def name(self) -> PySide2.QtCore.QByteArray: ... method normalize (line 1753) | def normalize(self, url: PySide2.QtCore.QUrl) -> None: ... method parseCookies (line 1755) | def parseCookies(cookieString: PySide2.QtCore.QByteArray | bytes) -> l... method path (line 1756) | def path(self) -> str: ... method setDomain (line 1757) | def setDomain(self, domain: str) -> None: ... method setExpirationDate (line 1758) | def setExpirationDate(self, date: PySide2.QtCore.QDateTime | datetime.... method setHttpOnly (line 1759) | def setHttpOnly(self, enable: bool) -> None: ... method setName (line 1760) | def setName(self, cookieName: PySide2.QtCore.QByteArray | bytes) -> No... method setPath (line 1761) | def setPath(self, path: str) -> None: ... method setSecure (line 1762) | def setSecure(self, enable: bool) -> None: ... method setValue (line 1763) | def setValue(self, value: PySide2.QtCore.QByteArray | bytes) -> None: ... method swap (line 1764) | def swap(self, other: QNetworkCookie) -> None: ... method toRawForm (line 1765) | def toRawForm(self, form: QNetworkCookie.RawForm = ...) -> PySide2.QtC... method value (line 1766) | def value(self) -> PySide2.QtCore.QByteArray: ... method __copy__ (line 1767) | def __copy__(self) -> None: ... method __eq__ (line 1768) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1769) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1770) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1771) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1772) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1773) | def __ne__(self, other: object) -> bool: ... class QNetworkCookieJar (line 1775) | class QNetworkCookieJar(PySide2.QtCore.QObject): method __init__ (line 1777) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method allCookies (line 1778) | def allCookies(self) -> list[QNetworkCookie]: ... method cookiesForUrl (line 1779) | def cookiesForUrl(self, url: PySide2.QtCore.QUrl) -> list[QNetworkCook... method deleteCookie (line 1780) | def deleteCookie(self, cookie: QNetworkCookie) -> bool: ... method insertCookie (line 1781) | def insertCookie(self, cookie: QNetworkCookie) -> bool: ... method setAllCookies (line 1782) | def setAllCookies(self, cookieList: typing.Iterable[QNetworkCookie]) -... method setCookiesFromUrl (line 1783) | def setCookiesFromUrl(self, cookieList: typing.Iterable[QNetworkCookie... method updateCookie (line 1784) | def updateCookie(self, cookie: QNetworkCookie) -> bool: ... method validateCookie (line 1785) | def validateCookie(self, cookie: QNetworkCookie, url: PySide2.QtCore.Q... class QNetworkDatagram (line 1787) | class QNetworkDatagram(shiboken2.Object): method __init__ (line 1789) | def __init__(self, data: PySide2.QtCore.QByteArray | bytes, destinatio... method __init__ (line 1791) | def __init__(self, other: QNetworkDatagram) -> None: ... method __init__ (line 1793) | def __init__(self) -> None: ... method clear (line 1794) | def clear(self) -> None: ... method data (line 1795) | def data(self) -> PySide2.QtCore.QByteArray: ... method destinationAddress (line 1796) | def destinationAddress(self) -> QHostAddress: ... method destinationPort (line 1797) | def destinationPort(self) -> int: ... method hopLimit (line 1798) | def hopLimit(self) -> int: ... method interfaceIndex (line 1799) | def interfaceIndex(self) -> int: ... method isNull (line 1800) | def isNull(self) -> bool: ... method isValid (line 1801) | def isValid(self) -> bool: ... method makeReply (line 1802) | def makeReply(self, payload: PySide2.QtCore.QByteArray | bytes) -> QNe... method senderAddress (line 1803) | def senderAddress(self) -> QHostAddress: ... method senderPort (line 1804) | def senderPort(self) -> int: ... method setData (line 1805) | def setData(self, data: PySide2.QtCore.QByteArray | bytes) -> None: ... method setDestination (line 1806) | def setDestination(self, address: QHostAddress, port: int) -> None: ... method setHopLimit (line 1807) | def setHopLimit(self, count: int) -> None: ... method setInterfaceIndex (line 1808) | def setInterfaceIndex(self, index: int) -> None: ... method setSender (line 1809) | def setSender(self, address: QHostAddress, port: int = ...) -> None: ... method swap (line 1810) | def swap(self, other: QNetworkDatagram) -> None: ... method __bool__ (line 1811) | def __bool__(self) -> bool: ... method __copy__ (line 1812) | def __copy__(self) -> None: ... class QNetworkDiskCache (line 1814) | class QNetworkDiskCache(QAbstractNetworkCache): method __init__ (line 1816) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method cacheDirectory (line 1817) | def cacheDirectory(self) -> str: ... method cacheSize (line 1818) | def cacheSize(self) -> int: ... method clear (line 1819) | def clear(self) -> None: ... method data (line 1820) | def data(self, url: PySide2.QtCore.QUrl) -> PySide2.QtCore.QIODevice: ... method expire (line 1821) | def expire(self) -> int: ... method fileMetaData (line 1822) | def fileMetaData(self, fileName: str) -> QNetworkCacheMetaData: ... method insert (line 1823) | def insert(self, device: PySide2.QtCore.QIODevice) -> None: ... method maximumCacheSize (line 1824) | def maximumCacheSize(self) -> int: ... method metaData (line 1825) | def metaData(self, url: PySide2.QtCore.QUrl) -> QNetworkCacheMetaData:... method prepare (line 1826) | def prepare(self, metaData: QNetworkCacheMetaData) -> PySide2.QtCore.Q... method remove (line 1827) | def remove(self, url: PySide2.QtCore.QUrl) -> bool: ... method setCacheDirectory (line 1828) | def setCacheDirectory(self, cacheDir: str) -> None: ... method setMaximumCacheSize (line 1829) | def setMaximumCacheSize(self, size: int) -> None: ... method updateMetaData (line 1830) | def updateMetaData(self, metaData: QNetworkCacheMetaData) -> None: ... class QNetworkInterface (line 1832) | class QNetworkInterface(shiboken2.Object): class InterfaceFlag (line 1833) | class InterfaceFlag: method __init__ (line 1843) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1844) | def __and__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __bool__ (line 1845) | def __bool__(self) -> bool: ... method __eq__ (line 1846) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1847) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1848) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1849) | def __hash__(self) -> int: ... method __index__ (line 1850) | def __index__(self) -> int: ... method __int__ (line 1851) | def __int__(self) -> int: ... method __invert__ (line 1852) | def __invert__(self) -> QNetworkInterface.InterfaceFlags: ... method __le__ (line 1853) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1854) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1855) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1856) | def __or__(self, other: typing.SupportsInt) -> QNetworkInterface.Int... method __rand__ (line 1857) | def __rand__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __ror__ (line 1858) | def __ror__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __rxor__ (line 1859) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __xor__ (line 1860) | def __xor__(self, other: typing.SupportsInt) -> QNetworkInterface.In... class InterfaceFlags (line 1862) | class InterfaceFlags: method __init__ (line 1864) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1865) | def __and__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __bool__ (line 1866) | def __bool__(self) -> bool: ... method __eq__ (line 1867) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1868) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1869) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1870) | def __index__(self) -> int: ... method __int__ (line 1871) | def __int__(self) -> int: ... method __invert__ (line 1872) | def __invert__(self) -> QNetworkInterface.InterfaceFlags: ... method __le__ (line 1873) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1874) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1875) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1876) | def __or__(self, other: typing.SupportsInt) -> QNetworkInterface.Int... method __rand__ (line 1877) | def __rand__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __ror__ (line 1878) | def __ror__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __rxor__ (line 1879) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __xor__ (line 1880) | def __xor__(self, other: typing.SupportsInt) -> QNetworkInterface.In... class InterfaceType (line 1882) | class InterfaceType: method __init__ (line 1901) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1902) | def __add__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __and__ (line 1903) | def __and__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __bool__ (line 1904) | def __bool__(self) -> bool: ... method __eq__ (line 1905) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1906) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1907) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1908) | def __hash__(self) -> int: ... method __index__ (line 1909) | def __index__(self) -> int: ... method __int__ (line 1910) | def __int__(self) -> int: ... method __le__ (line 1911) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1912) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1913) | def __mul__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __ne__ (line 1914) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1915) | def __or__(self, other: typing.SupportsInt) -> QNetworkInterface.Int... method __pos__ (line 1916) | def __pos__(self): ... method __radd__ (line 1917) | def __radd__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __rand__ (line 1918) | def __rand__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __rmul__ (line 1919) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __ror__ (line 1920) | def __ror__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __rsub__ (line 1921) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __rxor__ (line 1922) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkInterface.I... method __sub__ (line 1923) | def __sub__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __xor__ (line 1924) | def __xor__(self, other: typing.SupportsInt) -> QNetworkInterface.In... method __init__ (line 1947) | def __init__(self, other: QNetworkInterface) -> None: ... method __init__ (line 1949) | def __init__(self) -> None: ... method addressEntries (line 1950) | def addressEntries(self) -> list[QNetworkAddressEntry]: ... method allAddresses (line 1952) | def allAddresses() -> list[QHostAddress]: ... method allInterfaces (line 1954) | def allInterfaces() -> list[QNetworkInterface]: ... method flags (line 1955) | def flags(self) -> QNetworkInterface.InterfaceFlags | QNetworkInterfac... method hardwareAddress (line 1956) | def hardwareAddress(self) -> str: ... method humanReadableName (line 1957) | def humanReadableName(self) -> str: ... method index (line 1958) | def index(self) -> int: ... method interfaceFromIndex (line 1960) | def interfaceFromIndex(index: int) -> QNetworkInterface: ... method interfaceFromName (line 1962) | def interfaceFromName(name: str) -> QNetworkInterface: ... method interfaceIndexFromName (line 1964) | def interfaceIndexFromName(name: str) -> int: ... method interfaceNameFromIndex (line 1966) | def interfaceNameFromIndex(index: int) -> str: ... method isValid (line 1967) | def isValid(self) -> bool: ... method maximumTransmissionUnit (line 1968) | def maximumTransmissionUnit(self) -> int: ... method name (line 1969) | def name(self) -> str: ... method swap (line 1970) | def swap(self, other: QNetworkInterface) -> None: ... method type (line 1971) | def type(self) -> QNetworkInterface.InterfaceType: ... method __copy__ (line 1972) | def __copy__(self) -> None: ... class QNetworkProxy (line 1974) | class QNetworkProxy(shiboken2.Object): class Capabilities (line 1975) | class Capabilities: method __init__ (line 1977) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1978) | def __and__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabi... method __bool__ (line 1979) | def __bool__(self) -> bool: ... method __eq__ (line 1980) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1981) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1982) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1983) | def __index__(self) -> int: ... method __int__ (line 1984) | def __int__(self) -> int: ... method __invert__ (line 1985) | def __invert__(self) -> QNetworkProxy.Capabilities: ... method __le__ (line 1986) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1987) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1988) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1989) | def __or__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabil... method __rand__ (line 1990) | def __rand__(self, other: typing.SupportsInt) -> QNetworkProxy.Capab... method __ror__ (line 1991) | def __ror__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabi... method __rxor__ (line 1992) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkProxy.Capab... method __xor__ (line 1993) | def __xor__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabi... class Capability (line 1995) | class Capability: method __init__ (line 2006) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2007) | def __and__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabi... method __bool__ (line 2008) | def __bool__(self) -> bool: ... method __eq__ (line 2009) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2010) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2011) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2012) | def __hash__(self) -> int: ... method __index__ (line 2013) | def __index__(self) -> int: ... method __int__ (line 2014) | def __int__(self) -> int: ... method __invert__ (line 2015) | def __invert__(self) -> QNetworkProxy.Capabilities: ... method __le__ (line 2016) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2017) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2018) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2019) | def __or__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabil... method __rand__ (line 2020) | def __rand__(self, other: typing.SupportsInt) -> QNetworkProxy.Capab... method __ror__ (line 2021) | def __ror__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabi... method __rxor__ (line 2022) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkProxy.Capab... method __xor__ (line 2023) | def __xor__(self, other: typing.SupportsInt) -> QNetworkProxy.Capabi... class ProxyType (line 2025) | class ProxyType: method __init__ (line 2035) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2036) | def __add__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyT... method __and__ (line 2037) | def __and__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyT... method __bool__ (line 2038) | def __bool__(self) -> bool: ... method __eq__ (line 2039) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2040) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2041) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2042) | def __hash__(self) -> int: ... method __index__ (line 2043) | def __index__(self) -> int: ... method __int__ (line 2044) | def __int__(self) -> int: ... method __le__ (line 2045) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2046) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2047) | def __mul__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyT... method __ne__ (line 2048) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2049) | def __or__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyTy... method __pos__ (line 2050) | def __pos__(self): ... method __radd__ (line 2051) | def __radd__(self, other: typing.SupportsInt) -> QNetworkProxy.Proxy... method __rand__ (line 2052) | def __rand__(self, other: typing.SupportsInt) -> QNetworkProxy.Proxy... method __rmul__ (line 2053) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkProxy.Proxy... method __ror__ (line 2054) | def __ror__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyT... method __rsub__ (line 2055) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkProxy.Proxy... method __rxor__ (line 2056) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkProxy.Proxy... method __sub__ (line 2057) | def __sub__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyT... method __xor__ (line 2058) | def __xor__(self, other: typing.SupportsInt) -> QNetworkProxy.ProxyT... method __init__ (line 2073) | def __init__(self, type: QNetworkProxy.ProxyType, hostName: str = ...,... method __init__ (line 2075) | def __init__(self, other: QNetworkProxy) -> None: ... method __init__ (line 2077) | def __init__(self) -> None: ... method applicationProxy (line 2079) | def applicationProxy() -> QNetworkProxy: ... method capabilities (line 2080) | def capabilities(self) -> QNetworkProxy.Capabilities | QNetworkProxy.C... method hasRawHeader (line 2081) | def hasRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) ... method header (line 2082) | def header(self, header: QNetworkRequest.KnownHeaders) -> typing.Any: ... method hostName (line 2083) | def hostName(self) -> str: ... method isCachingProxy (line 2084) | def isCachingProxy(self) -> bool: ... method isTransparentProxy (line 2085) | def isTransparentProxy(self) -> bool: ... method password (line 2086) | def password(self) -> str: ... method port (line 2087) | def port(self) -> int: ... method rawHeader (line 2088) | def rawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) -> ... method rawHeaderList (line 2089) | def rawHeaderList(self) -> list[PySide2.QtCore.QByteArray]: ... method setApplicationProxy (line 2091) | def setApplicationProxy(proxy: QNetworkProxy) -> None: ... method setCapabilities (line 2092) | def setCapabilities(self, capab: QNetworkProxy.Capabilities | QNetwork... method setHeader (line 2093) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: typin... method setHostName (line 2094) | def setHostName(self, hostName: str) -> None: ... method setPassword (line 2095) | def setPassword(self, password: str) -> None: ... method setPort (line 2096) | def setPort(self, port: int) -> None: ... method setRawHeader (line 2097) | def setRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes, ... method setType (line 2098) | def setType(self, type: QNetworkProxy.ProxyType) -> None: ... method setUser (line 2099) | def setUser(self, userName: str) -> None: ... method swap (line 2100) | def swap(self, other: QNetworkProxy) -> None: ... method type (line 2101) | def type(self) -> QNetworkProxy.ProxyType: ... method user (line 2102) | def user(self) -> str: ... method __copy__ (line 2103) | def __copy__(self) -> None: ... method __eq__ (line 2104) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2105) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2106) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2107) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2108) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2109) | def __ne__(self, other: object) -> bool: ... class QNetworkProxyFactory (line 2111) | class QNetworkProxyFactory(shiboken2.Object): method __init__ (line 2112) | def __init__(self) -> None: ... method proxyForQuery (line 2114) | def proxyForQuery(query: QNetworkProxyQuery) -> list[QNetworkProxy]: ... method queryProxy (line 2115) | def queryProxy(self, query: QNetworkProxyQuery = ...) -> list[QNetwork... method setApplicationProxyFactory (line 2117) | def setApplicationProxyFactory(factory: QNetworkProxyFactory) -> None:... method setUseSystemConfiguration (line 2119) | def setUseSystemConfiguration(enable: bool) -> None: ... method systemProxyForQuery (line 2121) | def systemProxyForQuery(query: QNetworkProxyQuery = ...) -> list[QNetw... method usesSystemConfiguration (line 2123) | def usesSystemConfiguration() -> bool: ... class QNetworkProxyQuery (line 2125) | class QNetworkProxyQuery(shiboken2.Object): class QueryType (line 2126) | class QueryType: method __init__ (line 2136) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2137) | def __add__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Q... method __and__ (line 2138) | def __and__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Q... method __bool__ (line 2139) | def __bool__(self) -> bool: ... method __eq__ (line 2140) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2141) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2142) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2143) | def __hash__(self) -> int: ... method __index__ (line 2144) | def __index__(self) -> int: ... method __int__ (line 2145) | def __int__(self) -> int: ... method __le__ (line 2146) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2147) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2148) | def __mul__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Q... method __ne__ (line 2149) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2150) | def __or__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Qu... method __pos__ (line 2151) | def __pos__(self): ... method __radd__ (line 2152) | def __radd__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.... method __rand__ (line 2153) | def __rand__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.... method __rmul__ (line 2154) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.... method __ror__ (line 2155) | def __ror__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Q... method __rsub__ (line 2156) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.... method __rxor__ (line 2157) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.... method __sub__ (line 2158) | def __sub__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Q... method __xor__ (line 2159) | def __xor__(self, other: typing.SupportsInt) -> QNetworkProxyQuery.Q... method __init__ (line 2167) | def __init__(self, networkConfiguration: QNetworkConfiguration, hostna... method __init__ (line 2169) | def __init__(self, networkConfiguration: QNetworkConfiguration, bindPo... method __init__ (line 2171) | def __init__(self, hostname: str, port: int, protocolTag: str = ..., q... method __init__ (line 2173) | def __init__(self, networkConfiguration: QNetworkConfiguration, reques... method __init__ (line 2175) | def __init__(self, bindPort: int, protocolTag: str = ..., queryType: Q... method __init__ (line 2177) | def __init__(self, requestUrl: PySide2.QtCore.QUrl, queryType: QNetwor... method __init__ (line 2179) | def __init__(self, other: QNetworkProxyQuery) -> None: ... method __init__ (line 2181) | def __init__(self) -> None: ... method localPort (line 2182) | def localPort(self) -> int: ... method networkConfiguration (line 2183) | def networkConfiguration(self) -> QNetworkConfiguration: ... method peerHostName (line 2184) | def peerHostName(self) -> str: ... method peerPort (line 2185) | def peerPort(self) -> int: ... method protocolTag (line 2186) | def protocolTag(self) -> str: ... method queryType (line 2187) | def queryType(self) -> QNetworkProxyQuery.QueryType: ... method setLocalPort (line 2188) | def setLocalPort(self, port: int) -> None: ... method setNetworkConfiguration (line 2189) | def setNetworkConfiguration(self, networkConfiguration: QNetworkConfig... method setPeerHostName (line 2190) | def setPeerHostName(self, hostname: str) -> None: ... method setPeerPort (line 2191) | def setPeerPort(self, port: int) -> None: ... method setProtocolTag (line 2192) | def setProtocolTag(self, protocolTag: str) -> None: ... method setQueryType (line 2193) | def setQueryType(self, type: QNetworkProxyQuery.QueryType) -> None: ... method setUrl (line 2194) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method swap (line 2195) | def swap(self, other: QNetworkProxyQuery) -> None: ... method url (line 2196) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 2197) | def __copy__(self) -> None: ... method __eq__ (line 2198) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2199) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2200) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2201) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2202) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2203) | def __ne__(self, other: object) -> bool: ... class QNetworkReply (line 2205) | class QNetworkReply(PySide2.QtCore.QIODevice): class NetworkError (line 2206) | class NetworkError: method __init__ (line 2244) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2245) | def __add__(self, other: typing.SupportsInt) -> QNetworkReply.Networ... method __and__ (line 2246) | def __and__(self, other: typing.SupportsInt) -> QNetworkReply.Networ... method __bool__ (line 2247) | def __bool__(self) -> bool: ... method __eq__ (line 2248) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2249) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2250) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2251) | def __hash__(self) -> int: ... method __index__ (line 2252) | def __index__(self) -> int: ... method __int__ (line 2253) | def __int__(self) -> int: ... method __le__ (line 2254) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2255) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2256) | def __mul__(self, other: typing.SupportsInt) -> QNetworkReply.Networ... method __ne__ (line 2257) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2258) | def __or__(self, other: typing.SupportsInt) -> QNetworkReply.Network... method __pos__ (line 2259) | def __pos__(self): ... method __radd__ (line 2260) | def __radd__(self, other: typing.SupportsInt) -> QNetworkReply.Netwo... method __rand__ (line 2261) | def __rand__(self, other: typing.SupportsInt) -> QNetworkReply.Netwo... method __rmul__ (line 2262) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkReply.Netwo... method __ror__ (line 2263) | def __ror__(self, other: typing.SupportsInt) -> QNetworkReply.Networ... method __rsub__ (line 2264) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkReply.Netwo... method __rxor__ (line 2265) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkReply.Netwo... method __sub__ (line 2266) | def __sub__(self, other: typing.SupportsInt) -> QNetworkReply.Networ... method __xor__ (line 2267) | def __xor__(self, other: typing.SupportsInt) -> QNetworkReply.Networ... method __init__ (line 2314) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method abort (line 2315) | def abort(self) -> None: ... method attribute (line 2316) | def attribute(self, code: QNetworkRequest.Attribute) -> typing.Any: ... method close (line 2317) | def close(self) -> None: ... method hasRawHeader (line 2318) | def hasRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) ... method header (line 2319) | def header(self, header: QNetworkRequest.KnownHeaders) -> typing.Any: ... method ignoreSslErrors (line 2321) | def ignoreSslErrors(self, errors: typing.Iterable[QSslError]) -> None:... method ignoreSslErrors (line 2323) | def ignoreSslErrors(self) -> None: ... method ignoreSslErrorsImplementation (line 2324) | def ignoreSslErrorsImplementation(self, arg__1: typing.Iterable[QSslEr... method isFinished (line 2325) | def isFinished(self) -> bool: ... method isRunning (line 2326) | def isRunning(self) -> bool: ... method isSequential (line 2327) | def isSequential(self) -> bool: ... method manager (line 2328) | def manager(self) -> QNetworkAccessManager: ... method operation (line 2329) | def operation(self) -> QNetworkAccessManager.Operation: ... method rawHeader (line 2330) | def rawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) -> ... method rawHeaderList (line 2331) | def rawHeaderList(self) -> list[PySide2.QtCore.QByteArray]: ... method rawHeaderPairs (line 2332) | def rawHeaderPairs(self) -> list[tuple[PySide2.QtCore.QByteArray, PySi... method readBufferSize (line 2333) | def readBufferSize(self) -> int: ... method request (line 2334) | def request(self) -> QNetworkRequest: ... method setAttribute (line 2335) | def setAttribute(self, code: QNetworkRequest.Attribute, value: typing.... method setError (line 2336) | def setError(self, errorCode: QNetworkReply.NetworkError, errorString:... method setFinished (line 2337) | def setFinished(self, arg__1: bool) -> None: ... method setHeader (line 2338) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: typin... method setOperation (line 2339) | def setOperation(self, operation: QNetworkAccessManager.Operation) -> ... method setRawHeader (line 2340) | def setRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes, ... method setReadBufferSize (line 2341) | def setReadBufferSize(self, size: int) -> None: ... method setRequest (line 2342) | def setRequest(self, request: QNetworkRequest) -> None: ... method setSslConfiguration (line 2343) | def setSslConfiguration(self, configuration: QSslConfiguration) -> Non... method setSslConfigurationImplementation (line 2344) | def setSslConfigurationImplementation(self, arg__1: QSslConfiguration)... method setUrl (line 2345) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method sslConfiguration (line 2346) | def sslConfiguration(self) -> QSslConfiguration: ... method sslConfigurationImplementation (line 2347) | def sslConfigurationImplementation(self, arg__1: QSslConfiguration) ->... method url (line 2348) | def url(self) -> PySide2.QtCore.QUrl: ... method writeData (line 2349) | def writeData(self, data: bytes, len: int) -> int: ... class QNetworkRequest (line 2351) | class QNetworkRequest(shiboken2.Object): class Attribute (line 2352) | class Attribute: method __init__ (line 2389) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2390) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Attr... method __and__ (line 2391) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Attr... method __bool__ (line 2392) | def __bool__(self) -> bool: ... method __eq__ (line 2393) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2394) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2395) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2396) | def __hash__(self) -> int: ... method __index__ (line 2397) | def __index__(self) -> int: ... method __int__ (line 2398) | def __int__(self) -> int: ... method __le__ (line 2399) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2400) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2401) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Attr... method __ne__ (line 2402) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2403) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.Attri... method __pos__ (line 2404) | def __pos__(self): ... method __radd__ (line 2405) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Att... method __rand__ (line 2406) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Att... method __rmul__ (line 2407) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Att... method __ror__ (line 2408) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Attr... method __rsub__ (line 2409) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Att... method __rxor__ (line 2410) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Att... method __sub__ (line 2411) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Attr... method __xor__ (line 2412) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Attr... class CacheLoadControl (line 2414) | class CacheLoadControl: method __init__ (line 2422) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2423) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Cach... method __and__ (line 2424) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Cach... method __bool__ (line 2425) | def __bool__(self) -> bool: ... method __eq__ (line 2426) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2427) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2428) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2429) | def __hash__(self) -> int: ... method __index__ (line 2430) | def __index__(self) -> int: ... method __int__ (line 2431) | def __int__(self) -> int: ... method __le__ (line 2432) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2433) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2434) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Cach... method __ne__ (line 2435) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2436) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.Cache... method __pos__ (line 2437) | def __pos__(self): ... method __radd__ (line 2438) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Cac... method __rand__ (line 2439) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Cac... method __rmul__ (line 2440) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Cac... method __ror__ (line 2441) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Cach... method __rsub__ (line 2442) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Cac... method __rxor__ (line 2443) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Cac... method __sub__ (line 2444) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Cach... method __xor__ (line 2445) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Cach... class KnownHeaders (line 2447) | class KnownHeaders: method __init__ (line 2464) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2465) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Know... method __and__ (line 2466) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Know... method __bool__ (line 2467) | def __bool__(self) -> bool: ... method __eq__ (line 2468) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2469) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2470) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2471) | def __hash__(self) -> int: ... method __index__ (line 2472) | def __index__(self) -> int: ... method __int__ (line 2473) | def __int__(self) -> int: ... method __le__ (line 2474) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2475) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2476) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Know... method __ne__ (line 2477) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2478) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.Known... method __pos__ (line 2479) | def __pos__(self): ... method __radd__ (line 2480) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Kno... method __rand__ (line 2481) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Kno... method __rmul__ (line 2482) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Kno... method __ror__ (line 2483) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Know... method __rsub__ (line 2484) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Kno... method __rxor__ (line 2485) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Kno... method __sub__ (line 2486) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Know... method __xor__ (line 2487) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Know... class LoadControl (line 2489) | class LoadControl: method __init__ (line 2495) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2496) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Load... method __and__ (line 2497) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Load... method __bool__ (line 2498) | def __bool__(self) -> bool: ... method __eq__ (line 2499) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2500) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2501) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2502) | def __hash__(self) -> int: ... method __index__ (line 2503) | def __index__(self) -> int: ... method __int__ (line 2504) | def __int__(self) -> int: ... method __le__ (line 2505) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2506) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2507) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Load... method __ne__ (line 2508) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2509) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.LoadC... method __pos__ (line 2510) | def __pos__(self): ... method __radd__ (line 2511) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Loa... method __rand__ (line 2512) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Loa... method __rmul__ (line 2513) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Loa... method __ror__ (line 2514) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Load... method __rsub__ (line 2515) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Loa... method __rxor__ (line 2516) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Loa... method __sub__ (line 2517) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Load... method __xor__ (line 2518) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Load... class Priority (line 2520) | class Priority: method __init__ (line 2527) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2528) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Prio... method __and__ (line 2529) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Prio... method __bool__ (line 2530) | def __bool__(self) -> bool: ... method __eq__ (line 2531) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2532) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2533) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2534) | def __hash__(self) -> int: ... method __index__ (line 2535) | def __index__(self) -> int: ... method __int__ (line 2536) | def __int__(self) -> int: ... method __le__ (line 2537) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2538) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2539) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Prio... method __ne__ (line 2540) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2541) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.Prior... method __pos__ (line 2542) | def __pos__(self): ... method __radd__ (line 2543) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Pri... method __rand__ (line 2544) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Pri... method __rmul__ (line 2545) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Pri... method __ror__ (line 2546) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Prio... method __rsub__ (line 2547) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Pri... method __rxor__ (line 2548) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Pri... method __sub__ (line 2549) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Prio... method __xor__ (line 2550) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Prio... class RedirectPolicy (line 2552) | class RedirectPolicy: method __init__ (line 2560) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2561) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Redi... method __and__ (line 2562) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Redi... method __bool__ (line 2563) | def __bool__(self) -> bool: ... method __eq__ (line 2564) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2565) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2566) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2567) | def __hash__(self) -> int: ... method __index__ (line 2568) | def __index__(self) -> int: ... method __int__ (line 2569) | def __int__(self) -> int: ... method __le__ (line 2570) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2571) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2572) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Redi... method __ne__ (line 2573) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2574) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.Redir... method __pos__ (line 2575) | def __pos__(self): ... method __radd__ (line 2576) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Red... method __rand__ (line 2577) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Red... method __rmul__ (line 2578) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Red... method __ror__ (line 2579) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Redi... method __rsub__ (line 2580) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Red... method __rxor__ (line 2581) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Red... method __sub__ (line 2582) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Redi... method __xor__ (line 2583) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Redi... class TransferTimeoutConstant (line 2585) | class TransferTimeoutConstant: method __init__ (line 2590) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2591) | def __add__(self, other: typing.SupportsInt) -> QNetworkRequest.Tran... method __and__ (line 2592) | def __and__(self, other: typing.SupportsInt) -> QNetworkRequest.Tran... method __bool__ (line 2593) | def __bool__(self) -> bool: ... method __eq__ (line 2594) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2595) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2596) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2597) | def __hash__(self) -> int: ... method __index__ (line 2598) | def __index__(self) -> int: ... method __int__ (line 2599) | def __int__(self) -> int: ... method __le__ (line 2600) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2601) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2602) | def __mul__(self, other: typing.SupportsInt) -> QNetworkRequest.Tran... method __ne__ (line 2603) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2604) | def __or__(self, other: typing.SupportsInt) -> QNetworkRequest.Trans... method __pos__ (line 2605) | def __pos__(self): ... method __radd__ (line 2606) | def __radd__(self, other: typing.SupportsInt) -> QNetworkRequest.Tra... method __rand__ (line 2607) | def __rand__(self, other: typing.SupportsInt) -> QNetworkRequest.Tra... method __rmul__ (line 2608) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkRequest.Tra... method __ror__ (line 2609) | def __ror__(self, other: typing.SupportsInt) -> QNetworkRequest.Tran... method __rsub__ (line 2610) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkRequest.Tra... method __rxor__ (line 2611) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkRequest.Tra... method __sub__ (line 2612) | def __sub__(self, other: typing.SupportsInt) -> QNetworkRequest.Tran... method __xor__ (line 2613) | def __xor__(self, other: typing.SupportsInt) -> QNetworkRequest.Tran... method __init__ (line 2675) | def __init__(self, url: PySide2.QtCore.QUrl) -> None: ... method __init__ (line 2677) | def __init__(self, other: QNetworkRequest) -> None: ... method __init__ (line 2679) | def __init__(self) -> None: ... method attribute (line 2680) | def attribute(self, code: QNetworkRequest.Attribute, defaultValue: typ... method hasRawHeader (line 2681) | def hasRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) ... method header (line 2682) | def header(self, header: QNetworkRequest.KnownHeaders) -> typing.Any: ... method maximumRedirectsAllowed (line 2683) | def maximumRedirectsAllowed(self) -> int: ... method originatingObject (line 2684) | def originatingObject(self) -> PySide2.QtCore.QObject: ... method peerVerifyName (line 2685) | def peerVerifyName(self) -> str: ... method priority (line 2686) | def priority(self) -> QNetworkRequest.Priority: ... method rawHeader (line 2687) | def rawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) -> ... method rawHeaderList (line 2688) | def rawHeaderList(self) -> list[PySide2.QtCore.QByteArray]: ... method setAttribute (line 2689) | def setAttribute(self, code: QNetworkRequest.Attribute, value: typing.... method setHeader (line 2690) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: typin... method setMaximumRedirectsAllowed (line 2691) | def setMaximumRedirectsAllowed(self, maximumRedirectsAllowed: int) -> ... method setOriginatingObject (line 2692) | def setOriginatingObject(self, object: PySide2.QtCore.QObject) -> None... method setPeerVerifyName (line 2693) | def setPeerVerifyName(self, peerName: str) -> None: ... method setPriority (line 2694) | def setPriority(self, priority: QNetworkRequest.Priority) -> None: ... method setRawHeader (line 2695) | def setRawHeader(self, headerName: PySide2.QtCore.QByteArray | bytes, ... method setSslConfiguration (line 2696) | def setSslConfiguration(self, configuration: QSslConfiguration) -> Non... method setTransferTimeout (line 2697) | def setTransferTimeout(self, timeout: int = ...) -> None: ... method setUrl (line 2698) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method sslConfiguration (line 2699) | def sslConfiguration(self) -> QSslConfiguration: ... method swap (line 2700) | def swap(self, other: QNetworkRequest) -> None: ... method transferTimeout (line 2701) | def transferTimeout(self) -> int: ... method url (line 2702) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 2703) | def __copy__(self) -> None: ... method __eq__ (line 2704) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2705) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2706) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2707) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2708) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2709) | def __ne__(self, other: object) -> bool: ... class QNetworkSession (line 2711) | class QNetworkSession(PySide2.QtCore.QObject): class SessionError (line 2712) | class SessionError: method __init__ (line 2721) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2722) | def __add__(self, other: typing.SupportsInt) -> QNetworkSession.Sess... method __and__ (line 2723) | def __and__(self, other: typing.SupportsInt) -> QNetworkSession.Sess... method __bool__ (line 2724) | def __bool__(self) -> bool: ... method __eq__ (line 2725) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2726) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2727) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2728) | def __hash__(self) -> int: ... method __index__ (line 2729) | def __index__(self) -> int: ... method __int__ (line 2730) | def __int__(self) -> int: ... method __le__ (line 2731) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2732) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2733) | def __mul__(self, other: typing.SupportsInt) -> QNetworkSession.Sess... method __ne__ (line 2734) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2735) | def __or__(self, other: typing.SupportsInt) -> QNetworkSession.Sessi... method __pos__ (line 2736) | def __pos__(self): ... method __radd__ (line 2737) | def __radd__(self, other: typing.SupportsInt) -> QNetworkSession.Ses... method __rand__ (line 2738) | def __rand__(self, other: typing.SupportsInt) -> QNetworkSession.Ses... method __rmul__ (line 2739) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkSession.Ses... method __ror__ (line 2740) | def __ror__(self, other: typing.SupportsInt) -> QNetworkSession.Sess... method __rsub__ (line 2741) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkSession.Ses... method __rxor__ (line 2742) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkSession.Ses... method __sub__ (line 2743) | def __sub__(self, other: typing.SupportsInt) -> QNetworkSession.Sess... method __xor__ (line 2744) | def __xor__(self, other: typing.SupportsInt) -> QNetworkSession.Sess... class State (line 2746) | class State: method __init__ (line 2757) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2758) | def __add__(self, other: typing.SupportsInt) -> QNetworkSession.Stat... method __and__ (line 2759) | def __and__(self, other: typing.SupportsInt) -> QNetworkSession.Stat... method __bool__ (line 2760) | def __bool__(self) -> bool: ... method __eq__ (line 2761) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2762) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2763) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2764) | def __hash__(self) -> int: ... method __index__ (line 2765) | def __index__(self) -> int: ... method __int__ (line 2766) | def __int__(self) -> int: ... method __le__ (line 2767) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2768) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2769) | def __mul__(self, other: typing.SupportsInt) -> QNetworkSession.Stat... method __ne__ (line 2770) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2771) | def __or__(self, other: typing.SupportsInt) -> QNetworkSession.State... method __pos__ (line 2772) | def __pos__(self): ... method __radd__ (line 2773) | def __radd__(self, other: typing.SupportsInt) -> QNetworkSession.Sta... method __rand__ (line 2774) | def __rand__(self, other: typing.SupportsInt) -> QNetworkSession.Sta... method __rmul__ (line 2775) | def __rmul__(self, other: typing.SupportsInt) -> QNetworkSession.Sta... method __ror__ (line 2776) | def __ror__(self, other: typing.SupportsInt) -> QNetworkSession.Stat... method __rsub__ (line 2777) | def __rsub__(self, other: typing.SupportsInt) -> QNetworkSession.Sta... method __rxor__ (line 2778) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkSession.Sta... method __sub__ (line 2779) | def __sub__(self, other: typing.SupportsInt) -> QNetworkSession.Stat... method __xor__ (line 2780) | def __xor__(self, other: typing.SupportsInt) -> QNetworkSession.Stat... class UsagePolicies (line 2782) | class UsagePolicies: method __init__ (line 2784) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2785) | def __and__(self, other: typing.SupportsInt) -> QNetworkSession.Usag... method __bool__ (line 2786) | def __bool__(self) -> bool: ... method __eq__ (line 2787) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2788) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2789) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2790) | def __index__(self) -> int: ... method __int__ (line 2791) | def __int__(self) -> int: ... method __invert__ (line 2792) | def __invert__(self) -> QNetworkSession.UsagePolicies: ... method __le__ (line 2793) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2794) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2795) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2796) | def __or__(self, other: typing.SupportsInt) -> QNetworkSession.Usage... method __rand__ (line 2797) | def __rand__(self, other: typing.SupportsInt) -> QNetworkSession.Usa... method __ror__ (line 2798) | def __ror__(self, other: typing.SupportsInt) -> QNetworkSession.Usag... method __rxor__ (line 2799) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkSession.Usa... method __xor__ (line 2800) | def __xor__(self, other: typing.SupportsInt) -> QNetworkSession.Usag... class UsagePolicy (line 2802) | class UsagePolicy: method __init__ (line 2808) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2809) | def __and__(self, other: typing.SupportsInt) -> QNetworkSession.Usag... method __bool__ (line 2810) | def __bool__(self) -> bool: ... method __eq__ (line 2811) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2812) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2813) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2814) | def __hash__(self) -> int: ... method __index__ (line 2815) | def __index__(self) -> int: ... method __int__ (line 2816) | def __int__(self) -> int: ... method __invert__ (line 2817) | def __invert__(self) -> QNetworkSession.UsagePolicies: ... method __le__ (line 2818) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2819) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2820) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2821) | def __or__(self, other: typing.SupportsInt) -> QNetworkSession.Usage... method __rand__ (line 2822) | def __rand__(self, other: typing.SupportsInt) -> QNetworkSession.Usa... method __ror__ (line 2823) | def __ror__(self, other: typing.SupportsInt) -> QNetworkSession.Usag... method __rxor__ (line 2824) | def __rxor__(self, other: typing.SupportsInt) -> QNetworkSession.Usa... method __xor__ (line 2825) | def __xor__(self, other: typing.SupportsInt) -> QNetworkSession.Usag... method __init__ (line 2848) | def __init__(self, connConfig: QNetworkConfiguration, parent: PySide2.... method accept (line 2849) | def accept(self) -> None: ... method activeTime (line 2850) | def activeTime(self) -> int: ... method bytesReceived (line 2851) | def bytesReceived(self) -> int: ... method bytesWritten (line 2852) | def bytesWritten(self) -> int: ... method close (line 2853) | def close(self) -> None: ... method configuration (line 2854) | def configuration(self) -> QNetworkConfiguration: ... method connectNotify (line 2855) | def connectNotify(self, signal: PySide2.QtCore.QMetaMethod) -> None: ... method disconnectNotify (line 2856) | def disconnectNotify(self, signal: PySide2.QtCore.QMetaMethod) -> None... method errorString (line 2857) | def errorString(self) -> str: ... method ignore (line 2858) | def ignore(self) -> None: ... method interface (line 2859) | def interface(self) -> QNetworkInterface: ... method isOpen (line 2860) | def isOpen(self) -> bool: ... method migrate (line 2861) | def migrate(self) -> None: ... method open (line 2862) | def open(self) -> None: ... method reject (line 2863) | def reject(self) -> None: ... method sessionProperty (line 2864) | def sessionProperty(self, key: str) -> typing.Any: ... method setSessionProperty (line 2865) | def setSessionProperty(self, key: str, value: typing.Any) -> None: ... method state (line 2866) | def state(self) -> QNetworkSession.State: ... method stop (line 2867) | def stop(self) -> None: ... method usagePolicies (line 2868) | def usagePolicies(self) -> QNetworkSession.UsagePolicies | QNetworkSes... method waitForOpened (line 2869) | def waitForOpened(self, msecs: int = ...) -> bool: ... class QOcspCertificateStatus (line 2871) | class QOcspCertificateStatus: method __init__ (line 2878) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2879) | def __add__(self, other: typing.SupportsInt) -> QOcspCertificateStatus... method __and__ (line 2880) | def __and__(self, other: typing.SupportsInt) -> QOcspCertificateStatus... method __bool__ (line 2881) | def __bool__(self) -> bool: ... method __eq__ (line 2882) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2883) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2884) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2885) | def __hash__(self) -> int: ... method __index__ (line 2886) | def __index__(self) -> int: ... method __int__ (line 2887) | def __int__(self) -> int: ... method __le__ (line 2888) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2889) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2890) | def __mul__(self, other: typing.SupportsInt) -> QOcspCertificateStatus... method __ne__ (line 2891) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2892) | def __or__(self, other: typing.SupportsInt) -> QOcspCertificateStatus:... method __pos__ (line 2893) | def __pos__(self): ... method __radd__ (line 2894) | def __radd__(self, other: typing.SupportsInt) -> QOcspCertificateStatu... method __rand__ (line 2895) | def __rand__(self, other: typing.SupportsInt) -> QOcspCertificateStatu... method __rmul__ (line 2896) | def __rmul__(self, other: typing.SupportsInt) -> QOcspCertificateStatu... method __ror__ (line 2897) | def __ror__(self, other: typing.SupportsInt) -> QOcspCertificateStatus... method __rsub__ (line 2898) | def __rsub__(self, other: typing.SupportsInt) -> QOcspCertificateStatu... method __rxor__ (line 2899) | def __rxor__(self, other: typing.SupportsInt) -> QOcspCertificateStatu... method __sub__ (line 2900) | def __sub__(self, other: typing.SupportsInt) -> QOcspCertificateStatus... method __xor__ (line 2901) | def __xor__(self, other: typing.SupportsInt) -> QOcspCertificateStatus... class QOcspResponse (line 2903) | class QOcspResponse(shiboken2.Object): method __init__ (line 2905) | def __init__(self, other: QOcspResponse) -> None: ... method __init__ (line 2907) | def __init__(self) -> None: ... method certificateStatus (line 2908) | def certificateStatus(self) -> QOcspCertificateStatus: ... method revocationReason (line 2909) | def revocationReason(self) -> QOcspRevocationReason: ... method subject (line 2910) | def subject(self) -> QSslCertificate: ... method swap (line 2911) | def swap(self, other: QOcspResponse) -> None: ... method __copy__ (line 2912) | def __copy__(self) -> None: ... method __eq__ (line 2913) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2914) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2915) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2916) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2917) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2918) | def __ne__(self, other: object) -> bool: ... class QOcspRevocationReason (line 2920) | class QOcspRevocationReason: method __init__ (line 2933) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2934) | def __add__(self, other: typing.SupportsInt) -> QOcspRevocationReason:... method __and__ (line 2935) | def __and__(self, other: typing.SupportsInt) -> QOcspRevocationReason:... method __bool__ (line 2936) | def __bool__(self) -> bool: ... method __eq__ (line 2937) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2938) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2939) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2940) | def __hash__(self) -> int: ... method __index__ (line 2941) | def __index__(self) -> int: ... method __int__ (line 2942) | def __int__(self) -> int: ... method __le__ (line 2943) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2944) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2945) | def __mul__(self, other: typing.SupportsInt) -> QOcspRevocationReason:... method __ne__ (line 2946) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2947) | def __or__(self, other: typing.SupportsInt) -> QOcspRevocationReason: ... method __pos__ (line 2948) | def __pos__(self): ... method __radd__ (line 2949) | def __radd__(self, other: typing.SupportsInt) -> QOcspRevocationReason... method __rand__ (line 2950) | def __rand__(self, other: typing.SupportsInt) -> QOcspRevocationReason... method __rmul__ (line 2951) | def __rmul__(self, other: typing.SupportsInt) -> QOcspRevocationReason... method __ror__ (line 2952) | def __ror__(self, other: typing.SupportsInt) -> QOcspRevocationReason:... method __rsub__ (line 2953) | def __rsub__(self, other: typing.SupportsInt) -> QOcspRevocationReason... method __rxor__ (line 2954) | def __rxor__(self, other: typing.SupportsInt) -> QOcspRevocationReason... method __sub__ (line 2955) | def __sub__(self, other: typing.SupportsInt) -> QOcspRevocationReason:... method __xor__ (line 2956) | def __xor__(self, other: typing.SupportsInt) -> QOcspRevocationReason:... class QPasswordDigestor (line 2958) | class QPasswordDigestor(shiboken2.Object): method __init__ (line 2960) | def __init__(cls, *args, **kwargs) -> None: ... method deriveKeyPbkdf1 (line 2962) | def deriveKeyPbkdf1(algorithm: PySide2.QtCore.QCryptographicHash.Algor... method deriveKeyPbkdf2 (line 2964) | def deriveKeyPbkdf2(algorithm: PySide2.QtCore.QCryptographicHash.Algor... class QSsl (line 2966) | class QSsl(shiboken2.Object): class AlternativeNameEntryType (line 2967) | class AlternativeNameEntryType: method __init__ (line 2974) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2975) | def __add__(self, other: typing.SupportsInt) -> QSsl.AlternativeName... method __and__ (line 2976) | def __and__(self, other: typing.SupportsInt) -> QSsl.AlternativeName... method __bool__ (line 2977) | def __bool__(self) -> bool: ... method __eq__ (line 2978) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2979) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2980) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2981) | def __hash__(self) -> int: ... method __index__ (line 2982) | def __index__(self) -> int: ... method __int__ (line 2983) | def __int__(self) -> int: ... method __le__ (line 2984) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2985) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2986) | def __mul__(self, other: typing.SupportsInt) -> QSsl.AlternativeName... method __ne__ (line 2987) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2988) | def __or__(self, other: typing.SupportsInt) -> QSsl.AlternativeNameE... method __pos__ (line 2989) | def __pos__(self): ... method __radd__ (line 2990) | def __radd__(self, other: typing.SupportsInt) -> QSsl.AlternativeNam... method __rand__ (line 2991) | def __rand__(self, other: typing.SupportsInt) -> QSsl.AlternativeNam... method __rmul__ (line 2992) | def __rmul__(self, other: typing.SupportsInt) -> QSsl.AlternativeNam... method __ror__ (line 2993) | def __ror__(self, other: typing.SupportsInt) -> QSsl.AlternativeName... method __rsub__ (line 2994) | def __rsub__(self, other: typing.SupportsInt) -> QSsl.AlternativeNam... method __rxor__ (line 2995) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.AlternativeNam... method __sub__ (line 2996) | def __sub__(self, other: typing.SupportsInt) -> QSsl.AlternativeName... method __xor__ (line 2997) | def __xor__(self, other: typing.SupportsInt) -> QSsl.AlternativeName... class EncodingFormat (line 2999) | class EncodingFormat: method __init__ (line 3005) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3006) | def __add__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat:... method __and__ (line 3007) | def __and__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat:... method __bool__ (line 3008) | def __bool__(self) -> bool: ... method __eq__ (line 3009) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3010) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3011) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3012) | def __hash__(self) -> int: ... method __index__ (line 3013) | def __index__(self) -> int: ... method __int__ (line 3014) | def __int__(self) -> int: ... method __le__ (line 3015) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3016) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3017) | def __mul__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat:... method __ne__ (line 3018) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3019) | def __or__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat: ... method __pos__ (line 3020) | def __pos__(self): ... method __radd__ (line 3021) | def __radd__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat... method __rand__ (line 3022) | def __rand__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat... method __rmul__ (line 3023) | def __rmul__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat... method __ror__ (line 3024) | def __ror__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat:... method __rsub__ (line 3025) | def __rsub__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat... method __rxor__ (line 3026) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat... method __sub__ (line 3027) | def __sub__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat:... method __xor__ (line 3028) | def __xor__(self, other: typing.SupportsInt) -> QSsl.EncodingFormat:... class KeyAlgorithm (line 3030) | class KeyAlgorithm: method __init__ (line 3039) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3040) | def __add__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __and__ (line 3041) | def __and__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __bool__ (line 3042) | def __bool__(self) -> bool: ... method __eq__ (line 3043) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3044) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3045) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3046) | def __hash__(self) -> int: ... method __index__ (line 3047) | def __index__(self) -> int: ... method __int__ (line 3048) | def __int__(self) -> int: ... method __le__ (line 3049) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3050) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3051) | def __mul__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __ne__ (line 3052) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3053) | def __or__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __pos__ (line 3054) | def __pos__(self): ... method __radd__ (line 3055) | def __radd__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __rand__ (line 3056) | def __rand__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __rmul__ (line 3057) | def __rmul__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __ror__ (line 3058) | def __ror__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __rsub__ (line 3059) | def __rsub__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __rxor__ (line 3060) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __sub__ (line 3061) | def __sub__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... method __xor__ (line 3062) | def __xor__(self, other: typing.SupportsInt) -> QSsl.KeyAlgorithm: ... class KeyType (line 3064) | class KeyType: method __init__ (line 3070) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3071) | def __add__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __and__ (line 3072) | def __and__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __bool__ (line 3073) | def __bool__(self) -> bool: ... method __eq__ (line 3074) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3075) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3076) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3077) | def __hash__(self) -> int: ... method __index__ (line 3078) | def __index__(self) -> int: ... method __int__ (line 3079) | def __int__(self) -> int: ... method __le__ (line 3080) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3081) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3082) | def __mul__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __ne__ (line 3083) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3084) | def __or__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __pos__ (line 3085) | def __pos__(self): ... method __radd__ (line 3086) | def __radd__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __rand__ (line 3087) | def __rand__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __rmul__ (line 3088) | def __rmul__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __ror__ (line 3089) | def __ror__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __rsub__ (line 3090) | def __rsub__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __rxor__ (line 3091) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __sub__ (line 3092) | def __sub__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... method __xor__ (line 3093) | def __xor__(self, other: typing.SupportsInt) -> QSsl.KeyType: ... class SslOption (line 3095) | class SslOption: method __init__ (line 3107) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3108) | def __and__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __bool__ (line 3109) | def __bool__(self) -> bool: ... method __eq__ (line 3110) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3111) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3112) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3113) | def __hash__(self) -> int: ... method __index__ (line 3114) | def __index__(self) -> int: ... method __int__ (line 3115) | def __int__(self) -> int: ... method __invert__ (line 3116) | def __invert__(self) -> QSsl.SslOptions: ... method __le__ (line 3117) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3118) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3119) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3120) | def __or__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __rand__ (line 3121) | def __rand__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __ror__ (line 3122) | def __ror__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __rxor__ (line 3123) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __xor__ (line 3124) | def __xor__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... class SslOptions (line 3126) | class SslOptions: method __init__ (line 3128) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3129) | def __and__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __bool__ (line 3130) | def __bool__(self) -> bool: ... method __eq__ (line 3131) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3132) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3133) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3134) | def __index__(self) -> int: ... method __int__ (line 3135) | def __int__(self) -> int: ... method __invert__ (line 3136) | def __invert__(self) -> QSsl.SslOptions: ... method __le__ (line 3137) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3138) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3139) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3140) | def __or__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __rand__ (line 3141) | def __rand__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __ror__ (line 3142) | def __ror__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __rxor__ (line 3143) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... method __xor__ (line 3144) | def __xor__(self, other: typing.SupportsInt) -> QSsl.SslOptions: ... class SslProtocol (line 3146) | class SslProtocol: method __init__ (line 3168) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3169) | def __add__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __and__ (line 3170) | def __and__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __bool__ (line 3171) | def __bool__(self) -> bool: ... method __eq__ (line 3172) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3173) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3174) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3175) | def __hash__(self) -> int: ... method __index__ (line 3176) | def __index__(self) -> int: ... method __int__ (line 3177) | def __int__(self) -> int: ... method __le__ (line 3178) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3179) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3180) | def __mul__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __ne__ (line 3181) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3182) | def __or__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __pos__ (line 3183) | def __pos__(self): ... method __radd__ (line 3184) | def __radd__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __rand__ (line 3185) | def __rand__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __rmul__ (line 3186) | def __rmul__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __ror__ (line 3187) | def __ror__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __rsub__ (line 3188) | def __rsub__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __rxor__ (line 3189) | def __rxor__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __sub__ (line 3190) | def __sub__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __xor__ (line 3191) | def __xor__(self, other: typing.SupportsInt) -> QSsl.SslProtocol: ... method __init__ (line 3231) | def __init__(cls, *args, **kwargs) -> None: ... class QSslCertificate (line 3233) | class QSslCertificate(shiboken2.Object): class PatternSyntax (line 3234) | class PatternSyntax: method __init__ (line 3241) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3242) | def __add__(self, other: typing.SupportsInt) -> QSslCertificate.Patt... method __and__ (line 3243) | def __and__(self, other: typing.SupportsInt) -> QSslCertificate.Patt... method __bool__ (line 3244) | def __bool__(self) -> bool: ... method __eq__ (line 3245) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3246) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3247) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3248) | def __hash__(self) -> int: ... method __index__ (line 3249) | def __index__(self) -> int: ... method __int__ (line 3250) | def __int__(self) -> int: ... method __le__ (line 3251) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3252) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3253) | def __mul__(self, other: typing.SupportsInt) -> QSslCertificate.Patt... method __ne__ (line 3254) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3255) | def __or__(self, other: typing.SupportsInt) -> QSslCertificate.Patte... method __pos__ (line 3256) | def __pos__(self): ... method __radd__ (line 3257) | def __radd__(self, other: typing.SupportsInt) -> QSslCertificate.Pat... method __rand__ (line 3258) | def __rand__(self, other: typing.SupportsInt) -> QSslCertificate.Pat... method __rmul__ (line 3259) | def __rmul__(self, other: typing.SupportsInt) -> QSslCertificate.Pat... method __ror__ (line 3260) | def __ror__(self, other: typing.SupportsInt) -> QSslCertificate.Patt... method __rsub__ (line 3261) | def __rsub__(self, other: typing.SupportsInt) -> QSslCertificate.Pat... method __rxor__ (line 3262) | def __rxor__(self, other: typing.SupportsInt) -> QSslCertificate.Pat... method __sub__ (line 3263) | def __sub__(self, other: typing.SupportsInt) -> QSslCertificate.Patt... method __xor__ (line 3264) | def __xor__(self, other: typing.SupportsInt) -> QSslCertificate.Patt... class SubjectInfo (line 3266) | class SubjectInfo: method __init__ (line 3279) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3280) | def __add__(self, other: typing.SupportsInt) -> QSslCertificate.Subj... method __and__ (line 3281) | def __and__(self, other: typing.SupportsInt) -> QSslCertificate.Subj... method __bool__ (line 3282) | def __bool__(self) -> bool: ... method __eq__ (line 3283) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3284) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3285) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3286) | def __hash__(self) -> int: ... method __index__ (line 3287) | def __index__(self) -> int: ... method __int__ (line 3288) | def __int__(self) -> int: ... method __le__ (line 3289) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3290) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3291) | def __mul__(self, other: typing.SupportsInt) -> QSslCertificate.Subj... method __ne__ (line 3292) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3293) | def __or__(self, other: typing.SupportsInt) -> QSslCertificate.Subje... method __pos__ (line 3294) | def __pos__(self): ... method __radd__ (line 3295) | def __radd__(self, other: typing.SupportsInt) -> QSslCertificate.Sub... method __rand__ (line 3296) | def __rand__(self, other: typing.SupportsInt) -> QSslCertificate.Sub... method __rmul__ (line 3297) | def __rmul__(self, other: typing.SupportsInt) -> QSslCertificate.Sub... method __ror__ (line 3298) | def __ror__(self, other: typing.SupportsInt) -> QSslCertificate.Subj... method __rsub__ (line 3299) | def __rsub__(self, other: typing.SupportsInt) -> QSslCertificate.Sub... method __rxor__ (line 3300) | def __rxor__(self, other: typing.SupportsInt) -> QSslCertificate.Sub... method __sub__ (line 3301) | def __sub__(self, other: typing.SupportsInt) -> QSslCertificate.Subj... method __xor__ (line 3302) | def __xor__(self, other: typing.SupportsInt) -> QSslCertificate.Subj... method __init__ (line 3313) | def __init__(self, device: PySide2.QtCore.QIODevice, format: QSsl.Enco... method __init__ (line 3315) | def __init__(self, data: PySide2.QtCore.QByteArray | bytes = ..., form... method __init__ (line 3317) | def __init__(self, other: QSslCertificate) -> None: ... method clear (line 3318) | def clear(self) -> None: ... method digest (line 3319) | def digest(self, algorithm: PySide2.QtCore.QCryptographicHash.Algorith... method effectiveDate (line 3320) | def effectiveDate(self) -> PySide2.QtCore.QDateTime: ... method expiryDate (line 3321) | def expiryDate(self) -> PySide2.QtCore.QDateTime: ... method extensions (line 3322) | def extensions(self) -> list[QSslCertificateExtension]: ... method fromData (line 3324) | def fromData(data: PySide2.QtCore.QByteArray | bytes, format: QSsl.Enc... method fromDevice (line 3326) | def fromDevice(device: PySide2.QtCore.QIODevice, format: QSsl.Encoding... method fromPath (line 3329) | def fromPath(path: str, format: QSsl.EncodingFormat, syntax: PySide2.Q... method fromPath (line 3332) | def fromPath(path: str, format: QSsl.EncodingFormat = ..., syntax: QSs... method handle (line 3333) | def handle(self) -> int: ... method importPkcs12 (line 3335) | def importPkcs12(device: PySide2.QtCore.QIODevice, key: QSslKey, cert:... method isBlacklisted (line 3336) | def isBlacklisted(self) -> bool: ... method isNull (line 3337) | def isNull(self) -> bool: ... method isSelfSigned (line 3338) | def isSelfSigned(self) -> bool: ... method issuerDisplayName (line 3339) | def issuerDisplayName(self) -> str: ... method issuerInfo (line 3341) | def issuerInfo(self, info: QSslCertificate.SubjectInfo) -> list[str]: ... method issuerInfo (line 3343) | def issuerInfo(self, attribute: PySide2.QtCore.QByteArray | bytes) -> ... method issuerInfoAttributes (line 3344) | def issuerInfoAttributes(self) -> list[PySide2.QtCore.QByteArray]: ... method publicKey (line 3345) | def publicKey(self) -> QSslKey: ... method serialNumber (line 3346) | def serialNumber(self) -> PySide2.QtCore.QByteArray: ... method subjectAlternativeNames (line 3347) | def subjectAlternativeNames(self) -> typing.OrderedDict[QSsl.Alternati... method subjectDisplayName (line 3348) | def subjectDisplayName(self) -> str: ... method subjectInfo (line 3350) | def subjectInfo(self, info: QSslCertificate.SubjectInfo) -> list[str]:... method subjectInfo (line 3352) | def subjectInfo(self, attribute: PySide2.QtCore.QByteArray | bytes) ->... method subjectInfoAttributes (line 3353) | def subjectInfoAttributes(self) -> list[PySide2.QtCore.QByteArray]: ... method swap (line 3354) | def swap(self, other: QSslCertificate) -> None: ... method toDer (line 3355) | def toDer(self) -> PySide2.QtCore.QByteArray: ... method toPem (line 3356) | def toPem(self) -> PySide2.QtCore.QByteArray: ... method toText (line 3357) | def toText(self) -> str: ... method verify (line 3359) | def verify(certificateChain: typing.Iterable[QSslCertificate], hostNam... method version (line 3360) | def version(self) -> PySide2.QtCore.QByteArray: ... method __bool__ (line 3361) | def __bool__(self) -> bool: ... method __copy__ (line 3362) | def __copy__(self) -> None: ... method __eq__ (line 3363) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3364) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3365) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3366) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3367) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3368) | def __ne__(self, other: object) -> bool: ... class QSslCertificateExtension (line 3370) | class QSslCertificateExtension(shiboken2.Object): method __init__ (line 3372) | def __init__(self, other: QSslCertificateExtension) -> None: ... method __init__ (line 3374) | def __init__(self) -> None: ... method isCritical (line 3375) | def isCritical(self) -> bool: ... method isSupported (line 3376) | def isSupported(self) -> bool: ... method name (line 3377) | def name(self) -> str: ... method oid (line 3378) | def oid(self) -> str: ... method swap (line 3379) | def swap(self, other: QSslCertificateExtension) -> None: ... method value (line 3380) | def value(self) -> typing.Any: ... method __copy__ (line 3381) | def __copy__(self) -> None: ... class QSslCipher (line 3383) | class QSslCipher(shiboken2.Object): method __init__ (line 3385) | def __init__(self, name: str, protocol: QSsl.SslProtocol) -> None: ... method __init__ (line 3387) | def __init__(self, other: QSslCipher) -> None: ... method __init__ (line 3389) | def __init__(self, name: str) -> None: ... method __init__ (line 3391) | def __init__(self) -> None: ... method authenticationMethod (line 3392) | def authenticationMethod(self) -> str: ... method encryptionMethod (line 3393) | def encryptionMethod(self) -> str: ... method isNull (line 3394) | def isNull(self) -> bool: ... method keyExchangeMethod (line 3395) | def keyExchangeMethod(self) -> str: ... method name (line 3396) | def name(self) -> str: ... method protocol (line 3397) | def protocol(self) -> QSsl.SslProtocol: ... method protocolString (line 3398) | def protocolString(self) -> str: ... method supportedBits (line 3399) | def supportedBits(self) -> int: ... method swap (line 3400) | def swap(self, other: QSslCipher) -> None: ... method usedBits (line 3401) | def usedBits(self) -> int: ... method __bool__ (line 3402) | def __bool__(self) -> bool: ... method __copy__ (line 3403) | def __copy__(self) -> None: ... method __eq__ (line 3404) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3405) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3406) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3407) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3408) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3409) | def __ne__(self, other: object) -> bool: ... class QSslConfiguration (line 3411) | class QSslConfiguration(shiboken2.Object): class NextProtocolNegotiationStatus (line 3412) | class NextProtocolNegotiationStatus: method __init__ (line 3419) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3420) | def __add__(self, other: typing.SupportsInt) -> QSslConfiguration.Ne... method __and__ (line 3421) | def __and__(self, other: typing.SupportsInt) -> QSslConfiguration.Ne... method __bool__ (line 3422) | def __bool__(self) -> bool: ... method __eq__ (line 3423) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3424) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3425) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3426) | def __hash__(self) -> int: ... method __index__ (line 3427) | def __index__(self) -> int: ... method __int__ (line 3428) | def __int__(self) -> int: ... method __le__ (line 3429) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3430) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3431) | def __mul__(self, other: typing.SupportsInt) -> QSslConfiguration.Ne... method __ne__ (line 3432) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3433) | def __or__(self, other: typing.SupportsInt) -> QSslConfiguration.Nex... method __pos__ (line 3434) | def __pos__(self): ... method __radd__ (line 3435) | def __radd__(self, other: typing.SupportsInt) -> QSslConfiguration.N... method __rand__ (line 3436) | def __rand__(self, other: typing.SupportsInt) -> QSslConfiguration.N... method __rmul__ (line 3437) | def __rmul__(self, other: typing.SupportsInt) -> QSslConfiguration.N... method __ror__ (line 3438) | def __ror__(self, other: typing.SupportsInt) -> QSslConfiguration.Ne... method __rsub__ (line 3439) | def __rsub__(self, other: typing.SupportsInt) -> QSslConfiguration.N... method __rxor__ (line 3440) | def __rxor__(self, other: typing.SupportsInt) -> QSslConfiguration.N... method __sub__ (line 3441) | def __sub__(self, other: typing.SupportsInt) -> QSslConfiguration.Ne... method __xor__ (line 3442) | def __xor__(self, other: typing.SupportsInt) -> QSslConfiguration.Ne... method __init__ (line 3450) | def __init__(self, other: QSslConfiguration) -> None: ... method __init__ (line 3452) | def __init__(self) -> None: ... method addCaCertificate (line 3453) | def addCaCertificate(self, certificate: QSslCertificate) -> None: ... method addCaCertificates (line 3455) | def addCaCertificates(self, path: str, format: QSsl.EncodingFormat = .... method addCaCertificates (line 3457) | def addCaCertificates(self, certificates: typing.Iterable[QSslCertific... method allowedNextProtocols (line 3458) | def allowedNextProtocols(self) -> list[PySide2.QtCore.QByteArray]: ... method backendConfiguration (line 3459) | def backendConfiguration(self) -> dict[PySide2.QtCore.QByteArray, typi... method caCertificates (line 3460) | def caCertificates(self) -> list[QSslCertificate]: ... method ciphers (line 3461) | def ciphers(self) -> list[QSslCipher]: ... method defaultConfiguration (line 3463) | def defaultConfiguration() -> QSslConfiguration: ... method diffieHellmanParameters (line 3464) | def diffieHellmanParameters(self) -> QSslDiffieHellmanParameters: ... method ephemeralServerKey (line 3465) | def ephemeralServerKey(self) -> QSslKey: ... method isNull (line 3466) | def isNull(self) -> bool: ... method localCertificate (line 3467) | def localCertificate(self) -> QSslCertificate: ... method localCertificateChain (line 3468) | def localCertificateChain(self) -> list[QSslCertificate]: ... method nextNegotiatedProtocol (line 3469) | def nextNegotiatedProtocol(self) -> PySide2.QtCore.QByteArray: ... method nextProtocolNegotiationStatus (line 3470) | def nextProtocolNegotiationStatus(self) -> QSslConfiguration.NextProto... method ocspStaplingEnabled (line 3471) | def ocspStaplingEnabled(self) -> bool: ... method peerCertificate (line 3472) | def peerCertificate(self) -> QSslCertificate: ... method peerCertificateChain (line 3473) | def peerCertificateChain(self) -> list[QSslCertificate]: ... method peerVerifyDepth (line 3474) | def peerVerifyDepth(self) -> int: ... method peerVerifyMode (line 3475) | def peerVerifyMode(self) -> QSslSocket.PeerVerifyMode: ... method preSharedKeyIdentityHint (line 3476) | def preSharedKeyIdentityHint(self) -> PySide2.QtCore.QByteArray: ... method privateKey (line 3477) | def privateKey(self) -> QSslKey: ... method protocol (line 3478) | def protocol(self) -> QSsl.SslProtocol: ... method sessionCipher (line 3479) | def sessionCipher(self) -> QSslCipher: ... method sessionProtocol (line 3480) | def sessionProtocol(self) -> QSsl.SslProtocol: ... method sessionTicket (line 3481) | def sessionTicket(self) -> PySide2.QtCore.QByteArray: ... method sessionTicketLifeTimeHint (line 3482) | def sessionTicketLifeTimeHint(self) -> int: ... method setAllowedNextProtocols (line 3483) | def setAllowedNextProtocols(self, protocols: typing.Iterable[PySide2.Q... method setBackendConfiguration (line 3484) | def setBackendConfiguration(self, backendConfiguration: dict[PySide2.Q... method setBackendConfigurationOption (line 3485) | def setBackendConfigurationOption(self, name: PySide2.QtCore.QByteArra... method setCaCertificates (line 3486) | def setCaCertificates(self, certificates: typing.Iterable[QSslCertific... method setCiphers (line 3487) | def setCiphers(self, ciphers: typing.Iterable[QSslCipher]) -> None: ... method setDefaultConfiguration (line 3489) | def setDefaultConfiguration(configuration: QSslConfiguration) -> None:... method setDiffieHellmanParameters (line 3490) | def setDiffieHellmanParameters(self, dhparams: QSslDiffieHellmanParame... method setLocalCertificate (line 3491) | def setLocalCertificate(self, certificate: QSslCertificate) -> None: ... method setLocalCertificateChain (line 3492) | def setLocalCertificateChain(self, localChain: typing.Iterable[QSslCer... method setOcspStaplingEnabled (line 3493) | def setOcspStaplingEnabled(self, enable: bool) -> None: ... method setPeerVerifyDepth (line 3494) | def setPeerVerifyDepth(self, depth: int) -> None: ... method setPeerVerifyMode (line 3495) | def setPeerVerifyMode(self, mode: QSslSocket.PeerVerifyMode) -> None: ... method setPreSharedKeyIdentityHint (line 3496) | def setPreSharedKeyIdentityHint(self, hint: PySide2.QtCore.QByteArray ... method setPrivateKey (line 3497) | def setPrivateKey(self, key: QSslKey) -> None: ... method setProtocol (line 3498) | def setProtocol(self, protocol: QSsl.SslProtocol) -> None: ... method setSessionTicket (line 3499) | def setSessionTicket(self, sessionTicket: PySide2.QtCore.QByteArray | ... method setSslOption (line 3500) | def setSslOption(self, option: QSsl.SslOption, on: bool) -> None: ... method supportedCiphers (line 3502) | def supportedCiphers() -> list[QSslCipher]: ... method swap (line 3503) | def swap(self, other: QSslConfiguration) -> None: ... method systemCaCertificates (line 3505) | def systemCaCertificates() -> list[QSslCertificate]: ... method testSslOption (line 3506) | def testSslOption(self, option: QSsl.SslOption) -> bool: ... method __bool__ (line 3507) | def __bool__(self) -> bool: ... method __copy__ (line 3508) | def __copy__(self) -> None: ... method __eq__ (line 3509) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3510) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3511) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3512) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3513) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3514) | def __ne__(self, other: object) -> bool: ... class QSslDiffieHellmanParameters (line 3516) | class QSslDiffieHellmanParameters(shiboken2.Object): class Error (line 3517) | class Error: method __init__ (line 3524) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3525) | def __add__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPar... method __and__ (line 3526) | def __and__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPar... method __bool__ (line 3527) | def __bool__(self) -> bool: ... method __eq__ (line 3528) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3529) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3530) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3531) | def __hash__(self) -> int: ... method __index__ (line 3532) | def __index__(self) -> int: ... method __int__ (line 3533) | def __int__(self) -> int: ... method __le__ (line 3534) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3535) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3536) | def __mul__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPar... method __ne__ (line 3537) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3538) | def __or__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPara... method __pos__ (line 3539) | def __pos__(self): ... method __radd__ (line 3540) | def __radd__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPa... method __rand__ (line 3541) | def __rand__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPa... method __rmul__ (line 3542) | def __rmul__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPa... method __ror__ (line 3543) | def __ror__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPar... method __rsub__ (line 3544) | def __rsub__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPa... method __rxor__ (line 3545) | def __rxor__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPa... method __sub__ (line 3546) | def __sub__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPar... method __xor__ (line 3547) | def __xor__(self, other: typing.SupportsInt) -> QSslDiffieHellmanPar... method __init__ (line 3552) | def __init__(self, other: QSslDiffieHellmanParameters) -> None: ... method __init__ (line 3554) | def __init__(self) -> None: ... method defaultParameters (line 3556) | def defaultParameters() -> QSslDiffieHellmanParameters: ... method error (line 3557) | def error(self) -> QSslDiffieHellmanParameters.Error: ... method errorString (line 3558) | def errorString(self) -> str: ... method fromEncoded (line 3561) | def fromEncoded(encoded: PySide2.QtCore.QByteArray | bytes, format: QS... method fromEncoded (line 3564) | def fromEncoded(device: PySide2.QtCore.QIODevice, format: QSsl.Encodin... method isEmpty (line 3565) | def isEmpty(self) -> bool: ... method isValid (line 3566) | def isValid(self) -> bool: ... method swap (line 3567) | def swap(self, other: QSslDiffieHellmanParameters) -> None: ... method __copy__ (line 3568) | def __copy__(self) -> None: ... method __eq__ (line 3569) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3570) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3571) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3572) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3573) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3574) | def __ne__(self, other: object) -> bool: ... class QSslError (line 3576) | class QSslError(shiboken2.Object): class SslError (line 3577) | class SslError: method __init__ (line 3619) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3620) | def __add__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __and__ (line 3621) | def __and__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __bool__ (line 3622) | def __bool__(self) -> bool: ... method __eq__ (line 3623) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3624) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3625) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3626) | def __hash__(self) -> int: ... method __index__ (line 3627) | def __index__(self) -> int: ... method __int__ (line 3628) | def __int__(self) -> int: ... method __le__ (line 3629) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3630) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3631) | def __mul__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __ne__ (line 3632) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3633) | def __or__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __pos__ (line 3634) | def __pos__(self): ... method __radd__ (line 3635) | def __radd__(self, other: typing.SupportsInt) -> QSslError.SslError:... method __rand__ (line 3636) | def __rand__(self, other: typing.SupportsInt) -> QSslError.SslError:... method __rmul__ (line 3637) | def __rmul__(self, other: typing.SupportsInt) -> QSslError.SslError:... method __ror__ (line 3638) | def __ror__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __rsub__ (line 3639) | def __rsub__(self, other: typing.SupportsInt) -> QSslError.SslError:... method __rxor__ (line 3640) | def __rxor__(self, other: typing.SupportsInt) -> QSslError.SslError:... method __sub__ (line 3641) | def __sub__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __xor__ (line 3642) | def __xor__(self, other: typing.SupportsInt) -> QSslError.SslError: ... method __init__ (line 3682) | def __init__(self, error: QSslError.SslError, certificate: QSslCertifi... method __init__ (line 3684) | def __init__(self, other: QSslError) -> None: ... method __init__ (line 3686) | def __init__(self, error: QSslError.SslError) -> None: ... method __init__ (line 3688) | def __init__(self) -> None: ... method certificate (line 3689) | def certificate(self) -> QSslCertificate: ... method error (line 3690) | def error(self) -> QSslError.SslError: ... method errorString (line 3691) | def errorString(self) -> str: ... method swap (line 3692) | def swap(self, other: QSslError) -> None: ... method __copy__ (line 3693) | def __copy__(self) -> None: ... method __eq__ (line 3694) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3695) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3696) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3697) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3698) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3699) | def __ne__(self, other: object) -> bool: ... class QSslKey (line 3701) | class QSslKey(shiboken2.Object): method __init__ (line 3703) | def __init__(self, encoded: PySide2.QtCore.QByteArray | bytes, algorit... method __init__ (line 3705) | def __init__(self, device: PySide2.QtCore.QIODevice, algorithm: QSsl.K... method __init__ (line 3707) | def __init__(self, handle: int, type: QSsl.KeyType = ...) -> None: ... method __init__ (line 3709) | def __init__(self, other: QSslKey) -> None: ... method __init__ (line 3711) | def __init__(self) -> None: ... method algorithm (line 3712) | def algorithm(self) -> QSsl.KeyAlgorithm: ... method clear (line 3713) | def clear(self) -> None: ... method handle (line 3714) | def handle(self) -> int: ... method isNull (line 3715) | def isNull(self) -> bool: ... method length (line 3716) | def length(self) -> int: ... method swap (line 3717) | def swap(self, other: QSslKey) -> None: ... method toDer (line 3718) | def toDer(self, passPhrase: PySide2.QtCore.QByteArray | bytes = ...) -... method toPem (line 3719) | def toPem(self, passPhrase: PySide2.QtCore.QByteArray | bytes = ...) -... method type (line 3720) | def type(self) -> QSsl.KeyType: ... method __bool__ (line 3721) | def __bool__(self) -> bool: ... method __copy__ (line 3722) | def __copy__(self) -> None: ... method __eq__ (line 3723) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3724) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3725) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3726) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3727) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3728) | def __ne__(self, other: object) -> bool: ... class QSslPreSharedKeyAuthenticator (line 3730) | class QSslPreSharedKeyAuthenticator(shiboken2.Object): method __init__ (line 3732) | def __init__(self, authenticator: QSslPreSharedKeyAuthenticator) -> No... method __init__ (line 3734) | def __init__(self) -> None: ... method identity (line 3735) | def identity(self) -> PySide2.QtCore.QByteArray: ... method identityHint (line 3736) | def identityHint(self) -> PySide2.QtCore.QByteArray: ... method maximumIdentityLength (line 3737) | def maximumIdentityLength(self) -> int: ... method maximumPreSharedKeyLength (line 3738) | def maximumPreSharedKeyLength(self) -> int: ... method preSharedKey (line 3739) | def preSharedKey(self) -> PySide2.QtCore.QByteArray: ... method setIdentity (line 3740) | def setIdentity(self, identity: PySide2.QtCore.QByteArray | bytes) -> ... method setPreSharedKey (line 3741) | def setPreSharedKey(self, preSharedKey: PySide2.QtCore.QByteArray | by... method swap (line 3742) | def swap(self, other: QSslPreSharedKeyAuthenticator) -> None: ... method __copy__ (line 3743) | def __copy__(self) -> None: ... method __eq__ (line 3744) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3745) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3746) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3747) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3748) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3749) | def __ne__(self, other: object) -> bool: ... class QSslSocket (line 3751) | class QSslSocket(QTcpSocket): class PeerVerifyMode (line 3752) | class PeerVerifyMode: method __init__ (line 3760) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3761) | def __add__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerif... method __and__ (line 3762) | def __and__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerif... method __bool__ (line 3763) | def __bool__(self) -> bool: ... method __eq__ (line 3764) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3765) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3766) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3767) | def __hash__(self) -> int: ... method __index__ (line 3768) | def __index__(self) -> int: ... method __int__ (line 3769) | def __int__(self) -> int: ... method __le__ (line 3770) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3771) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3772) | def __mul__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerif... method __ne__ (line 3773) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3774) | def __or__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerify... method __pos__ (line 3775) | def __pos__(self): ... method __radd__ (line 3776) | def __radd__(self, other: typing.SupportsInt) -> QSslSocket.PeerVeri... method __rand__ (line 3777) | def __rand__(self, other: typing.SupportsInt) -> QSslSocket.PeerVeri... method __rmul__ (line 3778) | def __rmul__(self, other: typing.SupportsInt) -> QSslSocket.PeerVeri... method __ror__ (line 3779) | def __ror__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerif... method __rsub__ (line 3780) | def __rsub__(self, other: typing.SupportsInt) -> QSslSocket.PeerVeri... method __rxor__ (line 3781) | def __rxor__(self, other: typing.SupportsInt) -> QSslSocket.PeerVeri... method __sub__ (line 3782) | def __sub__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerif... method __xor__ (line 3783) | def __xor__(self, other: typing.SupportsInt) -> QSslSocket.PeerVerif... class SslMode (line 3785) | class SslMode: method __init__ (line 3792) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3793) | def __add__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __and__ (line 3794) | def __and__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __bool__ (line 3795) | def __bool__(self) -> bool: ... method __eq__ (line 3796) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3797) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3798) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3799) | def __hash__(self) -> int: ... method __index__ (line 3800) | def __index__(self) -> int: ... method __int__ (line 3801) | def __int__(self) -> int: ... method __le__ (line 3802) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3803) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3804) | def __mul__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __ne__ (line 3805) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3806) | def __or__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __pos__ (line 3807) | def __pos__(self): ... method __radd__ (line 3808) | def __radd__(self, other: typing.SupportsInt) -> QSslSocket.SslMode:... method __rand__ (line 3809) | def __rand__(self, other: typing.SupportsInt) -> QSslSocket.SslMode:... method __rmul__ (line 3810) | def __rmul__(self, other: typing.SupportsInt) -> QSslSocket.SslMode:... method __ror__ (line 3811) | def __ror__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __rsub__ (line 3812) | def __rsub__(self, other: typing.SupportsInt) -> QSslSocket.SslMode:... method __rxor__ (line 3813) | def __rxor__(self, other: typing.SupportsInt) -> QSslSocket.SslMode:... method __sub__ (line 3814) | def __sub__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __xor__ (line 3815) | def __xor__(self, other: typing.SupportsInt) -> QSslSocket.SslMode: ... method __init__ (line 3831) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aboutT... method abort (line 3832) | def abort(self) -> None: ... method addCaCertificate (line 3833) | def addCaCertificate(self, certificate: QSslCertificate) -> None: ... method addCaCertificates (line 3835) | def addCaCertificates(self, path: str, format: QSsl.EncodingFormat = .... method addCaCertificates (line 3837) | def addCaCertificates(self, certificates: typing.Iterable[QSslCertific... method addDefaultCaCertificate (line 3839) | def addDefaultCaCertificate(certificate: QSslCertificate) -> None: ... method addDefaultCaCertificates (line 3842) | def addDefaultCaCertificates(path: str, format: QSsl.EncodingFormat = ... method addDefaultCaCertificates (line 3845) | def addDefaultCaCertificates(certificates: typing.Iterable[QSslCertifi... method atEnd (line 3846) | def atEnd(self) -> bool: ... method bytesAvailable (line 3847) | def bytesAvailable(self) -> int: ... method bytesToWrite (line 3848) | def bytesToWrite(self) -> int: ... method caCertificates (line 3849) | def caCertificates(self) -> list[QSslCertificate]: ... method canReadLine (line 3850) | def canReadLine(self) -> bool: ... method ciphers (line 3851) | def ciphers(self) -> list[QSslCipher]: ... method close (line 3852) | def close(self) -> None: ... method connectToHost (line 3854) | def connectToHost(self, hostName: str, port: int, openMode: PySide2.Qt... method connectToHost (line 3856) | def connectToHost(self, address: QHostAddress, port: int, mode: PySide... method connectToHostEncrypted (line 3858) | def connectToHostEncrypted(self, hostName: str, port: int, sslPeerName... method connectToHostEncrypted (line 3860) | def connectToHostEncrypted(self, hostName: str, port: int, mode: PySid... method defaultCaCertificates (line 3862) | def defaultCaCertificates() -> list[QSslCertificate]: ... method defaultCiphers (line 3864) | def defaultCiphers() -> list[QSslCipher]: ... method disconnectFromHost (line 3865) | def disconnectFromHost(self) -> None: ... method encryptedBytesAvailable (line 3866) | def encryptedBytesAvailable(self) -> int: ... method encryptedBytesToWrite (line 3867) | def encryptedBytesToWrite(self) -> int: ... method flush (line 3868) | def flush(self) -> bool: ... method ignoreSslErrors (line 3870) | def ignoreSslErrors(self, errors: typing.Iterable[QSslError]) -> None:... method ignoreSslErrors (line 3872) | def ignoreSslErrors(self) -> None: ... method isEncrypted (line 3873) | def isEncrypted(self) -> bool: ... method localCertificate (line 3874) | def localCertificate(self) -> QSslCertificate: ... method localCertificateChain (line 3875) | def localCertificateChain(self) -> list[QSslCertificate]: ... method mode (line 3876) | def mode(self) -> QSslSocket.SslMode: ... method ocspResponses (line 3877) | def ocspResponses(self) -> list[QOcspResponse]: ... method peerCertificate (line 3878) | def peerCertificate(self) -> QSslCertificate: ... method peerCertificateChain (line 3879) | def peerCertificateChain(self) -> list[QSslCertificate]: ... method peerVerifyDepth (line 3880) | def peerVerifyDepth(self) -> int: ... method peerVerifyMode (line 3881) | def peerVerifyMode(self) -> QSslSocket.PeerVerifyMode: ... method peerVerifyName (line 3882) | def peerVerifyName(self) -> str: ... method privateKey (line 3883) | def privateKey(self) -> QSslKey: ... method protocol (line 3884) | def protocol(self) -> QSsl.SslProtocol: ... method readData (line 3885) | def readData(self, data: bytes, maxlen: int) -> int: ... method resume (line 3886) | def resume(self) -> None: ... method sessionCipher (line 3887) | def sessionCipher(self) -> QSslCipher: ... method sessionProtocol (line 3888) | def sessionProtocol(self) -> QSsl.SslProtocol: ... method setCaCertificates (line 3889) | def setCaCertificates(self, certificates: typing.Iterable[QSslCertific... method setCiphers (line 3891) | def setCiphers(self, ciphers: typing.Iterable[QSslCipher]) -> None: ... method setCiphers (line 3893) | def setCiphers(self, ciphers: str) -> None: ... method setDefaultCaCertificates (line 3895) | def setDefaultCaCertificates(certificates: typing.Iterable[QSslCertifi... method setDefaultCiphers (line 3897) | def setDefaultCiphers(ciphers: typing.Iterable[QSslCipher]) -> None: ... method setLocalCertificate (line 3899) | def setLocalCertificate(self, fileName: str, format: QSsl.EncodingForm... method setLocalCertificate (line 3901) | def setLocalCertificate(self, certificate: QSslCertificate) -> None: ... method setLocalCertificateChain (line 3902) | def setLocalCertificateChain(self, localChain: typing.Iterable[QSslCer... method setPeerVerifyDepth (line 3903) | def setPeerVerifyDepth(self, depth: int) -> None: ... method setPeerVerifyMode (line 3904) | def setPeerVerifyMode(self, mode: QSslSocket.PeerVerifyMode) -> None: ... method setPeerVerifyName (line 3905) | def setPeerVerifyName(self, hostName: str) -> None: ... method setPrivateKey (line 3907) | def setPrivateKey(self, fileName: str, algorithm: QSsl.KeyAlgorithm = ... method setPrivateKey (line 3909) | def setPrivateKey(self, key: QSslKey) -> None: ... method setProtocol (line 3910) | def setProtocol(self, protocol: QSsl.SslProtocol) -> None: ... method setReadBufferSize (line 3911) | def setReadBufferSize(self, size: int) -> None: ... method setSocketDescriptor (line 3912) | def setSocketDescriptor(self, socketDescriptor: int, state: QAbstractS... method setSocketOption (line 3913) | def setSocketOption(self, option: QAbstractSocket.SocketOption, value:... method setSslConfiguration (line 3914) | def setSslConfiguration(self, config: QSslConfiguration) -> None: ... method socketOption (line 3915) | def socketOption(self, option: QAbstractSocket.SocketOption) -> typing... method sslConfiguration (line 3916) | def sslConfiguration(self) -> QSslConfiguration: ... method sslHandshakeErrors (line 3917) | def sslHandshakeErrors(self) -> list[QSslError]: ... method sslLibraryBuildVersionNumber (line 3919) | def sslLibraryBuildVersionNumber() -> int: ... method sslLibraryBuildVersionString (line 3921) | def sslLibraryBuildVersionString() -> str: ... method sslLibraryVersionNumber (line 3923) | def sslLibraryVersionNumber() -> int: ... method sslLibraryVersionString (line 3925) | def sslLibraryVersionString() -> str: ... method startClientEncryption (line 3926) | def startClientEncryption(self) -> None: ... method startServerEncryption (line 3927) | def startServerEncryption(self) -> None: ... method supportedCiphers (line 3929) | def supportedCiphers() -> list[QSslCipher]: ... method supportsSsl (line 3931) | def supportsSsl() -> bool: ... method systemCaCertificates (line 3933) | def systemCaCertificates() -> list[QSslCertificate]: ... method waitForBytesWritten (line 3934) | def waitForBytesWritten(self, msecs: int = ...) -> bool: ... method waitForConnected (line 3935) | def waitForConnected(self, msecs: int = ...) -> bool: ... method waitForDisconnected (line 3936) | def waitForDisconnected(self, msecs: int = ...) -> bool: ... method waitForEncrypted (line 3937) | def waitForEncrypted(self, msecs: int = ...) -> bool: ... method waitForReadyRead (line 3938) | def waitForReadyRead(self, msecs: int = ...) -> bool: ... method writeData (line 3939) | def writeData(self, data: bytes, len: int) -> int: ... class QTcpServer (line 3941) | class QTcpServer(PySide2.QtCore.QObject): method __init__ (line 3945) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., accept... method addPendingConnection (line 3946) | def addPendingConnection(self, socket: QTcpSocket) -> None: ... method close (line 3947) | def close(self) -> None: ... method errorString (line 3948) | def errorString(self) -> str: ... method hasPendingConnections (line 3949) | def hasPendingConnections(self) -> bool: ... method incomingConnection (line 3950) | def incomingConnection(self, handle: int) -> None: ... method isListening (line 3951) | def isListening(self) -> bool: ... method listen (line 3952) | def listen(self, address: QHostAddress = ..., port: int = ...) -> bool... method maxPendingConnections (line 3953) | def maxPendingConnections(self) -> int: ... method nextPendingConnection (line 3954) | def nextPendingConnection(self) -> QTcpSocket: ... method pauseAccepting (line 3955) | def pauseAccepting(self) -> None: ... method proxy (line 3956) | def proxy(self) -> QNetworkProxy: ... method resumeAccepting (line 3957) | def resumeAccepting(self) -> None: ... method serverAddress (line 3958) | def serverAddress(self) -> QHostAddress: ... method serverError (line 3959) | def serverError(self) -> QAbstractSocket.SocketError: ... method serverPort (line 3960) | def serverPort(self) -> int: ... method setMaxPendingConnections (line 3961) | def setMaxPendingConnections(self, numConnections: int) -> None: ... method setProxy (line 3962) | def setProxy(self, networkProxy: QNetworkProxy) -> None: ... method setSocketDescriptor (line 3963) | def setSocketDescriptor(self, socketDescriptor: int) -> bool: ... method socketDescriptor (line 3964) | def socketDescriptor(self) -> int: ... method waitForNewConnection (line 3965) | def waitForNewConnection(self, msec: int) -> tuple[bool, bool]: ... class QTcpSocket (line 3967) | class QTcpSocket(QAbstractSocket): method __init__ (line 3969) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aboutT... class QUdpSocket (line 3971) | class QUdpSocket(QAbstractSocket): method __init__ (line 3973) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aboutT... method hasPendingDatagrams (line 3974) | def hasPendingDatagrams(self) -> bool: ... method joinMulticastGroup (line 3976) | def joinMulticastGroup(self, groupAddress: QHostAddress, iface: QNetwo... method joinMulticastGroup (line 3978) | def joinMulticastGroup(self, groupAddress: QHostAddress) -> bool: ... method leaveMulticastGroup (line 3980) | def leaveMulticastGroup(self, groupAddress: QHostAddress, iface: QNetw... method leaveMulticastGroup (line 3982) | def leaveMulticastGroup(self, groupAddress: QHostAddress) -> bool: ... method multicastInterface (line 3983) | def multicastInterface(self) -> QNetworkInterface: ... method pendingDatagramSize (line 3984) | def pendingDatagramSize(self) -> int: ... method readDatagram (line 3985) | def readDatagram(self, data: bytes, maxlen: int, host: QHostAddress) -... method receiveDatagram (line 3986) | def receiveDatagram(self, maxSize: int = ...) -> QNetworkDatagram: ... method setMulticastInterface (line 3987) | def setMulticastInterface(self, iface: QNetworkInterface) -> None: ... method writeDatagram (line 3989) | def writeDatagram(self, datagram: PySide2.QtCore.QByteArray | bytes, h... method writeDatagram (line 3991) | def writeDatagram(self, datagram: QNetworkDatagram) -> int: ... FILE: pyside/stubs/PySide2-stubs/QtOpenGL.pyi class _add_QGLBuffer_release_overloads (line 13) | class _add_QGLBuffer_release_overloads: class StaticOverloads (line 20) | class StaticOverloads: class release (line 21) | class release: method __call__ (line 23) | def __call__(type: QGLBuffer.Type) -> None: ... class InstanceOverloads (line 25) | class InstanceOverloads: class release (line 26) | class release: method __call__ (line 28) | def __call__(self) -> None: ... method __call__ (line 30) | def __call__(self, type: QGLBuffer.Type) -> None: ... method __init__ (line 32) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 35) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 38) | def __get__(self, object: QGLBuffer, owner: typing.Any) -> InstanceOve... class QGL (line 40) | class QGL(shiboken2.Object): class FormatOption (line 41) | class FormatOption: method __init__ (line 67) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 68) | def __and__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __bool__ (line 69) | def __bool__(self) -> bool: ... method __eq__ (line 70) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 71) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 72) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 73) | def __hash__(self) -> int: ... method __index__ (line 74) | def __index__(self) -> int: ... method __int__ (line 75) | def __int__(self) -> int: ... method __invert__ (line 76) | def __invert__(self) -> QGL.FormatOptions: ... method __le__ (line 77) | def __le__(self, other: object) -> bool: ... method __lt__ (line 78) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 79) | def __ne__(self, other: object) -> bool: ... method __or__ (line 80) | def __or__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __rand__ (line 81) | def __rand__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __ror__ (line 82) | def __ror__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __rxor__ (line 83) | def __rxor__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __xor__ (line 84) | def __xor__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... class FormatOptions (line 86) | class FormatOptions: method __init__ (line 88) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 89) | def __and__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __bool__ (line 90) | def __bool__(self) -> bool: ... method __eq__ (line 91) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 92) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 93) | def __gt__(self, other: object) -> bool: ... method __index__ (line 94) | def __index__(self) -> int: ... method __int__ (line 95) | def __int__(self) -> int: ... method __invert__ (line 96) | def __invert__(self) -> QGL.FormatOptions: ... method __le__ (line 97) | def __le__(self, other: object) -> bool: ... method __lt__ (line 98) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 99) | def __ne__(self, other: object) -> bool: ... method __or__ (line 100) | def __or__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __rand__ (line 101) | def __rand__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __ror__ (line 102) | def __ror__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __rxor__ (line 103) | def __rxor__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __xor__ (line 104) | def __xor__(self, other: typing.SupportsInt) -> QGL.FormatOptions: ... method __init__ (line 128) | def __init__(cls, *args, **kwargs) -> None: ... class QGLBuffer (line 130) | class QGLBuffer(shiboken2.Object): class Access (line 131) | class Access: method __init__ (line 138) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 139) | def __add__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __and__ (line 140) | def __and__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __bool__ (line 141) | def __bool__(self) -> bool: ... method __eq__ (line 142) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 143) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 144) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 145) | def __hash__(self) -> int: ... method __index__ (line 146) | def __index__(self) -> int: ... method __int__ (line 147) | def __int__(self) -> int: ... method __le__ (line 148) | def __le__(self, other: object) -> bool: ... method __lt__ (line 149) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 150) | def __mul__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __ne__ (line 151) | def __ne__(self, other: object) -> bool: ... method __or__ (line 152) | def __or__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __pos__ (line 153) | def __pos__(self): ... method __radd__ (line 154) | def __radd__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __rand__ (line 155) | def __rand__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __rmul__ (line 156) | def __rmul__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __ror__ (line 157) | def __ror__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __rsub__ (line 158) | def __rsub__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __rxor__ (line 159) | def __rxor__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __sub__ (line 160) | def __sub__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... method __xor__ (line 161) | def __xor__(self, other: typing.SupportsInt) -> QGLBuffer.Access: ... class Type (line 163) | class Type: method __init__ (line 171) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 172) | def __add__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __and__ (line 173) | def __and__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __bool__ (line 174) | def __bool__(self) -> bool: ... method __eq__ (line 175) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 176) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 177) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 178) | def __hash__(self) -> int: ... method __index__ (line 179) | def __index__(self) -> int: ... method __int__ (line 180) | def __int__(self) -> int: ... method __le__ (line 181) | def __le__(self, other: object) -> bool: ... method __lt__ (line 182) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 183) | def __mul__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __ne__ (line 184) | def __ne__(self, other: object) -> bool: ... method __or__ (line 185) | def __or__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __pos__ (line 186) | def __pos__(self): ... method __radd__ (line 187) | def __radd__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __rand__ (line 188) | def __rand__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __rmul__ (line 189) | def __rmul__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __ror__ (line 190) | def __ror__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __rsub__ (line 191) | def __rsub__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __rxor__ (line 192) | def __rxor__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __sub__ (line 193) | def __sub__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... method __xor__ (line 194) | def __xor__(self, other: typing.SupportsInt) -> QGLBuffer.Type: ... class UsagePattern (line 196) | class UsagePattern: method __init__ (line 209) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 210) | def __add__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatte... method __and__ (line 211) | def __and__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatte... method __bool__ (line 212) | def __bool__(self) -> bool: ... method __eq__ (line 213) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 214) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 215) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 216) | def __hash__(self) -> int: ... method __index__ (line 217) | def __index__(self) -> int: ... method __int__ (line 218) | def __int__(self) -> int: ... method __le__ (line 219) | def __le__(self, other: object) -> bool: ... method __lt__ (line 220) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 221) | def __mul__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatte... method __ne__ (line 222) | def __ne__(self, other: object) -> bool: ... method __or__ (line 223) | def __or__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatter... method __pos__ (line 224) | def __pos__(self): ... method __radd__ (line 225) | def __radd__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatt... method __rand__ (line 226) | def __rand__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatt... method __rmul__ (line 227) | def __rmul__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatt... method __ror__ (line 228) | def __ror__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatte... method __rsub__ (line 229) | def __rsub__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatt... method __rxor__ (line 230) | def __rxor__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatt... method __sub__ (line 231) | def __sub__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatte... method __xor__ (line 232) | def __xor__(self, other: typing.SupportsInt) -> QGLBuffer.UsagePatte... method __init__ (line 250) | def __init__(self, type: QGLBuffer.Type) -> None: ... method __init__ (line 252) | def __init__(self, other: QGLBuffer) -> None: ... method __init__ (line 254) | def __init__(self) -> None: ... method allocate (line 256) | def allocate(self, data: int, count: int = ...) -> None: ... method allocate (line 258) | def allocate(self, count: int) -> None: ... method bind (line 259) | def bind(self) -> bool: ... method bufferId (line 260) | def bufferId(self) -> int: ... method create (line 261) | def create(self) -> bool: ... method destroy (line 262) | def destroy(self) -> None: ... method isCreated (line 263) | def isCreated(self) -> bool: ... method map (line 264) | def map(self, access: QGLBuffer.Access) -> int: ... method read (line 265) | def read(self, offset: int, data: int, count: int) -> bool: ... method release (line 267) | def release(self) -> typing.Any: ... method setUsagePattern (line 268) | def setUsagePattern(self, value: QGLBuffer.UsagePattern) -> None: ... method size (line 269) | def size(self) -> int: ... method type (line 270) | def type(self) -> QGLBuffer.Type: ... method unmap (line 271) | def unmap(self) -> bool: ... method usagePattern (line 272) | def usagePattern(self) -> QGLBuffer.UsagePattern: ... method write (line 273) | def write(self, offset: int, data: int, count: int = ...) -> None: ... class QGLColormap (line 275) | class QGLColormap(shiboken2.Object): method __init__ (line 277) | def __init__(self, arg__1: QGLColormap) -> None: ... method __init__ (line 279) | def __init__(self) -> None: ... method entryColor (line 280) | def entryColor(self, idx: int) -> PySide2.QtGui.QColor: ... method entryRgb (line 281) | def entryRgb(self, idx: int) -> int: ... method find (line 282) | def find(self, color: int) -> int: ... method findNearest (line 283) | def findNearest(self, color: int) -> int: ... method handle (line 284) | def handle(self) -> int: ... method isEmpty (line 285) | def isEmpty(self) -> bool: ... method setEntry (line 287) | def setEntry(self, idx: int, color: PySide2.QtGui.QColor | PySide2.QtC... method setEntry (line 289) | def setEntry(self, idx: int, color: int) -> None: ... # type: ignore[... method setHandle (line 290) | def setHandle(self, ahandle: int) -> None: ... method size (line 291) | def size(self) -> int: ... method __copy__ (line 292) | def __copy__(self) -> None: ... class QGLContext (line 294) | class QGLContext(shiboken2.Object): class BindOption (line 295) | class BindOption: method __init__ (line 309) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 310) | def __and__(self, other: typing.SupportsInt) -> QGLContext.BindOptio... method __bool__ (line 311) | def __bool__(self) -> bool: ... method __eq__ (line 312) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 313) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 314) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 315) | def __hash__(self) -> int: ... method __index__ (line 316) | def __index__(self) -> int: ... method __int__ (line 317) | def __int__(self) -> int: ... method __invert__ (line 318) | def __invert__(self) -> QGLContext.BindOptions: ... method __le__ (line 319) | def __le__(self, other: object) -> bool: ... method __lt__ (line 320) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 321) | def __ne__(self, other: object) -> bool: ... method __or__ (line 322) | def __or__(self, other: typing.SupportsInt) -> QGLContext.BindOption... method __rand__ (line 323) | def __rand__(self, other: typing.SupportsInt) -> QGLContext.BindOpti... method __ror__ (line 324) | def __ror__(self, other: typing.SupportsInt) -> QGLContext.BindOptio... method __rxor__ (line 325) | def __rxor__(self, other: typing.SupportsInt) -> QGLContext.BindOpti... method __xor__ (line 326) | def __xor__(self, other: typing.SupportsInt) -> QGLContext.BindOptio... class BindOptions (line 328) | class BindOptions: method __init__ (line 330) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 331) | def __and__(self, other: typing.SupportsInt) -> QGLContext.BindOptio... method __bool__ (line 332) | def __bool__(self) -> bool: ... method __eq__ (line 333) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 334) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 335) | def __gt__(self, other: object) -> bool: ... method __index__ (line 336) | def __index__(self) -> int: ... method __int__ (line 337) | def __int__(self) -> int: ... method __invert__ (line 338) | def __invert__(self) -> QGLContext.BindOptions: ... method __le__ (line 339) | def __le__(self, other: object) -> bool: ... method __lt__ (line 340) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 341) | def __ne__(self, other: object) -> bool: ... method __or__ (line 342) | def __or__(self, other: typing.SupportsInt) -> QGLContext.BindOption... method __rand__ (line 343) | def __rand__(self, other: typing.SupportsInt) -> QGLContext.BindOpti... method __ror__ (line 344) | def __ror__(self, other: typing.SupportsInt) -> QGLContext.BindOptio... method __rxor__ (line 345) | def __rxor__(self, other: typing.SupportsInt) -> QGLContext.BindOpti... method __xor__ (line 346) | def __xor__(self, other: typing.SupportsInt) -> QGLContext.BindOptio... method __init__ (line 357) | def __init__(self, format: QGLFormat) -> None: ... method areSharing (line 359) | def areSharing(context1: QGLContext, context2: QGLContext) -> bool: ... method bindTexture (line 361) | def bindTexture(self, pixmap: PySide2.QtGui.QPixmap, target: int, form... method bindTexture (line 363) | def bindTexture(self, image: PySide2.QtGui.QImage, target: int, format... method bindTexture (line 365) | def bindTexture(self, pixmap: PySide2.QtGui.QPixmap, target: int = ...... method bindTexture (line 367) | def bindTexture(self, image: PySide2.QtGui.QImage, target: int = ..., ... method bindTexture (line 369) | def bindTexture(self, fileName: str) -> int: ... method chooseContext (line 370) | def chooseContext(self, shareContext: QGLContext | None = ...) -> bool... method colorIndex (line 371) | def colorIndex(self, c: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Globa... method contextHandle (line 372) | def contextHandle(self) -> PySide2.QtGui.QOpenGLContext: ... method create (line 373) | def create(self, shareContext: QGLContext | None = ...) -> bool: ... method currentContext (line 375) | def currentContext() -> QGLContext: ... method deleteTexture (line 376) | def deleteTexture(self, tx_id: int) -> None: ... method device (line 377) | def device(self) -> PySide2.QtGui.QPaintDevice: ... method deviceIsPixmap (line 378) | def deviceIsPixmap(self) -> bool: ... method doneCurrent (line 379) | def doneCurrent(self) -> None: ... method drawTexture (line 381) | def drawTexture(self, target: PySide2.QtCore.QRectF, textureId: int, t... method drawTexture (line 383) | def drawTexture(self, point: PySide2.QtCore.QPointF, textureId: int, t... method format (line 384) | def format(self) -> QGLFormat: ... method fromOpenGLContext (line 386) | def fromOpenGLContext(platformContext: PySide2.QtGui.QOpenGLContext) -... method initialized (line 387) | def initialized(self) -> bool: ... method isSharing (line 388) | def isSharing(self) -> bool: ... method isValid (line 389) | def isValid(self) -> bool: ... method makeCurrent (line 390) | def makeCurrent(self) -> None: ... method moveToThread (line 391) | def moveToThread(self, thread: PySide2.QtCore.QThread) -> None: ... method overlayTransparentColor (line 392) | def overlayTransparentColor(self) -> PySide2.QtGui.QColor: ... method requestedFormat (line 393) | def requestedFormat(self) -> QGLFormat: ... method reset (line 394) | def reset(self) -> None: ... method setDevice (line 395) | def setDevice(self, pDev: PySide2.QtGui.QPaintDevice) -> None: ... method setFormat (line 396) | def setFormat(self, format: QGLFormat) -> None: ... method setInitialized (line 397) | def setInitialized(self, on: bool) -> None: ... method setTextureCacheLimit (line 399) | def setTextureCacheLimit(size: int) -> None: ... method setValid (line 400) | def setValid(self, valid: bool) -> None: ... method setWindowCreated (line 401) | def setWindowCreated(self, on: bool) -> None: ... method swapBuffers (line 402) | def swapBuffers(self) -> None: ... method textureCacheLimit (line 404) | def textureCacheLimit() -> int: ... method windowCreated (line 405) | def windowCreated(self) -> bool: ... class QGLFormat (line 407) | class QGLFormat(shiboken2.Object): class OpenGLContextProfile (line 408) | class OpenGLContextProfile: method __init__ (line 415) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 416) | def __add__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCont... method __and__ (line 417) | def __and__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCont... method __bool__ (line 418) | def __bool__(self) -> bool: ... method __eq__ (line 419) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 420) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 421) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 422) | def __hash__(self) -> int: ... method __index__ (line 423) | def __index__(self) -> int: ... method __int__ (line 424) | def __int__(self) -> int: ... method __le__ (line 425) | def __le__(self, other: object) -> bool: ... method __lt__ (line 426) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 427) | def __mul__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCont... method __ne__ (line 428) | def __ne__(self, other: object) -> bool: ... method __or__ (line 429) | def __or__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLConte... method __pos__ (line 430) | def __pos__(self): ... method __radd__ (line 431) | def __radd__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCon... method __rand__ (line 432) | def __rand__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCon... method __rmul__ (line 433) | def __rmul__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCon... method __ror__ (line 434) | def __ror__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCont... method __rsub__ (line 435) | def __rsub__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCon... method __rxor__ (line 436) | def __rxor__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCon... method __sub__ (line 437) | def __sub__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCont... method __xor__ (line 438) | def __xor__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLCont... class OpenGLVersionFlag (line 440) | class OpenGLVersionFlag: method __init__ (line 465) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 466) | def __and__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVers... method __bool__ (line 467) | def __bool__(self) -> bool: ... method __eq__ (line 468) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 469) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 470) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 471) | def __hash__(self) -> int: ... method __index__ (line 472) | def __index__(self) -> int: ... method __int__ (line 473) | def __int__(self) -> int: ... method __invert__ (line 474) | def __invert__(self) -> QGLFormat.OpenGLVersionFlags: ... method __le__ (line 475) | def __le__(self, other: object) -> bool: ... method __lt__ (line 476) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 477) | def __ne__(self, other: object) -> bool: ... method __or__ (line 478) | def __or__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVersi... method __rand__ (line 479) | def __rand__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVer... method __ror__ (line 480) | def __ror__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVers... method __rxor__ (line 481) | def __rxor__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVer... method __xor__ (line 482) | def __xor__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVers... class OpenGLVersionFlags (line 484) | class OpenGLVersionFlags: method __init__ (line 486) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 487) | def __and__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVers... method __bool__ (line 488) | def __bool__(self) -> bool: ... method __eq__ (line 489) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 490) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 491) | def __gt__(self, other: object) -> bool: ... method __index__ (line 492) | def __index__(self) -> int: ... method __int__ (line 493) | def __int__(self) -> int: ... method __invert__ (line 494) | def __invert__(self) -> QGLFormat.OpenGLVersionFlags: ... method __le__ (line 495) | def __le__(self, other: object) -> bool: ... method __lt__ (line 496) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 497) | def __ne__(self, other: object) -> bool: ... method __or__ (line 498) | def __or__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVersi... method __rand__ (line 499) | def __rand__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVer... method __ror__ (line 500) | def __ror__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVers... method __rxor__ (line 501) | def __rxor__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVer... method __xor__ (line 502) | def __xor__(self, other: typing.SupportsInt) -> QGLFormat.OpenGLVers... method __init__ (line 528) | def __init__(self, options: QGL.FormatOptions | QGL.FormatOption, plan... method __init__ (line 530) | def __init__(self, other: QGLFormat) -> None: ... method __init__ (line 532) | def __init__(self) -> None: ... method accum (line 533) | def accum(self) -> bool: ... method accumBufferSize (line 534) | def accumBufferSize(self) -> int: ... method alpha (line 535) | def alpha(self) -> bool: ... method alphaBufferSize (line 536) | def alphaBufferSize(self) -> int: ... method blueBufferSize (line 537) | def blueBufferSize(self) -> int: ... method defaultFormat (line 539) | def defaultFormat() -> QGLFormat: ... method defaultOverlayFormat (line 541) | def defaultOverlayFormat() -> QGLFormat: ... method depth (line 542) | def depth(self) -> bool: ... method depthBufferSize (line 543) | def depthBufferSize(self) -> int: ... method directRendering (line 544) | def directRendering(self) -> bool: ... method doubleBuffer (line 545) | def doubleBuffer(self) -> bool: ... method fromSurfaceFormat (line 547) | def fromSurfaceFormat(format: PySide2.QtGui.QSurfaceFormat) -> QGLForm... method greenBufferSize (line 548) | def greenBufferSize(self) -> int: ... method hasOpenGL (line 550) | def hasOpenGL() -> bool: ... method hasOpenGLOverlays (line 552) | def hasOpenGLOverlays() -> bool: ... method hasOverlay (line 553) | def hasOverlay(self) -> bool: ... method majorVersion (line 554) | def majorVersion(self) -> int: ... method minorVersion (line 555) | def minorVersion(self) -> int: ... method openGLVersionFlags (line 557) | def openGLVersionFlags() -> QGLFormat.OpenGLVersionFlags | QGLFormat.O... method plane (line 558) | def plane(self) -> int: ... method profile (line 559) | def profile(self) -> QGLFormat.OpenGLContextProfile: ... method redBufferSize (line 560) | def redBufferSize(self) -> int: ... method rgba (line 561) | def rgba(self) -> bool: ... method sampleBuffers (line 562) | def sampleBuffers(self) -> bool: ... method samples (line 563) | def samples(self) -> int: ... method setAccum (line 564) | def setAccum(self, enable: bool) -> None: ... method setAccumBufferSize (line 565) | def setAccumBufferSize(self, size: int) -> None: ... method setAlpha (line 566) | def setAlpha(self, enable: bool) -> None: ... method setAlphaBufferSize (line 567) | def setAlphaBufferSize(self, size: int) -> None: ... method setBlueBufferSize (line 568) | def setBlueBufferSize(self, size: int) -> None: ... method setDefaultFormat (line 570) | def setDefaultFormat(f: QGLFormat) -> None: ... method setDefaultOverlayFormat (line 572) | def setDefaultOverlayFormat(f: QGLFormat) -> None: ... method setDepth (line 573) | def setDepth(self, enable: bool) -> None: ... method setDepthBufferSize (line 574) | def setDepthBufferSize(self, size: int) -> None: ... method setDirectRendering (line 575) | def setDirectRendering(self, enable: bool) -> None: ... method setDoubleBuffer (line 576) | def setDoubleBuffer(self, enable: bool) -> None: ... method setGreenBufferSize (line 577) | def setGreenBufferSize(self, size: int) -> None: ... method setOption (line 578) | def setOption(self, opt: QGL.FormatOptions | QGL.FormatOption) -> None... method setOverlay (line 579) | def setOverlay(self, enable: bool) -> None: ... method setPlane (line 580) | def setPlane(self, plane: int) -> None: ... method setProfile (line 581) | def setProfile(self, profile: QGLFormat.OpenGLContextProfile) -> None:... method setRedBufferSize (line 582) | def setRedBufferSize(self, size: int) -> None: ... method setRgba (line 583) | def setRgba(self, enable: bool) -> None: ... method setSampleBuffers (line 584) | def setSampleBuffers(self, enable: bool) -> None: ... method setSamples (line 585) | def setSamples(self, numSamples: int) -> None: ... method setStencil (line 586) | def setStencil(self, enable: bool) -> None: ... method setStencilBufferSize (line 587) | def setStencilBufferSize(self, size: int) -> None: ... method setStereo (line 588) | def setStereo(self, enable: bool) -> None: ... method setSwapInterval (line 589) | def setSwapInterval(self, interval: int) -> None: ... method setVersion (line 590) | def setVersion(self, major: int, minor: int) -> None: ... method stencil (line 591) | def stencil(self) -> bool: ... method stencilBufferSize (line 592) | def stencilBufferSize(self) -> int: ... method stereo (line 593) | def stereo(self) -> bool: ... method swapInterval (line 594) | def swapInterval(self) -> int: ... method testOption (line 595) | def testOption(self, opt: QGL.FormatOptions | QGL.FormatOption) -> boo... method toSurfaceFormat (line 597) | def toSurfaceFormat(format: QGLFormat) -> PySide2.QtGui.QSurfaceFormat... method __copy__ (line 598) | def __copy__(self) -> None: ... method __eq__ (line 599) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 600) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 601) | def __gt__(self, other: object) -> bool: ... method __le__ (line 602) | def __le__(self, other: object) -> bool: ... method __lt__ (line 603) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 604) | def __ne__(self, other: object) -> bool: ... class QGLFramebufferObject (line 606) | class QGLFramebufferObject(PySide2.QtGui.QPaintDevice): class Attachment (line 607) | class Attachment: method __init__ (line 614) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 615) | def __add__(self, other: typing.SupportsInt) -> QGLFramebufferObject... method __and__ (line 616) | def __and__(self, other: typing.SupportsInt) -> QGLFramebufferObject... method __bool__ (line 617) | def __bool__(self) -> bool: ... method __eq__ (line 618) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 619) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 620) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 621) | def __hash__(self) -> int: ... method __index__ (line 622) | def __index__(self) -> int: ... method __int__ (line 623) | def __int__(self) -> int: ... method __le__ (line 624) | def __le__(self, other: object) -> bool: ... method __lt__ (line 625) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 626) | def __mul__(self, other: typing.SupportsInt) -> QGLFramebufferObject... method __ne__ (line 627) | def __ne__(self, other: object) -> bool: ... method __or__ (line 628) | def __or__(self, other: typing.SupportsInt) -> QGLFramebufferObject.... method __pos__ (line 629) | def __pos__(self): ... method __radd__ (line 630) | def __radd__(self, other: typing.SupportsInt) -> QGLFramebufferObjec... method __rand__ (line 631) | def __rand__(self, other: typing.SupportsInt) -> QGLFramebufferObjec... method __rmul__ (line 632) | def __rmul__(self, other: typing.SupportsInt) -> QGLFramebufferObjec... method __ror__ (line 633) | def __ror__(self, other: typing.SupportsInt) -> QGLFramebufferObject... method __rsub__ (line 634) | def __rsub__(self, other: typing.SupportsInt) -> QGLFramebufferObjec... method __rxor__ (line 635) | def __rxor__(self, other: typing.SupportsInt) -> QGLFramebufferObjec... method __sub__ (line 636) | def __sub__(self, other: typing.SupportsInt) -> QGLFramebufferObject... method __xor__ (line 637) | def __xor__(self, other: typing.SupportsInt) -> QGLFramebufferObject... method __init__ (line 642) | def __init__(self, width: int, height: int, attachment: QGLFramebuffer... method __init__ (line 644) | def __init__(self, size: PySide2.QtCore.QSize, attachment: QGLFramebuf... method __init__ (line 646) | def __init__(self, width: int, height: int, target: int = ...) -> None... method __init__ (line 648) | def __init__(self, width: int, height: int, format: QGLFramebufferObje... method __init__ (line 650) | def __init__(self, size: PySide2.QtCore.QSize, target: int = ...) -> N... method __init__ (line 652) | def __init__(self, size: PySide2.QtCore.QSize, format: QGLFramebufferO... method attachment (line 653) | def attachment(self) -> QGLFramebufferObject.Attachment: ... method bind (line 654) | def bind(self) -> bool: ... method bindDefault (line 656) | def bindDefault() -> bool: ... method blitFramebuffer (line 658) | def blitFramebuffer(target: QGLFramebufferObject, targetRect: PySide2.... method devType (line 659) | def devType(self) -> int: ... method drawTexture (line 661) | def drawTexture(self, target: PySide2.QtCore.QRectF, textureId: int, t... method drawTexture (line 663) | def drawTexture(self, point: PySide2.QtCore.QPointF, textureId: int, t... method format (line 664) | def format(self) -> QGLFramebufferObjectFormat: ... method handle (line 665) | def handle(self) -> int: ... method hasOpenGLFramebufferBlit (line 667) | def hasOpenGLFramebufferBlit() -> bool: ... method hasOpenGLFramebufferObjects (line 669) | def hasOpenGLFramebufferObjects() -> bool: ... method isBound (line 670) | def isBound(self) -> bool: ... method isValid (line 671) | def isValid(self) -> bool: ... method metric (line 672) | def metric(self, metric: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method paintEngine (line 673) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method release (line 674) | def release(self) -> bool: ... method size (line 675) | def size(self) -> PySide2.QtCore.QSize: ... method texture (line 676) | def texture(self) -> int: ... method toImage (line 677) | def toImage(self) -> PySide2.QtGui.QImage: ... class QGLFramebufferObjectFormat (line 679) | class QGLFramebufferObjectFormat(shiboken2.Object): method __init__ (line 681) | def __init__(self, other: QGLFramebufferObjectFormat) -> None: ... method __init__ (line 683) | def __init__(self) -> None: ... method attachment (line 684) | def attachment(self) -> QGLFramebufferObject.Attachment: ... method internalTextureFormat (line 685) | def internalTextureFormat(self) -> int: ... method mipmap (line 686) | def mipmap(self) -> bool: ... method samples (line 687) | def samples(self) -> int: ... method setAttachment (line 688) | def setAttachment(self, attachment: QGLFramebufferObject.Attachment) -... method setInternalTextureFormat (line 689) | def setInternalTextureFormat(self, internalTextureFormat: int) -> None... method setMipmap (line 690) | def setMipmap(self, enabled: bool) -> None: ... method setSamples (line 691) | def setSamples(self, samples: int) -> None: ... method setTextureTarget (line 692) | def setTextureTarget(self, target: int) -> None: ... method textureTarget (line 693) | def textureTarget(self) -> int: ... method __copy__ (line 694) | def __copy__(self) -> None: ... method __eq__ (line 695) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 696) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 697) | def __gt__(self, other: object) -> bool: ... method __le__ (line 698) | def __le__(self, other: object) -> bool: ... method __lt__ (line 699) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 700) | def __ne__(self, other: object) -> bool: ... class QGLPixelBuffer (line 702) | class QGLPixelBuffer(PySide2.QtGui.QPaintDevice): method __init__ (line 704) | def __init__(self, width: int, height: int, format: QGLFormat = ..., s... method __init__ (line 706) | def __init__(self, size: PySide2.QtCore.QSize, format: QGLFormat = ...... method bindTexture (line 708) | def bindTexture(self, pixmap: PySide2.QtGui.QPixmap, target: int = ...... method bindTexture (line 710) | def bindTexture(self, image: PySide2.QtGui.QImage, target: int = ...) ... method bindTexture (line 712) | def bindTexture(self, fileName: str) -> int: ... method bindToDynamicTexture (line 713) | def bindToDynamicTexture(self, texture: int) -> bool: ... method context (line 714) | def context(self) -> QGLContext: ... method deleteTexture (line 715) | def deleteTexture(self, texture_id: int) -> None: ... method devType (line 716) | def devType(self) -> int: ... method doneCurrent (line 717) | def doneCurrent(self) -> bool: ... method drawTexture (line 719) | def drawTexture(self, target: PySide2.QtCore.QRectF, textureId: int, t... method drawTexture (line 721) | def drawTexture(self, point: PySide2.QtCore.QPointF, textureId: int, t... method format (line 722) | def format(self) -> QGLFormat: ... method generateDynamicTexture (line 723) | def generateDynamicTexture(self) -> int: ... method handle (line 724) | def handle(self) -> int: ... method hasOpenGLPbuffers (line 726) | def hasOpenGLPbuffers() -> bool: ... method isValid (line 727) | def isValid(self) -> bool: ... method makeCurrent (line 728) | def makeCurrent(self) -> bool: ... method metric (line 729) | def metric(self, metric: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method paintEngine (line 730) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method releaseFromDynamicTexture (line 731) | def releaseFromDynamicTexture(self) -> None: ... method size (line 732) | def size(self) -> PySide2.QtCore.QSize: ... method toImage (line 733) | def toImage(self) -> PySide2.QtGui.QImage: ... method updateDynamicTexture (line 734) | def updateDynamicTexture(self, texture_id: int) -> None: ... class QGLShader (line 736) | class QGLShader(PySide2.QtCore.QObject): class ShaderType (line 737) | class ShaderType: method __init__ (line 739) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 740) | def __and__(self, other: typing.SupportsInt) -> QGLShader.ShaderType... method __bool__ (line 741) | def __bool__(self) -> bool: ... method __eq__ (line 742) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 743) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 744) | def __gt__(self, other: object) -> bool: ... method __index__ (line 745) | def __index__(self) -> int: ... method __int__ (line 746) | def __int__(self) -> int: ... method __invert__ (line 747) | def __invert__(self) -> QGLShader.ShaderType: ... method __le__ (line 748) | def __le__(self, other: object) -> bool: ... method __lt__ (line 749) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 750) | def __ne__(self, other: object) -> bool: ... method __or__ (line 751) | def __or__(self, other: typing.SupportsInt) -> QGLShader.ShaderType:... method __rand__ (line 752) | def __rand__(self, other: typing.SupportsInt) -> QGLShader.ShaderTyp... method __ror__ (line 753) | def __ror__(self, other: typing.SupportsInt) -> QGLShader.ShaderType... method __rxor__ (line 754) | def __rxor__(self, other: typing.SupportsInt) -> QGLShader.ShaderTyp... method __xor__ (line 755) | def __xor__(self, other: typing.SupportsInt) -> QGLShader.ShaderType... class ShaderTypeBit (line 757) | class ShaderTypeBit: method __init__ (line 764) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 765) | def __and__(self, other: typing.SupportsInt) -> QGLShader.ShaderType... method __bool__ (line 766) | def __bool__(self) -> bool: ... method __eq__ (line 767) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 768) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 769) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 770) | def __hash__(self) -> int: ... method __index__ (line 771) | def __index__(self) -> int: ... method __int__ (line 772) | def __int__(self) -> int: ... method __invert__ (line 773) | def __invert__(self) -> QGLShader.ShaderType: ... method __le__ (line 774) | def __le__(self, other: object) -> bool: ... method __lt__ (line 775) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 776) | def __ne__(self, other: object) -> bool: ... method __or__ (line 777) | def __or__(self, other: typing.SupportsInt) -> QGLShader.ShaderType:... method __rand__ (line 778) | def __rand__(self, other: typing.SupportsInt) -> QGLShader.ShaderTyp... method __ror__ (line 779) | def __ror__(self, other: typing.SupportsInt) -> QGLShader.ShaderType... method __rxor__ (line 780) | def __rxor__(self, other: typing.SupportsInt) -> QGLShader.ShaderTyp... method __xor__ (line 781) | def __xor__(self, other: typing.SupportsInt) -> QGLShader.ShaderType... method __init__ (line 787) | def __init__(self, type: QGLShader.ShaderType | QGLShader.ShaderTypeBi... method __init__ (line 789) | def __init__(self, type: QGLShader.ShaderType | QGLShader.ShaderTypeBi... method compileSourceCode (line 791) | def compileSourceCode(self, source: PySide2.QtCore.QByteArray | bytes)... method compileSourceCode (line 793) | def compileSourceCode(self, source: str) -> bool: ... method compileSourceCode (line 795) | def compileSourceCode(self, source: bytes) -> bool: ... # type: ignor... method compileSourceFile (line 796) | def compileSourceFile(self, fileName: str) -> bool: ... method hasOpenGLShaders (line 798) | def hasOpenGLShaders(type: QGLShader.ShaderType | QGLShader.ShaderType... method isCompiled (line 799) | def isCompiled(self) -> bool: ... method log (line 800) | def log(self) -> str: ... method shaderId (line 801) | def shaderId(self) -> int: ... method shaderType (line 802) | def shaderType(self) -> QGLShader.ShaderType | QGLShader.ShaderTypeBit... method sourceCode (line 803) | def sourceCode(self) -> PySide2.QtCore.QByteArray: ... class QGLShaderProgram (line 805) | class QGLShaderProgram(PySide2.QtCore.QObject): method __init__ (line 808) | def __init__(self, context: QGLContext, parent: PySide2.QtCore.QObject... method __init__ (line 810) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method addShader (line 811) | def addShader(self, shader: QGLShader) -> bool: ... method addShaderFromSourceCode (line 813) | def addShaderFromSourceCode(self, type: QGLShader.ShaderType | QGLShad... method addShaderFromSourceCode (line 815) | def addShaderFromSourceCode(self, type: QGLShader.ShaderType | QGLShad... method addShaderFromSourceCode (line 817) | def addShaderFromSourceCode(self, type: QGLShader.ShaderType | QGLShad... method addShaderFromSourceFile (line 818) | def addShaderFromSourceFile(self, type: QGLShader.ShaderType | QGLShad... method attributeLocation (line 820) | def attributeLocation(self, name: PySide2.QtCore.QByteArray | bytes) -... method attributeLocation (line 822) | def attributeLocation(self, name: str) -> int: ... method attributeLocation (line 824) | def attributeLocation(self, name: bytes) -> int: ... # type: ignore[o... method bind (line 825) | def bind(self) -> bool: ... method bindAttributeLocation (line 827) | def bindAttributeLocation(self, name: PySide2.QtCore.QByteArray | byte... method bindAttributeLocation (line 829) | def bindAttributeLocation(self, name: str, location: int) -> None: ... method bindAttributeLocation (line 831) | def bindAttributeLocation(self, name: bytes, location: int) -> None: .... method disableAttributeArray (line 833) | def disableAttributeArray(self, name: bytes) -> None: ... method disableAttributeArray (line 835) | def disableAttributeArray(self, location: int) -> None: ... method enableAttributeArray (line 837) | def enableAttributeArray(self, name: bytes) -> None: ... method enableAttributeArray (line 839) | def enableAttributeArray(self, location: int) -> None: ... method geometryInputType (line 840) | def geometryInputType(self) -> int: ... method geometryOutputType (line 841) | def geometryOutputType(self) -> int: ... method geometryOutputVertexCount (line 842) | def geometryOutputVertexCount(self) -> int: ... method hasOpenGLShaderPrograms (line 844) | def hasOpenGLShaderPrograms(context: QGLContext | None = ...) -> bool:... method isLinked (line 845) | def isLinked(self) -> bool: ... method link (line 846) | def link(self) -> bool: ... method log (line 847) | def log(self) -> str: ... method maxGeometryOutputVertices (line 848) | def maxGeometryOutputVertices(self) -> int: ... method programId (line 849) | def programId(self) -> int: ... method release (line 850) | def release(self) -> None: ... method removeAllShaders (line 851) | def removeAllShaders(self) -> None: ... method removeShader (line 852) | def removeShader(self, shader: QGLShader) -> None: ... method setAttributeArray2D (line 854) | def setAttributeArray2D(self, name: bytes, values: PySide2.QtGui.QVect... method setAttributeArray2D (line 856) | def setAttributeArray2D(self, location: int, values: PySide2.QtGui.QVe... method setAttributeArray3D (line 858) | def setAttributeArray3D(self, name: bytes, values: PySide2.QtGui.QVect... method setAttributeArray3D (line 860) | def setAttributeArray3D(self, location: int, values: PySide2.QtGui.QVe... method setAttributeArray4D (line 862) | def setAttributeArray4D(self, name: bytes, values: PySide2.QtGui.QVect... method setAttributeArray4D (line 864) | def setAttributeArray4D(self, location: int, values: PySide2.QtGui.QVe... method setAttributeBuffer (line 866) | def setAttributeBuffer(self, name: bytes, type: int, offset: int, tupl... method setAttributeBuffer (line 868) | def setAttributeBuffer(self, location: int, type: int, offset: int, tu... method setAttributeValue (line 870) | def setAttributeValue(self, name: bytes, x: float, y: float, z: float,... method setAttributeValue (line 872) | def setAttributeValue(self, location: int, x: float, y: float, z: floa... method setAttributeValue (line 874) | def setAttributeValue(self, name: bytes, x: float, y: float, z: float)... method setAttributeValue (line 876) | def setAttributeValue(self, location: int, x: float, y: float, z: floa... method setAttributeValue (line 878) | def setAttributeValue(self, name: bytes, x: float, y: float) -> None: ... method setAttributeValue (line 880) | def setAttributeValue(self, location: int, x: float, y: float) -> None... method setAttributeValue (line 882) | def setAttributeValue(self, name: bytes, value: float) -> None: ... method setAttributeValue (line 884) | def setAttributeValue(self, name: bytes, value: PySide2.QtGui.QColor |... method setAttributeValue (line 886) | def setAttributeValue(self, name: bytes, value: PySide2.QtGui.QVector2... method setAttributeValue (line 888) | def setAttributeValue(self, name: bytes, value: PySide2.QtGui.QVector3... method setAttributeValue (line 890) | def setAttributeValue(self, name: bytes, value: PySide2.QtGui.QVector4... method setAttributeValue (line 892) | def setAttributeValue(self, location: int, value: float) -> None: ... method setAttributeValue (line 894) | def setAttributeValue(self, location: int, value: PySide2.QtGui.QColor... method setAttributeValue (line 896) | def setAttributeValue(self, location: int, value: PySide2.QtGui.QVecto... method setAttributeValue (line 898) | def setAttributeValue(self, location: int, value: PySide2.QtGui.QVecto... method setAttributeValue (line 900) | def setAttributeValue(self, location: int, value: PySide2.QtGui.QVecto... method setGeometryInputType (line 901) | def setGeometryInputType(self, inputType: int) -> None: ... method setGeometryOutputType (line 902) | def setGeometryOutputType(self, outputType: int) -> None: ... method setGeometryOutputVertexCount (line 903) | def setGeometryOutputVertexCount(self, count: int) -> None: ... method setUniformValue (line 905) | def setUniformValue(self, name: bytes, x: float, y: float, z: float, w... method setUniformValue (line 907) | def setUniformValue(self, location: int, x: float, y: float, z: float,... method setUniformValue (line 909) | def setUniformValue(self, name: bytes, x: float, y: float, z: float) -... method setUniformValue (line 911) | def setUniformValue(self, location: int, x: float, y: float, z: float)... method setUniformValue (line 913) | def setUniformValue(self, name: bytes, x: float, y: float) -> None: ... method setUniformValue (line 915) | def setUniformValue(self, location: int, x: float, y: float) -> None: ... method setUniformValue (line 917) | def setUniformValue(self, name: bytes, value: float) -> None: ... method setUniformValue (line 919) | def setUniformValue(self, name: bytes, value: int) -> None: ... # typ... method setUniformValue (line 921) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix2x2... method setUniformValue (line 923) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix2x3... method setUniformValue (line 925) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix2x4... method setUniformValue (line 927) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix3x2... method setUniformValue (line 929) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix3x3... method setUniformValue (line 931) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix3x4... method setUniformValue (line 933) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix4x2... method setUniformValue (line 935) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix4x3... method setUniformValue (line 937) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QMatrix4x4... method setUniformValue (line 939) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QTransform... method setUniformValue (line 941) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QVector2D)... method setUniformValue (line 943) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QVector3D)... method setUniformValue (line 945) | def setUniformValue(self, name: bytes, value: PySide2.QtGui.QVector4D)... method setUniformValue (line 947) | def setUniformValue(self, name: bytes, size: PySide2.QtCore.QSize) -> ... method setUniformValue (line 949) | def setUniformValue(self, name: bytes, size: PySide2.QtCore.QSizeF) ->... method setUniformValue (line 951) | def setUniformValue(self, name: bytes, point: PySide2.QtCore.QPoint) -... method setUniformValue (line 953) | def setUniformValue(self, name: bytes, point: PySide2.QtCore.QPointF) ... method setUniformValue (line 955) | def setUniformValue(self, name: bytes, color: PySide2.QtGui.QColor | P... method setUniformValue (line 957) | def setUniformValue(self, location: int, value: float) -> None: ... method setUniformValue (line 959) | def setUniformValue(self, location: int, value: int) -> None: ... # t... method setUniformValue (line 961) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix2... method setUniformValue (line 963) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix2... method setUniformValue (line 965) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix2... method setUniformValue (line 967) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix3... method setUniformValue (line 969) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix3... method setUniformValue (line 971) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix3... method setUniformValue (line 973) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix4... method setUniformValue (line 975) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix4... method setUniformValue (line 977) | def setUniformValue(self, location: int, value: PySide2.QtGui.QMatrix4... method setUniformValue (line 979) | def setUniformValue(self, location: int, value: PySide2.QtGui.QTransfo... method setUniformValue (line 981) | def setUniformValue(self, location: int, value: PySide2.QtGui.QVector2... method setUniformValue (line 983) | def setUniformValue(self, location: int, value: PySide2.QtGui.QVector3... method setUniformValue (line 985) | def setUniformValue(self, location: int, value: PySide2.QtGui.QVector4... method setUniformValue (line 987) | def setUniformValue(self, location: int, size: PySide2.QtCore.QSize) -... method setUniformValue (line 989) | def setUniformValue(self, location: int, size: PySide2.QtCore.QSizeF) ... method setUniformValue (line 991) | def setUniformValue(self, location: int, point: PySide2.QtCore.QPoint)... method setUniformValue (line 993) | def setUniformValue(self, location: int, point: PySide2.QtCore.QPointF... method setUniformValue (line 995) | def setUniformValue(self, location: int, color: PySide2.QtGui.QColor |... method setUniformValueArray2D (line 997) | def setUniformValueArray2D(self, name: bytes, values: PySide2.QtGui.QV... method setUniformValueArray2D (line 999) | def setUniformValueArray2D(self, location: int, values: PySide2.QtGui.... method setUniformValueArray2x2 (line 1001) | def setUniformValueArray2x2(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray2x2 (line 1003) | def setUniformValueArray2x2(self, location: int, values: PySide2.QtGui... method setUniformValueArray2x3 (line 1005) | def setUniformValueArray2x3(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray2x3 (line 1007) | def setUniformValueArray2x3(self, location: int, values: PySide2.QtGui... method setUniformValueArray2x4 (line 1009) | def setUniformValueArray2x4(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray2x4 (line 1011) | def setUniformValueArray2x4(self, location: int, values: PySide2.QtGui... method setUniformValueArray3D (line 1013) | def setUniformValueArray3D(self, name: bytes, values: PySide2.QtGui.QV... method setUniformValueArray3D (line 1015) | def setUniformValueArray3D(self, location: int, values: PySide2.QtGui.... method setUniformValueArray3x2 (line 1017) | def setUniformValueArray3x2(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray3x2 (line 1019) | def setUniformValueArray3x2(self, location: int, values: PySide2.QtGui... method setUniformValueArray3x3 (line 1021) | def setUniformValueArray3x3(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray3x3 (line 1023) | def setUniformValueArray3x3(self, location: int, values: PySide2.QtGui... method setUniformValueArray3x4 (line 1025) | def setUniformValueArray3x4(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray3x4 (line 1027) | def setUniformValueArray3x4(self, location: int, values: PySide2.QtGui... method setUniformValueArray4D (line 1029) | def setUniformValueArray4D(self, name: bytes, values: PySide2.QtGui.QV... method setUniformValueArray4D (line 1031) | def setUniformValueArray4D(self, location: int, values: PySide2.QtGui.... method setUniformValueArray4x2 (line 1033) | def setUniformValueArray4x2(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray4x2 (line 1035) | def setUniformValueArray4x2(self, location: int, values: PySide2.QtGui... method setUniformValueArray4x3 (line 1037) | def setUniformValueArray4x3(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray4x3 (line 1039) | def setUniformValueArray4x3(self, location: int, values: PySide2.QtGui... method setUniformValueArray4x4 (line 1041) | def setUniformValueArray4x4(self, name: bytes, values: PySide2.QtGui.Q... method setUniformValueArray4x4 (line 1043) | def setUniformValueArray4x4(self, location: int, values: PySide2.QtGui... method setUniformValueArrayInt (line 1045) | def setUniformValueArrayInt(self, name: bytes, values: typing.Iterable... method setUniformValueArrayInt (line 1047) | def setUniformValueArrayInt(self, location: int, values: typing.Iterab... method setUniformValueArrayUint (line 1049) | def setUniformValueArrayUint(self, name: bytes, values: typing.Iterabl... method setUniformValueArrayUint (line 1051) | def setUniformValueArrayUint(self, location: int, values: typing.Itera... method shaders (line 1052) | def shaders(self) -> list[QGLShader]: ... method uniformLocation (line 1054) | def uniformLocation(self, name: PySide2.QtCore.QByteArray | bytes) -> ... method uniformLocation (line 1056) | def uniformLocation(self, name: str) -> int: ... method uniformLocation (line 1058) | def uniformLocation(self, name: bytes) -> int: ... # type: ignore[ove... class QGLWidget (line 1060) | class QGLWidget(PySide2.QtWidgets.QWidget): method __init__ (line 1063) | def __init__(self, format: QGLFormat, parent: PySide2.QtWidgets.QWidge... method __init__ (line 1065) | def __init__(self, context: QGLContext, parent: PySide2.QtWidgets.QWid... method __init__ (line 1067) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., sha... method autoBufferSwap (line 1068) | def autoBufferSwap(self) -> bool: ... method bindTexture (line 1070) | def bindTexture(self, pixmap: PySide2.QtGui.QPixmap, target: int, form... method bindTexture (line 1072) | def bindTexture(self, image: PySide2.QtGui.QImage, target: int, format... method bindTexture (line 1074) | def bindTexture(self, pixmap: PySide2.QtGui.QPixmap, target: int = ...... method bindTexture (line 1076) | def bindTexture(self, image: PySide2.QtGui.QImage, target: int = ..., ... method bindTexture (line 1078) | def bindTexture(self, fileName: str) -> int: ... method colormap (line 1079) | def colormap(self) -> QGLColormap: ... method context (line 1080) | def context(self) -> QGLContext: ... method convertToGLFormat (line 1082) | def convertToGLFormat(img: PySide2.QtGui.QImage) -> PySide2.QtGui.QIma... method deleteTexture (line 1083) | def deleteTexture(self, tx_id: int) -> None: ... method doneCurrent (line 1084) | def doneCurrent(self) -> None: ... method doubleBuffer (line 1085) | def doubleBuffer(self) -> bool: ... method drawTexture (line 1087) | def drawTexture(self, target: PySide2.QtCore.QRectF, textureId: int, t... method drawTexture (line 1089) | def drawTexture(self, point: PySide2.QtCore.QPointF, textureId: int, t... method event (line 1090) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method format (line 1091) | def format(self) -> QGLFormat: ... method glDraw (line 1092) | def glDraw(self) -> None: ... method glInit (line 1093) | def glInit(self) -> None: ... method grabFrameBuffer (line 1094) | def grabFrameBuffer(self, withAlpha: bool = ...) -> PySide2.QtGui.QIma... method initializeGL (line 1095) | def initializeGL(self) -> None: ... method initializeOverlayGL (line 1096) | def initializeOverlayGL(self) -> None: ... method isSharing (line 1097) | def isSharing(self) -> bool: ... method isValid (line 1098) | def isValid(self) -> bool: ... method makeCurrent (line 1099) | def makeCurrent(self) -> None: ... method makeOverlayCurrent (line 1100) | def makeOverlayCurrent(self) -> None: ... method overlayContext (line 1101) | def overlayContext(self) -> QGLContext: ... method paintEngine (line 1102) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method paintEvent (line 1103) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method paintGL (line 1104) | def paintGL(self) -> None: ... method paintOverlayGL (line 1105) | def paintOverlayGL(self) -> None: ... method qglClearColor (line 1106) | def qglClearColor(self, c: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Gl... method qglColor (line 1107) | def qglColor(self, c: PySide2.QtGui.QColor | PySide2.QtCore.Qt.GlobalC... method renderPixmap (line 1108) | def renderPixmap(self, w: int = ..., h: int = ..., useContext: bool = ... method renderText (line 1110) | def renderText(self, x: float, y: float, z: float, str: str, fnt: PySi... method renderText (line 1112) | def renderText(self, x: int, y: int, str: str, fnt: PySide2.QtGui.QFon... method resizeEvent (line 1113) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method resizeGL (line 1114) | def resizeGL(self, w: int, h: int) -> None: ... method resizeOverlayGL (line 1115) | def resizeOverlayGL(self, w: int, h: int) -> None: ... method setAutoBufferSwap (line 1116) | def setAutoBufferSwap(self, on: bool) -> None: ... method setColormap (line 1117) | def setColormap(self, map: QGLColormap) -> None: ... method swapBuffers (line 1118) | def swapBuffers(self) -> None: ... method updateGL (line 1119) | def updateGL(self) -> None: ... method updateOverlayGL (line 1120) | def updateOverlayGL(self) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtOpenGLFunctions.pyi class QOpenGLFunctions_1_0 (line 9) | class QOpenGLFunctions_1_0(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 10) | def __init__(self) -> None: ... method glAccum (line 11) | def glAccum(self, op: int, value: float) -> None: ... method glAlphaFunc (line 12) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glBegin (line 13) | def glBegin(self, mode: int) -> None: ... method glBlendFunc (line 14) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glCallList (line 15) | def glCallList(self, list: int) -> None: ... method glCallLists (line 16) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 17) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 18) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 19) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 20) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 21) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 22) | def glClearStencil(self, s: int) -> None: ... method glClipPlane (line 23) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 24) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 25) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 26) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 27) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 28) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 29) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 30) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 31) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 32) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 33) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 34) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 35) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 36) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 37) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 38) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 39) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 40) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 41) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 42) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 43) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 44) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 45) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 46) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 47) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 48) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 49) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 50) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 51) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 52) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 53) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 54) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 55) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 56) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 57) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glCopyPixels (line 58) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCullFace (line 59) | def glCullFace(self, mode: int) -> None: ... method glDeleteLists (line 60) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDepthFunc (line 61) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 62) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 63) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDisable (line 64) | def glDisable(self, cap: int) -> None: ... method glDrawBuffer (line 65) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawPixels (line 66) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glEdgeFlag (line 67) | def glEdgeFlag(self, flag: int) -> None: ... method glEnable (line 68) | def glEnable(self, cap: int) -> None: ... method glEnd (line 69) | def glEnd(self) -> None: ... method glEndList (line 70) | def glEndList(self) -> None: ... method glEvalCoord1d (line 71) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 72) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 73) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 74) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 75) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 76) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 77) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 78) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 79) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 80) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 81) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 82) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 83) | def glFinish(self) -> None: ... method glFlush (line 84) | def glFlush(self) -> None: ... method glFogf (line 85) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 86) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 87) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 88) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 89) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 90) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 91) | def glGenLists(self, range: int) -> int: ... method glGetError (line 92) | def glGetError(self) -> int: ... method glGetString (line 93) | def glGetString(self, name: int) -> bytes: ... method glHint (line 94) | def glHint(self, target: int, mode: int) -> None: ... method glIndexMask (line 95) | def glIndexMask(self, mask: int) -> None: ... method glIndexd (line 96) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 97) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 98) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 99) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 100) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 101) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 102) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 103) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glInitNames (line 104) | def glInitNames(self) -> None: ... method glIsEnabled (line 105) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 106) | def glIsList(self, list: int) -> int: ... method glLightModelf (line 107) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 108) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 109) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 110) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 111) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 112) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 113) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 114) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 115) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 116) | def glLineWidth(self, width: float) -> None: ... method glListBase (line 117) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 118) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 119) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 120) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 121) | def glLoadName(self, name: int) -> None: ... method glLogicOp (line 122) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 123) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 124) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 125) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 126) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 127) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 128) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 129) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 130) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 131) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 132) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 133) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 134) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 135) | def glMatrixMode(self, mode: int) -> None: ... method glMultMatrixd (line 136) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 137) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glNewList (line 138) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 139) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 140) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 141) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 142) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 143) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 144) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 145) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 146) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 147) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 148) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glOrtho (line 149) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 150) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 151) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 152) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 153) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 154) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 155) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 156) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 157) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 158) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointSize (line 159) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 160) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPopAttrib (line 161) | def glPopAttrib(self) -> None: ... method glPopMatrix (line 162) | def glPopMatrix(self) -> None: ... method glPopName (line 163) | def glPopName(self) -> None: ... method glPushAttrib (line 164) | def glPushAttrib(self, mask: int) -> None: ... method glPushMatrix (line 165) | def glPushMatrix(self) -> None: ... method glPushName (line 166) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 167) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 168) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 169) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 170) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 171) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 172) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 173) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 174) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 175) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 176) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 177) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 178) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 179) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 180) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 181) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 182) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 183) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 184) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 185) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 186) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 187) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 188) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 189) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 190) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 191) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 192) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 193) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 194) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 195) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 196) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 197) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 198) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 199) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 200) | def glRenderMode(self, mode: int) -> int: ... method glRotated (line 201) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 202) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glScaled (line 203) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 204) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 205) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glShadeModel (line 206) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 207) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilMask (line 208) | def glStencilMask(self, mask: int) -> None: ... method glStencilOp (line 209) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glTexCoord1d (line 210) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 211) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 212) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 213) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 214) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 215) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 216) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 217) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 218) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 219) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 220) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 221) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 222) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 223) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 224) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 225) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 226) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 227) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 228) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 229) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 230) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 231) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 232) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 233) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 234) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 235) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 236) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 237) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 238) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 239) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 240) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 241) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexEnvf (line 242) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 243) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 244) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 245) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 246) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 247) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 248) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 249) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 250) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 251) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 252) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 253) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 254) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 255) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 256) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 257) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTranslated (line 258) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 259) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glVertex2d (line 260) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 261) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 262) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 263) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 264) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 265) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 266) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 267) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 268) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 269) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 270) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 271) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 272) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 273) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 274) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 275) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 276) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 277) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 278) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 279) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 280) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 281) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 282) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 283) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glViewport (line 284) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 285) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_1_1 (line 287) | class QOpenGLFunctions_1_1(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 288) | def __init__(self) -> None: ... method glAccum (line 289) | def glAccum(self, op: int, value: float) -> None: ... method glAlphaFunc (line 290) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 291) | def glArrayElement(self, i: int) -> None: ... method glBegin (line 292) | def glBegin(self, mode: int) -> None: ... method glBindTexture (line 293) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendFunc (line 294) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glCallList (line 295) | def glCallList(self, list: int) -> None: ... method glCallLists (line 296) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 297) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 298) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 299) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 300) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 301) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 302) | def glClearStencil(self, s: int) -> None: ... method glClipPlane (line 303) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 304) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 305) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 306) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 307) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 308) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 309) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 310) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 311) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 312) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 313) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 314) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 315) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 316) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 317) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 318) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 319) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 320) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 321) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 322) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 323) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 324) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 325) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 326) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 327) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 328) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 329) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 330) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 331) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 332) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 333) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 334) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 335) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 336) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 337) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 338) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glCopyPixels (line 339) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 340) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 341) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 342) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 343) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 344) | def glCullFace(self, mode: int) -> None: ... method glDeleteLists (line 345) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteTextures (line 346) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 347) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 348) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 349) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDisable (line 350) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 351) | def glDisableClientState(self, array: int) -> None: ... method glDrawArrays (line 352) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 353) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawElements (line 354) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 355) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glEdgeFlag (line 356) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 357) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 358) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 359) | def glEnableClientState(self, array: int) -> None: ... method glEnd (line 360) | def glEnd(self) -> None: ... method glEndList (line 361) | def glEndList(self) -> None: ... method glEvalCoord1d (line 362) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 363) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 364) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 365) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 366) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 367) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 368) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 369) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 370) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 371) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 372) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 373) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 374) | def glFinish(self) -> None: ... method glFlush (line 375) | def glFlush(self) -> None: ... method glFogf (line 376) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 377) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 378) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 379) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 380) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 381) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 382) | def glGenLists(self, range: int) -> int: ... method glGetError (line 383) | def glGetError(self) -> int: ... method glGetString (line 384) | def glGetString(self, name: int) -> bytes: ... method glHint (line 385) | def glHint(self, target: int, mode: int) -> None: ... method glIndexMask (line 386) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 387) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 388) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 389) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 390) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 391) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 392) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 393) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 394) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 395) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 396) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 397) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 398) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 399) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsEnabled (line 400) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 401) | def glIsList(self, list: int) -> int: ... method glIsTexture (line 402) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 403) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 404) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 405) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 406) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 407) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 408) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 409) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 410) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 411) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 412) | def glLineWidth(self, width: float) -> None: ... method glListBase (line 413) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 414) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 415) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 416) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 417) | def glLoadName(self, name: int) -> None: ... method glLogicOp (line 418) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 419) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 420) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 421) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 422) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 423) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 424) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 425) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 426) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 427) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 428) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 429) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 430) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 431) | def glMatrixMode(self, mode: int) -> None: ... method glMultMatrixd (line 432) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 433) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glNewList (line 434) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 435) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 436) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 437) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 438) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 439) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 440) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 441) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 442) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 443) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 444) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 445) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 446) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 447) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 448) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 449) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 450) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 451) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 452) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 453) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 454) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 455) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointSize (line 456) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 457) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 458) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 459) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 460) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 461) | def glPopMatrix(self) -> None: ... method glPopName (line 462) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 463) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 464) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 465) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 466) | def glPushMatrix(self) -> None: ... method glPushName (line 467) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 468) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 469) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 470) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 471) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 472) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 473) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 474) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 475) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 476) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 477) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 478) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 479) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 480) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 481) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 482) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 483) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 484) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 485) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 486) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 487) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 488) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 489) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 490) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 491) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 492) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 493) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 494) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 495) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 496) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 497) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 498) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 499) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 500) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 501) | def glRenderMode(self, mode: int) -> int: ... method glRotated (line 502) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 503) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glScaled (line 504) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 505) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 506) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glShadeModel (line 507) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 508) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilMask (line 509) | def glStencilMask(self, mask: int) -> None: ... method glStencilOp (line 510) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glTexCoord1d (line 511) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 512) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 513) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 514) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 515) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 516) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 517) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 518) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 519) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 520) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 521) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 522) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 523) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 524) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 525) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 526) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 527) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 528) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 529) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 530) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 531) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 532) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 533) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 534) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 535) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 536) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 537) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 538) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 539) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 540) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 541) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 542) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 543) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 544) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 545) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 546) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 547) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 548) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 549) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 550) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 551) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 552) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 553) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 554) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 555) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 556) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 557) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 558) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 559) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 560) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 561) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 562) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 563) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glVertex2d (line 564) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 565) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 566) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 567) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 568) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 569) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 570) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 571) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 572) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 573) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 574) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 575) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 576) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 577) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 578) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 579) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 580) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 581) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 582) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 583) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 584) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 585) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 586) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 587) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexPointer (line 588) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 589) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 590) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_1_2 (line 592) | class QOpenGLFunctions_1_2(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 593) | def __init__(self) -> None: ... method glAccum (line 594) | def glAccum(self, op: int, value: float) -> None: ... method glAlphaFunc (line 595) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 596) | def glArrayElement(self, i: int) -> None: ... method glBegin (line 597) | def glBegin(self, mode: int) -> None: ... method glBindTexture (line 598) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 599) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 600) | def glBlendEquation(self, mode: int) -> None: ... method glBlendFunc (line 601) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glCallList (line 602) | def glCallList(self, list: int) -> None: ... method glCallLists (line 603) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 604) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 605) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 606) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 607) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 608) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 609) | def glClearStencil(self, s: int) -> None: ... method glClipPlane (line 610) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 611) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 612) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 613) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 614) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 615) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 616) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 617) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 618) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 619) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 620) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 621) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 622) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 623) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 624) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 625) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 626) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 627) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 628) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 629) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 630) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 631) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 632) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 633) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 634) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 635) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 636) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 637) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 638) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 639) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 640) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 641) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 642) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 643) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 644) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 645) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 646) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 647) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 648) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 649) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glConvolutionFilter1D (line 650) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 651) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 652) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 653) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 654) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 655) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 656) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 657) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 658) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 659) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 660) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 661) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 662) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 663) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 664) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 665) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 666) | def glCullFace(self, mode: int) -> None: ... method glDeleteLists (line 667) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteTextures (line 668) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 669) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 670) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 671) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDisable (line 672) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 673) | def glDisableClientState(self, array: int) -> None: ... method glDrawArrays (line 674) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 675) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawElements (line 676) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 677) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 678) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 679) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 680) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 681) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 682) | def glEnableClientState(self, array: int) -> None: ... method glEnd (line 683) | def glEnd(self) -> None: ... method glEndList (line 684) | def glEndList(self) -> None: ... method glEvalCoord1d (line 685) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 686) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 687) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 688) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 689) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 690) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 691) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 692) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 693) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 694) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 695) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 696) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 697) | def glFinish(self) -> None: ... method glFlush (line 698) | def glFlush(self) -> None: ... method glFogf (line 699) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 700) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 701) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 702) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 703) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 704) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 705) | def glGenLists(self, range: int) -> int: ... method glGetError (line 706) | def glGetError(self) -> int: ... method glGetString (line 707) | def glGetString(self, name: int) -> bytes: ... method glHint (line 708) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 709) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 710) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 711) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 712) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 713) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 714) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 715) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 716) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 717) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 718) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 719) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 720) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 721) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 722) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 723) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsEnabled (line 724) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 725) | def glIsList(self, list: int) -> int: ... method glIsTexture (line 726) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 727) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 728) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 729) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 730) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 731) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 732) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 733) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 734) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 735) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 736) | def glLineWidth(self, width: float) -> None: ... method glListBase (line 737) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 738) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 739) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 740) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 741) | def glLoadName(self, name: int) -> None: ... method glLogicOp (line 742) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 743) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 744) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 745) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 746) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 747) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 748) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 749) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 750) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 751) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 752) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 753) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 754) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 755) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 756) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 757) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 758) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glNewList (line 759) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 760) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 761) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 762) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 763) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 764) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 765) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 766) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 767) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 768) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 769) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 770) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 771) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 772) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 773) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 774) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 775) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 776) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 777) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 778) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 779) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 780) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointSize (line 781) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 782) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 783) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 784) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 785) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 786) | def glPopMatrix(self) -> None: ... method glPopName (line 787) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 788) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 789) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 790) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 791) | def glPushMatrix(self) -> None: ... method glPushName (line 792) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 793) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 794) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 795) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 796) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 797) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 798) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 799) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 800) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 801) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 802) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 803) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 804) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 805) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 806) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 807) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 808) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 809) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 810) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 811) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 812) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 813) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 814) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 815) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 816) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 817) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 818) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 819) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 820) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 821) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 822) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 823) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 824) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 825) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 826) | def glRenderMode(self, mode: int) -> int: ... method glResetHistogram (line 827) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 828) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 829) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 830) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glScaled (line 831) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 832) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 833) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSeparableFilter2D (line 834) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 835) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 836) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilMask (line 837) | def glStencilMask(self, mask: int) -> None: ... method glStencilOp (line 838) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glTexCoord1d (line 839) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 840) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 841) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 842) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 843) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 844) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 845) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 846) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 847) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 848) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 849) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 850) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 851) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 852) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 853) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 854) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 855) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 856) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 857) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 858) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 859) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 860) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 861) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 862) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 863) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 864) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 865) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 866) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 867) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 868) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 869) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 870) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 871) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 872) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 873) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 874) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 875) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 876) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 877) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 878) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 879) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 880) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 881) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 882) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 883) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 884) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 885) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 886) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 887) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 888) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 889) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 890) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 891) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 892) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 893) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glVertex2d (line 894) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 895) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 896) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 897) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 898) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 899) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 900) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 901) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 902) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 903) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 904) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 905) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 906) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 907) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 908) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 909) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 910) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 911) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 912) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 913) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 914) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 915) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 916) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 917) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexPointer (line 918) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 919) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 920) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_1_3 (line 922) | class QOpenGLFunctions_1_3(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 923) | def __init__(self) -> None: ... method glAccum (line 924) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 925) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 926) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 927) | def glArrayElement(self, i: int) -> None: ... method glBegin (line 928) | def glBegin(self, mode: int) -> None: ... method glBindTexture (line 929) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 930) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 931) | def glBlendEquation(self, mode: int) -> None: ... method glBlendFunc (line 932) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glCallList (line 933) | def glCallList(self, list: int) -> None: ... method glCallLists (line 934) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 935) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 936) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 937) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 938) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 939) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 940) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 941) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 942) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 943) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 944) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 945) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 946) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 947) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 948) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 949) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 950) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 951) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 952) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 953) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 954) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 955) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 956) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 957) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 958) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 959) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 960) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 961) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 962) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 963) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 964) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 965) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 966) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 967) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 968) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 969) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 970) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 971) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 972) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 973) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 974) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 975) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 976) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 977) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 978) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 979) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 980) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 981) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompressedTexImage1D (line 982) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 983) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 984) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 985) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 986) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 987) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 988) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 989) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 990) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 991) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 992) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 993) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 994) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 995) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 996) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 997) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 998) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 999) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 1000) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 1001) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 1002) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 1003) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 1004) | def glCullFace(self, mode: int) -> None: ... method glDeleteLists (line 1005) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteTextures (line 1006) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 1007) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 1008) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 1009) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDisable (line 1010) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 1011) | def glDisableClientState(self, array: int) -> None: ... method glDrawArrays (line 1012) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 1013) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawElements (line 1014) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 1015) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 1016) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 1017) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 1018) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 1019) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 1020) | def glEnableClientState(self, array: int) -> None: ... method glEnd (line 1021) | def glEnd(self) -> None: ... method glEndList (line 1022) | def glEndList(self) -> None: ... method glEvalCoord1d (line 1023) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 1024) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 1025) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 1026) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 1027) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 1028) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 1029) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 1030) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 1031) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 1032) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 1033) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 1034) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 1035) | def glFinish(self) -> None: ... method glFlush (line 1036) | def glFlush(self) -> None: ... method glFogf (line 1037) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 1038) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 1039) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 1040) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 1041) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 1042) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 1043) | def glGenLists(self, range: int) -> int: ... method glGetError (line 1044) | def glGetError(self) -> int: ... method glGetString (line 1045) | def glGetString(self, name: int) -> bytes: ... method glHint (line 1046) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 1047) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 1048) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 1049) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 1050) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 1051) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 1052) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 1053) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 1054) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 1055) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 1056) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 1057) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 1058) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 1059) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 1060) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 1061) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsEnabled (line 1062) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 1063) | def glIsList(self, list: int) -> int: ... method glIsTexture (line 1064) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 1065) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 1066) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 1067) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 1068) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 1069) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 1070) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 1071) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 1072) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 1073) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 1074) | def glLineWidth(self, width: float) -> None: ... method glListBase (line 1075) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 1076) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 1077) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 1078) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 1079) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 1080) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 1081) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 1082) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 1083) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 1084) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 1085) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 1086) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 1087) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 1088) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 1089) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 1090) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 1091) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 1092) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 1093) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 1094) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 1095) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 1096) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 1097) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 1098) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 1099) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 1100) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiTexCoord1d (line 1101) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 1102) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 1103) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 1104) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 1105) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 1106) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 1107) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 1108) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 1109) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 1110) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 1111) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 1112) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 1113) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 1114) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 1115) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 1116) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 1117) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 1118) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 1119) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 1120) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 1121) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 1122) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 1123) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 1124) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 1125) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 1126) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 1127) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 1128) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 1129) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 1130) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 1131) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 1132) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 1133) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 1134) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 1135) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 1136) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 1137) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 1138) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 1139) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 1140) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 1141) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 1142) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 1143) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 1144) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 1145) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 1146) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 1147) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 1148) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 1149) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 1150) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 1151) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 1152) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 1153) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 1154) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointSize (line 1155) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 1156) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 1157) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 1158) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 1159) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 1160) | def glPopMatrix(self) -> None: ... method glPopName (line 1161) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 1162) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 1163) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 1164) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 1165) | def glPushMatrix(self) -> None: ... method glPushName (line 1166) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 1167) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 1168) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 1169) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 1170) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 1171) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 1172) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 1173) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 1174) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 1175) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 1176) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 1177) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 1178) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 1179) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 1180) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 1181) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 1182) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 1183) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 1184) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 1185) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 1186) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 1187) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 1188) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 1189) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 1190) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 1191) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 1192) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 1193) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 1194) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 1195) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 1196) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 1197) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 1198) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 1199) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 1200) | def glRenderMode(self, mode: int) -> int: ... method glResetHistogram (line 1201) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 1202) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 1203) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 1204) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 1205) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScaled (line 1206) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 1207) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 1208) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSeparableFilter2D (line 1209) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 1210) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 1211) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilMask (line 1212) | def glStencilMask(self, mask: int) -> None: ... method glStencilOp (line 1213) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glTexCoord1d (line 1214) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 1215) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 1216) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 1217) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 1218) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 1219) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 1220) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 1221) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 1222) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 1223) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 1224) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 1225) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 1226) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 1227) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 1228) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 1229) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 1230) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 1231) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 1232) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 1233) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 1234) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 1235) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 1236) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 1237) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 1238) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 1239) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 1240) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 1241) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 1242) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 1243) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 1244) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 1245) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 1246) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 1247) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 1248) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 1249) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 1250) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 1251) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 1252) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 1253) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 1254) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 1255) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 1256) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 1257) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 1258) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 1259) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 1260) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 1261) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 1262) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 1263) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 1264) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 1265) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 1266) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 1267) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 1268) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glVertex2d (line 1269) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 1270) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 1271) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 1272) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 1273) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 1274) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 1275) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 1276) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 1277) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 1278) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 1279) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 1280) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 1281) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 1282) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 1283) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 1284) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 1285) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 1286) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 1287) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 1288) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 1289) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 1290) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 1291) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 1292) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexPointer (line 1293) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 1294) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 1295) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_1_4 (line 1297) | class QOpenGLFunctions_1_4(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 1298) | def __init__(self) -> None: ... method glAccum (line 1299) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 1300) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 1301) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 1302) | def glArrayElement(self, i: int) -> None: ... method glBegin (line 1303) | def glBegin(self, mode: int) -> None: ... method glBindTexture (line 1304) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 1305) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 1306) | def glBlendEquation(self, mode: int) -> None: ... method glBlendFunc (line 1307) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 1308) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 1309) | def glCallList(self, list: int) -> None: ... method glCallLists (line 1310) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 1311) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 1312) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 1313) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 1314) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 1315) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 1316) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 1317) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 1318) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 1319) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 1320) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 1321) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 1322) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 1323) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 1324) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 1325) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 1326) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 1327) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 1328) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 1329) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 1330) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 1331) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 1332) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 1333) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 1334) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 1335) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 1336) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 1337) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 1338) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 1339) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 1340) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 1341) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 1342) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 1343) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 1344) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 1345) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 1346) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 1347) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 1348) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 1349) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 1350) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 1351) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 1352) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 1353) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 1354) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 1355) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 1356) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 1357) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompressedTexImage1D (line 1358) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 1359) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 1360) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 1361) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 1362) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 1363) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 1364) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 1365) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 1366) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 1367) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 1368) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 1369) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 1370) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 1371) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 1372) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 1373) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 1374) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 1375) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 1376) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 1377) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 1378) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 1379) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 1380) | def glCullFace(self, mode: int) -> None: ... method glDeleteLists (line 1381) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteTextures (line 1382) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 1383) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 1384) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 1385) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDisable (line 1386) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 1387) | def glDisableClientState(self, array: int) -> None: ... method glDrawArrays (line 1388) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 1389) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawElements (line 1390) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 1391) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 1392) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 1393) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 1394) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 1395) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 1396) | def glEnableClientState(self, array: int) -> None: ... method glEnd (line 1397) | def glEnd(self) -> None: ... method glEndList (line 1398) | def glEndList(self) -> None: ... method glEvalCoord1d (line 1399) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 1400) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 1401) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 1402) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 1403) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 1404) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 1405) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 1406) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 1407) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 1408) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 1409) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 1410) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 1411) | def glFinish(self) -> None: ... method glFlush (line 1412) | def glFlush(self) -> None: ... method glFogCoordPointer (line 1413) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 1414) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 1415) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 1416) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 1417) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 1418) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 1419) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 1420) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 1421) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 1422) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 1423) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 1424) | def glGenLists(self, range: int) -> int: ... method glGetError (line 1425) | def glGetError(self) -> int: ... method glGetString (line 1426) | def glGetString(self, name: int) -> bytes: ... method glHint (line 1427) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 1428) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 1429) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 1430) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 1431) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 1432) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 1433) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 1434) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 1435) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 1436) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 1437) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 1438) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 1439) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 1440) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 1441) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 1442) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsEnabled (line 1443) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 1444) | def glIsList(self, list: int) -> int: ... method glIsTexture (line 1445) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 1446) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 1447) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 1448) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 1449) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 1450) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 1451) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 1452) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 1453) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 1454) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 1455) | def glLineWidth(self, width: float) -> None: ... method glListBase (line 1456) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 1457) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 1458) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 1459) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 1460) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 1461) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 1462) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 1463) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 1464) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 1465) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 1466) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 1467) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 1468) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 1469) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 1470) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 1471) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 1472) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 1473) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 1474) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 1475) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 1476) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 1477) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 1478) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 1479) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 1480) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 1481) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 1482) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 1483) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 1484) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 1485) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 1486) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 1487) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 1488) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 1489) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 1490) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 1491) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 1492) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 1493) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 1494) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 1495) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 1496) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 1497) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 1498) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 1499) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 1500) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 1501) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 1502) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 1503) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 1504) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 1505) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 1506) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 1507) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 1508) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 1509) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 1510) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 1511) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 1512) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 1513) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 1514) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 1515) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 1516) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 1517) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 1518) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 1519) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 1520) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 1521) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 1522) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 1523) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 1524) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 1525) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 1526) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 1527) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 1528) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 1529) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 1530) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 1531) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 1532) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 1533) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 1534) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 1535) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 1536) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 1537) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 1538) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 1539) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 1540) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 1541) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 1542) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 1543) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 1544) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 1545) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 1546) | def glPopMatrix(self) -> None: ... method glPopName (line 1547) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 1548) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 1549) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 1550) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 1551) | def glPushMatrix(self) -> None: ... method glPushName (line 1552) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 1553) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 1554) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 1555) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 1556) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 1557) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 1558) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 1559) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 1560) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 1561) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 1562) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 1563) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 1564) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 1565) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 1566) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 1567) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 1568) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 1569) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 1570) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 1571) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 1572) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 1573) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 1574) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 1575) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 1576) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 1577) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 1578) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 1579) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 1580) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 1581) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 1582) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 1583) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 1584) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 1585) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 1586) | def glRenderMode(self, mode: int) -> int: ... method glResetHistogram (line 1587) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 1588) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 1589) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 1590) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 1591) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScaled (line 1592) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 1593) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 1594) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 1595) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 1596) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 1597) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 1598) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 1599) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 1600) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 1601) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 1602) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 1603) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 1604) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 1605) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 1606) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 1607) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 1608) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 1609) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 1610) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorPointer (line 1611) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 1612) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 1613) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 1614) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilMask (line 1615) | def glStencilMask(self, mask: int) -> None: ... method glStencilOp (line 1616) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glTexCoord1d (line 1617) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 1618) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 1619) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 1620) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 1621) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 1622) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 1623) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 1624) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 1625) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 1626) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 1627) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 1628) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 1629) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 1630) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 1631) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 1632) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 1633) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 1634) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 1635) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 1636) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 1637) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 1638) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 1639) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 1640) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 1641) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 1642) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 1643) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 1644) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 1645) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 1646) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 1647) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 1648) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 1649) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 1650) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 1651) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 1652) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 1653) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 1654) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 1655) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 1656) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 1657) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 1658) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 1659) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 1660) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 1661) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 1662) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 1663) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 1664) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 1665) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 1666) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 1667) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 1668) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 1669) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 1670) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 1671) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glVertex2d (line 1672) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 1673) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 1674) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 1675) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 1676) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 1677) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 1678) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 1679) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 1680) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 1681) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 1682) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 1683) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 1684) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 1685) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 1686) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 1687) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 1688) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 1689) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 1690) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 1691) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 1692) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 1693) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 1694) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 1695) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexPointer (line 1696) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 1697) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 1698) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 1699) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 1700) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 1701) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 1702) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 1703) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 1704) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 1705) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 1706) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 1707) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 1708) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 1709) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 1710) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 1711) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 1712) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 1713) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 1714) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_1_5 (line 1716) | class QOpenGLFunctions_1_5(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 1717) | def __init__(self) -> None: ... method glAccum (line 1718) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 1719) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 1720) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 1721) | def glArrayElement(self, i: int) -> None: ... method glBegin (line 1722) | def glBegin(self, mode: int) -> None: ... method glBeginQuery (line 1723) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBindBuffer (line 1724) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindTexture (line 1725) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 1726) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 1727) | def glBlendEquation(self, mode: int) -> None: ... method glBlendFunc (line 1728) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 1729) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 1730) | def glCallList(self, list: int) -> None: ... method glCallLists (line 1731) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 1732) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 1733) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 1734) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 1735) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 1736) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 1737) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 1738) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 1739) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 1740) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 1741) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 1742) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 1743) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 1744) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 1745) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 1746) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 1747) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 1748) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 1749) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 1750) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 1751) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 1752) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 1753) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 1754) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 1755) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 1756) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 1757) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 1758) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 1759) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 1760) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 1761) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 1762) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 1763) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 1764) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 1765) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 1766) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 1767) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 1768) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 1769) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 1770) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 1771) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 1772) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 1773) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 1774) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 1775) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 1776) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 1777) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 1778) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompressedTexImage1D (line 1779) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 1780) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 1781) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 1782) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 1783) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 1784) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 1785) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 1786) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 1787) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 1788) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 1789) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 1790) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 1791) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 1792) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 1793) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 1794) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 1795) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 1796) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 1797) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 1798) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 1799) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 1800) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 1801) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 1802) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteLists (line 1803) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteQueries (line 1804) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteTextures (line 1805) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 1806) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 1807) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 1808) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDisable (line 1809) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 1810) | def glDisableClientState(self, array: int) -> None: ... method glDrawArrays (line 1811) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 1812) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawElements (line 1813) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 1814) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 1815) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 1816) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 1817) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 1818) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 1819) | def glEnableClientState(self, array: int) -> None: ... method glEnd (line 1820) | def glEnd(self) -> None: ... method glEndList (line 1821) | def glEndList(self) -> None: ... method glEndQuery (line 1822) | def glEndQuery(self, target: int) -> None: ... method glEvalCoord1d (line 1823) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 1824) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 1825) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 1826) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 1827) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 1828) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 1829) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 1830) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 1831) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 1832) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 1833) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 1834) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 1835) | def glFinish(self) -> None: ... method glFlush (line 1836) | def glFlush(self) -> None: ... method glFogCoordPointer (line 1837) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 1838) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 1839) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 1840) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 1841) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 1842) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 1843) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 1844) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 1845) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 1846) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 1847) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 1848) | def glGenLists(self, range: int) -> int: ... method glGetError (line 1849) | def glGetError(self) -> int: ... method glGetString (line 1850) | def glGetString(self, name: int) -> bytes: ... method glHint (line 1851) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 1852) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 1853) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 1854) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 1855) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 1856) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 1857) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 1858) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 1859) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 1860) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 1861) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 1862) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 1863) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 1864) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 1865) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 1866) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 1867) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 1868) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 1869) | def glIsList(self, list: int) -> int: ... method glIsQuery (line 1870) | def glIsQuery(self, id: int) -> int: ... method glIsTexture (line 1871) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 1872) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 1873) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 1874) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 1875) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 1876) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 1877) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 1878) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 1879) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 1880) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 1881) | def glLineWidth(self, width: float) -> None: ... method glListBase (line 1882) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 1883) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 1884) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 1885) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 1886) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 1887) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 1888) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 1889) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 1890) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 1891) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 1892) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 1893) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 1894) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 1895) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 1896) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 1897) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 1898) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 1899) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 1900) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 1901) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 1902) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 1903) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 1904) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 1905) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 1906) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 1907) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 1908) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 1909) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 1910) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 1911) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 1912) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 1913) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 1914) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 1915) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 1916) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 1917) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 1918) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 1919) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 1920) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 1921) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 1922) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 1923) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 1924) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 1925) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 1926) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 1927) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 1928) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 1929) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 1930) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 1931) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 1932) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 1933) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 1934) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 1935) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 1936) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 1937) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 1938) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 1939) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 1940) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 1941) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 1942) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 1943) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 1944) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 1945) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 1946) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 1947) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 1948) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 1949) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 1950) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 1951) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 1952) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 1953) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 1954) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 1955) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 1956) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 1957) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 1958) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 1959) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 1960) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 1961) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 1962) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 1963) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 1964) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 1965) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 1966) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 1967) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 1968) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 1969) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 1970) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 1971) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 1972) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 1973) | def glPopMatrix(self) -> None: ... method glPopName (line 1974) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 1975) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 1976) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 1977) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 1978) | def glPushMatrix(self) -> None: ... method glPushName (line 1979) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 1980) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 1981) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 1982) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 1983) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 1984) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 1985) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 1986) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 1987) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 1988) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 1989) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 1990) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 1991) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 1992) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 1993) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 1994) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 1995) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 1996) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 1997) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 1998) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 1999) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 2000) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 2001) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 2002) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 2003) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 2004) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 2005) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 2006) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 2007) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 2008) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 2009) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 2010) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 2011) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 2012) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 2013) | def glRenderMode(self, mode: int) -> int: ... method glResetHistogram (line 2014) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 2015) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 2016) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 2017) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 2018) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScaled (line 2019) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 2020) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 2021) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 2022) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 2023) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 2024) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 2025) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 2026) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 2027) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 2028) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 2029) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 2030) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 2031) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 2032) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 2033) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 2034) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 2035) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 2036) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 2037) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorPointer (line 2038) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 2039) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 2040) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 2041) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilMask (line 2042) | def glStencilMask(self, mask: int) -> None: ... method glStencilOp (line 2043) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glTexCoord1d (line 2044) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 2045) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 2046) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 2047) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 2048) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 2049) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 2050) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 2051) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 2052) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 2053) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 2054) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 2055) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 2056) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 2057) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 2058) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 2059) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 2060) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 2061) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 2062) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 2063) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 2064) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 2065) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 2066) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 2067) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 2068) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 2069) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 2070) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 2071) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 2072) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 2073) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 2074) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 2075) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 2076) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 2077) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 2078) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 2079) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 2080) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 2081) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 2082) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 2083) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 2084) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 2085) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 2086) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 2087) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 2088) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 2089) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 2090) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 2091) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 2092) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 2093) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 2094) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 2095) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 2096) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 2097) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 2098) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUnmapBuffer (line 2099) | def glUnmapBuffer(self, target: int) -> int: ... method glVertex2d (line 2100) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 2101) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 2102) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 2103) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 2104) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 2105) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 2106) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 2107) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 2108) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 2109) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 2110) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 2111) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 2112) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 2113) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 2114) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 2115) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 2116) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 2117) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 2118) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 2119) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 2120) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 2121) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 2122) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 2123) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexPointer (line 2124) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 2125) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 2126) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 2127) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 2128) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 2129) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 2130) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 2131) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 2132) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 2133) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 2134) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 2135) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 2136) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 2137) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 2138) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 2139) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 2140) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 2141) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 2142) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_2_0 (line 2144) | class QOpenGLFunctions_2_0(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 2145) | def __init__(self) -> None: ... method glAccum (line 2146) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 2147) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 2148) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 2149) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 2150) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 2151) | def glBegin(self, mode: int) -> None: ... method glBeginQuery (line 2152) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBindAttribLocation (line 2153) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 2154) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindTexture (line 2155) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 2156) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 2157) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 2158) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 2159) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 2160) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 2161) | def glCallList(self, list: int) -> None: ... method glCallLists (line 2162) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 2163) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 2164) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 2165) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 2166) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 2167) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 2168) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 2169) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 2170) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 2171) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 2172) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 2173) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 2174) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 2175) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 2176) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 2177) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 2178) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 2179) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 2180) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 2181) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 2182) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 2183) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 2184) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 2185) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 2186) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 2187) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 2188) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 2189) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 2190) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 2191) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 2192) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 2193) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 2194) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 2195) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 2196) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 2197) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 2198) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 2199) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 2200) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 2201) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 2202) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 2203) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 2204) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 2205) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 2206) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 2207) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 2208) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 2209) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 2210) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 2211) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 2212) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 2213) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 2214) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 2215) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 2216) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 2217) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 2218) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 2219) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 2220) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 2221) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 2222) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 2223) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 2224) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 2225) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 2226) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 2227) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 2228) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 2229) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 2230) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 2231) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 2232) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 2233) | def glCreateProgram(self) -> int: ... method glCreateShader (line 2234) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 2235) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 2236) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteLists (line 2237) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 2238) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 2239) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteShader (line 2240) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 2241) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 2242) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 2243) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 2244) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 2245) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 2246) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 2247) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 2248) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDrawArrays (line 2249) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 2250) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 2251) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 2252) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 2253) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 2254) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 2255) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 2256) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 2257) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 2258) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 2259) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnd (line 2260) | def glEnd(self) -> None: ... method glEndList (line 2261) | def glEndList(self) -> None: ... method glEndQuery (line 2262) | def glEndQuery(self, target: int) -> None: ... method glEvalCoord1d (line 2263) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 2264) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 2265) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 2266) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 2267) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 2268) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 2269) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 2270) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 2271) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 2272) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 2273) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 2274) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 2275) | def glFinish(self) -> None: ... method glFlush (line 2276) | def glFlush(self) -> None: ... method glFogCoordPointer (line 2277) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 2278) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 2279) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 2280) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 2281) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 2282) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 2283) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 2284) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 2285) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 2286) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 2287) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 2288) | def glGenLists(self, range: int) -> int: ... method glGetAttribLocation (line 2289) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 2290) | def glGetError(self) -> int: ... method glGetString (line 2291) | def glGetString(self, name: int) -> bytes: ... method glGetUniformLocation (line 2292) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 2293) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 2294) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 2295) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 2296) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 2297) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 2298) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 2299) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 2300) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 2301) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 2302) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 2303) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 2304) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 2305) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 2306) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 2307) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 2308) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 2309) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 2310) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 2311) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 2312) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 2313) | def glIsQuery(self, id: int) -> int: ... method glIsShader (line 2314) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 2315) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 2316) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 2317) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 2318) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 2319) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 2320) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 2321) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 2322) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 2323) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 2324) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 2325) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 2326) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 2327) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 2328) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 2329) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 2330) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 2331) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 2332) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 2333) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 2334) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 2335) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 2336) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 2337) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 2338) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 2339) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 2340) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 2341) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 2342) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 2343) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 2344) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 2345) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 2346) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 2347) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 2348) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 2349) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 2350) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 2351) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 2352) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 2353) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 2354) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 2355) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 2356) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 2357) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 2358) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 2359) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 2360) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 2361) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 2362) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 2363) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 2364) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 2365) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 2366) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 2367) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 2368) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 2369) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 2370) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 2371) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 2372) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 2373) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 2374) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 2375) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 2376) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 2377) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 2378) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 2379) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 2380) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 2381) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 2382) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 2383) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 2384) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 2385) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 2386) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 2387) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 2388) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 2389) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 2390) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 2391) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 2392) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 2393) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 2394) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 2395) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 2396) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 2397) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 2398) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 2399) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 2400) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 2401) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 2402) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 2403) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 2404) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 2405) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 2406) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 2407) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 2408) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 2409) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 2410) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 2411) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 2412) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 2413) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 2414) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 2415) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 2416) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 2417) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 2418) | def glPopMatrix(self) -> None: ... method glPopName (line 2419) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 2420) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 2421) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 2422) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 2423) | def glPushMatrix(self) -> None: ... method glPushName (line 2424) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 2425) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 2426) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 2427) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 2428) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 2429) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 2430) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 2431) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 2432) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 2433) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 2434) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 2435) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 2436) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 2437) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 2438) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 2439) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 2440) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 2441) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 2442) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 2443) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 2444) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 2445) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 2446) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 2447) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 2448) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 2449) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 2450) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 2451) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 2452) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 2453) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 2454) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 2455) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 2456) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 2457) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 2458) | def glRenderMode(self, mode: int) -> int: ... method glResetHistogram (line 2459) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 2460) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 2461) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 2462) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 2463) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScaled (line 2464) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 2465) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 2466) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 2467) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 2468) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 2469) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 2470) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 2471) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 2472) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 2473) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 2474) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 2475) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 2476) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 2477) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 2478) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 2479) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 2480) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 2481) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 2482) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorPointer (line 2483) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 2484) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 2485) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 2486) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 2487) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 2488) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 2489) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 2490) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 2491) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexCoord1d (line 2492) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 2493) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 2494) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 2495) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 2496) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 2497) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 2498) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 2499) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 2500) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 2501) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 2502) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 2503) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 2504) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 2505) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 2506) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 2507) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 2508) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 2509) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 2510) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 2511) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 2512) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 2513) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 2514) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 2515) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 2516) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 2517) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 2518) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 2519) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 2520) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 2521) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 2522) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 2523) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 2524) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 2525) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 2526) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 2527) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 2528) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 2529) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 2530) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 2531) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 2532) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 2533) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 2534) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 2535) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 2536) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 2537) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 2538) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 2539) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 2540) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 2541) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 2542) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 2543) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 2544) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 2545) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 2546) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1f (line 2547) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 2548) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 2549) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 2550) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 2551) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 2552) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 2553) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 2554) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 2555) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 2556) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 2557) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 2558) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 2559) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 2560) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 2561) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 2562) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniformMatrix2fv (line 2563) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 2564) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 2565) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUnmapBuffer (line 2566) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 2567) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 2568) | def glValidateProgram(self, program: int) -> None: ... method glVertex2d (line 2569) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 2570) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 2571) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 2572) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 2573) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 2574) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 2575) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 2576) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 2577) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 2578) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 2579) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 2580) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 2581) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 2582) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 2583) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 2584) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 2585) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 2586) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 2587) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 2588) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 2589) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 2590) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 2591) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 2592) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 2593) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 2594) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 2595) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 2596) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 2597) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 2598) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 2599) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 2600) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 2601) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 2602) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 2603) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 2604) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 2605) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 2606) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 2607) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 2608) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 2609) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 2610) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 2611) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 2612) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 2613) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 2614) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 2615) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 2616) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 2617) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 2618) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 2619) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 2620) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 2621) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 2622) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 2623) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 2624) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 2625) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 2626) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 2627) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 2628) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribPointer (line 2629) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 2630) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 2631) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 2632) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 2633) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 2634) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 2635) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 2636) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 2637) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 2638) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 2639) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 2640) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 2641) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 2642) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 2643) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 2644) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 2645) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 2646) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 2647) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 2648) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_2_1 (line 2650) | class QOpenGLFunctions_2_1(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 2651) | def __init__(self) -> None: ... method glAccum (line 2652) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 2653) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 2654) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 2655) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 2656) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 2657) | def glBegin(self, mode: int) -> None: ... method glBeginQuery (line 2658) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBindAttribLocation (line 2659) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 2660) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindTexture (line 2661) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBlendColor (line 2662) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 2663) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 2664) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 2665) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 2666) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 2667) | def glCallList(self, list: int) -> None: ... method glCallLists (line 2668) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glClear (line 2669) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 2670) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 2671) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 2672) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 2673) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 2674) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 2675) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 2676) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 2677) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 2678) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 2679) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 2680) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 2681) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 2682) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 2683) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 2684) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 2685) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 2686) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 2687) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 2688) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 2689) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 2690) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 2691) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 2692) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 2693) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 2694) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 2695) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 2696) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 2697) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 2698) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 2699) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 2700) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 2701) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 2702) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 2703) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 2704) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 2705) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 2706) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 2707) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 2708) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 2709) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaterial (line 2710) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 2711) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 2712) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 2713) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 2714) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 2715) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 2716) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 2717) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 2718) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 2719) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 2720) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 2721) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 2722) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 2723) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 2724) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 2725) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 2726) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 2727) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 2728) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 2729) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 2730) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 2731) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 2732) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 2733) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 2734) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 2735) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 2736) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 2737) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 2738) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 2739) | def glCreateProgram(self) -> int: ... method glCreateShader (line 2740) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 2741) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 2742) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteLists (line 2743) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 2744) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 2745) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteShader (line 2746) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 2747) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDepthFunc (line 2748) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 2749) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 2750) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 2751) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 2752) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 2753) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 2754) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDrawArrays (line 2755) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 2756) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 2757) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 2758) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 2759) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 2760) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 2761) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 2762) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 2763) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 2764) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 2765) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnd (line 2766) | def glEnd(self) -> None: ... method glEndList (line 2767) | def glEndList(self) -> None: ... method glEndQuery (line 2768) | def glEndQuery(self, target: int) -> None: ... method glEvalCoord1d (line 2769) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 2770) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 2771) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 2772) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 2773) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 2774) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 2775) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 2776) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 2777) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 2778) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 2779) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 2780) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 2781) | def glFinish(self) -> None: ... method glFlush (line 2782) | def glFlush(self) -> None: ... method glFogCoordPointer (line 2783) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 2784) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 2785) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 2786) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 2787) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 2788) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 2789) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 2790) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 2791) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFrontFace (line 2792) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 2793) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 2794) | def glGenLists(self, range: int) -> int: ... method glGetAttribLocation (line 2795) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 2796) | def glGetError(self) -> int: ... method glGetString (line 2797) | def glGetString(self, name: int) -> bytes: ... method glGetUniformLocation (line 2798) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 2799) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 2800) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 2801) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 2802) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 2803) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 2804) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 2805) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 2806) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 2807) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 2808) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 2809) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 2810) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 2811) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 2812) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 2813) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 2814) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 2815) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 2816) | def glIsEnabled(self, cap: int) -> int: ... method glIsList (line 2817) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 2818) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 2819) | def glIsQuery(self, id: int) -> int: ... method glIsShader (line 2820) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 2821) | def glIsTexture(self, texture: int) -> int: ... method glLightModelf (line 2822) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 2823) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 2824) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 2825) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 2826) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 2827) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 2828) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 2829) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 2830) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 2831) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 2832) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 2833) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 2834) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 2835) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 2836) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 2837) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 2838) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 2839) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 2840) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 2841) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 2842) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 2843) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 2844) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 2845) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 2846) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 2847) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 2848) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 2849) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 2850) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 2851) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 2852) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 2853) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 2854) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 2855) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 2856) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 2857) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 2858) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 2859) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 2860) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 2861) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 2862) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 2863) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 2864) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 2865) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 2866) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 2867) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 2868) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 2869) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 2870) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 2871) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 2872) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 2873) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 2874) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 2875) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 2876) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 2877) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 2878) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 2879) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 2880) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 2881) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 2882) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 2883) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 2884) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 2885) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 2886) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 2887) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 2888) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 2889) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 2890) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 2891) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 2892) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 2893) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 2894) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 2895) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 2896) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 2897) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 2898) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 2899) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 2900) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 2901) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 2902) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 2903) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 2904) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 2905) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 2906) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 2907) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 2908) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 2909) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 2910) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 2911) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 2912) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 2913) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 2914) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 2915) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 2916) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 2917) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 2918) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 2919) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 2920) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 2921) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 2922) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 2923) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 2924) | def glPopMatrix(self) -> None: ... method glPopName (line 2925) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 2926) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 2927) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 2928) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 2929) | def glPushMatrix(self) -> None: ... method glPushName (line 2930) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 2931) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 2932) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 2933) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 2934) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 2935) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 2936) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 2937) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 2938) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 2939) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 2940) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 2941) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 2942) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 2943) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 2944) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 2945) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 2946) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 2947) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 2948) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 2949) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 2950) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 2951) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 2952) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 2953) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 2954) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 2955) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 2956) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 2957) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 2958) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 2959) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 2960) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 2961) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 2962) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 2963) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 2964) | def glRenderMode(self, mode: int) -> int: ... method glResetHistogram (line 2965) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 2966) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 2967) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 2968) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 2969) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScaled (line 2970) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 2971) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 2972) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 2973) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 2974) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 2975) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 2976) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 2977) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 2978) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 2979) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 2980) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 2981) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 2982) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 2983) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 2984) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 2985) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 2986) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 2987) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 2988) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorPointer (line 2989) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 2990) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 2991) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 2992) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 2993) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 2994) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 2995) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 2996) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 2997) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexCoord1d (line 2998) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 2999) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 3000) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 3001) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 3002) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 3003) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 3004) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 3005) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 3006) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 3007) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 3008) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 3009) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 3010) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 3011) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 3012) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 3013) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 3014) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 3015) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 3016) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 3017) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 3018) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 3019) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 3020) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 3021) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 3022) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 3023) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 3024) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 3025) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 3026) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 3027) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 3028) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 3029) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 3030) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 3031) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 3032) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 3033) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 3034) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 3035) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 3036) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 3037) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 3038) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 3039) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 3040) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 3041) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 3042) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 3043) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 3044) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 3045) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 3046) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 3047) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 3048) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 3049) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 3050) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 3051) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 3052) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1f (line 3053) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 3054) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 3055) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 3056) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 3057) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 3058) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 3059) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 3060) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 3061) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 3062) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 3063) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 3064) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 3065) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 3066) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 3067) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 3068) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniformMatrix2fv (line 3069) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 3070) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 3071) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 3072) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 3073) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 3074) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 3075) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 3076) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 3077) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 3078) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 3079) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 3080) | def glValidateProgram(self, program: int) -> None: ... method glVertex2d (line 3081) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 3082) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 3083) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 3084) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 3085) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 3086) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 3087) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 3088) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 3089) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 3090) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 3091) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 3092) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 3093) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 3094) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 3095) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 3096) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 3097) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 3098) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 3099) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 3100) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 3101) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 3102) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 3103) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 3104) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 3105) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 3106) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 3107) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 3108) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 3109) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 3110) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 3111) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 3112) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 3113) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 3114) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 3115) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 3116) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 3117) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 3118) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 3119) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 3120) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 3121) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 3122) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 3123) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 3124) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 3125) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 3126) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 3127) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 3128) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 3129) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 3130) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 3131) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 3132) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 3133) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 3134) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 3135) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 3136) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 3137) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 3138) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 3139) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 3140) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribPointer (line 3141) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 3142) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 3143) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 3144) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 3145) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 3146) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 3147) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 3148) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 3149) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 3150) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 3151) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 3152) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 3153) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 3154) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 3155) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 3156) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 3157) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 3158) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 3159) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 3160) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_3_0 (line 3162) | class QOpenGLFunctions_3_0(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 3163) | def __init__(self) -> None: ... method glAccum (line 3164) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 3165) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 3166) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 3167) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 3168) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 3169) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 3170) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 3171) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 3172) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 3173) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 3174) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 3175) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 3176) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 3177) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 3178) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindTexture (line 3179) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindVertexArray (line 3180) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 3181) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 3182) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 3183) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 3184) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 3185) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 3186) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 3187) | def glCallList(self, list: int) -> None: ... method glCallLists (line 3188) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 3189) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 3190) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 3191) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 3192) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 3193) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 3194) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 3195) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 3196) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 3197) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 3198) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 3199) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 3200) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 3201) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 3202) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 3203) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 3204) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 3205) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 3206) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 3207) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 3208) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 3209) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 3210) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 3211) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 3212) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 3213) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 3214) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 3215) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 3216) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 3217) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 3218) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 3219) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 3220) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 3221) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 3222) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 3223) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 3224) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 3225) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 3226) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 3227) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 3228) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 3229) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 3230) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 3231) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 3232) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 3233) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 3234) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 3235) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 3236) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 3237) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 3238) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 3239) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 3240) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 3241) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 3242) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 3243) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 3244) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 3245) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 3246) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 3247) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 3248) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 3249) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 3250) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 3251) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 3252) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 3253) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 3254) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 3255) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 3256) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 3257) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 3258) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 3259) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 3260) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 3261) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 3262) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 3263) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 3264) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 3265) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 3266) | def glCreateProgram(self) -> int: ... method glCreateShader (line 3267) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 3268) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 3269) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 3270) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 3271) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 3272) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 3273) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 3274) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 3275) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 3276) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteVertexArrays (line 3277) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 3278) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 3279) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 3280) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 3281) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 3282) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 3283) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 3284) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 3285) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 3286) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawBuffer (line 3287) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 3288) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 3289) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 3290) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 3291) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 3292) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 3293) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 3294) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 3295) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 3296) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 3297) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 3298) | def glEnd(self) -> None: ... method glEndConditionalRender (line 3299) | def glEndConditionalRender(self) -> None: ... method glEndList (line 3300) | def glEndList(self) -> None: ... method glEndQuery (line 3301) | def glEndQuery(self, target: int) -> None: ... method glEndTransformFeedback (line 3302) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 3303) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 3304) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 3305) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 3306) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 3307) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 3308) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 3309) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 3310) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 3311) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 3312) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 3313) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 3314) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 3315) | def glFinish(self) -> None: ... method glFlush (line 3316) | def glFlush(self) -> None: ... method glFogCoordPointer (line 3317) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 3318) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 3319) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 3320) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 3321) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 3322) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 3323) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 3324) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 3325) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferRenderbuffer (line 3326) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture1D (line 3327) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 3328) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 3329) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 3330) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 3331) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 3332) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 3333) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 3334) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 3335) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 3336) | def glGetError(self) -> int: ... method glGetFragDataLocation (line 3337) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 3338) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 3339) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetUniformLocation (line 3340) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 3341) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 3342) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 3343) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 3344) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 3345) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 3346) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 3347) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 3348) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 3349) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 3350) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 3351) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 3352) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 3353) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 3354) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 3355) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 3356) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 3357) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 3358) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 3359) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 3360) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 3361) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 3362) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 3363) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 3364) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsShader (line 3365) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 3366) | def glIsTexture(self, texture: int) -> int: ... method glIsVertexArray (line 3367) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 3368) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 3369) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 3370) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 3371) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 3372) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 3373) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 3374) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 3375) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 3376) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 3377) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 3378) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 3379) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 3380) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 3381) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 3382) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 3383) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 3384) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 3385) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 3386) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 3387) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 3388) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 3389) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 3390) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 3391) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 3392) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 3393) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 3394) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 3395) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 3396) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 3397) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 3398) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 3399) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 3400) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 3401) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 3402) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 3403) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 3404) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 3405) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 3406) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 3407) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 3408) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 3409) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 3410) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 3411) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 3412) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 3413) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 3414) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 3415) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 3416) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 3417) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 3418) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 3419) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 3420) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 3421) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 3422) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 3423) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 3424) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 3425) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 3426) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 3427) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 3428) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 3429) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 3430) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 3431) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 3432) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 3433) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 3434) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 3435) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 3436) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 3437) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 3438) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 3439) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 3440) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 3441) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 3442) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 3443) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 3444) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 3445) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 3446) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 3447) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 3448) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 3449) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 3450) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 3451) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 3452) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 3453) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 3454) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 3455) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 3456) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 3457) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 3458) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 3459) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 3460) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 3461) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 3462) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 3463) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 3464) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 3465) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 3466) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 3467) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 3468) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 3469) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 3470) | def glPopMatrix(self) -> None: ... method glPopName (line 3471) | def glPopName(self) -> None: ... method glPrioritizeTextures (line 3472) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 3473) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 3474) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 3475) | def glPushMatrix(self) -> None: ... method glPushName (line 3476) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 3477) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 3478) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 3479) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 3480) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 3481) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 3482) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 3483) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 3484) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 3485) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 3486) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 3487) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 3488) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 3489) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 3490) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 3491) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 3492) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 3493) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 3494) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 3495) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 3496) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 3497) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 3498) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 3499) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 3500) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 3501) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 3502) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 3503) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 3504) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 3505) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 3506) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 3507) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 3508) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 3509) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 3510) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 3511) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 3512) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 3513) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 3514) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 3515) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 3516) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 3517) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScaled (line 3518) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 3519) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 3520) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 3521) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 3522) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 3523) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 3524) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 3525) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 3526) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 3527) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 3528) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 3529) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 3530) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 3531) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 3532) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 3533) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 3534) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 3535) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 3536) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorPointer (line 3537) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 3538) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 3539) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 3540) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 3541) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 3542) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 3543) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 3544) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 3545) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexCoord1d (line 3546) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 3547) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 3548) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 3549) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 3550) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 3551) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 3552) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 3553) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 3554) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 3555) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 3556) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 3557) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 3558) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 3559) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 3560) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 3561) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 3562) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 3563) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 3564) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 3565) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 3566) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 3567) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 3568) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 3569) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 3570) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 3571) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 3572) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 3573) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 3574) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 3575) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 3576) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 3577) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 3578) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 3579) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 3580) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 3581) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 3582) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 3583) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 3584) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 3585) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 3586) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 3587) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 3588) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 3589) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 3590) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 3591) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterIiv (line 3592) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 3593) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 3594) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 3595) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 3596) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 3597) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 3598) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 3599) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 3600) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 3601) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 3602) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1f (line 3603) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 3604) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 3605) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 3606) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 3607) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 3608) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 3609) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 3610) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 3611) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 3612) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 3613) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 3614) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 3615) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 3616) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 3617) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 3618) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 3619) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 3620) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 3621) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 3622) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 3623) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 3624) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 3625) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 3626) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformMatrix2fv (line 3627) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 3628) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 3629) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 3630) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 3631) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 3632) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 3633) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 3634) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 3635) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 3636) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 3637) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 3638) | def glValidateProgram(self, program: int) -> None: ... method glVertex2d (line 3639) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 3640) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 3641) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 3642) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 3643) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 3644) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 3645) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 3646) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 3647) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 3648) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 3649) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 3650) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 3651) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 3652) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 3653) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 3654) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 3655) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 3656) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 3657) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 3658) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 3659) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 3660) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 3661) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 3662) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 3663) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 3664) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 3665) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 3666) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 3667) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 3668) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 3669) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 3670) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 3671) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 3672) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 3673) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 3674) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 3675) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 3676) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 3677) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 3678) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 3679) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 3680) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 3681) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 3682) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 3683) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 3684) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 3685) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 3686) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 3687) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 3688) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 3689) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 3690) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 3691) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 3692) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 3693) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 3694) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 3695) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 3696) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 3697) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 3698) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1i (line 3699) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 3700) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 3701) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 3702) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 3703) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 3704) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 3705) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 3706) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 3707) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 3708) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 3709) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 3710) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 3711) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 3712) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 3713) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 3714) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 3715) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 3716) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 3717) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 3718) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIPointer (line 3719) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 3720) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 3721) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 3722) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 3723) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 3724) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 3725) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 3726) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 3727) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 3728) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 3729) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 3730) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 3731) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 3732) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 3733) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 3734) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 3735) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 3736) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 3737) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 3738) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 3739) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_3_1 (line 3741) | class QOpenGLFunctions_3_1(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 3742) | def __init__(self) -> None: ... method glActiveTexture (line 3743) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 3744) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 3745) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 3746) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 3747) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 3748) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 3749) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 3750) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 3751) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 3752) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 3753) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindTexture (line 3754) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindVertexArray (line 3755) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 3756) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 3757) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 3758) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 3759) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 3760) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 3761) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 3762) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 3763) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 3764) | def glClear(self, mask: int) -> None: ... method glClearBufferfi (line 3765) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 3766) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 3767) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 3768) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 3769) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 3770) | def glClearDepth(self, depth: float) -> None: ... method glClearStencil (line 3771) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 3772) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 3773) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glCompileShader (line 3774) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 3775) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 3776) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 3777) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 3778) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 3779) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 3780) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 3781) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 3782) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 3783) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 3784) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 3785) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 3786) | def glCreateProgram(self) -> int: ... method glCreateShader (line 3787) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 3788) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 3789) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 3790) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 3791) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 3792) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 3793) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 3794) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 3795) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteVertexArrays (line 3796) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 3797) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 3798) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 3799) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 3800) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 3801) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 3802) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 3803) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 3804) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysInstanced (line 3805) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 3806) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 3807) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 3808) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsInstanced (line 3809) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawRangeElements (line 3810) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEnable (line 3811) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 3812) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 3813) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 3814) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 3815) | def glEndQuery(self, target: int) -> None: ... method glEndTransformFeedback (line 3816) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 3817) | def glFinish(self) -> None: ... method glFlush (line 3818) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 3819) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture1D (line 3820) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 3821) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 3822) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 3823) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 3824) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 3825) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 3826) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 3827) | def glGetError(self) -> int: ... method glGetFragDataLocation (line 3828) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 3829) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 3830) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetUniformBlockIndex (line 3831) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 3832) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 3833) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 3834) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 3835) | def glIndexubv(self, c: bytes) -> None: ... method glIsBuffer (line 3836) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 3837) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 3838) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 3839) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 3840) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 3841) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 3842) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsShader (line 3843) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 3844) | def glIsTexture(self, texture: int) -> int: ... method glIsVertexArray (line 3845) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 3846) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 3847) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 3848) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 3849) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMultiDrawArrays (line 3850) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPixelStoref (line 3851) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 3852) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 3853) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 3854) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 3855) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 3856) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 3857) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 3858) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 3859) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 3860) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glReadBuffer (line 3861) | def glReadBuffer(self, mode: int) -> None: ... method glRenderbufferStorage (line 3862) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 3863) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleCoverage (line 3864) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glScissor (line 3865) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glStencilFunc (line 3866) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 3867) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 3868) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 3869) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 3870) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 3871) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 3872) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexImage1D (line 3873) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 3874) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 3875) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterIiv (line 3876) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 3877) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 3878) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 3879) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 3880) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 3881) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 3882) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 3883) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 3884) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 3885) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 3886) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 3887) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 3888) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 3889) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 3890) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 3891) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 3892) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 3893) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 3894) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 3895) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 3896) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 3897) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 3898) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 3899) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 3900) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 3901) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 3902) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 3903) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 3904) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 3905) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 3906) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 3907) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 3908) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 3909) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 3910) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 3911) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 3912) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 3913) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 3914) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 3915) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 3916) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 3917) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 3918) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 3919) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 3920) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 3921) | def glValidateProgram(self, program: int) -> None: ... method glVertexAttribIPointer (line 3922) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 3923) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 3924) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 3925) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_3_2_Compatibility (line 3927) | class QOpenGLFunctions_3_2_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 3928) | def __init__(self) -> None: ... method glAccum (line 3929) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 3930) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 3931) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 3932) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 3933) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 3934) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 3935) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 3936) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 3937) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 3938) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 3939) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 3940) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 3941) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 3942) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 3943) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindTexture (line 3944) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindVertexArray (line 3945) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 3946) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 3947) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 3948) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 3949) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 3950) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 3951) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 3952) | def glCallList(self, list: int) -> None: ... method glCallLists (line 3953) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 3954) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 3955) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 3956) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 3957) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 3958) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 3959) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 3960) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 3961) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 3962) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 3963) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 3964) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 3965) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 3966) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 3967) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 3968) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 3969) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 3970) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 3971) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 3972) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 3973) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 3974) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 3975) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 3976) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 3977) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 3978) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 3979) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 3980) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 3981) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 3982) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 3983) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 3984) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 3985) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 3986) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 3987) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 3988) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 3989) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 3990) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 3991) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 3992) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 3993) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 3994) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 3995) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 3996) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 3997) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 3998) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 3999) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 4000) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 4001) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 4002) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorPointer (line 4003) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 4004) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 4005) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 4006) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 4007) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 4008) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 4009) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 4010) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 4011) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 4012) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 4013) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 4014) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 4015) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 4016) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 4017) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 4018) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 4019) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 4020) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 4021) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 4022) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 4023) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 4024) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 4025) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 4026) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 4027) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 4028) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 4029) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 4030) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4031) | def glCreateProgram(self) -> int: ... method glCreateShader (line 4032) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 4033) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 4034) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 4035) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 4036) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 4037) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 4038) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 4039) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 4040) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 4041) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteVertexArrays (line 4042) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 4043) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 4044) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 4045) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 4046) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 4047) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 4048) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 4049) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 4050) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 4051) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysInstanced (line 4052) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 4053) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 4054) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 4055) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 4056) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 4057) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 4058) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 4059) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 4060) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 4061) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEdgeFlag (line 4062) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 4063) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 4064) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 4065) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 4066) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 4067) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 4068) | def glEnd(self) -> None: ... method glEndConditionalRender (line 4069) | def glEndConditionalRender(self) -> None: ... method glEndList (line 4070) | def glEndList(self) -> None: ... method glEndQuery (line 4071) | def glEndQuery(self, target: int) -> None: ... method glEndTransformFeedback (line 4072) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 4073) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 4074) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 4075) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 4076) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 4077) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 4078) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 4079) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 4080) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 4081) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 4082) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 4083) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 4084) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 4085) | def glFinish(self) -> None: ... method glFlush (line 4086) | def glFlush(self) -> None: ... method glFogCoordPointer (line 4087) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 4088) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 4089) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 4090) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 4091) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 4092) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 4093) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 4094) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 4095) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferRenderbuffer (line 4096) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 4097) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 4098) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 4099) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 4100) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 4101) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 4102) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 4103) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 4104) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 4105) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 4106) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 4107) | def glGetError(self) -> int: ... method glGetFragDataLocation (line 4108) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 4109) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 4110) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetUniformBlockIndex (line 4111) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 4112) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 4113) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 4114) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 4115) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 4116) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 4117) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 4118) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 4119) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 4120) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 4121) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 4122) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 4123) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 4124) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 4125) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 4126) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 4127) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 4128) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 4129) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 4130) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 4131) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 4132) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 4133) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 4134) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 4135) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 4136) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsShader (line 4137) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 4138) | def glIsTexture(self, texture: int) -> int: ... method glIsVertexArray (line 4139) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 4140) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 4141) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 4142) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 4143) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 4144) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 4145) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 4146) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 4147) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 4148) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 4149) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 4150) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 4151) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 4152) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 4153) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 4154) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 4155) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 4156) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 4157) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 4158) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 4159) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 4160) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 4161) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 4162) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 4163) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 4164) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 4165) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 4166) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 4167) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 4168) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 4169) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 4170) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 4171) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 4172) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 4173) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 4174) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 4175) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 4176) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 4177) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 4178) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 4179) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 4180) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 4181) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 4182) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 4183) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 4184) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 4185) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 4186) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 4187) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 4188) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 4189) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 4190) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 4191) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 4192) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 4193) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 4194) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 4195) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 4196) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 4197) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 4198) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 4199) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 4200) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 4201) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 4202) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 4203) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 4204) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 4205) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 4206) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 4207) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 4208) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 4209) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 4210) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glNewList (line 4211) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 4212) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 4213) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 4214) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 4215) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 4216) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 4217) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 4218) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 4219) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 4220) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 4221) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalPointer (line 4222) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 4223) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 4224) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 4225) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 4226) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 4227) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 4228) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 4229) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 4230) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 4231) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 4232) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 4233) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 4234) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 4235) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 4236) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 4237) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 4238) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 4239) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 4240) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 4241) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 4242) | def glPopMatrix(self) -> None: ... method glPopName (line 4243) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 4244) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 4245) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProvokingVertex (line 4246) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 4247) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 4248) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 4249) | def glPushMatrix(self) -> None: ... method glPushName (line 4250) | def glPushName(self, name: int) -> None: ... method glRasterPos2d (line 4251) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 4252) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 4253) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 4254) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 4255) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 4256) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 4257) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 4258) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 4259) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 4260) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 4261) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 4262) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 4263) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 4264) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 4265) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 4266) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 4267) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 4268) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 4269) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 4270) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 4271) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 4272) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 4273) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 4274) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 4275) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 4276) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 4277) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 4278) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 4279) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 4280) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 4281) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 4282) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 4283) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 4284) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 4285) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 4286) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 4287) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 4288) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 4289) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 4290) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 4291) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 4292) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glScaled (line 4293) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 4294) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 4295) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 4296) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 4297) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 4298) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 4299) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 4300) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 4301) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 4302) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 4303) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 4304) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 4305) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 4306) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 4307) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 4308) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 4309) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 4310) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 4311) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorPointer (line 4312) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 4313) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 4314) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 4315) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 4316) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 4317) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 4318) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 4319) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 4320) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 4321) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 4322) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 4323) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 4324) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 4325) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 4326) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 4327) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 4328) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 4329) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 4330) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 4331) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 4332) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 4333) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 4334) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 4335) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 4336) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 4337) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 4338) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 4339) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 4340) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 4341) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 4342) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 4343) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 4344) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 4345) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 4346) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 4347) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 4348) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 4349) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 4350) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 4351) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 4352) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 4353) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordPointer (line 4354) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 4355) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 4356) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 4357) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 4358) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 4359) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 4360) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 4361) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 4362) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 4363) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 4364) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 4365) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 4366) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 4367) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 4368) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 4369) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 4370) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 4371) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 4372) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 4373) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 4374) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 4375) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 4376) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 4377) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 4378) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 4379) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 4380) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1f (line 4381) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 4382) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 4383) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 4384) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 4385) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 4386) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 4387) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 4388) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 4389) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 4390) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 4391) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 4392) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 4393) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 4394) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 4395) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 4396) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 4397) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 4398) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 4399) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 4400) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 4401) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 4402) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 4403) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 4404) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 4405) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 4406) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 4407) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 4408) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 4409) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 4410) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 4411) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 4412) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 4413) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 4414) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 4415) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 4416) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 4417) | def glValidateProgram(self, program: int) -> None: ... method glVertex2d (line 4418) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 4419) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 4420) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 4421) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 4422) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 4423) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 4424) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 4425) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 4426) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 4427) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 4428) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 4429) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 4430) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 4431) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 4432) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 4433) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 4434) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 4435) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 4436) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 4437) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 4438) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 4439) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 4440) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 4441) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 4442) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 4443) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 4444) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 4445) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 4446) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 4447) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 4448) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 4449) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 4450) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 4451) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 4452) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 4453) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 4454) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 4455) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 4456) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 4457) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 4458) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 4459) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 4460) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 4461) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 4462) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 4463) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 4464) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 4465) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 4466) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 4467) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 4468) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 4469) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 4470) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 4471) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 4472) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 4473) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 4474) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 4475) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 4476) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 4477) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1i (line 4478) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 4479) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 4480) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 4481) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 4482) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 4483) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 4484) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 4485) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 4486) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 4487) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 4488) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 4489) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 4490) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 4491) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 4492) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 4493) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 4494) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 4495) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 4496) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 4497) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIPointer (line 4498) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 4499) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 4500) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 4501) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 4502) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 4503) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 4504) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 4505) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 4506) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 4507) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 4508) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 4509) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 4510) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 4511) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 4512) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 4513) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 4514) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 4515) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 4516) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 4517) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 4518) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_3_2_Core (line 4520) | class QOpenGLFunctions_3_2_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 4521) | def __init__(self) -> None: ... method glActiveTexture (line 4522) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 4523) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 4524) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 4525) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 4526) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 4527) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 4528) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 4529) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 4530) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 4531) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 4532) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindTexture (line 4533) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindVertexArray (line 4534) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 4535) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 4536) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 4537) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 4538) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 4539) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 4540) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 4541) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 4542) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 4543) | def glClear(self, mask: int) -> None: ... method glClearBufferfi (line 4544) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 4545) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 4546) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 4547) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 4548) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 4549) | def glClearDepth(self, depth: float) -> None: ... method glClearStencil (line 4550) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 4551) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 4552) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glCompileShader (line 4553) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 4554) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 4555) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 4556) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 4557) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 4558) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 4559) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 4560) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 4561) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 4562) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 4563) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 4564) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4565) | def glCreateProgram(self) -> int: ... method glCreateShader (line 4566) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 4567) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 4568) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 4569) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 4570) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 4571) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 4572) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 4573) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 4574) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteVertexArrays (line 4575) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 4576) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 4577) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 4578) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 4579) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 4580) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 4581) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 4582) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 4583) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysInstanced (line 4584) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 4585) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 4586) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 4587) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 4588) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 4589) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 4590) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 4591) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 4592) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEnable (line 4593) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 4594) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 4595) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 4596) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 4597) | def glEndQuery(self, target: int) -> None: ... method glEndTransformFeedback (line 4598) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 4599) | def glFinish(self) -> None: ... method glFlush (line 4600) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 4601) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 4602) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 4603) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 4604) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 4605) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 4606) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 4607) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 4608) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 4609) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 4610) | def glGetError(self) -> int: ... method glGetFragDataLocation (line 4611) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 4612) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 4613) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetUniformBlockIndex (line 4614) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 4615) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 4616) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 4617) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 4618) | def glIndexubv(self, c: bytes) -> None: ... method glIsBuffer (line 4619) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 4620) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 4621) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 4622) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 4623) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 4624) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 4625) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsShader (line 4626) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 4627) | def glIsTexture(self, texture: int) -> int: ... method glIsVertexArray (line 4628) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 4629) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 4630) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 4631) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 4632) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMultiDrawArrays (line 4633) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPixelStoref (line 4634) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 4635) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 4636) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 4637) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 4638) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 4639) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 4640) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 4641) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 4642) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 4643) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProvokingVertex (line 4644) | def glProvokingVertex(self, mode: int) -> None: ... method glReadBuffer (line 4645) | def glReadBuffer(self, mode: int) -> None: ... method glRenderbufferStorage (line 4646) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 4647) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleCoverage (line 4648) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 4649) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glScissor (line 4650) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glStencilFunc (line 4651) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 4652) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 4653) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 4654) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 4655) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 4656) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 4657) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexImage1D (line 4658) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 4659) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 4660) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 4661) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 4662) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 4663) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 4664) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 4665) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 4666) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 4667) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 4668) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 4669) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 4670) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 4671) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 4672) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 4673) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 4674) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 4675) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 4676) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 4677) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 4678) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 4679) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 4680) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 4681) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 4682) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 4683) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 4684) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 4685) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 4686) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 4687) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 4688) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 4689) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 4690) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 4691) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 4692) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 4693) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 4694) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 4695) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 4696) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 4697) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 4698) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 4699) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 4700) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 4701) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 4702) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 4703) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 4704) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 4705) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 4706) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 4707) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 4708) | def glValidateProgram(self, program: int) -> None: ... method glVertexAttribIPointer (line 4709) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 4710) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 4711) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 4712) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_3_3_Compatibility (line 4714) | class QOpenGLFunctions_3_3_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 4715) | def __init__(self) -> None: ... method glAccum (line 4716) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 4717) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 4718) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 4719) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 4720) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 4721) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 4722) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 4723) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 4724) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 4725) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 4726) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 4727) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 4728) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 4729) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 4730) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 4731) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 4732) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 4733) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindVertexArray (line 4734) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 4735) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 4736) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 4737) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 4738) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 4739) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 4740) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 4741) | def glCallList(self, list: int) -> None: ... method glCallLists (line 4742) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 4743) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 4744) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 4745) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 4746) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 4747) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 4748) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 4749) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 4750) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 4751) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 4752) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 4753) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 4754) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 4755) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 4756) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 4757) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 4758) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 4759) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 4760) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 4761) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 4762) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 4763) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 4764) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 4765) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 4766) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 4767) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 4768) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 4769) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 4770) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 4771) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 4772) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 4773) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 4774) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 4775) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 4776) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 4777) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 4778) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 4779) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 4780) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 4781) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 4782) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 4783) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 4784) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 4785) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 4786) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 4787) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 4788) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 4789) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 4790) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 4791) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 4792) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 4793) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 4794) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 4795) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 4796) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 4797) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 4798) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 4799) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 4800) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 4801) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 4802) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 4803) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 4804) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 4805) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 4806) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 4807) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 4808) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 4809) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 4810) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 4811) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 4812) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 4813) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 4814) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 4815) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 4816) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 4817) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 4818) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 4819) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 4820) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 4821) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 4822) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 4823) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4824) | def glCreateProgram(self) -> int: ... method glCreateShader (line 4825) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 4826) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 4827) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 4828) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 4829) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 4830) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 4831) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 4832) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 4833) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 4834) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 4835) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteVertexArrays (line 4836) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 4837) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 4838) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 4839) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 4840) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 4841) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 4842) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 4843) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 4844) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 4845) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysInstanced (line 4846) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 4847) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 4848) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 4849) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 4850) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 4851) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 4852) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 4853) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 4854) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 4855) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEdgeFlag (line 4856) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 4857) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 4858) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 4859) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 4860) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 4861) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 4862) | def glEnd(self) -> None: ... method glEndConditionalRender (line 4863) | def glEndConditionalRender(self) -> None: ... method glEndList (line 4864) | def glEndList(self) -> None: ... method glEndQuery (line 4865) | def glEndQuery(self, target: int) -> None: ... method glEndTransformFeedback (line 4866) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 4867) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 4868) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 4869) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 4870) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 4871) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 4872) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 4873) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 4874) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 4875) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 4876) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 4877) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 4878) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 4879) | def glFinish(self) -> None: ... method glFlush (line 4880) | def glFlush(self) -> None: ... method glFogCoordPointer (line 4881) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 4882) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 4883) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 4884) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 4885) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 4886) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 4887) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 4888) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 4889) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferRenderbuffer (line 4890) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 4891) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 4892) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 4893) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 4894) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 4895) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 4896) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 4897) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 4898) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 4899) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 4900) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 4901) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 4902) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 4903) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 4904) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 4905) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetUniformBlockIndex (line 4906) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 4907) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 4908) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 4909) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 4910) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 4911) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 4912) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 4913) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 4914) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 4915) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 4916) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 4917) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 4918) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 4919) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 4920) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 4921) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 4922) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 4923) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 4924) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 4925) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 4926) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 4927) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 4928) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 4929) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 4930) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 4931) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 4932) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 4933) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 4934) | def glIsTexture(self, texture: int) -> int: ... method glIsVertexArray (line 4935) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 4936) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 4937) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 4938) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 4939) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 4940) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 4941) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 4942) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 4943) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 4944) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 4945) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 4946) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 4947) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 4948) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 4949) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 4950) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 4951) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 4952) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 4953) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 4954) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 4955) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 4956) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 4957) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 4958) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 4959) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 4960) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 4961) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 4962) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 4963) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 4964) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 4965) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 4966) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 4967) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 4968) | def glMatrixMode(self, mode: int) -> None: ... method glMinmax (line 4969) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 4970) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 4971) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 4972) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 4973) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 4974) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 4975) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 4976) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 4977) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 4978) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 4979) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 4980) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 4981) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 4982) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 4983) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 4984) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 4985) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 4986) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 4987) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 4988) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 4989) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 4990) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 4991) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 4992) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 4993) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 4994) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 4995) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 4996) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 4997) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 4998) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 4999) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 5000) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 5001) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 5002) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 5003) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 5004) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 5005) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 5006) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 5007) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 5008) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 5009) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 5010) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 5011) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 5012) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 5013) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 5014) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 5015) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 5016) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 5017) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 5018) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 5019) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 5020) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 5021) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 5022) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 5023) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 5024) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 5025) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 5026) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 5027) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 5028) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 5029) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 5030) | def glPassThrough(self, token: float) -> None: ... method glPixelMapfv (line 5031) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 5032) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 5033) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 5034) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 5035) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 5036) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 5037) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 5038) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 5039) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 5040) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 5041) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 5042) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 5043) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 5044) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 5045) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 5046) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 5047) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 5048) | def glPopMatrix(self) -> None: ... method glPopName (line 5049) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 5050) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 5051) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProvokingVertex (line 5052) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 5053) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 5054) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 5055) | def glPushMatrix(self) -> None: ... method glPushName (line 5056) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 5057) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 5058) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 5059) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 5060) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 5061) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 5062) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 5063) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 5064) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 5065) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 5066) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 5067) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 5068) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 5069) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 5070) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 5071) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 5072) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 5073) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 5074) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 5075) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 5076) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 5077) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 5078) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 5079) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 5080) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 5081) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 5082) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 5083) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 5084) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 5085) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 5086) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 5087) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 5088) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 5089) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 5090) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 5091) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 5092) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 5093) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 5094) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 5095) | def glResetMinmax(self, target: int) -> None: ... method glRotated (line 5096) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 5097) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 5098) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 5099) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 5100) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 5101) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 5102) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 5103) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 5104) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 5105) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 5106) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 5107) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 5108) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 5109) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 5110) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 5111) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 5112) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 5113) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 5114) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 5115) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 5116) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 5117) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 5118) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 5119) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 5120) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 5121) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 5122) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 5123) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 5124) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 5125) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 5126) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 5127) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 5128) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 5129) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 5130) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 5131) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 5132) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 5133) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 5134) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 5135) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 5136) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 5137) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 5138) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 5139) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 5140) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 5141) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 5142) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 5143) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 5144) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 5145) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 5146) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 5147) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 5148) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 5149) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 5150) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 5151) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 5152) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 5153) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 5154) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 5155) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 5156) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 5157) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 5158) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 5159) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 5160) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 5161) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 5162) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 5163) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 5164) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 5165) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 5166) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 5167) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 5168) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 5169) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 5170) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 5171) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 5172) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 5173) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 5174) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 5175) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 5176) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 5177) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 5178) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 5179) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 5180) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 5181) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 5182) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 5183) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 5184) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 5185) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 5186) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 5187) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 5188) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 5189) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 5190) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 5191) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 5192) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 5193) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 5194) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 5195) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 5196) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 5197) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 5198) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 5199) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 5200) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 5201) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 5202) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 5203) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1f (line 5204) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 5205) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 5206) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 5207) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 5208) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 5209) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 5210) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 5211) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 5212) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 5213) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 5214) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 5215) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 5216) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 5217) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 5218) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 5219) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 5220) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 5221) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 5222) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 5223) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 5224) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 5225) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 5226) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 5227) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 5228) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 5229) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 5230) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 5231) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 5232) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 5233) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 5234) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 5235) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 5236) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 5237) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 5238) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 5239) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 5240) | def glValidateProgram(self, program: int) -> None: ... method glVertex2d (line 5241) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 5242) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 5243) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 5244) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 5245) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 5246) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 5247) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 5248) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 5249) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 5250) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 5251) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 5252) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 5253) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 5254) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 5255) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 5256) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 5257) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 5258) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 5259) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 5260) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 5261) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 5262) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 5263) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 5264) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 5265) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 5266) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 5267) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 5268) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 5269) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 5270) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 5271) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 5272) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 5273) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 5274) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 5275) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 5276) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 5277) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 5278) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 5279) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 5280) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 5281) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 5282) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 5283) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 5284) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 5285) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 5286) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 5287) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 5288) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 5289) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 5290) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 5291) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 5292) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 5293) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 5294) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 5295) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 5296) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 5297) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 5298) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 5299) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 5300) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribDivisor (line 5301) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribI1i (line 5302) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 5303) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 5304) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 5305) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 5306) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 5307) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 5308) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 5309) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 5310) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 5311) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 5312) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 5313) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 5314) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 5315) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 5316) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 5317) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 5318) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 5319) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 5320) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 5321) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIPointer (line 5322) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 5323) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 5324) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 5325) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 5326) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 5327) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 5328) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 5329) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 5330) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 5331) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 5332) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 5333) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 5334) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 5335) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 5336) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 5337) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 5338) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 5339) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 5340) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 5341) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 5342) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 5343) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 5344) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 5345) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 5346) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 5347) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 5348) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 5349) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 5350) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 5351) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 5352) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 5353) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 5354) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 5355) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 5356) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_3_3_Core (line 5358) | class QOpenGLFunctions_3_3_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 5359) | def __init__(self) -> None: ... method glActiveTexture (line 5360) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 5361) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 5362) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 5363) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginTransformFeedback (line 5364) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 5365) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 5366) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 5367) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 5368) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 5369) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 5370) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 5371) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 5372) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 5373) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindVertexArray (line 5374) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 5375) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 5376) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 5377) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendFunc (line 5378) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 5379) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 5380) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 5381) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 5382) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 5383) | def glClear(self, mask: int) -> None: ... method glClearBufferfi (line 5384) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 5385) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 5386) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 5387) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 5388) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 5389) | def glClearDepth(self, depth: float) -> None: ... method glClearStencil (line 5390) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 5391) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 5392) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorP3ui (line 5393) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 5394) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 5395) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 5396) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glCompileShader (line 5397) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 5398) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 5399) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 5400) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 5401) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 5402) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 5403) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 5404) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 5405) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 5406) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 5407) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 5408) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 5409) | def glCreateProgram(self) -> int: ... method glCreateShader (line 5410) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 5411) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 5412) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 5413) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 5414) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 5415) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 5416) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 5417) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 5418) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 5419) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteVertexArrays (line 5420) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 5421) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 5422) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 5423) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 5424) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 5425) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 5426) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 5427) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 5428) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysInstanced (line 5429) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 5430) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 5431) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 5432) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 5433) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 5434) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 5435) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 5436) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 5437) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEnable (line 5438) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 5439) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 5440) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 5441) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 5442) | def glEndQuery(self, target: int) -> None: ... method glEndTransformFeedback (line 5443) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 5444) | def glFinish(self) -> None: ... method glFlush (line 5445) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 5446) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 5447) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 5448) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 5449) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 5450) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 5451) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 5452) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 5453) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 5454) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 5455) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 5456) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 5457) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 5458) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 5459) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetUniformBlockIndex (line 5460) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 5461) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 5462) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 5463) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 5464) | def glIndexubv(self, c: bytes) -> None: ... method glIsBuffer (line 5465) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 5466) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 5467) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 5468) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 5469) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 5470) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 5471) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 5472) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 5473) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 5474) | def glIsTexture(self, texture: int) -> int: ... method glIsVertexArray (line 5475) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 5476) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 5477) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 5478) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 5479) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMultiDrawArrays (line 5480) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoordP1ui (line 5481) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 5482) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 5483) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 5484) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 5485) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 5486) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 5487) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 5488) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNormalP3ui (line 5489) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 5490) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glPixelStoref (line 5491) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 5492) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 5493) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 5494) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 5495) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 5496) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 5497) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 5498) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 5499) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 5500) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProvokingVertex (line 5501) | def glProvokingVertex(self, mode: int) -> None: ... method glQueryCounter (line 5502) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 5503) | def glReadBuffer(self, mode: int) -> None: ... method glRenderbufferStorage (line 5504) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 5505) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleCoverage (line 5506) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 5507) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 5508) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 5509) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 5510) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 5511) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 5512) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 5513) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 5514) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColorP3ui (line 5515) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 5516) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glStencilFunc (line 5517) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 5518) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 5519) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 5520) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 5521) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 5522) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 5523) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoordP1ui (line 5524) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 5525) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 5526) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 5527) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 5528) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 5529) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 5530) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 5531) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexImage1D (line 5532) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 5533) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 5534) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 5535) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 5536) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 5537) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 5538) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 5539) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 5540) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 5541) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 5542) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 5543) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 5544) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 5545) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 5546) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 5547) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 5548) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 5549) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 5550) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 5551) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 5552) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 5553) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 5554) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 5555) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 5556) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 5557) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 5558) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 5559) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 5560) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 5561) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 5562) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 5563) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 5564) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 5565) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 5566) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 5567) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 5568) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 5569) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 5570) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 5571) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 5572) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 5573) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 5574) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 5575) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 5576) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 5577) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 5578) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 5579) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 5580) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 5581) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 5582) | def glValidateProgram(self, program: int) -> None: ... method glVertexAttribDivisor (line 5583) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribIPointer (line 5584) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 5585) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 5586) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 5587) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 5588) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 5589) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 5590) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 5591) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 5592) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 5593) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 5594) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 5595) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 5596) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 5597) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 5598) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 5599) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glViewport (line 5600) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 5601) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_0_Compatibility (line 5603) | class QOpenGLFunctions_4_0_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 5604) | def __init__(self) -> None: ... method glAccum (line 5605) | def glAccum(self, op: int, value: float) -> None: ... method glActiveTexture (line 5606) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 5607) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 5608) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 5609) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 5610) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 5611) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 5612) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 5613) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 5614) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 5615) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 5616) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 5617) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 5618) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 5619) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 5620) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 5621) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 5622) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 5623) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 5624) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 5625) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 5626) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 5627) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 5628) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 5629) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 5630) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 5631) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 5632) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 5633) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 5634) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 5635) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 5636) | def glCallList(self, list: int) -> None: ... method glCallLists (line 5637) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 5638) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 5639) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 5640) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 5641) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 5642) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 5643) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 5644) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 5645) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 5646) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 5647) | def glClearDepth(self, depth: float) -> None: ... method glClearIndex (line 5648) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 5649) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 5650) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 5651) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 5652) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 5653) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 5654) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 5655) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 5656) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 5657) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 5658) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 5659) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 5660) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 5661) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 5662) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 5663) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 5664) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 5665) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 5666) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 5667) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 5668) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 5669) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 5670) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 5671) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 5672) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 5673) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 5674) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 5675) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 5676) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 5677) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 5678) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 5679) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 5680) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 5681) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 5682) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 5683) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 5684) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 5685) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 5686) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 5687) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 5688) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 5689) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 5690) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 5691) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 5692) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 5693) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 5694) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 5695) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 5696) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 5697) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 5698) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 5699) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 5700) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 5701) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 5702) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 5703) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 5704) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 5705) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 5706) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 5707) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 5708) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 5709) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 5710) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 5711) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 5712) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 5713) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 5714) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 5715) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 5716) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 5717) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 5718) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 5719) | def glCreateProgram(self) -> int: ... method glCreateShader (line 5720) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 5721) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 5722) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 5723) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 5724) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 5725) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 5726) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 5727) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 5728) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 5729) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 5730) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 5731) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 5732) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 5733) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 5734) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 5735) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 5736) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 5737) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 5738) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 5739) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 5740) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 5741) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 5742) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 5743) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 5744) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 5745) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 5746) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 5747) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 5748) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 5749) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 5750) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 5751) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 5752) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 5753) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 5754) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackStream (line 5755) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEdgeFlag (line 5756) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 5757) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 5758) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 5759) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 5760) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 5761) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 5762) | def glEnd(self) -> None: ... method glEndConditionalRender (line 5763) | def glEndConditionalRender(self) -> None: ... method glEndList (line 5764) | def glEndList(self) -> None: ... method glEndQuery (line 5765) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 5766) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 5767) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 5768) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 5769) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 5770) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 5771) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 5772) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 5773) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 5774) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 5775) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 5776) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 5777) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 5778) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 5779) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 5780) | def glFinish(self) -> None: ... method glFlush (line 5781) | def glFlush(self) -> None: ... method glFogCoordPointer (line 5782) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 5783) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 5784) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 5785) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 5786) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 5787) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 5788) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 5789) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 5790) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferRenderbuffer (line 5791) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 5792) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 5793) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 5794) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 5795) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 5796) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 5797) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 5798) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 5799) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 5800) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 5801) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 5802) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 5803) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 5804) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 5805) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 5806) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 5807) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 5808) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 5809) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 5810) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 5811) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 5812) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 5813) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 5814) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 5815) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 5816) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 5817) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 5818) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 5819) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 5820) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 5821) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 5822) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 5823) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 5824) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 5825) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 5826) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 5827) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 5828) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 5829) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 5830) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 5831) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 5832) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 5833) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 5834) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 5835) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 5836) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 5837) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 5838) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 5839) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 5840) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 5841) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 5842) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 5843) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 5844) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 5845) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 5846) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 5847) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 5848) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 5849) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 5850) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 5851) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 5852) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 5853) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 5854) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 5855) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 5856) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 5857) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 5858) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 5859) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 5860) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 5861) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 5862) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 5863) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 5864) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 5865) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 5866) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 5867) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 5868) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 5869) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 5870) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 5871) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 5872) | def glMatrixMode(self, mode: int) -> None: ... method glMinSampleShading (line 5873) | def glMinSampleShading(self, value: float) -> None: ... method glMinmax (line 5874) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 5875) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 5876) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 5877) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 5878) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 5879) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 5880) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 5881) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 5882) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 5883) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 5884) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 5885) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 5886) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 5887) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 5888) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 5889) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 5890) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 5891) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 5892) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 5893) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 5894) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 5895) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 5896) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 5897) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 5898) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 5899) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 5900) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 5901) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 5902) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 5903) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 5904) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 5905) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 5906) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 5907) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 5908) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 5909) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 5910) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 5911) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 5912) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 5913) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 5914) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 5915) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 5916) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 5917) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 5918) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 5919) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 5920) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 5921) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 5922) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 5923) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 5924) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 5925) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 5926) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 5927) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 5928) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 5929) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 5930) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 5931) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 5932) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 5933) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 5934) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 5935) | def glPassThrough(self, token: float) -> None: ... method glPatchParameterfv (line 5936) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 5937) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 5938) | def glPauseTransformFeedback(self) -> None: ... method glPixelMapfv (line 5939) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 5940) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 5941) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 5942) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 5943) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 5944) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 5945) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 5946) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 5947) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 5948) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 5949) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 5950) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 5951) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 5952) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 5953) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 5954) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 5955) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 5956) | def glPopMatrix(self) -> None: ... method glPopName (line 5957) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 5958) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 5959) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProvokingVertex (line 5960) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 5961) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 5962) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 5963) | def glPushMatrix(self) -> None: ... method glPushName (line 5964) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 5965) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 5966) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 5967) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 5968) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 5969) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 5970) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 5971) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 5972) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 5973) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 5974) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 5975) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 5976) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 5977) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 5978) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 5979) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 5980) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 5981) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 5982) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 5983) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 5984) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 5985) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 5986) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 5987) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 5988) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 5989) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 5990) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 5991) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 5992) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 5993) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 5994) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 5995) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 5996) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 5997) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 5998) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRenderMode (line 5999) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 6000) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 6001) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 6002) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 6003) | def glResetMinmax(self, target: int) -> None: ... method glResumeTransformFeedback (line 6004) | def glResumeTransformFeedback(self) -> None: ... method glRotated (line 6005) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 6006) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 6007) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 6008) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 6009) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 6010) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 6011) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 6012) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 6013) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 6014) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 6015) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 6016) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 6017) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColor3b (line 6018) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 6019) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 6020) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 6021) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 6022) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 6023) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 6024) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 6025) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 6026) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 6027) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 6028) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 6029) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 6030) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 6031) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 6032) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 6033) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 6034) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 6035) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 6036) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 6037) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 6038) | def glShadeModel(self, mode: int) -> None: ... method glStencilFunc (line 6039) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 6040) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 6041) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 6042) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 6043) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 6044) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 6045) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 6046) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 6047) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 6048) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 6049) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 6050) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 6051) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 6052) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 6053) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 6054) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 6055) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 6056) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 6057) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 6058) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 6059) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 6060) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 6061) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 6062) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 6063) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 6064) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 6065) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 6066) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 6067) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 6068) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 6069) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 6070) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 6071) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 6072) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 6073) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 6074) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 6075) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 6076) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 6077) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 6078) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 6079) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 6080) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 6081) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 6082) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 6083) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 6084) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 6085) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 6086) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 6087) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 6088) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 6089) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 6090) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 6091) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 6092) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 6093) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 6094) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 6095) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 6096) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 6097) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 6098) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 6099) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 6100) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 6101) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 6102) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 6103) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 6104) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 6105) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 6106) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 6107) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 6108) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 6109) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 6110) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 6111) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 6112) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1d (line 6113) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 6114) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 6115) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 6116) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 6117) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 6118) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 6119) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 6120) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 6121) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 6122) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 6123) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 6124) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 6125) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 6126) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 6127) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 6128) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 6129) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 6130) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 6131) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 6132) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 6133) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 6134) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 6135) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 6136) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 6137) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 6138) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 6139) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 6140) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 6141) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 6142) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 6143) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 6144) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 6145) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 6146) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 6147) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 6148) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 6149) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 6150) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 6151) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 6152) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 6153) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 6154) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 6155) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 6156) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 6157) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 6158) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 6159) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 6160) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 6161) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 6162) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 6163) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 6164) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 6165) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 6166) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 6167) | def glValidateProgram(self, program: int) -> None: ... method glVertex2d (line 6168) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 6169) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 6170) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 6171) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 6172) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 6173) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 6174) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 6175) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 6176) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 6177) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 6178) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 6179) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 6180) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 6181) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 6182) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 6183) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 6184) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 6185) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 6186) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 6187) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 6188) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 6189) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 6190) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 6191) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 6192) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 6193) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 6194) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 6195) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 6196) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 6197) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 6198) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 6199) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 6200) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 6201) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 6202) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 6203) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 6204) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 6205) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 6206) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 6207) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 6208) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 6209) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 6210) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 6211) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 6212) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 6213) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 6214) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 6215) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 6216) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 6217) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 6218) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 6219) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 6220) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 6221) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 6222) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 6223) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 6224) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 6225) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 6226) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 6227) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribDivisor (line 6228) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribI1i (line 6229) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 6230) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 6231) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 6232) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 6233) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 6234) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 6235) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 6236) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 6237) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 6238) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 6239) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 6240) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 6241) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 6242) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 6243) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 6244) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 6245) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 6246) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 6247) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 6248) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIPointer (line 6249) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 6250) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 6251) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 6252) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 6253) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 6254) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 6255) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 6256) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 6257) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 6258) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 6259) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 6260) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 6261) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 6262) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 6263) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 6264) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 6265) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 6266) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glWindowPos2d (line 6267) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 6268) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 6269) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 6270) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 6271) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 6272) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 6273) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 6274) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 6275) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 6276) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 6277) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 6278) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 6279) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 6280) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 6281) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 6282) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 6283) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_0_Core (line 6285) | class QOpenGLFunctions_4_0_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 6286) | def __init__(self) -> None: ... method glActiveTexture (line 6287) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 6288) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 6289) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 6290) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 6291) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 6292) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 6293) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 6294) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 6295) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 6296) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 6297) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 6298) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindRenderbuffer (line 6299) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 6300) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 6301) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 6302) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 6303) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 6304) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 6305) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 6306) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 6307) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 6308) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 6309) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 6310) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 6311) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 6312) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 6313) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 6314) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 6315) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 6316) | def glClear(self, mask: int) -> None: ... method glClearBufferfi (line 6317) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 6318) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 6319) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 6320) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 6321) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 6322) | def glClearDepth(self, depth: float) -> None: ... method glClearStencil (line 6323) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 6324) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 6325) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorP3ui (line 6326) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 6327) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 6328) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 6329) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glCompileShader (line 6330) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 6331) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 6332) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 6333) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 6334) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 6335) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 6336) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 6337) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 6338) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 6339) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 6340) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 6341) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 6342) | def glCreateProgram(self) -> int: ... method glCreateShader (line 6343) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 6344) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 6345) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 6346) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 6347) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteQueries (line 6348) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 6349) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 6350) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 6351) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 6352) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 6353) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 6354) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 6355) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 6356) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 6357) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDetachShader (line 6358) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 6359) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 6360) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 6361) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 6362) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 6363) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 6364) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 6365) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 6366) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 6367) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 6368) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 6369) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 6370) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 6371) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 6372) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 6373) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 6374) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackStream (line 6375) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEnable (line 6376) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 6377) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 6378) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 6379) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 6380) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 6381) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 6382) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 6383) | def glFinish(self) -> None: ... method glFlush (line 6384) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 6385) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 6386) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 6387) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 6388) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 6389) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 6390) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 6391) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 6392) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 6393) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 6394) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 6395) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 6396) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 6397) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 6398) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 6399) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 6400) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 6401) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 6402) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 6403) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 6404) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 6405) | def glIndexubv(self, c: bytes) -> None: ... method glIsBuffer (line 6406) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 6407) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 6408) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 6409) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 6410) | def glIsProgram(self, program: int) -> int: ... method glIsQuery (line 6411) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 6412) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 6413) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 6414) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 6415) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 6416) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 6417) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 6418) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 6419) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 6420) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 6421) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMinSampleShading (line 6422) | def glMinSampleShading(self, value: float) -> None: ... method glMultiDrawArrays (line 6423) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoordP1ui (line 6424) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 6425) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 6426) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 6427) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 6428) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 6429) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 6430) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 6431) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNormalP3ui (line 6432) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 6433) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glPatchParameterfv (line 6434) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 6435) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 6436) | def glPauseTransformFeedback(self) -> None: ... method glPixelStoref (line 6437) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 6438) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 6439) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 6440) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 6441) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 6442) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 6443) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 6444) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 6445) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 6446) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProvokingVertex (line 6447) | def glProvokingVertex(self, mode: int) -> None: ... method glQueryCounter (line 6448) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 6449) | def glReadBuffer(self, mode: int) -> None: ... method glRenderbufferStorage (line 6450) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 6451) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 6452) | def glResumeTransformFeedback(self) -> None: ... method glSampleCoverage (line 6453) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 6454) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 6455) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 6456) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 6457) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 6458) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 6459) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 6460) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 6461) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glSecondaryColorP3ui (line 6462) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 6463) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glStencilFunc (line 6464) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 6465) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 6466) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 6467) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 6468) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 6469) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 6470) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoordP1ui (line 6471) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 6472) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 6473) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 6474) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 6475) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 6476) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 6477) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 6478) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexImage1D (line 6479) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 6480) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 6481) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 6482) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 6483) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 6484) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 6485) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 6486) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 6487) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 6488) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 6489) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 6490) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 6491) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 6492) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1d (line 6493) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 6494) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 6495) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 6496) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 6497) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 6498) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 6499) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 6500) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 6501) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 6502) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 6503) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 6504) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 6505) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 6506) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 6507) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 6508) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 6509) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 6510) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 6511) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 6512) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 6513) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 6514) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 6515) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 6516) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 6517) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 6518) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 6519) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 6520) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 6521) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 6522) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 6523) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 6524) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 6525) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 6526) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 6527) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 6528) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 6529) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 6530) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 6531) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 6532) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 6533) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 6534) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 6535) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 6536) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 6537) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 6538) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 6539) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 6540) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 6541) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 6542) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 6543) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 6544) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 6545) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 6546) | def glUseProgram(self, program: int) -> None: ... method glValidateProgram (line 6547) | def glValidateProgram(self, program: int) -> None: ... method glVertexAttribDivisor (line 6548) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribIPointer (line 6549) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 6550) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 6551) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 6552) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 6553) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 6554) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 6555) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 6556) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 6557) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 6558) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 6559) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 6560) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 6561) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 6562) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 6563) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 6564) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glViewport (line 6565) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method initializeOpenGLFunctions (line 6566) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_1_Compatibility (line 6568) | class QOpenGLFunctions_4_1_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 6569) | def __init__(self) -> None: ... method glAccum (line 6570) | def glAccum(self, op: int, value: float) -> None: ... method glActiveShaderProgram (line 6571) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 6572) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 6573) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 6574) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 6575) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 6576) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 6577) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 6578) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 6579) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 6580) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 6581) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 6582) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 6583) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 6584) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 6585) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 6586) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindProgramPipeline (line 6587) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 6588) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 6589) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 6590) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 6591) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 6592) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 6593) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 6594) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 6595) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 6596) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 6597) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 6598) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 6599) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 6600) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 6601) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 6602) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 6603) | def glCallList(self, list: int) -> None: ... method glCallLists (line 6604) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 6605) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 6606) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 6607) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 6608) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 6609) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 6610) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 6611) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 6612) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 6613) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 6614) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 6615) | def glClearDepthf(self, dd: float) -> None: ... method glClearIndex (line 6616) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 6617) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 6618) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 6619) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 6620) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 6621) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 6622) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 6623) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 6624) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 6625) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 6626) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 6627) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 6628) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 6629) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 6630) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 6631) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 6632) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 6633) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 6634) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 6635) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 6636) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 6637) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 6638) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 6639) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 6640) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 6641) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 6642) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 6643) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 6644) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 6645) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 6646) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 6647) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 6648) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 6649) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 6650) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 6651) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 6652) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 6653) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 6654) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 6655) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 6656) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 6657) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 6658) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 6659) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 6660) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 6661) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 6662) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 6663) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 6664) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 6665) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 6666) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 6667) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 6668) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 6669) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 6670) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 6671) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 6672) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 6673) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 6674) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 6675) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 6676) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 6677) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 6678) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 6679) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 6680) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 6681) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 6682) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 6683) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 6684) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 6685) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 6686) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 6687) | def glCreateProgram(self) -> int: ... method glCreateShader (line 6688) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 6689) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 6690) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 6691) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 6692) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 6693) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 6694) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 6695) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 6696) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 6697) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 6698) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 6699) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 6700) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 6701) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 6702) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 6703) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 6704) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 6705) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 6706) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 6707) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 6708) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 6709) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 6710) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 6711) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 6712) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 6713) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 6714) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 6715) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 6716) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 6717) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 6718) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 6719) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 6720) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 6721) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 6722) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 6723) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 6724) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 6725) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 6726) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackStream (line 6727) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEdgeFlag (line 6728) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 6729) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 6730) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 6731) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 6732) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 6733) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 6734) | def glEnd(self) -> None: ... method glEndConditionalRender (line 6735) | def glEndConditionalRender(self) -> None: ... method glEndList (line 6736) | def glEndList(self) -> None: ... method glEndQuery (line 6737) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 6738) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 6739) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 6740) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 6741) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 6742) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 6743) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 6744) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 6745) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 6746) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 6747) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 6748) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 6749) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 6750) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 6751) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 6752) | def glFinish(self) -> None: ... method glFlush (line 6753) | def glFlush(self) -> None: ... method glFogCoordPointer (line 6754) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 6755) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 6756) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 6757) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 6758) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 6759) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 6760) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 6761) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 6762) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferRenderbuffer (line 6763) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 6764) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 6765) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 6766) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 6767) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 6768) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 6769) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 6770) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 6771) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 6772) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 6773) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 6774) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 6775) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 6776) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 6777) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 6778) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 6779) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 6780) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 6781) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 6782) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 6783) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 6784) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 6785) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 6786) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 6787) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 6788) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 6789) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 6790) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 6791) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 6792) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 6793) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 6794) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 6795) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 6796) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 6797) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 6798) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 6799) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 6800) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 6801) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 6802) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 6803) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 6804) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 6805) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 6806) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 6807) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 6808) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 6809) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 6810) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 6811) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 6812) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 6813) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 6814) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 6815) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 6816) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 6817) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 6818) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 6819) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 6820) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 6821) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 6822) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 6823) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 6824) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 6825) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 6826) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 6827) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 6828) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 6829) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 6830) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 6831) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 6832) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 6833) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 6834) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 6835) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 6836) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 6837) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 6838) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 6839) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 6840) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 6841) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 6842) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 6843) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 6844) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 6845) | def glMatrixMode(self, mode: int) -> None: ... method glMinSampleShading (line 6846) | def glMinSampleShading(self, value: float) -> None: ... method glMinmax (line 6847) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 6848) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 6849) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 6850) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 6851) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 6852) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 6853) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 6854) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 6855) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 6856) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 6857) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 6858) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 6859) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 6860) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 6861) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 6862) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 6863) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 6864) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 6865) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 6866) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 6867) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 6868) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 6869) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 6870) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 6871) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 6872) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 6873) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 6874) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 6875) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 6876) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 6877) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 6878) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 6879) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 6880) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 6881) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 6882) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 6883) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 6884) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 6885) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 6886) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 6887) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 6888) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 6889) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 6890) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 6891) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 6892) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 6893) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 6894) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 6895) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 6896) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 6897) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 6898) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 6899) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 6900) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 6901) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 6902) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 6903) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 6904) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 6905) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 6906) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 6907) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 6908) | def glPassThrough(self, token: float) -> None: ... method glPatchParameterfv (line 6909) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 6910) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 6911) | def glPauseTransformFeedback(self) -> None: ... method glPixelMapfv (line 6912) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 6913) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 6914) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 6915) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 6916) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 6917) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 6918) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 6919) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 6920) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 6921) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 6922) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 6923) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 6924) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 6925) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 6926) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 6927) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 6928) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 6929) | def glPopMatrix(self) -> None: ... method glPopName (line 6930) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 6931) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 6932) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 6933) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 6934) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 6935) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 6936) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 6937) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 6938) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 6939) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 6940) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 6941) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 6942) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 6943) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 6944) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 6945) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 6946) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 6947) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 6948) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 6949) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 6950) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 6951) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 6952) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 6953) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 6954) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 6955) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 6956) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 6957) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 6958) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 6959) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 6960) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 6961) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 6962) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 6963) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 6964) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 6965) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 6966) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 6967) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 6968) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 6969) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 6970) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 6971) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 6972) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 6973) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 6974) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 6975) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 6976) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 6977) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 6978) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 6979) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 6980) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 6981) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 6982) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 6983) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 6984) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 6985) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 6986) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 6987) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 6988) | def glPushMatrix(self) -> None: ... method glPushName (line 6989) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 6990) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 6991) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 6992) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 6993) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 6994) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 6995) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 6996) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 6997) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 6998) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 6999) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 7000) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 7001) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 7002) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 7003) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 7004) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 7005) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 7006) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 7007) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 7008) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 7009) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 7010) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 7011) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 7012) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 7013) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 7014) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 7015) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 7016) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 7017) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 7018) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 7019) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 7020) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 7021) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 7022) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 7023) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glReleaseShaderCompiler (line 7024) | def glReleaseShaderCompiler(self) -> None: ... method glRenderMode (line 7025) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 7026) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 7027) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 7028) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 7029) | def glResetMinmax(self, target: int) -> None: ... method glResumeTransformFeedback (line 7030) | def glResumeTransformFeedback(self) -> None: ... method glRotated (line 7031) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 7032) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 7033) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 7034) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 7035) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 7036) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 7037) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 7038) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 7039) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 7040) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 7041) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 7042) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 7043) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 7044) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 7045) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 7046) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColor3b (line 7047) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 7048) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 7049) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 7050) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 7051) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 7052) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 7053) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 7054) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 7055) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 7056) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 7057) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 7058) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 7059) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 7060) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 7061) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 7062) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 7063) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 7064) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 7065) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 7066) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 7067) | def glShadeModel(self, mode: int) -> None: ... method glShaderBinary (line 7068) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 7069) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 7070) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 7071) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 7072) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 7073) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 7074) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 7075) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 7076) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 7077) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 7078) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 7079) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 7080) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 7081) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 7082) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 7083) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 7084) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 7085) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 7086) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 7087) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 7088) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 7089) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 7090) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 7091) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 7092) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 7093) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 7094) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 7095) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 7096) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 7097) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 7098) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 7099) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 7100) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 7101) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 7102) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 7103) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 7104) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 7105) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 7106) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 7107) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 7108) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 7109) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 7110) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 7111) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 7112) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 7113) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 7114) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 7115) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 7116) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 7117) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 7118) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 7119) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 7120) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 7121) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 7122) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 7123) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 7124) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 7125) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 7126) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 7127) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 7128) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 7129) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 7130) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 7131) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 7132) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 7133) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 7134) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 7135) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 7136) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 7137) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 7138) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 7139) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 7140) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 7141) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 7142) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1d (line 7143) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 7144) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 7145) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 7146) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 7147) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 7148) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 7149) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 7150) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 7151) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 7152) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 7153) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 7154) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 7155) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 7156) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 7157) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 7158) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 7159) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 7160) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 7161) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 7162) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 7163) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 7164) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 7165) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 7166) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 7167) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 7168) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 7169) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 7170) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 7171) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 7172) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 7173) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 7174) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 7175) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 7176) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 7177) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 7178) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 7179) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 7180) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 7181) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 7182) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 7183) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 7184) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 7185) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 7186) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 7187) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 7188) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 7189) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 7190) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 7191) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 7192) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 7193) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 7194) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 7195) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 7196) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 7197) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 7198) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 7199) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertex2d (line 7200) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 7201) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 7202) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 7203) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 7204) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 7205) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 7206) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 7207) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 7208) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 7209) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 7210) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 7211) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 7212) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 7213) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 7214) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 7215) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 7216) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 7217) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 7218) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 7219) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 7220) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 7221) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 7222) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 7223) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 7224) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 7225) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 7226) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 7227) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 7228) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 7229) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 7230) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 7231) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 7232) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 7233) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 7234) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 7235) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 7236) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 7237) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 7238) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 7239) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 7240) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 7241) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 7242) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 7243) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 7244) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 7245) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 7246) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 7247) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 7248) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 7249) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 7250) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 7251) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 7252) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 7253) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 7254) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 7255) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 7256) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 7257) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 7258) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 7259) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribDivisor (line 7260) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribI1i (line 7261) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 7262) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 7263) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 7264) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 7265) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 7266) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 7267) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 7268) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 7269) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 7270) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 7271) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 7272) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 7273) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 7274) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 7275) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 7276) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 7277) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 7278) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 7279) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 7280) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIPointer (line 7281) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 7282) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 7283) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 7284) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 7285) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 7286) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 7287) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 7288) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 7289) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLPointer (line 7290) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 7291) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 7292) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 7293) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 7294) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 7295) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 7296) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 7297) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 7298) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 7299) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 7300) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 7301) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 7302) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 7303) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 7304) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 7305) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 7306) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 7307) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 7308) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 7309) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 7310) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method glWindowPos2d (line 7311) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 7312) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 7313) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 7314) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 7315) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 7316) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 7317) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 7318) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 7319) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 7320) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 7321) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 7322) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 7323) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 7324) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 7325) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 7326) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 7327) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_1_Core (line 7329) | class QOpenGLFunctions_4_1_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 7330) | def __init__(self) -> None: ... method glActiveShaderProgram (line 7331) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 7332) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 7333) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 7334) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 7335) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 7336) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 7337) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 7338) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 7339) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 7340) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 7341) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 7342) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 7343) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindProgramPipeline (line 7344) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 7345) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 7346) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 7347) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 7348) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 7349) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 7350) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 7351) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 7352) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 7353) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 7354) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 7355) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 7356) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 7357) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 7358) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 7359) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 7360) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 7361) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 7362) | def glClear(self, mask: int) -> None: ... method glClearBufferfi (line 7363) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 7364) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 7365) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 7366) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 7367) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 7368) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 7369) | def glClearDepthf(self, dd: float) -> None: ... method glClearStencil (line 7370) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 7371) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 7372) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorP3ui (line 7373) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 7374) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 7375) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 7376) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glCompileShader (line 7377) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 7378) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 7379) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 7380) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 7381) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 7382) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 7383) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 7384) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 7385) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 7386) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 7387) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 7388) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 7389) | def glCreateProgram(self) -> int: ... method glCreateShader (line 7390) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 7391) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 7392) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 7393) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 7394) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 7395) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 7396) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 7397) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 7398) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 7399) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 7400) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 7401) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 7402) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 7403) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 7404) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 7405) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 7406) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 7407) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 7408) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 7409) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 7410) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 7411) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 7412) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 7413) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 7414) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 7415) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 7416) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 7417) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 7418) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 7419) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 7420) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 7421) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 7422) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 7423) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 7424) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 7425) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackStream (line 7426) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEnable (line 7427) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 7428) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 7429) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 7430) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 7431) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 7432) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 7433) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 7434) | def glFinish(self) -> None: ... method glFlush (line 7435) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 7436) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 7437) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 7438) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 7439) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 7440) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 7441) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 7442) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 7443) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 7444) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 7445) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 7446) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 7447) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 7448) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 7449) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 7450) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 7451) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 7452) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 7453) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 7454) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 7455) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 7456) | def glIndexubv(self, c: bytes) -> None: ... method glIsBuffer (line 7457) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 7458) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 7459) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 7460) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 7461) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 7462) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 7463) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 7464) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 7465) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 7466) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 7467) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 7468) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 7469) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 7470) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 7471) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 7472) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 7473) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMinSampleShading (line 7474) | def glMinSampleShading(self, value: float) -> None: ... method glMultiDrawArrays (line 7475) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoordP1ui (line 7476) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 7477) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 7478) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 7479) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 7480) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 7481) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 7482) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 7483) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNormalP3ui (line 7484) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 7485) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glPatchParameterfv (line 7486) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 7487) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 7488) | def glPauseTransformFeedback(self) -> None: ... method glPixelStoref (line 7489) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 7490) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 7491) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 7492) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 7493) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 7494) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 7495) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 7496) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 7497) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 7498) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProgramBinary (line 7499) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 7500) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 7501) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 7502) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 7503) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 7504) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 7505) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 7506) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 7507) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 7508) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 7509) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 7510) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 7511) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 7512) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 7513) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 7514) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 7515) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 7516) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 7517) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 7518) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 7519) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 7520) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 7521) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 7522) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 7523) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 7524) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 7525) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 7526) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 7527) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 7528) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 7529) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 7530) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 7531) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 7532) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 7533) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 7534) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 7535) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 7536) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 7537) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 7538) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 7539) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 7540) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 7541) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 7542) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 7543) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 7544) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 7545) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 7546) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 7547) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 7548) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 7549) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 7550) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 7551) | def glProvokingVertex(self, mode: int) -> None: ... method glQueryCounter (line 7552) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 7553) | def glReadBuffer(self, mode: int) -> None: ... method glReleaseShaderCompiler (line 7554) | def glReleaseShaderCompiler(self) -> None: ... method glRenderbufferStorage (line 7555) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 7556) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 7557) | def glResumeTransformFeedback(self) -> None: ... method glSampleCoverage (line 7558) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 7559) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 7560) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 7561) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 7562) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 7563) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 7564) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 7565) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 7566) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 7567) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 7568) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 7569) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColorP3ui (line 7570) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 7571) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glShaderBinary (line 7572) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 7573) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 7574) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 7575) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 7576) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 7577) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 7578) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 7579) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoordP1ui (line 7580) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 7581) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 7582) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 7583) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 7584) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 7585) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 7586) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 7587) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexImage1D (line 7588) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 7589) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 7590) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 7591) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 7592) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 7593) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 7594) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 7595) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 7596) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 7597) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 7598) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 7599) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 7600) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 7601) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1d (line 7602) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 7603) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 7604) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 7605) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 7606) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 7607) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 7608) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 7609) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 7610) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 7611) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 7612) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 7613) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 7614) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 7615) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 7616) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 7617) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 7618) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 7619) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 7620) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 7621) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 7622) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 7623) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 7624) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 7625) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 7626) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 7627) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 7628) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 7629) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 7630) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 7631) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 7632) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 7633) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 7634) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 7635) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 7636) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 7637) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 7638) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 7639) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 7640) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 7641) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 7642) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 7643) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 7644) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 7645) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 7646) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 7647) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 7648) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 7649) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 7650) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 7651) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 7652) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 7653) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 7654) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 7655) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 7656) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 7657) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 7658) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertexAttribDivisor (line 7659) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribIPointer (line 7660) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 7661) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 7662) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 7663) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 7664) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 7665) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 7666) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 7667) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 7668) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLPointer (line 7669) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 7670) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 7671) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 7672) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 7673) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 7674) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 7675) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 7676) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 7677) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 7678) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 7679) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 7680) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 7681) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 7682) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 7683) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 7684) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glViewport (line 7685) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 7686) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 7687) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 7688) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method initializeOpenGLFunctions (line 7689) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_2_Compatibility (line 7691) | class QOpenGLFunctions_4_2_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 7692) | def __init__(self) -> None: ... method glAccum (line 7693) | def glAccum(self, op: int, value: float) -> None: ... method glActiveShaderProgram (line 7694) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 7695) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 7696) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 7697) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 7698) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 7699) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 7700) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 7701) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 7702) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 7703) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 7704) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 7705) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 7706) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 7707) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 7708) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 7709) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 7710) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 7711) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 7712) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 7713) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 7714) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 7715) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 7716) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 7717) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 7718) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 7719) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 7720) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 7721) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 7722) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 7723) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 7724) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 7725) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 7726) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 7727) | def glCallList(self, list: int) -> None: ... method glCallLists (line 7728) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 7729) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 7730) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 7731) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 7732) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 7733) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 7734) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 7735) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 7736) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 7737) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 7738) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 7739) | def glClearDepthf(self, dd: float) -> None: ... method glClearIndex (line 7740) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 7741) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 7742) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 7743) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 7744) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 7745) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 7746) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 7747) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 7748) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 7749) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 7750) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 7751) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 7752) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 7753) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 7754) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 7755) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 7756) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 7757) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 7758) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 7759) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 7760) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 7761) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 7762) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 7763) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 7764) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 7765) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 7766) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 7767) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 7768) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 7769) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 7770) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 7771) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 7772) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 7773) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 7774) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 7775) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 7776) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 7777) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 7778) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 7779) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 7780) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 7781) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 7782) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 7783) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 7784) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 7785) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 7786) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 7787) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 7788) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 7789) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 7790) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 7791) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 7792) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 7793) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 7794) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 7795) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 7796) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 7797) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 7798) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 7799) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 7800) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 7801) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 7802) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 7803) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 7804) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 7805) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 7806) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 7807) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 7808) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 7809) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 7810) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 7811) | def glCreateProgram(self) -> int: ... method glCreateShader (line 7812) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 7813) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 7814) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 7815) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 7816) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 7817) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 7818) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 7819) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 7820) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 7821) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 7822) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 7823) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 7824) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 7825) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 7826) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 7827) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 7828) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 7829) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 7830) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 7831) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 7832) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 7833) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 7834) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 7835) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 7836) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 7837) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 7838) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 7839) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 7840) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 7841) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 7842) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 7843) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 7844) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 7845) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 7846) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 7847) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 7848) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 7849) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 7850) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 7851) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 7852) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 7853) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 7854) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 7855) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 7856) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 7857) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 7858) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 7859) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 7860) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 7861) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 7862) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 7863) | def glEnd(self) -> None: ... method glEndConditionalRender (line 7864) | def glEndConditionalRender(self) -> None: ... method glEndList (line 7865) | def glEndList(self) -> None: ... method glEndQuery (line 7866) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 7867) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 7868) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 7869) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 7870) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 7871) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 7872) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 7873) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 7874) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 7875) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 7876) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 7877) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 7878) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 7879) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 7880) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 7881) | def glFinish(self) -> None: ... method glFlush (line 7882) | def glFlush(self) -> None: ... method glFogCoordPointer (line 7883) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 7884) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 7885) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 7886) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 7887) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 7888) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 7889) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 7890) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 7891) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferRenderbuffer (line 7892) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 7893) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 7894) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 7895) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 7896) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 7897) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 7898) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 7899) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 7900) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 7901) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 7902) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 7903) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 7904) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 7905) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 7906) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 7907) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 7908) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 7909) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 7910) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 7911) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 7912) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 7913) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 7914) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 7915) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 7916) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 7917) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 7918) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 7919) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 7920) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 7921) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 7922) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 7923) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 7924) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 7925) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 7926) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 7927) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glIsBuffer (line 7928) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 7929) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 7930) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 7931) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 7932) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 7933) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 7934) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 7935) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 7936) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 7937) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 7938) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 7939) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 7940) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 7941) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 7942) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 7943) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 7944) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 7945) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 7946) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 7947) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 7948) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 7949) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 7950) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 7951) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 7952) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 7953) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 7954) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 7955) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 7956) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 7957) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 7958) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 7959) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 7960) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 7961) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 7962) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 7963) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 7964) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 7965) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 7966) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 7967) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 7968) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 7969) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 7970) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 7971) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 7972) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 7973) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 7974) | def glMatrixMode(self, mode: int) -> None: ... method glMemoryBarrier (line 7975) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMinSampleShading (line 7976) | def glMinSampleShading(self, value: float) -> None: ... method glMinmax (line 7977) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 7978) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 7979) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 7980) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 7981) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 7982) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 7983) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 7984) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 7985) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 7986) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 7987) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 7988) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 7989) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 7990) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 7991) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 7992) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 7993) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 7994) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 7995) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 7996) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 7997) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 7998) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 7999) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 8000) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 8001) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 8002) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 8003) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 8004) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 8005) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 8006) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 8007) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 8008) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 8009) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 8010) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 8011) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 8012) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 8013) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 8014) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 8015) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 8016) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 8017) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 8018) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 8019) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 8020) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 8021) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 8022) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 8023) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 8024) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 8025) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 8026) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 8027) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 8028) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 8029) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 8030) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 8031) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 8032) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 8033) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 8034) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 8035) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 8036) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 8037) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 8038) | def glPassThrough(self, token: float) -> None: ... method glPatchParameterfv (line 8039) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 8040) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 8041) | def glPauseTransformFeedback(self) -> None: ... method glPixelMapfv (line 8042) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 8043) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 8044) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 8045) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 8046) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 8047) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 8048) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 8049) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 8050) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 8051) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 8052) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 8053) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 8054) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 8055) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 8056) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 8057) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 8058) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 8059) | def glPopMatrix(self) -> None: ... method glPopName (line 8060) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 8061) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 8062) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 8063) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 8064) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 8065) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 8066) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 8067) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 8068) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 8069) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 8070) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 8071) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 8072) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 8073) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 8074) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 8075) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 8076) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 8077) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 8078) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 8079) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 8080) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 8081) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 8082) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 8083) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 8084) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 8085) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 8086) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 8087) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 8088) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 8089) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 8090) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 8091) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 8092) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 8093) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 8094) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 8095) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 8096) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 8097) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 8098) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 8099) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 8100) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 8101) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 8102) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 8103) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 8104) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 8105) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 8106) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 8107) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 8108) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 8109) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 8110) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 8111) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 8112) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 8113) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 8114) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 8115) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 8116) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 8117) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 8118) | def glPushMatrix(self) -> None: ... method glPushName (line 8119) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 8120) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 8121) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 8122) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 8123) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 8124) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 8125) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 8126) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 8127) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 8128) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 8129) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 8130) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 8131) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 8132) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 8133) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 8134) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 8135) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 8136) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 8137) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 8138) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 8139) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 8140) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 8141) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 8142) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 8143) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 8144) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 8145) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 8146) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 8147) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 8148) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 8149) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 8150) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 8151) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 8152) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 8153) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glReleaseShaderCompiler (line 8154) | def glReleaseShaderCompiler(self) -> None: ... method glRenderMode (line 8155) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 8156) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 8157) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 8158) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 8159) | def glResetMinmax(self, target: int) -> None: ... method glResumeTransformFeedback (line 8160) | def glResumeTransformFeedback(self) -> None: ... method glRotated (line 8161) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 8162) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 8163) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 8164) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 8165) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 8166) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 8167) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 8168) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 8169) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 8170) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 8171) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 8172) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 8173) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 8174) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 8175) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 8176) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColor3b (line 8177) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 8178) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 8179) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 8180) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 8181) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 8182) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 8183) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 8184) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 8185) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 8186) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 8187) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 8188) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 8189) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 8190) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 8191) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 8192) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 8193) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 8194) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 8195) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 8196) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 8197) | def glShadeModel(self, mode: int) -> None: ... method glShaderBinary (line 8198) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 8199) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 8200) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 8201) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 8202) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 8203) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 8204) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 8205) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 8206) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 8207) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 8208) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 8209) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 8210) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 8211) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 8212) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 8213) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 8214) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 8215) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 8216) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 8217) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 8218) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 8219) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 8220) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 8221) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 8222) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 8223) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 8224) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 8225) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 8226) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 8227) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 8228) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 8229) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 8230) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 8231) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 8232) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 8233) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 8234) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 8235) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 8236) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 8237) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 8238) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 8239) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 8240) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 8241) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 8242) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 8243) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 8244) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 8245) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 8246) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 8247) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 8248) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 8249) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 8250) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 8251) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 8252) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 8253) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 8254) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 8255) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 8256) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 8257) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 8258) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 8259) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 8260) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 8261) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 8262) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 8263) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 8264) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 8265) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 8266) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 8267) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 8268) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 8269) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage3D (line 8270) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexSubImage1D (line 8271) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 8272) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 8273) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 8274) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 8275) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1d (line 8276) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 8277) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 8278) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 8279) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 8280) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 8281) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 8282) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 8283) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 8284) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 8285) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 8286) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 8287) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 8288) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 8289) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 8290) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 8291) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 8292) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 8293) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 8294) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 8295) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 8296) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 8297) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 8298) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 8299) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 8300) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 8301) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 8302) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 8303) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 8304) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 8305) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 8306) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 8307) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 8308) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 8309) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 8310) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 8311) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 8312) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 8313) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 8314) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 8315) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 8316) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 8317) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 8318) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 8319) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 8320) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 8321) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 8322) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 8323) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 8324) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 8325) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 8326) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 8327) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 8328) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 8329) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 8330) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 8331) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 8332) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertex2d (line 8333) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 8334) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 8335) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 8336) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 8337) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 8338) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 8339) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 8340) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 8341) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 8342) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 8343) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 8344) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 8345) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 8346) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 8347) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 8348) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 8349) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 8350) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 8351) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 8352) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 8353) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 8354) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 8355) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 8356) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 8357) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 8358) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 8359) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 8360) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 8361) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 8362) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 8363) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 8364) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 8365) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 8366) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 8367) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 8368) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 8369) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 8370) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 8371) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 8372) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 8373) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 8374) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 8375) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 8376) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 8377) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 8378) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 8379) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 8380) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 8381) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 8382) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 8383) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 8384) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 8385) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 8386) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 8387) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 8388) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 8389) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 8390) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 8391) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 8392) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribDivisor (line 8393) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribI1i (line 8394) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 8395) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 8396) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 8397) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 8398) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 8399) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 8400) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 8401) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 8402) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 8403) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 8404) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 8405) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 8406) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 8407) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 8408) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 8409) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 8410) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 8411) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 8412) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 8413) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIPointer (line 8414) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 8415) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 8416) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 8417) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 8418) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 8419) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 8420) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 8421) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 8422) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLPointer (line 8423) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 8424) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 8425) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 8426) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 8427) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 8428) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 8429) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 8430) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 8431) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 8432) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 8433) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 8434) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 8435) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 8436) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 8437) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 8438) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 8439) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 8440) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 8441) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 8442) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 8443) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method glWindowPos2d (line 8444) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 8445) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 8446) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 8447) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 8448) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 8449) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 8450) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 8451) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 8452) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 8453) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 8454) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 8455) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 8456) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 8457) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 8458) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 8459) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 8460) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_2_Core (line 8462) | class QOpenGLFunctions_4_2_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 8463) | def __init__(self) -> None: ... method glActiveShaderProgram (line 8464) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 8465) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 8466) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 8467) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 8468) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 8469) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 8470) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 8471) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 8472) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 8473) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 8474) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 8475) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 8476) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 8477) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 8478) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 8479) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 8480) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 8481) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 8482) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 8483) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 8484) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 8485) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 8486) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 8487) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 8488) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 8489) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 8490) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 8491) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 8492) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 8493) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 8494) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 8495) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 8496) | def glClear(self, mask: int) -> None: ... method glClearBufferfi (line 8497) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 8498) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 8499) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 8500) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 8501) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 8502) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 8503) | def glClearDepthf(self, dd: float) -> None: ... method glClearStencil (line 8504) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 8505) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 8506) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorP3ui (line 8507) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 8508) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 8509) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 8510) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glCompileShader (line 8511) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 8512) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 8513) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 8514) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 8515) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 8516) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 8517) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 8518) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 8519) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 8520) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 8521) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 8522) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 8523) | def glCreateProgram(self) -> int: ... method glCreateShader (line 8524) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 8525) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 8526) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 8527) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 8528) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 8529) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 8530) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 8531) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 8532) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 8533) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 8534) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 8535) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 8536) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 8537) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 8538) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 8539) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 8540) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 8541) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 8542) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 8543) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 8544) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 8545) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 8546) | def glDisablei(self, target: int, index: int) -> None: ... method glDrawArrays (line 8547) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 8548) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 8549) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 8550) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 8551) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 8552) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 8553) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 8554) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 8555) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 8556) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 8557) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 8558) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 8559) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 8560) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 8561) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 8562) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 8563) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 8564) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 8565) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 8566) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 8567) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 8568) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 8569) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 8570) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 8571) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 8572) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 8573) | def glFinish(self) -> None: ... method glFlush (line 8574) | def glFlush(self) -> None: ... method glFramebufferRenderbuffer (line 8575) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 8576) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 8577) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 8578) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 8579) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 8580) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 8581) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 8582) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 8583) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 8584) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 8585) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 8586) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetString (line 8587) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 8588) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 8589) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 8590) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 8591) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 8592) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 8593) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 8594) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 8595) | def glIndexubv(self, c: bytes) -> None: ... method glIsBuffer (line 8596) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 8597) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 8598) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 8599) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 8600) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 8601) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 8602) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 8603) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 8604) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 8605) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 8606) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 8607) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 8608) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 8609) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 8610) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 8611) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 8612) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMemoryBarrier (line 8613) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMinSampleShading (line 8614) | def glMinSampleShading(self, value: float) -> None: ... method glMultiDrawArrays (line 8615) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoordP1ui (line 8616) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 8617) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 8618) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 8619) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 8620) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 8621) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 8622) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 8623) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNormalP3ui (line 8624) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 8625) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glPatchParameterfv (line 8626) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 8627) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 8628) | def glPauseTransformFeedback(self) -> None: ... method glPixelStoref (line 8629) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 8630) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 8631) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 8632) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 8633) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 8634) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 8635) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 8636) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 8637) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 8638) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProgramBinary (line 8639) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 8640) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 8641) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 8642) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 8643) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 8644) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 8645) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 8646) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 8647) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 8648) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 8649) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 8650) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 8651) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 8652) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 8653) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 8654) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 8655) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 8656) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 8657) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 8658) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 8659) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 8660) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 8661) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 8662) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 8663) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 8664) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 8665) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 8666) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 8667) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 8668) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 8669) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 8670) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 8671) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 8672) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 8673) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 8674) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 8675) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 8676) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 8677) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 8678) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 8679) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 8680) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 8681) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 8682) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 8683) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 8684) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 8685) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 8686) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 8687) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 8688) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 8689) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 8690) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 8691) | def glProvokingVertex(self, mode: int) -> None: ... method glQueryCounter (line 8692) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 8693) | def glReadBuffer(self, mode: int) -> None: ... method glReleaseShaderCompiler (line 8694) | def glReleaseShaderCompiler(self) -> None: ... method glRenderbufferStorage (line 8695) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 8696) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 8697) | def glResumeTransformFeedback(self) -> None: ... method glSampleCoverage (line 8698) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 8699) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 8700) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 8701) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 8702) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 8703) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 8704) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 8705) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 8706) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 8707) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 8708) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 8709) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColorP3ui (line 8710) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 8711) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glShaderBinary (line 8712) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 8713) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 8714) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 8715) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 8716) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 8717) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 8718) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 8719) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoordP1ui (line 8720) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 8721) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 8722) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 8723) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 8724) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 8725) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 8726) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 8727) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexImage1D (line 8728) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 8729) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 8730) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 8731) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 8732) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 8733) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 8734) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 8735) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 8736) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 8737) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 8738) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 8739) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 8740) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage3D (line 8741) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexSubImage1D (line 8742) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 8743) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 8744) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1d (line 8745) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 8746) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 8747) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 8748) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 8749) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 8750) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 8751) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 8752) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 8753) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 8754) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 8755) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 8756) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 8757) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 8758) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 8759) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 8760) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 8761) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 8762) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 8763) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 8764) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 8765) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 8766) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 8767) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 8768) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 8769) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 8770) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 8771) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 8772) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 8773) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 8774) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 8775) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 8776) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 8777) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 8778) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 8779) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 8780) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 8781) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 8782) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 8783) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 8784) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 8785) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 8786) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 8787) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 8788) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 8789) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 8790) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 8791) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 8792) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 8793) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 8794) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 8795) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 8796) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 8797) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 8798) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 8799) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 8800) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 8801) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertexAttribDivisor (line 8802) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribIPointer (line 8803) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 8804) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 8805) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 8806) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 8807) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 8808) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 8809) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 8810) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 8811) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLPointer (line 8812) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 8813) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 8814) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 8815) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 8816) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 8817) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 8818) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 8819) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 8820) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 8821) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 8822) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 8823) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 8824) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 8825) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 8826) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 8827) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glViewport (line 8828) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 8829) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 8830) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 8831) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method initializeOpenGLFunctions (line 8832) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_3_Compatibility (line 8834) | class QOpenGLFunctions_4_3_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 8835) | def __init__(self) -> None: ... method glAccum (line 8836) | def glAccum(self, op: int, value: float) -> None: ... method glActiveShaderProgram (line 8837) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 8838) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 8839) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 8840) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 8841) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 8842) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 8843) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 8844) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 8845) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 8846) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 8847) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 8848) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 8849) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 8850) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 8851) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 8852) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 8853) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 8854) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 8855) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 8856) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 8857) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 8858) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 8859) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 8860) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 8861) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 8862) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 8863) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 8864) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 8865) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 8866) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 8867) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 8868) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 8869) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 8870) | def glCallList(self, list: int) -> None: ... method glCallLists (line 8871) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 8872) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 8873) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 8874) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 8875) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferData (line 8876) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 8877) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 8878) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 8879) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 8880) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 8881) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 8882) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 8883) | def glClearDepthf(self, dd: float) -> None: ... method glClearIndex (line 8884) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 8885) | def glClearStencil(self, s: int) -> None: ... method glClientActiveTexture (line 8886) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 8887) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 8888) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 8889) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 8890) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 8891) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 8892) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 8893) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 8894) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 8895) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 8896) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 8897) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 8898) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 8899) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 8900) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 8901) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 8902) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 8903) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 8904) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 8905) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 8906) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 8907) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 8908) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 8909) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 8910) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 8911) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 8912) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 8913) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 8914) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 8915) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 8916) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 8917) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 8918) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 8919) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 8920) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 8921) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 8922) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 8923) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 8924) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 8925) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 8926) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 8927) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 8928) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 8929) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 8930) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 8931) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 8932) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 8933) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 8934) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 8935) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 8936) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 8937) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 8938) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 8939) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 8940) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 8941) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 8942) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 8943) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 8944) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 8945) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 8946) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 8947) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 8948) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyImageSubData (line 8949) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyPixels (line 8950) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 8951) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 8952) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 8953) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 8954) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 8955) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 8956) | def glCreateProgram(self) -> int: ... method glCreateShader (line 8957) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 8958) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 8959) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 8960) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 8961) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 8962) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 8963) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 8964) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 8965) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 8966) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 8967) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 8968) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 8969) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 8970) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 8971) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 8972) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 8973) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 8974) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 8975) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 8976) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 8977) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 8978) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 8979) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 8980) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 8981) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 8982) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 8983) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 8984) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 8985) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 8986) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 8987) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 8988) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 8989) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 8990) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 8991) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 8992) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 8993) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 8994) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 8995) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 8996) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 8997) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 8998) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 8999) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 9000) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 9001) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 9002) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 9003) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 9004) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 9005) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 9006) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 9007) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 9008) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 9009) | def glEnd(self) -> None: ... method glEndConditionalRender (line 9010) | def glEndConditionalRender(self) -> None: ... method glEndList (line 9011) | def glEndList(self) -> None: ... method glEndQuery (line 9012) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 9013) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 9014) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 9015) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 9016) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 9017) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 9018) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 9019) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 9020) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 9021) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 9022) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 9023) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 9024) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 9025) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 9026) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 9027) | def glFinish(self) -> None: ... method glFlush (line 9028) | def glFlush(self) -> None: ... method glFogCoordPointer (line 9029) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 9030) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 9031) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 9032) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 9033) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 9034) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 9035) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 9036) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 9037) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferParameteri (line 9038) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferRenderbuffer (line 9039) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 9040) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 9041) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 9042) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 9043) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 9044) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 9045) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 9046) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 9047) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 9048) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 9049) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 9050) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 9051) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 9052) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetProgramResourceIndex (line 9053) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 9054) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 9055) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 9056) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 9057) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 9058) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 9059) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 9060) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 9061) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 9062) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 9063) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 9064) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 9065) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 9066) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 9067) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 9068) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 9069) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 9070) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 9071) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 9072) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 9073) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 9074) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 9075) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 9076) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 9077) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glInvalidateBufferData (line 9078) | def glInvalidateBufferData(self, buffer: int) -> None: ... method glInvalidateFramebuffer (line 9079) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 9080) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 9081) | def glInvalidateTexImage(self, texture: int, level: int) -> None: ... method glInvalidateTexSubImage (line 9082) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 9083) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 9084) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 9085) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 9086) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 9087) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 9088) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 9089) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 9090) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 9091) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 9092) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 9093) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 9094) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 9095) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 9096) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 9097) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 9098) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 9099) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 9100) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 9101) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 9102) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 9103) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 9104) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 9105) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 9106) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 9107) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 9108) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 9109) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 9110) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 9111) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 9112) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 9113) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 9114) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 9115) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 9116) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 9117) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 9118) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 9119) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 9120) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 9121) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 9122) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 9123) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 9124) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 9125) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 9126) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 9127) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 9128) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 9129) | def glMatrixMode(self, mode: int) -> None: ... method glMemoryBarrier (line 9130) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMinSampleShading (line 9131) | def glMinSampleShading(self, value: float) -> None: ... method glMinmax (line 9132) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 9133) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 9134) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 9135) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 9136) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 9137) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 9138) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoord1d (line 9139) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 9140) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 9141) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 9142) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 9143) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 9144) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 9145) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 9146) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 9147) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 9148) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 9149) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 9150) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 9151) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 9152) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 9153) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 9154) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 9155) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 9156) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 9157) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 9158) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 9159) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 9160) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 9161) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 9162) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 9163) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 9164) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 9165) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 9166) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 9167) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 9168) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 9169) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 9170) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 9171) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 9172) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 9173) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 9174) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 9175) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 9176) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 9177) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 9178) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 9179) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 9180) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 9181) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 9182) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 9183) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 9184) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 9185) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 9186) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 9187) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 9188) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 9189) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 9190) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 9191) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 9192) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glOrtho (line 9193) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 9194) | def glPassThrough(self, token: float) -> None: ... method glPatchParameterfv (line 9195) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 9196) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 9197) | def glPauseTransformFeedback(self) -> None: ... method glPixelMapfv (line 9198) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 9199) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 9200) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 9201) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 9202) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 9203) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 9204) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 9205) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 9206) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 9207) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 9208) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 9209) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 9210) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 9211) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 9212) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 9213) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 9214) | def glPopClientAttrib(self) -> None: ... method glPopMatrix (line 9215) | def glPopMatrix(self) -> None: ... method glPopName (line 9216) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 9217) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 9218) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 9219) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 9220) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 9221) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 9222) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 9223) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 9224) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 9225) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 9226) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 9227) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 9228) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 9229) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 9230) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 9231) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 9232) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 9233) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 9234) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 9235) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 9236) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 9237) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 9238) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 9239) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 9240) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 9241) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 9242) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 9243) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 9244) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 9245) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 9246) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 9247) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 9248) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 9249) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 9250) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 9251) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 9252) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 9253) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 9254) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 9255) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 9256) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 9257) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 9258) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 9259) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 9260) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 9261) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 9262) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 9263) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 9264) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 9265) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 9266) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 9267) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 9268) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 9269) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 9270) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 9271) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 9272) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 9273) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushMatrix (line 9274) | def glPushMatrix(self) -> None: ... method glPushName (line 9275) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 9276) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 9277) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 9278) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 9279) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 9280) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 9281) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 9282) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 9283) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 9284) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 9285) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 9286) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 9287) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 9288) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 9289) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 9290) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 9291) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 9292) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 9293) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 9294) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 9295) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 9296) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 9297) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 9298) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 9299) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 9300) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 9301) | def glReadBuffer(self, mode: int) -> None: ... method glRectd (line 9302) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 9303) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 9304) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 9305) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 9306) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 9307) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 9308) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 9309) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glReleaseShaderCompiler (line 9310) | def glReleaseShaderCompiler(self) -> None: ... method glRenderMode (line 9311) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 9312) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 9313) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 9314) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 9315) | def glResetMinmax(self, target: int) -> None: ... method glResumeTransformFeedback (line 9316) | def glResumeTransformFeedback(self) -> None: ... method glRotated (line 9317) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 9318) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 9319) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 9320) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 9321) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 9322) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 9323) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 9324) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 9325) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 9326) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 9327) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 9328) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 9329) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 9330) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 9331) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 9332) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColor3b (line 9333) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 9334) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 9335) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 9336) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 9337) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 9338) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 9339) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 9340) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 9341) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 9342) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 9343) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 9344) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 9345) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 9346) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 9347) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 9348) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 9349) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 9350) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 9351) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 9352) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 9353) | def glShadeModel(self, mode: int) -> None: ... method glShaderBinary (line 9354) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 9355) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 9356) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 9357) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 9358) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 9359) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 9360) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 9361) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 9362) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 9363) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 9364) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 9365) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 9366) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 9367) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 9368) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 9369) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 9370) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 9371) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 9372) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 9373) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 9374) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 9375) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 9376) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 9377) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 9378) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 9379) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 9380) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 9381) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 9382) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 9383) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 9384) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 9385) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 9386) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 9387) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 9388) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 9389) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 9390) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 9391) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 9392) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 9393) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 9394) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 9395) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 9396) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 9397) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 9398) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 9399) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 9400) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 9401) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 9402) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 9403) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 9404) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 9405) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 9406) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 9407) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 9408) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 9409) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 9410) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 9411) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 9412) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 9413) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 9414) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 9415) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 9416) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 9417) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 9418) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 9419) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 9420) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 9421) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 9422) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 9423) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 9424) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 9425) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 9426) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 9427) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 9428) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 9429) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 9430) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 9431) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 9432) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 9433) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTranslated (line 9434) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 9435) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1d (line 9436) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 9437) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 9438) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 9439) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 9440) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 9441) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 9442) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 9443) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 9444) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 9445) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 9446) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 9447) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 9448) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 9449) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 9450) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 9451) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 9452) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 9453) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 9454) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 9455) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 9456) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 9457) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 9458) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 9459) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 9460) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 9461) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 9462) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 9463) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 9464) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 9465) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 9466) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 9467) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 9468) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 9469) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 9470) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 9471) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 9472) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 9473) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 9474) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 9475) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 9476) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 9477) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 9478) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 9479) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 9480) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 9481) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 9482) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 9483) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 9484) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 9485) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 9486) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 9487) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 9488) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 9489) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 9490) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 9491) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 9492) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertex2d (line 9493) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 9494) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 9495) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 9496) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 9497) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 9498) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 9499) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 9500) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 9501) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 9502) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 9503) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 9504) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 9505) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 9506) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 9507) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 9508) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 9509) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 9510) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 9511) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 9512) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 9513) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 9514) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 9515) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 9516) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 9517) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 9518) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 9519) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 9520) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 9521) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 9522) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 9523) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 9524) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 9525) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 9526) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 9527) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 9528) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 9529) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 9530) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 9531) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 9532) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 9533) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 9534) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 9535) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 9536) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 9537) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 9538) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 9539) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 9540) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 9541) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 9542) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 9543) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 9544) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 9545) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 9546) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 9547) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 9548) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 9549) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 9550) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 9551) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 9552) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribBinding (line 9553) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 9554) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 9555) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 9556) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 9557) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 9558) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 9559) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 9560) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 9561) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 9562) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 9563) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 9564) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 9565) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 9566) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 9567) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 9568) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 9569) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 9570) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 9571) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 9572) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 9573) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 9574) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 9575) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIFormat (line 9576) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 9577) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 9578) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 9579) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 9580) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 9581) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 9582) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 9583) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 9584) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 9585) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLFormat (line 9586) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 9587) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 9588) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 9589) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 9590) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 9591) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 9592) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 9593) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 9594) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 9595) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 9596) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 9597) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... method glVertexP2ui (line 9598) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 9599) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 9600) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 9601) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 9602) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 9603) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 9604) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 9605) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 9606) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 9607) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 9608) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method glWindowPos2d (line 9609) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 9610) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 9611) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 9612) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 9613) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 9614) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 9615) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 9616) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 9617) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 9618) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 9619) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 9620) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 9621) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 9622) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 9623) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 9624) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 9625) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_3_Core (line 9627) | class QOpenGLFunctions_4_3_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 9628) | def __init__(self) -> None: ... method glActiveShaderProgram (line 9629) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 9630) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 9631) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 9632) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 9633) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 9634) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 9635) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 9636) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 9637) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 9638) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindFragDataLocation (line 9639) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 9640) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 9641) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 9642) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 9643) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 9644) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 9645) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindTexture (line 9646) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTransformFeedback (line 9647) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 9648) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 9649) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 9650) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 9651) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 9652) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 9653) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 9654) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 9655) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 9656) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 9657) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 9658) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 9659) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 9660) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 9661) | def glClear(self, mask: int) -> None: ... method glClearBufferData (line 9662) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 9663) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 9664) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 9665) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 9666) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 9667) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 9668) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 9669) | def glClearDepthf(self, dd: float) -> None: ... method glClearStencil (line 9670) | def glClearStencil(self, s: int) -> None: ... method glColorMask (line 9671) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 9672) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorP3ui (line 9673) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 9674) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 9675) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 9676) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glCompileShader (line 9677) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 9678) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 9679) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 9680) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 9681) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 9682) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 9683) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyImageSubData (line 9684) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexImage1D (line 9685) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 9686) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 9687) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 9688) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 9689) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 9690) | def glCreateProgram(self) -> int: ... method glCreateShader (line 9691) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 9692) | def glCullFace(self, mode: int) -> None: ... method glDeleteBuffers (line 9693) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 9694) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 9695) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 9696) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 9697) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 9698) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 9699) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 9700) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 9701) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 9702) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 9703) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 9704) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 9705) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 9706) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 9707) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 9708) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 9709) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 9710) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 9711) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 9712) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 9713) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 9714) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 9715) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 9716) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 9717) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 9718) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 9719) | def glDrawBuffer(self, mode: int) -> None: ... method glDrawBuffers (line 9720) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 9721) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 9722) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 9723) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 9724) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 9725) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 9726) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 9727) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 9728) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 9729) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 9730) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 9731) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 9732) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 9733) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 9734) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 9735) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 9736) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 9737) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 9738) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 9739) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 9740) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 9741) | def glFinish(self) -> None: ... method glFlush (line 9742) | def glFlush(self) -> None: ... method glFramebufferParameteri (line 9743) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferRenderbuffer (line 9744) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 9745) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 9746) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 9747) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 9748) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 9749) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 9750) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 9751) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 9752) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetError (line 9753) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 9754) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 9755) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetProgramResourceIndex (line 9756) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 9757) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 9758) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 9759) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 9760) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 9761) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 9762) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetUniformBlockIndex (line 9763) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 9764) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 9765) | def glHint(self, target: int, mode: int) -> None: ... method glIndexub (line 9766) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 9767) | def glIndexubv(self, c: bytes) -> None: ... method glInvalidateBufferData (line 9768) | def glInvalidateBufferData(self, buffer: int) -> None: ... method glInvalidateFramebuffer (line 9769) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 9770) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 9771) | def glInvalidateTexImage(self, texture: int, level: int) -> None: ... method glInvalidateTexSubImage (line 9772) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 9773) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 9774) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 9775) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 9776) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 9777) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 9778) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 9779) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 9780) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 9781) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 9782) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 9783) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 9784) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 9785) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 9786) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 9787) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 9788) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 9789) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMemoryBarrier (line 9790) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMinSampleShading (line 9791) | def glMinSampleShading(self, value: float) -> None: ... method glMultiDrawArrays (line 9792) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 9793) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoordP1ui (line 9794) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 9795) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 9796) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 9797) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 9798) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 9799) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 9800) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 9801) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNormalP3ui (line 9802) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 9803) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glPatchParameterfv (line 9804) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 9805) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 9806) | def glPauseTransformFeedback(self) -> None: ... method glPixelStoref (line 9807) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 9808) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 9809) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 9810) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 9811) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 9812) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 9813) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 9814) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 9815) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPrimitiveRestartIndex (line 9816) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProgramBinary (line 9817) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 9818) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 9819) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 9820) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 9821) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 9822) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 9823) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 9824) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 9825) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 9826) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 9827) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 9828) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 9829) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 9830) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 9831) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 9832) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 9833) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 9834) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 9835) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 9836) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 9837) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 9838) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 9839) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 9840) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 9841) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 9842) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 9843) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 9844) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 9845) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 9846) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 9847) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 9848) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 9849) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 9850) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 9851) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 9852) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 9853) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 9854) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 9855) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 9856) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 9857) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 9858) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 9859) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 9860) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 9861) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 9862) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 9863) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 9864) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 9865) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 9866) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 9867) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 9868) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 9869) | def glProvokingVertex(self, mode: int) -> None: ... method glQueryCounter (line 9870) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 9871) | def glReadBuffer(self, mode: int) -> None: ... method glReleaseShaderCompiler (line 9872) | def glReleaseShaderCompiler(self) -> None: ... method glRenderbufferStorage (line 9873) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 9874) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 9875) | def glResumeTransformFeedback(self) -> None: ... method glSampleCoverage (line 9876) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 9877) | def glSampleMaski(self, index: int, mask: int) -> None: ... method glSamplerParameterIiv (line 9878) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 9879) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 9880) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 9881) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 9882) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 9883) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 9884) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 9885) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 9886) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 9887) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColorP3ui (line 9888) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 9889) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glShaderBinary (line 9890) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 9891) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 9892) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 9893) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 9894) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 9895) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 9896) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 9897) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 9898) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoordP1ui (line 9899) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 9900) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 9901) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 9902) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 9903) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 9904) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 9905) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 9906) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexImage1D (line 9907) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 9908) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 9909) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 9910) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 9911) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 9912) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 9913) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 9914) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 9915) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 9916) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 9917) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 9918) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 9919) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 9920) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 9921) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 9922) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 9923) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 9924) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 9925) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 9926) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glUniform1d (line 9927) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 9928) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 9929) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 9930) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 9931) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 9932) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 9933) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 9934) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 9935) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 9936) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 9937) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 9938) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 9939) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 9940) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 9941) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 9942) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 9943) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 9944) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 9945) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 9946) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 9947) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 9948) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 9949) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 9950) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 9951) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 9952) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 9953) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 9954) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 9955) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 9956) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 9957) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 9958) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 9959) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 9960) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 9961) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 9962) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 9963) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 9964) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 9965) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 9966) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 9967) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 9968) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 9969) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 9970) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 9971) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 9972) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 9973) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 9974) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 9975) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 9976) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 9977) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 9978) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 9979) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 9980) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 9981) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 9982) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 9983) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertexAttribBinding (line 9984) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 9985) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 9986) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribIFormat (line 9987) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 9988) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 9989) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 9990) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 9991) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 9992) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 9993) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 9994) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 9995) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 9996) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLFormat (line 9997) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 9998) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 9999) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 10000) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 10001) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 10002) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 10003) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 10004) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 10005) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 10006) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 10007) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 10008) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... method glVertexP2ui (line 10009) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 10010) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 10011) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 10012) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 10013) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 10014) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glViewport (line 10015) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 10016) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 10017) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 10018) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method initializeOpenGLFunctions (line 10019) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_4_Compatibility (line 10021) | class QOpenGLFunctions_4_4_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 10022) | def __init__(self) -> None: ... method glAccum (line 10023) | def glAccum(self, op: int, value: float) -> None: ... method glActiveShaderProgram (line 10024) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 10025) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 10026) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 10027) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 10028) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 10029) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 10030) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 10031) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 10032) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 10033) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 10034) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 10035) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 10036) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindBuffersBase (line 10037) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 10038) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 10039) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 10040) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 10041) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 10042) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 10043) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 10044) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 10045) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindSamplers (line 10046) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 10047) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTextures (line 10048) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 10049) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 10050) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 10051) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 10052) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 10053) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 10054) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 10055) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 10056) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 10057) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 10058) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 10059) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 10060) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 10061) | def glCallList(self, list: int) -> None: ... method glCallLists (line 10062) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 10063) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 10064) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 10065) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 10066) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferData (line 10067) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 10068) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 10069) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 10070) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 10071) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 10072) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 10073) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 10074) | def glClearDepthf(self, dd: float) -> None: ... method glClearIndex (line 10075) | def glClearIndex(self, c: float) -> None: ... method glClearStencil (line 10076) | def glClearStencil(self, s: int) -> None: ... method glClearTexImage (line 10077) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 10078) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glClientActiveTexture (line 10079) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipPlane (line 10080) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 10081) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 10082) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 10083) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 10084) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 10085) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 10086) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 10087) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 10088) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 10089) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 10090) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 10091) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 10092) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 10093) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 10094) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 10095) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 10096) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 10097) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 10098) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 10099) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 10100) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 10101) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 10102) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 10103) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 10104) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 10105) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 10106) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 10107) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 10108) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 10109) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 10110) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 10111) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 10112) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 10113) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 10114) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 10115) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 10116) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 10117) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 10118) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 10119) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 10120) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 10121) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 10122) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 10123) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 10124) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 10125) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 10126) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 10127) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 10128) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 10129) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 10130) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 10131) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 10132) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 10133) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 10134) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 10135) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 10136) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 10137) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 10138) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 10139) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 10140) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 10141) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyImageSubData (line 10142) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyPixels (line 10143) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 10144) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 10145) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 10146) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 10147) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 10148) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 10149) | def glCreateProgram(self) -> int: ... method glCreateShader (line 10150) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 10151) | def glCullFace(self, mode: int) -> None: ... method glDebugMessageControl (line 10152) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 10153) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 10154) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 10155) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 10156) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 10157) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 10158) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 10159) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 10160) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 10161) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 10162) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 10163) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 10164) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 10165) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 10166) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 10167) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 10168) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 10169) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 10170) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 10171) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 10172) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 10173) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 10174) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexAttribArray (line 10175) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 10176) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 10177) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 10178) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 10179) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 10180) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 10181) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 10182) | def glDrawBuffer(self, buf: int) -> None: ... method glDrawBuffers (line 10183) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 10184) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 10185) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 10186) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 10187) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 10188) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 10189) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 10190) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 10191) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 10192) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 10193) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 10194) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 10195) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 10196) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 10197) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 10198) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 10199) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 10200) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 10201) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexAttribArray (line 10202) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 10203) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 10204) | def glEnd(self) -> None: ... method glEndConditionalRender (line 10205) | def glEndConditionalRender(self) -> None: ... method glEndList (line 10206) | def glEndList(self) -> None: ... method glEndQuery (line 10207) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 10208) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 10209) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 10210) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 10211) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 10212) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 10213) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 10214) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 10215) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 10216) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 10217) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 10218) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 10219) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 10220) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 10221) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 10222) | def glFinish(self) -> None: ... method glFlush (line 10223) | def glFlush(self) -> None: ... method glFogCoordPointer (line 10224) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 10225) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 10226) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 10227) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 10228) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 10229) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 10230) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 10231) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 10232) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferParameteri (line 10233) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferRenderbuffer (line 10234) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 10235) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 10236) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 10237) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 10238) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 10239) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 10240) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 10241) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 10242) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 10243) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 10244) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetColorTable (line 10245) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 10246) | def glGetCompressedTexImage(self, target: int, level: int, img: int) -... method glGetConvolutionFilter (line 10247) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetError (line 10248) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 10249) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 10250) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetHistogram (line 10251) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetMinmax (line 10252) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetProgramResourceIndex (line 10253) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 10254) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 10255) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetSeparableFilter (line 10256) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 10257) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 10258) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 10259) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 10260) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 10261) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 10262) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 10263) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 10264) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 10265) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 10266) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 10267) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 10268) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 10269) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 10270) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 10271) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 10272) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 10273) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 10274) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 10275) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 10276) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 10277) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 10278) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 10279) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glInvalidateBufferData (line 10280) | def glInvalidateBufferData(self, buffer: int) -> None: ... method glInvalidateFramebuffer (line 10281) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 10282) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 10283) | def glInvalidateTexImage(self, texture: int, level: int) -> None: ... method glInvalidateTexSubImage (line 10284) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 10285) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 10286) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 10287) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 10288) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 10289) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 10290) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 10291) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 10292) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 10293) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 10294) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 10295) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 10296) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 10297) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 10298) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 10299) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 10300) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 10301) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 10302) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 10303) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 10304) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 10305) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 10306) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 10307) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 10308) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 10309) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 10310) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 10311) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 10312) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 10313) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 10314) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 10315) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 10316) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 10317) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 10318) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 10319) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 10320) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 10321) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 10322) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 10323) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 10324) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 10325) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 10326) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 10327) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 10328) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 10329) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 10330) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 10331) | def glMatrixMode(self, mode: int) -> None: ... method glMemoryBarrier (line 10332) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMinSampleShading (line 10333) | def glMinSampleShading(self, value: float) -> None: ... method glMinmax (line 10334) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 10335) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 10336) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 10337) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 10338) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 10339) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 10340) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoord1d (line 10341) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 10342) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 10343) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 10344) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 10345) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 10346) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 10347) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 10348) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 10349) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 10350) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 10351) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 10352) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 10353) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 10354) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 10355) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 10356) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 10357) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 10358) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 10359) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 10360) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 10361) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 10362) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 10363) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 10364) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 10365) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 10366) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 10367) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 10368) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 10369) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 10370) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 10371) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 10372) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 10373) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 10374) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 10375) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 10376) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 10377) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 10378) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 10379) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 10380) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 10381) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 10382) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 10383) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 10384) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 10385) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 10386) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 10387) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 10388) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 10389) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 10390) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 10391) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 10392) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 10393) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 10394) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glObjectLabel (line 10395) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 10396) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes) -> Non... method glOrtho (line 10397) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 10398) | def glPassThrough(self, token: float) -> None: ... method glPatchParameterfv (line 10399) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 10400) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 10401) | def glPauseTransformFeedback(self) -> None: ... method glPixelMapfv (line 10402) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 10403) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 10404) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 10405) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 10406) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 10407) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 10408) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 10409) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 10410) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 10411) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 10412) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 10413) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 10414) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 10415) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 10416) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 10417) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 10418) | def glPopClientAttrib(self) -> None: ... method glPopDebugGroup (line 10419) | def glPopDebugGroup(self) -> None: ... method glPopMatrix (line 10420) | def glPopMatrix(self) -> None: ... method glPopName (line 10421) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 10422) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 10423) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 10424) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 10425) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 10426) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 10427) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 10428) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 10429) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 10430) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 10431) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 10432) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 10433) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 10434) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 10435) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 10436) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 10437) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 10438) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 10439) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 10440) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 10441) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 10442) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 10443) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 10444) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 10445) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 10446) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 10447) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 10448) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 10449) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 10450) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 10451) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 10452) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 10453) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 10454) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 10455) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 10456) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 10457) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 10458) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 10459) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 10460) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 10461) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 10462) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 10463) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 10464) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 10465) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 10466) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 10467) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 10468) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 10469) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 10470) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 10471) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 10472) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 10473) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 10474) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 10475) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 10476) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 10477) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 10478) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushDebugGroup (line 10479) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glPushMatrix (line 10480) | def glPushMatrix(self) -> None: ... method glPushName (line 10481) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 10482) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 10483) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 10484) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 10485) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 10486) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 10487) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 10488) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 10489) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 10490) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 10491) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 10492) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 10493) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 10494) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 10495) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 10496) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 10497) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 10498) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 10499) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 10500) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 10501) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 10502) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 10503) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 10504) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 10505) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 10506) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 10507) | def glReadBuffer(self, src: int) -> None: ... method glReadPixels (line 10508) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 10509) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 10510) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 10511) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 10512) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 10513) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 10514) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 10515) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 10516) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glReleaseShaderCompiler (line 10517) | def glReleaseShaderCompiler(self) -> None: ... method glRenderMode (line 10518) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 10519) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 10520) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 10521) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 10522) | def glResetMinmax(self, target: int) -> None: ... method glResumeTransformFeedback (line 10523) | def glResumeTransformFeedback(self) -> None: ... method glRotated (line 10524) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 10525) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 10526) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 10527) | def glSampleMaski(self, maskNumber: int, mask: int) -> None: ... method glSamplerParameterIiv (line 10528) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 10529) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 10530) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 10531) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 10532) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 10533) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 10534) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 10535) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 10536) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 10537) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 10538) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 10539) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColor3b (line 10540) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 10541) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 10542) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 10543) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 10544) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 10545) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 10546) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 10547) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 10548) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 10549) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 10550) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 10551) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 10552) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 10553) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 10554) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 10555) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 10556) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 10557) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 10558) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 10559) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 10560) | def glShadeModel(self, mode: int) -> None: ... method glShaderBinary (line 10561) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 10562) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 10563) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 10564) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 10565) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 10566) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 10567) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 10568) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 10569) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 10570) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 10571) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 10572) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 10573) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 10574) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 10575) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 10576) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 10577) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 10578) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 10579) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 10580) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 10581) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 10582) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 10583) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 10584) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 10585) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 10586) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 10587) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 10588) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 10589) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 10590) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 10591) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 10592) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 10593) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 10594) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 10595) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 10596) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 10597) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 10598) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 10599) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 10600) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 10601) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 10602) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 10603) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 10604) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 10605) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 10606) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 10607) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 10608) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 10609) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 10610) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 10611) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 10612) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 10613) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 10614) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 10615) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 10616) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 10617) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 10618) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 10619) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 10620) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 10621) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 10622) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 10623) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 10624) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 10625) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 10626) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 10627) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 10628) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 10629) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 10630) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 10631) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 10632) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 10633) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 10634) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 10635) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 10636) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 10637) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 10638) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 10639) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 10640) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTranslated (line 10641) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 10642) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1d (line 10643) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 10644) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 10645) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 10646) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 10647) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 10648) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 10649) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 10650) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 10651) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 10652) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 10653) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 10654) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 10655) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 10656) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 10657) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 10658) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 10659) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 10660) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 10661) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 10662) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 10663) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 10664) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 10665) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 10666) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 10667) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 10668) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 10669) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 10670) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 10671) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 10672) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 10673) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 10674) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 10675) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 10676) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 10677) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 10678) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 10679) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 10680) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 10681) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 10682) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 10683) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 10684) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 10685) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 10686) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 10687) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 10688) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 10689) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 10690) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 10691) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 10692) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 10693) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 10694) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 10695) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 10696) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 10697) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 10698) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 10699) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertex2d (line 10700) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 10701) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 10702) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 10703) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 10704) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 10705) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 10706) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 10707) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 10708) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 10709) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 10710) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 10711) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 10712) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 10713) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 10714) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 10715) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 10716) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 10717) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 10718) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 10719) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 10720) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 10721) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 10722) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 10723) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexAttrib1d (line 10724) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 10725) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 10726) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 10727) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 10728) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 10729) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 10730) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 10731) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 10732) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 10733) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 10734) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 10735) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 10736) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 10737) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 10738) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 10739) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 10740) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 10741) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 10742) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 10743) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 10744) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 10745) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 10746) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 10747) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 10748) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 10749) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 10750) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 10751) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 10752) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 10753) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 10754) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 10755) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 10756) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 10757) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 10758) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 10759) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribBinding (line 10760) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 10761) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 10762) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 10763) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 10764) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 10765) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 10766) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 10767) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 10768) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 10769) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 10770) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 10771) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 10772) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 10773) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 10774) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 10775) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 10776) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 10777) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 10778) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 10779) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 10780) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 10781) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 10782) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIFormat (line 10783) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 10784) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 10785) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 10786) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 10787) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 10788) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 10789) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 10790) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 10791) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 10792) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLFormat (line 10793) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 10794) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 10795) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 10796) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 10797) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 10798) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 10799) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 10800) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 10801) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 10802) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 10803) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 10804) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... method glVertexP2ui (line 10805) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 10806) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 10807) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 10808) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 10809) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 10810) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 10811) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 10812) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 10813) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 10814) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 10815) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method glWindowPos2d (line 10816) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 10817) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 10818) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 10819) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 10820) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 10821) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 10822) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 10823) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 10824) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 10825) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 10826) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 10827) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 10828) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 10829) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 10830) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 10831) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 10832) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_4_Core (line 10834) | class QOpenGLFunctions_4_4_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 10835) | def __init__(self) -> None: ... method glActiveShaderProgram (line 10836) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 10837) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 10838) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 10839) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 10840) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 10841) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 10842) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 10843) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 10844) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 10845) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindBuffersBase (line 10846) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 10847) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 10848) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 10849) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 10850) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 10851) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 10852) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 10853) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 10854) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindSamplers (line 10855) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 10856) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTextures (line 10857) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 10858) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 10859) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 10860) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 10861) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 10862) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 10863) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 10864) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 10865) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 10866) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 10867) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 10868) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 10869) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 10870) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glClampColor (line 10871) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 10872) | def glClear(self, mask: int) -> None: ... method glClearBufferData (line 10873) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 10874) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 10875) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 10876) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 10877) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 10878) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 10879) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 10880) | def glClearDepthf(self, dd: float) -> None: ... method glClearStencil (line 10881) | def glClearStencil(self, s: int) -> None: ... method glClearTexImage (line 10882) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 10883) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glColorMask (line 10884) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 10885) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glCompileShader (line 10886) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 10887) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 10888) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 10889) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 10890) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 10891) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 10892) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyImageSubData (line 10893) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexImage1D (line 10894) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 10895) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 10896) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 10897) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 10898) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 10899) | def glCreateProgram(self) -> int: ... method glCreateShader (line 10900) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 10901) | def glCullFace(self, mode: int) -> None: ... method glDebugMessageControl (line 10902) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 10903) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 10904) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 10905) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 10906) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 10907) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 10908) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 10909) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 10910) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 10911) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 10912) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 10913) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 10914) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 10915) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 10916) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 10917) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 10918) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 10919) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 10920) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 10921) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 10922) | def glDisable(self, cap: int) -> None: ... method glDisableVertexAttribArray (line 10923) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 10924) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 10925) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 10926) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 10927) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 10928) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 10929) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 10930) | def glDrawBuffer(self, buf: int) -> None: ... method glDrawBuffers (line 10931) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 10932) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 10933) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 10934) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 10935) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 10936) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 10937) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 10938) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 10939) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 10940) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 10941) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 10942) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 10943) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 10944) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 10945) | def glEnable(self, cap: int) -> None: ... method glEnableVertexAttribArray (line 10946) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 10947) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 10948) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 10949) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 10950) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 10951) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 10952) | def glFinish(self) -> None: ... method glFlush (line 10953) | def glFlush(self) -> None: ... method glFramebufferParameteri (line 10954) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferRenderbuffer (line 10955) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 10956) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 10957) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 10958) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 10959) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 10960) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 10961) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 10962) | def glGenerateMipmap(self, target: int) -> None: ... method glGetAttribLocation (line 10963) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetCompressedTexImage (line 10964) | def glGetCompressedTexImage(self, target: int, level: int, img: int) -... method glGetError (line 10965) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 10966) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 10967) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetProgramResourceIndex (line 10968) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 10969) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 10970) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 10971) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 10972) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 10973) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 10974) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 10975) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 10976) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 10977) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glHint (line 10978) | def glHint(self, target: int, mode: int) -> None: ... method glInvalidateBufferData (line 10979) | def glInvalidateBufferData(self, buffer: int) -> None: ... method glInvalidateFramebuffer (line 10980) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 10981) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 10982) | def glInvalidateTexImage(self, texture: int, level: int) -> None: ... method glInvalidateTexSubImage (line 10983) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 10984) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 10985) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 10986) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 10987) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 10988) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 10989) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 10990) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 10991) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 10992) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 10993) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 10994) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 10995) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 10996) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 10997) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 10998) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 10999) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 11000) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMemoryBarrier (line 11001) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMinSampleShading (line 11002) | def glMinSampleShading(self, value: float) -> None: ... method glMultiDrawArrays (line 11003) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 11004) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glObjectLabel (line 11005) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 11006) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes) -> Non... method glPatchParameterfv (line 11007) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 11008) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 11009) | def glPauseTransformFeedback(self) -> None: ... method glPixelStoref (line 11010) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 11011) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 11012) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 11013) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 11014) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 11015) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 11016) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 11017) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 11018) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopDebugGroup (line 11019) | def glPopDebugGroup(self) -> None: ... method glPrimitiveRestartIndex (line 11020) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProgramBinary (line 11021) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 11022) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 11023) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 11024) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 11025) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 11026) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 11027) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 11028) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 11029) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 11030) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 11031) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 11032) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 11033) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 11034) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 11035) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 11036) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 11037) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 11038) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 11039) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 11040) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 11041) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 11042) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 11043) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 11044) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 11045) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 11046) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 11047) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 11048) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 11049) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 11050) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 11051) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 11052) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 11053) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 11054) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 11055) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 11056) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 11057) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 11058) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 11059) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 11060) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 11061) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 11062) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 11063) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 11064) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 11065) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 11066) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 11067) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 11068) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 11069) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 11070) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 11071) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 11072) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 11073) | def glProvokingVertex(self, mode: int) -> None: ... method glPushDebugGroup (line 11074) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glQueryCounter (line 11075) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 11076) | def glReadBuffer(self, src: int) -> None: ... method glReadPixels (line 11077) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 11078) | def glReleaseShaderCompiler(self) -> None: ... method glRenderbufferStorage (line 11079) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 11080) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 11081) | def glResumeTransformFeedback(self) -> None: ... method glSampleCoverage (line 11082) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 11083) | def glSampleMaski(self, maskNumber: int, mask: int) -> None: ... method glSamplerParameterIiv (line 11084) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 11085) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 11086) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 11087) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 11088) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 11089) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 11090) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 11091) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 11092) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 11093) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glShaderBinary (line 11094) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 11095) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 11096) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 11097) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 11098) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 11099) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 11100) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 11101) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 11102) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexImage1D (line 11103) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 11104) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 11105) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 11106) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 11107) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 11108) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 11109) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 11110) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 11111) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 11112) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 11113) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 11114) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 11115) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 11116) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 11117) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 11118) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 11119) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 11120) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 11121) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 11122) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glUniform1d (line 11123) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 11124) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 11125) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 11126) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 11127) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 11128) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 11129) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 11130) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 11131) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 11132) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 11133) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 11134) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 11135) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 11136) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 11137) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 11138) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 11139) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 11140) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 11141) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 11142) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 11143) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 11144) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 11145) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 11146) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 11147) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 11148) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 11149) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 11150) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 11151) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 11152) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 11153) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 11154) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 11155) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 11156) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 11157) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 11158) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 11159) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 11160) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 11161) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 11162) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 11163) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 11164) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 11165) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 11166) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 11167) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 11168) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 11169) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 11170) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 11171) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 11172) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 11173) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 11174) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 11175) | def glUnmapBuffer(self, target: int) -> int: ... method glUseProgram (line 11176) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 11177) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 11178) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 11179) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertexAttrib1d (line 11180) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 11181) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 11182) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 11183) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 11184) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 11185) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 11186) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 11187) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 11188) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 11189) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 11190) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 11191) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 11192) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 11193) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 11194) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 11195) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 11196) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 11197) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 11198) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 11199) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 11200) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 11201) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 11202) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 11203) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 11204) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 11205) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 11206) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 11207) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 11208) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 11209) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 11210) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 11211) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 11212) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 11213) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 11214) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 11215) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribBinding (line 11216) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 11217) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 11218) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 11219) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 11220) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 11221) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 11222) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 11223) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 11224) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 11225) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 11226) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 11227) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 11228) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 11229) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 11230) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 11231) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 11232) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 11233) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 11234) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 11235) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 11236) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 11237) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 11238) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIFormat (line 11239) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 11240) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 11241) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 11242) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 11243) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 11244) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 11245) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 11246) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 11247) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 11248) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLFormat (line 11249) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 11250) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 11251) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 11252) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 11253) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 11254) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 11255) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 11256) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 11257) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 11258) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 11259) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 11260) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... method glViewport (line 11261) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 11262) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 11263) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 11264) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method initializeOpenGLFunctions (line 11265) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_5_Compatibility (line 11267) | class QOpenGLFunctions_4_5_Compatibility(PySide2.QtGui.QAbstractOpenGLFu... method __init__ (line 11268) | def __init__(self) -> None: ... method glAccum (line 11269) | def glAccum(self, op: int, value: float) -> None: ... method glActiveShaderProgram (line 11270) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 11271) | def glActiveTexture(self, texture: int) -> None: ... method glAlphaFunc (line 11272) | def glAlphaFunc(self, func: int, ref: float) -> None: ... method glArrayElement (line 11273) | def glArrayElement(self, i: int) -> None: ... method glAttachShader (line 11274) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBegin (line 11275) | def glBegin(self, mode: int) -> None: ... method glBeginConditionalRender (line 11276) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 11277) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 11278) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 11279) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 11280) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 11281) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 11282) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindBuffersBase (line 11283) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 11284) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 11285) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 11286) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 11287) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 11288) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 11289) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 11290) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 11291) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindSamplers (line 11292) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 11293) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTextureUnit (line 11294) | def glBindTextureUnit(self, unit: int, texture: int) -> None: ... method glBindTextures (line 11295) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 11296) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 11297) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 11298) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 11299) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 11300) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 11301) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 11302) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 11303) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 11304) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 11305) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 11306) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 11307) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glBlitNamedFramebuffer (line 11308) | def glBlitNamedFramebuffer(self, readFramebuffer: int, drawFramebuffer... method glCallList (line 11309) | def glCallList(self, list: int) -> None: ... method glCallLists (line 11310) | def glCallLists(self, n: int, type: int, lists: int) -> None: ... method glCheckFramebufferStatus (line 11311) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glCheckNamedFramebufferStatus (line 11312) | def glCheckNamedFramebufferStatus(self, framebuffer: int, target: int)... method glClampColor (line 11313) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 11314) | def glClear(self, mask: int) -> None: ... method glClearAccum (line 11315) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferData (line 11316) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 11317) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 11318) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 11319) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 11320) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 11321) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 11322) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 11323) | def glClearDepthf(self, dd: float) -> None: ... method glClearIndex (line 11324) | def glClearIndex(self, c: float) -> None: ... method glClearNamedBufferData (line 11325) | def glClearNamedBufferData(self, buffer: int, internalformat: int, for... method glClearNamedFramebufferfi (line 11326) | def glClearNamedFramebufferfi(self, framebuffer: int, buffer: int, dep... method glClearNamedFramebufferfv (line 11327) | def glClearNamedFramebufferfv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferiv (line 11328) | def glClearNamedFramebufferiv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferuiv (line 11329) | def glClearNamedFramebufferuiv(self, framebuffer: int, buffer: int, dr... method glClearStencil (line 11330) | def glClearStencil(self, s: int) -> None: ... method glClearTexImage (line 11331) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 11332) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glClientActiveTexture (line 11333) | def glClientActiveTexture(self, texture: int) -> None: ... method glClipControl (line 11334) | def glClipControl(self, origin: int, depth: int) -> None: ... method glClipPlane (line 11335) | def glClipPlane(self, plane: int, equation: typing.Iterable[float]) ->... method glColor3b (line 11336) | def glColor3b(self, red: int, green: int, blue: int) -> None: ... method glColor3bv (line 11337) | def glColor3bv(self, v: bytes) -> None: ... method glColor3d (line 11338) | def glColor3d(self, red: float, green: float, blue: float) -> None: ... method glColor3dv (line 11339) | def glColor3dv(self, v: typing.Iterable[float]) -> None: ... method glColor3f (line 11340) | def glColor3f(self, red: float, green: float, blue: float) -> None: ... method glColor3fv (line 11341) | def glColor3fv(self, v: typing.Iterable[float]) -> None: ... method glColor3i (line 11342) | def glColor3i(self, red: int, green: int, blue: int) -> None: ... method glColor3iv (line 11343) | def glColor3iv(self, v: typing.Iterable[int]) -> None: ... method glColor3s (line 11344) | def glColor3s(self, red: int, green: int, blue: int) -> None: ... method glColor3sv (line 11345) | def glColor3sv(self, v: typing.Iterable[int]) -> None: ... method glColor3ub (line 11346) | def glColor3ub(self, red: int, green: int, blue: int) -> None: ... method glColor3ubv (line 11347) | def glColor3ubv(self, v: bytes) -> None: ... method glColor3ui (line 11348) | def glColor3ui(self, red: int, green: int, blue: int) -> None: ... method glColor3uiv (line 11349) | def glColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glColor3us (line 11350) | def glColor3us(self, red: int, green: int, blue: int) -> None: ... method glColor3usv (line 11351) | def glColor3usv(self, v: typing.Iterable[int]) -> None: ... method glColor4b (line 11352) | def glColor4b(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4bv (line 11353) | def glColor4bv(self, v: bytes) -> None: ... method glColor4d (line 11354) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 11355) | def glColor4dv(self, v: typing.Iterable[float]) -> None: ... method glColor4f (line 11356) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 11357) | def glColor4fv(self, v: typing.Iterable[float]) -> None: ... method glColor4i (line 11358) | def glColor4i(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4iv (line 11359) | def glColor4iv(self, v: typing.Iterable[int]) -> None: ... method glColor4s (line 11360) | def glColor4s(self, red: int, green: int, blue: int, alpha: int) -> No... method glColor4sv (line 11361) | def glColor4sv(self, v: typing.Iterable[int]) -> None: ... method glColor4ub (line 11362) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4ubv (line 11363) | def glColor4ubv(self, v: bytes) -> None: ... method glColor4ui (line 11364) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4uiv (line 11365) | def glColor4uiv(self, v: typing.Iterable[int]) -> None: ... method glColor4us (line 11366) | def glColor4us(self, red: int, green: int, blue: int, alpha: int) -> N... method glColor4usv (line 11367) | def glColor4usv(self, v: typing.Iterable[int]) -> None: ... method glColorMask (line 11368) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 11369) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glColorMaterial (line 11370) | def glColorMaterial(self, face: int, mode: int) -> None: ... method glColorP3ui (line 11371) | def glColorP3ui(self, type: int, color: int) -> None: ... method glColorP3uiv (line 11372) | def glColorP3uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorP4ui (line 11373) | def glColorP4ui(self, type: int, color: int) -> None: ... method glColorP4uiv (line 11374) | def glColorP4uiv(self, type: int, color: typing.Iterable[int]) -> None... method glColorPointer (line 11375) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 11376) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 11377) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 11378) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 11379) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 11380) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 11381) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 11382) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 11383) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 11384) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 11385) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 11386) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCompressedTextureSubImage1D (line 11387) | def glCompressedTextureSubImage1D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage2D (line 11388) | def glCompressedTextureSubImage2D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage3D (line 11389) | def glCompressedTextureSubImage3D(self, texture: int, level: int, xoff... method glConvolutionFilter1D (line 11390) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 11391) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 11392) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 11393) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 11394) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 11395) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 11396) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 11397) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 11398) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 11399) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyImageSubData (line 11400) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyPixels (line 11401) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 11402) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 11403) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 11404) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 11405) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 11406) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCopyTextureSubImage1D (line 11407) | def glCopyTextureSubImage1D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage2D (line 11408) | def glCopyTextureSubImage2D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage3D (line 11409) | def glCopyTextureSubImage3D(self, texture: int, level: int, xoffset: i... method glCreateProgram (line 11410) | def glCreateProgram(self) -> int: ... method glCreateShader (line 11411) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 11412) | def glCullFace(self, mode: int) -> None: ... method glDebugMessageControl (line 11413) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 11414) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 11415) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 11416) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 11417) | def glDeleteLists(self, list: int, range: int) -> None: ... method glDeleteProgram (line 11418) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 11419) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 11420) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 11421) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 11422) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 11423) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 11424) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 11425) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 11426) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 11427) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 11428) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 11429) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 11430) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 11431) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 11432) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 11433) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 11434) | def glDisable(self, cap: int) -> None: ... method glDisableClientState (line 11435) | def glDisableClientState(self, array: int) -> None: ... method glDisableVertexArrayAttrib (line 11436) | def glDisableVertexArrayAttrib(self, vaobj: int, index: int) -> None: ... method glDisableVertexAttribArray (line 11437) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 11438) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 11439) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 11440) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 11441) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 11442) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 11443) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 11444) | def glDrawBuffer(self, buf: int) -> None: ... method glDrawBuffers (line 11445) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 11446) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 11447) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 11448) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 11449) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 11450) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 11451) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 11452) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 11453) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 11454) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 11455) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 11456) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 11457) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 11458) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 11459) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 11460) | def glEdgeFlag(self, flag: int) -> None: ... method glEdgeFlagPointer (line 11461) | def glEdgeFlagPointer(self, stride: int, pointer: int) -> None: ... method glEnable (line 11462) | def glEnable(self, cap: int) -> None: ... method glEnableClientState (line 11463) | def glEnableClientState(self, array: int) -> None: ... method glEnableVertexArrayAttrib (line 11464) | def glEnableVertexArrayAttrib(self, vaobj: int, index: int) -> None: ... method glEnableVertexAttribArray (line 11465) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 11466) | def glEnablei(self, target: int, index: int) -> None: ... method glEnd (line 11467) | def glEnd(self) -> None: ... method glEndConditionalRender (line 11468) | def glEndConditionalRender(self) -> None: ... method glEndList (line 11469) | def glEndList(self) -> None: ... method glEndQuery (line 11470) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 11471) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 11472) | def glEndTransformFeedback(self) -> None: ... method glEvalCoord1d (line 11473) | def glEvalCoord1d(self, u: float) -> None: ... method glEvalCoord1dv (line 11474) | def glEvalCoord1dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord1f (line 11475) | def glEvalCoord1f(self, u: float) -> None: ... method glEvalCoord1fv (line 11476) | def glEvalCoord1fv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2d (line 11477) | def glEvalCoord2d(self, u: float, v: float) -> None: ... method glEvalCoord2dv (line 11478) | def glEvalCoord2dv(self, u: typing.Iterable[float]) -> None: ... method glEvalCoord2f (line 11479) | def glEvalCoord2f(self, u: float, v: float) -> None: ... method glEvalCoord2fv (line 11480) | def glEvalCoord2fv(self, u: typing.Iterable[float]) -> None: ... method glEvalMesh1 (line 11481) | def glEvalMesh1(self, mode: int, i1: int, i2: int) -> None: ... method glEvalMesh2 (line 11482) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int) -... method glEvalPoint1 (line 11483) | def glEvalPoint1(self, i: int) -> None: ... method glEvalPoint2 (line 11484) | def glEvalPoint2(self, i: int, j: int) -> None: ... method glFinish (line 11485) | def glFinish(self) -> None: ... method glFlush (line 11486) | def glFlush(self) -> None: ... method glFogCoordPointer (line 11487) | def glFogCoordPointer(self, type: int, stride: int, pointer: int) -> N... method glFogCoordd (line 11488) | def glFogCoordd(self, coord: float) -> None: ... method glFogCoorddv (line 11489) | def glFogCoorddv(self, coord: typing.Iterable[float]) -> None: ... method glFogCoordf (line 11490) | def glFogCoordf(self, coord: float) -> None: ... method glFogCoordfv (line 11491) | def glFogCoordfv(self, coord: typing.Iterable[float]) -> None: ... method glFogf (line 11492) | def glFogf(self, pname: int, param: float) -> None: ... method glFogfv (line 11493) | def glFogfv(self, pname: int, params: typing.Iterable[float]) -> None:... method glFogi (line 11494) | def glFogi(self, pname: int, param: int) -> None: ... method glFogiv (line 11495) | def glFogiv(self, pname: int, params: typing.Iterable[int]) -> None: ... method glFramebufferParameteri (line 11496) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferRenderbuffer (line 11497) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 11498) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 11499) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 11500) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 11501) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 11502) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 11503) | def glFrontFace(self, mode: int) -> None: ... method glFrustum (line 11504) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 11505) | def glGenLists(self, range: int) -> int: ... method glGenerateMipmap (line 11506) | def glGenerateMipmap(self, target: int) -> None: ... method glGenerateTextureMipmap (line 11507) | def glGenerateTextureMipmap(self, texture: int) -> None: ... method glGetAttribLocation (line 11508) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetColorTable (line 11509) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 11510) | def glGetCompressedTexImage(self, target: int, level: int, img: int) -... method glGetCompressedTextureImage (line 11511) | def glGetCompressedTextureImage(self, texture: int, level: int, bufSiz... method glGetCompressedTextureSubImage (line 11512) | def glGetCompressedTextureSubImage(self, texture: int, level: int, xof... method glGetConvolutionFilter (line 11513) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetError (line 11514) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 11515) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 11516) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetGraphicsResetStatus (line 11517) | def glGetGraphicsResetStatus(self) -> int: ... method glGetHistogram (line 11518) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetMinmax (line 11519) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetProgramResourceIndex (line 11520) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 11521) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 11522) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetSeparableFilter (line 11523) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 11524) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 11525) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 11526) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 11527) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 11528) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetTextureImage (line 11529) | def glGetTextureImage(self, texture: int, level: int, format: int, typ... method glGetTextureSubImage (line 11530) | def glGetTextureSubImage(self, texture: int, level: int, xoffset: int,... method glGetUniformBlockIndex (line 11531) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 11532) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glGetnColorTable (line 11533) | def glGetnColorTable(self, target: int, format: int, type: int, bufSiz... method glGetnCompressedTexImage (line 11534) | def glGetnCompressedTexImage(self, target: int, lod: int, bufSize: int... method glGetnConvolutionFilter (line 11535) | def glGetnConvolutionFilter(self, target: int, format: int, type: int,... method glGetnHistogram (line 11536) | def glGetnHistogram(self, target: int, reset: int, format: int, type: ... method glGetnMinmax (line 11537) | def glGetnMinmax(self, target: int, reset: int, format: int, type: int... method glGetnSeparableFilter (line 11538) | def glGetnSeparableFilter(self, target: int, format: int, type: int, r... method glGetnTexImage (line 11539) | def glGetnTexImage(self, target: int, level: int, format: int, type: i... method glHint (line 11540) | def glHint(self, target: int, mode: int) -> None: ... method glHistogram (line 11541) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 11542) | def glIndexMask(self, mask: int) -> None: ... method glIndexPointer (line 11543) | def glIndexPointer(self, type: int, stride: int, pointer: int) -> None... method glIndexd (line 11544) | def glIndexd(self, c: float) -> None: ... method glIndexdv (line 11545) | def glIndexdv(self, c: typing.Iterable[float]) -> None: ... method glIndexf (line 11546) | def glIndexf(self, c: float) -> None: ... method glIndexfv (line 11547) | def glIndexfv(self, c: typing.Iterable[float]) -> None: ... method glIndexi (line 11548) | def glIndexi(self, c: int) -> None: ... method glIndexiv (line 11549) | def glIndexiv(self, c: typing.Iterable[int]) -> None: ... method glIndexs (line 11550) | def glIndexs(self, c: int) -> None: ... method glIndexsv (line 11551) | def glIndexsv(self, c: typing.Iterable[int]) -> None: ... method glIndexub (line 11552) | def glIndexub(self, c: int) -> None: ... method glIndexubv (line 11553) | def glIndexubv(self, c: bytes) -> None: ... method glInitNames (line 11554) | def glInitNames(self) -> None: ... method glInterleavedArrays (line 11555) | def glInterleavedArrays(self, format: int, stride: int, pointer: int) ... method glInvalidateBufferData (line 11556) | def glInvalidateBufferData(self, buffer: int) -> None: ... method glInvalidateFramebuffer (line 11557) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateNamedFramebufferData (line 11558) | def glInvalidateNamedFramebufferData(self, framebuffer: int, numAttach... method glInvalidateNamedFramebufferSubData (line 11559) | def glInvalidateNamedFramebufferSubData(self, framebuffer: int, numAtt... method glInvalidateSubFramebuffer (line 11560) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 11561) | def glInvalidateTexImage(self, texture: int, level: int) -> None: ... method glInvalidateTexSubImage (line 11562) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 11563) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 11564) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 11565) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 11566) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsList (line 11567) | def glIsList(self, list: int) -> int: ... method glIsProgram (line 11568) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 11569) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 11570) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 11571) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 11572) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 11573) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 11574) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 11575) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 11576) | def glIsVertexArray(self, array: int) -> int: ... method glLightModelf (line 11577) | def glLightModelf(self, pname: int, param: float) -> None: ... method glLightModelfv (line 11578) | def glLightModelfv(self, pname: int, params: typing.Iterable[float]) -... method glLightModeli (line 11579) | def glLightModeli(self, pname: int, param: int) -> None: ... method glLightModeliv (line 11580) | def glLightModeliv(self, pname: int, params: typing.Iterable[int]) -> ... method glLightf (line 11581) | def glLightf(self, light: int, pname: int, param: float) -> None: ... method glLightfv (line 11582) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 11583) | def glLighti(self, light: int, pname: int, param: int) -> None: ... method glLightiv (line 11584) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 11585) | def glLineStipple(self, factor: int, pattern: int) -> None: ... method glLineWidth (line 11586) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 11587) | def glLinkProgram(self, program: int) -> None: ... method glListBase (line 11588) | def glListBase(self, base: int) -> None: ... method glLoadIdentity (line 11589) | def glLoadIdentity(self) -> None: ... method glLoadMatrixd (line 11590) | def glLoadMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadMatrixf (line 11591) | def glLoadMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLoadName (line 11592) | def glLoadName(self, name: int) -> None: ... method glLoadTransposeMatrixd (line 11593) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glLoadTransposeMatrixf (line 11594) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glLogicOp (line 11595) | def glLogicOp(self, opcode: int) -> None: ... method glMap1d (line 11596) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 11597) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 11598) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 11599) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 11600) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapGrid1d (line 11601) | def glMapGrid1d(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid1f (line 11602) | def glMapGrid1f(self, un: int, u1: float, u2: float) -> None: ... method glMapGrid2d (line 11603) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 11604) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapNamedBuffer (line 11605) | def glMapNamedBuffer(self, buffer: int, access: int) -> int: ... method glMaterialf (line 11606) | def glMaterialf(self, face: int, pname: int, param: float) -> None: ... method glMaterialfv (line 11607) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 11608) | def glMateriali(self, face: int, pname: int, param: int) -> None: ... method glMaterialiv (line 11609) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 11610) | def glMatrixMode(self, mode: int) -> None: ... method glMemoryBarrier (line 11611) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMemoryBarrierByRegion (line 11612) | def glMemoryBarrierByRegion(self, barriers: int) -> None: ... method glMinSampleShading (line 11613) | def glMinSampleShading(self, value: float) -> None: ... method glMinmax (line 11614) | def glMinmax(self, target: int, internalformat: int, sink: int) -> Non... method glMultMatrixd (line 11615) | def glMultMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultMatrixf (line 11616) | def glMultMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixd (line 11617) | def glMultTransposeMatrixd(self, m: typing.Iterable[float]) -> None: ... method glMultTransposeMatrixf (line 11618) | def glMultTransposeMatrixf(self, m: typing.Iterable[float]) -> None: ... method glMultiDrawArrays (line 11619) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 11620) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoord1d (line 11621) | def glMultiTexCoord1d(self, target: int, s: float) -> None: ... method glMultiTexCoord1dv (line 11622) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1f (line 11623) | def glMultiTexCoord1f(self, target: int, s: float) -> None: ... method glMultiTexCoord1fv (line 11624) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord1i (line 11625) | def glMultiTexCoord1i(self, target: int, s: int) -> None: ... method glMultiTexCoord1iv (line 11626) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord1s (line 11627) | def glMultiTexCoord1s(self, target: int, s: int) -> None: ... method glMultiTexCoord1sv (line 11628) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2d (line 11629) | def glMultiTexCoord2d(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2dv (line 11630) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2f (line 11631) | def glMultiTexCoord2f(self, target: int, s: float, t: float) -> None: ... method glMultiTexCoord2fv (line 11632) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord2i (line 11633) | def glMultiTexCoord2i(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2iv (line 11634) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord2s (line 11635) | def glMultiTexCoord2s(self, target: int, s: int, t: int) -> None: ... method glMultiTexCoord2sv (line 11636) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3d (line 11637) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3dv (line 11638) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3f (line 11639) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float)... method glMultiTexCoord3fv (line 11640) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord3i (line 11641) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3iv (line 11642) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord3s (line 11643) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int) -> No... method glMultiTexCoord3sv (line 11644) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4d (line 11645) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 11646) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4f (line 11647) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 11648) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float]) -... method glMultiTexCoord4i (line 11649) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 11650) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoord4s (line 11651) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 11652) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int]) -> ... method glMultiTexCoordP1ui (line 11653) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP1uiv (line 11654) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 11655) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP2uiv (line 11656) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 11657) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP3uiv (line 11658) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 11659) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int) ->... method glMultiTexCoordP4uiv (line 11660) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNamedBufferData (line 11661) | def glNamedBufferData(self, buffer: int, size: int, data: int, usage: ... method glNamedBufferStorage (line 11662) | def glNamedBufferStorage(self, buffer: int, size: int, data: int, flag... method glNamedFramebufferDrawBuffer (line 11663) | def glNamedFramebufferDrawBuffer(self, framebuffer: int, buf: int) -> ... method glNamedFramebufferDrawBuffers (line 11664) | def glNamedFramebufferDrawBuffers(self, framebuffer: int, n: int, bufs... method glNamedFramebufferParameteri (line 11665) | def glNamedFramebufferParameteri(self, framebuffer: int, pname: int, p... method glNamedFramebufferReadBuffer (line 11666) | def glNamedFramebufferReadBuffer(self, framebuffer: int, src: int) -> ... method glNamedFramebufferRenderbuffer (line 11667) | def glNamedFramebufferRenderbuffer(self, framebuffer: int, attachment:... method glNamedFramebufferTexture (line 11668) | def glNamedFramebufferTexture(self, framebuffer: int, attachment: int,... method glNamedFramebufferTextureLayer (line 11669) | def glNamedFramebufferTextureLayer(self, framebuffer: int, attachment:... method glNamedRenderbufferStorage (line 11670) | def glNamedRenderbufferStorage(self, renderbuffer: int, internalformat... method glNamedRenderbufferStorageMultisample (line 11671) | def glNamedRenderbufferStorageMultisample(self, renderbuffer: int, sam... method glNewList (line 11672) | def glNewList(self, list: int, mode: int) -> None: ... method glNormal3b (line 11673) | def glNormal3b(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3bv (line 11674) | def glNormal3bv(self, v: bytes) -> None: ... method glNormal3d (line 11675) | def glNormal3d(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3dv (line 11676) | def glNormal3dv(self, v: typing.Iterable[float]) -> None: ... method glNormal3f (line 11677) | def glNormal3f(self, nx: float, ny: float, nz: float) -> None: ... method glNormal3fv (line 11678) | def glNormal3fv(self, v: typing.Iterable[float]) -> None: ... method glNormal3i (line 11679) | def glNormal3i(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3iv (line 11680) | def glNormal3iv(self, v: typing.Iterable[int]) -> None: ... method glNormal3s (line 11681) | def glNormal3s(self, nx: int, ny: int, nz: int) -> None: ... method glNormal3sv (line 11682) | def glNormal3sv(self, v: typing.Iterable[int]) -> None: ... method glNormalP3ui (line 11683) | def glNormalP3ui(self, type: int, coords: int) -> None: ... method glNormalP3uiv (line 11684) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int]) -> No... method glNormalPointer (line 11685) | def glNormalPointer(self, type: int, stride: int, pointer: int) -> Non... method glObjectLabel (line 11686) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 11687) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes) -> Non... method glOrtho (line 11688) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 11689) | def glPassThrough(self, token: float) -> None: ... method glPatchParameterfv (line 11690) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 11691) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 11692) | def glPauseTransformFeedback(self) -> None: ... method glPixelMapfv (line 11693) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 11694) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 11695) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 11696) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 11697) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPixelTransferf (line 11698) | def glPixelTransferf(self, pname: int, param: float) -> None: ... method glPixelTransferi (line 11699) | def glPixelTransferi(self, pname: int, param: int) -> None: ... method glPixelZoom (line 11700) | def glPixelZoom(self, xfactor: float, yfactor: float) -> None: ... method glPointParameterf (line 11701) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 11702) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 11703) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 11704) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 11705) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 11706) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 11707) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopAttrib (line 11708) | def glPopAttrib(self) -> None: ... method glPopClientAttrib (line 11709) | def glPopClientAttrib(self) -> None: ... method glPopDebugGroup (line 11710) | def glPopDebugGroup(self) -> None: ... method glPopMatrix (line 11711) | def glPopMatrix(self) -> None: ... method glPopName (line 11712) | def glPopName(self) -> None: ... method glPrimitiveRestartIndex (line 11713) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glPrioritizeTextures (line 11714) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 11715) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 11716) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 11717) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 11718) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 11719) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 11720) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 11721) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 11722) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 11723) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 11724) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 11725) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 11726) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 11727) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 11728) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 11729) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 11730) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 11731) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 11732) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 11733) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 11734) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 11735) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 11736) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 11737) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 11738) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 11739) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 11740) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 11741) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 11742) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 11743) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 11744) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 11745) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 11746) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 11747) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 11748) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 11749) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 11750) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 11751) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 11752) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 11753) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 11754) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 11755) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 11756) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 11757) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 11758) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 11759) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 11760) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 11761) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 11762) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 11763) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 11764) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 11765) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 11766) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 11767) | def glProvokingVertex(self, mode: int) -> None: ... method glPushAttrib (line 11768) | def glPushAttrib(self, mask: int) -> None: ... method glPushClientAttrib (line 11769) | def glPushClientAttrib(self, mask: int) -> None: ... method glPushDebugGroup (line 11770) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glPushMatrix (line 11771) | def glPushMatrix(self) -> None: ... method glPushName (line 11772) | def glPushName(self, name: int) -> None: ... method glQueryCounter (line 11773) | def glQueryCounter(self, id: int, target: int) -> None: ... method glRasterPos2d (line 11774) | def glRasterPos2d(self, x: float, y: float) -> None: ... method glRasterPos2dv (line 11775) | def glRasterPos2dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2f (line 11776) | def glRasterPos2f(self, x: float, y: float) -> None: ... method glRasterPos2fv (line 11777) | def glRasterPos2fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos2i (line 11778) | def glRasterPos2i(self, x: int, y: int) -> None: ... method glRasterPos2iv (line 11779) | def glRasterPos2iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos2s (line 11780) | def glRasterPos2s(self, x: int, y: int) -> None: ... method glRasterPos2sv (line 11781) | def glRasterPos2sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3d (line 11782) | def glRasterPos3d(self, x: float, y: float, z: float) -> None: ... method glRasterPos3dv (line 11783) | def glRasterPos3dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3f (line 11784) | def glRasterPos3f(self, x: float, y: float, z: float) -> None: ... method glRasterPos3fv (line 11785) | def glRasterPos3fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos3i (line 11786) | def glRasterPos3i(self, x: int, y: int, z: int) -> None: ... method glRasterPos3iv (line 11787) | def glRasterPos3iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos3s (line 11788) | def glRasterPos3s(self, x: int, y: int, z: int) -> None: ... method glRasterPos3sv (line 11789) | def glRasterPos3sv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4d (line 11790) | def glRasterPos4d(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4dv (line 11791) | def glRasterPos4dv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4f (line 11792) | def glRasterPos4f(self, x: float, y: float, z: float, w: float) -> Non... method glRasterPos4fv (line 11793) | def glRasterPos4fv(self, v: typing.Iterable[float]) -> None: ... method glRasterPos4i (line 11794) | def glRasterPos4i(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4iv (line 11795) | def glRasterPos4iv(self, v: typing.Iterable[int]) -> None: ... method glRasterPos4s (line 11796) | def glRasterPos4s(self, x: int, y: int, z: int, w: int) -> None: ... method glRasterPos4sv (line 11797) | def glRasterPos4sv(self, v: typing.Iterable[int]) -> None: ... method glReadBuffer (line 11798) | def glReadBuffer(self, src: int) -> None: ... method glReadPixels (line 11799) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReadnPixels (line 11800) | def glReadnPixels(self, x: int, y: int, width: int, height: int, forma... method glRectd (line 11801) | def glRectd(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectdv (line 11802) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 11803) | def glRectf(self, x1: float, y1: float, x2: float, y2: float) -> None:... method glRectfv (line 11804) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 11805) | def glRecti(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectiv (line 11806) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glRects (line 11807) | def glRects(self, x1: int, y1: int, x2: int, y2: int) -> None: ... method glRectsv (line 11808) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int])... method glReleaseShaderCompiler (line 11809) | def glReleaseShaderCompiler(self) -> None: ... method glRenderMode (line 11810) | def glRenderMode(self, mode: int) -> int: ... method glRenderbufferStorage (line 11811) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 11812) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 11813) | def glResetHistogram(self, target: int) -> None: ... method glResetMinmax (line 11814) | def glResetMinmax(self, target: int) -> None: ... method glResumeTransformFeedback (line 11815) | def glResumeTransformFeedback(self) -> None: ... method glRotated (line 11816) | def glRotated(self, angle: float, x: float, y: float, z: float) -> Non... method glRotatef (line 11817) | def glRotatef(self, angle: float, x: float, y: float, z: float) -> Non... method glSampleCoverage (line 11818) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 11819) | def glSampleMaski(self, maskNumber: int, mask: int) -> None: ... method glSamplerParameterIiv (line 11820) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 11821) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 11822) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 11823) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 11824) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 11825) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 11826) | def glScaled(self, x: float, y: float, z: float) -> None: ... method glScalef (line 11827) | def glScalef(self, x: float, y: float, z: float) -> None: ... method glScissor (line 11828) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 11829) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 11830) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 11831) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glSecondaryColor3b (line 11832) | def glSecondaryColor3b(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3bv (line 11833) | def glSecondaryColor3bv(self, v: bytes) -> None: ... method glSecondaryColor3d (line 11834) | def glSecondaryColor3d(self, red: float, green: float, blue: float) ->... method glSecondaryColor3dv (line 11835) | def glSecondaryColor3dv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3f (line 11836) | def glSecondaryColor3f(self, red: float, green: float, blue: float) ->... method glSecondaryColor3fv (line 11837) | def glSecondaryColor3fv(self, v: typing.Iterable[float]) -> None: ... method glSecondaryColor3i (line 11838) | def glSecondaryColor3i(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3iv (line 11839) | def glSecondaryColor3iv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3s (line 11840) | def glSecondaryColor3s(self, red: int, green: int, blue: int) -> None:... method glSecondaryColor3sv (line 11841) | def glSecondaryColor3sv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3ub (line 11842) | def glSecondaryColor3ub(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3ubv (line 11843) | def glSecondaryColor3ubv(self, v: bytes) -> None: ... method glSecondaryColor3ui (line 11844) | def glSecondaryColor3ui(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3uiv (line 11845) | def glSecondaryColor3uiv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColor3us (line 11846) | def glSecondaryColor3us(self, red: int, green: int, blue: int) -> None... method glSecondaryColor3usv (line 11847) | def glSecondaryColor3usv(self, v: typing.Iterable[int]) -> None: ... method glSecondaryColorP3ui (line 11848) | def glSecondaryColorP3ui(self, type: int, color: int) -> None: ... method glSecondaryColorP3uiv (line 11849) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 11850) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 11851) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 11852) | def glShadeModel(self, mode: int) -> None: ... method glShaderBinary (line 11853) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 11854) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 11855) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 11856) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 11857) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 11858) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 11859) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 11860) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 11861) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexCoord1d (line 11862) | def glTexCoord1d(self, s: float) -> None: ... method glTexCoord1dv (line 11863) | def glTexCoord1dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1f (line 11864) | def glTexCoord1f(self, s: float) -> None: ... method glTexCoord1fv (line 11865) | def glTexCoord1fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord1i (line 11866) | def glTexCoord1i(self, s: int) -> None: ... method glTexCoord1iv (line 11867) | def glTexCoord1iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord1s (line 11868) | def glTexCoord1s(self, s: int) -> None: ... method glTexCoord1sv (line 11869) | def glTexCoord1sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2d (line 11870) | def glTexCoord2d(self, s: float, t: float) -> None: ... method glTexCoord2dv (line 11871) | def glTexCoord2dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2f (line 11872) | def glTexCoord2f(self, s: float, t: float) -> None: ... method glTexCoord2fv (line 11873) | def glTexCoord2fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord2i (line 11874) | def glTexCoord2i(self, s: int, t: int) -> None: ... method glTexCoord2iv (line 11875) | def glTexCoord2iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord2s (line 11876) | def glTexCoord2s(self, s: int, t: int) -> None: ... method glTexCoord2sv (line 11877) | def glTexCoord2sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3d (line 11878) | def glTexCoord3d(self, s: float, t: float, r: float) -> None: ... method glTexCoord3dv (line 11879) | def glTexCoord3dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3f (line 11880) | def glTexCoord3f(self, s: float, t: float, r: float) -> None: ... method glTexCoord3fv (line 11881) | def glTexCoord3fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord3i (line 11882) | def glTexCoord3i(self, s: int, t: int, r: int) -> None: ... method glTexCoord3iv (line 11883) | def glTexCoord3iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord3s (line 11884) | def glTexCoord3s(self, s: int, t: int, r: int) -> None: ... method glTexCoord3sv (line 11885) | def glTexCoord3sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4d (line 11886) | def glTexCoord4d(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4dv (line 11887) | def glTexCoord4dv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4f (line 11888) | def glTexCoord4f(self, s: float, t: float, r: float, q: float) -> None... method glTexCoord4fv (line 11889) | def glTexCoord4fv(self, v: typing.Iterable[float]) -> None: ... method glTexCoord4i (line 11890) | def glTexCoord4i(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4iv (line 11891) | def glTexCoord4iv(self, v: typing.Iterable[int]) -> None: ... method glTexCoord4s (line 11892) | def glTexCoord4s(self, s: int, t: int, r: int, q: int) -> None: ... method glTexCoord4sv (line 11893) | def glTexCoord4sv(self, v: typing.Iterable[int]) -> None: ... method glTexCoordP1ui (line 11894) | def glTexCoordP1ui(self, type: int, coords: int) -> None: ... method glTexCoordP1uiv (line 11895) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP2ui (line 11896) | def glTexCoordP2ui(self, type: int, coords: int) -> None: ... method glTexCoordP2uiv (line 11897) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP3ui (line 11898) | def glTexCoordP3ui(self, type: int, coords: int) -> None: ... method glTexCoordP3uiv (line 11899) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordP4ui (line 11900) | def glTexCoordP4ui(self, type: int, coords: int) -> None: ... method glTexCoordP4uiv (line 11901) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int]) -> ... method glTexCoordPointer (line 11902) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 11903) | def glTexEnvf(self, target: int, pname: int, param: float) -> None: ... method glTexEnvfv (line 11904) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 11905) | def glTexEnvi(self, target: int, pname: int, param: int) -> None: ... method glTexEnviv (line 11906) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 11907) | def glTexGend(self, coord: int, pname: int, param: float) -> None: ... method glTexGendv (line 11908) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 11909) | def glTexGenf(self, coord: int, pname: int, param: float) -> None: ... method glTexGenfv (line 11910) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 11911) | def glTexGeni(self, coord: int, pname: int, param: int) -> None: ... method glTexGeniv (line 11912) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 11913) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 11914) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 11915) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 11916) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 11917) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 11918) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 11919) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 11920) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 11921) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 11922) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 11923) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 11924) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 11925) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 11926) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 11927) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 11928) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 11929) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 11930) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 11931) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureBarrier (line 11932) | def glTextureBarrier(self) -> None: ... method glTextureBuffer (line 11933) | def glTextureBuffer(self, texture: int, internalformat: int, buffer: i... method glTextureParameterIiv (line 11934) | def glTextureParameterIiv(self, texture: int, pname: int, params: typi... method glTextureParameterIuiv (line 11935) | def glTextureParameterIuiv(self, texture: int, pname: int, params: typ... method glTextureParameterf (line 11936) | def glTextureParameterf(self, texture: int, pname: int, param: float) ... method glTextureParameterfv (line 11937) | def glTextureParameterfv(self, texture: int, pname: int, param: typing... method glTextureParameteri (line 11938) | def glTextureParameteri(self, texture: int, pname: int, param: int) ->... method glTextureParameteriv (line 11939) | def glTextureParameteriv(self, texture: int, pname: int, param: typing... method glTextureStorage1D (line 11940) | def glTextureStorage1D(self, texture: int, levels: int, internalformat... method glTextureStorage2D (line 11941) | def glTextureStorage2D(self, texture: int, levels: int, internalformat... method glTextureStorage2DMultisample (line 11942) | def glTextureStorage2DMultisample(self, texture: int, samples: int, in... method glTextureStorage3D (line 11943) | def glTextureStorage3D(self, texture: int, levels: int, internalformat... method glTextureStorage3DMultisample (line 11944) | def glTextureStorage3DMultisample(self, texture: int, samples: int, in... method glTextureSubImage1D (line 11945) | def glTextureSubImage1D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage2D (line 11946) | def glTextureSubImage2D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage3D (line 11947) | def glTextureSubImage3D(self, texture: int, level: int, xoffset: int, ... method glTextureView (line 11948) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTransformFeedbackBufferBase (line 11949) | def glTransformFeedbackBufferBase(self, xfb: int, index: int, buffer: ... method glTranslated (line 11950) | def glTranslated(self, x: float, y: float, z: float) -> None: ... method glTranslatef (line 11951) | def glTranslatef(self, x: float, y: float, z: float) -> None: ... method glUniform1d (line 11952) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 11953) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 11954) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 11955) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 11956) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 11957) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 11958) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 11959) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 11960) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 11961) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 11962) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 11963) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 11964) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 11965) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 11966) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 11967) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 11968) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 11969) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 11970) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 11971) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 11972) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 11973) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 11974) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 11975) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 11976) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 11977) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 11978) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 11979) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 11980) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 11981) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 11982) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 11983) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 11984) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 11985) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 11986) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 11987) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 11988) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 11989) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 11990) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 11991) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 11992) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 11993) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 11994) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 11995) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 11996) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 11997) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 11998) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 11999) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 12000) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 12001) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 12002) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 12003) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 12004) | def glUnmapBuffer(self, target: int) -> int: ... method glUnmapNamedBuffer (line 12005) | def glUnmapNamedBuffer(self, buffer: int) -> int: ... method glUseProgram (line 12006) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 12007) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 12008) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 12009) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertex2d (line 12010) | def glVertex2d(self, x: float, y: float) -> None: ... method glVertex2dv (line 12011) | def glVertex2dv(self, v: typing.Iterable[float]) -> None: ... method glVertex2f (line 12012) | def glVertex2f(self, x: float, y: float) -> None: ... method glVertex2fv (line 12013) | def glVertex2fv(self, v: typing.Iterable[float]) -> None: ... method glVertex2i (line 12014) | def glVertex2i(self, x: int, y: int) -> None: ... method glVertex2iv (line 12015) | def glVertex2iv(self, v: typing.Iterable[int]) -> None: ... method glVertex2s (line 12016) | def glVertex2s(self, x: int, y: int) -> None: ... method glVertex2sv (line 12017) | def glVertex2sv(self, v: typing.Iterable[int]) -> None: ... method glVertex3d (line 12018) | def glVertex3d(self, x: float, y: float, z: float) -> None: ... method glVertex3dv (line 12019) | def glVertex3dv(self, v: typing.Iterable[float]) -> None: ... method glVertex3f (line 12020) | def glVertex3f(self, x: float, y: float, z: float) -> None: ... method glVertex3fv (line 12021) | def glVertex3fv(self, v: typing.Iterable[float]) -> None: ... method glVertex3i (line 12022) | def glVertex3i(self, x: int, y: int, z: int) -> None: ... method glVertex3iv (line 12023) | def glVertex3iv(self, v: typing.Iterable[int]) -> None: ... method glVertex3s (line 12024) | def glVertex3s(self, x: int, y: int, z: int) -> None: ... method glVertex3sv (line 12025) | def glVertex3sv(self, v: typing.Iterable[int]) -> None: ... method glVertex4d (line 12026) | def glVertex4d(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4dv (line 12027) | def glVertex4dv(self, v: typing.Iterable[float]) -> None: ... method glVertex4f (line 12028) | def glVertex4f(self, x: float, y: float, z: float, w: float) -> None: ... method glVertex4fv (line 12029) | def glVertex4fv(self, v: typing.Iterable[float]) -> None: ... method glVertex4i (line 12030) | def glVertex4i(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4iv (line 12031) | def glVertex4iv(self, v: typing.Iterable[int]) -> None: ... method glVertex4s (line 12032) | def glVertex4s(self, x: int, y: int, z: int, w: int) -> None: ... method glVertex4sv (line 12033) | def glVertex4sv(self, v: typing.Iterable[int]) -> None: ... method glVertexArrayAttribBinding (line 12034) | def glVertexArrayAttribBinding(self, vaobj: int, attribindex: int, bin... method glVertexArrayAttribFormat (line 12035) | def glVertexArrayAttribFormat(self, vaobj: int, attribindex: int, size... method glVertexArrayAttribIFormat (line 12036) | def glVertexArrayAttribIFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayAttribLFormat (line 12037) | def glVertexArrayAttribLFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayBindingDivisor (line 12038) | def glVertexArrayBindingDivisor(self, vaobj: int, bindingindex: int, d... method glVertexArrayElementBuffer (line 12039) | def glVertexArrayElementBuffer(self, vaobj: int, buffer: int) -> None:... method glVertexAttrib1d (line 12040) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 12041) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 12042) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 12043) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 12044) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 12045) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 12046) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 12047) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 12048) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 12049) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 12050) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 12051) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 12052) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 12053) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 12054) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 12055) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 12056) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 12057) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 12058) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 12059) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 12060) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 12061) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 12062) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 12063) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 12064) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 12065) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 12066) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 12067) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 12068) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 12069) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 12070) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 12071) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 12072) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 12073) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 12074) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 12075) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribBinding (line 12076) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 12077) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 12078) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 12079) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 12080) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 12081) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 12082) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 12083) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 12084) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 12085) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 12086) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 12087) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 12088) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 12089) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 12090) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 12091) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 12092) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 12093) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 12094) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 12095) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 12096) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 12097) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 12098) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIFormat (line 12099) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 12100) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 12101) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 12102) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 12103) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 12104) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 12105) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 12106) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 12107) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 12108) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLFormat (line 12109) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 12110) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 12111) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 12112) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 12113) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 12114) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 12115) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 12116) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 12117) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 12118) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 12119) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 12120) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... method glVertexP2ui (line 12121) | def glVertexP2ui(self, type: int, value: int) -> None: ... method glVertexP2uiv (line 12122) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP3ui (line 12123) | def glVertexP3ui(self, type: int, value: int) -> None: ... method glVertexP3uiv (line 12124) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexP4ui (line 12125) | def glVertexP4ui(self, type: int, value: int) -> None: ... method glVertexP4uiv (line 12126) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int]) -> Non... method glVertexPointer (line 12127) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 12128) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 12129) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 12130) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 12131) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method glWindowPos2d (line 12132) | def glWindowPos2d(self, x: float, y: float) -> None: ... method glWindowPos2dv (line 12133) | def glWindowPos2dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2f (line 12134) | def glWindowPos2f(self, x: float, y: float) -> None: ... method glWindowPos2fv (line 12135) | def glWindowPos2fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos2i (line 12136) | def glWindowPos2i(self, x: int, y: int) -> None: ... method glWindowPos2iv (line 12137) | def glWindowPos2iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos2s (line 12138) | def glWindowPos2s(self, x: int, y: int) -> None: ... method glWindowPos2sv (line 12139) | def glWindowPos2sv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3d (line 12140) | def glWindowPos3d(self, x: float, y: float, z: float) -> None: ... method glWindowPos3dv (line 12141) | def glWindowPos3dv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3f (line 12142) | def glWindowPos3f(self, x: float, y: float, z: float) -> None: ... method glWindowPos3fv (line 12143) | def glWindowPos3fv(self, v: typing.Iterable[float]) -> None: ... method glWindowPos3i (line 12144) | def glWindowPos3i(self, x: int, y: int, z: int) -> None: ... method glWindowPos3iv (line 12145) | def glWindowPos3iv(self, v: typing.Iterable[int]) -> None: ... method glWindowPos3s (line 12146) | def glWindowPos3s(self, x: int, y: int, z: int) -> None: ... method glWindowPos3sv (line 12147) | def glWindowPos3sv(self, v: typing.Iterable[int]) -> None: ... method initializeOpenGLFunctions (line 12148) | def initializeOpenGLFunctions(self) -> bool: ... class QOpenGLFunctions_4_5_Core (line 12150) | class QOpenGLFunctions_4_5_Core(PySide2.QtGui.QAbstractOpenGLFunctions): method __init__ (line 12151) | def __init__(self) -> None: ... method glActiveShaderProgram (line 12152) | def glActiveShaderProgram(self, pipeline: int, program: int) -> None: ... method glActiveTexture (line 12153) | def glActiveTexture(self, texture: int) -> None: ... method glAttachShader (line 12154) | def glAttachShader(self, program: int, shader: int) -> None: ... method glBeginConditionalRender (line 12155) | def glBeginConditionalRender(self, id: int, mode: int) -> None: ... method glBeginQuery (line 12156) | def glBeginQuery(self, target: int, id: int) -> None: ... method glBeginQueryIndexed (line 12157) | def glBeginQueryIndexed(self, target: int, index: int, id: int) -> Non... method glBeginTransformFeedback (line 12158) | def glBeginTransformFeedback(self, primitiveMode: int) -> None: ... method glBindAttribLocation (line 12159) | def glBindAttribLocation(self, program: int, index: int, name: bytes) ... method glBindBuffer (line 12160) | def glBindBuffer(self, target: int, buffer: int) -> None: ... method glBindBufferBase (line 12161) | def glBindBufferBase(self, target: int, index: int, buffer: int) -> No... method glBindBuffersBase (line 12162) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 12163) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 12164) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 12165) | def glBindFramebuffer(self, target: int, framebuffer: int) -> None: ... method glBindImageTexture (line 12166) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 12167) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 12168) | def glBindProgramPipeline(self, pipeline: int) -> None: ... method glBindRenderbuffer (line 12169) | def glBindRenderbuffer(self, target: int, renderbuffer: int) -> None: ... method glBindSampler (line 12170) | def glBindSampler(self, unit: int, sampler: int) -> None: ... method glBindSamplers (line 12171) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 12172) | def glBindTexture(self, target: int, texture: int) -> None: ... method glBindTextureUnit (line 12173) | def glBindTextureUnit(self, unit: int, texture: int) -> None: ... method glBindTextures (line 12174) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 12175) | def glBindTransformFeedback(self, target: int, id: int) -> None: ... method glBindVertexArray (line 12176) | def glBindVertexArray(self, array: int) -> None: ... method glBlendColor (line 12177) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 12178) | def glBlendEquation(self, mode: int) -> None: ... method glBlendEquationSeparate (line 12179) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int) -> Non... method glBlendEquationSeparatei (line 12180) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 12181) | def glBlendEquationi(self, buf: int, mode: int) -> None: ... method glBlendFunc (line 12182) | def glBlendFunc(self, sfactor: int, dfactor: int) -> None: ... method glBlendFuncSeparate (line 12183) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 12184) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 12185) | def glBlendFunci(self, buf: int, src: int, dst: int) -> None: ... method glBlitFramebuffer (line 12186) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glBlitNamedFramebuffer (line 12187) | def glBlitNamedFramebuffer(self, readFramebuffer: int, drawFramebuffer... method glCheckFramebufferStatus (line 12188) | def glCheckFramebufferStatus(self, target: int) -> int: ... method glCheckNamedFramebufferStatus (line 12189) | def glCheckNamedFramebufferStatus(self, framebuffer: int, target: int)... method glClampColor (line 12190) | def glClampColor(self, target: int, clamp: int) -> None: ... method glClear (line 12191) | def glClear(self, mask: int) -> None: ... method glClearBufferData (line 12192) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 12193) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 12194) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 12195) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 12196) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 12197) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 12198) | def glClearDepth(self, depth: float) -> None: ... method glClearDepthf (line 12199) | def glClearDepthf(self, dd: float) -> None: ... method glClearNamedBufferData (line 12200) | def glClearNamedBufferData(self, buffer: int, internalformat: int, for... method glClearNamedFramebufferfi (line 12201) | def glClearNamedFramebufferfi(self, framebuffer: int, buffer: int, dep... method glClearNamedFramebufferfv (line 12202) | def glClearNamedFramebufferfv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferiv (line 12203) | def glClearNamedFramebufferiv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferuiv (line 12204) | def glClearNamedFramebufferuiv(self, framebuffer: int, buffer: int, dr... method glClearStencil (line 12205) | def glClearStencil(self, s: int) -> None: ... method glClearTexImage (line 12206) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 12207) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glClipControl (line 12208) | def glClipControl(self, origin: int, depth: int) -> None: ... method glColorMask (line 12209) | def glColorMask(self, red: int, green: int, blue: int, alpha: int) -> ... method glColorMaski (line 12210) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int) -> ... method glCompileShader (line 12211) | def glCompileShader(self, shader: int) -> None: ... method glCompressedTexImage1D (line 12212) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 12213) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 12214) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 12215) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 12216) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 12217) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCompressedTextureSubImage1D (line 12218) | def glCompressedTextureSubImage1D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage2D (line 12219) | def glCompressedTextureSubImage2D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage3D (line 12220) | def glCompressedTextureSubImage3D(self, texture: int, level: int, xoff... method glCopyImageSubData (line 12221) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexImage1D (line 12222) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 12223) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 12224) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 12225) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 12226) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCopyTextureSubImage1D (line 12227) | def glCopyTextureSubImage1D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage2D (line 12228) | def glCopyTextureSubImage2D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage3D (line 12229) | def glCopyTextureSubImage3D(self, texture: int, level: int, xoffset: i... method glCreateProgram (line 12230) | def glCreateProgram(self) -> int: ... method glCreateShader (line 12231) | def glCreateShader(self, type: int) -> int: ... method glCullFace (line 12232) | def glCullFace(self, mode: int) -> None: ... method glDebugMessageControl (line 12233) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 12234) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 12235) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int]) -> No... method glDeleteFramebuffers (line 12236) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 12237) | def glDeleteProgram(self, program: int) -> None: ... method glDeleteProgramPipelines (line 12238) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 12239) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int]) -> None: ... method glDeleteRenderbuffers (line 12240) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 12241) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int])... method glDeleteShader (line 12242) | def glDeleteShader(self, shader: int) -> None: ... method glDeleteTextures (line 12243) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int]) -> ... method glDeleteTransformFeedbacks (line 12244) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 12245) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int]) -... method glDepthFunc (line 12246) | def glDepthFunc(self, func: int) -> None: ... method glDepthMask (line 12247) | def glDepthMask(self, flag: int) -> None: ... method glDepthRange (line 12248) | def glDepthRange(self, nearVal: float, farVal: float) -> None: ... method glDepthRangeArrayv (line 12249) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 12250) | def glDepthRangeIndexed(self, index: int, n: float, f: float) -> None:... method glDepthRangef (line 12251) | def glDepthRangef(self, n: float, f: float) -> None: ... method glDetachShader (line 12252) | def glDetachShader(self, program: int, shader: int) -> None: ... method glDisable (line 12253) | def glDisable(self, cap: int) -> None: ... method glDisableVertexArrayAttrib (line 12254) | def glDisableVertexArrayAttrib(self, vaobj: int, index: int) -> None: ... method glDisableVertexAttribArray (line 12255) | def glDisableVertexAttribArray(self, index: int) -> None: ... method glDisablei (line 12256) | def glDisablei(self, target: int, index: int) -> None: ... method glDispatchCompute (line 12257) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 12258) | def glDrawArrays(self, mode: int, first: int, count: int) -> None: ... method glDrawArraysIndirect (line 12259) | def glDrawArraysIndirect(self, mode: int, indirect: int) -> None: ... method glDrawArraysInstanced (line 12260) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 12261) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 12262) | def glDrawBuffer(self, buf: int) -> None: ... method glDrawBuffers (line 12263) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int]) -> None: ... method glDrawElements (line 12264) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 12265) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 12266) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int) ... method glDrawElementsInstanced (line 12267) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 12268) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 12269) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 12270) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 12271) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 12272) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 12273) | def glDrawTransformFeedback(self, mode: int, id: int) -> None: ... method glDrawTransformFeedbackInstanced (line 12274) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 12275) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 12276) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 12277) | def glEnable(self, cap: int) -> None: ... method glEnableVertexArrayAttrib (line 12278) | def glEnableVertexArrayAttrib(self, vaobj: int, index: int) -> None: ... method glEnableVertexAttribArray (line 12279) | def glEnableVertexAttribArray(self, index: int) -> None: ... method glEnablei (line 12280) | def glEnablei(self, target: int, index: int) -> None: ... method glEndConditionalRender (line 12281) | def glEndConditionalRender(self) -> None: ... method glEndQuery (line 12282) | def glEndQuery(self, target: int) -> None: ... method glEndQueryIndexed (line 12283) | def glEndQueryIndexed(self, target: int, index: int) -> None: ... method glEndTransformFeedback (line 12284) | def glEndTransformFeedback(self) -> None: ... method glFinish (line 12285) | def glFinish(self) -> None: ... method glFlush (line 12286) | def glFlush(self) -> None: ... method glFramebufferParameteri (line 12287) | def glFramebufferParameteri(self, target: int, pname: int, param: int)... method glFramebufferRenderbuffer (line 12288) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 12289) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 12290) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 12291) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 12292) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 12293) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 12294) | def glFrontFace(self, mode: int) -> None: ... method glGenerateMipmap (line 12295) | def glGenerateMipmap(self, target: int) -> None: ... method glGenerateTextureMipmap (line 12296) | def glGenerateTextureMipmap(self, texture: int) -> None: ... method glGetAttribLocation (line 12297) | def glGetAttribLocation(self, program: int, name: bytes) -> int: ... method glGetCompressedTexImage (line 12298) | def glGetCompressedTexImage(self, target: int, level: int, img: int) -... method glGetCompressedTextureImage (line 12299) | def glGetCompressedTextureImage(self, texture: int, level: int, bufSiz... method glGetCompressedTextureSubImage (line 12300) | def glGetCompressedTextureSubImage(self, texture: int, level: int, xof... method glGetError (line 12301) | def glGetError(self) -> int: ... method glGetFragDataIndex (line 12302) | def glGetFragDataIndex(self, program: int, name: bytes) -> int: ... method glGetFragDataLocation (line 12303) | def glGetFragDataLocation(self, program: int, name: bytes) -> int: ... method glGetGraphicsResetStatus (line 12304) | def glGetGraphicsResetStatus(self) -> int: ... method glGetProgramResourceIndex (line 12305) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 12306) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 12307) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 12308) | def glGetString(self, name: int) -> bytes: ... method glGetStringi (line 12309) | def glGetStringi(self, name: int, index: int) -> bytes: ... method glGetSubroutineIndex (line 12310) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 12311) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 12312) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetTextureImage (line 12313) | def glGetTextureImage(self, texture: int, level: int, format: int, typ... method glGetTextureSubImage (line 12314) | def glGetTextureSubImage(self, texture: int, level: int, xoffset: int,... method glGetUniformBlockIndex (line 12315) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 12316) | def glGetUniformLocation(self, program: int, name: bytes) -> int: ... method glGetnCompressedTexImage (line 12317) | def glGetnCompressedTexImage(self, target: int, lod: int, bufSize: int... method glGetnTexImage (line 12318) | def glGetnTexImage(self, target: int, level: int, format: int, type: i... method glHint (line 12319) | def glHint(self, target: int, mode: int) -> None: ... method glInvalidateBufferData (line 12320) | def glInvalidateBufferData(self, buffer: int) -> None: ... method glInvalidateFramebuffer (line 12321) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateNamedFramebufferData (line 12322) | def glInvalidateNamedFramebufferData(self, framebuffer: int, numAttach... method glInvalidateNamedFramebufferSubData (line 12323) | def glInvalidateNamedFramebufferSubData(self, framebuffer: int, numAtt... method glInvalidateSubFramebuffer (line 12324) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 12325) | def glInvalidateTexImage(self, texture: int, level: int) -> None: ... method glInvalidateTexSubImage (line 12326) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 12327) | def glIsBuffer(self, buffer: int) -> int: ... method glIsEnabled (line 12328) | def glIsEnabled(self, cap: int) -> int: ... method glIsEnabledi (line 12329) | def glIsEnabledi(self, target: int, index: int) -> int: ... method glIsFramebuffer (line 12330) | def glIsFramebuffer(self, framebuffer: int) -> int: ... method glIsProgram (line 12331) | def glIsProgram(self, program: int) -> int: ... method glIsProgramPipeline (line 12332) | def glIsProgramPipeline(self, pipeline: int) -> int: ... method glIsQuery (line 12333) | def glIsQuery(self, id: int) -> int: ... method glIsRenderbuffer (line 12334) | def glIsRenderbuffer(self, renderbuffer: int) -> int: ... method glIsSampler (line 12335) | def glIsSampler(self, sampler: int) -> int: ... method glIsShader (line 12336) | def glIsShader(self, shader: int) -> int: ... method glIsTexture (line 12337) | def glIsTexture(self, texture: int) -> int: ... method glIsTransformFeedback (line 12338) | def glIsTransformFeedback(self, id: int) -> int: ... method glIsVertexArray (line 12339) | def glIsVertexArray(self, array: int) -> int: ... method glLineWidth (line 12340) | def glLineWidth(self, width: float) -> None: ... method glLinkProgram (line 12341) | def glLinkProgram(self, program: int) -> None: ... method glLogicOp (line 12342) | def glLogicOp(self, opcode: int) -> None: ... method glMapBuffer (line 12343) | def glMapBuffer(self, target: int, access: int) -> int: ... method glMapNamedBuffer (line 12344) | def glMapNamedBuffer(self, buffer: int, access: int) -> int: ... method glMemoryBarrier (line 12345) | def glMemoryBarrier(self, barriers: int) -> None: ... method glMemoryBarrierByRegion (line 12346) | def glMemoryBarrierByRegion(self, barriers: int) -> None: ... method glMinSampleShading (line 12347) | def glMinSampleShading(self, value: float) -> None: ... method glMultiDrawArrays (line 12348) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 12349) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glNamedBufferData (line 12350) | def glNamedBufferData(self, buffer: int, size: int, data: int, usage: ... method glNamedBufferStorage (line 12351) | def glNamedBufferStorage(self, buffer: int, size: int, data: int, flag... method glNamedFramebufferDrawBuffer (line 12352) | def glNamedFramebufferDrawBuffer(self, framebuffer: int, buf: int) -> ... method glNamedFramebufferDrawBuffers (line 12353) | def glNamedFramebufferDrawBuffers(self, framebuffer: int, n: int, bufs... method glNamedFramebufferParameteri (line 12354) | def glNamedFramebufferParameteri(self, framebuffer: int, pname: int, p... method glNamedFramebufferReadBuffer (line 12355) | def glNamedFramebufferReadBuffer(self, framebuffer: int, src: int) -> ... method glNamedFramebufferRenderbuffer (line 12356) | def glNamedFramebufferRenderbuffer(self, framebuffer: int, attachment:... method glNamedFramebufferTexture (line 12357) | def glNamedFramebufferTexture(self, framebuffer: int, attachment: int,... method glNamedFramebufferTextureLayer (line 12358) | def glNamedFramebufferTextureLayer(self, framebuffer: int, attachment:... method glNamedRenderbufferStorage (line 12359) | def glNamedRenderbufferStorage(self, renderbuffer: int, internalformat... method glNamedRenderbufferStorageMultisample (line 12360) | def glNamedRenderbufferStorageMultisample(self, renderbuffer: int, sam... method glObjectLabel (line 12361) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 12362) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes) -> Non... method glPatchParameterfv (line 12363) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 12364) | def glPatchParameteri(self, pname: int, value: int) -> None: ... method glPauseTransformFeedback (line 12365) | def glPauseTransformFeedback(self) -> None: ... method glPixelStoref (line 12366) | def glPixelStoref(self, pname: int, param: float) -> None: ... method glPixelStorei (line 12367) | def glPixelStorei(self, pname: int, param: int) -> None: ... method glPointParameterf (line 12368) | def glPointParameterf(self, pname: int, param: float) -> None: ... method glPointParameterfv (line 12369) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 12370) | def glPointParameteri(self, pname: int, param: int) -> None: ... method glPointParameteriv (line 12371) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int])... method glPointSize (line 12372) | def glPointSize(self, size: float) -> None: ... method glPolygonMode (line 12373) | def glPolygonMode(self, face: int, mode: int) -> None: ... method glPolygonOffset (line 12374) | def glPolygonOffset(self, factor: float, units: float) -> None: ... method glPopDebugGroup (line 12375) | def glPopDebugGroup(self) -> None: ... method glPrimitiveRestartIndex (line 12376) | def glPrimitiveRestartIndex(self, index: int) -> None: ... method glProgramBinary (line 12377) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 12378) | def glProgramParameteri(self, program: int, pname: int, value: int) ->... method glProgramUniform1d (line 12379) | def glProgramUniform1d(self, program: int, location: int, v0: float) -... method glProgramUniform1dv (line 12380) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 12381) | def glProgramUniform1f(self, program: int, location: int, v0: float) -... method glProgramUniform1fv (line 12382) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 12383) | def glProgramUniform1i(self, program: int, location: int, v0: int) -> ... method glProgramUniform1iv (line 12384) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 12385) | def glProgramUniform1ui(self, program: int, location: int, v0: int) ->... method glProgramUniform1uiv (line 12386) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 12387) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 12388) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 12389) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 12390) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 12391) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 12392) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 12393) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 12394) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 12395) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 12396) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 12397) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 12398) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 12399) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 12400) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 12401) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 12402) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 12403) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 12404) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 12405) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 12406) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 12407) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 12408) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 12409) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 12410) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 12411) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 12412) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 12413) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 12414) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 12415) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 12416) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 12417) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 12418) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 12419) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 12420) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 12421) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 12422) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 12423) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 12424) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 12425) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 12426) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 12427) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 12428) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 12429) | def glProvokingVertex(self, mode: int) -> None: ... method glPushDebugGroup (line 12430) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glQueryCounter (line 12431) | def glQueryCounter(self, id: int, target: int) -> None: ... method glReadBuffer (line 12432) | def glReadBuffer(self, src: int) -> None: ... method glReadPixels (line 12433) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReadnPixels (line 12434) | def glReadnPixels(self, x: int, y: int, width: int, height: int, forma... method glReleaseShaderCompiler (line 12435) | def glReleaseShaderCompiler(self) -> None: ... method glRenderbufferStorage (line 12436) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 12437) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 12438) | def glResumeTransformFeedback(self) -> None: ... method glSampleCoverage (line 12439) | def glSampleCoverage(self, value: float, invert: int) -> None: ... method glSampleMaski (line 12440) | def glSampleMaski(self, maskNumber: int, mask: int) -> None: ... method glSamplerParameterIiv (line 12441) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 12442) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 12443) | def glSamplerParameterf(self, sampler: int, pname: int, param: float) ... method glSamplerParameterfv (line 12444) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 12445) | def glSamplerParameteri(self, sampler: int, pname: int, param: int) ->... method glSamplerParameteriv (line 12446) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 12447) | def glScissor(self, x: int, y: int, width: int, height: int) -> None: ... method glScissorArrayv (line 12448) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 12449) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 12450) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int]) -> No... method glShaderBinary (line 12451) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 12452) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 12453) | def glStencilFunc(self, func: int, ref: int, mask: int) -> None: ... method glStencilFuncSeparate (line 12454) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 12455) | def glStencilMask(self, mask: int) -> None: ... method glStencilMaskSeparate (line 12456) | def glStencilMaskSeparate(self, face: int, mask: int) -> None: ... method glStencilOp (line 12457) | def glStencilOp(self, fail: int, zfail: int, zpass: int) -> None: ... method glStencilOpSeparate (line 12458) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 12459) | def glTexBuffer(self, target: int, internalformat: int, buffer: int) -... method glTexImage1D (line 12460) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 12461) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 12462) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 12463) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 12464) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 12465) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 12466) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 12467) | def glTexParameterf(self, target: int, pname: int, param: float) -> No... method glTexParameterfv (line 12468) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 12469) | def glTexParameteri(self, target: int, pname: int, param: int) -> None... method glTexParameteriv (line 12470) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 12471) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 12472) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 12473) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 12474) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 12475) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 12476) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 12477) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 12478) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureBarrier (line 12479) | def glTextureBarrier(self) -> None: ... method glTextureBuffer (line 12480) | def glTextureBuffer(self, texture: int, internalformat: int, buffer: i... method glTextureParameterIiv (line 12481) | def glTextureParameterIiv(self, texture: int, pname: int, params: typi... method glTextureParameterIuiv (line 12482) | def glTextureParameterIuiv(self, texture: int, pname: int, params: typ... method glTextureParameterf (line 12483) | def glTextureParameterf(self, texture: int, pname: int, param: float) ... method glTextureParameterfv (line 12484) | def glTextureParameterfv(self, texture: int, pname: int, param: typing... method glTextureParameteri (line 12485) | def glTextureParameteri(self, texture: int, pname: int, param: int) ->... method glTextureParameteriv (line 12486) | def glTextureParameteriv(self, texture: int, pname: int, param: typing... method glTextureStorage1D (line 12487) | def glTextureStorage1D(self, texture: int, levels: int, internalformat... method glTextureStorage2D (line 12488) | def glTextureStorage2D(self, texture: int, levels: int, internalformat... method glTextureStorage2DMultisample (line 12489) | def glTextureStorage2DMultisample(self, texture: int, samples: int, in... method glTextureStorage3D (line 12490) | def glTextureStorage3D(self, texture: int, levels: int, internalformat... method glTextureStorage3DMultisample (line 12491) | def glTextureStorage3DMultisample(self, texture: int, samples: int, in... method glTextureSubImage1D (line 12492) | def glTextureSubImage1D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage2D (line 12493) | def glTextureSubImage2D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage3D (line 12494) | def glTextureSubImage3D(self, texture: int, level: int, xoffset: int, ... method glTextureView (line 12495) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTransformFeedbackBufferBase (line 12496) | def glTransformFeedbackBufferBase(self, xfb: int, index: int, buffer: ... method glUniform1d (line 12497) | def glUniform1d(self, location: int, x: float) -> None: ... method glUniform1dv (line 12498) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 12499) | def glUniform1f(self, location: int, v0: float) -> None: ... method glUniform1fv (line 12500) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 12501) | def glUniform1i(self, location: int, v0: int) -> None: ... method glUniform1iv (line 12502) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 12503) | def glUniform1ui(self, location: int, v0: int) -> None: ... method glUniform1uiv (line 12504) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 12505) | def glUniform2d(self, location: int, x: float, y: float) -> None: ... method glUniform2dv (line 12506) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 12507) | def glUniform2f(self, location: int, v0: float, v1: float) -> None: ... method glUniform2fv (line 12508) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 12509) | def glUniform2i(self, location: int, v0: int, v1: int) -> None: ... method glUniform2iv (line 12510) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 12511) | def glUniform2ui(self, location: int, v0: int, v1: int) -> None: ... method glUniform2uiv (line 12512) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 12513) | def glUniform3d(self, location: int, x: float, y: float, z: float) -> ... method glUniform3dv (line 12514) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 12515) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float) ... method glUniform3fv (line 12516) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 12517) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int) -> Non... method glUniform3iv (line 12518) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 12519) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int) -> No... method glUniform3uiv (line 12520) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 12521) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 12522) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 12523) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 12524) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 12525) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 12526) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 12527) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 12528) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 12529) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 12530) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 12531) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 12532) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 12533) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 12534) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 12535) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 12536) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 12537) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 12538) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 12539) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 12540) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 12541) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 12542) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 12543) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 12544) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 12545) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 12546) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 12547) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 12548) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 12549) | def glUnmapBuffer(self, target: int) -> int: ... method glUnmapNamedBuffer (line 12550) | def glUnmapNamedBuffer(self, buffer: int) -> int: ... method glUseProgram (line 12551) | def glUseProgram(self, program: int) -> None: ... method glUseProgramStages (line 12552) | def glUseProgramStages(self, pipeline: int, stages: int, program: int)... method glValidateProgram (line 12553) | def glValidateProgram(self, program: int) -> None: ... method glValidateProgramPipeline (line 12554) | def glValidateProgramPipeline(self, pipeline: int) -> None: ... method glVertexArrayAttribBinding (line 12555) | def glVertexArrayAttribBinding(self, vaobj: int, attribindex: int, bin... method glVertexArrayAttribFormat (line 12556) | def glVertexArrayAttribFormat(self, vaobj: int, attribindex: int, size... method glVertexArrayAttribIFormat (line 12557) | def glVertexArrayAttribIFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayAttribLFormat (line 12558) | def glVertexArrayAttribLFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayBindingDivisor (line 12559) | def glVertexArrayBindingDivisor(self, vaobj: int, bindingindex: int, d... method glVertexArrayElementBuffer (line 12560) | def glVertexArrayElementBuffer(self, vaobj: int, buffer: int) -> None:... method glVertexAttrib1d (line 12561) | def glVertexAttrib1d(self, index: int, x: float) -> None: ... method glVertexAttrib1dv (line 12562) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1f (line 12563) | def glVertexAttrib1f(self, index: int, x: float) -> None: ... method glVertexAttrib1fv (line 12564) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib1s (line 12565) | def glVertexAttrib1s(self, index: int, x: int) -> None: ... method glVertexAttrib1sv (line 12566) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib2d (line 12567) | def glVertexAttrib2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2dv (line 12568) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2f (line 12569) | def glVertexAttrib2f(self, index: int, x: float, y: float) -> None: ... method glVertexAttrib2fv (line 12570) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib2s (line 12571) | def glVertexAttrib2s(self, index: int, x: int, y: int) -> None: ... method glVertexAttrib2sv (line 12572) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib3d (line 12573) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3dv (line 12574) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3f (line 12575) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float) -... method glVertexAttrib3fv (line 12576) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib3s (line 12577) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int) -> None... method glVertexAttrib3sv (line 12578) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4Nbv (line 12579) | def glVertexAttrib4Nbv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Niv (line 12580) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nsv (line 12581) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4Nub (line 12582) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 12583) | def glVertexAttrib4Nubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4Nuiv (line 12584) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4Nusv (line 12585) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttrib4bv (line 12586) | def glVertexAttrib4bv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4d (line 12587) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 12588) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4f (line 12589) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 12590) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float]) -> ... method glVertexAttrib4iv (line 12591) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4s (line 12592) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int)... method glVertexAttrib4sv (line 12593) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int]) -> No... method glVertexAttrib4ubv (line 12594) | def glVertexAttrib4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttrib4uiv (line 12595) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttrib4usv (line 12596) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribBinding (line 12597) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int) -... method glVertexAttribDivisor (line 12598) | def glVertexAttribDivisor(self, index: int, divisor: int) -> None: ... method glVertexAttribFormat (line 12599) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 12600) | def glVertexAttribI1i(self, index: int, x: int) -> None: ... method glVertexAttribI1iv (line 12601) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI1ui (line 12602) | def glVertexAttribI1ui(self, index: int, x: int) -> None: ... method glVertexAttribI1uiv (line 12603) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI2i (line 12604) | def glVertexAttribI2i(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2iv (line 12605) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI2ui (line 12606) | def glVertexAttribI2ui(self, index: int, x: int, y: int) -> None: ... method glVertexAttribI2uiv (line 12607) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI3i (line 12608) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int) -> Non... method glVertexAttribI3iv (line 12609) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI3ui (line 12610) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int) -> No... method glVertexAttribI3uiv (line 12611) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4bv (line 12612) | def glVertexAttribI4bv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4i (line 12613) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 12614) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4sv (line 12615) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int]) -> N... method glVertexAttribI4ubv (line 12616) | def glVertexAttribI4ubv(self, index: int, v: bytes) -> None: ... method glVertexAttribI4ui (line 12617) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 12618) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribI4usv (line 12619) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int]) -> ... method glVertexAttribIFormat (line 12620) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 12621) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 12622) | def glVertexAttribL1d(self, index: int, x: float) -> None: ... method glVertexAttribL1dv (line 12623) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL2d (line 12624) | def glVertexAttribL2d(self, index: int, x: float, y: float) -> None: ... method glVertexAttribL2dv (line 12625) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL3d (line 12626) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float) ... method glVertexAttribL3dv (line 12627) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribL4d (line 12628) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 12629) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float]) ->... method glVertexAttribLFormat (line 12630) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 12631) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 12632) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 12633) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 12634) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 12635) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 12636) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 12637) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 12638) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 12639) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 12640) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 12641) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int) -> N... method glViewport (line 12642) | def glViewport(self, x: int, y: int, width: int, height: int) -> None:... method glViewportArrayv (line 12643) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 12644) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 12645) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float]) -... method initializeOpenGLFunctions (line 12646) | def initializeOpenGLFunctions(self) -> bool: ... FILE: pyside/stubs/PySide2-stubs/QtPositioning.pyi class QGeoAddress (line 12) | class QGeoAddress(shiboken2.Object): method __init__ (line 14) | def __init__(self, other: QGeoAddress) -> None: ... method __init__ (line 16) | def __init__(self) -> None: ... method city (line 17) | def city(self) -> str: ... method clear (line 18) | def clear(self) -> None: ... method country (line 19) | def country(self) -> str: ... method countryCode (line 20) | def countryCode(self) -> str: ... method county (line 21) | def county(self) -> str: ... method district (line 22) | def district(self) -> str: ... method isEmpty (line 23) | def isEmpty(self) -> bool: ... method isTextGenerated (line 24) | def isTextGenerated(self) -> bool: ... method postalCode (line 25) | def postalCode(self) -> str: ... method setCity (line 26) | def setCity(self, city: str) -> None: ... method setCountry (line 27) | def setCountry(self, country: str) -> None: ... method setCountryCode (line 28) | def setCountryCode(self, countryCode: str) -> None: ... method setCounty (line 29) | def setCounty(self, county: str) -> None: ... method setDistrict (line 30) | def setDistrict(self, district: str) -> None: ... method setPostalCode (line 31) | def setPostalCode(self, postalCode: str) -> None: ... method setState (line 32) | def setState(self, state: str) -> None: ... method setStreet (line 33) | def setStreet(self, street: str) -> None: ... method setText (line 34) | def setText(self, text: str) -> None: ... method state (line 35) | def state(self) -> str: ... method street (line 36) | def street(self) -> str: ... method text (line 37) | def text(self) -> str: ... method __copy__ (line 38) | def __copy__(self) -> None: ... method __eq__ (line 39) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 40) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 41) | def __gt__(self, other: object) -> bool: ... method __le__ (line 42) | def __le__(self, other: object) -> bool: ... method __lt__ (line 43) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 44) | def __ne__(self, other: object) -> bool: ... class QGeoAreaMonitorInfo (line 46) | class QGeoAreaMonitorInfo(shiboken2.Object): method __init__ (line 48) | def __init__(self, other: QGeoAreaMonitorInfo) -> None: ... method __init__ (line 50) | def __init__(self, name: str = ...) -> None: ... method area (line 51) | def area(self) -> QGeoShape: ... method expiration (line 52) | def expiration(self) -> PySide2.QtCore.QDateTime: ... method identifier (line 53) | def identifier(self) -> str: ... method isPersistent (line 54) | def isPersistent(self) -> bool: ... method isValid (line 55) | def isValid(self) -> bool: ... method name (line 56) | def name(self) -> str: ... method notificationParameters (line 57) | def notificationParameters(self) -> dict[str, typing.Any]: ... method setArea (line 58) | def setArea(self, newShape: QGeoShape) -> None: ... method setExpiration (line 59) | def setExpiration(self, expiry: PySide2.QtCore.QDateTime | datetime.da... method setName (line 60) | def setName(self, name: str) -> None: ... method setNotificationParameters (line 61) | def setNotificationParameters(self, parameters: dict[str, typing.Any])... method setPersistent (line 62) | def setPersistent(self, isPersistent: bool) -> None: ... method __copy__ (line 63) | def __copy__(self) -> None: ... method __eq__ (line 64) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 65) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 66) | def __gt__(self, other: object) -> bool: ... method __le__ (line 67) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 68) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 69) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 70) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 71) | def __rlshift__(self, other): ... method __rrshift__ (line 72) | def __rrshift__(self, other): ... method __rshift__ (line 73) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QGeoAreaMonitorSource (line 75) | class QGeoAreaMonitorSource(PySide2.QtCore.QObject): class AreaMonitorFeature (line 76) | class AreaMonitorFeature: method __init__ (line 82) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 83) | def __and__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __bool__ (line 84) | def __bool__(self) -> bool: ... method __eq__ (line 85) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 86) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 87) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 88) | def __hash__(self) -> int: ... method __index__ (line 89) | def __index__(self) -> int: ... method __int__ (line 90) | def __int__(self) -> int: ... method __invert__ (line 91) | def __invert__(self) -> QGeoAreaMonitorSource.AreaMonitorFeatures: ... method __le__ (line 92) | def __le__(self, other: object) -> bool: ... method __lt__ (line 93) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 94) | def __ne__(self, other: object) -> bool: ... method __or__ (line 95) | def __or__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSource... method __rand__ (line 96) | def __rand__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __ror__ (line 97) | def __ror__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __rxor__ (line 98) | def __rxor__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __xor__ (line 99) | def __xor__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... class AreaMonitorFeatures (line 101) | class AreaMonitorFeatures: method __init__ (line 103) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 104) | def __and__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __bool__ (line 105) | def __bool__(self) -> bool: ... method __eq__ (line 106) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 107) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 108) | def __gt__(self, other: object) -> bool: ... method __index__ (line 109) | def __index__(self) -> int: ... method __int__ (line 110) | def __int__(self) -> int: ... method __invert__ (line 111) | def __invert__(self) -> QGeoAreaMonitorSource.AreaMonitorFeatures: ... method __le__ (line 112) | def __le__(self, other: object) -> bool: ... method __lt__ (line 113) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 114) | def __ne__(self, other: object) -> bool: ... method __or__ (line 115) | def __or__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSource... method __rand__ (line 116) | def __rand__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __ror__ (line 117) | def __ror__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __rxor__ (line 118) | def __rxor__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __xor__ (line 119) | def __xor__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... class Error (line 121) | class Error: method __init__ (line 129) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 130) | def __add__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __and__ (line 131) | def __and__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __bool__ (line 132) | def __bool__(self) -> bool: ... method __eq__ (line 133) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 134) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 135) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 136) | def __hash__(self) -> int: ... method __index__ (line 137) | def __index__(self) -> int: ... method __int__ (line 138) | def __int__(self) -> int: ... method __le__ (line 139) | def __le__(self, other: object) -> bool: ... method __lt__ (line 140) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 141) | def __mul__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __ne__ (line 142) | def __ne__(self, other: object) -> bool: ... method __or__ (line 143) | def __or__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSource... method __pos__ (line 144) | def __pos__(self): ... method __radd__ (line 145) | def __radd__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __rand__ (line 146) | def __rand__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __rmul__ (line 147) | def __rmul__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __ror__ (line 148) | def __ror__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __rsub__ (line 149) | def __rsub__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __rxor__ (line 150) | def __rxor__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSour... method __sub__ (line 151) | def __sub__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __xor__ (line 152) | def __xor__(self, other: typing.SupportsInt) -> QGeoAreaMonitorSourc... method __init__ (line 164) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method activeMonitors (line 166) | def activeMonitors(self, lookupArea: QGeoShape) -> list[QGeoAreaMonito... method activeMonitors (line 168) | def activeMonitors(self) -> list[QGeoAreaMonitorInfo]: ... method availableSources (line 170) | def availableSources() -> list[str]: ... method createDefaultSource (line 172) | def createDefaultSource(parent: PySide2.QtCore.QObject | None) -> QGeo... method createSource (line 174) | def createSource(sourceName: str, parent: PySide2.QtCore.QObject | Non... method positionInfoSource (line 175) | def positionInfoSource(self) -> QGeoPositionInfoSource: ... method requestUpdate (line 176) | def requestUpdate(self, monitor: QGeoAreaMonitorInfo, signal: bytes) -... method setPositionInfoSource (line 177) | def setPositionInfoSource(self, source: QGeoPositionInfoSource) -> Non... method sourceName (line 178) | def sourceName(self) -> str: ... method startMonitoring (line 179) | def startMonitoring(self, monitor: QGeoAreaMonitorInfo) -> bool: ... method stopMonitoring (line 180) | def stopMonitoring(self, monitor: QGeoAreaMonitorInfo) -> bool: ... method supportedAreaMonitorFeatures (line 181) | def supportedAreaMonitorFeatures(self) -> QGeoAreaMonitorSource.AreaMo... class QGeoCircle (line 183) | class QGeoCircle(QGeoShape): method __init__ (line 185) | def __init__(self, center: QGeoCoordinate, radius: float = ...) -> Non... method __init__ (line 187) | def __init__(self, other: QGeoCircle) -> None: ... method __init__ (line 189) | def __init__(self, other: QGeoShape) -> None: ... method __init__ (line 191) | def __init__(self) -> None: ... method center (line 192) | def center(self) -> QGeoCoordinate: ... method extendCircle (line 193) | def extendCircle(self, coordinate: QGeoCoordinate) -> None: ... method radius (line 194) | def radius(self) -> float: ... method setCenter (line 195) | def setCenter(self, center: QGeoCoordinate) -> None: ... method setRadius (line 196) | def setRadius(self, radius: float) -> None: ... method toString (line 197) | def toString(self) -> str: ... method translate (line 198) | def translate(self, degreesLatitude: float, degreesLongitude: float) -... method translated (line 199) | def translated(self, degreesLatitude: float, degreesLongitude: float) ... method __copy__ (line 200) | def __copy__(self) -> None: ... method __eq__ (line 201) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 202) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 203) | def __gt__(self, other: object) -> bool: ... method __le__ (line 204) | def __le__(self, other: object) -> bool: ... method __lt__ (line 205) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 206) | def __ne__(self, other: object) -> bool: ... class QGeoCoordinate (line 208) | class QGeoCoordinate(shiboken2.Object): class CoordinateFormat (line 209) | class CoordinateFormat: method __init__ (line 219) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 220) | def __add__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __and__ (line 221) | def __and__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __bool__ (line 222) | def __bool__(self) -> bool: ... method __eq__ (line 223) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 224) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 225) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 226) | def __hash__(self) -> int: ... method __index__ (line 227) | def __index__(self) -> int: ... method __int__ (line 228) | def __int__(self) -> int: ... method __le__ (line 229) | def __le__(self, other: object) -> bool: ... method __lt__ (line 230) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 231) | def __mul__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __ne__ (line 232) | def __ne__(self, other: object) -> bool: ... method __or__ (line 233) | def __or__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coordi... method __pos__ (line 234) | def __pos__(self): ... method __radd__ (line 235) | def __radd__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __rand__ (line 236) | def __rand__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __rmul__ (line 237) | def __rmul__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __ror__ (line 238) | def __ror__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __rsub__ (line 239) | def __rsub__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __rxor__ (line 240) | def __rxor__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __sub__ (line 241) | def __sub__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __xor__ (line 242) | def __xor__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... class CoordinateType (line 244) | class CoordinateType: method __init__ (line 251) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 252) | def __add__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __and__ (line 253) | def __and__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __bool__ (line 254) | def __bool__(self) -> bool: ... method __eq__ (line 255) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 256) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 257) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 258) | def __hash__(self) -> int: ... method __index__ (line 259) | def __index__(self) -> int: ... method __int__ (line 260) | def __int__(self) -> int: ... method __le__ (line 261) | def __le__(self, other: object) -> bool: ... method __lt__ (line 262) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 263) | def __mul__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __ne__ (line 264) | def __ne__(self, other: object) -> bool: ... method __or__ (line 265) | def __or__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coordi... method __pos__ (line 266) | def __pos__(self): ... method __radd__ (line 267) | def __radd__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __rand__ (line 268) | def __rand__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __rmul__ (line 269) | def __rmul__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __ror__ (line 270) | def __ror__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __rsub__ (line 271) | def __rsub__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __rxor__ (line 272) | def __rxor__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coor... method __sub__ (line 273) | def __sub__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __xor__ (line 274) | def __xor__(self, other: typing.SupportsInt) -> QGeoCoordinate.Coord... method __init__ (line 285) | def __init__(self, latitude: float, longitude: float, altitude: float)... method __init__ (line 287) | def __init__(self, latitude: float, longitude: float) -> None: ... method __init__ (line 289) | def __init__(self, other: QGeoCoordinate) -> None: ... method __init__ (line 291) | def __init__(self) -> None: ... method altitude (line 292) | def altitude(self) -> float: ... method atDistanceAndAzimuth (line 293) | def atDistanceAndAzimuth(self, distance: float, azimuth: float, distan... method azimuthTo (line 294) | def azimuthTo(self, other: QGeoCoordinate) -> float: ... method distanceTo (line 295) | def distanceTo(self, other: QGeoCoordinate) -> float: ... method isValid (line 296) | def isValid(self) -> bool: ... method latitude (line 297) | def latitude(self) -> float: ... method longitude (line 298) | def longitude(self) -> float: ... method setAltitude (line 299) | def setAltitude(self, altitude: float) -> None: ... method setLatitude (line 300) | def setLatitude(self, latitude: float) -> None: ... method setLongitude (line 301) | def setLongitude(self, longitude: float) -> None: ... method toString (line 302) | def toString(self, format: QGeoCoordinate.CoordinateFormat = ...) -> s... method type (line 303) | def type(self) -> QGeoCoordinate.CoordinateType: ... method __copy__ (line 304) | def __copy__(self) -> None: ... method __eq__ (line 305) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 306) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 307) | def __gt__(self, other: object) -> bool: ... method __le__ (line 308) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 309) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 310) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 311) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 312) | def __rlshift__(self, other): ... method __rrshift__ (line 313) | def __rrshift__(self, other): ... method __rshift__ (line 314) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QGeoLocation (line 316) | class QGeoLocation(shiboken2.Object): method __init__ (line 318) | def __init__(self, other: QGeoLocation) -> None: ... method __init__ (line 320) | def __init__(self) -> None: ... method address (line 321) | def address(self) -> QGeoAddress: ... method boundingBox (line 322) | def boundingBox(self) -> QGeoRectangle: ... method coordinate (line 323) | def coordinate(self) -> QGeoCoordinate: ... method extendedAttributes (line 324) | def extendedAttributes(self) -> dict[str, typing.Any]: ... method isEmpty (line 325) | def isEmpty(self) -> bool: ... method setAddress (line 326) | def setAddress(self, address: QGeoAddress) -> None: ... method setBoundingBox (line 327) | def setBoundingBox(self, box: QGeoRectangle) -> None: ... method setCoordinate (line 328) | def setCoordinate(self, position: QGeoCoordinate) -> None: ... method setExtendedAttributes (line 329) | def setExtendedAttributes(self, data: dict[str, typing.Any]) -> None: ... method __copy__ (line 330) | def __copy__(self) -> None: ... method __eq__ (line 331) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 332) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 333) | def __gt__(self, other: object) -> bool: ... method __le__ (line 334) | def __le__(self, other: object) -> bool: ... method __lt__ (line 335) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 336) | def __ne__(self, other: object) -> bool: ... class QGeoPath (line 338) | class QGeoPath(QGeoShape): method __init__ (line 340) | def __init__(self, path: typing.Iterable[QGeoCoordinate], width: float... method __init__ (line 342) | def __init__(self, other: QGeoPath) -> None: ... method __init__ (line 344) | def __init__(self, other: QGeoShape) -> None: ... method __init__ (line 346) | def __init__(self) -> None: ... method addCoordinate (line 347) | def addCoordinate(self, coordinate: QGeoCoordinate) -> None: ... method clearPath (line 348) | def clearPath(self) -> None: ... method containsCoordinate (line 349) | def containsCoordinate(self, coordinate: QGeoCoordinate) -> bool: ... method coordinateAt (line 350) | def coordinateAt(self, index: int) -> QGeoCoordinate: ... method insertCoordinate (line 351) | def insertCoordinate(self, index: int, coordinate: QGeoCoordinate) -> ... method length (line 352) | def length(self, indexFrom: int = ..., indexTo: int = ...) -> float: ... method path (line 353) | def path(self) -> list[QGeoCoordinate]: ... method removeCoordinate (line 355) | def removeCoordinate(self, index: int) -> None: ... method removeCoordinate (line 357) | def removeCoordinate(self, coordinate: QGeoCoordinate) -> None: ... method replaceCoordinate (line 358) | def replaceCoordinate(self, index: int, coordinate: QGeoCoordinate) ->... method setPath (line 359) | def setPath(self, path: typing.Iterable[QGeoCoordinate]) -> None: ... method setVariantPath (line 360) | def setVariantPath(self, path: typing.Iterable[typing.Any]) -> None: ... method setWidth (line 361) | def setWidth(self, width: float) -> None: ... method size (line 362) | def size(self) -> int: ... method toString (line 363) | def toString(self) -> str: ... method translate (line 364) | def translate(self, degreesLatitude: float, degreesLongitude: float) -... method translated (line 365) | def translated(self, degreesLatitude: float, degreesLongitude: float) ... method variantPath (line 366) | def variantPath(self) -> list[typing.Any]: ... method width (line 367) | def width(self) -> float: ... method __copy__ (line 368) | def __copy__(self) -> None: ... method __eq__ (line 369) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 370) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 371) | def __gt__(self, other: object) -> bool: ... method __le__ (line 372) | def __le__(self, other: object) -> bool: ... method __lt__ (line 373) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 374) | def __ne__(self, other: object) -> bool: ... class QGeoPolygon (line 376) | class QGeoPolygon(QGeoShape): method __init__ (line 378) | def __init__(self, path: typing.Iterable[QGeoCoordinate]) -> None: ... method __init__ (line 380) | def __init__(self, other: QGeoPolygon) -> None: ... method __init__ (line 382) | def __init__(self, other: QGeoShape) -> None: ... method __init__ (line 384) | def __init__(self) -> None: ... method addCoordinate (line 385) | def addCoordinate(self, coordinate: QGeoCoordinate) -> None: ... method addHole (line 387) | def addHole(self, holePath: typing.Iterable[QGeoCoordinate]) -> None: ... method addHole (line 389) | def addHole(self, holePath: typing.Any) -> None: ... method containsCoordinate (line 390) | def containsCoordinate(self, coordinate: QGeoCoordinate) -> bool: ... method coordinateAt (line 391) | def coordinateAt(self, index: int) -> QGeoCoordinate: ... method hole (line 392) | def hole(self, index: int) -> list[typing.Any]: ... method holePath (line 393) | def holePath(self, index: int) -> list[QGeoCoordinate]: ... method holesCount (line 394) | def holesCount(self) -> int: ... method insertCoordinate (line 395) | def insertCoordinate(self, index: int, coordinate: QGeoCoordinate) -> ... method length (line 396) | def length(self, indexFrom: int = ..., indexTo: int = ...) -> float: ... method path (line 397) | def path(self) -> list[QGeoCoordinate]: ... method perimeter (line 398) | def perimeter(self) -> list[typing.Any]: ... method removeCoordinate (line 400) | def removeCoordinate(self, index: int) -> None: ... method removeCoordinate (line 402) | def removeCoordinate(self, coordinate: QGeoCoordinate) -> None: ... method removeHole (line 403) | def removeHole(self, index: int) -> None: ... method replaceCoordinate (line 404) | def replaceCoordinate(self, index: int, coordinate: QGeoCoordinate) ->... method setPath (line 405) | def setPath(self, path: typing.Iterable[QGeoCoordinate]) -> None: ... method setPerimeter (line 406) | def setPerimeter(self, path: typing.Iterable[typing.Any]) -> None: ... method size (line 407) | def size(self) -> int: ... method toString (line 408) | def toString(self) -> str: ... method translate (line 409) | def translate(self, degreesLatitude: float, degreesLongitude: float) -... method translated (line 410) | def translated(self, degreesLatitude: float, degreesLongitude: float) ... method __copy__ (line 411) | def __copy__(self) -> None: ... method __eq__ (line 412) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 413) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 414) | def __gt__(self, other: object) -> bool: ... method __le__ (line 415) | def __le__(self, other: object) -> bool: ... method __lt__ (line 416) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 417) | def __ne__(self, other: object) -> bool: ... class QGeoPositionInfo (line 419) | class QGeoPositionInfo(shiboken2.Object): class Attribute (line 420) | class Attribute: method __init__ (line 430) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 431) | def __add__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Att... method __and__ (line 432) | def __and__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Att... method __bool__ (line 433) | def __bool__(self) -> bool: ... method __eq__ (line 434) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 435) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 436) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 437) | def __hash__(self) -> int: ... method __index__ (line 438) | def __index__(self) -> int: ... method __int__ (line 439) | def __int__(self) -> int: ... method __le__ (line 440) | def __le__(self, other: object) -> bool: ... method __lt__ (line 441) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 442) | def __mul__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Att... method __ne__ (line 443) | def __ne__(self, other: object) -> bool: ... method __or__ (line 444) | def __or__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Attr... method __pos__ (line 445) | def __pos__(self): ... method __radd__ (line 446) | def __radd__(self, other: typing.SupportsInt) -> QGeoPositionInfo.At... method __rand__ (line 447) | def __rand__(self, other: typing.SupportsInt) -> QGeoPositionInfo.At... method __rmul__ (line 448) | def __rmul__(self, other: typing.SupportsInt) -> QGeoPositionInfo.At... method __ror__ (line 449) | def __ror__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Att... method __rsub__ (line 450) | def __rsub__(self, other: typing.SupportsInt) -> QGeoPositionInfo.At... method __rxor__ (line 451) | def __rxor__(self, other: typing.SupportsInt) -> QGeoPositionInfo.At... method __sub__ (line 452) | def __sub__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Att... method __xor__ (line 453) | def __xor__(self, other: typing.SupportsInt) -> QGeoPositionInfo.Att... method __init__ (line 461) | def __init__(self, coordinate: QGeoCoordinate, updateTime: PySide2.QtC... method __init__ (line 463) | def __init__(self, other: QGeoPositionInfo) -> None: ... method __init__ (line 465) | def __init__(self) -> None: ... method attribute (line 466) | def attribute(self, attribute: QGeoPositionInfo.Attribute) -> float: ... method coordinate (line 467) | def coordinate(self) -> QGeoCoordinate: ... method hasAttribute (line 468) | def hasAttribute(self, attribute: QGeoPositionInfo.Attribute) -> bool:... method isValid (line 469) | def isValid(self) -> bool: ... method removeAttribute (line 470) | def removeAttribute(self, attribute: QGeoPositionInfo.Attribute) -> No... method setAttribute (line 471) | def setAttribute(self, attribute: QGeoPositionInfo.Attribute, value: f... method setCoordinate (line 472) | def setCoordinate(self, coordinate: QGeoCoordinate) -> None: ... method setTimestamp (line 473) | def setTimestamp(self, timestamp: PySide2.QtCore.QDateTime | datetime.... method timestamp (line 474) | def timestamp(self) -> PySide2.QtCore.QDateTime: ... method __copy__ (line 475) | def __copy__(self) -> None: ... method __eq__ (line 476) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 477) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 478) | def __gt__(self, other: object) -> bool: ... method __le__ (line 479) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 480) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 481) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 482) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 483) | def __rlshift__(self, other): ... method __rrshift__ (line 484) | def __rrshift__(self, other): ... method __rshift__ (line 485) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QGeoPositionInfoSource (line 487) | class QGeoPositionInfoSource(PySide2.QtCore.QObject): class Error (line 488) | class Error: method __init__ (line 496) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 497) | def __add__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __and__ (line 498) | def __and__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __bool__ (line 499) | def __bool__(self) -> bool: ... method __eq__ (line 500) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 501) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 502) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 503) | def __hash__(self) -> int: ... method __index__ (line 504) | def __index__(self) -> int: ... method __int__ (line 505) | def __int__(self) -> int: ... method __le__ (line 506) | def __le__(self, other: object) -> bool: ... method __lt__ (line 507) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 508) | def __mul__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __ne__ (line 509) | def __ne__(self, other: object) -> bool: ... method __or__ (line 510) | def __or__(self, other: typing.SupportsInt) -> QGeoPositionInfoSourc... method __pos__ (line 511) | def __pos__(self): ... method __radd__ (line 512) | def __radd__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __rand__ (line 513) | def __rand__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __rmul__ (line 514) | def __rmul__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __ror__ (line 515) | def __ror__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __rsub__ (line 516) | def __rsub__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __rxor__ (line 517) | def __rxor__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __sub__ (line 518) | def __sub__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __xor__ (line 519) | def __xor__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... class PositioningMethod (line 521) | class PositioningMethod: method __init__ (line 529) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 530) | def __and__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __bool__ (line 531) | def __bool__(self) -> bool: ... method __eq__ (line 532) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 533) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 534) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 535) | def __hash__(self) -> int: ... method __index__ (line 536) | def __index__(self) -> int: ... method __int__ (line 537) | def __int__(self) -> int: ... method __invert__ (line 538) | def __invert__(self) -> QGeoPositionInfoSource.PositioningMethods: ... method __le__ (line 539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 540) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 541) | def __ne__(self, other: object) -> bool: ... method __or__ (line 542) | def __or__(self, other: typing.SupportsInt) -> QGeoPositionInfoSourc... method __rand__ (line 543) | def __rand__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __ror__ (line 544) | def __ror__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __rxor__ (line 545) | def __rxor__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __xor__ (line 546) | def __xor__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... class PositioningMethods (line 548) | class PositioningMethods: method __init__ (line 550) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 551) | def __and__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __bool__ (line 552) | def __bool__(self) -> bool: ... method __eq__ (line 553) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 554) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 555) | def __gt__(self, other: object) -> bool: ... method __index__ (line 556) | def __index__(self) -> int: ... method __int__ (line 557) | def __int__(self) -> int: ... method __invert__ (line 558) | def __invert__(self) -> QGeoPositionInfoSource.PositioningMethods: ... method __le__ (line 559) | def __le__(self, other: object) -> bool: ... method __lt__ (line 560) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 561) | def __ne__(self, other: object) -> bool: ... method __or__ (line 562) | def __or__(self, other: typing.SupportsInt) -> QGeoPositionInfoSourc... method __rand__ (line 563) | def __rand__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __ror__ (line 564) | def __ror__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __rxor__ (line 565) | def __rxor__(self, other: typing.SupportsInt) -> QGeoPositionInfoSou... method __xor__ (line 566) | def __xor__(self, other: typing.SupportsInt) -> QGeoPositionInfoSour... method __init__ (line 580) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method availableSources (line 582) | def availableSources() -> list[str]: ... method backendProperty (line 583) | def backendProperty(self, name: str) -> typing.Any: ... method createDefaultSource (line 586) | def createDefaultSource(parameters: dict[str, typing.Any], parent: PyS... method createDefaultSource (line 589) | def createDefaultSource(parent: PySide2.QtCore.QObject | None) -> QGeo... method createSource (line 592) | def createSource(sourceName: str, parameters: dict[str, typing.Any], p... method createSource (line 595) | def createSource(sourceName: str, parent: PySide2.QtCore.QObject | Non... method lastKnownPosition (line 596) | def lastKnownPosition(self, fromSatellitePositioningMethodsOnly: bool ... method minimumUpdateInterval (line 597) | def minimumUpdateInterval(self) -> int: ... method preferredPositioningMethods (line 598) | def preferredPositioningMethods(self) -> QGeoPositionInfoSource.Positi... method requestUpdate (line 599) | def requestUpdate(self, timeout: int = ...) -> None: ... method setBackendProperty (line 600) | def setBackendProperty(self, name: str, value: typing.Any) -> bool: ... method setPreferredPositioningMethods (line 601) | def setPreferredPositioningMethods(self, methods: QGeoPositionInfoSour... method setUpdateInterval (line 602) | def setUpdateInterval(self, msec: int) -> None: ... method sourceName (line 603) | def sourceName(self) -> str: ... method startUpdates (line 604) | def startUpdates(self) -> None: ... method stopUpdates (line 605) | def stopUpdates(self) -> None: ... method supportedPositioningMethods (line 606) | def supportedPositioningMethods(self) -> QGeoPositionInfoSource.Positi... method updateInterval (line 607) | def updateInterval(self) -> int: ... class QGeoPositionInfoSourceFactory (line 609) | class QGeoPositionInfoSourceFactory(shiboken2.Object): method __init__ (line 610) | def __init__(self) -> None: ... method areaMonitor (line 611) | def areaMonitor(self, parent: PySide2.QtCore.QObject | None) -> QGeoAr... method positionInfoSource (line 612) | def positionInfoSource(self, parent: PySide2.QtCore.QObject | None) ->... method satelliteInfoSource (line 613) | def satelliteInfoSource(self, parent: PySide2.QtCore.QObject | None) -... class QGeoRectangle (line 615) | class QGeoRectangle(QGeoShape): method __init__ (line 617) | def __init__(self, center: QGeoCoordinate, degreesWidth: float, degree... method __init__ (line 619) | def __init__(self, topLeft: QGeoCoordinate, bottomRight: QGeoCoordinat... method __init__ (line 621) | def __init__(self, other: QGeoRectangle) -> None: ... method __init__ (line 623) | def __init__(self, other: QGeoShape) -> None: ... method __init__ (line 625) | def __init__(self, coordinates: typing.Iterable[QGeoCoordinate]) -> No... method __init__ (line 627) | def __init__(self) -> None: ... method bottomLeft (line 628) | def bottomLeft(self) -> QGeoCoordinate: ... method bottomRight (line 629) | def bottomRight(self) -> QGeoCoordinate: ... method center (line 630) | def center(self) -> QGeoCoordinate: ... method contains (line 632) | def contains(self, rectangle: QGeoRectangle) -> bool: ... method contains (line 634) | def contains(self, coordinate: QGeoCoordinate) -> bool: ... method extendRectangle (line 635) | def extendRectangle(self, coordinate: QGeoCoordinate) -> None: ... method height (line 636) | def height(self) -> float: ... method intersects (line 637) | def intersects(self, rectangle: QGeoRectangle) -> bool: ... method setBottomLeft (line 638) | def setBottomLeft(self, bottomLeft: QGeoCoordinate) -> None: ... method setBottomRight (line 639) | def setBottomRight(self, bottomRight: QGeoCoordinate) -> None: ... method setCenter (line 640) | def setCenter(self, center: QGeoCoordinate) -> None: ... method setHeight (line 641) | def setHeight(self, degreesHeight: float) -> None: ... method setTopLeft (line 642) | def setTopLeft(self, topLeft: QGeoCoordinate) -> None: ... method setTopRight (line 643) | def setTopRight(self, topRight: QGeoCoordinate) -> None: ... method setWidth (line 644) | def setWidth(self, degreesWidth: float) -> None: ... method toString (line 645) | def toString(self) -> str: ... method topLeft (line 646) | def topLeft(self) -> QGeoCoordinate: ... method topRight (line 647) | def topRight(self) -> QGeoCoordinate: ... method translate (line 648) | def translate(self, degreesLatitude: float, degreesLongitude: float) -... method translated (line 649) | def translated(self, degreesLatitude: float, degreesLongitude: float) ... method united (line 650) | def united(self, rectangle: QGeoRectangle) -> QGeoRectangle: ... method width (line 651) | def width(self) -> float: ... method __copy__ (line 652) | def __copy__(self) -> None: ... method __eq__ (line 653) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 654) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 655) | def __gt__(self, other: object) -> bool: ... method __ior__ (line 656) | def __ior__(self, rectangle: QGeoRectangle) -> QGeoRectangle: ... method __le__ (line 657) | def __le__(self, other: object) -> bool: ... method __lt__ (line 658) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 659) | def __ne__(self, other: object) -> bool: ... method __or__ (line 660) | def __or__(self, rectangle: QGeoRectangle) -> QGeoRectangle: ... method __ror__ (line 661) | def __ror__(self, other): ... class QGeoSatelliteInfo (line 663) | class QGeoSatelliteInfo(shiboken2.Object): class Attribute (line 664) | class Attribute: method __init__ (line 670) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 671) | def __add__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.At... method __and__ (line 672) | def __and__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.At... method __bool__ (line 673) | def __bool__(self) -> bool: ... method __eq__ (line 674) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 675) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 676) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 677) | def __hash__(self) -> int: ... method __index__ (line 678) | def __index__(self) -> int: ... method __int__ (line 679) | def __int__(self) -> int: ... method __le__ (line 680) | def __le__(self, other: object) -> bool: ... method __lt__ (line 681) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 682) | def __mul__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.At... method __ne__ (line 683) | def __ne__(self, other: object) -> bool: ... method __or__ (line 684) | def __or__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Att... method __pos__ (line 685) | def __pos__(self): ... method __radd__ (line 686) | def __radd__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.A... method __rand__ (line 687) | def __rand__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.A... method __rmul__ (line 688) | def __rmul__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.A... method __ror__ (line 689) | def __ror__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.At... method __rsub__ (line 690) | def __rsub__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.A... method __rxor__ (line 691) | def __rxor__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.A... method __sub__ (line 692) | def __sub__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.At... method __xor__ (line 693) | def __xor__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.At... class SatelliteSystem (line 695) | class SatelliteSystem: method __init__ (line 702) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 703) | def __add__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sa... method __and__ (line 704) | def __and__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sa... method __bool__ (line 705) | def __bool__(self) -> bool: ... method __eq__ (line 706) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 707) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 708) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 709) | def __hash__(self) -> int: ... method __index__ (line 710) | def __index__(self) -> int: ... method __int__ (line 711) | def __int__(self) -> int: ... method __le__ (line 712) | def __le__(self, other: object) -> bool: ... method __lt__ (line 713) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 714) | def __mul__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sa... method __ne__ (line 715) | def __ne__(self, other: object) -> bool: ... method __or__ (line 716) | def __or__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sat... method __pos__ (line 717) | def __pos__(self): ... method __radd__ (line 718) | def __radd__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.S... method __rand__ (line 719) | def __rand__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.S... method __rmul__ (line 720) | def __rmul__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.S... method __ror__ (line 721) | def __ror__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sa... method __rsub__ (line 722) | def __rsub__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.S... method __rxor__ (line 723) | def __rxor__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.S... method __sub__ (line 724) | def __sub__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sa... method __xor__ (line 725) | def __xor__(self, other: typing.SupportsInt) -> QGeoSatelliteInfo.Sa... method __init__ (line 732) | def __init__(self, other: QGeoSatelliteInfo) -> None: ... method __init__ (line 734) | def __init__(self) -> None: ... method attribute (line 735) | def attribute(self, attribute: QGeoSatelliteInfo.Attribute) -> float: ... method hasAttribute (line 736) | def hasAttribute(self, attribute: QGeoSatelliteInfo.Attribute) -> bool... method removeAttribute (line 737) | def removeAttribute(self, attribute: QGeoSatelliteInfo.Attribute) -> N... method satelliteIdentifier (line 738) | def satelliteIdentifier(self) -> int: ... method satelliteSystem (line 739) | def satelliteSystem(self) -> QGeoSatelliteInfo.SatelliteSystem: ... method setAttribute (line 740) | def setAttribute(self, attribute: QGeoSatelliteInfo.Attribute, value: ... method setSatelliteIdentifier (line 741) | def setSatelliteIdentifier(self, satId: int) -> None: ... method setSatelliteSystem (line 742) | def setSatelliteSystem(self, system: QGeoSatelliteInfo.SatelliteSystem... method setSignalStrength (line 743) | def setSignalStrength(self, signalStrength: int) -> None: ... method signalStrength (line 744) | def signalStrength(self) -> int: ... method __copy__ (line 745) | def __copy__(self) -> None: ... method __eq__ (line 746) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 747) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 748) | def __gt__(self, other: object) -> bool: ... method __le__ (line 749) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 750) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 751) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 752) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 753) | def __rlshift__(self, other): ... method __rrshift__ (line 754) | def __rrshift__(self, other): ... method __rshift__ (line 755) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QGeoSatelliteInfoSource (line 757) | class QGeoSatelliteInfoSource(PySide2.QtCore.QObject): class Error (line 758) | class Error: method __init__ (line 766) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 767) | def __add__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSou... method __and__ (line 768) | def __and__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSou... method __bool__ (line 769) | def __bool__(self) -> bool: ... method __eq__ (line 770) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 771) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 772) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 773) | def __hash__(self) -> int: ... method __index__ (line 774) | def __index__(self) -> int: ... method __int__ (line 775) | def __int__(self) -> int: ... method __le__ (line 776) | def __le__(self, other: object) -> bool: ... method __lt__ (line 777) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 778) | def __mul__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSou... method __ne__ (line 779) | def __ne__(self, other: object) -> bool: ... method __or__ (line 780) | def __or__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSour... method __pos__ (line 781) | def __pos__(self): ... method __radd__ (line 782) | def __radd__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSo... method __rand__ (line 783) | def __rand__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSo... method __rmul__ (line 784) | def __rmul__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSo... method __ror__ (line 785) | def __ror__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSou... method __rsub__ (line 786) | def __rsub__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSo... method __rxor__ (line 787) | def __rxor__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSo... method __sub__ (line 788) | def __sub__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSou... method __xor__ (line 789) | def __xor__(self, other: typing.SupportsInt) -> QGeoSatelliteInfoSou... method __init__ (line 799) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method availableSources (line 801) | def availableSources() -> list[str]: ... method createDefaultSource (line 804) | def createDefaultSource(parameters: dict[str, typing.Any], parent: PyS... method createDefaultSource (line 807) | def createDefaultSource(parent: PySide2.QtCore.QObject | None) -> QGeo... method createSource (line 810) | def createSource(sourceName: str, parameters: dict[str, typing.Any], p... method createSource (line 813) | def createSource(sourceName: str, parent: PySide2.QtCore.QObject | Non... method minimumUpdateInterval (line 814) | def minimumUpdateInterval(self) -> int: ... method requestUpdate (line 815) | def requestUpdate(self, timeout: int = ...) -> None: ... method setUpdateInterval (line 816) | def setUpdateInterval(self, msec: int) -> None: ... method sourceName (line 817) | def sourceName(self) -> str: ... method startUpdates (line 818) | def startUpdates(self) -> None: ... method stopUpdates (line 819) | def stopUpdates(self) -> None: ... method updateInterval (line 820) | def updateInterval(self) -> int: ... class QGeoShape (line 822) | class QGeoShape(shiboken2.Object): class ShapeType (line 823) | class ShapeType: method __init__ (line 832) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 833) | def __add__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType:... method __and__ (line 834) | def __and__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType:... method __bool__ (line 835) | def __bool__(self) -> bool: ... method __eq__ (line 836) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 837) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 838) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 839) | def __hash__(self) -> int: ... method __index__ (line 840) | def __index__(self) -> int: ... method __int__ (line 841) | def __int__(self) -> int: ... method __le__ (line 842) | def __le__(self, other: object) -> bool: ... method __lt__ (line 843) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 844) | def __mul__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType:... method __ne__ (line 845) | def __ne__(self, other: object) -> bool: ... method __or__ (line 846) | def __or__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType: ... method __pos__ (line 847) | def __pos__(self): ... method __radd__ (line 848) | def __radd__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType... method __rand__ (line 849) | def __rand__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType... method __rmul__ (line 850) | def __rmul__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType... method __ror__ (line 851) | def __ror__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType:... method __rsub__ (line 852) | def __rsub__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType... method __rxor__ (line 853) | def __rxor__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType... method __sub__ (line 854) | def __sub__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType:... method __xor__ (line 855) | def __xor__(self, other: typing.SupportsInt) -> QGeoShape.ShapeType:... method __init__ (line 862) | def __init__(self, other: QGeoShape) -> None: ... method __init__ (line 864) | def __init__(self) -> None: ... method boundingGeoRectangle (line 865) | def boundingGeoRectangle(self) -> QGeoRectangle: ... method center (line 866) | def center(self) -> QGeoCoordinate: ... method contains (line 867) | def contains(self, coordinate: QGeoCoordinate) -> bool: ... method extendShape (line 868) | def extendShape(self, coordinate: QGeoCoordinate) -> None: ... method isEmpty (line 869) | def isEmpty(self) -> bool: ... method isValid (line 870) | def isValid(self) -> bool: ... method toString (line 871) | def toString(self) -> str: ... method type (line 872) | def type(self) -> QGeoShape.ShapeType: ... method __copy__ (line 873) | def __copy__(self) -> None: ... method __eq__ (line 874) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 875) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 876) | def __gt__(self, other: object) -> bool: ... method __le__ (line 877) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 878) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 879) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 880) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 881) | def __rlshift__(self, other): ... method __rrshift__ (line 882) | def __rrshift__(self, other): ... method __rshift__ (line 883) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QNmeaPositionInfoSource (line 885) | class QNmeaPositionInfoSource(QGeoPositionInfoSource): class UpdateMode (line 886) | class UpdateMode: method __init__ (line 892) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 893) | def __add__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSou... method __and__ (line 894) | def __and__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSou... method __bool__ (line 895) | def __bool__(self) -> bool: ... method __eq__ (line 896) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 897) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 898) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 899) | def __hash__(self) -> int: ... method __index__ (line 900) | def __index__(self) -> int: ... method __int__ (line 901) | def __int__(self) -> int: ... method __le__ (line 902) | def __le__(self, other: object) -> bool: ... method __lt__ (line 903) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 904) | def __mul__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSou... method __ne__ (line 905) | def __ne__(self, other: object) -> bool: ... method __or__ (line 906) | def __or__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSour... method __pos__ (line 907) | def __pos__(self): ... method __radd__ (line 908) | def __radd__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSo... method __rand__ (line 909) | def __rand__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSo... method __rmul__ (line 910) | def __rmul__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSo... method __ror__ (line 911) | def __ror__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSou... method __rsub__ (line 912) | def __rsub__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSo... method __rxor__ (line 913) | def __rxor__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSo... method __sub__ (line 914) | def __sub__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSou... method __xor__ (line 915) | def __xor__(self, other: typing.SupportsInt) -> QNmeaPositionInfoSou... method __init__ (line 919) | def __init__(self, updateMode: QNmeaPositionInfoSource.UpdateMode, par... method device (line 920) | def device(self) -> PySide2.QtCore.QIODevice: ... method error (line 921) | def error(self) -> QGeoPositionInfoSource.Error: ... # type: ignore[o... method lastKnownPosition (line 922) | def lastKnownPosition(self, fromSatellitePositioningMethodsOnly: bool ... method minimumUpdateInterval (line 923) | def minimumUpdateInterval(self) -> int: ... method parsePosInfoFromNmeaData (line 924) | def parsePosInfoFromNmeaData(self, data: bytes, size: int, posInfo: QG... method requestUpdate (line 925) | def requestUpdate(self, timeout: int = ...) -> None: ... method setDevice (line 926) | def setDevice(self, source: PySide2.QtCore.QIODevice) -> None: ... method setUpdateInterval (line 927) | def setUpdateInterval(self, msec: int) -> None: ... method setUserEquivalentRangeError (line 928) | def setUserEquivalentRangeError(self, uere: float) -> None: ... method startUpdates (line 929) | def startUpdates(self) -> None: ... method stopUpdates (line 930) | def stopUpdates(self) -> None: ... method supportedPositioningMethods (line 931) | def supportedPositioningMethods(self) -> QGeoPositionInfoSource.Positi... method updateMode (line 932) | def updateMode(self) -> QNmeaPositionInfoSource.UpdateMode: ... method userEquivalentRangeError (line 933) | def userEquivalentRangeError(self) -> float: ... FILE: pyside/stubs/PySide2-stubs/QtPrintSupport.pyi class QAbstractPrintDialog (line 13) | class QAbstractPrintDialog(PySide2.QtWidgets.QDialog): class PrintDialogOption (line 14) | class PrintDialogOption: method __init__ (line 26) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 27) | def __and__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __bool__ (line 28) | def __bool__(self) -> bool: ... method __eq__ (line 29) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 30) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 31) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 32) | def __hash__(self) -> int: ... method __index__ (line 33) | def __index__(self) -> int: ... method __int__ (line 34) | def __int__(self) -> int: ... method __invert__ (line 35) | def __invert__(self) -> QAbstractPrintDialog.PrintDialogOptions: ... method __le__ (line 36) | def __le__(self, other: object) -> bool: ... method __lt__ (line 37) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 38) | def __ne__(self, other: object) -> bool: ... method __or__ (line 39) | def __or__(self, other: typing.SupportsInt) -> QAbstractPrintDialog.... method __rand__ (line 40) | def __rand__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __ror__ (line 41) | def __ror__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __rxor__ (line 42) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __xor__ (line 43) | def __xor__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... class PrintDialogOptions (line 45) | class PrintDialogOptions: method __init__ (line 47) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 48) | def __and__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __bool__ (line 49) | def __bool__(self) -> bool: ... method __eq__ (line 50) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 51) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 52) | def __gt__(self, other: object) -> bool: ... method __index__ (line 53) | def __index__(self) -> int: ... method __int__ (line 54) | def __int__(self) -> int: ... method __invert__ (line 55) | def __invert__(self) -> QAbstractPrintDialog.PrintDialogOptions: ... method __le__ (line 56) | def __le__(self, other: object) -> bool: ... method __lt__ (line 57) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 58) | def __ne__(self, other: object) -> bool: ... method __or__ (line 59) | def __or__(self, other: typing.SupportsInt) -> QAbstractPrintDialog.... method __rand__ (line 60) | def __rand__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __ror__ (line 61) | def __ror__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __rxor__ (line 62) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __xor__ (line 63) | def __xor__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... class PrintRange (line 65) | class PrintRange: method __init__ (line 73) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 74) | def __add__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __and__ (line 75) | def __and__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __bool__ (line 76) | def __bool__(self) -> bool: ... method __eq__ (line 77) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 78) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 79) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 80) | def __hash__(self) -> int: ... method __index__ (line 81) | def __index__(self) -> int: ... method __int__ (line 82) | def __int__(self) -> int: ... method __le__ (line 83) | def __le__(self, other: object) -> bool: ... method __lt__ (line 84) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 85) | def __mul__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __ne__ (line 86) | def __ne__(self, other: object) -> bool: ... method __or__ (line 87) | def __or__(self, other: typing.SupportsInt) -> QAbstractPrintDialog.... method __pos__ (line 88) | def __pos__(self): ... method __radd__ (line 89) | def __radd__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __rand__ (line 90) | def __rand__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __rmul__ (line 91) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __ror__ (line 92) | def __ror__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __rsub__ (line 93) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __rxor__ (line 94) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractPrintDialo... method __sub__ (line 95) | def __sub__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __xor__ (line 96) | def __xor__(self, other: typing.SupportsInt) -> QAbstractPrintDialog... method __init__ (line 110) | def __init__(self, printer: QPrinter, parent: PySide2.QtWidgets.QWidge... method addEnabledOption (line 111) | def addEnabledOption(self, option: QAbstractPrintDialog.PrintDialogOpt... method enabledOptions (line 112) | def enabledOptions(self) -> QAbstractPrintDialog.PrintDialogOptions | ... method fromPage (line 113) | def fromPage(self) -> int: ... method isOptionEnabled (line 114) | def isOptionEnabled(self, option: QAbstractPrintDialog.PrintDialogOpti... method maxPage (line 115) | def maxPage(self) -> int: ... method minPage (line 116) | def minPage(self) -> int: ... method printRange (line 117) | def printRange(self) -> QAbstractPrintDialog.PrintRange: ... method printer (line 118) | def printer(self) -> QPrinter: ... method setEnabledOptions (line 119) | def setEnabledOptions(self, options: QAbstractPrintDialog.PrintDialogO... method setFromTo (line 120) | def setFromTo(self, fromPage: int, toPage: int) -> None: ... method setMinMax (line 121) | def setMinMax(self, min: int, max: int) -> None: ... method setOptionTabs (line 122) | def setOptionTabs(self, tabs: typing.Iterable[PySide2.QtWidgets.QWidge... method setPrintRange (line 123) | def setPrintRange(self, range: QAbstractPrintDialog.PrintRange) -> Non... method toPage (line 124) | def toPage(self) -> int: ... class QPageSetupDialog (line 126) | class QPageSetupDialog(PySide2.QtWidgets.QDialog): method __init__ (line 129) | def __init__(self, printer: QPrinter, parent: PySide2.QtWidgets.QWidge... method __init__ (line 131) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method done (line 132) | def done(self, result: int) -> None: ... method exec_ (line 133) | def exec_(self) -> int: ... method open (line 135) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 137) | def open(self) -> None: ... method printer (line 138) | def printer(self) -> QPrinter: ... method setVisible (line 139) | def setVisible(self, visible: bool) -> None: ... class QPrintDialog (line 141) | class QPrintDialog(QAbstractPrintDialog): method __init__ (line 145) | def __init__(self, printer: QPrinter, parent: PySide2.QtWidgets.QWidge... method __init__ (line 147) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method done (line 148) | def done(self, result: int) -> None: ... method exec_ (line 149) | def exec_(self) -> int: ... method open (line 151) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 153) | def open(self) -> None: ... method options (line 154) | def options(self) -> QAbstractPrintDialog.PrintDialogOptions | QAbstra... method setOption (line 155) | def setOption(self, option: QAbstractPrintDialog.PrintDialogOption, on... method setOptions (line 156) | def setOptions(self, options: QAbstractPrintDialog.PrintDialogOptions ... method setVisible (line 157) | def setVisible(self, visible: bool) -> None: ... method testOption (line 158) | def testOption(self, option: QAbstractPrintDialog.PrintDialogOption) -... class QPrintEngine (line 160) | class QPrintEngine(shiboken2.Object): class PrintEnginePropertyKey (line 161) | class PrintEnginePropertyKey: method __init__ (line 197) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 198) | def __add__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEn... method __and__ (line 199) | def __and__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEn... method __bool__ (line 200) | def __bool__(self) -> bool: ... method __eq__ (line 201) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 202) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 203) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 204) | def __hash__(self) -> int: ... method __index__ (line 205) | def __index__(self) -> int: ... method __int__ (line 206) | def __int__(self) -> int: ... method __le__ (line 207) | def __le__(self, other: object) -> bool: ... method __lt__ (line 208) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 209) | def __mul__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEn... method __ne__ (line 210) | def __ne__(self, other: object) -> bool: ... method __or__ (line 211) | def __or__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEng... method __pos__ (line 212) | def __pos__(self): ... method __radd__ (line 213) | def __radd__(self, other: typing.SupportsInt) -> QPrintEngine.PrintE... method __rand__ (line 214) | def __rand__(self, other: typing.SupportsInt) -> QPrintEngine.PrintE... method __rmul__ (line 215) | def __rmul__(self, other: typing.SupportsInt) -> QPrintEngine.PrintE... method __ror__ (line 216) | def __ror__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEn... method __rsub__ (line 217) | def __rsub__(self, other: typing.SupportsInt) -> QPrintEngine.PrintE... method __rxor__ (line 218) | def __rxor__(self, other: typing.SupportsInt) -> QPrintEngine.PrintE... method __sub__ (line 219) | def __sub__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEn... method __xor__ (line 220) | def __xor__(self, other: typing.SupportsInt) -> QPrintEngine.PrintEn... method __init__ (line 253) | def __init__(self) -> None: ... method abort (line 254) | def abort(self) -> bool: ... method metric (line 255) | def metric(self, arg__1: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method newPage (line 256) | def newPage(self) -> bool: ... method printerState (line 257) | def printerState(self) -> QPrinter.PrinterState: ... method property (line 258) | def property(self, key: QPrintEngine.PrintEnginePropertyKey) -> typing... method setProperty (line 259) | def setProperty(self, key: QPrintEngine.PrintEnginePropertyKey, value:... class QPrintPreviewDialog (line 261) | class QPrintPreviewDialog(PySide2.QtWidgets.QDialog): method __init__ (line 265) | def __init__(self, printer: QPrinter, parent: PySide2.QtWidgets.QWidge... method __init__ (line 267) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., fla... method done (line 268) | def done(self, result: int) -> None: ... method open (line 270) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 272) | def open(self) -> None: ... method printer (line 273) | def printer(self) -> QPrinter: ... method setVisible (line 274) | def setVisible(self, visible: bool) -> None: ... class QPrintPreviewWidget (line 276) | class QPrintPreviewWidget(PySide2.QtWidgets.QWidget): class ViewMode (line 277) | class ViewMode: method __init__ (line 284) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 285) | def __add__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __and__ (line 286) | def __and__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __bool__ (line 287) | def __bool__(self) -> bool: ... method __eq__ (line 288) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 289) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 290) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 291) | def __hash__(self) -> int: ... method __index__ (line 292) | def __index__(self) -> int: ... method __int__ (line 293) | def __int__(self) -> int: ... method __le__ (line 294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 295) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 296) | def __mul__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __ne__ (line 297) | def __ne__(self, other: object) -> bool: ... method __or__ (line 298) | def __or__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.V... method __pos__ (line 299) | def __pos__(self): ... method __radd__ (line 300) | def __radd__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __rand__ (line 301) | def __rand__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __rmul__ (line 302) | def __rmul__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __ror__ (line 303) | def __ror__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __rsub__ (line 304) | def __rsub__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __rxor__ (line 305) | def __rxor__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __sub__ (line 306) | def __sub__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __xor__ (line 307) | def __xor__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... class ZoomMode (line 309) | class ZoomMode: method __init__ (line 316) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 317) | def __add__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __and__ (line 318) | def __and__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __bool__ (line 319) | def __bool__(self) -> bool: ... method __eq__ (line 320) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 321) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 322) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 323) | def __hash__(self) -> int: ... method __index__ (line 324) | def __index__(self) -> int: ... method __int__ (line 325) | def __int__(self) -> int: ... method __le__ (line 326) | def __le__(self, other: object) -> bool: ... method __lt__ (line 327) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 328) | def __mul__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __ne__ (line 329) | def __ne__(self, other: object) -> bool: ... method __or__ (line 330) | def __or__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.Z... method __pos__ (line 331) | def __pos__(self): ... method __radd__ (line 332) | def __radd__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __rand__ (line 333) | def __rand__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __rmul__ (line 334) | def __rmul__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __ror__ (line 335) | def __ror__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __rsub__ (line 336) | def __rsub__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __rxor__ (line 337) | def __rxor__(self, other: typing.SupportsInt) -> QPrintPreviewWidget... method __sub__ (line 338) | def __sub__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __xor__ (line 339) | def __xor__(self, other: typing.SupportsInt) -> QPrintPreviewWidget.... method __init__ (line 350) | def __init__(self, printer: QPrinter, parent: PySide2.QtWidgets.QWidge... method __init__ (line 352) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., fla... method currentPage (line 353) | def currentPage(self) -> int: ... method fitInView (line 354) | def fitInView(self) -> None: ... method fitToWidth (line 355) | def fitToWidth(self) -> None: ... method orientation (line 356) | def orientation(self) -> QPrinter.Orientation: ... method pageCount (line 357) | def pageCount(self) -> int: ... method print_ (line 358) | def print_(self) -> None: ... method setAllPagesViewMode (line 359) | def setAllPagesViewMode(self) -> None: ... method setCurrentPage (line 360) | def setCurrentPage(self, pageNumber: int) -> None: ... method setFacingPagesViewMode (line 361) | def setFacingPagesViewMode(self) -> None: ... method setLandscapeOrientation (line 362) | def setLandscapeOrientation(self) -> None: ... method setOrientation (line 363) | def setOrientation(self, orientation: QPrinter.Orientation) -> None: ... method setPortraitOrientation (line 364) | def setPortraitOrientation(self) -> None: ... method setSinglePageViewMode (line 365) | def setSinglePageViewMode(self) -> None: ... method setViewMode (line 366) | def setViewMode(self, viewMode: QPrintPreviewWidget.ViewMode) -> None:... method setVisible (line 367) | def setVisible(self, visible: bool) -> None: ... method setZoomFactor (line 368) | def setZoomFactor(self, zoomFactor: float) -> None: ... method setZoomMode (line 369) | def setZoomMode(self, zoomMode: QPrintPreviewWidget.ZoomMode) -> None:... method updatePreview (line 370) | def updatePreview(self) -> None: ... method viewMode (line 371) | def viewMode(self) -> QPrintPreviewWidget.ViewMode: ... method zoomFactor (line 372) | def zoomFactor(self) -> float: ... method zoomIn (line 373) | def zoomIn(self, zoom: float = ...) -> None: ... method zoomMode (line 374) | def zoomMode(self) -> QPrintPreviewWidget.ZoomMode: ... method zoomOut (line 375) | def zoomOut(self, zoom: float = ...) -> None: ... class QPrinter (line 377) | class QPrinter(PySide2.QtGui.QPagedPaintDevice): class ColorMode (line 378) | class ColorMode: method __init__ (line 384) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 385) | def __add__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... method __and__ (line 386) | def __and__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... method __bool__ (line 387) | def __bool__(self) -> bool: ... method __eq__ (line 388) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 389) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 390) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 391) | def __hash__(self) -> int: ... method __index__ (line 392) | def __index__(self) -> int: ... method __int__ (line 393) | def __int__(self) -> int: ... method __le__ (line 394) | def __le__(self, other: object) -> bool: ... method __lt__ (line 395) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 396) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... method __ne__ (line 397) | def __ne__(self, other: object) -> bool: ... method __or__ (line 398) | def __or__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... method __pos__ (line 399) | def __pos__(self): ... method __radd__ (line 400) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.ColorMode:... method __rand__ (line 401) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.ColorMode:... method __rmul__ (line 402) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.ColorMode:... method __ror__ (line 403) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... method __rsub__ (line 404) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.ColorMode:... method __rxor__ (line 405) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.ColorMode:... method __sub__ (line 406) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... method __xor__ (line 407) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.ColorMode: ... class DuplexMode (line 409) | class DuplexMode: method __init__ (line 417) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 418) | def __add__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode:... method __and__ (line 419) | def __and__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode:... method __bool__ (line 420) | def __bool__(self) -> bool: ... method __eq__ (line 421) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 422) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 423) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 424) | def __hash__(self) -> int: ... method __index__ (line 425) | def __index__(self) -> int: ... method __int__ (line 426) | def __int__(self) -> int: ... method __le__ (line 427) | def __le__(self, other: object) -> bool: ... method __lt__ (line 428) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 429) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode:... method __ne__ (line 430) | def __ne__(self, other: object) -> bool: ... method __or__ (line 431) | def __or__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode: ... method __pos__ (line 432) | def __pos__(self): ... method __radd__ (line 433) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode... method __rand__ (line 434) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode... method __rmul__ (line 435) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode... method __ror__ (line 436) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode:... method __rsub__ (line 437) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode... method __rxor__ (line 438) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode... method __sub__ (line 439) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode:... method __xor__ (line 440) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.DuplexMode:... class Orientation (line 442) | class Orientation: method __init__ (line 448) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 449) | def __add__(self, other: typing.SupportsInt) -> QPrinter.Orientation... method __and__ (line 450) | def __and__(self, other: typing.SupportsInt) -> QPrinter.Orientation... method __bool__ (line 451) | def __bool__(self) -> bool: ... method __eq__ (line 452) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 453) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 454) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 455) | def __hash__(self) -> int: ... method __index__ (line 456) | def __index__(self) -> int: ... method __int__ (line 457) | def __int__(self) -> int: ... method __le__ (line 458) | def __le__(self, other: object) -> bool: ... method __lt__ (line 459) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 460) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.Orientation... method __ne__ (line 461) | def __ne__(self, other: object) -> bool: ... method __or__ (line 462) | def __or__(self, other: typing.SupportsInt) -> QPrinter.Orientation:... method __pos__ (line 463) | def __pos__(self): ... method __radd__ (line 464) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.Orientatio... method __rand__ (line 465) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.Orientatio... method __rmul__ (line 466) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.Orientatio... method __ror__ (line 467) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.Orientation... method __rsub__ (line 468) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.Orientatio... method __rxor__ (line 469) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.Orientatio... method __sub__ (line 470) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.Orientation... method __xor__ (line 471) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.Orientation... class OutputFormat (line 473) | class OutputFormat: method __init__ (line 479) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 480) | def __add__(self, other: typing.SupportsInt) -> QPrinter.OutputForma... method __and__ (line 481) | def __and__(self, other: typing.SupportsInt) -> QPrinter.OutputForma... method __bool__ (line 482) | def __bool__(self) -> bool: ... method __eq__ (line 483) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 484) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 485) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 486) | def __hash__(self) -> int: ... method __index__ (line 487) | def __index__(self) -> int: ... method __int__ (line 488) | def __int__(self) -> int: ... method __le__ (line 489) | def __le__(self, other: object) -> bool: ... method __lt__ (line 490) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 491) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.OutputForma... method __ne__ (line 492) | def __ne__(self, other: object) -> bool: ... method __or__ (line 493) | def __or__(self, other: typing.SupportsInt) -> QPrinter.OutputFormat... method __pos__ (line 494) | def __pos__(self): ... method __radd__ (line 495) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.OutputForm... method __rand__ (line 496) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.OutputForm... method __rmul__ (line 497) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.OutputForm... method __ror__ (line 498) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.OutputForma... method __rsub__ (line 499) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.OutputForm... method __rxor__ (line 500) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.OutputForm... method __sub__ (line 501) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.OutputForma... method __xor__ (line 502) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.OutputForma... class PageOrder (line 504) | class PageOrder: method __init__ (line 510) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 511) | def __add__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... method __and__ (line 512) | def __and__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... method __bool__ (line 513) | def __bool__(self) -> bool: ... method __eq__ (line 514) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 515) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 516) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 517) | def __hash__(self) -> int: ... method __index__ (line 518) | def __index__(self) -> int: ... method __int__ (line 519) | def __int__(self) -> int: ... method __le__ (line 520) | def __le__(self, other: object) -> bool: ... method __lt__ (line 521) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 522) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... method __ne__ (line 523) | def __ne__(self, other: object) -> bool: ... method __or__ (line 524) | def __or__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... method __pos__ (line 525) | def __pos__(self): ... method __radd__ (line 526) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.PageOrder:... method __rand__ (line 527) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.PageOrder:... method __rmul__ (line 528) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.PageOrder:... method __ror__ (line 529) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... method __rsub__ (line 530) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.PageOrder:... method __rxor__ (line 531) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.PageOrder:... method __sub__ (line 532) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... method __xor__ (line 533) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.PageOrder: ... class PaperSource (line 535) | class PaperSource: method __init__ (line 556) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 557) | def __add__(self, other: typing.SupportsInt) -> QPrinter.PaperSource... method __and__ (line 558) | def __and__(self, other: typing.SupportsInt) -> QPrinter.PaperSource... method __bool__ (line 559) | def __bool__(self) -> bool: ... method __eq__ (line 560) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 561) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 562) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 563) | def __hash__(self) -> int: ... method __index__ (line 564) | def __index__(self) -> int: ... method __int__ (line 565) | def __int__(self) -> int: ... method __le__ (line 566) | def __le__(self, other: object) -> bool: ... method __lt__ (line 567) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 568) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.PaperSource... method __ne__ (line 569) | def __ne__(self, other: object) -> bool: ... method __or__ (line 570) | def __or__(self, other: typing.SupportsInt) -> QPrinter.PaperSource:... method __pos__ (line 571) | def __pos__(self): ... method __radd__ (line 572) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.PaperSourc... method __rand__ (line 573) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.PaperSourc... method __rmul__ (line 574) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.PaperSourc... method __ror__ (line 575) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.PaperSource... method __rsub__ (line 576) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.PaperSourc... method __rxor__ (line 577) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.PaperSourc... method __sub__ (line 578) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.PaperSource... method __xor__ (line 579) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.PaperSource... class PrintRange (line 581) | class PrintRange: method __init__ (line 589) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 590) | def __add__(self, other: typing.SupportsInt) -> QPrinter.PrintRange:... method __and__ (line 591) | def __and__(self, other: typing.SupportsInt) -> QPrinter.PrintRange:... method __bool__ (line 592) | def __bool__(self) -> bool: ... method __eq__ (line 593) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 594) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 595) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 596) | def __hash__(self) -> int: ... method __index__ (line 597) | def __index__(self) -> int: ... method __int__ (line 598) | def __int__(self) -> int: ... method __le__ (line 599) | def __le__(self, other: object) -> bool: ... method __lt__ (line 600) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 601) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.PrintRange:... method __ne__ (line 602) | def __ne__(self, other: object) -> bool: ... method __or__ (line 603) | def __or__(self, other: typing.SupportsInt) -> QPrinter.PrintRange: ... method __pos__ (line 604) | def __pos__(self): ... method __radd__ (line 605) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.PrintRange... method __rand__ (line 606) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.PrintRange... method __rmul__ (line 607) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.PrintRange... method __ror__ (line 608) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.PrintRange:... method __rsub__ (line 609) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.PrintRange... method __rxor__ (line 610) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.PrintRange... method __sub__ (line 611) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.PrintRange:... method __xor__ (line 612) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.PrintRange:... class PrinterMode (line 614) | class PrinterMode: method __init__ (line 621) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 622) | def __add__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode... method __and__ (line 623) | def __and__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode... method __bool__ (line 624) | def __bool__(self) -> bool: ... method __eq__ (line 625) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 626) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 627) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 628) | def __hash__(self) -> int: ... method __index__ (line 629) | def __index__(self) -> int: ... method __int__ (line 630) | def __int__(self) -> int: ... method __le__ (line 631) | def __le__(self, other: object) -> bool: ... method __lt__ (line 632) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 633) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode... method __ne__ (line 634) | def __ne__(self, other: object) -> bool: ... method __or__ (line 635) | def __or__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode:... method __pos__ (line 636) | def __pos__(self): ... method __radd__ (line 637) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.PrinterMod... method __rand__ (line 638) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.PrinterMod... method __rmul__ (line 639) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.PrinterMod... method __ror__ (line 640) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode... method __rsub__ (line 641) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.PrinterMod... method __rxor__ (line 642) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.PrinterMod... method __sub__ (line 643) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode... method __xor__ (line 644) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.PrinterMode... class PrinterState (line 646) | class PrinterState: method __init__ (line 654) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 655) | def __add__(self, other: typing.SupportsInt) -> QPrinter.PrinterStat... method __and__ (line 656) | def __and__(self, other: typing.SupportsInt) -> QPrinter.PrinterStat... method __bool__ (line 657) | def __bool__(self) -> bool: ... method __eq__ (line 658) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 659) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 660) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 661) | def __hash__(self) -> int: ... method __index__ (line 662) | def __index__(self) -> int: ... method __int__ (line 663) | def __int__(self) -> int: ... method __le__ (line 664) | def __le__(self, other: object) -> bool: ... method __lt__ (line 665) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 666) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.PrinterStat... method __ne__ (line 667) | def __ne__(self, other: object) -> bool: ... method __or__ (line 668) | def __or__(self, other: typing.SupportsInt) -> QPrinter.PrinterState... method __pos__ (line 669) | def __pos__(self): ... method __radd__ (line 670) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.PrinterSta... method __rand__ (line 671) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.PrinterSta... method __rmul__ (line 672) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.PrinterSta... method __ror__ (line 673) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.PrinterStat... method __rsub__ (line 674) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.PrinterSta... method __rxor__ (line 675) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.PrinterSta... method __sub__ (line 676) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.PrinterStat... method __xor__ (line 677) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.PrinterStat... class Unit (line 679) | class Unit: method __init__ (line 690) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 691) | def __add__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __and__ (line 692) | def __and__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __bool__ (line 693) | def __bool__(self) -> bool: ... method __eq__ (line 694) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 695) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 696) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 697) | def __hash__(self) -> int: ... method __index__ (line 698) | def __index__(self) -> int: ... method __int__ (line 699) | def __int__(self) -> int: ... method __le__ (line 700) | def __le__(self, other: object) -> bool: ... method __lt__ (line 701) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 702) | def __mul__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __ne__ (line 703) | def __ne__(self, other: object) -> bool: ... method __or__ (line 704) | def __or__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __pos__ (line 705) | def __pos__(self): ... method __radd__ (line 706) | def __radd__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __rand__ (line 707) | def __rand__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __rmul__ (line 708) | def __rmul__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __ror__ (line 709) | def __ror__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __rsub__ (line 710) | def __rsub__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __rxor__ (line 711) | def __rxor__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __sub__ (line 712) | def __sub__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __xor__ (line 713) | def __xor__(self, other: typing.SupportsInt) -> QPrinter.Unit: ... method __init__ (line 762) | def __init__(self, printer: QPrinterInfo, mode: QPrinter.PrinterMode =... method __init__ (line 764) | def __init__(self, mode: QPrinter.PrinterMode = ...) -> None: ... method abort (line 765) | def abort(self) -> bool: ... method actualNumCopies (line 766) | def actualNumCopies(self) -> int: ... method collateCopies (line 767) | def collateCopies(self) -> bool: ... method colorMode (line 768) | def colorMode(self) -> QPrinter.ColorMode: ... method copyCount (line 769) | def copyCount(self) -> int: ... method creator (line 770) | def creator(self) -> str: ... method devType (line 771) | def devType(self) -> int: ... method docName (line 772) | def docName(self) -> str: ... method doubleSidedPrinting (line 773) | def doubleSidedPrinting(self) -> bool: ... method duplex (line 774) | def duplex(self) -> QPrinter.DuplexMode: ... method fontEmbeddingEnabled (line 775) | def fontEmbeddingEnabled(self) -> bool: ... method fromPage (line 776) | def fromPage(self) -> int: ... method fullPage (line 777) | def fullPage(self) -> bool: ... method getPageMargins (line 778) | def getPageMargins(self, unit: QPrinter.Unit) -> tuple[float, float, f... method isValid (line 779) | def isValid(self) -> bool: ... method metric (line 780) | def metric(self, arg__1: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method newPage (line 781) | def newPage(self) -> bool: ... method numCopies (line 782) | def numCopies(self) -> int: ... method orientation (line 783) | def orientation(self) -> QPrinter.Orientation: ... method outputFileName (line 784) | def outputFileName(self) -> str: ... method outputFormat (line 785) | def outputFormat(self) -> QPrinter.OutputFormat: ... method pageOrder (line 786) | def pageOrder(self) -> QPrinter.PageOrder: ... method pageRect (line 788) | def pageRect(self, arg__1: QPrinter.Unit) -> PySide2.QtCore.QRectF: ... method pageRect (line 790) | def pageRect(self) -> PySide2.QtCore.QRect: ... method pageSize (line 791) | def pageSize(self) -> PySide2.QtGui.QPagedPaintDevice.PageSize: ... method paintEngine (line 792) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method paperName (line 793) | def paperName(self) -> str: ... method paperRect (line 795) | def paperRect(self, arg__1: QPrinter.Unit) -> PySide2.QtCore.QRectF: ... method paperRect (line 797) | def paperRect(self) -> PySide2.QtCore.QRect: ... method paperSize (line 799) | def paperSize(self, unit: QPrinter.Unit) -> PySide2.QtCore.QSizeF: ... method paperSize (line 801) | def paperSize(self) -> PySide2.QtGui.QPagedPaintDevice.PageSize: ... method paperSource (line 802) | def paperSource(self) -> QPrinter.PaperSource: ... method pdfVersion (line 803) | def pdfVersion(self) -> PySide2.QtGui.QPagedPaintDevice.PdfVersion: ... method printEngine (line 804) | def printEngine(self) -> QPrintEngine: ... method printProgram (line 805) | def printProgram(self) -> str: ... method printRange (line 806) | def printRange(self) -> QPrinter.PrintRange: ... method printerName (line 807) | def printerName(self) -> str: ... method printerState (line 808) | def printerState(self) -> QPrinter.PrinterState: ... method resolution (line 809) | def resolution(self) -> int: ... method setCollateCopies (line 810) | def setCollateCopies(self, collate: bool) -> None: ... method setColorMode (line 811) | def setColorMode(self, arg__1: QPrinter.ColorMode) -> None: ... method setCopyCount (line 812) | def setCopyCount(self, arg__1: int) -> None: ... method setCreator (line 813) | def setCreator(self, arg__1: str) -> None: ... method setDocName (line 814) | def setDocName(self, arg__1: str) -> None: ... method setDoubleSidedPrinting (line 815) | def setDoubleSidedPrinting(self, enable: bool) -> None: ... method setDuplex (line 816) | def setDuplex(self, duplex: QPrinter.DuplexMode) -> None: ... method setEngines (line 817) | def setEngines(self, printEngine: QPrintEngine, paintEngine: PySide2.Q... method setFontEmbeddingEnabled (line 818) | def setFontEmbeddingEnabled(self, enable: bool) -> None: ... method setFromTo (line 819) | def setFromTo(self, fromPage: int, toPage: int) -> None: ... method setFullPage (line 820) | def setFullPage(self, arg__1: bool) -> None: ... method setMargins (line 821) | def setMargins(self, m: PySide2.QtGui.QPagedPaintDevice.Margins) -> No... method setNumCopies (line 822) | def setNumCopies(self, arg__1: int) -> None: ... method setOrientation (line 823) | def setOrientation(self, arg__1: QPrinter.Orientation) -> None: ... method setOutputFileName (line 824) | def setOutputFileName(self, arg__1: str) -> None: ... method setOutputFormat (line 825) | def setOutputFormat(self, format: QPrinter.OutputFormat) -> None: ... method setPageMargins (line 827) | def setPageMargins(self, left: float, top: float, right: float, bottom... method setPageMargins (line 829) | def setPageMargins(self, margins: PySide2.QtCore.QMarginsF) -> bool: ... method setPageOrder (line 830) | def setPageOrder(self, arg__1: QPrinter.PageOrder) -> None: ... method setPageSize (line 832) | def setPageSize(self, arg__1: PySide2.QtGui.QPageSize) -> bool: ... method setPageSize (line 834) | def setPageSize(self, arg__1: PySide2.QtGui.QPagedPaintDevice.PageSize... method setPageSizeMM (line 835) | def setPageSizeMM(self, size: PySide2.QtCore.QSizeF) -> None: ... method setPaperName (line 836) | def setPaperName(self, paperName: str) -> None: ... method setPaperSize (line 838) | def setPaperSize(self, paperSize: PySide2.QtCore.QSizeF, unit: QPrinte... method setPaperSize (line 840) | def setPaperSize(self, arg__1: PySide2.QtGui.QPagedPaintDevice.PageSiz... method setPaperSource (line 841) | def setPaperSource(self, arg__1: QPrinter.PaperSource) -> None: ... method setPdfVersion (line 842) | def setPdfVersion(self, version: PySide2.QtGui.QPagedPaintDevice.PdfVe... method setPrintProgram (line 843) | def setPrintProgram(self, arg__1: str) -> None: ... method setPrintRange (line 844) | def setPrintRange(self, range: QPrinter.PrintRange) -> None: ... method setPrinterName (line 845) | def setPrinterName(self, arg__1: str) -> None: ... method setResolution (line 846) | def setResolution(self, arg__1: int) -> None: ... method setWinPageSize (line 847) | def setWinPageSize(self, winPageSize: int) -> None: ... method supportedResolutions (line 848) | def supportedResolutions(self) -> list[int]: ... method supportsMultipleCopies (line 849) | def supportsMultipleCopies(self) -> bool: ... method toPage (line 850) | def toPage(self) -> int: ... method winPageSize (line 851) | def winPageSize(self) -> int: ... class QPrinterInfo (line 853) | class QPrinterInfo(shiboken2.Object): method __init__ (line 855) | def __init__(self, printer: QPrinter) -> None: ... method __init__ (line 857) | def __init__(self, other: QPrinterInfo) -> None: ... method __init__ (line 859) | def __init__(self) -> None: ... method availablePrinterNames (line 861) | def availablePrinterNames() -> list[str]: ... method availablePrinters (line 863) | def availablePrinters() -> list[QPrinterInfo]: ... method defaultColorMode (line 864) | def defaultColorMode(self) -> QPrinter.ColorMode: ... method defaultDuplexMode (line 865) | def defaultDuplexMode(self) -> QPrinter.DuplexMode: ... method defaultPageSize (line 866) | def defaultPageSize(self) -> PySide2.QtGui.QPageSize: ... method defaultPrinter (line 868) | def defaultPrinter() -> QPrinterInfo: ... method defaultPrinterName (line 870) | def defaultPrinterName() -> str: ... method description (line 871) | def description(self) -> str: ... method isDefault (line 872) | def isDefault(self) -> bool: ... method isNull (line 873) | def isNull(self) -> bool: ... method isRemote (line 874) | def isRemote(self) -> bool: ... method location (line 875) | def location(self) -> str: ... method makeAndModel (line 876) | def makeAndModel(self) -> str: ... method maximumPhysicalPageSize (line 877) | def maximumPhysicalPageSize(self) -> PySide2.QtGui.QPageSize: ... method minimumPhysicalPageSize (line 878) | def minimumPhysicalPageSize(self) -> PySide2.QtGui.QPageSize: ... method printerInfo (line 880) | def printerInfo(printerName: str) -> QPrinterInfo: ... method printerName (line 881) | def printerName(self) -> str: ... method state (line 882) | def state(self) -> QPrinter.PrinterState: ... method supportedColorModes (line 883) | def supportedColorModes(self) -> list[QPrinter.ColorMode]: ... method supportedDuplexModes (line 884) | def supportedDuplexModes(self) -> list[QPrinter.DuplexMode]: ... method supportedPageSizes (line 885) | def supportedPageSizes(self) -> list[PySide2.QtGui.QPageSize]: ... method supportedPaperSizes (line 886) | def supportedPaperSizes(self) -> list[PySide2.QtGui.QPagedPaintDevice.... method supportedResolutions (line 887) | def supportedResolutions(self) -> list[int]: ... method supportedSizesWithNames (line 888) | def supportedSizesWithNames(self) -> list[tuple[str, PySide2.QtCore.QS... method supportsCustomPageSizes (line 889) | def supportsCustomPageSizes(self) -> bool: ... method __bool__ (line 890) | def __bool__(self) -> bool: ... method __copy__ (line 891) | def __copy__(self) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtQml.pyi class _add_QQmlProperty_read_overloads (line 12) | class _add_QQmlProperty_read_overloads: class StaticOverloads (line 19) | class StaticOverloads: class read (line 20) | class read: method __call__ (line 23) | def __call__(arg__1: PySide2.QtCore.QObject, arg__2: str) -> typin... method __call__ (line 26) | def __call__(arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3: ... method __call__ (line 29) | def __call__(arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3: ... class InstanceOverloads (line 31) | class InstanceOverloads: class read (line 32) | class read: method __call__ (line 34) | def __call__(self) -> typing.Any: ... method __call__ (line 36) | def __call__(self, arg__1: PySide2.QtCore.QObject, arg__2: str) ->... method __call__ (line 38) | def __call__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, ar... method __call__ (line 40) | def __call__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, ar... method __init__ (line 42) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 45) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 48) | def __get__(self, object: QQmlProperty, owner: typing.Any) -> Instance... class _add_QQmlProperty_write_overloads (line 50) | class _add_QQmlProperty_write_overloads: class StaticOverloads (line 57) | class StaticOverloads: class write (line 58) | class write: method __call__ (line 61) | def __call__(arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3: ... method __call__ (line 64) | def __call__(arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3: ... method __call__ (line 67) | def __call__(arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3: ... class InstanceOverloads (line 69) | class InstanceOverloads: class write (line 70) | class write: method __call__ (line 72) | def __call__(self, arg__1: typing.Any) -> bool: ... method __call__ (line 74) | def __call__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, ar... method __call__ (line 76) | def __call__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, ar... method __call__ (line 78) | def __call__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, ar... method __init__ (line 80) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 83) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 86) | def __get__(self, object: QQmlProperty, owner: typing.Any) -> Instance... class ListProperty (line 88) | class ListProperty(PySide2.QtCore.Property): method __init__ (line 89) | def __init__(self, type: type, append: typing.Callable, at: typing.Cal... class QJSEngine (line 91) | class QJSEngine(PySide2.QtCore.QObject): class Extension (line 92) | class Extension: method __init__ (line 100) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 101) | def __and__(self, other: typing.SupportsInt) -> QJSEngine.Extensions... method __bool__ (line 102) | def __bool__(self) -> bool: ... method __eq__ (line 103) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 104) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 105) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 106) | def __hash__(self) -> int: ... method __index__ (line 107) | def __index__(self) -> int: ... method __int__ (line 108) | def __int__(self) -> int: ... method __invert__ (line 109) | def __invert__(self) -> QJSEngine.Extensions: ... method __le__ (line 110) | def __le__(self, other: object) -> bool: ... method __lt__ (line 111) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 112) | def __ne__(self, other: object) -> bool: ... method __or__ (line 113) | def __or__(self, other: typing.SupportsInt) -> QJSEngine.Extensions:... method __rand__ (line 114) | def __rand__(self, other: typing.SupportsInt) -> QJSEngine.Extension... method __ror__ (line 115) | def __ror__(self, other: typing.SupportsInt) -> QJSEngine.Extensions... method __rxor__ (line 116) | def __rxor__(self, other: typing.SupportsInt) -> QJSEngine.Extension... method __xor__ (line 117) | def __xor__(self, other: typing.SupportsInt) -> QJSEngine.Extensions... class Extensions (line 119) | class Extensions: method __init__ (line 121) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 122) | def __and__(self, other: typing.SupportsInt) -> QJSEngine.Extensions... method __bool__ (line 123) | def __bool__(self) -> bool: ... method __eq__ (line 124) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 125) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 126) | def __gt__(self, other: object) -> bool: ... method __index__ (line 127) | def __index__(self) -> int: ... method __int__ (line 128) | def __int__(self) -> int: ... method __invert__ (line 129) | def __invert__(self) -> QJSEngine.Extensions: ... method __le__ (line 130) | def __le__(self, other: object) -> bool: ... method __lt__ (line 131) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 132) | def __ne__(self, other: object) -> bool: ... method __or__ (line 133) | def __or__(self, other: typing.SupportsInt) -> QJSEngine.Extensions:... method __rand__ (line 134) | def __rand__(self, other: typing.SupportsInt) -> QJSEngine.Extension... method __ror__ (line 135) | def __ror__(self, other: typing.SupportsInt) -> QJSEngine.Extensions... method __rxor__ (line 136) | def __rxor__(self, other: typing.SupportsInt) -> QJSEngine.Extension... method __xor__ (line 137) | def __xor__(self, other: typing.SupportsInt) -> QJSEngine.Extensions... method __init__ (line 145) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method __init__ (line 147) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method collectGarbage (line 148) | def collectGarbage(self) -> None: ... method evaluate (line 149) | def evaluate(self, program: str, fileName: str = ..., lineNumber: int ... method globalObject (line 150) | def globalObject(self) -> QJSValue: ... method importModule (line 151) | def importModule(self, fileName: str) -> QJSValue: ... method installExtensions (line 152) | def installExtensions(self, extensions: QJSEngine.Extensions | QJSEngi... method installTranslatorFunctions (line 153) | def installTranslatorFunctions(self, object: QJSValue = ...) -> None: ... method isInterrupted (line 154) | def isInterrupted(self) -> bool: ... method newArray (line 155) | def newArray(self, length: int = ...) -> QJSValue: ... method newErrorObject (line 156) | def newErrorObject(self, errorType: QJSValue.ErrorType, message: str =... method newObject (line 157) | def newObject(self) -> QJSValue: ... method newQMetaObject (line 158) | def newQMetaObject(self, metaObject: PySide2.QtCore.QMetaObject) -> QJ... method newQObject (line 159) | def newQObject(self, object: PySide2.QtCore.QObject) -> QJSValue: ... method setInterrupted (line 160) | def setInterrupted(self, interrupted: bool) -> None: ... method setUiLanguage (line 161) | def setUiLanguage(self, language: str) -> None: ... method throwError (line 163) | def throwError(self, errorType: QJSValue.ErrorType, message: str = ...... method throwError (line 165) | def throwError(self, message: str) -> None: ... method toScriptValue (line 166) | def toScriptValue(self, arg__1: typing.Any) -> QJSValue: ... method uiLanguage (line 167) | def uiLanguage(self) -> str: ... class QJSValue (line 169) | class QJSValue(shiboken2.Object): class ErrorType (line 170) | class ErrorType: method __init__ (line 182) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 183) | def __add__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... method __and__ (line 184) | def __and__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... method __bool__ (line 185) | def __bool__(self) -> bool: ... method __eq__ (line 186) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 187) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 188) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 189) | def __hash__(self) -> int: ... method __index__ (line 190) | def __index__(self) -> int: ... method __int__ (line 191) | def __int__(self) -> int: ... method __le__ (line 192) | def __le__(self, other: object) -> bool: ... method __lt__ (line 193) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 194) | def __mul__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... method __ne__ (line 195) | def __ne__(self, other: object) -> bool: ... method __or__ (line 196) | def __or__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... method __pos__ (line 197) | def __pos__(self): ... method __radd__ (line 198) | def __radd__(self, other: typing.SupportsInt) -> QJSValue.ErrorType:... method __rand__ (line 199) | def __rand__(self, other: typing.SupportsInt) -> QJSValue.ErrorType:... method __rmul__ (line 200) | def __rmul__(self, other: typing.SupportsInt) -> QJSValue.ErrorType:... method __ror__ (line 201) | def __ror__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... method __rsub__ (line 202) | def __rsub__(self, other: typing.SupportsInt) -> QJSValue.ErrorType:... method __rxor__ (line 203) | def __rxor__(self, other: typing.SupportsInt) -> QJSValue.ErrorType:... method __sub__ (line 204) | def __sub__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... method __xor__ (line 205) | def __xor__(self, other: typing.SupportsInt) -> QJSValue.ErrorType: ... class SpecialValue (line 207) | class SpecialValue: method __init__ (line 213) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 214) | def __add__(self, other: typing.SupportsInt) -> QJSValue.SpecialValu... method __and__ (line 215) | def __and__(self, other: typing.SupportsInt) -> QJSValue.SpecialValu... method __bool__ (line 216) | def __bool__(self) -> bool: ... method __eq__ (line 217) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 218) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 219) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 220) | def __hash__(self) -> int: ... method __index__ (line 221) | def __index__(self) -> int: ... method __int__ (line 222) | def __int__(self) -> int: ... method __le__ (line 223) | def __le__(self, other: object) -> bool: ... method __lt__ (line 224) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 225) | def __mul__(self, other: typing.SupportsInt) -> QJSValue.SpecialValu... method __ne__ (line 226) | def __ne__(self, other: object) -> bool: ... method __or__ (line 227) | def __or__(self, other: typing.SupportsInt) -> QJSValue.SpecialValue... method __pos__ (line 228) | def __pos__(self): ... method __radd__ (line 229) | def __radd__(self, other: typing.SupportsInt) -> QJSValue.SpecialVal... method __rand__ (line 230) | def __rand__(self, other: typing.SupportsInt) -> QJSValue.SpecialVal... method __rmul__ (line 231) | def __rmul__(self, other: typing.SupportsInt) -> QJSValue.SpecialVal... method __ror__ (line 232) | def __ror__(self, other: typing.SupportsInt) -> QJSValue.SpecialValu... method __rsub__ (line 233) | def __rsub__(self, other: typing.SupportsInt) -> QJSValue.SpecialVal... method __rxor__ (line 234) | def __rxor__(self, other: typing.SupportsInt) -> QJSValue.SpecialVal... method __sub__ (line 235) | def __sub__(self, other: typing.SupportsInt) -> QJSValue.SpecialValu... method __xor__ (line 236) | def __xor__(self, other: typing.SupportsInt) -> QJSValue.SpecialValu... method __init__ (line 248) | def __init__(self, value: QJSValue.SpecialValue = ...) -> None: ... method __init__ (line 250) | def __init__(self, value: str) -> None: ... method __init__ (line 252) | def __init__(self, value: bool) -> None: ... method __init__ (line 254) | def __init__(self, value: float) -> None: ... method __init__ (line 256) | def __init__(self, value: int) -> None: ... # type: ignore[overload-c... method __init__ (line 258) | def __init__(self, str: bytes) -> None: ... method __init__ (line 260) | def __init__(self, other: QJSValue) -> None: ... method call (line 261) | def call(self, args: typing.Iterable[QJSValue] = ...) -> QJSValue: ... method callAsConstructor (line 262) | def callAsConstructor(self, args: typing.Iterable[QJSValue] = ...) -> ... method callWithInstance (line 263) | def callWithInstance(self, instance: QJSValue, args: typing.Iterable[Q... method deleteProperty (line 264) | def deleteProperty(self, name: str) -> bool: ... method engine (line 265) | def engine(self) -> QJSEngine: ... method equals (line 266) | def equals(self, other: QJSValue) -> bool: ... method errorType (line 267) | def errorType(self) -> QJSValue.ErrorType: ... method hasOwnProperty (line 268) | def hasOwnProperty(self, name: str) -> bool: ... method hasProperty (line 269) | def hasProperty(self, name: str) -> bool: ... method isArray (line 270) | def isArray(self) -> bool: ... method isBool (line 271) | def isBool(self) -> bool: ... method isCallable (line 272) | def isCallable(self) -> bool: ... method isDate (line 273) | def isDate(self) -> bool: ... method isError (line 274) | def isError(self) -> bool: ... method isNull (line 275) | def isNull(self) -> bool: ... method isNumber (line 276) | def isNumber(self) -> bool: ... method isObject (line 277) | def isObject(self) -> bool: ... method isQMetaObject (line 278) | def isQMetaObject(self) -> bool: ... method isQObject (line 279) | def isQObject(self) -> bool: ... method isRegExp (line 280) | def isRegExp(self) -> bool: ... method isString (line 281) | def isString(self) -> bool: ... method isUndefined (line 282) | def isUndefined(self) -> bool: ... method isVariant (line 283) | def isVariant(self) -> bool: ... method property (line 285) | def property(self, name: str) -> QJSValue: ... method property (line 287) | def property(self, arrayIndex: int) -> QJSValue: ... method prototype (line 288) | def prototype(self) -> QJSValue: ... method setProperty (line 290) | def setProperty(self, name: str, value: QJSValue) -> None: ... method setProperty (line 292) | def setProperty(self, arrayIndex: int, value: QJSValue) -> None: ... method setPrototype (line 293) | def setPrototype(self, prototype: QJSValue) -> None: ... method strictlyEquals (line 294) | def strictlyEquals(self, other: QJSValue) -> bool: ... method toBool (line 295) | def toBool(self) -> bool: ... method toDateTime (line 296) | def toDateTime(self) -> PySide2.QtCore.QDateTime: ... method toInt (line 297) | def toInt(self) -> int: ... method toNumber (line 298) | def toNumber(self) -> float: ... method toQMetaObject (line 299) | def toQMetaObject(self) -> PySide2.QtCore.QMetaObject: ... method toQObject (line 300) | def toQObject(self) -> PySide2.QtCore.QObject: ... method toString (line 301) | def toString(self) -> str: ... method toUInt (line 302) | def toUInt(self) -> int: ... method toVariant (line 303) | def toVariant(self) -> typing.Any: ... method __bool__ (line 304) | def __bool__(self) -> bool: ... method __copy__ (line 305) | def __copy__(self) -> None: ... class QJSValueIterator (line 307) | class QJSValueIterator(shiboken2.Object): method __init__ (line 308) | def __init__(self, value: QJSValue) -> None: ... method hasNext (line 309) | def hasNext(self) -> bool: ... method name (line 310) | def name(self) -> str: ... method next (line 311) | def next(self) -> bool: ... method value (line 312) | def value(self) -> QJSValue: ... class QQmlAbstractUrlInterceptor (line 314) | class QQmlAbstractUrlInterceptor(shiboken2.Object): class DataType (line 315) | class DataType: method __init__ (line 323) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 324) | def __add__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInter... method __and__ (line 325) | def __and__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInter... method __bool__ (line 326) | def __bool__(self) -> bool: ... method __eq__ (line 327) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 328) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 329) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 330) | def __hash__(self) -> int: ... method __index__ (line 331) | def __index__(self) -> int: ... method __int__ (line 332) | def __int__(self) -> int: ... method __le__ (line 333) | def __le__(self, other: object) -> bool: ... method __lt__ (line 334) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 335) | def __mul__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInter... method __ne__ (line 336) | def __ne__(self, other: object) -> bool: ... method __or__ (line 337) | def __or__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInterc... method __pos__ (line 338) | def __pos__(self): ... method __radd__ (line 339) | def __radd__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInte... method __rand__ (line 340) | def __rand__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInte... method __rmul__ (line 341) | def __rmul__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInte... method __ror__ (line 342) | def __ror__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInter... method __rsub__ (line 343) | def __rsub__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInte... method __rxor__ (line 344) | def __rxor__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInte... method __sub__ (line 345) | def __sub__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInter... method __xor__ (line 346) | def __xor__(self, other: typing.SupportsInt) -> QQmlAbstractUrlInter... method __init__ (line 351) | def __init__(self) -> None: ... method intercept (line 352) | def intercept(self, path: PySide2.QtCore.QUrl, type: QQmlAbstractUrlIn... class QQmlApplicationEngine (line 354) | class QQmlApplicationEngine(QQmlEngine): method __init__ (line 358) | def __init__(self, url: PySide2.QtCore.QUrl, parent: PySide2.QtCore.QO... method __init__ (line 360) | def __init__(self, filePath: str, parent: PySide2.QtCore.QObject | Non... method __init__ (line 362) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method load (line 364) | def load(self, url: PySide2.QtCore.QUrl) -> None: ... method load (line 366) | def load(self, filePath: str) -> None: ... method loadData (line 367) | def loadData(self, data: PySide2.QtCore.QByteArray | bytes, url: PySid... method rootObjects (line 368) | def rootObjects(self) -> list[PySide2.QtCore.QObject]: ... method setInitialProperties (line 369) | def setInitialProperties(self, initialProperties: dict[str, typing.Any... class QQmlComponent (line 371) | class QQmlComponent(PySide2.QtCore.QObject): class CompilationMode (line 372) | class CompilationMode: method __init__ (line 378) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 379) | def __add__(self, other: typing.SupportsInt) -> QQmlComponent.Compil... method __and__ (line 380) | def __and__(self, other: typing.SupportsInt) -> QQmlComponent.Compil... method __bool__ (line 381) | def __bool__(self) -> bool: ... method __eq__ (line 382) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 383) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 384) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 385) | def __hash__(self) -> int: ... method __index__ (line 386) | def __index__(self) -> int: ... method __int__ (line 387) | def __int__(self) -> int: ... method __le__ (line 388) | def __le__(self, other: object) -> bool: ... method __lt__ (line 389) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 390) | def __mul__(self, other: typing.SupportsInt) -> QQmlComponent.Compil... method __ne__ (line 391) | def __ne__(self, other: object) -> bool: ... method __or__ (line 392) | def __or__(self, other: typing.SupportsInt) -> QQmlComponent.Compila... method __pos__ (line 393) | def __pos__(self): ... method __radd__ (line 394) | def __radd__(self, other: typing.SupportsInt) -> QQmlComponent.Compi... method __rand__ (line 395) | def __rand__(self, other: typing.SupportsInt) -> QQmlComponent.Compi... method __rmul__ (line 396) | def __rmul__(self, other: typing.SupportsInt) -> QQmlComponent.Compi... method __ror__ (line 397) | def __ror__(self, other: typing.SupportsInt) -> QQmlComponent.Compil... method __rsub__ (line 398) | def __rsub__(self, other: typing.SupportsInt) -> QQmlComponent.Compi... method __rxor__ (line 399) | def __rxor__(self, other: typing.SupportsInt) -> QQmlComponent.Compi... method __sub__ (line 400) | def __sub__(self, other: typing.SupportsInt) -> QQmlComponent.Compil... method __xor__ (line 401) | def __xor__(self, other: typing.SupportsInt) -> QQmlComponent.Compil... class Status (line 403) | class Status: method __init__ (line 411) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 412) | def __add__(self, other: typing.SupportsInt) -> QQmlComponent.Status... method __and__ (line 413) | def __and__(self, other: typing.SupportsInt) -> QQmlComponent.Status... method __bool__ (line 414) | def __bool__(self) -> bool: ... method __eq__ (line 415) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 416) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 417) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 418) | def __hash__(self) -> int: ... method __index__ (line 419) | def __index__(self) -> int: ... method __int__ (line 420) | def __int__(self) -> int: ... method __le__ (line 421) | def __le__(self, other: object) -> bool: ... method __lt__ (line 422) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 423) | def __mul__(self, other: typing.SupportsInt) -> QQmlComponent.Status... method __ne__ (line 424) | def __ne__(self, other: object) -> bool: ... method __or__ (line 425) | def __or__(self, other: typing.SupportsInt) -> QQmlComponent.Status:... method __pos__ (line 426) | def __pos__(self): ... method __radd__ (line 427) | def __radd__(self, other: typing.SupportsInt) -> QQmlComponent.Statu... method __rand__ (line 428) | def __rand__(self, other: typing.SupportsInt) -> QQmlComponent.Statu... method __rmul__ (line 429) | def __rmul__(self, other: typing.SupportsInt) -> QQmlComponent.Statu... method __ror__ (line 430) | def __ror__(self, other: typing.SupportsInt) -> QQmlComponent.Status... method __rsub__ (line 431) | def __rsub__(self, other: typing.SupportsInt) -> QQmlComponent.Statu... method __rxor__ (line 432) | def __rxor__(self, other: typing.SupportsInt) -> QQmlComponent.Statu... method __sub__ (line 433) | def __sub__(self, other: typing.SupportsInt) -> QQmlComponent.Status... method __xor__ (line 434) | def __xor__(self, other: typing.SupportsInt) -> QQmlComponent.Status... method __init__ (line 445) | def __init__(self, arg__1: QQmlEngine, fileName: str, mode: QQmlCompon... method __init__ (line 447) | def __init__(self, arg__1: QQmlEngine, url: PySide2.QtCore.QUrl, mode:... method __init__ (line 449) | def __init__(self, arg__1: QQmlEngine, fileName: str, parent: PySide2.... method __init__ (line 451) | def __init__(self, arg__1: QQmlEngine, url: PySide2.QtCore.QUrl, paren... method __init__ (line 453) | def __init__(self, arg__1: QQmlEngine, parent: PySide2.QtCore.QObject ... method __init__ (line 455) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method beginCreate (line 456) | def beginCreate(self, arg__1: QQmlContext) -> PySide2.QtCore.QObject: ... method completeCreate (line 457) | def completeCreate(self) -> None: ... method create (line 459) | def create(self, arg__1: QQmlIncubator, context: QQmlContext | None = ... method create (line 461) | def create(self, context: QQmlContext | None = ...) -> PySide2.QtCore.... method createWithInitialProperties (line 462) | def createWithInitialProperties(self, initialProperties: dict[str, typ... method creationContext (line 463) | def creationContext(self) -> QQmlContext: ... method engine (line 464) | def engine(self) -> QQmlEngine: ... method errorString (line 465) | def errorString(self) -> str: ... method errors (line 466) | def errors(self) -> list[QQmlError]: ... method isError (line 467) | def isError(self) -> bool: ... method isLoading (line 468) | def isLoading(self) -> bool: ... method isNull (line 469) | def isNull(self) -> bool: ... method isReady (line 470) | def isReady(self) -> bool: ... method loadUrl (line 472) | def loadUrl(self, url: PySide2.QtCore.QUrl, mode: QQmlComponent.Compil... method loadUrl (line 474) | def loadUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method progress (line 475) | def progress(self) -> float: ... method setData (line 476) | def setData(self, arg__1: PySide2.QtCore.QByteArray | bytes, baseUrl: ... method setInitialProperties (line 477) | def setInitialProperties(self, component: PySide2.QtCore.QObject, prop... method status (line 478) | def status(self) -> QQmlComponent.Status: ... method url (line 479) | def url(self) -> PySide2.QtCore.QUrl: ... method __bool__ (line 480) | def __bool__(self) -> bool: ... class QQmlContext (line 482) | class QQmlContext(PySide2.QtCore.QObject): method __init__ (line 485) | def __init__(self, parent: QQmlContext, objParent: PySide2.QtCore.QObj... method __init__ (line 487) | def __init__(self, parent: QQmlEngine, objParent: PySide2.QtCore.QObje... method baseUrl (line 488) | def baseUrl(self) -> PySide2.QtCore.QUrl: ... method contextObject (line 489) | def contextObject(self) -> PySide2.QtCore.QObject: ... method contextProperty (line 490) | def contextProperty(self, arg__1: str) -> typing.Any: ... method engine (line 491) | def engine(self) -> QQmlEngine: ... method isValid (line 492) | def isValid(self) -> bool: ... method nameForObject (line 493) | def nameForObject(self, arg__1: PySide2.QtCore.QObject) -> str: ... method parentContext (line 494) | def parentContext(self) -> QQmlContext: ... method resolvedUrl (line 495) | def resolvedUrl(self, arg__1: PySide2.QtCore.QUrl) -> PySide2.QtCore.Q... method setBaseUrl (line 496) | def setBaseUrl(self, arg__1: PySide2.QtCore.QUrl) -> None: ... method setContextObject (line 497) | def setContextObject(self, arg__1: PySide2.QtCore.QObject) -> None: ... method setContextProperty (line 499) | def setContextProperty(self, arg__1: str, arg__2: PySide2.QtCore.QObje... method setContextProperty (line 501) | def setContextProperty(self, arg__1: str, arg__2: typing.Any) -> None:... class QQmlDebuggingEnabler (line 503) | class QQmlDebuggingEnabler(shiboken2.Object): class StartMode (line 504) | class StartMode: method __init__ (line 510) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 511) | def __add__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler... method __and__ (line 512) | def __and__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler... method __bool__ (line 513) | def __bool__(self) -> bool: ... method __eq__ (line 514) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 515) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 516) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 517) | def __hash__(self) -> int: ... method __index__ (line 518) | def __index__(self) -> int: ... method __int__ (line 519) | def __int__(self) -> int: ... method __le__ (line 520) | def __le__(self, other: object) -> bool: ... method __lt__ (line 521) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 522) | def __mul__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler... method __ne__ (line 523) | def __ne__(self, other: object) -> bool: ... method __or__ (line 524) | def __or__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler.... method __pos__ (line 525) | def __pos__(self): ... method __radd__ (line 526) | def __radd__(self, other: typing.SupportsInt) -> QQmlDebuggingEnable... method __rand__ (line 527) | def __rand__(self, other: typing.SupportsInt) -> QQmlDebuggingEnable... method __rmul__ (line 528) | def __rmul__(self, other: typing.SupportsInt) -> QQmlDebuggingEnable... method __ror__ (line 529) | def __ror__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler... method __rsub__ (line 530) | def __rsub__(self, other: typing.SupportsInt) -> QQmlDebuggingEnable... method __rxor__ (line 531) | def __rxor__(self, other: typing.SupportsInt) -> QQmlDebuggingEnable... method __sub__ (line 532) | def __sub__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler... method __xor__ (line 533) | def __xor__(self, other: typing.SupportsInt) -> QQmlDebuggingEnabler... method __init__ (line 536) | def __init__(self, printWarning: bool = ...) -> None: ... method connectToLocalDebugger (line 538) | def connectToLocalDebugger(socketFileName: str, mode: QQmlDebuggingEna... method debuggerServices (line 540) | def debuggerServices() -> list[str]: ... method inspectorServices (line 542) | def inspectorServices() -> list[str]: ... method nativeDebuggerServices (line 544) | def nativeDebuggerServices() -> list[str]: ... method profilerServices (line 546) | def profilerServices() -> list[str]: ... method setServices (line 548) | def setServices(services: typing.Iterable[str]) -> None: ... method startDebugConnector (line 550) | def startDebugConnector(pluginName: str, configuration: dict[str, typi... method startTcpDebugServer (line 552) | def startTcpDebugServer(port: int, mode: QQmlDebuggingEnabler.StartMod... class QQmlEngine (line 554) | class QQmlEngine(QJSEngine): class ObjectOwnership (line 555) | class ObjectOwnership: method __init__ (line 561) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 562) | def __add__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwn... method __and__ (line 563) | def __and__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwn... method __bool__ (line 564) | def __bool__(self) -> bool: ... method __eq__ (line 565) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 566) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 567) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 568) | def __hash__(self) -> int: ... method __index__ (line 569) | def __index__(self) -> int: ... method __int__ (line 570) | def __int__(self) -> int: ... method __le__ (line 571) | def __le__(self, other: object) -> bool: ... method __lt__ (line 572) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 573) | def __mul__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwn... method __ne__ (line 574) | def __ne__(self, other: object) -> bool: ... method __or__ (line 575) | def __or__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwne... method __pos__ (line 576) | def __pos__(self): ... method __radd__ (line 577) | def __radd__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOw... method __rand__ (line 578) | def __rand__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOw... method __rmul__ (line 579) | def __rmul__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOw... method __ror__ (line 580) | def __ror__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwn... method __rsub__ (line 581) | def __rsub__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOw... method __rxor__ (line 582) | def __rxor__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOw... method __sub__ (line 583) | def __sub__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwn... method __xor__ (line 584) | def __xor__(self, other: typing.SupportsInt) -> QQmlEngine.ObjectOwn... method __init__ (line 591) | def __init__(self, p: PySide2.QtCore.QObject | None = ..., destroyed: ... method addImageProvider (line 592) | def addImageProvider(self, id: str, arg__2: QQmlImageProviderBase) -> ... method addImportPath (line 593) | def addImportPath(self, dir: str) -> None: ... method addNamedBundle (line 594) | def addNamedBundle(self, name: str, fileName: str) -> bool: ... method addPluginPath (line 595) | def addPluginPath(self, dir: str) -> None: ... method baseUrl (line 596) | def baseUrl(self) -> PySide2.QtCore.QUrl: ... method clearComponentCache (line 597) | def clearComponentCache(self) -> None: ... method contextForObject (line 599) | def contextForObject(arg__1: PySide2.QtCore.QObject) -> QQmlContext: ... method event (line 600) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method imageProvider (line 601) | def imageProvider(self, id: str) -> QQmlImageProviderBase: ... method importPathList (line 602) | def importPathList(self) -> list[str]: ... method importPlugin (line 603) | def importPlugin(self, filePath: str, uri: str, errors: typing.Iterabl... method incubationController (line 604) | def incubationController(self) -> QQmlIncubationController: ... method networkAccessManager (line 605) | def networkAccessManager(self) -> PySide2.QtNetwork.QNetworkAccessMana... method networkAccessManagerFactory (line 606) | def networkAccessManagerFactory(self) -> QQmlNetworkAccessManagerFacto... method objectOwnership (line 608) | def objectOwnership(arg__1: PySide2.QtCore.QObject) -> QQmlEngine.Obje... method offlineStorageDatabaseFilePath (line 609) | def offlineStorageDatabaseFilePath(self, databaseName: str) -> str: ... method offlineStoragePath (line 610) | def offlineStoragePath(self) -> str: ... method outputWarningsToStandardError (line 611) | def outputWarningsToStandardError(self) -> bool: ... method pluginPathList (line 612) | def pluginPathList(self) -> list[str]: ... method removeImageProvider (line 613) | def removeImageProvider(self, id: str) -> None: ... method retranslate (line 614) | def retranslate(self) -> None: ... method rootContext (line 615) | def rootContext(self) -> QQmlContext: ... method setBaseUrl (line 616) | def setBaseUrl(self, arg__1: PySide2.QtCore.QUrl) -> None: ... method setContextForObject (line 618) | def setContextForObject(arg__1: PySide2.QtCore.QObject, arg__2: QQmlCo... method setImportPathList (line 619) | def setImportPathList(self, paths: typing.Iterable[str]) -> None: ... method setIncubationController (line 620) | def setIncubationController(self, arg__1: QQmlIncubationController) ->... method setNetworkAccessManagerFactory (line 621) | def setNetworkAccessManagerFactory(self, arg__1: QQmlNetworkAccessMana... method setObjectOwnership (line 623) | def setObjectOwnership(arg__1: PySide2.QtCore.QObject, arg__2: QQmlEng... method setOfflineStoragePath (line 624) | def setOfflineStoragePath(self, dir: str) -> None: ... method setOutputWarningsToStandardError (line 625) | def setOutputWarningsToStandardError(self, arg__1: bool) -> None: ... method setPluginPathList (line 626) | def setPluginPathList(self, paths: typing.Iterable[str]) -> None: ... method setUrlInterceptor (line 627) | def setUrlInterceptor(self, urlInterceptor: QQmlAbstractUrlInterceptor... method trimComponentCache (line 628) | def trimComponentCache(self) -> None: ... method urlInterceptor (line 629) | def urlInterceptor(self) -> QQmlAbstractUrlInterceptor: ... class QQmlError (line 631) | class QQmlError(shiboken2.Object): method __init__ (line 633) | def __init__(self, arg__1: QQmlError) -> None: ... method __init__ (line 635) | def __init__(self) -> None: ... method column (line 636) | def column(self) -> int: ... method description (line 637) | def description(self) -> str: ... method isValid (line 638) | def isValid(self) -> bool: ... method line (line 639) | def line(self) -> int: ... method messageType (line 640) | def messageType(self) -> PySide2.QtCore.QtMsgType: ... method object (line 641) | def object(self) -> PySide2.QtCore.QObject: ... method setColumn (line 642) | def setColumn(self, arg__1: int) -> None: ... method setDescription (line 643) | def setDescription(self, arg__1: str) -> None: ... method setLine (line 644) | def setLine(self, arg__1: int) -> None: ... method setMessageType (line 645) | def setMessageType(self, messageType: PySide2.QtCore.QtMsgType) -> Non... method setObject (line 646) | def setObject(self, arg__1: PySide2.QtCore.QObject) -> None: ... method setUrl (line 647) | def setUrl(self, arg__1: PySide2.QtCore.QUrl) -> None: ... method toString (line 648) | def toString(self) -> str: ... method url (line 649) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 650) | def __copy__(self) -> None: ... class QQmlExpression (line 652) | class QQmlExpression(PySide2.QtCore.QObject): method __init__ (line 656) | def __init__(self, arg__1: QQmlContext, arg__2: PySide2.QtCore.QObject... method __init__ (line 658) | def __init__(self, arg__1: QQmlScriptString, arg__2: QQmlContext | Non... method __init__ (line 660) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method clearError (line 661) | def clearError(self) -> None: ... method columnNumber (line 662) | def columnNumber(self) -> int: ... method context (line 663) | def context(self) -> QQmlContext: ... method engine (line 664) | def engine(self) -> QQmlEngine: ... method error (line 665) | def error(self) -> QQmlError: ... method evaluate (line 666) | def evaluate(self) -> tuple[typing.Any, bool]: ... method expression (line 667) | def expression(self) -> str: ... method hasError (line 668) | def hasError(self) -> bool: ... method lineNumber (line 669) | def lineNumber(self) -> int: ... method notifyOnValueChanged (line 670) | def notifyOnValueChanged(self) -> bool: ... method scopeObject (line 671) | def scopeObject(self) -> PySide2.QtCore.QObject: ... method setExpression (line 672) | def setExpression(self, arg__1: str) -> None: ... method setNotifyOnValueChanged (line 673) | def setNotifyOnValueChanged(self, arg__1: bool) -> None: ... method setSourceLocation (line 674) | def setSourceLocation(self, fileName: str, line: int, column: int = ..... method sourceFile (line 675) | def sourceFile(self) -> str: ... class QQmlExtensionInterface (line 677) | class QQmlExtensionInterface(QQmlTypesExtensionInterface): method __init__ (line 678) | def __init__(self) -> None: ... method initializeEngine (line 679) | def initializeEngine(self, engine: QQmlEngine, uri: bytes) -> None: ... class QQmlExtensionPlugin (line 681) | class QQmlExtensionPlugin(PySide2.QtCore.QObject, QQmlExtensionInterface): method __init__ (line 683) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method baseUrl (line 684) | def baseUrl(self) -> PySide2.QtCore.QUrl: ... method initializeEngine (line 685) | def initializeEngine(self, engine: QQmlEngine, uri: bytes) -> None: ... method registerTypes (line 686) | def registerTypes(self, uri: bytes) -> None: ... class QQmlFile (line 688) | class QQmlFile(shiboken2.Object): class Status (line 689) | class Status: method __init__ (line 697) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 698) | def __add__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __and__ (line 699) | def __and__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __bool__ (line 700) | def __bool__(self) -> bool: ... method __eq__ (line 701) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 702) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 703) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 704) | def __hash__(self) -> int: ... method __index__ (line 705) | def __index__(self) -> int: ... method __int__ (line 706) | def __int__(self) -> int: ... method __le__ (line 707) | def __le__(self, other: object) -> bool: ... method __lt__ (line 708) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 709) | def __mul__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __ne__ (line 710) | def __ne__(self, other: object) -> bool: ... method __or__ (line 711) | def __or__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __pos__ (line 712) | def __pos__(self): ... method __radd__ (line 713) | def __radd__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __rand__ (line 714) | def __rand__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __rmul__ (line 715) | def __rmul__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __ror__ (line 716) | def __ror__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __rsub__ (line 717) | def __rsub__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __rxor__ (line 718) | def __rxor__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __sub__ (line 719) | def __sub__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __xor__ (line 720) | def __xor__(self, other: typing.SupportsInt) -> QQmlFile.Status: ... method __init__ (line 726) | def __init__(self, arg__1: QQmlEngine, arg__2: PySide2.QtCore.QUrl) ->... method __init__ (line 728) | def __init__(self, arg__1: QQmlEngine, arg__2: str) -> None: ... method __init__ (line 730) | def __init__(self) -> None: ... method clear (line 732) | def clear(self, arg__1: PySide2.QtCore.QObject) -> None: ... method clear (line 734) | def clear(self) -> None: ... method connectDownloadProgress (line 736) | def connectDownloadProgress(self, arg__1: PySide2.QtCore.QObject, arg_... method connectDownloadProgress (line 738) | def connectDownloadProgress(self, arg__1: PySide2.QtCore.QObject, arg_... method connectFinished (line 740) | def connectFinished(self, arg__1: PySide2.QtCore.QObject, arg__2: byte... method connectFinished (line 742) | def connectFinished(self, arg__1: PySide2.QtCore.QObject, arg__2: int)... method data (line 743) | def data(self) -> bytes: ... method dataByteArray (line 744) | def dataByteArray(self) -> PySide2.QtCore.QByteArray: ... method error (line 745) | def error(self) -> str: ... method isError (line 746) | def isError(self) -> bool: ... method isLoading (line 747) | def isLoading(self) -> bool: ... method isLocalFile (line 750) | def isLocalFile(url: PySide2.QtCore.QUrl) -> bool: ... method isLocalFile (line 753) | def isLocalFile(url: str) -> bool: ... method isNull (line 754) | def isNull(self) -> bool: ... method isReady (line 755) | def isReady(self) -> bool: ... method isSynchronous (line 758) | def isSynchronous(url: PySide2.QtCore.QUrl) -> bool: ... method isSynchronous (line 761) | def isSynchronous(url: str) -> bool: ... method load (line 763) | def load(self, arg__1: QQmlEngine, arg__2: PySide2.QtCore.QUrl) -> Non... method load (line 765) | def load(self, arg__1: QQmlEngine, arg__2: str) -> None: ... method size (line 766) | def size(self) -> int: ... method status (line 767) | def status(self) -> QQmlFile.Status: ... method url (line 768) | def url(self) -> PySide2.QtCore.QUrl: ... method urlToLocalFileOrQrc (line 771) | def urlToLocalFileOrQrc(arg__1: PySide2.QtCore.QUrl) -> str: ... method urlToLocalFileOrQrc (line 774) | def urlToLocalFileOrQrc(arg__1: str) -> str: ... method __bool__ (line 775) | def __bool__(self) -> bool: ... class QQmlFileSelector (line 777) | class QQmlFileSelector(PySide2.QtCore.QObject): method __init__ (line 779) | def __init__(self, engine: QQmlEngine, parent: PySide2.QtCore.QObject ... method get (line 781) | def get(arg__1: QQmlEngine) -> QQmlFileSelector: ... method selector (line 782) | def selector(self) -> PySide2.QtCore.QFileSelector: ... method setExtraSelectors (line 783) | def setExtraSelectors(self, strings: typing.Iterable[str]) -> None: ... method setSelector (line 784) | def setSelector(self, selector: PySide2.QtCore.QFileSelector) -> None:... class QQmlImageProviderBase (line 786) | class QQmlImageProviderBase(shiboken2.Object): class Flag (line 787) | class Flag: method __init__ (line 792) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 793) | def __and__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __bool__ (line 794) | def __bool__(self) -> bool: ... method __eq__ (line 795) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 796) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 797) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 798) | def __hash__(self) -> int: ... method __index__ (line 799) | def __index__(self) -> int: ... method __int__ (line 800) | def __int__(self) -> int: ... method __invert__ (line 801) | def __invert__(self) -> QQmlImageProviderBase.Flags: ... method __le__ (line 802) | def __le__(self, other: object) -> bool: ... method __lt__ (line 803) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 804) | def __ne__(self, other: object) -> bool: ... method __or__ (line 805) | def __or__(self, other: typing.SupportsInt) -> QQmlImageProviderBase... method __rand__ (line 806) | def __rand__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __ror__ (line 807) | def __ror__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __rxor__ (line 808) | def __rxor__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __xor__ (line 809) | def __xor__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... class Flags (line 811) | class Flags: method __init__ (line 813) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 814) | def __and__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __bool__ (line 815) | def __bool__(self) -> bool: ... method __eq__ (line 816) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 817) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 818) | def __gt__(self, other: object) -> bool: ... method __index__ (line 819) | def __index__(self) -> int: ... method __int__ (line 820) | def __int__(self) -> int: ... method __invert__ (line 821) | def __invert__(self) -> QQmlImageProviderBase.Flags: ... method __le__ (line 822) | def __le__(self, other: object) -> bool: ... method __lt__ (line 823) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 824) | def __ne__(self, other: object) -> bool: ... method __or__ (line 825) | def __or__(self, other: typing.SupportsInt) -> QQmlImageProviderBase... method __rand__ (line 826) | def __rand__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __ror__ (line 827) | def __ror__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __rxor__ (line 828) | def __rxor__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __xor__ (line 829) | def __xor__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... class ImageType (line 831) | class ImageType: method __init__ (line 840) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 841) | def __add__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __and__ (line 842) | def __and__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __bool__ (line 843) | def __bool__(self) -> bool: ... method __eq__ (line 844) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 845) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 846) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 847) | def __hash__(self) -> int: ... method __index__ (line 848) | def __index__(self) -> int: ... method __int__ (line 849) | def __int__(self) -> int: ... method __le__ (line 850) | def __le__(self, other: object) -> bool: ... method __lt__ (line 851) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 852) | def __mul__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __ne__ (line 853) | def __ne__(self, other: object) -> bool: ... method __or__ (line 854) | def __or__(self, other: typing.SupportsInt) -> QQmlImageProviderBase... method __pos__ (line 855) | def __pos__(self): ... method __radd__ (line 856) | def __radd__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __rand__ (line 857) | def __rand__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __rmul__ (line 858) | def __rmul__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __ror__ (line 859) | def __ror__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __rsub__ (line 860) | def __rsub__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __rxor__ (line 861) | def __rxor__(self, other: typing.SupportsInt) -> QQmlImageProviderBa... method __sub__ (line 862) | def __sub__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __xor__ (line 863) | def __xor__(self, other: typing.SupportsInt) -> QQmlImageProviderBas... method __init__ (line 871) | def __init__(cls, *args, **kwargs) -> None: ... method flags (line 872) | def flags(self) -> QQmlImageProviderBase.Flags | QQmlImageProviderBase... method imageType (line 873) | def imageType(self) -> QQmlImageProviderBase.ImageType: ... class QQmlIncubationController (line 875) | class QQmlIncubationController(shiboken2.Object): method __init__ (line 876) | def __init__(self) -> None: ... method engine (line 877) | def engine(self) -> QQmlEngine: ... method incubateFor (line 878) | def incubateFor(self, msecs: int) -> None: ... method incubateWhile (line 879) | def incubateWhile(self, msecs: int = ...) -> bool: ... method incubatingObjectCount (line 880) | def incubatingObjectCount(self) -> int: ... method incubatingObjectCountChanged (line 881) | def incubatingObjectCountChanged(self, arg__1: int) -> None: ... class QQmlIncubator (line 883) | class QQmlIncubator(shiboken2.Object): class IncubationMode (line 884) | class IncubationMode: method __init__ (line 891) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 892) | def __add__(self, other: typing.SupportsInt) -> QQmlIncubator.Incuba... method __and__ (line 893) | def __and__(self, other: typing.SupportsInt) -> QQmlIncubator.Incuba... method __bool__ (line 894) | def __bool__(self) -> bool: ... method __eq__ (line 895) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 896) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 897) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 898) | def __hash__(self) -> int: ... method __index__ (line 899) | def __index__(self) -> int: ... method __int__ (line 900) | def __int__(self) -> int: ... method __le__ (line 901) | def __le__(self, other: object) -> bool: ... method __lt__ (line 902) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 903) | def __mul__(self, other: typing.SupportsInt) -> QQmlIncubator.Incuba... method __ne__ (line 904) | def __ne__(self, other: object) -> bool: ... method __or__ (line 905) | def __or__(self, other: typing.SupportsInt) -> QQmlIncubator.Incubat... method __pos__ (line 906) | def __pos__(self): ... method __radd__ (line 907) | def __radd__(self, other: typing.SupportsInt) -> QQmlIncubator.Incub... method __rand__ (line 908) | def __rand__(self, other: typing.SupportsInt) -> QQmlIncubator.Incub... method __rmul__ (line 909) | def __rmul__(self, other: typing.SupportsInt) -> QQmlIncubator.Incub... method __ror__ (line 910) | def __ror__(self, other: typing.SupportsInt) -> QQmlIncubator.Incuba... method __rsub__ (line 911) | def __rsub__(self, other: typing.SupportsInt) -> QQmlIncubator.Incub... method __rxor__ (line 912) | def __rxor__(self, other: typing.SupportsInt) -> QQmlIncubator.Incub... method __sub__ (line 913) | def __sub__(self, other: typing.SupportsInt) -> QQmlIncubator.Incuba... method __xor__ (line 914) | def __xor__(self, other: typing.SupportsInt) -> QQmlIncubator.Incuba... class Status (line 916) | class Status: method __init__ (line 924) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 925) | def __add__(self, other: typing.SupportsInt) -> QQmlIncubator.Status... method __and__ (line 926) | def __and__(self, other: typing.SupportsInt) -> QQmlIncubator.Status... method __bool__ (line 927) | def __bool__(self) -> bool: ... method __eq__ (line 928) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 929) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 930) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 931) | def __hash__(self) -> int: ... method __index__ (line 932) | def __index__(self) -> int: ... method __int__ (line 933) | def __int__(self) -> int: ... method __le__ (line 934) | def __le__(self, other: object) -> bool: ... method __lt__ (line 935) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 936) | def __mul__(self, other: typing.SupportsInt) -> QQmlIncubator.Status... method __ne__ (line 937) | def __ne__(self, other: object) -> bool: ... method __or__ (line 938) | def __or__(self, other: typing.SupportsInt) -> QQmlIncubator.Status:... method __pos__ (line 939) | def __pos__(self): ... method __radd__ (line 940) | def __radd__(self, other: typing.SupportsInt) -> QQmlIncubator.Statu... method __rand__ (line 941) | def __rand__(self, other: typing.SupportsInt) -> QQmlIncubator.Statu... method __rmul__ (line 942) | def __rmul__(self, other: typing.SupportsInt) -> QQmlIncubator.Statu... method __ror__ (line 943) | def __ror__(self, other: typing.SupportsInt) -> QQmlIncubator.Status... method __rsub__ (line 944) | def __rsub__(self, other: typing.SupportsInt) -> QQmlIncubator.Statu... method __rxor__ (line 945) | def __rxor__(self, other: typing.SupportsInt) -> QQmlIncubator.Statu... method __sub__ (line 946) | def __sub__(self, other: typing.SupportsInt) -> QQmlIncubator.Status... method __xor__ (line 947) | def __xor__(self, other: typing.SupportsInt) -> QQmlIncubator.Status... method __init__ (line 955) | def __init__(self, arg__1: QQmlIncubator.IncubationMode = ...) -> None... method clear (line 956) | def clear(self) -> None: ... method errors (line 957) | def errors(self) -> list[QQmlError]: ... method forceCompletion (line 958) | def forceCompletion(self) -> None: ... method incubationMode (line 959) | def incubationMode(self) -> QQmlIncubator.IncubationMode: ... method isError (line 960) | def isError(self) -> bool: ... method isLoading (line 961) | def isLoading(self) -> bool: ... method isNull (line 962) | def isNull(self) -> bool: ... method isReady (line 963) | def isReady(self) -> bool: ... method object (line 964) | def object(self) -> PySide2.QtCore.QObject: ... method setInitialProperties (line 965) | def setInitialProperties(self, initialProperties: dict[str, typing.Any... method setInitialState (line 966) | def setInitialState(self, arg__1: PySide2.QtCore.QObject) -> None: ... method status (line 967) | def status(self) -> QQmlIncubator.Status: ... method statusChanged (line 968) | def statusChanged(self, arg__1: QQmlIncubator.Status) -> None: ... method __bool__ (line 969) | def __bool__(self) -> bool: ... class QQmlListReference (line 971) | class QQmlListReference(shiboken2.Object): method __init__ (line 973) | def __init__(self, arg__1: PySide2.QtCore.QObject, property: bytes, ar... method __init__ (line 975) | def __init__(self, arg__1: QQmlListReference) -> None: ... method __init__ (line 977) | def __init__(self) -> None: ... method append (line 978) | def append(self, arg__1: PySide2.QtCore.QObject) -> bool: ... method at (line 979) | def at(self, arg__1: int) -> PySide2.QtCore.QObject: ... method canAppend (line 980) | def canAppend(self) -> bool: ... method canAt (line 981) | def canAt(self) -> bool: ... method canClear (line 982) | def canClear(self) -> bool: ... method canCount (line 983) | def canCount(self) -> bool: ... method canRemoveLast (line 984) | def canRemoveLast(self) -> bool: ... method canReplace (line 985) | def canReplace(self) -> bool: ... method clear (line 986) | def clear(self) -> bool: ... method count (line 987) | def count(self) -> int: ... method isManipulable (line 988) | def isManipulable(self) -> bool: ... method isReadable (line 989) | def isReadable(self) -> bool: ... method isValid (line 990) | def isValid(self) -> bool: ... method listElementType (line 991) | def listElementType(self) -> PySide2.QtCore.QMetaObject: ... method object (line 992) | def object(self) -> PySide2.QtCore.QObject: ... method removeLast (line 993) | def removeLast(self) -> bool: ... method replace (line 994) | def replace(self, arg__1: int, arg__2: PySide2.QtCore.QObject) -> bool... method __copy__ (line 995) | def __copy__(self) -> None: ... class QQmlNetworkAccessManagerFactory (line 997) | class QQmlNetworkAccessManagerFactory(shiboken2.Object): method __init__ (line 998) | def __init__(self) -> None: ... method create (line 999) | def create(self, parent: PySide2.QtCore.QObject | None) -> PySide2.QtN... class QQmlParserStatus (line 1001) | class QQmlParserStatus(shiboken2.Object): method __init__ (line 1002) | def __init__(self) -> None: ... method classBegin (line 1003) | def classBegin(self) -> None: ... method componentComplete (line 1004) | def componentComplete(self) -> None: ... class QQmlProperty (line 1006) | class QQmlProperty(shiboken2.Object): class PropertyTypeCategory (line 1007) | class PropertyTypeCategory: method __init__ (line 1015) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1016) | def __add__(self, other: typing.SupportsInt) -> QQmlProperty.Propert... method __and__ (line 1017) | def __and__(self, other: typing.SupportsInt) -> QQmlProperty.Propert... method __bool__ (line 1018) | def __bool__(self) -> bool: ... method __eq__ (line 1019) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1020) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1021) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1022) | def __hash__(self) -> int: ... method __index__ (line 1023) | def __index__(self) -> int: ... method __int__ (line 1024) | def __int__(self) -> int: ... method __le__ (line 1025) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1026) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1027) | def __mul__(self, other: typing.SupportsInt) -> QQmlProperty.Propert... method __ne__ (line 1028) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1029) | def __or__(self, other: typing.SupportsInt) -> QQmlProperty.Property... method __pos__ (line 1030) | def __pos__(self): ... method __radd__ (line 1031) | def __radd__(self, other: typing.SupportsInt) -> QQmlProperty.Proper... method __rand__ (line 1032) | def __rand__(self, other: typing.SupportsInt) -> QQmlProperty.Proper... method __rmul__ (line 1033) | def __rmul__(self, other: typing.SupportsInt) -> QQmlProperty.Proper... method __ror__ (line 1034) | def __ror__(self, other: typing.SupportsInt) -> QQmlProperty.Propert... method __rsub__ (line 1035) | def __rsub__(self, other: typing.SupportsInt) -> QQmlProperty.Proper... method __rxor__ (line 1036) | def __rxor__(self, other: typing.SupportsInt) -> QQmlProperty.Proper... method __sub__ (line 1037) | def __sub__(self, other: typing.SupportsInt) -> QQmlProperty.Propert... method __xor__ (line 1038) | def __xor__(self, other: typing.SupportsInt) -> QQmlProperty.Propert... class Type (line 1040) | class Type: method __init__ (line 1047) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1048) | def __add__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __and__ (line 1049) | def __and__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __bool__ (line 1050) | def __bool__(self) -> bool: ... method __eq__ (line 1051) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1052) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1053) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1054) | def __hash__(self) -> int: ... method __index__ (line 1055) | def __index__(self) -> int: ... method __int__ (line 1056) | def __int__(self) -> int: ... method __le__ (line 1057) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1058) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1059) | def __mul__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __ne__ (line 1060) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1061) | def __or__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __pos__ (line 1062) | def __pos__(self): ... method __radd__ (line 1063) | def __radd__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __rand__ (line 1064) | def __rand__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __rmul__ (line 1065) | def __rmul__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __ror__ (line 1066) | def __ror__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __rsub__ (line 1067) | def __rsub__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __rxor__ (line 1068) | def __rxor__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __sub__ (line 1069) | def __sub__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __xor__ (line 1070) | def __xor__(self, other: typing.SupportsInt) -> QQmlProperty.Type: ... method __init__ (line 1079) | def __init__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3... method __init__ (line 1081) | def __init__(self, arg__1: PySide2.QtCore.QObject, arg__2: str, arg__3... method __init__ (line 1083) | def __init__(self, arg__1: PySide2.QtCore.QObject, arg__2: QQmlContext... method __init__ (line 1085) | def __init__(self, arg__1: PySide2.QtCore.QObject, arg__2: QQmlEngine)... method __init__ (line 1087) | def __init__(self, arg__1: PySide2.QtCore.QObject, arg__2: str) -> Non... method __init__ (line 1089) | def __init__(self, arg__1: PySide2.QtCore.QObject) -> None: ... method __init__ (line 1091) | def __init__(self, arg__1: QQmlProperty) -> None: ... method __init__ (line 1093) | def __init__(self) -> None: ... method connectNotifySignal (line 1095) | def connectNotifySignal(self, dest: PySide2.QtCore.QObject, slot: byte... method connectNotifySignal (line 1097) | def connectNotifySignal(self, dest: PySide2.QtCore.QObject, method: in... method hasNotifySignal (line 1098) | def hasNotifySignal(self) -> bool: ... method index (line 1099) | def index(self) -> int: ... method isDesignable (line 1100) | def isDesignable(self) -> bool: ... method isProperty (line 1101) | def isProperty(self) -> bool: ... method isResettable (line 1102) | def isResettable(self) -> bool: ... method isSignalProperty (line 1103) | def isSignalProperty(self) -> bool: ... method isValid (line 1104) | def isValid(self) -> bool: ... method isWritable (line 1105) | def isWritable(self) -> bool: ... method method (line 1106) | def method(self) -> PySide2.QtCore.QMetaMethod: ... method name (line 1107) | def name(self) -> str: ... method needsNotifySignal (line 1108) | def needsNotifySignal(self) -> bool: ... method object (line 1109) | def object(self) -> PySide2.QtCore.QObject: ... method property (line 1110) | def property(self) -> PySide2.QtCore.QMetaProperty: ... method propertyType (line 1111) | def propertyType(self) -> int: ... method propertyTypeCategory (line 1112) | def propertyTypeCategory(self) -> QQmlProperty.PropertyTypeCategory: ... method propertyTypeName (line 1113) | def propertyTypeName(self) -> bytes: ... method read (line 1115) | def read(self) -> typing.Any: ... method reset (line 1116) | def reset(self) -> bool: ... method type (line 1117) | def type(self) -> QQmlProperty.Type: ... method write (line 1119) | def write(self) -> typing.Any: ... method __copy__ (line 1120) | def __copy__(self) -> None: ... method __eq__ (line 1121) | def __eq__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ge__ (line 1122) | def __ge__(self, other: object) -> bool: ... # type: ignore[valid-type] method __gt__ (line 1123) | def __gt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __le__ (line 1124) | def __le__(self, other: object) -> bool: ... # type: ignore[valid-type] method __lt__ (line 1125) | def __lt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ne__ (line 1126) | def __ne__(self, other: object) -> bool: ... # type: ignore[valid-type] class QQmlPropertyMap (line 1128) | class QQmlPropertyMap(PySide2.QtCore.QObject): method __init__ (line 1131) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method clear (line 1132) | def clear(self, key: str) -> None: ... method contains (line 1133) | def contains(self, key: str) -> bool: ... method count (line 1134) | def count(self) -> int: ... method insert (line 1135) | def insert(self, key: str, value: typing.Any) -> None: ... method isEmpty (line 1136) | def isEmpty(self) -> bool: ... method keys (line 1137) | def keys(self) -> list[str]: ... method size (line 1138) | def size(self) -> int: ... method updateValue (line 1139) | def updateValue(self, key: str, input: typing.Any) -> typing.Any: ... method value (line 1140) | def value(self, key: str) -> typing.Any: ... class QQmlPropertyValueSource (line 1142) | class QQmlPropertyValueSource(shiboken2.Object): method __init__ (line 1143) | def __init__(self) -> None: ... method setTarget (line 1144) | def setTarget(self, arg__1: QQmlProperty) -> None: ... class QQmlScriptString (line 1146) | class QQmlScriptString(shiboken2.Object): method __init__ (line 1148) | def __init__(self, arg__1: QQmlScriptString) -> None: ... method __init__ (line 1150) | def __init__(self) -> None: ... method booleanLiteral (line 1151) | def booleanLiteral(self) -> tuple[bool, bool]: ... method isEmpty (line 1152) | def isEmpty(self) -> bool: ... method isNullLiteral (line 1153) | def isNullLiteral(self) -> bool: ... method isUndefinedLiteral (line 1154) | def isUndefinedLiteral(self) -> bool: ... method numberLiteral (line 1155) | def numberLiteral(self) -> tuple[float, bool]: ... method stringLiteral (line 1156) | def stringLiteral(self) -> str: ... method __copy__ (line 1157) | def __copy__(self) -> None: ... method __eq__ (line 1158) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1159) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1160) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1161) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1162) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1163) | def __ne__(self, other: object) -> bool: ... class QQmlTypesExtensionInterface (line 1165) | class QQmlTypesExtensionInterface(shiboken2.Object): method __init__ (line 1166) | def __init__(self) -> None: ... method registerTypes (line 1167) | def registerTypes(self, uri: bytes) -> None: ... class QtQml (line 1169) | class QtQml(shiboken2.Object): method __init__ (line 1171) | def __init__(cls, *args, **kwargs) -> None: ... method qmlAttachedPropertiesObject (line 1173) | def qmlAttachedPropertiesObject(arg__2: PySide2.QtCore.QObject, arg__3... method qmlAttachedPropertiesObjectById (line 1175) | def qmlAttachedPropertiesObjectById(arg__1: int, arg__2: PySide2.QtCor... method qmlContext (line 1177) | def qmlContext(arg__1: PySide2.QtCore.QObject) -> QQmlContext: ... method qmlEngine (line 1179) | def qmlEngine(arg__1: PySide2.QtCore.QObject) -> QQmlEngine: ... method qmlExecuteDeferred (line 1181) | def qmlExecuteDeferred(arg__1: PySide2.QtCore.QObject) -> None: ... class VolatileBool (line 1183) | class VolatileBool: method __init__ (line 1185) | def __init__(cls, *args, **kwargs) -> None: ... method get (line 1186) | def get(self) -> bool: ... method set (line 1187) | def set(self, a: object) -> None: ... function qmlRegisterType (line 1189) | def qmlRegisterType(arg__1: type, arg__2: bytes, arg__3: int, arg__4: in... FILE: pyside/stubs/PySide2-stubs/QtQuick.pyi class QQuickAsyncImageProvider (line 13) | class QQuickAsyncImageProvider(QQuickImageProvider): method __init__ (line 14) | def __init__(self) -> None: ... method requestImageResponse (line 15) | def requestImageResponse(self, id: str, requestedSize: PySide2.QtCore.... class QQuickFramebufferObject (line 17) | class QQuickFramebufferObject(QQuickItem): class Renderer (line 18) | class Renderer(shiboken2.Object): method __init__ (line 19) | def __init__(self) -> None: ... method createFramebufferObject (line 20) | def createFramebufferObject(self, size: PySide2.QtCore.QSize) -> PyS... method framebufferObject (line 21) | def framebufferObject(self) -> PySide2.QtGui.QOpenGLFramebufferObjec... method invalidateFramebufferObject (line 22) | def invalidateFramebufferObject(self) -> None: ... method render (line 23) | def render(self) -> None: ... method synchronize (line 24) | def synchronize(self, arg__1: QQuickFramebufferObject) -> None: ... method update (line 25) | def update(self) -> None: ... method __init__ (line 29) | def __init__(self, parent: QQuickItem | None = ..., activeFocus: bool ... method createRenderer (line 30) | def createRenderer(self) -> QQuickFramebufferObject.Renderer: ... method geometryChanged (line 31) | def geometryChanged(self, newGeometry: PySide2.QtCore.QRectF, oldGeome... method isTextureProvider (line 32) | def isTextureProvider(self) -> bool: ... method mirrorVertically (line 33) | def mirrorVertically(self) -> bool: ... method releaseResources (line 34) | def releaseResources(self) -> None: ... method setMirrorVertically (line 35) | def setMirrorVertically(self, enable: bool) -> None: ... method setTextureFollowsItemSize (line 36) | def setTextureFollowsItemSize(self, follows: bool) -> None: ... method textureFollowsItemSize (line 37) | def textureFollowsItemSize(self) -> bool: ... method textureProvider (line 38) | def textureProvider(self) -> QSGTextureProvider: ... method updatePaintNode (line 39) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... class QQuickImageProvider (line 41) | class QQuickImageProvider(PySide2.QtQml.QQmlImageProviderBase): method __init__ (line 42) | def __init__(self, type: PySide2.QtQml.QQmlImageProviderBase.ImageType... method flags (line 43) | def flags(self) -> PySide2.QtQml.QQmlImageProviderBase.Flags | PySide2... method imageType (line 44) | def imageType(self) -> PySide2.QtQml.QQmlImageProviderBase.ImageType: ... method requestImage (line 45) | def requestImage(self, id: str, size: PySide2.QtCore.QSize, requestedS... method requestPixmap (line 46) | def requestPixmap(self, id: str, size: PySide2.QtCore.QSize, requested... method requestTexture (line 47) | def requestTexture(self, id: str, size: PySide2.QtCore.QSize, requeste... class QQuickImageResponse (line 49) | class QQuickImageResponse(PySide2.QtCore.QObject): method __init__ (line 52) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method cancel (line 53) | def cancel(self) -> None: ... method errorString (line 54) | def errorString(self) -> str: ... method textureFactory (line 55) | def textureFactory(self) -> QQuickTextureFactory: ... class QQuickItem (line 57) | class QQuickItem(PySide2.QtCore.QObject, PySide2.QtQml.QQmlParserStatus): class Flag (line 58) | class Flag: method __init__ (line 67) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 68) | def __and__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __bool__ (line 69) | def __bool__(self) -> bool: ... method __eq__ (line 70) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 71) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 72) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 73) | def __hash__(self) -> int: ... method __index__ (line 74) | def __index__(self) -> int: ... method __int__ (line 75) | def __int__(self) -> int: ... method __invert__ (line 76) | def __invert__(self) -> QQuickItem.Flags: ... method __le__ (line 77) | def __le__(self, other: object) -> bool: ... method __lt__ (line 78) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 79) | def __ne__(self, other: object) -> bool: ... method __or__ (line 80) | def __or__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __rand__ (line 81) | def __rand__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __ror__ (line 82) | def __ror__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __rxor__ (line 83) | def __rxor__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __xor__ (line 84) | def __xor__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... class Flags (line 86) | class Flags: method __init__ (line 88) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 89) | def __and__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __bool__ (line 90) | def __bool__(self) -> bool: ... method __eq__ (line 91) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 92) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 93) | def __gt__(self, other: object) -> bool: ... method __index__ (line 94) | def __index__(self) -> int: ... method __int__ (line 95) | def __int__(self) -> int: ... method __invert__ (line 96) | def __invert__(self) -> QQuickItem.Flags: ... method __le__ (line 97) | def __le__(self, other: object) -> bool: ... method __lt__ (line 98) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 99) | def __ne__(self, other: object) -> bool: ... method __or__ (line 100) | def __or__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __rand__ (line 101) | def __rand__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __ror__ (line 102) | def __ror__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __rxor__ (line 103) | def __rxor__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... method __xor__ (line 104) | def __xor__(self, other: typing.SupportsInt) -> QQuickItem.Flags: ... class ItemChange (line 106) | class ItemChange: method __init__ (line 121) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 122) | def __add__(self, other: typing.SupportsInt) -> QQuickItem.ItemChang... method __and__ (line 123) | def __and__(self, other: typing.SupportsInt) -> QQuickItem.ItemChang... method __bool__ (line 124) | def __bool__(self) -> bool: ... method __eq__ (line 125) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 126) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 127) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 128) | def __hash__(self) -> int: ... method __index__ (line 129) | def __index__(self) -> int: ... method __int__ (line 130) | def __int__(self) -> int: ... method __le__ (line 131) | def __le__(self, other: object) -> bool: ... method __lt__ (line 132) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 133) | def __mul__(self, other: typing.SupportsInt) -> QQuickItem.ItemChang... method __ne__ (line 134) | def __ne__(self, other: object) -> bool: ... method __or__ (line 135) | def __or__(self, other: typing.SupportsInt) -> QQuickItem.ItemChange... method __pos__ (line 136) | def __pos__(self): ... method __radd__ (line 137) | def __radd__(self, other: typing.SupportsInt) -> QQuickItem.ItemChan... method __rand__ (line 138) | def __rand__(self, other: typing.SupportsInt) -> QQuickItem.ItemChan... method __rmul__ (line 139) | def __rmul__(self, other: typing.SupportsInt) -> QQuickItem.ItemChan... method __ror__ (line 140) | def __ror__(self, other: typing.SupportsInt) -> QQuickItem.ItemChang... method __rsub__ (line 141) | def __rsub__(self, other: typing.SupportsInt) -> QQuickItem.ItemChan... method __rxor__ (line 142) | def __rxor__(self, other: typing.SupportsInt) -> QQuickItem.ItemChan... method __sub__ (line 143) | def __sub__(self, other: typing.SupportsInt) -> QQuickItem.ItemChang... method __xor__ (line 144) | def __xor__(self, other: typing.SupportsInt) -> QQuickItem.ItemChang... class TransformOrigin (line 146) | class TransformOrigin: method __init__ (line 159) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 160) | def __add__(self, other: typing.SupportsInt) -> QQuickItem.Transform... method __and__ (line 161) | def __and__(self, other: typing.SupportsInt) -> QQuickItem.Transform... method __bool__ (line 162) | def __bool__(self) -> bool: ... method __eq__ (line 163) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 164) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 165) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 166) | def __hash__(self) -> int: ... method __index__ (line 167) | def __index__(self) -> int: ... method __int__ (line 168) | def __int__(self) -> int: ... method __le__ (line 169) | def __le__(self, other: object) -> bool: ... method __lt__ (line 170) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 171) | def __mul__(self, other: typing.SupportsInt) -> QQuickItem.Transform... method __ne__ (line 172) | def __ne__(self, other: object) -> bool: ... method __or__ (line 173) | def __or__(self, other: typing.SupportsInt) -> QQuickItem.TransformO... method __pos__ (line 174) | def __pos__(self): ... method __radd__ (line 175) | def __radd__(self, other: typing.SupportsInt) -> QQuickItem.Transfor... method __rand__ (line 176) | def __rand__(self, other: typing.SupportsInt) -> QQuickItem.Transfor... method __rmul__ (line 177) | def __rmul__(self, other: typing.SupportsInt) -> QQuickItem.Transfor... method __ror__ (line 178) | def __ror__(self, other: typing.SupportsInt) -> QQuickItem.Transform... method __rsub__ (line 179) | def __rsub__(self, other: typing.SupportsInt) -> QQuickItem.Transfor... method __rxor__ (line 180) | def __rxor__(self, other: typing.SupportsInt) -> QQuickItem.Transfor... method __sub__ (line 181) | def __sub__(self, other: typing.SupportsInt) -> QQuickItem.Transform... method __xor__ (line 182) | def __xor__(self, other: typing.SupportsInt) -> QQuickItem.Transform... class UpdatePaintNodeData (line 184) | class UpdatePaintNodeData(shiboken2.Object): method __init__ (line 187) | def __init__(cls, *args, **kwargs) -> None: ... method __copy__ (line 188) | def __copy__(self) -> None: ... method __init__ (line 242) | def __init__(self, parent: QQuickItem | None = ..., activeFocus: bool ... method acceptHoverEvents (line 243) | def acceptHoverEvents(self) -> bool: ... method acceptTouchEvents (line 244) | def acceptTouchEvents(self) -> bool: ... method acceptedMouseButtons (line 245) | def acceptedMouseButtons(self) -> PySide2.QtCore.Qt.MouseButtons | PyS... method activeFocusOnTab (line 246) | def activeFocusOnTab(self) -> bool: ... method antialiasing (line 247) | def antialiasing(self) -> bool: ... method baselineOffset (line 248) | def baselineOffset(self) -> float: ... method boundingRect (line 249) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method childAt (line 250) | def childAt(self, x: float, y: float) -> QQuickItem: ... method childItems (line 251) | def childItems(self) -> list[QQuickItem]: ... method childMouseEventFilter (line 252) | def childMouseEventFilter(self, arg__1: QQuickItem, arg__2: PySide2.Qt... method childrenRect (line 253) | def childrenRect(self) -> PySide2.QtCore.QRectF: ... method classBegin (line 254) | def classBegin(self) -> None: ... method clip (line 255) | def clip(self) -> bool: ... method clipRect (line 256) | def clipRect(self) -> PySide2.QtCore.QRectF: ... method componentComplete (line 257) | def componentComplete(self) -> None: ... method containmentMask (line 258) | def containmentMask(self) -> PySide2.QtCore.QObject: ... method contains (line 259) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method cursor (line 260) | def cursor(self) -> PySide2.QtGui.QCursor: ... method dragEnterEvent (line 261) | def dragEnterEvent(self, arg__1: PySide2.QtGui.QDragEnterEvent) -> Non... method dragLeaveEvent (line 262) | def dragLeaveEvent(self, arg__1: PySide2.QtGui.QDragLeaveEvent) -> Non... method dragMoveEvent (line 263) | def dragMoveEvent(self, arg__1: PySide2.QtGui.QDragMoveEvent) -> None:... method dropEvent (line 264) | def dropEvent(self, arg__1: PySide2.QtGui.QDropEvent) -> None: ... method event (line 265) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method filtersChildMouseEvents (line 266) | def filtersChildMouseEvents(self) -> bool: ... method flags (line 267) | def flags(self) -> QQuickItem.Flags | QQuickItem.Flag: ... method focusInEvent (line 268) | def focusInEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 269) | def focusOutEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method forceActiveFocus (line 271) | def forceActiveFocus(self, reason: PySide2.QtCore.Qt.FocusReason) -> N... method forceActiveFocus (line 273) | def forceActiveFocus(self) -> None: ... method geometryChanged (line 274) | def geometryChanged(self, newGeometry: PySide2.QtCore.QRectF, oldGeome... method grabMouse (line 275) | def grabMouse(self) -> None: ... method grabToImage (line 277) | def grabToImage(self, callback: PySide2.QtQml.QJSValue, targetSize: Py... method grabToImage (line 279) | def grabToImage(self, targetSize: PySide2.QtCore.QSize = ...) -> tuple... method grabTouchPoints (line 280) | def grabTouchPoints(self, ids: list[int]) -> None: ... method hasActiveFocus (line 281) | def hasActiveFocus(self) -> bool: ... method hasFocus (line 282) | def hasFocus(self) -> bool: ... method height (line 283) | def height(self) -> float: ... method heightValid (line 284) | def heightValid(self) -> bool: ... method hoverEnterEvent (line 285) | def hoverEnterEvent(self, event: PySide2.QtGui.QHoverEvent) -> None: ... method hoverLeaveEvent (line 286) | def hoverLeaveEvent(self, event: PySide2.QtGui.QHoverEvent) -> None: ... method hoverMoveEvent (line 287) | def hoverMoveEvent(self, event: PySide2.QtGui.QHoverEvent) -> None: ... method implicitHeight (line 288) | def implicitHeight(self) -> float: ... method implicitWidth (line 289) | def implicitWidth(self) -> float: ... method inputMethodEvent (line 290) | def inputMethodEvent(self, arg__1: PySide2.QtGui.QInputMethodEvent) ->... method inputMethodQuery (line 291) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method isAncestorOf (line 292) | def isAncestorOf(self, child: QQuickItem) -> bool: ... method isComponentComplete (line 293) | def isComponentComplete(self) -> bool: ... method isEnabled (line 294) | def isEnabled(self) -> bool: ... method isFocusScope (line 295) | def isFocusScope(self) -> bool: ... method isTextureProvider (line 296) | def isTextureProvider(self) -> bool: ... method isUnderMouse (line 297) | def isUnderMouse(self) -> bool: ... method isVisible (line 298) | def isVisible(self) -> bool: ... method itemTransform (line 299) | def itemTransform(self, arg__1: QQuickItem) -> tuple[PySide2.QtGui.QTr... method keepMouseGrab (line 300) | def keepMouseGrab(self) -> bool: ... method keepTouchGrab (line 301) | def keepTouchGrab(self) -> bool: ... method keyPressEvent (line 302) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 303) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method mapFromGlobal (line 304) | def mapFromGlobal(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCo... method mapFromItem (line 305) | def mapFromItem(self, item: QQuickItem, point: PySide2.QtCore.QPointF)... method mapFromScene (line 306) | def mapFromScene(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCor... method mapRectFromItem (line 307) | def mapRectFromItem(self, item: QQuickItem, rect: PySide2.QtCore.QRect... method mapRectFromScene (line 308) | def mapRectFromScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtC... method mapRectToItem (line 309) | def mapRectToItem(self, item: QQuickItem, rect: PySide2.QtCore.QRectF)... method mapRectToScene (line 310) | def mapRectToScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtCor... method mapToGlobal (line 311) | def mapToGlobal(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCore... method mapToItem (line 312) | def mapToItem(self, item: QQuickItem, point: PySide2.QtCore.QPointF) -... method mapToScene (line 313) | def mapToScene(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCore.... method mouseDoubleClickEvent (line 314) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) -> N... method mouseMoveEvent (line 315) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 316) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 317) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method mouseUngrabEvent (line 318) | def mouseUngrabEvent(self) -> None: ... method nextItemInFocusChain (line 319) | def nextItemInFocusChain(self, forward: bool = ...) -> QQuickItem: ... method opacity (line 320) | def opacity(self) -> float: ... method parentItem (line 321) | def parentItem(self) -> QQuickItem: ... method polish (line 322) | def polish(self) -> None: ... method position (line 323) | def position(self) -> PySide2.QtCore.QPointF: ... method releaseResources (line 324) | def releaseResources(self) -> None: ... method resetAntialiasing (line 325) | def resetAntialiasing(self) -> None: ... method resetHeight (line 326) | def resetHeight(self) -> None: ... method resetWidth (line 327) | def resetWidth(self) -> None: ... method rotation (line 328) | def rotation(self) -> float: ... method scale (line 329) | def scale(self) -> float: ... method scopedFocusItem (line 330) | def scopedFocusItem(self) -> QQuickItem: ... method setAcceptHoverEvents (line 331) | def setAcceptHoverEvents(self, enabled: bool) -> None: ... method setAcceptTouchEvents (line 332) | def setAcceptTouchEvents(self, accept: bool) -> None: ... method setAcceptedMouseButtons (line 333) | def setAcceptedMouseButtons(self, buttons: PySide2.QtCore.Qt.MouseButt... method setActiveFocusOnTab (line 334) | def setActiveFocusOnTab(self, arg__1: bool) -> None: ... method setAntialiasing (line 335) | def setAntialiasing(self, arg__1: bool) -> None: ... method setBaselineOffset (line 336) | def setBaselineOffset(self, arg__1: float) -> None: ... method setClip (line 337) | def setClip(self, arg__1: bool) -> None: ... method setContainmentMask (line 338) | def setContainmentMask(self, mask: PySide2.QtCore.QObject) -> None: ... method setCursor (line 339) | def setCursor(self, cursor: PySide2.QtGui.QCursor | PySide2.QtCore.Qt.... method setEnabled (line 340) | def setEnabled(self, arg__1: bool) -> None: ... method setFiltersChildMouseEvents (line 341) | def setFiltersChildMouseEvents(self, filter: bool) -> None: ... method setFlag (line 342) | def setFlag(self, flag: QQuickItem.Flag, enabled: bool = ...) -> None:... method setFlags (line 343) | def setFlags(self, flags: QQuickItem.Flags | QQuickItem.Flag) -> None:... method setFocus (line 345) | def setFocus(self, focus: bool, reason: PySide2.QtCore.Qt.FocusReason)... method setFocus (line 347) | def setFocus(self, arg__1: bool) -> None: ... method setHeight (line 348) | def setHeight(self, arg__1: float) -> None: ... method setImplicitHeight (line 349) | def setImplicitHeight(self, arg__1: float) -> None: ... method setImplicitSize (line 350) | def setImplicitSize(self, arg__1: float, arg__2: float) -> None: ... method setImplicitWidth (line 351) | def setImplicitWidth(self, arg__1: float) -> None: ... method setKeepMouseGrab (line 352) | def setKeepMouseGrab(self, arg__1: bool) -> None: ... method setKeepTouchGrab (line 353) | def setKeepTouchGrab(self, arg__1: bool) -> None: ... method setOpacity (line 354) | def setOpacity(self, arg__1: float) -> None: ... method setParentItem (line 355) | def setParentItem(self, parent: QQuickItem) -> None: ... method setPosition (line 356) | def setPosition(self, arg__1: PySide2.QtCore.QPointF) -> None: ... method setRotation (line 357) | def setRotation(self, arg__1: float) -> None: ... method setScale (line 358) | def setScale(self, arg__1: float) -> None: ... method setSize (line 359) | def setSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method setSmooth (line 360) | def setSmooth(self, arg__1: bool) -> None: ... method setState (line 361) | def setState(self, arg__1: str) -> None: ... method setTransformOrigin (line 362) | def setTransformOrigin(self, arg__1: QQuickItem.TransformOrigin) -> No... method setTransformOriginPoint (line 363) | def setTransformOriginPoint(self, arg__1: PySide2.QtCore.QPointF) -> N... method setVisible (line 364) | def setVisible(self, arg__1: bool) -> None: ... method setWidth (line 365) | def setWidth(self, arg__1: float) -> None: ... method setX (line 366) | def setX(self, arg__1: float) -> None: ... method setY (line 367) | def setY(self, arg__1: float) -> None: ... method setZ (line 368) | def setZ(self, arg__1: float) -> None: ... method size (line 369) | def size(self) -> PySide2.QtCore.QSizeF: ... method smooth (line 370) | def smooth(self) -> bool: ... method stackAfter (line 371) | def stackAfter(self, arg__1: QQuickItem) -> None: ... method stackBefore (line 372) | def stackBefore(self, arg__1: QQuickItem) -> None: ... method state (line 373) | def state(self) -> str: ... method textureProvider (line 374) | def textureProvider(self) -> QSGTextureProvider: ... method touchEvent (line 375) | def touchEvent(self, event: PySide2.QtGui.QTouchEvent) -> None: ... method touchUngrabEvent (line 376) | def touchUngrabEvent(self) -> None: ... method transformOrigin (line 377) | def transformOrigin(self) -> QQuickItem.TransformOrigin: ... method transformOriginPoint (line 378) | def transformOriginPoint(self) -> PySide2.QtCore.QPointF: ... method ungrabMouse (line 379) | def ungrabMouse(self) -> None: ... method ungrabTouchPoints (line 380) | def ungrabTouchPoints(self) -> None: ... method unsetCursor (line 381) | def unsetCursor(self) -> None: ... method update (line 382) | def update(self) -> None: ... method updateInputMethod (line 383) | def updateInputMethod(self, queries: PySide2.QtCore.Qt.InputMethodQuer... method updatePaintNode (line 384) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... method updatePolish (line 385) | def updatePolish(self) -> None: ... method wheelEvent (line 386) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... method width (line 387) | def width(self) -> float: ... method widthValid (line 388) | def widthValid(self) -> bool: ... method window (line 389) | def window(self) -> QQuickWindow: ... method windowDeactivateEvent (line 390) | def windowDeactivateEvent(self) -> None: ... method x (line 391) | def x(self) -> float: ... method y (line 392) | def y(self) -> float: ... method z (line 393) | def z(self) -> float: ... class QQuickItemGrabResult (line 395) | class QQuickItemGrabResult(PySide2.QtCore.QObject): method __init__ (line 399) | def __init__(cls, *args, destroyed: typing.Callable = ..., image: PySi... method event (line 400) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method image (line 401) | def image(self) -> PySide2.QtGui.QImage: ... method saveToFile (line 402) | def saveToFile(self, fileName: str) -> bool: ... method url (line 403) | def url(self) -> PySide2.QtCore.QUrl: ... class QQuickPaintedItem (line 405) | class QQuickPaintedItem(QQuickItem): class PerformanceHint (line 406) | class PerformanceHint: method __init__ (line 411) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 412) | def __and__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Pe... method __bool__ (line 413) | def __bool__(self) -> bool: ... method __eq__ (line 414) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 415) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 416) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 417) | def __hash__(self) -> int: ... method __index__ (line 418) | def __index__(self) -> int: ... method __int__ (line 419) | def __int__(self) -> int: ... method __invert__ (line 420) | def __invert__(self) -> QQuickPaintedItem.PerformanceHints: ... method __le__ (line 421) | def __le__(self, other: object) -> bool: ... method __lt__ (line 422) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 423) | def __ne__(self, other: object) -> bool: ... method __or__ (line 424) | def __or__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Per... method __rand__ (line 425) | def __rand__(self, other: typing.SupportsInt) -> QQuickPaintedItem.P... method __ror__ (line 426) | def __ror__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Pe... method __rxor__ (line 427) | def __rxor__(self, other: typing.SupportsInt) -> QQuickPaintedItem.P... method __xor__ (line 428) | def __xor__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Pe... class PerformanceHints (line 430) | class PerformanceHints: method __init__ (line 432) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 433) | def __and__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Pe... method __bool__ (line 434) | def __bool__(self) -> bool: ... method __eq__ (line 435) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 436) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 437) | def __gt__(self, other: object) -> bool: ... method __index__ (line 438) | def __index__(self) -> int: ... method __int__ (line 439) | def __int__(self) -> int: ... method __invert__ (line 440) | def __invert__(self) -> QQuickPaintedItem.PerformanceHints: ... method __le__ (line 441) | def __le__(self, other: object) -> bool: ... method __lt__ (line 442) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 443) | def __ne__(self, other: object) -> bool: ... method __or__ (line 444) | def __or__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Per... method __rand__ (line 445) | def __rand__(self, other: typing.SupportsInt) -> QQuickPaintedItem.P... method __ror__ (line 446) | def __ror__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Pe... method __rxor__ (line 447) | def __rxor__(self, other: typing.SupportsInt) -> QQuickPaintedItem.P... method __xor__ (line 448) | def __xor__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Pe... class RenderTarget (line 450) | class RenderTarget: method __init__ (line 457) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 458) | def __add__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Re... method __and__ (line 459) | def __and__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Re... method __bool__ (line 460) | def __bool__(self) -> bool: ... method __eq__ (line 461) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 462) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 463) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 464) | def __hash__(self) -> int: ... method __index__ (line 465) | def __index__(self) -> int: ... method __int__ (line 466) | def __int__(self) -> int: ... method __le__ (line 467) | def __le__(self, other: object) -> bool: ... method __lt__ (line 468) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 469) | def __mul__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Re... method __ne__ (line 470) | def __ne__(self, other: object) -> bool: ... method __or__ (line 471) | def __or__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Ren... method __pos__ (line 472) | def __pos__(self): ... method __radd__ (line 473) | def __radd__(self, other: typing.SupportsInt) -> QQuickPaintedItem.R... method __rand__ (line 474) | def __rand__(self, other: typing.SupportsInt) -> QQuickPaintedItem.R... method __rmul__ (line 475) | def __rmul__(self, other: typing.SupportsInt) -> QQuickPaintedItem.R... method __ror__ (line 476) | def __ror__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Re... method __rsub__ (line 477) | def __rsub__(self, other: typing.SupportsInt) -> QQuickPaintedItem.R... method __rxor__ (line 478) | def __rxor__(self, other: typing.SupportsInt) -> QQuickPaintedItem.R... method __sub__ (line 479) | def __sub__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Re... method __xor__ (line 480) | def __xor__(self, other: typing.SupportsInt) -> QQuickPaintedItem.Re... method __init__ (line 491) | def __init__(self, parent: QQuickItem | None = ..., activeFocus: bool ... method antialiasing (line 492) | def antialiasing(self) -> bool: ... method contentsBoundingRect (line 493) | def contentsBoundingRect(self) -> PySide2.QtCore.QRectF: ... method contentsScale (line 494) | def contentsScale(self) -> float: ... method contentsSize (line 495) | def contentsSize(self) -> PySide2.QtCore.QSize: ... method fillColor (line 496) | def fillColor(self) -> PySide2.QtGui.QColor: ... method isTextureProvider (line 497) | def isTextureProvider(self) -> bool: ... method mipmap (line 498) | def mipmap(self) -> bool: ... method opaquePainting (line 499) | def opaquePainting(self) -> bool: ... method paint (line 500) | def paint(self, painter: PySide2.QtGui.QPainter) -> None: ... method performanceHints (line 501) | def performanceHints(self) -> QQuickPaintedItem.PerformanceHints | QQu... method releaseResources (line 502) | def releaseResources(self) -> None: ... method renderTarget (line 503) | def renderTarget(self) -> QQuickPaintedItem.RenderTarget: ... method resetContentsSize (line 504) | def resetContentsSize(self) -> None: ... method setAntialiasing (line 505) | def setAntialiasing(self, enable: bool) -> None: ... method setContentsScale (line 506) | def setContentsScale(self, arg__1: float) -> None: ... method setContentsSize (line 507) | def setContentsSize(self, arg__1: PySide2.QtCore.QSize) -> None: ... method setFillColor (line 508) | def setFillColor(self, arg__1: PySide2.QtGui.QColor | PySide2.QtCore.Q... method setMipmap (line 509) | def setMipmap(self, enable: bool) -> None: ... method setOpaquePainting (line 510) | def setOpaquePainting(self, opaque: bool) -> None: ... method setPerformanceHint (line 511) | def setPerformanceHint(self, hint: QQuickPaintedItem.PerformanceHint, ... method setPerformanceHints (line 512) | def setPerformanceHints(self, hints: QQuickPaintedItem.PerformanceHint... method setRenderTarget (line 513) | def setRenderTarget(self, target: QQuickPaintedItem.RenderTarget) -> N... method setTextureSize (line 514) | def setTextureSize(self, size: PySide2.QtCore.QSize) -> None: ... method textureProvider (line 515) | def textureProvider(self) -> QSGTextureProvider: ... method textureSize (line 516) | def textureSize(self) -> PySide2.QtCore.QSize: ... method update (line 518) | def update(self, rect: PySide2.QtCore.QRect = ...) -> None: ... method updatePaintNode (line 519) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... class QQuickRenderControl (line 521) | class QQuickRenderControl(PySide2.QtCore.QObject): method __init__ (line 525) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method grab (line 526) | def grab(self) -> PySide2.QtGui.QImage: ... method initialize (line 527) | def initialize(self, gl: PySide2.QtGui.QOpenGLContext) -> None: ... method invalidate (line 528) | def invalidate(self) -> None: ... method polishItems (line 529) | def polishItems(self) -> None: ... method prepareThread (line 530) | def prepareThread(self, targetThread: PySide2.QtCore.QThread) -> None:... method render (line 531) | def render(self) -> None: ... method renderWindow (line 532) | def renderWindow(self, offset: PySide2.QtCore.QPoint) -> PySide2.QtGui... method renderWindowFor (line 534) | def renderWindowFor(win: QQuickWindow, offset: PySide2.QtCore.QPoint |... method sync (line 535) | def sync(self) -> bool: ... class QQuickTextDocument (line 537) | class QQuickTextDocument(PySide2.QtCore.QObject): method __init__ (line 539) | def __init__(self, parent: QQuickItem, destroyed: typing.Callable = ..... method textDocument (line 540) | def textDocument(self) -> PySide2.QtGui.QTextDocument: ... class QQuickTextureFactory (line 542) | class QQuickTextureFactory(PySide2.QtCore.QObject): method __init__ (line 544) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method createTexture (line 545) | def createTexture(self, window: QQuickWindow) -> QSGTexture: ... method image (line 546) | def image(self) -> PySide2.QtGui.QImage: ... method textureByteCount (line 547) | def textureByteCount(self) -> int: ... method textureFactoryForImage (line 549) | def textureFactoryForImage(image: PySide2.QtGui.QImage) -> QQuickTextu... method textureSize (line 550) | def textureSize(self) -> PySide2.QtCore.QSize: ... class QQuickTransform (line 552) | class QQuickTransform(PySide2.QtCore.QObject): method __init__ (line 554) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method appendToItem (line 555) | def appendToItem(self, arg__1: QQuickItem) -> None: ... method applyTo (line 556) | def applyTo(self, matrix: PySide2.QtGui.QMatrix4x4) -> None: ... method prependToItem (line 557) | def prependToItem(self, arg__1: QQuickItem) -> None: ... method update (line 558) | def update(self) -> None: ... class QQuickView (line 560) | class QQuickView(QQuickWindow): class ResizeMode (line 561) | class ResizeMode: method __init__ (line 567) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 568) | def __add__(self, other: typing.SupportsInt) -> QQuickView.ResizeMod... method __and__ (line 569) | def __and__(self, other: typing.SupportsInt) -> QQuickView.ResizeMod... method __bool__ (line 570) | def __bool__(self) -> bool: ... method __eq__ (line 571) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 572) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 573) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 574) | def __hash__(self) -> int: ... method __index__ (line 575) | def __index__(self) -> int: ... method __int__ (line 576) | def __int__(self) -> int: ... method __le__ (line 577) | def __le__(self, other: object) -> bool: ... method __lt__ (line 578) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 579) | def __mul__(self, other: typing.SupportsInt) -> QQuickView.ResizeMod... method __ne__ (line 580) | def __ne__(self, other: object) -> bool: ... method __or__ (line 581) | def __or__(self, other: typing.SupportsInt) -> QQuickView.ResizeMode... method __pos__ (line 582) | def __pos__(self): ... method __radd__ (line 583) | def __radd__(self, other: typing.SupportsInt) -> QQuickView.ResizeMo... method __rand__ (line 584) | def __rand__(self, other: typing.SupportsInt) -> QQuickView.ResizeMo... method __rmul__ (line 585) | def __rmul__(self, other: typing.SupportsInt) -> QQuickView.ResizeMo... method __ror__ (line 586) | def __ror__(self, other: typing.SupportsInt) -> QQuickView.ResizeMod... method __rsub__ (line 587) | def __rsub__(self, other: typing.SupportsInt) -> QQuickView.ResizeMo... method __rxor__ (line 588) | def __rxor__(self, other: typing.SupportsInt) -> QQuickView.ResizeMo... method __sub__ (line 589) | def __sub__(self, other: typing.SupportsInt) -> QQuickView.ResizeMod... method __xor__ (line 590) | def __xor__(self, other: typing.SupportsInt) -> QQuickView.ResizeMod... class Status (line 592) | class Status: method __init__ (line 600) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 601) | def __add__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __and__ (line 602) | def __and__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __bool__ (line 603) | def __bool__(self) -> bool: ... method __eq__ (line 604) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 605) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 606) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 607) | def __hash__(self) -> int: ... method __index__ (line 608) | def __index__(self) -> int: ... method __int__ (line 609) | def __int__(self) -> int: ... method __le__ (line 610) | def __le__(self, other: object) -> bool: ... method __lt__ (line 611) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 612) | def __mul__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __ne__ (line 613) | def __ne__(self, other: object) -> bool: ... method __or__ (line 614) | def __or__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __pos__ (line 615) | def __pos__(self): ... method __radd__ (line 616) | def __radd__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __rand__ (line 617) | def __rand__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __rmul__ (line 618) | def __rmul__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __ror__ (line 619) | def __ror__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __rsub__ (line 620) | def __rsub__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __rxor__ (line 621) | def __rxor__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __sub__ (line 622) | def __sub__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __xor__ (line 623) | def __xor__(self, other: typing.SupportsInt) -> QQuickView.Status: ... method __init__ (line 633) | def __init__(self, engine: PySide2.QtQml.QQmlEngine, parent: PySide2.Q... method __init__ (line 635) | def __init__(self, source: PySide2.QtCore.QUrl, renderControl: QQuickR... method __init__ (line 637) | def __init__(self, source: PySide2.QtCore.QUrl, parent: PySide2.QtGui.... method __init__ (line 639) | def __init__(self, parent: PySide2.QtGui.QWindow | None = ..., active:... method engine (line 640) | def engine(self) -> PySide2.QtQml.QQmlEngine: ... method errors (line 641) | def errors(self) -> list[PySide2.QtQml.QQmlError]: ... method initialSize (line 642) | def initialSize(self) -> PySide2.QtCore.QSize: ... method keyPressEvent (line 643) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 644) | def keyReleaseEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method mouseMoveEvent (line 645) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 646) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 647) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method resizeEvent (line 648) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method resizeMode (line 649) | def resizeMode(self) -> QQuickView.ResizeMode: ... method rootContext (line 650) | def rootContext(self) -> PySide2.QtQml.QQmlContext: ... method rootObject (line 651) | def rootObject(self) -> QQuickItem: ... method setContent (line 652) | def setContent(self, url: PySide2.QtCore.QUrl, component: PySide2.QtQm... method setInitialProperties (line 653) | def setInitialProperties(self, initialProperties: dict[str, typing.Any... method setResizeMode (line 654) | def setResizeMode(self, arg__1: QQuickView.ResizeMode) -> None: ... method setSource (line 655) | def setSource(self, arg__1: PySide2.QtCore.QUrl) -> None: ... method sizeHint (line 656) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method source (line 657) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 658) | def status(self) -> QQuickView.Status: ... method timerEvent (line 659) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... class QQuickWindow (line 661) | class QQuickWindow(PySide2.QtGui.QWindow): class CreateTextureOption (line 662) | class CreateTextureOption: method __init__ (line 671) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 672) | def __and__(self, other: typing.SupportsInt) -> QQuickWindow.CreateT... method __bool__ (line 673) | def __bool__(self) -> bool: ... method __eq__ (line 674) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 675) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 676) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 677) | def __hash__(self) -> int: ... method __index__ (line 678) | def __index__(self) -> int: ... method __int__ (line 679) | def __int__(self) -> int: ... method __invert__ (line 680) | def __invert__(self) -> QQuickWindow.CreateTextureOptions: ... method __le__ (line 681) | def __le__(self, other: object) -> bool: ... method __lt__ (line 682) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 683) | def __ne__(self, other: object) -> bool: ... method __or__ (line 684) | def __or__(self, other: typing.SupportsInt) -> QQuickWindow.CreateTe... method __rand__ (line 685) | def __rand__(self, other: typing.SupportsInt) -> QQuickWindow.Create... method __ror__ (line 686) | def __ror__(self, other: typing.SupportsInt) -> QQuickWindow.CreateT... method __rxor__ (line 687) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWindow.Create... method __xor__ (line 688) | def __xor__(self, other: typing.SupportsInt) -> QQuickWindow.CreateT... class CreateTextureOptions (line 690) | class CreateTextureOptions: method __init__ (line 692) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 693) | def __and__(self, other: typing.SupportsInt) -> QQuickWindow.CreateT... method __bool__ (line 694) | def __bool__(self) -> bool: ... method __eq__ (line 695) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 696) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 697) | def __gt__(self, other: object) -> bool: ... method __index__ (line 698) | def __index__(self) -> int: ... method __int__ (line 699) | def __int__(self) -> int: ... method __invert__ (line 700) | def __invert__(self) -> QQuickWindow.CreateTextureOptions: ... method __le__ (line 701) | def __le__(self, other: object) -> bool: ... method __lt__ (line 702) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 703) | def __ne__(self, other: object) -> bool: ... method __or__ (line 704) | def __or__(self, other: typing.SupportsInt) -> QQuickWindow.CreateTe... method __rand__ (line 705) | def __rand__(self, other: typing.SupportsInt) -> QQuickWindow.Create... method __ror__ (line 706) | def __ror__(self, other: typing.SupportsInt) -> QQuickWindow.CreateT... method __rxor__ (line 707) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWindow.Create... method __xor__ (line 708) | def __xor__(self, other: typing.SupportsInt) -> QQuickWindow.CreateT... class NativeObjectType (line 710) | class NativeObjectType: method __init__ (line 715) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 716) | def __add__(self, other: typing.SupportsInt) -> QQuickWindow.NativeO... method __and__ (line 717) | def __and__(self, other: typing.SupportsInt) -> QQuickWindow.NativeO... method __bool__ (line 718) | def __bool__(self) -> bool: ... method __eq__ (line 719) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 720) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 721) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 722) | def __hash__(self) -> int: ... method __index__ (line 723) | def __index__(self) -> int: ... method __int__ (line 724) | def __int__(self) -> int: ... method __le__ (line 725) | def __le__(self, other: object) -> bool: ... method __lt__ (line 726) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 727) | def __mul__(self, other: typing.SupportsInt) -> QQuickWindow.NativeO... method __ne__ (line 728) | def __ne__(self, other: object) -> bool: ... method __or__ (line 729) | def __or__(self, other: typing.SupportsInt) -> QQuickWindow.NativeOb... method __pos__ (line 730) | def __pos__(self): ... method __radd__ (line 731) | def __radd__(self, other: typing.SupportsInt) -> QQuickWindow.Native... method __rand__ (line 732) | def __rand__(self, other: typing.SupportsInt) -> QQuickWindow.Native... method __rmul__ (line 733) | def __rmul__(self, other: typing.SupportsInt) -> QQuickWindow.Native... method __ror__ (line 734) | def __ror__(self, other: typing.SupportsInt) -> QQuickWindow.NativeO... method __rsub__ (line 735) | def __rsub__(self, other: typing.SupportsInt) -> QQuickWindow.Native... method __rxor__ (line 736) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWindow.Native... method __sub__ (line 737) | def __sub__(self, other: typing.SupportsInt) -> QQuickWindow.NativeO... method __xor__ (line 738) | def __xor__(self, other: typing.SupportsInt) -> QQuickWindow.NativeO... class RenderStage (line 740) | class RenderStage: method __init__ (line 750) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 751) | def __add__(self, other: typing.SupportsInt) -> QQuickWindow.RenderS... method __and__ (line 752) | def __and__(self, other: typing.SupportsInt) -> QQuickWindow.RenderS... method __bool__ (line 753) | def __bool__(self) -> bool: ... method __eq__ (line 754) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 755) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 756) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 757) | def __hash__(self) -> int: ... method __index__ (line 758) | def __index__(self) -> int: ... method __int__ (line 759) | def __int__(self) -> int: ... method __le__ (line 760) | def __le__(self, other: object) -> bool: ... method __lt__ (line 761) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 762) | def __mul__(self, other: typing.SupportsInt) -> QQuickWindow.RenderS... method __ne__ (line 763) | def __ne__(self, other: object) -> bool: ... method __or__ (line 764) | def __or__(self, other: typing.SupportsInt) -> QQuickWindow.RenderSt... method __pos__ (line 765) | def __pos__(self): ... method __radd__ (line 766) | def __radd__(self, other: typing.SupportsInt) -> QQuickWindow.Render... method __rand__ (line 767) | def __rand__(self, other: typing.SupportsInt) -> QQuickWindow.Render... method __rmul__ (line 768) | def __rmul__(self, other: typing.SupportsInt) -> QQuickWindow.Render... method __ror__ (line 769) | def __ror__(self, other: typing.SupportsInt) -> QQuickWindow.RenderS... method __rsub__ (line 770) | def __rsub__(self, other: typing.SupportsInt) -> QQuickWindow.Render... method __rxor__ (line 771) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWindow.Render... method __sub__ (line 772) | def __sub__(self, other: typing.SupportsInt) -> QQuickWindow.RenderS... method __xor__ (line 773) | def __xor__(self, other: typing.SupportsInt) -> QQuickWindow.RenderS... class SceneGraphError (line 775) | class SceneGraphError: method __init__ (line 780) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 781) | def __add__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGr... method __and__ (line 782) | def __and__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGr... method __bool__ (line 783) | def __bool__(self) -> bool: ... method __eq__ (line 784) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 785) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 786) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 787) | def __hash__(self) -> int: ... method __index__ (line 788) | def __index__(self) -> int: ... method __int__ (line 789) | def __int__(self) -> int: ... method __le__ (line 790) | def __le__(self, other: object) -> bool: ... method __lt__ (line 791) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 792) | def __mul__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGr... method __ne__ (line 793) | def __ne__(self, other: object) -> bool: ... method __or__ (line 794) | def __or__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGra... method __pos__ (line 795) | def __pos__(self): ... method __radd__ (line 796) | def __radd__(self, other: typing.SupportsInt) -> QQuickWindow.SceneG... method __rand__ (line 797) | def __rand__(self, other: typing.SupportsInt) -> QQuickWindow.SceneG... method __rmul__ (line 798) | def __rmul__(self, other: typing.SupportsInt) -> QQuickWindow.SceneG... method __ror__ (line 799) | def __ror__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGr... method __rsub__ (line 800) | def __rsub__(self, other: typing.SupportsInt) -> QQuickWindow.SceneG... method __rxor__ (line 801) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWindow.SceneG... method __sub__ (line 802) | def __sub__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGr... method __xor__ (line 803) | def __xor__(self, other: typing.SupportsInt) -> QQuickWindow.SceneGr... class TextRenderType (line 805) | class TextRenderType: method __init__ (line 811) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 812) | def __add__(self, other: typing.SupportsInt) -> QQuickWindow.TextRen... method __and__ (line 813) | def __and__(self, other: typing.SupportsInt) -> QQuickWindow.TextRen... method __bool__ (line 814) | def __bool__(self) -> bool: ... method __eq__ (line 815) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 816) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 817) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 818) | def __hash__(self) -> int: ... method __index__ (line 819) | def __index__(self) -> int: ... method __int__ (line 820) | def __int__(self) -> int: ... method __le__ (line 821) | def __le__(self, other: object) -> bool: ... method __lt__ (line 822) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 823) | def __mul__(self, other: typing.SupportsInt) -> QQuickWindow.TextRen... method __ne__ (line 824) | def __ne__(self, other: object) -> bool: ... method __or__ (line 825) | def __or__(self, other: typing.SupportsInt) -> QQuickWindow.TextRend... method __pos__ (line 826) | def __pos__(self): ... method __radd__ (line 827) | def __radd__(self, other: typing.SupportsInt) -> QQuickWindow.TextRe... method __rand__ (line 828) | def __rand__(self, other: typing.SupportsInt) -> QQuickWindow.TextRe... method __rmul__ (line 829) | def __rmul__(self, other: typing.SupportsInt) -> QQuickWindow.TextRe... method __ror__ (line 830) | def __ror__(self, other: typing.SupportsInt) -> QQuickWindow.TextRen... method __rsub__ (line 831) | def __rsub__(self, other: typing.SupportsInt) -> QQuickWindow.TextRe... method __rxor__ (line 832) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWindow.TextRe... method __sub__ (line 833) | def __sub__(self, other: typing.SupportsInt) -> QQuickWindow.TextRen... method __xor__ (line 834) | def __xor__(self, other: typing.SupportsInt) -> QQuickWindow.TextRen... method __init__ (line 868) | def __init__(self, renderControl: QQuickRenderControl, active: bool = ... method __init__ (line 870) | def __init__(self, parent: PySide2.QtGui.QWindow | None = ..., active:... method accessibleRoot (line 871) | def accessibleRoot(self) -> PySide2.QtGui.QAccessibleInterface: ... method activeFocusItem (line 872) | def activeFocusItem(self) -> QQuickItem: ... method beginExternalCommands (line 873) | def beginExternalCommands(self) -> None: ... method clearBeforeRendering (line 874) | def clearBeforeRendering(self) -> bool: ... method color (line 875) | def color(self) -> PySide2.QtGui.QColor: ... method contentItem (line 876) | def contentItem(self) -> QQuickItem: ... method createTextureFromId (line 877) | def createTextureFromId(self, id: int, size: PySide2.QtCore.QSize, opt... method createTextureFromImage (line 879) | def createTextureFromImage(self, image: PySide2.QtGui.QImage, options:... method createTextureFromImage (line 881) | def createTextureFromImage(self, image: PySide2.QtGui.QImage) -> QSGTe... method createTextureFromNativeObject (line 882) | def createTextureFromNativeObject(self, type: QQuickWindow.NativeObjec... method effectiveDevicePixelRatio (line 883) | def effectiveDevicePixelRatio(self) -> float: ... method endExternalCommands (line 884) | def endExternalCommands(self) -> None: ... method event (line 885) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method exposeEvent (line 886) | def exposeEvent(self, arg__1: PySide2.QtGui.QExposeEvent) -> None: ... method focusInEvent (line 887) | def focusInEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method focusObject (line 888) | def focusObject(self) -> PySide2.QtCore.QObject: ... method focusOutEvent (line 889) | def focusOutEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method grabWindow (line 890) | def grabWindow(self) -> PySide2.QtGui.QImage: ... method hasDefaultAlphaBuffer (line 892) | def hasDefaultAlphaBuffer() -> bool: ... method hideEvent (line 893) | def hideEvent(self, arg__1: PySide2.QtGui.QHideEvent) -> None: ... method incubationController (line 894) | def incubationController(self) -> PySide2.QtQml.QQmlIncubationControll... method isPersistentOpenGLContext (line 895) | def isPersistentOpenGLContext(self) -> bool: ... method isPersistentSceneGraph (line 896) | def isPersistentSceneGraph(self) -> bool: ... method isSceneGraphInitialized (line 897) | def isSceneGraphInitialized(self) -> bool: ... method keyPressEvent (line 898) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 899) | def keyReleaseEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method mouseDoubleClickEvent (line 900) | def mouseDoubleClickEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> ... method mouseGrabberItem (line 901) | def mouseGrabberItem(self) -> QQuickItem: ... method mouseMoveEvent (line 902) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 903) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 904) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method openglContext (line 905) | def openglContext(self) -> PySide2.QtGui.QOpenGLContext: ... method releaseResources (line 906) | def releaseResources(self) -> None: ... method renderTarget (line 907) | def renderTarget(self) -> PySide2.QtGui.QOpenGLFramebufferObject: ... method renderTargetId (line 908) | def renderTargetId(self) -> int: ... method renderTargetSize (line 909) | def renderTargetSize(self) -> PySide2.QtCore.QSize: ... method resetOpenGLState (line 910) | def resetOpenGLState(self) -> None: ... method resizeEvent (line 911) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method sceneGraphBackend (line 913) | def sceneGraphBackend() -> str: ... method scheduleRenderJob (line 914) | def scheduleRenderJob(self, job: PySide2.QtCore.QRunnable, schedule: Q... method sendEvent (line 915) | def sendEvent(self, arg__1: QQuickItem, arg__2: PySide2.QtCore.QEvent)... method setClearBeforeRendering (line 916) | def setClearBeforeRendering(self, enabled: bool) -> None: ... method setColor (line 917) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Glo... method setDefaultAlphaBuffer (line 919) | def setDefaultAlphaBuffer(useAlpha: bool) -> None: ... method setPersistentOpenGLContext (line 920) | def setPersistentOpenGLContext(self, persistent: bool) -> None: ... method setPersistentSceneGraph (line 921) | def setPersistentSceneGraph(self, persistent: bool) -> None: ... method setRenderTarget (line 923) | def setRenderTarget(self, fboId: int, size: PySide2.QtCore.QSize) -> N... method setRenderTarget (line 925) | def setRenderTarget(self, fbo: PySide2.QtGui.QOpenGLFramebufferObject)... method setSceneGraphBackend (line 927) | def setSceneGraphBackend(backend: str) -> None: ... method setTextRenderType (line 929) | def setTextRenderType(renderType: QQuickWindow.TextRenderType) -> None... method showEvent (line 930) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method tabletEvent (line 931) | def tabletEvent(self, arg__1: PySide2.QtGui.QTabletEvent) -> None: ... method textRenderType (line 933) | def textRenderType() -> QQuickWindow.TextRenderType: ... method update (line 934) | def update(self) -> None: ... method wheelEvent (line 935) | def wheelEvent(self, arg__1: PySide2.QtGui.QWheelEvent) -> None: ... class QSGAbstractRenderer (line 937) | class QSGAbstractRenderer(PySide2.QtCore.QObject): class ClearMode (line 938) | class ClearMode: method __init__ (line 940) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 941) | def __and__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __bool__ (line 942) | def __bool__(self) -> bool: ... method __eq__ (line 943) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 944) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 945) | def __gt__(self, other: object) -> bool: ... method __index__ (line 946) | def __index__(self) -> int: ... method __int__ (line 947) | def __int__(self) -> int: ... method __invert__ (line 948) | def __invert__(self) -> QSGAbstractRenderer.ClearMode: ... method __le__ (line 949) | def __le__(self, other: object) -> bool: ... method __lt__ (line 950) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 951) | def __ne__(self, other: object) -> bool: ... method __or__ (line 952) | def __or__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.C... method __rand__ (line 953) | def __rand__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __ror__ (line 954) | def __ror__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __rxor__ (line 955) | def __rxor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __xor__ (line 956) | def __xor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... class ClearModeBit (line 958) | class ClearModeBit: method __init__ (line 965) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 966) | def __and__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __bool__ (line 967) | def __bool__(self) -> bool: ... method __eq__ (line 968) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 969) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 970) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 971) | def __hash__(self) -> int: ... method __index__ (line 972) | def __index__(self) -> int: ... method __int__ (line 973) | def __int__(self) -> int: ... method __invert__ (line 974) | def __invert__(self) -> QSGAbstractRenderer.ClearMode: ... method __le__ (line 975) | def __le__(self, other: object) -> bool: ... method __lt__ (line 976) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 977) | def __ne__(self, other: object) -> bool: ... method __or__ (line 978) | def __or__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.C... method __rand__ (line 979) | def __rand__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __ror__ (line 980) | def __ror__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __rxor__ (line 981) | def __rxor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __xor__ (line 982) | def __xor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... class MatrixTransformFlag (line 984) | class MatrixTransformFlag: method __init__ (line 989) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 990) | def __and__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __bool__ (line 991) | def __bool__(self) -> bool: ... method __eq__ (line 992) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 993) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 994) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 995) | def __hash__(self) -> int: ... method __index__ (line 996) | def __index__(self) -> int: ... method __int__ (line 997) | def __int__(self) -> int: ... method __invert__ (line 998) | def __invert__(self) -> QSGAbstractRenderer.MatrixTransformFlags: ... method __le__ (line 999) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1000) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1001) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1002) | def __or__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.M... method __rand__ (line 1003) | def __rand__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __ror__ (line 1004) | def __ror__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __rxor__ (line 1005) | def __rxor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __xor__ (line 1006) | def __xor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... class MatrixTransformFlags (line 1008) | class MatrixTransformFlags: method __init__ (line 1010) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1011) | def __and__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __bool__ (line 1012) | def __bool__(self) -> bool: ... method __eq__ (line 1013) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1014) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1015) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1016) | def __index__(self) -> int: ... method __int__ (line 1017) | def __int__(self) -> int: ... method __invert__ (line 1018) | def __invert__(self) -> QSGAbstractRenderer.MatrixTransformFlags: ... method __le__ (line 1019) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1020) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1021) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1022) | def __or__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.M... method __rand__ (line 1023) | def __rand__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __ror__ (line 1024) | def __ror__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __rxor__ (line 1025) | def __rxor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer... method __xor__ (line 1026) | def __xor__(self, other: typing.SupportsInt) -> QSGAbstractRenderer.... method __init__ (line 1033) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method clearColor (line 1034) | def clearColor(self) -> PySide2.QtGui.QColor: ... method clearMode (line 1035) | def clearMode(self) -> QSGAbstractRenderer.ClearMode | QSGAbstractRend... method deviceRect (line 1036) | def deviceRect(self) -> PySide2.QtCore.QRect: ... method nodeChanged (line 1037) | def nodeChanged(self, node: QSGNode, state: QSGNode.DirtyState | QSGNo... method projectionMatrix (line 1038) | def projectionMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method projectionMatrixWithNativeNDC (line 1039) | def projectionMatrixWithNativeNDC(self) -> PySide2.QtGui.QMatrix4x4: ... method renderScene (line 1040) | def renderScene(self, fboId: int = ...) -> None: ... method setClearColor (line 1041) | def setClearColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Q... method setClearMode (line 1042) | def setClearMode(self, mode: QSGAbstractRenderer.ClearMode | QSGAbstra... method setDeviceRect (line 1044) | def setDeviceRect(self, size: PySide2.QtCore.QSize) -> None: ... method setDeviceRect (line 1046) | def setDeviceRect(self, rect: PySide2.QtCore.QRect) -> None: ... method setProjectionMatrix (line 1047) | def setProjectionMatrix(self, matrix: PySide2.QtGui.QMatrix4x4) -> Non... method setProjectionMatrixToRect (line 1049) | def setProjectionMatrixToRect(self, rect: PySide2.QtCore.QRectF, flags... method setProjectionMatrixToRect (line 1051) | def setProjectionMatrixToRect(self, rect: PySide2.QtCore.QRectF) -> No... method setProjectionMatrixWithNativeNDC (line 1052) | def setProjectionMatrixWithNativeNDC(self, matrix: PySide2.QtGui.QMatr... method setViewportRect (line 1054) | def setViewportRect(self, size: PySide2.QtCore.QSize) -> None: ... method setViewportRect (line 1056) | def setViewportRect(self, rect: PySide2.QtCore.QRect) -> None: ... method viewportRect (line 1057) | def viewportRect(self) -> PySide2.QtCore.QRect: ... class QSGBasicGeometryNode (line 1059) | class QSGBasicGeometryNode(QSGNode): method __init__ (line 1060) | def __init__(self, type: QSGNode.NodeType) -> None: ... method clipList (line 1061) | def clipList(self) -> QSGClipNode: ... method geometry (line 1062) | def geometry(self) -> QSGGeometry: ... method matrix (line 1063) | def matrix(self) -> PySide2.QtGui.QMatrix4x4: ... method setGeometry (line 1064) | def setGeometry(self, geometry: QSGGeometry) -> None: ... method setRendererClipList (line 1065) | def setRendererClipList(self, c: QSGClipNode) -> None: ... method setRendererMatrix (line 1066) | def setRendererMatrix(self, m: PySide2.QtGui.QMatrix4x4) -> None: ... class QSGClipNode (line 1068) | class QSGClipNode(QSGBasicGeometryNode): method __init__ (line 1069) | def __init__(self) -> None: ... method clipRect (line 1070) | def clipRect(self) -> PySide2.QtCore.QRectF: ... method isRectangular (line 1071) | def isRectangular(self) -> bool: ... method setClipRect (line 1072) | def setClipRect(self, arg__1: PySide2.QtCore.QRectF) -> None: ... method setIsRectangular (line 1073) | def setIsRectangular(self, rectHint: bool) -> None: ... class QSGDynamicTexture (line 1075) | class QSGDynamicTexture(QSGTexture): method __init__ (line 1077) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method updateTexture (line 1078) | def updateTexture(self) -> bool: ... class QSGEngine (line 1080) | class QSGEngine(PySide2.QtCore.QObject): class CreateTextureOption (line 1081) | class CreateTextureOption: method __init__ (line 1089) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1090) | def __and__(self, other: typing.SupportsInt) -> QSGEngine.CreateText... method __bool__ (line 1091) | def __bool__(self) -> bool: ... method __eq__ (line 1092) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1093) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1094) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1095) | def __hash__(self) -> int: ... method __index__ (line 1096) | def __index__(self) -> int: ... method __int__ (line 1097) | def __int__(self) -> int: ... method __invert__ (line 1098) | def __invert__(self) -> QSGEngine.CreateTextureOptions: ... method __le__ (line 1099) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1100) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1101) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1102) | def __or__(self, other: typing.SupportsInt) -> QSGEngine.CreateTextu... method __rand__ (line 1103) | def __rand__(self, other: typing.SupportsInt) -> QSGEngine.CreateTex... method __ror__ (line 1104) | def __ror__(self, other: typing.SupportsInt) -> QSGEngine.CreateText... method __rxor__ (line 1105) | def __rxor__(self, other: typing.SupportsInt) -> QSGEngine.CreateTex... method __xor__ (line 1106) | def __xor__(self, other: typing.SupportsInt) -> QSGEngine.CreateText... class CreateTextureOptions (line 1108) | class CreateTextureOptions: method __init__ (line 1110) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1111) | def __and__(self, other: typing.SupportsInt) -> QSGEngine.CreateText... method __bool__ (line 1112) | def __bool__(self) -> bool: ... method __eq__ (line 1113) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1114) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1115) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1116) | def __index__(self) -> int: ... method __int__ (line 1117) | def __int__(self) -> int: ... method __invert__ (line 1118) | def __invert__(self) -> QSGEngine.CreateTextureOptions: ... method __le__ (line 1119) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1120) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1121) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1122) | def __or__(self, other: typing.SupportsInt) -> QSGEngine.CreateTextu... method __rand__ (line 1123) | def __rand__(self, other: typing.SupportsInt) -> QSGEngine.CreateTex... method __ror__ (line 1124) | def __ror__(self, other: typing.SupportsInt) -> QSGEngine.CreateText... method __rxor__ (line 1125) | def __rxor__(self, other: typing.SupportsInt) -> QSGEngine.CreateTex... method __xor__ (line 1126) | def __xor__(self, other: typing.SupportsInt) -> QSGEngine.CreateText... method __init__ (line 1132) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method createRenderer (line 1133) | def createRenderer(self) -> QSGAbstractRenderer: ... method createTextureFromId (line 1134) | def createTextureFromId(self, id: int, size: PySide2.QtCore.QSize, opt... method createTextureFromImage (line 1135) | def createTextureFromImage(self, image: PySide2.QtGui.QImage, options:... method initialize (line 1136) | def initialize(self, context: PySide2.QtGui.QOpenGLContext) -> None: ... method invalidate (line 1137) | def invalidate(self) -> None: ... class QSGGeometry (line 1139) | class QSGGeometry(shiboken2.Object): class Attribute (line 1140) | class Attribute(shiboken2.Object): method __init__ (line 1148) | def __init__(self, Attribute: QSGGeometry.Attribute) -> None: ... method __init__ (line 1150) | def __init__(self) -> None: ... method create (line 1152) | def create(pos: int, tupleSize: int, primitiveType: int, isPosition:... method createWithAttributeType (line 1154) | def createWithAttributeType(pos: int, tupleSize: int, primitiveType:... method __copy__ (line 1155) | def __copy__(self) -> None: ... class AttributeSet (line 1157) | class AttributeSet(shiboken2.Object): method __init__ (line 1162) | def __init__(self, AttributeSet: QSGGeometry.AttributeSet) -> None: ... method __init__ (line 1164) | def __init__(self) -> None: ... method __copy__ (line 1165) | def __copy__(self) -> None: ... class AttributeType (line 1167) | class AttributeType: method __init__ (line 1177) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1178) | def __add__(self, other: typing.SupportsInt) -> QSGGeometry.Attribut... method __and__ (line 1179) | def __and__(self, other: typing.SupportsInt) -> QSGGeometry.Attribut... method __bool__ (line 1180) | def __bool__(self) -> bool: ... method __eq__ (line 1181) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1182) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1183) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1184) | def __hash__(self) -> int: ... method __index__ (line 1185) | def __index__(self) -> int: ... method __int__ (line 1186) | def __int__(self) -> int: ... method __le__ (line 1187) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1188) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1189) | def __mul__(self, other: typing.SupportsInt) -> QSGGeometry.Attribut... method __ne__ (line 1190) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1191) | def __or__(self, other: typing.SupportsInt) -> QSGGeometry.Attribute... method __pos__ (line 1192) | def __pos__(self): ... method __radd__ (line 1193) | def __radd__(self, other: typing.SupportsInt) -> QSGGeometry.Attribu... method __rand__ (line 1194) | def __rand__(self, other: typing.SupportsInt) -> QSGGeometry.Attribu... method __rmul__ (line 1195) | def __rmul__(self, other: typing.SupportsInt) -> QSGGeometry.Attribu... method __ror__ (line 1196) | def __ror__(self, other: typing.SupportsInt) -> QSGGeometry.Attribut... method __rsub__ (line 1197) | def __rsub__(self, other: typing.SupportsInt) -> QSGGeometry.Attribu... method __rxor__ (line 1198) | def __rxor__(self, other: typing.SupportsInt) -> QSGGeometry.Attribu... method __sub__ (line 1199) | def __sub__(self, other: typing.SupportsInt) -> QSGGeometry.Attribut... method __xor__ (line 1200) | def __xor__(self, other: typing.SupportsInt) -> QSGGeometry.Attribut... class ColoredPoint2D (line 1202) | class ColoredPoint2D(shiboken2.Object): method __init__ (line 1210) | def __init__(self, ColoredPoint2D: QSGGeometry.ColoredPoint2D) -> No... method __init__ (line 1212) | def __init__(self) -> None: ... method set (line 1213) | def set(self, nx: float, ny: float, nr: int, ng: int, nb: int, na: i... method __copy__ (line 1214) | def __copy__(self) -> None: ... class DataPattern (line 1216) | class DataPattern: method __init__ (line 1224) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1225) | def __add__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatt... method __and__ (line 1226) | def __and__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatt... method __bool__ (line 1227) | def __bool__(self) -> bool: ... method __eq__ (line 1228) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1229) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1230) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1231) | def __hash__(self) -> int: ... method __index__ (line 1232) | def __index__(self) -> int: ... method __int__ (line 1233) | def __int__(self) -> int: ... method __le__ (line 1234) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1235) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1236) | def __mul__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatt... method __ne__ (line 1237) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1238) | def __or__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatte... method __pos__ (line 1239) | def __pos__(self): ... method __radd__ (line 1240) | def __radd__(self, other: typing.SupportsInt) -> QSGGeometry.DataPat... method __rand__ (line 1241) | def __rand__(self, other: typing.SupportsInt) -> QSGGeometry.DataPat... method __rmul__ (line 1242) | def __rmul__(self, other: typing.SupportsInt) -> QSGGeometry.DataPat... method __ror__ (line 1243) | def __ror__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatt... method __rsub__ (line 1244) | def __rsub__(self, other: typing.SupportsInt) -> QSGGeometry.DataPat... method __rxor__ (line 1245) | def __rxor__(self, other: typing.SupportsInt) -> QSGGeometry.DataPat... method __sub__ (line 1246) | def __sub__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatt... method __xor__ (line 1247) | def __xor__(self, other: typing.SupportsInt) -> QSGGeometry.DataPatt... class DrawingMode (line 1249) | class DrawingMode: method __init__ (line 1260) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1261) | def __add__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingM... method __and__ (line 1262) | def __and__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingM... method __bool__ (line 1263) | def __bool__(self) -> bool: ... method __eq__ (line 1264) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1265) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1266) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1267) | def __hash__(self) -> int: ... method __index__ (line 1268) | def __index__(self) -> int: ... method __int__ (line 1269) | def __int__(self) -> int: ... method __le__ (line 1270) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1271) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1272) | def __mul__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingM... method __ne__ (line 1273) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1274) | def __or__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingMo... method __pos__ (line 1275) | def __pos__(self): ... method __radd__ (line 1276) | def __radd__(self, other: typing.SupportsInt) -> QSGGeometry.Drawing... method __rand__ (line 1277) | def __rand__(self, other: typing.SupportsInt) -> QSGGeometry.Drawing... method __rmul__ (line 1278) | def __rmul__(self, other: typing.SupportsInt) -> QSGGeometry.Drawing... method __ror__ (line 1279) | def __ror__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingM... method __rsub__ (line 1280) | def __rsub__(self, other: typing.SupportsInt) -> QSGGeometry.Drawing... method __rxor__ (line 1281) | def __rxor__(self, other: typing.SupportsInt) -> QSGGeometry.Drawing... method __sub__ (line 1282) | def __sub__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingM... method __xor__ (line 1283) | def __xor__(self, other: typing.SupportsInt) -> QSGGeometry.DrawingM... class Point2D (line 1285) | class Point2D(shiboken2.Object): method __init__ (line 1289) | def __init__(self, Point2D: QSGGeometry.Point2D) -> None: ... method __init__ (line 1291) | def __init__(self) -> None: ... method set (line 1292) | def set(self, nx: float, ny: float) -> None: ... method __copy__ (line 1293) | def __copy__(self) -> None: ... class TexturedPoint2D (line 1295) | class TexturedPoint2D(shiboken2.Object): method __init__ (line 1301) | def __init__(self, TexturedPoint2D: QSGGeometry.TexturedPoint2D) -> ... method __init__ (line 1303) | def __init__(self) -> None: ... method set (line 1304) | def set(self, nx: float, ny: float, ntx: float, nty: float) -> None:... method __copy__ (line 1305) | def __copy__(self) -> None: ... class Type (line 1307) | class Type: method __init__ (line 1322) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1323) | def __add__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __and__ (line 1324) | def __and__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __bool__ (line 1325) | def __bool__(self) -> bool: ... method __eq__ (line 1326) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1327) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1328) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1329) | def __hash__(self) -> int: ... method __index__ (line 1330) | def __index__(self) -> int: ... method __int__ (line 1331) | def __int__(self) -> int: ... method __le__ (line 1332) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1333) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1334) | def __mul__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __ne__ (line 1335) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1336) | def __or__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __pos__ (line 1337) | def __pos__(self): ... method __radd__ (line 1338) | def __radd__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __rand__ (line 1339) | def __rand__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __rmul__ (line 1340) | def __rmul__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __ror__ (line 1341) | def __ror__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __rsub__ (line 1342) | def __rsub__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __rxor__ (line 1343) | def __rxor__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __sub__ (line 1344) | def __sub__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __xor__ (line 1345) | def __xor__(self, other: typing.SupportsInt) -> QSGGeometry.Type: ... method __init__ (line 1374) | def __init__(self, attribs: QSGGeometry.AttributeSet, vertexCount: int... method allocate (line 1375) | def allocate(self, vertexCount: int, indexCount: int = ...) -> None: ... method attributeCount (line 1376) | def attributeCount(self) -> int: ... method attributes (line 1377) | def attributes(self) -> QSGGeometry.Attribute: ... method defaultAttributes_ColoredPoint2D (line 1379) | def defaultAttributes_ColoredPoint2D() -> QSGGeometry.AttributeSet: ... method defaultAttributes_Point2D (line 1381) | def defaultAttributes_Point2D() -> QSGGeometry.AttributeSet: ... method defaultAttributes_TexturedPoint2D (line 1383) | def defaultAttributes_TexturedPoint2D() -> QSGGeometry.AttributeSet: ... method drawingMode (line 1384) | def drawingMode(self) -> int: ... method indexCount (line 1385) | def indexCount(self) -> int: ... method indexData (line 1386) | def indexData(self) -> int: ... method indexDataAsUInt (line 1387) | def indexDataAsUInt(self) -> list[int]: ... method indexDataAsUShort (line 1388) | def indexDataAsUShort(self) -> list[int]: ... method indexDataPattern (line 1389) | def indexDataPattern(self) -> QSGGeometry.DataPattern: ... method indexType (line 1390) | def indexType(self) -> int: ... method lineWidth (line 1391) | def lineWidth(self) -> float: ... method markIndexDataDirty (line 1392) | def markIndexDataDirty(self) -> None: ... method markVertexDataDirty (line 1393) | def markVertexDataDirty(self) -> None: ... method setDrawingMode (line 1394) | def setDrawingMode(self, mode: int) -> None: ... method setIndexDataPattern (line 1395) | def setIndexDataPattern(self, p: QSGGeometry.DataPattern) -> None: ... method setLineWidth (line 1396) | def setLineWidth(self, w: float) -> None: ... method setVertexDataPattern (line 1397) | def setVertexDataPattern(self, p: QSGGeometry.DataPattern) -> None: ... method sizeOfIndex (line 1398) | def sizeOfIndex(self) -> int: ... method sizeOfVertex (line 1399) | def sizeOfVertex(self) -> int: ... method updateColoredRectGeometry (line 1401) | def updateColoredRectGeometry(g: QSGGeometry, rect: PySide2.QtCore.QRe... method updateRectGeometry (line 1403) | def updateRectGeometry(g: QSGGeometry, rect: PySide2.QtCore.QRectF) ->... method updateTexturedRectGeometry (line 1405) | def updateTexturedRectGeometry(g: QSGGeometry, rect: PySide2.QtCore.QR... method vertexCount (line 1406) | def vertexCount(self) -> int: ... method vertexData (line 1407) | def vertexData(self) -> int: ... method vertexDataAsColoredPoint2D (line 1408) | def vertexDataAsColoredPoint2D(self) -> QSGGeometry.ColoredPoint2D: ... method vertexDataAsPoint2D (line 1409) | def vertexDataAsPoint2D(self) -> QSGGeometry.Point2D: ... method vertexDataAsTexturedPoint2D (line 1410) | def vertexDataAsTexturedPoint2D(self) -> QSGGeometry.TexturedPoint2D: ... method vertexDataPattern (line 1411) | def vertexDataPattern(self) -> QSGGeometry.DataPattern: ... class QSGGeometryNode (line 1413) | class QSGGeometryNode(QSGBasicGeometryNode): method __init__ (line 1414) | def __init__(self) -> None: ... method inheritedOpacity (line 1415) | def inheritedOpacity(self) -> float: ... method renderOrder (line 1416) | def renderOrder(self) -> int: ... method setInheritedOpacity (line 1417) | def setInheritedOpacity(self, opacity: float) -> None: ... method setRenderOrder (line 1418) | def setRenderOrder(self, order: int) -> None: ... class QSGMaterialType (line 1420) | class QSGMaterialType(shiboken2.Object): method __init__ (line 1421) | def __init__(self) -> None: ... class QSGNode (line 1423) | class QSGNode(shiboken2.Object): class DirtyState (line 1424) | class DirtyState: method __init__ (line 1426) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1427) | def __and__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... method __bool__ (line 1428) | def __bool__(self) -> bool: ... method __eq__ (line 1429) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1430) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1431) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1432) | def __index__(self) -> int: ... method __int__ (line 1433) | def __int__(self) -> int: ... method __invert__ (line 1434) | def __invert__(self) -> QSGNode.DirtyState: ... method __le__ (line 1435) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1436) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1437) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1438) | def __or__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... method __rand__ (line 1439) | def __rand__(self, other: typing.SupportsInt) -> QSGNode.DirtyState:... method __ror__ (line 1440) | def __ror__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... method __rxor__ (line 1441) | def __rxor__(self, other: typing.SupportsInt) -> QSGNode.DirtyState:... method __xor__ (line 1442) | def __xor__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... class DirtyStateBit (line 1444) | class DirtyStateBit: method __init__ (line 1458) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1459) | def __and__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... method __bool__ (line 1460) | def __bool__(self) -> bool: ... method __eq__ (line 1461) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1462) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1463) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1464) | def __hash__(self) -> int: ... method __index__ (line 1465) | def __index__(self) -> int: ... method __int__ (line 1466) | def __int__(self) -> int: ... method __invert__ (line 1467) | def __invert__(self) -> QSGNode.DirtyState: ... method __le__ (line 1468) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1469) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1470) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1471) | def __or__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... method __rand__ (line 1472) | def __rand__(self, other: typing.SupportsInt) -> QSGNode.DirtyState:... method __ror__ (line 1473) | def __ror__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... method __rxor__ (line 1474) | def __rxor__(self, other: typing.SupportsInt) -> QSGNode.DirtyState:... method __xor__ (line 1475) | def __xor__(self, other: typing.SupportsInt) -> QSGNode.DirtyState: ... class Flag (line 1477) | class Flag: method __init__ (line 1487) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1488) | def __and__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __bool__ (line 1489) | def __bool__(self) -> bool: ... method __eq__ (line 1490) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1491) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1492) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1493) | def __hash__(self) -> int: ... method __index__ (line 1494) | def __index__(self) -> int: ... method __int__ (line 1495) | def __int__(self) -> int: ... method __invert__ (line 1496) | def __invert__(self) -> QSGNode.Flags: ... method __le__ (line 1497) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1498) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1499) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1500) | def __or__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __rand__ (line 1501) | def __rand__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __ror__ (line 1502) | def __ror__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __rxor__ (line 1503) | def __rxor__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __xor__ (line 1504) | def __xor__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... class Flags (line 1506) | class Flags: method __init__ (line 1508) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1509) | def __and__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __bool__ (line 1510) | def __bool__(self) -> bool: ... method __eq__ (line 1511) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1512) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1513) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1514) | def __index__(self) -> int: ... method __int__ (line 1515) | def __int__(self) -> int: ... method __invert__ (line 1516) | def __invert__(self) -> QSGNode.Flags: ... method __le__ (line 1517) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1518) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1519) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1520) | def __or__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __rand__ (line 1521) | def __rand__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __ror__ (line 1522) | def __ror__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __rxor__ (line 1523) | def __rxor__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... method __xor__ (line 1524) | def __xor__(self, other: typing.SupportsInt) -> QSGNode.Flags: ... class NodeType (line 1526) | class NodeType: method __init__ (line 1537) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1538) | def __add__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __and__ (line 1539) | def __and__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __bool__ (line 1540) | def __bool__(self) -> bool: ... method __eq__ (line 1541) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1542) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1543) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1544) | def __hash__(self) -> int: ... method __index__ (line 1545) | def __index__(self) -> int: ... method __int__ (line 1546) | def __int__(self) -> int: ... method __le__ (line 1547) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1548) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1549) | def __mul__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __ne__ (line 1550) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1551) | def __or__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __pos__ (line 1552) | def __pos__(self): ... method __radd__ (line 1553) | def __radd__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __rand__ (line 1554) | def __rand__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __rmul__ (line 1555) | def __rmul__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __ror__ (line 1556) | def __ror__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __rsub__ (line 1557) | def __rsub__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __rxor__ (line 1558) | def __rxor__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __sub__ (line 1559) | def __sub__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __xor__ (line 1560) | def __xor__(self, other: typing.SupportsInt) -> QSGNode.NodeType: ... method __init__ (line 1585) | def __init__(self, type: QSGNode.NodeType) -> None: ... method __init__ (line 1587) | def __init__(self) -> None: ... method appendChildNode (line 1588) | def appendChildNode(self, node: QSGNode) -> None: ... method childAtIndex (line 1589) | def childAtIndex(self, i: int) -> QSGNode: ... method childCount (line 1590) | def childCount(self) -> int: ... method clearDirty (line 1591) | def clearDirty(self) -> None: ... method dirtyState (line 1592) | def dirtyState(self) -> QSGNode.DirtyState | QSGNode.DirtyStateBit: ... method firstChild (line 1593) | def firstChild(self) -> QSGNode: ... method flags (line 1594) | def flags(self) -> QSGNode.Flags | QSGNode.Flag: ... method insertChildNodeAfter (line 1595) | def insertChildNodeAfter(self, node: QSGNode, after: QSGNode) -> None:... method insertChildNodeBefore (line 1596) | def insertChildNodeBefore(self, node: QSGNode, before: QSGNode) -> Non... method isSubtreeBlocked (line 1597) | def isSubtreeBlocked(self) -> bool: ... method lastChild (line 1598) | def lastChild(self) -> QSGNode: ... method markDirty (line 1599) | def markDirty(self, bits: QSGNode.DirtyState | QSGNode.DirtyStateBit) ... method nextSibling (line 1600) | def nextSibling(self) -> QSGNode: ... method parent (line 1601) | def parent(self) -> QSGNode: ... method prependChildNode (line 1602) | def prependChildNode(self, node: QSGNode) -> None: ... method preprocess (line 1603) | def preprocess(self) -> None: ... method previousSibling (line 1604) | def previousSibling(self) -> QSGNode: ... method removeAllChildNodes (line 1605) | def removeAllChildNodes(self) -> None: ... method removeChildNode (line 1606) | def removeChildNode(self, node: QSGNode) -> None: ... method reparentChildNodesTo (line 1607) | def reparentChildNodesTo(self, newParent: QSGNode) -> None: ... method setFlag (line 1608) | def setFlag(self, arg__1: QSGNode.Flag, arg__2: bool = ...) -> None: ... method setFlags (line 1609) | def setFlags(self, arg__1: QSGNode.Flags | QSGNode.Flag, arg__2: bool ... method type (line 1610) | def type(self) -> QSGNode.NodeType: ... class QSGOpacityNode (line 1612) | class QSGOpacityNode(QSGNode): method __init__ (line 1613) | def __init__(self) -> None: ... method combinedOpacity (line 1614) | def combinedOpacity(self) -> float: ... method isSubtreeBlocked (line 1615) | def isSubtreeBlocked(self) -> bool: ... method opacity (line 1616) | def opacity(self) -> float: ... method setCombinedOpacity (line 1617) | def setCombinedOpacity(self, opacity: float) -> None: ... method setOpacity (line 1618) | def setOpacity(self, opacity: float) -> None: ... class QSGSimpleRectNode (line 1620) | class QSGSimpleRectNode(QSGGeometryNode): method __init__ (line 1622) | def __init__(self, rect: PySide2.QtCore.QRectF, color: PySide2.QtGui.Q... method __init__ (line 1624) | def __init__(self) -> None: ... method color (line 1625) | def color(self) -> PySide2.QtGui.QColor: ... method rect (line 1626) | def rect(self) -> PySide2.QtCore.QRectF: ... method setColor (line 1627) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Glo... method setRect (line 1629) | def setRect(self, x: float, y: float, w: float, h: float) -> None: ... method setRect (line 1631) | def setRect(self, rect: PySide2.QtCore.QRectF) -> None: ... class QSGSimpleTextureNode (line 1633) | class QSGSimpleTextureNode(QSGGeometryNode): class TextureCoordinatesTransformFlag (line 1634) | class TextureCoordinatesTransformFlag: method __init__ (line 1641) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1642) | def __and__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode... method __bool__ (line 1643) | def __bool__(self) -> bool: ... method __eq__ (line 1644) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1645) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1646) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1647) | def __hash__(self) -> int: ... method __index__ (line 1648) | def __index__(self) -> int: ... method __int__ (line 1649) | def __int__(self) -> int: ... method __invert__ (line 1650) | def __invert__(self) -> QSGSimpleTextureNode.TextureCoordinatesTrans... method __le__ (line 1651) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1652) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1653) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1654) | def __or__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode.... method __rand__ (line 1655) | def __rand__(self, other: typing.SupportsInt) -> QSGSimpleTextureNod... method __ror__ (line 1656) | def __ror__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode... method __rxor__ (line 1657) | def __rxor__(self, other: typing.SupportsInt) -> QSGSimpleTextureNod... method __xor__ (line 1658) | def __xor__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode... class TextureCoordinatesTransformMode (line 1660) | class TextureCoordinatesTransformMode: method __init__ (line 1662) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1663) | def __and__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode... method __bool__ (line 1664) | def __bool__(self) -> bool: ... method __eq__ (line 1665) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1666) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1667) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1668) | def __index__(self) -> int: ... method __int__ (line 1669) | def __int__(self) -> int: ... method __invert__ (line 1670) | def __invert__(self) -> QSGSimpleTextureNode.TextureCoordinatesTrans... method __le__ (line 1671) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1672) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1673) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1674) | def __or__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode.... method __rand__ (line 1675) | def __rand__(self, other: typing.SupportsInt) -> QSGSimpleTextureNod... method __ror__ (line 1676) | def __ror__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode... method __rxor__ (line 1677) | def __rxor__(self, other: typing.SupportsInt) -> QSGSimpleTextureNod... method __xor__ (line 1678) | def __xor__(self, other: typing.SupportsInt) -> QSGSimpleTextureNode... method __init__ (line 1682) | def __init__(self) -> None: ... method filtering (line 1683) | def filtering(self) -> QSGTexture.Filtering: ... method ownsTexture (line 1684) | def ownsTexture(self) -> bool: ... method rect (line 1685) | def rect(self) -> PySide2.QtCore.QRectF: ... method setFiltering (line 1686) | def setFiltering(self, filtering: QSGTexture.Filtering) -> None: ... method setOwnsTexture (line 1687) | def setOwnsTexture(self, owns: bool) -> None: ... method setRect (line 1689) | def setRect(self, x: float, y: float, w: float, h: float) -> None: ... method setRect (line 1691) | def setRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method setSourceRect (line 1693) | def setSourceRect(self, x: float, y: float, w: float, h: float) -> Non... method setSourceRect (line 1695) | def setSourceRect(self, r: PySide2.QtCore.QRectF) -> None: ... method setTexture (line 1696) | def setTexture(self, texture: QSGTexture) -> None: ... method setTextureCoordinatesTransform (line 1697) | def setTextureCoordinatesTransform(self, mode: QSGSimpleTextureNode.Te... method sourceRect (line 1698) | def sourceRect(self) -> PySide2.QtCore.QRectF: ... method texture (line 1699) | def texture(self) -> QSGTexture: ... method textureCoordinatesTransform (line 1700) | def textureCoordinatesTransform(self) -> QSGSimpleTextureNode.TextureC... class QSGTexture (line 1702) | class QSGTexture(PySide2.QtCore.QObject): class AnisotropyLevel (line 1703) | class AnisotropyLevel: method __init__ (line 1712) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1713) | def __add__(self, other: typing.SupportsInt) -> QSGTexture.Anisotrop... method __and__ (line 1714) | def __and__(self, other: typing.SupportsInt) -> QSGTexture.Anisotrop... method __bool__ (line 1715) | def __bool__(self) -> bool: ... method __eq__ (line 1716) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1717) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1718) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1719) | def __hash__(self) -> int: ... method __index__ (line 1720) | def __index__(self) -> int: ... method __int__ (line 1721) | def __int__(self) -> int: ... method __le__ (line 1722) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1723) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1724) | def __mul__(self, other: typing.SupportsInt) -> QSGTexture.Anisotrop... method __ne__ (line 1725) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1726) | def __or__(self, other: typing.SupportsInt) -> QSGTexture.Anisotropy... method __pos__ (line 1727) | def __pos__(self): ... method __radd__ (line 1728) | def __radd__(self, other: typing.SupportsInt) -> QSGTexture.Anisotro... method __rand__ (line 1729) | def __rand__(self, other: typing.SupportsInt) -> QSGTexture.Anisotro... method __rmul__ (line 1730) | def __rmul__(self, other: typing.SupportsInt) -> QSGTexture.Anisotro... method __ror__ (line 1731) | def __ror__(self, other: typing.SupportsInt) -> QSGTexture.Anisotrop... method __rsub__ (line 1732) | def __rsub__(self, other: typing.SupportsInt) -> QSGTexture.Anisotro... method __rxor__ (line 1733) | def __rxor__(self, other: typing.SupportsInt) -> QSGTexture.Anisotro... method __sub__ (line 1734) | def __sub__(self, other: typing.SupportsInt) -> QSGTexture.Anisotrop... method __xor__ (line 1735) | def __xor__(self, other: typing.SupportsInt) -> QSGTexture.Anisotrop... class Filtering (line 1737) | class Filtering: method __init__ (line 1744) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1745) | def __add__(self, other: typing.SupportsInt) -> QSGTexture.Filtering... method __and__ (line 1746) | def __and__(self, other: typing.SupportsInt) -> QSGTexture.Filtering... method __bool__ (line 1747) | def __bool__(self) -> bool: ... method __eq__ (line 1748) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1749) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1750) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1751) | def __hash__(self) -> int: ... method __index__ (line 1752) | def __index__(self) -> int: ... method __int__ (line 1753) | def __int__(self) -> int: ... method __le__ (line 1754) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1755) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1756) | def __mul__(self, other: typing.SupportsInt) -> QSGTexture.Filtering... method __ne__ (line 1757) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1758) | def __or__(self, other: typing.SupportsInt) -> QSGTexture.Filtering:... method __pos__ (line 1759) | def __pos__(self): ... method __radd__ (line 1760) | def __radd__(self, other: typing.SupportsInt) -> QSGTexture.Filterin... method __rand__ (line 1761) | def __rand__(self, other: typing.SupportsInt) -> QSGTexture.Filterin... method __rmul__ (line 1762) | def __rmul__(self, other: typing.SupportsInt) -> QSGTexture.Filterin... method __ror__ (line 1763) | def __ror__(self, other: typing.SupportsInt) -> QSGTexture.Filtering... method __rsub__ (line 1764) | def __rsub__(self, other: typing.SupportsInt) -> QSGTexture.Filterin... method __rxor__ (line 1765) | def __rxor__(self, other: typing.SupportsInt) -> QSGTexture.Filterin... method __sub__ (line 1766) | def __sub__(self, other: typing.SupportsInt) -> QSGTexture.Filtering... method __xor__ (line 1767) | def __xor__(self, other: typing.SupportsInt) -> QSGTexture.Filtering... class WrapMode (line 1769) | class WrapMode: method __init__ (line 1776) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1777) | def __add__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode:... method __and__ (line 1778) | def __and__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode:... method __bool__ (line 1779) | def __bool__(self) -> bool: ... method __eq__ (line 1780) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1781) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1782) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1783) | def __hash__(self) -> int: ... method __index__ (line 1784) | def __index__(self) -> int: ... method __int__ (line 1785) | def __int__(self) -> int: ... method __le__ (line 1786) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1787) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1788) | def __mul__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode:... method __ne__ (line 1789) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1790) | def __or__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode: ... method __pos__ (line 1791) | def __pos__(self): ... method __radd__ (line 1792) | def __radd__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode... method __rand__ (line 1793) | def __rand__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode... method __rmul__ (line 1794) | def __rmul__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode... method __ror__ (line 1795) | def __ror__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode:... method __rsub__ (line 1796) | def __rsub__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode... method __rxor__ (line 1797) | def __rxor__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode... method __sub__ (line 1798) | def __sub__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode:... method __xor__ (line 1799) | def __xor__(self, other: typing.SupportsInt) -> QSGTexture.WrapMode:... method __init__ (line 1812) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method anisotropyLevel (line 1813) | def anisotropyLevel(self) -> QSGTexture.AnisotropyLevel: ... method bind (line 1814) | def bind(self) -> None: ... method comparisonKey (line 1815) | def comparisonKey(self) -> int: ... method convertToNormalizedSourceRect (line 1816) | def convertToNormalizedSourceRect(self, rect: PySide2.QtCore.QRectF) -... method filtering (line 1817) | def filtering(self) -> QSGTexture.Filtering: ... method hasAlphaChannel (line 1818) | def hasAlphaChannel(self) -> bool: ... method hasMipmaps (line 1819) | def hasMipmaps(self) -> bool: ... method horizontalWrapMode (line 1820) | def horizontalWrapMode(self) -> QSGTexture.WrapMode: ... method isAtlasTexture (line 1821) | def isAtlasTexture(self) -> bool: ... method mipmapFiltering (line 1822) | def mipmapFiltering(self) -> QSGTexture.Filtering: ... method normalizedTextureSubRect (line 1823) | def normalizedTextureSubRect(self) -> PySide2.QtCore.QRectF: ... method removedFromAtlas (line 1824) | def removedFromAtlas(self) -> QSGTexture: ... method setAnisotropyLevel (line 1825) | def setAnisotropyLevel(self, level: QSGTexture.AnisotropyLevel) -> Non... method setFiltering (line 1826) | def setFiltering(self, filter: QSGTexture.Filtering) -> None: ... method setHorizontalWrapMode (line 1827) | def setHorizontalWrapMode(self, hwrap: QSGTexture.WrapMode) -> None: ... method setMipmapFiltering (line 1828) | def setMipmapFiltering(self, filter: QSGTexture.Filtering) -> None: ... method setVerticalWrapMode (line 1829) | def setVerticalWrapMode(self, vwrap: QSGTexture.WrapMode) -> None: ... method textureId (line 1830) | def textureId(self) -> int: ... method textureSize (line 1831) | def textureSize(self) -> PySide2.QtCore.QSize: ... method updateBindOptions (line 1832) | def updateBindOptions(self, force: bool = ...) -> None: ... method verticalWrapMode (line 1833) | def verticalWrapMode(self) -> QSGTexture.WrapMode: ... class QSGTextureProvider (line 1835) | class QSGTextureProvider(PySide2.QtCore.QObject): method __init__ (line 1838) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method texture (line 1839) | def texture(self) -> QSGTexture: ... class QSGTransformNode (line 1841) | class QSGTransformNode(QSGNode): method __init__ (line 1842) | def __init__(self) -> None: ... method combinedMatrix (line 1843) | def combinedMatrix(self) -> PySide2.QtGui.QMatrix4x4: ... method matrix (line 1844) | def matrix(self) -> PySide2.QtGui.QMatrix4x4: ... method setCombinedMatrix (line 1845) | def setCombinedMatrix(self, matrix: PySide2.QtGui.QMatrix4x4) -> None:... method setMatrix (line 1846) | def setMatrix(self, matrix: PySide2.QtGui.QMatrix4x4) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtQuickControls2.pyi class QQuickStyle (line 10) | class QQuickStyle(shiboken2.Object): method __init__ (line 11) | def __init__(self) -> None: ... method addStylePath (line 13) | def addStylePath(path: str) -> None: ... method availableStyles (line 15) | def availableStyles() -> list[str]: ... method name (line 17) | def name() -> str: ... method path (line 19) | def path() -> str: ... method setFallbackStyle (line 21) | def setFallbackStyle(style: str) -> None: ... method setStyle (line 23) | def setStyle(style: str) -> None: ... method stylePathList (line 25) | def stylePathList() -> list[str]: ... FILE: pyside/stubs/PySide2-stubs/QtQuickWidgets.pyi class QQuickWidget (line 14) | class QQuickWidget(PySide2.QtWidgets.QWidget): class ResizeMode (line 15) | class ResizeMode: method __init__ (line 21) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 22) | def __add__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeM... method __and__ (line 23) | def __and__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeM... method __bool__ (line 24) | def __bool__(self) -> bool: ... method __eq__ (line 25) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 26) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 27) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 28) | def __hash__(self) -> int: ... method __index__ (line 29) | def __index__(self) -> int: ... method __int__ (line 30) | def __int__(self) -> int: ... method __le__ (line 31) | def __le__(self, other: object) -> bool: ... method __lt__ (line 32) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 33) | def __mul__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeM... method __ne__ (line 34) | def __ne__(self, other: object) -> bool: ... method __or__ (line 35) | def __or__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeMo... method __pos__ (line 36) | def __pos__(self): ... method __radd__ (line 37) | def __radd__(self, other: typing.SupportsInt) -> QQuickWidget.Resize... method __rand__ (line 38) | def __rand__(self, other: typing.SupportsInt) -> QQuickWidget.Resize... method __rmul__ (line 39) | def __rmul__(self, other: typing.SupportsInt) -> QQuickWidget.Resize... method __ror__ (line 40) | def __ror__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeM... method __rsub__ (line 41) | def __rsub__(self, other: typing.SupportsInt) -> QQuickWidget.Resize... method __rxor__ (line 42) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWidget.Resize... method __sub__ (line 43) | def __sub__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeM... method __xor__ (line 44) | def __xor__(self, other: typing.SupportsInt) -> QQuickWidget.ResizeM... class Status (line 46) | class Status: method __init__ (line 54) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 55) | def __add__(self, other: typing.SupportsInt) -> QQuickWidget.Status:... method __and__ (line 56) | def __and__(self, other: typing.SupportsInt) -> QQuickWidget.Status:... method __bool__ (line 57) | def __bool__(self) -> bool: ... method __eq__ (line 58) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 59) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 60) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 61) | def __hash__(self) -> int: ... method __index__ (line 62) | def __index__(self) -> int: ... method __int__ (line 63) | def __int__(self) -> int: ... method __le__ (line 64) | def __le__(self, other: object) -> bool: ... method __lt__ (line 65) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 66) | def __mul__(self, other: typing.SupportsInt) -> QQuickWidget.Status:... method __ne__ (line 67) | def __ne__(self, other: object) -> bool: ... method __or__ (line 68) | def __or__(self, other: typing.SupportsInt) -> QQuickWidget.Status: ... method __pos__ (line 69) | def __pos__(self): ... method __radd__ (line 70) | def __radd__(self, other: typing.SupportsInt) -> QQuickWidget.Status... method __rand__ (line 71) | def __rand__(self, other: typing.SupportsInt) -> QQuickWidget.Status... method __rmul__ (line 72) | def __rmul__(self, other: typing.SupportsInt) -> QQuickWidget.Status... method __ror__ (line 73) | def __ror__(self, other: typing.SupportsInt) -> QQuickWidget.Status:... method __rsub__ (line 74) | def __rsub__(self, other: typing.SupportsInt) -> QQuickWidget.Status... method __rxor__ (line 75) | def __rxor__(self, other: typing.SupportsInt) -> QQuickWidget.Status... method __sub__ (line 76) | def __sub__(self, other: typing.SupportsInt) -> QQuickWidget.Status:... method __xor__ (line 77) | def __xor__(self, other: typing.SupportsInt) -> QQuickWidget.Status:... method __init__ (line 88) | def __init__(self, engine: PySide2.QtQml.QQmlEngine, parent: PySide2.Q... method __init__ (line 90) | def __init__(self, source: PySide2.QtCore.QUrl, parent: PySide2.QtWidg... method __init__ (line 92) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method dragEnterEvent (line 93) | def dragEnterEvent(self, arg__1: PySide2.QtGui.QDragEnterEvent) -> Non... method dragLeaveEvent (line 94) | def dragLeaveEvent(self, arg__1: PySide2.QtGui.QDragLeaveEvent) -> Non... method dragMoveEvent (line 95) | def dragMoveEvent(self, arg__1: PySide2.QtGui.QDragMoveEvent) -> None:... method dropEvent (line 96) | def dropEvent(self, arg__1: PySide2.QtGui.QDropEvent) -> None: ... method engine (line 97) | def engine(self) -> PySide2.QtQml.QQmlEngine: ... method errors (line 98) | def errors(self) -> list[PySide2.QtQml.QQmlError]: ... method event (line 99) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 100) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 101) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 102) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method format (line 103) | def format(self) -> PySide2.QtGui.QSurfaceFormat: ... method grabFramebuffer (line 104) | def grabFramebuffer(self) -> PySide2.QtGui.QImage: ... method hideEvent (line 105) | def hideEvent(self, arg__1: PySide2.QtGui.QHideEvent) -> None: ... method initialSize (line 106) | def initialSize(self) -> PySide2.QtCore.QSize: ... method keyPressEvent (line 107) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 108) | def keyReleaseEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method mouseDoubleClickEvent (line 109) | def mouseDoubleClickEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> ... method mouseMoveEvent (line 110) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 111) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 112) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method paintEvent (line 113) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method quickWindow (line 114) | def quickWindow(self) -> PySide2.QtQuick.QQuickWindow: ... method resizeEvent (line 115) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method resizeMode (line 116) | def resizeMode(self) -> QQuickWidget.ResizeMode: ... method rootContext (line 117) | def rootContext(self) -> PySide2.QtQml.QQmlContext: ... method rootObject (line 118) | def rootObject(self) -> PySide2.QtQuick.QQuickItem: ... method setClearColor (line 119) | def setClearColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Q... method setContent (line 120) | def setContent(self, url: PySide2.QtCore.QUrl, component: PySide2.QtQm... method setFormat (line 121) | def setFormat(self, format: PySide2.QtGui.QSurfaceFormat) -> None: ... method setResizeMode (line 122) | def setResizeMode(self, arg__1: QQuickWidget.ResizeMode) -> None: ... method setSource (line 123) | def setSource(self, arg__1: PySide2.QtCore.QUrl) -> None: ... method showEvent (line 124) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 125) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method source (line 126) | def source(self) -> PySide2.QtCore.QUrl: ... method status (line 127) | def status(self) -> QQuickWidget.Status: ... method timerEvent (line 128) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... method wheelEvent (line 129) | def wheelEvent(self, arg__1: PySide2.QtGui.QWheelEvent) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtRemoteObjects.pyi class QAbstractItemModelReplica (line 11) | class QAbstractItemModelReplica(PySide2.QtCore.QAbstractItemModel): method __init__ (line 15) | def __init__(cls, *args, columnsAboutToBeInserted: typing.Callable = .... method availableRoles (line 16) | def availableRoles(self) -> list[int]: ... method columnCount (line 17) | def columnCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int... method data (line 18) | def data(self, index: PySide2.QtCore.QModelIndex, role: PySide2.QtCore... method flags (line 19) | def flags(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.Q... method hasChildren (line 20) | def hasChildren(self, parent: PySide2.QtCore.QModelIndex = ...) -> boo... method hasData (line 21) | def hasData(self, index: PySide2.QtCore.QModelIndex, role: PySide2.QtC... method headerData (line 22) | def headerData(self, section: int, orientation: PySide2.QtCore.Qt.Orie... method index (line 23) | def index(self, row: int, column: int, parent: PySide2.QtCore.QModelIn... method isInitialized (line 24) | def isInitialized(self) -> bool: ... method parent (line 26) | def parent(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.... method parent (line 28) | def parent(self) -> PySide2.QtCore.QObject: ... method roleNames (line 29) | def roleNames(self) -> dict[int, PySide2.QtCore.QByteArray]: ... method rowCount (line 30) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... method selectionModel (line 31) | def selectionModel(self) -> PySide2.QtCore.QItemSelectionModel: ... method setData (line 32) | def setData(self, index: PySide2.QtCore.QModelIndex, value: typing.Any... class QRemoteObjectAbstractPersistedStore (line 34) | class QRemoteObjectAbstractPersistedStore(PySide2.QtCore.QObject): method __init__ (line 36) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method restoreProperties (line 37) | def restoreProperties(self, repName: str, repSig: PySide2.QtCore.QByte... method saveProperties (line 38) | def saveProperties(self, repName: str, repSig: PySide2.QtCore.QByteArr... class QRemoteObjectDynamicReplica (line 40) | class QRemoteObjectDynamicReplica(QRemoteObjectReplica): method __init__ (line 46) | def __init__(cls, *args, destroyed: typing.Callable = ..., initialized... class QRemoteObjectHost (line 48) | class QRemoteObjectHost(QRemoteObjectHostBase): method __init__ (line 52) | def __init__(self, address: PySide2.QtCore.QUrl, registryAddress: PySi... method __init__ (line 54) | def __init__(self, address: PySide2.QtCore.QUrl, parent: PySide2.QtCor... method __init__ (line 56) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method hostUrl (line 57) | def hostUrl(self) -> PySide2.QtCore.QUrl: ... method setHostUrl (line 58) | def setHostUrl(self, hostAddress: PySide2.QtCore.QUrl, allowedSchemas:... class QRemoteObjectHostBase (line 60) | class QRemoteObjectHostBase(QRemoteObjectNode): class AllowedSchemas (line 61) | class AllowedSchemas: method __init__ (line 67) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 68) | def __add__(self, other: typing.SupportsInt) -> QRemoteObjectHostBas... method __and__ (line 69) | def __and__(self, other: typing.SupportsInt) -> QRemoteObjectHostBas... method __bool__ (line 70) | def __bool__(self) -> bool: ... method __eq__ (line 71) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 72) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 73) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 74) | def __hash__(self) -> int: ... method __index__ (line 75) | def __index__(self) -> int: ... method __int__ (line 76) | def __int__(self) -> int: ... method __le__ (line 77) | def __le__(self, other: object) -> bool: ... method __lt__ (line 78) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 79) | def __mul__(self, other: typing.SupportsInt) -> QRemoteObjectHostBas... method __ne__ (line 80) | def __ne__(self, other: object) -> bool: ... method __or__ (line 81) | def __or__(self, other: typing.SupportsInt) -> QRemoteObjectHostBase... method __pos__ (line 82) | def __pos__(self): ... method __radd__ (line 83) | def __radd__(self, other: typing.SupportsInt) -> QRemoteObjectHostBa... method __rand__ (line 84) | def __rand__(self, other: typing.SupportsInt) -> QRemoteObjectHostBa... method __rmul__ (line 85) | def __rmul__(self, other: typing.SupportsInt) -> QRemoteObjectHostBa... method __ror__ (line 86) | def __ror__(self, other: typing.SupportsInt) -> QRemoteObjectHostBas... method __rsub__ (line 87) | def __rsub__(self, other: typing.SupportsInt) -> QRemoteObjectHostBa... method __rxor__ (line 88) | def __rxor__(self, other: typing.SupportsInt) -> QRemoteObjectHostBa... method __sub__ (line 89) | def __sub__(self, other: typing.SupportsInt) -> QRemoteObjectHostBas... method __xor__ (line 90) | def __xor__(self, other: typing.SupportsInt) -> QRemoteObjectHostBas... method __init__ (line 95) | def __init__(cls, *args, destroyed: typing.Callable = ..., error: typi... method addHostSideConnection (line 96) | def addHostSideConnection(self, ioDevice: PySide2.QtCore.QIODevice) ->... method disableRemoting (line 97) | def disableRemoting(self, remoteObject: PySide2.QtCore.QObject) -> boo... method enableRemoting (line 99) | def enableRemoting(self, model: PySide2.QtCore.QAbstractItemModel, nam... method enableRemoting (line 101) | def enableRemoting(self, object: PySide2.QtCore.QObject, name: str = .... method hostUrl (line 102) | def hostUrl(self) -> PySide2.QtCore.QUrl: ... method proxy (line 103) | def proxy(self, registryUrl: PySide2.QtCore.QUrl, hostUrl: PySide2.QtC... method reverseProxy (line 104) | def reverseProxy(self) -> bool: ... method setHostUrl (line 105) | def setHostUrl(self, hostAddress: PySide2.QtCore.QUrl, allowedSchemas:... method setName (line 106) | def setName(self, name: str) -> None: ... class QRemoteObjectNode (line 108) | class QRemoteObjectNode(PySide2.QtCore.QObject): class ErrorCode (line 109) | class ErrorCode: method __init__ (line 125) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 126) | def __add__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Er... method __and__ (line 127) | def __and__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Er... method __bool__ (line 128) | def __bool__(self) -> bool: ... method __eq__ (line 129) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 130) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 131) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 132) | def __hash__(self) -> int: ... method __index__ (line 133) | def __index__(self) -> int: ... method __int__ (line 134) | def __int__(self) -> int: ... method __le__ (line 135) | def __le__(self, other: object) -> bool: ... method __lt__ (line 136) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 137) | def __mul__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Er... method __ne__ (line 138) | def __ne__(self, other: object) -> bool: ... method __or__ (line 139) | def __or__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Err... method __pos__ (line 140) | def __pos__(self): ... method __radd__ (line 141) | def __radd__(self, other: typing.SupportsInt) -> QRemoteObjectNode.E... method __rand__ (line 142) | def __rand__(self, other: typing.SupportsInt) -> QRemoteObjectNode.E... method __rmul__ (line 143) | def __rmul__(self, other: typing.SupportsInt) -> QRemoteObjectNode.E... method __ror__ (line 144) | def __ror__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Er... method __rsub__ (line 145) | def __rsub__(self, other: typing.SupportsInt) -> QRemoteObjectNode.E... method __rxor__ (line 146) | def __rxor__(self, other: typing.SupportsInt) -> QRemoteObjectNode.E... method __sub__ (line 147) | def __sub__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Er... method __xor__ (line 148) | def __xor__(self, other: typing.SupportsInt) -> QRemoteObjectNode.Er... method __init__ (line 167) | def __init__(self, registryAddress: PySide2.QtCore.QUrl, parent: PySid... method __init__ (line 169) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method acquireDynamic (line 170) | def acquireDynamic(self, name: str) -> QRemoteObjectDynamicReplica: ... method acquireModel (line 171) | def acquireModel(self, name: str) -> QAbstractItemModelReplica: ... method addClientSideConnection (line 172) | def addClientSideConnection(self, ioDevice: PySide2.QtCore.QIODevice) ... method connectToNode (line 173) | def connectToNode(self, address: PySide2.QtCore.QUrl) -> bool: ... method heartbeatInterval (line 174) | def heartbeatInterval(self) -> int: ... method instances (line 175) | def instances(self, typeName: str) -> list[str]: ... method lastError (line 176) | def lastError(self) -> QRemoteObjectNode.ErrorCode: ... method persistedStore (line 177) | def persistedStore(self) -> QRemoteObjectAbstractPersistedStore: ... method registry (line 178) | def registry(self) -> QRemoteObjectRegistry: ... method registryUrl (line 179) | def registryUrl(self) -> PySide2.QtCore.QUrl: ... method setHeartbeatInterval (line 180) | def setHeartbeatInterval(self, interval: int) -> None: ... method setName (line 181) | def setName(self, name: str) -> None: ... method setPersistedStore (line 182) | def setPersistedStore(self, persistedStore: QRemoteObjectAbstractPersi... method setRegistryUrl (line 183) | def setRegistryUrl(self, registryAddress: PySide2.QtCore.QUrl) -> bool... method timerEvent (line 184) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... method waitForRegistry (line 185) | def waitForRegistry(self, timeout: int = ...) -> bool: ... class QRemoteObjectPendingCall (line 187) | class QRemoteObjectPendingCall(shiboken2.Object): class Error (line 188) | class Error: method __init__ (line 194) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 195) | def __add__(self, other: typing.SupportsInt) -> QRemoteObjectPending... method __and__ (line 196) | def __and__(self, other: typing.SupportsInt) -> QRemoteObjectPending... method __bool__ (line 197) | def __bool__(self) -> bool: ... method __eq__ (line 198) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 199) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 200) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 201) | def __hash__(self) -> int: ... method __index__ (line 202) | def __index__(self) -> int: ... method __int__ (line 203) | def __int__(self) -> int: ... method __le__ (line 204) | def __le__(self, other: object) -> bool: ... method __lt__ (line 205) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 206) | def __mul__(self, other: typing.SupportsInt) -> QRemoteObjectPending... method __ne__ (line 207) | def __ne__(self, other: object) -> bool: ... method __or__ (line 208) | def __or__(self, other: typing.SupportsInt) -> QRemoteObjectPendingC... method __pos__ (line 209) | def __pos__(self): ... method __radd__ (line 210) | def __radd__(self, other: typing.SupportsInt) -> QRemoteObjectPendin... method __rand__ (line 211) | def __rand__(self, other: typing.SupportsInt) -> QRemoteObjectPendin... method __rmul__ (line 212) | def __rmul__(self, other: typing.SupportsInt) -> QRemoteObjectPendin... method __ror__ (line 213) | def __ror__(self, other: typing.SupportsInt) -> QRemoteObjectPending... method __rsub__ (line 214) | def __rsub__(self, other: typing.SupportsInt) -> QRemoteObjectPendin... method __rxor__ (line 215) | def __rxor__(self, other: typing.SupportsInt) -> QRemoteObjectPendin... method __sub__ (line 216) | def __sub__(self, other: typing.SupportsInt) -> QRemoteObjectPending... method __xor__ (line 217) | def __xor__(self, other: typing.SupportsInt) -> QRemoteObjectPending... method __init__ (line 221) | def __init__(self, other: QRemoteObjectPendingCall) -> None: ... method __init__ (line 223) | def __init__(self) -> None: ... method error (line 224) | def error(self) -> QRemoteObjectPendingCall.Error: ... method fromCompletedCall (line 226) | def fromCompletedCall(returnValue: typing.Any) -> QRemoteObjectPending... method isFinished (line 227) | def isFinished(self) -> bool: ... method returnValue (line 228) | def returnValue(self) -> typing.Any: ... method waitForFinished (line 229) | def waitForFinished(self, timeout: int = ...) -> bool: ... class QRemoteObjectPendingCallWatcher (line 231) | class QRemoteObjectPendingCallWatcher(PySide2.QtCore.QObject, QRemoteObj... method __init__ (line 234) | def __init__(self, call: QRemoteObjectPendingCall, parent: PySide2.QtC... method isFinished (line 235) | def isFinished(self) -> bool: ... method waitForFinished (line 236) | def waitForFinished(self) -> None: ... # type: ignore[override] class QRemoteObjectRegistry (line 238) | class QRemoteObjectRegistry(QRemoteObjectReplica): method __init__ (line 243) | def __init__(cls, *args, destroyed: typing.Callable = ..., initialized... method addSource (line 244) | def addSource(self, entry: tuple[str, QRemoteObjectSourceLocationInfo]... method initialize (line 245) | def initialize(self) -> None: ... method pushToRegistryIfNeeded (line 246) | def pushToRegistryIfNeeded(self) -> None: ... method registerMetatypes (line 248) | def registerMetatypes() -> None: ... method removeSource (line 249) | def removeSource(self, entry: tuple[str, QRemoteObjectSourceLocationIn... method sourceLocations (line 250) | def sourceLocations(self) -> dict[str, QRemoteObjectSourceLocationInfo... class QRemoteObjectRegistryHost (line 252) | class QRemoteObjectRegistryHost(QRemoteObjectHostBase): method __init__ (line 254) | def __init__(self, registryAddress: PySide2.QtCore.QUrl = ..., parent:... method setRegistryUrl (line 255) | def setRegistryUrl(self, registryUrl: PySide2.QtCore.QUrl) -> bool: ... class QRemoteObjectReplica (line 257) | class QRemoteObjectReplica(PySide2.QtCore.QObject): class State (line 258) | class State: method __init__ (line 267) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 268) | def __add__(self, other: typing.SupportsInt) -> QRemoteObjectReplica... method __and__ (line 269) | def __and__(self, other: typing.SupportsInt) -> QRemoteObjectReplica... method __bool__ (line 270) | def __bool__(self) -> bool: ... method __eq__ (line 271) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 272) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 273) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 274) | def __hash__(self) -> int: ... method __index__ (line 275) | def __index__(self) -> int: ... method __int__ (line 276) | def __int__(self) -> int: ... method __le__ (line 277) | def __le__(self, other: object) -> bool: ... method __lt__ (line 278) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 279) | def __mul__(self, other: typing.SupportsInt) -> QRemoteObjectReplica... method __ne__ (line 280) | def __ne__(self, other: object) -> bool: ... method __or__ (line 281) | def __or__(self, other: typing.SupportsInt) -> QRemoteObjectReplica.... method __pos__ (line 282) | def __pos__(self): ... method __radd__ (line 283) | def __radd__(self, other: typing.SupportsInt) -> QRemoteObjectReplic... method __rand__ (line 284) | def __rand__(self, other: typing.SupportsInt) -> QRemoteObjectReplic... method __rmul__ (line 285) | def __rmul__(self, other: typing.SupportsInt) -> QRemoteObjectReplic... method __ror__ (line 286) | def __ror__(self, other: typing.SupportsInt) -> QRemoteObjectReplica... method __rsub__ (line 287) | def __rsub__(self, other: typing.SupportsInt) -> QRemoteObjectReplic... method __rxor__ (line 288) | def __rxor__(self, other: typing.SupportsInt) -> QRemoteObjectReplic... method __sub__ (line 289) | def __sub__(self, other: typing.SupportsInt) -> QRemoteObjectReplica... method __xor__ (line 290) | def __xor__(self, other: typing.SupportsInt) -> QRemoteObjectReplica... method __init__ (line 300) | def __init__(self, destroyed: typing.Callable = ..., initialized: typi... method initialize (line 301) | def initialize(self) -> None: ... method initializeNode (line 302) | def initializeNode(self, node: QRemoteObjectNode, name: str = ...) -> ... method isInitialized (line 303) | def isInitialized(self) -> bool: ... method isReplicaValid (line 304) | def isReplicaValid(self) -> bool: ... method node (line 305) | def node(self) -> QRemoteObjectNode: ... method persistProperties (line 306) | def persistProperties(self, repName: str, repSig: PySide2.QtCore.QByte... method propAsVariant (line 307) | def propAsVariant(self, i: int) -> typing.Any: ... method retrieveProperties (line 308) | def retrieveProperties(self, repName: str, repSig: PySide2.QtCore.QByt... method send (line 309) | def send(self, call: PySide2.QtCore.QMetaObject.Call, index: int, args... method sendWithReply (line 310) | def sendWithReply(self, call: PySide2.QtCore.QMetaObject.Call, index: ... method setChild (line 311) | def setChild(self, i: int, arg__2: typing.Any) -> None: ... method setNode (line 312) | def setNode(self, node: QRemoteObjectNode) -> None: ... method setProperties (line 313) | def setProperties(self, arg__1: typing.Iterable[typing.Any]) -> None: ... method state (line 314) | def state(self) -> QRemoteObjectReplica.State: ... method waitForSource (line 315) | def waitForSource(self, timeout: int = ...) -> bool: ... class QRemoteObjectSettingsStore (line 317) | class QRemoteObjectSettingsStore(QRemoteObjectAbstractPersistedStore): method __init__ (line 319) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method restoreProperties (line 320) | def restoreProperties(self, repName: str, repSig: PySide2.QtCore.QByte... method saveProperties (line 321) | def saveProperties(self, repName: str, repSig: PySide2.QtCore.QByteArr... class QRemoteObjectSourceLocationInfo (line 323) | class QRemoteObjectSourceLocationInfo(shiboken2.Object): method __init__ (line 327) | def __init__(self, typeName_: str, hostUrl_: PySide2.QtCore.QUrl) -> N... method __init__ (line 329) | def __init__(self, QRemoteObjectSourceLocationInfo: QRemoteObjectSourc... method __init__ (line 331) | def __init__(self) -> None: ... method __copy__ (line 332) | def __copy__(self) -> None: ... method __eq__ (line 333) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 334) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 335) | def __gt__(self, other: object) -> bool: ... method __le__ (line 336) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 337) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 338) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 339) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 340) | def __rlshift__(self, other): ... method __rrshift__ (line 341) | def __rrshift__(self, other): ... method __rshift__ (line 342) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... FILE: pyside/stubs/PySide2-stubs/QtScript.pyi class QScriptClass (line 12) | class QScriptClass(shiboken2.Object): class Extension (line 13) | class Extension: method __init__ (line 19) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 20) | def __add__(self, other: typing.SupportsInt) -> QScriptClass.Extensi... method __and__ (line 21) | def __and__(self, other: typing.SupportsInt) -> QScriptClass.Extensi... method __bool__ (line 22) | def __bool__(self) -> bool: ... method __eq__ (line 23) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 24) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 25) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 26) | def __hash__(self) -> int: ... method __index__ (line 27) | def __index__(self) -> int: ... method __int__ (line 28) | def __int__(self) -> int: ... method __le__ (line 29) | def __le__(self, other: object) -> bool: ... method __lt__ (line 30) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 31) | def __mul__(self, other: typing.SupportsInt) -> QScriptClass.Extensi... method __ne__ (line 32) | def __ne__(self, other: object) -> bool: ... method __or__ (line 33) | def __or__(self, other: typing.SupportsInt) -> QScriptClass.Extensio... method __pos__ (line 34) | def __pos__(self): ... method __radd__ (line 35) | def __radd__(self, other: typing.SupportsInt) -> QScriptClass.Extens... method __rand__ (line 36) | def __rand__(self, other: typing.SupportsInt) -> QScriptClass.Extens... method __rmul__ (line 37) | def __rmul__(self, other: typing.SupportsInt) -> QScriptClass.Extens... method __ror__ (line 38) | def __ror__(self, other: typing.SupportsInt) -> QScriptClass.Extensi... method __rsub__ (line 39) | def __rsub__(self, other: typing.SupportsInt) -> QScriptClass.Extens... method __rxor__ (line 40) | def __rxor__(self, other: typing.SupportsInt) -> QScriptClass.Extens... method __sub__ (line 41) | def __sub__(self, other: typing.SupportsInt) -> QScriptClass.Extensi... method __xor__ (line 42) | def __xor__(self, other: typing.SupportsInt) -> QScriptClass.Extensi... class QueryFlag (line 44) | class QueryFlag: method __init__ (line 50) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 51) | def __add__(self, other: typing.SupportsInt) -> QScriptClass.QueryFl... method __and__ (line 52) | def __and__(self, other: typing.SupportsInt) -> QScriptClass.QueryFl... method __bool__ (line 53) | def __bool__(self) -> bool: ... method __eq__ (line 54) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 55) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 56) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 57) | def __hash__(self) -> int: ... method __index__ (line 58) | def __index__(self) -> int: ... method __int__ (line 59) | def __int__(self) -> int: ... method __le__ (line 60) | def __le__(self, other: object) -> bool: ... method __lt__ (line 61) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 62) | def __mul__(self, other: typing.SupportsInt) -> QScriptClass.QueryFl... method __ne__ (line 63) | def __ne__(self, other: object) -> bool: ... method __or__ (line 64) | def __or__(self, other: typing.SupportsInt) -> QScriptClass.QueryFla... method __pos__ (line 65) | def __pos__(self): ... method __radd__ (line 66) | def __radd__(self, other: typing.SupportsInt) -> QScriptClass.QueryF... method __rand__ (line 67) | def __rand__(self, other: typing.SupportsInt) -> QScriptClass.QueryF... method __rmul__ (line 68) | def __rmul__(self, other: typing.SupportsInt) -> QScriptClass.QueryF... method __ror__ (line 69) | def __ror__(self, other: typing.SupportsInt) -> QScriptClass.QueryFl... method __rsub__ (line 70) | def __rsub__(self, other: typing.SupportsInt) -> QScriptClass.QueryF... method __rxor__ (line 71) | def __rxor__(self, other: typing.SupportsInt) -> QScriptClass.QueryF... method __sub__ (line 72) | def __sub__(self, other: typing.SupportsInt) -> QScriptClass.QueryFl... method __xor__ (line 73) | def __xor__(self, other: typing.SupportsInt) -> QScriptClass.QueryFl... method __init__ (line 78) | def __init__(self, engine: QScriptEngine) -> None: ... method engine (line 79) | def engine(self) -> QScriptEngine: ... method extension (line 80) | def extension(self, extension: QScriptClass.Extension, argument: typin... method name (line 81) | def name(self) -> str: ... method newIterator (line 82) | def newIterator(self, object: QScriptValue) -> QScriptClassPropertyIte... method property (line 83) | def property(self, object: QScriptValue, name: QScriptString, id: int)... method propertyFlags (line 84) | def propertyFlags(self, object: QScriptValue, name: QScriptString, id:... method prototype (line 85) | def prototype(self) -> QScriptValue: ... method setProperty (line 86) | def setProperty(self, object: QScriptValue, name: QScriptString, id: i... method supportsExtension (line 87) | def supportsExtension(self, extension: QScriptClass.Extension) -> bool... class QScriptClassPropertyIterator (line 89) | class QScriptClassPropertyIterator(shiboken2.Object): method __init__ (line 90) | def __init__(self, object: QScriptValue) -> None: ... method flags (line 91) | def flags(self) -> QScriptValue.PropertyFlags | QScriptValue.PropertyF... method hasNext (line 92) | def hasNext(self) -> bool: ... method hasPrevious (line 93) | def hasPrevious(self) -> bool: ... method id (line 94) | def id(self) -> int: ... method name (line 95) | def name(self) -> QScriptString: ... method next (line 96) | def next(self) -> None: ... method object (line 97) | def object(self) -> QScriptValue: ... method previous (line 98) | def previous(self) -> None: ... method toBack (line 99) | def toBack(self) -> None: ... method toFront (line 100) | def toFront(self) -> None: ... class QScriptContext (line 102) | class QScriptContext(shiboken2.Object): class Error (line 103) | class Error: method __init__ (line 113) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 114) | def __add__(self, other: typing.SupportsInt) -> QScriptContext.Error... method __and__ (line 115) | def __and__(self, other: typing.SupportsInt) -> QScriptContext.Error... method __bool__ (line 116) | def __bool__(self) -> bool: ... method __eq__ (line 117) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 118) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 119) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 120) | def __hash__(self) -> int: ... method __index__ (line 121) | def __index__(self) -> int: ... method __int__ (line 122) | def __int__(self) -> int: ... method __le__ (line 123) | def __le__(self, other: object) -> bool: ... method __lt__ (line 124) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 125) | def __mul__(self, other: typing.SupportsInt) -> QScriptContext.Error... method __ne__ (line 126) | def __ne__(self, other: object) -> bool: ... method __or__ (line 127) | def __or__(self, other: typing.SupportsInt) -> QScriptContext.Error:... method __pos__ (line 128) | def __pos__(self): ... method __radd__ (line 129) | def __radd__(self, other: typing.SupportsInt) -> QScriptContext.Erro... method __rand__ (line 130) | def __rand__(self, other: typing.SupportsInt) -> QScriptContext.Erro... method __rmul__ (line 131) | def __rmul__(self, other: typing.SupportsInt) -> QScriptContext.Erro... method __ror__ (line 132) | def __ror__(self, other: typing.SupportsInt) -> QScriptContext.Error... method __rsub__ (line 133) | def __rsub__(self, other: typing.SupportsInt) -> QScriptContext.Erro... method __rxor__ (line 134) | def __rxor__(self, other: typing.SupportsInt) -> QScriptContext.Erro... method __sub__ (line 135) | def __sub__(self, other: typing.SupportsInt) -> QScriptContext.Error... method __xor__ (line 136) | def __xor__(self, other: typing.SupportsInt) -> QScriptContext.Error... class ExecutionState (line 138) | class ExecutionState: method __init__ (line 144) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 145) | def __add__(self, other: typing.SupportsInt) -> QScriptContext.Execu... method __and__ (line 146) | def __and__(self, other: typing.SupportsInt) -> QScriptContext.Execu... method __bool__ (line 147) | def __bool__(self) -> bool: ... method __eq__ (line 148) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 149) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 150) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 151) | def __hash__(self) -> int: ... method __index__ (line 152) | def __index__(self) -> int: ... method __int__ (line 153) | def __int__(self) -> int: ... method __le__ (line 154) | def __le__(self, other: object) -> bool: ... method __lt__ (line 155) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 156) | def __mul__(self, other: typing.SupportsInt) -> QScriptContext.Execu... method __ne__ (line 157) | def __ne__(self, other: object) -> bool: ... method __or__ (line 158) | def __or__(self, other: typing.SupportsInt) -> QScriptContext.Execut... method __pos__ (line 159) | def __pos__(self): ... method __radd__ (line 160) | def __radd__(self, other: typing.SupportsInt) -> QScriptContext.Exec... method __rand__ (line 161) | def __rand__(self, other: typing.SupportsInt) -> QScriptContext.Exec... method __rmul__ (line 162) | def __rmul__(self, other: typing.SupportsInt) -> QScriptContext.Exec... method __ror__ (line 163) | def __ror__(self, other: typing.SupportsInt) -> QScriptContext.Execu... method __rsub__ (line 164) | def __rsub__(self, other: typing.SupportsInt) -> QScriptContext.Exec... method __rxor__ (line 165) | def __rxor__(self, other: typing.SupportsInt) -> QScriptContext.Exec... method __sub__ (line 166) | def __sub__(self, other: typing.SupportsInt) -> QScriptContext.Execu... method __xor__ (line 167) | def __xor__(self, other: typing.SupportsInt) -> QScriptContext.Execu... method __init__ (line 177) | def __init__(cls, *args, **kwargs) -> None: ... method activationObject (line 178) | def activationObject(self) -> QScriptValue: ... method argument (line 179) | def argument(self, index: int) -> QScriptValue: ... method argumentCount (line 180) | def argumentCount(self) -> int: ... method argumentsObject (line 181) | def argumentsObject(self) -> QScriptValue: ... method backtrace (line 182) | def backtrace(self) -> list[str]: ... method callee (line 183) | def callee(self) -> QScriptValue: ... method engine (line 184) | def engine(self) -> QScriptEngine: ... method isCalledAsConstructor (line 185) | def isCalledAsConstructor(self) -> bool: ... method parentContext (line 186) | def parentContext(self) -> QScriptContext: ... method popScope (line 187) | def popScope(self) -> QScriptValue: ... method pushScope (line 188) | def pushScope(self, object: QScriptValue) -> None: ... method returnValue (line 189) | def returnValue(self) -> QScriptValue: ... method scopeChain (line 190) | def scopeChain(self) -> list[QScriptValue]: ... method setActivationObject (line 191) | def setActivationObject(self, activation: QScriptValue) -> None: ... method setReturnValue (line 192) | def setReturnValue(self, result: QScriptValue) -> None: ... method setThisObject (line 193) | def setThisObject(self, thisObject: QScriptValue) -> None: ... method state (line 194) | def state(self) -> QScriptContext.ExecutionState: ... method thisObject (line 195) | def thisObject(self) -> QScriptValue: ... method throwError (line 197) | def throwError(self, error: QScriptContext.Error, text: str) -> QScrip... method throwError (line 199) | def throwError(self, text: str) -> QScriptValue: ... method throwValue (line 200) | def throwValue(self, value: QScriptValue) -> QScriptValue: ... method toString (line 201) | def toString(self) -> str: ... class QScriptContextInfo (line 203) | class QScriptContextInfo(shiboken2.Object): class FunctionType (line 204) | class FunctionType: method __init__ (line 212) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 213) | def __add__(self, other: typing.SupportsInt) -> QScriptContextInfo.F... method __and__ (line 214) | def __and__(self, other: typing.SupportsInt) -> QScriptContextInfo.F... method __bool__ (line 215) | def __bool__(self) -> bool: ... method __eq__ (line 216) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 217) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 218) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 219) | def __hash__(self) -> int: ... method __index__ (line 220) | def __index__(self) -> int: ... method __int__ (line 221) | def __int__(self) -> int: ... method __le__ (line 222) | def __le__(self, other: object) -> bool: ... method __lt__ (line 223) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 224) | def __mul__(self, other: typing.SupportsInt) -> QScriptContextInfo.F... method __ne__ (line 225) | def __ne__(self, other: object) -> bool: ... method __or__ (line 226) | def __or__(self, other: typing.SupportsInt) -> QScriptContextInfo.Fu... method __pos__ (line 227) | def __pos__(self): ... method __radd__ (line 228) | def __radd__(self, other: typing.SupportsInt) -> QScriptContextInfo.... method __rand__ (line 229) | def __rand__(self, other: typing.SupportsInt) -> QScriptContextInfo.... method __rmul__ (line 230) | def __rmul__(self, other: typing.SupportsInt) -> QScriptContextInfo.... method __ror__ (line 231) | def __ror__(self, other: typing.SupportsInt) -> QScriptContextInfo.F... method __rsub__ (line 232) | def __rsub__(self, other: typing.SupportsInt) -> QScriptContextInfo.... method __rxor__ (line 233) | def __rxor__(self, other: typing.SupportsInt) -> QScriptContextInfo.... method __sub__ (line 234) | def __sub__(self, other: typing.SupportsInt) -> QScriptContextInfo.F... method __xor__ (line 235) | def __xor__(self, other: typing.SupportsInt) -> QScriptContextInfo.F... method __init__ (line 241) | def __init__(self, other: QScriptContextInfo) -> None: ... method __init__ (line 243) | def __init__(self, context: QScriptContext) -> None: ... method __init__ (line 245) | def __init__(self) -> None: ... method columnNumber (line 246) | def columnNumber(self) -> int: ... method fileName (line 247) | def fileName(self) -> str: ... method functionEndLineNumber (line 248) | def functionEndLineNumber(self) -> int: ... method functionMetaIndex (line 249) | def functionMetaIndex(self) -> int: ... method functionName (line 250) | def functionName(self) -> str: ... method functionParameterNames (line 251) | def functionParameterNames(self) -> list[str]: ... method functionStartLineNumber (line 252) | def functionStartLineNumber(self) -> int: ... method functionType (line 253) | def functionType(self) -> QScriptContextInfo.FunctionType: ... method isNull (line 254) | def isNull(self) -> bool: ... method lineNumber (line 255) | def lineNumber(self) -> int: ... method scriptId (line 256) | def scriptId(self) -> int: ... method __bool__ (line 257) | def __bool__(self) -> bool: ... method __copy__ (line 258) | def __copy__(self) -> None: ... method __eq__ (line 259) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 260) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 261) | def __gt__(self, other: object) -> bool: ... method __le__ (line 262) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 263) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 264) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 265) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 266) | def __rlshift__(self, other): ... method __rrshift__ (line 267) | def __rrshift__(self, other): ... method __rshift__ (line 268) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QScriptEngine (line 270) | class QScriptEngine(PySide2.QtCore.QObject): class QObjectWrapOption (line 271) | class QObjectWrapOption: method __init__ (line 284) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 285) | def __and__(self, other: typing.SupportsInt) -> QScriptEngine.QObjec... method __bool__ (line 286) | def __bool__(self) -> bool: ... method __eq__ (line 287) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 288) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 289) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 290) | def __hash__(self) -> int: ... method __index__ (line 291) | def __index__(self) -> int: ... method __int__ (line 292) | def __int__(self) -> int: ... method __invert__ (line 293) | def __invert__(self) -> QScriptEngine.QObjectWrapOptions: ... method __le__ (line 294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 295) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 296) | def __ne__(self, other: object) -> bool: ... method __or__ (line 297) | def __or__(self, other: typing.SupportsInt) -> QScriptEngine.QObject... method __rand__ (line 298) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngine.QObje... method __ror__ (line 299) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngine.QObjec... method __rxor__ (line 300) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngine.QObje... method __xor__ (line 301) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngine.QObjec... class QObjectWrapOptions (line 303) | class QObjectWrapOptions: method __init__ (line 305) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 306) | def __and__(self, other: typing.SupportsInt) -> QScriptEngine.QObjec... method __bool__ (line 307) | def __bool__(self) -> bool: ... method __eq__ (line 308) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 309) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 310) | def __gt__(self, other: object) -> bool: ... method __index__ (line 311) | def __index__(self) -> int: ... method __int__ (line 312) | def __int__(self) -> int: ... method __invert__ (line 313) | def __invert__(self) -> QScriptEngine.QObjectWrapOptions: ... method __le__ (line 314) | def __le__(self, other: object) -> bool: ... method __lt__ (line 315) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 316) | def __ne__(self, other: object) -> bool: ... method __or__ (line 317) | def __or__(self, other: typing.SupportsInt) -> QScriptEngine.QObject... method __rand__ (line 318) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngine.QObje... method __ror__ (line 319) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngine.QObjec... method __rxor__ (line 320) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngine.QObje... method __xor__ (line 321) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngine.QObjec... class ValueOwnership (line 323) | class ValueOwnership: method __init__ (line 330) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 331) | def __add__(self, other: typing.SupportsInt) -> QScriptEngine.ValueO... method __and__ (line 332) | def __and__(self, other: typing.SupportsInt) -> QScriptEngine.ValueO... method __bool__ (line 333) | def __bool__(self) -> bool: ... method __eq__ (line 334) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 335) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 336) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 337) | def __hash__(self) -> int: ... method __index__ (line 338) | def __index__(self) -> int: ... method __int__ (line 339) | def __int__(self) -> int: ... method __le__ (line 340) | def __le__(self, other: object) -> bool: ... method __lt__ (line 341) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 342) | def __mul__(self, other: typing.SupportsInt) -> QScriptEngine.ValueO... method __ne__ (line 343) | def __ne__(self, other: object) -> bool: ... method __or__ (line 344) | def __or__(self, other: typing.SupportsInt) -> QScriptEngine.ValueOw... method __pos__ (line 345) | def __pos__(self): ... method __radd__ (line 346) | def __radd__(self, other: typing.SupportsInt) -> QScriptEngine.Value... method __rand__ (line 347) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngine.Value... method __rmul__ (line 348) | def __rmul__(self, other: typing.SupportsInt) -> QScriptEngine.Value... method __ror__ (line 349) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngine.ValueO... method __rsub__ (line 350) | def __rsub__(self, other: typing.SupportsInt) -> QScriptEngine.Value... method __rxor__ (line 351) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngine.Value... method __sub__ (line 352) | def __sub__(self, other: typing.SupportsInt) -> QScriptEngine.ValueO... method __xor__ (line 353) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngine.ValueO... method __init__ (line 369) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method __init__ (line 371) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method abortEvaluation (line 372) | def abortEvaluation(self, result: QScriptValue = ...) -> None: ... method agent (line 373) | def agent(self) -> QScriptEngineAgent: ... method availableExtensions (line 374) | def availableExtensions(self) -> list[str]: ... method canEvaluate (line 375) | def canEvaluate(self, program: str) -> bool: ... method clearExceptions (line 376) | def clearExceptions(self) -> None: ... method collectGarbage (line 377) | def collectGarbage(self) -> None: ... method currentContext (line 378) | def currentContext(self) -> QScriptContext: ... method defaultPrototype (line 379) | def defaultPrototype(self, metaTypeId: int) -> QScriptValue: ... method evaluate (line 381) | def evaluate(self, program: str, fileName: str = ..., lineNumber: int ... method evaluate (line 383) | def evaluate(self, program: QScriptProgram) -> QScriptValue: ... method globalObject (line 384) | def globalObject(self) -> QScriptValue: ... method hasUncaughtException (line 385) | def hasUncaughtException(self) -> bool: ... method importExtension (line 386) | def importExtension(self, extension: str) -> QScriptValue: ... method importedExtensions (line 387) | def importedExtensions(self) -> list[str]: ... method installTranslatorFunctions (line 388) | def installTranslatorFunctions(self, object: QScriptValue = ...) -> No... method isEvaluating (line 389) | def isEvaluating(self) -> bool: ... method newActivationObject (line 390) | def newActivationObject(self) -> QScriptValue: ... method newArray (line 391) | def newArray(self, length: int = ...) -> QScriptValue: ... method newDate (line 393) | def newDate(self, value: PySide2.QtCore.QDateTime | datetime.datetime)... method newDate (line 395) | def newDate(self, value: float) -> QScriptValue: ... method newObject (line 397) | def newObject(self, scriptClass: QScriptClass, data: QScriptValue = ..... method newObject (line 399) | def newObject(self) -> QScriptValue: ... method newQMetaObject (line 400) | def newQMetaObject(self, metaObject: PySide2.QtCore.QMetaObject, ctor:... method newQObject (line 402) | def newQObject(self, scriptObject: QScriptValue, qtObject: PySide2.QtC... method newQObject (line 404) | def newQObject(self, object: PySide2.QtCore.QObject, ownership: QScrip... method newRegExp (line 406) | def newRegExp(self, pattern: str, flags: str) -> QScriptValue: ... method newRegExp (line 408) | def newRegExp(self, regexp: PySide2.QtCore.QRegExp) -> QScriptValue: ... method newVariant (line 410) | def newVariant(self, object: QScriptValue, value: typing.Any) -> QScri... method newVariant (line 412) | def newVariant(self, value: typing.Any) -> QScriptValue: ... method nullValue (line 413) | def nullValue(self) -> QScriptValue: ... method objectById (line 414) | def objectById(self, id: int) -> QScriptValue: ... method popContext (line 415) | def popContext(self) -> None: ... method processEventsInterval (line 416) | def processEventsInterval(self) -> int: ... method pushContext (line 417) | def pushContext(self) -> QScriptContext: ... method reportAdditionalMemoryCost (line 418) | def reportAdditionalMemoryCost(self, size: int) -> None: ... method setAgent (line 419) | def setAgent(self, agent: QScriptEngineAgent) -> None: ... method setDefaultPrototype (line 420) | def setDefaultPrototype(self, metaTypeId: int, prototype: QScriptValue... method setGlobalObject (line 421) | def setGlobalObject(self, object: QScriptValue) -> None: ... method setProcessEventsInterval (line 422) | def setProcessEventsInterval(self, interval: int) -> None: ... method toObject (line 423) | def toObject(self, value: QScriptValue) -> QScriptValue: ... method toStringHandle (line 424) | def toStringHandle(self, str: str) -> QScriptString: ... method uncaughtException (line 425) | def uncaughtException(self) -> QScriptValue: ... method uncaughtExceptionBacktrace (line 426) | def uncaughtExceptionBacktrace(self) -> list[str]: ... method uncaughtExceptionLineNumber (line 427) | def uncaughtExceptionLineNumber(self) -> int: ... method undefinedValue (line 428) | def undefinedValue(self) -> QScriptValue: ... class QScriptEngineAgent (line 430) | class QScriptEngineAgent(shiboken2.Object): class Extension (line 431) | class Extension: method __init__ (line 436) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 437) | def __add__(self, other: typing.SupportsInt) -> QScriptEngineAgent.E... method __and__ (line 438) | def __and__(self, other: typing.SupportsInt) -> QScriptEngineAgent.E... method __bool__ (line 439) | def __bool__(self) -> bool: ... method __eq__ (line 440) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 441) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 442) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 443) | def __hash__(self) -> int: ... method __index__ (line 444) | def __index__(self) -> int: ... method __int__ (line 445) | def __int__(self) -> int: ... method __le__ (line 446) | def __le__(self, other: object) -> bool: ... method __lt__ (line 447) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 448) | def __mul__(self, other: typing.SupportsInt) -> QScriptEngineAgent.E... method __ne__ (line 449) | def __ne__(self, other: object) -> bool: ... method __or__ (line 450) | def __or__(self, other: typing.SupportsInt) -> QScriptEngineAgent.Ex... method __pos__ (line 451) | def __pos__(self): ... method __radd__ (line 452) | def __radd__(self, other: typing.SupportsInt) -> QScriptEngineAgent.... method __rand__ (line 453) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngineAgent.... method __rmul__ (line 454) | def __rmul__(self, other: typing.SupportsInt) -> QScriptEngineAgent.... method __ror__ (line 455) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngineAgent.E... method __rsub__ (line 456) | def __rsub__(self, other: typing.SupportsInt) -> QScriptEngineAgent.... method __rxor__ (line 457) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngineAgent.... method __sub__ (line 458) | def __sub__(self, other: typing.SupportsInt) -> QScriptEngineAgent.E... method __xor__ (line 459) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngineAgent.E... method __init__ (line 461) | def __init__(self, engine: QScriptEngine) -> None: ... method contextPop (line 462) | def contextPop(self) -> None: ... method contextPush (line 463) | def contextPush(self) -> None: ... method engine (line 464) | def engine(self) -> QScriptEngine: ... method exceptionCatch (line 465) | def exceptionCatch(self, scriptId: int, exception: QScriptValue) -> No... method exceptionThrow (line 466) | def exceptionThrow(self, scriptId: int, exception: QScriptValue, hasHa... method extension (line 467) | def extension(self, extension: QScriptEngineAgent.Extension, argument:... method functionEntry (line 468) | def functionEntry(self, scriptId: int) -> None: ... method functionExit (line 469) | def functionExit(self, scriptId: int, returnValue: QScriptValue) -> No... method positionChange (line 470) | def positionChange(self, scriptId: int, lineNumber: int, columnNumber:... method scriptLoad (line 471) | def scriptLoad(self, id: int, program: str, fileName: str, baseLineNum... method scriptUnload (line 472) | def scriptUnload(self, id: int) -> None: ... method supportsExtension (line 473) | def supportsExtension(self, extension: QScriptEngineAgent.Extension) -... class QScriptExtensionInterface (line 475) | class QScriptExtensionInterface(PySide2.QtCore.QFactoryInterface): method __init__ (line 476) | def __init__(self) -> None: ... method initialize (line 477) | def initialize(self, key: str, engine: QScriptEngine) -> None: ... class QScriptExtensionPlugin (line 479) | class QScriptExtensionPlugin(PySide2.QtCore.QObject, QScriptExtensionInt... method __init__ (line 481) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method initialize (line 482) | def initialize(self, key: str, engine: QScriptEngine) -> None: ... method keys (line 483) | def keys(self) -> list[str]: ... method setupPackage (line 484) | def setupPackage(self, key: str, engine: QScriptEngine) -> QScriptValu... class QScriptProgram (line 486) | class QScriptProgram(shiboken2.Object): method __init__ (line 488) | def __init__(self, sourceCode: str, fileName: str = ..., firstLineNumb... method __init__ (line 490) | def __init__(self, other: QScriptProgram) -> None: ... method __init__ (line 492) | def __init__(self) -> None: ... method fileName (line 493) | def fileName(self) -> str: ... method firstLineNumber (line 494) | def firstLineNumber(self) -> int: ... method isNull (line 495) | def isNull(self) -> bool: ... method sourceCode (line 496) | def sourceCode(self) -> str: ... method __bool__ (line 497) | def __bool__(self) -> bool: ... method __copy__ (line 498) | def __copy__(self) -> None: ... method __eq__ (line 499) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 500) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 501) | def __gt__(self, other: object) -> bool: ... method __le__ (line 502) | def __le__(self, other: object) -> bool: ... method __lt__ (line 503) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 504) | def __ne__(self, other: object) -> bool: ... class QScriptString (line 506) | class QScriptString(shiboken2.Object): method __init__ (line 508) | def __init__(self, other: QScriptString) -> None: ... method __init__ (line 510) | def __init__(self) -> None: ... method isValid (line 511) | def isValid(self) -> bool: ... method toArrayIndex (line 512) | def toArrayIndex(self) -> tuple[int, bool]: ... method toString (line 513) | def toString(self) -> str: ... method __copy__ (line 514) | def __copy__(self) -> None: ... method __eq__ (line 515) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 516) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 517) | def __gt__(self, other: object) -> bool: ... method __le__ (line 518) | def __le__(self, other: object) -> bool: ... method __lt__ (line 519) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 520) | def __ne__(self, other: object) -> bool: ... class QScriptValue (line 522) | class QScriptValue(shiboken2.Object): class PropertyFlag (line 523) | class PropertyFlag: method __init__ (line 535) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 536) | def __and__(self, other: typing.SupportsInt) -> QScriptValue.Propert... method __bool__ (line 537) | def __bool__(self) -> bool: ... method __eq__ (line 538) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 539) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 540) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 541) | def __hash__(self) -> int: ... method __index__ (line 542) | def __index__(self) -> int: ... method __int__ (line 543) | def __int__(self) -> int: ... method __invert__ (line 544) | def __invert__(self) -> QScriptValue.PropertyFlags: ... method __le__ (line 545) | def __le__(self, other: object) -> bool: ... method __lt__ (line 546) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 547) | def __ne__(self, other: object) -> bool: ... method __or__ (line 548) | def __or__(self, other: typing.SupportsInt) -> QScriptValue.Property... method __rand__ (line 549) | def __rand__(self, other: typing.SupportsInt) -> QScriptValue.Proper... method __ror__ (line 550) | def __ror__(self, other: typing.SupportsInt) -> QScriptValue.Propert... method __rxor__ (line 551) | def __rxor__(self, other: typing.SupportsInt) -> QScriptValue.Proper... method __xor__ (line 552) | def __xor__(self, other: typing.SupportsInt) -> QScriptValue.Propert... class PropertyFlags (line 554) | class PropertyFlags: method __init__ (line 556) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 557) | def __and__(self, other: typing.SupportsInt) -> QScriptValue.Propert... method __bool__ (line 558) | def __bool__(self) -> bool: ... method __eq__ (line 559) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 560) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 561) | def __gt__(self, other: object) -> bool: ... method __index__ (line 562) | def __index__(self) -> int: ... method __int__ (line 563) | def __int__(self) -> int: ... method __invert__ (line 564) | def __invert__(self) -> QScriptValue.PropertyFlags: ... method __le__ (line 565) | def __le__(self, other: object) -> bool: ... method __lt__ (line 566) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 567) | def __ne__(self, other: object) -> bool: ... method __or__ (line 568) | def __or__(self, other: typing.SupportsInt) -> QScriptValue.Property... method __rand__ (line 569) | def __rand__(self, other: typing.SupportsInt) -> QScriptValue.Proper... method __ror__ (line 570) | def __ror__(self, other: typing.SupportsInt) -> QScriptValue.Propert... method __rxor__ (line 571) | def __rxor__(self, other: typing.SupportsInt) -> QScriptValue.Proper... method __xor__ (line 572) | def __xor__(self, other: typing.SupportsInt) -> QScriptValue.Propert... class ResolveFlag (line 574) | class ResolveFlag: method __init__ (line 582) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 583) | def __and__(self, other: typing.SupportsInt) -> QScriptValue.Resolve... method __bool__ (line 584) | def __bool__(self) -> bool: ... method __eq__ (line 585) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 586) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 587) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 588) | def __hash__(self) -> int: ... method __index__ (line 589) | def __index__(self) -> int: ... method __int__ (line 590) | def __int__(self) -> int: ... method __invert__ (line 591) | def __invert__(self) -> QScriptValue.ResolveFlags: ... method __le__ (line 592) | def __le__(self, other: object) -> bool: ... method __lt__ (line 593) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 594) | def __ne__(self, other: object) -> bool: ... method __or__ (line 595) | def __or__(self, other: typing.SupportsInt) -> QScriptValue.ResolveF... method __rand__ (line 596) | def __rand__(self, other: typing.SupportsInt) -> QScriptValue.Resolv... method __ror__ (line 597) | def __ror__(self, other: typing.SupportsInt) -> QScriptValue.Resolve... method __rxor__ (line 598) | def __rxor__(self, other: typing.SupportsInt) -> QScriptValue.Resolv... method __xor__ (line 599) | def __xor__(self, other: typing.SupportsInt) -> QScriptValue.Resolve... class ResolveFlags (line 601) | class ResolveFlags: method __init__ (line 603) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 604) | def __and__(self, other: typing.SupportsInt) -> QScriptValue.Resolve... method __bool__ (line 605) | def __bool__(self) -> bool: ... method __eq__ (line 606) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 607) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 608) | def __gt__(self, other: object) -> bool: ... method __index__ (line 609) | def __index__(self) -> int: ... method __int__ (line 610) | def __int__(self) -> int: ... method __invert__ (line 611) | def __invert__(self) -> QScriptValue.ResolveFlags: ... method __le__ (line 612) | def __le__(self, other: object) -> bool: ... method __lt__ (line 613) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 614) | def __ne__(self, other: object) -> bool: ... method __or__ (line 615) | def __or__(self, other: typing.SupportsInt) -> QScriptValue.ResolveF... method __rand__ (line 616) | def __rand__(self, other: typing.SupportsInt) -> QScriptValue.Resolv... method __ror__ (line 617) | def __ror__(self, other: typing.SupportsInt) -> QScriptValue.Resolve... method __rxor__ (line 618) | def __rxor__(self, other: typing.SupportsInt) -> QScriptValue.Resolv... method __xor__ (line 619) | def __xor__(self, other: typing.SupportsInt) -> QScriptValue.Resolve... class SpecialValue (line 621) | class SpecialValue: method __init__ (line 627) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 628) | def __add__(self, other: typing.SupportsInt) -> QScriptValue.Special... method __and__ (line 629) | def __and__(self, other: typing.SupportsInt) -> QScriptValue.Special... method __bool__ (line 630) | def __bool__(self) -> bool: ... method __eq__ (line 631) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 632) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 633) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 634) | def __hash__(self) -> int: ... method __index__ (line 635) | def __index__(self) -> int: ... method __int__ (line 636) | def __int__(self) -> int: ... method __le__ (line 637) | def __le__(self, other: object) -> bool: ... method __lt__ (line 638) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 639) | def __mul__(self, other: typing.SupportsInt) -> QScriptValue.Special... method __ne__ (line 640) | def __ne__(self, other: object) -> bool: ... method __or__ (line 641) | def __or__(self, other: typing.SupportsInt) -> QScriptValue.SpecialV... method __pos__ (line 642) | def __pos__(self): ... method __radd__ (line 643) | def __radd__(self, other: typing.SupportsInt) -> QScriptValue.Specia... method __rand__ (line 644) | def __rand__(self, other: typing.SupportsInt) -> QScriptValue.Specia... method __rmul__ (line 645) | def __rmul__(self, other: typing.SupportsInt) -> QScriptValue.Specia... method __ror__ (line 646) | def __ror__(self, other: typing.SupportsInt) -> QScriptValue.Special... method __rsub__ (line 647) | def __rsub__(self, other: typing.SupportsInt) -> QScriptValue.Specia... method __rxor__ (line 648) | def __rxor__(self, other: typing.SupportsInt) -> QScriptValue.Specia... method __sub__ (line 649) | def __sub__(self, other: typing.SupportsInt) -> QScriptValue.Special... method __xor__ (line 650) | def __xor__(self, other: typing.SupportsInt) -> QScriptValue.Special... method __init__ (line 666) | def __init__(self, engine: QScriptEngine, val: QScriptValue.SpecialVal... method __init__ (line 668) | def __init__(self, engine: QScriptEngine, val: str) -> None: ... method __init__ (line 670) | def __init__(self, engine: QScriptEngine, val: bool) -> None: ... method __init__ (line 672) | def __init__(self, engine: QScriptEngine, val: bytes) -> None: ... method __init__ (line 674) | def __init__(self, engine: QScriptEngine, val: float) -> None: ... method __init__ (line 676) | def __init__(self, engine: QScriptEngine, val: int) -> None: ... # ty... method __init__ (line 678) | def __init__(self, value: QScriptValue.SpecialValue) -> None: ... method __init__ (line 680) | def __init__(self, value: str) -> None: ... method __init__ (line 682) | def __init__(self, value: bool) -> None: ... method __init__ (line 684) | def __init__(self, value: bytes) -> None: ... method __init__ (line 686) | def __init__(self, value: float) -> None: ... method __init__ (line 688) | def __init__(self, value: int) -> None: ... # type: ignore[overload-c... method __init__ (line 690) | def __init__(self, other: QScriptValue) -> None: ... method __init__ (line 692) | def __init__(self) -> None: ... method call (line 694) | def call(self, thisObject: QScriptValue, arguments: QScriptValue) -> Q... method call (line 696) | def call(self, thisObject: QScriptValue = ..., args: typing.Iterable[Q... method construct (line 698) | def construct(self, arguments: QScriptValue) -> QScriptValue: ... method construct (line 700) | def construct(self, args: typing.Iterable[QScriptValue] = ...) -> QScr... method data (line 701) | def data(self) -> QScriptValue: ... method engine (line 702) | def engine(self) -> QScriptEngine: ... method equals (line 703) | def equals(self, other: QScriptValue) -> bool: ... method instanceOf (line 704) | def instanceOf(self, other: QScriptValue) -> bool: ... method isArray (line 705) | def isArray(self) -> bool: ... method isBool (line 706) | def isBool(self) -> bool: ... method isBoolean (line 707) | def isBoolean(self) -> bool: ... method isDate (line 708) | def isDate(self) -> bool: ... method isError (line 709) | def isError(self) -> bool: ... method isFunction (line 710) | def isFunction(self) -> bool: ... method isNull (line 711) | def isNull(self) -> bool: ... method isNumber (line 712) | def isNumber(self) -> bool: ... method isObject (line 713) | def isObject(self) -> bool: ... method isQMetaObject (line 714) | def isQMetaObject(self) -> bool: ... method isQObject (line 715) | def isQObject(self) -> bool: ... method isRegExp (line 716) | def isRegExp(self) -> bool: ... method isString (line 717) | def isString(self) -> bool: ... method isUndefined (line 718) | def isUndefined(self) -> bool: ... method isValid (line 719) | def isValid(self) -> bool: ... method isVariant (line 720) | def isVariant(self) -> bool: ... method lessThan (line 721) | def lessThan(self, other: QScriptValue) -> bool: ... method objectId (line 722) | def objectId(self) -> int: ... method property (line 724) | def property(self, name: QScriptString, mode: QScriptValue.ResolveFlag... method property (line 726) | def property(self, name: str, mode: QScriptValue.ResolveFlags | QScrip... method property (line 728) | def property(self, arrayIndex: int, mode: QScriptValue.ResolveFlags | ... method propertyFlags (line 730) | def propertyFlags(self, name: QScriptString, mode: QScriptValue.Resolv... method propertyFlags (line 732) | def propertyFlags(self, name: str, mode: QScriptValue.ResolveFlags | Q... method prototype (line 733) | def prototype(self) -> QScriptValue: ... method scope (line 734) | def scope(self) -> QScriptValue: ... method scriptClass (line 735) | def scriptClass(self) -> QScriptClass: ... method setData (line 736) | def setData(self, data: QScriptValue) -> None: ... method setProperty (line 738) | def setProperty(self, name: QScriptString, value: QScriptValue, flags:... method setProperty (line 740) | def setProperty(self, name: str, value: QScriptValue, flags: QScriptVa... method setProperty (line 742) | def setProperty(self, arrayIndex: int, value: QScriptValue, flags: QSc... method setPrototype (line 743) | def setPrototype(self, prototype: QScriptValue) -> None: ... method setScope (line 744) | def setScope(self, scope: QScriptValue) -> None: ... method setScriptClass (line 745) | def setScriptClass(self, scriptClass: QScriptClass) -> None: ... method strictlyEquals (line 746) | def strictlyEquals(self, other: QScriptValue) -> bool: ... method toBool (line 747) | def toBool(self) -> bool: ... method toBoolean (line 748) | def toBoolean(self) -> bool: ... method toDateTime (line 749) | def toDateTime(self) -> PySide2.QtCore.QDateTime: ... method toInt32 (line 750) | def toInt32(self) -> int: ... method toInteger (line 751) | def toInteger(self) -> float: ... method toNumber (line 752) | def toNumber(self) -> float: ... method toObject (line 753) | def toObject(self) -> QScriptValue: ... method toQMetaObject (line 754) | def toQMetaObject(self) -> PySide2.QtCore.QMetaObject: ... method toQObject (line 755) | def toQObject(self) -> PySide2.QtCore.QObject: ... method toRegExp (line 756) | def toRegExp(self) -> PySide2.QtCore.QRegExp: ... method toString (line 757) | def toString(self) -> str: ... method toUInt16 (line 758) | def toUInt16(self) -> int: ... method toUInt32 (line 759) | def toUInt32(self) -> int: ... method toVariant (line 760) | def toVariant(self) -> typing.Any: ... method __bool__ (line 761) | def __bool__(self) -> bool: ... method __copy__ (line 762) | def __copy__(self) -> None: ... method __getitem__ (line 763) | def __getitem__(self, index): ... method __iter__ (line 764) | def __iter__(self) -> typing.Iterator: ... class QScriptValueIterator (line 766) | class QScriptValueIterator(shiboken2.Object): method __init__ (line 767) | def __init__(self, value: QScriptValue) -> None: ... method flags (line 768) | def flags(self) -> QScriptValue.PropertyFlags | QScriptValue.PropertyF... method hasNext (line 769) | def hasNext(self) -> bool: ... method hasPrevious (line 770) | def hasPrevious(self) -> bool: ... method name (line 771) | def name(self) -> str: ... method next (line 772) | def next(self) -> None: ... method previous (line 773) | def previous(self) -> None: ... method remove (line 774) | def remove(self) -> None: ... method scriptName (line 775) | def scriptName(self) -> QScriptString: ... method setValue (line 776) | def setValue(self, value: QScriptValue) -> None: ... method toBack (line 777) | def toBack(self) -> None: ... method toFront (line 778) | def toFront(self) -> None: ... method value (line 779) | def value(self) -> QScriptValue: ... method __iter__ (line 780) | def __iter__(self) -> typing.Iterator: ... method __next__ (line 781) | def __next__(self) -> typing.Any: ... class QScriptable (line 783) | class QScriptable(shiboken2.Object): method __init__ (line 784) | def __init__(self) -> None: ... method argument (line 785) | def argument(self, index: int) -> QScriptValue: ... method argumentCount (line 786) | def argumentCount(self) -> int: ... method context (line 787) | def context(self) -> QScriptContext: ... method engine (line 788) | def engine(self) -> QScriptEngine: ... method thisObject (line 789) | def thisObject(self) -> QScriptValue: ... FILE: pyside/stubs/PySide2-stubs/QtScriptTools.pyi class QScriptEngineDebugger (line 11) | class QScriptEngineDebugger(PySide2.QtCore.QObject): class DebuggerAction (line 12) | class DebuggerAction: method __init__ (line 31) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 32) | def __add__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __and__ (line 33) | def __and__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __bool__ (line 34) | def __bool__(self) -> bool: ... method __eq__ (line 35) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 36) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 37) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 38) | def __hash__(self) -> int: ... method __index__ (line 39) | def __index__(self) -> int: ... method __int__ (line 40) | def __int__(self) -> int: ... method __le__ (line 41) | def __le__(self, other: object) -> bool: ... method __lt__ (line 42) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 43) | def __mul__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __ne__ (line 44) | def __ne__(self, other: object) -> bool: ... method __or__ (line 45) | def __or__(self, other: typing.SupportsInt) -> QScriptEngineDebugger... method __pos__ (line 46) | def __pos__(self): ... method __radd__ (line 47) | def __radd__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rand__ (line 48) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rmul__ (line 49) | def __rmul__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __ror__ (line 50) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __rsub__ (line 51) | def __rsub__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rxor__ (line 52) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __sub__ (line 53) | def __sub__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __xor__ (line 54) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... class DebuggerState (line 56) | class DebuggerState: method __init__ (line 62) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 63) | def __add__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __and__ (line 64) | def __and__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __bool__ (line 65) | def __bool__(self) -> bool: ... method __eq__ (line 66) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 67) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 68) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 69) | def __hash__(self) -> int: ... method __index__ (line 70) | def __index__(self) -> int: ... method __int__ (line 71) | def __int__(self) -> int: ... method __le__ (line 72) | def __le__(self, other: object) -> bool: ... method __lt__ (line 73) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 74) | def __mul__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __ne__ (line 75) | def __ne__(self, other: object) -> bool: ... method __or__ (line 76) | def __or__(self, other: typing.SupportsInt) -> QScriptEngineDebugger... method __pos__ (line 77) | def __pos__(self): ... method __radd__ (line 78) | def __radd__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rand__ (line 79) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rmul__ (line 80) | def __rmul__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __ror__ (line 81) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __rsub__ (line 82) | def __rsub__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rxor__ (line 83) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __sub__ (line 84) | def __sub__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __xor__ (line 85) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... class DebuggerWidget (line 87) | class DebuggerWidget: method __init__ (line 100) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 101) | def __add__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __and__ (line 102) | def __and__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __bool__ (line 103) | def __bool__(self) -> bool: ... method __eq__ (line 104) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 105) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 106) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 107) | def __hash__(self) -> int: ... method __index__ (line 108) | def __index__(self) -> int: ... method __int__ (line 109) | def __int__(self) -> int: ... method __le__ (line 110) | def __le__(self, other: object) -> bool: ... method __lt__ (line 111) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 112) | def __mul__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __ne__ (line 113) | def __ne__(self, other: object) -> bool: ... method __or__ (line 114) | def __or__(self, other: typing.SupportsInt) -> QScriptEngineDebugger... method __pos__ (line 115) | def __pos__(self): ... method __radd__ (line 116) | def __radd__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rand__ (line 117) | def __rand__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rmul__ (line 118) | def __rmul__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __ror__ (line 119) | def __ror__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __rsub__ (line 120) | def __rsub__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __rxor__ (line 121) | def __rxor__(self, other: typing.SupportsInt) -> QScriptEngineDebugg... method __sub__ (line 122) | def __sub__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __xor__ (line 123) | def __xor__(self, other: typing.SupportsInt) -> QScriptEngineDebugge... method __init__ (line 153) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method action (line 154) | def action(self, action: QScriptEngineDebugger.DebuggerAction) -> PySi... method attachTo (line 155) | def attachTo(self, engine: PySide2.QtScript.QScriptEngine) -> None: ... method autoShowStandardWindow (line 156) | def autoShowStandardWindow(self) -> bool: ... method createStandardMenu (line 157) | def createStandardMenu(self, parent: PySide2.QtWidgets.QWidget | None ... method createStandardToolBar (line 158) | def createStandardToolBar(self, parent: PySide2.QtWidgets.QWidget | No... method setAutoShowStandardWindow (line 159) | def setAutoShowStandardWindow(self, autoShow: bool) -> None: ... method standardWindow (line 160) | def standardWindow(self) -> PySide2.QtWidgets.QMainWindow: ... method state (line 161) | def state(self) -> QScriptEngineDebugger.DebuggerState: ... method widget (line 162) | def widget(self, widget: QScriptEngineDebugger.DebuggerWidget) -> PySi... FILE: pyside/stubs/PySide2-stubs/QtScxml.pyi class QScxmlCompiler (line 11) | class QScxmlCompiler(shiboken2.Object): class Loader (line 12) | class Loader(shiboken2.Object): method __init__ (line 13) | def __init__(self) -> None: ... method load (line 14) | def load(self, name: str, baseDir: str) -> tuple[PySide2.QtCore.QByt... method __init__ (line 15) | def __init__(self, xmlReader: PySide2.QtCore.QXmlStreamReader) -> None... method compile (line 16) | def compile(self) -> QScxmlStateMachine: ... method errors (line 17) | def errors(self) -> list[QScxmlError]: ... method fileName (line 18) | def fileName(self) -> str: ... method loader (line 19) | def loader(self) -> QScxmlCompiler.Loader: ... method setFileName (line 20) | def setFileName(self, fileName: str) -> None: ... method setLoader (line 21) | def setLoader(self, newLoader: QScxmlCompiler.Loader) -> None: ... class QScxmlCppDataModel (line 23) | class QScxmlCppDataModel(QScxmlDataModel): method __init__ (line 25) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method evaluateAssignment (line 26) | def evaluateAssignment(self, id: int) -> bool: ... method evaluateForeach (line 27) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 28) | def evaluateInitialization(self, id: int) -> bool: ... method hasScxmlProperty (line 29) | def hasScxmlProperty(self, name: str) -> bool: ... method inState (line 30) | def inState(self, stateName: str) -> bool: ... method scxmlEvent (line 31) | def scxmlEvent(self) -> QScxmlEvent: ... method scxmlProperty (line 32) | def scxmlProperty(self, name: str) -> typing.Any: ... method setScxmlEvent (line 33) | def setScxmlEvent(self, scxmlEvent: QScxmlEvent) -> None: ... method setScxmlProperty (line 34) | def setScxmlProperty(self, name: str, value: typing.Any, context: str)... method setup (line 35) | def setup(self, initialDataValues: dict[str, typing.Any]) -> bool: ... class QScxmlDataModel (line 37) | class QScxmlDataModel(PySide2.QtCore.QObject): class ForeachLoopBody (line 38) | class ForeachLoopBody(shiboken2.Object): method __init__ (line 39) | def __init__(self) -> None: ... method run (line 40) | def run(self) -> bool: ... method __init__ (line 43) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method evaluateAssignment (line 44) | def evaluateAssignment(self, id: int) -> bool: ... method evaluateForeach (line 45) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 46) | def evaluateInitialization(self, id: int) -> bool: ... method evaluateToBool (line 47) | def evaluateToBool(self, id: int) -> tuple[bool, bool]: ... method evaluateToString (line 48) | def evaluateToString(self, id: int) -> tuple[str, bool]: ... method evaluateToVariant (line 49) | def evaluateToVariant(self, id: int) -> tuple[typing.Any, bool]: ... method evaluateToVoid (line 50) | def evaluateToVoid(self, id: int) -> bool: ... method hasScxmlProperty (line 51) | def hasScxmlProperty(self, name: str) -> bool: ... method scxmlProperty (line 52) | def scxmlProperty(self, name: str) -> typing.Any: ... method setScxmlEvent (line 53) | def setScxmlEvent(self, event: QScxmlEvent) -> None: ... method setScxmlProperty (line 54) | def setScxmlProperty(self, name: str, value: typing.Any, context: str)... method setStateMachine (line 55) | def setStateMachine(self, stateMachine: QScxmlStateMachine) -> None: ... method setup (line 56) | def setup(self, initialDataValues: dict[str, typing.Any]) -> bool: ... method stateMachine (line 57) | def stateMachine(self) -> QScxmlStateMachine: ... class QScxmlDynamicScxmlServiceFactory (line 59) | class QScxmlDynamicScxmlServiceFactory(QScxmlInvokableServiceFactory): method __init__ (line 61) | def __init__(self, invokeInfo: QScxmlExecutableContent.InvokeInfo, nam... method invoke (line 62) | def invoke(self, parentStateMachine: QScxmlStateMachine) -> QScxmlInvo... class QScxmlEcmaScriptDataModel (line 64) | class QScxmlEcmaScriptDataModel(QScxmlDataModel): method __init__ (line 66) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method evaluateAssignment (line 67) | def evaluateAssignment(self, id: int) -> bool: ... method evaluateForeach (line 68) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 69) | def evaluateInitialization(self, id: int) -> bool: ... method evaluateToBool (line 70) | def evaluateToBool(self, id: int) -> tuple[bool, bool]: ... method evaluateToString (line 71) | def evaluateToString(self, id: int) -> tuple[str, bool]: ... method evaluateToVariant (line 72) | def evaluateToVariant(self, id: int) -> tuple[typing.Any, bool]: ... method evaluateToVoid (line 73) | def evaluateToVoid(self, id: int) -> bool: ... method hasScxmlProperty (line 74) | def hasScxmlProperty(self, name: str) -> bool: ... method scxmlProperty (line 75) | def scxmlProperty(self, name: str) -> typing.Any: ... method setScxmlEvent (line 76) | def setScxmlEvent(self, event: QScxmlEvent) -> None: ... method setScxmlProperty (line 77) | def setScxmlProperty(self, name: str, value: typing.Any, context: str)... method setup (line 78) | def setup(self, initialDataValues: dict[str, typing.Any]) -> bool: ... class QScxmlError (line 80) | class QScxmlError(shiboken2.Object): method __init__ (line 82) | def __init__(self, fileName: str, line: int, column: int, description:... method __init__ (line 84) | def __init__(self, arg__1: QScxmlError) -> None: ... method __init__ (line 86) | def __init__(self) -> None: ... method column (line 87) | def column(self) -> int: ... method description (line 88) | def description(self) -> str: ... method fileName (line 89) | def fileName(self) -> str: ... method isValid (line 90) | def isValid(self) -> bool: ... method line (line 91) | def line(self) -> int: ... method toString (line 92) | def toString(self) -> str: ... method __copy__ (line 93) | def __copy__(self) -> None: ... class QScxmlEvent (line 95) | class QScxmlEvent(shiboken2.Object): class EventType (line 96) | class EventType: method __init__ (line 103) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 104) | def __add__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTyp... method __and__ (line 105) | def __and__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTyp... method __bool__ (line 106) | def __bool__(self) -> bool: ... method __eq__ (line 107) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 108) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 109) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 110) | def __hash__(self) -> int: ... method __index__ (line 111) | def __index__(self) -> int: ... method __int__ (line 112) | def __int__(self) -> int: ... method __le__ (line 113) | def __le__(self, other: object) -> bool: ... method __lt__ (line 114) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 115) | def __mul__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTyp... method __ne__ (line 116) | def __ne__(self, other: object) -> bool: ... method __or__ (line 117) | def __or__(self, other: typing.SupportsInt) -> QScxmlEvent.EventType... method __pos__ (line 118) | def __pos__(self): ... method __radd__ (line 119) | def __radd__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTy... method __rand__ (line 120) | def __rand__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTy... method __rmul__ (line 121) | def __rmul__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTy... method __ror__ (line 122) | def __ror__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTyp... method __rsub__ (line 123) | def __rsub__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTy... method __rxor__ (line 124) | def __rxor__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTy... method __sub__ (line 125) | def __sub__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTyp... method __xor__ (line 126) | def __xor__(self, other: typing.SupportsInt) -> QScxmlEvent.EventTyp... method __init__ (line 131) | def __init__(self, other: QScxmlEvent) -> None: ... method __init__ (line 133) | def __init__(self) -> None: ... method clear (line 134) | def clear(self) -> None: ... method data (line 135) | def data(self) -> typing.Any: ... method delay (line 136) | def delay(self) -> int: ... method errorMessage (line 137) | def errorMessage(self) -> str: ... method eventType (line 138) | def eventType(self) -> QScxmlEvent.EventType: ... method invokeId (line 139) | def invokeId(self) -> str: ... method isErrorEvent (line 140) | def isErrorEvent(self) -> bool: ... method name (line 141) | def name(self) -> str: ... method origin (line 142) | def origin(self) -> str: ... method originType (line 143) | def originType(self) -> str: ... method scxmlType (line 144) | def scxmlType(self) -> str: ... method sendId (line 145) | def sendId(self) -> str: ... method setData (line 146) | def setData(self, data: typing.Any) -> None: ... method setDelay (line 147) | def setDelay(self, delayInMiliSecs: int) -> None: ... method setErrorMessage (line 148) | def setErrorMessage(self, message: str) -> None: ... method setEventType (line 149) | def setEventType(self, type: QScxmlEvent.EventType) -> None: ... method setInvokeId (line 150) | def setInvokeId(self, invokeId: str) -> None: ... method setName (line 151) | def setName(self, name: str) -> None: ... method setOrigin (line 152) | def setOrigin(self, origin: str) -> None: ... method setOriginType (line 153) | def setOriginType(self, originType: str) -> None: ... method setSendId (line 154) | def setSendId(self, sendId: str) -> None: ... class QScxmlExecutableContent (line 156) | class QScxmlExecutableContent(shiboken2.Object): class AssignmentInfo (line 157) | class AssignmentInfo(shiboken2.Object): method __init__ (line 162) | def __init__(self, AssignmentInfo: QScxmlExecutableContent.Assignmen... method __init__ (line 164) | def __init__(self) -> None: ... method __copy__ (line 165) | def __copy__(self) -> None: ... class EvaluatorInfo (line 167) | class EvaluatorInfo(shiboken2.Object): method __init__ (line 171) | def __init__(self, EvaluatorInfo: QScxmlExecutableContent.EvaluatorI... method __init__ (line 173) | def __init__(self) -> None: ... method __copy__ (line 174) | def __copy__(self) -> None: ... class ForeachInfo (line 176) | class ForeachInfo(shiboken2.Object): method __init__ (line 182) | def __init__(self, ForeachInfo: QScxmlExecutableContent.ForeachInfo)... method __init__ (line 184) | def __init__(self) -> None: ... method __copy__ (line 185) | def __copy__(self) -> None: ... class InvokeInfo (line 187) | class InvokeInfo(shiboken2.Object): method __init__ (line 196) | def __init__(self, InvokeInfo: QScxmlExecutableContent.InvokeInfo) -... method __init__ (line 198) | def __init__(self) -> None: ... method __copy__ (line 199) | def __copy__(self) -> None: ... class ParameterInfo (line 201) | class ParameterInfo(shiboken2.Object): method __init__ (line 206) | def __init__(self, ParameterInfo: QScxmlExecutableContent.ParameterI... method __init__ (line 208) | def __init__(self) -> None: ... method __copy__ (line 209) | def __copy__(self) -> None: ... method __init__ (line 211) | def __init__(cls, *args, **kwargs) -> None: ... class QScxmlInvokableService (line 213) | class QScxmlInvokableService(PySide2.QtCore.QObject): method __init__ (line 215) | def __init__(self, parentStateMachine: QScxmlStateMachine, parent: QSc... method id (line 216) | def id(self) -> str: ... method name (line 217) | def name(self) -> str: ... method parentStateMachine (line 218) | def parentStateMachine(self) -> QScxmlStateMachine: ... method postEvent (line 219) | def postEvent(self, event: QScxmlEvent) -> None: ... method start (line 220) | def start(self) -> bool: ... class QScxmlInvokableServiceFactory (line 222) | class QScxmlInvokableServiceFactory(PySide2.QtCore.QObject): method __init__ (line 224) | def __init__(self, invokeInfo: QScxmlExecutableContent.InvokeInfo, nam... method invoke (line 225) | def invoke(self, parentStateMachine: QScxmlStateMachine) -> QScxmlInvo... method invokeInfo (line 226) | def invokeInfo(self) -> QScxmlExecutableContent.InvokeInfo: ... method names (line 227) | def names(self) -> list[int]: ... method parameters (line 228) | def parameters(self) -> list[QScxmlExecutableContent.ParameterInfo]: ... class QScxmlNullDataModel (line 230) | class QScxmlNullDataModel(QScxmlDataModel): method __init__ (line 232) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method evaluateAssignment (line 233) | def evaluateAssignment(self, id: int) -> bool: ... method evaluateForeach (line 234) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 235) | def evaluateInitialization(self, id: int) -> bool: ... method evaluateToBool (line 236) | def evaluateToBool(self, id: int) -> tuple[bool, bool]: ... method evaluateToString (line 237) | def evaluateToString(self, id: int) -> tuple[str, bool]: ... method evaluateToVariant (line 238) | def evaluateToVariant(self, id: int) -> tuple[typing.Any, bool]: ... method evaluateToVoid (line 239) | def evaluateToVoid(self, id: int) -> bool: ... method hasScxmlProperty (line 240) | def hasScxmlProperty(self, name: str) -> bool: ... method scxmlProperty (line 241) | def scxmlProperty(self, name: str) -> typing.Any: ... method setScxmlEvent (line 242) | def setScxmlEvent(self, event: QScxmlEvent) -> None: ... method setScxmlProperty (line 243) | def setScxmlProperty(self, name: str, value: typing.Any, context: str)... method setup (line 244) | def setup(self, initialDataValues: dict[str, typing.Any]) -> bool: ... class QScxmlStateMachine (line 246) | class QScxmlStateMachine(PySide2.QtCore.QObject): method __init__ (line 258) | def __init__(self, metaObject: PySide2.QtCore.QMetaObject, parent: PyS... method activeStateNames (line 259) | def activeStateNames(self, compress: bool = ...) -> list[str]: ... method cancelDelayedEvent (line 260) | def cancelDelayedEvent(self, sendId: str) -> None: ... method connectToEvent (line 261) | def connectToEvent(self, scxmlEventSpec: str, receiver: PySide2.QtCore... method connectToState (line 262) | def connectToState(self, scxmlStateName: str, receiver: PySide2.QtCore... method dataModel (line 263) | def dataModel(self) -> QScxmlDataModel: ... method fromData (line 265) | def fromData(data: PySide2.QtCore.QIODevice, fileName: str = ...) -> Q... method fromFile (line 267) | def fromFile(fileName: str) -> QScxmlStateMachine: ... method init (line 268) | def init(self) -> bool: ... method initialValues (line 269) | def initialValues(self) -> dict[str, typing.Any]: ... method invokedServices (line 270) | def invokedServices(self) -> list[QScxmlInvokableService]: ... method isActive (line 272) | def isActive(self, stateIndex: int) -> bool: ... method isActive (line 274) | def isActive(self, scxmlStateName: str) -> bool: ... method isDispatchableTarget (line 275) | def isDispatchableTarget(self, target: str) -> bool: ... method isInitialized (line 276) | def isInitialized(self) -> bool: ... method isInvoked (line 277) | def isInvoked(self) -> bool: ... method isRunning (line 278) | def isRunning(self) -> bool: ... method loader (line 279) | def loader(self) -> QScxmlCompiler.Loader: ... method name (line 280) | def name(self) -> str: ... method parseErrors (line 281) | def parseErrors(self) -> list[QScxmlError]: ... method sessionId (line 282) | def sessionId(self) -> str: ... method setDataModel (line 283) | def setDataModel(self, model: QScxmlDataModel) -> None: ... method setInitialValues (line 284) | def setInitialValues(self, initialValues: dict[str, typing.Any]) -> No... method setLoader (line 285) | def setLoader(self, loader: QScxmlCompiler.Loader) -> None: ... method setRunning (line 286) | def setRunning(self, running: bool) -> None: ... method setTableData (line 287) | def setTableData(self, tableData: QScxmlTableData) -> None: ... method start (line 288) | def start(self) -> None: ... method stateNames (line 289) | def stateNames(self, compress: bool = ...) -> list[str]: ... method stop (line 290) | def stop(self) -> None: ... method submitEvent (line 292) | def submitEvent(self, eventName: str, data: typing.Any) -> None: ... method submitEvent (line 294) | def submitEvent(self, eventName: str) -> None: ... method submitEvent (line 296) | def submitEvent(self, event: QScxmlEvent) -> None: ... method tableData (line 297) | def tableData(self) -> QScxmlTableData: ... class QScxmlStaticScxmlServiceFactory (line 299) | class QScxmlStaticScxmlServiceFactory(QScxmlInvokableServiceFactory): method __init__ (line 301) | def __init__(self, metaObject: PySide2.QtCore.QMetaObject, invokeInfo:... method invoke (line 302) | def invoke(self, parentStateMachine: QScxmlStateMachine) -> QScxmlInvo... class QScxmlTableData (line 304) | class QScxmlTableData(shiboken2.Object): method __init__ (line 305) | def __init__(self) -> None: ... method assignmentInfo (line 306) | def assignmentInfo(self, assignmentId: int) -> QScxmlExecutableContent... method dataNames (line 307) | def dataNames(self) -> tuple[list[int], int]: ... method evaluatorInfo (line 308) | def evaluatorInfo(self, evaluatorId: int) -> QScxmlExecutableContent.E... method foreachInfo (line 309) | def foreachInfo(self, foreachId: int) -> QScxmlExecutableContent.Forea... method initialSetup (line 310) | def initialSetup(self) -> int: ... method instructions (line 311) | def instructions(self) -> list[int]: ... method name (line 312) | def name(self) -> str: ... method serviceFactory (line 313) | def serviceFactory(self, id: int) -> QScxmlInvokableServiceFactory: ... method stateMachineTable (line 314) | def stateMachineTable(self) -> list[int]: ... method string (line 315) | def string(self, id: int) -> str: ... FILE: pyside/stubs/PySide2-stubs/QtSensors.pyi class QAccelerometer (line 11) | class QAccelerometer(QSensor): class AccelerationMode (line 12) | class AccelerationMode: method __init__ (line 19) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 20) | def __add__(self, other: typing.SupportsInt) -> QAccelerometer.Accel... method __and__ (line 21) | def __and__(self, other: typing.SupportsInt) -> QAccelerometer.Accel... method __bool__ (line 22) | def __bool__(self) -> bool: ... method __eq__ (line 23) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 24) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 25) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 26) | def __hash__(self) -> int: ... method __index__ (line 27) | def __index__(self) -> int: ... method __int__ (line 28) | def __int__(self) -> int: ... method __le__ (line 29) | def __le__(self, other: object) -> bool: ... method __lt__ (line 30) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 31) | def __mul__(self, other: typing.SupportsInt) -> QAccelerometer.Accel... method __ne__ (line 32) | def __ne__(self, other: object) -> bool: ... method __or__ (line 33) | def __or__(self, other: typing.SupportsInt) -> QAccelerometer.Accele... method __pos__ (line 34) | def __pos__(self): ... method __radd__ (line 35) | def __radd__(self, other: typing.SupportsInt) -> QAccelerometer.Acce... method __rand__ (line 36) | def __rand__(self, other: typing.SupportsInt) -> QAccelerometer.Acce... method __rmul__ (line 37) | def __rmul__(self, other: typing.SupportsInt) -> QAccelerometer.Acce... method __ror__ (line 38) | def __ror__(self, other: typing.SupportsInt) -> QAccelerometer.Accel... method __rsub__ (line 39) | def __rsub__(self, other: typing.SupportsInt) -> QAccelerometer.Acce... method __rxor__ (line 40) | def __rxor__(self, other: typing.SupportsInt) -> QAccelerometer.Acce... method __sub__ (line 41) | def __sub__(self, other: typing.SupportsInt) -> QAccelerometer.Accel... method __xor__ (line 42) | def __xor__(self, other: typing.SupportsInt) -> QAccelerometer.Accel... method __init__ (line 49) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., accele... method accelerationMode (line 50) | def accelerationMode(self) -> QAccelerometer.AccelerationMode: ... method reading (line 51) | def reading(self) -> QAccelerometerReading: ... method setAccelerationMode (line 52) | def setAccelerationMode(self, accelerationMode: QAccelerometer.Acceler... class QAccelerometerFilter (line 54) | class QAccelerometerFilter(QSensorFilter): method __init__ (line 55) | def __init__(self) -> None: ... method filter (line 57) | def filter(self, reading: QAccelerometerReading) -> bool: ... method filter (line 59) | def filter(self, reading: QSensorReading) -> bool: ... class QAccelerometerReading (line 61) | class QAccelerometerReading(QSensorReading): method __init__ (line 63) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 64) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setX (line 65) | def setX(self, x: float) -> None: ... method setY (line 66) | def setY(self, y: float) -> None: ... method setZ (line 67) | def setZ(self, z: float) -> None: ... method x (line 68) | def x(self) -> float: ... method y (line 69) | def y(self) -> float: ... method z (line 70) | def z(self) -> float: ... class QAltimeter (line 72) | class QAltimeter(QSensor): method __init__ (line 75) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 76) | def reading(self) -> QAltimeterReading: ... class QAltimeterFilter (line 78) | class QAltimeterFilter(QSensorFilter): method __init__ (line 79) | def __init__(self) -> None: ... method filter (line 81) | def filter(self, reading: QAltimeterReading) -> bool: ... method filter (line 83) | def filter(self, reading: QSensorReading) -> bool: ... class QAltimeterReading (line 85) | class QAltimeterReading(QSensorReading): method __init__ (line 87) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method altitude (line 88) | def altitude(self) -> float: ... method copyValuesFrom (line 89) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setAltitude (line 90) | def setAltitude(self, altitude: float) -> None: ... class QAmbientLightFilter (line 92) | class QAmbientLightFilter(QSensorFilter): method __init__ (line 93) | def __init__(self) -> None: ... method filter (line 95) | def filter(self, reading: QAmbientLightReading) -> bool: ... method filter (line 97) | def filter(self, reading: QSensorReading) -> bool: ... class QAmbientLightReading (line 99) | class QAmbientLightReading(QSensorReading): class LightLevel (line 100) | class LightLevel: method __init__ (line 110) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 111) | def __add__(self, other: typing.SupportsInt) -> QAmbientLightReading... method __and__ (line 112) | def __and__(self, other: typing.SupportsInt) -> QAmbientLightReading... method __bool__ (line 113) | def __bool__(self) -> bool: ... method __eq__ (line 114) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 115) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 116) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 117) | def __hash__(self) -> int: ... method __index__ (line 118) | def __index__(self) -> int: ... method __int__ (line 119) | def __int__(self) -> int: ... method __le__ (line 120) | def __le__(self, other: object) -> bool: ... method __lt__ (line 121) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 122) | def __mul__(self, other: typing.SupportsInt) -> QAmbientLightReading... method __ne__ (line 123) | def __ne__(self, other: object) -> bool: ... method __or__ (line 124) | def __or__(self, other: typing.SupportsInt) -> QAmbientLightReading.... method __pos__ (line 125) | def __pos__(self): ... method __radd__ (line 126) | def __radd__(self, other: typing.SupportsInt) -> QAmbientLightReadin... method __rand__ (line 127) | def __rand__(self, other: typing.SupportsInt) -> QAmbientLightReadin... method __rmul__ (line 128) | def __rmul__(self, other: typing.SupportsInt) -> QAmbientLightReadin... method __ror__ (line 129) | def __ror__(self, other: typing.SupportsInt) -> QAmbientLightReading... method __rsub__ (line 130) | def __rsub__(self, other: typing.SupportsInt) -> QAmbientLightReadin... method __rxor__ (line 131) | def __rxor__(self, other: typing.SupportsInt) -> QAmbientLightReadin... method __sub__ (line 132) | def __sub__(self, other: typing.SupportsInt) -> QAmbientLightReading... method __xor__ (line 133) | def __xor__(self, other: typing.SupportsInt) -> QAmbientLightReading... method __init__ (line 141) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 142) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method lightLevel (line 143) | def lightLevel(self) -> QAmbientLightReading.LightLevel: ... method setLightLevel (line 144) | def setLightLevel(self, lightLevel: QAmbientLightReading.LightLevel) -... class QAmbientLightSensor (line 146) | class QAmbientLightSensor(QSensor): method __init__ (line 149) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 150) | def reading(self) -> QAmbientLightReading: ... class QAmbientTemperatureFilter (line 152) | class QAmbientTemperatureFilter(QSensorFilter): method __init__ (line 153) | def __init__(self) -> None: ... method filter (line 155) | def filter(self, reading: QAmbientTemperatureReading) -> bool: ... method filter (line 157) | def filter(self, reading: QSensorReading) -> bool: ... class QAmbientTemperatureReading (line 159) | class QAmbientTemperatureReading(QSensorReading): method __init__ (line 161) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 162) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setTemperature (line 163) | def setTemperature(self, temperature: float) -> None: ... method temperature (line 164) | def temperature(self) -> float: ... class QAmbientTemperatureSensor (line 166) | class QAmbientTemperatureSensor(QSensor): method __init__ (line 169) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 170) | def reading(self) -> QAmbientTemperatureReading: ... class QCompass (line 172) | class QCompass(QSensor): method __init__ (line 175) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 176) | def reading(self) -> QCompassReading: ... class QCompassFilter (line 178) | class QCompassFilter(QSensorFilter): method __init__ (line 179) | def __init__(self) -> None: ... method filter (line 181) | def filter(self, reading: QCompassReading) -> bool: ... method filter (line 183) | def filter(self, reading: QSensorReading) -> bool: ... class QCompassReading (line 185) | class QCompassReading(QSensorReading): method __init__ (line 187) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method azimuth (line 188) | def azimuth(self) -> float: ... method calibrationLevel (line 189) | def calibrationLevel(self) -> float: ... method copyValuesFrom (line 190) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setAzimuth (line 191) | def setAzimuth(self, azimuth: float) -> None: ... method setCalibrationLevel (line 192) | def setCalibrationLevel(self, calibrationLevel: float) -> None: ... class QDistanceFilter (line 194) | class QDistanceFilter(QSensorFilter): method __init__ (line 195) | def __init__(self) -> None: ... method filter (line 197) | def filter(self, reading: QDistanceReading) -> bool: ... method filter (line 199) | def filter(self, reading: QSensorReading) -> bool: ... class QDistanceReading (line 201) | class QDistanceReading(QSensorReading): method __init__ (line 203) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 204) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method distance (line 205) | def distance(self) -> float: ... method setDistance (line 206) | def setDistance(self, distance: float) -> None: ... class QDistanceSensor (line 208) | class QDistanceSensor(QSensor): method __init__ (line 211) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 212) | def reading(self) -> QDistanceReading: ... class QGyroscope (line 214) | class QGyroscope(QSensor): method __init__ (line 217) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 218) | def reading(self) -> QGyroscopeReading: ... class QGyroscopeFilter (line 220) | class QGyroscopeFilter(QSensorFilter): method __init__ (line 221) | def __init__(self) -> None: ... method filter (line 223) | def filter(self, reading: QGyroscopeReading) -> bool: ... method filter (line 225) | def filter(self, reading: QSensorReading) -> bool: ... class QGyroscopeReading (line 227) | class QGyroscopeReading(QSensorReading): method __init__ (line 229) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 230) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setX (line 231) | def setX(self, x: float) -> None: ... method setY (line 232) | def setY(self, y: float) -> None: ... method setZ (line 233) | def setZ(self, z: float) -> None: ... method x (line 234) | def x(self) -> float: ... method y (line 235) | def y(self) -> float: ... method z (line 236) | def z(self) -> float: ... class QHolsterFilter (line 238) | class QHolsterFilter(QSensorFilter): method __init__ (line 239) | def __init__(self) -> None: ... method filter (line 241) | def filter(self, reading: QHolsterReading) -> bool: ... method filter (line 243) | def filter(self, reading: QSensorReading) -> bool: ... class QHolsterReading (line 245) | class QHolsterReading(QSensorReading): method __init__ (line 247) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 248) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method holstered (line 249) | def holstered(self) -> bool: ... method setHolstered (line 250) | def setHolstered(self, holstered: bool) -> None: ... class QHolsterSensor (line 252) | class QHolsterSensor(QSensor): method __init__ (line 255) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 256) | def reading(self) -> QHolsterReading: ... class QHumidityFilter (line 258) | class QHumidityFilter(QSensorFilter): method __init__ (line 259) | def __init__(self) -> None: ... method filter (line 261) | def filter(self, reading: QHumidityReading) -> bool: ... method filter (line 263) | def filter(self, reading: QSensorReading) -> bool: ... class QHumidityReading (line 265) | class QHumidityReading(QSensorReading): method __init__ (line 267) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method absoluteHumidity (line 268) | def absoluteHumidity(self) -> float: ... method copyValuesFrom (line 269) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method relativeHumidity (line 270) | def relativeHumidity(self) -> float: ... method setAbsoluteHumidity (line 271) | def setAbsoluteHumidity(self, value: float) -> None: ... method setRelativeHumidity (line 272) | def setRelativeHumidity(self, percent: float) -> None: ... class QHumiditySensor (line 274) | class QHumiditySensor(QSensor): method __init__ (line 277) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 278) | def reading(self) -> QHumidityReading: ... class QIRProximityFilter (line 280) | class QIRProximityFilter(QSensorFilter): method __init__ (line 281) | def __init__(self) -> None: ... method filter (line 283) | def filter(self, reading: QIRProximityReading) -> bool: ... method filter (line 285) | def filter(self, reading: QSensorReading) -> bool: ... class QIRProximityReading (line 287) | class QIRProximityReading(QSensorReading): method __init__ (line 289) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 290) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method reflectance (line 291) | def reflectance(self) -> float: ... method setReflectance (line 292) | def setReflectance(self, reflectance: float) -> None: ... class QIRProximitySensor (line 294) | class QIRProximitySensor(QSensor): method __init__ (line 297) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 298) | def reading(self) -> QIRProximityReading: ... class QLidFilter (line 300) | class QLidFilter(QSensorFilter): method __init__ (line 301) | def __init__(self) -> None: ... method filter (line 303) | def filter(self, reading: QLidReading) -> bool: ... method filter (line 305) | def filter(self, reading: QSensorReading) -> bool: ... class QLidReading (line 307) | class QLidReading(QSensorReading): method __init__ (line 311) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method backLidClosed (line 312) | def backLidClosed(self) -> bool: ... method copyValuesFrom (line 313) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method frontLidClosed (line 314) | def frontLidClosed(self) -> bool: ... method setBackLidClosed (line 315) | def setBackLidClosed(self, closed: bool) -> None: ... method setFrontLidClosed (line 316) | def setFrontLidClosed(self, closed: bool) -> None: ... class QLidSensor (line 318) | class QLidSensor(QSensor): method __init__ (line 321) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 322) | def reading(self) -> QLidReading: ... class QLightFilter (line 324) | class QLightFilter(QSensorFilter): method __init__ (line 325) | def __init__(self) -> None: ... method filter (line 327) | def filter(self, reading: QLightReading) -> bool: ... method filter (line 329) | def filter(self, reading: QSensorReading) -> bool: ... class QLightReading (line 331) | class QLightReading(QSensorReading): method __init__ (line 333) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 334) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method lux (line 335) | def lux(self) -> float: ... method setLux (line 336) | def setLux(self, lux: float) -> None: ... class QLightSensor (line 338) | class QLightSensor(QSensor): method __init__ (line 342) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method fieldOfView (line 343) | def fieldOfView(self) -> float: ... method reading (line 344) | def reading(self) -> QLightReading: ... method setFieldOfView (line 345) | def setFieldOfView(self, fieldOfView: float) -> None: ... class QMagnetometer (line 347) | class QMagnetometer(QSensor): method __init__ (line 351) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 352) | def reading(self) -> QMagnetometerReading: ... method returnGeoValues (line 353) | def returnGeoValues(self) -> bool: ... method setReturnGeoValues (line 354) | def setReturnGeoValues(self, returnGeoValues: bool) -> None: ... class QMagnetometerFilter (line 356) | class QMagnetometerFilter(QSensorFilter): method __init__ (line 357) | def __init__(self) -> None: ... method filter (line 359) | def filter(self, reading: QMagnetometerReading) -> bool: ... method filter (line 361) | def filter(self, reading: QSensorReading) -> bool: ... class QMagnetometerReading (line 363) | class QMagnetometerReading(QSensorReading): method __init__ (line 365) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method calibrationLevel (line 366) | def calibrationLevel(self) -> float: ... method copyValuesFrom (line 367) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setCalibrationLevel (line 368) | def setCalibrationLevel(self, calibrationLevel: float) -> None: ... method setX (line 369) | def setX(self, x: float) -> None: ... method setY (line 370) | def setY(self, y: float) -> None: ... method setZ (line 371) | def setZ(self, z: float) -> None: ... method x (line 372) | def x(self) -> float: ... method y (line 373) | def y(self) -> float: ... method z (line 374) | def z(self) -> float: ... class QOrientationFilter (line 376) | class QOrientationFilter(QSensorFilter): method __init__ (line 377) | def __init__(self) -> None: ... method filter (line 379) | def filter(self, reading: QOrientationReading) -> bool: ... method filter (line 381) | def filter(self, reading: QSensorReading) -> bool: ... class QOrientationReading (line 383) | class QOrientationReading(QSensorReading): class Orientation (line 384) | class Orientation: method __init__ (line 395) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 396) | def __add__(self, other: typing.SupportsInt) -> QOrientationReading.... method __and__ (line 397) | def __and__(self, other: typing.SupportsInt) -> QOrientationReading.... method __bool__ (line 398) | def __bool__(self) -> bool: ... method __eq__ (line 399) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 400) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 401) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 402) | def __hash__(self) -> int: ... method __index__ (line 403) | def __index__(self) -> int: ... method __int__ (line 404) | def __int__(self) -> int: ... method __le__ (line 405) | def __le__(self, other: object) -> bool: ... method __lt__ (line 406) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 407) | def __mul__(self, other: typing.SupportsInt) -> QOrientationReading.... method __ne__ (line 408) | def __ne__(self, other: object) -> bool: ... method __or__ (line 409) | def __or__(self, other: typing.SupportsInt) -> QOrientationReading.O... method __pos__ (line 410) | def __pos__(self): ... method __radd__ (line 411) | def __radd__(self, other: typing.SupportsInt) -> QOrientationReading... method __rand__ (line 412) | def __rand__(self, other: typing.SupportsInt) -> QOrientationReading... method __rmul__ (line 413) | def __rmul__(self, other: typing.SupportsInt) -> QOrientationReading... method __ror__ (line 414) | def __ror__(self, other: typing.SupportsInt) -> QOrientationReading.... method __rsub__ (line 415) | def __rsub__(self, other: typing.SupportsInt) -> QOrientationReading... method __rxor__ (line 416) | def __rxor__(self, other: typing.SupportsInt) -> QOrientationReading... method __sub__ (line 417) | def __sub__(self, other: typing.SupportsInt) -> QOrientationReading.... method __xor__ (line 418) | def __xor__(self, other: typing.SupportsInt) -> QOrientationReading.... method __init__ (line 427) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 428) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method orientation (line 429) | def orientation(self) -> QOrientationReading.Orientation: ... method setOrientation (line 430) | def setOrientation(self, orientation: QOrientationReading.Orientation)... class QOrientationSensor (line 432) | class QOrientationSensor(QSensor): method __init__ (line 435) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 436) | def reading(self) -> QOrientationReading: ... class QPressureFilter (line 438) | class QPressureFilter(QSensorFilter): method __init__ (line 439) | def __init__(self) -> None: ... method filter (line 441) | def filter(self, reading: QPressureReading) -> bool: ... method filter (line 443) | def filter(self, reading: QSensorReading) -> bool: ... class QPressureReading (line 445) | class QPressureReading(QSensorReading): method __init__ (line 447) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 448) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method pressure (line 449) | def pressure(self) -> float: ... method setPressure (line 450) | def setPressure(self, pressure: float) -> None: ... method setTemperature (line 451) | def setTemperature(self, temperature: float) -> None: ... method temperature (line 452) | def temperature(self) -> float: ... class QPressureSensor (line 454) | class QPressureSensor(QSensor): method __init__ (line 457) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 458) | def reading(self) -> QPressureReading: ... class QProximityFilter (line 460) | class QProximityFilter(QSensorFilter): method __init__ (line 461) | def __init__(self) -> None: ... method filter (line 463) | def filter(self, reading: QProximityReading) -> bool: ... method filter (line 465) | def filter(self, reading: QSensorReading) -> bool: ... class QProximityReading (line 467) | class QProximityReading(QSensorReading): method __init__ (line 469) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method close (line 470) | def close(self) -> bool: ... method copyValuesFrom (line 471) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setClose (line 472) | def setClose(self, close: bool) -> None: ... class QProximitySensor (line 474) | class QProximitySensor(QSensor): method __init__ (line 477) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 478) | def reading(self) -> QProximityReading: ... class QRotationFilter (line 480) | class QRotationFilter(QSensorFilter): method __init__ (line 481) | def __init__(self) -> None: ... method filter (line 483) | def filter(self, reading: QRotationReading) -> bool: ... method filter (line 485) | def filter(self, reading: QSensorReading) -> bool: ... class QRotationReading (line 487) | class QRotationReading(QSensorReading): method __init__ (line 489) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 490) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setFromEuler (line 491) | def setFromEuler(self, x: float, y: float, z: float) -> None: ... method x (line 492) | def x(self) -> float: ... method y (line 493) | def y(self) -> float: ... method z (line 494) | def z(self) -> float: ... class QRotationSensor (line 496) | class QRotationSensor(QSensor): method __init__ (line 500) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method hasZ (line 501) | def hasZ(self) -> bool: ... method reading (line 502) | def reading(self) -> QRotationReading: ... method setHasZ (line 503) | def setHasZ(self, hasZ: bool) -> None: ... class QSensor (line 505) | class QSensor(PySide2.QtCore.QObject): class AxesOrientationMode (line 506) | class AxesOrientationMode: method __init__ (line 513) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 514) | def __add__(self, other: typing.SupportsInt) -> QSensor.AxesOrientat... method __and__ (line 515) | def __and__(self, other: typing.SupportsInt) -> QSensor.AxesOrientat... method __bool__ (line 516) | def __bool__(self) -> bool: ... method __eq__ (line 517) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 518) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 519) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 520) | def __hash__(self) -> int: ... method __index__ (line 521) | def __index__(self) -> int: ... method __int__ (line 522) | def __int__(self) -> int: ... method __le__ (line 523) | def __le__(self, other: object) -> bool: ... method __lt__ (line 524) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 525) | def __mul__(self, other: typing.SupportsInt) -> QSensor.AxesOrientat... method __ne__ (line 526) | def __ne__(self, other: object) -> bool: ... method __or__ (line 527) | def __or__(self, other: typing.SupportsInt) -> QSensor.AxesOrientati... method __pos__ (line 528) | def __pos__(self): ... method __radd__ (line 529) | def __radd__(self, other: typing.SupportsInt) -> QSensor.AxesOrienta... method __rand__ (line 530) | def __rand__(self, other: typing.SupportsInt) -> QSensor.AxesOrienta... method __rmul__ (line 531) | def __rmul__(self, other: typing.SupportsInt) -> QSensor.AxesOrienta... method __ror__ (line 532) | def __ror__(self, other: typing.SupportsInt) -> QSensor.AxesOrientat... method __rsub__ (line 533) | def __rsub__(self, other: typing.SupportsInt) -> QSensor.AxesOrienta... method __rxor__ (line 534) | def __rxor__(self, other: typing.SupportsInt) -> QSensor.AxesOrienta... method __sub__ (line 535) | def __sub__(self, other: typing.SupportsInt) -> QSensor.AxesOrientat... method __xor__ (line 536) | def __xor__(self, other: typing.SupportsInt) -> QSensor.AxesOrientat... class Feature (line 538) | class Feature: method __init__ (line 551) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 552) | def __add__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __and__ (line 553) | def __and__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __bool__ (line 554) | def __bool__(self) -> bool: ... method __eq__ (line 555) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 556) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 557) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 558) | def __hash__(self) -> int: ... method __index__ (line 559) | def __index__(self) -> int: ... method __int__ (line 560) | def __int__(self) -> int: ... method __le__ (line 561) | def __le__(self, other: object) -> bool: ... method __lt__ (line 562) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 563) | def __mul__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __ne__ (line 564) | def __ne__(self, other: object) -> bool: ... method __or__ (line 565) | def __or__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __pos__ (line 566) | def __pos__(self): ... method __radd__ (line 567) | def __radd__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __rand__ (line 568) | def __rand__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __rmul__ (line 569) | def __rmul__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __ror__ (line 570) | def __ror__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __rsub__ (line 571) | def __rsub__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __rxor__ (line 572) | def __rxor__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __sub__ (line 573) | def __sub__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __xor__ (line 574) | def __xor__(self, other: typing.SupportsInt) -> QSensor.Feature: ... method __init__ (line 602) | def __init__(self, type: PySide2.QtCore.QByteArray | bytes, parent: Py... method addFilter (line 603) | def addFilter(self, filter: QSensorFilter) -> None: ... method availableDataRates (line 604) | def availableDataRates(self) -> list[tuple[int, int]]: ... method axesOrientationMode (line 605) | def axesOrientationMode(self) -> QSensor.AxesOrientationMode: ... method backend (line 606) | def backend(self) -> QSensorBackend: ... method bufferSize (line 607) | def bufferSize(self) -> int: ... method connectToBackend (line 608) | def connectToBackend(self) -> bool: ... method currentOrientation (line 609) | def currentOrientation(self) -> int: ... method dataRate (line 610) | def dataRate(self) -> int: ... method defaultSensorForType (line 612) | def defaultSensorForType(type: PySide2.QtCore.QByteArray | bytes) -> P... method description (line 613) | def description(self) -> str: ... method efficientBufferSize (line 614) | def efficientBufferSize(self) -> int: ... method error (line 615) | def error(self) -> int: ... method filters (line 616) | def filters(self) -> list[QSensorFilter]: ... method identifier (line 617) | def identifier(self) -> PySide2.QtCore.QByteArray: ... method isActive (line 618) | def isActive(self) -> bool: ... method isAlwaysOn (line 619) | def isAlwaysOn(self) -> bool: ... method isBusy (line 620) | def isBusy(self) -> bool: ... method isConnectedToBackend (line 621) | def isConnectedToBackend(self) -> bool: ... method isFeatureSupported (line 622) | def isFeatureSupported(self, feature: QSensor.Feature) -> bool: ... method maxBufferSize (line 623) | def maxBufferSize(self) -> int: ... method outputRange (line 624) | def outputRange(self) -> int: ... method outputRanges (line 625) | def outputRanges(self) -> list[qoutputrange]: ... method reading (line 626) | def reading(self) -> QSensorReading: ... method removeFilter (line 627) | def removeFilter(self, filter: QSensorFilter) -> None: ... method sensorTypes (line 629) | def sensorTypes() -> list[PySide2.QtCore.QByteArray]: ... method sensorsForType (line 631) | def sensorsForType(type: PySide2.QtCore.QByteArray | bytes) -> list[Py... method setActive (line 632) | def setActive(self, active: bool) -> None: ... method setAlwaysOn (line 633) | def setAlwaysOn(self, alwaysOn: bool) -> None: ... method setAxesOrientationMode (line 634) | def setAxesOrientationMode(self, axesOrientationMode: QSensor.AxesOrie... method setBufferSize (line 635) | def setBufferSize(self, bufferSize: int) -> None: ... method setCurrentOrientation (line 636) | def setCurrentOrientation(self, currentOrientation: int) -> None: ... method setDataRate (line 637) | def setDataRate(self, rate: int) -> None: ... method setEfficientBufferSize (line 638) | def setEfficientBufferSize(self, efficientBufferSize: int) -> None: ... method setIdentifier (line 639) | def setIdentifier(self, identifier: PySide2.QtCore.QByteArray | bytes)... method setMaxBufferSize (line 640) | def setMaxBufferSize(self, maxBufferSize: int) -> None: ... method setOutputRange (line 641) | def setOutputRange(self, index: int) -> None: ... method setSkipDuplicates (line 642) | def setSkipDuplicates(self, skipDuplicates: bool) -> None: ... method setUserOrientation (line 643) | def setUserOrientation(self, userOrientation: int) -> None: ... method skipDuplicates (line 644) | def skipDuplicates(self) -> bool: ... method start (line 645) | def start(self) -> bool: ... method stop (line 646) | def stop(self) -> None: ... method type (line 647) | def type(self) -> PySide2.QtCore.QByteArray: ... method userOrientation (line 648) | def userOrientation(self) -> int: ... class QSensorBackend (line 650) | class QSensorBackend(PySide2.QtCore.QObject): method __init__ (line 652) | def __init__(self, sensor: QSensor, parent: PySide2.QtCore.QObject | N... method addDataRate (line 653) | def addDataRate(self, min: float, max: float) -> None: ... method addOutputRange (line 654) | def addOutputRange(self, min: float, max: float, accuracy: float) -> N... method isFeatureSupported (line 655) | def isFeatureSupported(self, feature: QSensor.Feature) -> bool: ... method newReadingAvailable (line 656) | def newReadingAvailable(self) -> None: ... method reading (line 657) | def reading(self) -> QSensorReading: ... method sensor (line 658) | def sensor(self) -> QSensor: ... method sensorBusy (line 659) | def sensorBusy(self) -> None: ... method sensorError (line 660) | def sensorError(self, error: int) -> None: ... method sensorStopped (line 661) | def sensorStopped(self) -> None: ... method setDataRates (line 662) | def setDataRates(self, otherSensor: QSensor) -> None: ... method setDescription (line 663) | def setDescription(self, description: str) -> None: ... method start (line 664) | def start(self) -> None: ... method stop (line 665) | def stop(self) -> None: ... class QSensorBackendFactory (line 667) | class QSensorBackendFactory(shiboken2.Object): method __init__ (line 668) | def __init__(self) -> None: ... method createBackend (line 669) | def createBackend(self, sensor: QSensor) -> QSensorBackend: ... class QSensorChangesInterface (line 671) | class QSensorChangesInterface(shiboken2.Object): method __init__ (line 672) | def __init__(self) -> None: ... method sensorsChanged (line 673) | def sensorsChanged(self) -> None: ... class QSensorFilter (line 675) | class QSensorFilter(shiboken2.Object): method __init__ (line 677) | def __init__(self) -> None: ... method filter (line 678) | def filter(self, reading: QSensorReading) -> bool: ... method setSensor (line 679) | def setSensor(self, sensor: QSensor) -> None: ... class QSensorGestureManager (line 681) | class QSensorGestureManager(PySide2.QtCore.QObject): method __init__ (line 684) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method gestureIds (line 685) | def gestureIds(self) -> list[str]: ... method recognizerSignals (line 686) | def recognizerSignals(self, recognizerId: str) -> list[str]: ... method registerSensorGestureRecognizer (line 687) | def registerSensorGestureRecognizer(self, recognizer: QSensorGestureRe... method sensorGestureRecognizer (line 689) | def sensorGestureRecognizer(id: str) -> QSensorGestureRecognizer: ... class QSensorGesturePluginInterface (line 691) | class QSensorGesturePluginInterface(shiboken2.Object): method __init__ (line 692) | def __init__(self) -> None: ... method createRecognizers (line 693) | def createRecognizers(self) -> list[QSensorGestureRecognizer]: ... method name (line 694) | def name(self) -> str: ... method supportedIds (line 695) | def supportedIds(self) -> list[str]: ... class QSensorGestureRecognizer (line 697) | class QSensorGestureRecognizer(PySide2.QtCore.QObject): method __init__ (line 700) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method create (line 701) | def create(self) -> None: ... method createBackend (line 702) | def createBackend(self) -> None: ... method gestureSignals (line 703) | def gestureSignals(self) -> list[str]: ... method id (line 704) | def id(self) -> str: ... method isActive (line 705) | def isActive(self) -> bool: ... method start (line 706) | def start(self) -> bool: ... method startBackend (line 707) | def startBackend(self) -> None: ... method stop (line 708) | def stop(self) -> bool: ... method stopBackend (line 709) | def stopBackend(self) -> None: ... class QSensorManager (line 711) | class QSensorManager(shiboken2.Object): method __init__ (line 712) | def __init__(self) -> None: ... method createBackend (line 714) | def createBackend(sensor: QSensor) -> QSensorBackend: ... method isBackendRegistered (line 716) | def isBackendRegistered(type: PySide2.QtCore.QByteArray | bytes, ident... method registerBackend (line 718) | def registerBackend(type: PySide2.QtCore.QByteArray | bytes, identifie... method setDefaultBackend (line 720) | def setDefaultBackend(type: PySide2.QtCore.QByteArray | bytes, identif... method unregisterBackend (line 722) | def unregisterBackend(type: PySide2.QtCore.QByteArray | bytes, identif... class QSensorPluginInterface (line 724) | class QSensorPluginInterface(shiboken2.Object): method __init__ (line 725) | def __init__(self) -> None: ... method registerSensors (line 726) | def registerSensors(self) -> None: ... class QSensorReading (line 728) | class QSensorReading(PySide2.QtCore.QObject): method __init__ (line 731) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method copyValuesFrom (line 732) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setTimestamp (line 733) | def setTimestamp(self, timestamp: int) -> None: ... method timestamp (line 734) | def timestamp(self) -> int: ... method value (line 735) | def value(self, index: int) -> typing.Any: ... method valueCount (line 736) | def valueCount(self) -> int: ... class QTapFilter (line 738) | class QTapFilter(QSensorFilter): method __init__ (line 739) | def __init__(self) -> None: ... method filter (line 741) | def filter(self, reading: QSensorReading) -> bool: ... method filter (line 743) | def filter(self, reading: QTapReading) -> bool: ... # type: ignore[ov... class QTapReading (line 745) | class QTapReading(QSensorReading): class TapDirection (line 746) | class TapDirection: method __init__ (line 763) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 764) | def __add__(self, other: typing.SupportsInt) -> QTapReading.TapDirec... method __and__ (line 765) | def __and__(self, other: typing.SupportsInt) -> QTapReading.TapDirec... method __bool__ (line 766) | def __bool__(self) -> bool: ... method __eq__ (line 767) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 768) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 769) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 770) | def __hash__(self) -> int: ... method __index__ (line 771) | def __index__(self) -> int: ... method __int__ (line 772) | def __int__(self) -> int: ... method __le__ (line 773) | def __le__(self, other: object) -> bool: ... method __lt__ (line 774) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 775) | def __mul__(self, other: typing.SupportsInt) -> QTapReading.TapDirec... method __ne__ (line 776) | def __ne__(self, other: object) -> bool: ... method __or__ (line 777) | def __or__(self, other: typing.SupportsInt) -> QTapReading.TapDirect... method __pos__ (line 778) | def __pos__(self): ... method __radd__ (line 779) | def __radd__(self, other: typing.SupportsInt) -> QTapReading.TapDire... method __rand__ (line 780) | def __rand__(self, other: typing.SupportsInt) -> QTapReading.TapDire... method __rmul__ (line 781) | def __rmul__(self, other: typing.SupportsInt) -> QTapReading.TapDire... method __ror__ (line 782) | def __ror__(self, other: typing.SupportsInt) -> QTapReading.TapDirec... method __rsub__ (line 783) | def __rsub__(self, other: typing.SupportsInt) -> QTapReading.TapDire... method __rxor__ (line 784) | def __rxor__(self, other: typing.SupportsInt) -> QTapReading.TapDire... method __sub__ (line 785) | def __sub__(self, other: typing.SupportsInt) -> QTapReading.TapDirec... method __xor__ (line 786) | def __xor__(self, other: typing.SupportsInt) -> QTapReading.TapDirec... method __init__ (line 801) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 802) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method isDoubleTap (line 803) | def isDoubleTap(self) -> bool: ... method setDoubleTap (line 804) | def setDoubleTap(self, doubleTap: bool) -> None: ... method setTapDirection (line 805) | def setTapDirection(self, tapDirection: QTapReading.TapDirection) -> N... method tapDirection (line 806) | def tapDirection(self) -> QTapReading.TapDirection: ... class QTapSensor (line 808) | class QTapSensor(QSensor): method __init__ (line 812) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method reading (line 813) | def reading(self) -> QTapReading: ... method returnDoubleTapEvents (line 814) | def returnDoubleTapEvents(self) -> bool: ... method setReturnDoubleTapEvents (line 815) | def setReturnDoubleTapEvents(self, returnDoubleTapEvents: bool) -> Non... class QTiltFilter (line 817) | class QTiltFilter(QSensorFilter): method __init__ (line 818) | def __init__(self) -> None: ... method filter (line 820) | def filter(self, reading: QSensorReading) -> bool: ... method filter (line 822) | def filter(self, reading: QTiltReading) -> bool: ... # type: ignore[o... class QTiltReading (line 824) | class QTiltReading(QSensorReading): method __init__ (line 826) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method copyValuesFrom (line 827) | def copyValuesFrom(self, other: QSensorReading) -> None: ... method setXRotation (line 828) | def setXRotation(self, x: float) -> None: ... method setYRotation (line 829) | def setYRotation(self, y: float) -> None: ... method xRotation (line 830) | def xRotation(self) -> float: ... method yRotation (line 831) | def yRotation(self) -> float: ... class QTiltSensor (line 833) | class QTiltSensor(QSensor): method __init__ (line 836) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method calibrate (line 837) | def calibrate(self) -> None: ... method reading (line 838) | def reading(self) -> QTiltReading: ... class qoutputrange (line 840) | class qoutputrange(shiboken2.Object): method __init__ (line 845) | def __init__(self, qoutputrange: qoutputrange) -> None: ... method __init__ (line 847) | def __init__(self) -> None: ... method __copy__ (line 848) | def __copy__(self) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtSerialPort.pyi class QSerialPort (line 11) | class QSerialPort(PySide2.QtCore.QIODevice): class BaudRate (line 12) | class BaudRate: method __init__ (line 25) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 26) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate... method __and__ (line 27) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate... method __bool__ (line 28) | def __bool__(self) -> bool: ... method __eq__ (line 29) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 30) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 31) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 32) | def __hash__(self) -> int: ... method __index__ (line 33) | def __index__(self) -> int: ... method __int__ (line 34) | def __int__(self) -> int: ... method __le__ (line 35) | def __le__(self, other: object) -> bool: ... method __lt__ (line 36) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 37) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate... method __ne__ (line 38) | def __ne__(self, other: object) -> bool: ... method __or__ (line 39) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate:... method __pos__ (line 40) | def __pos__(self): ... method __radd__ (line 41) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.BaudRat... method __rand__ (line 42) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.BaudRat... method __rmul__ (line 43) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.BaudRat... method __ror__ (line 44) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate... method __rsub__ (line 45) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.BaudRat... method __rxor__ (line 46) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.BaudRat... method __sub__ (line 47) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate... method __xor__ (line 48) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.BaudRate... class DataBits (line 50) | class DataBits: method __init__ (line 59) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 60) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.DataBits... method __and__ (line 61) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.DataBits... method __bool__ (line 62) | def __bool__(self) -> bool: ... method __eq__ (line 63) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 64) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 65) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 66) | def __hash__(self) -> int: ... method __index__ (line 67) | def __index__(self) -> int: ... method __int__ (line 68) | def __int__(self) -> int: ... method __le__ (line 69) | def __le__(self, other: object) -> bool: ... method __lt__ (line 70) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 71) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.DataBits... method __ne__ (line 72) | def __ne__(self, other: object) -> bool: ... method __or__ (line 73) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.DataBits:... method __pos__ (line 74) | def __pos__(self): ... method __radd__ (line 75) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.DataBit... method __rand__ (line 76) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.DataBit... method __rmul__ (line 77) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.DataBit... method __ror__ (line 78) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.DataBits... method __rsub__ (line 79) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.DataBit... method __rxor__ (line 80) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.DataBit... method __sub__ (line 81) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.DataBits... method __xor__ (line 82) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.DataBits... class DataErrorPolicy (line 84) | class DataErrorPolicy: method __init__ (line 93) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 94) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.DataErro... method __and__ (line 95) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.DataErro... method __bool__ (line 96) | def __bool__(self) -> bool: ... method __eq__ (line 97) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 98) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 99) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 100) | def __hash__(self) -> int: ... method __index__ (line 101) | def __index__(self) -> int: ... method __int__ (line 102) | def __int__(self) -> int: ... method __le__ (line 103) | def __le__(self, other: object) -> bool: ... method __lt__ (line 104) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 105) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.DataErro... method __ne__ (line 106) | def __ne__(self, other: object) -> bool: ... method __or__ (line 107) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.DataError... method __pos__ (line 108) | def __pos__(self): ... method __radd__ (line 109) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.DataErr... method __rand__ (line 110) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.DataErr... method __rmul__ (line 111) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.DataErr... method __ror__ (line 112) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.DataErro... method __rsub__ (line 113) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.DataErr... method __rxor__ (line 114) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.DataErr... method __sub__ (line 115) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.DataErro... method __xor__ (line 116) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.DataErro... class Direction (line 118) | class Direction: method __init__ (line 125) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 126) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.Directio... method __bool__ (line 127) | def __bool__(self) -> bool: ... method __eq__ (line 128) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 129) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 130) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 131) | def __hash__(self) -> int: ... method __index__ (line 132) | def __index__(self) -> int: ... method __int__ (line 133) | def __int__(self) -> int: ... method __invert__ (line 134) | def __invert__(self) -> QSerialPort.Directions: ... method __le__ (line 135) | def __le__(self, other: object) -> bool: ... method __lt__ (line 136) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 137) | def __ne__(self, other: object) -> bool: ... method __or__ (line 138) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.Direction... method __rand__ (line 139) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.Directi... method __ror__ (line 140) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.Directio... method __rxor__ (line 141) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.Directi... method __xor__ (line 142) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.Directio... class Directions (line 144) | class Directions: method __init__ (line 146) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 147) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.Directio... method __bool__ (line 148) | def __bool__(self) -> bool: ... method __eq__ (line 149) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 150) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 151) | def __gt__(self, other: object) -> bool: ... method __index__ (line 152) | def __index__(self) -> int: ... method __int__ (line 153) | def __int__(self) -> int: ... method __invert__ (line 154) | def __invert__(self) -> QSerialPort.Directions: ... method __le__ (line 155) | def __le__(self, other: object) -> bool: ... method __lt__ (line 156) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 157) | def __ne__(self, other: object) -> bool: ... method __or__ (line 158) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.Direction... method __rand__ (line 159) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.Directi... method __ror__ (line 160) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.Directio... method __rxor__ (line 161) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.Directi... method __xor__ (line 162) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.Directio... class FlowControl (line 164) | class FlowControl: method __init__ (line 172) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 173) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.FlowCont... method __and__ (line 174) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.FlowCont... method __bool__ (line 175) | def __bool__(self) -> bool: ... method __eq__ (line 176) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 177) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 178) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 179) | def __hash__(self) -> int: ... method __index__ (line 180) | def __index__(self) -> int: ... method __int__ (line 181) | def __int__(self) -> int: ... method __le__ (line 182) | def __le__(self, other: object) -> bool: ... method __lt__ (line 183) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 184) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.FlowCont... method __ne__ (line 185) | def __ne__(self, other: object) -> bool: ... method __or__ (line 186) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.FlowContr... method __pos__ (line 187) | def __pos__(self): ... method __radd__ (line 188) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.FlowCon... method __rand__ (line 189) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.FlowCon... method __rmul__ (line 190) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.FlowCon... method __ror__ (line 191) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.FlowCont... method __rsub__ (line 192) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.FlowCon... method __rxor__ (line 193) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.FlowCon... method __sub__ (line 194) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.FlowCont... method __xor__ (line 195) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.FlowCont... class Parity (line 197) | class Parity: method __init__ (line 207) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 208) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... method __and__ (line 209) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... method __bool__ (line 210) | def __bool__(self) -> bool: ... method __eq__ (line 211) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 212) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 213) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 214) | def __hash__(self) -> int: ... method __index__ (line 215) | def __index__(self) -> int: ... method __int__ (line 216) | def __int__(self) -> int: ... method __le__ (line 217) | def __le__(self, other: object) -> bool: ... method __lt__ (line 218) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 219) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... method __ne__ (line 220) | def __ne__(self, other: object) -> bool: ... method __or__ (line 221) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... method __pos__ (line 222) | def __pos__(self): ... method __radd__ (line 223) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.Parity:... method __rand__ (line 224) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.Parity:... method __rmul__ (line 225) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.Parity:... method __ror__ (line 226) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... method __rsub__ (line 227) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.Parity:... method __rxor__ (line 228) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.Parity:... method __sub__ (line 229) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... method __xor__ (line 230) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.Parity: ... class PinoutSignal (line 232) | class PinoutSignal: method __init__ (line 247) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 248) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSi... method __bool__ (line 249) | def __bool__(self) -> bool: ... method __eq__ (line 250) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 251) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 252) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 253) | def __hash__(self) -> int: ... method __index__ (line 254) | def __index__(self) -> int: ... method __int__ (line 255) | def __int__(self) -> int: ... method __invert__ (line 256) | def __invert__(self) -> QSerialPort.PinoutSignals: ... method __le__ (line 257) | def __le__(self, other: object) -> bool: ... method __lt__ (line 258) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 259) | def __ne__(self, other: object) -> bool: ... method __or__ (line 260) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSig... method __rand__ (line 261) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.PinoutS... method __ror__ (line 262) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSi... method __rxor__ (line 263) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.PinoutS... method __xor__ (line 264) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSi... class PinoutSignals (line 266) | class PinoutSignals: method __init__ (line 268) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 269) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSi... method __bool__ (line 270) | def __bool__(self) -> bool: ... method __eq__ (line 271) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 272) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 273) | def __gt__(self, other: object) -> bool: ... method __index__ (line 274) | def __index__(self) -> int: ... method __int__ (line 275) | def __int__(self) -> int: ... method __invert__ (line 276) | def __invert__(self) -> QSerialPort.PinoutSignals: ... method __le__ (line 277) | def __le__(self, other: object) -> bool: ... method __lt__ (line 278) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 279) | def __ne__(self, other: object) -> bool: ... method __or__ (line 280) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSig... method __rand__ (line 281) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.PinoutS... method __ror__ (line 282) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSi... method __rxor__ (line 283) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.PinoutS... method __xor__ (line 284) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.PinoutSi... class SerialPortError (line 286) | class SerialPortError: method __init__ (line 304) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 305) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.SerialPo... method __and__ (line 306) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.SerialPo... method __bool__ (line 307) | def __bool__(self) -> bool: ... method __eq__ (line 308) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 309) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 310) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 311) | def __hash__(self) -> int: ... method __index__ (line 312) | def __index__(self) -> int: ... method __int__ (line 313) | def __int__(self) -> int: ... method __le__ (line 314) | def __le__(self, other: object) -> bool: ... method __lt__ (line 315) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 316) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.SerialPo... method __ne__ (line 317) | def __ne__(self, other: object) -> bool: ... method __or__ (line 318) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.SerialPor... method __pos__ (line 319) | def __pos__(self): ... method __radd__ (line 320) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.SerialP... method __rand__ (line 321) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.SerialP... method __rmul__ (line 322) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.SerialP... method __ror__ (line 323) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.SerialPo... method __rsub__ (line 324) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.SerialP... method __rxor__ (line 325) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.SerialP... method __sub__ (line 326) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.SerialPo... method __xor__ (line 327) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.SerialPo... class StopBits (line 329) | class StopBits: method __init__ (line 337) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 338) | def __add__(self, other: typing.SupportsInt) -> QSerialPort.StopBits... method __and__ (line 339) | def __and__(self, other: typing.SupportsInt) -> QSerialPort.StopBits... method __bool__ (line 340) | def __bool__(self) -> bool: ... method __eq__ (line 341) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 342) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 343) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 344) | def __hash__(self) -> int: ... method __index__ (line 345) | def __index__(self) -> int: ... method __int__ (line 346) | def __int__(self) -> int: ... method __le__ (line 347) | def __le__(self, other: object) -> bool: ... method __lt__ (line 348) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 349) | def __mul__(self, other: typing.SupportsInt) -> QSerialPort.StopBits... method __ne__ (line 350) | def __ne__(self, other: object) -> bool: ... method __or__ (line 351) | def __or__(self, other: typing.SupportsInt) -> QSerialPort.StopBits:... method __pos__ (line 352) | def __pos__(self): ... method __radd__ (line 353) | def __radd__(self, other: typing.SupportsInt) -> QSerialPort.StopBit... method __rand__ (line 354) | def __rand__(self, other: typing.SupportsInt) -> QSerialPort.StopBit... method __rmul__ (line 355) | def __rmul__(self, other: typing.SupportsInt) -> QSerialPort.StopBit... method __ror__ (line 356) | def __ror__(self, other: typing.SupportsInt) -> QSerialPort.StopBits... method __rsub__ (line 357) | def __rsub__(self, other: typing.SupportsInt) -> QSerialPort.StopBit... method __rxor__ (line 358) | def __rxor__(self, other: typing.SupportsInt) -> QSerialPort.StopBit... method __sub__ (line 359) | def __sub__(self, other: typing.SupportsInt) -> QSerialPort.StopBits... method __xor__ (line 360) | def __xor__(self, other: typing.SupportsInt) -> QSerialPort.StopBits... method __init__ (line 436) | def __init__(self, name: str, parent: PySide2.QtCore.QObject | None = ... method __init__ (line 438) | def __init__(self, info: QSerialPortInfo, parent: PySide2.QtCore.QObje... method __init__ (line 440) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aboutT... method atEnd (line 441) | def atEnd(self) -> bool: ... method baudRate (line 442) | def baudRate(self, directions: QSerialPort.Directions | QSerialPort.Di... method bytesAvailable (line 443) | def bytesAvailable(self) -> int: ... method bytesToWrite (line 444) | def bytesToWrite(self) -> int: ... method canReadLine (line 445) | def canReadLine(self) -> bool: ... method clear (line 446) | def clear(self, directions: QSerialPort.Directions | QSerialPort.Direc... method clearError (line 447) | def clearError(self) -> None: ... method close (line 448) | def close(self) -> None: ... method dataBits (line 449) | def dataBits(self) -> QSerialPort.DataBits: ... method dataErrorPolicy (line 450) | def dataErrorPolicy(self) -> QSerialPort.DataErrorPolicy: ... method flowControl (line 451) | def flowControl(self) -> QSerialPort.FlowControl: ... method flush (line 452) | def flush(self) -> bool: ... method handle (line 453) | def handle(self) -> int: ... method isBreakEnabled (line 454) | def isBreakEnabled(self) -> bool: ... method isDataTerminalReady (line 455) | def isDataTerminalReady(self) -> bool: ... method isRequestToSend (line 456) | def isRequestToSend(self) -> bool: ... method isSequential (line 457) | def isSequential(self) -> bool: ... method open (line 458) | def open(self, mode: PySide2.QtCore.QIODevice.OpenMode | PySide2.QtCor... method parity (line 459) | def parity(self) -> QSerialPort.Parity: ... method pinoutSignals (line 460) | def pinoutSignals(self) -> QSerialPort.PinoutSignals | QSerialPort.Pin... method portName (line 461) | def portName(self) -> str: ... method readBufferSize (line 462) | def readBufferSize(self) -> int: ... method readData (line 463) | def readData(self, data: bytes, maxSize: int) -> int: ... method readLineData (line 464) | def readLineData(self, data: bytes, maxSize: int) -> int: ... method sendBreak (line 465) | def sendBreak(self, duration: int = ...) -> bool: ... method setBaudRate (line 466) | def setBaudRate(self, baudRate: int, directions: QSerialPort.Direction... method setBreakEnabled (line 467) | def setBreakEnabled(self, set: bool = ...) -> bool: ... method setDataBits (line 468) | def setDataBits(self, dataBits: QSerialPort.DataBits) -> bool: ... method setDataErrorPolicy (line 469) | def setDataErrorPolicy(self, policy: QSerialPort.DataErrorPolicy = ...... method setDataTerminalReady (line 470) | def setDataTerminalReady(self, set: bool) -> bool: ... method setFlowControl (line 471) | def setFlowControl(self, flowControl: QSerialPort.FlowControl) -> bool... method setParity (line 472) | def setParity(self, parity: QSerialPort.Parity) -> bool: ... method setPort (line 473) | def setPort(self, info: QSerialPortInfo) -> None: ... method setPortName (line 474) | def setPortName(self, name: str) -> None: ... method setReadBufferSize (line 475) | def setReadBufferSize(self, size: int) -> None: ... method setRequestToSend (line 476) | def setRequestToSend(self, set: bool) -> bool: ... method setSettingsRestoredOnClose (line 477) | def setSettingsRestoredOnClose(self, restore: bool) -> None: ... method setStopBits (line 478) | def setStopBits(self, stopBits: QSerialPort.StopBits) -> bool: ... method settingsRestoredOnClose (line 479) | def settingsRestoredOnClose(self) -> bool: ... method stopBits (line 480) | def stopBits(self) -> QSerialPort.StopBits: ... method waitForBytesWritten (line 481) | def waitForBytesWritten(self, msecs: int = ...) -> bool: ... method waitForReadyRead (line 482) | def waitForReadyRead(self, msecs: int = ...) -> bool: ... method writeData (line 483) | def writeData(self, data: bytes, maxSize: int) -> int: ... class QSerialPortInfo (line 485) | class QSerialPortInfo(shiboken2.Object): method __init__ (line 487) | def __init__(self, port: QSerialPort) -> None: ... method __init__ (line 489) | def __init__(self, other: QSerialPortInfo) -> None: ... method __init__ (line 491) | def __init__(self, name: str) -> None: ... method __init__ (line 493) | def __init__(self) -> None: ... method availablePorts (line 495) | def availablePorts() -> list[QSerialPortInfo]: ... method description (line 496) | def description(self) -> str: ... method hasProductIdentifier (line 497) | def hasProductIdentifier(self) -> bool: ... method hasVendorIdentifier (line 498) | def hasVendorIdentifier(self) -> bool: ... method isBusy (line 499) | def isBusy(self) -> bool: ... method isNull (line 500) | def isNull(self) -> bool: ... method isValid (line 501) | def isValid(self) -> bool: ... method manufacturer (line 502) | def manufacturer(self) -> str: ... method portName (line 503) | def portName(self) -> str: ... method productIdentifier (line 504) | def productIdentifier(self) -> int: ... method serialNumber (line 505) | def serialNumber(self) -> str: ... method standardBaudRates (line 507) | def standardBaudRates() -> list[int]: ... method swap (line 508) | def swap(self, other: QSerialPortInfo) -> None: ... method systemLocation (line 509) | def systemLocation(self) -> str: ... method vendorIdentifier (line 510) | def vendorIdentifier(self) -> int: ... method __bool__ (line 511) | def __bool__(self) -> bool: ... method __copy__ (line 512) | def __copy__(self) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtSql.pyi class QSql (line 12) | class QSql(shiboken2.Object): class Location (line 13) | class Location: method __init__ (line 19) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 20) | def __add__(self, other: typing.SupportsInt) -> QSql.Location: ... method __and__ (line 21) | def __and__(self, other: typing.SupportsInt) -> QSql.Location: ... method __bool__ (line 22) | def __bool__(self) -> bool: ... method __eq__ (line 23) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 24) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 25) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 26) | def __hash__(self) -> int: ... method __index__ (line 27) | def __index__(self) -> int: ... method __int__ (line 28) | def __int__(self) -> int: ... method __le__ (line 29) | def __le__(self, other: object) -> bool: ... method __lt__ (line 30) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 31) | def __mul__(self, other: typing.SupportsInt) -> QSql.Location: ... method __ne__ (line 32) | def __ne__(self, other: object) -> bool: ... method __or__ (line 33) | def __or__(self, other: typing.SupportsInt) -> QSql.Location: ... method __pos__ (line 34) | def __pos__(self): ... method __radd__ (line 35) | def __radd__(self, other: typing.SupportsInt) -> QSql.Location: ... method __rand__ (line 36) | def __rand__(self, other: typing.SupportsInt) -> QSql.Location: ... method __rmul__ (line 37) | def __rmul__(self, other: typing.SupportsInt) -> QSql.Location: ... method __ror__ (line 38) | def __ror__(self, other: typing.SupportsInt) -> QSql.Location: ... method __rsub__ (line 39) | def __rsub__(self, other: typing.SupportsInt) -> QSql.Location: ... method __rxor__ (line 40) | def __rxor__(self, other: typing.SupportsInt) -> QSql.Location: ... method __sub__ (line 41) | def __sub__(self, other: typing.SupportsInt) -> QSql.Location: ... method __xor__ (line 42) | def __xor__(self, other: typing.SupportsInt) -> QSql.Location: ... class NumericalPrecisionPolicy (line 44) | class NumericalPrecisionPolicy: method __init__ (line 52) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 53) | def __add__(self, other: typing.SupportsInt) -> QSql.NumericalPrecis... method __and__ (line 54) | def __and__(self, other: typing.SupportsInt) -> QSql.NumericalPrecis... method __bool__ (line 55) | def __bool__(self) -> bool: ... method __eq__ (line 56) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 57) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 58) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 59) | def __hash__(self) -> int: ... method __index__ (line 60) | def __index__(self) -> int: ... method __int__ (line 61) | def __int__(self) -> int: ... method __le__ (line 62) | def __le__(self, other: object) -> bool: ... method __lt__ (line 63) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 64) | def __mul__(self, other: typing.SupportsInt) -> QSql.NumericalPrecis... method __ne__ (line 65) | def __ne__(self, other: object) -> bool: ... method __or__ (line 66) | def __or__(self, other: typing.SupportsInt) -> QSql.NumericalPrecisi... method __pos__ (line 67) | def __pos__(self): ... method __radd__ (line 68) | def __radd__(self, other: typing.SupportsInt) -> QSql.NumericalPreci... method __rand__ (line 69) | def __rand__(self, other: typing.SupportsInt) -> QSql.NumericalPreci... method __rmul__ (line 70) | def __rmul__(self, other: typing.SupportsInt) -> QSql.NumericalPreci... method __ror__ (line 71) | def __ror__(self, other: typing.SupportsInt) -> QSql.NumericalPrecis... method __rsub__ (line 72) | def __rsub__(self, other: typing.SupportsInt) -> QSql.NumericalPreci... method __rxor__ (line 73) | def __rxor__(self, other: typing.SupportsInt) -> QSql.NumericalPreci... method __sub__ (line 74) | def __sub__(self, other: typing.SupportsInt) -> QSql.NumericalPrecis... method __xor__ (line 75) | def __xor__(self, other: typing.SupportsInt) -> QSql.NumericalPrecis... class ParamType (line 77) | class ParamType: method __init__ (line 79) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 80) | def __and__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __bool__ (line 81) | def __bool__(self) -> bool: ... method __eq__ (line 82) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 83) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 84) | def __gt__(self, other: object) -> bool: ... method __index__ (line 85) | def __index__(self) -> int: ... method __int__ (line 86) | def __int__(self) -> int: ... method __invert__ (line 87) | def __invert__(self) -> QSql.ParamType: ... method __le__ (line 88) | def __le__(self, other: object) -> bool: ... method __lt__ (line 89) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 90) | def __ne__(self, other: object) -> bool: ... method __or__ (line 91) | def __or__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __rand__ (line 92) | def __rand__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __ror__ (line 93) | def __ror__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __rxor__ (line 94) | def __rxor__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __xor__ (line 95) | def __xor__(self, other: typing.SupportsInt) -> QSql.ParamType: ... class ParamTypeFlag (line 97) | class ParamTypeFlag: method __init__ (line 105) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 106) | def __and__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __bool__ (line 107) | def __bool__(self) -> bool: ... method __eq__ (line 108) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 109) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 110) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 111) | def __hash__(self) -> int: ... method __index__ (line 112) | def __index__(self) -> int: ... method __int__ (line 113) | def __int__(self) -> int: ... method __invert__ (line 114) | def __invert__(self) -> QSql.ParamType: ... method __le__ (line 115) | def __le__(self, other: object) -> bool: ... method __lt__ (line 116) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 117) | def __ne__(self, other: object) -> bool: ... method __or__ (line 118) | def __or__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __rand__ (line 119) | def __rand__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __ror__ (line 120) | def __ror__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __rxor__ (line 121) | def __rxor__(self, other: typing.SupportsInt) -> QSql.ParamType: ... method __xor__ (line 122) | def __xor__(self, other: typing.SupportsInt) -> QSql.ParamType: ... class TableType (line 124) | class TableType: method __init__ (line 132) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 133) | def __add__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __and__ (line 134) | def __and__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __bool__ (line 135) | def __bool__(self) -> bool: ... method __eq__ (line 136) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 137) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 138) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 139) | def __hash__(self) -> int: ... method __index__ (line 140) | def __index__(self) -> int: ... method __int__ (line 141) | def __int__(self) -> int: ... method __le__ (line 142) | def __le__(self, other: object) -> bool: ... method __lt__ (line 143) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 144) | def __mul__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __ne__ (line 145) | def __ne__(self, other: object) -> bool: ... method __or__ (line 146) | def __or__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __pos__ (line 147) | def __pos__(self): ... method __radd__ (line 148) | def __radd__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __rand__ (line 149) | def __rand__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __rmul__ (line 150) | def __rmul__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __ror__ (line 151) | def __ror__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __rsub__ (line 152) | def __rsub__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __rxor__ (line 153) | def __rxor__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __sub__ (line 154) | def __sub__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __xor__ (line 155) | def __xor__(self, other: typing.SupportsInt) -> QSql.TableType: ... method __init__ (line 171) | def __init__(cls, *args, **kwargs) -> None: ... class QSqlDatabase (line 173) | class QSqlDatabase(shiboken2.Object): method __init__ (line 176) | def __init__(self, type: str) -> None: ... method __init__ (line 178) | def __init__(self, other: QSqlDatabase) -> None: ... method __init__ (line 180) | def __init__(self, driver: QSqlDriver) -> None: ... method __init__ (line 182) | def __init__(self) -> None: ... method addDatabase (line 185) | def addDatabase(type: str, connectionName: str = ...) -> QSqlDatabase:... method addDatabase (line 188) | def addDatabase(driver: QSqlDriver, connectionName: str = ...) -> QSql... method cloneDatabase (line 191) | def cloneDatabase(other: QSqlDatabase, connectionName: str) -> QSqlDat... method cloneDatabase (line 194) | def cloneDatabase(other: str, connectionName: str) -> QSqlDatabase: ... method close (line 195) | def close(self) -> None: ... method commit (line 196) | def commit(self) -> bool: ... method connectOptions (line 197) | def connectOptions(self) -> str: ... method connectionName (line 198) | def connectionName(self) -> str: ... method connectionNames (line 200) | def connectionNames() -> list[str]: ... method contains (line 202) | def contains(connectionName: str = ...) -> bool: ... method database (line 204) | def database(connectionName: str = ..., open: bool = ...) -> QSqlDatab... method databaseName (line 205) | def databaseName(self) -> str: ... method driver (line 206) | def driver(self) -> QSqlDriver: ... method driverName (line 207) | def driverName(self) -> str: ... method drivers (line 209) | def drivers() -> list[str]: ... method exec_ (line 210) | def exec_(self, query: str = ...) -> QSqlQuery: ... method hostName (line 211) | def hostName(self) -> str: ... method isDriverAvailable (line 213) | def isDriverAvailable(name: str) -> bool: ... method isOpen (line 214) | def isOpen(self) -> bool: ... method isOpenError (line 215) | def isOpenError(self) -> bool: ... method isValid (line 216) | def isValid(self) -> bool: ... method lastError (line 217) | def lastError(self) -> QSqlError: ... method numericalPrecisionPolicy (line 218) | def numericalPrecisionPolicy(self) -> QSql.NumericalPrecisionPolicy: ... method open (line 220) | def open(self, user: str, password: str) -> bool: ... method open (line 222) | def open(self) -> bool: ... method password (line 223) | def password(self) -> str: ... method port (line 224) | def port(self) -> int: ... method primaryIndex (line 225) | def primaryIndex(self, tablename: str) -> QSqlIndex: ... method record (line 226) | def record(self, tablename: str) -> QSqlRecord: ... method registerSqlDriver (line 228) | def registerSqlDriver(name: str, creator: QSqlDriverCreatorBase) -> No... method removeDatabase (line 230) | def removeDatabase(connectionName: str) -> None: ... method rollback (line 231) | def rollback(self) -> bool: ... method setConnectOptions (line 232) | def setConnectOptions(self, options: str = ...) -> None: ... method setDatabaseName (line 233) | def setDatabaseName(self, name: str) -> None: ... method setHostName (line 234) | def setHostName(self, host: str) -> None: ... method setNumericalPrecisionPolicy (line 235) | def setNumericalPrecisionPolicy(self, precisionPolicy: QSql.NumericalP... method setPassword (line 236) | def setPassword(self, password: str) -> None: ... method setPort (line 237) | def setPort(self, p: int) -> None: ... method setUserName (line 238) | def setUserName(self, name: str) -> None: ... method tables (line 239) | def tables(self, type: QSql.TableType = ...) -> list[str]: ... method transaction (line 240) | def transaction(self) -> bool: ... method userName (line 241) | def userName(self) -> str: ... method __copy__ (line 242) | def __copy__(self) -> None: ... class QSqlDriver (line 244) | class QSqlDriver(PySide2.QtCore.QObject): class DbmsType (line 245) | class DbmsType: method __init__ (line 258) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 259) | def __add__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType:... method __and__ (line 260) | def __and__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType:... method __bool__ (line 261) | def __bool__(self) -> bool: ... method __eq__ (line 262) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 263) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 264) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 265) | def __hash__(self) -> int: ... method __index__ (line 266) | def __index__(self) -> int: ... method __int__ (line 267) | def __int__(self) -> int: ... method __le__ (line 268) | def __le__(self, other: object) -> bool: ... method __lt__ (line 269) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 270) | def __mul__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType:... method __ne__ (line 271) | def __ne__(self, other: object) -> bool: ... method __or__ (line 272) | def __or__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType: ... method __pos__ (line 273) | def __pos__(self): ... method __radd__ (line 274) | def __radd__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType... method __rand__ (line 275) | def __rand__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType... method __rmul__ (line 276) | def __rmul__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType... method __ror__ (line 277) | def __ror__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType:... method __rsub__ (line 278) | def __rsub__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType... method __rxor__ (line 279) | def __rxor__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType... method __sub__ (line 280) | def __sub__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType:... method __xor__ (line 281) | def __xor__(self, other: typing.SupportsInt) -> QSqlDriver.DbmsType:... class DriverFeature (line 283) | class DriverFeature: method __init__ (line 302) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 303) | def __add__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFea... method __and__ (line 304) | def __and__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFea... method __bool__ (line 305) | def __bool__(self) -> bool: ... method __eq__ (line 306) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 307) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 308) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 309) | def __hash__(self) -> int: ... method __index__ (line 310) | def __index__(self) -> int: ... method __int__ (line 311) | def __int__(self) -> int: ... method __le__ (line 312) | def __le__(self, other: object) -> bool: ... method __lt__ (line 313) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 314) | def __mul__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFea... method __ne__ (line 315) | def __ne__(self, other: object) -> bool: ... method __or__ (line 316) | def __or__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFeat... method __pos__ (line 317) | def __pos__(self): ... method __radd__ (line 318) | def __radd__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFe... method __rand__ (line 319) | def __rand__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFe... method __rmul__ (line 320) | def __rmul__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFe... method __ror__ (line 321) | def __ror__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFea... method __rsub__ (line 322) | def __rsub__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFe... method __rxor__ (line 323) | def __rxor__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFe... method __sub__ (line 324) | def __sub__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFea... method __xor__ (line 325) | def __xor__(self, other: typing.SupportsInt) -> QSqlDriver.DriverFea... class IdentifierType (line 327) | class IdentifierType: method __init__ (line 333) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 334) | def __add__(self, other: typing.SupportsInt) -> QSqlDriver.Identifie... method __and__ (line 335) | def __and__(self, other: typing.SupportsInt) -> QSqlDriver.Identifie... method __bool__ (line 336) | def __bool__(self) -> bool: ... method __eq__ (line 337) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 338) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 339) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 340) | def __hash__(self) -> int: ... method __index__ (line 341) | def __index__(self) -> int: ... method __int__ (line 342) | def __int__(self) -> int: ... method __le__ (line 343) | def __le__(self, other: object) -> bool: ... method __lt__ (line 344) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 345) | def __mul__(self, other: typing.SupportsInt) -> QSqlDriver.Identifie... method __ne__ (line 346) | def __ne__(self, other: object) -> bool: ... method __or__ (line 347) | def __or__(self, other: typing.SupportsInt) -> QSqlDriver.Identifier... method __pos__ (line 348) | def __pos__(self): ... method __radd__ (line 349) | def __radd__(self, other: typing.SupportsInt) -> QSqlDriver.Identifi... method __rand__ (line 350) | def __rand__(self, other: typing.SupportsInt) -> QSqlDriver.Identifi... method __rmul__ (line 351) | def __rmul__(self, other: typing.SupportsInt) -> QSqlDriver.Identifi... method __ror__ (line 352) | def __ror__(self, other: typing.SupportsInt) -> QSqlDriver.Identifie... method __rsub__ (line 353) | def __rsub__(self, other: typing.SupportsInt) -> QSqlDriver.Identifi... method __rxor__ (line 354) | def __rxor__(self, other: typing.SupportsInt) -> QSqlDriver.Identifi... method __sub__ (line 355) | def __sub__(self, other: typing.SupportsInt) -> QSqlDriver.Identifie... method __xor__ (line 356) | def __xor__(self, other: typing.SupportsInt) -> QSqlDriver.Identifie... class NotificationSource (line 358) | class NotificationSource: method __init__ (line 365) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 366) | def __add__(self, other: typing.SupportsInt) -> QSqlDriver.Notificat... method __and__ (line 367) | def __and__(self, other: typing.SupportsInt) -> QSqlDriver.Notificat... method __bool__ (line 368) | def __bool__(self) -> bool: ... method __eq__ (line 369) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 370) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 371) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 372) | def __hash__(self) -> int: ... method __index__ (line 373) | def __index__(self) -> int: ... method __int__ (line 374) | def __int__(self) -> int: ... method __le__ (line 375) | def __le__(self, other: object) -> bool: ... method __lt__ (line 376) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 377) | def __mul__(self, other: typing.SupportsInt) -> QSqlDriver.Notificat... method __ne__ (line 378) | def __ne__(self, other: object) -> bool: ... method __or__ (line 379) | def __or__(self, other: typing.SupportsInt) -> QSqlDriver.Notificati... method __pos__ (line 380) | def __pos__(self): ... method __radd__ (line 381) | def __radd__(self, other: typing.SupportsInt) -> QSqlDriver.Notifica... method __rand__ (line 382) | def __rand__(self, other: typing.SupportsInt) -> QSqlDriver.Notifica... method __rmul__ (line 383) | def __rmul__(self, other: typing.SupportsInt) -> QSqlDriver.Notifica... method __ror__ (line 384) | def __ror__(self, other: typing.SupportsInt) -> QSqlDriver.Notificat... method __rsub__ (line 385) | def __rsub__(self, other: typing.SupportsInt) -> QSqlDriver.Notifica... method __rxor__ (line 386) | def __rxor__(self, other: typing.SupportsInt) -> QSqlDriver.Notifica... method __sub__ (line 387) | def __sub__(self, other: typing.SupportsInt) -> QSqlDriver.Notificat... method __xor__ (line 388) | def __xor__(self, other: typing.SupportsInt) -> QSqlDriver.Notificat... class StatementType (line 390) | class StatementType: method __init__ (line 399) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 400) | def __add__(self, other: typing.SupportsInt) -> QSqlDriver.Statement... method __and__ (line 401) | def __and__(self, other: typing.SupportsInt) -> QSqlDriver.Statement... method __bool__ (line 402) | def __bool__(self) -> bool: ... method __eq__ (line 403) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 404) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 405) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 406) | def __hash__(self) -> int: ... method __index__ (line 407) | def __index__(self) -> int: ... method __int__ (line 408) | def __int__(self) -> int: ... method __le__ (line 409) | def __le__(self, other: object) -> bool: ... method __lt__ (line 410) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 411) | def __mul__(self, other: typing.SupportsInt) -> QSqlDriver.Statement... method __ne__ (line 412) | def __ne__(self, other: object) -> bool: ... method __or__ (line 413) | def __or__(self, other: typing.SupportsInt) -> QSqlDriver.StatementT... method __pos__ (line 414) | def __pos__(self): ... method __radd__ (line 415) | def __radd__(self, other: typing.SupportsInt) -> QSqlDriver.Statemen... method __rand__ (line 416) | def __rand__(self, other: typing.SupportsInt) -> QSqlDriver.Statemen... method __rmul__ (line 417) | def __rmul__(self, other: typing.SupportsInt) -> QSqlDriver.Statemen... method __ror__ (line 418) | def __ror__(self, other: typing.SupportsInt) -> QSqlDriver.Statement... method __rsub__ (line 419) | def __rsub__(self, other: typing.SupportsInt) -> QSqlDriver.Statemen... method __rxor__ (line 420) | def __rxor__(self, other: typing.SupportsInt) -> QSqlDriver.Statemen... method __sub__ (line 421) | def __sub__(self, other: typing.SupportsInt) -> QSqlDriver.Statement... method __xor__ (line 422) | def __xor__(self, other: typing.SupportsInt) -> QSqlDriver.Statement... method __init__ (line 459) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method beginTransaction (line 460) | def beginTransaction(self) -> bool: ... method cancelQuery (line 461) | def cancelQuery(self) -> bool: ... method close (line 462) | def close(self) -> None: ... method commitTransaction (line 463) | def commitTransaction(self) -> bool: ... method createResult (line 464) | def createResult(self) -> QSqlResult: ... method dbmsType (line 465) | def dbmsType(self) -> QSqlDriver.DbmsType: ... method escapeIdentifier (line 466) | def escapeIdentifier(self, identifier: str, type: QSqlDriver.Identifie... method formatValue (line 467) | def formatValue(self, field: QSqlField, trimStrings: bool = ...) -> st... method hasFeature (line 468) | def hasFeature(self, f: QSqlDriver.DriverFeature) -> bool: ... method isIdentifierEscaped (line 469) | def isIdentifierEscaped(self, identifier: str, type: QSqlDriver.Identi... method isOpen (line 470) | def isOpen(self) -> bool: ... method isOpenError (line 471) | def isOpenError(self) -> bool: ... method lastError (line 472) | def lastError(self) -> QSqlError: ... method numericalPrecisionPolicy (line 473) | def numericalPrecisionPolicy(self) -> QSql.NumericalPrecisionPolicy: ... method open (line 474) | def open(self, db: str, user: str = ..., password: str = ..., host: st... method primaryIndex (line 475) | def primaryIndex(self, tableName: str) -> QSqlIndex: ... method record (line 476) | def record(self, tableName: str) -> QSqlRecord: ... method rollbackTransaction (line 477) | def rollbackTransaction(self) -> bool: ... method setLastError (line 478) | def setLastError(self, e: QSqlError) -> None: ... method setNumericalPrecisionPolicy (line 479) | def setNumericalPrecisionPolicy(self, precisionPolicy: QSql.NumericalP... method setOpen (line 480) | def setOpen(self, o: bool) -> None: ... method setOpenError (line 481) | def setOpenError(self, e: bool) -> None: ... method sqlStatement (line 482) | def sqlStatement(self, type: QSqlDriver.StatementType, tableName: str,... method stripDelimiters (line 483) | def stripDelimiters(self, identifier: str, type: QSqlDriver.Identifier... method subscribeToNotification (line 484) | def subscribeToNotification(self, name: str) -> bool: ... method subscribedToNotifications (line 485) | def subscribedToNotifications(self) -> list[str]: ... method tables (line 486) | def tables(self, tableType: QSql.TableType) -> list[str]: ... method unsubscribeFromNotification (line 487) | def unsubscribeFromNotification(self, name: str) -> bool: ... class QSqlDriverCreatorBase (line 489) | class QSqlDriverCreatorBase(shiboken2.Object): method __init__ (line 490) | def __init__(self) -> None: ... method createObject (line 491) | def createObject(self) -> QSqlDriver: ... class QSqlError (line 493) | class QSqlError(shiboken2.Object): class ErrorType (line 494) | class ErrorType: method __init__ (line 503) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 504) | def __add__(self, other: typing.SupportsInt) -> QSqlError.ErrorType:... method __and__ (line 505) | def __and__(self, other: typing.SupportsInt) -> QSqlError.ErrorType:... method __bool__ (line 506) | def __bool__(self) -> bool: ... method __eq__ (line 507) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 508) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 509) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 510) | def __hash__(self) -> int: ... method __index__ (line 511) | def __index__(self) -> int: ... method __int__ (line 512) | def __int__(self) -> int: ... method __le__ (line 513) | def __le__(self, other: object) -> bool: ... method __lt__ (line 514) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 515) | def __mul__(self, other: typing.SupportsInt) -> QSqlError.ErrorType:... method __ne__ (line 516) | def __ne__(self, other: object) -> bool: ... method __or__ (line 517) | def __or__(self, other: typing.SupportsInt) -> QSqlError.ErrorType: ... method __pos__ (line 518) | def __pos__(self): ... method __radd__ (line 519) | def __radd__(self, other: typing.SupportsInt) -> QSqlError.ErrorType... method __rand__ (line 520) | def __rand__(self, other: typing.SupportsInt) -> QSqlError.ErrorType... method __rmul__ (line 521) | def __rmul__(self, other: typing.SupportsInt) -> QSqlError.ErrorType... method __ror__ (line 522) | def __ror__(self, other: typing.SupportsInt) -> QSqlError.ErrorType:... method __rsub__ (line 523) | def __rsub__(self, other: typing.SupportsInt) -> QSqlError.ErrorType... method __rxor__ (line 524) | def __rxor__(self, other: typing.SupportsInt) -> QSqlError.ErrorType... method __sub__ (line 525) | def __sub__(self, other: typing.SupportsInt) -> QSqlError.ErrorType:... method __xor__ (line 526) | def __xor__(self, other: typing.SupportsInt) -> QSqlError.ErrorType:... method __init__ (line 533) | def __init__(self, driverText: str, databaseText: str, type: QSqlError... method __init__ (line 535) | def __init__(self, driverText: str = ..., databaseText: str = ..., typ... method __init__ (line 537) | def __init__(self, other: QSqlError) -> None: ... method databaseText (line 538) | def databaseText(self) -> str: ... method driverText (line 539) | def driverText(self) -> str: ... method isValid (line 540) | def isValid(self) -> bool: ... method nativeErrorCode (line 541) | def nativeErrorCode(self) -> str: ... method number (line 542) | def number(self) -> int: ... method setDatabaseText (line 543) | def setDatabaseText(self, databaseText: str) -> None: ... method setDriverText (line 544) | def setDriverText(self, driverText: str) -> None: ... method setNumber (line 545) | def setNumber(self, number: int) -> None: ... method setType (line 546) | def setType(self, type: QSqlError.ErrorType) -> None: ... method swap (line 547) | def swap(self, other: QSqlError) -> None: ... method text (line 548) | def text(self) -> str: ... method type (line 549) | def type(self) -> QSqlError.ErrorType: ... method __copy__ (line 550) | def __copy__(self) -> None: ... method __eq__ (line 551) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 552) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 553) | def __gt__(self, other: object) -> bool: ... method __le__ (line 554) | def __le__(self, other: object) -> bool: ... method __lt__ (line 555) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 556) | def __ne__(self, other: object) -> bool: ... class QSqlField (line 558) | class QSqlField(shiboken2.Object): class RequiredStatus (line 559) | class RequiredStatus: method __init__ (line 566) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 567) | def __add__(self, other: typing.SupportsInt) -> QSqlField.RequiredSt... method __and__ (line 568) | def __and__(self, other: typing.SupportsInt) -> QSqlField.RequiredSt... method __bool__ (line 569) | def __bool__(self) -> bool: ... method __eq__ (line 570) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 571) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 572) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 573) | def __hash__(self) -> int: ... method __index__ (line 574) | def __index__(self) -> int: ... method __int__ (line 575) | def __int__(self) -> int: ... method __le__ (line 576) | def __le__(self, other: object) -> bool: ... method __lt__ (line 577) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 578) | def __mul__(self, other: typing.SupportsInt) -> QSqlField.RequiredSt... method __ne__ (line 579) | def __ne__(self, other: object) -> bool: ... method __or__ (line 580) | def __or__(self, other: typing.SupportsInt) -> QSqlField.RequiredSta... method __pos__ (line 581) | def __pos__(self): ... method __radd__ (line 582) | def __radd__(self, other: typing.SupportsInt) -> QSqlField.RequiredS... method __rand__ (line 583) | def __rand__(self, other: typing.SupportsInt) -> QSqlField.RequiredS... method __rmul__ (line 584) | def __rmul__(self, other: typing.SupportsInt) -> QSqlField.RequiredS... method __ror__ (line 585) | def __ror__(self, other: typing.SupportsInt) -> QSqlField.RequiredSt... method __rsub__ (line 586) | def __rsub__(self, other: typing.SupportsInt) -> QSqlField.RequiredS... method __rxor__ (line 587) | def __rxor__(self, other: typing.SupportsInt) -> QSqlField.RequiredS... method __sub__ (line 588) | def __sub__(self, other: typing.SupportsInt) -> QSqlField.RequiredSt... method __xor__ (line 589) | def __xor__(self, other: typing.SupportsInt) -> QSqlField.RequiredSt... method __init__ (line 594) | def __init__(self, fieldName: str, type: type, tableName: str) -> None... method __init__ (line 596) | def __init__(self, fieldName: str = ..., type: type = ...) -> None: ... method __init__ (line 598) | def __init__(self, other: QSqlField) -> None: ... method clear (line 599) | def clear(self) -> None: ... method defaultValue (line 600) | def defaultValue(self) -> typing.Any: ... method isAutoValue (line 601) | def isAutoValue(self) -> bool: ... method isGenerated (line 602) | def isGenerated(self) -> bool: ... method isNull (line 603) | def isNull(self) -> bool: ... method isReadOnly (line 604) | def isReadOnly(self) -> bool: ... method isValid (line 605) | def isValid(self) -> bool: ... method length (line 606) | def length(self) -> int: ... method name (line 607) | def name(self) -> str: ... method precision (line 608) | def precision(self) -> int: ... method requiredStatus (line 609) | def requiredStatus(self) -> QSqlField.RequiredStatus: ... method setAutoValue (line 610) | def setAutoValue(self, autoVal: bool) -> None: ... method setDefaultValue (line 611) | def setDefaultValue(self, value: typing.Any) -> None: ... method setGenerated (line 612) | def setGenerated(self, gen: bool) -> None: ... method setLength (line 613) | def setLength(self, fieldLength: int) -> None: ... method setName (line 614) | def setName(self, name: str) -> None: ... method setPrecision (line 615) | def setPrecision(self, precision: int) -> None: ... method setReadOnly (line 616) | def setReadOnly(self, readOnly: bool) -> None: ... method setRequired (line 617) | def setRequired(self, required: bool) -> None: ... method setRequiredStatus (line 618) | def setRequiredStatus(self, status: QSqlField.RequiredStatus) -> None:... method setSqlType (line 619) | def setSqlType(self, type: int) -> None: ... method setTableName (line 620) | def setTableName(self, tableName: str) -> None: ... method setType (line 621) | def setType(self, type: type) -> None: ... method setValue (line 622) | def setValue(self, value: typing.Any) -> None: ... method tableName (line 623) | def tableName(self) -> str: ... method type (line 624) | def type(self) -> type: ... method typeID (line 625) | def typeID(self) -> int: ... method value (line 626) | def value(self) -> typing.Any: ... method __bool__ (line 627) | def __bool__(self) -> bool: ... method __copy__ (line 628) | def __copy__(self) -> None: ... method __eq__ (line 629) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 630) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 631) | def __gt__(self, other: object) -> bool: ... method __le__ (line 632) | def __le__(self, other: object) -> bool: ... method __lt__ (line 633) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 634) | def __ne__(self, other: object) -> bool: ... class QSqlIndex (line 636) | class QSqlIndex(QSqlRecord): method __init__ (line 638) | def __init__(self, cursorName: str = ..., name: str = ...) -> None: ... method __init__ (line 640) | def __init__(self, other: QSqlIndex) -> None: ... method append (line 642) | def append(self, field: QSqlField, desc: bool) -> None: ... method append (line 644) | def append(self, field: QSqlField) -> None: ... method cursorName (line 645) | def cursorName(self) -> str: ... method isDescending (line 646) | def isDescending(self, i: int) -> bool: ... method name (line 647) | def name(self) -> str: ... method setCursorName (line 648) | def setCursorName(self, cursorName: str) -> None: ... method setDescending (line 649) | def setDescending(self, i: int, desc: bool) -> None: ... method setName (line 650) | def setName(self, name: str) -> None: ... method __copy__ (line 651) | def __copy__(self) -> None: ... class QSqlQuery (line 653) | class QSqlQuery(shiboken2.Object): class BatchExecutionMode (line 654) | class BatchExecutionMode: method __init__ (line 660) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 661) | def __add__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecu... method __and__ (line 662) | def __and__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecu... method __bool__ (line 663) | def __bool__(self) -> bool: ... method __eq__ (line 664) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 665) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 666) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 667) | def __hash__(self) -> int: ... method __index__ (line 668) | def __index__(self) -> int: ... method __int__ (line 669) | def __int__(self) -> int: ... method __le__ (line 670) | def __le__(self, other: object) -> bool: ... method __lt__ (line 671) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 672) | def __mul__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecu... method __ne__ (line 673) | def __ne__(self, other: object) -> bool: ... method __or__ (line 674) | def __or__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecut... method __pos__ (line 675) | def __pos__(self): ... method __radd__ (line 676) | def __radd__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExec... method __rand__ (line 677) | def __rand__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExec... method __rmul__ (line 678) | def __rmul__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExec... method __ror__ (line 679) | def __ror__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecu... method __rsub__ (line 680) | def __rsub__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExec... method __rxor__ (line 681) | def __rxor__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExec... method __sub__ (line 682) | def __sub__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecu... method __xor__ (line 683) | def __xor__(self, other: typing.SupportsInt) -> QSqlQuery.BatchExecu... method __init__ (line 687) | def __init__(self, query: str = ..., db: QSqlDatabase = ...) -> None: ... method __init__ (line 689) | def __init__(self, r: QSqlResult) -> None: ... method __init__ (line 691) | def __init__(self, other: QSqlQuery) -> None: ... method __init__ (line 693) | def __init__(self, db: QSqlDatabase) -> None: ... method addBindValue (line 694) | def addBindValue(self, val: typing.Any, type: QSql.ParamType | QSql.Pa... method at (line 695) | def at(self) -> int: ... method bindValue (line 697) | def bindValue(self, pos: int, val: typing.Any, type: QSql.ParamType | ... method bindValue (line 699) | def bindValue(self, placeholder: str, val: typing.Any, type: QSql.Para... method boundValue (line 701) | def boundValue(self, pos: int) -> typing.Any: ... method boundValue (line 703) | def boundValue(self, placeholder: str) -> typing.Any: ... method boundValues (line 704) | def boundValues(self) -> dict[str, typing.Any]: ... method clear (line 705) | def clear(self) -> None: ... method driver (line 706) | def driver(self) -> QSqlDriver: ... method execBatch (line 707) | def execBatch(self, mode: QSqlQuery.BatchExecutionMode = ...) -> bool:... method exec_ (line 709) | def exec_(self, query: str) -> bool: ... method exec_ (line 711) | def exec_(self) -> bool: ... method executedQuery (line 712) | def executedQuery(self) -> str: ... method finish (line 713) | def finish(self) -> None: ... method first (line 714) | def first(self) -> bool: ... method isActive (line 715) | def isActive(self) -> bool: ... method isForwardOnly (line 716) | def isForwardOnly(self) -> bool: ... method isNull (line 718) | def isNull(self, name: str) -> bool: ... method isNull (line 720) | def isNull(self, field: int) -> bool: ... method isSelect (line 721) | def isSelect(self) -> bool: ... method isValid (line 722) | def isValid(self) -> bool: ... method last (line 723) | def last(self) -> bool: ... method lastError (line 724) | def lastError(self) -> QSqlError: ... method lastInsertId (line 725) | def lastInsertId(self) -> typing.Any: ... method lastQuery (line 726) | def lastQuery(self) -> str: ... method next (line 727) | def next(self) -> bool: ... method nextResult (line 728) | def nextResult(self) -> bool: ... method numRowsAffected (line 729) | def numRowsAffected(self) -> int: ... method numericalPrecisionPolicy (line 730) | def numericalPrecisionPolicy(self) -> QSql.NumericalPrecisionPolicy: ... method prepare (line 731) | def prepare(self, query: str) -> bool: ... method previous (line 732) | def previous(self) -> bool: ... method record (line 733) | def record(self) -> QSqlRecord: ... method result (line 734) | def result(self) -> QSqlResult: ... method seek (line 735) | def seek(self, i: int, relative: bool = ...) -> bool: ... method setForwardOnly (line 736) | def setForwardOnly(self, forward: bool) -> None: ... method setNumericalPrecisionPolicy (line 737) | def setNumericalPrecisionPolicy(self, precisionPolicy: QSql.NumericalP... method size (line 738) | def size(self) -> int: ... method value (line 740) | def value(self, name: str) -> typing.Any: ... method value (line 742) | def value(self, i: int) -> typing.Any: ... method __copy__ (line 743) | def __copy__(self) -> None: ... class QSqlQueryModel (line 745) | class QSqlQueryModel(PySide2.QtCore.QAbstractTableModel): method __init__ (line 747) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., column... method beginInsertColumns (line 748) | def beginInsertColumns(self, parent: PySide2.QtCore.QModelIndex, first... method beginInsertRows (line 749) | def beginInsertRows(self, parent: PySide2.QtCore.QModelIndex, first: i... method beginRemoveColumns (line 750) | def beginRemoveColumns(self, parent: PySide2.QtCore.QModelIndex, first... method beginRemoveRows (line 751) | def beginRemoveRows(self, parent: PySide2.QtCore.QModelIndex, first: i... method beginResetModel (line 752) | def beginResetModel(self) -> None: ... method canFetchMore (line 753) | def canFetchMore(self, parent: PySide2.QtCore.QModelIndex = ...) -> bo... method clear (line 754) | def clear(self) -> None: ... method columnCount (line 755) | def columnCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int... method data (line 756) | def data(self, item: PySide2.QtCore.QModelIndex, role: PySide2.QtCore.... method endInsertColumns (line 757) | def endInsertColumns(self) -> None: ... method endInsertRows (line 758) | def endInsertRows(self) -> None: ... method endRemoveColumns (line 759) | def endRemoveColumns(self) -> None: ... method endRemoveRows (line 760) | def endRemoveRows(self) -> None: ... method endResetModel (line 761) | def endResetModel(self) -> None: ... method fetchMore (line 762) | def fetchMore(self, parent: PySide2.QtCore.QModelIndex = ...) -> None:... method headerData (line 763) | def headerData(self, section: int, orientation: PySide2.QtCore.Qt.Orie... method indexInQuery (line 764) | def indexInQuery(self, item: PySide2.QtCore.QModelIndex) -> PySide2.Qt... method insertColumns (line 765) | def insertColumns(self, column: int, count: int, parent: PySide2.QtCor... method lastError (line 766) | def lastError(self) -> QSqlError: ... method query (line 767) | def query(self) -> QSqlQuery: ... method queryChange (line 768) | def queryChange(self) -> None: ... method record (line 770) | def record(self, row: int) -> QSqlRecord: ... method record (line 772) | def record(self) -> QSqlRecord: ... method removeColumns (line 773) | def removeColumns(self, column: int, count: int, parent: PySide2.QtCor... method roleNames (line 774) | def roleNames(self) -> dict[int, PySide2.QtCore.QByteArray]: ... method rowCount (line 775) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... method setHeaderData (line 776) | def setHeaderData(self, section: int, orientation: PySide2.QtCore.Qt.O... method setLastError (line 777) | def setLastError(self, error: QSqlError) -> None: ... method setQuery (line 779) | def setQuery(self, query: str, db: QSqlDatabase = ...) -> None: ... method setQuery (line 781) | def setQuery(self, query: QSqlQuery) -> None: ... class QSqlRecord (line 783) | class QSqlRecord(shiboken2.Object): method __init__ (line 785) | def __init__(self, other: QSqlRecord) -> None: ... method __init__ (line 787) | def __init__(self) -> None: ... method append (line 788) | def append(self, field: QSqlField) -> None: ... method clear (line 789) | def clear(self) -> None: ... method clearValues (line 790) | def clearValues(self) -> None: ... method contains (line 791) | def contains(self, name: str) -> bool: ... method count (line 792) | def count(self) -> int: ... method field (line 794) | def field(self, name: str) -> QSqlField: ... method field (line 796) | def field(self, i: int) -> QSqlField: ... method fieldName (line 797) | def fieldName(self, i: int) -> str: ... method indexOf (line 798) | def indexOf(self, name: str) -> int: ... method insert (line 799) | def insert(self, pos: int, field: QSqlField) -> None: ... method isEmpty (line 800) | def isEmpty(self) -> bool: ... method isGenerated (line 802) | def isGenerated(self, name: str) -> bool: ... method isGenerated (line 804) | def isGenerated(self, i: int) -> bool: ... method isNull (line 806) | def isNull(self, name: str) -> bool: ... method isNull (line 808) | def isNull(self, i: int) -> bool: ... method keyValues (line 809) | def keyValues(self, keyFields: QSqlRecord) -> QSqlRecord: ... method remove (line 810) | def remove(self, pos: int) -> None: ... method replace (line 811) | def replace(self, pos: int, field: QSqlField) -> None: ... method setGenerated (line 813) | def setGenerated(self, name: str, generated: bool) -> None: ... method setGenerated (line 815) | def setGenerated(self, i: int, generated: bool) -> None: ... method setNull (line 817) | def setNull(self, name: str) -> None: ... method setNull (line 819) | def setNull(self, i: int) -> None: ... method setValue (line 821) | def setValue(self, name: str, val: typing.Any) -> None: ... method setValue (line 823) | def setValue(self, i: int, val: typing.Any) -> None: ... method value (line 825) | def value(self, name: str) -> typing.Any: ... method value (line 827) | def value(self, i: int) -> typing.Any: ... method __copy__ (line 828) | def __copy__(self) -> None: ... method __eq__ (line 829) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 830) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 831) | def __gt__(self, other: object) -> bool: ... method __le__ (line 832) | def __le__(self, other: object) -> bool: ... method __lt__ (line 833) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 834) | def __ne__(self, other: object) -> bool: ... class QSqlRelation (line 836) | class QSqlRelation(shiboken2.Object): method __init__ (line 838) | def __init__(self, aTableName: str, indexCol: str, displayCol: str) ->... method __init__ (line 840) | def __init__(self, QSqlRelation: QSqlRelation) -> None: ... method __init__ (line 842) | def __init__(self) -> None: ... method displayColumn (line 843) | def displayColumn(self) -> str: ... method indexColumn (line 844) | def indexColumn(self) -> str: ... method isValid (line 845) | def isValid(self) -> bool: ... method swap (line 846) | def swap(self, other: QSqlRelation) -> None: ... method tableName (line 847) | def tableName(self) -> str: ... method __copy__ (line 848) | def __copy__(self) -> None: ... class QSqlRelationalDelegate (line 850) | class QSqlRelationalDelegate(PySide2.QtWidgets.QItemDelegate): method __init__ (line 852) | def __init__(self, aParent: PySide2.QtCore.QObject | None = ..., clipp... method createEditor (line 853) | def createEditor(self, aParent: PySide2.QtWidgets.QWidget, option: PyS... method setEditorData (line 854) | def setEditorData(self, editor: PySide2.QtWidgets.QWidget, index: PySi... method setModelData (line 855) | def setModelData(self, editor: PySide2.QtWidgets.QWidget, model: PySid... class QSqlRelationalTableModel (line 857) | class QSqlRelationalTableModel(QSqlTableModel): class JoinMode (line 858) | class JoinMode: method __init__ (line 864) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 865) | def __add__(self, other: typing.SupportsInt) -> QSqlRelationalTableM... method __and__ (line 866) | def __and__(self, other: typing.SupportsInt) -> QSqlRelationalTableM... method __bool__ (line 867) | def __bool__(self) -> bool: ... method __eq__ (line 868) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 869) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 870) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 871) | def __hash__(self) -> int: ... method __index__ (line 872) | def __index__(self) -> int: ... method __int__ (line 873) | def __int__(self) -> int: ... method __le__ (line 874) | def __le__(self, other: object) -> bool: ... method __lt__ (line 875) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 876) | def __mul__(self, other: typing.SupportsInt) -> QSqlRelationalTableM... method __ne__ (line 877) | def __ne__(self, other: object) -> bool: ... method __or__ (line 878) | def __or__(self, other: typing.SupportsInt) -> QSqlRelationalTableMo... method __pos__ (line 879) | def __pos__(self): ... method __radd__ (line 880) | def __radd__(self, other: typing.SupportsInt) -> QSqlRelationalTable... method __rand__ (line 881) | def __rand__(self, other: typing.SupportsInt) -> QSqlRelationalTable... method __rmul__ (line 882) | def __rmul__(self, other: typing.SupportsInt) -> QSqlRelationalTable... method __ror__ (line 883) | def __ror__(self, other: typing.SupportsInt) -> QSqlRelationalTableM... method __rsub__ (line 884) | def __rsub__(self, other: typing.SupportsInt) -> QSqlRelationalTable... method __rxor__ (line 885) | def __rxor__(self, other: typing.SupportsInt) -> QSqlRelationalTable... method __sub__ (line 886) | def __sub__(self, other: typing.SupportsInt) -> QSqlRelationalTableM... method __xor__ (line 887) | def __xor__(self, other: typing.SupportsInt) -> QSqlRelationalTableM... method __init__ (line 891) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., db: QS... method clear (line 892) | def clear(self) -> None: ... method data (line 893) | def data(self, item: PySide2.QtCore.QModelIndex, role: PySide2.QtCore.... method insertRowIntoTable (line 894) | def insertRowIntoTable(self, values: QSqlRecord) -> bool: ... method orderByClause (line 895) | def orderByClause(self) -> str: ... method relation (line 896) | def relation(self, column: int) -> QSqlRelation: ... method relationModel (line 897) | def relationModel(self, column: int) -> QSqlTableModel: ... method removeColumns (line 898) | def removeColumns(self, column: int, count: int, parent: PySide2.QtCor... method revertRow (line 899) | def revertRow(self, row: int) -> None: ... method select (line 900) | def select(self) -> bool: ... method selectStatement (line 901) | def selectStatement(self) -> str: ... method setData (line 902) | def setData(self, item: PySide2.QtCore.QModelIndex, value: typing.Any,... method setJoinMode (line 903) | def setJoinMode(self, joinMode: QSqlRelationalTableModel.JoinMode) -> ... method setRelation (line 904) | def setRelation(self, column: int, relation: QSqlRelation) -> None: ... method setTable (line 905) | def setTable(self, tableName: str) -> None: ... method updateRowInTable (line 906) | def updateRowInTable(self, row: int, values: QSqlRecord) -> bool: ... class QSqlResult (line 908) | class QSqlResult(shiboken2.Object): class BindingSyntax (line 909) | class BindingSyntax: method __init__ (line 915) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 916) | def __add__(self, other: typing.SupportsInt) -> QSqlResult.BindingSy... method __and__ (line 917) | def __and__(self, other: typing.SupportsInt) -> QSqlResult.BindingSy... method __bool__ (line 918) | def __bool__(self) -> bool: ... method __eq__ (line 919) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 920) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 921) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 922) | def __hash__(self) -> int: ... method __index__ (line 923) | def __index__(self) -> int: ... method __int__ (line 924) | def __int__(self) -> int: ... method __le__ (line 925) | def __le__(self, other: object) -> bool: ... method __lt__ (line 926) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 927) | def __mul__(self, other: typing.SupportsInt) -> QSqlResult.BindingSy... method __ne__ (line 928) | def __ne__(self, other: object) -> bool: ... method __or__ (line 929) | def __or__(self, other: typing.SupportsInt) -> QSqlResult.BindingSyn... method __pos__ (line 930) | def __pos__(self): ... method __radd__ (line 931) | def __radd__(self, other: typing.SupportsInt) -> QSqlResult.BindingS... method __rand__ (line 932) | def __rand__(self, other: typing.SupportsInt) -> QSqlResult.BindingS... method __rmul__ (line 933) | def __rmul__(self, other: typing.SupportsInt) -> QSqlResult.BindingS... method __ror__ (line 934) | def __ror__(self, other: typing.SupportsInt) -> QSqlResult.BindingSy... method __rsub__ (line 935) | def __rsub__(self, other: typing.SupportsInt) -> QSqlResult.BindingS... method __rxor__ (line 936) | def __rxor__(self, other: typing.SupportsInt) -> QSqlResult.BindingS... method __sub__ (line 937) | def __sub__(self, other: typing.SupportsInt) -> QSqlResult.BindingSy... method __xor__ (line 938) | def __xor__(self, other: typing.SupportsInt) -> QSqlResult.BindingSy... method __init__ (line 941) | def __init__(self, db: QSqlDriver) -> None: ... method addBindValue (line 942) | def addBindValue(self, val: typing.Any, type: QSql.ParamType | QSql.Pa... method at (line 943) | def at(self) -> int: ... method bindValue (line 945) | def bindValue(self, pos: int, val: typing.Any, type: QSql.ParamType | ... method bindValue (line 947) | def bindValue(self, placeholder: str, val: typing.Any, type: QSql.Para... method bindValueType (line 949) | def bindValueType(self, pos: int) -> QSql.ParamType | QSql.ParamTypeFl... method bindValueType (line 951) | def bindValueType(self, placeholder: str) -> QSql.ParamType | QSql.Par... method bindingSyntax (line 952) | def bindingSyntax(self) -> QSqlResult.BindingSyntax: ... method boundValue (line 954) | def boundValue(self, pos: int) -> typing.Any: ... method boundValue (line 956) | def boundValue(self, placeholder: str) -> typing.Any: ... method boundValueCount (line 957) | def boundValueCount(self) -> int: ... method boundValueName (line 958) | def boundValueName(self, pos: int) -> str: ... method boundValues (line 959) | def boundValues(self) -> list[typing.Any]: ... method clear (line 960) | def clear(self) -> None: ... method data (line 961) | def data(self, i: int) -> typing.Any: ... method detachFromResultSet (line 962) | def detachFromResultSet(self) -> None: ... method driver (line 963) | def driver(self) -> QSqlDriver: ... method execBatch (line 964) | def execBatch(self, arrayBind: bool = ...) -> bool: ... method exec_ (line 965) | def exec_(self) -> bool: ... method executedQuery (line 966) | def executedQuery(self) -> str: ... method fetch (line 967) | def fetch(self, i: int) -> bool: ... method fetchFirst (line 968) | def fetchFirst(self) -> bool: ... method fetchLast (line 969) | def fetchLast(self) -> bool: ... method fetchNext (line 970) | def fetchNext(self) -> bool: ... method fetchPrevious (line 971) | def fetchPrevious(self) -> bool: ... method handle (line 972) | def handle(self) -> typing.Any: ... method hasOutValues (line 973) | def hasOutValues(self) -> bool: ... method isActive (line 974) | def isActive(self) -> bool: ... method isForwardOnly (line 975) | def isForwardOnly(self) -> bool: ... method isNull (line 976) | def isNull(self, i: int) -> bool: ... method isSelect (line 977) | def isSelect(self) -> bool: ... method isValid (line 978) | def isValid(self) -> bool: ... method lastError (line 979) | def lastError(self) -> QSqlError: ... method lastInsertId (line 980) | def lastInsertId(self) -> typing.Any: ... method lastQuery (line 981) | def lastQuery(self) -> str: ... method nextResult (line 982) | def nextResult(self) -> bool: ... method numRowsAffected (line 983) | def numRowsAffected(self) -> int: ... method numericalPrecisionPolicy (line 984) | def numericalPrecisionPolicy(self) -> QSql.NumericalPrecisionPolicy: ... method prepare (line 985) | def prepare(self, query: str) -> bool: ... method record (line 986) | def record(self) -> QSqlRecord: ... method reset (line 987) | def reset(self, sqlquery: str) -> bool: ... method resetBindCount (line 988) | def resetBindCount(self) -> None: ... method savePrepare (line 989) | def savePrepare(self, sqlquery: str) -> bool: ... method setActive (line 990) | def setActive(self, a: bool) -> None: ... method setAt (line 991) | def setAt(self, at: int) -> None: ... method setForwardOnly (line 992) | def setForwardOnly(self, forward: bool) -> None: ... method setLastError (line 993) | def setLastError(self, e: QSqlError) -> None: ... method setNumericalPrecisionPolicy (line 994) | def setNumericalPrecisionPolicy(self, policy: QSql.NumericalPrecisionP... method setQuery (line 995) | def setQuery(self, query: str) -> None: ... method setSelect (line 996) | def setSelect(self, s: bool) -> None: ... method size (line 997) | def size(self) -> int: ... class QSqlTableModel (line 999) | class QSqlTableModel(QSqlQueryModel): class EditStrategy (line 1000) | class EditStrategy: method __init__ (line 1007) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1008) | def __add__(self, other: typing.SupportsInt) -> QSqlTableModel.EditS... method __and__ (line 1009) | def __and__(self, other: typing.SupportsInt) -> QSqlTableModel.EditS... method __bool__ (line 1010) | def __bool__(self) -> bool: ... method __eq__ (line 1011) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1012) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1013) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1014) | def __hash__(self) -> int: ... method __index__ (line 1015) | def __index__(self) -> int: ... method __int__ (line 1016) | def __int__(self) -> int: ... method __le__ (line 1017) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1018) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1019) | def __mul__(self, other: typing.SupportsInt) -> QSqlTableModel.EditS... method __ne__ (line 1020) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1021) | def __or__(self, other: typing.SupportsInt) -> QSqlTableModel.EditSt... method __pos__ (line 1022) | def __pos__(self): ... method __radd__ (line 1023) | def __radd__(self, other: typing.SupportsInt) -> QSqlTableModel.Edit... method __rand__ (line 1024) | def __rand__(self, other: typing.SupportsInt) -> QSqlTableModel.Edit... method __rmul__ (line 1025) | def __rmul__(self, other: typing.SupportsInt) -> QSqlTableModel.Edit... method __ror__ (line 1026) | def __ror__(self, other: typing.SupportsInt) -> QSqlTableModel.EditS... method __rsub__ (line 1027) | def __rsub__(self, other: typing.SupportsInt) -> QSqlTableModel.Edit... method __rxor__ (line 1028) | def __rxor__(self, other: typing.SupportsInt) -> QSqlTableModel.Edit... method __sub__ (line 1029) | def __sub__(self, other: typing.SupportsInt) -> QSqlTableModel.EditS... method __xor__ (line 1030) | def __xor__(self, other: typing.SupportsInt) -> QSqlTableModel.EditS... method __init__ (line 1039) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., db: QS... method clear (line 1040) | def clear(self) -> None: ... method data (line 1041) | def data(self, idx: PySide2.QtCore.QModelIndex, role: PySide2.QtCore.Q... method database (line 1042) | def database(self) -> QSqlDatabase: ... method deleteRowFromTable (line 1043) | def deleteRowFromTable(self, row: int) -> bool: ... method editStrategy (line 1044) | def editStrategy(self) -> QSqlTableModel.EditStrategy: ... method fieldIndex (line 1045) | def fieldIndex(self, fieldName: str) -> int: ... method filter (line 1046) | def filter(self) -> str: ... method flags (line 1047) | def flags(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.Q... method headerData (line 1048) | def headerData(self, section: int, orientation: PySide2.QtCore.Qt.Orie... method indexInQuery (line 1049) | def indexInQuery(self, item: PySide2.QtCore.QModelIndex) -> PySide2.Qt... method insertRecord (line 1050) | def insertRecord(self, row: int, record: QSqlRecord) -> bool: ... method insertRowIntoTable (line 1051) | def insertRowIntoTable(self, values: QSqlRecord) -> bool: ... method insertRows (line 1052) | def insertRows(self, row: int, count: int, parent: PySide2.QtCore.QMod... method isDirty (line 1054) | def isDirty(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isDirty (line 1056) | def isDirty(self) -> bool: ... method orderByClause (line 1057) | def orderByClause(self) -> str: ... method primaryKey (line 1058) | def primaryKey(self) -> QSqlIndex: ... method primaryValues (line 1059) | def primaryValues(self, row: int) -> QSqlRecord: ... method record (line 1061) | def record(self, row: int) -> QSqlRecord: ... method record (line 1063) | def record(self) -> QSqlRecord: ... method removeColumns (line 1064) | def removeColumns(self, column: int, count: int, parent: PySide2.QtCor... method removeRows (line 1065) | def removeRows(self, row: int, count: int, parent: PySide2.QtCore.QMod... method revert (line 1066) | def revert(self) -> None: ... method revertAll (line 1067) | def revertAll(self) -> None: ... method revertRow (line 1068) | def revertRow(self, row: int) -> None: ... method rowCount (line 1069) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... method select (line 1070) | def select(self) -> bool: ... method selectRow (line 1071) | def selectRow(self, row: int) -> bool: ... method selectStatement (line 1072) | def selectStatement(self) -> str: ... method setData (line 1073) | def setData(self, index: PySide2.QtCore.QModelIndex, value: typing.Any... method setEditStrategy (line 1074) | def setEditStrategy(self, strategy: QSqlTableModel.EditStrategy) -> No... method setFilter (line 1075) | def setFilter(self, filter: str) -> None: ... method setPrimaryKey (line 1076) | def setPrimaryKey(self, key: QSqlIndex) -> None: ... method setQuery (line 1077) | def setQuery(self, query: QSqlQuery) -> None: ... # type: ignore[over... method setRecord (line 1078) | def setRecord(self, row: int, record: QSqlRecord) -> bool: ... method setSort (line 1079) | def setSort(self, column: int, order: PySide2.QtCore.Qt.SortOrder) -> ... method setTable (line 1080) | def setTable(self, tableName: str) -> None: ... method sort (line 1081) | def sort(self, column: int, order: PySide2.QtCore.Qt.SortOrder) -> Non... method submit (line 1082) | def submit(self) -> bool: ... method submitAll (line 1083) | def submitAll(self) -> bool: ... method tableName (line 1084) | def tableName(self) -> str: ... method updateRowInTable (line 1085) | def updateRowInTable(self, row: int, values: QSqlRecord) -> bool: ... FILE: pyside/stubs/PySide2-stubs/QtSvg.pyi class QGraphicsSvgItem (line 11) | class QGraphicsSvgItem(PySide2.QtWidgets.QGraphicsObject): method __init__ (line 14) | def __init__(self, fileName: str, parentItem: PySide2.QtWidgets.QGraph... method __init__ (line 16) | def __init__(self, parentItem: PySide2.QtWidgets.QGraphicsItem | None ... method boundingRect (line 17) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method elementId (line 18) | def elementId(self) -> str: ... method isCachingEnabled (line 19) | def isCachingEnabled(self) -> bool: ... method maximumCacheSize (line 20) | def maximumCacheSize(self) -> PySide2.QtCore.QSize: ... method paint (line 21) | def paint(self, painter: PySide2.QtGui.QPainter, option: PySide2.QtWid... method renderer (line 22) | def renderer(self) -> QSvgRenderer: ... method setCachingEnabled (line 23) | def setCachingEnabled(self, arg__1: bool) -> None: ... method setElementId (line 24) | def setElementId(self, id: str) -> None: ... method setMaximumCacheSize (line 25) | def setMaximumCacheSize(self, size: PySide2.QtCore.QSize) -> None: ... method setSharedRenderer (line 26) | def setSharedRenderer(self, renderer: QSvgRenderer) -> None: ... method type (line 27) | def type(self) -> int: ... class QSvgGenerator (line 29) | class QSvgGenerator(PySide2.QtGui.QPaintDevice): method __init__ (line 30) | def __init__(self) -> None: ... method description (line 31) | def description(self) -> str: ... method fileName (line 32) | def fileName(self) -> str: ... method metric (line 33) | def metric(self, metric: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method outputDevice (line 34) | def outputDevice(self) -> PySide2.QtCore.QIODevice: ... method paintEngine (line 35) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method resolution (line 36) | def resolution(self) -> int: ... method setDescription (line 37) | def setDescription(self, description: str) -> None: ... method setFileName (line 38) | def setFileName(self, fileName: str) -> None: ... method setOutputDevice (line 39) | def setOutputDevice(self, outputDevice: PySide2.QtCore.QIODevice) -> N... method setResolution (line 40) | def setResolution(self, dpi: int) -> None: ... method setSize (line 41) | def setSize(self, size: PySide2.QtCore.QSize) -> None: ... method setTitle (line 42) | def setTitle(self, title: str) -> None: ... method setViewBox (line 44) | def setViewBox(self, viewBox: PySide2.QtCore.QRect) -> None: ... method setViewBox (line 46) | def setViewBox(self, viewBox: PySide2.QtCore.QRectF) -> None: ... method size (line 47) | def size(self) -> PySide2.QtCore.QSize: ... method title (line 48) | def title(self) -> str: ... method viewBox (line 49) | def viewBox(self) -> PySide2.QtCore.QRect: ... method viewBoxF (line 50) | def viewBoxF(self) -> PySide2.QtCore.QRectF: ... class QSvgRenderer (line 52) | class QSvgRenderer(PySide2.QtCore.QObject): method __init__ (line 56) | def __init__(self, filename: str, parent: PySide2.QtCore.QObject | Non... method __init__ (line 58) | def __init__(self, contents: PySide2.QtCore.QByteArray | bytes, parent... method __init__ (line 60) | def __init__(self, contents: PySide2.QtCore.QXmlStreamReader, parent: ... method __init__ (line 62) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., aspect... method animated (line 63) | def animated(self) -> bool: ... method animationDuration (line 64) | def animationDuration(self) -> int: ... method aspectRatioMode (line 65) | def aspectRatioMode(self) -> PySide2.QtCore.Qt.AspectRatioMode: ... method boundsOnElement (line 66) | def boundsOnElement(self, id: str) -> PySide2.QtCore.QRectF: ... method currentFrame (line 67) | def currentFrame(self) -> int: ... method defaultSize (line 68) | def defaultSize(self) -> PySide2.QtCore.QSize: ... method elementExists (line 69) | def elementExists(self, id: str) -> bool: ... method framesPerSecond (line 70) | def framesPerSecond(self) -> int: ... method isValid (line 71) | def isValid(self) -> bool: ... method load (line 73) | def load(self, filename: str) -> bool: ... method load (line 75) | def load(self, contents: PySide2.QtCore.QByteArray | bytes) -> bool: ... method load (line 77) | def load(self, contents: PySide2.QtCore.QXmlStreamReader) -> bool: ... method matrixForElement (line 78) | def matrixForElement(self, id: str) -> PySide2.QtGui.QMatrix: ... method render (line 80) | def render(self, p: PySide2.QtGui.QPainter, elementId: str, bounds: Py... method render (line 82) | def render(self, p: PySide2.QtGui.QPainter, bounds: PySide2.QtCore.QRe... method render (line 84) | def render(self, p: PySide2.QtGui.QPainter) -> None: ... method setAspectRatioMode (line 85) | def setAspectRatioMode(self, mode: PySide2.QtCore.Qt.AspectRatioMode) ... method setCurrentFrame (line 86) | def setCurrentFrame(self, arg__1: int) -> None: ... method setFramesPerSecond (line 87) | def setFramesPerSecond(self, num: int) -> None: ... method setViewBox (line 89) | def setViewBox(self, viewbox: PySide2.QtCore.QRect) -> None: ... method setViewBox (line 91) | def setViewBox(self, viewbox: PySide2.QtCore.QRectF) -> None: ... method transformForElement (line 92) | def transformForElement(self, id: str) -> PySide2.QtGui.QTransform: ... method viewBox (line 93) | def viewBox(self) -> PySide2.QtCore.QRect: ... method viewBoxF (line 94) | def viewBoxF(self) -> PySide2.QtCore.QRectF: ... class QSvgWidget (line 96) | class QSvgWidget(PySide2.QtWidgets.QWidget): method __init__ (line 99) | def __init__(self, file: str, parent: PySide2.QtWidgets.QWidget | None... method __init__ (line 101) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method load (line 103) | def load(self, file: str) -> None: ... method load (line 105) | def load(self, contents: PySide2.QtCore.QByteArray | bytes) -> None: ... method paintEvent (line 106) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method renderer (line 107) | def renderer(self) -> QSvgRenderer: ... method sizeHint (line 108) | def sizeHint(self) -> PySide2.QtCore.QSize: ... FILE: pyside/stubs/PySide2-stubs/QtTest.pyi class QTest (line 12) | class QTest(shiboken2.Object): class KeyAction (line 13) | class KeyAction: method __init__ (line 21) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 22) | def __add__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __and__ (line 23) | def __and__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __bool__ (line 24) | def __bool__(self) -> bool: ... method __eq__ (line 25) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 26) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 27) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 28) | def __hash__(self) -> int: ... method __index__ (line 29) | def __index__(self) -> int: ... method __int__ (line 30) | def __int__(self) -> int: ... method __le__ (line 31) | def __le__(self, other: object) -> bool: ... method __lt__ (line 32) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 33) | def __mul__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __ne__ (line 34) | def __ne__(self, other: object) -> bool: ... method __or__ (line 35) | def __or__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __pos__ (line 36) | def __pos__(self): ... method __radd__ (line 37) | def __radd__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __rand__ (line 38) | def __rand__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __rmul__ (line 39) | def __rmul__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __ror__ (line 40) | def __ror__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __rsub__ (line 41) | def __rsub__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __rxor__ (line 42) | def __rxor__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __sub__ (line 43) | def __sub__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... method __xor__ (line 44) | def __xor__(self, other: typing.SupportsInt) -> QTest.KeyAction: ... class MouseAction (line 46) | class MouseAction: method __init__ (line 55) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 56) | def __add__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __and__ (line 57) | def __and__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __bool__ (line 58) | def __bool__(self) -> bool: ... method __eq__ (line 59) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 60) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 61) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 62) | def __hash__(self) -> int: ... method __index__ (line 63) | def __index__(self) -> int: ... method __int__ (line 64) | def __int__(self) -> int: ... method __le__ (line 65) | def __le__(self, other: object) -> bool: ... method __lt__ (line 66) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 67) | def __mul__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __ne__ (line 68) | def __ne__(self, other: object) -> bool: ... method __or__ (line 69) | def __or__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __pos__ (line 70) | def __pos__(self): ... method __radd__ (line 71) | def __radd__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __rand__ (line 72) | def __rand__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __rmul__ (line 73) | def __rmul__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __ror__ (line 74) | def __ror__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __rsub__ (line 75) | def __rsub__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __rxor__ (line 76) | def __rxor__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __sub__ (line 77) | def __sub__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... method __xor__ (line 78) | def __xor__(self, other: typing.SupportsInt) -> QTest.MouseAction: ... class QBenchmarkMetric (line 80) | class QBenchmarkMetric: method __init__ (line 115) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 116) | def __add__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetr... method __and__ (line 117) | def __and__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetr... method __bool__ (line 118) | def __bool__(self) -> bool: ... method __eq__ (line 119) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 120) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 121) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 122) | def __hash__(self) -> int: ... method __index__ (line 123) | def __index__(self) -> int: ... method __int__ (line 124) | def __int__(self) -> int: ... method __le__ (line 125) | def __le__(self, other: object) -> bool: ... method __lt__ (line 126) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 127) | def __mul__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetr... method __ne__ (line 128) | def __ne__(self, other: object) -> bool: ... method __or__ (line 129) | def __or__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetri... method __pos__ (line 130) | def __pos__(self): ... method __radd__ (line 131) | def __radd__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMet... method __rand__ (line 132) | def __rand__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMet... method __rmul__ (line 133) | def __rmul__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMet... method __ror__ (line 134) | def __ror__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetr... method __rsub__ (line 135) | def __rsub__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMet... method __rxor__ (line 136) | def __rxor__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMet... method __sub__ (line 137) | def __sub__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetr... method __xor__ (line 138) | def __xor__(self, other: typing.SupportsInt) -> QTest.QBenchmarkMetr... class QTouchEventSequence (line 140) | class QTouchEventSequence(shiboken2.Object): method __init__ (line 142) | def __init__(cls, *args, **kwargs) -> None: ... method commit (line 143) | def commit(self, processEvents: bool = ...) -> None: ... method move (line 145) | def move(self, touchId: int, pt: PySide2.QtCore.QPoint, window: PySi... method move (line 147) | def move(self, touchId: int, pt: PySide2.QtCore.QPoint, widget: PySi... method press (line 149) | def press(self, touchId: int, pt: PySide2.QtCore.QPoint, window: PyS... method press (line 151) | def press(self, touchId: int, pt: PySide2.QtCore.QPoint, widget: PyS... method release (line 153) | def release(self, touchId: int, pt: PySide2.QtCore.QPoint, window: P... method release (line 155) | def release(self, touchId: int, pt: PySide2.QtCore.QPoint, widget: P... method stationary (line 156) | def stationary(self, touchId: int) -> QTest.QTouchEventSequence: ... class TestFailMode (line 158) | class TestFailMode: method __init__ (line 164) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 165) | def __add__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __and__ (line 166) | def __and__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __bool__ (line 167) | def __bool__(self) -> bool: ... method __eq__ (line 168) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 169) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 170) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 171) | def __hash__(self) -> int: ... method __index__ (line 172) | def __index__(self) -> int: ... method __int__ (line 173) | def __int__(self) -> int: ... method __le__ (line 174) | def __le__(self, other: object) -> bool: ... method __lt__ (line 175) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 176) | def __mul__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __ne__ (line 177) | def __ne__(self, other: object) -> bool: ... method __or__ (line 178) | def __or__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __pos__ (line 179) | def __pos__(self): ... method __radd__ (line 180) | def __radd__(self, other: typing.SupportsInt) -> QTest.TestFailMode:... method __rand__ (line 181) | def __rand__(self, other: typing.SupportsInt) -> QTest.TestFailMode:... method __rmul__ (line 182) | def __rmul__(self, other: typing.SupportsInt) -> QTest.TestFailMode:... method __ror__ (line 183) | def __ror__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __rsub__ (line 184) | def __rsub__(self, other: typing.SupportsInt) -> QTest.TestFailMode:... method __rxor__ (line 185) | def __rxor__(self, other: typing.SupportsInt) -> QTest.TestFailMode:... method __sub__ (line 186) | def __sub__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __xor__ (line 187) | def __xor__(self, other: typing.SupportsInt) -> QTest.TestFailMode: ... method __init__ (line 232) | def __init__(cls, *args, **kwargs) -> None: ... method addColumnInternal (line 234) | def addColumnInternal(id: int, name: bytes) -> None: ... method asciiToKey (line 236) | def asciiToKey(ascii: int) -> PySide2.QtCore.Qt.Key: ... method compare_ptr_helper (line 238) | def compare_ptr_helper(t1: int, t2: int, actual: bytes, expected: byte... method compare_string_helper (line 240) | def compare_string_helper(t1: bytes, t2: bytes, actual: bytes, expecte... method createTouchDevice (line 242) | def createTouchDevice(devType: PySide2.QtGui.QTouchDevice.DeviceType =... method currentAppName (line 244) | def currentAppName() -> bytes: ... method currentDataTag (line 246) | def currentDataTag() -> bytes: ... method currentTestFailed (line 248) | def currentTestFailed() -> bool: ... method currentTestFunction (line 250) | def currentTestFunction() -> bytes: ... method ignoreMessage (line 253) | def ignoreMessage(type: PySide2.QtCore.QtMsgType, messagePattern: PySi... method ignoreMessage (line 256) | def ignoreMessage(type: PySide2.QtCore.QtMsgType, message: bytes) -> N... method keyClick (line 259) | def keyClick(window: PySide2.QtGui.QWindow, key: PySide2.QtCore.Qt.Key... method keyClick (line 262) | def keyClick(window: PySide2.QtGui.QWindow, key: int, modifier: PySide... method keyClick (line 265) | def keyClick(widget: PySide2.QtWidgets.QWidget, key: PySide2.QtCore.Qt... method keyClick (line 268) | def keyClick(widget: PySide2.QtWidgets.QWidget, key: int, modifier: Py... method keyClicks (line 270) | def keyClicks(widget: PySide2.QtWidgets.QWidget, sequence: str, modifi... method keyEvent (line 273) | def keyEvent(action: QTest.KeyAction, window: PySide2.QtGui.QWindow, k... method keyEvent (line 276) | def keyEvent(action: QTest.KeyAction, window: PySide2.QtGui.QWindow, a... method keyEvent (line 279) | def keyEvent(action: QTest.KeyAction, widget: PySide2.QtWidgets.QWidge... method keyEvent (line 282) | def keyEvent(action: QTest.KeyAction, widget: PySide2.QtWidgets.QWidge... method keyPress (line 285) | def keyPress(window: PySide2.QtGui.QWindow, key: PySide2.QtCore.Qt.Key... method keyPress (line 288) | def keyPress(window: PySide2.QtGui.QWindow, key: int, modifier: PySide... method keyPress (line 291) | def keyPress(widget: PySide2.QtWidgets.QWidget, key: PySide2.QtCore.Qt... method keyPress (line 294) | def keyPress(widget: PySide2.QtWidgets.QWidget, key: int, modifier: Py... method keyRelease (line 297) | def keyRelease(window: PySide2.QtGui.QWindow, key: PySide2.QtCore.Qt.K... method keyRelease (line 300) | def keyRelease(window: PySide2.QtGui.QWindow, key: int, modifier: PySi... method keyRelease (line 303) | def keyRelease(widget: PySide2.QtWidgets.QWidget, key: PySide2.QtCore.... method keyRelease (line 306) | def keyRelease(widget: PySide2.QtWidgets.QWidget, key: int, modifier: ... method keySequence (line 309) | def keySequence(window: PySide2.QtGui.QWindow, keySequence: PySide2.Qt... method keySequence (line 312) | def keySequence(widget: PySide2.QtWidgets.QWidget, keySequence: PySide... method keyToAscii (line 314) | def keyToAscii(key: PySide2.QtCore.Qt.Key) -> int: ... method mouseClick (line 317) | def mouseClick(window: PySide2.QtGui.QWindow, button: PySide2.QtCore.Q... method mouseClick (line 320) | def mouseClick(widget: PySide2.QtWidgets.QWidget, button: PySide2.QtCo... method mouseDClick (line 323) | def mouseDClick(window: PySide2.QtGui.QWindow, button: PySide2.QtCore.... method mouseDClick (line 326) | def mouseDClick(widget: PySide2.QtWidgets.QWidget, button: PySide2.QtC... method mouseEvent (line 329) | def mouseEvent(action: QTest.MouseAction, window: PySide2.QtGui.QWindo... method mouseEvent (line 332) | def mouseEvent(action: QTest.MouseAction, widget: PySide2.QtWidgets.QW... method mouseMove (line 335) | def mouseMove(window: PySide2.QtGui.QWindow, pos: PySide2.QtCore.QPoin... method mouseMove (line 338) | def mouseMove(widget: PySide2.QtWidgets.QWidget, pos: PySide2.QtCore.Q... method mousePress (line 341) | def mousePress(window: PySide2.QtGui.QWindow, button: PySide2.QtCore.Q... method mousePress (line 344) | def mousePress(widget: PySide2.QtWidgets.QWidget, button: PySide2.QtCo... method mouseRelease (line 347) | def mouseRelease(window: PySide2.QtGui.QWindow, button: PySide2.QtCore... method mouseRelease (line 350) | def mouseRelease(widget: PySide2.QtWidgets.QWidget, button: PySide2.Qt... method qCleanup (line 352) | def qCleanup() -> None: ... method qElementData (line 354) | def qElementData(elementName: bytes, metaTypeId: int) -> int: ... method qExpectFail (line 356) | def qExpectFail(dataIndex: bytes, comment: bytes, mode: QTest.TestFail... method qFindTestData (line 359) | def qFindTestData(basepath: str, file: bytes | None = ..., line: int =... method qFindTestData (line 362) | def qFindTestData(basepath: bytes, file: bytes | None = ..., line: int... method qGlobalData (line 364) | def qGlobalData(tagName: bytes, typeId: int) -> int: ... method qRun (line 366) | def qRun() -> int: ... method qSkip (line 368) | def qSkip(message: bytes, file: bytes, line: int) -> None: ... method qWaitForWindowActive (line 370) | def qWaitForWindowActive(widget: PySide2.QtWidgets.QWidget, timeout: i... method qWaitForWindowExposed (line 372) | def qWaitForWindowExposed(widget: PySide2.QtWidgets.QWidget, timeout: ... method sendKeyEvent (line 375) | def sendKeyEvent(action: QTest.KeyAction, window: PySide2.QtGui.QWindo... method sendKeyEvent (line 378) | def sendKeyEvent(action: QTest.KeyAction, window: PySide2.QtGui.QWindo... method sendKeyEvent (line 381) | def sendKeyEvent(action: QTest.KeyAction, widget: PySide2.QtWidgets.QW... method sendKeyEvent (line 384) | def sendKeyEvent(action: QTest.KeyAction, widget: PySide2.QtWidgets.QW... method setBenchmarkResult (line 386) | def setBenchmarkResult(result: float, metric: QTest.QBenchmarkMetric) ... method setMainSourcePath (line 388) | def setMainSourcePath(file: bytes, builddir: bytes | None = ...) -> No... method simulateEvent (line 391) | def simulateEvent(window: PySide2.QtGui.QWindow, press: bool, code: in... method simulateEvent (line 394) | def simulateEvent(widget: PySide2.QtWidgets.QWidget, press: bool, code... method testObject (line 396) | def testObject() -> PySide2.QtCore.QObject: ... method toPrettyCString (line 398) | def toPrettyCString(unicode: bytes, length: int) -> bytes: ... method touchEvent (line 401) | def touchEvent(window: PySide2.QtGui.QWindow, device: PySide2.QtGui.QT... method touchEvent (line 404) | def touchEvent(widget: PySide2.QtWidgets.QWidget, device: PySide2.QtGu... FILE: pyside/stubs/PySide2-stubs/QtTextToSpeech.pyi class QTextToSpeech (line 11) | class QTextToSpeech(PySide2.QtCore.QObject): class State (line 12) | class State: method __init__ (line 20) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 21) | def __add__(self, other: typing.SupportsInt) -> QTextToSpeech.State:... method __and__ (line 22) | def __and__(self, other: typing.SupportsInt) -> QTextToSpeech.State:... method __bool__ (line 23) | def __bool__(self) -> bool: ... method __eq__ (line 24) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 25) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 26) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 27) | def __hash__(self) -> int: ... method __index__ (line 28) | def __index__(self) -> int: ... method __int__ (line 29) | def __int__(self) -> int: ... method __le__ (line 30) | def __le__(self, other: object) -> bool: ... method __lt__ (line 31) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 32) | def __mul__(self, other: typing.SupportsInt) -> QTextToSpeech.State:... method __ne__ (line 33) | def __ne__(self, other: object) -> bool: ... method __or__ (line 34) | def __or__(self, other: typing.SupportsInt) -> QTextToSpeech.State: ... method __pos__ (line 35) | def __pos__(self): ... method __radd__ (line 36) | def __radd__(self, other: typing.SupportsInt) -> QTextToSpeech.State... method __rand__ (line 37) | def __rand__(self, other: typing.SupportsInt) -> QTextToSpeech.State... method __rmul__ (line 38) | def __rmul__(self, other: typing.SupportsInt) -> QTextToSpeech.State... method __ror__ (line 39) | def __ror__(self, other: typing.SupportsInt) -> QTextToSpeech.State:... method __rsub__ (line 40) | def __rsub__(self, other: typing.SupportsInt) -> QTextToSpeech.State... method __rxor__ (line 41) | def __rxor__(self, other: typing.SupportsInt) -> QTextToSpeech.State... method __sub__ (line 42) | def __sub__(self, other: typing.SupportsInt) -> QTextToSpeech.State:... method __xor__ (line 43) | def __xor__(self, other: typing.SupportsInt) -> QTextToSpeech.State:... method __init__ (line 56) | def __init__(self, engine: str, parent: PySide2.QtCore.QObject | None ... method __init__ (line 58) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method availableEngines (line 60) | def availableEngines() -> list[str]: ... method availableLocales (line 61) | def availableLocales(self) -> list[PySide2.QtCore.QLocale]: ... method availableVoices (line 62) | def availableVoices(self) -> list[QVoice]: ... method locale (line 63) | def locale(self) -> PySide2.QtCore.QLocale: ... method pause (line 64) | def pause(self) -> None: ... method pitch (line 65) | def pitch(self) -> float: ... method rate (line 66) | def rate(self) -> float: ... method resume (line 67) | def resume(self) -> None: ... method say (line 68) | def say(self, text: str) -> None: ... method setLocale (line 69) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setPitch (line 70) | def setPitch(self, pitch: float) -> None: ... method setRate (line 71) | def setRate(self, rate: float) -> None: ... method setVoice (line 72) | def setVoice(self, voice: QVoice) -> None: ... method setVolume (line 73) | def setVolume(self, volume: float) -> None: ... method state (line 74) | def state(self) -> QTextToSpeech.State: ... method stop (line 75) | def stop(self) -> None: ... method voice (line 76) | def voice(self) -> QVoice: ... method volume (line 77) | def volume(self) -> float: ... class QTextToSpeechEngine (line 79) | class QTextToSpeechEngine(PySide2.QtCore.QObject): method __init__ (line 82) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method availableLocales (line 83) | def availableLocales(self) -> list[PySide2.QtCore.QLocale]: ... method availableVoices (line 84) | def availableVoices(self) -> list[QVoice]: ... method createVoice (line 86) | def createVoice(name: str, gender: QVoice.Gender, age: QVoice.Age, dat... method locale (line 87) | def locale(self) -> PySide2.QtCore.QLocale: ... method pause (line 88) | def pause(self) -> None: ... method pitch (line 89) | def pitch(self) -> float: ... method rate (line 90) | def rate(self) -> float: ... method resume (line 91) | def resume(self) -> None: ... method say (line 92) | def say(self, text: str) -> None: ... method setLocale (line 93) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> bool: ... method setPitch (line 94) | def setPitch(self, pitch: float) -> bool: ... method setRate (line 95) | def setRate(self, rate: float) -> bool: ... method setVoice (line 96) | def setVoice(self, voice: QVoice) -> bool: ... method setVolume (line 97) | def setVolume(self, volume: float) -> bool: ... method state (line 98) | def state(self) -> QTextToSpeech.State: ... method stop (line 99) | def stop(self) -> None: ... method voice (line 100) | def voice(self) -> QVoice: ... method voiceData (line 102) | def voiceData(voice: QVoice) -> typing.Any: ... method volume (line 103) | def volume(self) -> float: ... class QVoice (line 105) | class QVoice(shiboken2.Object): class Age (line 106) | class Age: method __init__ (line 115) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 116) | def __add__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __and__ (line 117) | def __and__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __bool__ (line 118) | def __bool__(self) -> bool: ... method __eq__ (line 119) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 120) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 121) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 122) | def __hash__(self) -> int: ... method __index__ (line 123) | def __index__(self) -> int: ... method __int__ (line 124) | def __int__(self) -> int: ... method __le__ (line 125) | def __le__(self, other: object) -> bool: ... method __lt__ (line 126) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 127) | def __mul__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __ne__ (line 128) | def __ne__(self, other: object) -> bool: ... method __or__ (line 129) | def __or__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __pos__ (line 130) | def __pos__(self): ... method __radd__ (line 131) | def __radd__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __rand__ (line 132) | def __rand__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __rmul__ (line 133) | def __rmul__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __ror__ (line 134) | def __ror__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __rsub__ (line 135) | def __rsub__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __rxor__ (line 136) | def __rxor__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __sub__ (line 137) | def __sub__(self, other: typing.SupportsInt) -> QVoice.Age: ... method __xor__ (line 138) | def __xor__(self, other: typing.SupportsInt) -> QVoice.Age: ... class Gender (line 140) | class Gender: method __init__ (line 147) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 148) | def __add__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __and__ (line 149) | def __and__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __bool__ (line 150) | def __bool__(self) -> bool: ... method __eq__ (line 151) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 152) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 153) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 154) | def __hash__(self) -> int: ... method __index__ (line 155) | def __index__(self) -> int: ... method __int__ (line 156) | def __int__(self) -> int: ... method __le__ (line 157) | def __le__(self, other: object) -> bool: ... method __lt__ (line 158) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 159) | def __mul__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __ne__ (line 160) | def __ne__(self, other: object) -> bool: ... method __or__ (line 161) | def __or__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __pos__ (line 162) | def __pos__(self): ... method __radd__ (line 163) | def __radd__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __rand__ (line 164) | def __rand__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __rmul__ (line 165) | def __rmul__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __ror__ (line 166) | def __ror__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __rsub__ (line 167) | def __rsub__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __rxor__ (line 168) | def __rxor__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __sub__ (line 169) | def __sub__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __xor__ (line 170) | def __xor__(self, other: typing.SupportsInt) -> QVoice.Gender: ... method __init__ (line 180) | def __init__(self, other: QVoice) -> None: ... method __init__ (line 182) | def __init__(self) -> None: ... method age (line 183) | def age(self) -> QVoice.Age: ... method ageName (line 185) | def ageName(age: QVoice.Age) -> str: ... method gender (line 186) | def gender(self) -> QVoice.Gender: ... method genderName (line 188) | def genderName(gender: QVoice.Gender) -> str: ... method name (line 189) | def name(self) -> str: ... method __copy__ (line 190) | def __copy__(self) -> None: ... method __eq__ (line 191) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 192) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 193) | def __gt__(self, other: object) -> bool: ... method __le__ (line 194) | def __le__(self, other: object) -> bool: ... method __lt__ (line 195) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 196) | def __ne__(self, other: object) -> bool: ... FILE: pyside/stubs/PySide2-stubs/QtUiTools.pyi class QUiLoader (line 11) | class QUiLoader(PySide2.QtCore.QObject): method __init__ (line 13) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method addPluginPath (line 14) | def addPluginPath(self, path: str) -> None: ... method availableLayouts (line 15) | def availableLayouts(self) -> list[str]: ... method availableWidgets (line 16) | def availableWidgets(self) -> list[str]: ... method clearPluginPaths (line 17) | def clearPluginPaths(self) -> None: ... method createAction (line 18) | def createAction(self, parent: PySide2.QtCore.QObject | None = ..., na... method createActionGroup (line 19) | def createActionGroup(self, parent: PySide2.QtCore.QObject | None = ..... method createLayout (line 20) | def createLayout(self, className: str, parent: PySide2.QtCore.QObject ... method createWidget (line 21) | def createWidget(self, className: str, parent: PySide2.QtWidgets.QWidg... method errorString (line 22) | def errorString(self) -> str: ... method isLanguageChangeEnabled (line 23) | def isLanguageChangeEnabled(self) -> bool: ... method isTranslationEnabled (line 24) | def isTranslationEnabled(self) -> bool: ... method load (line 26) | def load(self, device: PySide2.QtCore.QIODevice, parentWidget: PySide2... method load (line 28) | def load(self, arg__1: str, parentWidget: PySide2.QtWidgets.QWidget | ... method pluginPaths (line 29) | def pluginPaths(self) -> list[str]: ... method registerCustomWidget (line 30) | def registerCustomWidget(self, customWidgetType: object) -> None: ... method setLanguageChangeEnabled (line 31) | def setLanguageChangeEnabled(self, enabled: bool) -> None: ... method setTranslationEnabled (line 32) | def setTranslationEnabled(self, enabled: bool) -> None: ... method setWorkingDirectory (line 33) | def setWorkingDirectory(self, dir: PySide2.QtCore.QDir) -> None: ... method workingDirectory (line 34) | def workingDirectory(self) -> PySide2.QtCore.QDir: ... function loadUiType (line 36) | def loadUiType(uifile: str) -> typing.Any: ... FILE: pyside/stubs/PySide2-stubs/QtWebChannel.pyi class QWebChannel (line 10) | class QWebChannel(PySide2.QtCore.QObject): method __init__ (line 13) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., blockU... method blockUpdates (line 14) | def blockUpdates(self) -> bool: ... method connectTo (line 15) | def connectTo(self, transport: QWebChannelAbstractTransport) -> None: ... method deregisterObject (line 16) | def deregisterObject(self, object: PySide2.QtCore.QObject) -> None: ... method disconnectFrom (line 17) | def disconnectFrom(self, transport: QWebChannelAbstractTransport) -> N... method registerObject (line 18) | def registerObject(self, id: str, object: PySide2.QtCore.QObject) -> N... method registerObjects (line 19) | def registerObjects(self, objects: dict[str, PySide2.QtCore.QObject]) ... method registeredObjects (line 20) | def registeredObjects(self) -> dict[str, PySide2.QtCore.QObject]: ... method setBlockUpdates (line 21) | def setBlockUpdates(self, block: bool) -> None: ... class QWebChannelAbstractTransport (line 23) | class QWebChannelAbstractTransport(PySide2.QtCore.QObject): method __init__ (line 26) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method sendMessage (line 27) | def sendMessage(self, message: dict[str, PySide2.QtCore.QJsonValue]) -... FILE: pyside/stubs/PySide2-stubs/QtWebEngine.pyi class QtWebEngine (line 9) | class QtWebEngine(shiboken2.Object): method __init__ (line 11) | def __init__(cls, *args, **kwargs) -> None: ... method initialize (line 13) | def initialize() -> None: ... FILE: pyside/stubs/PySide2-stubs/QtWebEngineCore.pyi class QWebEngineCookieStore (line 12) | class QWebEngineCookieStore(PySide2.QtCore.QObject): method __init__ (line 17) | def __init__(cls, *args, cookieAdded: typing.Callable = ..., cookieRem... method deleteAllCookies (line 18) | def deleteAllCookies(self) -> None: ... method deleteCookie (line 19) | def deleteCookie(self, cookie: PySide2.QtNetwork.QNetworkCookie, origi... method deleteSessionCookies (line 20) | def deleteSessionCookies(self) -> None: ... method loadAllCookies (line 21) | def loadAllCookies(self) -> None: ... method setCookie (line 22) | def setCookie(self, cookie: PySide2.QtNetwork.QNetworkCookie, origin: ... class QWebEngineHttpRequest (line 24) | class QWebEngineHttpRequest(shiboken2.Object): class Method (line 25) | class Method: method __init__ (line 31) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 32) | def __add__(self, other: typing.SupportsInt) -> QWebEngineHttpReques... method __and__ (line 33) | def __and__(self, other: typing.SupportsInt) -> QWebEngineHttpReques... method __bool__ (line 34) | def __bool__(self) -> bool: ... method __eq__ (line 35) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 36) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 37) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 38) | def __hash__(self) -> int: ... method __index__ (line 39) | def __index__(self) -> int: ... method __int__ (line 40) | def __int__(self) -> int: ... method __le__ (line 41) | def __le__(self, other: object) -> bool: ... method __lt__ (line 42) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 43) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineHttpReques... method __ne__ (line 44) | def __ne__(self, other: object) -> bool: ... method __or__ (line 45) | def __or__(self, other: typing.SupportsInt) -> QWebEngineHttpRequest... method __pos__ (line 46) | def __pos__(self): ... method __radd__ (line 47) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineHttpReque... method __rand__ (line 48) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineHttpReque... method __rmul__ (line 49) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineHttpReque... method __ror__ (line 50) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineHttpReques... method __rsub__ (line 51) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineHttpReque... method __rxor__ (line 52) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineHttpReque... method __sub__ (line 53) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineHttpReques... method __xor__ (line 54) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineHttpReques... method __init__ (line 58) | def __init__(self, url: PySide2.QtCore.QUrl = ..., method: QWebEngineH... method __init__ (line 60) | def __init__(self, other: QWebEngineHttpRequest) -> None: ... method hasHeader (line 61) | def hasHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) -> ... method header (line 62) | def header(self, headerName: PySide2.QtCore.QByteArray | bytes) -> PyS... method headers (line 63) | def headers(self) -> list[PySide2.QtCore.QByteArray]: ... method method (line 64) | def method(self) -> QWebEngineHttpRequest.Method: ... method postData (line 65) | def postData(self) -> PySide2.QtCore.QByteArray: ... method postRequest (line 67) | def postRequest(url: PySide2.QtCore.QUrl, postData: dict[str, str]) ->... method setHeader (line 68) | def setHeader(self, headerName: PySide2.QtCore.QByteArray | bytes, val... method setMethod (line 69) | def setMethod(self, method: QWebEngineHttpRequest.Method) -> None: ... method setPostData (line 70) | def setPostData(self, postData: PySide2.QtCore.QByteArray | bytes) -> ... method setUrl (line 71) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method swap (line 72) | def swap(self, other: QWebEngineHttpRequest) -> None: ... method unsetHeader (line 73) | def unsetHeader(self, headerName: PySide2.QtCore.QByteArray | bytes) -... method url (line 74) | def url(self) -> PySide2.QtCore.QUrl: ... method __eq__ (line 75) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 76) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 77) | def __gt__(self, other: object) -> bool: ... method __le__ (line 78) | def __le__(self, other: object) -> bool: ... method __lt__ (line 79) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 80) | def __ne__(self, other: object) -> bool: ... class QWebEngineUrlRequestInfo (line 82) | class QWebEngineUrlRequestInfo(shiboken2.Object): class NavigationType (line 83) | class NavigationType: method __init__ (line 94) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 95) | def __add__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __and__ (line 96) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __bool__ (line 97) | def __bool__(self) -> bool: ... method __eq__ (line 98) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 99) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 100) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 101) | def __hash__(self) -> int: ... method __index__ (line 102) | def __index__(self) -> int: ... method __int__ (line 103) | def __int__(self) -> int: ... method __le__ (line 104) | def __le__(self, other: object) -> bool: ... method __lt__ (line 105) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 106) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __ne__ (line 107) | def __ne__(self, other: object) -> bool: ... method __or__ (line 108) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlRequestI... method __pos__ (line 109) | def __pos__(self): ... method __radd__ (line 110) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rand__ (line 111) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rmul__ (line 112) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __ror__ (line 113) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __rsub__ (line 114) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rxor__ (line 115) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __sub__ (line 116) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __xor__ (line 117) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... class ResourceType (line 119) | class ResourceType: method __init__ (line 145) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 146) | def __add__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __and__ (line 147) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __bool__ (line 148) | def __bool__(self) -> bool: ... method __eq__ (line 149) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 150) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 151) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 152) | def __hash__(self) -> int: ... method __index__ (line 153) | def __index__(self) -> int: ... method __int__ (line 154) | def __int__(self) -> int: ... method __le__ (line 155) | def __le__(self, other: object) -> bool: ... method __lt__ (line 156) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 157) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __ne__ (line 158) | def __ne__(self, other: object) -> bool: ... method __or__ (line 159) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlRequestI... method __pos__ (line 160) | def __pos__(self): ... method __radd__ (line 161) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rand__ (line 162) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rmul__ (line 163) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __ror__ (line 164) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __rsub__ (line 165) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rxor__ (line 166) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __sub__ (line 167) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __xor__ (line 168) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __init__ (line 199) | def __init__(cls, *args, **kwargs) -> None: ... method block (line 200) | def block(self, shouldBlock: bool) -> None: ... method changed (line 201) | def changed(self) -> bool: ... method firstPartyUrl (line 202) | def firstPartyUrl(self) -> PySide2.QtCore.QUrl: ... method initiator (line 203) | def initiator(self) -> PySide2.QtCore.QUrl: ... method navigationType (line 204) | def navigationType(self) -> QWebEngineUrlRequestInfo.NavigationType: ... method redirect (line 205) | def redirect(self, url: PySide2.QtCore.QUrl) -> None: ... method requestMethod (line 206) | def requestMethod(self) -> PySide2.QtCore.QByteArray: ... method requestUrl (line 207) | def requestUrl(self) -> PySide2.QtCore.QUrl: ... method resourceType (line 208) | def resourceType(self) -> QWebEngineUrlRequestInfo.ResourceType: ... method setHttpHeader (line 209) | def setHttpHeader(self, name: PySide2.QtCore.QByteArray | bytes, value... class QWebEngineUrlRequestInterceptor (line 211) | class QWebEngineUrlRequestInterceptor(PySide2.QtCore.QObject): method __init__ (line 213) | def __init__(self, p: PySide2.QtCore.QObject | None = ..., destroyed: ... method interceptRequest (line 214) | def interceptRequest(self, info: QWebEngineUrlRequestInfo) -> None: ... class QWebEngineUrlRequestJob (line 216) | class QWebEngineUrlRequestJob(PySide2.QtCore.QObject): class Error (line 217) | class Error: method __init__ (line 227) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 228) | def __add__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __and__ (line 229) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __bool__ (line 230) | def __bool__(self) -> bool: ... method __eq__ (line 231) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 232) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 233) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 234) | def __hash__(self) -> int: ... method __index__ (line 235) | def __index__(self) -> int: ... method __int__ (line 236) | def __int__(self) -> int: ... method __le__ (line 237) | def __le__(self, other: object) -> bool: ... method __lt__ (line 238) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 239) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __ne__ (line 240) | def __ne__(self, other: object) -> bool: ... method __or__ (line 241) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlRequestJ... method __pos__ (line 242) | def __pos__(self): ... method __radd__ (line 243) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rand__ (line 244) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rmul__ (line 245) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __ror__ (line 246) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __rsub__ (line 247) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __rxor__ (line 248) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlReques... method __sub__ (line 249) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __xor__ (line 250) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlRequest... method __init__ (line 259) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method fail (line 260) | def fail(self, error: QWebEngineUrlRequestJob.Error) -> None: ... method initiator (line 261) | def initiator(self) -> PySide2.QtCore.QUrl: ... method redirect (line 262) | def redirect(self, url: PySide2.QtCore.QUrl) -> None: ... method reply (line 263) | def reply(self, contentType: PySide2.QtCore.QByteArray | bytes, device... method requestHeaders (line 264) | def requestHeaders(self) -> dict[PySide2.QtCore.QByteArray, PySide2.Qt... method requestMethod (line 265) | def requestMethod(self) -> PySide2.QtCore.QByteArray: ... method requestUrl (line 266) | def requestUrl(self) -> PySide2.QtCore.QUrl: ... class QWebEngineUrlScheme (line 268) | class QWebEngineUrlScheme(shiboken2.Object): class Flag (line 269) | class Flag: method __init__ (line 281) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 282) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __bool__ (line 283) | def __bool__(self) -> bool: ... method __eq__ (line 284) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 285) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 286) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 287) | def __hash__(self) -> int: ... method __index__ (line 288) | def __index__(self) -> int: ... method __int__ (line 289) | def __int__(self) -> int: ... method __invert__ (line 290) | def __invert__(self) -> QWebEngineUrlScheme.Flags: ... method __le__ (line 291) | def __le__(self, other: object) -> bool: ... method __lt__ (line 292) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 293) | def __ne__(self, other: object) -> bool: ... method __or__ (line 294) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.F... method __rand__ (line 295) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __ror__ (line 296) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __rxor__ (line 297) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __xor__ (line 298) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... class Flags (line 300) | class Flags: method __init__ (line 302) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 303) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __bool__ (line 304) | def __bool__(self) -> bool: ... method __eq__ (line 305) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 306) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 307) | def __gt__(self, other: object) -> bool: ... method __index__ (line 308) | def __index__(self) -> int: ... method __int__ (line 309) | def __int__(self) -> int: ... method __invert__ (line 310) | def __invert__(self) -> QWebEngineUrlScheme.Flags: ... method __le__ (line 311) | def __le__(self, other: object) -> bool: ... method __lt__ (line 312) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 313) | def __ne__(self, other: object) -> bool: ... method __or__ (line 314) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.F... method __rand__ (line 315) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __ror__ (line 316) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __rxor__ (line 317) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __xor__ (line 318) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... class SpecialPort (line 320) | class SpecialPort: method __init__ (line 325) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 326) | def __add__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __and__ (line 327) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __bool__ (line 328) | def __bool__(self) -> bool: ... method __eq__ (line 329) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 330) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 331) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 332) | def __hash__(self) -> int: ... method __index__ (line 333) | def __index__(self) -> int: ... method __int__ (line 334) | def __int__(self) -> int: ... method __le__ (line 335) | def __le__(self, other: object) -> bool: ... method __lt__ (line 336) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 337) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __ne__ (line 338) | def __ne__(self, other: object) -> bool: ... method __or__ (line 339) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.S... method __pos__ (line 340) | def __pos__(self): ... method __radd__ (line 341) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __rand__ (line 342) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __rmul__ (line 343) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __ror__ (line 344) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __rsub__ (line 345) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __rxor__ (line 346) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __sub__ (line 347) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __xor__ (line 348) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... class Syntax (line 350) | class Syntax: method __init__ (line 358) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 359) | def __add__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __and__ (line 360) | def __and__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __bool__ (line 361) | def __bool__(self) -> bool: ... method __eq__ (line 362) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 363) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 364) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 365) | def __hash__(self) -> int: ... method __index__ (line 366) | def __index__(self) -> int: ... method __int__ (line 367) | def __int__(self) -> int: ... method __le__ (line 368) | def __le__(self, other: object) -> bool: ... method __lt__ (line 369) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 370) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __ne__ (line 371) | def __ne__(self, other: object) -> bool: ... method __or__ (line 372) | def __or__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.S... method __pos__ (line 373) | def __pos__(self): ... method __radd__ (line 374) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __rand__ (line 375) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __rmul__ (line 376) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __ror__ (line 377) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __rsub__ (line 378) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __rxor__ (line 379) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme... method __sub__ (line 380) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __xor__ (line 381) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineUrlScheme.... method __init__ (line 392) | def __init__(self, that: QWebEngineUrlScheme) -> None: ... method __init__ (line 394) | def __init__(self, name: PySide2.QtCore.QByteArray | bytes) -> None: ... method __init__ (line 396) | def __init__(self) -> None: ... method defaultPort (line 397) | def defaultPort(self) -> int: ... method flags (line 398) | def flags(self) -> QWebEngineUrlScheme.Flags | QWebEngineUrlScheme.Fla... method name (line 399) | def name(self) -> PySide2.QtCore.QByteArray: ... method registerScheme (line 401) | def registerScheme(scheme: QWebEngineUrlScheme) -> None: ... method schemeByName (line 403) | def schemeByName(name: PySide2.QtCore.QByteArray | bytes) -> QWebEngin... method setDefaultPort (line 404) | def setDefaultPort(self, newValue: int) -> None: ... method setFlags (line 405) | def setFlags(self, newValue: QWebEngineUrlScheme.Flags | QWebEngineUrl... method setName (line 406) | def setName(self, newValue: PySide2.QtCore.QByteArray | bytes) -> None... method setSyntax (line 407) | def setSyntax(self, newValue: QWebEngineUrlScheme.Syntax) -> None: ... method syntax (line 408) | def syntax(self) -> QWebEngineUrlScheme.Syntax: ... method __copy__ (line 409) | def __copy__(self) -> None: ... method __eq__ (line 410) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 411) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 412) | def __gt__(self, other: object) -> bool: ... method __le__ (line 413) | def __le__(self, other: object) -> bool: ... method __lt__ (line 414) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 415) | def __ne__(self, other: object) -> bool: ... class QWebEngineUrlSchemeHandler (line 417) | class QWebEngineUrlSchemeHandler(PySide2.QtCore.QObject): method __init__ (line 419) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method requestStarted (line 420) | def requestStarted(self, arg__1: QWebEngineUrlRequestJob) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtWebEngineWidgets.pyi class QWebEngineCertificateError (line 17) | class QWebEngineCertificateError(shiboken2.Object): class Error (line 18) | class Error: method __init__ (line 38) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 39) | def __add__(self, other: typing.SupportsInt) -> QWebEngineCertificat... method __and__ (line 40) | def __and__(self, other: typing.SupportsInt) -> QWebEngineCertificat... method __bool__ (line 41) | def __bool__(self) -> bool: ... method __eq__ (line 42) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 43) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 44) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 45) | def __hash__(self) -> int: ... method __index__ (line 46) | def __index__(self) -> int: ... method __int__ (line 47) | def __int__(self) -> int: ... method __le__ (line 48) | def __le__(self, other: object) -> bool: ... method __lt__ (line 49) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 50) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineCertificat... method __ne__ (line 51) | def __ne__(self, other: object) -> bool: ... method __or__ (line 52) | def __or__(self, other: typing.SupportsInt) -> QWebEngineCertificate... method __pos__ (line 53) | def __pos__(self): ... method __radd__ (line 54) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineCertifica... method __rand__ (line 55) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineCertifica... method __rmul__ (line 56) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineCertifica... method __ror__ (line 57) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineCertificat... method __rsub__ (line 58) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineCertifica... method __rxor__ (line 59) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineCertifica... method __sub__ (line 60) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineCertificat... method __xor__ (line 61) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineCertificat... method __init__ (line 79) | def __init__(self, error: int, url: PySide2.QtCore.QUrl, overridable: ... method __init__ (line 81) | def __init__(self, other: QWebEngineCertificateError) -> None: ... method answered (line 82) | def answered(self) -> bool: ... method certificateChain (line 83) | def certificateChain(self) -> list[PySide2.QtNetwork.QSslCertificate]:... method defer (line 84) | def defer(self) -> None: ... method deferred (line 85) | def deferred(self) -> bool: ... method error (line 86) | def error(self) -> QWebEngineCertificateError.Error: ... method errorDescription (line 87) | def errorDescription(self) -> str: ... method ignoreCertificateError (line 88) | def ignoreCertificateError(self) -> None: ... method isOverridable (line 89) | def isOverridable(self) -> bool: ... method rejectCertificate (line 90) | def rejectCertificate(self) -> None: ... method url (line 91) | def url(self) -> PySide2.QtCore.QUrl: ... class QWebEngineContextMenuData (line 93) | class QWebEngineContextMenuData(shiboken2.Object): class EditFlag (line 94) | class EditFlag: method __init__ (line 107) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 108) | def __and__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __bool__ (line 109) | def __bool__(self) -> bool: ... method __eq__ (line 110) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 111) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 112) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 113) | def __hash__(self) -> int: ... method __index__ (line 114) | def __index__(self) -> int: ... method __int__ (line 115) | def __int__(self) -> int: ... method __invert__ (line 116) | def __invert__(self) -> QWebEngineContextMenuData.EditFlags: ... method __le__ (line 117) | def __le__(self, other: object) -> bool: ... method __lt__ (line 118) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 119) | def __ne__(self, other: object) -> bool: ... method __or__ (line 120) | def __or__(self, other: typing.SupportsInt) -> QWebEngineContextMenu... method __rand__ (line 121) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __ror__ (line 122) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __rxor__ (line 123) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __xor__ (line 124) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineContextMen... class EditFlags (line 126) | class EditFlags: method __init__ (line 128) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 129) | def __and__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __bool__ (line 130) | def __bool__(self) -> bool: ... method __eq__ (line 131) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 132) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 133) | def __gt__(self, other: object) -> bool: ... method __index__ (line 134) | def __index__(self) -> int: ... method __int__ (line 135) | def __int__(self) -> int: ... method __invert__ (line 136) | def __invert__(self) -> QWebEngineContextMenuData.EditFlags: ... method __le__ (line 137) | def __le__(self, other: object) -> bool: ... method __lt__ (line 138) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 139) | def __ne__(self, other: object) -> bool: ... method __or__ (line 140) | def __or__(self, other: typing.SupportsInt) -> QWebEngineContextMenu... method __rand__ (line 141) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __ror__ (line 142) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __rxor__ (line 143) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __xor__ (line 144) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineContextMen... class MediaFlag (line 146) | class MediaFlag: method __init__ (line 160) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 161) | def __and__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __bool__ (line 162) | def __bool__(self) -> bool: ... method __eq__ (line 163) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 164) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 165) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 166) | def __hash__(self) -> int: ... method __index__ (line 167) | def __index__(self) -> int: ... method __int__ (line 168) | def __int__(self) -> int: ... method __invert__ (line 169) | def __invert__(self) -> QWebEngineContextMenuData.MediaFlags: ... method __le__ (line 170) | def __le__(self, other: object) -> bool: ... method __lt__ (line 171) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 172) | def __ne__(self, other: object) -> bool: ... method __or__ (line 173) | def __or__(self, other: typing.SupportsInt) -> QWebEngineContextMenu... method __rand__ (line 174) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __ror__ (line 175) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __rxor__ (line 176) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __xor__ (line 177) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineContextMen... class MediaFlags (line 179) | class MediaFlags: method __init__ (line 181) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 182) | def __and__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __bool__ (line 183) | def __bool__(self) -> bool: ... method __eq__ (line 184) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 185) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 186) | def __gt__(self, other: object) -> bool: ... method __index__ (line 187) | def __index__(self) -> int: ... method __int__ (line 188) | def __int__(self) -> int: ... method __invert__ (line 189) | def __invert__(self) -> QWebEngineContextMenuData.MediaFlags: ... method __le__ (line 190) | def __le__(self, other: object) -> bool: ... method __lt__ (line 191) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 192) | def __ne__(self, other: object) -> bool: ... method __or__ (line 193) | def __or__(self, other: typing.SupportsInt) -> QWebEngineContextMenu... method __rand__ (line 194) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __ror__ (line 195) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __rxor__ (line 196) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __xor__ (line 197) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineContextMen... class MediaType (line 199) | class MediaType: method __init__ (line 210) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 211) | def __add__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __and__ (line 212) | def __and__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __bool__ (line 213) | def __bool__(self) -> bool: ... method __eq__ (line 214) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 215) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 216) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 217) | def __hash__(self) -> int: ... method __index__ (line 218) | def __index__(self) -> int: ... method __int__ (line 219) | def __int__(self) -> int: ... method __le__ (line 220) | def __le__(self, other: object) -> bool: ... method __lt__ (line 221) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 222) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __ne__ (line 223) | def __ne__(self, other: object) -> bool: ... method __or__ (line 224) | def __or__(self, other: typing.SupportsInt) -> QWebEngineContextMenu... method __pos__ (line 225) | def __pos__(self): ... method __radd__ (line 226) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __rand__ (line 227) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __rmul__ (line 228) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __ror__ (line 229) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __rsub__ (line 230) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __rxor__ (line 231) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineContextMe... method __sub__ (line 232) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __xor__ (line 233) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineContextMen... method __init__ (line 261) | def __init__(self, other: QWebEngineContextMenuData) -> None: ... method __init__ (line 263) | def __init__(self) -> None: ... method editFlags (line 264) | def editFlags(self) -> QWebEngineContextMenuData.EditFlags | QWebEngin... method isContentEditable (line 265) | def isContentEditable(self) -> bool: ... method isValid (line 266) | def isValid(self) -> bool: ... method linkText (line 267) | def linkText(self) -> str: ... method linkUrl (line 268) | def linkUrl(self) -> PySide2.QtCore.QUrl: ... method mediaFlags (line 269) | def mediaFlags(self) -> QWebEngineContextMenuData.MediaFlags | QWebEng... method mediaType (line 270) | def mediaType(self) -> QWebEngineContextMenuData.MediaType: ... method mediaUrl (line 271) | def mediaUrl(self) -> PySide2.QtCore.QUrl: ... method misspelledWord (line 272) | def misspelledWord(self) -> str: ... method position (line 273) | def position(self) -> PySide2.QtCore.QPoint: ... method selectedText (line 274) | def selectedText(self) -> str: ... method spellCheckerSuggestions (line 275) | def spellCheckerSuggestions(self) -> list[str]: ... method __copy__ (line 276) | def __copy__(self) -> None: ... class QWebEngineDownloadItem (line 278) | class QWebEngineDownloadItem(PySide2.QtCore.QObject): class DownloadInterruptReason (line 279) | class DownloadInterruptReason: method __init__ (line 307) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 308) | def __add__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __and__ (line 309) | def __and__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __bool__ (line 310) | def __bool__(self) -> bool: ... method __eq__ (line 311) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 312) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 313) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 314) | def __hash__(self) -> int: ... method __index__ (line 315) | def __index__(self) -> int: ... method __int__ (line 316) | def __int__(self) -> int: ... method __le__ (line 317) | def __le__(self, other: object) -> bool: ... method __lt__ (line 318) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 319) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __ne__ (line 320) | def __ne__(self, other: object) -> bool: ... method __or__ (line 321) | def __or__(self, other: typing.SupportsInt) -> QWebEngineDownloadIte... method __pos__ (line 322) | def __pos__(self): ... method __radd__ (line 323) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rand__ (line 324) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rmul__ (line 325) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __ror__ (line 326) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __rsub__ (line 327) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rxor__ (line 328) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __sub__ (line 329) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __xor__ (line 330) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... class DownloadState (line 332) | class DownloadState: method __init__ (line 341) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 342) | def __add__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __and__ (line 343) | def __and__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __bool__ (line 344) | def __bool__(self) -> bool: ... method __eq__ (line 345) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 346) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 347) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 348) | def __hash__(self) -> int: ... method __index__ (line 349) | def __index__(self) -> int: ... method __int__ (line 350) | def __int__(self) -> int: ... method __le__ (line 351) | def __le__(self, other: object) -> bool: ... method __lt__ (line 352) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 353) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __ne__ (line 354) | def __ne__(self, other: object) -> bool: ... method __or__ (line 355) | def __or__(self, other: typing.SupportsInt) -> QWebEngineDownloadIte... method __pos__ (line 356) | def __pos__(self): ... method __radd__ (line 357) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rand__ (line 358) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rmul__ (line 359) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __ror__ (line 360) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __rsub__ (line 361) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rxor__ (line 362) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __sub__ (line 363) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __xor__ (line 364) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... class DownloadType (line 366) | class DownloadType: method __init__ (line 374) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 375) | def __add__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __and__ (line 376) | def __and__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __bool__ (line 377) | def __bool__(self) -> bool: ... method __eq__ (line 378) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 379) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 380) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 381) | def __hash__(self) -> int: ... method __index__ (line 382) | def __index__(self) -> int: ... method __int__ (line 383) | def __int__(self) -> int: ... method __le__ (line 384) | def __le__(self, other: object) -> bool: ... method __lt__ (line 385) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 386) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __ne__ (line 387) | def __ne__(self, other: object) -> bool: ... method __or__ (line 388) | def __or__(self, other: typing.SupportsInt) -> QWebEngineDownloadIte... method __pos__ (line 389) | def __pos__(self): ... method __radd__ (line 390) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rand__ (line 391) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rmul__ (line 392) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __ror__ (line 393) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __rsub__ (line 394) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rxor__ (line 395) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __sub__ (line 396) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __xor__ (line 397) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... class SavePageFormat (line 399) | class SavePageFormat: method __init__ (line 407) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 408) | def __add__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __and__ (line 409) | def __and__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __bool__ (line 410) | def __bool__(self) -> bool: ... method __eq__ (line 411) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 412) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 413) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 414) | def __hash__(self) -> int: ... method __index__ (line 415) | def __index__(self) -> int: ... method __int__ (line 416) | def __int__(self) -> int: ... method __le__ (line 417) | def __le__(self, other: object) -> bool: ... method __lt__ (line 418) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 419) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __ne__ (line 420) | def __ne__(self, other: object) -> bool: ... method __or__ (line 421) | def __or__(self, other: typing.SupportsInt) -> QWebEngineDownloadIte... method __pos__ (line 422) | def __pos__(self): ... method __radd__ (line 423) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rand__ (line 424) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rmul__ (line 425) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __ror__ (line 426) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __rsub__ (line 427) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __rxor__ (line 428) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineDownloadI... method __sub__ (line 429) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __xor__ (line 430) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineDownloadIt... method __init__ (line 474) | def __init__(cls, *args, destroyed: typing.Callable = ..., downloadPro... method accept (line 475) | def accept(self) -> None: ... method cancel (line 476) | def cancel(self) -> None: ... method downloadDirectory (line 477) | def downloadDirectory(self) -> str: ... method downloadFileName (line 478) | def downloadFileName(self) -> str: ... method id (line 479) | def id(self) -> int: ... method interruptReason (line 480) | def interruptReason(self) -> QWebEngineDownloadItem.DownloadInterruptR... method interruptReasonString (line 481) | def interruptReasonString(self) -> str: ... method isFinished (line 482) | def isFinished(self) -> bool: ... method isPaused (line 483) | def isPaused(self) -> bool: ... method isSavePageDownload (line 484) | def isSavePageDownload(self) -> bool: ... method mimeType (line 485) | def mimeType(self) -> str: ... method page (line 486) | def page(self) -> QWebEnginePage: ... method path (line 487) | def path(self) -> str: ... method pause (line 488) | def pause(self) -> None: ... method receivedBytes (line 489) | def receivedBytes(self) -> int: ... method resume (line 490) | def resume(self) -> None: ... method savePageFormat (line 491) | def savePageFormat(self) -> QWebEngineDownloadItem.SavePageFormat: ... method setDownloadDirectory (line 492) | def setDownloadDirectory(self, directory: str) -> None: ... method setDownloadFileName (line 493) | def setDownloadFileName(self, fileName: str) -> None: ... method setPath (line 494) | def setPath(self, path: str) -> None: ... method setSavePageFormat (line 495) | def setSavePageFormat(self, format: QWebEngineDownloadItem.SavePageFor... method state (line 496) | def state(self) -> QWebEngineDownloadItem.DownloadState: ... method suggestedFileName (line 497) | def suggestedFileName(self) -> str: ... method totalBytes (line 498) | def totalBytes(self) -> int: ... method type (line 499) | def type(self) -> QWebEngineDownloadItem.DownloadType: ... method url (line 500) | def url(self) -> PySide2.QtCore.QUrl: ... class QWebEngineFullScreenRequest (line 502) | class QWebEngineFullScreenRequest(shiboken2.Object): method __init__ (line 504) | def __init__(cls, *args, **kwargs) -> None: ... method accept (line 505) | def accept(self) -> None: ... method origin (line 506) | def origin(self) -> PySide2.QtCore.QUrl: ... method reject (line 507) | def reject(self) -> None: ... method toggleOn (line 508) | def toggleOn(self) -> bool: ... class QWebEngineHistory (line 510) | class QWebEngineHistory(shiboken2.Object): method __init__ (line 512) | def __init__(cls, *args, **kwargs) -> None: ... method back (line 513) | def back(self) -> None: ... method backItem (line 514) | def backItem(self) -> QWebEngineHistoryItem: ... method backItems (line 515) | def backItems(self, maxItems: int) -> list[QWebEngineHistoryItem]: ... method canGoBack (line 516) | def canGoBack(self) -> bool: ... method canGoForward (line 517) | def canGoForward(self) -> bool: ... method clear (line 518) | def clear(self) -> None: ... method count (line 519) | def count(self) -> int: ... method currentItem (line 520) | def currentItem(self) -> QWebEngineHistoryItem: ... method currentItemIndex (line 521) | def currentItemIndex(self) -> int: ... method forward (line 522) | def forward(self) -> None: ... method forwardItem (line 523) | def forwardItem(self) -> QWebEngineHistoryItem: ... method forwardItems (line 524) | def forwardItems(self, maxItems: int) -> list[QWebEngineHistoryItem]: ... method goToItem (line 525) | def goToItem(self, item: QWebEngineHistoryItem) -> None: ... method itemAt (line 526) | def itemAt(self, i: int) -> QWebEngineHistoryItem: ... method items (line 527) | def items(self) -> list[QWebEngineHistoryItem]: ... method __lshift__ (line 528) | def __lshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __rlshift__ (line 529) | def __rlshift__(self, other): ... method __rrshift__ (line 530) | def __rrshift__(self, other): ... method __rshift__ (line 531) | def __rshift__(self, stream: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QWebEngineHistoryItem (line 533) | class QWebEngineHistoryItem(shiboken2.Object): method __init__ (line 534) | def __init__(self, other: QWebEngineHistoryItem) -> None: ... method iconUrl (line 535) | def iconUrl(self) -> PySide2.QtCore.QUrl: ... method isValid (line 536) | def isValid(self) -> bool: ... method lastVisited (line 537) | def lastVisited(self) -> PySide2.QtCore.QDateTime: ... method originalUrl (line 538) | def originalUrl(self) -> PySide2.QtCore.QUrl: ... method swap (line 539) | def swap(self, other: QWebEngineHistoryItem) -> None: ... method title (line 540) | def title(self) -> str: ... method url (line 541) | def url(self) -> PySide2.QtCore.QUrl: ... method __copy__ (line 542) | def __copy__(self) -> None: ... class QWebEnginePage (line 544) | class QWebEnginePage(PySide2.QtCore.QObject): class Feature (line 545) | class Feature: method __init__ (line 557) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 558) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.Featu... method __and__ (line 559) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.Featu... method __bool__ (line 560) | def __bool__(self) -> bool: ... method __eq__ (line 561) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 562) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 563) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 564) | def __hash__(self) -> int: ... method __index__ (line 565) | def __index__(self) -> int: ... method __int__ (line 566) | def __int__(self) -> int: ... method __le__ (line 567) | def __le__(self, other: object) -> bool: ... method __lt__ (line 568) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 569) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.Featu... method __ne__ (line 570) | def __ne__(self, other: object) -> bool: ... method __or__ (line 571) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.Featur... method __pos__ (line 572) | def __pos__(self): ... method __radd__ (line 573) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.Feat... method __rand__ (line 574) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Feat... method __rmul__ (line 575) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.Feat... method __ror__ (line 576) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.Featu... method __rsub__ (line 577) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.Feat... method __rxor__ (line 578) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Feat... method __sub__ (line 579) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.Featu... method __xor__ (line 580) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.Featu... class FileSelectionMode (line 582) | class FileSelectionMode: method __init__ (line 588) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 589) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.FileS... method __and__ (line 590) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.FileS... method __bool__ (line 591) | def __bool__(self) -> bool: ... method __eq__ (line 592) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 593) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 594) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 595) | def __hash__(self) -> int: ... method __index__ (line 596) | def __index__(self) -> int: ... method __int__ (line 597) | def __int__(self) -> int: ... method __le__ (line 598) | def __le__(self, other: object) -> bool: ... method __lt__ (line 599) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 600) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.FileS... method __ne__ (line 601) | def __ne__(self, other: object) -> bool: ... method __or__ (line 602) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.FileSe... method __pos__ (line 603) | def __pos__(self): ... method __radd__ (line 604) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.File... method __rand__ (line 605) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.File... method __rmul__ (line 606) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.File... method __ror__ (line 607) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.FileS... method __rsub__ (line 608) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.File... method __rxor__ (line 609) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.File... method __sub__ (line 610) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.FileS... method __xor__ (line 611) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.FileS... class FindFlag (line 613) | class FindFlag: method __init__ (line 619) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 620) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.FindF... method __bool__ (line 621) | def __bool__(self) -> bool: ... method __eq__ (line 622) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 623) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 624) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 625) | def __hash__(self) -> int: ... method __index__ (line 626) | def __index__(self) -> int: ... method __int__ (line 627) | def __int__(self) -> int: ... method __invert__ (line 628) | def __invert__(self) -> QWebEnginePage.FindFlags: ... method __le__ (line 629) | def __le__(self, other: object) -> bool: ... method __lt__ (line 630) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 631) | def __ne__(self, other: object) -> bool: ... method __or__ (line 632) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.FindFl... method __rand__ (line 633) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Find... method __ror__ (line 634) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.FindF... method __rxor__ (line 635) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Find... method __xor__ (line 636) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.FindF... class FindFlags (line 638) | class FindFlags: method __init__ (line 640) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 641) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.FindF... method __bool__ (line 642) | def __bool__(self) -> bool: ... method __eq__ (line 643) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 644) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 645) | def __gt__(self, other: object) -> bool: ... method __index__ (line 646) | def __index__(self) -> int: ... method __int__ (line 647) | def __int__(self) -> int: ... method __invert__ (line 648) | def __invert__(self) -> QWebEnginePage.FindFlags: ... method __le__ (line 649) | def __le__(self, other: object) -> bool: ... method __lt__ (line 650) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 651) | def __ne__(self, other: object) -> bool: ... method __or__ (line 652) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.FindFl... method __rand__ (line 653) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Find... method __ror__ (line 654) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.FindF... method __rxor__ (line 655) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Find... method __xor__ (line 656) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.FindF... class JavaScriptConsoleMessageLevel (line 658) | class JavaScriptConsoleMessageLevel: method __init__ (line 665) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 666) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaS... method __and__ (line 667) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaS... method __bool__ (line 668) | def __bool__(self) -> bool: ... method __eq__ (line 669) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 670) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 671) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 672) | def __hash__(self) -> int: ... method __index__ (line 673) | def __index__(self) -> int: ... method __int__ (line 674) | def __int__(self) -> int: ... method __le__ (line 675) | def __le__(self, other: object) -> bool: ... method __lt__ (line 676) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 677) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaS... method __ne__ (line 678) | def __ne__(self, other: object) -> bool: ... method __or__ (line 679) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaSc... method __pos__ (line 680) | def __pos__(self): ... method __radd__ (line 681) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.Java... method __rand__ (line 682) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Java... method __rmul__ (line 683) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.Java... method __ror__ (line 684) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaS... method __rsub__ (line 685) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.Java... method __rxor__ (line 686) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Java... method __sub__ (line 687) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaS... method __xor__ (line 688) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.JavaS... class LifecycleState (line 690) | class LifecycleState: method __init__ (line 697) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 698) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifec... method __and__ (line 699) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifec... method __bool__ (line 700) | def __bool__(self) -> bool: ... method __eq__ (line 701) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 702) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 703) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 704) | def __hash__(self) -> int: ... method __index__ (line 705) | def __index__(self) -> int: ... method __int__ (line 706) | def __int__(self) -> int: ... method __le__ (line 707) | def __le__(self, other: object) -> bool: ... method __lt__ (line 708) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 709) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifec... method __ne__ (line 710) | def __ne__(self, other: object) -> bool: ... method __or__ (line 711) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifecy... method __pos__ (line 712) | def __pos__(self): ... method __radd__ (line 713) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.Life... method __rand__ (line 714) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Life... method __rmul__ (line 715) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.Life... method __ror__ (line 716) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifec... method __rsub__ (line 717) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.Life... method __rxor__ (line 718) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Life... method __sub__ (line 719) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifec... method __xor__ (line 720) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.Lifec... class NavigationType (line 722) | class NavigationType: method __init__ (line 733) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 734) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.Navig... method __and__ (line 735) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.Navig... method __bool__ (line 736) | def __bool__(self) -> bool: ... method __eq__ (line 737) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 738) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 739) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 740) | def __hash__(self) -> int: ... method __index__ (line 741) | def __index__(self) -> int: ... method __int__ (line 742) | def __int__(self) -> int: ... method __le__ (line 743) | def __le__(self, other: object) -> bool: ... method __lt__ (line 744) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 745) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.Navig... method __ne__ (line 746) | def __ne__(self, other: object) -> bool: ... method __or__ (line 747) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.Naviga... method __pos__ (line 748) | def __pos__(self): ... method __radd__ (line 749) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.Navi... method __rand__ (line 750) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Navi... method __rmul__ (line 751) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.Navi... method __ror__ (line 752) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.Navig... method __rsub__ (line 753) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.Navi... method __rxor__ (line 754) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Navi... method __sub__ (line 755) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.Navig... method __xor__ (line 756) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.Navig... class PermissionPolicy (line 758) | class PermissionPolicy: method __init__ (line 765) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 766) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.Permi... method __and__ (line 767) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.Permi... method __bool__ (line 768) | def __bool__(self) -> bool: ... method __eq__ (line 769) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 770) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 771) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 772) | def __hash__(self) -> int: ... method __index__ (line 773) | def __index__(self) -> int: ... method __int__ (line 774) | def __int__(self) -> int: ... method __le__ (line 775) | def __le__(self, other: object) -> bool: ... method __lt__ (line 776) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 777) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.Permi... method __ne__ (line 778) | def __ne__(self, other: object) -> bool: ... method __or__ (line 779) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.Permis... method __pos__ (line 780) | def __pos__(self): ... method __radd__ (line 781) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.Perm... method __rand__ (line 782) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Perm... method __rmul__ (line 783) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.Perm... method __ror__ (line 784) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.Permi... method __rsub__ (line 785) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.Perm... method __rxor__ (line 786) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Perm... method __sub__ (line 787) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.Permi... method __xor__ (line 788) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.Permi... class RenderProcessTerminationStatus (line 790) | class RenderProcessTerminationStatus: method __init__ (line 798) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 799) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.Rende... method __and__ (line 800) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.Rende... method __bool__ (line 801) | def __bool__(self) -> bool: ... method __eq__ (line 802) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 803) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 804) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 805) | def __hash__(self) -> int: ... method __index__ (line 806) | def __index__(self) -> int: ... method __int__ (line 807) | def __int__(self) -> int: ... method __le__ (line 808) | def __le__(self, other: object) -> bool: ... method __lt__ (line 809) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 810) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.Rende... method __ne__ (line 811) | def __ne__(self, other: object) -> bool: ... method __or__ (line 812) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.Render... method __pos__ (line 813) | def __pos__(self): ... method __radd__ (line 814) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.Rend... method __rand__ (line 815) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.Rend... method __rmul__ (line 816) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.Rend... method __ror__ (line 817) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.Rende... method __rsub__ (line 818) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.Rend... method __rxor__ (line 819) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.Rend... method __sub__ (line 820) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.Rende... method __xor__ (line 821) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.Rende... class WebAction (line 823) | class WebAction: method __init__ (line 874) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 875) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAc... method __and__ (line 876) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAc... method __bool__ (line 877) | def __bool__(self) -> bool: ... method __eq__ (line 878) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 879) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 880) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 881) | def __hash__(self) -> int: ... method __index__ (line 882) | def __index__(self) -> int: ... method __int__ (line 883) | def __int__(self) -> int: ... method __le__ (line 884) | def __le__(self, other: object) -> bool: ... method __lt__ (line 885) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 886) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAc... method __ne__ (line 887) | def __ne__(self, other: object) -> bool: ... method __or__ (line 888) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAct... method __pos__ (line 889) | def __pos__(self): ... method __radd__ (line 890) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.WebA... method __rand__ (line 891) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.WebA... method __rmul__ (line 892) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.WebA... method __ror__ (line 893) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAc... method __rsub__ (line 894) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.WebA... method __rxor__ (line 895) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.WebA... method __sub__ (line 896) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAc... method __xor__ (line 897) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.WebAc... class WebWindowType (line 899) | class WebWindowType: method __init__ (line 907) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 908) | def __add__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWi... method __and__ (line 909) | def __and__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWi... method __bool__ (line 910) | def __bool__(self) -> bool: ... method __eq__ (line 911) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 912) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 913) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 914) | def __hash__(self) -> int: ... method __index__ (line 915) | def __index__(self) -> int: ... method __int__ (line 916) | def __int__(self) -> int: ... method __le__ (line 917) | def __le__(self, other: object) -> bool: ... method __lt__ (line 918) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 919) | def __mul__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWi... method __ne__ (line 920) | def __ne__(self, other: object) -> bool: ... method __or__ (line 921) | def __or__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWin... method __pos__ (line 922) | def __pos__(self): ... method __radd__ (line 923) | def __radd__(self, other: typing.SupportsInt) -> QWebEnginePage.WebW... method __rand__ (line 924) | def __rand__(self, other: typing.SupportsInt) -> QWebEnginePage.WebW... method __rmul__ (line 925) | def __rmul__(self, other: typing.SupportsInt) -> QWebEnginePage.WebW... method __ror__ (line 926) | def __ror__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWi... method __rsub__ (line 927) | def __rsub__(self, other: typing.SupportsInt) -> QWebEnginePage.WebW... method __rxor__ (line 928) | def __rxor__(self, other: typing.SupportsInt) -> QWebEnginePage.WebW... method __sub__ (line 929) | def __sub__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWi... method __xor__ (line 930) | def __xor__(self, other: typing.SupportsInt) -> QWebEnginePage.WebWi... method __init__ (line 1044) | def __init__(self, profile: QWebEngineProfile, parent: PySide2.QtCore.... method __init__ (line 1046) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., audioM... method acceptNavigationRequest (line 1047) | def acceptNavigationRequest(self, url: PySide2.QtCore.QUrl, type: QWeb... method action (line 1048) | def action(self, action: QWebEnginePage.WebAction) -> PySide2.QtWidget... method backgroundColor (line 1049) | def backgroundColor(self) -> PySide2.QtGui.QColor: ... method certificateError (line 1050) | def certificateError(self, certificateError: QWebEngineCertificateErro... method chooseFiles (line 1051) | def chooseFiles(self, mode: QWebEnginePage.FileSelectionMode, oldFiles... method contentsSize (line 1052) | def contentsSize(self) -> PySide2.QtCore.QSizeF: ... method contextMenuData (line 1053) | def contextMenuData(self) -> QWebEngineContextMenuData: ... method createStandardContextMenu (line 1054) | def createStandardContextMenu(self) -> PySide2.QtWidgets.QMenu: ... method createWindow (line 1055) | def createWindow(self, type: QWebEnginePage.WebWindowType) -> QWebEngi... method devToolsPage (line 1056) | def devToolsPage(self) -> QWebEnginePage: ... method download (line 1057) | def download(self, url: PySide2.QtCore.QUrl, filename: str = ...) -> N... method event (line 1058) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method findText (line 1060) | def findText(self, arg__1: str, arg__2: QWebEnginePage.FindFlags | QWe... method findText (line 1062) | def findText(self, subString: str, options: QWebEnginePage.FindFlags |... method hasSelection (line 1063) | def hasSelection(self) -> bool: ... method history (line 1064) | def history(self) -> QWebEngineHistory: ... method icon (line 1065) | def icon(self) -> PySide2.QtGui.QIcon: ... method iconUrl (line 1066) | def iconUrl(self) -> PySide2.QtCore.QUrl: ... method inspectedPage (line 1067) | def inspectedPage(self) -> QWebEnginePage: ... method isAudioMuted (line 1068) | def isAudioMuted(self) -> bool: ... method isVisible (line 1069) | def isVisible(self) -> bool: ... method javaScriptAlert (line 1070) | def javaScriptAlert(self, securityOrigin: PySide2.QtCore.QUrl, msg: st... method javaScriptConfirm (line 1071) | def javaScriptConfirm(self, securityOrigin: PySide2.QtCore.QUrl, msg: ... method javaScriptConsoleMessage (line 1072) | def javaScriptConsoleMessage(self, level: QWebEnginePage.JavaScriptCon... method javaScriptPrompt (line 1073) | def javaScriptPrompt(self, securityOrigin: PySide2.QtCore.QUrl, msg: s... method lifecycleState (line 1074) | def lifecycleState(self) -> QWebEnginePage.LifecycleState: ... method load (line 1076) | def load(self, url: PySide2.QtCore.QUrl) -> None: ... method load (line 1078) | def load(self, request: PySide2.QtWebEngineCore.QWebEngineHttpRequest)... method print (line 1079) | def print(self, arg__1: PySide2.QtPrintSupport.QPrinter, arg__2: objec... method printToPdf (line 1081) | def printToPdf(self, filePath: str, layout: PySide2.QtGui.QPageLayout ... method printToPdf (line 1083) | def printToPdf(self, arg__1: object, arg__2: PySide2.QtGui.QPageLayout... method profile (line 1084) | def profile(self) -> QWebEngineProfile: ... method recentlyAudible (line 1085) | def recentlyAudible(self) -> bool: ... method recommendedState (line 1086) | def recommendedState(self) -> QWebEnginePage.LifecycleState: ... method renderProcessPid (line 1087) | def renderProcessPid(self) -> int: ... method replaceMisspelledWord (line 1088) | def replaceMisspelledWord(self, replacement: str) -> None: ... method requestedUrl (line 1089) | def requestedUrl(self) -> PySide2.QtCore.QUrl: ... method runJavaScript (line 1091) | def runJavaScript(self, arg__1: str, arg__2: int, arg__3: object) -> N... method runJavaScript (line 1093) | def runJavaScript(self, scriptSource: str, worldId: int) -> None: ... method runJavaScript (line 1095) | def runJavaScript(self, scriptSource: str) -> None: ... method save (line 1096) | def save(self, filePath: str, format: QWebEngineDownloadItem.SavePageF... method scripts (line 1097) | def scripts(self) -> QWebEngineScriptCollection: ... method scrollPosition (line 1098) | def scrollPosition(self) -> PySide2.QtCore.QPointF: ... method selectedText (line 1099) | def selectedText(self) -> str: ... method setAudioMuted (line 1100) | def setAudioMuted(self, muted: bool) -> None: ... method setBackgroundColor (line 1101) | def setBackgroundColor(self, color: PySide2.QtGui.QColor | PySide2.QtC... method setContent (line 1102) | def setContent(self, data: PySide2.QtCore.QByteArray | bytes, mimeType... method setDevToolsPage (line 1103) | def setDevToolsPage(self, page: QWebEnginePage) -> None: ... method setFeaturePermission (line 1104) | def setFeaturePermission(self, securityOrigin: PySide2.QtCore.QUrl, fe... method setHtml (line 1105) | def setHtml(self, html: str, baseUrl: PySide2.QtCore.QUrl = ...) -> No... method setInspectedPage (line 1106) | def setInspectedPage(self, page: QWebEnginePage) -> None: ... method setLifecycleState (line 1107) | def setLifecycleState(self, state: QWebEnginePage.LifecycleState) -> N... method setUrl (line 1108) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method setUrlRequestInterceptor (line 1109) | def setUrlRequestInterceptor(self, interceptor: PySide2.QtWebEngineCor... method setView (line 1110) | def setView(self, view: PySide2.QtWidgets.QWidget) -> None: ... method setVisible (line 1111) | def setVisible(self, visible: bool) -> None: ... method setWebChannel (line 1113) | def setWebChannel(self, arg__1: PySide2.QtWebChannel.QWebChannel, worl... method setWebChannel (line 1115) | def setWebChannel(self, arg__1: PySide2.QtWebChannel.QWebChannel) -> N... method setZoomFactor (line 1116) | def setZoomFactor(self, factor: float) -> None: ... method settings (line 1117) | def settings(self) -> QWebEngineSettings: ... method title (line 1118) | def title(self) -> str: ... method toHtml (line 1119) | def toHtml(self, arg__1: object) -> None: ... method toPlainText (line 1120) | def toPlainText(self, arg__1: object) -> None: ... method triggerAction (line 1121) | def triggerAction(self, action: QWebEnginePage.WebAction, checked: boo... method url (line 1122) | def url(self) -> PySide2.QtCore.QUrl: ... method view (line 1123) | def view(self) -> PySide2.QtWidgets.QWidget: ... method webChannel (line 1124) | def webChannel(self) -> PySide2.QtWebChannel.QWebChannel: ... method zoomFactor (line 1125) | def zoomFactor(self) -> float: ... class QWebEngineProfile (line 1127) | class QWebEngineProfile(PySide2.QtCore.QObject): class HttpCacheType (line 1128) | class HttpCacheType: method __init__ (line 1135) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1136) | def __add__(self, other: typing.SupportsInt) -> QWebEngineProfile.Ht... method __and__ (line 1137) | def __and__(self, other: typing.SupportsInt) -> QWebEngineProfile.Ht... method __bool__ (line 1138) | def __bool__(self) -> bool: ... method __eq__ (line 1139) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1140) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1141) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1142) | def __hash__(self) -> int: ... method __index__ (line 1143) | def __index__(self) -> int: ... method __int__ (line 1144) | def __int__(self) -> int: ... method __le__ (line 1145) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1146) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1147) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineProfile.Ht... method __ne__ (line 1148) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1149) | def __or__(self, other: typing.SupportsInt) -> QWebEngineProfile.Htt... method __pos__ (line 1150) | def __pos__(self): ... method __radd__ (line 1151) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineProfile.H... method __rand__ (line 1152) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineProfile.H... method __rmul__ (line 1153) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineProfile.H... method __ror__ (line 1154) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineProfile.Ht... method __rsub__ (line 1155) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineProfile.H... method __rxor__ (line 1156) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineProfile.H... method __sub__ (line 1157) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineProfile.Ht... method __xor__ (line 1158) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineProfile.Ht... class PersistentCookiesPolicy (line 1160) | class PersistentCookiesPolicy: method __init__ (line 1167) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1168) | def __add__(self, other: typing.SupportsInt) -> QWebEngineProfile.Pe... method __and__ (line 1169) | def __and__(self, other: typing.SupportsInt) -> QWebEngineProfile.Pe... method __bool__ (line 1170) | def __bool__(self) -> bool: ... method __eq__ (line 1171) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1172) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1173) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1174) | def __hash__(self) -> int: ... method __index__ (line 1175) | def __index__(self) -> int: ... method __int__ (line 1176) | def __int__(self) -> int: ... method __le__ (line 1177) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1178) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1179) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineProfile.Pe... method __ne__ (line 1180) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1181) | def __or__(self, other: typing.SupportsInt) -> QWebEngineProfile.Per... method __pos__ (line 1182) | def __pos__(self): ... method __radd__ (line 1183) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineProfile.P... method __rand__ (line 1184) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineProfile.P... method __rmul__ (line 1185) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineProfile.P... method __ror__ (line 1186) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineProfile.Pe... method __rsub__ (line 1187) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineProfile.P... method __rxor__ (line 1188) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineProfile.P... method __sub__ (line 1189) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineProfile.Pe... method __xor__ (line 1190) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineProfile.Pe... method __init__ (line 1200) | def __init__(self, name: str, parent: PySide2.QtCore.QObject | None = ... method __init__ (line 1202) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method cachePath (line 1203) | def cachePath(self) -> str: ... method clearAllVisitedLinks (line 1204) | def clearAllVisitedLinks(self) -> None: ... method clearHttpCache (line 1205) | def clearHttpCache(self) -> None: ... method clearVisitedLinks (line 1206) | def clearVisitedLinks(self, urls: typing.Iterable[PySide2.QtCore.QUrl]... method cookieStore (line 1207) | def cookieStore(self) -> PySide2.QtWebEngineCore.QWebEngineCookieStore... method defaultProfile (line 1209) | def defaultProfile() -> QWebEngineProfile: ... method downloadPath (line 1210) | def downloadPath(self) -> str: ... method httpAcceptLanguage (line 1211) | def httpAcceptLanguage(self) -> str: ... method httpCacheMaximumSize (line 1212) | def httpCacheMaximumSize(self) -> int: ... method httpCacheType (line 1213) | def httpCacheType(self) -> QWebEngineProfile.HttpCacheType: ... method httpUserAgent (line 1214) | def httpUserAgent(self) -> str: ... method installUrlSchemeHandler (line 1215) | def installUrlSchemeHandler(self, scheme: PySide2.QtCore.QByteArray | ... method isOffTheRecord (line 1216) | def isOffTheRecord(self) -> bool: ... method isSpellCheckEnabled (line 1217) | def isSpellCheckEnabled(self) -> bool: ... method isUsedForGlobalCertificateVerification (line 1218) | def isUsedForGlobalCertificateVerification(self) -> bool: ... method persistentCookiesPolicy (line 1219) | def persistentCookiesPolicy(self) -> QWebEngineProfile.PersistentCooki... method persistentStoragePath (line 1220) | def persistentStoragePath(self) -> str: ... method removeAllUrlSchemeHandlers (line 1221) | def removeAllUrlSchemeHandlers(self) -> None: ... method removeUrlScheme (line 1222) | def removeUrlScheme(self, scheme: PySide2.QtCore.QByteArray | bytes) -... method removeUrlSchemeHandler (line 1223) | def removeUrlSchemeHandler(self, arg__1: PySide2.QtWebEngineCore.QWebE... method scripts (line 1224) | def scripts(self) -> QWebEngineScriptCollection: ... method setCachePath (line 1225) | def setCachePath(self, path: str) -> None: ... method setDownloadPath (line 1226) | def setDownloadPath(self, path: str) -> None: ... method setHttpAcceptLanguage (line 1227) | def setHttpAcceptLanguage(self, httpAcceptLanguage: str) -> None: ... method setHttpCacheMaximumSize (line 1228) | def setHttpCacheMaximumSize(self, maxSize: int) -> None: ... method setHttpCacheType (line 1229) | def setHttpCacheType(self, arg__1: QWebEngineProfile.HttpCacheType) ->... method setHttpUserAgent (line 1230) | def setHttpUserAgent(self, userAgent: str) -> None: ... method setPersistentCookiesPolicy (line 1231) | def setPersistentCookiesPolicy(self, arg__1: QWebEngineProfile.Persist... method setPersistentStoragePath (line 1232) | def setPersistentStoragePath(self, path: str) -> None: ... method setRequestInterceptor (line 1233) | def setRequestInterceptor(self, interceptor: PySide2.QtWebEngineCore.Q... method setSpellCheckEnabled (line 1234) | def setSpellCheckEnabled(self, enabled: bool) -> None: ... method setSpellCheckLanguages (line 1235) | def setSpellCheckLanguages(self, languages: typing.Iterable[str]) -> N... method setUrlRequestInterceptor (line 1236) | def setUrlRequestInterceptor(self, interceptor: PySide2.QtWebEngineCor... method setUseForGlobalCertificateVerification (line 1237) | def setUseForGlobalCertificateVerification(self, enabled: bool = ...) ... method settings (line 1238) | def settings(self) -> QWebEngineSettings: ... method spellCheckLanguages (line 1239) | def spellCheckLanguages(self) -> list[str]: ... method storageName (line 1240) | def storageName(self) -> str: ... method urlSchemeHandler (line 1241) | def urlSchemeHandler(self, arg__1: PySide2.QtCore.QByteArray | bytes) ... method visitedLinksContainsUrl (line 1242) | def visitedLinksContainsUrl(self, url: PySide2.QtCore.QUrl) -> bool: ... class QWebEngineScript (line 1244) | class QWebEngineScript(shiboken2.Object): class InjectionPoint (line 1245) | class InjectionPoint: method __init__ (line 1252) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1253) | def __add__(self, other: typing.SupportsInt) -> QWebEngineScript.Inj... method __and__ (line 1254) | def __and__(self, other: typing.SupportsInt) -> QWebEngineScript.Inj... method __bool__ (line 1255) | def __bool__(self) -> bool: ... method __eq__ (line 1256) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1257) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1258) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1259) | def __hash__(self) -> int: ... method __index__ (line 1260) | def __index__(self) -> int: ... method __int__ (line 1261) | def __int__(self) -> int: ... method __le__ (line 1262) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1263) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1264) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineScript.Inj... method __ne__ (line 1265) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1266) | def __or__(self, other: typing.SupportsInt) -> QWebEngineScript.Inje... method __pos__ (line 1267) | def __pos__(self): ... method __radd__ (line 1268) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineScript.In... method __rand__ (line 1269) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineScript.In... method __rmul__ (line 1270) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineScript.In... method __ror__ (line 1271) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineScript.Inj... method __rsub__ (line 1272) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineScript.In... method __rxor__ (line 1273) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineScript.In... method __sub__ (line 1274) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineScript.Inj... method __xor__ (line 1275) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineScript.Inj... class ScriptWorldId (line 1277) | class ScriptWorldId: method __init__ (line 1284) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1285) | def __add__(self, other: typing.SupportsInt) -> QWebEngineScript.Scr... method __and__ (line 1286) | def __and__(self, other: typing.SupportsInt) -> QWebEngineScript.Scr... method __bool__ (line 1287) | def __bool__(self) -> bool: ... method __eq__ (line 1288) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1289) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1290) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1291) | def __hash__(self) -> int: ... method __index__ (line 1292) | def __index__(self) -> int: ... method __int__ (line 1293) | def __int__(self) -> int: ... method __le__ (line 1294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1295) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1296) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineScript.Scr... method __ne__ (line 1297) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1298) | def __or__(self, other: typing.SupportsInt) -> QWebEngineScript.Scri... method __pos__ (line 1299) | def __pos__(self): ... method __radd__ (line 1300) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineScript.Sc... method __rand__ (line 1301) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineScript.Sc... method __rmul__ (line 1302) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineScript.Sc... method __ror__ (line 1303) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineScript.Scr... method __rsub__ (line 1304) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineScript.Sc... method __rxor__ (line 1305) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineScript.Sc... method __sub__ (line 1306) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineScript.Scr... method __xor__ (line 1307) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineScript.Scr... method __init__ (line 1315) | def __init__(self, other: QWebEngineScript) -> None: ... method __init__ (line 1317) | def __init__(self) -> None: ... method injectionPoint (line 1318) | def injectionPoint(self) -> QWebEngineScript.InjectionPoint: ... method isNull (line 1319) | def isNull(self) -> bool: ... method name (line 1320) | def name(self) -> str: ... method runsOnSubFrames (line 1321) | def runsOnSubFrames(self) -> bool: ... method setInjectionPoint (line 1322) | def setInjectionPoint(self, arg__1: QWebEngineScript.InjectionPoint) -... method setName (line 1323) | def setName(self, arg__1: str) -> None: ... method setRunsOnSubFrames (line 1324) | def setRunsOnSubFrames(self, on: bool) -> None: ... method setSourceCode (line 1325) | def setSourceCode(self, arg__1: str) -> None: ... method setWorldId (line 1326) | def setWorldId(self, arg__1: int) -> None: ... method sourceCode (line 1327) | def sourceCode(self) -> str: ... method swap (line 1328) | def swap(self, other: QWebEngineScript) -> None: ... method worldId (line 1329) | def worldId(self) -> int: ... method __bool__ (line 1330) | def __bool__(self) -> bool: ... method __copy__ (line 1331) | def __copy__(self) -> None: ... method __eq__ (line 1332) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1333) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1334) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1335) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1336) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1337) | def __ne__(self, other: object) -> bool: ... class QWebEngineScriptCollection (line 1339) | class QWebEngineScriptCollection(shiboken2.Object): method __init__ (line 1341) | def __init__(cls, *args, **kwargs) -> None: ... method clear (line 1342) | def clear(self) -> None: ... method contains (line 1343) | def contains(self, value: QWebEngineScript) -> bool: ... method count (line 1344) | def count(self) -> int: ... method findScript (line 1345) | def findScript(self, name: str) -> QWebEngineScript: ... method findScripts (line 1346) | def findScripts(self, name: str) -> list[QWebEngineScript]: ... method insert (line 1348) | def insert(self, list: typing.Iterable[QWebEngineScript]) -> None: ... method insert (line 1350) | def insert(self, arg__1: QWebEngineScript) -> None: ... method isEmpty (line 1351) | def isEmpty(self) -> bool: ... method remove (line 1352) | def remove(self, arg__1: QWebEngineScript) -> bool: ... method size (line 1353) | def size(self) -> int: ... method toList (line 1354) | def toList(self) -> list[QWebEngineScript]: ... class QWebEngineSettings (line 1356) | class QWebEngineSettings(shiboken2.Object): class FontFamily (line 1357) | class FontFamily: method __init__ (line 1368) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1369) | def __add__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __and__ (line 1370) | def __and__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __bool__ (line 1371) | def __bool__(self) -> bool: ... method __eq__ (line 1372) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1373) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1374) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1375) | def __hash__(self) -> int: ... method __index__ (line 1376) | def __index__(self) -> int: ... method __int__ (line 1377) | def __int__(self) -> int: ... method __le__ (line 1378) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1379) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1380) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __ne__ (line 1381) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1382) | def __or__(self, other: typing.SupportsInt) -> QWebEngineSettings.Fo... method __pos__ (line 1383) | def __pos__(self): ... method __radd__ (line 1384) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rand__ (line 1385) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rmul__ (line 1386) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __ror__ (line 1387) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __rsub__ (line 1388) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rxor__ (line 1389) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __sub__ (line 1390) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __xor__ (line 1391) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... class FontSize (line 1393) | class FontSize: method __init__ (line 1401) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1402) | def __add__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __and__ (line 1403) | def __and__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __bool__ (line 1404) | def __bool__(self) -> bool: ... method __eq__ (line 1405) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1406) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1407) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1408) | def __hash__(self) -> int: ... method __index__ (line 1409) | def __index__(self) -> int: ... method __int__ (line 1410) | def __int__(self) -> int: ... method __le__ (line 1411) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1412) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1413) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __ne__ (line 1414) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1415) | def __or__(self, other: typing.SupportsInt) -> QWebEngineSettings.Fo... method __pos__ (line 1416) | def __pos__(self): ... method __radd__ (line 1417) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rand__ (line 1418) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rmul__ (line 1419) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __ror__ (line 1420) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __rsub__ (line 1421) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rxor__ (line 1422) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __sub__ (line 1423) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... method __xor__ (line 1424) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineSettings.F... class UnknownUrlSchemePolicy (line 1426) | class UnknownUrlSchemePolicy: method __init__ (line 1433) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1434) | def __add__(self, other: typing.SupportsInt) -> QWebEngineSettings.U... method __and__ (line 1435) | def __and__(self, other: typing.SupportsInt) -> QWebEngineSettings.U... method __bool__ (line 1436) | def __bool__(self) -> bool: ... method __eq__ (line 1437) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1438) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1439) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1440) | def __hash__(self) -> int: ... method __index__ (line 1441) | def __index__(self) -> int: ... method __int__ (line 1442) | def __int__(self) -> int: ... method __le__ (line 1443) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1444) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1445) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineSettings.U... method __ne__ (line 1446) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1447) | def __or__(self, other: typing.SupportsInt) -> QWebEngineSettings.Un... method __pos__ (line 1448) | def __pos__(self): ... method __radd__ (line 1449) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rand__ (line 1450) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rmul__ (line 1451) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __ror__ (line 1452) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineSettings.U... method __rsub__ (line 1453) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rxor__ (line 1454) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __sub__ (line 1455) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineSettings.U... method __xor__ (line 1456) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineSettings.U... class WebAttribute (line 1458) | class WebAttribute: method __init__ (line 1493) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1494) | def __add__(self, other: typing.SupportsInt) -> QWebEngineSettings.W... method __and__ (line 1495) | def __and__(self, other: typing.SupportsInt) -> QWebEngineSettings.W... method __bool__ (line 1496) | def __bool__(self) -> bool: ... method __eq__ (line 1497) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1498) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1499) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1500) | def __hash__(self) -> int: ... method __index__ (line 1501) | def __index__(self) -> int: ... method __int__ (line 1502) | def __int__(self) -> int: ... method __le__ (line 1503) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1504) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1505) | def __mul__(self, other: typing.SupportsInt) -> QWebEngineSettings.W... method __ne__ (line 1506) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1507) | def __or__(self, other: typing.SupportsInt) -> QWebEngineSettings.We... method __pos__ (line 1508) | def __pos__(self): ... method __radd__ (line 1509) | def __radd__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rand__ (line 1510) | def __rand__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rmul__ (line 1511) | def __rmul__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __ror__ (line 1512) | def __ror__(self, other: typing.SupportsInt) -> QWebEngineSettings.W... method __rsub__ (line 1513) | def __rsub__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __rxor__ (line 1514) | def __rxor__(self, other: typing.SupportsInt) -> QWebEngineSettings.... method __sub__ (line 1515) | def __sub__(self, other: typing.SupportsInt) -> QWebEngineSettings.W... method __xor__ (line 1516) | def __xor__(self, other: typing.SupportsInt) -> QWebEngineSettings.W... method __init__ (line 1563) | def __init__(cls, *args, **kwargs) -> None: ... method defaultSettings (line 1565) | def defaultSettings() -> QWebEngineSettings: ... method defaultTextEncoding (line 1566) | def defaultTextEncoding(self) -> str: ... method fontFamily (line 1567) | def fontFamily(self, which: QWebEngineSettings.FontFamily) -> str: ... method fontSize (line 1568) | def fontSize(self, type: QWebEngineSettings.FontSize) -> int: ... method globalSettings (line 1570) | def globalSettings() -> QWebEngineSettings: ... method resetAttribute (line 1571) | def resetAttribute(self, attr: QWebEngineSettings.WebAttribute) -> Non... method resetFontFamily (line 1572) | def resetFontFamily(self, which: QWebEngineSettings.FontFamily) -> Non... method resetFontSize (line 1573) | def resetFontSize(self, type: QWebEngineSettings.FontSize) -> None: ... method resetUnknownUrlSchemePolicy (line 1574) | def resetUnknownUrlSchemePolicy(self) -> None: ... method setAttribute (line 1575) | def setAttribute(self, attr: QWebEngineSettings.WebAttribute, on: bool... method setDefaultTextEncoding (line 1576) | def setDefaultTextEncoding(self, encoding: str) -> None: ... method setFontFamily (line 1577) | def setFontFamily(self, which: QWebEngineSettings.FontFamily, family: ... method setFontSize (line 1578) | def setFontSize(self, type: QWebEngineSettings.FontSize, size: int) ->... method setUnknownUrlSchemePolicy (line 1579) | def setUnknownUrlSchemePolicy(self, policy: QWebEngineSettings.Unknown... method testAttribute (line 1580) | def testAttribute(self, attr: QWebEngineSettings.WebAttribute) -> bool... method unknownUrlSchemePolicy (line 1581) | def unknownUrlSchemePolicy(self) -> QWebEngineSettings.UnknownUrlSchem... class QWebEngineView (line 1583) | class QWebEngineView(PySide2.QtWidgets.QWidget): method __init__ (line 1594) | def __init__(self, parent: PySide2.QtWidgets.QWidget | None = ..., acc... method back (line 1595) | def back(self) -> None: ... method closeEvent (line 1596) | def closeEvent(self, arg__1: PySide2.QtGui.QCloseEvent) -> None: ... method contextMenuEvent (line 1597) | def contextMenuEvent(self, arg__1: PySide2.QtGui.QContextMenuEvent) ->... method createWindow (line 1598) | def createWindow(self, type: QWebEnginePage.WebWindowType) -> QWebEngi... method dragEnterEvent (line 1599) | def dragEnterEvent(self, e: PySide2.QtGui.QDragEnterEvent) -> None: ... method dragLeaveEvent (line 1600) | def dragLeaveEvent(self, e: PySide2.QtGui.QDragLeaveEvent) -> None: ... method dragMoveEvent (line 1601) | def dragMoveEvent(self, e: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 1602) | def dropEvent(self, e: PySide2.QtGui.QDropEvent) -> None: ... method event (line 1603) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method findText (line 1605) | def findText(self, arg__1: str, arg__2: QWebEnginePage.FindFlags | QWe... method findText (line 1607) | def findText(self, subString: str, options: QWebEnginePage.FindFlags |... method forward (line 1608) | def forward(self) -> None: ... method hasSelection (line 1609) | def hasSelection(self) -> bool: ... method hideEvent (line 1610) | def hideEvent(self, arg__1: PySide2.QtGui.QHideEvent) -> None: ... method history (line 1611) | def history(self) -> QWebEngineHistory: ... method icon (line 1612) | def icon(self) -> PySide2.QtGui.QIcon: ... method iconUrl (line 1613) | def iconUrl(self) -> PySide2.QtCore.QUrl: ... method load (line 1615) | def load(self, url: PySide2.QtCore.QUrl) -> None: ... method load (line 1617) | def load(self, request: PySide2.QtWebEngineCore.QWebEngineHttpRequest)... method page (line 1618) | def page(self) -> QWebEnginePage: ... method pageAction (line 1619) | def pageAction(self, action: QWebEnginePage.WebAction) -> PySide2.QtWi... method reload (line 1620) | def reload(self) -> None: ... method selectedText (line 1621) | def selectedText(self) -> str: ... method setContent (line 1622) | def setContent(self, data: PySide2.QtCore.QByteArray | bytes, mimeType... method setHtml (line 1623) | def setHtml(self, html: str, baseUrl: PySide2.QtCore.QUrl = ...) -> No... method setPage (line 1624) | def setPage(self, page: QWebEnginePage) -> None: ... method setUrl (line 1625) | def setUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method setZoomFactor (line 1626) | def setZoomFactor(self, factor: float) -> None: ... method settings (line 1627) | def settings(self) -> QWebEngineSettings: ... method showEvent (line 1628) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 1629) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method stop (line 1630) | def stop(self) -> None: ... method title (line 1631) | def title(self) -> str: ... method triggerPageAction (line 1632) | def triggerPageAction(self, action: QWebEnginePage.WebAction, checked:... method url (line 1633) | def url(self) -> PySide2.QtCore.QUrl: ... method zoomFactor (line 1634) | def zoomFactor(self) -> float: ... FILE: pyside/stubs/PySide2-stubs/QtWebSockets.pyi class QMaskGenerator (line 12) | class QMaskGenerator(PySide2.QtCore.QObject): method __init__ (line 16) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method nextMask (line 17) | def nextMask(self) -> int: ... method seed (line 18) | def seed(self) -> bool: ... class QWebSocket (line 20) | class QWebSocket(PySide2.QtCore.QObject): method __init__ (line 37) | def __init__(self, origin: str = ..., version: QWebSocketProtocol.Vers... method abort (line 38) | def abort(self) -> None: ... method bytesToWrite (line 39) | def bytesToWrite(self) -> int: ... method close (line 40) | def close(self, closeCode: QWebSocketProtocol.CloseCode = ..., reason:... method closeCode (line 41) | def closeCode(self) -> QWebSocketProtocol.CloseCode: ... method closeReason (line 42) | def closeReason(self) -> str: ... method errorString (line 43) | def errorString(self) -> str: ... method flush (line 44) | def flush(self) -> bool: ... method isValid (line 45) | def isValid(self) -> bool: ... method localAddress (line 46) | def localAddress(self) -> PySide2.QtNetwork.QHostAddress: ... method localPort (line 47) | def localPort(self) -> int: ... method maskGenerator (line 48) | def maskGenerator(self) -> QMaskGenerator: ... method maxAllowedIncomingFrameSize (line 49) | def maxAllowedIncomingFrameSize(self) -> int: ... method maxAllowedIncomingMessageSize (line 50) | def maxAllowedIncomingMessageSize(self) -> int: ... method maxIncomingFrameSize (line 52) | def maxIncomingFrameSize() -> int: ... method maxIncomingMessageSize (line 54) | def maxIncomingMessageSize() -> int: ... method maxOutgoingFrameSize (line 56) | def maxOutgoingFrameSize() -> int: ... method open (line 58) | def open(self, url: PySide2.QtCore.QUrl) -> None: ... method open (line 60) | def open(self, request: PySide2.QtNetwork.QNetworkRequest) -> None: ... method origin (line 61) | def origin(self) -> str: ... method outgoingFrameSize (line 62) | def outgoingFrameSize(self) -> int: ... method pauseMode (line 63) | def pauseMode(self) -> PySide2.QtNetwork.QAbstractSocket.PauseModes | ... method peerAddress (line 64) | def peerAddress(self) -> PySide2.QtNetwork.QHostAddress: ... method peerName (line 65) | def peerName(self) -> str: ... method peerPort (line 66) | def peerPort(self) -> int: ... method ping (line 67) | def ping(self, payload: PySide2.QtCore.QByteArray | bytes = ...) -> No... method proxy (line 68) | def proxy(self) -> PySide2.QtNetwork.QNetworkProxy: ... method readBufferSize (line 69) | def readBufferSize(self) -> int: ... method request (line 70) | def request(self) -> PySide2.QtNetwork.QNetworkRequest: ... method requestUrl (line 71) | def requestUrl(self) -> PySide2.QtCore.QUrl: ... method resourceName (line 72) | def resourceName(self) -> str: ... method resume (line 73) | def resume(self) -> None: ... method sendBinaryMessage (line 74) | def sendBinaryMessage(self, data: PySide2.QtCore.QByteArray | bytes) -... method sendTextMessage (line 75) | def sendTextMessage(self, message: str) -> int: ... method setMaskGenerator (line 76) | def setMaskGenerator(self, maskGenerator: QMaskGenerator) -> None: ... method setMaxAllowedIncomingFrameSize (line 77) | def setMaxAllowedIncomingFrameSize(self, maxAllowedIncomingFrameSize: ... method setMaxAllowedIncomingMessageSize (line 78) | def setMaxAllowedIncomingMessageSize(self, maxAllowedIncomingMessageSi... method setOutgoingFrameSize (line 79) | def setOutgoingFrameSize(self, outgoingFrameSize: int) -> None: ... method setPauseMode (line 80) | def setPauseMode(self, pauseMode: PySide2.QtNetwork.QAbstractSocket.Pa... method setProxy (line 81) | def setProxy(self, networkProxy: PySide2.QtNetwork.QNetworkProxy) -> N... method setReadBufferSize (line 82) | def setReadBufferSize(self, size: int) -> None: ... method state (line 83) | def state(self) -> PySide2.QtNetwork.QAbstractSocket.SocketState: ... method version (line 84) | def version(self) -> QWebSocketProtocol.Version: ... class QWebSocketCorsAuthenticator (line 86) | class QWebSocketCorsAuthenticator(shiboken2.Object): method __init__ (line 88) | def __init__(self, other: QWebSocketCorsAuthenticator) -> None: ... method __init__ (line 90) | def __init__(self, origin: str) -> None: ... method allowed (line 91) | def allowed(self) -> bool: ... method origin (line 92) | def origin(self) -> str: ... method setAllowed (line 93) | def setAllowed(self, allowed: bool) -> None: ... method swap (line 94) | def swap(self, other: QWebSocketCorsAuthenticator) -> None: ... class QWebSocketProtocol (line 96) | class QWebSocketProtocol(shiboken2.Object): class CloseCode (line 97) | class CloseCode: method __init__ (line 114) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 115) | def __add__(self, other: typing.SupportsInt) -> QWebSocketProtocol.C... method __and__ (line 116) | def __and__(self, other: typing.SupportsInt) -> QWebSocketProtocol.C... method __bool__ (line 117) | def __bool__(self) -> bool: ... method __eq__ (line 118) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 119) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 120) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 121) | def __hash__(self) -> int: ... method __index__ (line 122) | def __index__(self) -> int: ... method __int__ (line 123) | def __int__(self) -> int: ... method __le__ (line 124) | def __le__(self, other: object) -> bool: ... method __lt__ (line 125) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 126) | def __mul__(self, other: typing.SupportsInt) -> QWebSocketProtocol.C... method __ne__ (line 127) | def __ne__(self, other: object) -> bool: ... method __or__ (line 128) | def __or__(self, other: typing.SupportsInt) -> QWebSocketProtocol.Cl... method __pos__ (line 129) | def __pos__(self): ... method __radd__ (line 130) | def __radd__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __rand__ (line 131) | def __rand__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __rmul__ (line 132) | def __rmul__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __ror__ (line 133) | def __ror__(self, other: typing.SupportsInt) -> QWebSocketProtocol.C... method __rsub__ (line 134) | def __rsub__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __rxor__ (line 135) | def __rxor__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __sub__ (line 136) | def __sub__(self, other: typing.SupportsInt) -> QWebSocketProtocol.C... method __xor__ (line 137) | def __xor__(self, other: typing.SupportsInt) -> QWebSocketProtocol.C... class Version (line 139) | class Version: method __init__ (line 152) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 153) | def __add__(self, other: typing.SupportsInt) -> QWebSocketProtocol.V... method __and__ (line 154) | def __and__(self, other: typing.SupportsInt) -> QWebSocketProtocol.V... method __bool__ (line 155) | def __bool__(self) -> bool: ... method __eq__ (line 156) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 157) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 158) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 159) | def __hash__(self) -> int: ... method __index__ (line 160) | def __index__(self) -> int: ... method __int__ (line 161) | def __int__(self) -> int: ... method __le__ (line 162) | def __le__(self, other: object) -> bool: ... method __lt__ (line 163) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 164) | def __mul__(self, other: typing.SupportsInt) -> QWebSocketProtocol.V... method __ne__ (line 165) | def __ne__(self, other: object) -> bool: ... method __or__ (line 166) | def __or__(self, other: typing.SupportsInt) -> QWebSocketProtocol.Ve... method __pos__ (line 167) | def __pos__(self): ... method __radd__ (line 168) | def __radd__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __rand__ (line 169) | def __rand__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __rmul__ (line 170) | def __rmul__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __ror__ (line 171) | def __ror__(self, other: typing.SupportsInt) -> QWebSocketProtocol.V... method __rsub__ (line 172) | def __rsub__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __rxor__ (line 173) | def __rxor__(self, other: typing.SupportsInt) -> QWebSocketProtocol.... method __sub__ (line 174) | def __sub__(self, other: typing.SupportsInt) -> QWebSocketProtocol.V... method __xor__ (line 175) | def __xor__(self, other: typing.SupportsInt) -> QWebSocketProtocol.V... method __init__ (line 199) | def __init__(cls, *args, **kwargs) -> None: ... class QWebSocketServer (line 201) | class QWebSocketServer(PySide2.QtCore.QObject): class SslMode (line 202) | class SslMode: method __init__ (line 208) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 209) | def __add__(self, other: typing.SupportsInt) -> QWebSocketServer.Ssl... method __and__ (line 210) | def __and__(self, other: typing.SupportsInt) -> QWebSocketServer.Ssl... method __bool__ (line 211) | def __bool__(self) -> bool: ... method __eq__ (line 212) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 213) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 214) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 215) | def __hash__(self) -> int: ... method __index__ (line 216) | def __index__(self) -> int: ... method __int__ (line 217) | def __int__(self) -> int: ... method __le__ (line 218) | def __le__(self, other: object) -> bool: ... method __lt__ (line 219) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 220) | def __mul__(self, other: typing.SupportsInt) -> QWebSocketServer.Ssl... method __ne__ (line 221) | def __ne__(self, other: object) -> bool: ... method __or__ (line 222) | def __or__(self, other: typing.SupportsInt) -> QWebSocketServer.SslM... method __pos__ (line 223) | def __pos__(self): ... method __radd__ (line 224) | def __radd__(self, other: typing.SupportsInt) -> QWebSocketServer.Ss... method __rand__ (line 225) | def __rand__(self, other: typing.SupportsInt) -> QWebSocketServer.Ss... method __rmul__ (line 226) | def __rmul__(self, other: typing.SupportsInt) -> QWebSocketServer.Ss... method __ror__ (line 227) | def __ror__(self, other: typing.SupportsInt) -> QWebSocketServer.Ssl... method __rsub__ (line 228) | def __rsub__(self, other: typing.SupportsInt) -> QWebSocketServer.Ss... method __rxor__ (line 229) | def __rxor__(self, other: typing.SupportsInt) -> QWebSocketServer.Ss... method __sub__ (line 230) | def __sub__(self, other: typing.SupportsInt) -> QWebSocketServer.Ssl... method __xor__ (line 231) | def __xor__(self, other: typing.SupportsInt) -> QWebSocketServer.Ssl... method __init__ (line 243) | def __init__(self, serverName: str, secureMode: QWebSocketServer.SslMo... method close (line 244) | def close(self) -> None: ... method error (line 245) | def error(self) -> QWebSocketProtocol.CloseCode: ... method errorString (line 246) | def errorString(self) -> str: ... method handleConnection (line 247) | def handleConnection(self, socket: PySide2.QtNetwork.QTcpSocket) -> No... method handshakeTimeoutMS (line 248) | def handshakeTimeoutMS(self) -> int: ... method hasPendingConnections (line 249) | def hasPendingConnections(self) -> bool: ... method isListening (line 250) | def isListening(self) -> bool: ... method listen (line 251) | def listen(self, address: PySide2.QtNetwork.QHostAddress = ..., port: ... method maxPendingConnections (line 252) | def maxPendingConnections(self) -> int: ... method nativeDescriptor (line 253) | def nativeDescriptor(self) -> int: ... method nextPendingConnection (line 254) | def nextPendingConnection(self) -> QWebSocket: ... method pauseAccepting (line 255) | def pauseAccepting(self) -> None: ... method proxy (line 256) | def proxy(self) -> PySide2.QtNetwork.QNetworkProxy: ... method resumeAccepting (line 257) | def resumeAccepting(self) -> None: ... method secureMode (line 258) | def secureMode(self) -> QWebSocketServer.SslMode: ... method serverAddress (line 259) | def serverAddress(self) -> PySide2.QtNetwork.QHostAddress: ... method serverName (line 260) | def serverName(self) -> str: ... method serverPort (line 261) | def serverPort(self) -> int: ... method serverUrl (line 262) | def serverUrl(self) -> PySide2.QtCore.QUrl: ... method setHandshakeTimeout (line 263) | def setHandshakeTimeout(self, msec: int) -> None: ... method setMaxPendingConnections (line 264) | def setMaxPendingConnections(self, numConnections: int) -> None: ... method setNativeDescriptor (line 265) | def setNativeDescriptor(self, descriptor: int) -> bool: ... method setProxy (line 266) | def setProxy(self, networkProxy: PySide2.QtNetwork.QNetworkProxy) -> N... method setServerName (line 267) | def setServerName(self, serverName: str) -> None: ... method setSocketDescriptor (line 268) | def setSocketDescriptor(self, socketDescriptor: int) -> bool: ... method socketDescriptor (line 269) | def socketDescriptor(self) -> int: ... method supportedVersions (line 270) | def supportedVersions(self) -> list[QWebSocketProtocol.Version]: ... FILE: pyside/stubs/PySide2-stubs/QtWidgets.pyi class _add_QMenu_exec__overloads (line 13) | class _add_QMenu_exec__overloads: class StaticOverloads (line 20) | class StaticOverloads: class exec_ (line 21) | class exec_: method __call__ (line 23) | def __call__(actions: typing.Iterable[QAction], pos: PySide2.QtCor... class InstanceOverloads (line 25) | class InstanceOverloads: class exec_ (line 26) | class exec_: method __call__ (line 28) | def __call__(self) -> QAction: ... method __call__ (line 30) | def __call__(self, pos: PySide2.QtCore.QPoint, at: QAction | None ... method __call__ (line 32) | def __call__(self, actions: typing.Iterable[QAction], pos: PySide2... method __init__ (line 34) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 37) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 40) | def __get__(self, object: QMenu, owner: typing.Any) -> InstanceOverloa... class QAbstractButton (line 42) | class QAbstractButton(QWidget): method __init__ (line 48) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method animateClick (line 49) | def animateClick(self, msec: int = ...) -> None: ... method autoExclusive (line 50) | def autoExclusive(self) -> bool: ... method autoRepeat (line 51) | def autoRepeat(self) -> bool: ... method autoRepeatDelay (line 52) | def autoRepeatDelay(self) -> int: ... method autoRepeatInterval (line 53) | def autoRepeatInterval(self) -> int: ... method changeEvent (line 54) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method checkStateSet (line 55) | def checkStateSet(self) -> None: ... method click (line 56) | def click(self) -> None: ... method event (line 57) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 58) | def focusInEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 59) | def focusOutEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method group (line 60) | def group(self) -> QButtonGroup: ... method hitButton (line 61) | def hitButton(self, pos: PySide2.QtCore.QPoint) -> bool: ... method icon (line 62) | def icon(self) -> PySide2.QtGui.QIcon: ... method iconSize (line 63) | def iconSize(self) -> PySide2.QtCore.QSize: ... method isCheckable (line 64) | def isCheckable(self) -> bool: ... method isChecked (line 65) | def isChecked(self) -> bool: ... method isDown (line 66) | def isDown(self) -> bool: ... method keyPressEvent (line 67) | def keyPressEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 68) | def keyReleaseEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method mouseMoveEvent (line 69) | def mouseMoveEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 70) | def mousePressEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 71) | def mouseReleaseEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method nextCheckState (line 72) | def nextCheckState(self) -> None: ... method paintEvent (line 73) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method setAutoExclusive (line 74) | def setAutoExclusive(self, arg__1: bool) -> None: ... method setAutoRepeat (line 75) | def setAutoRepeat(self, arg__1: bool) -> None: ... method setAutoRepeatDelay (line 76) | def setAutoRepeatDelay(self, arg__1: int) -> None: ... method setAutoRepeatInterval (line 77) | def setAutoRepeatInterval(self, arg__1: int) -> None: ... method setCheckable (line 78) | def setCheckable(self, arg__1: bool) -> None: ... method setChecked (line 79) | def setChecked(self, arg__1: bool) -> None: ... method setDown (line 80) | def setDown(self, arg__1: bool) -> None: ... method setIcon (line 81) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setIconSize (line 82) | def setIconSize(self, size: PySide2.QtCore.QSize) -> None: ... method setShortcut (line 83) | def setShortcut(self, key: PySide2.QtGui.QKeySequence | str) -> None: ... method setText (line 84) | def setText(self, text: str) -> None: ... method shortcut (line 85) | def shortcut(self) -> PySide2.QtGui.QKeySequence: ... method text (line 86) | def text(self) -> str: ... method timerEvent (line 87) | def timerEvent(self, e: PySide2.QtCore.QTimerEvent) -> None: ... method toggle (line 88) | def toggle(self) -> None: ... class QAbstractGraphicsShapeItem (line 90) | class QAbstractGraphicsShapeItem(QGraphicsItem): method __init__ (line 91) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method brush (line 92) | def brush(self) -> PySide2.QtGui.QBrush: ... method isObscuredBy (line 93) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 94) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method pen (line 95) | def pen(self) -> PySide2.QtGui.QPen: ... method setBrush (line 96) | def setBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QColor ... method setPen (line 97) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... class QAbstractItemDelegate (line 99) | class QAbstractItemDelegate(PySide2.QtCore.QObject): class EndEditHint (line 100) | class EndEditHint: method __init__ (line 109) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 110) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemDelegat... method __and__ (line 111) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemDelegat... method __bool__ (line 112) | def __bool__(self) -> bool: ... method __eq__ (line 113) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 114) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 115) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 116) | def __hash__(self) -> int: ... method __index__ (line 117) | def __index__(self) -> int: ... method __int__ (line 118) | def __int__(self) -> int: ... method __le__ (line 119) | def __le__(self, other: object) -> bool: ... method __lt__ (line 120) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 121) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemDelegat... method __ne__ (line 122) | def __ne__(self, other: object) -> bool: ... method __or__ (line 123) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemDelegate... method __pos__ (line 124) | def __pos__(self): ... method __radd__ (line 125) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemDelega... method __rand__ (line 126) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemDelega... method __rmul__ (line 127) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemDelega... method __ror__ (line 128) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemDelegat... method __rsub__ (line 129) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemDelega... method __rxor__ (line 130) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemDelega... method __sub__ (line 131) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemDelegat... method __xor__ (line 132) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemDelegat... method __init__ (line 142) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method createEditor (line 143) | def createEditor(self, parent: QWidget | None, option: QStyleOptionVie... method destroyEditor (line 144) | def destroyEditor(self, editor: QWidget, index: PySide2.QtCore.QModelI... method editorEvent (line 145) | def editorEvent(self, event: PySide2.QtCore.QEvent, model: PySide2.QtC... method elidedText (line 147) | def elidedText(fontMetrics: PySide2.QtGui.QFontMetrics, width: int, mo... method helpEvent (line 148) | def helpEvent(self, event: PySide2.QtGui.QHelpEvent, view: QAbstractIt... method paint (line 149) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionV... method paintingRoles (line 150) | def paintingRoles(self) -> list[int]: ... method setEditorData (line 151) | def setEditorData(self, editor: QWidget, index: PySide2.QtCore.QModelI... method setModelData (line 152) | def setModelData(self, editor: QWidget, model: PySide2.QtCore.QAbstrac... method sizeHint (line 153) | def sizeHint(self, option: QStyleOptionViewItem, index: PySide2.QtCore... method updateEditorGeometry (line 154) | def updateEditorGeometry(self, editor: QWidget, option: QStyleOptionVi... class QAbstractItemView (line 156) | class QAbstractItemView(QAbstractScrollArea): class CursorAction (line 157) | class CursorAction: method __init__ (line 171) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 172) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Cu... method __and__ (line 173) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Cu... method __bool__ (line 174) | def __bool__(self) -> bool: ... method __eq__ (line 175) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 176) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 177) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 178) | def __hash__(self) -> int: ... method __index__ (line 179) | def __index__(self) -> int: ... method __int__ (line 180) | def __int__(self) -> int: ... method __le__ (line 181) | def __le__(self, other: object) -> bool: ... method __lt__ (line 182) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 183) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Cu... method __ne__ (line 184) | def __ne__(self, other: object) -> bool: ... method __or__ (line 185) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Cur... method __pos__ (line 186) | def __pos__(self): ... method __radd__ (line 187) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.C... method __rand__ (line 188) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.C... method __rmul__ (line 189) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.C... method __ror__ (line 190) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Cu... method __rsub__ (line 191) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.C... method __rxor__ (line 192) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.C... method __sub__ (line 193) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Cu... method __xor__ (line 194) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Cu... class DragDropMode (line 196) | class DragDropMode: method __init__ (line 205) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 206) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __and__ (line 207) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __bool__ (line 208) | def __bool__(self) -> bool: ... method __eq__ (line 209) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 210) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 211) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 212) | def __hash__(self) -> int: ... method __index__ (line 213) | def __index__(self) -> int: ... method __int__ (line 214) | def __int__(self) -> int: ... method __le__ (line 215) | def __le__(self, other: object) -> bool: ... method __lt__ (line 216) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 217) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __ne__ (line 218) | def __ne__(self, other: object) -> bool: ... method __or__ (line 219) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Dra... method __pos__ (line 220) | def __pos__(self): ... method __radd__ (line 221) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __rand__ (line 222) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __rmul__ (line 223) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __ror__ (line 224) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __rsub__ (line 225) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __rxor__ (line 226) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __sub__ (line 227) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __xor__ (line 228) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... class DropIndicatorPosition (line 230) | class DropIndicatorPosition: method __init__ (line 238) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 239) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __and__ (line 240) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __bool__ (line 241) | def __bool__(self) -> bool: ... method __eq__ (line 242) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 243) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 244) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 245) | def __hash__(self) -> int: ... method __index__ (line 246) | def __index__(self) -> int: ... method __int__ (line 247) | def __int__(self) -> int: ... method __le__ (line 248) | def __le__(self, other: object) -> bool: ... method __lt__ (line 249) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 250) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __ne__ (line 251) | def __ne__(self, other: object) -> bool: ... method __or__ (line 252) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Dro... method __pos__ (line 253) | def __pos__(self): ... method __radd__ (line 254) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __rand__ (line 255) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __rmul__ (line 256) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __ror__ (line 257) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __rsub__ (line 258) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __rxor__ (line 259) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.D... method __sub__ (line 260) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... method __xor__ (line 261) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Dr... class EditTrigger (line 263) | class EditTrigger: method __init__ (line 274) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 275) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Ed... method __bool__ (line 276) | def __bool__(self) -> bool: ... method __eq__ (line 277) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 278) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 279) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 280) | def __hash__(self) -> int: ... method __index__ (line 281) | def __index__(self) -> int: ... method __int__ (line 282) | def __int__(self) -> int: ... method __invert__ (line 283) | def __invert__(self) -> QAbstractItemView.EditTriggers: ... method __le__ (line 284) | def __le__(self, other: object) -> bool: ... method __lt__ (line 285) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 286) | def __ne__(self, other: object) -> bool: ... method __or__ (line 287) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Edi... method __rand__ (line 288) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.E... method __ror__ (line 289) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Ed... method __rxor__ (line 290) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.E... method __xor__ (line 291) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Ed... class EditTriggers (line 293) | class EditTriggers: method __init__ (line 295) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 296) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Ed... method __bool__ (line 297) | def __bool__(self) -> bool: ... method __eq__ (line 298) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 299) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 300) | def __gt__(self, other: object) -> bool: ... method __index__ (line 301) | def __index__(self) -> int: ... method __int__ (line 302) | def __int__(self) -> int: ... method __invert__ (line 303) | def __invert__(self) -> QAbstractItemView.EditTriggers: ... method __le__ (line 304) | def __le__(self, other: object) -> bool: ... method __lt__ (line 305) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 306) | def __ne__(self, other: object) -> bool: ... method __or__ (line 307) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Edi... method __rand__ (line 308) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.E... method __ror__ (line 309) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Ed... method __rxor__ (line 310) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.E... method __xor__ (line 311) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Ed... class ScrollHint (line 313) | class ScrollHint: method __init__ (line 321) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 322) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __and__ (line 323) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __bool__ (line 324) | def __bool__(self) -> bool: ... method __eq__ (line 325) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 326) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 327) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 328) | def __hash__(self) -> int: ... method __index__ (line 329) | def __index__(self) -> int: ... method __int__ (line 330) | def __int__(self) -> int: ... method __le__ (line 331) | def __le__(self, other: object) -> bool: ... method __lt__ (line 332) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 333) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __ne__ (line 334) | def __ne__(self, other: object) -> bool: ... method __or__ (line 335) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Scr... method __pos__ (line 336) | def __pos__(self): ... method __radd__ (line 337) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rand__ (line 338) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rmul__ (line 339) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __ror__ (line 340) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __rsub__ (line 341) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rxor__ (line 342) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __sub__ (line 343) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __xor__ (line 344) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... class ScrollMode (line 346) | class ScrollMode: method __init__ (line 352) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 353) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __and__ (line 354) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __bool__ (line 355) | def __bool__(self) -> bool: ... method __eq__ (line 356) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 357) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 358) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 359) | def __hash__(self) -> int: ... method __index__ (line 360) | def __index__(self) -> int: ... method __int__ (line 361) | def __int__(self) -> int: ... method __le__ (line 362) | def __le__(self, other: object) -> bool: ... method __lt__ (line 363) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 364) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __ne__ (line 365) | def __ne__(self, other: object) -> bool: ... method __or__ (line 366) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Scr... method __pos__ (line 367) | def __pos__(self): ... method __radd__ (line 368) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rand__ (line 369) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rmul__ (line 370) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __ror__ (line 371) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __rsub__ (line 372) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rxor__ (line 373) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __sub__ (line 374) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... method __xor__ (line 375) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Sc... class SelectionBehavior (line 377) | class SelectionBehavior: method __init__ (line 384) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 385) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __and__ (line 386) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __bool__ (line 387) | def __bool__(self) -> bool: ... method __eq__ (line 388) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 389) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 390) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 391) | def __hash__(self) -> int: ... method __index__ (line 392) | def __index__(self) -> int: ... method __int__ (line 393) | def __int__(self) -> int: ... method __le__ (line 394) | def __le__(self, other: object) -> bool: ... method __lt__ (line 395) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 396) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __ne__ (line 397) | def __ne__(self, other: object) -> bool: ... method __or__ (line 398) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Sel... method __pos__ (line 399) | def __pos__(self): ... method __radd__ (line 400) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rand__ (line 401) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rmul__ (line 402) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __ror__ (line 403) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __rsub__ (line 404) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rxor__ (line 405) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __sub__ (line 406) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __xor__ (line 407) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... class SelectionMode (line 409) | class SelectionMode: method __init__ (line 418) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 419) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __and__ (line 420) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __bool__ (line 421) | def __bool__(self) -> bool: ... method __eq__ (line 422) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 423) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 424) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 425) | def __hash__(self) -> int: ... method __index__ (line 426) | def __index__(self) -> int: ... method __int__ (line 427) | def __int__(self) -> int: ... method __le__ (line 428) | def __le__(self, other: object) -> bool: ... method __lt__ (line 429) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 430) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __ne__ (line 431) | def __ne__(self, other: object) -> bool: ... method __or__ (line 432) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Sel... method __pos__ (line 433) | def __pos__(self): ... method __radd__ (line 434) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rand__ (line 435) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rmul__ (line 436) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __ror__ (line 437) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __rsub__ (line 438) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rxor__ (line 439) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __sub__ (line 440) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... method __xor__ (line 441) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.Se... class State (line 443) | class State: method __init__ (line 454) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 455) | def __add__(self, other: typing.SupportsInt) -> QAbstractItemView.St... method __and__ (line 456) | def __and__(self, other: typing.SupportsInt) -> QAbstractItemView.St... method __bool__ (line 457) | def __bool__(self) -> bool: ... method __eq__ (line 458) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 459) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 460) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 461) | def __hash__(self) -> int: ... method __index__ (line 462) | def __index__(self) -> int: ... method __int__ (line 463) | def __int__(self) -> int: ... method __le__ (line 464) | def __le__(self, other: object) -> bool: ... method __lt__ (line 465) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 466) | def __mul__(self, other: typing.SupportsInt) -> QAbstractItemView.St... method __ne__ (line 467) | def __ne__(self, other: object) -> bool: ... method __or__ (line 468) | def __or__(self, other: typing.SupportsInt) -> QAbstractItemView.Sta... method __pos__ (line 469) | def __pos__(self): ... method __radd__ (line 470) | def __radd__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rand__ (line 471) | def __rand__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rmul__ (line 472) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __ror__ (line 473) | def __ror__(self, other: typing.SupportsInt) -> QAbstractItemView.St... method __rsub__ (line 474) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __rxor__ (line 475) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractItemView.S... method __sub__ (line 476) | def __sub__(self, other: typing.SupportsInt) -> QAbstractItemView.St... method __xor__ (line 477) | def __xor__(self, other: typing.SupportsInt) -> QAbstractItemView.St... method __init__ (line 533) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method alternatingRowColors (line 534) | def alternatingRowColors(self) -> bool: ... method autoScrollMargin (line 535) | def autoScrollMargin(self) -> int: ... method clearSelection (line 536) | def clearSelection(self) -> None: ... method closeEditor (line 537) | def closeEditor(self, editor: QWidget, hint: QAbstractItemDelegate.End... method closePersistentEditor (line 538) | def closePersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> ... method commitData (line 539) | def commitData(self, editor: QWidget) -> None: ... method currentChanged (line 540) | def currentChanged(self, current: PySide2.QtCore.QModelIndex, previous... method currentIndex (line 541) | def currentIndex(self) -> PySide2.QtCore.QModelIndex: ... method dataChanged (line 542) | def dataChanged(self, topLeft: PySide2.QtCore.QModelIndex, bottomRight... method defaultDropAction (line 543) | def defaultDropAction(self) -> PySide2.QtCore.Qt.DropAction: ... method dirtyRegionOffset (line 544) | def dirtyRegionOffset(self) -> PySide2.QtCore.QPoint: ... method doAutoScroll (line 545) | def doAutoScroll(self) -> None: ... method doItemsLayout (line 546) | def doItemsLayout(self) -> None: ... method dragDropMode (line 547) | def dragDropMode(self) -> QAbstractItemView.DragDropMode: ... method dragDropOverwriteMode (line 548) | def dragDropOverwriteMode(self) -> bool: ... method dragEnabled (line 549) | def dragEnabled(self) -> bool: ... method dragEnterEvent (line 550) | def dragEnterEvent(self, event: PySide2.QtGui.QDragEnterEvent) -> None... method dragLeaveEvent (line 551) | def dragLeaveEvent(self, event: PySide2.QtGui.QDragLeaveEvent) -> None... method dragMoveEvent (line 552) | def dragMoveEvent(self, event: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 553) | def dropEvent(self, event: PySide2.QtGui.QDropEvent) -> None: ... method dropIndicatorPosition (line 554) | def dropIndicatorPosition(self) -> QAbstractItemView.DropIndicatorPosi... method edit (line 556) | def edit(self, index: PySide2.QtCore.QModelIndex, trigger: QAbstractIt... method edit (line 558) | def edit(self, index: PySide2.QtCore.QModelIndex) -> None: ... method editTriggers (line 559) | def editTriggers(self) -> QAbstractItemView.EditTriggers | QAbstractIt... method editorDestroyed (line 560) | def editorDestroyed(self, editor: PySide2.QtCore.QObject) -> None: ... method event (line 561) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 562) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method executeDelayedItemsLayout (line 563) | def executeDelayedItemsLayout(self) -> None: ... method focusInEvent (line 564) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 565) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 566) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method hasAutoScroll (line 567) | def hasAutoScroll(self) -> bool: ... method horizontalOffset (line 568) | def horizontalOffset(self) -> int: ... method horizontalScrollMode (line 569) | def horizontalScrollMode(self) -> QAbstractItemView.ScrollMode: ... method horizontalScrollbarAction (line 570) | def horizontalScrollbarAction(self, action: int) -> None: ... method horizontalScrollbarValueChanged (line 571) | def horizontalScrollbarValueChanged(self, value: int) -> None: ... method horizontalStepsPerItem (line 572) | def horizontalStepsPerItem(self) -> int: ... method iconSize (line 573) | def iconSize(self) -> PySide2.QtCore.QSize: ... method indexAt (line 574) | def indexAt(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCore.QMod... method indexWidget (line 575) | def indexWidget(self, index: PySide2.QtCore.QModelIndex) -> QWidget: ... method inputMethodEvent (line 576) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodQuery (line 577) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method isIndexHidden (line 578) | def isIndexHidden(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isPersistentEditorOpen (line 579) | def isPersistentEditorOpen(self, index: PySide2.QtCore.QModelIndex) ->... method itemDelegate (line 581) | def itemDelegate(self, index: PySide2.QtCore.QModelIndex) -> QAbstract... method itemDelegate (line 583) | def itemDelegate(self) -> QAbstractItemDelegate: ... method itemDelegateForColumn (line 584) | def itemDelegateForColumn(self, column: int) -> QAbstractItemDelegate:... method itemDelegateForRow (line 585) | def itemDelegateForRow(self, row: int) -> QAbstractItemDelegate: ... method keyPressEvent (line 586) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyboardSearch (line 587) | def keyboardSearch(self, search: str) -> None: ... method model (line 588) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method mouseDoubleClickEvent (line 589) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) -> N... method mouseMoveEvent (line 590) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 591) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 592) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method moveCursor (line 593) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method openPersistentEditor (line 594) | def openPersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> N... method reset (line 595) | def reset(self) -> None: ... method resetHorizontalScrollMode (line 596) | def resetHorizontalScrollMode(self) -> None: ... method resetVerticalScrollMode (line 597) | def resetVerticalScrollMode(self) -> None: ... method resizeEvent (line 598) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method rootIndex (line 599) | def rootIndex(self) -> PySide2.QtCore.QModelIndex: ... method rowsAboutToBeRemoved (line 600) | def rowsAboutToBeRemoved(self, parent: PySide2.QtCore.QModelIndex, sta... method rowsInserted (line 601) | def rowsInserted(self, parent: PySide2.QtCore.QModelIndex, start: int,... method scheduleDelayedItemsLayout (line 602) | def scheduleDelayedItemsLayout(self) -> None: ... method scrollDirtyRegion (line 603) | def scrollDirtyRegion(self, dx: int, dy: int) -> None: ... method scrollTo (line 604) | def scrollTo(self, index: PySide2.QtCore.QModelIndex, hint: QAbstractI... method scrollToBottom (line 605) | def scrollToBottom(self) -> None: ... method scrollToTop (line 606) | def scrollToTop(self) -> None: ... method selectAll (line 607) | def selectAll(self) -> None: ... method selectedIndexes (line 608) | def selectedIndexes(self) -> list[PySide2.QtCore.QModelIndex]: ... method selectionBehavior (line 609) | def selectionBehavior(self) -> QAbstractItemView.SelectionBehavior: ... method selectionChanged (line 610) | def selectionChanged(self, selected: PySide2.QtCore.QItemSelection, de... method selectionCommand (line 611) | def selectionCommand(self, index: PySide2.QtCore.QModelIndex, event: P... method selectionMode (line 612) | def selectionMode(self) -> QAbstractItemView.SelectionMode: ... method selectionModel (line 613) | def selectionModel(self) -> PySide2.QtCore.QItemSelectionModel: ... method setAlternatingRowColors (line 614) | def setAlternatingRowColors(self, enable: bool) -> None: ... method setAutoScroll (line 615) | def setAutoScroll(self, enable: bool) -> None: ... method setAutoScrollMargin (line 616) | def setAutoScrollMargin(self, margin: int) -> None: ... method setCurrentIndex (line 617) | def setCurrentIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setDefaultDropAction (line 618) | def setDefaultDropAction(self, dropAction: PySide2.QtCore.Qt.DropActio... method setDirtyRegion (line 619) | def setDirtyRegion(self, region: PySide2.QtGui.QRegion) -> None: ... method setDragDropMode (line 620) | def setDragDropMode(self, behavior: QAbstractItemView.DragDropMode) ->... method setDragDropOverwriteMode (line 621) | def setDragDropOverwriteMode(self, overwrite: bool) -> None: ... method setDragEnabled (line 622) | def setDragEnabled(self, enable: bool) -> None: ... method setDropIndicatorShown (line 623) | def setDropIndicatorShown(self, enable: bool) -> None: ... method setEditTriggers (line 624) | def setEditTriggers(self, triggers: QAbstractItemView.EditTriggers | Q... method setHorizontalScrollMode (line 625) | def setHorizontalScrollMode(self, mode: QAbstractItemView.ScrollMode) ... method setHorizontalStepsPerItem (line 626) | def setHorizontalStepsPerItem(self, steps: int) -> None: ... method setIconSize (line 627) | def setIconSize(self, size: PySide2.QtCore.QSize) -> None: ... method setIndexWidget (line 628) | def setIndexWidget(self, index: PySide2.QtCore.QModelIndex, widget: QW... method setItemDelegate (line 629) | def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ... method setItemDelegateForColumn (line 630) | def setItemDelegateForColumn(self, column: int, delegate: QAbstractIte... method setItemDelegateForRow (line 631) | def setItemDelegateForRow(self, row: int, delegate: QAbstractItemDeleg... method setModel (line 632) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setRootIndex (line 633) | def setRootIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setSelection (line 634) | def setSelection(self, rect: PySide2.QtCore.QRect, command: PySide2.Qt... method setSelectionBehavior (line 635) | def setSelectionBehavior(self, behavior: QAbstractItemView.SelectionBe... method setSelectionMode (line 636) | def setSelectionMode(self, mode: QAbstractItemView.SelectionMode) -> N... method setSelectionModel (line 637) | def setSelectionModel(self, selectionModel: PySide2.QtCore.QItemSelect... method setState (line 638) | def setState(self, state: QAbstractItemView.State) -> None: ... method setTabKeyNavigation (line 639) | def setTabKeyNavigation(self, enable: bool) -> None: ... method setTextElideMode (line 640) | def setTextElideMode(self, mode: PySide2.QtCore.Qt.TextElideMode) -> N... method setVerticalScrollMode (line 641) | def setVerticalScrollMode(self, mode: QAbstractItemView.ScrollMode) ->... method setVerticalStepsPerItem (line 642) | def setVerticalStepsPerItem(self, steps: int) -> None: ... method showDropIndicator (line 643) | def showDropIndicator(self) -> bool: ... method sizeHintForColumn (line 644) | def sizeHintForColumn(self, column: int) -> int: ... method sizeHintForIndex (line 645) | def sizeHintForIndex(self, index: PySide2.QtCore.QModelIndex) -> PySid... method sizeHintForRow (line 646) | def sizeHintForRow(self, row: int) -> int: ... method startAutoScroll (line 647) | def startAutoScroll(self) -> None: ... method startDrag (line 648) | def startDrag(self, supportedActions: PySide2.QtCore.Qt.DropActions | ... method state (line 649) | def state(self) -> QAbstractItemView.State: ... method stopAutoScroll (line 650) | def stopAutoScroll(self) -> None: ... method tabKeyNavigation (line 651) | def tabKeyNavigation(self) -> bool: ... method textElideMode (line 652) | def textElideMode(self) -> PySide2.QtCore.Qt.TextElideMode: ... method timerEvent (line 653) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method update (line 655) | def update(self, index: PySide2.QtCore.QModelIndex) -> None: ... method update (line 657) | def update(self) -> None: ... method updateEditorData (line 658) | def updateEditorData(self) -> None: ... method updateEditorGeometries (line 659) | def updateEditorGeometries(self) -> None: ... method updateGeometries (line 660) | def updateGeometries(self) -> None: ... method verticalOffset (line 661) | def verticalOffset(self) -> int: ... method verticalScrollMode (line 662) | def verticalScrollMode(self) -> QAbstractItemView.ScrollMode: ... method verticalScrollbarAction (line 663) | def verticalScrollbarAction(self, action: int) -> None: ... method verticalScrollbarValueChanged (line 664) | def verticalScrollbarValueChanged(self, value: int) -> None: ... method verticalStepsPerItem (line 665) | def verticalStepsPerItem(self) -> int: ... method viewOptions (line 666) | def viewOptions(self) -> QStyleOptionViewItem: ... method viewportEvent (line 667) | def viewportEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... method viewportSizeHint (line 668) | def viewportSizeHint(self) -> PySide2.QtCore.QSize: ... method visualRect (line 669) | def visualRect(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method visualRegionForSelection (line 670) | def visualRegionForSelection(self, selection: PySide2.QtCore.QItemSele... class QAbstractScrollArea (line 672) | class QAbstractScrollArea(QFrame): class SizeAdjustPolicy (line 673) | class SizeAdjustPolicy: method __init__ (line 680) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 681) | def __add__(self, other: typing.SupportsInt) -> QAbstractScrollArea.... method __and__ (line 682) | def __and__(self, other: typing.SupportsInt) -> QAbstractScrollArea.... method __bool__ (line 683) | def __bool__(self) -> bool: ... method __eq__ (line 684) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 685) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 686) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 687) | def __hash__(self) -> int: ... method __index__ (line 688) | def __index__(self) -> int: ... method __int__ (line 689) | def __int__(self) -> int: ... method __le__ (line 690) | def __le__(self, other: object) -> bool: ... method __lt__ (line 691) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 692) | def __mul__(self, other: typing.SupportsInt) -> QAbstractScrollArea.... method __ne__ (line 693) | def __ne__(self, other: object) -> bool: ... method __or__ (line 694) | def __or__(self, other: typing.SupportsInt) -> QAbstractScrollArea.S... method __pos__ (line 695) | def __pos__(self): ... method __radd__ (line 696) | def __radd__(self, other: typing.SupportsInt) -> QAbstractScrollArea... method __rand__ (line 697) | def __rand__(self, other: typing.SupportsInt) -> QAbstractScrollArea... method __rmul__ (line 698) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractScrollArea... method __ror__ (line 699) | def __ror__(self, other: typing.SupportsInt) -> QAbstractScrollArea.... method __rsub__ (line 700) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractScrollArea... method __rxor__ (line 701) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractScrollArea... method __sub__ (line 702) | def __sub__(self, other: typing.SupportsInt) -> QAbstractScrollArea.... method __xor__ (line 703) | def __xor__(self, other: typing.SupportsInt) -> QAbstractScrollArea.... method __init__ (line 708) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addScrollBarWidget (line 709) | def addScrollBarWidget(self, widget: QWidget, alignment: PySide2.QtCor... method contextMenuEvent (line 710) | def contextMenuEvent(self, arg__1: PySide2.QtGui.QContextMenuEvent) ->... method cornerWidget (line 711) | def cornerWidget(self) -> QWidget: ... method dragEnterEvent (line 712) | def dragEnterEvent(self, arg__1: PySide2.QtGui.QDragEnterEvent) -> Non... method dragLeaveEvent (line 713) | def dragLeaveEvent(self, arg__1: PySide2.QtGui.QDragLeaveEvent) -> Non... method dragMoveEvent (line 714) | def dragMoveEvent(self, arg__1: PySide2.QtGui.QDragMoveEvent) -> None:... method dropEvent (line 715) | def dropEvent(self, arg__1: PySide2.QtGui.QDropEvent) -> None: ... method event (line 716) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 717) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method horizontalScrollBar (line 718) | def horizontalScrollBar(self) -> QScrollBar: ... method horizontalScrollBarPolicy (line 719) | def horizontalScrollBarPolicy(self) -> PySide2.QtCore.Qt.ScrollBarPoli... method keyPressEvent (line 720) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method maximumViewportSize (line 721) | def maximumViewportSize(self) -> PySide2.QtCore.QSize: ... method minimumSizeHint (line 722) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseDoubleClickEvent (line 723) | def mouseDoubleClickEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> ... method mouseMoveEvent (line 724) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 725) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 726) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method paintEvent (line 727) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 728) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method scrollBarWidgets (line 729) | def scrollBarWidgets(self, alignment: PySide2.QtCore.Qt.Alignment | Py... method scrollContentsBy (line 730) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method setCornerWidget (line 731) | def setCornerWidget(self, widget: QWidget) -> None: ... method setHorizontalScrollBar (line 732) | def setHorizontalScrollBar(self, scrollbar: QScrollBar) -> None: ... method setHorizontalScrollBarPolicy (line 733) | def setHorizontalScrollBarPolicy(self, arg__1: PySide2.QtCore.Qt.Scrol... method setSizeAdjustPolicy (line 734) | def setSizeAdjustPolicy(self, policy: QAbstractScrollArea.SizeAdjustPo... method setVerticalScrollBar (line 735) | def setVerticalScrollBar(self, scrollbar: QScrollBar) -> None: ... method setVerticalScrollBarPolicy (line 736) | def setVerticalScrollBarPolicy(self, arg__1: PySide2.QtCore.Qt.ScrollB... method setViewport (line 737) | def setViewport(self, widget: QWidget) -> None: ... method setViewportMargins (line 739) | def setViewportMargins(self, left: int, top: int, right: int, bottom: ... method setViewportMargins (line 741) | def setViewportMargins(self, margins: PySide2.QtCore.QMargins) -> None... method setupViewport (line 742) | def setupViewport(self, viewport: QWidget) -> None: ... method sizeAdjustPolicy (line 743) | def sizeAdjustPolicy(self) -> QAbstractScrollArea.SizeAdjustPolicy: ... method sizeHint (line 744) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method verticalScrollBar (line 745) | def verticalScrollBar(self) -> QScrollBar: ... method verticalScrollBarPolicy (line 746) | def verticalScrollBarPolicy(self) -> PySide2.QtCore.Qt.ScrollBarPolicy... method viewport (line 747) | def viewport(self) -> QWidget: ... method viewportEvent (line 748) | def viewportEvent(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method viewportMargins (line 749) | def viewportMargins(self) -> PySide2.QtCore.QMargins: ... method viewportSizeHint (line 750) | def viewportSizeHint(self) -> PySide2.QtCore.QSize: ... method wheelEvent (line 751) | def wheelEvent(self, arg__1: PySide2.QtGui.QWheelEvent) -> None: ... class QAbstractSlider (line 753) | class QAbstractSlider(QWidget): class SliderAction (line 754) | class SliderAction: method __init__ (line 766) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 767) | def __add__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __and__ (line 768) | def __and__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __bool__ (line 769) | def __bool__(self) -> bool: ... method __eq__ (line 770) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 771) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 772) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 773) | def __hash__(self) -> int: ... method __index__ (line 774) | def __index__(self) -> int: ... method __int__ (line 775) | def __int__(self) -> int: ... method __le__ (line 776) | def __le__(self, other: object) -> bool: ... method __lt__ (line 777) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 778) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __ne__ (line 779) | def __ne__(self, other: object) -> bool: ... method __or__ (line 780) | def __or__(self, other: typing.SupportsInt) -> QAbstractSlider.Slide... method __pos__ (line 781) | def __pos__(self): ... method __radd__ (line 782) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __rand__ (line 783) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __rmul__ (line 784) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __ror__ (line 785) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __rsub__ (line 786) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __rxor__ (line 787) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __sub__ (line 788) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __xor__ (line 789) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... class SliderChange (line 791) | class SliderChange: method __init__ (line 799) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 800) | def __add__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __and__ (line 801) | def __and__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __bool__ (line 802) | def __bool__(self) -> bool: ... method __eq__ (line 803) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 804) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 805) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 806) | def __hash__(self) -> int: ... method __index__ (line 807) | def __index__(self) -> int: ... method __int__ (line 808) | def __int__(self) -> int: ... method __le__ (line 809) | def __le__(self, other: object) -> bool: ... method __lt__ (line 810) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 811) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __ne__ (line 812) | def __ne__(self, other: object) -> bool: ... method __or__ (line 813) | def __or__(self, other: typing.SupportsInt) -> QAbstractSlider.Slide... method __pos__ (line 814) | def __pos__(self): ... method __radd__ (line 815) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __rand__ (line 816) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __rmul__ (line 817) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __ror__ (line 818) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __rsub__ (line 819) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __rxor__ (line 820) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSlider.Sli... method __sub__ (line 821) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __xor__ (line 822) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSlider.Slid... method __init__ (line 842) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method changeEvent (line 843) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method event (line 844) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method hasTracking (line 845) | def hasTracking(self) -> bool: ... method invertedAppearance (line 846) | def invertedAppearance(self) -> bool: ... method invertedControls (line 847) | def invertedControls(self) -> bool: ... method isSliderDown (line 848) | def isSliderDown(self) -> bool: ... method keyPressEvent (line 849) | def keyPressEvent(self, ev: PySide2.QtGui.QKeyEvent) -> None: ... method maximum (line 850) | def maximum(self) -> int: ... method minimum (line 851) | def minimum(self) -> int: ... method orientation (line 852) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method pageStep (line 853) | def pageStep(self) -> int: ... method repeatAction (line 854) | def repeatAction(self) -> QAbstractSlider.SliderAction: ... method setInvertedAppearance (line 855) | def setInvertedAppearance(self, arg__1: bool) -> None: ... method setInvertedControls (line 856) | def setInvertedControls(self, arg__1: bool) -> None: ... method setMaximum (line 857) | def setMaximum(self, arg__1: int) -> None: ... method setMinimum (line 858) | def setMinimum(self, arg__1: int) -> None: ... method setOrientation (line 859) | def setOrientation(self, arg__1: PySide2.QtCore.Qt.Orientation) -> Non... method setPageStep (line 860) | def setPageStep(self, arg__1: int) -> None: ... method setRange (line 861) | def setRange(self, min: int, max: int) -> None: ... method setRepeatAction (line 862) | def setRepeatAction(self, action: QAbstractSlider.SliderAction, thresh... method setSingleStep (line 863) | def setSingleStep(self, arg__1: int) -> None: ... method setSliderDown (line 864) | def setSliderDown(self, arg__1: bool) -> None: ... method setSliderPosition (line 865) | def setSliderPosition(self, arg__1: int) -> None: ... method setTracking (line 866) | def setTracking(self, enable: bool) -> None: ... method setValue (line 867) | def setValue(self, arg__1: int) -> None: ... method singleStep (line 868) | def singleStep(self) -> int: ... method sliderChange (line 869) | def sliderChange(self, change: QAbstractSlider.SliderChange) -> None: ... method sliderPosition (line 870) | def sliderPosition(self) -> int: ... method timerEvent (line 871) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... method triggerAction (line 872) | def triggerAction(self, action: QAbstractSlider.SliderAction) -> None:... method value (line 873) | def value(self) -> int: ... method wheelEvent (line 874) | def wheelEvent(self, e: PySide2.QtGui.QWheelEvent) -> None: ... class QAbstractSpinBox (line 876) | class QAbstractSpinBox(QWidget): class ButtonSymbols (line 877) | class ButtonSymbols: method __init__ (line 884) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 885) | def __add__(self, other: typing.SupportsInt) -> QAbstractSpinBox.But... method __and__ (line 886) | def __and__(self, other: typing.SupportsInt) -> QAbstractSpinBox.But... method __bool__ (line 887) | def __bool__(self) -> bool: ... method __eq__ (line 888) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 889) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 890) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 891) | def __hash__(self) -> int: ... method __index__ (line 892) | def __index__(self) -> int: ... method __int__ (line 893) | def __int__(self) -> int: ... method __le__ (line 894) | def __le__(self, other: object) -> bool: ... method __lt__ (line 895) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 896) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSpinBox.But... method __ne__ (line 897) | def __ne__(self, other: object) -> bool: ... method __or__ (line 898) | def __or__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Butt... method __pos__ (line 899) | def __pos__(self): ... method __radd__ (line 900) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Bu... method __rand__ (line 901) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Bu... method __rmul__ (line 902) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Bu... method __ror__ (line 903) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSpinBox.But... method __rsub__ (line 904) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Bu... method __rxor__ (line 905) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Bu... method __sub__ (line 906) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSpinBox.But... method __xor__ (line 907) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.But... class CorrectionMode (line 909) | class CorrectionMode: method __init__ (line 915) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 916) | def __add__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Cor... method __and__ (line 917) | def __and__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Cor... method __bool__ (line 918) | def __bool__(self) -> bool: ... method __eq__ (line 919) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 920) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 921) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 922) | def __hash__(self) -> int: ... method __index__ (line 923) | def __index__(self) -> int: ... method __int__ (line 924) | def __int__(self) -> int: ... method __le__ (line 925) | def __le__(self, other: object) -> bool: ... method __lt__ (line 926) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 927) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Cor... method __ne__ (line 928) | def __ne__(self, other: object) -> bool: ... method __or__ (line 929) | def __or__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Corr... method __pos__ (line 930) | def __pos__(self): ... method __radd__ (line 931) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Co... method __rand__ (line 932) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Co... method __rmul__ (line 933) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Co... method __ror__ (line 934) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Cor... method __rsub__ (line 935) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Co... method __rxor__ (line 936) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Co... method __sub__ (line 937) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Cor... method __xor__ (line 938) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Cor... class StepEnabled (line 940) | class StepEnabled: method __init__ (line 942) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 943) | def __and__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __bool__ (line 944) | def __bool__(self) -> bool: ... method __eq__ (line 945) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 946) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 947) | def __gt__(self, other: object) -> bool: ... method __index__ (line 948) | def __index__(self) -> int: ... method __int__ (line 949) | def __int__(self) -> int: ... method __invert__ (line 950) | def __invert__(self) -> QAbstractSpinBox.StepEnabled: ... method __le__ (line 951) | def __le__(self, other: object) -> bool: ... method __lt__ (line 952) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 953) | def __ne__(self, other: object) -> bool: ... method __or__ (line 954) | def __or__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Step... method __rand__ (line 955) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __ror__ (line 956) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __rxor__ (line 957) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __xor__ (line 958) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... class StepEnabledFlag (line 960) | class StepEnabledFlag: method __init__ (line 967) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 968) | def __and__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __bool__ (line 969) | def __bool__(self) -> bool: ... method __eq__ (line 970) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 971) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 972) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 973) | def __hash__(self) -> int: ... method __index__ (line 974) | def __index__(self) -> int: ... method __int__ (line 975) | def __int__(self) -> int: ... method __invert__ (line 976) | def __invert__(self) -> QAbstractSpinBox.StepEnabled: ... method __le__ (line 977) | def __le__(self, other: object) -> bool: ... method __lt__ (line 978) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 979) | def __ne__(self, other: object) -> bool: ... method __or__ (line 980) | def __or__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Step... method __rand__ (line 981) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __ror__ (line 982) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __rxor__ (line 983) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __xor__ (line 984) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... class StepType (line 986) | class StepType: method __init__ (line 992) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 993) | def __add__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __and__ (line 994) | def __and__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __bool__ (line 995) | def __bool__(self) -> bool: ... method __eq__ (line 996) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 997) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 998) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 999) | def __hash__(self) -> int: ... method __index__ (line 1000) | def __index__(self) -> int: ... method __int__ (line 1001) | def __int__(self) -> int: ... method __le__ (line 1002) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1003) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1004) | def __mul__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __ne__ (line 1005) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1006) | def __or__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Step... method __pos__ (line 1007) | def __pos__(self): ... method __radd__ (line 1008) | def __radd__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __rand__ (line 1009) | def __rand__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __rmul__ (line 1010) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __ror__ (line 1011) | def __ror__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __rsub__ (line 1012) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __rxor__ (line 1013) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.St... method __sub__ (line 1014) | def __sub__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __xor__ (line 1015) | def __xor__(self, other: typing.SupportsInt) -> QAbstractSpinBox.Ste... method __init__ (line 1028) | def __init__(self, parent: QWidget | None = ..., accelerated: bool = .... method alignment (line 1029) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method buttonSymbols (line 1030) | def buttonSymbols(self) -> QAbstractSpinBox.ButtonSymbols: ... method changeEvent (line 1031) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method clear (line 1032) | def clear(self) -> None: ... method closeEvent (line 1033) | def closeEvent(self, event: PySide2.QtGui.QCloseEvent) -> None: ... method contextMenuEvent (line 1034) | def contextMenuEvent(self, event: PySide2.QtGui.QContextMenuEvent) -> ... method correctionMode (line 1035) | def correctionMode(self) -> QAbstractSpinBox.CorrectionMode: ... method event (line 1036) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method fixup (line 1037) | def fixup(self, input: str) -> None: ... method focusInEvent (line 1038) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 1039) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method hasAcceptableInput (line 1040) | def hasAcceptableInput(self) -> bool: ... method hasFrame (line 1041) | def hasFrame(self) -> bool: ... method hideEvent (line 1042) | def hideEvent(self, event: PySide2.QtGui.QHideEvent) -> None: ... method initStyleOption (line 1043) | def initStyleOption(self, option: QStyleOptionSpinBox) -> None: ... method inputMethodQuery (line 1044) | def inputMethodQuery(self, arg__1: PySide2.QtCore.Qt.InputMethodQuery)... method interpretText (line 1045) | def interpretText(self) -> None: ... method isAccelerated (line 1046) | def isAccelerated(self) -> bool: ... method isGroupSeparatorShown (line 1047) | def isGroupSeparatorShown(self) -> bool: ... method isReadOnly (line 1048) | def isReadOnly(self) -> bool: ... method keyPressEvent (line 1049) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 1050) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyboardTracking (line 1051) | def keyboardTracking(self) -> bool: ... method lineEdit (line 1052) | def lineEdit(self) -> QLineEdit: ... method minimumSizeHint (line 1053) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 1054) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 1055) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 1056) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method paintEvent (line 1057) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 1058) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method selectAll (line 1059) | def selectAll(self) -> None: ... method setAccelerated (line 1060) | def setAccelerated(self, on: bool) -> None: ... method setAlignment (line 1061) | def setAlignment(self, flag: PySide2.QtCore.Qt.Alignment | PySide2.QtC... method setButtonSymbols (line 1062) | def setButtonSymbols(self, bs: QAbstractSpinBox.ButtonSymbols) -> None... method setCorrectionMode (line 1063) | def setCorrectionMode(self, cm: QAbstractSpinBox.CorrectionMode) -> No... method setFrame (line 1064) | def setFrame(self, arg__1: bool) -> None: ... method setGroupSeparatorShown (line 1065) | def setGroupSeparatorShown(self, shown: bool) -> None: ... method setKeyboardTracking (line 1066) | def setKeyboardTracking(self, kt: bool) -> None: ... method setLineEdit (line 1067) | def setLineEdit(self, edit: QLineEdit) -> None: ... method setReadOnly (line 1068) | def setReadOnly(self, r: bool) -> None: ... method setSpecialValueText (line 1069) | def setSpecialValueText(self, txt: str) -> None: ... method setWrapping (line 1070) | def setWrapping(self, w: bool) -> None: ... method showEvent (line 1071) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 1072) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method specialValueText (line 1073) | def specialValueText(self) -> str: ... method stepBy (line 1074) | def stepBy(self, steps: int) -> None: ... method stepDown (line 1075) | def stepDown(self) -> None: ... method stepEnabled (line 1076) | def stepEnabled(self) -> QAbstractSpinBox.StepEnabled | QAbstractSpinB... method stepUp (line 1077) | def stepUp(self) -> None: ... method text (line 1078) | def text(self) -> str: ... method timerEvent (line 1079) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method validate (line 1080) | def validate(self, input: str, pos: int) -> PySide2.QtGui.QValidator.S... method wheelEvent (line 1081) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... method wrapping (line 1082) | def wrapping(self) -> bool: ... class QAccessibleWidget (line 1084) | class QAccessibleWidget(PySide2.QtGui.QAccessibleObject): method __init__ (line 1085) | def __init__(self, o: QWidget, r: PySide2.QtGui.QAccessible.Role = ...... method actionNames (line 1086) | def actionNames(self) -> list[str]: ... method addControllingSignal (line 1087) | def addControllingSignal(self, signal: str) -> None: ... method backgroundColor (line 1088) | def backgroundColor(self) -> PySide2.QtGui.QColor: ... method child (line 1089) | def child(self, index: int) -> PySide2.QtGui.QAccessibleInterface: ... method childCount (line 1090) | def childCount(self) -> int: ... method doAction (line 1091) | def doAction(self, actionName: str) -> None: ... method focusChild (line 1092) | def focusChild(self) -> PySide2.QtGui.QAccessibleInterface: ... method foregroundColor (line 1093) | def foregroundColor(self) -> PySide2.QtGui.QColor: ... method indexOfChild (line 1094) | def indexOfChild(self, child: PySide2.QtGui.QAccessibleInterface) -> i... method interface_cast (line 1095) | def interface_cast(self, t: PySide2.QtGui.QAccessible.InterfaceType) -... method isValid (line 1096) | def isValid(self) -> bool: ... method keyBindingsForAction (line 1097) | def keyBindingsForAction(self, actionName: str) -> list[str]: ... method parent (line 1098) | def parent(self) -> PySide2.QtGui.QAccessibleInterface: ... method parentObject (line 1099) | def parentObject(self) -> PySide2.QtCore.QObject: ... method rect (line 1100) | def rect(self) -> PySide2.QtCore.QRect: ... method relations (line 1101) | def relations(self, match: PySide2.QtGui.QAccessible.Relation | PySide... method role (line 1102) | def role(self) -> PySide2.QtGui.QAccessible.Role: ... method state (line 1103) | def state(self) -> PySide2.QtGui.QAccessible.State: ... method text (line 1104) | def text(self, t: PySide2.QtGui.QAccessible.Text) -> str: ... method widget (line 1105) | def widget(self) -> QWidget: ... method window (line 1106) | def window(self) -> PySide2.QtGui.QWindow: ... class QAction (line 1108) | class QAction(PySide2.QtCore.QObject): class ActionEvent (line 1109) | class ActionEvent: method __init__ (line 1115) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1116) | def __add__(self, other: typing.SupportsInt) -> QAction.ActionEvent:... method __and__ (line 1117) | def __and__(self, other: typing.SupportsInt) -> QAction.ActionEvent:... method __bool__ (line 1118) | def __bool__(self) -> bool: ... method __eq__ (line 1119) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1120) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1121) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1122) | def __hash__(self) -> int: ... method __index__ (line 1123) | def __index__(self) -> int: ... method __int__ (line 1124) | def __int__(self) -> int: ... method __le__ (line 1125) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1126) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1127) | def __mul__(self, other: typing.SupportsInt) -> QAction.ActionEvent:... method __ne__ (line 1128) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1129) | def __or__(self, other: typing.SupportsInt) -> QAction.ActionEvent: ... method __pos__ (line 1130) | def __pos__(self): ... method __radd__ (line 1131) | def __radd__(self, other: typing.SupportsInt) -> QAction.ActionEvent... method __rand__ (line 1132) | def __rand__(self, other: typing.SupportsInt) -> QAction.ActionEvent... method __rmul__ (line 1133) | def __rmul__(self, other: typing.SupportsInt) -> QAction.ActionEvent... method __ror__ (line 1134) | def __ror__(self, other: typing.SupportsInt) -> QAction.ActionEvent:... method __rsub__ (line 1135) | def __rsub__(self, other: typing.SupportsInt) -> QAction.ActionEvent... method __rxor__ (line 1136) | def __rxor__(self, other: typing.SupportsInt) -> QAction.ActionEvent... method __sub__ (line 1137) | def __sub__(self, other: typing.SupportsInt) -> QAction.ActionEvent:... method __xor__ (line 1138) | def __xor__(self, other: typing.SupportsInt) -> QAction.ActionEvent:... class MenuRole (line 1140) | class MenuRole: method __init__ (line 1151) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1152) | def __add__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __and__ (line 1153) | def __and__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __bool__ (line 1154) | def __bool__(self) -> bool: ... method __eq__ (line 1155) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1156) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1157) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1158) | def __hash__(self) -> int: ... method __index__ (line 1159) | def __index__(self) -> int: ... method __int__ (line 1160) | def __int__(self) -> int: ... method __le__ (line 1161) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1162) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1163) | def __mul__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __ne__ (line 1164) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1165) | def __or__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __pos__ (line 1166) | def __pos__(self): ... method __radd__ (line 1167) | def __radd__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __rand__ (line 1168) | def __rand__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __rmul__ (line 1169) | def __rmul__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __ror__ (line 1170) | def __ror__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __rsub__ (line 1171) | def __rsub__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __rxor__ (line 1172) | def __rxor__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __sub__ (line 1173) | def __sub__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... method __xor__ (line 1174) | def __xor__(self, other: typing.SupportsInt) -> QAction.MenuRole: ... class Priority (line 1176) | class Priority: method __init__ (line 1183) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1184) | def __add__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __and__ (line 1185) | def __and__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __bool__ (line 1186) | def __bool__(self) -> bool: ... method __eq__ (line 1187) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1188) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1189) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1190) | def __hash__(self) -> int: ... method __index__ (line 1191) | def __index__(self) -> int: ... method __int__ (line 1192) | def __int__(self) -> int: ... method __le__ (line 1193) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1194) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1195) | def __mul__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __ne__ (line 1196) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1197) | def __or__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __pos__ (line 1198) | def __pos__(self): ... method __radd__ (line 1199) | def __radd__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __rand__ (line 1200) | def __rand__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __rmul__ (line 1201) | def __rmul__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __ror__ (line 1202) | def __ror__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __rsub__ (line 1203) | def __rsub__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __rxor__ (line 1204) | def __rxor__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __sub__ (line 1205) | def __sub__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __xor__ (line 1206) | def __xor__(self, other: typing.SupportsInt) -> QAction.Priority: ... method __init__ (line 1225) | def __init__(self, text: str, parent: PySide2.QtCore.QObject | None = ... method __init__ (line 1227) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., autoRe... method __init__ (line 1229) | def __init__(self, icon: PySide2.QtGui.QIcon, text: str, parent: PySid... method actionGroup (line 1230) | def actionGroup(self) -> QActionGroup: ... method activate (line 1231) | def activate(self, event: QAction.ActionEvent) -> None: ... method associatedGraphicsWidgets (line 1232) | def associatedGraphicsWidgets(self) -> list[QGraphicsWidget]: ... method associatedWidgets (line 1233) | def associatedWidgets(self) -> list[QWidget]: ... method autoRepeat (line 1234) | def autoRepeat(self) -> bool: ... method data (line 1235) | def data(self) -> typing.Any: ... method event (line 1236) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method font (line 1237) | def font(self) -> PySide2.QtGui.QFont: ... method hover (line 1238) | def hover(self) -> None: ... method icon (line 1239) | def icon(self) -> PySide2.QtGui.QIcon: ... method iconText (line 1240) | def iconText(self) -> str: ... method isCheckable (line 1241) | def isCheckable(self) -> bool: ... method isChecked (line 1242) | def isChecked(self) -> bool: ... method isEnabled (line 1243) | def isEnabled(self) -> bool: ... method isIconVisibleInMenu (line 1244) | def isIconVisibleInMenu(self) -> bool: ... method isSeparator (line 1245) | def isSeparator(self) -> bool: ... method isShortcutVisibleInContextMenu (line 1246) | def isShortcutVisibleInContextMenu(self) -> bool: ... method isVisible (line 1247) | def isVisible(self) -> bool: ... method menu (line 1248) | def menu(self) -> QMenu: ... method menuRole (line 1249) | def menuRole(self) -> QAction.MenuRole: ... method parentWidget (line 1250) | def parentWidget(self) -> QWidget: ... method priority (line 1251) | def priority(self) -> QAction.Priority: ... method setActionGroup (line 1252) | def setActionGroup(self, group: QActionGroup) -> None: ... method setAutoRepeat (line 1253) | def setAutoRepeat(self, arg__1: bool) -> None: ... method setCheckable (line 1254) | def setCheckable(self, arg__1: bool) -> None: ... method setChecked (line 1255) | def setChecked(self, arg__1: bool) -> None: ... method setData (line 1256) | def setData(self, var: typing.Any) -> None: ... method setDisabled (line 1257) | def setDisabled(self, b: bool) -> None: ... method setEnabled (line 1258) | def setEnabled(self, arg__1: bool) -> None: ... method setFont (line 1259) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setIcon (line 1260) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setIconText (line 1261) | def setIconText(self, text: str) -> None: ... method setIconVisibleInMenu (line 1262) | def setIconVisibleInMenu(self, visible: bool) -> None: ... method setMenu (line 1263) | def setMenu(self, menu: QMenu) -> None: ... method setMenuRole (line 1264) | def setMenuRole(self, menuRole: QAction.MenuRole) -> None: ... method setPriority (line 1265) | def setPriority(self, priority: QAction.Priority) -> None: ... method setSeparator (line 1266) | def setSeparator(self, b: bool) -> None: ... method setShortcut (line 1267) | def setShortcut(self, shortcut: PySide2.QtGui.QKeySequence | str) -> N... method setShortcutContext (line 1268) | def setShortcutContext(self, context: PySide2.QtCore.Qt.ShortcutContex... method setShortcutVisibleInContextMenu (line 1269) | def setShortcutVisibleInContextMenu(self, show: bool) -> None: ... method setShortcuts (line 1271) | def setShortcuts(self, shortcuts: typing.Iterable[PySide2.QtGui.QKeySe... method setShortcuts (line 1273) | def setShortcuts(self, arg__1: PySide2.QtGui.QKeySequence.StandardKey)... method setStatusTip (line 1274) | def setStatusTip(self, statusTip: str) -> None: ... method setText (line 1275) | def setText(self, text: str) -> None: ... method setToolTip (line 1276) | def setToolTip(self, tip: str) -> None: ... method setVisible (line 1277) | def setVisible(self, arg__1: bool) -> None: ... method setWhatsThis (line 1278) | def setWhatsThis(self, what: str) -> None: ... method shortcut (line 1279) | def shortcut(self) -> PySide2.QtGui.QKeySequence: ... method shortcutContext (line 1280) | def shortcutContext(self) -> PySide2.QtCore.Qt.ShortcutContext: ... method shortcuts (line 1281) | def shortcuts(self) -> list[PySide2.QtGui.QKeySequence]: ... method showStatusText (line 1282) | def showStatusText(self, widget: QWidget | None = ...) -> bool: ... method statusTip (line 1283) | def statusTip(self) -> str: ... method text (line 1284) | def text(self) -> str: ... method toggle (line 1285) | def toggle(self) -> None: ... method toolTip (line 1286) | def toolTip(self) -> str: ... method trigger (line 1287) | def trigger(self) -> None: ... method whatsThis (line 1288) | def whatsThis(self) -> str: ... class QActionGroup (line 1290) | class QActionGroup(PySide2.QtCore.QObject): class ExclusionPolicy (line 1291) | class ExclusionPolicy: method __init__ (line 1298) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1299) | def __add__(self, other: typing.SupportsInt) -> QActionGroup.Exclusi... method __and__ (line 1300) | def __and__(self, other: typing.SupportsInt) -> QActionGroup.Exclusi... method __bool__ (line 1301) | def __bool__(self) -> bool: ... method __eq__ (line 1302) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1303) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1304) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1305) | def __hash__(self) -> int: ... method __index__ (line 1306) | def __index__(self) -> int: ... method __int__ (line 1307) | def __int__(self) -> int: ... method __le__ (line 1308) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1309) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1310) | def __mul__(self, other: typing.SupportsInt) -> QActionGroup.Exclusi... method __ne__ (line 1311) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1312) | def __or__(self, other: typing.SupportsInt) -> QActionGroup.Exclusio... method __pos__ (line 1313) | def __pos__(self): ... method __radd__ (line 1314) | def __radd__(self, other: typing.SupportsInt) -> QActionGroup.Exclus... method __rand__ (line 1315) | def __rand__(self, other: typing.SupportsInt) -> QActionGroup.Exclus... method __rmul__ (line 1316) | def __rmul__(self, other: typing.SupportsInt) -> QActionGroup.Exclus... method __ror__ (line 1317) | def __ror__(self, other: typing.SupportsInt) -> QActionGroup.Exclusi... method __rsub__ (line 1318) | def __rsub__(self, other: typing.SupportsInt) -> QActionGroup.Exclus... method __rxor__ (line 1319) | def __rxor__(self, other: typing.SupportsInt) -> QActionGroup.Exclus... method __sub__ (line 1320) | def __sub__(self, other: typing.SupportsInt) -> QActionGroup.Exclusi... method __xor__ (line 1321) | def __xor__(self, other: typing.SupportsInt) -> QActionGroup.Exclusi... method __init__ (line 1325) | def __init__(self, parent: PySide2.QtCore.QObject | None, destroyed: t... method actions (line 1326) | def actions(self) -> list[QAction]: ... method addAction (line 1328) | def addAction(self, icon: PySide2.QtGui.QIcon, text: str) -> QAction: ... method addAction (line 1330) | def addAction(self, text: str) -> QAction: ... method addAction (line 1332) | def addAction(self, a: QAction) -> QAction: ... method checkedAction (line 1333) | def checkedAction(self) -> QAction: ... method exclusionPolicy (line 1334) | def exclusionPolicy(self) -> QActionGroup.ExclusionPolicy: ... method isEnabled (line 1335) | def isEnabled(self) -> bool: ... method isExclusive (line 1336) | def isExclusive(self) -> bool: ... method isVisible (line 1337) | def isVisible(self) -> bool: ... method removeAction (line 1338) | def removeAction(self, a: QAction) -> None: ... method setDisabled (line 1339) | def setDisabled(self, b: bool) -> None: ... method setEnabled (line 1340) | def setEnabled(self, arg__1: bool) -> None: ... method setExclusionPolicy (line 1341) | def setExclusionPolicy(self, policy: QActionGroup.ExclusionPolicy) -> ... method setExclusive (line 1342) | def setExclusive(self, arg__1: bool) -> None: ... method setVisible (line 1343) | def setVisible(self, arg__1: bool) -> None: ... class QApplication (line 1345) | class QApplication(PySide2.QtGui.QGuiApplication): class ColorSpec (line 1346) | class ColorSpec: method __init__ (line 1353) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1354) | def __add__(self, other: typing.SupportsInt) -> QApplication.ColorSp... method __and__ (line 1355) | def __and__(self, other: typing.SupportsInt) -> QApplication.ColorSp... method __bool__ (line 1356) | def __bool__(self) -> bool: ... method __eq__ (line 1357) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1358) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1359) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1360) | def __hash__(self) -> int: ... method __index__ (line 1361) | def __index__(self) -> int: ... method __int__ (line 1362) | def __int__(self) -> int: ... method __le__ (line 1363) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1364) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1365) | def __mul__(self, other: typing.SupportsInt) -> QApplication.ColorSp... method __ne__ (line 1366) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1367) | def __or__(self, other: typing.SupportsInt) -> QApplication.ColorSpe... method __pos__ (line 1368) | def __pos__(self): ... method __radd__ (line 1369) | def __radd__(self, other: typing.SupportsInt) -> QApplication.ColorS... method __rand__ (line 1370) | def __rand__(self, other: typing.SupportsInt) -> QApplication.ColorS... method __rmul__ (line 1371) | def __rmul__(self, other: typing.SupportsInt) -> QApplication.ColorS... method __ror__ (line 1372) | def __ror__(self, other: typing.SupportsInt) -> QApplication.ColorSp... method __rsub__ (line 1373) | def __rsub__(self, other: typing.SupportsInt) -> QApplication.ColorS... method __rxor__ (line 1374) | def __rxor__(self, other: typing.SupportsInt) -> QApplication.ColorS... method __sub__ (line 1375) | def __sub__(self, other: typing.SupportsInt) -> QApplication.ColorSp... method __xor__ (line 1376) | def __xor__(self, other: typing.SupportsInt) -> QApplication.ColorSp... method __init__ (line 1383) | def __init__(self, arg__1: typing.Iterable[str], destroyed: typing.Cal... method __init__ (line 1385) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method aboutQt (line 1387) | def aboutQt() -> None: ... method activeModalWidget (line 1389) | def activeModalWidget() -> QWidget: ... method activePopupWidget (line 1391) | def activePopupWidget() -> QWidget: ... method activeWindow (line 1393) | def activeWindow() -> QWidget: ... method alert (line 1395) | def alert(widget: QWidget, duration: int = ...) -> None: ... method allWidgets (line 1397) | def allWidgets() -> list[QWidget]: ... method autoSipEnabled (line 1398) | def autoSipEnabled(self) -> bool: ... method beep (line 1400) | def beep() -> None: ... method closeAllWindows (line 1402) | def closeAllWindows() -> None: ... method colorSpec (line 1404) | def colorSpec() -> int: ... method cursorFlashTime (line 1406) | def cursorFlashTime() -> int: ... method desktop (line 1408) | def desktop() -> QDesktopWidget: ... method doubleClickInterval (line 1410) | def doubleClickInterval() -> int: ... method event (line 1411) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method exec_ (line 1413) | def exec_() -> int: ... method focusWidget (line 1415) | def focusWidget() -> QWidget: ... method font (line 1418) | def font(className: bytes) -> PySide2.QtGui.QFont: ... method font (line 1421) | def font(arg__1: QWidget) -> PySide2.QtGui.QFont: ... method font (line 1424) | def font() -> PySide2.QtGui.QFont: ... method fontMetrics (line 1426) | def fontMetrics() -> PySide2.QtGui.QFontMetrics: ... method globalStrut (line 1428) | def globalStrut() -> PySide2.QtCore.QSize: ... method isEffectEnabled (line 1430) | def isEffectEnabled(arg__1: PySide2.QtCore.Qt.UIEffect) -> bool: ... method keyboardInputInterval (line 1432) | def keyboardInputInterval() -> int: ... method notify (line 1433) | def notify(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.QtCor... method palette (line 1436) | def palette(className: bytes) -> PySide2.QtGui.QPalette: ... method palette (line 1439) | def palette(arg__1: QWidget) -> PySide2.QtGui.QPalette: ... method palette (line 1442) | def palette() -> PySide2.QtGui.QPalette: ... method setActiveWindow (line 1444) | def setActiveWindow(act: QWidget) -> None: ... method setAutoSipEnabled (line 1445) | def setAutoSipEnabled(self, enabled: bool) -> None: ... method setColorSpec (line 1447) | def setColorSpec(arg__1: int) -> None: ... method setCursorFlashTime (line 1449) | def setCursorFlashTime(arg__1: int) -> None: ... method setDoubleClickInterval (line 1451) | def setDoubleClickInterval(arg__1: int) -> None: ... method setEffectEnabled (line 1453) | def setEffectEnabled(arg__1: PySide2.QtCore.Qt.UIEffect, enable: bool ... method setFont (line 1456) | def setFont(arg__1: PySide2.QtGui.QFont, className: bytes | None = ...... method setGlobalStrut (line 1458) | def setGlobalStrut(arg__1: PySide2.QtCore.QSize) -> None: ... method setKeyboardInputInterval (line 1460) | def setKeyboardInputInterval(arg__1: int) -> None: ... method setPalette (line 1463) | def setPalette(arg__1: PySide2.QtGui.QPalette, className: bytes | None... method setPalette (line 1466) | def setPalette(pal: PySide2.QtGui.QPalette) -> None: ... method setStartDragDistance (line 1468) | def setStartDragDistance(l: int) -> None: ... method setStartDragTime (line 1470) | def setStartDragTime(ms: int) -> None: ... method setStyle (line 1473) | def setStyle(arg__1: QStyle) -> None: ... method setStyle (line 1476) | def setStyle(arg__1: str) -> QStyle: ... method setStyleSheet (line 1477) | def setStyleSheet(self, sheet: str) -> None: ... method setWheelScrollLines (line 1479) | def setWheelScrollLines(arg__1: int) -> None: ... method setWindowIcon (line 1481) | def setWindowIcon(icon: PySide2.QtGui.QIcon) -> None: ... method startDragDistance (line 1483) | def startDragDistance() -> int: ... method startDragTime (line 1485) | def startDragTime() -> int: ... method style (line 1487) | def style() -> QStyle: ... method styleSheet (line 1488) | def styleSheet(self) -> str: ... method topLevelAt (line 1491) | def topLevelAt(x: int, y: int) -> QWidget: ... method topLevelAt (line 1494) | def topLevelAt(p: PySide2.QtCore.QPoint) -> QWidget: ... method topLevelWidgets (line 1496) | def topLevelWidgets() -> list[QWidget]: ... method wheelScrollLines (line 1498) | def wheelScrollLines() -> int: ... method widgetAt (line 1501) | def widgetAt(x: int, y: int) -> QWidget: ... method widgetAt (line 1504) | def widgetAt(p: PySide2.QtCore.QPoint) -> QWidget: ... method windowIcon (line 1506) | def windowIcon() -> PySide2.QtGui.QIcon: ... class QBoxLayout (line 1508) | class QBoxLayout(QLayout): class Direction (line 1509) | class Direction: method __init__ (line 1519) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1520) | def __add__(self, other: typing.SupportsInt) -> QBoxLayout.Direction... method __and__ (line 1521) | def __and__(self, other: typing.SupportsInt) -> QBoxLayout.Direction... method __bool__ (line 1522) | def __bool__(self) -> bool: ... method __eq__ (line 1523) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1524) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1525) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1526) | def __hash__(self) -> int: ... method __index__ (line 1527) | def __index__(self) -> int: ... method __int__ (line 1528) | def __int__(self) -> int: ... method __le__ (line 1529) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1530) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1531) | def __mul__(self, other: typing.SupportsInt) -> QBoxLayout.Direction... method __ne__ (line 1532) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1533) | def __or__(self, other: typing.SupportsInt) -> QBoxLayout.Direction:... method __pos__ (line 1534) | def __pos__(self): ... method __radd__ (line 1535) | def __radd__(self, other: typing.SupportsInt) -> QBoxLayout.Directio... method __rand__ (line 1536) | def __rand__(self, other: typing.SupportsInt) -> QBoxLayout.Directio... method __rmul__ (line 1537) | def __rmul__(self, other: typing.SupportsInt) -> QBoxLayout.Directio... method __ror__ (line 1538) | def __ror__(self, other: typing.SupportsInt) -> QBoxLayout.Direction... method __rsub__ (line 1539) | def __rsub__(self, other: typing.SupportsInt) -> QBoxLayout.Directio... method __rxor__ (line 1540) | def __rxor__(self, other: typing.SupportsInt) -> QBoxLayout.Directio... method __sub__ (line 1541) | def __sub__(self, other: typing.SupportsInt) -> QBoxLayout.Direction... method __xor__ (line 1542) | def __xor__(self, other: typing.SupportsInt) -> QBoxLayout.Direction... method __init__ (line 1550) | def __init__(self, arg__1: QBoxLayout.Direction, parent: QWidget | Non... method addItem (line 1551) | def addItem(self, arg__1: QLayoutItem) -> None: ... method addLayout (line 1552) | def addLayout(self, layout: QLayout, stretch: int = ...) -> None: ... method addSpacerItem (line 1553) | def addSpacerItem(self, spacerItem: QSpacerItem) -> None: ... method addSpacing (line 1554) | def addSpacing(self, size: int) -> None: ... method addStretch (line 1555) | def addStretch(self, stretch: int = ...) -> None: ... method addStrut (line 1556) | def addStrut(self, arg__1: int) -> None: ... method addWidget (line 1558) | def addWidget(self, arg__1: QWidget, stretch: int = ..., alignment: Py... method addWidget (line 1560) | def addWidget(self, w: QWidget) -> None: ... method count (line 1561) | def count(self) -> int: ... method direction (line 1562) | def direction(self) -> QBoxLayout.Direction: ... method expandingDirections (line 1563) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method hasHeightForWidth (line 1564) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 1565) | def heightForWidth(self, arg__1: int) -> int: ... method insertItem (line 1566) | def insertItem(self, index: int, arg__2: QLayoutItem) -> None: ... method insertLayout (line 1567) | def insertLayout(self, index: int, layout: QLayout, stretch: int = ...... method insertSpacerItem (line 1568) | def insertSpacerItem(self, index: int, spacerItem: QSpacerItem) -> Non... method insertSpacing (line 1569) | def insertSpacing(self, index: int, size: int) -> None: ... method insertStretch (line 1570) | def insertStretch(self, index: int, stretch: int = ...) -> None: ... method insertWidget (line 1571) | def insertWidget(self, index: int, widget: QWidget, stretch: int = ...... method invalidate (line 1572) | def invalidate(self) -> None: ... method itemAt (line 1573) | def itemAt(self, arg__1: int) -> QLayoutItem: ... method maximumSize (line 1574) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method minimumHeightForWidth (line 1575) | def minimumHeightForWidth(self, arg__1: int) -> int: ... method minimumSize (line 1576) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method setDirection (line 1577) | def setDirection(self, arg__1: QBoxLayout.Direction) -> None: ... method setGeometry (line 1578) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method setSpacing (line 1579) | def setSpacing(self, spacing: int) -> None: ... method setStretch (line 1580) | def setStretch(self, index: int, stretch: int) -> None: ... method setStretchFactor (line 1582) | def setStretchFactor(self, w: QWidget, stretch: int) -> bool: ... method setStretchFactor (line 1584) | def setStretchFactor(self, l: QLayout, stretch: int) -> bool: ... method sizeHint (line 1585) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method spacing (line 1586) | def spacing(self) -> int: ... method stretch (line 1587) | def stretch(self, index: int) -> int: ... method takeAt (line 1588) | def takeAt(self, arg__1: int) -> QLayoutItem: ... class QButtonGroup (line 1590) | class QButtonGroup(PySide2.QtCore.QObject): method __init__ (line 1600) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., button... method addButton (line 1601) | def addButton(self, arg__1: QAbstractButton, id: int = ...) -> None: ... method button (line 1602) | def button(self, id: int) -> QAbstractButton: ... method buttons (line 1603) | def buttons(self) -> list[QAbstractButton]: ... method checkedButton (line 1604) | def checkedButton(self) -> QAbstractButton: ... method checkedId (line 1605) | def checkedId(self) -> int: ... method exclusive (line 1606) | def exclusive(self) -> bool: ... method id (line 1607) | def id(self, button: QAbstractButton) -> int: ... method removeButton (line 1608) | def removeButton(self, arg__1: QAbstractButton) -> None: ... method setExclusive (line 1609) | def setExclusive(self, arg__1: bool) -> None: ... method setId (line 1610) | def setId(self, button: QAbstractButton, id: int) -> None: ... class QCalendarWidget (line 1612) | class QCalendarWidget(QWidget): class HorizontalHeaderFormat (line 1613) | class HorizontalHeaderFormat: method __init__ (line 1621) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1622) | def __add__(self, other: typing.SupportsInt) -> QCalendarWidget.Hori... method __and__ (line 1623) | def __and__(self, other: typing.SupportsInt) -> QCalendarWidget.Hori... method __bool__ (line 1624) | def __bool__(self) -> bool: ... method __eq__ (line 1625) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1626) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1627) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1628) | def __hash__(self) -> int: ... method __index__ (line 1629) | def __index__(self) -> int: ... method __int__ (line 1630) | def __int__(self) -> int: ... method __le__ (line 1631) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1632) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1633) | def __mul__(self, other: typing.SupportsInt) -> QCalendarWidget.Hori... method __ne__ (line 1634) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1635) | def __or__(self, other: typing.SupportsInt) -> QCalendarWidget.Horiz... method __pos__ (line 1636) | def __pos__(self): ... method __radd__ (line 1637) | def __radd__(self, other: typing.SupportsInt) -> QCalendarWidget.Hor... method __rand__ (line 1638) | def __rand__(self, other: typing.SupportsInt) -> QCalendarWidget.Hor... method __rmul__ (line 1639) | def __rmul__(self, other: typing.SupportsInt) -> QCalendarWidget.Hor... method __ror__ (line 1640) | def __ror__(self, other: typing.SupportsInt) -> QCalendarWidget.Hori... method __rsub__ (line 1641) | def __rsub__(self, other: typing.SupportsInt) -> QCalendarWidget.Hor... method __rxor__ (line 1642) | def __rxor__(self, other: typing.SupportsInt) -> QCalendarWidget.Hor... method __sub__ (line 1643) | def __sub__(self, other: typing.SupportsInt) -> QCalendarWidget.Hori... method __xor__ (line 1644) | def __xor__(self, other: typing.SupportsInt) -> QCalendarWidget.Hori... class SelectionMode (line 1646) | class SelectionMode: method __init__ (line 1652) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1653) | def __add__(self, other: typing.SupportsInt) -> QCalendarWidget.Sele... method __and__ (line 1654) | def __and__(self, other: typing.SupportsInt) -> QCalendarWidget.Sele... method __bool__ (line 1655) | def __bool__(self) -> bool: ... method __eq__ (line 1656) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1657) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1658) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1659) | def __hash__(self) -> int: ... method __index__ (line 1660) | def __index__(self) -> int: ... method __int__ (line 1661) | def __int__(self) -> int: ... method __le__ (line 1662) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1663) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1664) | def __mul__(self, other: typing.SupportsInt) -> QCalendarWidget.Sele... method __ne__ (line 1665) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1666) | def __or__(self, other: typing.SupportsInt) -> QCalendarWidget.Selec... method __pos__ (line 1667) | def __pos__(self): ... method __radd__ (line 1668) | def __radd__(self, other: typing.SupportsInt) -> QCalendarWidget.Sel... method __rand__ (line 1669) | def __rand__(self, other: typing.SupportsInt) -> QCalendarWidget.Sel... method __rmul__ (line 1670) | def __rmul__(self, other: typing.SupportsInt) -> QCalendarWidget.Sel... method __ror__ (line 1671) | def __ror__(self, other: typing.SupportsInt) -> QCalendarWidget.Sele... method __rsub__ (line 1672) | def __rsub__(self, other: typing.SupportsInt) -> QCalendarWidget.Sel... method __rxor__ (line 1673) | def __rxor__(self, other: typing.SupportsInt) -> QCalendarWidget.Sel... method __sub__ (line 1674) | def __sub__(self, other: typing.SupportsInt) -> QCalendarWidget.Sele... method __xor__ (line 1675) | def __xor__(self, other: typing.SupportsInt) -> QCalendarWidget.Sele... class VerticalHeaderFormat (line 1677) | class VerticalHeaderFormat: method __init__ (line 1683) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1684) | def __add__(self, other: typing.SupportsInt) -> QCalendarWidget.Vert... method __and__ (line 1685) | def __and__(self, other: typing.SupportsInt) -> QCalendarWidget.Vert... method __bool__ (line 1686) | def __bool__(self) -> bool: ... method __eq__ (line 1687) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1688) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1689) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1690) | def __hash__(self) -> int: ... method __index__ (line 1691) | def __index__(self) -> int: ... method __int__ (line 1692) | def __int__(self) -> int: ... method __le__ (line 1693) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1694) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1695) | def __mul__(self, other: typing.SupportsInt) -> QCalendarWidget.Vert... method __ne__ (line 1696) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1697) | def __or__(self, other: typing.SupportsInt) -> QCalendarWidget.Verti... method __pos__ (line 1698) | def __pos__(self): ... method __radd__ (line 1699) | def __radd__(self, other: typing.SupportsInt) -> QCalendarWidget.Ver... method __rand__ (line 1700) | def __rand__(self, other: typing.SupportsInt) -> QCalendarWidget.Ver... method __rmul__ (line 1701) | def __rmul__(self, other: typing.SupportsInt) -> QCalendarWidget.Ver... method __ror__ (line 1702) | def __ror__(self, other: typing.SupportsInt) -> QCalendarWidget.Vert... method __rsub__ (line 1703) | def __rsub__(self, other: typing.SupportsInt) -> QCalendarWidget.Ver... method __rxor__ (line 1704) | def __rxor__(self, other: typing.SupportsInt) -> QCalendarWidget.Ver... method __sub__ (line 1705) | def __sub__(self, other: typing.SupportsInt) -> QCalendarWidget.Vert... method __xor__ (line 1706) | def __xor__(self, other: typing.SupportsInt) -> QCalendarWidget.Vert... method __init__ (line 1720) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method calendar (line 1721) | def calendar(self) -> PySide2.QtCore.QCalendar: ... method dateEditAcceptDelay (line 1722) | def dateEditAcceptDelay(self) -> int: ... method dateTextFormat (line 1724) | def dateTextFormat(self, date: PySide2.QtCore.QDate | datetime.date) -... method dateTextFormat (line 1726) | def dateTextFormat(self) -> dict[PySide2.QtCore.QDate, PySide2.QtGui.Q... method event (line 1727) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 1728) | def eventFilter(self, watched: PySide2.QtCore.QObject, event: PySide2.... method firstDayOfWeek (line 1729) | def firstDayOfWeek(self) -> PySide2.QtCore.Qt.DayOfWeek: ... method headerTextFormat (line 1730) | def headerTextFormat(self) -> PySide2.QtGui.QTextCharFormat: ... method horizontalHeaderFormat (line 1731) | def horizontalHeaderFormat(self) -> QCalendarWidget.HorizontalHeaderFo... method isDateEditEnabled (line 1732) | def isDateEditEnabled(self) -> bool: ... method isGridVisible (line 1733) | def isGridVisible(self) -> bool: ... method isNavigationBarVisible (line 1734) | def isNavigationBarVisible(self) -> bool: ... method keyPressEvent (line 1735) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method maximumDate (line 1736) | def maximumDate(self) -> PySide2.QtCore.QDate: ... method minimumDate (line 1737) | def minimumDate(self) -> PySide2.QtCore.QDate: ... method minimumSizeHint (line 1738) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method monthShown (line 1739) | def monthShown(self) -> int: ... method mousePressEvent (line 1740) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method paintCell (line 1741) | def paintCell(self, painter: PySide2.QtGui.QPainter, rect: PySide2.QtC... method resizeEvent (line 1742) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method selectedDate (line 1743) | def selectedDate(self) -> PySide2.QtCore.QDate: ... method selectionMode (line 1744) | def selectionMode(self) -> QCalendarWidget.SelectionMode: ... method setCalendar (line 1745) | def setCalendar(self, calendar: PySide2.QtCore.QCalendar) -> None: ... method setCurrentPage (line 1746) | def setCurrentPage(self, year: int, month: int) -> None: ... method setDateEditAcceptDelay (line 1747) | def setDateEditAcceptDelay(self, delay: int) -> None: ... method setDateEditEnabled (line 1748) | def setDateEditEnabled(self, enable: bool) -> None: ... method setDateRange (line 1749) | def setDateRange(self, min: PySide2.QtCore.QDate | datetime.date, max:... method setDateTextFormat (line 1750) | def setDateTextFormat(self, date: PySide2.QtCore.QDate | datetime.date... method setFirstDayOfWeek (line 1751) | def setFirstDayOfWeek(self, dayOfWeek: PySide2.QtCore.Qt.DayOfWeek) ->... method setGridVisible (line 1752) | def setGridVisible(self, show: bool) -> None: ... method setHeaderTextFormat (line 1753) | def setHeaderTextFormat(self, format: PySide2.QtGui.QTextCharFormat) -... method setHorizontalHeaderFormat (line 1754) | def setHorizontalHeaderFormat(self, format: QCalendarWidget.Horizontal... method setMaximumDate (line 1755) | def setMaximumDate(self, date: PySide2.QtCore.QDate | datetime.date) -... method setMinimumDate (line 1756) | def setMinimumDate(self, date: PySide2.QtCore.QDate | datetime.date) -... method setNavigationBarVisible (line 1757) | def setNavigationBarVisible(self, visible: bool) -> None: ... method setSelectedDate (line 1758) | def setSelectedDate(self, date: PySide2.QtCore.QDate | datetime.date) ... method setSelectionMode (line 1759) | def setSelectionMode(self, mode: QCalendarWidget.SelectionMode) -> Non... method setVerticalHeaderFormat (line 1760) | def setVerticalHeaderFormat(self, format: QCalendarWidget.VerticalHead... method setWeekdayTextFormat (line 1761) | def setWeekdayTextFormat(self, dayOfWeek: PySide2.QtCore.Qt.DayOfWeek,... method showNextMonth (line 1762) | def showNextMonth(self) -> None: ... method showNextYear (line 1763) | def showNextYear(self) -> None: ... method showPreviousMonth (line 1764) | def showPreviousMonth(self) -> None: ... method showPreviousYear (line 1765) | def showPreviousYear(self) -> None: ... method showSelectedDate (line 1766) | def showSelectedDate(self) -> None: ... method showToday (line 1767) | def showToday(self) -> None: ... method sizeHint (line 1768) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method updateCell (line 1769) | def updateCell(self, date: PySide2.QtCore.QDate | datetime.date) -> No... method updateCells (line 1770) | def updateCells(self) -> None: ... method verticalHeaderFormat (line 1771) | def verticalHeaderFormat(self) -> QCalendarWidget.VerticalHeaderFormat... method weekdayTextFormat (line 1772) | def weekdayTextFormat(self, dayOfWeek: PySide2.QtCore.Qt.DayOfWeek) ->... method yearShown (line 1773) | def yearShown(self) -> int: ... class QCheckBox (line 1775) | class QCheckBox(QAbstractButton): method __init__ (line 1779) | def __init__(self, text: str, parent: QWidget | None = ..., acceptDrop... method __init__ (line 1781) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method checkState (line 1782) | def checkState(self) -> PySide2.QtCore.Qt.CheckState: ... method checkStateSet (line 1783) | def checkStateSet(self) -> None: ... method event (line 1784) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method hitButton (line 1785) | def hitButton(self, pos: PySide2.QtCore.QPoint) -> bool: ... method initStyleOption (line 1786) | def initStyleOption(self, option: QStyleOptionButton) -> None: ... method isTristate (line 1787) | def isTristate(self) -> bool: ... method minimumSizeHint (line 1788) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 1789) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method nextCheckState (line 1790) | def nextCheckState(self) -> None: ... method paintEvent (line 1791) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method setCheckState (line 1792) | def setCheckState(self, state: PySide2.QtCore.Qt.CheckState) -> None: ... method setTristate (line 1793) | def setTristate(self, y: bool = ...) -> None: ... method sizeHint (line 1794) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QColorDialog (line 1796) | class QColorDialog(QDialog): class ColorDialogOption (line 1797) | class ColorDialogOption: method __init__ (line 1804) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1805) | def __and__(self, other: typing.SupportsInt) -> QColorDialog.ColorDi... method __bool__ (line 1806) | def __bool__(self) -> bool: ... method __eq__ (line 1807) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1808) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1809) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1810) | def __hash__(self) -> int: ... method __index__ (line 1811) | def __index__(self) -> int: ... method __int__ (line 1812) | def __int__(self) -> int: ... method __invert__ (line 1813) | def __invert__(self) -> QColorDialog.ColorDialogOptions: ... method __le__ (line 1814) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1815) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1816) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1817) | def __or__(self, other: typing.SupportsInt) -> QColorDialog.ColorDia... method __rand__ (line 1818) | def __rand__(self, other: typing.SupportsInt) -> QColorDialog.ColorD... method __ror__ (line 1819) | def __ror__(self, other: typing.SupportsInt) -> QColorDialog.ColorDi... method __rxor__ (line 1820) | def __rxor__(self, other: typing.SupportsInt) -> QColorDialog.ColorD... method __xor__ (line 1821) | def __xor__(self, other: typing.SupportsInt) -> QColorDialog.ColorDi... class ColorDialogOptions (line 1823) | class ColorDialogOptions: method __init__ (line 1825) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 1826) | def __and__(self, other: typing.SupportsInt) -> QColorDialog.ColorDi... method __bool__ (line 1827) | def __bool__(self) -> bool: ... method __eq__ (line 1828) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1829) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1830) | def __gt__(self, other: object) -> bool: ... method __index__ (line 1831) | def __index__(self) -> int: ... method __int__ (line 1832) | def __int__(self) -> int: ... method __invert__ (line 1833) | def __invert__(self) -> QColorDialog.ColorDialogOptions: ... method __le__ (line 1834) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1835) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1836) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1837) | def __or__(self, other: typing.SupportsInt) -> QColorDialog.ColorDia... method __rand__ (line 1838) | def __rand__(self, other: typing.SupportsInt) -> QColorDialog.ColorD... method __ror__ (line 1839) | def __ror__(self, other: typing.SupportsInt) -> QColorDialog.ColorDi... method __rxor__ (line 1840) | def __rxor__(self, other: typing.SupportsInt) -> QColorDialog.ColorD... method __xor__ (line 1841) | def __xor__(self, other: typing.SupportsInt) -> QColorDialog.ColorDi... method __init__ (line 1849) | def __init__(self, initial: PySide2.QtGui.QColor | PySide2.QtCore.Qt.G... method __init__ (line 1851) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method changeEvent (line 1852) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method currentColor (line 1853) | def currentColor(self) -> PySide2.QtGui.QColor: ... method customColor (line 1855) | def customColor(index: int) -> PySide2.QtGui.QColor: ... method customCount (line 1857) | def customCount() -> int: ... method done (line 1858) | def done(self, result: int) -> None: ... method getColor (line 1860) | def getColor(initial: PySide2.QtGui.QColor | PySide2.QtCore.Qt.GlobalC... method open (line 1862) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 1864) | def open(self) -> None: ... method options (line 1865) | def options(self) -> QColorDialog.ColorDialogOptions | QColorDialog.Co... method selectedColor (line 1866) | def selectedColor(self) -> PySide2.QtGui.QColor: ... method setCurrentColor (line 1867) | def setCurrentColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore... method setCustomColor (line 1869) | def setCustomColor(index: int, color: PySide2.QtGui.QColor | PySide2.Q... method setOption (line 1870) | def setOption(self, option: QColorDialog.ColorDialogOption, on: bool =... method setOptions (line 1871) | def setOptions(self, options: QColorDialog.ColorDialogOptions | QColor... method setStandardColor (line 1873) | def setStandardColor(index: int, color: PySide2.QtGui.QColor | PySide2... method setVisible (line 1874) | def setVisible(self, visible: bool) -> None: ... method standardColor (line 1876) | def standardColor(index: int) -> PySide2.QtGui.QColor: ... method testOption (line 1877) | def testOption(self, option: QColorDialog.ColorDialogOption) -> bool: ... class QColormap (line 1879) | class QColormap(shiboken2.Object): class Mode (line 1880) | class Mode: method __init__ (line 1887) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1888) | def __add__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __and__ (line 1889) | def __and__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __bool__ (line 1890) | def __bool__(self) -> bool: ... method __eq__ (line 1891) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1892) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1893) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1894) | def __hash__(self) -> int: ... method __index__ (line 1895) | def __index__(self) -> int: ... method __int__ (line 1896) | def __int__(self) -> int: ... method __le__ (line 1897) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1898) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1899) | def __mul__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __ne__ (line 1900) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1901) | def __or__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __pos__ (line 1902) | def __pos__(self): ... method __radd__ (line 1903) | def __radd__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __rand__ (line 1904) | def __rand__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __rmul__ (line 1905) | def __rmul__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __ror__ (line 1906) | def __ror__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __rsub__ (line 1907) | def __rsub__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __rxor__ (line 1908) | def __rxor__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __sub__ (line 1909) | def __sub__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __xor__ (line 1910) | def __xor__(self, other: typing.SupportsInt) -> QColormap.Mode: ... method __init__ (line 1914) | def __init__(self, colormap: QColormap) -> None: ... method cleanup (line 1916) | def cleanup() -> None: ... method colorAt (line 1917) | def colorAt(self, pixel: int) -> PySide2.QtGui.QColor: ... method colormap (line 1918) | def colormap(self) -> list[PySide2.QtGui.QColor]: ... method depth (line 1919) | def depth(self) -> int: ... method initialize (line 1921) | def initialize() -> None: ... method instance (line 1923) | def instance(screen: int = ...) -> QColormap: ... method mode (line 1924) | def mode(self) -> QColormap.Mode: ... method pixel (line 1925) | def pixel(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Global... method size (line 1926) | def size(self) -> int: ... method __copy__ (line 1927) | def __copy__(self) -> None: ... class QColumnView (line 1929) | class QColumnView(QAbstractItemView): method __init__ (line 1932) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method columnWidths (line 1933) | def columnWidths(self) -> list[int]: ... method createColumn (line 1934) | def createColumn(self, rootIndex: PySide2.QtCore.QModelIndex) -> QAbst... method currentChanged (line 1935) | def currentChanged(self, current: PySide2.QtCore.QModelIndex, previous... method horizontalOffset (line 1936) | def horizontalOffset(self) -> int: ... method indexAt (line 1937) | def indexAt(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCore.QMod... method initializeColumn (line 1938) | def initializeColumn(self, column: QAbstractItemView) -> None: ... method isIndexHidden (line 1939) | def isIndexHidden(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method moveCursor (line 1940) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method previewWidget (line 1941) | def previewWidget(self) -> QWidget: ... method resizeEvent (line 1942) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method resizeGripsVisible (line 1943) | def resizeGripsVisible(self) -> bool: ... method rowsInserted (line 1944) | def rowsInserted(self, parent: PySide2.QtCore.QModelIndex, start: int,... method scrollContentsBy (line 1945) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method scrollTo (line 1946) | def scrollTo(self, index: PySide2.QtCore.QModelIndex, hint: QAbstractI... method selectAll (line 1947) | def selectAll(self) -> None: ... method setColumnWidths (line 1948) | def setColumnWidths(self, list: typing.Iterable[int]) -> None: ... method setModel (line 1949) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setPreviewWidget (line 1950) | def setPreviewWidget(self, widget: QWidget) -> None: ... method setResizeGripsVisible (line 1951) | def setResizeGripsVisible(self, visible: bool) -> None: ... method setRootIndex (line 1952) | def setRootIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setSelection (line 1953) | def setSelection(self, rect: PySide2.QtCore.QRect, command: PySide2.Qt... method setSelectionModel (line 1954) | def setSelectionModel(self, selectionModel: PySide2.QtCore.QItemSelect... method sizeHint (line 1955) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method verticalOffset (line 1956) | def verticalOffset(self) -> int: ... method visualRect (line 1957) | def visualRect(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method visualRegionForSelection (line 1958) | def visualRegionForSelection(self, selection: PySide2.QtCore.QItemSele... class QComboBox (line 1960) | class QComboBox(QWidget): class InsertPolicy (line 1961) | class InsertPolicy: method __init__ (line 1972) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 1973) | def __add__(self, other: typing.SupportsInt) -> QComboBox.InsertPoli... method __and__ (line 1974) | def __and__(self, other: typing.SupportsInt) -> QComboBox.InsertPoli... method __bool__ (line 1975) | def __bool__(self) -> bool: ... method __eq__ (line 1976) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1977) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1978) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1979) | def __hash__(self) -> int: ... method __index__ (line 1980) | def __index__(self) -> int: ... method __int__ (line 1981) | def __int__(self) -> int: ... method __le__ (line 1982) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1983) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 1984) | def __mul__(self, other: typing.SupportsInt) -> QComboBox.InsertPoli... method __ne__ (line 1985) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1986) | def __or__(self, other: typing.SupportsInt) -> QComboBox.InsertPolic... method __pos__ (line 1987) | def __pos__(self): ... method __radd__ (line 1988) | def __radd__(self, other: typing.SupportsInt) -> QComboBox.InsertPol... method __rand__ (line 1989) | def __rand__(self, other: typing.SupportsInt) -> QComboBox.InsertPol... method __rmul__ (line 1990) | def __rmul__(self, other: typing.SupportsInt) -> QComboBox.InsertPol... method __ror__ (line 1991) | def __ror__(self, other: typing.SupportsInt) -> QComboBox.InsertPoli... method __rsub__ (line 1992) | def __rsub__(self, other: typing.SupportsInt) -> QComboBox.InsertPol... method __rxor__ (line 1993) | def __rxor__(self, other: typing.SupportsInt) -> QComboBox.InsertPol... method __sub__ (line 1994) | def __sub__(self, other: typing.SupportsInt) -> QComboBox.InsertPoli... method __xor__ (line 1995) | def __xor__(self, other: typing.SupportsInt) -> QComboBox.InsertPoli... class SizeAdjustPolicy (line 1997) | class SizeAdjustPolicy: method __init__ (line 2005) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2006) | def __add__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjust... method __and__ (line 2007) | def __and__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjust... method __bool__ (line 2008) | def __bool__(self) -> bool: ... method __eq__ (line 2009) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2010) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2011) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2012) | def __hash__(self) -> int: ... method __index__ (line 2013) | def __index__(self) -> int: ... method __int__ (line 2014) | def __int__(self) -> int: ... method __le__ (line 2015) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2016) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2017) | def __mul__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjust... method __ne__ (line 2018) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2019) | def __or__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjustP... method __pos__ (line 2020) | def __pos__(self): ... method __radd__ (line 2021) | def __radd__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjus... method __rand__ (line 2022) | def __rand__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjus... method __rmul__ (line 2023) | def __rmul__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjus... method __ror__ (line 2024) | def __ror__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjust... method __rsub__ (line 2025) | def __rsub__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjus... method __rxor__ (line 2026) | def __rxor__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjus... method __sub__ (line 2027) | def __sub__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjust... method __xor__ (line 2028) | def __xor__(self, other: typing.SupportsInt) -> QComboBox.SizeAdjust... method __init__ (line 2048) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addItem (line 2050) | def addItem(self, icon: PySide2.QtGui.QIcon, text: str, userData: typi... method addItem (line 2052) | def addItem(self, text: str, userData: typing.Any = ...) -> None: ... method addItems (line 2053) | def addItems(self, texts: typing.Iterable[str]) -> None: ... method autoCompletion (line 2054) | def autoCompletion(self) -> bool: ... method autoCompletionCaseSensitivity (line 2055) | def autoCompletionCaseSensitivity(self) -> PySide2.QtCore.Qt.CaseSensi... method changeEvent (line 2056) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method clear (line 2057) | def clear(self) -> None: ... method clearEditText (line 2058) | def clearEditText(self) -> None: ... method completer (line 2059) | def completer(self) -> QCompleter: ... method contextMenuEvent (line 2060) | def contextMenuEvent(self, e: PySide2.QtGui.QContextMenuEvent) -> None... method count (line 2061) | def count(self) -> int: ... method currentData (line 2062) | def currentData(self, role: PySide2.QtCore.Qt.ItemDataRole = ...) -> t... method currentIndex (line 2063) | def currentIndex(self) -> int: ... method currentText (line 2064) | def currentText(self) -> str: ... method duplicatesEnabled (line 2065) | def duplicatesEnabled(self) -> bool: ... method event (line 2066) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method findData (line 2067) | def findData(self, data: typing.Any, role: PySide2.QtCore.Qt.ItemDataR... method findText (line 2068) | def findText(self, text: str, flags: PySide2.QtCore.Qt.MatchFlags | Py... method focusInEvent (line 2069) | def focusInEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 2070) | def focusOutEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method hasFrame (line 2071) | def hasFrame(self) -> bool: ... method hideEvent (line 2072) | def hideEvent(self, e: PySide2.QtGui.QHideEvent) -> None: ... method hidePopup (line 2073) | def hidePopup(self) -> None: ... method iconSize (line 2074) | def iconSize(self) -> PySide2.QtCore.QSize: ... method initStyleOption (line 2075) | def initStyleOption(self, option: QStyleOptionComboBox) -> None: ... method inputMethodEvent (line 2076) | def inputMethodEvent(self, arg__1: PySide2.QtGui.QInputMethodEvent) ->... method inputMethodQuery (line 2078) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery, ... method inputMethodQuery (line 2080) | def inputMethodQuery(self, arg__1: PySide2.QtCore.Qt.InputMethodQuery)... method insertItem (line 2082) | def insertItem(self, index: int, icon: PySide2.QtGui.QIcon, text: str,... method insertItem (line 2084) | def insertItem(self, index: int, text: str, userData: typing.Any = ...... method insertItems (line 2085) | def insertItems(self, index: int, texts: typing.Iterable[str]) -> None... method insertPolicy (line 2086) | def insertPolicy(self) -> QComboBox.InsertPolicy: ... method insertSeparator (line 2087) | def insertSeparator(self, index: int) -> None: ... method isEditable (line 2088) | def isEditable(self) -> bool: ... method itemData (line 2089) | def itemData(self, index: int, role: PySide2.QtCore.Qt.ItemDataRole = ... method itemDelegate (line 2090) | def itemDelegate(self) -> QAbstractItemDelegate: ... method itemIcon (line 2091) | def itemIcon(self, index: int) -> PySide2.QtGui.QIcon: ... method itemText (line 2092) | def itemText(self, index: int) -> str: ... method keyPressEvent (line 2093) | def keyPressEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 2094) | def keyReleaseEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method lineEdit (line 2095) | def lineEdit(self) -> QLineEdit: ... method maxCount (line 2096) | def maxCount(self) -> int: ... method maxVisibleItems (line 2097) | def maxVisibleItems(self) -> int: ... method minimumContentsLength (line 2098) | def minimumContentsLength(self) -> int: ... method minimumSizeHint (line 2099) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method model (line 2100) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method modelColumn (line 2101) | def modelColumn(self) -> int: ... method mousePressEvent (line 2102) | def mousePressEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 2103) | def mouseReleaseEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method paintEvent (line 2104) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method placeholderText (line 2105) | def placeholderText(self) -> str: ... method removeItem (line 2106) | def removeItem(self, index: int) -> None: ... method resizeEvent (line 2107) | def resizeEvent(self, e: PySide2.QtGui.QResizeEvent) -> None: ... method rootModelIndex (line 2108) | def rootModelIndex(self) -> PySide2.QtCore.QModelIndex: ... method setAutoCompletion (line 2109) | def setAutoCompletion(self, enable: bool) -> None: ... method setAutoCompletionCaseSensitivity (line 2110) | def setAutoCompletionCaseSensitivity(self, sensitivity: PySide2.QtCore... method setCompleter (line 2111) | def setCompleter(self, c: QCompleter) -> None: ... method setCurrentIndex (line 2112) | def setCurrentIndex(self, index: int) -> None: ... method setCurrentText (line 2113) | def setCurrentText(self, text: str) -> None: ... method setDuplicatesEnabled (line 2114) | def setDuplicatesEnabled(self, enable: bool) -> None: ... method setEditText (line 2115) | def setEditText(self, text: str) -> None: ... method setEditable (line 2116) | def setEditable(self, editable: bool) -> None: ... method setFrame (line 2117) | def setFrame(self, arg__1: bool) -> None: ... method setIconSize (line 2118) | def setIconSize(self, size: PySide2.QtCore.QSize) -> None: ... method setInsertPolicy (line 2119) | def setInsertPolicy(self, policy: QComboBox.InsertPolicy) -> None: ... method setItemData (line 2120) | def setItemData(self, index: int, value: typing.Any, role: PySide2.QtC... method setItemDelegate (line 2121) | def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ... method setItemIcon (line 2122) | def setItemIcon(self, index: int, icon: PySide2.QtGui.QIcon) -> None: ... method setItemText (line 2123) | def setItemText(self, index: int, text: str) -> None: ... method setLineEdit (line 2124) | def setLineEdit(self, edit: QLineEdit) -> None: ... method setMaxCount (line 2125) | def setMaxCount(self, max: int) -> None: ... method setMaxVisibleItems (line 2126) | def setMaxVisibleItems(self, maxItems: int) -> None: ... method setMinimumContentsLength (line 2127) | def setMinimumContentsLength(self, characters: int) -> None: ... method setModel (line 2128) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setModelColumn (line 2129) | def setModelColumn(self, visibleColumn: int) -> None: ... method setPlaceholderText (line 2130) | def setPlaceholderText(self, placeholderText: str) -> None: ... method setRootModelIndex (line 2131) | def setRootModelIndex(self, index: PySide2.QtCore.QModelIndex) -> None... method setSizeAdjustPolicy (line 2132) | def setSizeAdjustPolicy(self, policy: QComboBox.SizeAdjustPolicy) -> N... method setValidator (line 2133) | def setValidator(self, v: PySide2.QtGui.QValidator) -> None: ... method setView (line 2134) | def setView(self, itemView: QAbstractItemView) -> None: ... method showEvent (line 2135) | def showEvent(self, e: PySide2.QtGui.QShowEvent) -> None: ... method showPopup (line 2136) | def showPopup(self) -> None: ... method sizeAdjustPolicy (line 2137) | def sizeAdjustPolicy(self) -> QComboBox.SizeAdjustPolicy: ... method sizeHint (line 2138) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method validator (line 2139) | def validator(self) -> PySide2.QtGui.QValidator: ... method view (line 2140) | def view(self) -> QAbstractItemView: ... method wheelEvent (line 2141) | def wheelEvent(self, e: PySide2.QtGui.QWheelEvent) -> None: ... class QCommandLinkButton (line 2143) | class QCommandLinkButton(QPushButton): method __init__ (line 2146) | def __init__(self, text: str, parent: QWidget | None = ..., acceptDrop... method __init__ (line 2148) | def __init__(self, text: str, description: str, parent: QWidget | None... method __init__ (line 2150) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method description (line 2151) | def description(self) -> str: ... method event (line 2152) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method heightForWidth (line 2153) | def heightForWidth(self, arg__1: int) -> int: ... method minimumSizeHint (line 2154) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method paintEvent (line 2155) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method setDescription (line 2156) | def setDescription(self, description: str) -> None: ... method sizeHint (line 2157) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QCommonStyle (line 2159) | class QCommonStyle(QStyle): method __init__ (line 2161) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method drawComplexControl (line 2162) | def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOpt... method drawControl (line 2163) | def drawControl(self, element: QStyle.ControlElement, opt: QStyleOptio... method drawPrimitive (line 2164) | def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption... method generatedIconPixmap (line 2165) | def generatedIconPixmap(self, iconMode: PySide2.QtGui.QIcon.Mode, pixm... method hitTestComplexControl (line 2166) | def hitTestComplexControl(self, cc: QStyle.ComplexControl, opt: QStyle... method layoutSpacing (line 2167) | def layoutSpacing(self, control1: QSizePolicy.ControlType, control2: Q... method pixelMetric (line 2168) | def pixelMetric(self, m: QStyle.PixelMetric, opt: QStyleOption | None ... method polish (line 2170) | def polish(self, widget: QWidget) -> None: ... method polish (line 2172) | def polish(self, arg__1: PySide2.QtGui.QPalette) -> None: ... method polish (line 2174) | def polish(self, application: QApplication) -> None: ... method polish (line 2176) | def polish(self, app: QApplication) -> None: ... method sizeFromContents (line 2177) | def sizeFromContents(self, ct: QStyle.ContentsType, opt: QStyleOption,... method standardIcon (line 2178) | def standardIcon(self, standardIcon: QStyle.StandardPixmap, opt: QStyl... method standardPixmap (line 2179) | def standardPixmap(self, sp: QStyle.StandardPixmap, opt: QStyleOption ... method styleHint (line 2180) | def styleHint(self, sh: QStyle.StyleHint, opt: QStyleOption | None = .... method subControlRect (line 2181) | def subControlRect(self, cc: QStyle.ComplexControl, opt: QStyleOptionC... method subElementRect (line 2182) | def subElementRect(self, r: QStyle.SubElement, opt: QStyleOption, widg... method unpolish (line 2184) | def unpolish(self, widget: QWidget) -> None: ... method unpolish (line 2186) | def unpolish(self, application: QApplication) -> None: ... class QCompleter (line 2188) | class QCompleter(PySide2.QtCore.QObject): class CompletionMode (line 2189) | class CompletionMode: method __init__ (line 2196) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2197) | def __add__(self, other: typing.SupportsInt) -> QCompleter.Completio... method __and__ (line 2198) | def __and__(self, other: typing.SupportsInt) -> QCompleter.Completio... method __bool__ (line 2199) | def __bool__(self) -> bool: ... method __eq__ (line 2200) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2201) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2202) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2203) | def __hash__(self) -> int: ... method __index__ (line 2204) | def __index__(self) -> int: ... method __int__ (line 2205) | def __int__(self) -> int: ... method __le__ (line 2206) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2207) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2208) | def __mul__(self, other: typing.SupportsInt) -> QCompleter.Completio... method __ne__ (line 2209) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2210) | def __or__(self, other: typing.SupportsInt) -> QCompleter.Completion... method __pos__ (line 2211) | def __pos__(self): ... method __radd__ (line 2212) | def __radd__(self, other: typing.SupportsInt) -> QCompleter.Completi... method __rand__ (line 2213) | def __rand__(self, other: typing.SupportsInt) -> QCompleter.Completi... method __rmul__ (line 2214) | def __rmul__(self, other: typing.SupportsInt) -> QCompleter.Completi... method __ror__ (line 2215) | def __ror__(self, other: typing.SupportsInt) -> QCompleter.Completio... method __rsub__ (line 2216) | def __rsub__(self, other: typing.SupportsInt) -> QCompleter.Completi... method __rxor__ (line 2217) | def __rxor__(self, other: typing.SupportsInt) -> QCompleter.Completi... method __sub__ (line 2218) | def __sub__(self, other: typing.SupportsInt) -> QCompleter.Completio... method __xor__ (line 2219) | def __xor__(self, other: typing.SupportsInt) -> QCompleter.Completio... class ModelSorting (line 2221) | class ModelSorting: method __init__ (line 2228) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2229) | def __add__(self, other: typing.SupportsInt) -> QCompleter.ModelSort... method __and__ (line 2230) | def __and__(self, other: typing.SupportsInt) -> QCompleter.ModelSort... method __bool__ (line 2231) | def __bool__(self) -> bool: ... method __eq__ (line 2232) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2233) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2234) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2235) | def __hash__(self) -> int: ... method __index__ (line 2236) | def __index__(self) -> int: ... method __int__ (line 2237) | def __int__(self) -> int: ... method __le__ (line 2238) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2239) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2240) | def __mul__(self, other: typing.SupportsInt) -> QCompleter.ModelSort... method __ne__ (line 2241) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2242) | def __or__(self, other: typing.SupportsInt) -> QCompleter.ModelSorti... method __pos__ (line 2243) | def __pos__(self): ... method __radd__ (line 2244) | def __radd__(self, other: typing.SupportsInt) -> QCompleter.ModelSor... method __rand__ (line 2245) | def __rand__(self, other: typing.SupportsInt) -> QCompleter.ModelSor... method __rmul__ (line 2246) | def __rmul__(self, other: typing.SupportsInt) -> QCompleter.ModelSor... method __ror__ (line 2247) | def __ror__(self, other: typing.SupportsInt) -> QCompleter.ModelSort... method __rsub__ (line 2248) | def __rsub__(self, other: typing.SupportsInt) -> QCompleter.ModelSor... method __rxor__ (line 2249) | def __rxor__(self, other: typing.SupportsInt) -> QCompleter.ModelSor... method __sub__ (line 2250) | def __sub__(self, other: typing.SupportsInt) -> QCompleter.ModelSort... method __xor__ (line 2251) | def __xor__(self, other: typing.SupportsInt) -> QCompleter.ModelSort... method __init__ (line 2262) | def __init__(self, model: PySide2.QtCore.QAbstractItemModel, parent: P... method __init__ (line 2264) | def __init__(self, completions: typing.Iterable[str], parent: PySide2.... method __init__ (line 2266) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., activa... method caseSensitivity (line 2267) | def caseSensitivity(self) -> PySide2.QtCore.Qt.CaseSensitivity: ... method complete (line 2268) | def complete(self, rect: PySide2.QtCore.QRect = ...) -> None: ... method completionColumn (line 2269) | def completionColumn(self) -> int: ... method completionCount (line 2270) | def completionCount(self) -> int: ... method completionMode (line 2271) | def completionMode(self) -> QCompleter.CompletionMode: ... method completionModel (line 2272) | def completionModel(self) -> PySide2.QtCore.QAbstractItemModel: ... method completionPrefix (line 2273) | def completionPrefix(self) -> str: ... method completionRole (line 2274) | def completionRole(self) -> int: ... method currentCompletion (line 2275) | def currentCompletion(self) -> str: ... method currentIndex (line 2276) | def currentIndex(self) -> PySide2.QtCore.QModelIndex: ... method currentRow (line 2277) | def currentRow(self) -> int: ... method event (line 2278) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 2279) | def eventFilter(self, o: PySide2.QtCore.QObject, e: PySide2.QtCore.QEv... method filterMode (line 2280) | def filterMode(self) -> PySide2.QtCore.Qt.MatchFlags | PySide2.QtCore.... method maxVisibleItems (line 2281) | def maxVisibleItems(self) -> int: ... method model (line 2282) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method modelSorting (line 2283) | def modelSorting(self) -> QCompleter.ModelSorting: ... method pathFromIndex (line 2284) | def pathFromIndex(self, index: PySide2.QtCore.QModelIndex) -> str: ... method popup (line 2285) | def popup(self) -> QAbstractItemView: ... method setCaseSensitivity (line 2286) | def setCaseSensitivity(self, caseSensitivity: PySide2.QtCore.Qt.CaseSe... method setCompletionColumn (line 2287) | def setCompletionColumn(self, column: int) -> None: ... method setCompletionMode (line 2288) | def setCompletionMode(self, mode: QCompleter.CompletionMode) -> None: ... method setCompletionPrefix (line 2289) | def setCompletionPrefix(self, prefix: str) -> None: ... method setCompletionRole (line 2290) | def setCompletionRole(self, role: PySide2.QtCore.Qt.ItemDataRole) -> N... method setCurrentRow (line 2291) | def setCurrentRow(self, row: int) -> bool: ... method setFilterMode (line 2292) | def setFilterMode(self, filterMode: PySide2.QtCore.Qt.MatchFlags | PyS... method setMaxVisibleItems (line 2293) | def setMaxVisibleItems(self, maxItems: int) -> None: ... method setModel (line 2294) | def setModel(self, c: PySide2.QtCore.QAbstractItemModel) -> None: ... method setModelSorting (line 2295) | def setModelSorting(self, sorting: QCompleter.ModelSorting) -> None: ... method setPopup (line 2296) | def setPopup(self, popup: QAbstractItemView) -> None: ... method setWidget (line 2297) | def setWidget(self, widget: QWidget) -> None: ... method setWrapAround (line 2298) | def setWrapAround(self, wrap: bool) -> None: ... method splitPath (line 2299) | def splitPath(self, path: str) -> list[str]: ... method widget (line 2300) | def widget(self) -> QWidget: ... method wrapAround (line 2301) | def wrapAround(self) -> bool: ... class QDataWidgetMapper (line 2303) | class QDataWidgetMapper(PySide2.QtCore.QObject): class SubmitPolicy (line 2304) | class SubmitPolicy: method __init__ (line 2310) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2311) | def __add__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Su... method __and__ (line 2312) | def __and__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Su... method __bool__ (line 2313) | def __bool__(self) -> bool: ... method __eq__ (line 2314) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2315) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2316) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2317) | def __hash__(self) -> int: ... method __index__ (line 2318) | def __index__(self) -> int: ... method __int__ (line 2319) | def __int__(self) -> int: ... method __le__ (line 2320) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2321) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2322) | def __mul__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Su... method __ne__ (line 2323) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2324) | def __or__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Sub... method __pos__ (line 2325) | def __pos__(self): ... method __radd__ (line 2326) | def __radd__(self, other: typing.SupportsInt) -> QDataWidgetMapper.S... method __rand__ (line 2327) | def __rand__(self, other: typing.SupportsInt) -> QDataWidgetMapper.S... method __rmul__ (line 2328) | def __rmul__(self, other: typing.SupportsInt) -> QDataWidgetMapper.S... method __ror__ (line 2329) | def __ror__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Su... method __rsub__ (line 2330) | def __rsub__(self, other: typing.SupportsInt) -> QDataWidgetMapper.S... method __rxor__ (line 2331) | def __rxor__(self, other: typing.SupportsInt) -> QDataWidgetMapper.S... method __sub__ (line 2332) | def __sub__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Su... method __xor__ (line 2333) | def __xor__(self, other: typing.SupportsInt) -> QDataWidgetMapper.Su... method __init__ (line 2338) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., curren... method addMapping (line 2340) | def addMapping(self, widget: QWidget, section: int, propertyName: PySi... method addMapping (line 2342) | def addMapping(self, widget: QWidget, section: int) -> None: ... method clearMapping (line 2343) | def clearMapping(self) -> None: ... method currentIndex (line 2344) | def currentIndex(self) -> int: ... method itemDelegate (line 2345) | def itemDelegate(self) -> QAbstractItemDelegate: ... method mappedPropertyName (line 2346) | def mappedPropertyName(self, widget: QWidget) -> PySide2.QtCore.QByteA... method mappedSection (line 2347) | def mappedSection(self, widget: QWidget) -> int: ... method mappedWidgetAt (line 2348) | def mappedWidgetAt(self, section: int) -> QWidget: ... method model (line 2349) | def model(self) -> PySide2.QtCore.QAbstractItemModel: ... method orientation (line 2350) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method removeMapping (line 2351) | def removeMapping(self, widget: QWidget) -> None: ... method revert (line 2352) | def revert(self) -> None: ... method rootIndex (line 2353) | def rootIndex(self) -> PySide2.QtCore.QModelIndex: ... method setCurrentIndex (line 2354) | def setCurrentIndex(self, index: int) -> None: ... method setCurrentModelIndex (line 2355) | def setCurrentModelIndex(self, index: PySide2.QtCore.QModelIndex) -> N... method setItemDelegate (line 2356) | def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ... method setModel (line 2357) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setOrientation (line 2358) | def setOrientation(self, aOrientation: PySide2.QtCore.Qt.Orientation) ... method setRootIndex (line 2359) | def setRootIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setSubmitPolicy (line 2360) | def setSubmitPolicy(self, policy: QDataWidgetMapper.SubmitPolicy) -> N... method submit (line 2361) | def submit(self) -> bool: ... method submitPolicy (line 2362) | def submitPolicy(self) -> QDataWidgetMapper.SubmitPolicy: ... method toFirst (line 2363) | def toFirst(self) -> None: ... method toLast (line 2364) | def toLast(self) -> None: ... method toNext (line 2365) | def toNext(self) -> None: ... method toPrevious (line 2366) | def toPrevious(self) -> None: ... class QDateEdit (line 2368) | class QDateEdit(QDateTimeEdit): method __init__ (line 2372) | def __init__(self, parent: QWidget | None = ..., accelerated: bool = .... method __init__ (line 2374) | def __init__(self, date: PySide2.QtCore.QDate | datetime.date, parent:... class QDateTimeEdit (line 2376) | class QDateTimeEdit(QAbstractSpinBox): class Section (line 2377) | class Section: method __init__ (line 2392) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2393) | def __and__(self, other: typing.SupportsInt) -> QDateTimeEdit.Sectio... method __bool__ (line 2394) | def __bool__(self) -> bool: ... method __eq__ (line 2395) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2396) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2397) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2398) | def __hash__(self) -> int: ... method __index__ (line 2399) | def __index__(self) -> int: ... method __int__ (line 2400) | def __int__(self) -> int: ... method __invert__ (line 2401) | def __invert__(self) -> QDateTimeEdit.Sections: ... method __le__ (line 2402) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2403) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2404) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2405) | def __or__(self, other: typing.SupportsInt) -> QDateTimeEdit.Section... method __rand__ (line 2406) | def __rand__(self, other: typing.SupportsInt) -> QDateTimeEdit.Secti... method __ror__ (line 2407) | def __ror__(self, other: typing.SupportsInt) -> QDateTimeEdit.Sectio... method __rxor__ (line 2408) | def __rxor__(self, other: typing.SupportsInt) -> QDateTimeEdit.Secti... method __xor__ (line 2409) | def __xor__(self, other: typing.SupportsInt) -> QDateTimeEdit.Sectio... class Sections (line 2411) | class Sections: method __init__ (line 2413) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2414) | def __and__(self, other: typing.SupportsInt) -> QDateTimeEdit.Sectio... method __bool__ (line 2415) | def __bool__(self) -> bool: ... method __eq__ (line 2416) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2417) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2418) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2419) | def __index__(self) -> int: ... method __int__ (line 2420) | def __int__(self) -> int: ... method __invert__ (line 2421) | def __invert__(self) -> QDateTimeEdit.Sections: ... method __le__ (line 2422) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2423) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2424) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2425) | def __or__(self, other: typing.SupportsInt) -> QDateTimeEdit.Section... method __rand__ (line 2426) | def __rand__(self, other: typing.SupportsInt) -> QDateTimeEdit.Secti... method __ror__ (line 2427) | def __ror__(self, other: typing.SupportsInt) -> QDateTimeEdit.Sectio... method __rxor__ (line 2428) | def __rxor__(self, other: typing.SupportsInt) -> QDateTimeEdit.Secti... method __xor__ (line 2429) | def __xor__(self, other: typing.SupportsInt) -> QDateTimeEdit.Sectio... method __init__ (line 2446) | def __init__(self, val: typing.Any, parserType: type, parent: QWidget ... method __init__ (line 2448) | def __init__(self, t: PySide2.QtCore.QTime, parent: QWidget | None = .... method __init__ (line 2450) | def __init__(self, dt: PySide2.QtCore.QDateTime | datetime.datetime, p... method __init__ (line 2452) | def __init__(self, d: PySide2.QtCore.QDate | datetime.date, parent: QW... method __init__ (line 2454) | def __init__(self, parent: QWidget | None = ..., accelerated: bool = .... method calendar (line 2455) | def calendar(self) -> PySide2.QtCore.QCalendar: ... method calendarPopup (line 2456) | def calendarPopup(self) -> bool: ... method calendarWidget (line 2457) | def calendarWidget(self) -> QCalendarWidget: ... method clear (line 2458) | def clear(self) -> None: ... method clearMaximumDate (line 2459) | def clearMaximumDate(self) -> None: ... method clearMaximumDateTime (line 2460) | def clearMaximumDateTime(self) -> None: ... method clearMaximumTime (line 2461) | def clearMaximumTime(self) -> None: ... method clearMinimumDate (line 2462) | def clearMinimumDate(self) -> None: ... method clearMinimumDateTime (line 2463) | def clearMinimumDateTime(self) -> None: ... method clearMinimumTime (line 2464) | def clearMinimumTime(self) -> None: ... method currentSection (line 2465) | def currentSection(self) -> QDateTimeEdit.Section: ... method currentSectionIndex (line 2466) | def currentSectionIndex(self) -> int: ... method date (line 2467) | def date(self) -> PySide2.QtCore.QDate: ... method dateTime (line 2468) | def dateTime(self) -> PySide2.QtCore.QDateTime: ... method dateTimeFromText (line 2469) | def dateTimeFromText(self, text: str) -> PySide2.QtCore.QDateTime: ... method displayFormat (line 2470) | def displayFormat(self) -> str: ... method displayedSections (line 2471) | def displayedSections(self) -> QDateTimeEdit.Sections | QDateTimeEdit.... method event (line 2472) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method fixup (line 2473) | def fixup(self, input: str) -> None: ... method focusInEvent (line 2474) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 2475) | def focusNextPrevChild(self, next: bool) -> bool: ... method initStyleOption (line 2476) | def initStyleOption(self, option: QStyleOptionSpinBox) -> None: ... method keyPressEvent (line 2477) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method maximumDate (line 2478) | def maximumDate(self) -> PySide2.QtCore.QDate: ... method maximumDateTime (line 2479) | def maximumDateTime(self) -> PySide2.QtCore.QDateTime: ... method maximumTime (line 2480) | def maximumTime(self) -> PySide2.QtCore.QTime: ... method minimumDate (line 2481) | def minimumDate(self) -> PySide2.QtCore.QDate: ... method minimumDateTime (line 2482) | def minimumDateTime(self) -> PySide2.QtCore.QDateTime: ... method minimumTime (line 2483) | def minimumTime(self) -> PySide2.QtCore.QTime: ... method mousePressEvent (line 2484) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method paintEvent (line 2485) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method sectionAt (line 2486) | def sectionAt(self, index: int) -> QDateTimeEdit.Section: ... method sectionCount (line 2487) | def sectionCount(self) -> int: ... method sectionText (line 2488) | def sectionText(self, section: QDateTimeEdit.Section) -> str: ... method setCalendar (line 2489) | def setCalendar(self, calendar: PySide2.QtCore.QCalendar) -> None: ... method setCalendarPopup (line 2490) | def setCalendarPopup(self, enable: bool) -> None: ... method setCalendarWidget (line 2491) | def setCalendarWidget(self, calendarWidget: QCalendarWidget) -> None: ... method setCurrentSection (line 2492) | def setCurrentSection(self, section: QDateTimeEdit.Section) -> None: ... method setCurrentSectionIndex (line 2493) | def setCurrentSectionIndex(self, index: int) -> None: ... method setDate (line 2494) | def setDate(self, date: PySide2.QtCore.QDate | datetime.date) -> None:... method setDateRange (line 2495) | def setDateRange(self, min: PySide2.QtCore.QDate | datetime.date, max:... method setDateTime (line 2496) | def setDateTime(self, dateTime: PySide2.QtCore.QDateTime | datetime.da... method setDateTimeRange (line 2497) | def setDateTimeRange(self, min: PySide2.QtCore.QDateTime | datetime.da... method setDisplayFormat (line 2498) | def setDisplayFormat(self, format: str) -> None: ... method setMaximumDate (line 2499) | def setMaximumDate(self, max: PySide2.QtCore.QDate | datetime.date) ->... method setMaximumDateTime (line 2500) | def setMaximumDateTime(self, dt: PySide2.QtCore.QDateTime | datetime.d... method setMaximumTime (line 2501) | def setMaximumTime(self, max: PySide2.QtCore.QTime) -> None: ... method setMinimumDate (line 2502) | def setMinimumDate(self, min: PySide2.QtCore.QDate | datetime.date) ->... method setMinimumDateTime (line 2503) | def setMinimumDateTime(self, dt: PySide2.QtCore.QDateTime | datetime.d... method setMinimumTime (line 2504) | def setMinimumTime(self, min: PySide2.QtCore.QTime) -> None: ... method setSelectedSection (line 2505) | def setSelectedSection(self, section: QDateTimeEdit.Section) -> None: ... method setTime (line 2506) | def setTime(self, time: PySide2.QtCore.QTime) -> None: ... method setTimeRange (line 2507) | def setTimeRange(self, min: PySide2.QtCore.QTime, max: PySide2.QtCore.... method setTimeSpec (line 2508) | def setTimeSpec(self, spec: PySide2.QtCore.Qt.TimeSpec) -> None: ... method sizeHint (line 2509) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method stepBy (line 2510) | def stepBy(self, steps: int) -> None: ... method stepEnabled (line 2511) | def stepEnabled(self) -> QAbstractSpinBox.StepEnabled | QAbstractSpinB... method textFromDateTime (line 2512) | def textFromDateTime(self, dt: PySide2.QtCore.QDateTime | datetime.dat... method time (line 2513) | def time(self) -> PySide2.QtCore.QTime: ... method timeSpec (line 2514) | def timeSpec(self) -> PySide2.QtCore.Qt.TimeSpec: ... method validate (line 2515) | def validate(self, input: str, pos: int) -> PySide2.QtGui.QValidator.S... method wheelEvent (line 2516) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class QDesktopWidget (line 2518) | class QDesktopWidget(QWidget): method __init__ (line 2524) | def __init__(self, acceptDrops: bool = ..., accessibleDescription: str... method availableGeometry (line 2526) | def availableGeometry(self, widget: QWidget) -> PySide2.QtCore.QRect: ... method availableGeometry (line 2528) | def availableGeometry(self, screen: int = ...) -> PySide2.QtCore.QRect... method availableGeometry (line 2530) | def availableGeometry(self, point: PySide2.QtCore.QPoint) -> PySide2.Q... method isVirtualDesktop (line 2531) | def isVirtualDesktop(self) -> bool: ... method numScreens (line 2532) | def numScreens(self) -> int: ... method primaryScreen (line 2533) | def primaryScreen(self) -> int: ... method resizeEvent (line 2534) | def resizeEvent(self, e: PySide2.QtGui.QResizeEvent) -> None: ... method screen (line 2536) | def screen(self, screen: int = ...) -> QWidget: ... method screen (line 2538) | def screen(self) -> PySide2.QtGui.QScreen: ... # type: ignore[overloa... method screenCount (line 2539) | def screenCount(self) -> int: ... method screenGeometry (line 2541) | def screenGeometry(self, widget: QWidget) -> PySide2.QtCore.QRect: ... method screenGeometry (line 2543) | def screenGeometry(self, screen: int = ...) -> PySide2.QtCore.QRect: ... method screenGeometry (line 2545) | def screenGeometry(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCo... method screenNumber (line 2547) | def screenNumber(self, widget: QWidget | None = ...) -> int: ... method screenNumber (line 2549) | def screenNumber(self, arg__1: PySide2.QtCore.QPoint) -> int: ... class QDial (line 2551) | class QDial(QAbstractSlider): method __init__ (line 2553) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method event (line 2554) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method initStyleOption (line 2555) | def initStyleOption(self, option: QStyleOptionSlider) -> None: ... method minimumSizeHint (line 2556) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 2557) | def mouseMoveEvent(self, me: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 2558) | def mousePressEvent(self, me: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 2559) | def mouseReleaseEvent(self, me: PySide2.QtGui.QMouseEvent) -> None: ... method notchSize (line 2560) | def notchSize(self) -> int: ... method notchTarget (line 2561) | def notchTarget(self) -> float: ... method notchesVisible (line 2562) | def notchesVisible(self) -> bool: ... method paintEvent (line 2563) | def paintEvent(self, pe: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 2564) | def resizeEvent(self, re: PySide2.QtGui.QResizeEvent) -> None: ... method setNotchTarget (line 2565) | def setNotchTarget(self, target: float) -> None: ... method setNotchesVisible (line 2566) | def setNotchesVisible(self, visible: bool) -> None: ... method setWrapping (line 2567) | def setWrapping(self, on: bool) -> None: ... method sizeHint (line 2568) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sliderChange (line 2569) | def sliderChange(self, change: QAbstractSlider.SliderChange) -> None: ... method wrapping (line 2570) | def wrapping(self) -> bool: ... class QDialog (line 2572) | class QDialog(QWidget): class DialogCode (line 2573) | class DialogCode: method __init__ (line 2579) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2580) | def __add__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __and__ (line 2581) | def __and__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __bool__ (line 2582) | def __bool__(self) -> bool: ... method __eq__ (line 2583) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2584) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2585) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2586) | def __hash__(self) -> int: ... method __index__ (line 2587) | def __index__(self) -> int: ... method __int__ (line 2588) | def __int__(self) -> int: ... method __le__ (line 2589) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2590) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2591) | def __mul__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __ne__ (line 2592) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2593) | def __or__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __pos__ (line 2594) | def __pos__(self): ... method __radd__ (line 2595) | def __radd__(self, other: typing.SupportsInt) -> QDialog.DialogCode:... method __rand__ (line 2596) | def __rand__(self, other: typing.SupportsInt) -> QDialog.DialogCode:... method __rmul__ (line 2597) | def __rmul__(self, other: typing.SupportsInt) -> QDialog.DialogCode:... method __ror__ (line 2598) | def __ror__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __rsub__ (line 2599) | def __rsub__(self, other: typing.SupportsInt) -> QDialog.DialogCode:... method __rxor__ (line 2600) | def __rxor__(self, other: typing.SupportsInt) -> QDialog.DialogCode:... method __sub__ (line 2601) | def __sub__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __xor__ (line 2602) | def __xor__(self, other: typing.SupportsInt) -> QDialog.DialogCode: ... method __init__ (line 2609) | def __init__(self, parent: QWidget | None = ..., f: PySide2.QtCore.Qt.... method accept (line 2610) | def accept(self) -> None: ... method adjustPosition (line 2611) | def adjustPosition(self, arg__1: QWidget) -> None: ... method closeEvent (line 2612) | def closeEvent(self, arg__1: PySide2.QtGui.QCloseEvent) -> None: ... method contextMenuEvent (line 2613) | def contextMenuEvent(self, arg__1: PySide2.QtGui.QContextMenuEvent) ->... method done (line 2614) | def done(self, arg__1: int) -> None: ... method eventFilter (line 2615) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method exec (line 2616) | def exec(self, *args, **kwargs): ... method exec_ (line 2617) | def exec_(self) -> int: ... method extension (line 2618) | def extension(self) -> QWidget: ... method isSizeGripEnabled (line 2619) | def isSizeGripEnabled(self) -> bool: ... method keyPressEvent (line 2620) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method minimumSizeHint (line 2621) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method open (line 2622) | def open(self) -> None: ... method orientation (line 2623) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method reject (line 2624) | def reject(self) -> None: ... method resizeEvent (line 2625) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method result (line 2626) | def result(self) -> int: ... method setExtension (line 2627) | def setExtension(self, extension: QWidget) -> None: ... method setModal (line 2628) | def setModal(self, modal: bool) -> None: ... method setOrientation (line 2629) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation) -... method setResult (line 2630) | def setResult(self, r: int) -> None: ... method setSizeGripEnabled (line 2631) | def setSizeGripEnabled(self, arg__1: bool) -> None: ... method setVisible (line 2632) | def setVisible(self, visible: bool) -> None: ... method showEvent (line 2633) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method showExtension (line 2634) | def showExtension(self, arg__1: bool) -> None: ... method sizeHint (line 2635) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QDialogButtonBox (line 2637) | class QDialogButtonBox(QWidget): class ButtonLayout (line 2638) | class ButtonLayout: method __init__ (line 2647) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2648) | def __add__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __and__ (line 2649) | def __and__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __bool__ (line 2650) | def __bool__(self) -> bool: ... method __eq__ (line 2651) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2652) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2653) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2654) | def __hash__(self) -> int: ... method __index__ (line 2655) | def __index__(self) -> int: ... method __int__ (line 2656) | def __int__(self) -> int: ... method __le__ (line 2657) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2658) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2659) | def __mul__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __ne__ (line 2660) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2661) | def __or__(self, other: typing.SupportsInt) -> QDialogButtonBox.Butt... method __pos__ (line 2662) | def __pos__(self): ... method __radd__ (line 2663) | def __radd__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __rand__ (line 2664) | def __rand__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __rmul__ (line 2665) | def __rmul__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __ror__ (line 2666) | def __ror__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __rsub__ (line 2667) | def __rsub__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __rxor__ (line 2668) | def __rxor__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __sub__ (line 2669) | def __sub__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __xor__ (line 2670) | def __xor__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... class ButtonRole (line 2672) | class ButtonRole: method __init__ (line 2687) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2688) | def __add__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __and__ (line 2689) | def __and__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __bool__ (line 2690) | def __bool__(self) -> bool: ... method __eq__ (line 2691) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2692) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2693) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2694) | def __hash__(self) -> int: ... method __index__ (line 2695) | def __index__(self) -> int: ... method __int__ (line 2696) | def __int__(self) -> int: ... method __le__ (line 2697) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2698) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2699) | def __mul__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __ne__ (line 2700) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2701) | def __or__(self, other: typing.SupportsInt) -> QDialogButtonBox.Butt... method __pos__ (line 2702) | def __pos__(self): ... method __radd__ (line 2703) | def __radd__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __rand__ (line 2704) | def __rand__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __rmul__ (line 2705) | def __rmul__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __ror__ (line 2706) | def __ror__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __rsub__ (line 2707) | def __rsub__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __rxor__ (line 2708) | def __rxor__(self, other: typing.SupportsInt) -> QDialogButtonBox.Bu... method __sub__ (line 2709) | def __sub__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... method __xor__ (line 2710) | def __xor__(self, other: typing.SupportsInt) -> QDialogButtonBox.But... class StandardButton (line 2712) | class StandardButton: method __init__ (line 2737) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2738) | def __and__(self, other: typing.SupportsInt) -> QDialogButtonBox.Sta... method __bool__ (line 2739) | def __bool__(self) -> bool: ... method __eq__ (line 2740) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2741) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2742) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2743) | def __hash__(self) -> int: ... method __index__ (line 2744) | def __index__(self) -> int: ... method __int__ (line 2745) | def __int__(self) -> int: ... method __invert__ (line 2746) | def __invert__(self) -> QDialogButtonBox.StandardButtons: ... method __le__ (line 2747) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2748) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2749) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2750) | def __or__(self, other: typing.SupportsInt) -> QDialogButtonBox.Stan... method __rand__ (line 2751) | def __rand__(self, other: typing.SupportsInt) -> QDialogButtonBox.St... method __ror__ (line 2752) | def __ror__(self, other: typing.SupportsInt) -> QDialogButtonBox.Sta... method __rxor__ (line 2753) | def __rxor__(self, other: typing.SupportsInt) -> QDialogButtonBox.St... method __xor__ (line 2754) | def __xor__(self, other: typing.SupportsInt) -> QDialogButtonBox.Sta... class StandardButtons (line 2756) | class StandardButtons: method __init__ (line 2758) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2759) | def __and__(self, other: typing.SupportsInt) -> QDialogButtonBox.Sta... method __bool__ (line 2760) | def __bool__(self) -> bool: ... method __eq__ (line 2761) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2762) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2763) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2764) | def __index__(self) -> int: ... method __int__ (line 2765) | def __int__(self) -> int: ... method __invert__ (line 2766) | def __invert__(self) -> QDialogButtonBox.StandardButtons: ... method __le__ (line 2767) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2768) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2769) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2770) | def __or__(self, other: typing.SupportsInt) -> QDialogButtonBox.Stan... method __rand__ (line 2771) | def __rand__(self, other: typing.SupportsInt) -> QDialogButtonBox.St... method __ror__ (line 2772) | def __ror__(self, other: typing.SupportsInt) -> QDialogButtonBox.Sta... method __rxor__ (line 2773) | def __rxor__(self, other: typing.SupportsInt) -> QDialogButtonBox.St... method __xor__ (line 2774) | def __xor__(self, other: typing.SupportsInt) -> QDialogButtonBox.Sta... method __init__ (line 2818) | def __init__(self, buttons: QDialogButtonBox.StandardButtons | QDialog... method __init__ (line 2820) | def __init__(self, buttons: QDialogButtonBox.StandardButtons | QDialog... method __init__ (line 2822) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method __init__ (line 2824) | def __init__(self, orientation: PySide2.QtCore.Qt.Orientation, parent:... method addButton (line 2826) | def addButton(self, text: str, role: QDialogButtonBox.ButtonRole) -> Q... method addButton (line 2828) | def addButton(self, button: QAbstractButton, role: QDialogButtonBox.Bu... method addButton (line 2830) | def addButton(self, button: QDialogButtonBox.StandardButton) -> QPushB... method button (line 2831) | def button(self, which: QDialogButtonBox.StandardButton) -> QPushButto... method buttonRole (line 2832) | def buttonRole(self, button: QAbstractButton) -> QDialogButtonBox.Butt... method buttons (line 2833) | def buttons(self) -> list[QAbstractButton]: ... method centerButtons (line 2834) | def centerButtons(self) -> bool: ... method changeEvent (line 2835) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method clear (line 2836) | def clear(self) -> None: ... method event (line 2837) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method orientation (line 2838) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method removeButton (line 2839) | def removeButton(self, button: QAbstractButton) -> None: ... method setCenterButtons (line 2840) | def setCenterButtons(self, center: bool) -> None: ... method setOrientation (line 2841) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation) -... method setStandardButtons (line 2842) | def setStandardButtons(self, buttons: QDialogButtonBox.StandardButtons... method standardButton (line 2843) | def standardButton(self, button: QAbstractButton) -> QDialogButtonBox.... method standardButtons (line 2844) | def standardButtons(self) -> QDialogButtonBox.StandardButtons | QDialo... class QDirModel (line 2846) | class QDirModel(PySide2.QtCore.QAbstractItemModel): class Roles (line 2847) | class Roles: method __init__ (line 2854) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 2855) | def __add__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __and__ (line 2856) | def __and__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __bool__ (line 2857) | def __bool__(self) -> bool: ... method __eq__ (line 2858) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2859) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2860) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2861) | def __hash__(self) -> int: ... method __index__ (line 2862) | def __index__(self) -> int: ... method __int__ (line 2863) | def __int__(self) -> int: ... method __le__ (line 2864) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2865) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 2866) | def __mul__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __ne__ (line 2867) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2868) | def __or__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __pos__ (line 2869) | def __pos__(self): ... method __radd__ (line 2870) | def __radd__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __rand__ (line 2871) | def __rand__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __rmul__ (line 2872) | def __rmul__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __ror__ (line 2873) | def __ror__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __rsub__ (line 2874) | def __rsub__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __rxor__ (line 2875) | def __rxor__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __sub__ (line 2876) | def __sub__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __xor__ (line 2877) | def __xor__(self, other: typing.SupportsInt) -> QDirModel.Roles: ... method __init__ (line 2883) | def __init__(self, nameFilters: typing.Iterable[str], filters: PySide2... method __init__ (line 2885) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., column... method columnCount (line 2886) | def columnCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int... method data (line 2887) | def data(self, index: PySide2.QtCore.QModelIndex, role: PySide2.QtCore... method dropMimeData (line 2888) | def dropMimeData(self, data: PySide2.QtCore.QMimeData, action: PySide2... method fileIcon (line 2889) | def fileIcon(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtGui... method fileInfo (line 2890) | def fileInfo(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCor... method fileName (line 2891) | def fileName(self, index: PySide2.QtCore.QModelIndex) -> str: ... method filePath (line 2892) | def filePath(self, index: PySide2.QtCore.QModelIndex) -> str: ... method filter (line 2893) | def filter(self) -> PySide2.QtCore.QDir.Filters | PySide2.QtCore.QDir.... method flags (line 2894) | def flags(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.Q... method hasChildren (line 2895) | def hasChildren(self, index: PySide2.QtCore.QModelIndex = ...) -> bool... method headerData (line 2896) | def headerData(self, section: int, orientation: PySide2.QtCore.Qt.Orie... method iconProvider (line 2897) | def iconProvider(self) -> QFileIconProvider: ... method index (line 2899) | def index(self, row: int, column: int, parent: PySide2.QtCore.QModelIn... method index (line 2901) | def index(self, path: str, column: int = ...) -> PySide2.QtCore.QModel... method isDir (line 2902) | def isDir(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isReadOnly (line 2903) | def isReadOnly(self) -> bool: ... method lazyChildCount (line 2904) | def lazyChildCount(self) -> bool: ... method mimeData (line 2905) | def mimeData(self, indexes: list[int]) -> PySide2.QtCore.QMimeData: ..... method mimeTypes (line 2906) | def mimeTypes(self) -> list[str]: ... method mkdir (line 2907) | def mkdir(self, parent: PySide2.QtCore.QModelIndex, name: str) -> PySi... method nameFilters (line 2908) | def nameFilters(self) -> list[str]: ... method parent (line 2910) | def parent(self, child: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.... method parent (line 2912) | def parent(self) -> PySide2.QtCore.QObject: ... method refresh (line 2913) | def refresh(self, parent: PySide2.QtCore.QModelIndex = ...) -> None: ... method remove (line 2914) | def remove(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method resolveSymlinks (line 2915) | def resolveSymlinks(self) -> bool: ... method rmdir (line 2916) | def rmdir(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method rowCount (line 2917) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... method setData (line 2918) | def setData(self, index: PySide2.QtCore.QModelIndex, value: typing.Any... method setFilter (line 2919) | def setFilter(self, filters: PySide2.QtCore.QDir.Filters | PySide2.QtC... method setIconProvider (line 2920) | def setIconProvider(self, provider: QFileIconProvider) -> None: ... method setLazyChildCount (line 2921) | def setLazyChildCount(self, enable: bool) -> None: ... method setNameFilters (line 2922) | def setNameFilters(self, filters: typing.Iterable[str]) -> None: ... method setReadOnly (line 2923) | def setReadOnly(self, enable: bool) -> None: ... method setResolveSymlinks (line 2924) | def setResolveSymlinks(self, enable: bool) -> None: ... method setSorting (line 2925) | def setSorting(self, sort: PySide2.QtCore.QDir.SortFlags | PySide2.QtC... method sort (line 2926) | def sort(self, column: int, order: PySide2.QtCore.Qt.SortOrder = ...) ... method sorting (line 2927) | def sorting(self) -> PySide2.QtCore.QDir.SortFlags | PySide2.QtCore.QD... method supportedDropActions (line 2928) | def supportedDropActions(self) -> PySide2.QtCore.Qt.DropActions | PySi... class QDockWidget (line 2930) | class QDockWidget(QWidget): class DockWidgetFeature (line 2931) | class DockWidgetFeature: method __init__ (line 2943) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2944) | def __and__(self, other: typing.SupportsInt) -> QDockWidget.DockWidg... method __bool__ (line 2945) | def __bool__(self) -> bool: ... method __eq__ (line 2946) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2947) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2948) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2949) | def __hash__(self) -> int: ... method __index__ (line 2950) | def __index__(self) -> int: ... method __int__ (line 2951) | def __int__(self) -> int: ... method __invert__ (line 2952) | def __invert__(self) -> QDockWidget.DockWidgetFeatures: ... method __le__ (line 2953) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2954) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2955) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2956) | def __or__(self, other: typing.SupportsInt) -> QDockWidget.DockWidge... method __rand__ (line 2957) | def __rand__(self, other: typing.SupportsInt) -> QDockWidget.DockWid... method __ror__ (line 2958) | def __ror__(self, other: typing.SupportsInt) -> QDockWidget.DockWidg... method __rxor__ (line 2959) | def __rxor__(self, other: typing.SupportsInt) -> QDockWidget.DockWid... method __xor__ (line 2960) | def __xor__(self, other: typing.SupportsInt) -> QDockWidget.DockWidg... class DockWidgetFeatures (line 2962) | class DockWidgetFeatures: method __init__ (line 2964) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 2965) | def __and__(self, other: typing.SupportsInt) -> QDockWidget.DockWidg... method __bool__ (line 2966) | def __bool__(self) -> bool: ... method __eq__ (line 2967) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2968) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2969) | def __gt__(self, other: object) -> bool: ... method __index__ (line 2970) | def __index__(self) -> int: ... method __int__ (line 2971) | def __int__(self) -> int: ... method __invert__ (line 2972) | def __invert__(self) -> QDockWidget.DockWidgetFeatures: ... method __le__ (line 2973) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2974) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2975) | def __ne__(self, other: object) -> bool: ... method __or__ (line 2976) | def __or__(self, other: typing.SupportsInt) -> QDockWidget.DockWidge... method __rand__ (line 2977) | def __rand__(self, other: typing.SupportsInt) -> QDockWidget.DockWid... method __ror__ (line 2978) | def __ror__(self, other: typing.SupportsInt) -> QDockWidget.DockWidg... method __rxor__ (line 2979) | def __rxor__(self, other: typing.SupportsInt) -> QDockWidget.DockWid... method __xor__ (line 2980) | def __xor__(self, other: typing.SupportsInt) -> QDockWidget.DockWidg... method __init__ (line 2996) | def __init__(self, title: str, parent: QWidget | None = ..., flags: Py... method __init__ (line 2998) | def __init__(self, parent: QWidget | None = ..., flags: PySide2.QtCore... method allowedAreas (line 2999) | def allowedAreas(self) -> PySide2.QtCore.Qt.DockWidgetAreas | PySide2.... method changeEvent (line 3000) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method closeEvent (line 3001) | def closeEvent(self, event: PySide2.QtGui.QCloseEvent) -> None: ... method event (line 3002) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method features (line 3003) | def features(self) -> QDockWidget.DockWidgetFeatures | QDockWidget.Doc... method initStyleOption (line 3004) | def initStyleOption(self, option: QStyleOptionDockWidget) -> None: ... method isAreaAllowed (line 3005) | def isAreaAllowed(self, area: PySide2.QtCore.Qt.DockWidgetArea) -> boo... method isFloating (line 3006) | def isFloating(self) -> bool: ... method paintEvent (line 3007) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method setAllowedAreas (line 3008) | def setAllowedAreas(self, areas: PySide2.QtCore.Qt.DockWidgetAreas | P... method setFeatures (line 3009) | def setFeatures(self, features: QDockWidget.DockWidgetFeatures | QDock... method setFloating (line 3010) | def setFloating(self, floating: bool) -> None: ... method setTitleBarWidget (line 3011) | def setTitleBarWidget(self, widget: QWidget) -> None: ... method setWidget (line 3012) | def setWidget(self, widget: QWidget) -> None: ... method titleBarWidget (line 3013) | def titleBarWidget(self) -> QWidget: ... method toggleViewAction (line 3014) | def toggleViewAction(self) -> QAction: ... method widget (line 3015) | def widget(self) -> QWidget: ... class QDoubleSpinBox (line 3017) | class QDoubleSpinBox(QAbstractSpinBox): method __init__ (line 3021) | def __init__(self, parent: QWidget | None = ..., accelerated: bool = .... method cleanText (line 3022) | def cleanText(self) -> str: ... method decimals (line 3023) | def decimals(self) -> int: ... method fixup (line 3024) | def fixup(self, str: str) -> None: ... method maximum (line 3025) | def maximum(self) -> float: ... method minimum (line 3026) | def minimum(self) -> float: ... method prefix (line 3027) | def prefix(self) -> str: ... method setDecimals (line 3028) | def setDecimals(self, prec: int) -> None: ... method setMaximum (line 3029) | def setMaximum(self, max: float) -> None: ... method setMinimum (line 3030) | def setMinimum(self, min: float) -> None: ... method setPrefix (line 3031) | def setPrefix(self, prefix: str) -> None: ... method setRange (line 3032) | def setRange(self, min: float, max: float) -> None: ... method setSingleStep (line 3033) | def setSingleStep(self, val: float) -> None: ... method setStepType (line 3034) | def setStepType(self, stepType: QAbstractSpinBox.StepType) -> None: ... method setSuffix (line 3035) | def setSuffix(self, suffix: str) -> None: ... method setValue (line 3036) | def setValue(self, val: float) -> None: ... method singleStep (line 3037) | def singleStep(self) -> float: ... method stepType (line 3038) | def stepType(self) -> QAbstractSpinBox.StepType: ... method suffix (line 3039) | def suffix(self) -> str: ... method textFromValue (line 3040) | def textFromValue(self, val: float) -> str: ... method validate (line 3041) | def validate(self, input: str, pos: int) -> PySide2.QtGui.QValidator.S... method value (line 3042) | def value(self) -> float: ... method valueFromText (line 3043) | def valueFromText(self, text: str) -> float: ... class QErrorMessage (line 3045) | class QErrorMessage(QDialog): method __init__ (line 3047) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method changeEvent (line 3048) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method done (line 3049) | def done(self, arg__1: int) -> None: ... method qtHandler (line 3051) | def qtHandler() -> QErrorMessage: ... method showMessage (line 3053) | def showMessage(self, message: str, type: str) -> None: ... method showMessage (line 3055) | def showMessage(self, message: str) -> None: ... class QFileDialog (line 3057) | class QFileDialog(QDialog): class AcceptMode (line 3058) | class AcceptMode: method __init__ (line 3064) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3065) | def __add__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMo... method __and__ (line 3066) | def __and__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMo... method __bool__ (line 3067) | def __bool__(self) -> bool: ... method __eq__ (line 3068) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3069) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3070) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3071) | def __hash__(self) -> int: ... method __index__ (line 3072) | def __index__(self) -> int: ... method __int__ (line 3073) | def __int__(self) -> int: ... method __le__ (line 3074) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3075) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3076) | def __mul__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMo... method __ne__ (line 3077) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3078) | def __or__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMod... method __pos__ (line 3079) | def __pos__(self): ... method __radd__ (line 3080) | def __radd__(self, other: typing.SupportsInt) -> QFileDialog.AcceptM... method __rand__ (line 3081) | def __rand__(self, other: typing.SupportsInt) -> QFileDialog.AcceptM... method __rmul__ (line 3082) | def __rmul__(self, other: typing.SupportsInt) -> QFileDialog.AcceptM... method __ror__ (line 3083) | def __ror__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMo... method __rsub__ (line 3084) | def __rsub__(self, other: typing.SupportsInt) -> QFileDialog.AcceptM... method __rxor__ (line 3085) | def __rxor__(self, other: typing.SupportsInt) -> QFileDialog.AcceptM... method __sub__ (line 3086) | def __sub__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMo... method __xor__ (line 3087) | def __xor__(self, other: typing.SupportsInt) -> QFileDialog.AcceptMo... class DialogLabel (line 3089) | class DialogLabel: method __init__ (line 3098) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3099) | def __add__(self, other: typing.SupportsInt) -> QFileDialog.DialogLa... method __and__ (line 3100) | def __and__(self, other: typing.SupportsInt) -> QFileDialog.DialogLa... method __bool__ (line 3101) | def __bool__(self) -> bool: ... method __eq__ (line 3102) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3103) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3104) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3105) | def __hash__(self) -> int: ... method __index__ (line 3106) | def __index__(self) -> int: ... method __int__ (line 3107) | def __int__(self) -> int: ... method __le__ (line 3108) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3109) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3110) | def __mul__(self, other: typing.SupportsInt) -> QFileDialog.DialogLa... method __ne__ (line 3111) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3112) | def __or__(self, other: typing.SupportsInt) -> QFileDialog.DialogLab... method __pos__ (line 3113) | def __pos__(self): ... method __radd__ (line 3114) | def __radd__(self, other: typing.SupportsInt) -> QFileDialog.DialogL... method __rand__ (line 3115) | def __rand__(self, other: typing.SupportsInt) -> QFileDialog.DialogL... method __rmul__ (line 3116) | def __rmul__(self, other: typing.SupportsInt) -> QFileDialog.DialogL... method __ror__ (line 3117) | def __ror__(self, other: typing.SupportsInt) -> QFileDialog.DialogLa... method __rsub__ (line 3118) | def __rsub__(self, other: typing.SupportsInt) -> QFileDialog.DialogL... method __rxor__ (line 3119) | def __rxor__(self, other: typing.SupportsInt) -> QFileDialog.DialogL... method __sub__ (line 3120) | def __sub__(self, other: typing.SupportsInt) -> QFileDialog.DialogLa... method __xor__ (line 3121) | def __xor__(self, other: typing.SupportsInt) -> QFileDialog.DialogLa... class FileMode (line 3123) | class FileMode: method __init__ (line 3132) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3133) | def __add__(self, other: typing.SupportsInt) -> QFileDialog.FileMode... method __and__ (line 3134) | def __and__(self, other: typing.SupportsInt) -> QFileDialog.FileMode... method __bool__ (line 3135) | def __bool__(self) -> bool: ... method __eq__ (line 3136) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3137) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3138) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3139) | def __hash__(self) -> int: ... method __index__ (line 3140) | def __index__(self) -> int: ... method __int__ (line 3141) | def __int__(self) -> int: ... method __le__ (line 3142) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3143) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3144) | def __mul__(self, other: typing.SupportsInt) -> QFileDialog.FileMode... method __ne__ (line 3145) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3146) | def __or__(self, other: typing.SupportsInt) -> QFileDialog.FileMode:... method __pos__ (line 3147) | def __pos__(self): ... method __radd__ (line 3148) | def __radd__(self, other: typing.SupportsInt) -> QFileDialog.FileMod... method __rand__ (line 3149) | def __rand__(self, other: typing.SupportsInt) -> QFileDialog.FileMod... method __rmul__ (line 3150) | def __rmul__(self, other: typing.SupportsInt) -> QFileDialog.FileMod... method __ror__ (line 3151) | def __ror__(self, other: typing.SupportsInt) -> QFileDialog.FileMode... method __rsub__ (line 3152) | def __rsub__(self, other: typing.SupportsInt) -> QFileDialog.FileMod... method __rxor__ (line 3153) | def __rxor__(self, other: typing.SupportsInt) -> QFileDialog.FileMod... method __sub__ (line 3154) | def __sub__(self, other: typing.SupportsInt) -> QFileDialog.FileMode... method __xor__ (line 3155) | def __xor__(self, other: typing.SupportsInt) -> QFileDialog.FileMode... class Option (line 3157) | class Option: method __init__ (line 3169) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3170) | def __and__(self, other: typing.SupportsInt) -> QFileDialog.Options:... method __bool__ (line 3171) | def __bool__(self) -> bool: ... method __eq__ (line 3172) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3173) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3174) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3175) | def __hash__(self) -> int: ... method __index__ (line 3176) | def __index__(self) -> int: ... method __int__ (line 3177) | def __int__(self) -> int: ... method __invert__ (line 3178) | def __invert__(self) -> QFileDialog.Options: ... method __le__ (line 3179) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3180) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3181) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3182) | def __or__(self, other: typing.SupportsInt) -> QFileDialog.Options: ... method __rand__ (line 3183) | def __rand__(self, other: typing.SupportsInt) -> QFileDialog.Options... method __ror__ (line 3184) | def __ror__(self, other: typing.SupportsInt) -> QFileDialog.Options:... method __rxor__ (line 3185) | def __rxor__(self, other: typing.SupportsInt) -> QFileDialog.Options... method __xor__ (line 3186) | def __xor__(self, other: typing.SupportsInt) -> QFileDialog.Options:... class Options (line 3188) | class Options: method __init__ (line 3190) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3191) | def __and__(self, other: typing.SupportsInt) -> QFileDialog.Options:... method __bool__ (line 3192) | def __bool__(self) -> bool: ... method __eq__ (line 3193) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3194) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3195) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3196) | def __index__(self) -> int: ... method __int__ (line 3197) | def __int__(self) -> int: ... method __invert__ (line 3198) | def __invert__(self) -> QFileDialog.Options: ... method __le__ (line 3199) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3200) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3201) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3202) | def __or__(self, other: typing.SupportsInt) -> QFileDialog.Options: ... method __rand__ (line 3203) | def __rand__(self, other: typing.SupportsInt) -> QFileDialog.Options... method __ror__ (line 3204) | def __ror__(self, other: typing.SupportsInt) -> QFileDialog.Options:... method __rxor__ (line 3205) | def __rxor__(self, other: typing.SupportsInt) -> QFileDialog.Options... method __xor__ (line 3206) | def __xor__(self, other: typing.SupportsInt) -> QFileDialog.Options:... class ViewMode (line 3208) | class ViewMode: method __init__ (line 3214) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3215) | def __add__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode... method __and__ (line 3216) | def __and__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode... method __bool__ (line 3217) | def __bool__(self) -> bool: ... method __eq__ (line 3218) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3219) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3220) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3221) | def __hash__(self) -> int: ... method __index__ (line 3222) | def __index__(self) -> int: ... method __int__ (line 3223) | def __int__(self) -> int: ... method __le__ (line 3224) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3225) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3226) | def __mul__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode... method __ne__ (line 3227) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3228) | def __or__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode:... method __pos__ (line 3229) | def __pos__(self): ... method __radd__ (line 3230) | def __radd__(self, other: typing.SupportsInt) -> QFileDialog.ViewMod... method __rand__ (line 3231) | def __rand__(self, other: typing.SupportsInt) -> QFileDialog.ViewMod... method __rmul__ (line 3232) | def __rmul__(self, other: typing.SupportsInt) -> QFileDialog.ViewMod... method __ror__ (line 3233) | def __ror__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode... method __rsub__ (line 3234) | def __rsub__(self, other: typing.SupportsInt) -> QFileDialog.ViewMod... method __rxor__ (line 3235) | def __rxor__(self, other: typing.SupportsInt) -> QFileDialog.ViewMod... method __sub__ (line 3236) | def __sub__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode... method __xor__ (line 3237) | def __xor__(self, other: typing.SupportsInt) -> QFileDialog.ViewMode... method __init__ (line 3271) | def __init__(self, parent: QWidget | None = ..., caption: str = ..., d... method __init__ (line 3273) | def __init__(self, parent: QWidget | None, f: PySide2.QtCore.Qt.Window... method accept (line 3274) | def accept(self) -> None: ... method acceptMode (line 3275) | def acceptMode(self) -> QFileDialog.AcceptMode: ... method changeEvent (line 3276) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method confirmOverwrite (line 3277) | def confirmOverwrite(self) -> bool: ... method defaultSuffix (line 3278) | def defaultSuffix(self) -> str: ... method directory (line 3279) | def directory(self) -> PySide2.QtCore.QDir: ... method directoryUrl (line 3280) | def directoryUrl(self) -> PySide2.QtCore.QUrl: ... method done (line 3281) | def done(self, result: int) -> None: ... method fileMode (line 3282) | def fileMode(self) -> QFileDialog.FileMode: ... method filter (line 3283) | def filter(self) -> PySide2.QtCore.QDir.Filters | PySide2.QtCore.QDir.... method getExistingDirectory (line 3285) | def getExistingDirectory(parent: QWidget | None = ..., caption: str = ... method getExistingDirectoryUrl (line 3287) | def getExistingDirectoryUrl(parent: QWidget | None = ..., caption: str... method getOpenFileName (line 3289) | def getOpenFileName(parent: QWidget | None = ..., caption: str = ..., ... method getOpenFileNames (line 3291) | def getOpenFileNames(parent: QWidget | None = ..., caption: str = ...,... method getOpenFileUrl (line 3293) | def getOpenFileUrl(parent: QWidget | None = ..., caption: str = ..., d... method getOpenFileUrls (line 3295) | def getOpenFileUrls(parent: QWidget | None = ..., caption: str = ..., ... method getSaveFileName (line 3297) | def getSaveFileName(parent: QWidget | None = ..., caption: str = ..., ... method getSaveFileUrl (line 3299) | def getSaveFileUrl(parent: QWidget | None = ..., caption: str = ..., d... method history (line 3300) | def history(self) -> list[str]: ... method iconProvider (line 3301) | def iconProvider(self) -> QFileIconProvider: ... method isNameFilterDetailsVisible (line 3302) | def isNameFilterDetailsVisible(self) -> bool: ... method isReadOnly (line 3303) | def isReadOnly(self) -> bool: ... method itemDelegate (line 3304) | def itemDelegate(self) -> QAbstractItemDelegate: ... method labelText (line 3305) | def labelText(self, label: QFileDialog.DialogLabel) -> str: ... method mimeTypeFilters (line 3306) | def mimeTypeFilters(self) -> list[str]: ... method nameFilters (line 3307) | def nameFilters(self) -> list[str]: ... method open (line 3309) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 3311) | def open(self) -> None: ... method options (line 3312) | def options(self) -> QFileDialog.Options | QFileDialog.Option: ... method proxyModel (line 3313) | def proxyModel(self) -> PySide2.QtCore.QAbstractProxyModel: ... method resolveSymlinks (line 3314) | def resolveSymlinks(self) -> bool: ... method restoreState (line 3315) | def restoreState(self, state: PySide2.QtCore.QByteArray | bytes) -> bo... method saveFileContent (line 3317) | def saveFileContent(fileContent: PySide2.QtCore.QByteArray | bytes, fi... method saveState (line 3318) | def saveState(self) -> PySide2.QtCore.QByteArray: ... method selectFile (line 3319) | def selectFile(self, filename: str) -> None: ... method selectMimeTypeFilter (line 3320) | def selectMimeTypeFilter(self, filter: str) -> None: ... method selectNameFilter (line 3321) | def selectNameFilter(self, filter: str) -> None: ... method selectUrl (line 3322) | def selectUrl(self, url: PySide2.QtCore.QUrl) -> None: ... method selectedFiles (line 3323) | def selectedFiles(self) -> list[str]: ... method selectedMimeTypeFilter (line 3324) | def selectedMimeTypeFilter(self) -> str: ... method selectedNameFilter (line 3325) | def selectedNameFilter(self) -> str: ... method selectedUrls (line 3326) | def selectedUrls(self) -> list[PySide2.QtCore.QUrl]: ... method setAcceptMode (line 3327) | def setAcceptMode(self, mode: QFileDialog.AcceptMode) -> None: ... method setConfirmOverwrite (line 3328) | def setConfirmOverwrite(self, enabled: bool) -> None: ... method setDefaultSuffix (line 3329) | def setDefaultSuffix(self, suffix: str) -> None: ... method setDirectory (line 3331) | def setDirectory(self, directory: PySide2.QtCore.QDir) -> None: ... method setDirectory (line 3333) | def setDirectory(self, directory: str) -> None: ... method setDirectoryUrl (line 3334) | def setDirectoryUrl(self, directory: PySide2.QtCore.QUrl) -> None: ... method setFileMode (line 3335) | def setFileMode(self, mode: QFileDialog.FileMode) -> None: ... method setFilter (line 3336) | def setFilter(self, filters: PySide2.QtCore.QDir.Filters | PySide2.QtC... method setHistory (line 3337) | def setHistory(self, paths: typing.Iterable[str]) -> None: ... method setIconProvider (line 3338) | def setIconProvider(self, provider: QFileIconProvider) -> None: ... method setItemDelegate (line 3339) | def setItemDelegate(self, delegate: QAbstractItemDelegate) -> None: ... method setLabelText (line 3340) | def setLabelText(self, label: QFileDialog.DialogLabel, text: str) -> N... method setMimeTypeFilters (line 3341) | def setMimeTypeFilters(self, filters: typing.Iterable[str]) -> None: ... method setNameFilter (line 3342) | def setNameFilter(self, filter: str) -> None: ... method setNameFilterDetailsVisible (line 3343) | def setNameFilterDetailsVisible(self, enabled: bool) -> None: ... method setNameFilters (line 3344) | def setNameFilters(self, filters: typing.Iterable[str]) -> None: ... method setOption (line 3345) | def setOption(self, option: QFileDialog.Option, on: bool = ...) -> Non... method setOptions (line 3346) | def setOptions(self, options: QFileDialog.Options | QFileDialog.Option... method setProxyModel (line 3347) | def setProxyModel(self, model: PySide2.QtCore.QAbstractProxyModel) -> ... method setReadOnly (line 3348) | def setReadOnly(self, enabled: bool) -> None: ... method setResolveSymlinks (line 3349) | def setResolveSymlinks(self, enabled: bool) -> None: ... method setSidebarUrls (line 3350) | def setSidebarUrls(self, urls: typing.Iterable[PySide2.QtCore.QUrl]) -... method setSupportedSchemes (line 3351) | def setSupportedSchemes(self, schemes: typing.Iterable[str]) -> None: ... method setViewMode (line 3352) | def setViewMode(self, mode: QFileDialog.ViewMode) -> None: ... method setVisible (line 3353) | def setVisible(self, visible: bool) -> None: ... method sidebarUrls (line 3354) | def sidebarUrls(self) -> list[PySide2.QtCore.QUrl]: ... method supportedSchemes (line 3355) | def supportedSchemes(self) -> list[str]: ... method testOption (line 3356) | def testOption(self, option: QFileDialog.Option) -> bool: ... method viewMode (line 3357) | def viewMode(self) -> QFileDialog.ViewMode: ... class QFileIconProvider (line 3359) | class QFileIconProvider(shiboken2.Object): class IconType (line 3360) | class IconType: method __init__ (line 3371) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3372) | def __add__(self, other: typing.SupportsInt) -> QFileIconProvider.Ic... method __and__ (line 3373) | def __and__(self, other: typing.SupportsInt) -> QFileIconProvider.Ic... method __bool__ (line 3374) | def __bool__(self) -> bool: ... method __eq__ (line 3375) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3376) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3377) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3378) | def __hash__(self) -> int: ... method __index__ (line 3379) | def __index__(self) -> int: ... method __int__ (line 3380) | def __int__(self) -> int: ... method __le__ (line 3381) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3382) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3383) | def __mul__(self, other: typing.SupportsInt) -> QFileIconProvider.Ic... method __ne__ (line 3384) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3385) | def __or__(self, other: typing.SupportsInt) -> QFileIconProvider.Ico... method __pos__ (line 3386) | def __pos__(self): ... method __radd__ (line 3387) | def __radd__(self, other: typing.SupportsInt) -> QFileIconProvider.I... method __rand__ (line 3388) | def __rand__(self, other: typing.SupportsInt) -> QFileIconProvider.I... method __rmul__ (line 3389) | def __rmul__(self, other: typing.SupportsInt) -> QFileIconProvider.I... method __ror__ (line 3390) | def __ror__(self, other: typing.SupportsInt) -> QFileIconProvider.Ic... method __rsub__ (line 3391) | def __rsub__(self, other: typing.SupportsInt) -> QFileIconProvider.I... method __rxor__ (line 3392) | def __rxor__(self, other: typing.SupportsInt) -> QFileIconProvider.I... method __sub__ (line 3393) | def __sub__(self, other: typing.SupportsInt) -> QFileIconProvider.Ic... method __xor__ (line 3394) | def __xor__(self, other: typing.SupportsInt) -> QFileIconProvider.Ic... class Option (line 3396) | class Option: method __init__ (line 3401) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3402) | def __and__(self, other: typing.SupportsInt) -> QFileIconProvider.Op... method __bool__ (line 3403) | def __bool__(self) -> bool: ... method __eq__ (line 3404) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3405) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3406) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3407) | def __hash__(self) -> int: ... method __index__ (line 3408) | def __index__(self) -> int: ... method __int__ (line 3409) | def __int__(self) -> int: ... method __invert__ (line 3410) | def __invert__(self) -> QFileIconProvider.Options: ... method __le__ (line 3411) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3412) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3413) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3414) | def __or__(self, other: typing.SupportsInt) -> QFileIconProvider.Opt... method __rand__ (line 3415) | def __rand__(self, other: typing.SupportsInt) -> QFileIconProvider.O... method __ror__ (line 3416) | def __ror__(self, other: typing.SupportsInt) -> QFileIconProvider.Op... method __rxor__ (line 3417) | def __rxor__(self, other: typing.SupportsInt) -> QFileIconProvider.O... method __xor__ (line 3418) | def __xor__(self, other: typing.SupportsInt) -> QFileIconProvider.Op... class Options (line 3420) | class Options: method __init__ (line 3422) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3423) | def __and__(self, other: typing.SupportsInt) -> QFileIconProvider.Op... method __bool__ (line 3424) | def __bool__(self) -> bool: ... method __eq__ (line 3425) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3426) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3427) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3428) | def __index__(self) -> int: ... method __int__ (line 3429) | def __int__(self) -> int: ... method __invert__ (line 3430) | def __invert__(self) -> QFileIconProvider.Options: ... method __le__ (line 3431) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3432) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3433) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3434) | def __or__(self, other: typing.SupportsInt) -> QFileIconProvider.Opt... method __rand__ (line 3435) | def __rand__(self, other: typing.SupportsInt) -> QFileIconProvider.O... method __ror__ (line 3436) | def __ror__(self, other: typing.SupportsInt) -> QFileIconProvider.Op... method __rxor__ (line 3437) | def __rxor__(self, other: typing.SupportsInt) -> QFileIconProvider.O... method __xor__ (line 3438) | def __xor__(self, other: typing.SupportsInt) -> QFileIconProvider.Op... method __init__ (line 3447) | def __init__(self) -> None: ... method icon (line 3449) | def icon(self, type: QFileIconProvider.IconType) -> PySide2.QtGui.QIco... method icon (line 3451) | def icon(self, info: PySide2.QtCore.QFileInfo) -> PySide2.QtGui.QIcon:... method options (line 3452) | def options(self) -> QFileIconProvider.Options | QFileIconProvider.Opt... method setOptions (line 3453) | def setOptions(self, options: QFileIconProvider.Options | QFileIconPro... method type (line 3454) | def type(self, info: PySide2.QtCore.QFileInfo) -> str: ... class QFileSystemModel (line 3456) | class QFileSystemModel(PySide2.QtCore.QAbstractItemModel): class Option (line 3457) | class Option: method __init__ (line 3464) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3465) | def __and__(self, other: typing.SupportsInt) -> QFileSystemModel.Opt... method __bool__ (line 3466) | def __bool__(self) -> bool: ... method __eq__ (line 3467) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3468) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3469) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3470) | def __hash__(self) -> int: ... method __index__ (line 3471) | def __index__(self) -> int: ... method __int__ (line 3472) | def __int__(self) -> int: ... method __invert__ (line 3473) | def __invert__(self) -> QFileSystemModel.Options: ... method __le__ (line 3474) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3475) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3476) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3477) | def __or__(self, other: typing.SupportsInt) -> QFileSystemModel.Opti... method __rand__ (line 3478) | def __rand__(self, other: typing.SupportsInt) -> QFileSystemModel.Op... method __ror__ (line 3479) | def __ror__(self, other: typing.SupportsInt) -> QFileSystemModel.Opt... method __rxor__ (line 3480) | def __rxor__(self, other: typing.SupportsInt) -> QFileSystemModel.Op... method __xor__ (line 3481) | def __xor__(self, other: typing.SupportsInt) -> QFileSystemModel.Opt... class Options (line 3483) | class Options: method __init__ (line 3485) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3486) | def __and__(self, other: typing.SupportsInt) -> QFileSystemModel.Opt... method __bool__ (line 3487) | def __bool__(self) -> bool: ... method __eq__ (line 3488) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3489) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3490) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3491) | def __index__(self) -> int: ... method __int__ (line 3492) | def __int__(self) -> int: ... method __invert__ (line 3493) | def __invert__(self) -> QFileSystemModel.Options: ... method __le__ (line 3494) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3495) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3496) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3497) | def __or__(self, other: typing.SupportsInt) -> QFileSystemModel.Opti... method __rand__ (line 3498) | def __rand__(self, other: typing.SupportsInt) -> QFileSystemModel.Op... method __ror__ (line 3499) | def __ror__(self, other: typing.SupportsInt) -> QFileSystemModel.Opt... method __rxor__ (line 3500) | def __rxor__(self, other: typing.SupportsInt) -> QFileSystemModel.Op... method __xor__ (line 3501) | def __xor__(self, other: typing.SupportsInt) -> QFileSystemModel.Opt... class Roles (line 3503) | class Roles: method __init__ (line 3511) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3512) | def __add__(self, other: typing.SupportsInt) -> QFileSystemModel.Rol... method __and__ (line 3513) | def __and__(self, other: typing.SupportsInt) -> QFileSystemModel.Rol... method __bool__ (line 3514) | def __bool__(self) -> bool: ... method __eq__ (line 3515) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3516) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3517) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3518) | def __hash__(self) -> int: ... method __index__ (line 3519) | def __index__(self) -> int: ... method __int__ (line 3520) | def __int__(self) -> int: ... method __le__ (line 3521) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3522) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3523) | def __mul__(self, other: typing.SupportsInt) -> QFileSystemModel.Rol... method __ne__ (line 3524) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3525) | def __or__(self, other: typing.SupportsInt) -> QFileSystemModel.Role... method __pos__ (line 3526) | def __pos__(self): ... method __radd__ (line 3527) | def __radd__(self, other: typing.SupportsInt) -> QFileSystemModel.Ro... method __rand__ (line 3528) | def __rand__(self, other: typing.SupportsInt) -> QFileSystemModel.Ro... method __rmul__ (line 3529) | def __rmul__(self, other: typing.SupportsInt) -> QFileSystemModel.Ro... method __ror__ (line 3530) | def __ror__(self, other: typing.SupportsInt) -> QFileSystemModel.Rol... method __rsub__ (line 3531) | def __rsub__(self, other: typing.SupportsInt) -> QFileSystemModel.Ro... method __rxor__ (line 3532) | def __rxor__(self, other: typing.SupportsInt) -> QFileSystemModel.Ro... method __sub__ (line 3533) | def __sub__(self, other: typing.SupportsInt) -> QFileSystemModel.Rol... method __xor__ (line 3534) | def __xor__(self, other: typing.SupportsInt) -> QFileSystemModel.Rol... method __init__ (line 3546) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., column... method canFetchMore (line 3547) | def canFetchMore(self, parent: PySide2.QtCore.QModelIndex) -> bool: ... method columnCount (line 3548) | def columnCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int... method data (line 3549) | def data(self, index: PySide2.QtCore.QModelIndex, role: PySide2.QtCore... method dropMimeData (line 3550) | def dropMimeData(self, data: PySide2.QtCore.QMimeData, action: PySide2... method event (line 3551) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method fetchMore (line 3552) | def fetchMore(self, parent: PySide2.QtCore.QModelIndex) -> None: ... method fileIcon (line 3553) | def fileIcon(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtGui... method fileInfo (line 3554) | def fileInfo(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCor... method fileName (line 3555) | def fileName(self, index: PySide2.QtCore.QModelIndex) -> str: ... method filePath (line 3556) | def filePath(self, index: PySide2.QtCore.QModelIndex) -> str: ... method filter (line 3557) | def filter(self) -> PySide2.QtCore.QDir.Filters | PySide2.QtCore.QDir.... method flags (line 3558) | def flags(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.Q... method hasChildren (line 3559) | def hasChildren(self, parent: PySide2.QtCore.QModelIndex = ...) -> boo... method headerData (line 3560) | def headerData(self, section: int, orientation: PySide2.QtCore.Qt.Orie... method iconProvider (line 3561) | def iconProvider(self) -> QFileIconProvider: ... method index (line 3563) | def index(self, row: int, column: int, parent: PySide2.QtCore.QModelIn... method index (line 3565) | def index(self, path: str, column: int = ...) -> PySide2.QtCore.QModel... method isDir (line 3566) | def isDir(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isReadOnly (line 3567) | def isReadOnly(self) -> bool: ... method lastModified (line 3568) | def lastModified(self, index: PySide2.QtCore.QModelIndex) -> PySide2.Q... method mimeData (line 3569) | def mimeData(self, indexes: list[int]) -> PySide2.QtCore.QMimeData: ..... method mimeTypes (line 3570) | def mimeTypes(self) -> list[str]: ... method mkdir (line 3571) | def mkdir(self, parent: PySide2.QtCore.QModelIndex, name: str) -> PySi... method myComputer (line 3572) | def myComputer(self, role: PySide2.QtCore.Qt.ItemDataRole = ...) -> ty... method nameFilterDisables (line 3573) | def nameFilterDisables(self) -> bool: ... method nameFilters (line 3574) | def nameFilters(self) -> list[str]: ... method options (line 3575) | def options(self) -> QFileSystemModel.Options | QFileSystemModel.Optio... method parent (line 3577) | def parent(self, child: PySide2.QtCore.QModelIndex) -> PySide2.QtCore.... method parent (line 3579) | def parent(self) -> PySide2.QtCore.QObject: ... method remove (line 3580) | def remove(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method resolveSymlinks (line 3581) | def resolveSymlinks(self) -> bool: ... method rmdir (line 3582) | def rmdir(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method rootDirectory (line 3583) | def rootDirectory(self) -> PySide2.QtCore.QDir: ... method rootPath (line 3584) | def rootPath(self) -> str: ... method rowCount (line 3585) | def rowCount(self, parent: PySide2.QtCore.QModelIndex = ...) -> int: ... method setData (line 3586) | def setData(self, index: PySide2.QtCore.QModelIndex, value: typing.Any... method setFilter (line 3587) | def setFilter(self, filters: PySide2.QtCore.QDir.Filters | PySide2.QtC... method setIconProvider (line 3588) | def setIconProvider(self, provider: QFileIconProvider) -> None: ... method setNameFilterDisables (line 3589) | def setNameFilterDisables(self, enable: bool) -> None: ... method setNameFilters (line 3590) | def setNameFilters(self, filters: typing.Iterable[str]) -> None: ... method setOption (line 3591) | def setOption(self, option: QFileSystemModel.Option, on: bool = ...) -... method setOptions (line 3592) | def setOptions(self, options: QFileSystemModel.Options | QFileSystemMo... method setReadOnly (line 3593) | def setReadOnly(self, enable: bool) -> None: ... method setResolveSymlinks (line 3594) | def setResolveSymlinks(self, enable: bool) -> None: ... method setRootPath (line 3595) | def setRootPath(self, path: str) -> PySide2.QtCore.QModelIndex: ... method sibling (line 3596) | def sibling(self, row: int, column: int, idx: PySide2.QtCore.QModelInd... method size (line 3597) | def size(self, index: PySide2.QtCore.QModelIndex) -> int: ... method sort (line 3598) | def sort(self, column: int, order: PySide2.QtCore.Qt.SortOrder = ...) ... method supportedDropActions (line 3599) | def supportedDropActions(self) -> PySide2.QtCore.Qt.DropActions | PySi... method testOption (line 3600) | def testOption(self, option: QFileSystemModel.Option) -> bool: ... method timerEvent (line 3601) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method type (line 3602) | def type(self, index: PySide2.QtCore.QModelIndex) -> str: ... class QFocusFrame (line 3604) | class QFocusFrame(QWidget): method __init__ (line 3606) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method event (line 3607) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 3608) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method initStyleOption (line 3609) | def initStyleOption(self, option: QStyleOption) -> None: ... method paintEvent (line 3610) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method setWidget (line 3611) | def setWidget(self, widget: QWidget) -> None: ... method widget (line 3612) | def widget(self) -> QWidget: ... class QFontComboBox (line 3614) | class QFontComboBox(QComboBox): class FontFilter (line 3615) | class FontFilter: method __init__ (line 3624) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3625) | def __and__(self, other: typing.SupportsInt) -> QFontComboBox.FontFi... method __bool__ (line 3626) | def __bool__(self) -> bool: ... method __eq__ (line 3627) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3628) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3629) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3630) | def __hash__(self) -> int: ... method __index__ (line 3631) | def __index__(self) -> int: ... method __int__ (line 3632) | def __int__(self) -> int: ... method __invert__ (line 3633) | def __invert__(self) -> QFontComboBox.FontFilters: ... method __le__ (line 3634) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3635) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3636) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3637) | def __or__(self, other: typing.SupportsInt) -> QFontComboBox.FontFil... method __rand__ (line 3638) | def __rand__(self, other: typing.SupportsInt) -> QFontComboBox.FontF... method __ror__ (line 3639) | def __ror__(self, other: typing.SupportsInt) -> QFontComboBox.FontFi... method __rxor__ (line 3640) | def __rxor__(self, other: typing.SupportsInt) -> QFontComboBox.FontF... method __xor__ (line 3641) | def __xor__(self, other: typing.SupportsInt) -> QFontComboBox.FontFi... class FontFilters (line 3643) | class FontFilters: method __init__ (line 3645) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3646) | def __and__(self, other: typing.SupportsInt) -> QFontComboBox.FontFi... method __bool__ (line 3647) | def __bool__(self) -> bool: ... method __eq__ (line 3648) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3649) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3650) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3651) | def __index__(self) -> int: ... method __int__ (line 3652) | def __int__(self) -> int: ... method __invert__ (line 3653) | def __invert__(self) -> QFontComboBox.FontFilters: ... method __le__ (line 3654) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3655) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3656) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3657) | def __or__(self, other: typing.SupportsInt) -> QFontComboBox.FontFil... method __rand__ (line 3658) | def __rand__(self, other: typing.SupportsInt) -> QFontComboBox.FontF... method __ror__ (line 3659) | def __ror__(self, other: typing.SupportsInt) -> QFontComboBox.FontFi... method __rxor__ (line 3660) | def __rxor__(self, other: typing.SupportsInt) -> QFontComboBox.FontF... method __xor__ (line 3661) | def __xor__(self, other: typing.SupportsInt) -> QFontComboBox.FontFi... method __init__ (line 3669) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method currentFont (line 3670) | def currentFont(self) -> PySide2.QtGui.QFont: ... method event (line 3671) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method fontFilters (line 3672) | def fontFilters(self) -> QFontComboBox.FontFilters | QFontComboBox.Fon... method setCurrentFont (line 3673) | def setCurrentFont(self, f: PySide2.QtGui.QFont) -> None: ... method setFontFilters (line 3674) | def setFontFilters(self, filters: QFontComboBox.FontFilters | QFontCom... method setWritingSystem (line 3675) | def setWritingSystem(self, arg__1: PySide2.QtGui.QFontDatabase.Writing... method sizeHint (line 3676) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method writingSystem (line 3677) | def writingSystem(self) -> PySide2.QtGui.QFontDatabase.WritingSystem: ... class QFontDialog (line 3679) | class QFontDialog(QDialog): class FontDialogOption (line 3680) | class FontDialogOption: method __init__ (line 3690) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3691) | def __and__(self, other: typing.SupportsInt) -> QFontDialog.FontDial... method __bool__ (line 3692) | def __bool__(self) -> bool: ... method __eq__ (line 3693) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3694) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3695) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3696) | def __hash__(self) -> int: ... method __index__ (line 3697) | def __index__(self) -> int: ... method __int__ (line 3698) | def __int__(self) -> int: ... method __invert__ (line 3699) | def __invert__(self) -> QFontDialog.FontDialogOptions: ... method __le__ (line 3700) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3701) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3702) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3703) | def __or__(self, other: typing.SupportsInt) -> QFontDialog.FontDialo... method __rand__ (line 3704) | def __rand__(self, other: typing.SupportsInt) -> QFontDialog.FontDia... method __ror__ (line 3705) | def __ror__(self, other: typing.SupportsInt) -> QFontDialog.FontDial... method __rxor__ (line 3706) | def __rxor__(self, other: typing.SupportsInt) -> QFontDialog.FontDia... method __xor__ (line 3707) | def __xor__(self, other: typing.SupportsInt) -> QFontDialog.FontDial... class FontDialogOptions (line 3709) | class FontDialogOptions: method __init__ (line 3711) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 3712) | def __and__(self, other: typing.SupportsInt) -> QFontDialog.FontDial... method __bool__ (line 3713) | def __bool__(self) -> bool: ... method __eq__ (line 3714) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3715) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3716) | def __gt__(self, other: object) -> bool: ... method __index__ (line 3717) | def __index__(self) -> int: ... method __int__ (line 3718) | def __int__(self) -> int: ... method __invert__ (line 3719) | def __invert__(self) -> QFontDialog.FontDialogOptions: ... method __le__ (line 3720) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3721) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3722) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3723) | def __or__(self, other: typing.SupportsInt) -> QFontDialog.FontDialo... method __rand__ (line 3724) | def __rand__(self, other: typing.SupportsInt) -> QFontDialog.FontDia... method __ror__ (line 3725) | def __ror__(self, other: typing.SupportsInt) -> QFontDialog.FontDial... method __rxor__ (line 3726) | def __rxor__(self, other: typing.SupportsInt) -> QFontDialog.FontDia... method __xor__ (line 3727) | def __xor__(self, other: typing.SupportsInt) -> QFontDialog.FontDial... method __init__ (line 3738) | def __init__(self, initial: PySide2.QtGui.QFont, parent: QWidget | Non... method __init__ (line 3740) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method changeEvent (line 3741) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method currentFont (line 3742) | def currentFont(self) -> PySide2.QtGui.QFont: ... method done (line 3743) | def done(self, result: int) -> None: ... method eventFilter (line 3744) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method getFont (line 3747) | def getFont(initial: PySide2.QtGui.QFont, parent: QWidget | None = ...... method getFont (line 3750) | def getFont(parent: QWidget | None = ...) -> tuple[PySide2.QtGui.QFont... method open (line 3752) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 3754) | def open(self) -> None: ... method options (line 3755) | def options(self) -> QFontDialog.FontDialogOptions | QFontDialog.FontD... method selectedFont (line 3756) | def selectedFont(self) -> PySide2.QtGui.QFont: ... method setCurrentFont (line 3757) | def setCurrentFont(self, font: PySide2.QtGui.QFont) -> None: ... method setOption (line 3758) | def setOption(self, option: QFontDialog.FontDialogOption, on: bool = .... method setOptions (line 3759) | def setOptions(self, options: QFontDialog.FontDialogOptions | QFontDia... method setVisible (line 3760) | def setVisible(self, visible: bool) -> None: ... method testOption (line 3761) | def testOption(self, option: QFontDialog.FontDialogOption) -> bool: ... class QFormLayout (line 3763) | class QFormLayout(QLayout): class FieldGrowthPolicy (line 3764) | class FieldGrowthPolicy: method __init__ (line 3771) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3772) | def __add__(self, other: typing.SupportsInt) -> QFormLayout.FieldGro... method __and__ (line 3773) | def __and__(self, other: typing.SupportsInt) -> QFormLayout.FieldGro... method __bool__ (line 3774) | def __bool__(self) -> bool: ... method __eq__ (line 3775) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3776) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3777) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3778) | def __hash__(self) -> int: ... method __index__ (line 3779) | def __index__(self) -> int: ... method __int__ (line 3780) | def __int__(self) -> int: ... method __le__ (line 3781) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3782) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3783) | def __mul__(self, other: typing.SupportsInt) -> QFormLayout.FieldGro... method __ne__ (line 3784) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3785) | def __or__(self, other: typing.SupportsInt) -> QFormLayout.FieldGrow... method __pos__ (line 3786) | def __pos__(self): ... method __radd__ (line 3787) | def __radd__(self, other: typing.SupportsInt) -> QFormLayout.FieldGr... method __rand__ (line 3788) | def __rand__(self, other: typing.SupportsInt) -> QFormLayout.FieldGr... method __rmul__ (line 3789) | def __rmul__(self, other: typing.SupportsInt) -> QFormLayout.FieldGr... method __ror__ (line 3790) | def __ror__(self, other: typing.SupportsInt) -> QFormLayout.FieldGro... method __rsub__ (line 3791) | def __rsub__(self, other: typing.SupportsInt) -> QFormLayout.FieldGr... method __rxor__ (line 3792) | def __rxor__(self, other: typing.SupportsInt) -> QFormLayout.FieldGr... method __sub__ (line 3793) | def __sub__(self, other: typing.SupportsInt) -> QFormLayout.FieldGro... method __xor__ (line 3794) | def __xor__(self, other: typing.SupportsInt) -> QFormLayout.FieldGro... class ItemRole (line 3796) | class ItemRole: method __init__ (line 3803) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3804) | def __add__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole... method __and__ (line 3805) | def __and__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole... method __bool__ (line 3806) | def __bool__(self) -> bool: ... method __eq__ (line 3807) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3808) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3809) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3810) | def __hash__(self) -> int: ... method __index__ (line 3811) | def __index__(self) -> int: ... method __int__ (line 3812) | def __int__(self) -> int: ... method __le__ (line 3813) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3814) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3815) | def __mul__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole... method __ne__ (line 3816) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3817) | def __or__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole:... method __pos__ (line 3818) | def __pos__(self): ... method __radd__ (line 3819) | def __radd__(self, other: typing.SupportsInt) -> QFormLayout.ItemRol... method __rand__ (line 3820) | def __rand__(self, other: typing.SupportsInt) -> QFormLayout.ItemRol... method __rmul__ (line 3821) | def __rmul__(self, other: typing.SupportsInt) -> QFormLayout.ItemRol... method __ror__ (line 3822) | def __ror__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole... method __rsub__ (line 3823) | def __rsub__(self, other: typing.SupportsInt) -> QFormLayout.ItemRol... method __rxor__ (line 3824) | def __rxor__(self, other: typing.SupportsInt) -> QFormLayout.ItemRol... method __sub__ (line 3825) | def __sub__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole... method __xor__ (line 3826) | def __xor__(self, other: typing.SupportsInt) -> QFormLayout.ItemRole... class RowWrapPolicy (line 3828) | class RowWrapPolicy: method __init__ (line 3835) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3836) | def __add__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapP... method __and__ (line 3837) | def __and__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapP... method __bool__ (line 3838) | def __bool__(self) -> bool: ... method __eq__ (line 3839) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3840) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3841) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3842) | def __hash__(self) -> int: ... method __index__ (line 3843) | def __index__(self) -> int: ... method __int__ (line 3844) | def __int__(self) -> int: ... method __le__ (line 3845) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3846) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3847) | def __mul__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapP... method __ne__ (line 3848) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3849) | def __or__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapPo... method __pos__ (line 3850) | def __pos__(self): ... method __radd__ (line 3851) | def __radd__(self, other: typing.SupportsInt) -> QFormLayout.RowWrap... method __rand__ (line 3852) | def __rand__(self, other: typing.SupportsInt) -> QFormLayout.RowWrap... method __rmul__ (line 3853) | def __rmul__(self, other: typing.SupportsInt) -> QFormLayout.RowWrap... method __ror__ (line 3854) | def __ror__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapP... method __rsub__ (line 3855) | def __rsub__(self, other: typing.SupportsInt) -> QFormLayout.RowWrap... method __rxor__ (line 3856) | def __rxor__(self, other: typing.SupportsInt) -> QFormLayout.RowWrap... method __sub__ (line 3857) | def __sub__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapP... method __xor__ (line 3858) | def __xor__(self, other: typing.SupportsInt) -> QFormLayout.RowWrapP... method __init__ (line 3869) | def __init__(self, parent: QWidget | None = ..., destroyed: typing.Cal... method addItem (line 3870) | def addItem(self, item: QLayoutItem) -> None: ... method addRow (line 3872) | def addRow(self, labelText: str, field: QLayout) -> None: ... method addRow (line 3874) | def addRow(self, labelText: str, field: QWidget) -> None: ... method addRow (line 3876) | def addRow(self, label: QWidget, field: QLayout) -> None: ... method addRow (line 3878) | def addRow(self, label: QWidget, field: QWidget) -> None: ... method addRow (line 3880) | def addRow(self, widget: QWidget) -> None: ... method addRow (line 3882) | def addRow(self, layout: QLayout) -> None: ... method count (line 3883) | def count(self) -> int: ... method expandingDirections (line 3884) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method fieldGrowthPolicy (line 3885) | def fieldGrowthPolicy(self) -> QFormLayout.FieldGrowthPolicy: ... method formAlignment (line 3886) | def formAlignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCor... method getItemPosition (line 3887) | def getItemPosition(self, index: int, rolePtr: QFormLayout.ItemRole) -... method getLayoutPosition (line 3888) | def getLayoutPosition(self, layout: QLayout, rolePtr: QFormLayout.Item... method getWidgetPosition (line 3889) | def getWidgetPosition(self, widget: QWidget, rolePtr: QFormLayout.Item... method hasHeightForWidth (line 3890) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 3891) | def heightForWidth(self, width: int) -> int: ... method horizontalSpacing (line 3892) | def horizontalSpacing(self) -> int: ... method insertRow (line 3894) | def insertRow(self, row: int, labelText: str, field: QLayout) -> None:... method insertRow (line 3896) | def insertRow(self, row: int, labelText: str, field: QWidget) -> None:... method insertRow (line 3898) | def insertRow(self, row: int, label: QWidget, field: QLayout) -> None:... method insertRow (line 3900) | def insertRow(self, row: int, label: QWidget, field: QWidget) -> None:... method insertRow (line 3902) | def insertRow(self, row: int, widget: QWidget) -> None: ... method insertRow (line 3904) | def insertRow(self, row: int, layout: QLayout) -> None: ... method invalidate (line 3905) | def invalidate(self) -> None: ... method itemAt (line 3907) | def itemAt(self, row: int, role: QFormLayout.ItemRole) -> QLayoutItem:... method itemAt (line 3909) | def itemAt(self, index: int) -> QLayoutItem: ... method labelAlignment (line 3910) | def labelAlignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCo... method labelForField (line 3912) | def labelForField(self, field: QLayout) -> QWidget: ... method labelForField (line 3914) | def labelForField(self, field: QWidget) -> QWidget: ... method minimumSize (line 3915) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method removeRow (line 3917) | def removeRow(self, widget: QWidget) -> None: ... method removeRow (line 3919) | def removeRow(self, row: int) -> None: ... method removeRow (line 3921) | def removeRow(self, layout: QLayout) -> None: ... method rowCount (line 3922) | def rowCount(self) -> int: ... method rowWrapPolicy (line 3923) | def rowWrapPolicy(self) -> QFormLayout.RowWrapPolicy: ... method setFieldGrowthPolicy (line 3924) | def setFieldGrowthPolicy(self, policy: QFormLayout.FieldGrowthPolicy) ... method setFormAlignment (line 3925) | def setFormAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | Py... method setGeometry (line 3926) | def setGeometry(self, rect: PySide2.QtCore.QRect) -> None: ... method setHorizontalSpacing (line 3927) | def setHorizontalSpacing(self, spacing: int) -> None: ... method setItem (line 3928) | def setItem(self, row: int, role: QFormLayout.ItemRole, item: QLayoutI... method setLabelAlignment (line 3929) | def setLabelAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | P... method setLayout (line 3930) | def setLayout(self, row: int, role: QFormLayout.ItemRole, layout: QLay... method setRowWrapPolicy (line 3931) | def setRowWrapPolicy(self, policy: QFormLayout.RowWrapPolicy) -> None:... method setSpacing (line 3932) | def setSpacing(self, arg__1: int) -> None: ... method setVerticalSpacing (line 3933) | def setVerticalSpacing(self, spacing: int) -> None: ... method setWidget (line 3934) | def setWidget(self, row: int, role: QFormLayout.ItemRole, widget: QWid... method sizeHint (line 3935) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method spacing (line 3936) | def spacing(self) -> int: ... method takeAt (line 3937) | def takeAt(self, index: int) -> QLayoutItem: ... method verticalSpacing (line 3938) | def verticalSpacing(self) -> int: ... class QFrame (line 3940) | class QFrame(QWidget): class Shadow (line 3941) | class Shadow: method __init__ (line 3948) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3949) | def __add__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __and__ (line 3950) | def __and__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __bool__ (line 3951) | def __bool__(self) -> bool: ... method __eq__ (line 3952) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3953) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3954) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3955) | def __hash__(self) -> int: ... method __index__ (line 3956) | def __index__(self) -> int: ... method __int__ (line 3957) | def __int__(self) -> int: ... method __le__ (line 3958) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3959) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3960) | def __mul__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __ne__ (line 3961) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3962) | def __or__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __pos__ (line 3963) | def __pos__(self): ... method __radd__ (line 3964) | def __radd__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __rand__ (line 3965) | def __rand__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __rmul__ (line 3966) | def __rmul__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __ror__ (line 3967) | def __ror__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __rsub__ (line 3968) | def __rsub__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __rxor__ (line 3969) | def __rxor__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __sub__ (line 3970) | def __sub__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... method __xor__ (line 3971) | def __xor__(self, other: typing.SupportsInt) -> QFrame.Shadow: ... class Shape (line 3973) | class Shape: method __init__ (line 3984) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 3985) | def __add__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __and__ (line 3986) | def __and__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __bool__ (line 3987) | def __bool__(self) -> bool: ... method __eq__ (line 3988) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3989) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3990) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3991) | def __hash__(self) -> int: ... method __index__ (line 3992) | def __index__(self) -> int: ... method __int__ (line 3993) | def __int__(self) -> int: ... method __le__ (line 3994) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3995) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 3996) | def __mul__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __ne__ (line 3997) | def __ne__(self, other: object) -> bool: ... method __or__ (line 3998) | def __or__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __pos__ (line 3999) | def __pos__(self): ... method __radd__ (line 4000) | def __radd__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __rand__ (line 4001) | def __rand__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __rmul__ (line 4002) | def __rmul__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __ror__ (line 4003) | def __ror__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __rsub__ (line 4004) | def __rsub__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __rxor__ (line 4005) | def __rxor__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __sub__ (line 4006) | def __sub__(self, other: typing.SupportsInt) -> QFrame.Shape: ... method __xor__ (line 4007) | def __xor__(self, other: typing.SupportsInt) -> QFrame.Shape: ... class StyleMask (line 4009) | class StyleMask: method __init__ (line 4015) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4016) | def __add__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __and__ (line 4017) | def __and__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __bool__ (line 4018) | def __bool__(self) -> bool: ... method __eq__ (line 4019) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4020) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4021) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4022) | def __hash__(self) -> int: ... method __index__ (line 4023) | def __index__(self) -> int: ... method __int__ (line 4024) | def __int__(self) -> int: ... method __le__ (line 4025) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4026) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4027) | def __mul__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __ne__ (line 4028) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4029) | def __or__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __pos__ (line 4030) | def __pos__(self): ... method __radd__ (line 4031) | def __radd__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __rand__ (line 4032) | def __rand__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __rmul__ (line 4033) | def __rmul__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __ror__ (line 4034) | def __ror__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __rsub__ (line 4035) | def __rsub__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __rxor__ (line 4036) | def __rxor__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __sub__ (line 4037) | def __sub__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __xor__ (line 4038) | def __xor__(self, other: typing.SupportsInt) -> QFrame.StyleMask: ... method __init__ (line 4052) | def __init__(self, parent: QWidget | None = ..., f: PySide2.QtCore.Qt.... method changeEvent (line 4053) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method drawFrame (line 4054) | def drawFrame(self, arg__1: PySide2.QtGui.QPainter) -> None: ... method event (line 4055) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method frameRect (line 4056) | def frameRect(self) -> PySide2.QtCore.QRect: ... method frameShadow (line 4057) | def frameShadow(self) -> QFrame.Shadow: ... method frameShape (line 4058) | def frameShape(self) -> QFrame.Shape: ... method frameStyle (line 4059) | def frameStyle(self) -> int: ... method frameWidth (line 4060) | def frameWidth(self) -> int: ... method initStyleOption (line 4061) | def initStyleOption(self, option: QStyleOptionFrame) -> None: ... method lineWidth (line 4062) | def lineWidth(self) -> int: ... method midLineWidth (line 4063) | def midLineWidth(self) -> int: ... method paintEvent (line 4064) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method setFrameRect (line 4065) | def setFrameRect(self, arg__1: PySide2.QtCore.QRect) -> None: ... method setFrameShadow (line 4066) | def setFrameShadow(self, arg__1: QFrame.Shadow) -> None: ... method setFrameShape (line 4067) | def setFrameShape(self, arg__1: QFrame.Shape) -> None: ... method setFrameStyle (line 4068) | def setFrameStyle(self, arg__1: QFrame.Shape | QFrame.Shadow | typing.... method setLineWidth (line 4069) | def setLineWidth(self, arg__1: int) -> None: ... method setMidLineWidth (line 4070) | def setMidLineWidth(self, arg__1: int) -> None: ... method sizeHint (line 4071) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QGesture (line 4073) | class QGesture(PySide2.QtCore.QObject): class GestureCancelPolicy (line 4074) | class GestureCancelPolicy: method __init__ (line 4080) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4081) | def __add__(self, other: typing.SupportsInt) -> QGesture.GestureCanc... method __and__ (line 4082) | def __and__(self, other: typing.SupportsInt) -> QGesture.GestureCanc... method __bool__ (line 4083) | def __bool__(self) -> bool: ... method __eq__ (line 4084) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4085) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4086) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4087) | def __hash__(self) -> int: ... method __index__ (line 4088) | def __index__(self) -> int: ... method __int__ (line 4089) | def __int__(self) -> int: ... method __le__ (line 4090) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4091) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4092) | def __mul__(self, other: typing.SupportsInt) -> QGesture.GestureCanc... method __ne__ (line 4093) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4094) | def __or__(self, other: typing.SupportsInt) -> QGesture.GestureCance... method __pos__ (line 4095) | def __pos__(self): ... method __radd__ (line 4096) | def __radd__(self, other: typing.SupportsInt) -> QGesture.GestureCan... method __rand__ (line 4097) | def __rand__(self, other: typing.SupportsInt) -> QGesture.GestureCan... method __rmul__ (line 4098) | def __rmul__(self, other: typing.SupportsInt) -> QGesture.GestureCan... method __ror__ (line 4099) | def __ror__(self, other: typing.SupportsInt) -> QGesture.GestureCanc... method __rsub__ (line 4100) | def __rsub__(self, other: typing.SupportsInt) -> QGesture.GestureCan... method __rxor__ (line 4101) | def __rxor__(self, other: typing.SupportsInt) -> QGesture.GestureCan... method __sub__ (line 4102) | def __sub__(self, other: typing.SupportsInt) -> QGesture.GestureCanc... method __xor__ (line 4103) | def __xor__(self, other: typing.SupportsInt) -> QGesture.GestureCanc... method __init__ (line 4107) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method gestureCancelPolicy (line 4108) | def gestureCancelPolicy(self) -> QGesture.GestureCancelPolicy: ... method gestureType (line 4109) | def gestureType(self) -> PySide2.QtCore.Qt.GestureType: ... method hasHotSpot (line 4110) | def hasHotSpot(self) -> bool: ... method hotSpot (line 4111) | def hotSpot(self) -> PySide2.QtCore.QPointF: ... method setGestureCancelPolicy (line 4112) | def setGestureCancelPolicy(self, policy: QGesture.GestureCancelPolicy)... method setHotSpot (line 4113) | def setHotSpot(self, value: PySide2.QtCore.QPointF) -> None: ... method state (line 4114) | def state(self) -> PySide2.QtCore.Qt.GestureState: ... method unsetHotSpot (line 4115) | def unsetHotSpot(self) -> None: ... class QGestureEvent (line 4117) | class QGestureEvent(PySide2.QtCore.QEvent): method __init__ (line 4118) | def __init__(self, gestures: typing.Iterable[QGesture]) -> None: ... method accept (line 4120) | def accept(self, arg__1: PySide2.QtCore.Qt.GestureType) -> None: ... method accept (line 4122) | def accept(self, arg__1: QGesture) -> None: ... method accept (line 4124) | def accept(self) -> None: ... method activeGestures (line 4125) | def activeGestures(self) -> list[QGesture]: ... method canceledGestures (line 4126) | def canceledGestures(self) -> list[QGesture]: ... method gesture (line 4127) | def gesture(self, type: PySide2.QtCore.Qt.GestureType) -> QGesture: ... method gestures (line 4128) | def gestures(self) -> list[QGesture]: ... method ignore (line 4130) | def ignore(self, arg__1: PySide2.QtCore.Qt.GestureType) -> None: ... method ignore (line 4132) | def ignore(self, arg__1: QGesture) -> None: ... method ignore (line 4134) | def ignore(self) -> None: ... method isAccepted (line 4136) | def isAccepted(self, arg__1: PySide2.QtCore.Qt.GestureType) -> bool: ... method isAccepted (line 4138) | def isAccepted(self, arg__1: QGesture) -> bool: ... method isAccepted (line 4140) | def isAccepted(self) -> bool: ... method mapToGraphicsScene (line 4141) | def mapToGraphicsScene(self, gesturePoint: PySide2.QtCore.QPointF) -> ... method setAccepted (line 4143) | def setAccepted(self, arg__1: PySide2.QtCore.Qt.GestureType, arg__2: b... method setAccepted (line 4145) | def setAccepted(self, arg__1: QGesture, arg__2: bool) -> None: ... method setAccepted (line 4147) | def setAccepted(self, accepted: bool) -> None: ... method setWidget (line 4148) | def setWidget(self, widget: QWidget) -> None: ... method widget (line 4149) | def widget(self) -> QWidget: ... class QGestureRecognizer (line 4151) | class QGestureRecognizer(shiboken2.Object): class Result (line 4152) | class Result: method __init__ (line 4154) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4155) | def __and__(self, other: typing.SupportsInt) -> QGestureRecognizer.R... method __bool__ (line 4156) | def __bool__(self) -> bool: ... method __eq__ (line 4157) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4158) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4159) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4160) | def __index__(self) -> int: ... method __int__ (line 4161) | def __int__(self) -> int: ... method __invert__ (line 4162) | def __invert__(self) -> QGestureRecognizer.Result: ... method __le__ (line 4163) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4164) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4165) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4166) | def __or__(self, other: typing.SupportsInt) -> QGestureRecognizer.Re... method __rand__ (line 4167) | def __rand__(self, other: typing.SupportsInt) -> QGestureRecognizer.... method __ror__ (line 4168) | def __ror__(self, other: typing.SupportsInt) -> QGestureRecognizer.R... method __rxor__ (line 4169) | def __rxor__(self, other: typing.SupportsInt) -> QGestureRecognizer.... method __xor__ (line 4170) | def __xor__(self, other: typing.SupportsInt) -> QGestureRecognizer.R... class ResultFlag (line 4172) | class ResultFlag: method __init__ (line 4184) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4185) | def __and__(self, other: typing.SupportsInt) -> QGestureRecognizer.R... method __bool__ (line 4186) | def __bool__(self) -> bool: ... method __eq__ (line 4187) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4188) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4189) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4190) | def __hash__(self) -> int: ... method __index__ (line 4191) | def __index__(self) -> int: ... method __int__ (line 4192) | def __int__(self) -> int: ... method __invert__ (line 4193) | def __invert__(self) -> QGestureRecognizer.Result: ... method __le__ (line 4194) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4195) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4196) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4197) | def __or__(self, other: typing.SupportsInt) -> QGestureRecognizer.Re... method __rand__ (line 4198) | def __rand__(self, other: typing.SupportsInt) -> QGestureRecognizer.... method __ror__ (line 4199) | def __ror__(self, other: typing.SupportsInt) -> QGestureRecognizer.R... method __rxor__ (line 4200) | def __rxor__(self, other: typing.SupportsInt) -> QGestureRecognizer.... method __xor__ (line 4201) | def __xor__(self, other: typing.SupportsInt) -> QGestureRecognizer.R... method __init__ (line 4210) | def __init__(self) -> None: ... method create (line 4211) | def create(self, target: PySide2.QtCore.QObject) -> QGesture: ... method recognize (line 4212) | def recognize(self, state: QGesture, watched: PySide2.QtCore.QObject, ... method registerRecognizer (line 4214) | def registerRecognizer(recognizer: QGestureRecognizer) -> PySide2.QtCo... method reset (line 4215) | def reset(self, state: QGesture) -> None: ... method unregisterRecognizer (line 4217) | def unregisterRecognizer(type: PySide2.QtCore.Qt.GestureType) -> None:... class QGraphicsAnchor (line 4219) | class QGraphicsAnchor(PySide2.QtCore.QObject): method __init__ (line 4222) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method setSizePolicy (line 4223) | def setSizePolicy(self, policy: QSizePolicy.Policy) -> None: ... method setSpacing (line 4224) | def setSpacing(self, spacing: float) -> None: ... method sizePolicy (line 4225) | def sizePolicy(self) -> QSizePolicy.Policy: ... method spacing (line 4226) | def spacing(self) -> float: ... method unsetSpacing (line 4227) | def unsetSpacing(self) -> None: ... class QGraphicsAnchorLayout (line 4229) | class QGraphicsAnchorLayout(QGraphicsLayout): method __init__ (line 4230) | def __init__(self, parent: QGraphicsLayoutItem | None = ...) -> None: ... method addAnchor (line 4231) | def addAnchor(self, firstItem: QGraphicsLayoutItem, firstEdge: PySide2... method addAnchors (line 4232) | def addAnchors(self, firstItem: QGraphicsLayoutItem, secondItem: QGrap... method addCornerAnchors (line 4233) | def addCornerAnchors(self, firstItem: QGraphicsLayoutItem, firstCorner... method anchor (line 4234) | def anchor(self, firstItem: QGraphicsLayoutItem, firstEdge: PySide2.Qt... method count (line 4235) | def count(self) -> int: ... method horizontalSpacing (line 4236) | def horizontalSpacing(self) -> float: ... method invalidate (line 4237) | def invalidate(self) -> None: ... method itemAt (line 4238) | def itemAt(self, index: int) -> QGraphicsLayoutItem: ... method removeAt (line 4239) | def removeAt(self, index: int) -> None: ... method setGeometry (line 4240) | def setGeometry(self, rect: PySide2.QtCore.QRectF) -> None: ... method setHorizontalSpacing (line 4241) | def setHorizontalSpacing(self, spacing: float) -> None: ... method setSpacing (line 4242) | def setSpacing(self, spacing: float) -> None: ... method setVerticalSpacing (line 4243) | def setVerticalSpacing(self, spacing: float) -> None: ... method sizeHint (line 4244) | def sizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constraint: PySi... method verticalSpacing (line 4245) | def verticalSpacing(self) -> float: ... class QGraphicsBlurEffect (line 4247) | class QGraphicsBlurEffect(QGraphicsEffect): class BlurHint (line 4248) | class BlurHint: method __init__ (line 4255) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4256) | def __and__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.... method __bool__ (line 4257) | def __bool__(self) -> bool: ... method __eq__ (line 4258) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4259) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4260) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4261) | def __hash__(self) -> int: ... method __index__ (line 4262) | def __index__(self) -> int: ... method __int__ (line 4263) | def __int__(self) -> int: ... method __invert__ (line 4264) | def __invert__(self) -> QGraphicsBlurEffect.BlurHints: ... method __le__ (line 4265) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4266) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4267) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4268) | def __or__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.B... method __rand__ (line 4269) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect... method __ror__ (line 4270) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.... method __rxor__ (line 4271) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect... method __xor__ (line 4272) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.... class BlurHints (line 4274) | class BlurHints: method __init__ (line 4276) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4277) | def __and__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.... method __bool__ (line 4278) | def __bool__(self) -> bool: ... method __eq__ (line 4279) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4280) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4281) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4282) | def __index__(self) -> int: ... method __int__ (line 4283) | def __int__(self) -> int: ... method __invert__ (line 4284) | def __invert__(self) -> QGraphicsBlurEffect.BlurHints: ... method __le__ (line 4285) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4286) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4287) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4288) | def __or__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.B... method __rand__ (line 4289) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect... method __ror__ (line 4290) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.... method __rxor__ (line 4291) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect... method __xor__ (line 4292) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsBlurEffect.... method __init__ (line 4299) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., blurHi... method blurHints (line 4300) | def blurHints(self) -> QGraphicsBlurEffect.BlurHints | QGraphicsBlurEf... method blurRadius (line 4301) | def blurRadius(self) -> float: ... method boundingRectFor (line 4302) | def boundingRectFor(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtCo... method draw (line 4303) | def draw(self, painter: PySide2.QtGui.QPainter) -> None: ... method setBlurHints (line 4304) | def setBlurHints(self, hints: QGraphicsBlurEffect.BlurHints | QGraphic... method setBlurRadius (line 4305) | def setBlurRadius(self, blurRadius: float) -> None: ... class QGraphicsColorizeEffect (line 4307) | class QGraphicsColorizeEffect(QGraphicsEffect): method __init__ (line 4311) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., color:... method color (line 4312) | def color(self) -> PySide2.QtGui.QColor: ... method draw (line 4313) | def draw(self, painter: PySide2.QtGui.QPainter) -> None: ... method setColor (line 4314) | def setColor(self, c: PySide2.QtGui.QColor | PySide2.QtCore.Qt.GlobalC... method setStrength (line 4315) | def setStrength(self, strength: float) -> None: ... method strength (line 4316) | def strength(self) -> float: ... class QGraphicsDropShadowEffect (line 4318) | class QGraphicsDropShadowEffect(QGraphicsEffect): method __init__ (line 4323) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., blurRa... method blurRadius (line 4324) | def blurRadius(self) -> float: ... method boundingRectFor (line 4325) | def boundingRectFor(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtCo... method color (line 4326) | def color(self) -> PySide2.QtGui.QColor: ... method draw (line 4327) | def draw(self, painter: PySide2.QtGui.QPainter) -> None: ... method offset (line 4328) | def offset(self) -> PySide2.QtCore.QPointF: ... method setBlurRadius (line 4329) | def setBlurRadius(self, blurRadius: float) -> None: ... method setColor (line 4330) | def setColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Glo... method setOffset (line 4332) | def setOffset(self, dx: float, dy: float) -> None: ... method setOffset (line 4334) | def setOffset(self, ofs: PySide2.QtCore.QPointF) -> None: ... method setOffset (line 4336) | def setOffset(self, d: float) -> None: ... method setXOffset (line 4337) | def setXOffset(self, dx: float) -> None: ... method setYOffset (line 4338) | def setYOffset(self, dy: float) -> None: ... method xOffset (line 4339) | def xOffset(self) -> float: ... method yOffset (line 4340) | def yOffset(self) -> float: ... class QGraphicsEffect (line 4342) | class QGraphicsEffect(PySide2.QtCore.QObject): class ChangeFlag (line 4343) | class ChangeFlag: method __init__ (line 4351) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4352) | def __and__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chan... method __bool__ (line 4353) | def __bool__(self) -> bool: ... method __eq__ (line 4354) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4355) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4356) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4357) | def __hash__(self) -> int: ... method __index__ (line 4358) | def __index__(self) -> int: ... method __int__ (line 4359) | def __int__(self) -> int: ... method __invert__ (line 4360) | def __invert__(self) -> QGraphicsEffect.ChangeFlags: ... method __le__ (line 4361) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4362) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4363) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4364) | def __or__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chang... method __rand__ (line 4365) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsEffect.Cha... method __ror__ (line 4366) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chan... method __rxor__ (line 4367) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsEffect.Cha... method __xor__ (line 4368) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chan... class ChangeFlags (line 4370) | class ChangeFlags: method __init__ (line 4372) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4373) | def __and__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chan... method __bool__ (line 4374) | def __bool__(self) -> bool: ... method __eq__ (line 4375) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4376) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4377) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4378) | def __index__(self) -> int: ... method __int__ (line 4379) | def __int__(self) -> int: ... method __invert__ (line 4380) | def __invert__(self) -> QGraphicsEffect.ChangeFlags: ... method __le__ (line 4381) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4382) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4383) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4384) | def __or__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chang... method __rand__ (line 4385) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsEffect.Cha... method __ror__ (line 4386) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chan... method __rxor__ (line 4387) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsEffect.Cha... method __xor__ (line 4388) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsEffect.Chan... class PixmapPadMode (line 4390) | class PixmapPadMode: method __init__ (line 4397) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4398) | def __add__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixm... method __and__ (line 4399) | def __and__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixm... method __bool__ (line 4400) | def __bool__(self) -> bool: ... method __eq__ (line 4401) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4402) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4403) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4404) | def __hash__(self) -> int: ... method __index__ (line 4405) | def __index__(self) -> int: ... method __int__ (line 4406) | def __int__(self) -> int: ... method __le__ (line 4407) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4408) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4409) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixm... method __ne__ (line 4410) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4411) | def __or__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixma... method __pos__ (line 4412) | def __pos__(self): ... method __radd__ (line 4413) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pix... method __rand__ (line 4414) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pix... method __rmul__ (line 4415) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pix... method __ror__ (line 4416) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixm... method __rsub__ (line 4417) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pix... method __rxor__ (line 4418) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pix... method __sub__ (line 4419) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixm... method __xor__ (line 4420) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsEffect.Pixm... method __init__ (line 4430) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method boundingRect (line 4431) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method boundingRectFor (line 4432) | def boundingRectFor(self, sourceRect: PySide2.QtCore.QRectF) -> PySide... method draw (line 4433) | def draw(self, painter: PySide2.QtGui.QPainter) -> None: ... method drawSource (line 4434) | def drawSource(self, painter: PySide2.QtGui.QPainter) -> None: ... method isEnabled (line 4435) | def isEnabled(self) -> bool: ... method setEnabled (line 4436) | def setEnabled(self, enable: bool) -> None: ... method sourceBoundingRect (line 4437) | def sourceBoundingRect(self, system: PySide2.QtCore.Qt.CoordinateSyste... method sourceChanged (line 4438) | def sourceChanged(self, flags: QGraphicsEffect.ChangeFlags | QGraphics... method sourceIsPixmap (line 4439) | def sourceIsPixmap(self) -> bool: ... method sourcePixmap (line 4440) | def sourcePixmap(self, system: PySide2.QtCore.Qt.CoordinateSystem = ..... method update (line 4441) | def update(self) -> None: ... method updateBoundingRect (line 4442) | def updateBoundingRect(self) -> None: ... class QGraphicsEllipseItem (line 4444) | class QGraphicsEllipseItem(QAbstractGraphicsShapeItem): method __init__ (line 4446) | def __init__(self, x: float, y: float, w: float, h: float, parent: QGr... method __init__ (line 4448) | def __init__(self, rect: PySide2.QtCore.QRectF, parent: QGraphicsItem ... method __init__ (line 4450) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 4451) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 4452) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 4453) | def extension(self, variant: typing.Any) -> typing.Any: ... method isObscuredBy (line 4454) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 4455) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 4456) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method rect (line 4457) | def rect(self) -> PySide2.QtCore.QRectF: ... method setRect (line 4459) | def setRect(self, x: float, y: float, w: float, h: float) -> None: ... method setRect (line 4461) | def setRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method setSpanAngle (line 4462) | def setSpanAngle(self, angle: int) -> None: ... method setStartAngle (line 4463) | def setStartAngle(self, angle: int) -> None: ... method shape (line 4464) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method spanAngle (line 4465) | def spanAngle(self) -> int: ... method startAngle (line 4466) | def startAngle(self) -> int: ... method type (line 4467) | def type(self) -> int: ... class QGraphicsGridLayout (line 4469) | class QGraphicsGridLayout(QGraphicsLayout): method __init__ (line 4470) | def __init__(self, parent: QGraphicsLayoutItem | None = ...) -> None: ... method addItem (line 4472) | def addItem(self, item: QGraphicsLayoutItem, row: int, column: int, ro... method addItem (line 4474) | def addItem(self, item: QGraphicsLayoutItem, row: int, column: int, al... method alignment (line 4475) | def alignment(self, item: QGraphicsLayoutItem) -> PySide2.QtCore.Qt.Al... method columnAlignment (line 4476) | def columnAlignment(self, column: int) -> PySide2.QtCore.Qt.Alignment ... method columnCount (line 4477) | def columnCount(self) -> int: ... method columnMaximumWidth (line 4478) | def columnMaximumWidth(self, column: int) -> float: ... method columnMinimumWidth (line 4479) | def columnMinimumWidth(self, column: int) -> float: ... method columnPreferredWidth (line 4480) | def columnPreferredWidth(self, column: int) -> float: ... method columnSpacing (line 4481) | def columnSpacing(self, column: int) -> float: ... method columnStretchFactor (line 4482) | def columnStretchFactor(self, column: int) -> int: ... method count (line 4483) | def count(self) -> int: ... method horizontalSpacing (line 4484) | def horizontalSpacing(self) -> float: ... method invalidate (line 4485) | def invalidate(self) -> None: ... method itemAt (line 4487) | def itemAt(self, row: int, column: int) -> QGraphicsLayoutItem: ... method itemAt (line 4489) | def itemAt(self, index: int) -> QGraphicsLayoutItem: ... method removeAt (line 4490) | def removeAt(self, index: int) -> None: ... method removeItem (line 4491) | def removeItem(self, item: QGraphicsLayoutItem) -> None: ... method rowAlignment (line 4492) | def rowAlignment(self, row: int) -> PySide2.QtCore.Qt.Alignment | PySi... method rowCount (line 4493) | def rowCount(self) -> int: ... method rowMaximumHeight (line 4494) | def rowMaximumHeight(self, row: int) -> float: ... method rowMinimumHeight (line 4495) | def rowMinimumHeight(self, row: int) -> float: ... method rowPreferredHeight (line 4496) | def rowPreferredHeight(self, row: int) -> float: ... method rowSpacing (line 4497) | def rowSpacing(self, row: int) -> float: ... method rowStretchFactor (line 4498) | def rowStretchFactor(self, row: int) -> int: ... method setAlignment (line 4499) | def setAlignment(self, item: QGraphicsLayoutItem, alignment: PySide2.Q... method setColumnAlignment (line 4500) | def setColumnAlignment(self, column: int, alignment: PySide2.QtCore.Qt... method setColumnFixedWidth (line 4501) | def setColumnFixedWidth(self, column: int, width: float) -> None: ... method setColumnMaximumWidth (line 4502) | def setColumnMaximumWidth(self, column: int, width: float) -> None: ... method setColumnMinimumWidth (line 4503) | def setColumnMinimumWidth(self, column: int, width: float) -> None: ... method setColumnPreferredWidth (line 4504) | def setColumnPreferredWidth(self, column: int, width: float) -> None: ... method setColumnSpacing (line 4505) | def setColumnSpacing(self, column: int, spacing: float) -> None: ... method setColumnStretchFactor (line 4506) | def setColumnStretchFactor(self, column: int, stretch: int) -> None: ... method setGeometry (line 4507) | def setGeometry(self, rect: PySide2.QtCore.QRectF) -> None: ... method setHorizontalSpacing (line 4508) | def setHorizontalSpacing(self, spacing: float) -> None: ... method setRowAlignment (line 4509) | def setRowAlignment(self, row: int, alignment: PySide2.QtCore.Qt.Align... method setRowFixedHeight (line 4510) | def setRowFixedHeight(self, row: int, height: float) -> None: ... method setRowMaximumHeight (line 4511) | def setRowMaximumHeight(self, row: int, height: float) -> None: ... method setRowMinimumHeight (line 4512) | def setRowMinimumHeight(self, row: int, height: float) -> None: ... method setRowPreferredHeight (line 4513) | def setRowPreferredHeight(self, row: int, height: float) -> None: ... method setRowSpacing (line 4514) | def setRowSpacing(self, row: int, spacing: float) -> None: ... method setRowStretchFactor (line 4515) | def setRowStretchFactor(self, row: int, stretch: int) -> None: ... method setSpacing (line 4516) | def setSpacing(self, spacing: float) -> None: ... method setVerticalSpacing (line 4517) | def setVerticalSpacing(self, spacing: float) -> None: ... method sizeHint (line 4518) | def sizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constraint: PySi... method verticalSpacing (line 4519) | def verticalSpacing(self) -> float: ... class QGraphicsItem (line 4521) | class QGraphicsItem(shiboken2.Object): class CacheMode (line 4522) | class CacheMode: method __init__ (line 4529) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4530) | def __add__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheM... method __and__ (line 4531) | def __and__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheM... method __bool__ (line 4532) | def __bool__(self) -> bool: ... method __eq__ (line 4533) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4534) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4535) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4536) | def __hash__(self) -> int: ... method __index__ (line 4537) | def __index__(self) -> int: ... method __int__ (line 4538) | def __int__(self) -> int: ... method __le__ (line 4539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4540) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4541) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheM... method __ne__ (line 4542) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4543) | def __or__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheMo... method __pos__ (line 4544) | def __pos__(self): ... method __radd__ (line 4545) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsItem.Cache... method __rand__ (line 4546) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsItem.Cache... method __rmul__ (line 4547) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsItem.Cache... method __ror__ (line 4548) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheM... method __rsub__ (line 4549) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsItem.Cache... method __rxor__ (line 4550) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsItem.Cache... method __sub__ (line 4551) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheM... method __xor__ (line 4552) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsItem.CacheM... class Extension (line 4554) | class Extension: method __init__ (line 4559) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4560) | def __add__(self, other: typing.SupportsInt) -> QGraphicsItem.Extens... method __and__ (line 4561) | def __and__(self, other: typing.SupportsInt) -> QGraphicsItem.Extens... method __bool__ (line 4562) | def __bool__(self) -> bool: ... method __eq__ (line 4563) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4564) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4565) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4566) | def __hash__(self) -> int: ... method __index__ (line 4567) | def __index__(self) -> int: ... method __int__ (line 4568) | def __int__(self) -> int: ... method __le__ (line 4569) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4570) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4571) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsItem.Extens... method __ne__ (line 4572) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4573) | def __or__(self, other: typing.SupportsInt) -> QGraphicsItem.Extensi... method __pos__ (line 4574) | def __pos__(self): ... method __radd__ (line 4575) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsItem.Exten... method __rand__ (line 4576) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsItem.Exten... method __rmul__ (line 4577) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsItem.Exten... method __ror__ (line 4578) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsItem.Extens... method __rsub__ (line 4579) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsItem.Exten... method __rxor__ (line 4580) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsItem.Exten... method __sub__ (line 4581) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsItem.Extens... method __xor__ (line 4582) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsItem.Extens... class GraphicsItemChange (line 4584) | class GraphicsItemChange: method __init__ (line 4622) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4623) | def __add__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __and__ (line 4624) | def __and__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __bool__ (line 4625) | def __bool__(self) -> bool: ... method __eq__ (line 4626) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4627) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4628) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4629) | def __hash__(self) -> int: ... method __index__ (line 4630) | def __index__(self) -> int: ... method __int__ (line 4631) | def __int__(self) -> int: ... method __le__ (line 4632) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4633) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4634) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __ne__ (line 4635) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4636) | def __or__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphic... method __pos__ (line 4637) | def __pos__(self): ... method __radd__ (line 4638) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __rand__ (line 4639) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __rmul__ (line 4640) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __ror__ (line 4641) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __rsub__ (line 4642) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __rxor__ (line 4643) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __sub__ (line 4644) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __xor__ (line 4645) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... class GraphicsItemFlag (line 4647) | class GraphicsItemFlag: method __init__ (line 4671) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4672) | def __and__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __bool__ (line 4673) | def __bool__(self) -> bool: ... method __eq__ (line 4674) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4675) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4676) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4677) | def __hash__(self) -> int: ... method __index__ (line 4678) | def __index__(self) -> int: ... method __int__ (line 4679) | def __int__(self) -> int: ... method __invert__ (line 4680) | def __invert__(self) -> QGraphicsItem.GraphicsItemFlags: ... method __le__ (line 4681) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4682) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4683) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4684) | def __or__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphic... method __rand__ (line 4685) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __ror__ (line 4686) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __rxor__ (line 4687) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __xor__ (line 4688) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... class GraphicsItemFlags (line 4690) | class GraphicsItemFlags: method __init__ (line 4692) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 4693) | def __and__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __bool__ (line 4694) | def __bool__(self) -> bool: ... method __eq__ (line 4695) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4696) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4697) | def __gt__(self, other: object) -> bool: ... method __index__ (line 4698) | def __index__(self) -> int: ... method __int__ (line 4699) | def __int__(self) -> int: ... method __invert__ (line 4700) | def __invert__(self) -> QGraphicsItem.GraphicsItemFlags: ... method __le__ (line 4701) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4702) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4703) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4704) | def __or__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphic... method __rand__ (line 4705) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __ror__ (line 4706) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... method __rxor__ (line 4707) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsItem.Graph... method __xor__ (line 4708) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsItem.Graphi... class PanelModality (line 4710) | class PanelModality: method __init__ (line 4717) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 4718) | def __add__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelM... method __and__ (line 4719) | def __and__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelM... method __bool__ (line 4720) | def __bool__(self) -> bool: ... method __eq__ (line 4721) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4722) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4723) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4724) | def __hash__(self) -> int: ... method __index__ (line 4725) | def __index__(self) -> int: ... method __int__ (line 4726) | def __int__(self) -> int: ... method __le__ (line 4727) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4728) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4729) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelM... method __ne__ (line 4730) | def __ne__(self, other: object) -> bool: ... method __or__ (line 4731) | def __or__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelMo... method __pos__ (line 4732) | def __pos__(self): ... method __radd__ (line 4733) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsItem.Panel... method __rand__ (line 4734) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsItem.Panel... method __rmul__ (line 4735) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsItem.Panel... method __ror__ (line 4736) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelM... method __rsub__ (line 4737) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsItem.Panel... method __rxor__ (line 4738) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsItem.Panel... method __sub__ (line 4739) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelM... method __xor__ (line 4740) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsItem.PanelM... method __init__ (line 4803) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method acceptDrops (line 4804) | def acceptDrops(self) -> bool: ... method acceptHoverEvents (line 4805) | def acceptHoverEvents(self) -> bool: ... method acceptTouchEvents (line 4806) | def acceptTouchEvents(self) -> bool: ... method acceptedMouseButtons (line 4807) | def acceptedMouseButtons(self) -> PySide2.QtCore.Qt.MouseButtons | PyS... method addToIndex (line 4808) | def addToIndex(self) -> None: ... method advance (line 4809) | def advance(self, phase: int) -> None: ... method boundingRect (line 4810) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method boundingRegion (line 4811) | def boundingRegion(self, itemToDeviceTransform: PySide2.QtGui.QTransfo... method boundingRegionGranularity (line 4812) | def boundingRegionGranularity(self) -> float: ... method cacheMode (line 4813) | def cacheMode(self) -> QGraphicsItem.CacheMode: ... method childItems (line 4814) | def childItems(self) -> list[QGraphicsItem]: ... method childrenBoundingRect (line 4815) | def childrenBoundingRect(self) -> PySide2.QtCore.QRectF: ... method clearFocus (line 4816) | def clearFocus(self) -> None: ... method clipPath (line 4817) | def clipPath(self) -> PySide2.QtGui.QPainterPath: ... method collidesWithItem (line 4818) | def collidesWithItem(self, other: QGraphicsItem, mode: PySide2.QtCore.... method collidesWithPath (line 4819) | def collidesWithPath(self, path: PySide2.QtGui.QPainterPath, mode: PyS... method collidingItems (line 4820) | def collidingItems(self, mode: PySide2.QtCore.Qt.ItemSelectionMode = .... method commonAncestorItem (line 4821) | def commonAncestorItem(self, other: QGraphicsItem) -> QGraphicsItem: ... method contains (line 4822) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method contextMenuEvent (line 4823) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent) -> N... method cursor (line 4824) | def cursor(self) -> PySide2.QtGui.QCursor: ... method data (line 4825) | def data(self, key: int) -> typing.Any: ... method deviceTransform (line 4826) | def deviceTransform(self, viewportTransform: PySide2.QtGui.QTransform)... method dragEnterEvent (line 4827) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragLeaveEvent (line 4828) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragMoveEvent (line 4829) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dropEvent (line 4830) | def dropEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method effectiveOpacity (line 4831) | def effectiveOpacity(self) -> float: ... method ensureVisible (line 4833) | def ensureVisible(self, x: float, y: float, w: float, h: float, xmargi... method ensureVisible (line 4835) | def ensureVisible(self, rect: PySide2.QtCore.QRectF = ..., xmargin: in... method extension (line 4836) | def extension(self, variant: typing.Any) -> typing.Any: ... method filtersChildEvents (line 4837) | def filtersChildEvents(self) -> bool: ... method flags (line 4838) | def flags(self) -> QGraphicsItem.GraphicsItemFlags | QGraphicsItem.Gra... method focusInEvent (line 4839) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusItem (line 4840) | def focusItem(self) -> QGraphicsItem: ... method focusOutEvent (line 4841) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusProxy (line 4842) | def focusProxy(self) -> QGraphicsItem: ... method focusScopeItem (line 4843) | def focusScopeItem(self) -> QGraphicsItem: ... method grabKeyboard (line 4844) | def grabKeyboard(self) -> None: ... method grabMouse (line 4845) | def grabMouse(self) -> None: ... method graphicsEffect (line 4846) | def graphicsEffect(self) -> QGraphicsEffect: ... method group (line 4847) | def group(self) -> QGraphicsItemGroup: ... method handlesChildEvents (line 4848) | def handlesChildEvents(self) -> bool: ... method hasCursor (line 4849) | def hasCursor(self) -> bool: ... method hasFocus (line 4850) | def hasFocus(self) -> bool: ... method hide (line 4851) | def hide(self) -> None: ... method hoverEnterEvent (line 4852) | def hoverEnterEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverLeaveEvent (line 4853) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverMoveEvent (line 4854) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method inputMethodEvent (line 4855) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodHints (line 4856) | def inputMethodHints(self) -> PySide2.QtCore.Qt.InputMethodHints | PyS... method inputMethodQuery (line 4857) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method installSceneEventFilter (line 4858) | def installSceneEventFilter(self, filterItem: QGraphicsItem) -> None: ... method isActive (line 4859) | def isActive(self) -> bool: ... method isAncestorOf (line 4860) | def isAncestorOf(self, child: QGraphicsItem) -> bool: ... method isBlockedByModalPanel (line 4861) | def isBlockedByModalPanel(self, blockingPanel: QGraphicsItem | None = ... method isClipped (line 4862) | def isClipped(self) -> bool: ... method isEnabled (line 4863) | def isEnabled(self) -> bool: ... method isObscured (line 4865) | def isObscured(self, x: float, y: float, w: float, h: float) -> bool: ... method isObscured (line 4867) | def isObscured(self, rect: PySide2.QtCore.QRectF = ...) -> bool: ... method isObscuredBy (line 4868) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method isPanel (line 4869) | def isPanel(self) -> bool: ... method isSelected (line 4870) | def isSelected(self) -> bool: ... method isUnderMouse (line 4871) | def isUnderMouse(self) -> bool: ... method isVisible (line 4872) | def isVisible(self) -> bool: ... method isVisibleTo (line 4873) | def isVisibleTo(self, parent: QGraphicsItem) -> bool: ... method isWidget (line 4874) | def isWidget(self) -> bool: ... method isWindow (line 4875) | def isWindow(self) -> bool: ... method itemChange (line 4876) | def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: ... method itemTransform (line 4877) | def itemTransform(self, other: QGraphicsItem) -> tuple[PySide2.QtGui.Q... method keyPressEvent (line 4878) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 4879) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method mapFromItem (line 4881) | def mapFromItem(self, item: QGraphicsItem, x: float, y: float, w: floa... method mapFromItem (line 4883) | def mapFromItem(self, item: QGraphicsItem, x: float, y: float) -> PySi... method mapFromItem (line 4885) | def mapFromItem(self, item: QGraphicsItem, rect: PySide2.QtCore.QRectF... method mapFromItem (line 4887) | def mapFromItem(self, item: QGraphicsItem, polygon: PySide2.QtGui.QPol... method mapFromItem (line 4889) | def mapFromItem(self, item: QGraphicsItem, point: PySide2.QtCore.QPoin... method mapFromItem (line 4891) | def mapFromItem(self, item: QGraphicsItem, path: PySide2.QtGui.QPainte... method mapFromParent (line 4893) | def mapFromParent(self, x: float, y: float, w: float, h: float) -> PyS... method mapFromParent (line 4895) | def mapFromParent(self, x: float, y: float) -> PySide2.QtCore.QPointF:... method mapFromParent (line 4897) | def mapFromParent(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtGui.... method mapFromParent (line 4899) | def mapFromParent(self, polygon: PySide2.QtGui.QPolygonF) -> PySide2.Q... method mapFromParent (line 4901) | def mapFromParent(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCo... method mapFromParent (line 4903) | def mapFromParent(self, path: PySide2.QtGui.QPainterPath) -> PySide2.Q... method mapFromScene (line 4905) | def mapFromScene(self, x: float, y: float, w: float, h: float) -> PySi... method mapFromScene (line 4907) | def mapFromScene(self, x: float, y: float) -> PySide2.QtCore.QPointF: ... method mapFromScene (line 4909) | def mapFromScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtGui.Q... method mapFromScene (line 4911) | def mapFromScene(self, polygon: PySide2.QtGui.QPolygonF) -> PySide2.Qt... method mapFromScene (line 4913) | def mapFromScene(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCor... method mapFromScene (line 4915) | def mapFromScene(self, path: PySide2.QtGui.QPainterPath) -> PySide2.Qt... method mapRectFromItem (line 4917) | def mapRectFromItem(self, item: QGraphicsItem, x: float, y: float, w: ... method mapRectFromItem (line 4919) | def mapRectFromItem(self, item: QGraphicsItem, rect: PySide2.QtCore.QR... method mapRectFromParent (line 4921) | def mapRectFromParent(self, x: float, y: float, w: float, h: float) ->... method mapRectFromParent (line 4923) | def mapRectFromParent(self, rect: PySide2.QtCore.QRectF) -> PySide2.Qt... method mapRectFromScene (line 4925) | def mapRectFromScene(self, x: float, y: float, w: float, h: float) -> ... method mapRectFromScene (line 4927) | def mapRectFromScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtC... method mapRectToItem (line 4929) | def mapRectToItem(self, item: QGraphicsItem, x: float, y: float, w: fl... method mapRectToItem (line 4931) | def mapRectToItem(self, item: QGraphicsItem, rect: PySide2.QtCore.QRec... method mapRectToParent (line 4933) | def mapRectToParent(self, x: float, y: float, w: float, h: float) -> P... method mapRectToParent (line 4935) | def mapRectToParent(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtCo... method mapRectToScene (line 4937) | def mapRectToScene(self, x: float, y: float, w: float, h: float) -> Py... method mapRectToScene (line 4939) | def mapRectToScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtCor... method mapToItem (line 4941) | def mapToItem(self, item: QGraphicsItem, x: float, y: float, w: float,... method mapToItem (line 4943) | def mapToItem(self, item: QGraphicsItem, x: float, y: float) -> PySide... method mapToItem (line 4945) | def mapToItem(self, item: QGraphicsItem, rect: PySide2.QtCore.QRectF) ... method mapToItem (line 4947) | def mapToItem(self, item: QGraphicsItem, polygon: PySide2.QtGui.QPolyg... method mapToItem (line 4949) | def mapToItem(self, item: QGraphicsItem, point: PySide2.QtCore.QPointF... method mapToItem (line 4951) | def mapToItem(self, item: QGraphicsItem, path: PySide2.QtGui.QPainterP... method mapToParent (line 4953) | def mapToParent(self, x: float, y: float, w: float, h: float) -> PySid... method mapToParent (line 4955) | def mapToParent(self, x: float, y: float) -> PySide2.QtCore.QPointF: ... method mapToParent (line 4957) | def mapToParent(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtGui.QP... method mapToParent (line 4959) | def mapToParent(self, polygon: PySide2.QtGui.QPolygonF) -> PySide2.QtG... method mapToParent (line 4961) | def mapToParent(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCore... method mapToParent (line 4963) | def mapToParent(self, path: PySide2.QtGui.QPainterPath) -> PySide2.QtG... method mapToScene (line 4965) | def mapToScene(self, x: float, y: float, w: float, h: float) -> PySide... method mapToScene (line 4967) | def mapToScene(self, x: float, y: float) -> PySide2.QtCore.QPointF: ... method mapToScene (line 4969) | def mapToScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtGui.QPo... method mapToScene (line 4971) | def mapToScene(self, polygon: PySide2.QtGui.QPolygonF) -> PySide2.QtGu... method mapToScene (line 4973) | def mapToScene(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCore.... method mapToScene (line 4975) | def mapToScene(self, path: PySide2.QtGui.QPainterPath) -> PySide2.QtGu... method matrix (line 4976) | def matrix(self) -> PySide2.QtGui.QMatrix: ... method mouseDoubleClickEvent (line 4977) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent) -> No... method mouseMoveEvent (line 4978) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mousePressEvent (line 4979) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mouseReleaseEvent (line 4980) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method moveBy (line 4981) | def moveBy(self, dx: float, dy: float) -> None: ... method opacity (line 4982) | def opacity(self) -> float: ... method opaqueArea (line 4983) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 4984) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method panel (line 4985) | def panel(self) -> QGraphicsItem: ... method panelModality (line 4986) | def panelModality(self) -> QGraphicsItem.PanelModality: ... method parentItem (line 4987) | def parentItem(self) -> QGraphicsItem: ... method parentObject (line 4988) | def parentObject(self) -> QGraphicsObject: ... method parentWidget (line 4989) | def parentWidget(self) -> QGraphicsWidget: ... method pos (line 4990) | def pos(self) -> PySide2.QtCore.QPointF: ... method prepareGeometryChange (line 4991) | def prepareGeometryChange(self) -> None: ... method removeFromIndex (line 4992) | def removeFromIndex(self) -> None: ... method removeSceneEventFilter (line 4993) | def removeSceneEventFilter(self, filterItem: QGraphicsItem) -> None: ... method resetMatrix (line 4994) | def resetMatrix(self) -> None: ... method resetTransform (line 4995) | def resetTransform(self) -> None: ... method rotation (line 4996) | def rotation(self) -> float: ... method scale (line 4997) | def scale(self) -> float: ... method scene (line 4998) | def scene(self) -> QGraphicsScene: ... method sceneBoundingRect (line 4999) | def sceneBoundingRect(self) -> PySide2.QtCore.QRectF: ... method sceneEvent (line 5000) | def sceneEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... method sceneEventFilter (line 5001) | def sceneEventFilter(self, watched: QGraphicsItem, event: PySide2.QtCo... method sceneMatrix (line 5002) | def sceneMatrix(self) -> PySide2.QtGui.QMatrix: ... method scenePos (line 5003) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method sceneTransform (line 5004) | def sceneTransform(self) -> PySide2.QtGui.QTransform: ... method scroll (line 5005) | def scroll(self, dx: float, dy: float, rect: PySide2.QtCore.QRectF = .... method setAcceptDrops (line 5006) | def setAcceptDrops(self, on: bool) -> None: ... method setAcceptHoverEvents (line 5007) | def setAcceptHoverEvents(self, enabled: bool) -> None: ... method setAcceptTouchEvents (line 5008) | def setAcceptTouchEvents(self, enabled: bool) -> None: ... method setAcceptedMouseButtons (line 5009) | def setAcceptedMouseButtons(self, buttons: PySide2.QtCore.Qt.MouseButt... method setActive (line 5010) | def setActive(self, active: bool) -> None: ... method setBoundingRegionGranularity (line 5011) | def setBoundingRegionGranularity(self, granularity: float) -> None: ... method setCacheMode (line 5012) | def setCacheMode(self, mode: QGraphicsItem.CacheMode, cacheSize: PySid... method setCursor (line 5013) | def setCursor(self, cursor: PySide2.QtGui.QCursor | PySide2.QtCore.Qt.... method setData (line 5014) | def setData(self, key: int, value: typing.Any) -> None: ... method setEnabled (line 5015) | def setEnabled(self, enabled: bool) -> None: ... method setFiltersChildEvents (line 5016) | def setFiltersChildEvents(self, enabled: bool) -> None: ... method setFlag (line 5017) | def setFlag(self, flag: QGraphicsItem.GraphicsItemFlag, enabled: bool ... method setFlags (line 5018) | def setFlags(self, flags: QGraphicsItem.GraphicsItemFlags | QGraphicsI... method setFocus (line 5019) | def setFocus(self, focusReason: PySide2.QtCore.Qt.FocusReason = ...) -... method setFocusProxy (line 5020) | def setFocusProxy(self, item: QGraphicsItem) -> None: ... method setGraphicsEffect (line 5021) | def setGraphicsEffect(self, effect: QGraphicsEffect) -> None: ... method setGroup (line 5022) | def setGroup(self, group: QGraphicsItemGroup) -> None: ... method setHandlesChildEvents (line 5023) | def setHandlesChildEvents(self, enabled: bool) -> None: ... method setInputMethodHints (line 5024) | def setInputMethodHints(self, hints: PySide2.QtCore.Qt.InputMethodHint... method setMatrix (line 5025) | def setMatrix(self, matrix: PySide2.QtGui.QMatrix, combine: bool = ...... method setOpacity (line 5026) | def setOpacity(self, opacity: float) -> None: ... method setPanelModality (line 5027) | def setPanelModality(self, panelModality: QGraphicsItem.PanelModality)... method setParentItem (line 5028) | def setParentItem(self, parent: QGraphicsItem) -> None: ... method setPos (line 5030) | def setPos(self, x: float, y: float) -> None: ... method setPos (line 5032) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setRotation (line 5033) | def setRotation(self, angle: float) -> None: ... method setScale (line 5034) | def setScale(self, scale: float) -> None: ... method setSelected (line 5035) | def setSelected(self, selected: bool) -> None: ... method setToolTip (line 5036) | def setToolTip(self, toolTip: str) -> None: ... method setTransform (line 5037) | def setTransform(self, matrix: PySide2.QtGui.QTransform, combine: bool... method setTransformOriginPoint (line 5039) | def setTransformOriginPoint(self, ax: float, ay: float) -> None: ... method setTransformOriginPoint (line 5041) | def setTransformOriginPoint(self, origin: PySide2.QtCore.QPointF) -> N... method setTransformations (line 5042) | def setTransformations(self, transformations: typing.Iterable[QGraphic... method setVisible (line 5043) | def setVisible(self, visible: bool) -> None: ... method setX (line 5044) | def setX(self, x: float) -> None: ... method setY (line 5045) | def setY(self, y: float) -> None: ... method setZValue (line 5046) | def setZValue(self, z: float) -> None: ... method shape (line 5047) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method show (line 5048) | def show(self) -> None: ... method stackBefore (line 5049) | def stackBefore(self, sibling: QGraphicsItem) -> None: ... method toGraphicsObject (line 5050) | def toGraphicsObject(self) -> QGraphicsObject: ... method toolTip (line 5051) | def toolTip(self) -> str: ... method topLevelItem (line 5052) | def topLevelItem(self) -> QGraphicsItem: ... method topLevelWidget (line 5053) | def topLevelWidget(self) -> QGraphicsWidget: ... method transform (line 5054) | def transform(self) -> PySide2.QtGui.QTransform: ... method transformOriginPoint (line 5055) | def transformOriginPoint(self) -> PySide2.QtCore.QPointF: ... method transformations (line 5056) | def transformations(self) -> list[QGraphicsTransform]: ... method type (line 5057) | def type(self) -> int: ... method ungrabKeyboard (line 5058) | def ungrabKeyboard(self) -> None: ... method ungrabMouse (line 5059) | def ungrabMouse(self) -> None: ... method unsetCursor (line 5060) | def unsetCursor(self) -> None: ... method update (line 5062) | def update(self, x: float, y: float, width: float, height: float) -> N... method update (line 5064) | def update(self, rect: PySide2.QtCore.QRectF = ...) -> None: ... method updateMicroFocus (line 5065) | def updateMicroFocus(self) -> None: ... method wheelEvent (line 5066) | def wheelEvent(self, event: QGraphicsSceneWheelEvent) -> None: ... method window (line 5067) | def window(self) -> QGraphicsWidget: ... method x (line 5068) | def x(self) -> float: ... method y (line 5069) | def y(self) -> float: ... method zValue (line 5070) | def zValue(self) -> float: ... class QGraphicsItemAnimation (line 5072) | class QGraphicsItemAnimation(PySide2.QtCore.QObject): method __init__ (line 5074) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method afterAnimationStep (line 5075) | def afterAnimationStep(self, step: float) -> None: ... method beforeAnimationStep (line 5076) | def beforeAnimationStep(self, step: float) -> None: ... method clear (line 5077) | def clear(self) -> None: ... method horizontalScaleAt (line 5078) | def horizontalScaleAt(self, step: float) -> float: ... method horizontalShearAt (line 5079) | def horizontalShearAt(self, step: float) -> float: ... method item (line 5080) | def item(self) -> QGraphicsItem: ... method matrixAt (line 5081) | def matrixAt(self, step: float) -> PySide2.QtGui.QMatrix: ... method posAt (line 5082) | def posAt(self, step: float) -> PySide2.QtCore.QPointF: ... method posList (line 5083) | def posList(self) -> list[tuple[float, PySide2.QtCore.QPointF]]: ... method reset (line 5084) | def reset(self) -> None: ... method rotationAt (line 5085) | def rotationAt(self, step: float) -> float: ... method rotationList (line 5086) | def rotationList(self) -> list[tuple[float, float]]: ... method scaleList (line 5087) | def scaleList(self) -> list[tuple[float, PySide2.QtCore.QPointF]]: ... method setItem (line 5088) | def setItem(self, item: QGraphicsItem) -> None: ... method setPosAt (line 5089) | def setPosAt(self, step: float, pos: PySide2.QtCore.QPointF) -> None: ... method setRotationAt (line 5090) | def setRotationAt(self, step: float, angle: float) -> None: ... method setScaleAt (line 5091) | def setScaleAt(self, step: float, sx: float, sy: float) -> None: ... method setShearAt (line 5092) | def setShearAt(self, step: float, sh: float, sv: float) -> None: ... method setStep (line 5093) | def setStep(self, x: float) -> None: ... method setTimeLine (line 5094) | def setTimeLine(self, timeLine: PySide2.QtCore.QTimeLine) -> None: ... method setTranslationAt (line 5095) | def setTranslationAt(self, step: float, dx: float, dy: float) -> None:... method shearList (line 5096) | def shearList(self) -> list[tuple[float, PySide2.QtCore.QPointF]]: ... method timeLine (line 5097) | def timeLine(self) -> PySide2.QtCore.QTimeLine: ... method transformAt (line 5098) | def transformAt(self, step: float) -> PySide2.QtGui.QTransform: ... method translationList (line 5099) | def translationList(self) -> list[tuple[float, PySide2.QtCore.QPointF]... method verticalScaleAt (line 5100) | def verticalScaleAt(self, step: float) -> float: ... method verticalShearAt (line 5101) | def verticalShearAt(self, step: float) -> float: ... method xTranslationAt (line 5102) | def xTranslationAt(self, step: float) -> float: ... method yTranslationAt (line 5103) | def yTranslationAt(self, step: float) -> float: ... class QGraphicsItemGroup (line 5105) | class QGraphicsItemGroup(QGraphicsItem): method __init__ (line 5106) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method addToGroup (line 5107) | def addToGroup(self, item: QGraphicsItem) -> None: ... method boundingRect (line 5108) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method isObscuredBy (line 5109) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 5110) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5111) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method removeFromGroup (line 5112) | def removeFromGroup(self, item: QGraphicsItem) -> None: ... method type (line 5113) | def type(self) -> int: ... class QGraphicsLayout (line 5115) | class QGraphicsLayout(QGraphicsLayoutItem): method __init__ (line 5116) | def __init__(self, parent: QGraphicsLayoutItem | None = ...) -> None: ... method activate (line 5117) | def activate(self) -> None: ... method addChildLayoutItem (line 5118) | def addChildLayoutItem(self, layoutItem: QGraphicsLayoutItem) -> None:... method count (line 5119) | def count(self) -> int: ... method getContentsMargins (line 5120) | def getContentsMargins(self) -> tuple[float, float, float, float]: ... method instantInvalidatePropagation (line 5122) | def instantInvalidatePropagation() -> bool: ... method invalidate (line 5123) | def invalidate(self) -> None: ... method isActivated (line 5124) | def isActivated(self) -> bool: ... method itemAt (line 5125) | def itemAt(self, i: int) -> QGraphicsLayoutItem: ... method removeAt (line 5126) | def removeAt(self, index: int) -> None: ... method setContentsMargins (line 5127) | def setContentsMargins(self, left: float, top: float, right: float, bo... method setInstantInvalidatePropagation (line 5129) | def setInstantInvalidatePropagation(enable: bool) -> None: ... method updateGeometry (line 5130) | def updateGeometry(self) -> None: ... method widgetEvent (line 5131) | def widgetEvent(self, e: PySide2.QtCore.QEvent) -> None: ... class QGraphicsLayoutItem (line 5133) | class QGraphicsLayoutItem(shiboken2.Object): method __init__ (line 5134) | def __init__(self, parent: QGraphicsLayoutItem | None = ..., isLayout:... method contentsRect (line 5135) | def contentsRect(self) -> PySide2.QtCore.QRectF: ... method effectiveSizeHint (line 5136) | def effectiveSizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constra... method geometry (line 5137) | def geometry(self) -> PySide2.QtCore.QRectF: ... method getContentsMargins (line 5138) | def getContentsMargins(self) -> tuple[float, float, float, float]: ... method graphicsItem (line 5139) | def graphicsItem(self) -> QGraphicsItem: ... method isLayout (line 5140) | def isLayout(self) -> bool: ... method maximumHeight (line 5141) | def maximumHeight(self) -> float: ... method maximumSize (line 5142) | def maximumSize(self) -> PySide2.QtCore.QSizeF: ... method maximumWidth (line 5143) | def maximumWidth(self) -> float: ... method minimumHeight (line 5144) | def minimumHeight(self) -> float: ... method minimumSize (line 5145) | def minimumSize(self) -> PySide2.QtCore.QSizeF: ... method minimumWidth (line 5146) | def minimumWidth(self) -> float: ... method ownedByLayout (line 5147) | def ownedByLayout(self) -> bool: ... method parentLayoutItem (line 5148) | def parentLayoutItem(self) -> QGraphicsLayoutItem: ... method preferredHeight (line 5149) | def preferredHeight(self) -> float: ... method preferredSize (line 5150) | def preferredSize(self) -> PySide2.QtCore.QSizeF: ... method preferredWidth (line 5151) | def preferredWidth(self) -> float: ... method setGeometry (line 5152) | def setGeometry(self, rect: PySide2.QtCore.QRectF) -> None: ... method setGraphicsItem (line 5153) | def setGraphicsItem(self, item: QGraphicsItem) -> None: ... method setMaximumHeight (line 5154) | def setMaximumHeight(self, height: float) -> None: ... method setMaximumSize (line 5156) | def setMaximumSize(self, w: float, h: float) -> None: ... method setMaximumSize (line 5158) | def setMaximumSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method setMaximumWidth (line 5159) | def setMaximumWidth(self, width: float) -> None: ... method setMinimumHeight (line 5160) | def setMinimumHeight(self, height: float) -> None: ... method setMinimumSize (line 5162) | def setMinimumSize(self, w: float, h: float) -> None: ... method setMinimumSize (line 5164) | def setMinimumSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method setMinimumWidth (line 5165) | def setMinimumWidth(self, width: float) -> None: ... method setOwnedByLayout (line 5166) | def setOwnedByLayout(self, ownedByLayout: bool) -> None: ... method setParentLayoutItem (line 5167) | def setParentLayoutItem(self, parent: QGraphicsLayoutItem) -> None: ... method setPreferredHeight (line 5168) | def setPreferredHeight(self, height: float) -> None: ... method setPreferredSize (line 5170) | def setPreferredSize(self, w: float, h: float) -> None: ... method setPreferredSize (line 5172) | def setPreferredSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method setPreferredWidth (line 5173) | def setPreferredWidth(self, width: float) -> None: ... method setSizePolicy (line 5175) | def setSizePolicy(self, hPolicy: QSizePolicy.Policy, vPolicy: QSizePol... method setSizePolicy (line 5177) | def setSizePolicy(self, policy: QSizePolicy) -> None: ... method sizeHint (line 5178) | def sizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constraint: PySi... method sizePolicy (line 5179) | def sizePolicy(self) -> QSizePolicy: ... method updateGeometry (line 5180) | def updateGeometry(self) -> None: ... class QGraphicsLineItem (line 5182) | class QGraphicsLineItem(QGraphicsItem): method __init__ (line 5184) | def __init__(self, x1: float, y1: float, x2: float, y2: float, parent:... method __init__ (line 5186) | def __init__(self, line: PySide2.QtCore.QLineF, parent: QGraphicsItem ... method __init__ (line 5188) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 5189) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5190) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 5191) | def extension(self, variant: typing.Any) -> typing.Any: ... method isObscuredBy (line 5192) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method line (line 5193) | def line(self) -> PySide2.QtCore.QLineF: ... method opaqueArea (line 5194) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5195) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method pen (line 5196) | def pen(self) -> PySide2.QtGui.QPen: ... method setLine (line 5198) | def setLine(self, x1: float, y1: float, x2: float, y2: float) -> None:... method setLine (line 5200) | def setLine(self, line: PySide2.QtCore.QLineF) -> None: ... method setPen (line 5201) | def setPen(self, pen: PySide2.QtGui.QPen) -> None: ... method shape (line 5202) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method type (line 5203) | def type(self) -> int: ... class QGraphicsLinearLayout (line 5205) | class QGraphicsLinearLayout(QGraphicsLayout): method __init__ (line 5207) | def __init__(self, orientation: PySide2.QtCore.Qt.Orientation, parent:... method __init__ (line 5209) | def __init__(self, parent: QGraphicsLayoutItem | None = ...) -> None: ... method addItem (line 5210) | def addItem(self, item: QGraphicsLayoutItem) -> None: ... method addStretch (line 5211) | def addStretch(self, stretch: int = ...) -> None: ... method alignment (line 5212) | def alignment(self, item: QGraphicsLayoutItem) -> PySide2.QtCore.Qt.Al... method count (line 5213) | def count(self) -> int: ... method dump (line 5214) | def dump(self, indent: int = ...) -> None: ... method insertItem (line 5215) | def insertItem(self, index: int, item: QGraphicsLayoutItem) -> None: ... method insertStretch (line 5216) | def insertStretch(self, index: int, stretch: int = ...) -> None: ... method invalidate (line 5217) | def invalidate(self) -> None: ... method itemAt (line 5218) | def itemAt(self, index: int) -> QGraphicsLayoutItem: ... method itemSpacing (line 5219) | def itemSpacing(self, index: int) -> float: ... method orientation (line 5220) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method removeAt (line 5221) | def removeAt(self, index: int) -> None: ... method removeItem (line 5222) | def removeItem(self, item: QGraphicsLayoutItem) -> None: ... method setAlignment (line 5223) | def setAlignment(self, item: QGraphicsLayoutItem, alignment: PySide2.Q... method setGeometry (line 5224) | def setGeometry(self, rect: PySide2.QtCore.QRectF) -> None: ... method setItemSpacing (line 5225) | def setItemSpacing(self, index: int, spacing: float) -> None: ... method setOrientation (line 5226) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation) -... method setSpacing (line 5227) | def setSpacing(self, spacing: float) -> None: ... method setStretchFactor (line 5228) | def setStretchFactor(self, item: QGraphicsLayoutItem, stretch: int) ->... method sizeHint (line 5229) | def sizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constraint: PySi... method spacing (line 5230) | def spacing(self) -> float: ... method stretchFactor (line 5231) | def stretchFactor(self, item: QGraphicsLayoutItem) -> int: ... class QGraphicsObject (line 5233) | class QGraphicsObject(QGraphicsItem, PySide2.QtCore.QObject): method __init__ (line 5247) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method event (line 5248) | def event(self, ev: PySide2.QtCore.QEvent) -> bool: ... method grabGesture (line 5249) | def grabGesture(self, type: PySide2.QtCore.Qt.GestureType, flags: PySi... method ungrabGesture (line 5250) | def ungrabGesture(self, type: PySide2.QtCore.Qt.GestureType) -> None: ... method updateMicroFocus (line 5251) | def updateMicroFocus(self) -> None: ... class QGraphicsOpacityEffect (line 5253) | class QGraphicsOpacityEffect(QGraphicsEffect): method __init__ (line 5257) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method draw (line 5258) | def draw(self, painter: PySide2.QtGui.QPainter) -> None: ... method opacity (line 5259) | def opacity(self) -> float: ... method opacityMask (line 5260) | def opacityMask(self) -> PySide2.QtGui.QBrush: ... method setOpacity (line 5261) | def setOpacity(self, opacity: float) -> None: ... method setOpacityMask (line 5262) | def setOpacityMask(self, mask: PySide2.QtGui.QBrush | PySide2.QtGui.QC... class QGraphicsPathItem (line 5264) | class QGraphicsPathItem(QAbstractGraphicsShapeItem): method __init__ (line 5266) | def __init__(self, path: PySide2.QtGui.QPainterPath, parent: QGraphics... method __init__ (line 5268) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 5269) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5270) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 5271) | def extension(self, variant: typing.Any) -> typing.Any: ... method isObscuredBy (line 5272) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 5273) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5274) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method path (line 5275) | def path(self) -> PySide2.QtGui.QPainterPath: ... method setPath (line 5276) | def setPath(self, path: PySide2.QtGui.QPainterPath) -> None: ... method shape (line 5277) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method type (line 5278) | def type(self) -> int: ... class QGraphicsPixmapItem (line 5280) | class QGraphicsPixmapItem(QGraphicsItem): class ShapeMode (line 5281) | class ShapeMode: method __init__ (line 5288) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5289) | def __add__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.... method __and__ (line 5290) | def __and__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.... method __bool__ (line 5291) | def __bool__(self) -> bool: ... method __eq__ (line 5292) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5293) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5294) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5295) | def __hash__(self) -> int: ... method __index__ (line 5296) | def __index__(self) -> int: ... method __int__ (line 5297) | def __int__(self) -> int: ... method __le__ (line 5298) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5299) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5300) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.... method __ne__ (line 5301) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5302) | def __or__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.S... method __pos__ (line 5303) | def __pos__(self): ... method __radd__ (line 5304) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem... method __rand__ (line 5305) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem... method __rmul__ (line 5306) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem... method __ror__ (line 5307) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.... method __rsub__ (line 5308) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem... method __rxor__ (line 5309) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem... method __sub__ (line 5310) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.... method __xor__ (line 5311) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsPixmapItem.... method __init__ (line 5316) | def __init__(self, pixmap: PySide2.QtGui.QPixmap, parent: QGraphicsIte... method __init__ (line 5318) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 5319) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5320) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 5321) | def extension(self, variant: typing.Any) -> typing.Any: ... method isObscuredBy (line 5322) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method offset (line 5323) | def offset(self) -> PySide2.QtCore.QPointF: ... method opaqueArea (line 5324) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5325) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method pixmap (line 5326) | def pixmap(self) -> PySide2.QtGui.QPixmap: ... method setOffset (line 5328) | def setOffset(self, x: float, y: float) -> None: ... method setOffset (line 5330) | def setOffset(self, offset: PySide2.QtCore.QPointF) -> None: ... method setPixmap (line 5331) | def setPixmap(self, pixmap: PySide2.QtGui.QPixmap) -> None: ... method setShapeMode (line 5332) | def setShapeMode(self, mode: QGraphicsPixmapItem.ShapeMode) -> None: ... method setTransformationMode (line 5333) | def setTransformationMode(self, mode: PySide2.QtCore.Qt.Transformation... method shape (line 5334) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method shapeMode (line 5335) | def shapeMode(self) -> QGraphicsPixmapItem.ShapeMode: ... method transformationMode (line 5336) | def transformationMode(self) -> PySide2.QtCore.Qt.TransformationMode: ... method type (line 5337) | def type(self) -> int: ... class QGraphicsPolygonItem (line 5339) | class QGraphicsPolygonItem(QAbstractGraphicsShapeItem): method __init__ (line 5341) | def __init__(self, polygon: PySide2.QtGui.QPolygonF, parent: QGraphics... method __init__ (line 5343) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 5344) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5345) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 5346) | def extension(self, variant: typing.Any) -> typing.Any: ... method fillRule (line 5347) | def fillRule(self) -> PySide2.QtCore.Qt.FillRule: ... method isObscuredBy (line 5348) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 5349) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5350) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method polygon (line 5351) | def polygon(self) -> PySide2.QtGui.QPolygonF: ... method setFillRule (line 5352) | def setFillRule(self, rule: PySide2.QtCore.Qt.FillRule) -> None: ... method setPolygon (line 5353) | def setPolygon(self, polygon: PySide2.QtGui.QPolygonF) -> None: ... method shape (line 5354) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method type (line 5355) | def type(self) -> int: ... class QGraphicsProxyWidget (line 5357) | class QGraphicsProxyWidget(QGraphicsWidget): method __init__ (line 5359) | def __init__(self, parent: QGraphicsItem | None = ..., wFlags: PySide2... method contextMenuEvent (line 5360) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent) -> N... method createProxyForChildWidget (line 5361) | def createProxyForChildWidget(self, child: QWidget) -> QGraphicsProxyW... method dragEnterEvent (line 5362) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragLeaveEvent (line 5363) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragMoveEvent (line 5364) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dropEvent (line 5365) | def dropEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method event (line 5366) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 5367) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method focusInEvent (line 5368) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 5369) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 5370) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method grabMouseEvent (line 5371) | def grabMouseEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method hideEvent (line 5372) | def hideEvent(self, event: PySide2.QtGui.QHideEvent) -> None: ... method hoverEnterEvent (line 5373) | def hoverEnterEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverLeaveEvent (line 5374) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverMoveEvent (line 5375) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method inputMethodEvent (line 5376) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodQuery (line 5377) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method itemChange (line 5378) | def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: ... method keyPressEvent (line 5379) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 5380) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method mouseDoubleClickEvent (line 5381) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent) -> No... method mouseMoveEvent (line 5382) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mousePressEvent (line 5383) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mouseReleaseEvent (line 5384) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method newProxyWidget (line 5385) | def newProxyWidget(self, arg__1: QWidget) -> QGraphicsProxyWidget: ... method paint (line 5386) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method resizeEvent (line 5387) | def resizeEvent(self, event: QGraphicsSceneResizeEvent) -> None: ... method setGeometry (line 5388) | def setGeometry(self, rect: PySide2.QtCore.QRectF) -> None: ... # typ... method setWidget (line 5389) | def setWidget(self, widget: QWidget) -> None: ... method showEvent (line 5390) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 5391) | def sizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constraint: PySi... method subWidgetRect (line 5392) | def subWidgetRect(self, widget: QWidget) -> PySide2.QtCore.QRectF: ... method type (line 5393) | def type(self) -> int: ... method ungrabMouseEvent (line 5394) | def ungrabMouseEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method wheelEvent (line 5395) | def wheelEvent(self, event: QGraphicsSceneWheelEvent) -> None: ... method widget (line 5396) | def widget(self) -> QWidget: ... class QGraphicsRectItem (line 5398) | class QGraphicsRectItem(QAbstractGraphicsShapeItem): method __init__ (line 5400) | def __init__(self, x: float, y: float, w: float, h: float, parent: QGr... method __init__ (line 5402) | def __init__(self, rect: PySide2.QtCore.QRectF, parent: QGraphicsItem ... method __init__ (line 5404) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 5405) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5406) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 5407) | def extension(self, variant: typing.Any) -> typing.Any: ... method isObscuredBy (line 5408) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 5409) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5410) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method rect (line 5411) | def rect(self) -> PySide2.QtCore.QRectF: ... method setRect (line 5413) | def setRect(self, x: float, y: float, w: float, h: float) -> None: ... method setRect (line 5415) | def setRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method shape (line 5416) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method type (line 5417) | def type(self) -> int: ... class QGraphicsRotation (line 5419) | class QGraphicsRotation(QGraphicsTransform): method __init__ (line 5424) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., angle:... method angle (line 5425) | def angle(self) -> float: ... method applyTo (line 5426) | def applyTo(self, matrix: PySide2.QtGui.QMatrix4x4) -> None: ... method axis (line 5427) | def axis(self) -> PySide2.QtGui.QVector3D: ... method origin (line 5428) | def origin(self) -> PySide2.QtGui.QVector3D: ... method setAngle (line 5429) | def setAngle(self, arg__1: float) -> None: ... method setAxis (line 5431) | def setAxis(self, axis: PySide2.QtCore.Qt.Axis) -> None: ... method setAxis (line 5433) | def setAxis(self, axis: PySide2.QtGui.QVector3D) -> None: ... method setOrigin (line 5434) | def setOrigin(self, point: PySide2.QtGui.QVector3D) -> None: ... class QGraphicsScale (line 5436) | class QGraphicsScale(QGraphicsTransform): method __init__ (line 5443) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method applyTo (line 5444) | def applyTo(self, matrix: PySide2.QtGui.QMatrix4x4) -> None: ... method origin (line 5445) | def origin(self) -> PySide2.QtGui.QVector3D: ... method setOrigin (line 5446) | def setOrigin(self, point: PySide2.QtGui.QVector3D) -> None: ... method setXScale (line 5447) | def setXScale(self, arg__1: float) -> None: ... method setYScale (line 5448) | def setYScale(self, arg__1: float) -> None: ... method setZScale (line 5449) | def setZScale(self, arg__1: float) -> None: ... method xScale (line 5450) | def xScale(self) -> float: ... method yScale (line 5451) | def yScale(self) -> float: ... method zScale (line 5452) | def zScale(self) -> float: ... class QGraphicsScene (line 5454) | class QGraphicsScene(PySide2.QtCore.QObject): class ItemIndexMethod (line 5455) | class ItemIndexMethod: method __init__ (line 5461) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5462) | def __add__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemI... method __and__ (line 5463) | def __and__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemI... method __bool__ (line 5464) | def __bool__(self) -> bool: ... method __eq__ (line 5465) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5466) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5467) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5468) | def __hash__(self) -> int: ... method __index__ (line 5469) | def __index__(self) -> int: ... method __int__ (line 5470) | def __int__(self) -> int: ... method __le__ (line 5471) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5472) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5473) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemI... method __ne__ (line 5474) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5475) | def __or__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemIn... method __pos__ (line 5476) | def __pos__(self): ... method __radd__ (line 5477) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsScene.Item... method __rand__ (line 5478) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsScene.Item... method __rmul__ (line 5479) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsScene.Item... method __ror__ (line 5480) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemI... method __rsub__ (line 5481) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsScene.Item... method __rxor__ (line 5482) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsScene.Item... method __sub__ (line 5483) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemI... method __xor__ (line 5484) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsScene.ItemI... class SceneLayer (line 5486) | class SceneLayer: method __init__ (line 5494) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5495) | def __and__(self, other: typing.SupportsInt) -> QGraphicsScene.Scene... method __bool__ (line 5496) | def __bool__(self) -> bool: ... method __eq__ (line 5497) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5498) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5499) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5500) | def __hash__(self) -> int: ... method __index__ (line 5501) | def __index__(self) -> int: ... method __int__ (line 5502) | def __int__(self) -> int: ... method __invert__ (line 5503) | def __invert__(self) -> QGraphicsScene.SceneLayers: ... method __le__ (line 5504) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5505) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5506) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5507) | def __or__(self, other: typing.SupportsInt) -> QGraphicsScene.SceneL... method __rand__ (line 5508) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsScene.Scen... method __ror__ (line 5509) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsScene.Scene... method __rxor__ (line 5510) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsScene.Scen... method __xor__ (line 5511) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsScene.Scene... class SceneLayers (line 5513) | class SceneLayers: method __init__ (line 5515) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5516) | def __and__(self, other: typing.SupportsInt) -> QGraphicsScene.Scene... method __bool__ (line 5517) | def __bool__(self) -> bool: ... method __eq__ (line 5518) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5519) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5520) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5521) | def __index__(self) -> int: ... method __int__ (line 5522) | def __int__(self) -> int: ... method __invert__ (line 5523) | def __invert__(self) -> QGraphicsScene.SceneLayers: ... method __le__ (line 5524) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5525) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5526) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5527) | def __or__(self, other: typing.SupportsInt) -> QGraphicsScene.SceneL... method __rand__ (line 5528) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsScene.Scen... method __ror__ (line 5529) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsScene.Scene... method __rxor__ (line 5530) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsScene.Scen... method __xor__ (line 5531) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsScene.Scene... method __init__ (line 5544) | def __init__(self, x: float, y: float, width: float, height: float, pa... method __init__ (line 5546) | def __init__(self, sceneRect: PySide2.QtCore.QRectF, parent: PySide2.Q... method __init__ (line 5548) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., backgr... method activePanel (line 5549) | def activePanel(self) -> QGraphicsItem: ... method activeWindow (line 5550) | def activeWindow(self) -> QGraphicsWidget: ... method addEllipse (line 5552) | def addEllipse(self, x: float, y: float, w: float, h: float, pen: PySi... method addEllipse (line 5554) | def addEllipse(self, rect: PySide2.QtCore.QRectF, pen: PySide2.QtGui.Q... method addItem (line 5555) | def addItem(self, item: QGraphicsItem) -> None: ... method addLine (line 5557) | def addLine(self, x1: float, y1: float, x2: float, y2: float, pen: PyS... method addLine (line 5559) | def addLine(self, line: PySide2.QtCore.QLineF, pen: PySide2.QtGui.QPen... method addPath (line 5560) | def addPath(self, path: PySide2.QtGui.QPainterPath, pen: PySide2.QtGui... method addPixmap (line 5561) | def addPixmap(self, pixmap: PySide2.QtGui.QPixmap) -> QGraphicsPixmapI... method addPolygon (line 5562) | def addPolygon(self, polygon: PySide2.QtGui.QPolygonF, pen: PySide2.Qt... method addRect (line 5564) | def addRect(self, x: float, y: float, w: float, h: float, pen: PySide2... method addRect (line 5566) | def addRect(self, rect: PySide2.QtCore.QRectF, pen: PySide2.QtGui.QPen... method addSimpleText (line 5567) | def addSimpleText(self, text: str, font: PySide2.QtGui.QFont = ...) ->... method addText (line 5568) | def addText(self, text: str, font: PySide2.QtGui.QFont = ...) -> QGrap... method addWidget (line 5569) | def addWidget(self, widget: QWidget, wFlags: PySide2.QtCore.Qt.WindowF... method advance (line 5570) | def advance(self) -> None: ... method backgroundBrush (line 5571) | def backgroundBrush(self) -> PySide2.QtGui.QBrush: ... method bspTreeDepth (line 5572) | def bspTreeDepth(self) -> int: ... method clear (line 5573) | def clear(self) -> None: ... method clearFocus (line 5574) | def clearFocus(self) -> None: ... method clearSelection (line 5575) | def clearSelection(self) -> None: ... method collidingItems (line 5576) | def collidingItems(self, item: QGraphicsItem, mode: PySide2.QtCore.Qt.... method contextMenuEvent (line 5577) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent) -> N... method createItemGroup (line 5578) | def createItemGroup(self, items: typing.Iterable[QGraphicsItem]) -> QG... method destroyItemGroup (line 5579) | def destroyItemGroup(self, group: QGraphicsItemGroup) -> None: ... method dragEnterEvent (line 5580) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragLeaveEvent (line 5581) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragMoveEvent (line 5582) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method drawBackground (line 5583) | def drawBackground(self, painter: PySide2.QtGui.QPainter, rect: PySide... method drawForeground (line 5584) | def drawForeground(self, painter: PySide2.QtGui.QPainter, rect: PySide... method dropEvent (line 5585) | def dropEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method event (line 5586) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 5587) | def eventFilter(self, watched: PySide2.QtCore.QObject, event: PySide2.... method focusInEvent (line 5588) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusItem (line 5589) | def focusItem(self) -> QGraphicsItem: ... method focusNextPrevChild (line 5590) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOnTouch (line 5591) | def focusOnTouch(self) -> bool: ... method focusOutEvent (line 5592) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method font (line 5593) | def font(self) -> PySide2.QtGui.QFont: ... method foregroundBrush (line 5594) | def foregroundBrush(self) -> PySide2.QtGui.QBrush: ... method hasFocus (line 5595) | def hasFocus(self) -> bool: ... method height (line 5596) | def height(self) -> float: ... method helpEvent (line 5597) | def helpEvent(self, event: QGraphicsSceneHelpEvent) -> None: ... method inputMethodEvent (line 5598) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodQuery (line 5599) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method invalidate (line 5601) | def invalidate(self, x: float, y: float, w: float, h: float, layers: Q... method invalidate (line 5603) | def invalidate(self, rect: PySide2.QtCore.QRectF = ..., layers: QGraph... method isActive (line 5604) | def isActive(self) -> bool: ... method isSortCacheEnabled (line 5605) | def isSortCacheEnabled(self) -> bool: ... method itemAt (line 5607) | def itemAt(self, x: float, y: float, deviceTransform: PySide2.QtGui.QT... method itemAt (line 5609) | def itemAt(self, pos: PySide2.QtCore.QPointF, deviceTransform: PySide2... method itemIndexMethod (line 5610) | def itemIndexMethod(self) -> QGraphicsScene.ItemIndexMethod: ... method items (line 5612) | def items(self, x: float, y: float, w: float, h: float, mode: PySide2.... method items (line 5614) | def items(self, rect: PySide2.QtCore.QRectF, mode: PySide2.QtCore.Qt.I... method items (line 5616) | def items(self, pos: PySide2.QtCore.QPointF, mode: PySide2.QtCore.Qt.I... method items (line 5618) | def items(self, polygon: PySide2.QtGui.QPolygonF, mode: PySide2.QtCore... method items (line 5620) | def items(self, path: PySide2.QtGui.QPainterPath, mode: PySide2.QtCore... method items (line 5622) | def items(self, order: PySide2.QtCore.Qt.SortOrder = ...) -> list[QGra... method itemsBoundingRect (line 5623) | def itemsBoundingRect(self) -> PySide2.QtCore.QRectF: ... method keyPressEvent (line 5624) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 5625) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method minimumRenderSize (line 5626) | def minimumRenderSize(self) -> float: ... method mouseDoubleClickEvent (line 5627) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent) -> No... method mouseGrabberItem (line 5628) | def mouseGrabberItem(self) -> QGraphicsItem: ... method mouseMoveEvent (line 5629) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mousePressEvent (line 5630) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mouseReleaseEvent (line 5631) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method palette (line 5632) | def palette(self) -> PySide2.QtGui.QPalette: ... method removeItem (line 5633) | def removeItem(self, item: QGraphicsItem) -> None: ... method render (line 5634) | def render(self, painter: PySide2.QtGui.QPainter, target: PySide2.QtCo... method sceneRect (line 5635) | def sceneRect(self) -> PySide2.QtCore.QRectF: ... method selectedItems (line 5636) | def selectedItems(self) -> list[QGraphicsItem]: ... method selectionArea (line 5637) | def selectionArea(self) -> PySide2.QtGui.QPainterPath: ... method sendEvent (line 5638) | def sendEvent(self, item: QGraphicsItem, event: PySide2.QtCore.QEvent)... method setActivePanel (line 5639) | def setActivePanel(self, item: QGraphicsItem) -> None: ... method setActiveWindow (line 5640) | def setActiveWindow(self, widget: QGraphicsWidget) -> None: ... method setBackgroundBrush (line 5641) | def setBackgroundBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtG... method setBspTreeDepth (line 5642) | def setBspTreeDepth(self, depth: int) -> None: ... method setFocus (line 5643) | def setFocus(self, focusReason: PySide2.QtCore.Qt.FocusReason = ...) -... method setFocusItem (line 5644) | def setFocusItem(self, item: QGraphicsItem, focusReason: PySide2.QtCor... method setFocusOnTouch (line 5645) | def setFocusOnTouch(self, enabled: bool) -> None: ... method setFont (line 5646) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setForegroundBrush (line 5647) | def setForegroundBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtG... method setItemIndexMethod (line 5648) | def setItemIndexMethod(self, method: QGraphicsScene.ItemIndexMethod) -... method setMinimumRenderSize (line 5649) | def setMinimumRenderSize(self, minSize: float) -> None: ... method setPalette (line 5650) | def setPalette(self, palette: PySide2.QtGui.QPalette) -> None: ... method setSceneRect (line 5652) | def setSceneRect(self, x: float, y: float, w: float, h: float) -> None... method setSceneRect (line 5654) | def setSceneRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method setSelectionArea (line 5656) | def setSelectionArea(self, path: PySide2.QtGui.QPainterPath, selection... method setSelectionArea (line 5658) | def setSelectionArea(self, path: PySide2.QtGui.QPainterPath, mode: PyS... method setSelectionArea (line 5660) | def setSelectionArea(self, path: PySide2.QtGui.QPainterPath, deviceTra... method setSortCacheEnabled (line 5661) | def setSortCacheEnabled(self, enabled: bool) -> None: ... method setStickyFocus (line 5662) | def setStickyFocus(self, enabled: bool) -> None: ... method setStyle (line 5663) | def setStyle(self, style: QStyle) -> None: ... method stickyFocus (line 5664) | def stickyFocus(self) -> bool: ... method style (line 5665) | def style(self) -> QStyle: ... method update (line 5667) | def update(self, x: float, y: float, w: float, h: float) -> None: ... method update (line 5669) | def update(self, rect: PySide2.QtCore.QRectF = ...) -> None: ... method views (line 5670) | def views(self) -> list[QGraphicsView]: ... method wheelEvent (line 5671) | def wheelEvent(self, event: QGraphicsSceneWheelEvent) -> None: ... method width (line 5672) | def width(self) -> float: ... class QGraphicsSceneContextMenuEvent (line 5674) | class QGraphicsSceneContextMenuEvent(QGraphicsSceneEvent): class Reason (line 5675) | class Reason: method __init__ (line 5682) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5683) | def __add__(self, other: typing.SupportsInt) -> QGraphicsSceneContex... method __and__ (line 5684) | def __and__(self, other: typing.SupportsInt) -> QGraphicsSceneContex... method __bool__ (line 5685) | def __bool__(self) -> bool: ... method __eq__ (line 5686) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5687) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5688) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5689) | def __hash__(self) -> int: ... method __index__ (line 5690) | def __index__(self) -> int: ... method __int__ (line 5691) | def __int__(self) -> int: ... method __le__ (line 5692) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5694) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsSceneContex... method __ne__ (line 5695) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5696) | def __or__(self, other: typing.SupportsInt) -> QGraphicsSceneContext... method __pos__ (line 5697) | def __pos__(self): ... method __radd__ (line 5698) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsSceneConte... method __rand__ (line 5699) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsSceneConte... method __rmul__ (line 5700) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsSceneConte... method __ror__ (line 5701) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsSceneContex... method __rsub__ (line 5702) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsSceneConte... method __rxor__ (line 5703) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsSceneConte... method __sub__ (line 5704) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsSceneContex... method __xor__ (line 5705) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsSceneContex... method __init__ (line 5709) | def __init__(self, type: PySide2.QtCore.QEvent.Type | None = ...) -> N... method modifiers (line 5710) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method pos (line 5711) | def pos(self) -> PySide2.QtCore.QPointF: ... method reason (line 5712) | def reason(self) -> QGraphicsSceneContextMenuEvent.Reason: ... method scenePos (line 5713) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method screenPos (line 5714) | def screenPos(self) -> PySide2.QtCore.QPoint: ... method setModifiers (line 5715) | def setModifiers(self, modifiers: PySide2.QtCore.Qt.KeyboardModifiers ... method setPos (line 5716) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setReason (line 5717) | def setReason(self, reason: QGraphicsSceneContextMenuEvent.Reason) -> ... method setScenePos (line 5718) | def setScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScreenPos (line 5719) | def setScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... class QGraphicsSceneDragDropEvent (line 5721) | class QGraphicsSceneDragDropEvent(QGraphicsSceneEvent): method __init__ (line 5722) | def __init__(self, type: PySide2.QtCore.QEvent.Type | None = ...) -> N... method acceptProposedAction (line 5723) | def acceptProposedAction(self) -> None: ... method buttons (line 5724) | def buttons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.Q... method dropAction (line 5725) | def dropAction(self) -> PySide2.QtCore.Qt.DropAction: ... method mimeData (line 5726) | def mimeData(self) -> PySide2.QtCore.QMimeData: ... method modifiers (line 5727) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method pos (line 5728) | def pos(self) -> PySide2.QtCore.QPointF: ... method possibleActions (line 5729) | def possibleActions(self) -> PySide2.QtCore.Qt.DropActions | PySide2.Q... method proposedAction (line 5730) | def proposedAction(self) -> PySide2.QtCore.Qt.DropAction: ... method scenePos (line 5731) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method screenPos (line 5732) | def screenPos(self) -> PySide2.QtCore.QPoint: ... method setButtons (line 5733) | def setButtons(self, buttons: PySide2.QtCore.Qt.MouseButtons | PySide2... method setDropAction (line 5734) | def setDropAction(self, action: PySide2.QtCore.Qt.DropAction) -> None:... method setModifiers (line 5735) | def setModifiers(self, modifiers: PySide2.QtCore.Qt.KeyboardModifiers ... method setPos (line 5736) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setPossibleActions (line 5737) | def setPossibleActions(self, actions: PySide2.QtCore.Qt.DropActions | ... method setProposedAction (line 5738) | def setProposedAction(self, action: PySide2.QtCore.Qt.DropAction) -> N... method setScenePos (line 5739) | def setScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScreenPos (line 5740) | def setScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... method source (line 5741) | def source(self) -> QWidget: ... class QGraphicsSceneEvent (line 5743) | class QGraphicsSceneEvent(PySide2.QtCore.QEvent): method __init__ (line 5744) | def __init__(self, type: PySide2.QtCore.QEvent.Type) -> None: ... method widget (line 5745) | def widget(self) -> QWidget: ... class QGraphicsSceneHelpEvent (line 5747) | class QGraphicsSceneHelpEvent(QGraphicsSceneEvent): method __init__ (line 5748) | def __init__(self, type: PySide2.QtCore.QEvent.Type | None = ...) -> N... method scenePos (line 5749) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method screenPos (line 5750) | def screenPos(self) -> PySide2.QtCore.QPoint: ... method setScenePos (line 5751) | def setScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScreenPos (line 5752) | def setScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... class QGraphicsSceneHoverEvent (line 5754) | class QGraphicsSceneHoverEvent(QGraphicsSceneEvent): method __init__ (line 5755) | def __init__(self, type: PySide2.QtCore.QEvent.Type | None = ...) -> N... method lastPos (line 5756) | def lastPos(self) -> PySide2.QtCore.QPointF: ... method lastScenePos (line 5757) | def lastScenePos(self) -> PySide2.QtCore.QPointF: ... method lastScreenPos (line 5758) | def lastScreenPos(self) -> PySide2.QtCore.QPoint: ... method modifiers (line 5759) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method pos (line 5760) | def pos(self) -> PySide2.QtCore.QPointF: ... method scenePos (line 5761) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method screenPos (line 5762) | def screenPos(self) -> PySide2.QtCore.QPoint: ... method setLastPos (line 5763) | def setLastPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setLastScenePos (line 5764) | def setLastScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setLastScreenPos (line 5765) | def setLastScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... method setModifiers (line 5766) | def setModifiers(self, modifiers: PySide2.QtCore.Qt.KeyboardModifiers ... method setPos (line 5767) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScenePos (line 5768) | def setScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScreenPos (line 5769) | def setScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... class QGraphicsSceneMouseEvent (line 5771) | class QGraphicsSceneMouseEvent(QGraphicsSceneEvent): method __init__ (line 5772) | def __init__(self, type: PySide2.QtCore.QEvent.Type | None = ...) -> N... method button (line 5773) | def button(self) -> PySide2.QtCore.Qt.MouseButton: ... method buttonDownPos (line 5774) | def buttonDownPos(self, button: PySide2.QtCore.Qt.MouseButton) -> PySi... method buttonDownScenePos (line 5775) | def buttonDownScenePos(self, button: PySide2.QtCore.Qt.MouseButton) ->... method buttonDownScreenPos (line 5776) | def buttonDownScreenPos(self, button: PySide2.QtCore.Qt.MouseButton) -... method buttons (line 5777) | def buttons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.Q... method flags (line 5778) | def flags(self) -> PySide2.QtCore.Qt.MouseEventFlags | PySide2.QtCore.... method lastPos (line 5779) | def lastPos(self) -> PySide2.QtCore.QPointF: ... method lastScenePos (line 5780) | def lastScenePos(self) -> PySide2.QtCore.QPointF: ... method lastScreenPos (line 5781) | def lastScreenPos(self) -> PySide2.QtCore.QPoint: ... method modifiers (line 5782) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method pos (line 5783) | def pos(self) -> PySide2.QtCore.QPointF: ... method scenePos (line 5784) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method screenPos (line 5785) | def screenPos(self) -> PySide2.QtCore.QPoint: ... method setButton (line 5786) | def setButton(self, button: PySide2.QtCore.Qt.MouseButton) -> None: ... method setButtonDownPos (line 5787) | def setButtonDownPos(self, button: PySide2.QtCore.Qt.MouseButton, pos:... method setButtonDownScenePos (line 5788) | def setButtonDownScenePos(self, button: PySide2.QtCore.Qt.MouseButton,... method setButtonDownScreenPos (line 5789) | def setButtonDownScreenPos(self, button: PySide2.QtCore.Qt.MouseButton... method setButtons (line 5790) | def setButtons(self, buttons: PySide2.QtCore.Qt.MouseButtons | PySide2... method setFlags (line 5791) | def setFlags(self, arg__1: PySide2.QtCore.Qt.MouseEventFlags | PySide2... method setLastPos (line 5792) | def setLastPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setLastScenePos (line 5793) | def setLastScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setLastScreenPos (line 5794) | def setLastScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... method setModifiers (line 5795) | def setModifiers(self, modifiers: PySide2.QtCore.Qt.KeyboardModifiers ... method setPos (line 5796) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScenePos (line 5797) | def setScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScreenPos (line 5798) | def setScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... method setSource (line 5799) | def setSource(self, source: PySide2.QtCore.Qt.MouseEventSource) -> Non... method source (line 5800) | def source(self) -> PySide2.QtCore.Qt.MouseEventSource: ... class QGraphicsSceneMoveEvent (line 5802) | class QGraphicsSceneMoveEvent(QGraphicsSceneEvent): method __init__ (line 5803) | def __init__(self) -> None: ... method newPos (line 5804) | def newPos(self) -> PySide2.QtCore.QPointF: ... method oldPos (line 5805) | def oldPos(self) -> PySide2.QtCore.QPointF: ... method setNewPos (line 5806) | def setNewPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setOldPos (line 5807) | def setOldPos(self, pos: PySide2.QtCore.QPointF) -> None: ... class QGraphicsSceneResizeEvent (line 5809) | class QGraphicsSceneResizeEvent(QGraphicsSceneEvent): method __init__ (line 5810) | def __init__(self) -> None: ... method newSize (line 5811) | def newSize(self) -> PySide2.QtCore.QSizeF: ... method oldSize (line 5812) | def oldSize(self) -> PySide2.QtCore.QSizeF: ... method setNewSize (line 5813) | def setNewSize(self, size: PySide2.QtCore.QSizeF) -> None: ... method setOldSize (line 5814) | def setOldSize(self, size: PySide2.QtCore.QSizeF) -> None: ... class QGraphicsSceneWheelEvent (line 5816) | class QGraphicsSceneWheelEvent(QGraphicsSceneEvent): method __init__ (line 5817) | def __init__(self, type: PySide2.QtCore.QEvent.Type | None = ...) -> N... method buttons (line 5818) | def buttons(self) -> PySide2.QtCore.Qt.MouseButtons | PySide2.QtCore.Q... method delta (line 5819) | def delta(self) -> int: ... method modifiers (line 5820) | def modifiers(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide2.Q... method orientation (line 5821) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method pos (line 5822) | def pos(self) -> PySide2.QtCore.QPointF: ... method scenePos (line 5823) | def scenePos(self) -> PySide2.QtCore.QPointF: ... method screenPos (line 5824) | def screenPos(self) -> PySide2.QtCore.QPoint: ... method setButtons (line 5825) | def setButtons(self, buttons: PySide2.QtCore.Qt.MouseButtons | PySide2... method setDelta (line 5826) | def setDelta(self, delta: int) -> None: ... method setModifiers (line 5827) | def setModifiers(self, modifiers: PySide2.QtCore.Qt.KeyboardModifiers ... method setOrientation (line 5828) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation) -... method setPos (line 5829) | def setPos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScenePos (line 5830) | def setScenePos(self, pos: PySide2.QtCore.QPointF) -> None: ... method setScreenPos (line 5831) | def setScreenPos(self, pos: PySide2.QtCore.QPoint) -> None: ... class QGraphicsSimpleTextItem (line 5833) | class QGraphicsSimpleTextItem(QAbstractGraphicsShapeItem): method __init__ (line 5835) | def __init__(self, text: str, parent: QGraphicsItem | None = ...) -> N... method __init__ (line 5837) | def __init__(self, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 5838) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5839) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method extension (line 5840) | def extension(self, variant: typing.Any) -> typing.Any: ... method font (line 5841) | def font(self) -> PySide2.QtGui.QFont: ... method isObscuredBy (line 5842) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method opaqueArea (line 5843) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method paint (line 5844) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method setFont (line 5845) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setText (line 5846) | def setText(self, text: str) -> None: ... method shape (line 5847) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method text (line 5848) | def text(self) -> str: ... method type (line 5849) | def type(self) -> int: ... class QGraphicsTextItem (line 5851) | class QGraphicsTextItem(QGraphicsObject): method __init__ (line 5856) | def __init__(self, text: str, parent: QGraphicsItem | None = ..., chil... method __init__ (line 5858) | def __init__(self, parent: QGraphicsItem | None = ..., children: typin... method adjustSize (line 5859) | def adjustSize(self) -> None: ... method boundingRect (line 5860) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method contains (line 5861) | def contains(self, point: PySide2.QtCore.QPointF) -> bool: ... method contextMenuEvent (line 5862) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent) -> N... method defaultTextColor (line 5863) | def defaultTextColor(self) -> PySide2.QtGui.QColor: ... method document (line 5864) | def document(self) -> PySide2.QtGui.QTextDocument: ... method dragEnterEvent (line 5865) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragLeaveEvent (line 5866) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dragMoveEvent (line 5867) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method dropEvent (line 5868) | def dropEvent(self, event: QGraphicsSceneDragDropEvent) -> None: ... method extension (line 5869) | def extension(self, variant: typing.Any) -> typing.Any: ... method focusInEvent (line 5870) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 5871) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method font (line 5872) | def font(self) -> PySide2.QtGui.QFont: ... method hoverEnterEvent (line 5873) | def hoverEnterEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverLeaveEvent (line 5874) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverMoveEvent (line 5875) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method inputMethodEvent (line 5876) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodQuery (line 5877) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method isObscuredBy (line 5878) | def isObscuredBy(self, item: QGraphicsItem) -> bool: ... method keyPressEvent (line 5879) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 5880) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method mouseDoubleClickEvent (line 5881) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent) -> No... method mouseMoveEvent (line 5882) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mousePressEvent (line 5883) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method mouseReleaseEvent (line 5884) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent) -> None: ... method opaqueArea (line 5885) | def opaqueArea(self) -> PySide2.QtGui.QPainterPath: ... method openExternalLinks (line 5886) | def openExternalLinks(self) -> bool: ... method paint (line 5887) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method sceneEvent (line 5888) | def sceneEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... method setDefaultTextColor (line 5889) | def setDefaultTextColor(self, c: PySide2.QtGui.QColor | PySide2.QtCore... method setDocument (line 5890) | def setDocument(self, document: PySide2.QtGui.QTextDocument) -> None: ... method setExtension (line 5891) | def setExtension(self, extension: QGraphicsItem.Extension, variant: ty... method setFont (line 5892) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setHtml (line 5893) | def setHtml(self, html: str) -> None: ... method setOpenExternalLinks (line 5894) | def setOpenExternalLinks(self, open: bool) -> None: ... method setPlainText (line 5895) | def setPlainText(self, text: str) -> None: ... method setTabChangesFocus (line 5896) | def setTabChangesFocus(self, b: bool) -> None: ... method setTextCursor (line 5897) | def setTextCursor(self, cursor: PySide2.QtGui.QTextCursor) -> None: ... method setTextInteractionFlags (line 5898) | def setTextInteractionFlags(self, flags: PySide2.QtCore.Qt.TextInterac... method setTextWidth (line 5899) | def setTextWidth(self, width: float) -> None: ... method shape (line 5900) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method supportsExtension (line 5901) | def supportsExtension(self, extension: QGraphicsItem.Extension) -> boo... method tabChangesFocus (line 5902) | def tabChangesFocus(self) -> bool: ... method textCursor (line 5903) | def textCursor(self) -> PySide2.QtGui.QTextCursor: ... method textInteractionFlags (line 5904) | def textInteractionFlags(self) -> PySide2.QtCore.Qt.TextInteractionFla... method textWidth (line 5905) | def textWidth(self) -> float: ... method toHtml (line 5906) | def toHtml(self) -> str: ... method toPlainText (line 5907) | def toPlainText(self) -> str: ... method type (line 5908) | def type(self) -> int: ... class QGraphicsTransform (line 5910) | class QGraphicsTransform(PySide2.QtCore.QObject): method __init__ (line 5912) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method applyTo (line 5913) | def applyTo(self, matrix: PySide2.QtGui.QMatrix4x4) -> None: ... method update (line 5914) | def update(self) -> None: ... class QGraphicsView (line 5916) | class QGraphicsView(QAbstractScrollArea): class CacheMode (line 5917) | class CacheMode: method __init__ (line 5919) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5920) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.CacheM... method __bool__ (line 5921) | def __bool__(self) -> bool: ... method __eq__ (line 5922) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5923) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5924) | def __gt__(self, other: object) -> bool: ... method __index__ (line 5925) | def __index__(self) -> int: ... method __int__ (line 5926) | def __int__(self) -> int: ... method __invert__ (line 5927) | def __invert__(self) -> QGraphicsView.CacheMode: ... method __le__ (line 5928) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5929) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5930) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5931) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.CacheMo... method __rand__ (line 5932) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.Cache... method __ror__ (line 5933) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.CacheM... method __rxor__ (line 5934) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.Cache... method __xor__ (line 5935) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.CacheM... class CacheModeFlag (line 5937) | class CacheModeFlag: method __init__ (line 5943) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 5944) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.CacheM... method __bool__ (line 5945) | def __bool__(self) -> bool: ... method __eq__ (line 5946) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5947) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5948) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5949) | def __hash__(self) -> int: ... method __index__ (line 5950) | def __index__(self) -> int: ... method __int__ (line 5951) | def __int__(self) -> int: ... method __invert__ (line 5952) | def __invert__(self) -> QGraphicsView.CacheMode: ... method __le__ (line 5953) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5954) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5955) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5956) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.CacheMo... method __rand__ (line 5957) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.Cache... method __ror__ (line 5958) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.CacheM... method __rxor__ (line 5959) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.Cache... method __xor__ (line 5960) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.CacheM... class DragMode (line 5962) | class DragMode: method __init__ (line 5969) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 5970) | def __add__(self, other: typing.SupportsInt) -> QGraphicsView.DragMo... method __and__ (line 5971) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.DragMo... method __bool__ (line 5972) | def __bool__(self) -> bool: ... method __eq__ (line 5973) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5974) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5975) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5976) | def __hash__(self) -> int: ... method __index__ (line 5977) | def __index__(self) -> int: ... method __int__ (line 5978) | def __int__(self) -> int: ... method __le__ (line 5979) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5980) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5981) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsView.DragMo... method __ne__ (line 5982) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5983) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.DragMod... method __pos__ (line 5984) | def __pos__(self): ... method __radd__ (line 5985) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsView.DragM... method __rand__ (line 5986) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.DragM... method __rmul__ (line 5987) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsView.DragM... method __ror__ (line 5988) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.DragMo... method __rsub__ (line 5989) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsView.DragM... method __rxor__ (line 5990) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.DragM... method __sub__ (line 5991) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsView.DragMo... method __xor__ (line 5992) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.DragMo... class OptimizationFlag (line 5994) | class OptimizationFlag: method __init__ (line 6002) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6003) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.Optimi... method __bool__ (line 6004) | def __bool__(self) -> bool: ... method __eq__ (line 6005) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6006) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6007) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6008) | def __hash__(self) -> int: ... method __index__ (line 6009) | def __index__(self) -> int: ... method __int__ (line 6010) | def __int__(self) -> int: ... method __invert__ (line 6011) | def __invert__(self) -> QGraphicsView.OptimizationFlags: ... method __le__ (line 6012) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6013) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6014) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6015) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.Optimiz... method __rand__ (line 6016) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.Optim... method __ror__ (line 6017) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.Optimi... method __rxor__ (line 6018) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.Optim... method __xor__ (line 6019) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.Optimi... class OptimizationFlags (line 6021) | class OptimizationFlags: method __init__ (line 6023) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 6024) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.Optimi... method __bool__ (line 6025) | def __bool__(self) -> bool: ... method __eq__ (line 6026) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6027) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6028) | def __gt__(self, other: object) -> bool: ... method __index__ (line 6029) | def __index__(self) -> int: ... method __int__ (line 6030) | def __int__(self) -> int: ... method __invert__ (line 6031) | def __invert__(self) -> QGraphicsView.OptimizationFlags: ... method __le__ (line 6032) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6033) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6034) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6035) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.Optimiz... method __rand__ (line 6036) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.Optim... method __ror__ (line 6037) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.Optimi... method __rxor__ (line 6038) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.Optim... method __xor__ (line 6039) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.Optimi... class ViewportAnchor (line 6041) | class ViewportAnchor: method __init__ (line 6048) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6049) | def __add__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __and__ (line 6050) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __bool__ (line 6051) | def __bool__(self) -> bool: ... method __eq__ (line 6052) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6053) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6054) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6055) | def __hash__(self) -> int: ... method __index__ (line 6056) | def __index__(self) -> int: ... method __int__ (line 6057) | def __int__(self) -> int: ... method __le__ (line 6058) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6059) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6060) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __ne__ (line 6061) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6062) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpor... method __pos__ (line 6063) | def __pos__(self): ... method __radd__ (line 6064) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __rand__ (line 6065) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __rmul__ (line 6066) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __ror__ (line 6067) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __rsub__ (line 6068) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __rxor__ (line 6069) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __sub__ (line 6070) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __xor__ (line 6071) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... class ViewportUpdateMode (line 6073) | class ViewportUpdateMode: method __init__ (line 6082) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6083) | def __add__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __and__ (line 6084) | def __and__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __bool__ (line 6085) | def __bool__(self) -> bool: ... method __eq__ (line 6086) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6087) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6088) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6089) | def __hash__(self) -> int: ... method __index__ (line 6090) | def __index__(self) -> int: ... method __int__ (line 6091) | def __int__(self) -> int: ... method __le__ (line 6092) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6093) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6094) | def __mul__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __ne__ (line 6095) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6096) | def __or__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpor... method __pos__ (line 6097) | def __pos__(self): ... method __radd__ (line 6098) | def __radd__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __rand__ (line 6099) | def __rand__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __rmul__ (line 6100) | def __rmul__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __ror__ (line 6101) | def __ror__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __rsub__ (line 6102) | def __rsub__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __rxor__ (line 6103) | def __rxor__(self, other: typing.SupportsInt) -> QGraphicsView.Viewp... method __sub__ (line 6104) | def __sub__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __xor__ (line 6105) | def __xor__(self, other: typing.SupportsInt) -> QGraphicsView.Viewpo... method __init__ (line 6126) | def __init__(self, scene: QGraphicsScene, parent: QWidget | None = ...... method __init__ (line 6128) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method alignment (line 6129) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method backgroundBrush (line 6130) | def backgroundBrush(self) -> PySide2.QtGui.QBrush: ... method cacheMode (line 6131) | def cacheMode(self) -> QGraphicsView.CacheMode | QGraphicsView.CacheMo... method centerOn (line 6133) | def centerOn(self, x: float, y: float) -> None: ... method centerOn (line 6135) | def centerOn(self, pos: PySide2.QtCore.QPointF) -> None: ... method centerOn (line 6137) | def centerOn(self, item: QGraphicsItem) -> None: ... method contextMenuEvent (line 6138) | def contextMenuEvent(self, event: PySide2.QtGui.QContextMenuEvent) -> ... method dragEnterEvent (line 6139) | def dragEnterEvent(self, event: PySide2.QtGui.QDragEnterEvent) -> None... method dragLeaveEvent (line 6140) | def dragLeaveEvent(self, event: PySide2.QtGui.QDragLeaveEvent) -> None... method dragMode (line 6141) | def dragMode(self) -> QGraphicsView.DragMode: ... method dragMoveEvent (line 6142) | def dragMoveEvent(self, event: PySide2.QtGui.QDragMoveEvent) -> None: ... method drawBackground (line 6143) | def drawBackground(self, painter: PySide2.QtGui.QPainter, rect: PySide... method drawForeground (line 6144) | def drawForeground(self, painter: PySide2.QtGui.QPainter, rect: PySide... method drawItems (line 6145) | def drawItems(self, painter: PySide2.QtGui.QPainter, numItems: int, it... method dropEvent (line 6146) | def dropEvent(self, event: PySide2.QtGui.QDropEvent) -> None: ... method ensureVisible (line 6148) | def ensureVisible(self, x: float, y: float, w: float, h: float, xmargi... method ensureVisible (line 6150) | def ensureVisible(self, rect: PySide2.QtCore.QRectF, xmargin: int = ..... method ensureVisible (line 6152) | def ensureVisible(self, item: QGraphicsItem, xmargin: int = ..., ymarg... method event (line 6153) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method fitInView (line 6155) | def fitInView(self, x: float, y: float, w: float, h: float, aspectRadi... method fitInView (line 6157) | def fitInView(self, rect: PySide2.QtCore.QRectF, aspectRadioMode: PySi... method fitInView (line 6159) | def fitInView(self, item: QGraphicsItem, aspectRadioMode: PySide2.QtCo... method focusInEvent (line 6160) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 6161) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 6162) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method foregroundBrush (line 6163) | def foregroundBrush(self) -> PySide2.QtGui.QBrush: ... method inputMethodEvent (line 6164) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodQuery (line 6165) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery) ... method invalidateScene (line 6166) | def invalidateScene(self, rect: PySide2.QtCore.QRectF = ..., layers: Q... method isInteractive (line 6167) | def isInteractive(self) -> bool: ... method isTransformed (line 6168) | def isTransformed(self) -> bool: ... method itemAt (line 6170) | def itemAt(self, x: int, y: int) -> QGraphicsItem: ... method itemAt (line 6172) | def itemAt(self, pos: PySide2.QtCore.QPoint) -> QGraphicsItem: ... method items (line 6174) | def items(self, x: int, y: int, w: int, h: int, mode: PySide2.QtCore.Q... method items (line 6176) | def items(self, x: int, y: int) -> list[QGraphicsItem]: ... method items (line 6178) | def items(self, rect: PySide2.QtCore.QRect, mode: PySide2.QtCore.Qt.It... method items (line 6180) | def items(self, polygon: PySide2.QtGui.QPolygon, mode: PySide2.QtCore.... method items (line 6182) | def items(self, path: PySide2.QtGui.QPainterPath, mode: PySide2.QtCore... method items (line 6184) | def items(self, pos: PySide2.QtCore.QPoint) -> list[QGraphicsItem]: ... method items (line 6186) | def items(self) -> list[QGraphicsItem]: ... method keyPressEvent (line 6187) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 6188) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method mapFromScene (line 6190) | def mapFromScene(self, x: float, y: float, w: float, h: float) -> PySi... method mapFromScene (line 6192) | def mapFromScene(self, x: float, y: float) -> PySide2.QtCore.QPoint: ... method mapFromScene (line 6194) | def mapFromScene(self, rect: PySide2.QtCore.QRectF) -> PySide2.QtGui.Q... method mapFromScene (line 6196) | def mapFromScene(self, polygon: PySide2.QtGui.QPolygonF) -> PySide2.Qt... method mapFromScene (line 6198) | def mapFromScene(self, point: PySide2.QtCore.QPointF) -> PySide2.QtCor... method mapFromScene (line 6200) | def mapFromScene(self, path: PySide2.QtGui.QPainterPath) -> PySide2.Qt... method mapToScene (line 6202) | def mapToScene(self, x: int, y: int, w: int, h: int) -> PySide2.QtGui.... method mapToScene (line 6204) | def mapToScene(self, x: int, y: int) -> PySide2.QtCore.QPointF: ... method mapToScene (line 6206) | def mapToScene(self, rect: PySide2.QtCore.QRect) -> PySide2.QtGui.QPol... method mapToScene (line 6208) | def mapToScene(self, polygon: PySide2.QtGui.QPolygon) -> PySide2.QtGui... method mapToScene (line 6210) | def mapToScene(self, point: PySide2.QtCore.QPoint) -> PySide2.QtCore.Q... method mapToScene (line 6212) | def mapToScene(self, path: PySide2.QtGui.QPainterPath) -> PySide2.QtGu... method matrix (line 6213) | def matrix(self) -> PySide2.QtGui.QMatrix: ... method mouseDoubleClickEvent (line 6214) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) -> N... method mouseMoveEvent (line 6215) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 6216) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 6217) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method optimizationFlags (line 6218) | def optimizationFlags(self) -> QGraphicsView.OptimizationFlags | QGrap... method paintEvent (line 6219) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method render (line 6221) | def render(self, target: PySide2.QtGui.QPaintDevice, targetOffset: PyS... method render (line 6223) | def render(self, painter: PySide2.QtGui.QPainter, target: PySide2.QtCo... method renderHints (line 6224) | def renderHints(self) -> PySide2.QtGui.QPainter.RenderHints | PySide2.... method resetCachedContent (line 6225) | def resetCachedContent(self) -> None: ... method resetMatrix (line 6226) | def resetMatrix(self) -> None: ... method resetTransform (line 6227) | def resetTransform(self) -> None: ... method resizeAnchor (line 6228) | def resizeAnchor(self) -> QGraphicsView.ViewportAnchor: ... method resizeEvent (line 6229) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method rotate (line 6230) | def rotate(self, angle: float) -> None: ... method rubberBandRect (line 6231) | def rubberBandRect(self) -> PySide2.QtCore.QRect: ... method rubberBandSelectionMode (line 6232) | def rubberBandSelectionMode(self) -> PySide2.QtCore.Qt.ItemSelectionMo... method scale (line 6233) | def scale(self, sx: float, sy: float) -> None: ... method scene (line 6234) | def scene(self) -> QGraphicsScene: ... method sceneRect (line 6235) | def sceneRect(self) -> PySide2.QtCore.QRectF: ... method scrollContentsBy (line 6236) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method setAlignment (line 6237) | def setAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | PySide... method setBackgroundBrush (line 6238) | def setBackgroundBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtG... method setCacheMode (line 6239) | def setCacheMode(self, mode: QGraphicsView.CacheMode | QGraphicsView.C... method setDragMode (line 6240) | def setDragMode(self, mode: QGraphicsView.DragMode) -> None: ... method setForegroundBrush (line 6241) | def setForegroundBrush(self, brush: PySide2.QtGui.QBrush | PySide2.QtG... method setInteractive (line 6242) | def setInteractive(self, allowed: bool) -> None: ... method setMatrix (line 6243) | def setMatrix(self, matrix: PySide2.QtGui.QMatrix, combine: bool = ...... method setOptimizationFlag (line 6244) | def setOptimizationFlag(self, flag: QGraphicsView.OptimizationFlag, en... method setOptimizationFlags (line 6245) | def setOptimizationFlags(self, flags: QGraphicsView.OptimizationFlags ... method setRenderHint (line 6246) | def setRenderHint(self, hint: PySide2.QtGui.QPainter.RenderHint, enabl... method setRenderHints (line 6247) | def setRenderHints(self, hints: PySide2.QtGui.QPainter.RenderHints | P... method setResizeAnchor (line 6248) | def setResizeAnchor(self, anchor: QGraphicsView.ViewportAnchor) -> Non... method setRubberBandSelectionMode (line 6249) | def setRubberBandSelectionMode(self, mode: PySide2.QtCore.Qt.ItemSelec... method setScene (line 6250) | def setScene(self, scene: QGraphicsScene) -> None: ... method setSceneRect (line 6252) | def setSceneRect(self, x: float, y: float, w: float, h: float) -> None... method setSceneRect (line 6254) | def setSceneRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method setTransform (line 6255) | def setTransform(self, matrix: PySide2.QtGui.QTransform, combine: bool... method setTransformationAnchor (line 6256) | def setTransformationAnchor(self, anchor: QGraphicsView.ViewportAnchor... method setViewportUpdateMode (line 6257) | def setViewportUpdateMode(self, mode: QGraphicsView.ViewportUpdateMode... method setupViewport (line 6258) | def setupViewport(self, widget: QWidget) -> None: ... method shear (line 6259) | def shear(self, sh: float, sv: float) -> None: ... method showEvent (line 6260) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 6261) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method transform (line 6262) | def transform(self) -> PySide2.QtGui.QTransform: ... method transformationAnchor (line 6263) | def transformationAnchor(self) -> QGraphicsView.ViewportAnchor: ... method translate (line 6264) | def translate(self, dx: float, dy: float) -> None: ... method updateScene (line 6265) | def updateScene(self, rects: typing.Iterable[PySide2.QtCore.QRectF]) -... method updateSceneRect (line 6266) | def updateSceneRect(self, rect: PySide2.QtCore.QRectF) -> None: ... method viewportEvent (line 6267) | def viewportEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... method viewportTransform (line 6268) | def viewportTransform(self) -> PySide2.QtGui.QTransform: ... method viewportUpdateMode (line 6269) | def viewportUpdateMode(self) -> QGraphicsView.ViewportUpdateMode: ... method wheelEvent (line 6270) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class QGraphicsWidget (line 6272) | class QGraphicsWidget(QGraphicsObject, QGraphicsLayoutItem): method __init__ (line 6276) | def __init__(self, parent: QGraphicsItem | None = ..., wFlags: PySide2... method actions (line 6277) | def actions(self) -> list[QAction]: ... method addAction (line 6278) | def addAction(self, action: QAction) -> None: ... method addActions (line 6279) | def addActions(self, actions: typing.Iterable[QAction]) -> None: ... method adjustSize (line 6280) | def adjustSize(self) -> None: ... method autoFillBackground (line 6281) | def autoFillBackground(self) -> bool: ... method boundingRect (line 6282) | def boundingRect(self) -> PySide2.QtCore.QRectF: ... method changeEvent (line 6283) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method close (line 6284) | def close(self) -> bool: ... method closeEvent (line 6285) | def closeEvent(self, event: PySide2.QtGui.QCloseEvent) -> None: ... method event (line 6286) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 6287) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 6288) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 6289) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusPolicy (line 6290) | def focusPolicy(self) -> PySide2.QtCore.Qt.FocusPolicy: ... method focusWidget (line 6291) | def focusWidget(self) -> QGraphicsWidget: ... method font (line 6292) | def font(self) -> PySide2.QtGui.QFont: ... method getContentsMargins (line 6293) | def getContentsMargins(self) -> tuple[float, float, float, float]: ... method getWindowFrameMargins (line 6294) | def getWindowFrameMargins(self) -> tuple[float, float, float, float]: ... method grabKeyboardEvent (line 6295) | def grabKeyboardEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method grabMouseEvent (line 6296) | def grabMouseEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method grabShortcut (line 6297) | def grabShortcut(self, sequence: PySide2.QtGui.QKeySequence | str, con... method hideEvent (line 6298) | def hideEvent(self, event: PySide2.QtGui.QHideEvent) -> None: ... method hoverLeaveEvent (line 6299) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method hoverMoveEvent (line 6300) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent) -> None: ... method initStyleOption (line 6301) | def initStyleOption(self, option: QStyleOption) -> None: ... method insertAction (line 6302) | def insertAction(self, before: QAction, action: QAction) -> None: ... method insertActions (line 6303) | def insertActions(self, before: QAction, actions: typing.Iterable[QAct... method isActiveWindow (line 6304) | def isActiveWindow(self) -> bool: ... method itemChange (line 6305) | def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: ... method layout (line 6306) | def layout(self) -> QGraphicsLayout: ... method layoutDirection (line 6307) | def layoutDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method moveEvent (line 6308) | def moveEvent(self, event: QGraphicsSceneMoveEvent) -> None: ... method paint (line 6309) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionG... method paintWindowFrame (line 6310) | def paintWindowFrame(self, painter: PySide2.QtGui.QPainter, option: QS... method palette (line 6311) | def palette(self) -> PySide2.QtGui.QPalette: ... method polishEvent (line 6312) | def polishEvent(self) -> None: ... method propertyChange (line 6313) | def propertyChange(self, propertyName: str, value: typing.Any) -> typi... method rect (line 6314) | def rect(self) -> PySide2.QtCore.QRectF: ... method releaseShortcut (line 6315) | def releaseShortcut(self, id: int) -> None: ... method removeAction (line 6316) | def removeAction(self, action: QAction) -> None: ... method resize (line 6318) | def resize(self, w: float, h: float) -> None: ... method resize (line 6320) | def resize(self, size: PySide2.QtCore.QSizeF) -> None: ... method resizeEvent (line 6321) | def resizeEvent(self, event: QGraphicsSceneResizeEvent) -> None: ... method sceneEvent (line 6322) | def sceneEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... method setAttribute (line 6323) | def setAttribute(self, attribute: PySide2.QtCore.Qt.WidgetAttribute, o... method setAutoFillBackground (line 6324) | def setAutoFillBackground(self, enabled: bool) -> None: ... method setContentsMargins (line 6326) | def setContentsMargins(self, left: float, top: float, right: float, bo... method setContentsMargins (line 6328) | def setContentsMargins(self, margins: PySide2.QtCore.QMarginsF) -> Non... method setFocusPolicy (line 6329) | def setFocusPolicy(self, policy: PySide2.QtCore.Qt.FocusPolicy) -> Non... method setFont (line 6330) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setGeometry (line 6332) | def setGeometry(self, x: float, y: float, w: float, h: float) -> None:... method setGeometry (line 6334) | def setGeometry(self, rect: PySide2.QtCore.QRectF) -> None: ... method setLayout (line 6335) | def setLayout(self, layout: QGraphicsLayout) -> None: ... method setLayoutDirection (line 6336) | def setLayoutDirection(self, direction: PySide2.QtCore.Qt.LayoutDirect... method setPalette (line 6337) | def setPalette(self, palette: PySide2.QtGui.QPalette) -> None: ... method setShortcutAutoRepeat (line 6338) | def setShortcutAutoRepeat(self, id: int, enabled: bool = ...) -> None:... method setShortcutEnabled (line 6339) | def setShortcutEnabled(self, id: int, enabled: bool = ...) -> None: ... method setStyle (line 6340) | def setStyle(self, style: QStyle) -> None: ... method setTabOrder (line 6342) | def setTabOrder(first: QGraphicsWidget, second: QGraphicsWidget) -> No... method setWindowFlags (line 6343) | def setWindowFlags(self, wFlags: PySide2.QtCore.Qt.WindowFlags | PySid... method setWindowFrameMargins (line 6345) | def setWindowFrameMargins(self, left: float, top: float, right: float,... method setWindowFrameMargins (line 6347) | def setWindowFrameMargins(self, margins: PySide2.QtCore.QMarginsF) -> ... method setWindowTitle (line 6348) | def setWindowTitle(self, title: str) -> None: ... method shape (line 6349) | def shape(self) -> PySide2.QtGui.QPainterPath: ... method showEvent (line 6350) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method size (line 6351) | def size(self) -> PySide2.QtCore.QSizeF: ... method sizeHint (line 6352) | def sizeHint(self, which: PySide2.QtCore.Qt.SizeHint, constraint: PySi... method style (line 6353) | def style(self) -> QStyle: ... method testAttribute (line 6354) | def testAttribute(self, attribute: PySide2.QtCore.Qt.WidgetAttribute) ... method type (line 6355) | def type(self) -> int: ... method ungrabKeyboardEvent (line 6356) | def ungrabKeyboardEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method ungrabMouseEvent (line 6357) | def ungrabMouseEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method unsetLayoutDirection (line 6358) | def unsetLayoutDirection(self) -> None: ... method unsetWindowFrameMargins (line 6359) | def unsetWindowFrameMargins(self) -> None: ... method updateGeometry (line 6360) | def updateGeometry(self) -> None: ... method windowFlags (line 6361) | def windowFlags(self) -> PySide2.QtCore.Qt.WindowFlags | PySide2.QtCor... method windowFrameEvent (line 6362) | def windowFrameEvent(self, e: PySide2.QtCore.QEvent) -> bool: ... method windowFrameGeometry (line 6363) | def windowFrameGeometry(self) -> PySide2.QtCore.QRectF: ... method windowFrameRect (line 6364) | def windowFrameRect(self) -> PySide2.QtCore.QRectF: ... method windowFrameSectionAt (line 6365) | def windowFrameSectionAt(self, pos: PySide2.QtCore.QPointF) -> PySide2... method windowTitle (line 6366) | def windowTitle(self) -> str: ... method windowType (line 6367) | def windowType(self) -> PySide2.QtCore.Qt.WindowType: ... class QGridLayout (line 6369) | class QGridLayout(QLayout): method __init__ (line 6372) | def __init__(self, parent: QWidget | None, destroyed: typing.Callable ... method __init__ (line 6374) | def __init__(self, destroyed: typing.Callable = ..., margin: int = ...... method addItem (line 6376) | def addItem(self, item: QLayoutItem, row: int, column: int, rowSpan: i... method addItem (line 6378) | def addItem(self, arg__1: QLayoutItem) -> None: ... method addLayout (line 6380) | def addLayout(self, arg__1: QLayout, row: int, column: int, rowSpan: i... method addLayout (line 6382) | def addLayout(self, arg__1: QLayout, row: int, column: int, alignment:... method addWidget (line 6384) | def addWidget(self, arg__1: QWidget, row: int, column: int, rowSpan: i... method addWidget (line 6386) | def addWidget(self, arg__1: QWidget, row: int, column: int, alignment:... method addWidget (line 6388) | def addWidget(self, w: QWidget) -> None: ... method cellRect (line 6389) | def cellRect(self, row: int, column: int) -> PySide2.QtCore.QRect: ... method columnCount (line 6390) | def columnCount(self) -> int: ... method columnMinimumWidth (line 6391) | def columnMinimumWidth(self, column: int) -> int: ... method columnStretch (line 6392) | def columnStretch(self, column: int) -> int: ... method count (line 6393) | def count(self) -> int: ... method expandingDirections (line 6394) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method getItemPosition (line 6395) | def getItemPosition(self, idx: int) -> tuple[int, int, int, int]: ... method hasHeightForWidth (line 6396) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 6397) | def heightForWidth(self, arg__1: int) -> int: ... method horizontalSpacing (line 6398) | def horizontalSpacing(self) -> int: ... method invalidate (line 6399) | def invalidate(self) -> None: ... method itemAt (line 6400) | def itemAt(self, index: int) -> QLayoutItem: ... method itemAtPosition (line 6401) | def itemAtPosition(self, row: int, column: int) -> QLayoutItem: ... method maximumSize (line 6402) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method minimumHeightForWidth (line 6403) | def minimumHeightForWidth(self, arg__1: int) -> int: ... method minimumSize (line 6404) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method originCorner (line 6405) | def originCorner(self) -> PySide2.QtCore.Qt.Corner: ... method rowCount (line 6406) | def rowCount(self) -> int: ... method rowMinimumHeight (line 6407) | def rowMinimumHeight(self, row: int) -> int: ... method rowStretch (line 6408) | def rowStretch(self, row: int) -> int: ... method setColumnMinimumWidth (line 6409) | def setColumnMinimumWidth(self, column: int, minSize: int) -> None: ... method setColumnStretch (line 6410) | def setColumnStretch(self, column: int, stretch: int) -> None: ... method setDefaultPositioning (line 6411) | def setDefaultPositioning(self, n: int, orient: PySide2.QtCore.Qt.Orie... method setGeometry (line 6412) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method setHorizontalSpacing (line 6413) | def setHorizontalSpacing(self, spacing: int) -> None: ... method setOriginCorner (line 6414) | def setOriginCorner(self, arg__1: PySide2.QtCore.Qt.Corner) -> None: ... method setRowMinimumHeight (line 6415) | def setRowMinimumHeight(self, row: int, minSize: int) -> None: ... method setRowStretch (line 6416) | def setRowStretch(self, row: int, stretch: int) -> None: ... method setSpacing (line 6417) | def setSpacing(self, spacing: int) -> None: ... method setVerticalSpacing (line 6418) | def setVerticalSpacing(self, spacing: int) -> None: ... method sizeHint (line 6419) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method spacing (line 6420) | def spacing(self) -> int: ... method takeAt (line 6421) | def takeAt(self, index: int) -> QLayoutItem: ... method verticalSpacing (line 6422) | def verticalSpacing(self) -> int: ... class QGroupBox (line 6424) | class QGroupBox(QWidget): method __init__ (line 6429) | def __init__(self, title: str, parent: QWidget | None = ..., acceptDro... method __init__ (line 6431) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method alignment (line 6432) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method changeEvent (line 6433) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method childEvent (line 6434) | def childEvent(self, event: PySide2.QtCore.QChildEvent) -> None: ... method event (line 6435) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 6436) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method initStyleOption (line 6437) | def initStyleOption(self, option: QStyleOptionGroupBox) -> None: ... method isCheckable (line 6438) | def isCheckable(self) -> bool: ... method isChecked (line 6439) | def isChecked(self) -> bool: ... method isFlat (line 6440) | def isFlat(self) -> bool: ... method minimumSizeHint (line 6441) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 6442) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 6443) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 6444) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method paintEvent (line 6445) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 6446) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method setAlignment (line 6447) | def setAlignment(self, alignment: int) -> None: ... method setCheckable (line 6448) | def setCheckable(self, checkable: bool) -> None: ... method setChecked (line 6449) | def setChecked(self, checked: bool) -> None: ... method setFlat (line 6450) | def setFlat(self, flat: bool) -> None: ... method setTitle (line 6451) | def setTitle(self, title: str) -> None: ... method title (line 6452) | def title(self) -> str: ... class QHBoxLayout (line 6454) | class QHBoxLayout(QBoxLayout): method __init__ (line 6457) | def __init__(self, parent: QWidget | None, destroyed: typing.Callable ... method __init__ (line 6459) | def __init__(self, destroyed: typing.Callable = ..., margin: int = ...... class QHeaderView (line 6461) | class QHeaderView(QAbstractItemView): class ResizeMode (line 6462) | class ResizeMode: method __init__ (line 6471) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6472) | def __add__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMo... method __and__ (line 6473) | def __and__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMo... method __bool__ (line 6474) | def __bool__(self) -> bool: ... method __eq__ (line 6475) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6476) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6477) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6478) | def __hash__(self) -> int: ... method __index__ (line 6479) | def __index__(self) -> int: ... method __int__ (line 6480) | def __int__(self) -> int: ... method __le__ (line 6481) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6482) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6483) | def __mul__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMo... method __ne__ (line 6484) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6485) | def __or__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMod... method __pos__ (line 6486) | def __pos__(self): ... method __radd__ (line 6487) | def __radd__(self, other: typing.SupportsInt) -> QHeaderView.ResizeM... method __rand__ (line 6488) | def __rand__(self, other: typing.SupportsInt) -> QHeaderView.ResizeM... method __rmul__ (line 6489) | def __rmul__(self, other: typing.SupportsInt) -> QHeaderView.ResizeM... method __ror__ (line 6490) | def __ror__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMo... method __rsub__ (line 6491) | def __rsub__(self, other: typing.SupportsInt) -> QHeaderView.ResizeM... method __rxor__ (line 6492) | def __rxor__(self, other: typing.SupportsInt) -> QHeaderView.ResizeM... method __sub__ (line 6493) | def __sub__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMo... method __xor__ (line 6494) | def __xor__(self, other: typing.SupportsInt) -> QHeaderView.ResizeMo... method __init__ (line 6511) | def __init__(self, orientation: PySide2.QtCore.Qt.Orientation, parent:... method cascadingSectionResizes (line 6512) | def cascadingSectionResizes(self) -> bool: ... method count (line 6513) | def count(self) -> int: ... method currentChanged (line 6514) | def currentChanged(self, current: PySide2.QtCore.QModelIndex, old: PyS... method dataChanged (line 6515) | def dataChanged(self, topLeft: PySide2.QtCore.QModelIndex, bottomRight... method defaultAlignment (line 6516) | def defaultAlignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.Qt... method defaultSectionSize (line 6517) | def defaultSectionSize(self) -> int: ... method doItemsLayout (line 6518) | def doItemsLayout(self) -> None: ... method event (line 6519) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method headerDataChanged (line 6520) | def headerDataChanged(self, orientation: PySide2.QtCore.Qt.Orientation... method hiddenSectionCount (line 6521) | def hiddenSectionCount(self) -> int: ... method hideSection (line 6522) | def hideSection(self, logicalIndex: int) -> None: ... method highlightSections (line 6523) | def highlightSections(self) -> bool: ... method horizontalOffset (line 6524) | def horizontalOffset(self) -> int: ... method indexAt (line 6525) | def indexAt(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QModelIn... method initStyleOption (line 6527) | def initStyleOption(self, option: QStyleOptionFrame) -> None: ... method initStyleOption (line 6529) | def initStyleOption(self, option: QStyleOptionHeader) -> None: ... method initialize (line 6530) | def initialize(self) -> None: ... method initializeSections (line 6532) | def initializeSections(self, start: int, end: int) -> None: ... method initializeSections (line 6534) | def initializeSections(self) -> None: ... method isFirstSectionMovable (line 6535) | def isFirstSectionMovable(self) -> bool: ... method isIndexHidden (line 6536) | def isIndexHidden(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isSectionHidden (line 6537) | def isSectionHidden(self, logicalIndex: int) -> bool: ... method isSortIndicatorShown (line 6538) | def isSortIndicatorShown(self) -> bool: ... method length (line 6539) | def length(self) -> int: ... method logicalIndex (line 6540) | def logicalIndex(self, visualIndex: int) -> int: ... method logicalIndexAt (line 6542) | def logicalIndexAt(self, x: int, y: int) -> int: ... method logicalIndexAt (line 6544) | def logicalIndexAt(self, position: int) -> int: ... method logicalIndexAt (line 6546) | def logicalIndexAt(self, pos: PySide2.QtCore.QPoint) -> int: ... method maximumSectionSize (line 6547) | def maximumSectionSize(self) -> int: ... method minimumSectionSize (line 6548) | def minimumSectionSize(self) -> int: ... method mouseDoubleClickEvent (line 6549) | def mouseDoubleClickEvent(self, e: PySide2.QtGui.QMouseEvent) -> None:... method mouseMoveEvent (line 6550) | def mouseMoveEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 6551) | def mousePressEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 6552) | def mouseReleaseEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method moveCursor (line 6553) | def moveCursor(self, arg__1: QAbstractItemView.CursorAction, arg__2: P... method moveSection (line 6554) | def moveSection(self, from_: int, to: int) -> None: ... method offset (line 6555) | def offset(self) -> int: ... method orientation (line 6556) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method paintEvent (line 6557) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method paintSection (line 6558) | def paintSection(self, painter: PySide2.QtGui.QPainter, rect: PySide2.... method reset (line 6559) | def reset(self) -> None: ... method resetDefaultSectionSize (line 6560) | def resetDefaultSectionSize(self) -> None: ... method resizeContentsPrecision (line 6561) | def resizeContentsPrecision(self) -> int: ... method resizeSection (line 6562) | def resizeSection(self, logicalIndex: int, size: int) -> None: ... method resizeSections (line 6564) | def resizeSections(self, mode: QHeaderView.ResizeMode) -> None: ... method resizeSections (line 6566) | def resizeSections(self) -> None: ... method restoreState (line 6567) | def restoreState(self, state: PySide2.QtCore.QByteArray | bytes) -> bo... method rowsInserted (line 6568) | def rowsInserted(self, parent: PySide2.QtCore.QModelIndex, start: int,... method saveState (line 6569) | def saveState(self) -> PySide2.QtCore.QByteArray: ... method scrollContentsBy (line 6570) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method scrollTo (line 6571) | def scrollTo(self, index: PySide2.QtCore.QModelIndex, hint: QAbstractI... method sectionPosition (line 6572) | def sectionPosition(self, logicalIndex: int) -> int: ... method sectionResizeMode (line 6573) | def sectionResizeMode(self, logicalIndex: int) -> QHeaderView.ResizeMo... method sectionSize (line 6574) | def sectionSize(self, logicalIndex: int) -> int: ... method sectionSizeFromContents (line 6575) | def sectionSizeFromContents(self, logicalIndex: int) -> PySide2.QtCore... method sectionSizeHint (line 6576) | def sectionSizeHint(self, logicalIndex: int) -> int: ... method sectionViewportPosition (line 6577) | def sectionViewportPosition(self, logicalIndex: int) -> int: ... method sectionsAboutToBeRemoved (line 6578) | def sectionsAboutToBeRemoved(self, parent: PySide2.QtCore.QModelIndex,... method sectionsClickable (line 6579) | def sectionsClickable(self) -> bool: ... method sectionsHidden (line 6580) | def sectionsHidden(self) -> bool: ... method sectionsInserted (line 6581) | def sectionsInserted(self, parent: PySide2.QtCore.QModelIndex, logical... method sectionsMovable (line 6582) | def sectionsMovable(self) -> bool: ... method sectionsMoved (line 6583) | def sectionsMoved(self) -> bool: ... method setCascadingSectionResizes (line 6584) | def setCascadingSectionResizes(self, enable: bool) -> None: ... method setDefaultAlignment (line 6585) | def setDefaultAlignment(self, alignment: PySide2.QtCore.Qt.Alignment |... method setDefaultSectionSize (line 6586) | def setDefaultSectionSize(self, size: int) -> None: ... method setFirstSectionMovable (line 6587) | def setFirstSectionMovable(self, movable: bool) -> None: ... method setHighlightSections (line 6588) | def setHighlightSections(self, highlight: bool) -> None: ... method setMaximumSectionSize (line 6589) | def setMaximumSectionSize(self, size: int) -> None: ... method setMinimumSectionSize (line 6590) | def setMinimumSectionSize(self, size: int) -> None: ... method setModel (line 6591) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setOffset (line 6592) | def setOffset(self, offset: int) -> None: ... method setOffsetToLastSection (line 6593) | def setOffsetToLastSection(self) -> None: ... method setOffsetToSectionPosition (line 6594) | def setOffsetToSectionPosition(self, visualIndex: int) -> None: ... method setResizeContentsPrecision (line 6595) | def setResizeContentsPrecision(self, precision: int) -> None: ... method setSectionHidden (line 6596) | def setSectionHidden(self, logicalIndex: int, hide: bool) -> None: ... method setSectionResizeMode (line 6598) | def setSectionResizeMode(self, logicalIndex: int, mode: QHeaderView.Re... method setSectionResizeMode (line 6600) | def setSectionResizeMode(self, mode: QHeaderView.ResizeMode) -> None: ... method setSectionsClickable (line 6601) | def setSectionsClickable(self, clickable: bool) -> None: ... method setSectionsMovable (line 6602) | def setSectionsMovable(self, movable: bool) -> None: ... method setSelection (line 6603) | def setSelection(self, rect: PySide2.QtCore.QRect, flags: PySide2.QtCo... method setSortIndicator (line 6604) | def setSortIndicator(self, logicalIndex: int, order: PySide2.QtCore.Qt... method setSortIndicatorShown (line 6605) | def setSortIndicatorShown(self, show: bool) -> None: ... method setStretchLastSection (line 6606) | def setStretchLastSection(self, stretch: bool) -> None: ... method setVisible (line 6607) | def setVisible(self, v: bool) -> None: ... method showSection (line 6608) | def showSection(self, logicalIndex: int) -> None: ... method sizeHint (line 6609) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sortIndicatorOrder (line 6610) | def sortIndicatorOrder(self) -> PySide2.QtCore.Qt.SortOrder: ... method sortIndicatorSection (line 6611) | def sortIndicatorSection(self) -> int: ... method stretchLastSection (line 6612) | def stretchLastSection(self) -> bool: ... method stretchSectionCount (line 6613) | def stretchSectionCount(self) -> int: ... method swapSections (line 6614) | def swapSections(self, first: int, second: int) -> None: ... method updateGeometries (line 6615) | def updateGeometries(self) -> None: ... method updateSection (line 6616) | def updateSection(self, logicalIndex: int) -> None: ... method verticalOffset (line 6617) | def verticalOffset(self) -> int: ... method viewportEvent (line 6618) | def viewportEvent(self, e: PySide2.QtCore.QEvent) -> bool: ... method visualIndex (line 6619) | def visualIndex(self, logicalIndex: int) -> int: ... method visualIndexAt (line 6620) | def visualIndexAt(self, position: int) -> int: ... method visualRect (line 6621) | def visualRect(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method visualRegionForSelection (line 6622) | def visualRegionForSelection(self, selection: PySide2.QtCore.QItemSele... class QInputDialog (line 6624) | class QInputDialog(QDialog): class InputDialogOption (line 6625) | class InputDialogOption: method __init__ (line 6632) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6633) | def __add__(self, other: typing.SupportsInt) -> QInputDialog.InputDi... method __and__ (line 6634) | def __and__(self, other: typing.SupportsInt) -> QInputDialog.InputDi... method __bool__ (line 6635) | def __bool__(self) -> bool: ... method __eq__ (line 6636) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6637) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6638) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6639) | def __hash__(self) -> int: ... method __index__ (line 6640) | def __index__(self) -> int: ... method __int__ (line 6641) | def __int__(self) -> int: ... method __le__ (line 6642) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6643) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6644) | def __mul__(self, other: typing.SupportsInt) -> QInputDialog.InputDi... method __ne__ (line 6645) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6646) | def __or__(self, other: typing.SupportsInt) -> QInputDialog.InputDia... method __pos__ (line 6647) | def __pos__(self): ... method __radd__ (line 6648) | def __radd__(self, other: typing.SupportsInt) -> QInputDialog.InputD... method __rand__ (line 6649) | def __rand__(self, other: typing.SupportsInt) -> QInputDialog.InputD... method __rmul__ (line 6650) | def __rmul__(self, other: typing.SupportsInt) -> QInputDialog.InputD... method __ror__ (line 6651) | def __ror__(self, other: typing.SupportsInt) -> QInputDialog.InputDi... method __rsub__ (line 6652) | def __rsub__(self, other: typing.SupportsInt) -> QInputDialog.InputD... method __rxor__ (line 6653) | def __rxor__(self, other: typing.SupportsInt) -> QInputDialog.InputD... method __sub__ (line 6654) | def __sub__(self, other: typing.SupportsInt) -> QInputDialog.InputDi... method __xor__ (line 6655) | def __xor__(self, other: typing.SupportsInt) -> QInputDialog.InputDi... class InputMode (line 6657) | class InputMode: method __init__ (line 6664) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6665) | def __add__(self, other: typing.SupportsInt) -> QInputDialog.InputMo... method __and__ (line 6666) | def __and__(self, other: typing.SupportsInt) -> QInputDialog.InputMo... method __bool__ (line 6667) | def __bool__(self) -> bool: ... method __eq__ (line 6668) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6669) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6670) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6671) | def __hash__(self) -> int: ... method __index__ (line 6672) | def __index__(self) -> int: ... method __int__ (line 6673) | def __int__(self) -> int: ... method __le__ (line 6674) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6675) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6676) | def __mul__(self, other: typing.SupportsInt) -> QInputDialog.InputMo... method __ne__ (line 6677) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6678) | def __or__(self, other: typing.SupportsInt) -> QInputDialog.InputMod... method __pos__ (line 6679) | def __pos__(self): ... method __radd__ (line 6680) | def __radd__(self, other: typing.SupportsInt) -> QInputDialog.InputM... method __rand__ (line 6681) | def __rand__(self, other: typing.SupportsInt) -> QInputDialog.InputM... method __rmul__ (line 6682) | def __rmul__(self, other: typing.SupportsInt) -> QInputDialog.InputM... method __ror__ (line 6683) | def __ror__(self, other: typing.SupportsInt) -> QInputDialog.InputMo... method __rsub__ (line 6684) | def __rsub__(self, other: typing.SupportsInt) -> QInputDialog.InputM... method __rxor__ (line 6685) | def __rxor__(self, other: typing.SupportsInt) -> QInputDialog.InputM... method __sub__ (line 6686) | def __sub__(self, other: typing.SupportsInt) -> QInputDialog.InputMo... method __xor__ (line 6687) | def __xor__(self, other: typing.SupportsInt) -> QInputDialog.InputMo... method __init__ (line 6701) | def __init__(self, parent: QWidget | None = ..., flags: PySide2.QtCore... method cancelButtonText (line 6702) | def cancelButtonText(self) -> str: ... method comboBoxItems (line 6703) | def comboBoxItems(self) -> list[str]: ... method done (line 6704) | def done(self, result: int) -> None: ... method doubleDecimals (line 6705) | def doubleDecimals(self) -> int: ... method doubleMaximum (line 6706) | def doubleMaximum(self) -> float: ... method doubleMinimum (line 6707) | def doubleMinimum(self) -> float: ... method doubleStep (line 6708) | def doubleStep(self) -> float: ... method doubleValue (line 6709) | def doubleValue(self) -> float: ... method getDouble (line 6712) | def getDouble(parent: QWidget | None, title: str, label: str, value: f... method getDouble (line 6715) | def getDouble(parent: QWidget | None, title: str, label: str, value: f... method getInt (line 6717) | def getInt(parent: QWidget | None, title: str, label: str, value: int,... method getItem (line 6719) | def getItem(parent: QWidget | None, title: str, label: str, items: typ... method getMultiLineText (line 6721) | def getMultiLineText(parent: QWidget | None, title: str, label: str, t... method getText (line 6723) | def getText(parent: QWidget | None, title: str, label: str, echo: QLin... method inputMode (line 6724) | def inputMode(self) -> QInputDialog.InputMode: ... method intMaximum (line 6725) | def intMaximum(self) -> int: ... method intMinimum (line 6726) | def intMinimum(self) -> int: ... method intStep (line 6727) | def intStep(self) -> int: ... method intValue (line 6728) | def intValue(self) -> int: ... method isComboBoxEditable (line 6729) | def isComboBoxEditable(self) -> bool: ... method labelText (line 6730) | def labelText(self) -> str: ... method minimumSizeHint (line 6731) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method okButtonText (line 6732) | def okButtonText(self) -> str: ... method open (line 6734) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 6736) | def open(self) -> None: ... method setCancelButtonText (line 6737) | def setCancelButtonText(self, text: str) -> None: ... method setComboBoxEditable (line 6738) | def setComboBoxEditable(self, editable: bool) -> None: ... method setComboBoxItems (line 6739) | def setComboBoxItems(self, items: typing.Iterable[str]) -> None: ... method setDoubleDecimals (line 6740) | def setDoubleDecimals(self, decimals: int) -> None: ... method setDoubleMaximum (line 6741) | def setDoubleMaximum(self, max: float) -> None: ... method setDoubleMinimum (line 6742) | def setDoubleMinimum(self, min: float) -> None: ... method setDoubleRange (line 6743) | def setDoubleRange(self, min: float, max: float) -> None: ... method setDoubleStep (line 6744) | def setDoubleStep(self, step: float) -> None: ... method setDoubleValue (line 6745) | def setDoubleValue(self, value: float) -> None: ... method setInputMode (line 6746) | def setInputMode(self, mode: QInputDialog.InputMode) -> None: ... method setIntMaximum (line 6747) | def setIntMaximum(self, max: int) -> None: ... method setIntMinimum (line 6748) | def setIntMinimum(self, min: int) -> None: ... method setIntRange (line 6749) | def setIntRange(self, min: int, max: int) -> None: ... method setIntStep (line 6750) | def setIntStep(self, step: int) -> None: ... method setIntValue (line 6751) | def setIntValue(self, value: int) -> None: ... method setLabelText (line 6752) | def setLabelText(self, text: str) -> None: ... method setOkButtonText (line 6753) | def setOkButtonText(self, text: str) -> None: ... method setOption (line 6754) | def setOption(self, option: QInputDialog.InputDialogOption, on: bool =... method setTextEchoMode (line 6755) | def setTextEchoMode(self, mode: QLineEdit.EchoMode) -> None: ... method setTextValue (line 6756) | def setTextValue(self, text: str) -> None: ... method setVisible (line 6757) | def setVisible(self, visible: bool) -> None: ... method sizeHint (line 6758) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method testOption (line 6759) | def testOption(self, option: QInputDialog.InputDialogOption) -> bool: ... method textEchoMode (line 6760) | def textEchoMode(self) -> QLineEdit.EchoMode: ... method textValue (line 6761) | def textValue(self) -> str: ... class QItemDelegate (line 6763) | class QItemDelegate(QAbstractItemDelegate): method __init__ (line 6765) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., clippi... method createEditor (line 6766) | def createEditor(self, parent: QWidget | None, option: QStyleOptionVie... method decoration (line 6767) | def decoration(self, option: QStyleOptionViewItem, variant: typing.Any... method doCheck (line 6768) | def doCheck(self, option: QStyleOptionViewItem, bounding: PySide2.QtCo... method drawBackground (line 6769) | def drawBackground(self, painter: PySide2.QtGui.QPainter, option: QSty... method drawCheck (line 6770) | def drawCheck(self, painter: PySide2.QtGui.QPainter, option: QStyleOpt... method drawDecoration (line 6771) | def drawDecoration(self, painter: PySide2.QtGui.QPainter, option: QSty... method drawDisplay (line 6772) | def drawDisplay(self, painter: PySide2.QtGui.QPainter, option: QStyleO... method drawFocus (line 6773) | def drawFocus(self, painter: PySide2.QtGui.QPainter, option: QStyleOpt... method editorEvent (line 6774) | def editorEvent(self, event: PySide2.QtCore.QEvent, model: PySide2.QtC... method eventFilter (line 6775) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method hasClipping (line 6776) | def hasClipping(self) -> bool: ... method itemEditorFactory (line 6777) | def itemEditorFactory(self) -> QItemEditorFactory: ... method paint (line 6778) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionV... method rect (line 6779) | def rect(self, option: QStyleOptionViewItem, index: PySide2.QtCore.QMo... method selectedPixmap (line 6781) | def selectedPixmap(pixmap: PySide2.QtGui.QPixmap, palette: PySide2.QtG... method setClipping (line 6782) | def setClipping(self, clip: bool) -> None: ... method setEditorData (line 6783) | def setEditorData(self, editor: QWidget, index: PySide2.QtCore.QModelI... method setItemEditorFactory (line 6784) | def setItemEditorFactory(self, factory: QItemEditorFactory) -> None: ... method setModelData (line 6785) | def setModelData(self, editor: QWidget, model: PySide2.QtCore.QAbstrac... method setOptions (line 6786) | def setOptions(self, index: PySide2.QtCore.QModelIndex, option: QStyle... method sizeHint (line 6787) | def sizeHint(self, option: QStyleOptionViewItem, index: PySide2.QtCore... method textRectangle (line 6788) | def textRectangle(self, painter: PySide2.QtGui.QPainter, rect: PySide2... method updateEditorGeometry (line 6789) | def updateEditorGeometry(self, editor: QWidget, option: QStyleOptionVi... class QItemEditorCreatorBase (line 6791) | class QItemEditorCreatorBase(shiboken2.Object): method __init__ (line 6792) | def __init__(self) -> None: ... method createWidget (line 6793) | def createWidget(self, parent: QWidget | None) -> QWidget: ... method valuePropertyName (line 6794) | def valuePropertyName(self) -> PySide2.QtCore.QByteArray: ... class QItemEditorFactory (line 6796) | class QItemEditorFactory(shiboken2.Object): method __init__ (line 6797) | def __init__(self) -> None: ... method createEditor (line 6798) | def createEditor(self, userType: int, parent: QWidget | None) -> QWidg... method defaultFactory (line 6800) | def defaultFactory() -> QItemEditorFactory: ... method registerEditor (line 6801) | def registerEditor(self, userType: int, creator: QItemEditorCreatorBas... method setDefaultFactory (line 6803) | def setDefaultFactory(factory: QItemEditorFactory) -> None: ... method valuePropertyName (line 6804) | def valuePropertyName(self, userType: int) -> PySide2.QtCore.QByteArra... class QKeyEventTransition (line 6806) | class QKeyEventTransition(PySide2.QtCore.QEventTransition): method __init__ (line 6809) | def __init__(self, object: PySide2.QtCore.QObject, type: PySide2.QtCor... method __init__ (line 6811) | def __init__(self, sourceState: PySide2.QtCore.QState | None = ..., de... method eventTest (line 6812) | def eventTest(self, event: PySide2.QtCore.QEvent) -> bool: ... method key (line 6813) | def key(self) -> int: ... method modifierMask (line 6814) | def modifierMask(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide... method onTransition (line 6815) | def onTransition(self, event: PySide2.QtCore.QEvent) -> None: ... method setKey (line 6816) | def setKey(self, key: int) -> None: ... method setModifierMask (line 6817) | def setModifierMask(self, modifiers: PySide2.QtCore.Qt.KeyboardModifie... class QKeySequenceEdit (line 6819) | class QKeySequenceEdit(QWidget): method __init__ (line 6824) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method __init__ (line 6826) | def __init__(self, keySequence: PySide2.QtGui.QKeySequence | str, pare... method clear (line 6827) | def clear(self) -> None: ... method event (line 6828) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method keyPressEvent (line 6829) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 6830) | def keyReleaseEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method keySequence (line 6831) | def keySequence(self) -> PySide2.QtGui.QKeySequence: ... method setKeySequence (line 6832) | def setKeySequence(self, keySequence: PySide2.QtGui.QKeySequence | str... method timerEvent (line 6833) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... class QLCDNumber (line 6835) | class QLCDNumber(QFrame): class Mode (line 6836) | class Mode: method __init__ (line 6844) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6845) | def __add__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __and__ (line 6846) | def __and__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __bool__ (line 6847) | def __bool__(self) -> bool: ... method __eq__ (line 6848) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6849) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6850) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6851) | def __hash__(self) -> int: ... method __index__ (line 6852) | def __index__(self) -> int: ... method __int__ (line 6853) | def __int__(self) -> int: ... method __le__ (line 6854) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6855) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6856) | def __mul__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __ne__ (line 6857) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6858) | def __or__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __pos__ (line 6859) | def __pos__(self): ... method __radd__ (line 6860) | def __radd__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __rand__ (line 6861) | def __rand__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __rmul__ (line 6862) | def __rmul__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __ror__ (line 6863) | def __ror__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __rsub__ (line 6864) | def __rsub__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __rxor__ (line 6865) | def __rxor__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __sub__ (line 6866) | def __sub__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... method __xor__ (line 6867) | def __xor__(self, other: typing.SupportsInt) -> QLCDNumber.Mode: ... class SegmentStyle (line 6869) | class SegmentStyle: method __init__ (line 6876) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 6877) | def __add__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSt... method __and__ (line 6878) | def __and__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSt... method __bool__ (line 6879) | def __bool__(self) -> bool: ... method __eq__ (line 6880) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6881) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6882) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6883) | def __hash__(self) -> int: ... method __index__ (line 6884) | def __index__(self) -> int: ... method __int__ (line 6885) | def __int__(self) -> int: ... method __le__ (line 6886) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6887) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6888) | def __mul__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSt... method __ne__ (line 6889) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6890) | def __or__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSty... method __pos__ (line 6891) | def __pos__(self): ... method __radd__ (line 6892) | def __radd__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentS... method __rand__ (line 6893) | def __rand__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentS... method __rmul__ (line 6894) | def __rmul__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentS... method __ror__ (line 6895) | def __ror__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSt... method __rsub__ (line 6896) | def __rsub__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentS... method __rxor__ (line 6897) | def __rxor__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentS... method __sub__ (line 6898) | def __sub__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSt... method __xor__ (line 6899) | def __xor__(self, other: typing.SupportsInt) -> QLCDNumber.SegmentSt... method __init__ (line 6910) | def __init__(self, numDigits: int, parent: QWidget | None = ..., accep... method __init__ (line 6912) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method checkOverflow (line 6914) | def checkOverflow(self, num: float) -> bool: ... method checkOverflow (line 6916) | def checkOverflow(self, num: int) -> bool: ... # type: ignore[overloa... method digitCount (line 6917) | def digitCount(self) -> int: ... method display (line 6919) | def display(self, str: str) -> None: ... method display (line 6921) | def display(self, num: float) -> None: ... method display (line 6923) | def display(self, num: int) -> None: ... # type: ignore[overload-cann... method event (line 6924) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method intValue (line 6925) | def intValue(self) -> int: ... method mode (line 6926) | def mode(self) -> QLCDNumber.Mode: ... method paintEvent (line 6927) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method segmentStyle (line 6928) | def segmentStyle(self) -> QLCDNumber.SegmentStyle: ... method setBinMode (line 6929) | def setBinMode(self) -> None: ... method setDecMode (line 6930) | def setDecMode(self) -> None: ... method setDigitCount (line 6931) | def setDigitCount(self, nDigits: int) -> None: ... method setHexMode (line 6932) | def setHexMode(self) -> None: ... method setMode (line 6933) | def setMode(self, arg__1: QLCDNumber.Mode) -> None: ... method setOctMode (line 6934) | def setOctMode(self) -> None: ... method setSegmentStyle (line 6935) | def setSegmentStyle(self, arg__1: QLCDNumber.SegmentStyle) -> None: ... method setSmallDecimalPoint (line 6936) | def setSmallDecimalPoint(self, arg__1: bool) -> None: ... method sizeHint (line 6937) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method smallDecimalPoint (line 6938) | def smallDecimalPoint(self) -> bool: ... method value (line 6939) | def value(self) -> float: ... class QLabel (line 6941) | class QLabel(QFrame): method __init__ (line 6946) | def __init__(self, text: str, parent: QWidget | None = ..., f: PySide2... method __init__ (line 6948) | def __init__(self, parent: QWidget | None = ..., f: PySide2.QtCore.Qt.... method alignment (line 6949) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method buddy (line 6950) | def buddy(self) -> QWidget: ... method changeEvent (line 6951) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method clear (line 6952) | def clear(self) -> None: ... method contextMenuEvent (line 6953) | def contextMenuEvent(self, ev: PySide2.QtGui.QContextMenuEvent) -> Non... method event (line 6954) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 6955) | def focusInEvent(self, ev: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 6956) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 6957) | def focusOutEvent(self, ev: PySide2.QtGui.QFocusEvent) -> None: ... method hasScaledContents (line 6958) | def hasScaledContents(self) -> bool: ... method hasSelectedText (line 6959) | def hasSelectedText(self) -> bool: ... method heightForWidth (line 6960) | def heightForWidth(self, arg__1: int) -> int: ... method indent (line 6961) | def indent(self) -> int: ... method keyPressEvent (line 6962) | def keyPressEvent(self, ev: PySide2.QtGui.QKeyEvent) -> None: ... method margin (line 6963) | def margin(self) -> int: ... method minimumSizeHint (line 6964) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 6965) | def mouseMoveEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 6966) | def mousePressEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 6967) | def mouseReleaseEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method movie (line 6968) | def movie(self) -> PySide2.QtGui.QMovie: ... method openExternalLinks (line 6969) | def openExternalLinks(self) -> bool: ... method paintEvent (line 6970) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method picture (line 6971) | def picture(self) -> PySide2.QtGui.QPicture: ... method pixmap (line 6972) | def pixmap(self) -> PySide2.QtGui.QPixmap: ... method selectedText (line 6973) | def selectedText(self) -> str: ... method selectionStart (line 6974) | def selectionStart(self) -> int: ... method setAlignment (line 6975) | def setAlignment(self, arg__1: PySide2.QtCore.Qt.Alignment | PySide2.Q... method setBuddy (line 6976) | def setBuddy(self, arg__1: QWidget) -> None: ... method setIndent (line 6977) | def setIndent(self, arg__1: int) -> None: ... method setMargin (line 6978) | def setMargin(self, arg__1: int) -> None: ... method setMovie (line 6979) | def setMovie(self, movie: PySide2.QtGui.QMovie) -> None: ... method setNum (line 6981) | def setNum(self, arg__1: float) -> None: ... method setNum (line 6983) | def setNum(self, arg__1: int) -> None: ... # type: ignore[overload-ca... method setOpenExternalLinks (line 6984) | def setOpenExternalLinks(self, open: bool) -> None: ... method setPicture (line 6985) | def setPicture(self, arg__1: PySide2.QtGui.QPicture) -> None: ... method setPixmap (line 6986) | def setPixmap(self, arg__1: PySide2.QtGui.QPixmap | None) -> None: ... method setScaledContents (line 6987) | def setScaledContents(self, arg__1: bool) -> None: ... method setSelection (line 6988) | def setSelection(self, arg__1: int, arg__2: int) -> None: ... method setText (line 6989) | def setText(self, arg__1: str) -> None: ... method setTextFormat (line 6990) | def setTextFormat(self, arg__1: PySide2.QtCore.Qt.TextFormat) -> None:... method setTextInteractionFlags (line 6991) | def setTextInteractionFlags(self, flags: PySide2.QtCore.Qt.TextInterac... method setWordWrap (line 6992) | def setWordWrap(self, on: bool) -> None: ... method sizeHint (line 6993) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method text (line 6994) | def text(self) -> str: ... method textFormat (line 6995) | def textFormat(self) -> PySide2.QtCore.Qt.TextFormat: ... method textInteractionFlags (line 6996) | def textInteractionFlags(self) -> PySide2.QtCore.Qt.TextInteractionFla... method wordWrap (line 6997) | def wordWrap(self) -> bool: ... class QLayout (line 6999) | class QLayout(PySide2.QtCore.QObject, QLayoutItem): class SizeConstraint (line 7000) | class SizeConstraint: method __init__ (line 7010) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7011) | def __add__(self, other: typing.SupportsInt) -> QLayout.SizeConstrai... method __and__ (line 7012) | def __and__(self, other: typing.SupportsInt) -> QLayout.SizeConstrai... method __bool__ (line 7013) | def __bool__(self) -> bool: ... method __eq__ (line 7014) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7015) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7016) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7017) | def __hash__(self) -> int: ... method __index__ (line 7018) | def __index__(self) -> int: ... method __int__ (line 7019) | def __int__(self) -> int: ... method __le__ (line 7020) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7021) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7022) | def __mul__(self, other: typing.SupportsInt) -> QLayout.SizeConstrai... method __ne__ (line 7023) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7024) | def __or__(self, other: typing.SupportsInt) -> QLayout.SizeConstrain... method __pos__ (line 7025) | def __pos__(self): ... method __radd__ (line 7026) | def __radd__(self, other: typing.SupportsInt) -> QLayout.SizeConstra... method __rand__ (line 7027) | def __rand__(self, other: typing.SupportsInt) -> QLayout.SizeConstra... method __rmul__ (line 7028) | def __rmul__(self, other: typing.SupportsInt) -> QLayout.SizeConstra... method __ror__ (line 7029) | def __ror__(self, other: typing.SupportsInt) -> QLayout.SizeConstrai... method __rsub__ (line 7030) | def __rsub__(self, other: typing.SupportsInt) -> QLayout.SizeConstra... method __rxor__ (line 7031) | def __rxor__(self, other: typing.SupportsInt) -> QLayout.SizeConstra... method __sub__ (line 7032) | def __sub__(self, other: typing.SupportsInt) -> QLayout.SizeConstrai... method __xor__ (line 7033) | def __xor__(self, other: typing.SupportsInt) -> QLayout.SizeConstrai... method __init__ (line 7042) | def __init__(self, parent: QWidget | None, destroyed: typing.Callable ... method __init__ (line 7044) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method activate (line 7045) | def activate(self) -> bool: ... method addChildLayout (line 7046) | def addChildLayout(self, l: QLayout) -> None: ... method addChildWidget (line 7047) | def addChildWidget(self, w: QWidget) -> None: ... method addItem (line 7048) | def addItem(self, arg__1: QLayoutItem) -> None: ... method addWidget (line 7049) | def addWidget(self, w: QWidget) -> None: ... method adoptLayout (line 7050) | def adoptLayout(self, layout: QLayout) -> bool: ... method alignmentRect (line 7051) | def alignmentRect(self, arg__1: PySide2.QtCore.QRect) -> PySide2.QtCor... method childEvent (line 7052) | def childEvent(self, e: PySide2.QtCore.QChildEvent) -> None: ... method closestAcceptableSize (line 7054) | def closestAcceptableSize(w: QWidget, s: PySide2.QtCore.QSize) -> PySi... method contentsMargins (line 7055) | def contentsMargins(self) -> PySide2.QtCore.QMargins: ... method contentsRect (line 7056) | def contentsRect(self) -> PySide2.QtCore.QRect: ... method controlTypes (line 7057) | def controlTypes(self) -> QSizePolicy.ControlTypes | QSizePolicy.Contr... method count (line 7058) | def count(self) -> int: ... method expandingDirections (line 7059) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method geometry (line 7060) | def geometry(self) -> PySide2.QtCore.QRect: ... method getContentsMargins (line 7061) | def getContentsMargins(self) -> tuple[int, int, int, int]: ... method indexOf (line 7063) | def indexOf(self, arg__1: QLayoutItem) -> int: ... method indexOf (line 7065) | def indexOf(self, arg__1: QWidget) -> int: ... method invalidate (line 7066) | def invalidate(self) -> None: ... method isEmpty (line 7067) | def isEmpty(self) -> bool: ... method isEnabled (line 7068) | def isEnabled(self) -> bool: ... method itemAt (line 7069) | def itemAt(self, index: int) -> QLayoutItem | None: ... method layout (line 7070) | def layout(self) -> QLayout: ... method margin (line 7071) | def margin(self) -> int: ... method maximumSize (line 7072) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method menuBar (line 7073) | def menuBar(self) -> QWidget: ... method minimumSize (line 7074) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method parentWidget (line 7075) | def parentWidget(self) -> QWidget: ... method removeItem (line 7076) | def removeItem(self, arg__1: QLayoutItem) -> None: ... method removeWidget (line 7077) | def removeWidget(self, w: QWidget) -> None: ... method replaceWidget (line 7078) | def replaceWidget(self, from_: QWidget, to: QWidget, options: PySide2.... method setAlignment (line 7080) | def setAlignment(self, w: QWidget, alignment: PySide2.QtCore.Qt.Alignm... method setAlignment (line 7082) | def setAlignment(self, l: QLayout, alignment: PySide2.QtCore.Qt.Alignm... method setAlignment (line 7084) | def setAlignment(self, arg__1: PySide2.QtCore.Qt.Alignment | PySide2.Q... method setContentsMargins (line 7086) | def setContentsMargins(self, left: int, top: int, right: int, bottom: ... method setContentsMargins (line 7088) | def setContentsMargins(self, margins: PySide2.QtCore.QMargins) -> None... method setEnabled (line 7089) | def setEnabled(self, arg__1: bool) -> None: ... method setGeometry (line 7090) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method setMargin (line 7091) | def setMargin(self, arg__1: int) -> None: ... method setMenuBar (line 7092) | def setMenuBar(self, w: QWidget) -> None: ... method setSizeConstraint (line 7093) | def setSizeConstraint(self, arg__1: QLayout.SizeConstraint) -> None: ... method setSpacing (line 7094) | def setSpacing(self, arg__1: int) -> None: ... method sizeConstraint (line 7095) | def sizeConstraint(self) -> QLayout.SizeConstraint: ... method spacing (line 7096) | def spacing(self) -> int: ... method takeAt (line 7097) | def takeAt(self, index: int) -> QLayoutItem | None: ... method totalHeightForWidth (line 7098) | def totalHeightForWidth(self, w: int) -> int: ... method totalMaximumSize (line 7099) | def totalMaximumSize(self) -> PySide2.QtCore.QSize: ... method totalMinimumSize (line 7100) | def totalMinimumSize(self) -> PySide2.QtCore.QSize: ... method totalSizeHint (line 7101) | def totalSizeHint(self) -> PySide2.QtCore.QSize: ... method update (line 7102) | def update(self) -> None: ... method widgetEvent (line 7103) | def widgetEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... class QLayoutItem (line 7105) | class QLayoutItem(shiboken2.Object): method __init__ (line 7107) | def __init__(self, alignment: PySide2.QtCore.Qt.Alignment | PySide2.Qt... method alignment (line 7108) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method controlTypes (line 7109) | def controlTypes(self) -> QSizePolicy.ControlTypes | QSizePolicy.Contr... method expandingDirections (line 7110) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method geometry (line 7111) | def geometry(self) -> PySide2.QtCore.QRect: ... method hasHeightForWidth (line 7112) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 7113) | def heightForWidth(self, arg__1: int) -> int: ... method invalidate (line 7114) | def invalidate(self) -> None: ... method isEmpty (line 7115) | def isEmpty(self) -> bool: ... method layout (line 7116) | def layout(self) -> QLayout: ... method maximumSize (line 7117) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method minimumHeightForWidth (line 7118) | def minimumHeightForWidth(self, arg__1: int) -> int: ... method minimumSize (line 7119) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method setAlignment (line 7120) | def setAlignment(self, a: PySide2.QtCore.Qt.Alignment | PySide2.QtCore... method setGeometry (line 7121) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method sizeHint (line 7122) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method spacerItem (line 7123) | def spacerItem(self) -> QSpacerItem: ... method widget (line 7124) | def widget(self) -> QWidget: ... class QLineEdit (line 7126) | class QLineEdit(QWidget): class ActionPosition (line 7127) | class ActionPosition: method __init__ (line 7133) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7134) | def __add__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosi... method __and__ (line 7135) | def __and__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosi... method __bool__ (line 7136) | def __bool__(self) -> bool: ... method __eq__ (line 7137) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7138) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7139) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7140) | def __hash__(self) -> int: ... method __index__ (line 7141) | def __index__(self) -> int: ... method __int__ (line 7142) | def __int__(self) -> int: ... method __le__ (line 7143) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7144) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7145) | def __mul__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosi... method __ne__ (line 7146) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7147) | def __or__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosit... method __pos__ (line 7148) | def __pos__(self): ... method __radd__ (line 7149) | def __radd__(self, other: typing.SupportsInt) -> QLineEdit.ActionPos... method __rand__ (line 7150) | def __rand__(self, other: typing.SupportsInt) -> QLineEdit.ActionPos... method __rmul__ (line 7151) | def __rmul__(self, other: typing.SupportsInt) -> QLineEdit.ActionPos... method __ror__ (line 7152) | def __ror__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosi... method __rsub__ (line 7153) | def __rsub__(self, other: typing.SupportsInt) -> QLineEdit.ActionPos... method __rxor__ (line 7154) | def __rxor__(self, other: typing.SupportsInt) -> QLineEdit.ActionPos... method __sub__ (line 7155) | def __sub__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosi... method __xor__ (line 7156) | def __xor__(self, other: typing.SupportsInt) -> QLineEdit.ActionPosi... class EchoMode (line 7158) | class EchoMode: method __init__ (line 7166) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7167) | def __add__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __and__ (line 7168) | def __and__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __bool__ (line 7169) | def __bool__(self) -> bool: ... method __eq__ (line 7170) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7171) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7172) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7173) | def __hash__(self) -> int: ... method __index__ (line 7174) | def __index__(self) -> int: ... method __int__ (line 7175) | def __int__(self) -> int: ... method __le__ (line 7176) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7177) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7178) | def __mul__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __ne__ (line 7179) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7180) | def __or__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __pos__ (line 7181) | def __pos__(self): ... method __radd__ (line 7182) | def __radd__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode:... method __rand__ (line 7183) | def __rand__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode:... method __rmul__ (line 7184) | def __rmul__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode:... method __ror__ (line 7185) | def __ror__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __rsub__ (line 7186) | def __rsub__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode:... method __rxor__ (line 7187) | def __rxor__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode:... method __sub__ (line 7188) | def __sub__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __xor__ (line 7189) | def __xor__(self, other: typing.SupportsInt) -> QLineEdit.EchoMode: ... method __init__ (line 7205) | def __init__(self, arg__1: str, parent: QWidget | None = ..., acceptDr... method __init__ (line 7207) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addAction (line 7209) | def addAction(self, icon: PySide2.QtGui.QIcon, position: QLineEdit.Act... method addAction (line 7211) | def addAction(self, action: QAction, position: QLineEdit.ActionPositio... method addAction (line 7213) | def addAction(self, arg__1: QAction) -> None: ... method addAction (line 7215) | def addAction(self, action: QAction) -> None: ... method alignment (line 7216) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method backspace (line 7217) | def backspace(self) -> None: ... method changeEvent (line 7218) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method clear (line 7219) | def clear(self) -> None: ... method completer (line 7220) | def completer(self) -> QCompleter: ... method contextMenuEvent (line 7221) | def contextMenuEvent(self, arg__1: PySide2.QtGui.QContextMenuEvent) ->... method copy (line 7222) | def copy(self) -> None: ... method createStandardContextMenu (line 7223) | def createStandardContextMenu(self) -> QMenu: ... method cursorBackward (line 7224) | def cursorBackward(self, mark: bool, steps: int = ...) -> None: ... method cursorForward (line 7225) | def cursorForward(self, mark: bool, steps: int = ...) -> None: ... method cursorMoveStyle (line 7226) | def cursorMoveStyle(self) -> PySide2.QtCore.Qt.CursorMoveStyle: ... method cursorPosition (line 7227) | def cursorPosition(self) -> int: ... method cursorPositionAt (line 7228) | def cursorPositionAt(self, pos: PySide2.QtCore.QPoint) -> int: ... method cursorRect (line 7229) | def cursorRect(self) -> PySide2.QtCore.QRect: ... method cursorWordBackward (line 7230) | def cursorWordBackward(self, mark: bool) -> None: ... method cursorWordForward (line 7231) | def cursorWordForward(self, mark: bool) -> None: ... method cut (line 7232) | def cut(self) -> None: ... method del_ (line 7233) | def del_(self) -> None: ... method deselect (line 7234) | def deselect(self) -> None: ... method displayText (line 7235) | def displayText(self) -> str: ... method dragEnabled (line 7236) | def dragEnabled(self) -> bool: ... method dragEnterEvent (line 7237) | def dragEnterEvent(self, arg__1: PySide2.QtGui.QDragEnterEvent) -> Non... method dragLeaveEvent (line 7238) | def dragLeaveEvent(self, e: PySide2.QtGui.QDragLeaveEvent) -> None: ... method dragMoveEvent (line 7239) | def dragMoveEvent(self, e: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 7240) | def dropEvent(self, arg__1: PySide2.QtGui.QDropEvent) -> None: ... method echoMode (line 7241) | def echoMode(self) -> QLineEdit.EchoMode: ... method end (line 7242) | def end(self, mark: bool) -> None: ... method event (line 7243) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 7244) | def focusInEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 7245) | def focusOutEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method getTextMargins (line 7246) | def getTextMargins(self) -> tuple[int, int, int, int]: ... method hasAcceptableInput (line 7247) | def hasAcceptableInput(self) -> bool: ... method hasFrame (line 7248) | def hasFrame(self) -> bool: ... method hasSelectedText (line 7249) | def hasSelectedText(self) -> bool: ... method home (line 7250) | def home(self, mark: bool) -> None: ... method initStyleOption (line 7251) | def initStyleOption(self, option: QStyleOptionFrame) -> None: ... method inputMask (line 7252) | def inputMask(self) -> str: ... method inputMethodEvent (line 7253) | def inputMethodEvent(self, arg__1: PySide2.QtGui.QInputMethodEvent) ->... method inputMethodQuery (line 7255) | def inputMethodQuery(self, property: PySide2.QtCore.Qt.InputMethodQuer... method inputMethodQuery (line 7257) | def inputMethodQuery(self, arg__1: PySide2.QtCore.Qt.InputMethodQuery)... method insert (line 7258) | def insert(self, arg__1: str) -> None: ... method isClearButtonEnabled (line 7259) | def isClearButtonEnabled(self) -> bool: ... method isModified (line 7260) | def isModified(self) -> bool: ... method isReadOnly (line 7261) | def isReadOnly(self) -> bool: ... method isRedoAvailable (line 7262) | def isRedoAvailable(self) -> bool: ... method isUndoAvailable (line 7263) | def isUndoAvailable(self) -> bool: ... method keyPressEvent (line 7264) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method maxLength (line 7265) | def maxLength(self) -> int: ... method minimumSizeHint (line 7266) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseDoubleClickEvent (line 7267) | def mouseDoubleClickEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> ... method mouseMoveEvent (line 7268) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 7269) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 7270) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method paintEvent (line 7271) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method paste (line 7272) | def paste(self) -> None: ... method placeholderText (line 7273) | def placeholderText(self) -> str: ... method redo (line 7274) | def redo(self) -> None: ... method selectAll (line 7275) | def selectAll(self) -> None: ... method selectedText (line 7276) | def selectedText(self) -> str: ... method selectionEnd (line 7277) | def selectionEnd(self) -> int: ... method selectionLength (line 7278) | def selectionLength(self) -> int: ... method selectionStart (line 7279) | def selectionStart(self) -> int: ... method setAlignment (line 7280) | def setAlignment(self, flag: PySide2.QtCore.Qt.Alignment | PySide2.QtC... method setClearButtonEnabled (line 7281) | def setClearButtonEnabled(self, enable: bool) -> None: ... method setCompleter (line 7282) | def setCompleter(self, completer: QCompleter) -> None: ... method setCursorMoveStyle (line 7283) | def setCursorMoveStyle(self, style: PySide2.QtCore.Qt.CursorMoveStyle)... method setCursorPosition (line 7284) | def setCursorPosition(self, arg__1: int) -> None: ... method setDragEnabled (line 7285) | def setDragEnabled(self, b: bool) -> None: ... method setEchoMode (line 7286) | def setEchoMode(self, arg__1: QLineEdit.EchoMode) -> None: ... method setFrame (line 7287) | def setFrame(self, arg__1: bool) -> None: ... method setInputMask (line 7288) | def setInputMask(self, inputMask: str) -> None: ... method setMaxLength (line 7289) | def setMaxLength(self, arg__1: int) -> None: ... method setModified (line 7290) | def setModified(self, arg__1: bool) -> None: ... method setPlaceholderText (line 7291) | def setPlaceholderText(self, arg__1: str) -> None: ... method setReadOnly (line 7292) | def setReadOnly(self, arg__1: bool) -> None: ... method setSelection (line 7293) | def setSelection(self, arg__1: int, arg__2: int) -> None: ... method setText (line 7294) | def setText(self, arg__1: str) -> None: ... method setTextMargins (line 7296) | def setTextMargins(self, left: int, top: int, right: int, bottom: int)... method setTextMargins (line 7298) | def setTextMargins(self, margins: PySide2.QtCore.QMargins) -> None: ... method setValidator (line 7299) | def setValidator(self, arg__1: PySide2.QtGui.QValidator) -> None: ... method sizeHint (line 7300) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method text (line 7301) | def text(self) -> str: ... method textMargins (line 7302) | def textMargins(self) -> PySide2.QtCore.QMargins: ... method undo (line 7303) | def undo(self) -> None: ... method validator (line 7304) | def validator(self) -> PySide2.QtGui.QValidator: ... class QListView (line 7306) | class QListView(QAbstractItemView): class Flow (line 7307) | class Flow: method __init__ (line 7313) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7314) | def __add__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __and__ (line 7315) | def __and__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __bool__ (line 7316) | def __bool__(self) -> bool: ... method __eq__ (line 7317) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7318) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7319) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7320) | def __hash__(self) -> int: ... method __index__ (line 7321) | def __index__(self) -> int: ... method __int__ (line 7322) | def __int__(self) -> int: ... method __le__ (line 7323) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7324) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7325) | def __mul__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __ne__ (line 7326) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7327) | def __or__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __pos__ (line 7328) | def __pos__(self): ... method __radd__ (line 7329) | def __radd__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __rand__ (line 7330) | def __rand__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __rmul__ (line 7331) | def __rmul__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __ror__ (line 7332) | def __ror__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __rsub__ (line 7333) | def __rsub__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __rxor__ (line 7334) | def __rxor__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __sub__ (line 7335) | def __sub__(self, other: typing.SupportsInt) -> QListView.Flow: ... method __xor__ (line 7336) | def __xor__(self, other: typing.SupportsInt) -> QListView.Flow: ... class LayoutMode (line 7338) | class LayoutMode: method __init__ (line 7344) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7345) | def __add__(self, other: typing.SupportsInt) -> QListView.LayoutMode... method __and__ (line 7346) | def __and__(self, other: typing.SupportsInt) -> QListView.LayoutMode... method __bool__ (line 7347) | def __bool__(self) -> bool: ... method __eq__ (line 7348) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7349) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7350) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7351) | def __hash__(self) -> int: ... method __index__ (line 7352) | def __index__(self) -> int: ... method __int__ (line 7353) | def __int__(self) -> int: ... method __le__ (line 7354) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7355) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7356) | def __mul__(self, other: typing.SupportsInt) -> QListView.LayoutMode... method __ne__ (line 7357) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7358) | def __or__(self, other: typing.SupportsInt) -> QListView.LayoutMode:... method __pos__ (line 7359) | def __pos__(self): ... method __radd__ (line 7360) | def __radd__(self, other: typing.SupportsInt) -> QListView.LayoutMod... method __rand__ (line 7361) | def __rand__(self, other: typing.SupportsInt) -> QListView.LayoutMod... method __rmul__ (line 7362) | def __rmul__(self, other: typing.SupportsInt) -> QListView.LayoutMod... method __ror__ (line 7363) | def __ror__(self, other: typing.SupportsInt) -> QListView.LayoutMode... method __rsub__ (line 7364) | def __rsub__(self, other: typing.SupportsInt) -> QListView.LayoutMod... method __rxor__ (line 7365) | def __rxor__(self, other: typing.SupportsInt) -> QListView.LayoutMod... method __sub__ (line 7366) | def __sub__(self, other: typing.SupportsInt) -> QListView.LayoutMode... method __xor__ (line 7367) | def __xor__(self, other: typing.SupportsInt) -> QListView.LayoutMode... class Movement (line 7369) | class Movement: method __init__ (line 7376) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7377) | def __add__(self, other: typing.SupportsInt) -> QListView.Movement: ... method __and__ (line 7378) | def __and__(self, other: typing.SupportsInt) -> QListView.Movement: ... method __bool__ (line 7379) | def __bool__(self) -> bool: ... method __eq__ (line 7380) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7381) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7382) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7383) | def __hash__(self) -> int: ... method __index__ (line 7384) | def __index__(self) -> int: ... method __int__ (line 7385) | def __int__(self) -> int: ... method __le__ (line 7386) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7387) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7388) | def __mul__(self, other: typing.SupportsInt) -> QListView.Movement: ... method __ne__ (line 7389) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7390) | def __or__(self, other: typing.SupportsInt) -> QListView.Movement: ... method __pos__ (line 7391) | def __pos__(self): ... method __radd__ (line 7392) | def __radd__(self, other: typing.SupportsInt) -> QListView.Movement:... method __rand__ (line 7393) | def __rand__(self, other: typing.SupportsInt) -> QListView.Movement:... method __rmul__ (line 7394) | def __rmul__(self, other: typing.SupportsInt) -> QListView.Movement:... method __ror__ (line 7395) | def __ror__(self, other: typing.SupportsInt) -> QListView.Movement: ... method __rsub__ (line 7396) | def __rsub__(self, other: typing.SupportsInt) -> QListView.Movement:... method __rxor__ (line 7397) | def __rxor__(self, other: typing.SupportsInt) -> QListView.Movement:... method __sub__ (line 7398) | def __sub__(self, other: typing.SupportsInt) -> QListView.Movement: ... method __xor__ (line 7399) | def __xor__(self, other: typing.SupportsInt) -> QListView.Movement: ... class ResizeMode (line 7401) | class ResizeMode: method __init__ (line 7407) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7408) | def __add__(self, other: typing.SupportsInt) -> QListView.ResizeMode... method __and__ (line 7409) | def __and__(self, other: typing.SupportsInt) -> QListView.ResizeMode... method __bool__ (line 7410) | def __bool__(self) -> bool: ... method __eq__ (line 7411) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7412) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7413) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7414) | def __hash__(self) -> int: ... method __index__ (line 7415) | def __index__(self) -> int: ... method __int__ (line 7416) | def __int__(self) -> int: ... method __le__ (line 7417) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7418) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7419) | def __mul__(self, other: typing.SupportsInt) -> QListView.ResizeMode... method __ne__ (line 7420) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7421) | def __or__(self, other: typing.SupportsInt) -> QListView.ResizeMode:... method __pos__ (line 7422) | def __pos__(self): ... method __radd__ (line 7423) | def __radd__(self, other: typing.SupportsInt) -> QListView.ResizeMod... method __rand__ (line 7424) | def __rand__(self, other: typing.SupportsInt) -> QListView.ResizeMod... method __rmul__ (line 7425) | def __rmul__(self, other: typing.SupportsInt) -> QListView.ResizeMod... method __ror__ (line 7426) | def __ror__(self, other: typing.SupportsInt) -> QListView.ResizeMode... method __rsub__ (line 7427) | def __rsub__(self, other: typing.SupportsInt) -> QListView.ResizeMod... method __rxor__ (line 7428) | def __rxor__(self, other: typing.SupportsInt) -> QListView.ResizeMod... method __sub__ (line 7429) | def __sub__(self, other: typing.SupportsInt) -> QListView.ResizeMode... method __xor__ (line 7430) | def __xor__(self, other: typing.SupportsInt) -> QListView.ResizeMode... class ViewMode (line 7432) | class ViewMode: method __init__ (line 7438) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7439) | def __add__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __and__ (line 7440) | def __and__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __bool__ (line 7441) | def __bool__(self) -> bool: ... method __eq__ (line 7442) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7443) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7444) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7445) | def __hash__(self) -> int: ... method __index__ (line 7446) | def __index__(self) -> int: ... method __int__ (line 7447) | def __int__(self) -> int: ... method __le__ (line 7448) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7449) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7450) | def __mul__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __ne__ (line 7451) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7452) | def __or__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __pos__ (line 7453) | def __pos__(self): ... method __radd__ (line 7454) | def __radd__(self, other: typing.SupportsInt) -> QListView.ViewMode:... method __rand__ (line 7455) | def __rand__(self, other: typing.SupportsInt) -> QListView.ViewMode:... method __rmul__ (line 7456) | def __rmul__(self, other: typing.SupportsInt) -> QListView.ViewMode:... method __ror__ (line 7457) | def __ror__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __rsub__ (line 7458) | def __rsub__(self, other: typing.SupportsInt) -> QListView.ViewMode:... method __rxor__ (line 7459) | def __rxor__(self, other: typing.SupportsInt) -> QListView.ViewMode:... method __sub__ (line 7460) | def __sub__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __xor__ (line 7461) | def __xor__(self, other: typing.SupportsInt) -> QListView.ViewMode: ... method __init__ (line 7475) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method batchSize (line 7476) | def batchSize(self) -> int: ... method clearPropertyFlags (line 7477) | def clearPropertyFlags(self) -> None: ... method contentsSize (line 7478) | def contentsSize(self) -> PySide2.QtCore.QSize: ... method currentChanged (line 7479) | def currentChanged(self, current: PySide2.QtCore.QModelIndex, previous... method dataChanged (line 7480) | def dataChanged(self, topLeft: PySide2.QtCore.QModelIndex, bottomRight... method doItemsLayout (line 7481) | def doItemsLayout(self) -> None: ... method dragLeaveEvent (line 7482) | def dragLeaveEvent(self, e: PySide2.QtGui.QDragLeaveEvent) -> None: ... method dragMoveEvent (line 7483) | def dragMoveEvent(self, e: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 7484) | def dropEvent(self, e: PySide2.QtGui.QDropEvent) -> None: ... method event (line 7485) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method flow (line 7486) | def flow(self) -> QListView.Flow: ... method gridSize (line 7487) | def gridSize(self) -> PySide2.QtCore.QSize: ... method horizontalOffset (line 7488) | def horizontalOffset(self) -> int: ... method indexAt (line 7489) | def indexAt(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QModelIn... method isIndexHidden (line 7490) | def isIndexHidden(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isRowHidden (line 7491) | def isRowHidden(self, row: int) -> bool: ... method isSelectionRectVisible (line 7492) | def isSelectionRectVisible(self) -> bool: ... method isWrapping (line 7493) | def isWrapping(self) -> bool: ... method itemAlignment (line 7494) | def itemAlignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCor... method layoutMode (line 7495) | def layoutMode(self) -> QListView.LayoutMode: ... method modelColumn (line 7496) | def modelColumn(self) -> int: ... method mouseMoveEvent (line 7497) | def mouseMoveEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 7498) | def mouseReleaseEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method moveCursor (line 7499) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method movement (line 7500) | def movement(self) -> QListView.Movement: ... method paintEvent (line 7501) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method rectForIndex (line 7502) | def rectForIndex(self, index: PySide2.QtCore.QModelIndex) -> PySide2.Q... method reset (line 7503) | def reset(self) -> None: ... method resizeContents (line 7504) | def resizeContents(self, width: int, height: int) -> None: ... method resizeEvent (line 7505) | def resizeEvent(self, e: PySide2.QtGui.QResizeEvent) -> None: ... method resizeMode (line 7506) | def resizeMode(self) -> QListView.ResizeMode: ... method rowsAboutToBeRemoved (line 7507) | def rowsAboutToBeRemoved(self, parent: PySide2.QtCore.QModelIndex, sta... method rowsInserted (line 7508) | def rowsInserted(self, parent: PySide2.QtCore.QModelIndex, start: int,... method scrollContentsBy (line 7509) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method scrollTo (line 7510) | def scrollTo(self, index: PySide2.QtCore.QModelIndex, hint: QAbstractI... method selectedIndexes (line 7511) | def selectedIndexes(self) -> list[PySide2.QtCore.QModelIndex]: ... method selectionChanged (line 7512) | def selectionChanged(self, selected: PySide2.QtCore.QItemSelection, de... method setBatchSize (line 7513) | def setBatchSize(self, batchSize: int) -> None: ... method setFlow (line 7514) | def setFlow(self, flow: QListView.Flow) -> None: ... method setGridSize (line 7515) | def setGridSize(self, size: PySide2.QtCore.QSize) -> None: ... method setItemAlignment (line 7516) | def setItemAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | Py... method setLayoutMode (line 7517) | def setLayoutMode(self, mode: QListView.LayoutMode) -> None: ... method setModelColumn (line 7518) | def setModelColumn(self, column: int) -> None: ... method setMovement (line 7519) | def setMovement(self, movement: QListView.Movement) -> None: ... method setPositionForIndex (line 7520) | def setPositionForIndex(self, position: PySide2.QtCore.QPoint, index: ... method setResizeMode (line 7521) | def setResizeMode(self, mode: QListView.ResizeMode) -> None: ... method setRootIndex (line 7522) | def setRootIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setRowHidden (line 7523) | def setRowHidden(self, row: int, hide: bool) -> None: ... method setSelection (line 7524) | def setSelection(self, rect: PySide2.QtCore.QRect, command: PySide2.Qt... method setSelectionRectVisible (line 7525) | def setSelectionRectVisible(self, show: bool) -> None: ... method setSpacing (line 7526) | def setSpacing(self, space: int) -> None: ... method setUniformItemSizes (line 7527) | def setUniformItemSizes(self, enable: bool) -> None: ... method setViewMode (line 7528) | def setViewMode(self, mode: QListView.ViewMode) -> None: ... method setWordWrap (line 7529) | def setWordWrap(self, on: bool) -> None: ... method setWrapping (line 7530) | def setWrapping(self, enable: bool) -> None: ... method spacing (line 7531) | def spacing(self) -> int: ... method startDrag (line 7532) | def startDrag(self, supportedActions: PySide2.QtCore.Qt.DropActions | ... method timerEvent (line 7533) | def timerEvent(self, e: PySide2.QtCore.QTimerEvent) -> None: ... method uniformItemSizes (line 7534) | def uniformItemSizes(self) -> bool: ... method updateGeometries (line 7535) | def updateGeometries(self) -> None: ... method verticalOffset (line 7536) | def verticalOffset(self) -> int: ... method viewMode (line 7537) | def viewMode(self) -> QListView.ViewMode: ... method viewOptions (line 7538) | def viewOptions(self) -> QStyleOptionViewItem: ... method viewportSizeHint (line 7539) | def viewportSizeHint(self) -> PySide2.QtCore.QSize: ... method visualRect (line 7540) | def visualRect(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method visualRegionForSelection (line 7541) | def visualRegionForSelection(self, selection: PySide2.QtCore.QItemSele... method wheelEvent (line 7542) | def wheelEvent(self, e: PySide2.QtGui.QWheelEvent) -> None: ... method wordWrap (line 7543) | def wordWrap(self) -> bool: ... class QListWidget (line 7545) | class QListWidget(QListView): method __init__ (line 7557) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addItem (line 7559) | def addItem(self, label: str) -> None: ... method addItem (line 7561) | def addItem(self, item: QListWidgetItem) -> None: ... method addItems (line 7562) | def addItems(self, labels: typing.Iterable[str]) -> None: ... method clear (line 7563) | def clear(self) -> None: ... method closePersistentEditor (line 7565) | def closePersistentEditor(self, item: QListWidgetItem) -> None: ... method closePersistentEditor (line 7567) | def closePersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> ... method count (line 7568) | def count(self) -> int: ... method currentItem (line 7569) | def currentItem(self) -> QListWidgetItem: ... method currentRow (line 7570) | def currentRow(self) -> int: ... method dropEvent (line 7571) | def dropEvent(self, event: PySide2.QtGui.QDropEvent) -> None: ... method dropMimeData (line 7572) | def dropMimeData(self, index: int, data: PySide2.QtCore.QMimeData, act... method editItem (line 7573) | def editItem(self, item: QListWidgetItem) -> None: ... method event (line 7574) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method findItems (line 7575) | def findItems(self, text: str, flags: PySide2.QtCore.Qt.MatchFlags | P... method indexFromItem (line 7576) | def indexFromItem(self, item: QListWidgetItem) -> PySide2.QtCore.QMode... method insertItem (line 7578) | def insertItem(self, row: int, label: str) -> None: ... method insertItem (line 7580) | def insertItem(self, row: int, item: QListWidgetItem) -> None: ... method insertItems (line 7581) | def insertItems(self, row: int, labels: typing.Iterable[str]) -> None:... method isItemHidden (line 7582) | def isItemHidden(self, item: QListWidgetItem) -> bool: ... method isItemSelected (line 7583) | def isItemSelected(self, item: QListWidgetItem) -> bool: ... method isPersistentEditorOpen (line 7585) | def isPersistentEditorOpen(self, item: QListWidgetItem) -> bool: ... method isPersistentEditorOpen (line 7587) | def isPersistentEditorOpen(self, index: PySide2.QtCore.QModelIndex) ->... method isSortingEnabled (line 7588) | def isSortingEnabled(self) -> bool: ... method item (line 7589) | def item(self, row: int) -> QListWidgetItem: ... method itemAt (line 7591) | def itemAt(self, x: int, y: int) -> QListWidgetItem: ... method itemAt (line 7593) | def itemAt(self, p: PySide2.QtCore.QPoint) -> QListWidgetItem: ... method itemFromIndex (line 7594) | def itemFromIndex(self, index: PySide2.QtCore.QModelIndex) -> QListWid... method itemWidget (line 7595) | def itemWidget(self, item: QListWidgetItem) -> QWidget: ... method items (line 7596) | def items(self, data: PySide2.QtCore.QMimeData) -> list[QListWidgetIte... method mimeData (line 7597) | def mimeData(self, items: typing.Iterable[QListWidgetItem]) -> PySide2... method mimeTypes (line 7598) | def mimeTypes(self) -> list[str]: ... method openPersistentEditor (line 7600) | def openPersistentEditor(self, item: QListWidgetItem) -> None: ... method openPersistentEditor (line 7602) | def openPersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> N... method removeItemWidget (line 7603) | def removeItemWidget(self, item: QListWidgetItem) -> None: ... method row (line 7604) | def row(self, item: QListWidgetItem) -> int: ... method scrollToItem (line 7605) | def scrollToItem(self, item: QListWidgetItem, hint: QAbstractItemView.... method selectedItems (line 7606) | def selectedItems(self) -> list[QListWidgetItem]: ... method setCurrentItem (line 7608) | def setCurrentItem(self, item: QListWidgetItem, command: PySide2.QtCor... method setCurrentItem (line 7610) | def setCurrentItem(self, item: QListWidgetItem) -> None: ... method setCurrentRow (line 7612) | def setCurrentRow(self, row: int, command: PySide2.QtCore.QItemSelecti... method setCurrentRow (line 7614) | def setCurrentRow(self, row: int) -> None: ... method setItemHidden (line 7615) | def setItemHidden(self, item: QListWidgetItem, hide: bool) -> None: ... method setItemSelected (line 7616) | def setItemSelected(self, item: QListWidgetItem, select: bool) -> None... method setItemWidget (line 7617) | def setItemWidget(self, item: QListWidgetItem, widget: QWidget) -> Non... method setModel (line 7618) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setSelectionModel (line 7619) | def setSelectionModel(self, selectionModel: PySide2.QtCore.QItemSelect... method setSortingEnabled (line 7620) | def setSortingEnabled(self, enable: bool) -> None: ... method sortItems (line 7621) | def sortItems(self, order: PySide2.QtCore.Qt.SortOrder = ...) -> None:... method supportedDropActions (line 7622) | def supportedDropActions(self) -> PySide2.QtCore.Qt.DropActions | PySi... method takeItem (line 7623) | def takeItem(self, row: int) -> QListWidgetItem: ... method visualItemRect (line 7624) | def visualItemRect(self, item: QListWidgetItem) -> PySide2.QtCore.QRec... class QListWidgetItem (line 7626) | class QListWidgetItem(shiboken2.Object): class ItemType (line 7627) | class ItemType: method __init__ (line 7633) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7634) | def __add__(self, other: typing.SupportsInt) -> QListWidgetItem.Item... method __and__ (line 7635) | def __and__(self, other: typing.SupportsInt) -> QListWidgetItem.Item... method __bool__ (line 7636) | def __bool__(self) -> bool: ... method __eq__ (line 7637) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7638) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7639) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7640) | def __hash__(self) -> int: ... method __index__ (line 7641) | def __index__(self) -> int: ... method __int__ (line 7642) | def __int__(self) -> int: ... method __le__ (line 7643) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7644) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7645) | def __mul__(self, other: typing.SupportsInt) -> QListWidgetItem.Item... method __ne__ (line 7646) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7647) | def __or__(self, other: typing.SupportsInt) -> QListWidgetItem.ItemT... method __pos__ (line 7648) | def __pos__(self): ... method __radd__ (line 7649) | def __radd__(self, other: typing.SupportsInt) -> QListWidgetItem.Ite... method __rand__ (line 7650) | def __rand__(self, other: typing.SupportsInt) -> QListWidgetItem.Ite... method __rmul__ (line 7651) | def __rmul__(self, other: typing.SupportsInt) -> QListWidgetItem.Ite... method __ror__ (line 7652) | def __ror__(self, other: typing.SupportsInt) -> QListWidgetItem.Item... method __rsub__ (line 7653) | def __rsub__(self, other: typing.SupportsInt) -> QListWidgetItem.Ite... method __rxor__ (line 7654) | def __rxor__(self, other: typing.SupportsInt) -> QListWidgetItem.Ite... method __sub__ (line 7655) | def __sub__(self, other: typing.SupportsInt) -> QListWidgetItem.Item... method __xor__ (line 7656) | def __xor__(self, other: typing.SupportsInt) -> QListWidgetItem.Item... method __init__ (line 7660) | def __init__(self, icon: PySide2.QtGui.QIcon, text: str, listview: QLi... method __init__ (line 7662) | def __init__(self, text: str, listview: QListWidget | None = ..., type... method __init__ (line 7664) | def __init__(self, listview: QListWidget | None = ..., type: int = ...... method __init__ (line 7666) | def __init__(self, other: QListWidgetItem) -> None: ... method background (line 7667) | def background(self) -> PySide2.QtGui.QBrush: ... method backgroundColor (line 7668) | def backgroundColor(self) -> PySide2.QtGui.QColor: ... method checkState (line 7669) | def checkState(self) -> PySide2.QtCore.Qt.CheckState: ... method clone (line 7670) | def clone(self) -> QListWidgetItem: ... method data (line 7671) | def data(self, role: PySide2.QtCore.Qt.ItemDataRole) -> typing.Any: ... method flags (line 7672) | def flags(self) -> PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore.Qt.Ite... method font (line 7673) | def font(self) -> PySide2.QtGui.QFont: ... method foreground (line 7674) | def foreground(self) -> PySide2.QtGui.QBrush: ... method icon (line 7675) | def icon(self) -> PySide2.QtGui.QIcon: ... method isHidden (line 7676) | def isHidden(self) -> bool: ... method isSelected (line 7677) | def isSelected(self) -> bool: ... method listWidget (line 7678) | def listWidget(self) -> QListWidget: ... method read (line 7679) | def read(self, in_: PySide2.QtCore.QDataStream) -> None: ... method setBackground (line 7680) | def setBackground(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QC... method setBackgroundColor (line 7681) | def setBackgroundColor(self, color: PySide2.QtGui.QColor | PySide2.QtC... method setCheckState (line 7682) | def setCheckState(self, state: PySide2.QtCore.Qt.CheckState) -> None: ... method setData (line 7683) | def setData(self, role: PySide2.QtCore.Qt.ItemDataRole, value: typing.... method setFlags (line 7684) | def setFlags(self, flags: PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore... method setFont (line 7685) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setForeground (line 7686) | def setForeground(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QC... method setHidden (line 7687) | def setHidden(self, hide: bool) -> None: ... method setIcon (line 7688) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setSelected (line 7689) | def setSelected(self, select: bool) -> None: ... method setSizeHint (line 7690) | def setSizeHint(self, size: PySide2.QtCore.QSize) -> None: ... method setStatusTip (line 7691) | def setStatusTip(self, statusTip: str) -> None: ... method setText (line 7692) | def setText(self, text: str) -> None: ... method setTextAlignment (line 7693) | def setTextAlignment(self, alignment: int) -> None: ... method setTextColor (line 7694) | def setTextColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt... method setToolTip (line 7695) | def setToolTip(self, toolTip: str) -> None: ... method setWhatsThis (line 7696) | def setWhatsThis(self, whatsThis: str) -> None: ... method sizeHint (line 7697) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method statusTip (line 7698) | def statusTip(self) -> str: ... method text (line 7699) | def text(self) -> str: ... method textAlignment (line 7700) | def textAlignment(self) -> int: ... method textColor (line 7701) | def textColor(self) -> PySide2.QtGui.QColor: ... method toolTip (line 7702) | def toolTip(self) -> str: ... method type (line 7703) | def type(self) -> int: ... method whatsThis (line 7704) | def whatsThis(self) -> str: ... method write (line 7705) | def write(self, out: PySide2.QtCore.QDataStream) -> None: ... method __eq__ (line 7706) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7707) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7708) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7709) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 7710) | def __lshift__(self, out: PySide2.QtCore.QDataStream) -> PySide2.QtCor... method __lt__ (line 7711) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7712) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 7713) | def __rlshift__(self, other): ... method __rrshift__ (line 7714) | def __rrshift__(self, other): ... method __rshift__ (line 7715) | def __rshift__(self, in_: PySide2.QtCore.QDataStream) -> PySide2.QtCor... class QMainWindow (line 7717) | class QMainWindow(QWidget): class DockOption (line 7718) | class DockOption: method __init__ (line 7728) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 7729) | def __and__(self, other: typing.SupportsInt) -> QMainWindow.DockOpti... method __bool__ (line 7730) | def __bool__(self) -> bool: ... method __eq__ (line 7731) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7732) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7733) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7734) | def __hash__(self) -> int: ... method __index__ (line 7735) | def __index__(self) -> int: ... method __int__ (line 7736) | def __int__(self) -> int: ... method __invert__ (line 7737) | def __invert__(self) -> QMainWindow.DockOptions: ... method __le__ (line 7738) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7739) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7740) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7741) | def __or__(self, other: typing.SupportsInt) -> QMainWindow.DockOptio... method __rand__ (line 7742) | def __rand__(self, other: typing.SupportsInt) -> QMainWindow.DockOpt... method __ror__ (line 7743) | def __ror__(self, other: typing.SupportsInt) -> QMainWindow.DockOpti... method __rxor__ (line 7744) | def __rxor__(self, other: typing.SupportsInt) -> QMainWindow.DockOpt... method __xor__ (line 7745) | def __xor__(self, other: typing.SupportsInt) -> QMainWindow.DockOpti... class DockOptions (line 7747) | class DockOptions: method __init__ (line 7749) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 7750) | def __and__(self, other: typing.SupportsInt) -> QMainWindow.DockOpti... method __bool__ (line 7751) | def __bool__(self) -> bool: ... method __eq__ (line 7752) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7753) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7754) | def __gt__(self, other: object) -> bool: ... method __index__ (line 7755) | def __index__(self) -> int: ... method __int__ (line 7756) | def __int__(self) -> int: ... method __invert__ (line 7757) | def __invert__(self) -> QMainWindow.DockOptions: ... method __le__ (line 7758) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7759) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7760) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7761) | def __or__(self, other: typing.SupportsInt) -> QMainWindow.DockOptio... method __rand__ (line 7762) | def __rand__(self, other: typing.SupportsInt) -> QMainWindow.DockOpt... method __ror__ (line 7763) | def __ror__(self, other: typing.SupportsInt) -> QMainWindow.DockOpti... method __rxor__ (line 7764) | def __rxor__(self, other: typing.SupportsInt) -> QMainWindow.DockOpt... method __xor__ (line 7765) | def __xor__(self, other: typing.SupportsInt) -> QMainWindow.DockOpti... method __init__ (line 7776) | def __init__(self, parent: QWidget | None = ..., flags: PySide2.QtCore... method addDockWidget (line 7778) | def addDockWidget(self, area: PySide2.QtCore.Qt.DockWidgetArea, dockwi... method addDockWidget (line 7780) | def addDockWidget(self, area: PySide2.QtCore.Qt.DockWidgetArea, dockwi... method addToolBar (line 7782) | def addToolBar(self, area: PySide2.QtCore.Qt.ToolBarArea, toolbar: QTo... method addToolBar (line 7784) | def addToolBar(self, toolbar: QToolBar) -> None: ... method addToolBar (line 7786) | def addToolBar(self, title: str) -> QToolBar: ... method addToolBarBreak (line 7787) | def addToolBarBreak(self, area: PySide2.QtCore.Qt.ToolBarArea = ...) -... method centralWidget (line 7788) | def centralWidget(self) -> QWidget: ... method contextMenuEvent (line 7789) | def contextMenuEvent(self, event: PySide2.QtGui.QContextMenuEvent) -> ... method corner (line 7790) | def corner(self, corner: PySide2.QtCore.Qt.Corner) -> PySide2.QtCore.Q... method createPopupMenu (line 7791) | def createPopupMenu(self) -> QMenu: ... method dockOptions (line 7792) | def dockOptions(self) -> QMainWindow.DockOptions | QMainWindow.DockOpt... method dockWidgetArea (line 7793) | def dockWidgetArea(self, dockwidget: QDockWidget) -> PySide2.QtCore.Qt... method documentMode (line 7794) | def documentMode(self) -> bool: ... method event (line 7795) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method iconSize (line 7796) | def iconSize(self) -> PySide2.QtCore.QSize: ... method insertToolBar (line 7797) | def insertToolBar(self, before: QToolBar, toolbar: QToolBar) -> None: ... method insertToolBarBreak (line 7798) | def insertToolBarBreak(self, before: QToolBar) -> None: ... method isAnimated (line 7799) | def isAnimated(self) -> bool: ... method isDockNestingEnabled (line 7800) | def isDockNestingEnabled(self) -> bool: ... method isSeparator (line 7801) | def isSeparator(self, pos: PySide2.QtCore.QPoint) -> bool: ... method menuBar (line 7802) | def menuBar(self) -> QMenuBar: ... method menuWidget (line 7803) | def menuWidget(self) -> QWidget: ... method removeDockWidget (line 7804) | def removeDockWidget(self, dockwidget: QDockWidget) -> None: ... method removeToolBar (line 7805) | def removeToolBar(self, toolbar: QToolBar) -> None: ... method removeToolBarBreak (line 7806) | def removeToolBarBreak(self, before: QToolBar) -> None: ... method resizeDocks (line 7807) | def resizeDocks(self, docks: typing.Iterable[QDockWidget], sizes: typi... method restoreDockWidget (line 7808) | def restoreDockWidget(self, dockwidget: QDockWidget) -> bool: ... method restoreState (line 7809) | def restoreState(self, state: PySide2.QtCore.QByteArray | bytes, versi... method saveState (line 7810) | def saveState(self, version: int = ...) -> PySide2.QtCore.QByteArray: ... method setAnimated (line 7811) | def setAnimated(self, enabled: bool) -> None: ... method setCentralWidget (line 7812) | def setCentralWidget(self, widget: QWidget) -> None: ... method setCorner (line 7813) | def setCorner(self, corner: PySide2.QtCore.Qt.Corner, area: PySide2.Qt... method setDockNestingEnabled (line 7814) | def setDockNestingEnabled(self, enabled: bool) -> None: ... method setDockOptions (line 7815) | def setDockOptions(self, options: QMainWindow.DockOptions | QMainWindo... method setDocumentMode (line 7816) | def setDocumentMode(self, enabled: bool) -> None: ... method setIconSize (line 7817) | def setIconSize(self, iconSize: PySide2.QtCore.QSize) -> None: ... method setMenuBar (line 7818) | def setMenuBar(self, menubar: QMenuBar) -> None: ... method setMenuWidget (line 7819) | def setMenuWidget(self, menubar: QWidget) -> None: ... method setStatusBar (line 7820) | def setStatusBar(self, statusbar: QStatusBar) -> None: ... method setTabPosition (line 7821) | def setTabPosition(self, areas: PySide2.QtCore.Qt.DockWidgetAreas | Py... method setTabShape (line 7822) | def setTabShape(self, tabShape: QTabWidget.TabShape) -> None: ... method setToolButtonStyle (line 7823) | def setToolButtonStyle(self, toolButtonStyle: PySide2.QtCore.Qt.ToolBu... method setUnifiedTitleAndToolBarOnMac (line 7824) | def setUnifiedTitleAndToolBarOnMac(self, set: bool) -> None: ... method splitDockWidget (line 7825) | def splitDockWidget(self, after: QDockWidget, dockwidget: QDockWidget,... method statusBar (line 7826) | def statusBar(self) -> QStatusBar: ... method tabPosition (line 7827) | def tabPosition(self, area: PySide2.QtCore.Qt.DockWidgetArea) -> QTabW... method tabShape (line 7828) | def tabShape(self) -> QTabWidget.TabShape: ... method tabifiedDockWidgets (line 7829) | def tabifiedDockWidgets(self, dockwidget: QDockWidget) -> list[QDockWi... method tabifyDockWidget (line 7830) | def tabifyDockWidget(self, first: QDockWidget, second: QDockWidget) ->... method takeCentralWidget (line 7831) | def takeCentralWidget(self) -> QWidget: ... method toolBarArea (line 7832) | def toolBarArea(self, toolbar: QToolBar) -> PySide2.QtCore.Qt.ToolBarA... method toolBarBreak (line 7833) | def toolBarBreak(self, toolbar: QToolBar) -> bool: ... method toolButtonStyle (line 7834) | def toolButtonStyle(self) -> PySide2.QtCore.Qt.ToolButtonStyle: ... method unifiedTitleAndToolBarOnMac (line 7835) | def unifiedTitleAndToolBarOnMac(self) -> bool: ... class QMdiArea (line 7837) | class QMdiArea(QAbstractScrollArea): class AreaOption (line 7838) | class AreaOption: method __init__ (line 7843) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 7844) | def __and__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions... method __bool__ (line 7845) | def __bool__(self) -> bool: ... method __eq__ (line 7846) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7847) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7848) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7849) | def __hash__(self) -> int: ... method __index__ (line 7850) | def __index__(self) -> int: ... method __int__ (line 7851) | def __int__(self) -> int: ... method __invert__ (line 7852) | def __invert__(self) -> QMdiArea.AreaOptions: ... method __le__ (line 7853) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7854) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7855) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7856) | def __or__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions:... method __rand__ (line 7857) | def __rand__(self, other: typing.SupportsInt) -> QMdiArea.AreaOption... method __ror__ (line 7858) | def __ror__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions... method __rxor__ (line 7859) | def __rxor__(self, other: typing.SupportsInt) -> QMdiArea.AreaOption... method __xor__ (line 7860) | def __xor__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions... class AreaOptions (line 7862) | class AreaOptions: method __init__ (line 7864) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 7865) | def __and__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions... method __bool__ (line 7866) | def __bool__(self) -> bool: ... method __eq__ (line 7867) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7868) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7869) | def __gt__(self, other: object) -> bool: ... method __index__ (line 7870) | def __index__(self) -> int: ... method __int__ (line 7871) | def __int__(self) -> int: ... method __invert__ (line 7872) | def __invert__(self) -> QMdiArea.AreaOptions: ... method __le__ (line 7873) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7874) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7875) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7876) | def __or__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions:... method __rand__ (line 7877) | def __rand__(self, other: typing.SupportsInt) -> QMdiArea.AreaOption... method __ror__ (line 7878) | def __ror__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions... method __rxor__ (line 7879) | def __rxor__(self, other: typing.SupportsInt) -> QMdiArea.AreaOption... method __xor__ (line 7880) | def __xor__(self, other: typing.SupportsInt) -> QMdiArea.AreaOptions... class ViewMode (line 7882) | class ViewMode: method __init__ (line 7888) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7889) | def __add__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __and__ (line 7890) | def __and__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __bool__ (line 7891) | def __bool__(self) -> bool: ... method __eq__ (line 7892) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7893) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7894) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7895) | def __hash__(self) -> int: ... method __index__ (line 7896) | def __index__(self) -> int: ... method __int__ (line 7897) | def __int__(self) -> int: ... method __le__ (line 7898) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7899) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7900) | def __mul__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __ne__ (line 7901) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7902) | def __or__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __pos__ (line 7903) | def __pos__(self): ... method __radd__ (line 7904) | def __radd__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __rand__ (line 7905) | def __rand__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __rmul__ (line 7906) | def __rmul__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __ror__ (line 7907) | def __ror__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __rsub__ (line 7908) | def __rsub__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __rxor__ (line 7909) | def __rxor__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __sub__ (line 7910) | def __sub__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... method __xor__ (line 7911) | def __xor__(self, other: typing.SupportsInt) -> QMdiArea.ViewMode: ... class WindowOrder (line 7913) | class WindowOrder: method __init__ (line 7920) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 7921) | def __add__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder... method __and__ (line 7922) | def __and__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder... method __bool__ (line 7923) | def __bool__(self) -> bool: ... method __eq__ (line 7924) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7925) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7926) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7927) | def __hash__(self) -> int: ... method __index__ (line 7928) | def __index__(self) -> int: ... method __int__ (line 7929) | def __int__(self) -> int: ... method __le__ (line 7930) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7931) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7932) | def __mul__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder... method __ne__ (line 7933) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7934) | def __or__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder:... method __pos__ (line 7935) | def __pos__(self): ... method __radd__ (line 7936) | def __radd__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrde... method __rand__ (line 7937) | def __rand__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrde... method __rmul__ (line 7938) | def __rmul__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrde... method __ror__ (line 7939) | def __ror__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder... method __rsub__ (line 7940) | def __rsub__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrde... method __rxor__ (line 7941) | def __rxor__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrde... method __sub__ (line 7942) | def __sub__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder... method __xor__ (line 7943) | def __xor__(self, other: typing.SupportsInt) -> QMdiArea.WindowOrder... method __init__ (line 7952) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method activateNextSubWindow (line 7953) | def activateNextSubWindow(self) -> None: ... method activatePreviousSubWindow (line 7954) | def activatePreviousSubWindow(self) -> None: ... method activationOrder (line 7955) | def activationOrder(self) -> QMdiArea.WindowOrder: ... method activeSubWindow (line 7956) | def activeSubWindow(self) -> QMdiSubWindow: ... method addSubWindow (line 7957) | def addSubWindow(self, widget: QWidget, flags: PySide2.QtCore.Qt.Windo... method background (line 7958) | def background(self) -> PySide2.QtGui.QBrush: ... method cascadeSubWindows (line 7959) | def cascadeSubWindows(self) -> None: ... method childEvent (line 7960) | def childEvent(self, childEvent: PySide2.QtCore.QChildEvent) -> None: ... method closeActiveSubWindow (line 7961) | def closeActiveSubWindow(self) -> None: ... method closeAllSubWindows (line 7962) | def closeAllSubWindows(self) -> None: ... method currentSubWindow (line 7963) | def currentSubWindow(self) -> QMdiSubWindow: ... method documentMode (line 7964) | def documentMode(self) -> bool: ... method event (line 7965) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 7966) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method minimumSizeHint (line 7967) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method paintEvent (line 7968) | def paintEvent(self, paintEvent: PySide2.QtGui.QPaintEvent) -> None: ... method removeSubWindow (line 7969) | def removeSubWindow(self, widget: QWidget) -> None: ... method resizeEvent (line 7970) | def resizeEvent(self, resizeEvent: PySide2.QtGui.QResizeEvent) -> None... method scrollContentsBy (line 7971) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method setActivationOrder (line 7972) | def setActivationOrder(self, order: QMdiArea.WindowOrder) -> None: ... method setActiveSubWindow (line 7973) | def setActiveSubWindow(self, window: QMdiSubWindow) -> None: ... method setBackground (line 7974) | def setBackground(self, background: PySide2.QtGui.QBrush | PySide2.QtG... method setDocumentMode (line 7975) | def setDocumentMode(self, enabled: bool) -> None: ... method setOption (line 7976) | def setOption(self, option: QMdiArea.AreaOption, on: bool = ...) -> No... method setTabPosition (line 7977) | def setTabPosition(self, position: QTabWidget.TabPosition) -> None: ... method setTabShape (line 7978) | def setTabShape(self, shape: QTabWidget.TabShape) -> None: ... method setTabsClosable (line 7979) | def setTabsClosable(self, closable: bool) -> None: ... method setTabsMovable (line 7980) | def setTabsMovable(self, movable: bool) -> None: ... method setViewMode (line 7981) | def setViewMode(self, mode: QMdiArea.ViewMode) -> None: ... method setupViewport (line 7982) | def setupViewport(self, viewport: QWidget) -> None: ... method showEvent (line 7983) | def showEvent(self, showEvent: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 7984) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method subWindowList (line 7985) | def subWindowList(self, order: QMdiArea.WindowOrder = ...) -> list[QMd... method tabPosition (line 7986) | def tabPosition(self) -> QTabWidget.TabPosition: ... method tabShape (line 7987) | def tabShape(self) -> QTabWidget.TabShape: ... method tabsClosable (line 7988) | def tabsClosable(self) -> bool: ... method tabsMovable (line 7989) | def tabsMovable(self) -> bool: ... method testOption (line 7990) | def testOption(self, opton: QMdiArea.AreaOption) -> bool: ... method tileSubWindows (line 7991) | def tileSubWindows(self) -> None: ... method timerEvent (line 7992) | def timerEvent(self, timerEvent: PySide2.QtCore.QTimerEvent) -> None: ... method viewMode (line 7993) | def viewMode(self) -> QMdiArea.ViewMode: ... method viewportEvent (line 7994) | def viewportEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... class QMdiSubWindow (line 7996) | class QMdiSubWindow(QWidget): class SubWindowOption (line 7997) | class SubWindowOption: method __init__ (line 8005) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 8006) | def __and__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWin... method __bool__ (line 8007) | def __bool__(self) -> bool: ... method __eq__ (line 8008) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8009) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8010) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8011) | def __hash__(self) -> int: ... method __index__ (line 8012) | def __index__(self) -> int: ... method __int__ (line 8013) | def __int__(self) -> int: ... method __invert__ (line 8014) | def __invert__(self) -> QMdiSubWindow.SubWindowOptions: ... method __le__ (line 8015) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8016) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8017) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8018) | def __or__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWind... method __rand__ (line 8019) | def __rand__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWi... method __ror__ (line 8020) | def __ror__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWin... method __rxor__ (line 8021) | def __rxor__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWi... method __xor__ (line 8022) | def __xor__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWin... class SubWindowOptions (line 8024) | class SubWindowOptions: method __init__ (line 8026) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 8027) | def __and__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWin... method __bool__ (line 8028) | def __bool__(self) -> bool: ... method __eq__ (line 8029) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8030) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8031) | def __gt__(self, other: object) -> bool: ... method __index__ (line 8032) | def __index__(self) -> int: ... method __int__ (line 8033) | def __int__(self) -> int: ... method __invert__ (line 8034) | def __invert__(self) -> QMdiSubWindow.SubWindowOptions: ... method __le__ (line 8035) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8036) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8037) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8038) | def __or__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWind... method __rand__ (line 8039) | def __rand__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWi... method __ror__ (line 8040) | def __ror__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWin... method __rxor__ (line 8041) | def __rxor__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWi... method __xor__ (line 8042) | def __xor__(self, other: typing.SupportsInt) -> QMdiSubWindow.SubWin... method __init__ (line 8050) | def __init__(self, parent: QWidget | None = ..., flags: PySide2.QtCore... method changeEvent (line 8051) | def changeEvent(self, changeEvent: PySide2.QtCore.QEvent) -> None: ... method childEvent (line 8052) | def childEvent(self, childEvent: PySide2.QtCore.QChildEvent) -> None: ... method closeEvent (line 8053) | def closeEvent(self, closeEvent: PySide2.QtGui.QCloseEvent) -> None: ... method contextMenuEvent (line 8054) | def contextMenuEvent(self, contextMenuEvent: PySide2.QtGui.QContextMen... method event (line 8055) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 8056) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method focusInEvent (line 8057) | def focusInEvent(self, focusInEvent: PySide2.QtGui.QFocusEvent) -> Non... method focusOutEvent (line 8058) | def focusOutEvent(self, focusOutEvent: PySide2.QtGui.QFocusEvent) -> N... method hideEvent (line 8059) | def hideEvent(self, hideEvent: PySide2.QtGui.QHideEvent) -> None: ... method isShaded (line 8060) | def isShaded(self) -> bool: ... method keyPressEvent (line 8061) | def keyPressEvent(self, keyEvent: PySide2.QtGui.QKeyEvent) -> None: ... method keyboardPageStep (line 8062) | def keyboardPageStep(self) -> int: ... method keyboardSingleStep (line 8063) | def keyboardSingleStep(self) -> int: ... method leaveEvent (line 8064) | def leaveEvent(self, leaveEvent: PySide2.QtCore.QEvent) -> None: ... method maximizedButtonsWidget (line 8065) | def maximizedButtonsWidget(self) -> QWidget: ... method maximizedSystemMenuIconWidget (line 8066) | def maximizedSystemMenuIconWidget(self) -> QWidget: ... method mdiArea (line 8067) | def mdiArea(self) -> QMdiArea: ... method minimumSizeHint (line 8068) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseDoubleClickEvent (line 8069) | def mouseDoubleClickEvent(self, mouseEvent: PySide2.QtGui.QMouseEvent)... method mouseMoveEvent (line 8070) | def mouseMoveEvent(self, mouseEvent: PySide2.QtGui.QMouseEvent) -> Non... method mousePressEvent (line 8071) | def mousePressEvent(self, mouseEvent: PySide2.QtGui.QMouseEvent) -> No... method mouseReleaseEvent (line 8072) | def mouseReleaseEvent(self, mouseEvent: PySide2.QtGui.QMouseEvent) -> ... method moveEvent (line 8073) | def moveEvent(self, moveEvent: PySide2.QtGui.QMoveEvent) -> None: ... method paintEvent (line 8074) | def paintEvent(self, paintEvent: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 8075) | def resizeEvent(self, resizeEvent: PySide2.QtGui.QResizeEvent) -> None... method setKeyboardPageStep (line 8076) | def setKeyboardPageStep(self, step: int) -> None: ... method setKeyboardSingleStep (line 8077) | def setKeyboardSingleStep(self, step: int) -> None: ... method setOption (line 8078) | def setOption(self, option: QMdiSubWindow.SubWindowOption, on: bool = ... method setSystemMenu (line 8079) | def setSystemMenu(self, systemMenu: QMenu) -> None: ... method setWidget (line 8080) | def setWidget(self, widget: QWidget) -> None: ... method showEvent (line 8081) | def showEvent(self, showEvent: PySide2.QtGui.QShowEvent) -> None: ... method showShaded (line 8082) | def showShaded(self) -> None: ... method showSystemMenu (line 8083) | def showSystemMenu(self) -> None: ... method sizeHint (line 8084) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method systemMenu (line 8085) | def systemMenu(self) -> QMenu: ... method testOption (line 8086) | def testOption(self, arg__1: QMdiSubWindow.SubWindowOption) -> bool: ... method timerEvent (line 8087) | def timerEvent(self, timerEvent: PySide2.QtCore.QTimerEvent) -> None: ... method widget (line 8088) | def widget(self) -> QWidget: ... class QMenu (line 8090) | class QMenu(QWidget): method __init__ (line 8097) | def __init__(self, title: str, parent: QWidget | None = ..., aboutToHi... method __init__ (line 8099) | def __init__(self, parent: QWidget | None = ..., aboutToHide: typing.C... method actionAt (line 8100) | def actionAt(self, arg__1: PySide2.QtCore.QPoint) -> QAction: ... method actionEvent (line 8101) | def actionEvent(self, arg__1: PySide2.QtGui.QActionEvent) -> None: ... method actionGeometry (line 8102) | def actionGeometry(self, arg__1: QAction) -> PySide2.QtCore.QRect: ... method activeAction (line 8103) | def activeAction(self) -> QAction: ... method addAction (line 8105) | def addAction(self, icon: PySide2.QtGui.QIcon, text: str, receiver: Py... method addAction (line 8107) | def addAction(self, text: str, receiver: PySide2.QtCore.QObject, membe... method addAction (line 8109) | def addAction(self, arg__1: PySide2.QtGui.QIcon, arg__2: str, arg__3: ... method addAction (line 8111) | def addAction(self, arg__1: str, arg__2: typing.Callable[[], typing.An... method addAction (line 8113) | def addAction(self, icon: PySide2.QtGui.QIcon, text: str) -> QAction: ... method addAction (line 8115) | def addAction(self, text: str) -> QAction: ... method addAction (line 8117) | def addAction(self, arg__1: QAction) -> None: ... method addMenu (line 8119) | def addMenu(self, icon: PySide2.QtGui.QIcon, title: str) -> QMenu: ... method addMenu (line 8121) | def addMenu(self, title: str) -> QMenu: ... method addMenu (line 8123) | def addMenu(self, menu: QMenu) -> QAction: ... method addSection (line 8125) | def addSection(self, icon: PySide2.QtGui.QIcon, text: str) -> QAction:... method addSection (line 8127) | def addSection(self, text: str) -> QAction: ... method addSeparator (line 8128) | def addSeparator(self) -> QAction: ... method changeEvent (line 8129) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method clear (line 8130) | def clear(self) -> None: ... method columnCount (line 8131) | def columnCount(self) -> int: ... method defaultAction (line 8132) | def defaultAction(self) -> QAction: ... method enterEvent (line 8133) | def enterEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method event (line 8134) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method exec_ (line 8136) | def exec_(self) -> typing.Any: ... method focusNextPrevChild (line 8137) | def focusNextPrevChild(self, next: bool) -> bool: ... method hideEvent (line 8138) | def hideEvent(self, arg__1: PySide2.QtGui.QHideEvent) -> None: ... method hideTearOffMenu (line 8139) | def hideTearOffMenu(self) -> None: ... method icon (line 8140) | def icon(self) -> PySide2.QtGui.QIcon: ... method initStyleOption (line 8141) | def initStyleOption(self, option: QStyleOptionMenuItem, action: QActio... method insertMenu (line 8142) | def insertMenu(self, before: QAction, menu: QMenu) -> QAction: ... method insertSection (line 8144) | def insertSection(self, before: QAction, icon: PySide2.QtGui.QIcon, te... method insertSection (line 8146) | def insertSection(self, before: QAction, text: str) -> QAction: ... method insertSeparator (line 8147) | def insertSeparator(self, before: QAction) -> QAction: ... method isEmpty (line 8148) | def isEmpty(self) -> bool: ... method isTearOffEnabled (line 8149) | def isTearOffEnabled(self) -> bool: ... method isTearOffMenuVisible (line 8150) | def isTearOffMenuVisible(self) -> bool: ... method keyPressEvent (line 8151) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method leaveEvent (line 8152) | def leaveEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method menuAction (line 8153) | def menuAction(self) -> QAction: ... method mouseMoveEvent (line 8154) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 8155) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 8156) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method paintEvent (line 8157) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method popup (line 8158) | def popup(self, pos: PySide2.QtCore.QPoint, at: QAction | None = ...) ... method separatorsCollapsible (line 8159) | def separatorsCollapsible(self) -> bool: ... method setActiveAction (line 8160) | def setActiveAction(self, act: QAction) -> None: ... method setAsDockMenu (line 8161) | def setAsDockMenu(self) -> None: ... method setDefaultAction (line 8162) | def setDefaultAction(self, arg__1: QAction) -> None: ... method setIcon (line 8163) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setSeparatorsCollapsible (line 8164) | def setSeparatorsCollapsible(self, collapse: bool) -> None: ... method setTearOffEnabled (line 8165) | def setTearOffEnabled(self, arg__1: bool) -> None: ... method setTitle (line 8166) | def setTitle(self, title: str) -> None: ... method setToolTipsVisible (line 8167) | def setToolTipsVisible(self, visible: bool) -> None: ... method showTearOffMenu (line 8169) | def showTearOffMenu(self, pos: PySide2.QtCore.QPoint) -> None: ... method showTearOffMenu (line 8171) | def showTearOffMenu(self) -> None: ... method sizeHint (line 8172) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method timerEvent (line 8173) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... method title (line 8174) | def title(self) -> str: ... method toolTipsVisible (line 8175) | def toolTipsVisible(self) -> bool: ... method wheelEvent (line 8176) | def wheelEvent(self, arg__1: PySide2.QtGui.QWheelEvent) -> None: ... class QMenuBar (line 8178) | class QMenuBar(QWidget): method __init__ (line 8182) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method actionAt (line 8183) | def actionAt(self, arg__1: PySide2.QtCore.QPoint) -> QAction: ... method actionEvent (line 8184) | def actionEvent(self, arg__1: PySide2.QtGui.QActionEvent) -> None: ... method actionGeometry (line 8185) | def actionGeometry(self, arg__1: QAction) -> PySide2.QtCore.QRect: ... method activeAction (line 8186) | def activeAction(self) -> QAction: ... method addAction (line 8188) | def addAction(self, text: str, receiver: PySide2.QtCore.QObject, membe... method addAction (line 8190) | def addAction(self, arg__1: str, arg__2: typing.Callable[[], typing.An... method addAction (line 8192) | def addAction(self, text: str) -> QAction: ... method addAction (line 8194) | def addAction(self, arg__1: QAction) -> None: ... method addMenu (line 8196) | def addMenu(self, icon: PySide2.QtGui.QIcon, title: str) -> QMenu: ... method addMenu (line 8198) | def addMenu(self, title: str) -> QMenu: ... method addMenu (line 8200) | def addMenu(self, menu: QMenu) -> QAction: ... method addSeparator (line 8201) | def addSeparator(self) -> QAction: ... method changeEvent (line 8202) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method clear (line 8203) | def clear(self) -> None: ... method cornerWidget (line 8204) | def cornerWidget(self, corner: PySide2.QtCore.Qt.Corner = ...) -> QWid... method event (line 8205) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 8206) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method focusInEvent (line 8207) | def focusInEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 8208) | def focusOutEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method heightForWidth (line 8209) | def heightForWidth(self, arg__1: int) -> int: ... method initStyleOption (line 8210) | def initStyleOption(self, option: QStyleOptionMenuItem, action: QActio... method insertMenu (line 8211) | def insertMenu(self, before: QAction, menu: QMenu) -> QAction: ... method insertSeparator (line 8212) | def insertSeparator(self, before: QAction) -> QAction: ... method isDefaultUp (line 8213) | def isDefaultUp(self) -> bool: ... method isNativeMenuBar (line 8214) | def isNativeMenuBar(self) -> bool: ... method keyPressEvent (line 8215) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method leaveEvent (line 8216) | def leaveEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method minimumSizeHint (line 8217) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 8218) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 8219) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 8220) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method paintEvent (line 8221) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 8222) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method setActiveAction (line 8223) | def setActiveAction(self, action: QAction) -> None: ... method setCornerWidget (line 8224) | def setCornerWidget(self, w: QWidget, corner: PySide2.QtCore.Qt.Corner... method setDefaultUp (line 8225) | def setDefaultUp(self, arg__1: bool) -> None: ... method setNativeMenuBar (line 8226) | def setNativeMenuBar(self, nativeMenuBar: bool) -> None: ... method setVisible (line 8227) | def setVisible(self, visible: bool) -> None: ... method sizeHint (line 8228) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method timerEvent (line 8229) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... class QMessageBox (line 8231) | class QMessageBox(QDialog): class ButtonRole (line 8232) | class ButtonRole: method __init__ (line 8247) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8248) | def __add__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRo... method __and__ (line 8249) | def __and__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRo... method __bool__ (line 8250) | def __bool__(self) -> bool: ... method __eq__ (line 8251) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8252) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8253) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8254) | def __hash__(self) -> int: ... method __index__ (line 8255) | def __index__(self) -> int: ... method __int__ (line 8256) | def __int__(self) -> int: ... method __le__ (line 8257) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8258) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8259) | def __mul__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRo... method __ne__ (line 8260) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8261) | def __or__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRol... method __pos__ (line 8262) | def __pos__(self): ... method __radd__ (line 8263) | def __radd__(self, other: typing.SupportsInt) -> QMessageBox.ButtonR... method __rand__ (line 8264) | def __rand__(self, other: typing.SupportsInt) -> QMessageBox.ButtonR... method __rmul__ (line 8265) | def __rmul__(self, other: typing.SupportsInt) -> QMessageBox.ButtonR... method __ror__ (line 8266) | def __ror__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRo... method __rsub__ (line 8267) | def __rsub__(self, other: typing.SupportsInt) -> QMessageBox.ButtonR... method __rxor__ (line 8268) | def __rxor__(self, other: typing.SupportsInt) -> QMessageBox.ButtonR... method __sub__ (line 8269) | def __sub__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRo... method __xor__ (line 8270) | def __xor__(self, other: typing.SupportsInt) -> QMessageBox.ButtonRo... class Icon (line 8272) | class Icon: method __init__ (line 8281) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8282) | def __add__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __and__ (line 8283) | def __and__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __bool__ (line 8284) | def __bool__(self) -> bool: ... method __eq__ (line 8285) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8286) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8287) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8288) | def __hash__(self) -> int: ... method __index__ (line 8289) | def __index__(self) -> int: ... method __int__ (line 8290) | def __int__(self) -> int: ... method __le__ (line 8291) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8292) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8293) | def __mul__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __ne__ (line 8294) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8295) | def __or__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __pos__ (line 8296) | def __pos__(self): ... method __radd__ (line 8297) | def __radd__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __rand__ (line 8298) | def __rand__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __rmul__ (line 8299) | def __rmul__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __ror__ (line 8300) | def __ror__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __rsub__ (line 8301) | def __rsub__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __rxor__ (line 8302) | def __rxor__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __sub__ (line 8303) | def __sub__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... method __xor__ (line 8304) | def __xor__(self, other: typing.SupportsInt) -> QMessageBox.Icon: ... class StandardButton (line 8306) | class StandardButton: method __init__ (line 8337) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 8338) | def __and__(self, other: typing.SupportsInt) -> QMessageBox.Standard... method __bool__ (line 8339) | def __bool__(self) -> bool: ... method __eq__ (line 8340) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8341) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8342) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8343) | def __hash__(self) -> int: ... method __index__ (line 8344) | def __index__(self) -> int: ... method __int__ (line 8345) | def __int__(self) -> int: ... method __invert__ (line 8346) | def __invert__(self) -> QMessageBox.StandardButtons: ... method __le__ (line 8347) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8348) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8349) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8350) | def __or__(self, other: typing.SupportsInt) -> QMessageBox.StandardB... method __rand__ (line 8351) | def __rand__(self, other: typing.SupportsInt) -> QMessageBox.Standar... method __ror__ (line 8352) | def __ror__(self, other: typing.SupportsInt) -> QMessageBox.Standard... method __rxor__ (line 8353) | def __rxor__(self, other: typing.SupportsInt) -> QMessageBox.Standar... method __xor__ (line 8354) | def __xor__(self, other: typing.SupportsInt) -> QMessageBox.Standard... class StandardButtons (line 8356) | class StandardButtons: method __init__ (line 8358) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 8359) | def __and__(self, other: typing.SupportsInt) -> QMessageBox.Standard... method __bool__ (line 8360) | def __bool__(self) -> bool: ... method __eq__ (line 8361) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8362) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8363) | def __gt__(self, other: object) -> bool: ... method __index__ (line 8364) | def __index__(self) -> int: ... method __int__ (line 8365) | def __int__(self) -> int: ... method __invert__ (line 8366) | def __invert__(self) -> QMessageBox.StandardButtons: ... method __le__ (line 8367) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8368) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8369) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8370) | def __or__(self, other: typing.SupportsInt) -> QMessageBox.StandardB... method __rand__ (line 8371) | def __rand__(self, other: typing.SupportsInt) -> QMessageBox.Standar... method __ror__ (line 8372) | def __ror__(self, other: typing.SupportsInt) -> QMessageBox.Standard... method __rxor__ (line 8373) | def __rxor__(self, other: typing.SupportsInt) -> QMessageBox.Standar... method __xor__ (line 8374) | def __xor__(self, other: typing.SupportsInt) -> QMessageBox.Standard... method __init__ (line 8421) | def __init__(self, icon: QMessageBox.Icon, title: str, text: str, butt... method __init__ (line 8423) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method about (line 8425) | def about(parent: QWidget | None, title: str, text: str) -> None: ... method aboutQt (line 8427) | def aboutQt(parent: QWidget | None, title: str = ...) -> None: ... method addButton (line 8429) | def addButton(self, text: str, role: QMessageBox.ButtonRole) -> QPushB... method addButton (line 8431) | def addButton(self, button: QAbstractButton, role: QMessageBox.ButtonR... method addButton (line 8433) | def addButton(self, button: QMessageBox.StandardButton) -> QPushButton... method button (line 8434) | def button(self, which: QMessageBox.StandardButton) -> QAbstractButton... method buttonRole (line 8435) | def buttonRole(self, button: QAbstractButton) -> QMessageBox.ButtonRol... method buttonText (line 8436) | def buttonText(self, button: int) -> str: ... method buttons (line 8437) | def buttons(self) -> list[QAbstractButton]: ... method changeEvent (line 8438) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method checkBox (line 8439) | def checkBox(self) -> QCheckBox: ... method clickedButton (line 8440) | def clickedButton(self) -> QAbstractButton: ... method closeEvent (line 8441) | def closeEvent(self, event: PySide2.QtGui.QCloseEvent) -> None: ... method critical (line 8444) | def critical(parent: QWidget | None, title: str, text: str, buttons: Q... method critical (line 8447) | def critical(parent: QWidget | None, title: str, text: str, button0: Q... method defaultButton (line 8448) | def defaultButton(self) -> QPushButton: ... method detailedText (line 8449) | def detailedText(self) -> str: ... method escapeButton (line 8450) | def escapeButton(self) -> QAbstractButton: ... method event (line 8451) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method icon (line 8452) | def icon(self) -> QMessageBox.Icon: ... method iconPixmap (line 8453) | def iconPixmap(self) -> PySide2.QtGui.QPixmap: ... method information (line 8456) | def information(parent: QWidget | None, title: str, text: str, buttons... method information (line 8459) | def information(parent: QWidget | None, title: str, text: str, button0... method informativeText (line 8460) | def informativeText(self) -> str: ... method keyPressEvent (line 8461) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method open (line 8463) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 8465) | def open(self) -> None: ... method question (line 8468) | def question(parent: QWidget | None, title: str, text: str, buttons: Q... method question (line 8471) | def question(parent: QWidget | None, title: str, text: str, button0: Q... method removeButton (line 8472) | def removeButton(self, button: QAbstractButton) -> None: ... method resizeEvent (line 8473) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method setButtonText (line 8474) | def setButtonText(self, button: int, text: str) -> None: ... method setCheckBox (line 8475) | def setCheckBox(self, cb: QCheckBox) -> None: ... method setDefaultButton (line 8477) | def setDefaultButton(self, button: QMessageBox.StandardButton) -> None... method setDefaultButton (line 8479) | def setDefaultButton(self, button: QPushButton) -> None: ... method setDetailedText (line 8480) | def setDetailedText(self, text: str) -> None: ... method setEscapeButton (line 8482) | def setEscapeButton(self, button: QAbstractButton) -> None: ... method setEscapeButton (line 8484) | def setEscapeButton(self, button: QMessageBox.StandardButton) -> None:... method setIcon (line 8485) | def setIcon(self, arg__1: QMessageBox.Icon) -> None: ... method setIconPixmap (line 8486) | def setIconPixmap(self, pixmap: PySide2.QtGui.QPixmap) -> None: ... method setInformativeText (line 8487) | def setInformativeText(self, text: str) -> None: ... method setStandardButtons (line 8488) | def setStandardButtons(self, buttons: QMessageBox.StandardButtons | QM... method setText (line 8489) | def setText(self, text: str) -> None: ... method setTextFormat (line 8490) | def setTextFormat(self, format: PySide2.QtCore.Qt.TextFormat) -> None:... method setTextInteractionFlags (line 8491) | def setTextInteractionFlags(self, flags: PySide2.QtCore.Qt.TextInterac... method setWindowModality (line 8492) | def setWindowModality(self, windowModality: PySide2.QtCore.Qt.WindowMo... method setWindowTitle (line 8493) | def setWindowTitle(self, title: str) -> None: ... method showEvent (line 8494) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method standardButton (line 8495) | def standardButton(self, button: QAbstractButton) -> QMessageBox.Stand... method standardButtons (line 8496) | def standardButtons(self) -> QMessageBox.StandardButtons | QMessageBox... method standardIcon (line 8498) | def standardIcon(icon: QMessageBox.Icon) -> PySide2.QtGui.QPixmap: ... method text (line 8499) | def text(self) -> str: ... method textFormat (line 8500) | def textFormat(self) -> PySide2.QtCore.Qt.TextFormat: ... method textInteractionFlags (line 8501) | def textInteractionFlags(self) -> PySide2.QtCore.Qt.TextInteractionFla... method warning (line 8504) | def warning(parent: QWidget | None, title: str, text: str, buttons: QM... method warning (line 8507) | def warning(parent: QWidget | None, title: str, text: str, button0: QM... class QMouseEventTransition (line 8509) | class QMouseEventTransition(PySide2.QtCore.QEventTransition): method __init__ (line 8512) | def __init__(self, object: PySide2.QtCore.QObject, type: PySide2.QtCor... method __init__ (line 8514) | def __init__(self, sourceState: PySide2.QtCore.QState | None = ..., bu... method button (line 8515) | def button(self) -> PySide2.QtCore.Qt.MouseButton: ... method eventTest (line 8516) | def eventTest(self, event: PySide2.QtCore.QEvent) -> bool: ... method hitTestPath (line 8517) | def hitTestPath(self) -> PySide2.QtGui.QPainterPath: ... method modifierMask (line 8518) | def modifierMask(self) -> PySide2.QtCore.Qt.KeyboardModifiers | PySide... method onTransition (line 8519) | def onTransition(self, event: PySide2.QtCore.QEvent) -> None: ... method setButton (line 8520) | def setButton(self, button: PySide2.QtCore.Qt.MouseButton) -> None: ... method setHitTestPath (line 8521) | def setHitTestPath(self, path: PySide2.QtGui.QPainterPath) -> None: ... method setModifierMask (line 8522) | def setModifierMask(self, modifiers: PySide2.QtCore.Qt.KeyboardModifie... class QOpenGLWidget (line 8524) | class QOpenGLWidget(QWidget): class UpdateBehavior (line 8525) | class UpdateBehavior: method __init__ (line 8531) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8532) | def __add__(self, other: typing.SupportsInt) -> QOpenGLWidget.Update... method __and__ (line 8533) | def __and__(self, other: typing.SupportsInt) -> QOpenGLWidget.Update... method __bool__ (line 8534) | def __bool__(self) -> bool: ... method __eq__ (line 8535) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8536) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8537) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8538) | def __hash__(self) -> int: ... method __index__ (line 8539) | def __index__(self) -> int: ... method __int__ (line 8540) | def __int__(self) -> int: ... method __le__ (line 8541) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8542) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8543) | def __mul__(self, other: typing.SupportsInt) -> QOpenGLWidget.Update... method __ne__ (line 8544) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8545) | def __or__(self, other: typing.SupportsInt) -> QOpenGLWidget.UpdateB... method __pos__ (line 8546) | def __pos__(self): ... method __radd__ (line 8547) | def __radd__(self, other: typing.SupportsInt) -> QOpenGLWidget.Updat... method __rand__ (line 8548) | def __rand__(self, other: typing.SupportsInt) -> QOpenGLWidget.Updat... method __rmul__ (line 8549) | def __rmul__(self, other: typing.SupportsInt) -> QOpenGLWidget.Updat... method __ror__ (line 8550) | def __ror__(self, other: typing.SupportsInt) -> QOpenGLWidget.Update... method __rsub__ (line 8551) | def __rsub__(self, other: typing.SupportsInt) -> QOpenGLWidget.Updat... method __rxor__ (line 8552) | def __rxor__(self, other: typing.SupportsInt) -> QOpenGLWidget.Updat... method __sub__ (line 8553) | def __sub__(self, other: typing.SupportsInt) -> QOpenGLWidget.Update... method __xor__ (line 8554) | def __xor__(self, other: typing.SupportsInt) -> QOpenGLWidget.Update... method __init__ (line 8562) | def __init__(self, parent: QWidget | None = ..., f: PySide2.QtCore.Qt.... method context (line 8563) | def context(self) -> PySide2.QtGui.QOpenGLContext: ... method defaultFramebufferObject (line 8564) | def defaultFramebufferObject(self) -> int: ... method doneCurrent (line 8565) | def doneCurrent(self) -> None: ... method event (line 8566) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method format (line 8567) | def format(self) -> PySide2.QtGui.QSurfaceFormat: ... method grabFramebuffer (line 8568) | def grabFramebuffer(self) -> PySide2.QtGui.QImage: ... method initializeGL (line 8569) | def initializeGL(self) -> None: ... method isValid (line 8570) | def isValid(self) -> bool: ... method makeCurrent (line 8571) | def makeCurrent(self) -> None: ... method metric (line 8572) | def metric(self, metric: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method paintEngine (line 8573) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method paintEvent (line 8574) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method paintGL (line 8575) | def paintGL(self) -> None: ... method redirected (line 8576) | def redirected(self, p: PySide2.QtCore.QPoint) -> PySide2.QtGui.QPaint... method resizeEvent (line 8577) | def resizeEvent(self, e: PySide2.QtGui.QResizeEvent) -> None: ... method resizeGL (line 8578) | def resizeGL(self, w: int, h: int) -> None: ... method setFormat (line 8579) | def setFormat(self, format: PySide2.QtGui.QSurfaceFormat) -> None: ... method setTextureFormat (line 8580) | def setTextureFormat(self, texFormat: int) -> None: ... method setUpdateBehavior (line 8581) | def setUpdateBehavior(self, updateBehavior: QOpenGLWidget.UpdateBehavi... method textureFormat (line 8582) | def textureFormat(self) -> int: ... method updateBehavior (line 8583) | def updateBehavior(self) -> QOpenGLWidget.UpdateBehavior: ... class QPanGesture (line 8585) | class QPanGesture(QGesture): method __init__ (line 8587) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., accele... method acceleration (line 8588) | def acceleration(self) -> float: ... method delta (line 8589) | def delta(self) -> PySide2.QtCore.QPointF: ... method lastOffset (line 8590) | def lastOffset(self) -> PySide2.QtCore.QPointF: ... method offset (line 8591) | def offset(self) -> PySide2.QtCore.QPointF: ... method setAcceleration (line 8592) | def setAcceleration(self, value: float) -> None: ... method setLastOffset (line 8593) | def setLastOffset(self, value: PySide2.QtCore.QPointF) -> None: ... method setOffset (line 8594) | def setOffset(self, value: PySide2.QtCore.QPointF) -> None: ... class QPinchGesture (line 8596) | class QPinchGesture(QGesture): class ChangeFlag (line 8597) | class ChangeFlag: method __init__ (line 8604) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 8605) | def __and__(self, other: typing.SupportsInt) -> QPinchGesture.Change... method __bool__ (line 8606) | def __bool__(self) -> bool: ... method __eq__ (line 8607) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8608) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8609) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8610) | def __hash__(self) -> int: ... method __index__ (line 8611) | def __index__(self) -> int: ... method __int__ (line 8612) | def __int__(self) -> int: ... method __invert__ (line 8613) | def __invert__(self) -> QPinchGesture.ChangeFlags: ... method __le__ (line 8614) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8615) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8616) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8617) | def __or__(self, other: typing.SupportsInt) -> QPinchGesture.ChangeF... method __rand__ (line 8618) | def __rand__(self, other: typing.SupportsInt) -> QPinchGesture.Chang... method __ror__ (line 8619) | def __ror__(self, other: typing.SupportsInt) -> QPinchGesture.Change... method __rxor__ (line 8620) | def __rxor__(self, other: typing.SupportsInt) -> QPinchGesture.Chang... method __xor__ (line 8621) | def __xor__(self, other: typing.SupportsInt) -> QPinchGesture.Change... class ChangeFlags (line 8623) | class ChangeFlags: method __init__ (line 8625) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 8626) | def __and__(self, other: typing.SupportsInt) -> QPinchGesture.Change... method __bool__ (line 8627) | def __bool__(self) -> bool: ... method __eq__ (line 8628) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8629) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8630) | def __gt__(self, other: object) -> bool: ... method __index__ (line 8631) | def __index__(self) -> int: ... method __int__ (line 8632) | def __int__(self) -> int: ... method __invert__ (line 8633) | def __invert__(self) -> QPinchGesture.ChangeFlags: ... method __le__ (line 8634) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8635) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8636) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8637) | def __or__(self, other: typing.SupportsInt) -> QPinchGesture.ChangeF... method __rand__ (line 8638) | def __rand__(self, other: typing.SupportsInt) -> QPinchGesture.Chang... method __ror__ (line 8639) | def __ror__(self, other: typing.SupportsInt) -> QPinchGesture.Change... method __rxor__ (line 8640) | def __rxor__(self, other: typing.SupportsInt) -> QPinchGesture.Chang... method __xor__ (line 8641) | def __xor__(self, other: typing.SupportsInt) -> QPinchGesture.Change... method __init__ (line 8646) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., center... method centerPoint (line 8647) | def centerPoint(self) -> PySide2.QtCore.QPointF: ... method changeFlags (line 8648) | def changeFlags(self) -> QPinchGesture.ChangeFlags | QPinchGesture.Cha... method lastCenterPoint (line 8649) | def lastCenterPoint(self) -> PySide2.QtCore.QPointF: ... method lastRotationAngle (line 8650) | def lastRotationAngle(self) -> float: ... method lastScaleFactor (line 8651) | def lastScaleFactor(self) -> float: ... method rotationAngle (line 8652) | def rotationAngle(self) -> float: ... method scaleFactor (line 8653) | def scaleFactor(self) -> float: ... method setCenterPoint (line 8654) | def setCenterPoint(self, value: PySide2.QtCore.QPointF) -> None: ... method setChangeFlags (line 8655) | def setChangeFlags(self, value: QPinchGesture.ChangeFlags | QPinchGest... method setLastCenterPoint (line 8656) | def setLastCenterPoint(self, value: PySide2.QtCore.QPointF) -> None: ... method setLastRotationAngle (line 8657) | def setLastRotationAngle(self, value: float) -> None: ... method setLastScaleFactor (line 8658) | def setLastScaleFactor(self, value: float) -> None: ... method setRotationAngle (line 8659) | def setRotationAngle(self, value: float) -> None: ... method setScaleFactor (line 8660) | def setScaleFactor(self, value: float) -> None: ... method setStartCenterPoint (line 8661) | def setStartCenterPoint(self, value: PySide2.QtCore.QPointF) -> None: ... method setTotalChangeFlags (line 8662) | def setTotalChangeFlags(self, value: QPinchGesture.ChangeFlags | QPinc... method setTotalRotationAngle (line 8663) | def setTotalRotationAngle(self, value: float) -> None: ... method setTotalScaleFactor (line 8664) | def setTotalScaleFactor(self, value: float) -> None: ... method startCenterPoint (line 8665) | def startCenterPoint(self) -> PySide2.QtCore.QPointF: ... method totalChangeFlags (line 8666) | def totalChangeFlags(self) -> QPinchGesture.ChangeFlags | QPinchGestur... method totalRotationAngle (line 8667) | def totalRotationAngle(self) -> float: ... method totalScaleFactor (line 8668) | def totalScaleFactor(self) -> float: ... class QPlainTextDocumentLayout (line 8670) | class QPlainTextDocumentLayout(PySide2.QtGui.QAbstractTextDocumentLayout): method __init__ (line 8672) | def __init__(self, document: PySide2.QtGui.QTextDocument, destroyed: t... method blockBoundingRect (line 8673) | def blockBoundingRect(self, block: PySide2.QtGui.QTextBlock) -> PySide... method cursorWidth (line 8674) | def cursorWidth(self) -> int: ... method documentChanged (line 8675) | def documentChanged(self, from_: int, arg__2: int, charsAdded: int) ->... method documentSize (line 8676) | def documentSize(self) -> PySide2.QtCore.QSizeF: ... method draw (line 8677) | def draw(self, arg__1: PySide2.QtGui.QPainter, arg__2: PySide2.QtGui.Q... method ensureBlockLayout (line 8678) | def ensureBlockLayout(self, block: PySide2.QtGui.QTextBlock) -> None: ... method frameBoundingRect (line 8679) | def frameBoundingRect(self, arg__1: PySide2.QtGui.QTextFrame) -> PySid... method hitTest (line 8680) | def hitTest(self, arg__1: PySide2.QtCore.QPointF, arg__2: PySide2.QtCo... method pageCount (line 8681) | def pageCount(self) -> int: ... method requestUpdate (line 8682) | def requestUpdate(self) -> None: ... method setCursorWidth (line 8683) | def setCursorWidth(self, width: int) -> None: ... class QPlainTextEdit (line 8685) | class QPlainTextEdit(QAbstractScrollArea): class LineWrapMode (line 8686) | class LineWrapMode: method __init__ (line 8692) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8693) | def __add__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineW... method __and__ (line 8694) | def __and__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineW... method __bool__ (line 8695) | def __bool__(self) -> bool: ... method __eq__ (line 8696) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8697) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8698) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8699) | def __hash__(self) -> int: ... method __index__ (line 8700) | def __index__(self) -> int: ... method __int__ (line 8701) | def __int__(self) -> int: ... method __le__ (line 8702) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8703) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8704) | def __mul__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineW... method __ne__ (line 8705) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8706) | def __or__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineWr... method __pos__ (line 8707) | def __pos__(self): ... method __radd__ (line 8708) | def __radd__(self, other: typing.SupportsInt) -> QPlainTextEdit.Line... method __rand__ (line 8709) | def __rand__(self, other: typing.SupportsInt) -> QPlainTextEdit.Line... method __rmul__ (line 8710) | def __rmul__(self, other: typing.SupportsInt) -> QPlainTextEdit.Line... method __ror__ (line 8711) | def __ror__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineW... method __rsub__ (line 8712) | def __rsub__(self, other: typing.SupportsInt) -> QPlainTextEdit.Line... method __rxor__ (line 8713) | def __rxor__(self, other: typing.SupportsInt) -> QPlainTextEdit.Line... method __sub__ (line 8714) | def __sub__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineW... method __xor__ (line 8715) | def __xor__(self, other: typing.SupportsInt) -> QPlainTextEdit.LineW... method __init__ (line 8729) | def __init__(self, text: str, parent: QWidget | None = ..., acceptDrop... method __init__ (line 8731) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method anchorAt (line 8732) | def anchorAt(self, pos: PySide2.QtCore.QPoint) -> str: ... method appendHtml (line 8733) | def appendHtml(self, html: str) -> None: ... method appendPlainText (line 8734) | def appendPlainText(self, text: str) -> None: ... method backgroundVisible (line 8735) | def backgroundVisible(self) -> bool: ... method blockBoundingGeometry (line 8736) | def blockBoundingGeometry(self, block: PySide2.QtGui.QTextBlock) -> Py... method blockBoundingRect (line 8737) | def blockBoundingRect(self, block: PySide2.QtGui.QTextBlock) -> PySide... method blockCount (line 8738) | def blockCount(self) -> int: ... method canInsertFromMimeData (line 8739) | def canInsertFromMimeData(self, source: PySide2.QtCore.QMimeData) -> b... method canPaste (line 8740) | def canPaste(self) -> bool: ... method centerCursor (line 8741) | def centerCursor(self) -> None: ... method centerOnScroll (line 8742) | def centerOnScroll(self) -> bool: ... method changeEvent (line 8743) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method clear (line 8744) | def clear(self) -> None: ... method contentOffset (line 8745) | def contentOffset(self) -> PySide2.QtCore.QPointF: ... method contextMenuEvent (line 8746) | def contextMenuEvent(self, e: PySide2.QtGui.QContextMenuEvent) -> None... method copy (line 8747) | def copy(self) -> None: ... method createMimeDataFromSelection (line 8748) | def createMimeDataFromSelection(self) -> PySide2.QtCore.QMimeData: ... method createStandardContextMenu (line 8750) | def createStandardContextMenu(self, position: PySide2.QtCore.QPoint) -... method createStandardContextMenu (line 8752) | def createStandardContextMenu(self) -> QMenu: ... method currentCharFormat (line 8753) | def currentCharFormat(self) -> PySide2.QtGui.QTextCharFormat: ... method cursorForPosition (line 8754) | def cursorForPosition(self, pos: PySide2.QtCore.QPoint) -> PySide2.QtG... method cursorRect (line 8756) | def cursorRect(self, cursor: PySide2.QtGui.QTextCursor) -> PySide2.QtC... method cursorRect (line 8758) | def cursorRect(self) -> PySide2.QtCore.QRect: ... method cursorWidth (line 8759) | def cursorWidth(self) -> int: ... method cut (line 8760) | def cut(self) -> None: ... method doSetTextCursor (line 8761) | def doSetTextCursor(self, cursor: PySide2.QtGui.QTextCursor) -> None: ... method document (line 8762) | def document(self) -> PySide2.QtGui.QTextDocument: ... method documentTitle (line 8763) | def documentTitle(self) -> str: ... method dragEnterEvent (line 8764) | def dragEnterEvent(self, e: PySide2.QtGui.QDragEnterEvent) -> None: ... method dragLeaveEvent (line 8765) | def dragLeaveEvent(self, e: PySide2.QtGui.QDragLeaveEvent) -> None: ... method dragMoveEvent (line 8766) | def dragMoveEvent(self, e: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 8767) | def dropEvent(self, e: PySide2.QtGui.QDropEvent) -> None: ... method ensureCursorVisible (line 8768) | def ensureCursorVisible(self) -> None: ... method event (line 8769) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method extraSelections (line 8770) | def extraSelections(self) -> list[QTextEdit.ExtraSelection]: ... method find (line 8772) | def find(self, exp: PySide2.QtCore.QRegExp, options: PySide2.QtGui.QTe... method find (line 8774) | def find(self, exp: PySide2.QtCore.QRegularExpression, options: PySide... method find (line 8776) | def find(self, exp: str, options: PySide2.QtGui.QTextDocument.FindFlag... method firstVisibleBlock (line 8777) | def firstVisibleBlock(self) -> PySide2.QtGui.QTextBlock: ... method focusInEvent (line 8778) | def focusInEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 8779) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 8780) | def focusOutEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method getPaintContext (line 8781) | def getPaintContext(self) -> PySide2.QtGui.QAbstractTextDocumentLayout... method inputMethodEvent (line 8782) | def inputMethodEvent(self, arg__1: PySide2.QtGui.QInputMethodEvent) ->... method inputMethodQuery (line 8784) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery, ... method inputMethodQuery (line 8786) | def inputMethodQuery(self, property: PySide2.QtCore.Qt.InputMethodQuer... method insertFromMimeData (line 8787) | def insertFromMimeData(self, source: PySide2.QtCore.QMimeData) -> None... method insertPlainText (line 8788) | def insertPlainText(self, text: str) -> None: ... method isReadOnly (line 8789) | def isReadOnly(self) -> bool: ... method isUndoRedoEnabled (line 8790) | def isUndoRedoEnabled(self) -> bool: ... method keyPressEvent (line 8791) | def keyPressEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 8792) | def keyReleaseEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method lineWrapMode (line 8793) | def lineWrapMode(self) -> QPlainTextEdit.LineWrapMode: ... method loadResource (line 8794) | def loadResource(self, type: int, name: PySide2.QtCore.QUrl) -> typing... method maximumBlockCount (line 8795) | def maximumBlockCount(self) -> int: ... method mergeCurrentCharFormat (line 8796) | def mergeCurrentCharFormat(self, modifier: PySide2.QtGui.QTextCharForm... method mouseDoubleClickEvent (line 8797) | def mouseDoubleClickEvent(self, e: PySide2.QtGui.QMouseEvent) -> None:... method mouseMoveEvent (line 8798) | def mouseMoveEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 8799) | def mousePressEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 8800) | def mouseReleaseEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method moveCursor (line 8801) | def moveCursor(self, operation: PySide2.QtGui.QTextCursor.MoveOperatio... method overwriteMode (line 8802) | def overwriteMode(self) -> bool: ... method paintEvent (line 8803) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method paste (line 8804) | def paste(self) -> None: ... method placeholderText (line 8805) | def placeholderText(self) -> str: ... method print_ (line 8806) | def print_(self, printer: PySide2.QtGui.QPagedPaintDevice) -> None: ... method redo (line 8807) | def redo(self) -> None: ... method resizeEvent (line 8808) | def resizeEvent(self, e: PySide2.QtGui.QResizeEvent) -> None: ... method scrollContentsBy (line 8809) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method selectAll (line 8810) | def selectAll(self) -> None: ... method setBackgroundVisible (line 8811) | def setBackgroundVisible(self, visible: bool) -> None: ... method setCenterOnScroll (line 8812) | def setCenterOnScroll(self, enabled: bool) -> None: ... method setCurrentCharFormat (line 8813) | def setCurrentCharFormat(self, format: PySide2.QtGui.QTextCharFormat) ... method setCursorWidth (line 8814) | def setCursorWidth(self, width: int) -> None: ... method setDocument (line 8815) | def setDocument(self, document: PySide2.QtGui.QTextDocument) -> None: ... method setDocumentTitle (line 8816) | def setDocumentTitle(self, title: str) -> None: ... method setExtraSelections (line 8817) | def setExtraSelections(self, selections: typing.Iterable[QTextEdit.Ext... method setLineWrapMode (line 8818) | def setLineWrapMode(self, mode: QPlainTextEdit.LineWrapMode) -> None: ... method setMaximumBlockCount (line 8819) | def setMaximumBlockCount(self, maximum: int) -> None: ... method setOverwriteMode (line 8820) | def setOverwriteMode(self, overwrite: bool) -> None: ... method setPlaceholderText (line 8821) | def setPlaceholderText(self, placeholderText: str) -> None: ... method setPlainText (line 8822) | def setPlainText(self, text: str) -> None: ... method setReadOnly (line 8823) | def setReadOnly(self, ro: bool) -> None: ... method setTabChangesFocus (line 8824) | def setTabChangesFocus(self, b: bool) -> None: ... method setTabStopDistance (line 8825) | def setTabStopDistance(self, distance: float) -> None: ... method setTabStopWidth (line 8826) | def setTabStopWidth(self, width: int) -> None: ... method setTextCursor (line 8827) | def setTextCursor(self, cursor: PySide2.QtGui.QTextCursor) -> None: ... method setTextInteractionFlags (line 8828) | def setTextInteractionFlags(self, flags: PySide2.QtCore.Qt.TextInterac... method setUndoRedoEnabled (line 8829) | def setUndoRedoEnabled(self, enable: bool) -> None: ... method setWordWrapMode (line 8830) | def setWordWrapMode(self, policy: PySide2.QtGui.QTextOption.WrapMode) ... method showEvent (line 8831) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method tabChangesFocus (line 8832) | def tabChangesFocus(self) -> bool: ... method tabStopDistance (line 8833) | def tabStopDistance(self) -> float: ... method tabStopWidth (line 8834) | def tabStopWidth(self) -> int: ... method textCursor (line 8835) | def textCursor(self) -> PySide2.QtGui.QTextCursor: ... method textInteractionFlags (line 8836) | def textInteractionFlags(self) -> PySide2.QtCore.Qt.TextInteractionFla... method timerEvent (line 8837) | def timerEvent(self, e: PySide2.QtCore.QTimerEvent) -> None: ... method toPlainText (line 8838) | def toPlainText(self) -> str: ... method undo (line 8839) | def undo(self) -> None: ... method wheelEvent (line 8840) | def wheelEvent(self, e: PySide2.QtGui.QWheelEvent) -> None: ... method wordWrapMode (line 8841) | def wordWrapMode(self) -> PySide2.QtGui.QTextOption.WrapMode: ... method zoomIn (line 8842) | def zoomIn(self, range: int = ...) -> None: ... method zoomInF (line 8843) | def zoomInF(self, range: float) -> None: ... method zoomOut (line 8844) | def zoomOut(self, range: int = ...) -> None: ... class QProgressBar (line 8846) | class QProgressBar(QWidget): class Direction (line 8847) | class Direction: method __init__ (line 8853) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 8854) | def __add__(self, other: typing.SupportsInt) -> QProgressBar.Directi... method __and__ (line 8855) | def __and__(self, other: typing.SupportsInt) -> QProgressBar.Directi... method __bool__ (line 8856) | def __bool__(self) -> bool: ... method __eq__ (line 8857) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8858) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8859) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8860) | def __hash__(self) -> int: ... method __index__ (line 8861) | def __index__(self) -> int: ... method __int__ (line 8862) | def __int__(self) -> int: ... method __le__ (line 8863) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8864) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 8865) | def __mul__(self, other: typing.SupportsInt) -> QProgressBar.Directi... method __ne__ (line 8866) | def __ne__(self, other: object) -> bool: ... method __or__ (line 8867) | def __or__(self, other: typing.SupportsInt) -> QProgressBar.Directio... method __pos__ (line 8868) | def __pos__(self): ... method __radd__ (line 8869) | def __radd__(self, other: typing.SupportsInt) -> QProgressBar.Direct... method __rand__ (line 8870) | def __rand__(self, other: typing.SupportsInt) -> QProgressBar.Direct... method __rmul__ (line 8871) | def __rmul__(self, other: typing.SupportsInt) -> QProgressBar.Direct... method __ror__ (line 8872) | def __ror__(self, other: typing.SupportsInt) -> QProgressBar.Directi... method __rsub__ (line 8873) | def __rsub__(self, other: typing.SupportsInt) -> QProgressBar.Direct... method __rxor__ (line 8874) | def __rxor__(self, other: typing.SupportsInt) -> QProgressBar.Direct... method __sub__ (line 8875) | def __sub__(self, other: typing.SupportsInt) -> QProgressBar.Directi... method __xor__ (line 8876) | def __xor__(self, other: typing.SupportsInt) -> QProgressBar.Directi... method __init__ (line 8881) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method alignment (line 8882) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method event (line 8883) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method format (line 8884) | def format(self) -> str: ... method initStyleOption (line 8885) | def initStyleOption(self, option: QStyleOptionProgressBar) -> None: ... method invertedAppearance (line 8886) | def invertedAppearance(self) -> bool: ... method isTextVisible (line 8887) | def isTextVisible(self) -> bool: ... method maximum (line 8888) | def maximum(self) -> int: ... method minimum (line 8889) | def minimum(self) -> int: ... method minimumSizeHint (line 8890) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method orientation (line 8891) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method paintEvent (line 8892) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method reset (line 8893) | def reset(self) -> None: ... method resetFormat (line 8894) | def resetFormat(self) -> None: ... method setAlignment (line 8895) | def setAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | PySide... method setFormat (line 8896) | def setFormat(self, format: str) -> None: ... method setInvertedAppearance (line 8897) | def setInvertedAppearance(self, invert: bool) -> None: ... method setMaximum (line 8898) | def setMaximum(self, maximum: int) -> None: ... method setMinimum (line 8899) | def setMinimum(self, minimum: int) -> None: ... method setOrientation (line 8900) | def setOrientation(self, arg__1: PySide2.QtCore.Qt.Orientation) -> Non... method setRange (line 8901) | def setRange(self, minimum: int, maximum: int) -> None: ... method setTextDirection (line 8902) | def setTextDirection(self, textDirection: QProgressBar.Direction) -> N... method setTextVisible (line 8903) | def setTextVisible(self, visible: bool) -> None: ... method setValue (line 8904) | def setValue(self, value: int) -> None: ... method sizeHint (line 8905) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method text (line 8906) | def text(self) -> str: ... method textDirection (line 8907) | def textDirection(self) -> QProgressBar.Direction: ... method value (line 8908) | def value(self) -> int: ... class QProgressDialog (line 8910) | class QProgressDialog(QDialog): method __init__ (line 8914) | def __init__(self, labelText: str, cancelButtonText: str, minimum: int... method __init__ (line 8916) | def __init__(self, parent: QWidget | None = ..., flags: PySide2.QtCore... method autoClose (line 8917) | def autoClose(self) -> bool: ... method autoReset (line 8918) | def autoReset(self) -> bool: ... method cancel (line 8919) | def cancel(self) -> None: ... method changeEvent (line 8920) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method closeEvent (line 8921) | def closeEvent(self, event: PySide2.QtGui.QCloseEvent) -> None: ... method forceShow (line 8922) | def forceShow(self) -> None: ... method labelText (line 8923) | def labelText(self) -> str: ... method maximum (line 8924) | def maximum(self) -> int: ... method minimum (line 8925) | def minimum(self) -> int: ... method minimumDuration (line 8926) | def minimumDuration(self) -> int: ... method open (line 8928) | def open(self, receiver: PySide2.QtCore.QObject, member: bytes) -> Non... method open (line 8930) | def open(self) -> None: ... method reset (line 8931) | def reset(self) -> None: ... method resizeEvent (line 8932) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method setAutoClose (line 8933) | def setAutoClose(self, close: bool) -> None: ... method setAutoReset (line 8934) | def setAutoReset(self, reset: bool) -> None: ... method setBar (line 8935) | def setBar(self, bar: QProgressBar) -> None: ... method setCancelButton (line 8936) | def setCancelButton(self, button: QPushButton | None) -> None: ... method setCancelButtonText (line 8937) | def setCancelButtonText(self, text: str) -> None: ... method setLabel (line 8938) | def setLabel(self, label: QLabel) -> None: ... method setLabelText (line 8939) | def setLabelText(self, text: str) -> None: ... method setMaximum (line 8940) | def setMaximum(self, maximum: int) -> None: ... method setMinimum (line 8941) | def setMinimum(self, minimum: int) -> None: ... method setMinimumDuration (line 8942) | def setMinimumDuration(self, ms: int) -> None: ... method setRange (line 8943) | def setRange(self, minimum: int, maximum: int) -> None: ... method setValue (line 8944) | def setValue(self, progress: int) -> None: ... method showEvent (line 8945) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 8946) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method value (line 8947) | def value(self) -> int: ... method wasCanceled (line 8948) | def wasCanceled(self) -> bool: ... class QProxyStyle (line 8950) | class QProxyStyle(QCommonStyle): method __init__ (line 8953) | def __init__(self, style: QStyle | None = ..., destroyed: typing.Calla... method __init__ (line 8955) | def __init__(self, key: str, destroyed: typing.Callable = ..., objectN... method baseStyle (line 8956) | def baseStyle(self) -> QStyle: ... method drawComplexControl (line 8957) | def drawComplexControl(self, control: QStyle.ComplexControl, option: Q... method drawControl (line 8958) | def drawControl(self, element: QStyle.ControlElement, option: QStyleOp... method drawItemPixmap (line 8959) | def drawItemPixmap(self, painter: PySide2.QtGui.QPainter, rect: PySide... method drawItemText (line 8960) | def drawItemText(self, painter: PySide2.QtGui.QPainter, rect: PySide2.... method drawPrimitive (line 8961) | def drawPrimitive(self, element: QStyle.PrimitiveElement, option: QSty... method event (line 8962) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method generatedIconPixmap (line 8963) | def generatedIconPixmap(self, iconMode: PySide2.QtGui.QIcon.Mode, pixm... method hitTestComplexControl (line 8964) | def hitTestComplexControl(self, control: QStyle.ComplexControl, option... method itemPixmapRect (line 8965) | def itemPixmapRect(self, r: PySide2.QtCore.QRect, flags: typing.Suppor... method itemTextRect (line 8966) | def itemTextRect(self, fm: PySide2.QtGui.QFontMetrics, r: PySide2.QtCo... method layoutSpacing (line 8967) | def layoutSpacing(self, control1: QSizePolicy.ControlType, control2: Q... method pixelMetric (line 8968) | def pixelMetric(self, metric: QStyle.PixelMetric, option: QStyleOption... method polish (line 8970) | def polish(self, widget: QWidget) -> None: ... method polish (line 8972) | def polish(self, pal: PySide2.QtGui.QPalette) -> None: ... method polish (line 8974) | def polish(self, app: QApplication) -> None: ... method setBaseStyle (line 8975) | def setBaseStyle(self, style: QStyle) -> None: ... method sizeFromContents (line 8976) | def sizeFromContents(self, type: QStyle.ContentsType, option: QStyleOp... method standardIcon (line 8977) | def standardIcon(self, standardIcon: QStyle.StandardPixmap, option: QS... method standardPalette (line 8978) | def standardPalette(self) -> PySide2.QtGui.QPalette: ... method standardPixmap (line 8979) | def standardPixmap(self, standardPixmap: QStyle.StandardPixmap, opt: Q... method styleHint (line 8980) | def styleHint(self, hint: QStyle.StyleHint, option: QStyleOption | Non... method subControlRect (line 8981) | def subControlRect(self, cc: QStyle.ComplexControl, opt: QStyleOptionC... method subElementRect (line 8982) | def subElementRect(self, element: QStyle.SubElement, option: QStyleOpt... method unpolish (line 8984) | def unpolish(self, widget: QWidget) -> None: ... method unpolish (line 8986) | def unpolish(self, application: QApplication) -> None: ... method unpolish (line 8988) | def unpolish(self, app: QApplication) -> None: ... class QPushButton (line 8990) | class QPushButton(QAbstractButton): method __init__ (line 8993) | def __init__(self, text: str, parent: QWidget | None = ..., acceptDrop... method __init__ (line 8995) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method __init__ (line 8997) | def __init__(self, icon: PySide2.QtGui.QIcon, text: str, parent: QWidg... method autoDefault (line 8998) | def autoDefault(self) -> bool: ... method event (line 8999) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method focusInEvent (line 9000) | def focusInEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method focusOutEvent (line 9001) | def focusOutEvent(self, arg__1: PySide2.QtGui.QFocusEvent) -> None: ... method hitButton (line 9002) | def hitButton(self, pos: PySide2.QtCore.QPoint) -> bool: ... method initStyleOption (line 9003) | def initStyleOption(self, option: QStyleOptionButton) -> None: ... method isDefault (line 9004) | def isDefault(self) -> bool: ... method isFlat (line 9005) | def isFlat(self) -> bool: ... method keyPressEvent (line 9006) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method menu (line 9007) | def menu(self) -> QMenu: ... method minimumSizeHint (line 9008) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method paintEvent (line 9009) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method setAutoDefault (line 9010) | def setAutoDefault(self, arg__1: bool) -> None: ... method setDefault (line 9011) | def setDefault(self, arg__1: bool) -> None: ... method setFlat (line 9012) | def setFlat(self, arg__1: bool) -> None: ... method setMenu (line 9013) | def setMenu(self, menu: QMenu) -> None: ... method showMenu (line 9014) | def showMenu(self) -> None: ... method sizeHint (line 9015) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QRadioButton (line 9017) | class QRadioButton(QAbstractButton): method __init__ (line 9020) | def __init__(self, text: str, parent: QWidget | None = ..., acceptDrop... method __init__ (line 9022) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method event (line 9023) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method hitButton (line 9024) | def hitButton(self, arg__1: PySide2.QtCore.QPoint) -> bool: ... method initStyleOption (line 9025) | def initStyleOption(self, button: QStyleOptionButton) -> None: ... method minimumSizeHint (line 9026) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 9027) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method paintEvent (line 9028) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method sizeHint (line 9029) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QRubberBand (line 9031) | class QRubberBand(QWidget): class Shape (line 9032) | class Shape: method __init__ (line 9038) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9039) | def __add__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __and__ (line 9040) | def __and__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __bool__ (line 9041) | def __bool__(self) -> bool: ... method __eq__ (line 9042) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9043) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9044) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9045) | def __hash__(self) -> int: ... method __index__ (line 9046) | def __index__(self) -> int: ... method __int__ (line 9047) | def __int__(self) -> int: ... method __le__ (line 9048) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9049) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9050) | def __mul__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __ne__ (line 9051) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9052) | def __or__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __pos__ (line 9053) | def __pos__(self): ... method __radd__ (line 9054) | def __radd__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __rand__ (line 9055) | def __rand__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __rmul__ (line 9056) | def __rmul__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __ror__ (line 9057) | def __ror__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __rsub__ (line 9058) | def __rsub__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __rxor__ (line 9059) | def __rxor__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __sub__ (line 9060) | def __sub__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __xor__ (line 9061) | def __xor__(self, other: typing.SupportsInt) -> QRubberBand.Shape: ... method __init__ (line 9065) | def __init__(self, arg__1: QRubberBand.Shape, parent: QWidget | None =... method changeEvent (line 9066) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method event (line 9067) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method initStyleOption (line 9068) | def initStyleOption(self, option: QStyleOptionRubberBand) -> None: ... method move (line 9070) | def move(self, x: int, y: int) -> None: ... method move (line 9072) | def move(self, p: PySide2.QtCore.QPoint) -> None: ... method moveEvent (line 9073) | def moveEvent(self, arg__1: PySide2.QtGui.QMoveEvent) -> None: ... method paintEvent (line 9074) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method resize (line 9076) | def resize(self, w: int, h: int) -> None: ... method resize (line 9078) | def resize(self, s: PySide2.QtCore.QSize) -> None: ... method resizeEvent (line 9079) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method setGeometry (line 9081) | def setGeometry(self, x: int, y: int, w: int, h: int) -> None: ... method setGeometry (line 9083) | def setGeometry(self, r: PySide2.QtCore.QRect) -> None: ... method shape (line 9084) | def shape(self) -> QRubberBand.Shape: ... method showEvent (line 9085) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... class QScrollArea (line 9087) | class QScrollArea(QAbstractScrollArea): method __init__ (line 9089) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method alignment (line 9090) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method ensureVisible (line 9091) | def ensureVisible(self, x: int, y: int, xmargin: int = ..., ymargin: i... method ensureWidgetVisible (line 9092) | def ensureWidgetVisible(self, childWidget: QWidget, xmargin: int = ...... method event (line 9093) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 9094) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method focusNextPrevChild (line 9095) | def focusNextPrevChild(self, next: bool) -> bool: ... method resizeEvent (line 9096) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method scrollContentsBy (line 9097) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method setAlignment (line 9098) | def setAlignment(self, arg__1: PySide2.QtCore.Qt.Alignment | PySide2.Q... method setWidget (line 9099) | def setWidget(self, widget: QWidget) -> None: ... method setWidgetResizable (line 9100) | def setWidgetResizable(self, resizable: bool) -> None: ... method sizeHint (line 9101) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method takeWidget (line 9102) | def takeWidget(self) -> QWidget: ... method viewportSizeHint (line 9103) | def viewportSizeHint(self) -> PySide2.QtCore.QSize: ... method widget (line 9104) | def widget(self) -> QWidget: ... method widgetResizable (line 9105) | def widgetResizable(self) -> bool: ... class QScrollBar (line 9107) | class QScrollBar(QAbstractSlider): method __init__ (line 9110) | def __init__(self, arg__1: PySide2.QtCore.Qt.Orientation, parent: QWid... method __init__ (line 9112) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method contextMenuEvent (line 9113) | def contextMenuEvent(self, arg__1: PySide2.QtGui.QContextMenuEvent) ->... method event (line 9114) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method hideEvent (line 9115) | def hideEvent(self, arg__1: PySide2.QtGui.QHideEvent) -> None: ... method initStyleOption (line 9116) | def initStyleOption(self, option: QStyleOptionSlider) -> None: ... method mouseMoveEvent (line 9117) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 9118) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 9119) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method paintEvent (line 9120) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method sizeHint (line 9121) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sliderChange (line 9122) | def sliderChange(self, change: QAbstractSlider.SliderChange) -> None: ... method wheelEvent (line 9123) | def wheelEvent(self, arg__1: PySide2.QtGui.QWheelEvent) -> None: ... class QScroller (line 9125) | class QScroller(PySide2.QtCore.QObject): class Input (line 9126) | class Input: method __init__ (line 9133) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9134) | def __add__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __and__ (line 9135) | def __and__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __bool__ (line 9136) | def __bool__(self) -> bool: ... method __eq__ (line 9137) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9138) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9139) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9140) | def __hash__(self) -> int: ... method __index__ (line 9141) | def __index__(self) -> int: ... method __int__ (line 9142) | def __int__(self) -> int: ... method __le__ (line 9143) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9144) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9145) | def __mul__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __ne__ (line 9146) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9147) | def __or__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __pos__ (line 9148) | def __pos__(self): ... method __radd__ (line 9149) | def __radd__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __rand__ (line 9150) | def __rand__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __rmul__ (line 9151) | def __rmul__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __ror__ (line 9152) | def __ror__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __rsub__ (line 9153) | def __rsub__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __rxor__ (line 9154) | def __rxor__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __sub__ (line 9155) | def __sub__(self, other: typing.SupportsInt) -> QScroller.Input: ... method __xor__ (line 9156) | def __xor__(self, other: typing.SupportsInt) -> QScroller.Input: ... class ScrollerGestureType (line 9158) | class ScrollerGestureType: method __init__ (line 9166) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9167) | def __add__(self, other: typing.SupportsInt) -> QScroller.ScrollerGe... method __and__ (line 9168) | def __and__(self, other: typing.SupportsInt) -> QScroller.ScrollerGe... method __bool__ (line 9169) | def __bool__(self) -> bool: ... method __eq__ (line 9170) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9171) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9172) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9173) | def __hash__(self) -> int: ... method __index__ (line 9174) | def __index__(self) -> int: ... method __int__ (line 9175) | def __int__(self) -> int: ... method __le__ (line 9176) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9177) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9178) | def __mul__(self, other: typing.SupportsInt) -> QScroller.ScrollerGe... method __ne__ (line 9179) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9180) | def __or__(self, other: typing.SupportsInt) -> QScroller.ScrollerGes... method __pos__ (line 9181) | def __pos__(self): ... method __radd__ (line 9182) | def __radd__(self, other: typing.SupportsInt) -> QScroller.ScrollerG... method __rand__ (line 9183) | def __rand__(self, other: typing.SupportsInt) -> QScroller.ScrollerG... method __rmul__ (line 9184) | def __rmul__(self, other: typing.SupportsInt) -> QScroller.ScrollerG... method __ror__ (line 9185) | def __ror__(self, other: typing.SupportsInt) -> QScroller.ScrollerGe... method __rsub__ (line 9186) | def __rsub__(self, other: typing.SupportsInt) -> QScroller.ScrollerG... method __rxor__ (line 9187) | def __rxor__(self, other: typing.SupportsInt) -> QScroller.ScrollerG... method __sub__ (line 9188) | def __sub__(self, other: typing.SupportsInt) -> QScroller.ScrollerGe... method __xor__ (line 9189) | def __xor__(self, other: typing.SupportsInt) -> QScroller.ScrollerGe... class State (line 9191) | class State: method __init__ (line 9199) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9200) | def __add__(self, other: typing.SupportsInt) -> QScroller.State: ... method __and__ (line 9201) | def __and__(self, other: typing.SupportsInt) -> QScroller.State: ... method __bool__ (line 9202) | def __bool__(self) -> bool: ... method __eq__ (line 9203) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9204) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9205) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9206) | def __hash__(self) -> int: ... method __index__ (line 9207) | def __index__(self) -> int: ... method __int__ (line 9208) | def __int__(self) -> int: ... method __le__ (line 9209) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9210) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9211) | def __mul__(self, other: typing.SupportsInt) -> QScroller.State: ... method __ne__ (line 9212) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9213) | def __or__(self, other: typing.SupportsInt) -> QScroller.State: ... method __pos__ (line 9214) | def __pos__(self): ... method __radd__ (line 9215) | def __radd__(self, other: typing.SupportsInt) -> QScroller.State: ... method __rand__ (line 9216) | def __rand__(self, other: typing.SupportsInt) -> QScroller.State: ... method __rmul__ (line 9217) | def __rmul__(self, other: typing.SupportsInt) -> QScroller.State: ... method __ror__ (line 9218) | def __ror__(self, other: typing.SupportsInt) -> QScroller.State: ... method __rsub__ (line 9219) | def __rsub__(self, other: typing.SupportsInt) -> QScroller.State: ... method __rxor__ (line 9220) | def __rxor__(self, other: typing.SupportsInt) -> QScroller.State: ... method __sub__ (line 9221) | def __sub__(self, other: typing.SupportsInt) -> QScroller.State: ... method __xor__ (line 9222) | def __xor__(self, other: typing.SupportsInt) -> QScroller.State: ... method __init__ (line 9238) | def __init__(cls, *args, destroyed: typing.Callable = ..., objectName:... method activeScrollers (line 9240) | def activeScrollers() -> list[QScroller]: ... method ensureVisible (line 9242) | def ensureVisible(self, rect: PySide2.QtCore.QRectF, xmargin: float, y... method ensureVisible (line 9244) | def ensureVisible(self, rect: PySide2.QtCore.QRectF, xmargin: float, y... method finalPosition (line 9245) | def finalPosition(self) -> PySide2.QtCore.QPointF: ... method grabGesture (line 9247) | def grabGesture(target: PySide2.QtCore.QObject, gestureType: QScroller... method grabbedGesture (line 9249) | def grabbedGesture(target: PySide2.QtCore.QObject) -> PySide2.QtCore.Q... method handleInput (line 9250) | def handleInput(self, input: QScroller.Input, position: PySide2.QtCore... method hasScroller (line 9252) | def hasScroller(target: PySide2.QtCore.QObject) -> bool: ... method pixelPerMeter (line 9253) | def pixelPerMeter(self) -> PySide2.QtCore.QPointF: ... method resendPrepareEvent (line 9254) | def resendPrepareEvent(self) -> None: ... method scrollTo (line 9256) | def scrollTo(self, pos: PySide2.QtCore.QPointF, scrollTime: int) -> No... method scrollTo (line 9258) | def scrollTo(self, pos: PySide2.QtCore.QPointF) -> None: ... method scroller (line 9260) | def scroller(target: PySide2.QtCore.QObject) -> QScroller: ... method scrollerProperties (line 9261) | def scrollerProperties(self) -> QScrollerProperties: ... method setScrollerProperties (line 9262) | def setScrollerProperties(self, prop: QScrollerProperties) -> None: ... method setSnapPositionsX (line 9264) | def setSnapPositionsX(self, first: float, interval: float) -> None: ... method setSnapPositionsX (line 9266) | def setSnapPositionsX(self, positions: typing.Iterable[float]) -> None... method setSnapPositionsY (line 9268) | def setSnapPositionsY(self, first: float, interval: float) -> None: ... method setSnapPositionsY (line 9270) | def setSnapPositionsY(self, positions: typing.Iterable[float]) -> None... method state (line 9271) | def state(self) -> QScroller.State: ... method stop (line 9272) | def stop(self) -> None: ... method target (line 9273) | def target(self) -> PySide2.QtCore.QObject: ... method ungrabGesture (line 9275) | def ungrabGesture(target: PySide2.QtCore.QObject) -> None: ... method velocity (line 9276) | def velocity(self) -> PySide2.QtCore.QPointF: ... class QScrollerProperties (line 9278) | class QScrollerProperties(shiboken2.Object): class FrameRates (line 9279) | class FrameRates: method __init__ (line 9287) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9288) | def __add__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __and__ (line 9289) | def __and__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __bool__ (line 9290) | def __bool__(self) -> bool: ... method __eq__ (line 9291) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9292) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9293) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9294) | def __hash__(self) -> int: ... method __index__ (line 9295) | def __index__(self) -> int: ... method __int__ (line 9296) | def __int__(self) -> int: ... method __le__ (line 9297) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9298) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9299) | def __mul__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __ne__ (line 9300) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9301) | def __or__(self, other: typing.SupportsInt) -> QScrollerProperties.F... method __pos__ (line 9302) | def __pos__(self): ... method __radd__ (line 9303) | def __radd__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rand__ (line 9304) | def __rand__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rmul__ (line 9305) | def __rmul__(self, other: typing.SupportsInt) -> QScrollerProperties... method __ror__ (line 9306) | def __ror__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __rsub__ (line 9307) | def __rsub__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rxor__ (line 9308) | def __rxor__(self, other: typing.SupportsInt) -> QScrollerProperties... method __sub__ (line 9309) | def __sub__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __xor__ (line 9310) | def __xor__(self, other: typing.SupportsInt) -> QScrollerProperties.... class OvershootPolicy (line 9312) | class OvershootPolicy: method __init__ (line 9319) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9320) | def __add__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __and__ (line 9321) | def __and__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __bool__ (line 9322) | def __bool__(self) -> bool: ... method __eq__ (line 9323) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9324) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9325) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9326) | def __hash__(self) -> int: ... method __index__ (line 9327) | def __index__(self) -> int: ... method __int__ (line 9328) | def __int__(self) -> int: ... method __le__ (line 9329) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9330) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9331) | def __mul__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __ne__ (line 9332) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9333) | def __or__(self, other: typing.SupportsInt) -> QScrollerProperties.O... method __pos__ (line 9334) | def __pos__(self): ... method __radd__ (line 9335) | def __radd__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rand__ (line 9336) | def __rand__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rmul__ (line 9337) | def __rmul__(self, other: typing.SupportsInt) -> QScrollerProperties... method __ror__ (line 9338) | def __ror__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __rsub__ (line 9339) | def __rsub__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rxor__ (line 9340) | def __rxor__(self, other: typing.SupportsInt) -> QScrollerProperties... method __sub__ (line 9341) | def __sub__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __xor__ (line 9342) | def __xor__(self, other: typing.SupportsInt) -> QScrollerProperties.... class ScrollMetric (line 9344) | class ScrollMetric: method __init__ (line 9369) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9370) | def __add__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __and__ (line 9371) | def __and__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __bool__ (line 9372) | def __bool__(self) -> bool: ... method __eq__ (line 9373) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9374) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9375) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9376) | def __hash__(self) -> int: ... method __index__ (line 9377) | def __index__(self) -> int: ... method __int__ (line 9378) | def __int__(self) -> int: ... method __le__ (line 9379) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9380) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9381) | def __mul__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __ne__ (line 9382) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9383) | def __or__(self, other: typing.SupportsInt) -> QScrollerProperties.S... method __pos__ (line 9384) | def __pos__(self): ... method __radd__ (line 9385) | def __radd__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rand__ (line 9386) | def __rand__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rmul__ (line 9387) | def __rmul__(self, other: typing.SupportsInt) -> QScrollerProperties... method __ror__ (line 9388) | def __ror__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __rsub__ (line 9389) | def __rsub__(self, other: typing.SupportsInt) -> QScrollerProperties... method __rxor__ (line 9390) | def __rxor__(self, other: typing.SupportsInt) -> QScrollerProperties... method __sub__ (line 9391) | def __sub__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __xor__ (line 9392) | def __xor__(self, other: typing.SupportsInt) -> QScrollerProperties.... method __init__ (line 9422) | def __init__(self, sp: QScrollerProperties) -> None: ... method __init__ (line 9424) | def __init__(self) -> None: ... method scrollMetric (line 9425) | def scrollMetric(self, metric: QScrollerProperties.ScrollMetric) -> ty... method setDefaultScrollerProperties (line 9427) | def setDefaultScrollerProperties(sp: QScrollerProperties) -> None: ... method setScrollMetric (line 9428) | def setScrollMetric(self, metric: QScrollerProperties.ScrollMetric, va... method unsetDefaultScrollerProperties (line 9430) | def unsetDefaultScrollerProperties() -> None: ... method __copy__ (line 9431) | def __copy__(self) -> None: ... method __eq__ (line 9432) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9433) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9434) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9435) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9436) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9437) | def __ne__(self, other: object) -> bool: ... class QShortcut (line 9439) | class QShortcut(PySide2.QtCore.QObject): method __init__ (line 9444) | def __init__(self, key: PySide2.QtGui.QKeySequence | str, parent: QWid... method __init__ (line 9446) | def __init__(self, arg__1: PySide2.QtGui.QKeySequence | str, arg__2: Q... method __init__ (line 9448) | def __init__(self, parent: QWidget | None, destroyed: typing.Callable ... method autoRepeat (line 9449) | def autoRepeat(self) -> bool: ... method context (line 9450) | def context(self) -> PySide2.QtCore.Qt.ShortcutContext: ... method event (line 9451) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method id (line 9452) | def id(self) -> int: ... method isEnabled (line 9453) | def isEnabled(self) -> bool: ... method key (line 9454) | def key(self) -> PySide2.QtGui.QKeySequence: ... method parentWidget (line 9455) | def parentWidget(self) -> QWidget: ... method setAutoRepeat (line 9456) | def setAutoRepeat(self, on: bool) -> None: ... method setContext (line 9457) | def setContext(self, context: PySide2.QtCore.Qt.ShortcutContext) -> No... method setEnabled (line 9458) | def setEnabled(self, enable: bool) -> None: ... method setKey (line 9459) | def setKey(self, key: PySide2.QtGui.QKeySequence | str) -> None: ... method setWhatsThis (line 9460) | def setWhatsThis(self, text: str) -> None: ... method whatsThis (line 9461) | def whatsThis(self) -> str: ... class QSizeGrip (line 9463) | class QSizeGrip(QWidget): method __init__ (line 9465) | def __init__(self, parent: QWidget | None, acceptDrops: bool = ..., ac... method event (line 9466) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 9467) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method hideEvent (line 9468) | def hideEvent(self, hideEvent: PySide2.QtGui.QHideEvent) -> None: ... method mouseMoveEvent (line 9469) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 9470) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 9471) | def mouseReleaseEvent(self, mouseEvent: PySide2.QtGui.QMouseEvent) -> ... method moveEvent (line 9472) | def moveEvent(self, moveEvent: PySide2.QtGui.QMoveEvent) -> None: ... method paintEvent (line 9473) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method setVisible (line 9474) | def setVisible(self, arg__1: bool) -> None: ... method showEvent (line 9475) | def showEvent(self, showEvent: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 9476) | def sizeHint(self) -> PySide2.QtCore.QSize: ... class QSizePolicy (line 9478) | class QSizePolicy(shiboken2.Object): class ControlType (line 9479) | class ControlType: method __init__ (line 9498) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9499) | def __and__(self, other: typing.SupportsInt) -> QSizePolicy.ControlT... method __bool__ (line 9500) | def __bool__(self) -> bool: ... method __eq__ (line 9501) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9502) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9503) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9504) | def __hash__(self) -> int: ... method __index__ (line 9505) | def __index__(self) -> int: ... method __int__ (line 9506) | def __int__(self) -> int: ... method __invert__ (line 9507) | def __invert__(self) -> QSizePolicy.ControlTypes: ... method __le__ (line 9508) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9509) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9510) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9511) | def __or__(self, other: typing.SupportsInt) -> QSizePolicy.ControlTy... method __rand__ (line 9512) | def __rand__(self, other: typing.SupportsInt) -> QSizePolicy.Control... method __ror__ (line 9513) | def __ror__(self, other: typing.SupportsInt) -> QSizePolicy.ControlT... method __rxor__ (line 9514) | def __rxor__(self, other: typing.SupportsInt) -> QSizePolicy.Control... method __xor__ (line 9515) | def __xor__(self, other: typing.SupportsInt) -> QSizePolicy.ControlT... class ControlTypes (line 9517) | class ControlTypes: method __init__ (line 9519) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 9520) | def __and__(self, other: typing.SupportsInt) -> QSizePolicy.ControlT... method __bool__ (line 9521) | def __bool__(self) -> bool: ... method __eq__ (line 9522) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9523) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9524) | def __gt__(self, other: object) -> bool: ... method __index__ (line 9525) | def __index__(self) -> int: ... method __int__ (line 9526) | def __int__(self) -> int: ... method __invert__ (line 9527) | def __invert__(self) -> QSizePolicy.ControlTypes: ... method __le__ (line 9528) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9529) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9530) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9531) | def __or__(self, other: typing.SupportsInt) -> QSizePolicy.ControlTy... method __rand__ (line 9532) | def __rand__(self, other: typing.SupportsInt) -> QSizePolicy.Control... method __ror__ (line 9533) | def __ror__(self, other: typing.SupportsInt) -> QSizePolicy.ControlT... method __rxor__ (line 9534) | def __rxor__(self, other: typing.SupportsInt) -> QSizePolicy.Control... method __xor__ (line 9535) | def __xor__(self, other: typing.SupportsInt) -> QSizePolicy.ControlT... class Policy (line 9537) | class Policy: method __init__ (line 9548) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9549) | def __add__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... method __and__ (line 9550) | def __and__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... method __bool__ (line 9551) | def __bool__(self) -> bool: ... method __eq__ (line 9552) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9553) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9554) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9555) | def __hash__(self) -> int: ... method __index__ (line 9556) | def __index__(self) -> int: ... method __int__ (line 9557) | def __int__(self) -> int: ... method __le__ (line 9558) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9559) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9560) | def __mul__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... method __ne__ (line 9561) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9562) | def __or__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... method __pos__ (line 9563) | def __pos__(self): ... method __radd__ (line 9564) | def __radd__(self, other: typing.SupportsInt) -> QSizePolicy.Policy:... method __rand__ (line 9565) | def __rand__(self, other: typing.SupportsInt) -> QSizePolicy.Policy:... method __rmul__ (line 9566) | def __rmul__(self, other: typing.SupportsInt) -> QSizePolicy.Policy:... method __ror__ (line 9567) | def __ror__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... method __rsub__ (line 9568) | def __rsub__(self, other: typing.SupportsInt) -> QSizePolicy.Policy:... method __rxor__ (line 9569) | def __rxor__(self, other: typing.SupportsInt) -> QSizePolicy.Policy:... method __sub__ (line 9570) | def __sub__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... method __xor__ (line 9571) | def __xor__(self, other: typing.SupportsInt) -> QSizePolicy.Policy: ... class PolicyFlag (line 9573) | class PolicyFlag: method __init__ (line 9581) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9582) | def __add__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFl... method __and__ (line 9583) | def __and__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFl... method __bool__ (line 9584) | def __bool__(self) -> bool: ... method __eq__ (line 9585) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9586) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9587) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9588) | def __hash__(self) -> int: ... method __index__ (line 9589) | def __index__(self) -> int: ... method __int__ (line 9590) | def __int__(self) -> int: ... method __le__ (line 9591) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9592) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9593) | def __mul__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFl... method __ne__ (line 9594) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9595) | def __or__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFla... method __pos__ (line 9596) | def __pos__(self): ... method __radd__ (line 9597) | def __radd__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyF... method __rand__ (line 9598) | def __rand__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyF... method __rmul__ (line 9599) | def __rmul__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyF... method __ror__ (line 9600) | def __ror__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFl... method __rsub__ (line 9601) | def __rsub__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyF... method __rxor__ (line 9602) | def __rxor__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyF... method __sub__ (line 9603) | def __sub__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFl... method __xor__ (line 9604) | def __xor__(self, other: typing.SupportsInt) -> QSizePolicy.PolicyFl... method __init__ (line 9632) | def __init__(self, horizontal: QSizePolicy.Policy, vertical: QSizePoli... method __init__ (line 9634) | def __init__(self) -> None: ... method controlType (line 9635) | def controlType(self) -> QSizePolicy.ControlType: ... method expandingDirections (line 9636) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method hasHeightForWidth (line 9637) | def hasHeightForWidth(self) -> bool: ... method hasWidthForHeight (line 9638) | def hasWidthForHeight(self) -> bool: ... method horizontalPolicy (line 9639) | def horizontalPolicy(self) -> QSizePolicy.Policy: ... method horizontalStretch (line 9640) | def horizontalStretch(self) -> int: ... method retainSizeWhenHidden (line 9641) | def retainSizeWhenHidden(self) -> bool: ... method setControlType (line 9642) | def setControlType(self, type: QSizePolicy.ControlType) -> None: ... method setHeightForWidth (line 9643) | def setHeightForWidth(self, b: bool) -> None: ... method setHorizontalPolicy (line 9644) | def setHorizontalPolicy(self, d: QSizePolicy.Policy) -> None: ... method setHorizontalStretch (line 9645) | def setHorizontalStretch(self, stretchFactor: int) -> None: ... method setRetainSizeWhenHidden (line 9646) | def setRetainSizeWhenHidden(self, retainSize: bool) -> None: ... method setVerticalPolicy (line 9647) | def setVerticalPolicy(self, d: QSizePolicy.Policy) -> None: ... method setVerticalStretch (line 9648) | def setVerticalStretch(self, stretchFactor: int) -> None: ... method setWidthForHeight (line 9649) | def setWidthForHeight(self, b: bool) -> None: ... method transpose (line 9650) | def transpose(self) -> None: ... method transposed (line 9651) | def transposed(self) -> QSizePolicy: ... method verticalPolicy (line 9652) | def verticalPolicy(self) -> QSizePolicy.Policy: ... method verticalStretch (line 9653) | def verticalStretch(self) -> int: ... method __copy__ (line 9654) | def __copy__(self) -> None: ... method __eq__ (line 9655) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9656) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9657) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9658) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 9659) | def __lshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... method __lt__ (line 9660) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9661) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 9662) | def __rlshift__(self, other): ... method __rrshift__ (line 9663) | def __rrshift__(self, other): ... method __rshift__ (line 9664) | def __rshift__(self, arg__1: PySide2.QtCore.QDataStream) -> PySide2.Qt... class QSlider (line 9666) | class QSlider(QAbstractSlider): class TickPosition (line 9667) | class TickPosition: method __init__ (line 9677) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9678) | def __add__(self, other: typing.SupportsInt) -> QSlider.TickPosition... method __and__ (line 9679) | def __and__(self, other: typing.SupportsInt) -> QSlider.TickPosition... method __bool__ (line 9680) | def __bool__(self) -> bool: ... method __eq__ (line 9681) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9682) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9683) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9684) | def __hash__(self) -> int: ... method __index__ (line 9685) | def __index__(self) -> int: ... method __int__ (line 9686) | def __int__(self) -> int: ... method __le__ (line 9687) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9688) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9689) | def __mul__(self, other: typing.SupportsInt) -> QSlider.TickPosition... method __ne__ (line 9690) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9691) | def __or__(self, other: typing.SupportsInt) -> QSlider.TickPosition:... method __pos__ (line 9692) | def __pos__(self): ... method __radd__ (line 9693) | def __radd__(self, other: typing.SupportsInt) -> QSlider.TickPositio... method __rand__ (line 9694) | def __rand__(self, other: typing.SupportsInt) -> QSlider.TickPositio... method __rmul__ (line 9695) | def __rmul__(self, other: typing.SupportsInt) -> QSlider.TickPositio... method __ror__ (line 9696) | def __ror__(self, other: typing.SupportsInt) -> QSlider.TickPosition... method __rsub__ (line 9697) | def __rsub__(self, other: typing.SupportsInt) -> QSlider.TickPositio... method __rxor__ (line 9698) | def __rxor__(self, other: typing.SupportsInt) -> QSlider.TickPositio... method __sub__ (line 9699) | def __sub__(self, other: typing.SupportsInt) -> QSlider.TickPosition... method __xor__ (line 9700) | def __xor__(self, other: typing.SupportsInt) -> QSlider.TickPosition... method __init__ (line 9709) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method __init__ (line 9711) | def __init__(self, orientation: PySide2.QtCore.Qt.Orientation, parent:... method event (line 9712) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method initStyleOption (line 9713) | def initStyleOption(self, option: QStyleOptionSlider) -> None: ... method minimumSizeHint (line 9714) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 9715) | def mouseMoveEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 9716) | def mousePressEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 9717) | def mouseReleaseEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method paintEvent (line 9718) | def paintEvent(self, ev: PySide2.QtGui.QPaintEvent) -> None: ... method setTickInterval (line 9719) | def setTickInterval(self, ti: int) -> None: ... method setTickPosition (line 9720) | def setTickPosition(self, position: QSlider.TickPosition) -> None: ... method sizeHint (line 9721) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method tickInterval (line 9722) | def tickInterval(self) -> int: ... method tickPosition (line 9723) | def tickPosition(self) -> QSlider.TickPosition: ... class QSpacerItem (line 9725) | class QSpacerItem(QLayoutItem): method __init__ (line 9727) | def __init__(self, w: int, h: int, hPolicy: QSizePolicy.Policy = ..., ... method __init__ (line 9729) | def __init__(self, w: int, h: int, hData: QSizePolicy.Policy = ..., vD... method changeSize (line 9731) | def changeSize(self, w: int, h: int, hPolicy: QSizePolicy.Policy = ...... method changeSize (line 9733) | def changeSize(self, w: int, h: int, hData: QSizePolicy.Policy = ..., ... method expandingDirections (line 9734) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method geometry (line 9735) | def geometry(self) -> PySide2.QtCore.QRect: ... method isEmpty (line 9736) | def isEmpty(self) -> bool: ... method maximumSize (line 9737) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method minimumSize (line 9738) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method setGeometry (line 9739) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method sizeHint (line 9740) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sizePolicy (line 9741) | def sizePolicy(self) -> QSizePolicy: ... method spacerItem (line 9742) | def spacerItem(self) -> QSpacerItem: ... class QSpinBox (line 9744) | class QSpinBox(QAbstractSpinBox): method __init__ (line 9748) | def __init__(self, parent: QWidget | None = ..., accelerated: bool = .... method cleanText (line 9749) | def cleanText(self) -> str: ... method displayIntegerBase (line 9750) | def displayIntegerBase(self) -> int: ... method event (line 9751) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method fixup (line 9752) | def fixup(self, str: str) -> None: ... method maximum (line 9753) | def maximum(self) -> int: ... method minimum (line 9754) | def minimum(self) -> int: ... method prefix (line 9755) | def prefix(self) -> str: ... method setDisplayIntegerBase (line 9756) | def setDisplayIntegerBase(self, base: int) -> None: ... method setMaximum (line 9757) | def setMaximum(self, max: int) -> None: ... method setMinimum (line 9758) | def setMinimum(self, min: int) -> None: ... method setPrefix (line 9759) | def setPrefix(self, prefix: str) -> None: ... method setRange (line 9760) | def setRange(self, min: int, max: int) -> None: ... method setSingleStep (line 9761) | def setSingleStep(self, val: int) -> None: ... method setStepType (line 9762) | def setStepType(self, stepType: QAbstractSpinBox.StepType) -> None: ... method setSuffix (line 9763) | def setSuffix(self, suffix: str) -> None: ... method setValue (line 9764) | def setValue(self, val: int) -> None: ... method singleStep (line 9765) | def singleStep(self) -> int: ... method stepType (line 9766) | def stepType(self) -> QAbstractSpinBox.StepType: ... method suffix (line 9767) | def suffix(self) -> str: ... method textFromValue (line 9768) | def textFromValue(self, val: int) -> str: ... method validate (line 9769) | def validate(self, input: str, pos: int) -> PySide2.QtGui.QValidator.S... method value (line 9770) | def value(self) -> int: ... method valueFromText (line 9771) | def valueFromText(self, text: str) -> int: ... class QSplashScreen (line 9773) | class QSplashScreen(QWidget): method __init__ (line 9777) | def __init__(self, screen: PySide2.QtGui.QScreen, pixmap: PySide2.QtGu... method __init__ (line 9779) | def __init__(self, parent: QWidget | None, pixmap: PySide2.QtGui.QPixm... method __init__ (line 9781) | def __init__(self, pixmap: PySide2.QtGui.QPixmap = ..., f: PySide2.QtC... method clearMessage (line 9782) | def clearMessage(self) -> None: ... method drawContents (line 9783) | def drawContents(self, painter: PySide2.QtGui.QPainter) -> None: ... method event (line 9784) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method finish (line 9785) | def finish(self, w: QWidget) -> None: ... method message (line 9786) | def message(self) -> str: ... method mousePressEvent (line 9787) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method pixmap (line 9788) | def pixmap(self) -> PySide2.QtGui.QPixmap: ... method setPixmap (line 9789) | def setPixmap(self, pixmap: PySide2.QtGui.QPixmap) -> None: ... method showMessage (line 9790) | def showMessage(self, message: str, alignment: int = ..., color: PySid... class QSplitter (line 9792) | class QSplitter(QFrame): method __init__ (line 9796) | def __init__(self, arg__1: PySide2.QtCore.Qt.Orientation, parent: QWid... method __init__ (line 9798) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addWidget (line 9799) | def addWidget(self, widget: QWidget) -> None: ... method changeEvent (line 9800) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method childEvent (line 9801) | def childEvent(self, arg__1: PySide2.QtCore.QChildEvent) -> None: ... method childrenCollapsible (line 9802) | def childrenCollapsible(self) -> bool: ... method closestLegalPosition (line 9803) | def closestLegalPosition(self, arg__1: int, arg__2: int) -> int: ... method count (line 9804) | def count(self) -> int: ... method createHandle (line 9805) | def createHandle(self) -> QSplitterHandle: ... method event (line 9806) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method getRange (line 9807) | def getRange(self, index: int) -> tuple[int, int]: ... method handle (line 9808) | def handle(self, index: int) -> QSplitterHandle: ... method handleWidth (line 9809) | def handleWidth(self) -> int: ... method indexOf (line 9810) | def indexOf(self, w: QWidget) -> int: ... method insertWidget (line 9811) | def insertWidget(self, index: int, widget: QWidget) -> None: ... method isCollapsible (line 9812) | def isCollapsible(self, index: int) -> bool: ... method minimumSizeHint (line 9813) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method moveSplitter (line 9814) | def moveSplitter(self, pos: int, index: int) -> None: ... method opaqueResize (line 9815) | def opaqueResize(self) -> bool: ... method orientation (line 9816) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method refresh (line 9817) | def refresh(self) -> None: ... method replaceWidget (line 9818) | def replaceWidget(self, index: int, widget: QWidget) -> QWidget: ... method resizeEvent (line 9819) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method restoreState (line 9820) | def restoreState(self, state: PySide2.QtCore.QByteArray | bytes) -> bo... method saveState (line 9821) | def saveState(self) -> PySide2.QtCore.QByteArray: ... method setChildrenCollapsible (line 9822) | def setChildrenCollapsible(self, arg__1: bool) -> None: ... method setCollapsible (line 9823) | def setCollapsible(self, index: int, arg__2: bool) -> None: ... method setHandleWidth (line 9824) | def setHandleWidth(self, arg__1: int) -> None: ... method setOpaqueResize (line 9825) | def setOpaqueResize(self, opaque: bool = ...) -> None: ... method setOrientation (line 9826) | def setOrientation(self, arg__1: PySide2.QtCore.Qt.Orientation) -> Non... method setRubberBand (line 9827) | def setRubberBand(self, position: int) -> None: ... method setSizes (line 9828) | def setSizes(self, list: typing.Iterable[int]) -> None: ... method setStretchFactor (line 9829) | def setStretchFactor(self, index: int, stretch: int) -> None: ... method sizeHint (line 9830) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sizes (line 9831) | def sizes(self) -> list[int]: ... method widget (line 9832) | def widget(self, index: int) -> QWidget: ... method __lshift__ (line 9833) | def __lshift__(self, arg__1: PySide2.QtCore.QTextStream) -> PySide2.Qt... method __rlshift__ (line 9834) | def __rlshift__(self, other): ... method __rrshift__ (line 9835) | def __rrshift__(self, other): ... method __rshift__ (line 9836) | def __rshift__(self, arg__1: PySide2.QtCore.QTextStream) -> PySide2.Qt... class QSplitterHandle (line 9838) | class QSplitterHandle(QWidget): method __init__ (line 9840) | def __init__(self, o: PySide2.QtCore.Qt.Orientation, parent: QSplitter... method closestLegalPosition (line 9841) | def closestLegalPosition(self, p: int) -> int: ... method event (line 9842) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method mouseMoveEvent (line 9843) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 9844) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 9845) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method moveSplitter (line 9846) | def moveSplitter(self, p: int) -> None: ... method opaqueResize (line 9847) | def opaqueResize(self) -> bool: ... method orientation (line 9848) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method paintEvent (line 9849) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method resizeEvent (line 9850) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method setOrientation (line 9851) | def setOrientation(self, o: PySide2.QtCore.Qt.Orientation) -> None: ... method sizeHint (line 9852) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method splitter (line 9853) | def splitter(self) -> QSplitter: ... class QStackedLayout (line 9855) | class QStackedLayout(QLayout): class StackingMode (line 9856) | class StackingMode: method __init__ (line 9862) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9863) | def __add__(self, other: typing.SupportsInt) -> QStackedLayout.Stack... method __and__ (line 9864) | def __and__(self, other: typing.SupportsInt) -> QStackedLayout.Stack... method __bool__ (line 9865) | def __bool__(self) -> bool: ... method __eq__ (line 9866) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9867) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9868) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9869) | def __hash__(self) -> int: ... method __index__ (line 9870) | def __index__(self) -> int: ... method __int__ (line 9871) | def __int__(self) -> int: ... method __le__ (line 9872) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9873) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9874) | def __mul__(self, other: typing.SupportsInt) -> QStackedLayout.Stack... method __ne__ (line 9875) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9876) | def __or__(self, other: typing.SupportsInt) -> QStackedLayout.Stacki... method __pos__ (line 9877) | def __pos__(self): ... method __radd__ (line 9878) | def __radd__(self, other: typing.SupportsInt) -> QStackedLayout.Stac... method __rand__ (line 9879) | def __rand__(self, other: typing.SupportsInt) -> QStackedLayout.Stac... method __rmul__ (line 9880) | def __rmul__(self, other: typing.SupportsInt) -> QStackedLayout.Stac... method __ror__ (line 9881) | def __ror__(self, other: typing.SupportsInt) -> QStackedLayout.Stack... method __rsub__ (line 9882) | def __rsub__(self, other: typing.SupportsInt) -> QStackedLayout.Stac... method __rxor__ (line 9883) | def __rxor__(self, other: typing.SupportsInt) -> QStackedLayout.Stac... method __sub__ (line 9884) | def __sub__(self, other: typing.SupportsInt) -> QStackedLayout.Stack... method __xor__ (line 9885) | def __xor__(self, other: typing.SupportsInt) -> QStackedLayout.Stack... method __init__ (line 9892) | def __init__(self, parentLayout: QLayout, currentChanged: typing.Calla... method __init__ (line 9894) | def __init__(self, parent: QWidget | None, currentChanged: typing.Call... method __init__ (line 9896) | def __init__(self, currentChanged: typing.Callable = ..., currentIndex... method addItem (line 9897) | def addItem(self, item: QLayoutItem) -> None: ... method addWidget (line 9898) | def addWidget(self, w: QWidget) -> int: ... # type: ignore[override] method count (line 9899) | def count(self) -> int: ... method currentIndex (line 9900) | def currentIndex(self) -> int: ... method currentWidget (line 9901) | def currentWidget(self) -> QWidget: ... method hasHeightForWidth (line 9902) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 9903) | def heightForWidth(self, width: int) -> int: ... method insertWidget (line 9904) | def insertWidget(self, index: int, w: QWidget) -> int: ... method itemAt (line 9905) | def itemAt(self, arg__1: int) -> QLayoutItem: ... method minimumSize (line 9906) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method setCurrentIndex (line 9907) | def setCurrentIndex(self, index: int) -> None: ... method setCurrentWidget (line 9908) | def setCurrentWidget(self, w: QWidget) -> None: ... method setGeometry (line 9909) | def setGeometry(self, rect: PySide2.QtCore.QRect) -> None: ... method setStackingMode (line 9910) | def setStackingMode(self, stackingMode: QStackedLayout.StackingMode) -... method sizeHint (line 9911) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method stackingMode (line 9912) | def stackingMode(self) -> QStackedLayout.StackingMode: ... method takeAt (line 9913) | def takeAt(self, arg__1: int) -> QLayoutItem: ... method widget (line 9915) | def widget(self, arg__1: int) -> QWidget: ... method widget (line 9917) | def widget(self) -> QWidget: ... class QStackedWidget (line 9919) | class QStackedWidget(QFrame): method __init__ (line 9923) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addWidget (line 9924) | def addWidget(self, w: QWidget) -> int: ... method count (line 9925) | def count(self) -> int: ... method currentIndex (line 9926) | def currentIndex(self) -> int: ... method currentWidget (line 9927) | def currentWidget(self) -> QWidget: ... method event (line 9928) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method indexOf (line 9929) | def indexOf(self, arg__1: QWidget) -> int: ... method insertWidget (line 9930) | def insertWidget(self, index: int, w: QWidget) -> int: ... method removeWidget (line 9931) | def removeWidget(self, w: QWidget) -> None: ... method setCurrentIndex (line 9932) | def setCurrentIndex(self, index: int) -> None: ... method setCurrentWidget (line 9933) | def setCurrentWidget(self, w: QWidget) -> None: ... method widget (line 9934) | def widget(self, arg__1: int) -> QWidget: ... class QStatusBar (line 9936) | class QStatusBar(QWidget): method __init__ (line 9939) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addPermanentWidget (line 9940) | def addPermanentWidget(self, widget: QWidget, stretch: int = ...) -> N... method addWidget (line 9941) | def addWidget(self, widget: QWidget, stretch: int = ...) -> None: ... method clearMessage (line 9942) | def clearMessage(self) -> None: ... method currentMessage (line 9943) | def currentMessage(self) -> str: ... method event (line 9944) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method hideOrShow (line 9945) | def hideOrShow(self) -> None: ... method insertPermanentWidget (line 9946) | def insertPermanentWidget(self, index: int, widget: QWidget, stretch: ... method insertWidget (line 9947) | def insertWidget(self, index: int, widget: QWidget, stretch: int = ...... method isSizeGripEnabled (line 9948) | def isSizeGripEnabled(self) -> bool: ... method paintEvent (line 9949) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method reformat (line 9950) | def reformat(self) -> None: ... method removeWidget (line 9951) | def removeWidget(self, widget: QWidget) -> None: ... method resizeEvent (line 9952) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method setSizeGripEnabled (line 9953) | def setSizeGripEnabled(self, arg__1: bool) -> None: ... method showEvent (line 9954) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method showMessage (line 9955) | def showMessage(self, text: str, timeout: int = ...) -> None: ... class QStyle (line 9957) | class QStyle(PySide2.QtCore.QObject): class ComplexControl (line 9958) | class ComplexControl: method __init__ (line 9972) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 9973) | def __add__(self, other: typing.SupportsInt) -> QStyle.ComplexContro... method __and__ (line 9974) | def __and__(self, other: typing.SupportsInt) -> QStyle.ComplexContro... method __bool__ (line 9975) | def __bool__(self) -> bool: ... method __eq__ (line 9976) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9977) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9978) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9979) | def __hash__(self) -> int: ... method __index__ (line 9980) | def __index__(self) -> int: ... method __int__ (line 9981) | def __int__(self) -> int: ... method __le__ (line 9982) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9983) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 9984) | def __mul__(self, other: typing.SupportsInt) -> QStyle.ComplexContro... method __ne__ (line 9985) | def __ne__(self, other: object) -> bool: ... method __or__ (line 9986) | def __or__(self, other: typing.SupportsInt) -> QStyle.ComplexControl... method __pos__ (line 9987) | def __pos__(self): ... method __radd__ (line 9988) | def __radd__(self, other: typing.SupportsInt) -> QStyle.ComplexContr... method __rand__ (line 9989) | def __rand__(self, other: typing.SupportsInt) -> QStyle.ComplexContr... method __rmul__ (line 9990) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.ComplexContr... method __ror__ (line 9991) | def __ror__(self, other: typing.SupportsInt) -> QStyle.ComplexContro... method __rsub__ (line 9992) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.ComplexContr... method __rxor__ (line 9993) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.ComplexContr... method __sub__ (line 9994) | def __sub__(self, other: typing.SupportsInt) -> QStyle.ComplexContro... method __xor__ (line 9995) | def __xor__(self, other: typing.SupportsInt) -> QStyle.ComplexContro... class ContentsType (line 9997) | class ContentsType: method __init__ (line 10025) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10026) | def __add__(self, other: typing.SupportsInt) -> QStyle.ContentsType:... method __and__ (line 10027) | def __and__(self, other: typing.SupportsInt) -> QStyle.ContentsType:... method __bool__ (line 10028) | def __bool__(self) -> bool: ... method __eq__ (line 10029) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10030) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10031) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10032) | def __hash__(self) -> int: ... method __index__ (line 10033) | def __index__(self) -> int: ... method __int__ (line 10034) | def __int__(self) -> int: ... method __le__ (line 10035) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10036) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10037) | def __mul__(self, other: typing.SupportsInt) -> QStyle.ContentsType:... method __ne__ (line 10038) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10039) | def __or__(self, other: typing.SupportsInt) -> QStyle.ContentsType: ... method __pos__ (line 10040) | def __pos__(self): ... method __radd__ (line 10041) | def __radd__(self, other: typing.SupportsInt) -> QStyle.ContentsType... method __rand__ (line 10042) | def __rand__(self, other: typing.SupportsInt) -> QStyle.ContentsType... method __rmul__ (line 10043) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.ContentsType... method __ror__ (line 10044) | def __ror__(self, other: typing.SupportsInt) -> QStyle.ContentsType:... method __rsub__ (line 10045) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.ContentsType... method __rxor__ (line 10046) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.ContentsType... method __sub__ (line 10047) | def __sub__(self, other: typing.SupportsInt) -> QStyle.ContentsType:... method __xor__ (line 10048) | def __xor__(self, other: typing.SupportsInt) -> QStyle.ContentsType:... class ControlElement (line 10050) | class ControlElement: method __init__ (line 10102) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10103) | def __add__(self, other: typing.SupportsInt) -> QStyle.ControlElemen... method __and__ (line 10104) | def __and__(self, other: typing.SupportsInt) -> QStyle.ControlElemen... method __bool__ (line 10105) | def __bool__(self) -> bool: ... method __eq__ (line 10106) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10107) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10108) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10109) | def __hash__(self) -> int: ... method __index__ (line 10110) | def __index__(self) -> int: ... method __int__ (line 10111) | def __int__(self) -> int: ... method __le__ (line 10112) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10113) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10114) | def __mul__(self, other: typing.SupportsInt) -> QStyle.ControlElemen... method __ne__ (line 10115) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10116) | def __or__(self, other: typing.SupportsInt) -> QStyle.ControlElement... method __pos__ (line 10117) | def __pos__(self): ... method __radd__ (line 10118) | def __radd__(self, other: typing.SupportsInt) -> QStyle.ControlEleme... method __rand__ (line 10119) | def __rand__(self, other: typing.SupportsInt) -> QStyle.ControlEleme... method __rmul__ (line 10120) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.ControlEleme... method __ror__ (line 10121) | def __ror__(self, other: typing.SupportsInt) -> QStyle.ControlElemen... method __rsub__ (line 10122) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.ControlEleme... method __rxor__ (line 10123) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.ControlEleme... method __sub__ (line 10124) | def __sub__(self, other: typing.SupportsInt) -> QStyle.ControlElemen... method __xor__ (line 10125) | def __xor__(self, other: typing.SupportsInt) -> QStyle.ControlElemen... class PixelMetric (line 10127) | class PixelMetric: method __init__ (line 10230) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10231) | def __add__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... method __and__ (line 10232) | def __and__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... method __bool__ (line 10233) | def __bool__(self) -> bool: ... method __eq__ (line 10234) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10235) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10236) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10237) | def __hash__(self) -> int: ... method __index__ (line 10238) | def __index__(self) -> int: ... method __int__ (line 10239) | def __int__(self) -> int: ... method __le__ (line 10240) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10241) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10242) | def __mul__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... method __ne__ (line 10243) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10244) | def __or__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... method __pos__ (line 10245) | def __pos__(self): ... method __radd__ (line 10246) | def __radd__(self, other: typing.SupportsInt) -> QStyle.PixelMetric:... method __rand__ (line 10247) | def __rand__(self, other: typing.SupportsInt) -> QStyle.PixelMetric:... method __rmul__ (line 10248) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.PixelMetric:... method __ror__ (line 10249) | def __ror__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... method __rsub__ (line 10250) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.PixelMetric:... method __rxor__ (line 10251) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.PixelMetric:... method __sub__ (line 10252) | def __sub__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... method __xor__ (line 10253) | def __xor__(self, other: typing.SupportsInt) -> QStyle.PixelMetric: ... class PrimitiveElement (line 10255) | class PrimitiveElement: method __init__ (line 10313) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10314) | def __add__(self, other: typing.SupportsInt) -> QStyle.PrimitiveElem... method __and__ (line 10315) | def __and__(self, other: typing.SupportsInt) -> QStyle.PrimitiveElem... method __bool__ (line 10316) | def __bool__(self) -> bool: ... method __eq__ (line 10317) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10318) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10319) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10320) | def __hash__(self) -> int: ... method __index__ (line 10321) | def __index__(self) -> int: ... method __int__ (line 10322) | def __int__(self) -> int: ... method __le__ (line 10323) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10324) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10325) | def __mul__(self, other: typing.SupportsInt) -> QStyle.PrimitiveElem... method __ne__ (line 10326) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10327) | def __or__(self, other: typing.SupportsInt) -> QStyle.PrimitiveEleme... method __pos__ (line 10328) | def __pos__(self): ... method __radd__ (line 10329) | def __radd__(self, other: typing.SupportsInt) -> QStyle.PrimitiveEle... method __rand__ (line 10330) | def __rand__(self, other: typing.SupportsInt) -> QStyle.PrimitiveEle... method __rmul__ (line 10331) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.PrimitiveEle... method __ror__ (line 10332) | def __ror__(self, other: typing.SupportsInt) -> QStyle.PrimitiveElem... method __rsub__ (line 10333) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.PrimitiveEle... method __rxor__ (line 10334) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.PrimitiveEle... method __sub__ (line 10335) | def __sub__(self, other: typing.SupportsInt) -> QStyle.PrimitiveElem... method __xor__ (line 10336) | def __xor__(self, other: typing.SupportsInt) -> QStyle.PrimitiveElem... class RequestSoftwareInputPanel (line 10338) | class RequestSoftwareInputPanel: method __init__ (line 10344) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10345) | def __add__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwa... method __and__ (line 10346) | def __and__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwa... method __bool__ (line 10347) | def __bool__(self) -> bool: ... method __eq__ (line 10348) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10349) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10350) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10351) | def __hash__(self) -> int: ... method __index__ (line 10352) | def __index__(self) -> int: ... method __int__ (line 10353) | def __int__(self) -> int: ... method __le__ (line 10354) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10355) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10356) | def __mul__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwa... method __ne__ (line 10357) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10358) | def __or__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwar... method __pos__ (line 10359) | def __pos__(self): ... method __radd__ (line 10360) | def __radd__(self, other: typing.SupportsInt) -> QStyle.RequestSoftw... method __rand__ (line 10361) | def __rand__(self, other: typing.SupportsInt) -> QStyle.RequestSoftw... method __rmul__ (line 10362) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.RequestSoftw... method __ror__ (line 10363) | def __ror__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwa... method __rsub__ (line 10364) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.RequestSoftw... method __rxor__ (line 10365) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.RequestSoftw... method __sub__ (line 10366) | def __sub__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwa... method __xor__ (line 10367) | def __xor__(self, other: typing.SupportsInt) -> QStyle.RequestSoftwa... class StandardPixmap (line 10369) | class StandardPixmap: method __init__ (line 10452) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10453) | def __add__(self, other: typing.SupportsInt) -> QStyle.StandardPixma... method __and__ (line 10454) | def __and__(self, other: typing.SupportsInt) -> QStyle.StandardPixma... method __bool__ (line 10455) | def __bool__(self) -> bool: ... method __eq__ (line 10456) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10457) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10458) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10459) | def __hash__(self) -> int: ... method __index__ (line 10460) | def __index__(self) -> int: ... method __int__ (line 10461) | def __int__(self) -> int: ... method __le__ (line 10462) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10463) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10464) | def __mul__(self, other: typing.SupportsInt) -> QStyle.StandardPixma... method __ne__ (line 10465) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10466) | def __or__(self, other: typing.SupportsInt) -> QStyle.StandardPixmap... method __pos__ (line 10467) | def __pos__(self): ... method __radd__ (line 10468) | def __radd__(self, other: typing.SupportsInt) -> QStyle.StandardPixm... method __rand__ (line 10469) | def __rand__(self, other: typing.SupportsInt) -> QStyle.StandardPixm... method __rmul__ (line 10470) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.StandardPixm... method __ror__ (line 10471) | def __ror__(self, other: typing.SupportsInt) -> QStyle.StandardPixma... method __rsub__ (line 10472) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.StandardPixm... method __rxor__ (line 10473) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.StandardPixm... method __sub__ (line 10474) | def __sub__(self, other: typing.SupportsInt) -> QStyle.StandardPixma... method __xor__ (line 10475) | def __xor__(self, other: typing.SupportsInt) -> QStyle.StandardPixma... class State (line 10477) | class State: method __init__ (line 10479) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 10480) | def __and__(self, other: typing.SupportsInt) -> QStyle.State: ... method __bool__ (line 10481) | def __bool__(self) -> bool: ... method __eq__ (line 10482) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10483) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10484) | def __gt__(self, other: object) -> bool: ... method __index__ (line 10485) | def __index__(self) -> int: ... method __int__ (line 10486) | def __int__(self) -> int: ... method __invert__ (line 10487) | def __invert__(self) -> QStyle.State: ... method __le__ (line 10488) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10489) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10490) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10491) | def __or__(self, other: typing.SupportsInt) -> QStyle.State: ... method __rand__ (line 10492) | def __rand__(self, other: typing.SupportsInt) -> QStyle.State: ... method __ror__ (line 10493) | def __ror__(self, other: typing.SupportsInt) -> QStyle.State: ... method __rxor__ (line 10494) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.State: ... method __xor__ (line 10495) | def __xor__(self, other: typing.SupportsInt) -> QStyle.State: ... class StateFlag (line 10497) | class StateFlag: method __init__ (line 10529) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 10530) | def __and__(self, other: typing.SupportsInt) -> QStyle.State: ... method __bool__ (line 10531) | def __bool__(self) -> bool: ... method __eq__ (line 10532) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10533) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10534) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10535) | def __hash__(self) -> int: ... method __index__ (line 10536) | def __index__(self) -> int: ... method __int__ (line 10537) | def __int__(self) -> int: ... method __invert__ (line 10538) | def __invert__(self) -> QStyle.State: ... method __le__ (line 10539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10540) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10541) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10542) | def __or__(self, other: typing.SupportsInt) -> QStyle.State: ... method __rand__ (line 10543) | def __rand__(self, other: typing.SupportsInt) -> QStyle.State: ... method __ror__ (line 10544) | def __ror__(self, other: typing.SupportsInt) -> QStyle.State: ... method __rxor__ (line 10545) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.State: ... method __xor__ (line 10546) | def __xor__(self, other: typing.SupportsInt) -> QStyle.State: ... class StyleHint (line 10548) | class StyleHint: method __init__ (line 10672) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10673) | def __add__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __and__ (line 10674) | def __and__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __bool__ (line 10675) | def __bool__(self) -> bool: ... method __eq__ (line 10676) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10677) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10678) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10679) | def __hash__(self) -> int: ... method __index__ (line 10680) | def __index__(self) -> int: ... method __int__ (line 10681) | def __int__(self) -> int: ... method __le__ (line 10682) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10683) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10684) | def __mul__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __ne__ (line 10685) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10686) | def __or__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __pos__ (line 10687) | def __pos__(self): ... method __radd__ (line 10688) | def __radd__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __rand__ (line 10689) | def __rand__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __rmul__ (line 10690) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __ror__ (line 10691) | def __ror__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __rsub__ (line 10692) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __rxor__ (line 10693) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __sub__ (line 10694) | def __sub__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... method __xor__ (line 10695) | def __xor__(self, other: typing.SupportsInt) -> QStyle.StyleHint: ... class SubControl (line 10697) | class SubControl: method __init__ (line 10744) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 10745) | def __and__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... method __bool__ (line 10746) | def __bool__(self) -> bool: ... method __eq__ (line 10747) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10748) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10749) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10750) | def __hash__(self) -> int: ... method __index__ (line 10751) | def __index__(self) -> int: ... method __int__ (line 10752) | def __int__(self) -> int: ... method __invert__ (line 10753) | def __invert__(self) -> QStyle.SubControls: ... method __le__ (line 10754) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10755) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10756) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10757) | def __or__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... method __rand__ (line 10758) | def __rand__(self, other: typing.SupportsInt) -> QStyle.SubControls:... method __ror__ (line 10759) | def __ror__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... method __rxor__ (line 10760) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.SubControls:... method __xor__ (line 10761) | def __xor__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... class SubControls (line 10763) | class SubControls: method __init__ (line 10765) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 10766) | def __and__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... method __bool__ (line 10767) | def __bool__(self) -> bool: ... method __eq__ (line 10768) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10769) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10770) | def __gt__(self, other: object) -> bool: ... method __index__ (line 10771) | def __index__(self) -> int: ... method __int__ (line 10772) | def __int__(self) -> int: ... method __invert__ (line 10773) | def __invert__(self) -> QStyle.SubControls: ... method __le__ (line 10774) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10775) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10776) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10777) | def __or__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... method __rand__ (line 10778) | def __rand__(self, other: typing.SupportsInt) -> QStyle.SubControls:... method __ror__ (line 10779) | def __ror__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... method __rxor__ (line 10780) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.SubControls:... method __xor__ (line 10781) | def __xor__(self, other: typing.SupportsInt) -> QStyle.SubControls: ... class SubElement (line 10783) | class SubElement: method __init__ (line 10848) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 10849) | def __add__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __and__ (line 10850) | def __and__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __bool__ (line 10851) | def __bool__(self) -> bool: ... method __eq__ (line 10852) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10853) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10854) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10855) | def __hash__(self) -> int: ... method __index__ (line 10856) | def __index__(self) -> int: ... method __int__ (line 10857) | def __int__(self) -> int: ... method __le__ (line 10858) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10859) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10860) | def __mul__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __ne__ (line 10861) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10862) | def __or__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __pos__ (line 10863) | def __pos__(self): ... method __radd__ (line 10864) | def __radd__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __rand__ (line 10865) | def __rand__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __rmul__ (line 10866) | def __rmul__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __ror__ (line 10867) | def __ror__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __rsub__ (line 10868) | def __rsub__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __rxor__ (line 10869) | def __rxor__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __sub__ (line 10870) | def __sub__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __xor__ (line 10871) | def __xor__(self, other: typing.SupportsInt) -> QStyle.SubElement: ... method __init__ (line 11441) | def __init__(self, destroyed: typing.Callable = ..., objectName: str =... method alignedRect (line 11443) | def alignedRect(direction: PySide2.QtCore.Qt.LayoutDirection, alignmen... method combinedLayoutSpacing (line 11444) | def combinedLayoutSpacing(self, controls1: QSizePolicy.ControlTypes | ... method drawComplexControl (line 11445) | def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOpt... method drawControl (line 11446) | def drawControl(self, element: QStyle.ControlElement, opt: QStyleOptio... method drawItemPixmap (line 11447) | def drawItemPixmap(self, painter: PySide2.QtGui.QPainter, rect: PySide... method drawItemText (line 11448) | def drawItemText(self, painter: PySide2.QtGui.QPainter, rect: PySide2.... method drawPrimitive (line 11449) | def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption... method generatedIconPixmap (line 11450) | def generatedIconPixmap(self, iconMode: PySide2.QtGui.QIcon.Mode, pixm... method hitTestComplexControl (line 11451) | def hitTestComplexControl(self, cc: QStyle.ComplexControl, opt: QStyle... method itemPixmapRect (line 11452) | def itemPixmapRect(self, r: PySide2.QtCore.QRect, flags: typing.Suppor... method itemTextRect (line 11453) | def itemTextRect(self, fm: PySide2.QtGui.QFontMetrics, r: PySide2.QtCo... method layoutSpacing (line 11454) | def layoutSpacing(self, control1: QSizePolicy.ControlType, control2: Q... method pixelMetric (line 11455) | def pixelMetric(self, metric: QStyle.PixelMetric, option: QStyleOption... method polish (line 11457) | def polish(self, widget: QWidget) -> None: ... method polish (line 11459) | def polish(self, palette: PySide2.QtGui.QPalette) -> None: ... method polish (line 11461) | def polish(self, application: QApplication) -> None: ... method proxy (line 11462) | def proxy(self) -> QStyle: ... method sizeFromContents (line 11463) | def sizeFromContents(self, ct: QStyle.ContentsType, opt: QStyleOption,... method sliderPositionFromValue (line 11465) | def sliderPositionFromValue(min: int, max: int, val: int, space: int, ... method sliderValueFromPosition (line 11467) | def sliderValueFromPosition(min: int, max: int, pos: int, space: int, ... method standardIcon (line 11468) | def standardIcon(self, standardIcon: QStyle.StandardPixmap, option: QS... method standardPalette (line 11469) | def standardPalette(self) -> PySide2.QtGui.QPalette: ... method standardPixmap (line 11470) | def standardPixmap(self, standardPixmap: QStyle.StandardPixmap, opt: Q... method styleHint (line 11471) | def styleHint(self, stylehint: QStyle.StyleHint, opt: QStyleOption | N... method subControlRect (line 11472) | def subControlRect(self, cc: QStyle.ComplexControl, opt: QStyleOptionC... method subElementRect (line 11473) | def subElementRect(self, subElement: QStyle.SubElement, option: QStyle... method unpolish (line 11475) | def unpolish(self, widget: QWidget) -> None: ... method unpolish (line 11477) | def unpolish(self, application: QApplication) -> None: ... method visualAlignment (line 11479) | def visualAlignment(direction: PySide2.QtCore.Qt.LayoutDirection, alig... method visualPos (line 11481) | def visualPos(direction: PySide2.QtCore.Qt.LayoutDirection, boundingRe... method visualRect (line 11483) | def visualRect(direction: PySide2.QtCore.Qt.LayoutDirection, boundingR... class QStyleFactory (line 11485) | class QStyleFactory(shiboken2.Object): method __init__ (line 11486) | def __init__(self) -> None: ... method create (line 11488) | def create(arg__1: str) -> QStyle: ... method keys (line 11490) | def keys() -> list[str]: ... class QStyleHintReturn (line 11492) | class QStyleHintReturn(shiboken2.Object): class HintReturnType (line 11493) | class HintReturnType: method __init__ (line 11500) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11501) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hin... method __and__ (line 11502) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hin... method __bool__ (line 11503) | def __bool__(self) -> bool: ... method __eq__ (line 11504) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11505) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11506) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11507) | def __hash__(self) -> int: ... method __index__ (line 11508) | def __index__(self) -> int: ... method __int__ (line 11509) | def __int__(self) -> int: ... method __le__ (line 11510) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11511) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11512) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hin... method __ne__ (line 11513) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11514) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hint... method __pos__ (line 11515) | def __pos__(self): ... method __radd__ (line 11516) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hi... method __rand__ (line 11517) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hi... method __rmul__ (line 11518) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hi... method __ror__ (line 11519) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hin... method __rsub__ (line 11520) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hi... method __rxor__ (line 11521) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hi... method __sub__ (line 11522) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hin... method __xor__ (line 11523) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturn.Hin... class StyleOptionType (line 11525) | class StyleOptionType: method __init__ (line 11530) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11531) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __and__ (line 11532) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __bool__ (line 11533) | def __bool__(self) -> bool: ... method __eq__ (line 11534) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11535) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11536) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11537) | def __hash__(self) -> int: ... method __index__ (line 11538) | def __index__(self) -> int: ... method __int__ (line 11539) | def __int__(self) -> int: ... method __le__ (line 11540) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11541) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11542) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __ne__ (line 11543) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11544) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturn.Styl... method __pos__ (line 11545) | def __pos__(self): ... method __radd__ (line 11546) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __rand__ (line 11547) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __rmul__ (line 11548) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __ror__ (line 11549) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __rsub__ (line 11550) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __rxor__ (line 11551) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __sub__ (line 11552) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __xor__ (line 11553) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... class StyleOptionVersion (line 11555) | class StyleOptionVersion: method __init__ (line 11560) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11561) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __and__ (line 11562) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __bool__ (line 11563) | def __bool__(self) -> bool: ... method __eq__ (line 11564) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11565) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11566) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11567) | def __hash__(self) -> int: ... method __index__ (line 11568) | def __index__(self) -> int: ... method __int__ (line 11569) | def __int__(self) -> int: ... method __le__ (line 11570) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11571) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11572) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __ne__ (line 11573) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11574) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturn.Styl... method __pos__ (line 11575) | def __pos__(self): ... method __radd__ (line 11576) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __rand__ (line 11577) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __rmul__ (line 11578) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __ror__ (line 11579) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __rsub__ (line 11580) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __rxor__ (line 11581) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturn.St... method __sub__ (line 11582) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __xor__ (line 11583) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturn.Sty... method __init__ (line 11591) | def __init__(self, version: int = ..., type: int = ...) -> None: ... class QStyleHintReturnMask (line 11593) | class QStyleHintReturnMask(QStyleHintReturn): class StyleOptionType (line 11594) | class StyleOptionType: method __init__ (line 11599) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11600) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __and__ (line 11601) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __bool__ (line 11602) | def __bool__(self) -> bool: ... method __eq__ (line 11603) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11604) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11605) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11606) | def __hash__(self) -> int: ... method __index__ (line 11607) | def __index__(self) -> int: ... method __int__ (line 11608) | def __int__(self) -> int: ... method __le__ (line 11609) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11610) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11611) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __ne__ (line 11612) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11613) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturnMask.... method __pos__ (line 11614) | def __pos__(self): ... method __radd__ (line 11615) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __rand__ (line 11616) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __rmul__ (line 11617) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __ror__ (line 11618) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __rsub__ (line 11619) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __rxor__ (line 11620) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __sub__ (line 11621) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __xor__ (line 11622) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... class StyleOptionVersion (line 11624) | class StyleOptionVersion: method __init__ (line 11629) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11630) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __and__ (line 11631) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __bool__ (line 11632) | def __bool__(self) -> bool: ... method __eq__ (line 11633) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11634) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11635) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11636) | def __hash__(self) -> int: ... method __index__ (line 11637) | def __index__(self) -> int: ... method __int__ (line 11638) | def __int__(self) -> int: ... method __le__ (line 11639) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11640) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11641) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __ne__ (line 11642) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11643) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturnMask.... method __pos__ (line 11644) | def __pos__(self): ... method __radd__ (line 11645) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __rand__ (line 11646) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __rmul__ (line 11647) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __ror__ (line 11648) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __rsub__ (line 11649) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __rxor__ (line 11650) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturnMas... method __sub__ (line 11651) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __xor__ (line 11652) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturnMask... method __init__ (line 11656) | def __init__(self) -> None: ... class QStyleHintReturnVariant (line 11658) | class QStyleHintReturnVariant(QStyleHintReturn): class StyleOptionType (line 11659) | class StyleOptionType: method __init__ (line 11664) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11665) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __and__ (line 11666) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __bool__ (line 11667) | def __bool__(self) -> bool: ... method __eq__ (line 11668) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11669) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11670) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11671) | def __hash__(self) -> int: ... method __index__ (line 11672) | def __index__(self) -> int: ... method __int__ (line 11673) | def __int__(self) -> int: ... method __le__ (line 11674) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11675) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11676) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __ne__ (line 11677) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11678) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturnVaria... method __pos__ (line 11679) | def __pos__(self): ... method __radd__ (line 11680) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __rand__ (line 11681) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __rmul__ (line 11682) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __ror__ (line 11683) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __rsub__ (line 11684) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __rxor__ (line 11685) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __sub__ (line 11686) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __xor__ (line 11687) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... class StyleOptionVersion (line 11689) | class StyleOptionVersion: method __init__ (line 11694) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11695) | def __add__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __and__ (line 11696) | def __and__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __bool__ (line 11697) | def __bool__(self) -> bool: ... method __eq__ (line 11698) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11699) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11700) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11701) | def __hash__(self) -> int: ... method __index__ (line 11702) | def __index__(self) -> int: ... method __int__ (line 11703) | def __int__(self) -> int: ... method __le__ (line 11704) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11705) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11706) | def __mul__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __ne__ (line 11707) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11708) | def __or__(self, other: typing.SupportsInt) -> QStyleHintReturnVaria... method __pos__ (line 11709) | def __pos__(self): ... method __radd__ (line 11710) | def __radd__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __rand__ (line 11711) | def __rand__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __rmul__ (line 11712) | def __rmul__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __ror__ (line 11713) | def __ror__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __rsub__ (line 11714) | def __rsub__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __rxor__ (line 11715) | def __rxor__(self, other: typing.SupportsInt) -> QStyleHintReturnVar... method __sub__ (line 11716) | def __sub__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __xor__ (line 11717) | def __xor__(self, other: typing.SupportsInt) -> QStyleHintReturnVari... method __init__ (line 11721) | def __init__(self) -> None: ... class QStyleOption (line 11723) | class QStyleOption(shiboken2.Object): class OptionType (line 11724) | class OptionType: method __init__ (line 11754) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11755) | def __add__(self, other: typing.SupportsInt) -> QStyleOption.OptionT... method __and__ (line 11756) | def __and__(self, other: typing.SupportsInt) -> QStyleOption.OptionT... method __bool__ (line 11757) | def __bool__(self) -> bool: ... method __eq__ (line 11758) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11759) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11760) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11761) | def __hash__(self) -> int: ... method __index__ (line 11762) | def __index__(self) -> int: ... method __int__ (line 11763) | def __int__(self) -> int: ... method __le__ (line 11764) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11765) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11766) | def __mul__(self, other: typing.SupportsInt) -> QStyleOption.OptionT... method __ne__ (line 11767) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11768) | def __or__(self, other: typing.SupportsInt) -> QStyleOption.OptionTy... method __pos__ (line 11769) | def __pos__(self): ... method __radd__ (line 11770) | def __radd__(self, other: typing.SupportsInt) -> QStyleOption.Option... method __rand__ (line 11771) | def __rand__(self, other: typing.SupportsInt) -> QStyleOption.Option... method __rmul__ (line 11772) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOption.Option... method __ror__ (line 11773) | def __ror__(self, other: typing.SupportsInt) -> QStyleOption.OptionT... method __rsub__ (line 11774) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOption.Option... method __rxor__ (line 11775) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOption.Option... method __sub__ (line 11776) | def __sub__(self, other: typing.SupportsInt) -> QStyleOption.OptionT... method __xor__ (line 11777) | def __xor__(self, other: typing.SupportsInt) -> QStyleOption.OptionT... class StyleOptionType (line 11779) | class StyleOptionType: method __init__ (line 11784) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11785) | def __add__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __and__ (line 11786) | def __and__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __bool__ (line 11787) | def __bool__(self) -> bool: ... method __eq__ (line 11788) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11789) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11790) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11791) | def __hash__(self) -> int: ... method __index__ (line 11792) | def __index__(self) -> int: ... method __int__ (line 11793) | def __int__(self) -> int: ... method __le__ (line 11794) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11795) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11796) | def __mul__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __ne__ (line 11797) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11798) | def __or__(self, other: typing.SupportsInt) -> QStyleOption.StyleOpt... method __pos__ (line 11799) | def __pos__(self): ... method __radd__ (line 11800) | def __radd__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __rand__ (line 11801) | def __rand__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __rmul__ (line 11802) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __ror__ (line 11803) | def __ror__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __rsub__ (line 11804) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __rxor__ (line 11805) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __sub__ (line 11806) | def __sub__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __xor__ (line 11807) | def __xor__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... class StyleOptionVersion (line 11809) | class StyleOptionVersion: method __init__ (line 11814) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11815) | def __add__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __and__ (line 11816) | def __and__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __bool__ (line 11817) | def __bool__(self) -> bool: ... method __eq__ (line 11818) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11819) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11820) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11821) | def __hash__(self) -> int: ... method __index__ (line 11822) | def __index__(self) -> int: ... method __int__ (line 11823) | def __int__(self) -> int: ... method __le__ (line 11824) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11825) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11826) | def __mul__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __ne__ (line 11827) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11828) | def __or__(self, other: typing.SupportsInt) -> QStyleOption.StyleOpt... method __pos__ (line 11829) | def __pos__(self): ... method __radd__ (line 11830) | def __radd__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __rand__ (line 11831) | def __rand__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __rmul__ (line 11832) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __ror__ (line 11833) | def __ror__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __rsub__ (line 11834) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __rxor__ (line 11835) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOption.StyleO... method __sub__ (line 11836) | def __sub__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __xor__ (line 11837) | def __xor__(self, other: typing.SupportsInt) -> QStyleOption.StyleOp... method __init__ (line 11875) | def __init__(self, version: int = ..., type: int = ...) -> None: ... method __init__ (line 11877) | def __init__(self, other: QStyleOption) -> None: ... method init (line 11878) | def init(self, w: QWidget) -> None: ... method initFrom (line 11879) | def initFrom(self, w: QWidget) -> None: ... class QStyleOptionButton (line 11881) | class QStyleOptionButton(QStyleOption): class ButtonFeature (line 11882) | class ButtonFeature: method __init__ (line 11892) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11893) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionButton.B... method __bool__ (line 11894) | def __bool__(self) -> bool: ... method __eq__ (line 11895) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11896) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11897) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11898) | def __hash__(self) -> int: ... method __index__ (line 11899) | def __index__(self) -> int: ... method __int__ (line 11900) | def __int__(self) -> int: ... method __invert__ (line 11901) | def __invert__(self) -> QStyleOptionButton.ButtonFeatures: ... method __le__ (line 11902) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11903) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11904) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11905) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionButton.Bu... method __rand__ (line 11906) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __ror__ (line 11907) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionButton.B... method __rxor__ (line 11908) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __xor__ (line 11909) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionButton.B... class ButtonFeatures (line 11911) | class ButtonFeatures: method __init__ (line 11913) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 11914) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionButton.B... method __bool__ (line 11915) | def __bool__(self) -> bool: ... method __eq__ (line 11916) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11917) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11918) | def __gt__(self, other: object) -> bool: ... method __index__ (line 11919) | def __index__(self) -> int: ... method __int__ (line 11920) | def __int__(self) -> int: ... method __invert__ (line 11921) | def __invert__(self) -> QStyleOptionButton.ButtonFeatures: ... method __le__ (line 11922) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11923) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 11924) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11925) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionButton.Bu... method __rand__ (line 11926) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __ror__ (line 11927) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionButton.B... method __rxor__ (line 11928) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __xor__ (line 11929) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionButton.B... class StyleOptionType (line 11931) | class StyleOptionType: method __init__ (line 11936) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11937) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __and__ (line 11938) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __bool__ (line 11939) | def __bool__(self) -> bool: ... method __eq__ (line 11940) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11941) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11942) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11943) | def __hash__(self) -> int: ... method __index__ (line 11944) | def __index__(self) -> int: ... method __int__ (line 11945) | def __int__(self) -> int: ... method __le__ (line 11946) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11947) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11948) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __ne__ (line 11949) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11950) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionButton.St... method __pos__ (line 11951) | def __pos__(self): ... method __radd__ (line 11952) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __rand__ (line 11953) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __rmul__ (line 11954) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __ror__ (line 11955) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __rsub__ (line 11956) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __rxor__ (line 11957) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __sub__ (line 11958) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __xor__ (line 11959) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... class StyleOptionVersion (line 11961) | class StyleOptionVersion: method __init__ (line 11966) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 11967) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __and__ (line 11968) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __bool__ (line 11969) | def __bool__(self) -> bool: ... method __eq__ (line 11970) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 11971) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 11972) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 11973) | def __hash__(self) -> int: ... method __index__ (line 11974) | def __index__(self) -> int: ... method __int__ (line 11975) | def __int__(self) -> int: ... method __le__ (line 11976) | def __le__(self, other: object) -> bool: ... method __lt__ (line 11977) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 11978) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __ne__ (line 11979) | def __ne__(self, other: object) -> bool: ... method __or__ (line 11980) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionButton.St... method __pos__ (line 11981) | def __pos__(self): ... method __radd__ (line 11982) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __rand__ (line 11983) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __rmul__ (line 11984) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __ror__ (line 11985) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __rsub__ (line 11986) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __rxor__ (line 11987) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionButton.... method __sub__ (line 11988) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __xor__ (line 11989) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionButton.S... method __init__ (line 12003) | def __init__(self, version: int) -> None: ... method __init__ (line 12005) | def __init__(self, other: QStyleOptionButton) -> None: ... method __init__ (line 12007) | def __init__(self) -> None: ... class QStyleOptionComboBox (line 12009) | class QStyleOptionComboBox(QStyleOptionComplex): class StyleOptionType (line 12010) | class StyleOptionType: method __init__ (line 12015) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12016) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __and__ (line 12017) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __bool__ (line 12018) | def __bool__(self) -> bool: ... method __eq__ (line 12019) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12020) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12021) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12022) | def __hash__(self) -> int: ... method __index__ (line 12023) | def __index__(self) -> int: ... method __int__ (line 12024) | def __int__(self) -> int: ... method __le__ (line 12025) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12026) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12027) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __ne__ (line 12028) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12029) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionComboBox.... method __pos__ (line 12030) | def __pos__(self): ... method __radd__ (line 12031) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __rand__ (line 12032) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __rmul__ (line 12033) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __ror__ (line 12034) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __rsub__ (line 12035) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __rxor__ (line 12036) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __sub__ (line 12037) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __xor__ (line 12038) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... class StyleOptionVersion (line 12040) | class StyleOptionVersion: method __init__ (line 12045) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12046) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __and__ (line 12047) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __bool__ (line 12048) | def __bool__(self) -> bool: ... method __eq__ (line 12049) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12050) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12051) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12052) | def __hash__(self) -> int: ... method __index__ (line 12053) | def __index__(self) -> int: ... method __int__ (line 12054) | def __int__(self) -> int: ... method __le__ (line 12055) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12056) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12057) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __ne__ (line 12058) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12059) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionComboBox.... method __pos__ (line 12060) | def __pos__(self): ... method __radd__ (line 12061) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __rand__ (line 12062) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __rmul__ (line 12063) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __ror__ (line 12064) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __rsub__ (line 12065) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __rxor__ (line 12066) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionComboBo... method __sub__ (line 12067) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __xor__ (line 12068) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionComboBox... method __init__ (line 12078) | def __init__(self, version: int) -> None: ... method __init__ (line 12080) | def __init__(self, other: QStyleOptionComboBox) -> None: ... method __init__ (line 12082) | def __init__(self) -> None: ... class QStyleOptionComplex (line 12084) | class QStyleOptionComplex(QStyleOption): class StyleOptionType (line 12085) | class StyleOptionType: method __init__ (line 12090) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12091) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __and__ (line 12092) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __bool__ (line 12093) | def __bool__(self) -> bool: ... method __eq__ (line 12094) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12095) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12096) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12097) | def __hash__(self) -> int: ... method __index__ (line 12098) | def __index__(self) -> int: ... method __int__ (line 12099) | def __int__(self) -> int: ... method __le__ (line 12100) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12101) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12102) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __ne__ (line 12103) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12104) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionComplex.S... method __pos__ (line 12105) | def __pos__(self): ... method __radd__ (line 12106) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __rand__ (line 12107) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __rmul__ (line 12108) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __ror__ (line 12109) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __rsub__ (line 12110) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __rxor__ (line 12111) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __sub__ (line 12112) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __xor__ (line 12113) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... class StyleOptionVersion (line 12115) | class StyleOptionVersion: method __init__ (line 12120) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12121) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __and__ (line 12122) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __bool__ (line 12123) | def __bool__(self) -> bool: ... method __eq__ (line 12124) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12125) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12126) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12127) | def __hash__(self) -> int: ... method __index__ (line 12128) | def __index__(self) -> int: ... method __int__ (line 12129) | def __int__(self) -> int: ... method __le__ (line 12130) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12131) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12132) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __ne__ (line 12133) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12134) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionComplex.S... method __pos__ (line 12135) | def __pos__(self): ... method __radd__ (line 12136) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __rand__ (line 12137) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __rmul__ (line 12138) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __ror__ (line 12139) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __rsub__ (line 12140) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __rxor__ (line 12141) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionComplex... method __sub__ (line 12142) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __xor__ (line 12143) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionComplex.... method __init__ (line 12149) | def __init__(self, version: int = ..., type: int = ...) -> None: ... method __init__ (line 12151) | def __init__(self, other: QStyleOptionComplex) -> None: ... class QStyleOptionDockWidget (line 12153) | class QStyleOptionDockWidget(QStyleOption): class StyleOptionType (line 12154) | class StyleOptionType: method __init__ (line 12159) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12160) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __and__ (line 12161) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __bool__ (line 12162) | def __bool__(self) -> bool: ... method __eq__ (line 12163) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12164) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12165) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12166) | def __hash__(self) -> int: ... method __index__ (line 12167) | def __index__(self) -> int: ... method __int__ (line 12168) | def __int__(self) -> int: ... method __le__ (line 12169) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12170) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12171) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __ne__ (line 12172) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12173) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionDockWidge... method __pos__ (line 12174) | def __pos__(self): ... method __radd__ (line 12175) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __rand__ (line 12176) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __rmul__ (line 12177) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __ror__ (line 12178) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __rsub__ (line 12179) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __rxor__ (line 12180) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __sub__ (line 12181) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __xor__ (line 12182) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... class StyleOptionVersion (line 12184) | class StyleOptionVersion: method __init__ (line 12189) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12190) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __and__ (line 12191) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __bool__ (line 12192) | def __bool__(self) -> bool: ... method __eq__ (line 12193) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12194) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12195) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12196) | def __hash__(self) -> int: ... method __index__ (line 12197) | def __index__(self) -> int: ... method __int__ (line 12198) | def __int__(self) -> int: ... method __le__ (line 12199) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12200) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12201) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __ne__ (line 12202) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12203) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionDockWidge... method __pos__ (line 12204) | def __pos__(self): ... method __radd__ (line 12205) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __rand__ (line 12206) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __rmul__ (line 12207) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __ror__ (line 12208) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __rsub__ (line 12209) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __rxor__ (line 12210) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionDockWid... method __sub__ (line 12211) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __xor__ (line 12212) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionDockWidg... method __init__ (line 12221) | def __init__(self, version: int) -> None: ... method __init__ (line 12223) | def __init__(self, other: QStyleOptionDockWidget) -> None: ... method __init__ (line 12225) | def __init__(self) -> None: ... class QStyleOptionFocusRect (line 12227) | class QStyleOptionFocusRect(QStyleOption): class StyleOptionType (line 12228) | class StyleOptionType: method __init__ (line 12233) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12234) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __and__ (line 12235) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __bool__ (line 12236) | def __bool__(self) -> bool: ... method __eq__ (line 12237) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12238) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12239) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12240) | def __hash__(self) -> int: ... method __index__ (line 12241) | def __index__(self) -> int: ... method __int__ (line 12242) | def __int__(self) -> int: ... method __le__ (line 12243) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12244) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12245) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __ne__ (line 12246) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12247) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionFocusRect... method __pos__ (line 12248) | def __pos__(self): ... method __radd__ (line 12249) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __rand__ (line 12250) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __rmul__ (line 12251) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __ror__ (line 12252) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __rsub__ (line 12253) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __rxor__ (line 12254) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __sub__ (line 12255) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __xor__ (line 12256) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... class StyleOptionVersion (line 12258) | class StyleOptionVersion: method __init__ (line 12263) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12264) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __and__ (line 12265) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __bool__ (line 12266) | def __bool__(self) -> bool: ... method __eq__ (line 12267) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12268) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12269) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12270) | def __hash__(self) -> int: ... method __index__ (line 12271) | def __index__(self) -> int: ... method __int__ (line 12272) | def __int__(self) -> int: ... method __le__ (line 12273) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12274) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12275) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __ne__ (line 12276) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12277) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionFocusRect... method __pos__ (line 12278) | def __pos__(self): ... method __radd__ (line 12279) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __rand__ (line 12280) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __rmul__ (line 12281) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __ror__ (line 12282) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __rsub__ (line 12283) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __rxor__ (line 12284) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionFocusRe... method __sub__ (line 12285) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __xor__ (line 12286) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionFocusRec... method __init__ (line 12291) | def __init__(self, version: int) -> None: ... method __init__ (line 12293) | def __init__(self, other: QStyleOptionFocusRect) -> None: ... method __init__ (line 12295) | def __init__(self) -> None: ... class QStyleOptionFrame (line 12297) | class QStyleOptionFrame(QStyleOption): class FrameFeature (line 12298) | class FrameFeature: method __init__ (line 12305) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12306) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fr... method __bool__ (line 12307) | def __bool__(self) -> bool: ... method __eq__ (line 12308) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12309) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12310) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12311) | def __hash__(self) -> int: ... method __index__ (line 12312) | def __index__(self) -> int: ... method __int__ (line 12313) | def __int__(self) -> int: ... method __invert__ (line 12314) | def __invert__(self) -> QStyleOptionFrame.FrameFeatures: ... method __le__ (line 12315) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12316) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12317) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12318) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fra... method __rand__ (line 12319) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionFrame.F... method __ror__ (line 12320) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fr... method __rxor__ (line 12321) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.F... method __xor__ (line 12322) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fr... class FrameFeatures (line 12324) | class FrameFeatures: method __init__ (line 12326) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 12327) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fr... method __bool__ (line 12328) | def __bool__(self) -> bool: ... method __eq__ (line 12329) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12330) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12331) | def __gt__(self, other: object) -> bool: ... method __index__ (line 12332) | def __index__(self) -> int: ... method __int__ (line 12333) | def __int__(self) -> int: ... method __invert__ (line 12334) | def __invert__(self) -> QStyleOptionFrame.FrameFeatures: ... method __le__ (line 12335) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12336) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 12337) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12338) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fra... method __rand__ (line 12339) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionFrame.F... method __ror__ (line 12340) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fr... method __rxor__ (line 12341) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.F... method __xor__ (line 12342) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Fr... class StyleOptionType (line 12344) | class StyleOptionType: method __init__ (line 12349) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12350) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __and__ (line 12351) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __bool__ (line 12352) | def __bool__(self) -> bool: ... method __eq__ (line 12353) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12354) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12355) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12356) | def __hash__(self) -> int: ... method __index__ (line 12357) | def __index__(self) -> int: ... method __int__ (line 12358) | def __int__(self) -> int: ... method __le__ (line 12359) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12360) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12361) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __ne__ (line 12362) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12363) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Sty... method __pos__ (line 12364) | def __pos__(self): ... method __radd__ (line 12365) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __rand__ (line 12366) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __rmul__ (line 12367) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __ror__ (line 12368) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __rsub__ (line 12369) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __rxor__ (line 12370) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __sub__ (line 12371) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __xor__ (line 12372) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... class StyleOptionVersion (line 12374) | class StyleOptionVersion: method __init__ (line 12379) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12380) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __and__ (line 12381) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __bool__ (line 12382) | def __bool__(self) -> bool: ... method __eq__ (line 12383) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12384) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12385) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12386) | def __hash__(self) -> int: ... method __index__ (line 12387) | def __index__(self) -> int: ... method __int__ (line 12388) | def __int__(self) -> int: ... method __le__ (line 12389) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12390) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12391) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __ne__ (line 12392) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12393) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionFrame.Sty... method __pos__ (line 12394) | def __pos__(self): ... method __radd__ (line 12395) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __rand__ (line 12396) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __rmul__ (line 12397) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __ror__ (line 12398) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __rsub__ (line 12399) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __rxor__ (line 12400) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.S... method __sub__ (line 12401) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __xor__ (line 12402) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionFrame.St... method __init__ (line 12413) | def __init__(self, version: int) -> None: ... method __init__ (line 12415) | def __init__(self, other: QStyleOptionFrame) -> None: ... method __init__ (line 12417) | def __init__(self) -> None: ... class QStyleOptionGraphicsItem (line 12419) | class QStyleOptionGraphicsItem(QStyleOption): class StyleOptionType (line 12420) | class StyleOptionType: method __init__ (line 12425) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12426) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __and__ (line 12427) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __bool__ (line 12428) | def __bool__(self) -> bool: ... method __eq__ (line 12429) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12430) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12431) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12432) | def __hash__(self) -> int: ... method __index__ (line 12433) | def __index__(self) -> int: ... method __int__ (line 12434) | def __int__(self) -> int: ... method __le__ (line 12435) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12436) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12437) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __ne__ (line 12438) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12439) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionGraphicsI... method __pos__ (line 12440) | def __pos__(self): ... method __radd__ (line 12441) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __rand__ (line 12442) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __rmul__ (line 12443) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __ror__ (line 12444) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __rsub__ (line 12445) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __rxor__ (line 12446) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __sub__ (line 12447) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __xor__ (line 12448) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... class StyleOptionVersion (line 12450) | class StyleOptionVersion: method __init__ (line 12455) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12456) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __and__ (line 12457) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __bool__ (line 12458) | def __bool__(self) -> bool: ... method __eq__ (line 12459) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12460) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12461) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12462) | def __hash__(self) -> int: ... method __index__ (line 12463) | def __index__(self) -> int: ... method __int__ (line 12464) | def __int__(self) -> int: ... method __le__ (line 12465) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12466) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12467) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __ne__ (line 12468) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12469) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionGraphicsI... method __pos__ (line 12470) | def __pos__(self): ... method __radd__ (line 12471) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __rand__ (line 12472) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __rmul__ (line 12473) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __ror__ (line 12474) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __rsub__ (line 12475) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __rxor__ (line 12476) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionGraphic... method __sub__ (line 12477) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __xor__ (line 12478) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionGraphics... method __init__ (line 12485) | def __init__(self, version: int) -> None: ... method __init__ (line 12487) | def __init__(self, other: QStyleOptionGraphicsItem) -> None: ... method __init__ (line 12489) | def __init__(self) -> None: ... method levelOfDetailFromTransform (line 12491) | def levelOfDetailFromTransform(worldTransform: PySide2.QtGui.QTransfor... class QStyleOptionGroupBox (line 12493) | class QStyleOptionGroupBox(QStyleOptionComplex): class StyleOptionType (line 12494) | class StyleOptionType: method __init__ (line 12499) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12500) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __and__ (line 12501) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __bool__ (line 12502) | def __bool__(self) -> bool: ... method __eq__ (line 12503) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12504) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12505) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12506) | def __hash__(self) -> int: ... method __index__ (line 12507) | def __index__(self) -> int: ... method __int__ (line 12508) | def __int__(self) -> int: ... method __le__ (line 12509) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12510) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12511) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __ne__ (line 12512) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12513) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox.... method __pos__ (line 12514) | def __pos__(self): ... method __radd__ (line 12515) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __rand__ (line 12516) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __rmul__ (line 12517) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __ror__ (line 12518) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __rsub__ (line 12519) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __rxor__ (line 12520) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __sub__ (line 12521) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __xor__ (line 12522) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... class StyleOptionVersion (line 12524) | class StyleOptionVersion: method __init__ (line 12529) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12530) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __and__ (line 12531) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __bool__ (line 12532) | def __bool__(self) -> bool: ... method __eq__ (line 12533) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12534) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12535) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12536) | def __hash__(self) -> int: ... method __index__ (line 12537) | def __index__(self) -> int: ... method __int__ (line 12538) | def __int__(self) -> int: ... method __le__ (line 12539) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12540) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12541) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __ne__ (line 12542) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12543) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox.... method __pos__ (line 12544) | def __pos__(self): ... method __radd__ (line 12545) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __rand__ (line 12546) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __rmul__ (line 12547) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __ror__ (line 12548) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __rsub__ (line 12549) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __rxor__ (line 12550) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionGroupBo... method __sub__ (line 12551) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __xor__ (line 12552) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionGroupBox... method __init__ (line 12562) | def __init__(self, version: int) -> None: ... method __init__ (line 12564) | def __init__(self, other: QStyleOptionGroupBox) -> None: ... method __init__ (line 12566) | def __init__(self) -> None: ... class QStyleOptionHeader (line 12568) | class QStyleOptionHeader(QStyleOption): class SectionPosition (line 12569) | class SectionPosition: method __init__ (line 12577) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12578) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __and__ (line 12579) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __bool__ (line 12580) | def __bool__(self) -> bool: ... method __eq__ (line 12581) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12582) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12583) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12584) | def __hash__(self) -> int: ... method __index__ (line 12585) | def __index__(self) -> int: ... method __int__ (line 12586) | def __int__(self) -> int: ... method __le__ (line 12587) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12588) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12589) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __ne__ (line 12590) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12591) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionHeader.Se... method __pos__ (line 12592) | def __pos__(self): ... method __radd__ (line 12593) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rand__ (line 12594) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rmul__ (line 12595) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __ror__ (line 12596) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __rsub__ (line 12597) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rxor__ (line 12598) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __sub__ (line 12599) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __xor__ (line 12600) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... class SelectedPosition (line 12602) | class SelectedPosition: method __init__ (line 12610) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12611) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __and__ (line 12612) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __bool__ (line 12613) | def __bool__(self) -> bool: ... method __eq__ (line 12614) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12615) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12616) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12617) | def __hash__(self) -> int: ... method __index__ (line 12618) | def __index__(self) -> int: ... method __int__ (line 12619) | def __int__(self) -> int: ... method __le__ (line 12620) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12621) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12622) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __ne__ (line 12623) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12624) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionHeader.Se... method __pos__ (line 12625) | def __pos__(self): ... method __radd__ (line 12626) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rand__ (line 12627) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rmul__ (line 12628) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __ror__ (line 12629) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __rsub__ (line 12630) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rxor__ (line 12631) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __sub__ (line 12632) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __xor__ (line 12633) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... class SortIndicator (line 12635) | class SortIndicator: method __init__ (line 12642) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12643) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __and__ (line 12644) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __bool__ (line 12645) | def __bool__(self) -> bool: ... method __eq__ (line 12646) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12647) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12648) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12649) | def __hash__(self) -> int: ... method __index__ (line 12650) | def __index__(self) -> int: ... method __int__ (line 12651) | def __int__(self) -> int: ... method __le__ (line 12652) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12653) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12654) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __ne__ (line 12655) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12656) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionHeader.So... method __pos__ (line 12657) | def __pos__(self): ... method __radd__ (line 12658) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rand__ (line 12659) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rmul__ (line 12660) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __ror__ (line 12661) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __rsub__ (line 12662) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rxor__ (line 12663) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __sub__ (line 12664) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __xor__ (line 12665) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... class StyleOptionType (line 12667) | class StyleOptionType: method __init__ (line 12672) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12673) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __and__ (line 12674) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __bool__ (line 12675) | def __bool__(self) -> bool: ... method __eq__ (line 12676) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12677) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12678) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12679) | def __hash__(self) -> int: ... method __index__ (line 12680) | def __index__(self) -> int: ... method __int__ (line 12681) | def __int__(self) -> int: ... method __le__ (line 12682) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12683) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12684) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __ne__ (line 12685) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12686) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionHeader.St... method __pos__ (line 12687) | def __pos__(self): ... method __radd__ (line 12688) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rand__ (line 12689) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rmul__ (line 12690) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __ror__ (line 12691) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __rsub__ (line 12692) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rxor__ (line 12693) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __sub__ (line 12694) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __xor__ (line 12695) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... class StyleOptionVersion (line 12697) | class StyleOptionVersion: method __init__ (line 12702) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12703) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __and__ (line 12704) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __bool__ (line 12705) | def __bool__(self) -> bool: ... method __eq__ (line 12706) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12707) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12708) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12709) | def __hash__(self) -> int: ... method __index__ (line 12710) | def __index__(self) -> int: ... method __int__ (line 12711) | def __int__(self) -> int: ... method __le__ (line 12712) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12713) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12714) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __ne__ (line 12715) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12716) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionHeader.St... method __pos__ (line 12717) | def __pos__(self): ... method __radd__ (line 12718) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rand__ (line 12719) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rmul__ (line 12720) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __ror__ (line 12721) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __rsub__ (line 12722) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __rxor__ (line 12723) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.... method __sub__ (line 12724) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __xor__ (line 12725) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionHeader.S... method __init__ (line 12749) | def __init__(self, version: int) -> None: ... method __init__ (line 12751) | def __init__(self, other: QStyleOptionHeader) -> None: ... method __init__ (line 12753) | def __init__(self) -> None: ... class QStyleOptionMenuItem (line 12755) | class QStyleOptionMenuItem(QStyleOption): class CheckType (line 12756) | class CheckType: method __init__ (line 12763) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12764) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __and__ (line 12765) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __bool__ (line 12766) | def __bool__(self) -> bool: ... method __eq__ (line 12767) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12768) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12769) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12770) | def __hash__(self) -> int: ... method __index__ (line 12771) | def __index__(self) -> int: ... method __int__ (line 12772) | def __int__(self) -> int: ... method __le__ (line 12773) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12774) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12775) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __ne__ (line 12776) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12777) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem.... method __pos__ (line 12778) | def __pos__(self): ... method __radd__ (line 12779) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rand__ (line 12780) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rmul__ (line 12781) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __ror__ (line 12782) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __rsub__ (line 12783) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rxor__ (line 12784) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __sub__ (line 12785) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __xor__ (line 12786) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... class MenuItemType (line 12788) | class MenuItemType: method __init__ (line 12800) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12801) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __and__ (line 12802) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __bool__ (line 12803) | def __bool__(self) -> bool: ... method __eq__ (line 12804) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12805) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12806) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12807) | def __hash__(self) -> int: ... method __index__ (line 12808) | def __index__(self) -> int: ... method __int__ (line 12809) | def __int__(self) -> int: ... method __le__ (line 12810) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12811) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12812) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __ne__ (line 12813) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12814) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem.... method __pos__ (line 12815) | def __pos__(self): ... method __radd__ (line 12816) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rand__ (line 12817) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rmul__ (line 12818) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __ror__ (line 12819) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __rsub__ (line 12820) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rxor__ (line 12821) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __sub__ (line 12822) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __xor__ (line 12823) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... class StyleOptionType (line 12825) | class StyleOptionType: method __init__ (line 12830) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12831) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __and__ (line 12832) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __bool__ (line 12833) | def __bool__(self) -> bool: ... method __eq__ (line 12834) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12835) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12836) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12837) | def __hash__(self) -> int: ... method __index__ (line 12838) | def __index__(self) -> int: ... method __int__ (line 12839) | def __int__(self) -> int: ... method __le__ (line 12840) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12841) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12842) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __ne__ (line 12843) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12844) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem.... method __pos__ (line 12845) | def __pos__(self): ... method __radd__ (line 12846) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rand__ (line 12847) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rmul__ (line 12848) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __ror__ (line 12849) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __rsub__ (line 12850) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rxor__ (line 12851) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __sub__ (line 12852) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __xor__ (line 12853) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... class StyleOptionVersion (line 12855) | class StyleOptionVersion: method __init__ (line 12860) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12861) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __and__ (line 12862) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __bool__ (line 12863) | def __bool__(self) -> bool: ... method __eq__ (line 12864) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12865) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12866) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12867) | def __hash__(self) -> int: ... method __index__ (line 12868) | def __index__(self) -> int: ... method __int__ (line 12869) | def __int__(self) -> int: ... method __le__ (line 12870) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12871) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12872) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __ne__ (line 12873) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12874) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem.... method __pos__ (line 12875) | def __pos__(self): ... method __radd__ (line 12876) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rand__ (line 12877) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rmul__ (line 12878) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __ror__ (line 12879) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __rsub__ (line 12880) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __rxor__ (line 12881) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionMenuIte... method __sub__ (line 12882) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __xor__ (line 12883) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionMenuItem... method __init__ (line 12908) | def __init__(self, version: int) -> None: ... method __init__ (line 12910) | def __init__(self, other: QStyleOptionMenuItem) -> None: ... method __init__ (line 12912) | def __init__(self) -> None: ... class QStyleOptionProgressBar (line 12914) | class QStyleOptionProgressBar(QStyleOption): class StyleOptionType (line 12915) | class StyleOptionType: method __init__ (line 12920) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12921) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __and__ (line 12922) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __bool__ (line 12923) | def __bool__(self) -> bool: ... method __eq__ (line 12924) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12925) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12926) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12927) | def __hash__(self) -> int: ... method __index__ (line 12928) | def __index__(self) -> int: ... method __int__ (line 12929) | def __int__(self) -> int: ... method __le__ (line 12930) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12931) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12932) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __ne__ (line 12933) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12934) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionProgressB... method __pos__ (line 12935) | def __pos__(self): ... method __radd__ (line 12936) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __rand__ (line 12937) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __rmul__ (line 12938) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __ror__ (line 12939) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __rsub__ (line 12940) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __rxor__ (line 12941) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __sub__ (line 12942) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __xor__ (line 12943) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionProgress... class StyleOptionVersion (line 12945) | class StyleOptionVersion: method __init__ (line 12950) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12951) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __and__ (line 12952) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __bool__ (line 12953) | def __bool__(self) -> bool: ... method __eq__ (line 12954) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 12955) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 12956) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 12957) | def __hash__(self) -> int: ... method __index__ (line 12958) | def __index__(self) -> int: ... method __int__ (line 12959) | def __int__(self) -> int: ... method __le__ (line 12960) | def __le__(self, other: object) -> bool: ... method __lt__ (line 12961) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 12962) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __ne__ (line 12963) | def __ne__(self, other: object) -> bool: ... method __or__ (line 12964) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionProgressB... method __pos__ (line 12965) | def __pos__(self): ... method __radd__ (line 12966) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __rand__ (line 12967) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __rmul__ (line 12968) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __ror__ (line 12969) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __rsub__ (line 12970) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __rxor__ (line 12971) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionProgres... method __sub__ (line 12972) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __xor__ (line 12973) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionProgress... method __init__ (line 12986) | def __init__(self, version: int) -> None: ... method __init__ (line 12988) | def __init__(self, other: QStyleOptionProgressBar) -> None: ... method __init__ (line 12990) | def __init__(self) -> None: ... class QStyleOptionRubberBand (line 12992) | class QStyleOptionRubberBand(QStyleOption): class StyleOptionType (line 12993) | class StyleOptionType: method __init__ (line 12998) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 12999) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __and__ (line 13000) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __bool__ (line 13001) | def __bool__(self) -> bool: ... method __eq__ (line 13002) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13003) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13004) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13005) | def __hash__(self) -> int: ... method __index__ (line 13006) | def __index__(self) -> int: ... method __int__ (line 13007) | def __int__(self) -> int: ... method __le__ (line 13008) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13009) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13010) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __ne__ (line 13011) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13012) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionRubberBan... method __pos__ (line 13013) | def __pos__(self): ... method __radd__ (line 13014) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __rand__ (line 13015) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __rmul__ (line 13016) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __ror__ (line 13017) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __rsub__ (line 13018) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __rxor__ (line 13019) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __sub__ (line 13020) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __xor__ (line 13021) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... class StyleOptionVersion (line 13023) | class StyleOptionVersion: method __init__ (line 13028) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13029) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __and__ (line 13030) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __bool__ (line 13031) | def __bool__(self) -> bool: ... method __eq__ (line 13032) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13033) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13034) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13035) | def __hash__(self) -> int: ... method __index__ (line 13036) | def __index__(self) -> int: ... method __int__ (line 13037) | def __int__(self) -> int: ... method __le__ (line 13038) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13039) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13040) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __ne__ (line 13041) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13042) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionRubberBan... method __pos__ (line 13043) | def __pos__(self): ... method __radd__ (line 13044) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __rand__ (line 13045) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __rmul__ (line 13046) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __ror__ (line 13047) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __rsub__ (line 13048) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __rxor__ (line 13049) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionRubberB... method __sub__ (line 13050) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __xor__ (line 13051) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionRubberBa... method __init__ (line 13057) | def __init__(self, version: int) -> None: ... method __init__ (line 13059) | def __init__(self, other: QStyleOptionRubberBand) -> None: ... method __init__ (line 13061) | def __init__(self) -> None: ... class QStyleOptionSizeGrip (line 13063) | class QStyleOptionSizeGrip(QStyleOptionComplex): class StyleOptionType (line 13064) | class StyleOptionType: method __init__ (line 13069) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13070) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __and__ (line 13071) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __bool__ (line 13072) | def __bool__(self) -> bool: ... method __eq__ (line 13073) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13074) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13075) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13076) | def __hash__(self) -> int: ... method __index__ (line 13077) | def __index__(self) -> int: ... method __int__ (line 13078) | def __int__(self) -> int: ... method __le__ (line 13079) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13080) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13081) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __ne__ (line 13082) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13083) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip.... method __pos__ (line 13084) | def __pos__(self): ... method __radd__ (line 13085) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __rand__ (line 13086) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __rmul__ (line 13087) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __ror__ (line 13088) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __rsub__ (line 13089) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __rxor__ (line 13090) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __sub__ (line 13091) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __xor__ (line 13092) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... class StyleOptionVersion (line 13094) | class StyleOptionVersion: method __init__ (line 13099) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13100) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __and__ (line 13101) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __bool__ (line 13102) | def __bool__(self) -> bool: ... method __eq__ (line 13103) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13104) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13105) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13106) | def __hash__(self) -> int: ... method __index__ (line 13107) | def __index__(self) -> int: ... method __int__ (line 13108) | def __int__(self) -> int: ... method __le__ (line 13109) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13110) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13111) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __ne__ (line 13112) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13113) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip.... method __pos__ (line 13114) | def __pos__(self): ... method __radd__ (line 13115) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __rand__ (line 13116) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __rmul__ (line 13117) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __ror__ (line 13118) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __rsub__ (line 13119) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __rxor__ (line 13120) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionSizeGri... method __sub__ (line 13121) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __xor__ (line 13122) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionSizeGrip... method __init__ (line 13127) | def __init__(self, version: int) -> None: ... method __init__ (line 13129) | def __init__(self, other: QStyleOptionSizeGrip) -> None: ... method __init__ (line 13131) | def __init__(self) -> None: ... class QStyleOptionSlider (line 13133) | class QStyleOptionSlider(QStyleOptionComplex): class StyleOptionType (line 13134) | class StyleOptionType: method __init__ (line 13139) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13140) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __and__ (line 13141) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __bool__ (line 13142) | def __bool__(self) -> bool: ... method __eq__ (line 13143) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13144) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13145) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13146) | def __hash__(self) -> int: ... method __index__ (line 13147) | def __index__(self) -> int: ... method __int__ (line 13148) | def __int__(self) -> int: ... method __le__ (line 13149) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13150) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13151) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __ne__ (line 13152) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13153) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionSlider.St... method __pos__ (line 13154) | def __pos__(self): ... method __radd__ (line 13155) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __rand__ (line 13156) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __rmul__ (line 13157) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __ror__ (line 13158) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __rsub__ (line 13159) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __rxor__ (line 13160) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __sub__ (line 13161) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __xor__ (line 13162) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... class StyleOptionVersion (line 13164) | class StyleOptionVersion: method __init__ (line 13169) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13170) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __and__ (line 13171) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __bool__ (line 13172) | def __bool__(self) -> bool: ... method __eq__ (line 13173) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13174) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13175) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13176) | def __hash__(self) -> int: ... method __index__ (line 13177) | def __index__(self) -> int: ... method __int__ (line 13178) | def __int__(self) -> int: ... method __le__ (line 13179) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13180) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13181) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __ne__ (line 13182) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13183) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionSlider.St... method __pos__ (line 13184) | def __pos__(self): ... method __radd__ (line 13185) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __rand__ (line 13186) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __rmul__ (line 13187) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __ror__ (line 13188) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __rsub__ (line 13189) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __rxor__ (line 13190) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionSlider.... method __sub__ (line 13191) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __xor__ (line 13192) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionSlider.S... method __init__ (line 13208) | def __init__(self, version: int) -> None: ... method __init__ (line 13210) | def __init__(self, other: QStyleOptionSlider) -> None: ... method __init__ (line 13212) | def __init__(self) -> None: ... class QStyleOptionSpinBox (line 13214) | class QStyleOptionSpinBox(QStyleOptionComplex): class StyleOptionType (line 13215) | class StyleOptionType: method __init__ (line 13220) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13221) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __and__ (line 13222) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __bool__ (line 13223) | def __bool__(self) -> bool: ... method __eq__ (line 13224) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13225) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13226) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13227) | def __hash__(self) -> int: ... method __index__ (line 13228) | def __index__(self) -> int: ... method __int__ (line 13229) | def __int__(self) -> int: ... method __le__ (line 13230) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13231) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13232) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __ne__ (line 13233) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13234) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.S... method __pos__ (line 13235) | def __pos__(self): ... method __radd__ (line 13236) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __rand__ (line 13237) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __rmul__ (line 13238) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __ror__ (line 13239) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __rsub__ (line 13240) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __rxor__ (line 13241) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __sub__ (line 13242) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __xor__ (line 13243) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... class StyleOptionVersion (line 13245) | class StyleOptionVersion: method __init__ (line 13250) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13251) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __and__ (line 13252) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __bool__ (line 13253) | def __bool__(self) -> bool: ... method __eq__ (line 13254) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13255) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13256) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13257) | def __hash__(self) -> int: ... method __index__ (line 13258) | def __index__(self) -> int: ... method __int__ (line 13259) | def __int__(self) -> int: ... method __le__ (line 13260) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13261) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13262) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __ne__ (line 13263) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13264) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.S... method __pos__ (line 13265) | def __pos__(self): ... method __radd__ (line 13266) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __rand__ (line 13267) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __rmul__ (line 13268) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __ror__ (line 13269) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __rsub__ (line 13270) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __rxor__ (line 13271) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox... method __sub__ (line 13272) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __xor__ (line 13273) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionSpinBox.... method __init__ (line 13280) | def __init__(self, version: int) -> None: ... method __init__ (line 13282) | def __init__(self, other: QStyleOptionSpinBox) -> None: ... method __init__ (line 13284) | def __init__(self) -> None: ... class QStyleOptionTab (line 13286) | class QStyleOptionTab(QStyleOption): class CornerWidget (line 13287) | class CornerWidget: method __init__ (line 13294) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13295) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corn... method __bool__ (line 13296) | def __bool__(self) -> bool: ... method __eq__ (line 13297) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13298) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13299) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13300) | def __hash__(self) -> int: ... method __index__ (line 13301) | def __index__(self) -> int: ... method __int__ (line 13302) | def __int__(self) -> int: ... method __invert__ (line 13303) | def __invert__(self) -> QStyleOptionTab.CornerWidgets: ... method __le__ (line 13304) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13305) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13306) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13307) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corne... method __rand__ (line 13308) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Cor... method __ror__ (line 13309) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corn... method __rxor__ (line 13310) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Cor... method __xor__ (line 13311) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corn... class CornerWidgets (line 13313) | class CornerWidgets: method __init__ (line 13315) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13316) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corn... method __bool__ (line 13317) | def __bool__(self) -> bool: ... method __eq__ (line 13318) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13319) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13320) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13321) | def __index__(self) -> int: ... method __int__ (line 13322) | def __int__(self) -> int: ... method __invert__ (line 13323) | def __invert__(self) -> QStyleOptionTab.CornerWidgets: ... method __le__ (line 13324) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13325) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13326) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13327) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corne... method __rand__ (line 13328) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Cor... method __ror__ (line 13329) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corn... method __rxor__ (line 13330) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Cor... method __xor__ (line 13331) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Corn... class SelectedPosition (line 13333) | class SelectedPosition: method __init__ (line 13340) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13341) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sele... method __and__ (line 13342) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sele... method __bool__ (line 13343) | def __bool__(self) -> bool: ... method __eq__ (line 13344) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13345) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13346) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13347) | def __hash__(self) -> int: ... method __index__ (line 13348) | def __index__(self) -> int: ... method __int__ (line 13349) | def __int__(self) -> int: ... method __le__ (line 13350) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13351) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13352) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sele... method __ne__ (line 13353) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13354) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.Selec... method __pos__ (line 13355) | def __pos__(self): ... method __radd__ (line 13356) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sel... method __rand__ (line 13357) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sel... method __rmul__ (line 13358) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sel... method __ror__ (line 13359) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sele... method __rsub__ (line 13360) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sel... method __rxor__ (line 13361) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sel... method __sub__ (line 13362) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sele... method __xor__ (line 13363) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sele... class StyleOptionType (line 13365) | class StyleOptionType: method __init__ (line 13370) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13371) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __and__ (line 13372) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __bool__ (line 13373) | def __bool__(self) -> bool: ... method __eq__ (line 13374) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13375) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13376) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13377) | def __hash__(self) -> int: ... method __index__ (line 13378) | def __index__(self) -> int: ... method __int__ (line 13379) | def __int__(self) -> int: ... method __le__ (line 13380) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13381) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13382) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __ne__ (line 13383) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13384) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.Style... method __pos__ (line 13385) | def __pos__(self): ... method __radd__ (line 13386) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __rand__ (line 13387) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __rmul__ (line 13388) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __ror__ (line 13389) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __rsub__ (line 13390) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __rxor__ (line 13391) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __sub__ (line 13392) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __xor__ (line 13393) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... class StyleOptionVersion (line 13395) | class StyleOptionVersion: method __init__ (line 13400) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13401) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __and__ (line 13402) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __bool__ (line 13403) | def __bool__(self) -> bool: ... method __eq__ (line 13404) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13405) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13406) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13407) | def __hash__(self) -> int: ... method __index__ (line 13408) | def __index__(self) -> int: ... method __int__ (line 13409) | def __int__(self) -> int: ... method __le__ (line 13410) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13411) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13412) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __ne__ (line 13413) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13414) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.Style... method __pos__ (line 13415) | def __pos__(self): ... method __radd__ (line 13416) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __rand__ (line 13417) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __rmul__ (line 13418) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __ror__ (line 13419) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __rsub__ (line 13420) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __rxor__ (line 13421) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Sty... method __sub__ (line 13422) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... method __xor__ (line 13423) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Styl... class TabFeature (line 13425) | class TabFeature: method __init__ (line 13431) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13432) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabF... method __bool__ (line 13433) | def __bool__(self) -> bool: ... method __eq__ (line 13434) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13435) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13436) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13437) | def __hash__(self) -> int: ... method __index__ (line 13438) | def __index__(self) -> int: ... method __int__ (line 13439) | def __int__(self) -> int: ... method __invert__ (line 13440) | def __invert__(self) -> QStyleOptionTab.TabFeatures: ... method __le__ (line 13441) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13442) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13443) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13444) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabFe... method __rand__ (line 13445) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __ror__ (line 13446) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabF... method __rxor__ (line 13447) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __xor__ (line 13448) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabF... class TabFeatures (line 13450) | class TabFeatures: method __init__ (line 13452) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13453) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabF... method __bool__ (line 13454) | def __bool__(self) -> bool: ... method __eq__ (line 13455) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13456) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13457) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13458) | def __index__(self) -> int: ... method __int__ (line 13459) | def __int__(self) -> int: ... method __invert__ (line 13460) | def __invert__(self) -> QStyleOptionTab.TabFeatures: ... method __le__ (line 13461) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13462) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13463) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13464) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabFe... method __rand__ (line 13465) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __ror__ (line 13466) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabF... method __rxor__ (line 13467) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __xor__ (line 13468) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabF... class TabPosition (line 13470) | class TabPosition: method __init__ (line 13478) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13479) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabP... method __and__ (line 13480) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabP... method __bool__ (line 13481) | def __bool__(self) -> bool: ... method __eq__ (line 13482) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13483) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13484) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13485) | def __hash__(self) -> int: ... method __index__ (line 13486) | def __index__(self) -> int: ... method __int__ (line 13487) | def __int__(self) -> int: ... method __le__ (line 13488) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13489) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13490) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabP... method __ne__ (line 13491) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13492) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabPo... method __pos__ (line 13493) | def __pos__(self): ... method __radd__ (line 13494) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __rand__ (line 13495) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __rmul__ (line 13496) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __ror__ (line 13497) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabP... method __rsub__ (line 13498) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __rxor__ (line 13499) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTab.Tab... method __sub__ (line 13500) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabP... method __xor__ (line 13501) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTab.TabP... method __init__ (line 13529) | def __init__(self, version: int) -> None: ... method __init__ (line 13531) | def __init__(self, other: QStyleOptionTab) -> None: ... method __init__ (line 13533) | def __init__(self) -> None: ... class QStyleOptionTabBarBase (line 13535) | class QStyleOptionTabBarBase(QStyleOption): class StyleOptionType (line 13536) | class StyleOptionType: method __init__ (line 13541) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13542) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __and__ (line 13543) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __bool__ (line 13544) | def __bool__(self) -> bool: ... method __eq__ (line 13545) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13546) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13547) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13548) | def __hash__(self) -> int: ... method __index__ (line 13549) | def __index__(self) -> int: ... method __int__ (line 13550) | def __int__(self) -> int: ... method __le__ (line 13551) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13552) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13553) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __ne__ (line 13554) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13555) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBas... method __pos__ (line 13556) | def __pos__(self): ... method __radd__ (line 13557) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __rand__ (line 13558) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __rmul__ (line 13559) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __ror__ (line 13560) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __rsub__ (line 13561) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __rxor__ (line 13562) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __sub__ (line 13563) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __xor__ (line 13564) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... class StyleOptionVersion (line 13566) | class StyleOptionVersion: method __init__ (line 13571) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13572) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __and__ (line 13573) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __bool__ (line 13574) | def __bool__(self) -> bool: ... method __eq__ (line 13575) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13576) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13577) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13578) | def __hash__(self) -> int: ... method __index__ (line 13579) | def __index__(self) -> int: ... method __int__ (line 13580) | def __int__(self) -> int: ... method __le__ (line 13581) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13582) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13583) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __ne__ (line 13584) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13585) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBas... method __pos__ (line 13586) | def __pos__(self): ... method __radd__ (line 13587) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __rand__ (line 13588) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __rmul__ (line 13589) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __ror__ (line 13590) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __rsub__ (line 13591) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __rxor__ (line 13592) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTabBarB... method __sub__ (line 13593) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __xor__ (line 13594) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTabBarBa... method __init__ (line 13602) | def __init__(self, version: int) -> None: ... method __init__ (line 13604) | def __init__(self, other: QStyleOptionTabBarBase) -> None: ... method __init__ (line 13606) | def __init__(self) -> None: ... class QStyleOptionTabWidgetFrame (line 13608) | class QStyleOptionTabWidgetFrame(QStyleOption): class StyleOptionType (line 13609) | class StyleOptionType: method __init__ (line 13614) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13615) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __and__ (line 13616) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __bool__ (line 13617) | def __bool__(self) -> bool: ... method __eq__ (line 13618) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13619) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13620) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13621) | def __hash__(self) -> int: ... method __index__ (line 13622) | def __index__(self) -> int: ... method __int__ (line 13623) | def __int__(self) -> int: ... method __le__ (line 13624) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13625) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13626) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __ne__ (line 13627) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13628) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTabWidget... method __pos__ (line 13629) | def __pos__(self): ... method __radd__ (line 13630) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __rand__ (line 13631) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __rmul__ (line 13632) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __ror__ (line 13633) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __rsub__ (line 13634) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __rxor__ (line 13635) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __sub__ (line 13636) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __xor__ (line 13637) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... class StyleOptionVersion (line 13639) | class StyleOptionVersion: method __init__ (line 13644) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13645) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __and__ (line 13646) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __bool__ (line 13647) | def __bool__(self) -> bool: ... method __eq__ (line 13648) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13649) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13650) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13651) | def __hash__(self) -> int: ... method __index__ (line 13652) | def __index__(self) -> int: ... method __int__ (line 13653) | def __int__(self) -> int: ... method __le__ (line 13654) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13655) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13656) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __ne__ (line 13657) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13658) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTabWidget... method __pos__ (line 13659) | def __pos__(self): ... method __radd__ (line 13660) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __rand__ (line 13661) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __rmul__ (line 13662) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __ror__ (line 13663) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __rsub__ (line 13664) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __rxor__ (line 13665) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTabWidg... method __sub__ (line 13666) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __xor__ (line 13667) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTabWidge... method __init__ (line 13679) | def __init__(self, version: int) -> None: ... method __init__ (line 13681) | def __init__(self, other: QStyleOptionTabWidgetFrame) -> None: ... method __init__ (line 13683) | def __init__(self) -> None: ... class QStyleOptionTitleBar (line 13685) | class QStyleOptionTitleBar(QStyleOptionComplex): class StyleOptionType (line 13686) | class StyleOptionType: method __init__ (line 13691) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13692) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __and__ (line 13693) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __bool__ (line 13694) | def __bool__(self) -> bool: ... method __eq__ (line 13695) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13696) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13697) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13698) | def __hash__(self) -> int: ... method __index__ (line 13699) | def __index__(self) -> int: ... method __int__ (line 13700) | def __int__(self) -> int: ... method __le__ (line 13701) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13702) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13703) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __ne__ (line 13704) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13705) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar.... method __pos__ (line 13706) | def __pos__(self): ... method __radd__ (line 13707) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __rand__ (line 13708) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __rmul__ (line 13709) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __ror__ (line 13710) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __rsub__ (line 13711) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __rxor__ (line 13712) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __sub__ (line 13713) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __xor__ (line 13714) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... class StyleOptionVersion (line 13716) | class StyleOptionVersion: method __init__ (line 13721) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13722) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __and__ (line 13723) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __bool__ (line 13724) | def __bool__(self) -> bool: ... method __eq__ (line 13725) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13726) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13727) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13728) | def __hash__(self) -> int: ... method __index__ (line 13729) | def __index__(self) -> int: ... method __int__ (line 13730) | def __int__(self) -> int: ... method __le__ (line 13731) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13732) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13733) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __ne__ (line 13734) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13735) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar.... method __pos__ (line 13736) | def __pos__(self): ... method __radd__ (line 13737) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __rand__ (line 13738) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __rmul__ (line 13739) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __ror__ (line 13740) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __rsub__ (line 13741) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __rxor__ (line 13742) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionTitleBa... method __sub__ (line 13743) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __xor__ (line 13744) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionTitleBar... method __init__ (line 13752) | def __init__(self, version: int) -> None: ... method __init__ (line 13754) | def __init__(self, other: QStyleOptionTitleBar) -> None: ... method __init__ (line 13756) | def __init__(self) -> None: ... class QStyleOptionToolBar (line 13758) | class QStyleOptionToolBar(QStyleOption): class StyleOptionType (line 13759) | class StyleOptionType: method __init__ (line 13764) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13765) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __and__ (line 13766) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __bool__ (line 13767) | def __bool__(self) -> bool: ... method __eq__ (line 13768) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13769) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13770) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13771) | def __hash__(self) -> int: ... method __index__ (line 13772) | def __index__(self) -> int: ... method __int__ (line 13773) | def __int__(self) -> int: ... method __le__ (line 13774) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13775) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13776) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __ne__ (line 13777) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13778) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.S... method __pos__ (line 13779) | def __pos__(self): ... method __radd__ (line 13780) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rand__ (line 13781) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rmul__ (line 13782) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __ror__ (line 13783) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __rsub__ (line 13784) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rxor__ (line 13785) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __sub__ (line 13786) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __xor__ (line 13787) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... class StyleOptionVersion (line 13789) | class StyleOptionVersion: method __init__ (line 13794) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13795) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __and__ (line 13796) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __bool__ (line 13797) | def __bool__(self) -> bool: ... method __eq__ (line 13798) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13799) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13800) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13801) | def __hash__(self) -> int: ... method __index__ (line 13802) | def __index__(self) -> int: ... method __int__ (line 13803) | def __int__(self) -> int: ... method __le__ (line 13804) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13805) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13806) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __ne__ (line 13807) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13808) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.S... method __pos__ (line 13809) | def __pos__(self): ... method __radd__ (line 13810) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rand__ (line 13811) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rmul__ (line 13812) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __ror__ (line 13813) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __rsub__ (line 13814) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rxor__ (line 13815) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __sub__ (line 13816) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __xor__ (line 13817) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... class ToolBarFeature (line 13819) | class ToolBarFeature: method __init__ (line 13825) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13826) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __bool__ (line 13827) | def __bool__(self) -> bool: ... method __eq__ (line 13828) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13829) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13830) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13831) | def __hash__(self) -> int: ... method __index__ (line 13832) | def __index__(self) -> int: ... method __int__ (line 13833) | def __int__(self) -> int: ... method __invert__ (line 13834) | def __invert__(self) -> QStyleOptionToolBar.ToolBarFeatures: ... method __le__ (line 13835) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13836) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13837) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13838) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.T... method __rand__ (line 13839) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __ror__ (line 13840) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __rxor__ (line 13841) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __xor__ (line 13842) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... class ToolBarFeatures (line 13844) | class ToolBarFeatures: method __init__ (line 13846) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 13847) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __bool__ (line 13848) | def __bool__(self) -> bool: ... method __eq__ (line 13849) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13850) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13851) | def __gt__(self, other: object) -> bool: ... method __index__ (line 13852) | def __index__(self) -> int: ... method __int__ (line 13853) | def __int__(self) -> int: ... method __invert__ (line 13854) | def __invert__(self) -> QStyleOptionToolBar.ToolBarFeatures: ... method __le__ (line 13855) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13856) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13857) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13858) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.T... method __rand__ (line 13859) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __ror__ (line 13860) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __rxor__ (line 13861) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __xor__ (line 13862) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... class ToolBarPosition (line 13864) | class ToolBarPosition: method __init__ (line 13872) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13873) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __and__ (line 13874) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __bool__ (line 13875) | def __bool__(self) -> bool: ... method __eq__ (line 13876) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13877) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13878) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13879) | def __hash__(self) -> int: ... method __index__ (line 13880) | def __index__(self) -> int: ... method __int__ (line 13881) | def __int__(self) -> int: ... method __le__ (line 13882) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13883) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13884) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __ne__ (line 13885) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13886) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.T... method __pos__ (line 13887) | def __pos__(self): ... method __radd__ (line 13888) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rand__ (line 13889) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rmul__ (line 13890) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __ror__ (line 13891) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __rsub__ (line 13892) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __rxor__ (line 13893) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar... method __sub__ (line 13894) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __xor__ (line 13895) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBar.... method __init__ (line 13911) | def __init__(self, version: int) -> None: ... method __init__ (line 13913) | def __init__(self, other: QStyleOptionToolBar) -> None: ... method __init__ (line 13915) | def __init__(self) -> None: ... class QStyleOptionToolBox (line 13917) | class QStyleOptionToolBox(QStyleOption): class SelectedPosition (line 13918) | class SelectedPosition: method __init__ (line 13925) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13926) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __and__ (line 13927) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __bool__ (line 13928) | def __bool__(self) -> bool: ... method __eq__ (line 13929) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13930) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13931) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13932) | def __hash__(self) -> int: ... method __index__ (line 13933) | def __index__(self) -> int: ... method __int__ (line 13934) | def __int__(self) -> int: ... method __le__ (line 13935) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13936) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13937) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __ne__ (line 13938) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13939) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.S... method __pos__ (line 13940) | def __pos__(self): ... method __radd__ (line 13941) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rand__ (line 13942) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rmul__ (line 13943) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __ror__ (line 13944) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __rsub__ (line 13945) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rxor__ (line 13946) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __sub__ (line 13947) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __xor__ (line 13948) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... class StyleOptionType (line 13950) | class StyleOptionType: method __init__ (line 13955) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13956) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __and__ (line 13957) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __bool__ (line 13958) | def __bool__(self) -> bool: ... method __eq__ (line 13959) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13960) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13961) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13962) | def __hash__(self) -> int: ... method __index__ (line 13963) | def __index__(self) -> int: ... method __int__ (line 13964) | def __int__(self) -> int: ... method __le__ (line 13965) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13966) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13967) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __ne__ (line 13968) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13969) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.S... method __pos__ (line 13970) | def __pos__(self): ... method __radd__ (line 13971) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rand__ (line 13972) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rmul__ (line 13973) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __ror__ (line 13974) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __rsub__ (line 13975) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rxor__ (line 13976) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __sub__ (line 13977) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __xor__ (line 13978) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... class StyleOptionVersion (line 13980) | class StyleOptionVersion: method __init__ (line 13985) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 13986) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __and__ (line 13987) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __bool__ (line 13988) | def __bool__(self) -> bool: ... method __eq__ (line 13989) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13990) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13991) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13992) | def __hash__(self) -> int: ... method __index__ (line 13993) | def __index__(self) -> int: ... method __int__ (line 13994) | def __int__(self) -> int: ... method __le__ (line 13995) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13996) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 13997) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __ne__ (line 13998) | def __ne__(self, other: object) -> bool: ... method __or__ (line 13999) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.S... method __pos__ (line 14000) | def __pos__(self): ... method __radd__ (line 14001) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rand__ (line 14002) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rmul__ (line 14003) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __ror__ (line 14004) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __rsub__ (line 14005) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rxor__ (line 14006) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __sub__ (line 14007) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __xor__ (line 14008) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... class TabPosition (line 14010) | class TabPosition: method __init__ (line 14018) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14019) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __and__ (line 14020) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __bool__ (line 14021) | def __bool__(self) -> bool: ... method __eq__ (line 14022) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14023) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14024) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14025) | def __hash__(self) -> int: ... method __index__ (line 14026) | def __index__(self) -> int: ... method __int__ (line 14027) | def __int__(self) -> int: ... method __le__ (line 14028) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14029) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14030) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __ne__ (line 14031) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14032) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.T... method __pos__ (line 14033) | def __pos__(self): ... method __radd__ (line 14034) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rand__ (line 14035) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rmul__ (line 14036) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __ror__ (line 14037) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __rsub__ (line 14038) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __rxor__ (line 14039) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox... method __sub__ (line 14040) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __xor__ (line 14041) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolBox.... method __init__ (line 14056) | def __init__(self, version: int) -> None: ... method __init__ (line 14058) | def __init__(self, other: QStyleOptionToolBox) -> None: ... method __init__ (line 14060) | def __init__(self) -> None: ... class QStyleOptionToolButton (line 14062) | class QStyleOptionToolButton(QStyleOptionComplex): class StyleOptionType (line 14063) | class StyleOptionType: method __init__ (line 14068) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14069) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __and__ (line 14070) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __bool__ (line 14071) | def __bool__(self) -> bool: ... method __eq__ (line 14072) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14073) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14074) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14075) | def __hash__(self) -> int: ... method __index__ (line 14076) | def __index__(self) -> int: ... method __int__ (line 14077) | def __int__(self) -> int: ... method __le__ (line 14078) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14079) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14080) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __ne__ (line 14081) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14082) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolButto... method __pos__ (line 14083) | def __pos__(self): ... method __radd__ (line 14084) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __rand__ (line 14085) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __rmul__ (line 14086) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __ror__ (line 14087) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __rsub__ (line 14088) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __rxor__ (line 14089) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __sub__ (line 14090) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __xor__ (line 14091) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... class StyleOptionVersion (line 14093) | class StyleOptionVersion: method __init__ (line 14098) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14099) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __and__ (line 14100) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __bool__ (line 14101) | def __bool__(self) -> bool: ... method __eq__ (line 14102) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14103) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14104) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14105) | def __hash__(self) -> int: ... method __index__ (line 14106) | def __index__(self) -> int: ... method __int__ (line 14107) | def __int__(self) -> int: ... method __le__ (line 14108) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14109) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14110) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __ne__ (line 14111) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14112) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolButto... method __pos__ (line 14113) | def __pos__(self): ... method __radd__ (line 14114) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __rand__ (line 14115) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __rmul__ (line 14116) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __ror__ (line 14117) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __rsub__ (line 14118) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __rxor__ (line 14119) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __sub__ (line 14120) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __xor__ (line 14121) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... class ToolButtonFeature (line 14123) | class ToolButtonFeature: method __init__ (line 14133) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14134) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __bool__ (line 14135) | def __bool__(self) -> bool: ... method __eq__ (line 14136) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14137) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14138) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14139) | def __hash__(self) -> int: ... method __index__ (line 14140) | def __index__(self) -> int: ... method __int__ (line 14141) | def __int__(self) -> int: ... method __invert__ (line 14142) | def __invert__(self) -> QStyleOptionToolButton.ToolButtonFeatures: ... method __le__ (line 14143) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14144) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14145) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14146) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolButto... method __rand__ (line 14147) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __ror__ (line 14148) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __rxor__ (line 14149) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __xor__ (line 14150) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... class ToolButtonFeatures (line 14152) | class ToolButtonFeatures: method __init__ (line 14154) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14155) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __bool__ (line 14156) | def __bool__(self) -> bool: ... method __eq__ (line 14157) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14158) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14159) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14160) | def __index__(self) -> int: ... method __int__ (line 14161) | def __int__(self) -> int: ... method __invert__ (line 14162) | def __invert__(self) -> QStyleOptionToolButton.ToolButtonFeatures: ... method __le__ (line 14163) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14164) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14165) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14166) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionToolButto... method __rand__ (line 14167) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __ror__ (line 14168) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __rxor__ (line 14169) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionToolBut... method __xor__ (line 14170) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionToolButt... method __init__ (line 14188) | def __init__(self, version: int) -> None: ... method __init__ (line 14190) | def __init__(self, other: QStyleOptionToolButton) -> None: ... method __init__ (line 14192) | def __init__(self) -> None: ... class QStyleOptionViewItem (line 14194) | class QStyleOptionViewItem(QStyleOption): class Position (line 14195) | class Position: method __init__ (line 14203) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14204) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __and__ (line 14205) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __bool__ (line 14206) | def __bool__(self) -> bool: ... method __eq__ (line 14207) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14208) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14209) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14210) | def __hash__(self) -> int: ... method __index__ (line 14211) | def __index__(self) -> int: ... method __int__ (line 14212) | def __int__(self) -> int: ... method __le__ (line 14213) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14214) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14215) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __ne__ (line 14216) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14217) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionViewItem.... method __pos__ (line 14218) | def __pos__(self): ... method __radd__ (line 14219) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rand__ (line 14220) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rmul__ (line 14221) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __ror__ (line 14222) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __rsub__ (line 14223) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rxor__ (line 14224) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __sub__ (line 14225) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __xor__ (line 14226) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... class StyleOptionType (line 14228) | class StyleOptionType: method __init__ (line 14233) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14234) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __and__ (line 14235) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __bool__ (line 14236) | def __bool__(self) -> bool: ... method __eq__ (line 14237) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14238) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14239) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14240) | def __hash__(self) -> int: ... method __index__ (line 14241) | def __index__(self) -> int: ... method __int__ (line 14242) | def __int__(self) -> int: ... method __le__ (line 14243) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14244) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14245) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __ne__ (line 14246) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14247) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionViewItem.... method __pos__ (line 14248) | def __pos__(self): ... method __radd__ (line 14249) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rand__ (line 14250) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rmul__ (line 14251) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __ror__ (line 14252) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __rsub__ (line 14253) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rxor__ (line 14254) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __sub__ (line 14255) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __xor__ (line 14256) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... class StyleOptionVersion (line 14258) | class StyleOptionVersion: method __init__ (line 14263) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14264) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __and__ (line 14265) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __bool__ (line 14266) | def __bool__(self) -> bool: ... method __eq__ (line 14267) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14268) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14269) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14270) | def __hash__(self) -> int: ... method __index__ (line 14271) | def __index__(self) -> int: ... method __int__ (line 14272) | def __int__(self) -> int: ... method __le__ (line 14273) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14274) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14275) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __ne__ (line 14276) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14277) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionViewItem.... method __pos__ (line 14278) | def __pos__(self): ... method __radd__ (line 14279) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rand__ (line 14280) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rmul__ (line 14281) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __ror__ (line 14282) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __rsub__ (line 14283) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rxor__ (line 14284) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __sub__ (line 14285) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __xor__ (line 14286) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... class ViewItemFeature (line 14288) | class ViewItemFeature: method __init__ (line 14298) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14299) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __bool__ (line 14300) | def __bool__(self) -> bool: ... method __eq__ (line 14301) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14302) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14303) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14304) | def __hash__(self) -> int: ... method __index__ (line 14305) | def __index__(self) -> int: ... method __int__ (line 14306) | def __int__(self) -> int: ... method __invert__ (line 14307) | def __invert__(self) -> QStyleOptionViewItem.ViewItemFeatures: ... method __le__ (line 14308) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14309) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14310) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14311) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionViewItem.... method __rand__ (line 14312) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __ror__ (line 14313) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __rxor__ (line 14314) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __xor__ (line 14315) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... class ViewItemFeatures (line 14317) | class ViewItemFeatures: method __init__ (line 14319) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 14320) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __bool__ (line 14321) | def __bool__(self) -> bool: ... method __eq__ (line 14322) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14323) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14324) | def __gt__(self, other: object) -> bool: ... method __index__ (line 14325) | def __index__(self) -> int: ... method __int__ (line 14326) | def __int__(self) -> int: ... method __invert__ (line 14327) | def __invert__(self) -> QStyleOptionViewItem.ViewItemFeatures: ... method __le__ (line 14328) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14329) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 14330) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14331) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionViewItem.... method __rand__ (line 14332) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __ror__ (line 14333) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __rxor__ (line 14334) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __xor__ (line 14335) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... class ViewItemPosition (line 14337) | class ViewItemPosition: method __init__ (line 14346) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14347) | def __add__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __and__ (line 14348) | def __and__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __bool__ (line 14349) | def __bool__(self) -> bool: ... method __eq__ (line 14350) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14351) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14352) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14353) | def __hash__(self) -> int: ... method __index__ (line 14354) | def __index__(self) -> int: ... method __int__ (line 14355) | def __int__(self) -> int: ... method __le__ (line 14356) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14357) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14358) | def __mul__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __ne__ (line 14359) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14360) | def __or__(self, other: typing.SupportsInt) -> QStyleOptionViewItem.... method __pos__ (line 14361) | def __pos__(self): ... method __radd__ (line 14362) | def __radd__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rand__ (line 14363) | def __rand__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rmul__ (line 14364) | def __rmul__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __ror__ (line 14365) | def __ror__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __rsub__ (line 14366) | def __rsub__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __rxor__ (line 14367) | def __rxor__(self, other: typing.SupportsInt) -> QStyleOptionViewIte... method __sub__ (line 14368) | def __sub__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __xor__ (line 14369) | def __xor__(self, other: typing.SupportsInt) -> QStyleOptionViewItem... method __init__ (line 14404) | def __init__(self, version: int) -> None: ... method __init__ (line 14406) | def __init__(self, other: QStyleOptionViewItem) -> None: ... method __init__ (line 14408) | def __init__(self) -> None: ... method __copy__ (line 14409) | def __copy__(self) -> None: ... class QStylePainter (line 14411) | class QStylePainter(PySide2.QtGui.QPainter): method __init__ (line 14413) | def __init__(self, pd: PySide2.QtGui.QPaintDevice, w: QWidget) -> None... method __init__ (line 14415) | def __init__(self, w: QWidget) -> None: ... method __init__ (line 14417) | def __init__(self) -> None: ... method begin (line 14419) | def begin(self, pd: PySide2.QtGui.QPaintDevice, w: QWidget) -> bool: ... method begin (line 14421) | def begin(self, w: QWidget) -> bool: ... method begin (line 14423) | def begin(self, arg__1: PySide2.QtGui.QPaintDevice) -> bool: ... method drawComplexControl (line 14424) | def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOpt... method drawControl (line 14425) | def drawControl(self, ce: QStyle.ControlElement, opt: QStyleOption) ->... method drawItemPixmap (line 14426) | def drawItemPixmap(self, r: PySide2.QtCore.QRect, flags: typing.Suppor... method drawItemText (line 14427) | def drawItemText(self, r: PySide2.QtCore.QRect, flags: typing.Supports... method drawPrimitive (line 14428) | def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption... method style (line 14429) | def style(self) -> QStyle: ... class QStyledItemDelegate (line 14431) | class QStyledItemDelegate(QAbstractItemDelegate): method __init__ (line 14433) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., closeE... method createEditor (line 14434) | def createEditor(self, parent: QWidget | None, option: QStyleOptionVie... method displayText (line 14435) | def displayText(self, value: typing.Any, locale: PySide2.QtCore.QLocal... method editorEvent (line 14436) | def editorEvent(self, event: PySide2.QtCore.QEvent, model: PySide2.QtC... method eventFilter (line 14437) | def eventFilter(self, object: PySide2.QtCore.QObject, event: PySide2.Q... method initStyleOption (line 14438) | def initStyleOption(self, option: QStyleOptionViewItem, index: PySide2... method itemEditorFactory (line 14439) | def itemEditorFactory(self) -> QItemEditorFactory: ... method paint (line 14440) | def paint(self, painter: PySide2.QtGui.QPainter, option: QStyleOptionV... method setEditorData (line 14441) | def setEditorData(self, editor: QWidget, index: PySide2.QtCore.QModelI... method setItemEditorFactory (line 14442) | def setItemEditorFactory(self, factory: QItemEditorFactory) -> None: ... method setModelData (line 14443) | def setModelData(self, editor: QWidget, model: PySide2.QtCore.QAbstrac... method sizeHint (line 14444) | def sizeHint(self, option: QStyleOptionViewItem, index: PySide2.QtCore... method updateEditorGeometry (line 14445) | def updateEditorGeometry(self, editor: QWidget, option: QStyleOptionVi... class QSwipeGesture (line 14447) | class QSwipeGesture(QGesture): class SwipeDirection (line 14448) | class SwipeDirection: method __init__ (line 14457) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14458) | def __add__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeD... method __and__ (line 14459) | def __and__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeD... method __bool__ (line 14460) | def __bool__(self) -> bool: ... method __eq__ (line 14461) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14462) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14463) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14464) | def __hash__(self) -> int: ... method __index__ (line 14465) | def __index__(self) -> int: ... method __int__ (line 14466) | def __int__(self) -> int: ... method __le__ (line 14467) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14468) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14469) | def __mul__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeD... method __ne__ (line 14470) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14471) | def __or__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeDi... method __pos__ (line 14472) | def __pos__(self): ... method __radd__ (line 14473) | def __radd__(self, other: typing.SupportsInt) -> QSwipeGesture.Swipe... method __rand__ (line 14474) | def __rand__(self, other: typing.SupportsInt) -> QSwipeGesture.Swipe... method __rmul__ (line 14475) | def __rmul__(self, other: typing.SupportsInt) -> QSwipeGesture.Swipe... method __ror__ (line 14476) | def __ror__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeD... method __rsub__ (line 14477) | def __rsub__(self, other: typing.SupportsInt) -> QSwipeGesture.Swipe... method __rxor__ (line 14478) | def __rxor__(self, other: typing.SupportsInt) -> QSwipeGesture.Swipe... method __sub__ (line 14479) | def __sub__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeD... method __xor__ (line 14480) | def __xor__(self, other: typing.SupportsInt) -> QSwipeGesture.SwipeD... method __init__ (line 14487) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method horizontalDirection (line 14488) | def horizontalDirection(self) -> QSwipeGesture.SwipeDirection: ... method setSwipeAngle (line 14489) | def setSwipeAngle(self, value: float) -> None: ... method swipeAngle (line 14490) | def swipeAngle(self) -> float: ... method verticalDirection (line 14491) | def verticalDirection(self) -> QSwipeGesture.SwipeDirection: ... class QSystemTrayIcon (line 14493) | class QSystemTrayIcon(PySide2.QtCore.QObject): class ActivationReason (line 14494) | class ActivationReason: method __init__ (line 14503) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14504) | def __add__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Acti... method __and__ (line 14505) | def __and__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Acti... method __bool__ (line 14506) | def __bool__(self) -> bool: ... method __eq__ (line 14507) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14508) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14509) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14510) | def __hash__(self) -> int: ... method __index__ (line 14511) | def __index__(self) -> int: ... method __int__ (line 14512) | def __int__(self) -> int: ... method __le__ (line 14513) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14514) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14515) | def __mul__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Acti... method __ne__ (line 14516) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14517) | def __or__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Activ... method __pos__ (line 14518) | def __pos__(self): ... method __radd__ (line 14519) | def __radd__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Act... method __rand__ (line 14520) | def __rand__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Act... method __rmul__ (line 14521) | def __rmul__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Act... method __ror__ (line 14522) | def __ror__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Acti... method __rsub__ (line 14523) | def __rsub__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Act... method __rxor__ (line 14524) | def __rxor__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Act... method __sub__ (line 14525) | def __sub__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Acti... method __xor__ (line 14526) | def __xor__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Acti... class MessageIcon (line 14528) | class MessageIcon: method __init__ (line 14536) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14537) | def __add__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mess... method __and__ (line 14538) | def __and__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mess... method __bool__ (line 14539) | def __bool__(self) -> bool: ... method __eq__ (line 14540) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14541) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14542) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14543) | def __hash__(self) -> int: ... method __index__ (line 14544) | def __index__(self) -> int: ... method __int__ (line 14545) | def __int__(self) -> int: ... method __le__ (line 14546) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14547) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14548) | def __mul__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mess... method __ne__ (line 14549) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14550) | def __or__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Messa... method __pos__ (line 14551) | def __pos__(self): ... method __radd__ (line 14552) | def __radd__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mes... method __rand__ (line 14553) | def __rand__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mes... method __rmul__ (line 14554) | def __rmul__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mes... method __ror__ (line 14555) | def __ror__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mess... method __rsub__ (line 14556) | def __rsub__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mes... method __rxor__ (line 14557) | def __rxor__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mes... method __sub__ (line 14558) | def __sub__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mess... method __xor__ (line 14559) | def __xor__(self, other: typing.SupportsInt) -> QSystemTrayIcon.Mess... method __init__ (line 14573) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., activa... method __init__ (line 14575) | def __init__(self, icon: PySide2.QtGui.QIcon, parent: PySide2.QtCore.Q... method contextMenu (line 14576) | def contextMenu(self) -> QMenu: ... method event (line 14577) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method geometry (line 14578) | def geometry(self) -> PySide2.QtCore.QRect: ... method hide (line 14579) | def hide(self) -> None: ... method icon (line 14580) | def icon(self) -> PySide2.QtGui.QIcon: ... method isSystemTrayAvailable (line 14582) | def isSystemTrayAvailable() -> bool: ... method isVisible (line 14583) | def isVisible(self) -> bool: ... method setContextMenu (line 14584) | def setContextMenu(self, menu: QMenu) -> None: ... method setIcon (line 14585) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setToolTip (line 14586) | def setToolTip(self, tip: str) -> None: ... method setVisible (line 14587) | def setVisible(self, visible: bool) -> None: ... method show (line 14588) | def show(self) -> None: ... method showMessage (line 14590) | def showMessage(self, title: str, msg: str, icon: PySide2.QtGui.QIcon,... method showMessage (line 14592) | def showMessage(self, title: str, msg: str, icon: QSystemTrayIcon.Mess... method supportsMessages (line 14594) | def supportsMessages() -> bool: ... method toolTip (line 14595) | def toolTip(self) -> str: ... class QTabBar (line 14597) | class QTabBar(QWidget): class ButtonPosition (line 14598) | class ButtonPosition: method __init__ (line 14604) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14605) | def __add__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositi... method __and__ (line 14606) | def __and__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositi... method __bool__ (line 14607) | def __bool__(self) -> bool: ... method __eq__ (line 14608) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14609) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14610) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14611) | def __hash__(self) -> int: ... method __index__ (line 14612) | def __index__(self) -> int: ... method __int__ (line 14613) | def __int__(self) -> int: ... method __le__ (line 14614) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14615) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14616) | def __mul__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositi... method __ne__ (line 14617) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14618) | def __or__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositio... method __pos__ (line 14619) | def __pos__(self): ... method __radd__ (line 14620) | def __radd__(self, other: typing.SupportsInt) -> QTabBar.ButtonPosit... method __rand__ (line 14621) | def __rand__(self, other: typing.SupportsInt) -> QTabBar.ButtonPosit... method __rmul__ (line 14622) | def __rmul__(self, other: typing.SupportsInt) -> QTabBar.ButtonPosit... method __ror__ (line 14623) | def __ror__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositi... method __rsub__ (line 14624) | def __rsub__(self, other: typing.SupportsInt) -> QTabBar.ButtonPosit... method __rxor__ (line 14625) | def __rxor__(self, other: typing.SupportsInt) -> QTabBar.ButtonPosit... method __sub__ (line 14626) | def __sub__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositi... method __xor__ (line 14627) | def __xor__(self, other: typing.SupportsInt) -> QTabBar.ButtonPositi... class SelectionBehavior (line 14629) | class SelectionBehavior: method __init__ (line 14636) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14637) | def __add__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeh... method __and__ (line 14638) | def __and__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeh... method __bool__ (line 14639) | def __bool__(self) -> bool: ... method __eq__ (line 14640) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14641) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14642) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14643) | def __hash__(self) -> int: ... method __index__ (line 14644) | def __index__(self) -> int: ... method __int__ (line 14645) | def __int__(self) -> int: ... method __le__ (line 14646) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14647) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14648) | def __mul__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeh... method __ne__ (line 14649) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14650) | def __or__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeha... method __pos__ (line 14651) | def __pos__(self): ... method __radd__ (line 14652) | def __radd__(self, other: typing.SupportsInt) -> QTabBar.SelectionBe... method __rand__ (line 14653) | def __rand__(self, other: typing.SupportsInt) -> QTabBar.SelectionBe... method __rmul__ (line 14654) | def __rmul__(self, other: typing.SupportsInt) -> QTabBar.SelectionBe... method __ror__ (line 14655) | def __ror__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeh... method __rsub__ (line 14656) | def __rsub__(self, other: typing.SupportsInt) -> QTabBar.SelectionBe... method __rxor__ (line 14657) | def __rxor__(self, other: typing.SupportsInt) -> QTabBar.SelectionBe... method __sub__ (line 14658) | def __sub__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeh... method __xor__ (line 14659) | def __xor__(self, other: typing.SupportsInt) -> QTabBar.SelectionBeh... class Shape (line 14661) | class Shape: method __init__ (line 14673) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14674) | def __add__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __and__ (line 14675) | def __and__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __bool__ (line 14676) | def __bool__(self) -> bool: ... method __eq__ (line 14677) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14678) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14679) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14680) | def __hash__(self) -> int: ... method __index__ (line 14681) | def __index__(self) -> int: ... method __int__ (line 14682) | def __int__(self) -> int: ... method __le__ (line 14683) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14684) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14685) | def __mul__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __ne__ (line 14686) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14687) | def __or__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __pos__ (line 14688) | def __pos__(self): ... method __radd__ (line 14689) | def __radd__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __rand__ (line 14690) | def __rand__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __rmul__ (line 14691) | def __rmul__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __ror__ (line 14692) | def __ror__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __rsub__ (line 14693) | def __rsub__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __rxor__ (line 14694) | def __rxor__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __sub__ (line 14695) | def __sub__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __xor__ (line 14696) | def __xor__(self, other: typing.SupportsInt) -> QTabBar.Shape: ... method __init__ (line 14716) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method accessibleTabName (line 14717) | def accessibleTabName(self, index: int) -> str: ... method addTab (line 14719) | def addTab(self, icon: PySide2.QtGui.QIcon, text: str) -> int: ... method addTab (line 14721) | def addTab(self, text: str) -> int: ... method autoHide (line 14722) | def autoHide(self) -> bool: ... method changeCurrentOnDrag (line 14723) | def changeCurrentOnDrag(self) -> bool: ... method changeEvent (line 14724) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method count (line 14725) | def count(self) -> int: ... method currentIndex (line 14726) | def currentIndex(self) -> int: ... method documentMode (line 14727) | def documentMode(self) -> bool: ... method drawBase (line 14728) | def drawBase(self) -> bool: ... method elideMode (line 14729) | def elideMode(self) -> PySide2.QtCore.Qt.TextElideMode: ... method event (line 14730) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method expanding (line 14731) | def expanding(self) -> bool: ... method hideEvent (line 14732) | def hideEvent(self, arg__1: PySide2.QtGui.QHideEvent) -> None: ... method iconSize (line 14733) | def iconSize(self) -> PySide2.QtCore.QSize: ... method initStyleOption (line 14734) | def initStyleOption(self, option: QStyleOptionTab, tabIndex: int) -> N... method insertTab (line 14736) | def insertTab(self, index: int, icon: PySide2.QtGui.QIcon, text: str) ... method insertTab (line 14738) | def insertTab(self, index: int, text: str) -> int: ... method isMovable (line 14739) | def isMovable(self) -> bool: ... method isTabEnabled (line 14740) | def isTabEnabled(self, index: int) -> bool: ... method isTabVisible (line 14741) | def isTabVisible(self, index: int) -> bool: ... method keyPressEvent (line 14742) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method minimumSizeHint (line 14743) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method minimumTabSizeHint (line 14744) | def minimumTabSizeHint(self, index: int) -> PySide2.QtCore.QSize: ... method mouseMoveEvent (line 14745) | def mouseMoveEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 14746) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 14747) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method moveTab (line 14748) | def moveTab(self, from_: int, to: int) -> None: ... method paintEvent (line 14749) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method removeTab (line 14750) | def removeTab(self, index: int) -> None: ... method resizeEvent (line 14751) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method selectionBehaviorOnRemove (line 14752) | def selectionBehaviorOnRemove(self) -> QTabBar.SelectionBehavior: ... method setAccessibleTabName (line 14753) | def setAccessibleTabName(self, index: int, name: str) -> None: ... method setAutoHide (line 14754) | def setAutoHide(self, hide: bool) -> None: ... method setChangeCurrentOnDrag (line 14755) | def setChangeCurrentOnDrag(self, change: bool) -> None: ... method setCurrentIndex (line 14756) | def setCurrentIndex(self, index: int) -> None: ... method setDocumentMode (line 14757) | def setDocumentMode(self, set: bool) -> None: ... method setDrawBase (line 14758) | def setDrawBase(self, drawTheBase: bool) -> None: ... method setElideMode (line 14759) | def setElideMode(self, mode: PySide2.QtCore.Qt.TextElideMode) -> None:... method setExpanding (line 14760) | def setExpanding(self, enabled: bool) -> None: ... method setIconSize (line 14761) | def setIconSize(self, size: PySide2.QtCore.QSize) -> None: ... method setMovable (line 14762) | def setMovable(self, movable: bool) -> None: ... method setSelectionBehaviorOnRemove (line 14763) | def setSelectionBehaviorOnRemove(self, behavior: QTabBar.SelectionBeha... method setShape (line 14764) | def setShape(self, shape: QTabBar.Shape) -> None: ... method setTabButton (line 14765) | def setTabButton(self, index: int, position: QTabBar.ButtonPosition, w... method setTabData (line 14766) | def setTabData(self, index: int, data: typing.Any) -> None: ... method setTabEnabled (line 14767) | def setTabEnabled(self, index: int, enabled: bool) -> None: ... method setTabIcon (line 14768) | def setTabIcon(self, index: int, icon: PySide2.QtGui.QIcon) -> None: ... method setTabText (line 14769) | def setTabText(self, index: int, text: str) -> None: ... method setTabTextColor (line 14770) | def setTabTextColor(self, index: int, color: PySide2.QtGui.QColor | Py... method setTabToolTip (line 14771) | def setTabToolTip(self, index: int, tip: str) -> None: ... method setTabVisible (line 14772) | def setTabVisible(self, index: int, visible: bool) -> None: ... method setTabWhatsThis (line 14773) | def setTabWhatsThis(self, index: int, text: str) -> None: ... method setTabsClosable (line 14774) | def setTabsClosable(self, closable: bool) -> None: ... method setUsesScrollButtons (line 14775) | def setUsesScrollButtons(self, useButtons: bool) -> None: ... method shape (line 14776) | def shape(self) -> QTabBar.Shape: ... method showEvent (line 14777) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 14778) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method tabAt (line 14779) | def tabAt(self, pos: PySide2.QtCore.QPoint) -> int: ... method tabButton (line 14780) | def tabButton(self, index: int, position: QTabBar.ButtonPosition) -> Q... method tabData (line 14781) | def tabData(self, index: int) -> typing.Any: ... method tabIcon (line 14782) | def tabIcon(self, index: int) -> PySide2.QtGui.QIcon: ... method tabInserted (line 14783) | def tabInserted(self, index: int) -> None: ... method tabLayoutChange (line 14784) | def tabLayoutChange(self) -> None: ... method tabRect (line 14785) | def tabRect(self, index: int) -> PySide2.QtCore.QRect: ... method tabRemoved (line 14786) | def tabRemoved(self, index: int) -> None: ... method tabSizeHint (line 14787) | def tabSizeHint(self, index: int) -> PySide2.QtCore.QSize: ... method tabText (line 14788) | def tabText(self, index: int) -> str: ... method tabTextColor (line 14789) | def tabTextColor(self, index: int) -> PySide2.QtGui.QColor: ... method tabToolTip (line 14790) | def tabToolTip(self, index: int) -> str: ... method tabWhatsThis (line 14791) | def tabWhatsThis(self, index: int) -> str: ... method tabsClosable (line 14792) | def tabsClosable(self) -> bool: ... method timerEvent (line 14793) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method usesScrollButtons (line 14794) | def usesScrollButtons(self) -> bool: ... method wheelEvent (line 14795) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... class QTabWidget (line 14797) | class QTabWidget(QWidget): class TabPosition (line 14798) | class TabPosition: method __init__ (line 14806) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14807) | def __add__(self, other: typing.SupportsInt) -> QTabWidget.TabPositi... method __and__ (line 14808) | def __and__(self, other: typing.SupportsInt) -> QTabWidget.TabPositi... method __bool__ (line 14809) | def __bool__(self) -> bool: ... method __eq__ (line 14810) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14811) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14812) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14813) | def __hash__(self) -> int: ... method __index__ (line 14814) | def __index__(self) -> int: ... method __int__ (line 14815) | def __int__(self) -> int: ... method __le__ (line 14816) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14817) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14818) | def __mul__(self, other: typing.SupportsInt) -> QTabWidget.TabPositi... method __ne__ (line 14819) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14820) | def __or__(self, other: typing.SupportsInt) -> QTabWidget.TabPositio... method __pos__ (line 14821) | def __pos__(self): ... method __radd__ (line 14822) | def __radd__(self, other: typing.SupportsInt) -> QTabWidget.TabPosit... method __rand__ (line 14823) | def __rand__(self, other: typing.SupportsInt) -> QTabWidget.TabPosit... method __rmul__ (line 14824) | def __rmul__(self, other: typing.SupportsInt) -> QTabWidget.TabPosit... method __ror__ (line 14825) | def __ror__(self, other: typing.SupportsInt) -> QTabWidget.TabPositi... method __rsub__ (line 14826) | def __rsub__(self, other: typing.SupportsInt) -> QTabWidget.TabPosit... method __rxor__ (line 14827) | def __rxor__(self, other: typing.SupportsInt) -> QTabWidget.TabPosit... method __sub__ (line 14828) | def __sub__(self, other: typing.SupportsInt) -> QTabWidget.TabPositi... method __xor__ (line 14829) | def __xor__(self, other: typing.SupportsInt) -> QTabWidget.TabPositi... class TabShape (line 14831) | class TabShape: method __init__ (line 14837) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 14838) | def __add__(self, other: typing.SupportsInt) -> QTabWidget.TabShape:... method __and__ (line 14839) | def __and__(self, other: typing.SupportsInt) -> QTabWidget.TabShape:... method __bool__ (line 14840) | def __bool__(self) -> bool: ... method __eq__ (line 14841) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 14842) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 14843) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 14844) | def __hash__(self) -> int: ... method __index__ (line 14845) | def __index__(self) -> int: ... method __int__ (line 14846) | def __int__(self) -> int: ... method __le__ (line 14847) | def __le__(self, other: object) -> bool: ... method __lt__ (line 14848) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 14849) | def __mul__(self, other: typing.SupportsInt) -> QTabWidget.TabShape:... method __ne__ (line 14850) | def __ne__(self, other: object) -> bool: ... method __or__ (line 14851) | def __or__(self, other: typing.SupportsInt) -> QTabWidget.TabShape: ... method __pos__ (line 14852) | def __pos__(self): ... method __radd__ (line 14853) | def __radd__(self, other: typing.SupportsInt) -> QTabWidget.TabShape... method __rand__ (line 14854) | def __rand__(self, other: typing.SupportsInt) -> QTabWidget.TabShape... method __rmul__ (line 14855) | def __rmul__(self, other: typing.SupportsInt) -> QTabWidget.TabShape... method __ror__ (line 14856) | def __ror__(self, other: typing.SupportsInt) -> QTabWidget.TabShape:... method __rsub__ (line 14857) | def __rsub__(self, other: typing.SupportsInt) -> QTabWidget.TabShape... method __rxor__ (line 14858) | def __rxor__(self, other: typing.SupportsInt) -> QTabWidget.TabShape... method __sub__ (line 14859) | def __sub__(self, other: typing.SupportsInt) -> QTabWidget.TabShape:... method __xor__ (line 14860) | def __xor__(self, other: typing.SupportsInt) -> QTabWidget.TabShape:... method __init__ (line 14872) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addTab (line 14874) | def addTab(self, widget: QWidget, icon: PySide2.QtGui.QIcon, label: st... method addTab (line 14876) | def addTab(self, widget: QWidget, arg__2: str) -> int: ... method changeEvent (line 14877) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method clear (line 14878) | def clear(self) -> None: ... method cornerWidget (line 14879) | def cornerWidget(self, corner: PySide2.QtCore.Qt.Corner = ...) -> QWid... method count (line 14880) | def count(self) -> int: ... method currentIndex (line 14881) | def currentIndex(self) -> int: ... method currentWidget (line 14882) | def currentWidget(self) -> QWidget: ... method documentMode (line 14883) | def documentMode(self) -> bool: ... method elideMode (line 14884) | def elideMode(self) -> PySide2.QtCore.Qt.TextElideMode: ... method event (line 14885) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method hasHeightForWidth (line 14886) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 14887) | def heightForWidth(self, width: int) -> int: ... method iconSize (line 14888) | def iconSize(self) -> PySide2.QtCore.QSize: ... method indexOf (line 14889) | def indexOf(self, widget: QWidget) -> int: ... method initStyleOption (line 14890) | def initStyleOption(self, option: QStyleOptionTabWidgetFrame) -> None:... method insertTab (line 14892) | def insertTab(self, index: int, widget: QWidget, icon: PySide2.QtGui.Q... method insertTab (line 14894) | def insertTab(self, index: int, widget: QWidget, arg__3: str) -> int: ... method isMovable (line 14895) | def isMovable(self) -> bool: ... method isTabEnabled (line 14896) | def isTabEnabled(self, index: int) -> bool: ... method isTabVisible (line 14897) | def isTabVisible(self, index: int) -> bool: ... method keyPressEvent (line 14898) | def keyPressEvent(self, arg__1: PySide2.QtGui.QKeyEvent) -> None: ... method minimumSizeHint (line 14899) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method paintEvent (line 14900) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method removeTab (line 14901) | def removeTab(self, index: int) -> None: ... method resizeEvent (line 14902) | def resizeEvent(self, arg__1: PySide2.QtGui.QResizeEvent) -> None: ... method setCornerWidget (line 14903) | def setCornerWidget(self, w: QWidget, corner: PySide2.QtCore.Qt.Corner... method setCurrentIndex (line 14904) | def setCurrentIndex(self, index: int) -> None: ... method setCurrentWidget (line 14905) | def setCurrentWidget(self, widget: QWidget) -> None: ... method setDocumentMode (line 14906) | def setDocumentMode(self, set: bool) -> None: ... method setElideMode (line 14907) | def setElideMode(self, mode: PySide2.QtCore.Qt.TextElideMode) -> None:... method setIconSize (line 14908) | def setIconSize(self, size: PySide2.QtCore.QSize) -> None: ... method setMovable (line 14909) | def setMovable(self, movable: bool) -> None: ... method setTabBar (line 14910) | def setTabBar(self, arg__1: QTabBar) -> None: ... method setTabBarAutoHide (line 14911) | def setTabBarAutoHide(self, enabled: bool) -> None: ... method setTabEnabled (line 14912) | def setTabEnabled(self, index: int, enabled: bool) -> None: ... method setTabIcon (line 14913) | def setTabIcon(self, index: int, icon: PySide2.QtGui.QIcon) -> None: ... method setTabPosition (line 14914) | def setTabPosition(self, position: QTabWidget.TabPosition) -> None: ... method setTabShape (line 14915) | def setTabShape(self, s: QTabWidget.TabShape) -> None: ... method setTabText (line 14916) | def setTabText(self, index: int, text: str) -> None: ... method setTabToolTip (line 14917) | def setTabToolTip(self, index: int, tip: str) -> None: ... method setTabVisible (line 14918) | def setTabVisible(self, index: int, visible: bool) -> None: ... method setTabWhatsThis (line 14919) | def setTabWhatsThis(self, index: int, text: str) -> None: ... method setTabsClosable (line 14920) | def setTabsClosable(self, closeable: bool) -> None: ... method setUsesScrollButtons (line 14921) | def setUsesScrollButtons(self, useButtons: bool) -> None: ... method showEvent (line 14922) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method sizeHint (line 14923) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method tabBar (line 14924) | def tabBar(self) -> QTabBar: ... method tabBarAutoHide (line 14925) | def tabBarAutoHide(self) -> bool: ... method tabIcon (line 14926) | def tabIcon(self, index: int) -> PySide2.QtGui.QIcon: ... method tabInserted (line 14927) | def tabInserted(self, index: int) -> None: ... method tabPosition (line 14928) | def tabPosition(self) -> QTabWidget.TabPosition: ... method tabRemoved (line 14929) | def tabRemoved(self, index: int) -> None: ... method tabShape (line 14930) | def tabShape(self) -> QTabWidget.TabShape: ... method tabText (line 14931) | def tabText(self, index: int) -> str: ... method tabToolTip (line 14932) | def tabToolTip(self, index: int) -> str: ... method tabWhatsThis (line 14933) | def tabWhatsThis(self, index: int) -> str: ... method tabsClosable (line 14934) | def tabsClosable(self) -> bool: ... method usesScrollButtons (line 14935) | def usesScrollButtons(self) -> bool: ... method widget (line 14936) | def widget(self, index: int) -> QWidget: ... class QTableView (line 14938) | class QTableView(QAbstractItemView): method __init__ (line 14940) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method clearSpans (line 14941) | def clearSpans(self) -> None: ... method columnAt (line 14942) | def columnAt(self, x: int) -> int: ... method columnCountChanged (line 14943) | def columnCountChanged(self, oldCount: int, newCount: int) -> None: ... method columnMoved (line 14944) | def columnMoved(self, column: int, oldIndex: int, newIndex: int) -> No... method columnResized (line 14945) | def columnResized(self, column: int, oldWidth: int, newWidth: int) -> ... method columnSpan (line 14946) | def columnSpan(self, row: int, column: int) -> int: ... method columnViewportPosition (line 14947) | def columnViewportPosition(self, column: int) -> int: ... method columnWidth (line 14948) | def columnWidth(self, column: int) -> int: ... method currentChanged (line 14949) | def currentChanged(self, current: PySide2.QtCore.QModelIndex, previous... method doItemsLayout (line 14950) | def doItemsLayout(self) -> None: ... method gridStyle (line 14951) | def gridStyle(self) -> PySide2.QtCore.Qt.PenStyle: ... method hideColumn (line 14952) | def hideColumn(self, column: int) -> None: ... method hideRow (line 14953) | def hideRow(self, row: int) -> None: ... method horizontalHeader (line 14954) | def horizontalHeader(self) -> QHeaderView: ... method horizontalOffset (line 14955) | def horizontalOffset(self) -> int: ... method horizontalScrollbarAction (line 14956) | def horizontalScrollbarAction(self, action: int) -> None: ... method indexAt (line 14957) | def indexAt(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QModelIn... method isColumnHidden (line 14958) | def isColumnHidden(self, column: int) -> bool: ... method isCornerButtonEnabled (line 14959) | def isCornerButtonEnabled(self) -> bool: ... method isIndexHidden (line 14960) | def isIndexHidden(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isRowHidden (line 14961) | def isRowHidden(self, row: int) -> bool: ... method isSortingEnabled (line 14962) | def isSortingEnabled(self) -> bool: ... method moveCursor (line 14963) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method paintEvent (line 14964) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method resizeColumnToContents (line 14965) | def resizeColumnToContents(self, column: int) -> None: ... method resizeColumnsToContents (line 14966) | def resizeColumnsToContents(self) -> None: ... method resizeRowToContents (line 14967) | def resizeRowToContents(self, row: int) -> None: ... method resizeRowsToContents (line 14968) | def resizeRowsToContents(self) -> None: ... method rowAt (line 14969) | def rowAt(self, y: int) -> int: ... method rowCountChanged (line 14970) | def rowCountChanged(self, oldCount: int, newCount: int) -> None: ... method rowHeight (line 14971) | def rowHeight(self, row: int) -> int: ... method rowMoved (line 14972) | def rowMoved(self, row: int, oldIndex: int, newIndex: int) -> None: ... method rowResized (line 14973) | def rowResized(self, row: int, oldHeight: int, newHeight: int) -> None... method rowSpan (line 14974) | def rowSpan(self, row: int, column: int) -> int: ... method rowViewportPosition (line 14975) | def rowViewportPosition(self, row: int) -> int: ... method scrollContentsBy (line 14976) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method scrollTo (line 14977) | def scrollTo(self, index: PySide2.QtCore.QModelIndex, hint: QAbstractI... method selectColumn (line 14978) | def selectColumn(self, column: int) -> None: ... method selectRow (line 14979) | def selectRow(self, row: int) -> None: ... method selectedIndexes (line 14980) | def selectedIndexes(self) -> list[PySide2.QtCore.QModelIndex]: ... method selectionChanged (line 14981) | def selectionChanged(self, selected: PySide2.QtCore.QItemSelection, de... method setColumnHidden (line 14982) | def setColumnHidden(self, column: int, hide: bool) -> None: ... method setColumnWidth (line 14983) | def setColumnWidth(self, column: int, width: int) -> None: ... method setCornerButtonEnabled (line 14984) | def setCornerButtonEnabled(self, enable: bool) -> None: ... method setGridStyle (line 14985) | def setGridStyle(self, style: PySide2.QtCore.Qt.PenStyle) -> None: ... method setHorizontalHeader (line 14986) | def setHorizontalHeader(self, header: QHeaderView) -> None: ... method setModel (line 14987) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setRootIndex (line 14988) | def setRootIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setRowHeight (line 14989) | def setRowHeight(self, row: int, height: int) -> None: ... method setRowHidden (line 14990) | def setRowHidden(self, row: int, hide: bool) -> None: ... method setSelection (line 14991) | def setSelection(self, rect: PySide2.QtCore.QRect, command: PySide2.Qt... method setSelectionModel (line 14992) | def setSelectionModel(self, selectionModel: PySide2.QtCore.QItemSelect... method setShowGrid (line 14993) | def setShowGrid(self, show: bool) -> None: ... method setSortingEnabled (line 14994) | def setSortingEnabled(self, enable: bool) -> None: ... method setSpan (line 14995) | def setSpan(self, row: int, column: int, rowSpan: int, columnSpan: int... method setVerticalHeader (line 14996) | def setVerticalHeader(self, header: QHeaderView) -> None: ... method setWordWrap (line 14997) | def setWordWrap(self, on: bool) -> None: ... method showColumn (line 14998) | def showColumn(self, column: int) -> None: ... method showGrid (line 14999) | def showGrid(self) -> bool: ... method showRow (line 15000) | def showRow(self, row: int) -> None: ... method sizeHintForColumn (line 15001) | def sizeHintForColumn(self, column: int) -> int: ... method sizeHintForRow (line 15002) | def sizeHintForRow(self, row: int) -> int: ... method sortByColumn (line 15004) | def sortByColumn(self, column: int, order: PySide2.QtCore.Qt.SortOrder... method sortByColumn (line 15006) | def sortByColumn(self, column: int) -> None: ... method timerEvent (line 15007) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method updateGeometries (line 15008) | def updateGeometries(self) -> None: ... method verticalHeader (line 15009) | def verticalHeader(self) -> QHeaderView: ... method verticalOffset (line 15010) | def verticalOffset(self) -> int: ... method verticalScrollbarAction (line 15011) | def verticalScrollbarAction(self, action: int) -> None: ... method viewOptions (line 15012) | def viewOptions(self) -> QStyleOptionViewItem: ... method viewportSizeHint (line 15013) | def viewportSizeHint(self) -> PySide2.QtCore.QSize: ... method visualRect (line 15014) | def visualRect(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method visualRegionForSelection (line 15015) | def visualRegionForSelection(self, selection: PySide2.QtCore.QItemSele... method wordWrap (line 15016) | def wordWrap(self) -> bool: ... class QTableWidget (line 15018) | class QTableWidget(QTableView): method __init__ (line 15036) | def __init__(self, rows: int, columns: int, parent: QWidget | None = .... method __init__ (line 15038) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method cellWidget (line 15039) | def cellWidget(self, row: int, column: int) -> QWidget: ... method clear (line 15040) | def clear(self) -> None: ... method clearContents (line 15041) | def clearContents(self) -> None: ... method closePersistentEditor (line 15043) | def closePersistentEditor(self, item: QTableWidgetItem) -> None: ... method closePersistentEditor (line 15045) | def closePersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> ... method column (line 15046) | def column(self, item: QTableWidgetItem) -> int: ... method columnCount (line 15047) | def columnCount(self) -> int: ... method currentColumn (line 15048) | def currentColumn(self) -> int: ... method currentItem (line 15049) | def currentItem(self) -> QTableWidgetItem: ... method currentRow (line 15050) | def currentRow(self) -> int: ... method dropEvent (line 15051) | def dropEvent(self, event: PySide2.QtGui.QDropEvent) -> None: ... method dropMimeData (line 15052) | def dropMimeData(self, row: int, column: int, data: PySide2.QtCore.QMi... method editItem (line 15053) | def editItem(self, item: QTableWidgetItem) -> None: ... method event (line 15054) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method findItems (line 15055) | def findItems(self, text: str, flags: PySide2.QtCore.Qt.MatchFlags | P... method horizontalHeaderItem (line 15056) | def horizontalHeaderItem(self, column: int) -> QTableWidgetItem: ... method indexFromItem (line 15057) | def indexFromItem(self, item: QTableWidgetItem) -> PySide2.QtCore.QMod... method insertColumn (line 15058) | def insertColumn(self, column: int) -> None: ... method insertRow (line 15059) | def insertRow(self, row: int) -> None: ... method isItemSelected (line 15060) | def isItemSelected(self, item: QTableWidgetItem) -> bool: ... method isPersistentEditorOpen (line 15062) | def isPersistentEditorOpen(self, item: QTableWidgetItem) -> bool: ... method isPersistentEditorOpen (line 15064) | def isPersistentEditorOpen(self, index: PySide2.QtCore.QModelIndex) ->... method isSortingEnabled (line 15065) | def isSortingEnabled(self) -> bool: ... method item (line 15066) | def item(self, row: int, column: int) -> QTableWidgetItem: ... method itemAt (line 15068) | def itemAt(self, x: int, y: int) -> QTableWidgetItem: ... method itemAt (line 15070) | def itemAt(self, p: PySide2.QtCore.QPoint) -> QTableWidgetItem: ... method itemFromIndex (line 15071) | def itemFromIndex(self, index: PySide2.QtCore.QModelIndex) -> QTableWi... method itemPrototype (line 15072) | def itemPrototype(self) -> QTableWidgetItem: ... method items (line 15073) | def items(self, data: PySide2.QtCore.QMimeData) -> list[QTableWidgetIt... method mimeData (line 15074) | def mimeData(self, items: typing.Iterable[QTableWidgetItem]) -> PySide... method mimeTypes (line 15075) | def mimeTypes(self) -> list[str]: ... method openPersistentEditor (line 15077) | def openPersistentEditor(self, item: QTableWidgetItem) -> None: ... method openPersistentEditor (line 15079) | def openPersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> N... method removeCellWidget (line 15080) | def removeCellWidget(self, row: int, column: int) -> None: ... method removeColumn (line 15081) | def removeColumn(self, column: int) -> None: ... method removeRow (line 15082) | def removeRow(self, row: int) -> None: ... method row (line 15083) | def row(self, item: QTableWidgetItem) -> int: ... method rowCount (line 15084) | def rowCount(self) -> int: ... method scrollToItem (line 15085) | def scrollToItem(self, item: QTableWidgetItem, hint: QAbstractItemView... method selectedItems (line 15086) | def selectedItems(self) -> list[QTableWidgetItem]: ... method selectedRanges (line 15087) | def selectedRanges(self) -> list[QTableWidgetSelectionRange]: ... method setCellWidget (line 15088) | def setCellWidget(self, row: int, column: int, widget: QWidget) -> Non... method setColumnCount (line 15089) | def setColumnCount(self, columns: int) -> None: ... method setCurrentCell (line 15091) | def setCurrentCell(self, row: int, column: int, command: PySide2.QtCor... method setCurrentCell (line 15093) | def setCurrentCell(self, row: int, column: int) -> None: ... method setCurrentItem (line 15095) | def setCurrentItem(self, item: QTableWidgetItem, command: PySide2.QtCo... method setCurrentItem (line 15097) | def setCurrentItem(self, item: QTableWidgetItem) -> None: ... method setHorizontalHeaderItem (line 15098) | def setHorizontalHeaderItem(self, column: int, item: QTableWidgetItem)... method setHorizontalHeaderLabels (line 15099) | def setHorizontalHeaderLabels(self, labels: typing.Iterable[str]) -> N... method setItem (line 15100) | def setItem(self, row: int, column: int, item: QTableWidgetItem) -> No... method setItemPrototype (line 15101) | def setItemPrototype(self, item: QTableWidgetItem) -> None: ... method setItemSelected (line 15102) | def setItemSelected(self, item: QTableWidgetItem, select: bool) -> Non... method setModel (line 15103) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setRangeSelected (line 15104) | def setRangeSelected(self, range: QTableWidgetSelectionRange, select: ... method setRowCount (line 15105) | def setRowCount(self, rows: int) -> None: ... method setSortingEnabled (line 15106) | def setSortingEnabled(self, enable: bool) -> None: ... method setVerticalHeaderItem (line 15107) | def setVerticalHeaderItem(self, row: int, item: QTableWidgetItem) -> N... method setVerticalHeaderLabels (line 15108) | def setVerticalHeaderLabels(self, labels: typing.Iterable[str]) -> Non... method sortItems (line 15109) | def sortItems(self, column: int, order: PySide2.QtCore.Qt.SortOrder = ... method supportedDropActions (line 15110) | def supportedDropActions(self) -> PySide2.QtCore.Qt.DropActions | PySi... method takeHorizontalHeaderItem (line 15111) | def takeHorizontalHeaderItem(self, column: int) -> QTableWidgetItem: ... method takeItem (line 15112) | def takeItem(self, row: int, column: int) -> QTableWidgetItem: ... method takeVerticalHeaderItem (line 15113) | def takeVerticalHeaderItem(self, row: int) -> QTableWidgetItem: ... method verticalHeaderItem (line 15114) | def verticalHeaderItem(self, row: int) -> QTableWidgetItem: ... method visualColumn (line 15115) | def visualColumn(self, logicalColumn: int) -> int: ... method visualItemRect (line 15116) | def visualItemRect(self, item: QTableWidgetItem) -> PySide2.QtCore.QRe... method visualRow (line 15117) | def visualRow(self, logicalRow: int) -> int: ... class QTableWidgetItem (line 15119) | class QTableWidgetItem(shiboken2.Object): class ItemType (line 15120) | class ItemType: method __init__ (line 15126) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15127) | def __add__(self, other: typing.SupportsInt) -> QTableWidgetItem.Ite... method __and__ (line 15128) | def __and__(self, other: typing.SupportsInt) -> QTableWidgetItem.Ite... method __bool__ (line 15129) | def __bool__(self) -> bool: ... method __eq__ (line 15130) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15131) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15132) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15133) | def __hash__(self) -> int: ... method __index__ (line 15134) | def __index__(self) -> int: ... method __int__ (line 15135) | def __int__(self) -> int: ... method __le__ (line 15136) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15137) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15138) | def __mul__(self, other: typing.SupportsInt) -> QTableWidgetItem.Ite... method __ne__ (line 15139) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15140) | def __or__(self, other: typing.SupportsInt) -> QTableWidgetItem.Item... method __pos__ (line 15141) | def __pos__(self): ... method __radd__ (line 15142) | def __radd__(self, other: typing.SupportsInt) -> QTableWidgetItem.It... method __rand__ (line 15143) | def __rand__(self, other: typing.SupportsInt) -> QTableWidgetItem.It... method __rmul__ (line 15144) | def __rmul__(self, other: typing.SupportsInt) -> QTableWidgetItem.It... method __ror__ (line 15145) | def __ror__(self, other: typing.SupportsInt) -> QTableWidgetItem.Ite... method __rsub__ (line 15146) | def __rsub__(self, other: typing.SupportsInt) -> QTableWidgetItem.It... method __rxor__ (line 15147) | def __rxor__(self, other: typing.SupportsInt) -> QTableWidgetItem.It... method __sub__ (line 15148) | def __sub__(self, other: typing.SupportsInt) -> QTableWidgetItem.Ite... method __xor__ (line 15149) | def __xor__(self, other: typing.SupportsInt) -> QTableWidgetItem.Ite... method __init__ (line 15153) | def __init__(self, icon: PySide2.QtGui.QIcon, text: str, type: int = .... method __init__ (line 15155) | def __init__(self, text: str, type: int = ...) -> None: ... method __init__ (line 15157) | def __init__(self, type: int = ...) -> None: ... method __init__ (line 15159) | def __init__(self, other: QTableWidgetItem) -> None: ... method background (line 15160) | def background(self) -> PySide2.QtGui.QBrush: ... method backgroundColor (line 15161) | def backgroundColor(self) -> PySide2.QtGui.QColor: ... method checkState (line 15162) | def checkState(self) -> PySide2.QtCore.Qt.CheckState: ... method clone (line 15163) | def clone(self) -> QTableWidgetItem: ... method column (line 15164) | def column(self) -> int: ... method data (line 15165) | def data(self, role: PySide2.QtCore.Qt.ItemDataRole) -> typing.Any: ... method flags (line 15166) | def flags(self) -> PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore.Qt.Ite... method font (line 15167) | def font(self) -> PySide2.QtGui.QFont: ... method foreground (line 15168) | def foreground(self) -> PySide2.QtGui.QBrush: ... method icon (line 15169) | def icon(self) -> PySide2.QtGui.QIcon: ... method isSelected (line 15170) | def isSelected(self) -> bool: ... method read (line 15171) | def read(self, in_: PySide2.QtCore.QDataStream) -> None: ... method row (line 15172) | def row(self) -> int: ... method setBackground (line 15173) | def setBackground(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QC... method setBackgroundColor (line 15174) | def setBackgroundColor(self, color: PySide2.QtGui.QColor | PySide2.QtC... method setCheckState (line 15175) | def setCheckState(self, state: PySide2.QtCore.Qt.CheckState) -> None: ... method setData (line 15176) | def setData(self, role: PySide2.QtCore.Qt.ItemDataRole, value: typing.... method setFlags (line 15177) | def setFlags(self, flags: PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore... method setFont (line 15178) | def setFont(self, font: PySide2.QtGui.QFont) -> None: ... method setForeground (line 15179) | def setForeground(self, brush: PySide2.QtGui.QBrush | PySide2.QtGui.QC... method setIcon (line 15180) | def setIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setSelected (line 15181) | def setSelected(self, select: bool) -> None: ... method setSizeHint (line 15182) | def setSizeHint(self, size: PySide2.QtCore.QSize) -> None: ... method setStatusTip (line 15183) | def setStatusTip(self, statusTip: str) -> None: ... method setText (line 15184) | def setText(self, text: str) -> None: ... method setTextAlignment (line 15185) | def setTextAlignment(self, alignment: PySide2.QtCore.Qt.Alignment | Py... method setTextColor (line 15186) | def setTextColor(self, color: PySide2.QtGui.QColor | PySide2.QtCore.Qt... method setToolTip (line 15187) | def setToolTip(self, toolTip: str) -> None: ... method setWhatsThis (line 15188) | def setWhatsThis(self, whatsThis: str) -> None: ... method sizeHint (line 15189) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method statusTip (line 15190) | def statusTip(self) -> str: ... method tableWidget (line 15191) | def tableWidget(self) -> QTableWidget: ... method text (line 15192) | def text(self) -> str: ... method textAlignment (line 15193) | def textAlignment(self) -> int: ... method textColor (line 15194) | def textColor(self) -> PySide2.QtGui.QColor: ... method toolTip (line 15195) | def toolTip(self) -> str: ... method type (line 15196) | def type(self) -> int: ... method whatsThis (line 15197) | def whatsThis(self) -> str: ... method write (line 15198) | def write(self, out: PySide2.QtCore.QDataStream) -> None: ... method __eq__ (line 15199) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15200) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15201) | def __gt__(self, other: object) -> bool: ... method __le__ (line 15202) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 15203) | def __lshift__(self, out: PySide2.QtCore.QDataStream) -> PySide2.QtCor... method __lt__ (line 15204) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15205) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 15206) | def __rlshift__(self, other): ... method __rrshift__ (line 15207) | def __rrshift__(self, other): ... method __rshift__ (line 15208) | def __rshift__(self, in_: PySide2.QtCore.QDataStream) -> PySide2.QtCor... class QTableWidgetSelectionRange (line 15210) | class QTableWidgetSelectionRange(shiboken2.Object): method __init__ (line 15212) | def __init__(self, top: int, left: int, bottom: int, right: int) -> No... method __init__ (line 15214) | def __init__(self, other: QTableWidgetSelectionRange) -> None: ... method __init__ (line 15216) | def __init__(self) -> None: ... method bottomRow (line 15217) | def bottomRow(self) -> int: ... method columnCount (line 15218) | def columnCount(self) -> int: ... method leftColumn (line 15219) | def leftColumn(self) -> int: ... method rightColumn (line 15220) | def rightColumn(self) -> int: ... method rowCount (line 15221) | def rowCount(self) -> int: ... method topRow (line 15222) | def topRow(self) -> int: ... method __copy__ (line 15223) | def __copy__(self) -> None: ... class QTapAndHoldGesture (line 15225) | class QTapAndHoldGesture(QGesture): method __init__ (line 15227) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method position (line 15228) | def position(self) -> PySide2.QtCore.QPointF: ... method setPosition (line 15229) | def setPosition(self, pos: PySide2.QtCore.QPointF) -> None: ... method setTimeout (line 15231) | def setTimeout(msecs: int) -> None: ... method timeout (line 15233) | def timeout() -> int: ... class QTapGesture (line 15235) | class QTapGesture(QGesture): method __init__ (line 15237) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method position (line 15238) | def position(self) -> PySide2.QtCore.QPointF: ... method setPosition (line 15239) | def setPosition(self, pos: PySide2.QtCore.QPointF) -> None: ... class QTextBrowser (line 15241) | class QTextBrowser(QTextEdit): method __init__ (line 15249) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method backward (line 15250) | def backward(self) -> None: ... method backwardHistoryCount (line 15251) | def backwardHistoryCount(self) -> int: ... method clearHistory (line 15252) | def clearHistory(self) -> None: ... method doSetSource (line 15253) | def doSetSource(self, name: PySide2.QtCore.QUrl, type: PySide2.QtGui.Q... method event (line 15254) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method focusNextPrevChild (line 15255) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 15256) | def focusOutEvent(self, ev: PySide2.QtGui.QFocusEvent) -> None: ... method forward (line 15257) | def forward(self) -> None: ... method forwardHistoryCount (line 15258) | def forwardHistoryCount(self) -> int: ... method historyTitle (line 15259) | def historyTitle(self, arg__1: int) -> str: ... method historyUrl (line 15260) | def historyUrl(self, arg__1: int) -> PySide2.QtCore.QUrl: ... method home (line 15261) | def home(self) -> None: ... method isBackwardAvailable (line 15262) | def isBackwardAvailable(self) -> bool: ... method isForwardAvailable (line 15263) | def isForwardAvailable(self) -> bool: ... method keyPressEvent (line 15264) | def keyPressEvent(self, ev: PySide2.QtGui.QKeyEvent) -> None: ... method loadResource (line 15265) | def loadResource(self, type: int, name: PySide2.QtCore.QUrl) -> typing... method mouseMoveEvent (line 15266) | def mouseMoveEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 15267) | def mousePressEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 15268) | def mouseReleaseEvent(self, ev: PySide2.QtGui.QMouseEvent) -> None: ... method openExternalLinks (line 15269) | def openExternalLinks(self) -> bool: ... method openLinks (line 15270) | def openLinks(self) -> bool: ... method paintEvent (line 15271) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method reload (line 15272) | def reload(self) -> None: ... method searchPaths (line 15273) | def searchPaths(self) -> list[str]: ... method setOpenExternalLinks (line 15274) | def setOpenExternalLinks(self, open: bool) -> None: ... method setOpenLinks (line 15275) | def setOpenLinks(self, open: bool) -> None: ... method setSearchPaths (line 15276) | def setSearchPaths(self, paths: typing.Iterable[str]) -> None: ... method setSource (line 15278) | def setSource(self, name: PySide2.QtCore.QUrl, type: PySide2.QtGui.QTe... method setSource (line 15280) | def setSource(self, name: PySide2.QtCore.QUrl) -> None: ... method source (line 15281) | def source(self) -> PySide2.QtCore.QUrl: ... method sourceType (line 15282) | def sourceType(self) -> PySide2.QtGui.QTextDocument.ResourceType: ... class QTextEdit (line 15284) | class QTextEdit(QAbstractScrollArea): class AutoFormatting (line 15285) | class AutoFormatting: method __init__ (line 15287) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15288) | def __and__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormat... method __bool__ (line 15289) | def __bool__(self) -> bool: ... method __eq__ (line 15290) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15291) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15292) | def __gt__(self, other: object) -> bool: ... method __index__ (line 15293) | def __index__(self) -> int: ... method __int__ (line 15294) | def __int__(self) -> int: ... method __invert__ (line 15295) | def __invert__(self) -> QTextEdit.AutoFormatting: ... method __le__ (line 15296) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15297) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15298) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15299) | def __or__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormatt... method __rand__ (line 15300) | def __rand__(self, other: typing.SupportsInt) -> QTextEdit.AutoForma... method __ror__ (line 15301) | def __ror__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormat... method __rxor__ (line 15302) | def __rxor__(self, other: typing.SupportsInt) -> QTextEdit.AutoForma... method __xor__ (line 15303) | def __xor__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormat... class AutoFormattingFlag (line 15305) | class AutoFormattingFlag: method __init__ (line 15312) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 15313) | def __and__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormat... method __bool__ (line 15314) | def __bool__(self) -> bool: ... method __eq__ (line 15315) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15316) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15317) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15318) | def __hash__(self) -> int: ... method __index__ (line 15319) | def __index__(self) -> int: ... method __int__ (line 15320) | def __int__(self) -> int: ... method __invert__ (line 15321) | def __invert__(self) -> QTextEdit.AutoFormatting: ... method __le__ (line 15322) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15323) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 15324) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15325) | def __or__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormatt... method __rand__ (line 15326) | def __rand__(self, other: typing.SupportsInt) -> QTextEdit.AutoForma... method __ror__ (line 15327) | def __ror__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormat... method __rxor__ (line 15328) | def __rxor__(self, other: typing.SupportsInt) -> QTextEdit.AutoForma... method __xor__ (line 15329) | def __xor__(self, other: typing.SupportsInt) -> QTextEdit.AutoFormat... class ExtraSelection (line 15331) | class ExtraSelection(shiboken2.Object): method __init__ (line 15335) | def __init__(self, ExtraSelection: QTextEdit.ExtraSelection) -> None... method __init__ (line 15337) | def __init__(self) -> None: ... method __copy__ (line 15338) | def __copy__(self) -> None: ... class LineWrapMode (line 15340) | class LineWrapMode: method __init__ (line 15348) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15349) | def __add__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMo... method __and__ (line 15350) | def __and__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMo... method __bool__ (line 15351) | def __bool__(self) -> bool: ... method __eq__ (line 15352) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15353) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15354) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15355) | def __hash__(self) -> int: ... method __index__ (line 15356) | def __index__(self) -> int: ... method __int__ (line 15357) | def __int__(self) -> int: ... method __le__ (line 15358) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15359) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15360) | def __mul__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMo... method __ne__ (line 15361) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15362) | def __or__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMod... method __pos__ (line 15363) | def __pos__(self): ... method __radd__ (line 15364) | def __radd__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapM... method __rand__ (line 15365) | def __rand__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapM... method __rmul__ (line 15366) | def __rmul__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapM... method __ror__ (line 15367) | def __ror__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMo... method __rsub__ (line 15368) | def __rsub__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapM... method __rxor__ (line 15369) | def __rxor__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapM... method __sub__ (line 15370) | def __sub__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMo... method __xor__ (line 15371) | def __xor__(self, other: typing.SupportsInt) -> QTextEdit.LineWrapMo... method __init__ (line 15388) | def __init__(self, text: str, parent: QWidget | None = ..., acceptDrop... method __init__ (line 15390) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method acceptRichText (line 15391) | def acceptRichText(self) -> bool: ... method alignment (line 15392) | def alignment(self) -> PySide2.QtCore.Qt.Alignment | PySide2.QtCore.Qt... method anchorAt (line 15393) | def anchorAt(self, pos: PySide2.QtCore.QPoint) -> str: ... method append (line 15394) | def append(self, text: str) -> None: ... method autoFormatting (line 15395) | def autoFormatting(self) -> QTextEdit.AutoFormatting | QTextEdit.AutoF... method canInsertFromMimeData (line 15396) | def canInsertFromMimeData(self, source: PySide2.QtCore.QMimeData) -> b... method canPaste (line 15397) | def canPaste(self) -> bool: ... method changeEvent (line 15398) | def changeEvent(self, e: PySide2.QtCore.QEvent) -> None: ... method clear (line 15399) | def clear(self) -> None: ... method contextMenuEvent (line 15400) | def contextMenuEvent(self, e: PySide2.QtGui.QContextMenuEvent) -> None... method copy (line 15401) | def copy(self) -> None: ... method createMimeDataFromSelection (line 15402) | def createMimeDataFromSelection(self) -> PySide2.QtCore.QMimeData: ... method createStandardContextMenu (line 15404) | def createStandardContextMenu(self, position: PySide2.QtCore.QPoint) -... method createStandardContextMenu (line 15406) | def createStandardContextMenu(self) -> QMenu: ... method currentCharFormat (line 15407) | def currentCharFormat(self) -> PySide2.QtGui.QTextCharFormat: ... method currentFont (line 15408) | def currentFont(self) -> PySide2.QtGui.QFont: ... method cursorForPosition (line 15409) | def cursorForPosition(self, pos: PySide2.QtCore.QPoint) -> PySide2.QtG... method cursorRect (line 15411) | def cursorRect(self, cursor: PySide2.QtGui.QTextCursor) -> PySide2.QtC... method cursorRect (line 15413) | def cursorRect(self) -> PySide2.QtCore.QRect: ... method cursorWidth (line 15414) | def cursorWidth(self) -> int: ... method cut (line 15415) | def cut(self) -> None: ... method doSetTextCursor (line 15416) | def doSetTextCursor(self, cursor: PySide2.QtGui.QTextCursor) -> None: ... method document (line 15417) | def document(self) -> PySide2.QtGui.QTextDocument: ... method documentTitle (line 15418) | def documentTitle(self) -> str: ... method dragEnterEvent (line 15419) | def dragEnterEvent(self, e: PySide2.QtGui.QDragEnterEvent) -> None: ... method dragLeaveEvent (line 15420) | def dragLeaveEvent(self, e: PySide2.QtGui.QDragLeaveEvent) -> None: ... method dragMoveEvent (line 15421) | def dragMoveEvent(self, e: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 15422) | def dropEvent(self, e: PySide2.QtGui.QDropEvent) -> None: ... method ensureCursorVisible (line 15423) | def ensureCursorVisible(self) -> None: ... method event (line 15424) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method extraSelections (line 15425) | def extraSelections(self) -> list[QTextEdit.ExtraSelection]: ... method find (line 15427) | def find(self, exp: PySide2.QtCore.QRegExp, options: PySide2.QtGui.QTe... method find (line 15429) | def find(self, exp: PySide2.QtCore.QRegularExpression, options: PySide... method find (line 15431) | def find(self, exp: str, options: PySide2.QtGui.QTextDocument.FindFlag... method focusInEvent (line 15432) | def focusInEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextPrevChild (line 15433) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 15434) | def focusOutEvent(self, e: PySide2.QtGui.QFocusEvent) -> None: ... method fontFamily (line 15435) | def fontFamily(self) -> str: ... method fontItalic (line 15436) | def fontItalic(self) -> bool: ... method fontPointSize (line 15437) | def fontPointSize(self) -> float: ... method fontUnderline (line 15438) | def fontUnderline(self) -> bool: ... method fontWeight (line 15439) | def fontWeight(self) -> int: ... method inputMethodEvent (line 15440) | def inputMethodEvent(self, arg__1: PySide2.QtGui.QInputMethodEvent) ->... method inputMethodQuery (line 15442) | def inputMethodQuery(self, query: PySide2.QtCore.Qt.InputMethodQuery, ... method inputMethodQuery (line 15444) | def inputMethodQuery(self, property: PySide2.QtCore.Qt.InputMethodQuer... method insertFromMimeData (line 15445) | def insertFromMimeData(self, source: PySide2.QtCore.QMimeData) -> None... method insertHtml (line 15446) | def insertHtml(self, text: str) -> None: ... method insertPlainText (line 15447) | def insertPlainText(self, text: str) -> None: ... method isReadOnly (line 15448) | def isReadOnly(self) -> bool: ... method isUndoRedoEnabled (line 15449) | def isUndoRedoEnabled(self) -> bool: ... method keyPressEvent (line 15450) | def keyPressEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 15451) | def keyReleaseEvent(self, e: PySide2.QtGui.QKeyEvent) -> None: ... method lineWrapColumnOrWidth (line 15452) | def lineWrapColumnOrWidth(self) -> int: ... method lineWrapMode (line 15453) | def lineWrapMode(self) -> QTextEdit.LineWrapMode: ... method loadResource (line 15454) | def loadResource(self, type: int, name: PySide2.QtCore.QUrl) -> typing... method mergeCurrentCharFormat (line 15455) | def mergeCurrentCharFormat(self, modifier: PySide2.QtGui.QTextCharForm... method mouseDoubleClickEvent (line 15456) | def mouseDoubleClickEvent(self, e: PySide2.QtGui.QMouseEvent) -> None:... method mouseMoveEvent (line 15457) | def mouseMoveEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 15458) | def mousePressEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 15459) | def mouseReleaseEvent(self, e: PySide2.QtGui.QMouseEvent) -> None: ... method moveCursor (line 15460) | def moveCursor(self, operation: PySide2.QtGui.QTextCursor.MoveOperatio... method overwriteMode (line 15461) | def overwriteMode(self) -> bool: ... method paintEvent (line 15462) | def paintEvent(self, e: PySide2.QtGui.QPaintEvent) -> None: ... method paste (line 15463) | def paste(self) -> None: ... method placeholderText (line 15464) | def placeholderText(self) -> str: ... method print_ (line 15465) | def print_(self, printer: PySide2.QtGui.QPagedPaintDevice) -> None: ... method redo (line 15466) | def redo(self) -> None: ... method resizeEvent (line 15467) | def resizeEvent(self, e: PySide2.QtGui.QResizeEvent) -> None: ... method scrollContentsBy (line 15468) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method scrollToAnchor (line 15469) | def scrollToAnchor(self, name: str) -> None: ... method selectAll (line 15470) | def selectAll(self) -> None: ... method setAcceptRichText (line 15471) | def setAcceptRichText(self, accept: bool) -> None: ... method setAlignment (line 15472) | def setAlignment(self, a: PySide2.QtCore.Qt.Alignment | PySide2.QtCore... method setAutoFormatting (line 15473) | def setAutoFormatting(self, features: QTextEdit.AutoFormatting | QText... method setCurrentCharFormat (line 15474) | def setCurrentCharFormat(self, format: PySide2.QtGui.QTextCharFormat) ... method setCurrentFont (line 15475) | def setCurrentFont(self, f: PySide2.QtGui.QFont) -> None: ... method setCursorWidth (line 15476) | def setCursorWidth(self, width: int) -> None: ... method setDocument (line 15477) | def setDocument(self, document: PySide2.QtGui.QTextDocument) -> None: ... method setDocumentTitle (line 15478) | def setDocumentTitle(self, title: str) -> None: ... method setExtraSelections (line 15479) | def setExtraSelections(self, selections: typing.Iterable[QTextEdit.Ext... method setFontFamily (line 15480) | def setFontFamily(self, fontFamily: str) -> None: ... method setFontItalic (line 15481) | def setFontItalic(self, b: bool) -> None: ... method setFontPointSize (line 15482) | def setFontPointSize(self, s: float) -> None: ... method setFontUnderline (line 15483) | def setFontUnderline(self, b: bool) -> None: ... method setFontWeight (line 15484) | def setFontWeight(self, w: int | PySide2.QtGui.QFont.Weight) -> None: ... method setHtml (line 15485) | def setHtml(self, text: str) -> None: ... method setLineWrapColumnOrWidth (line 15486) | def setLineWrapColumnOrWidth(self, w: int) -> None: ... method setLineWrapMode (line 15487) | def setLineWrapMode(self, mode: QTextEdit.LineWrapMode) -> None: ... method setMarkdown (line 15488) | def setMarkdown(self, markdown: str) -> None: ... method setOverwriteMode (line 15489) | def setOverwriteMode(self, overwrite: bool) -> None: ... method setPlaceholderText (line 15490) | def setPlaceholderText(self, placeholderText: str) -> None: ... method setPlainText (line 15491) | def setPlainText(self, text: str) -> None: ... method setReadOnly (line 15492) | def setReadOnly(self, ro: bool) -> None: ... method setTabChangesFocus (line 15493) | def setTabChangesFocus(self, b: bool) -> None: ... method setTabStopDistance (line 15494) | def setTabStopDistance(self, distance: float) -> None: ... method setTabStopWidth (line 15495) | def setTabStopWidth(self, width: int) -> None: ... method setText (line 15496) | def setText(self, text: str) -> None: ... method setTextBackgroundColor (line 15497) | def setTextBackgroundColor(self, c: PySide2.QtGui.QColor | PySide2.QtC... method setTextColor (line 15498) | def setTextColor(self, c: PySide2.QtGui.QColor | PySide2.QtCore.Qt.Glo... method setTextCursor (line 15499) | def setTextCursor(self, cursor: PySide2.QtGui.QTextCursor) -> None: ... method setTextInteractionFlags (line 15500) | def setTextInteractionFlags(self, flags: PySide2.QtCore.Qt.TextInterac... method setUndoRedoEnabled (line 15501) | def setUndoRedoEnabled(self, enable: bool) -> None: ... method setWordWrapMode (line 15502) | def setWordWrapMode(self, policy: PySide2.QtGui.QTextOption.WrapMode) ... method showEvent (line 15503) | def showEvent(self, arg__1: PySide2.QtGui.QShowEvent) -> None: ... method tabChangesFocus (line 15504) | def tabChangesFocus(self) -> bool: ... method tabStopDistance (line 15505) | def tabStopDistance(self) -> float: ... method tabStopWidth (line 15506) | def tabStopWidth(self) -> int: ... method textBackgroundColor (line 15507) | def textBackgroundColor(self) -> PySide2.QtGui.QColor: ... method textColor (line 15508) | def textColor(self) -> PySide2.QtGui.QColor: ... method textCursor (line 15509) | def textCursor(self) -> PySide2.QtGui.QTextCursor: ... method textInteractionFlags (line 15510) | def textInteractionFlags(self) -> PySide2.QtCore.Qt.TextInteractionFla... method timerEvent (line 15511) | def timerEvent(self, e: PySide2.QtCore.QTimerEvent) -> None: ... method toHtml (line 15512) | def toHtml(self) -> str: ... method toMarkdown (line 15513) | def toMarkdown(self, features: PySide2.QtGui.QTextDocument.MarkdownFea... method toPlainText (line 15514) | def toPlainText(self) -> str: ... method undo (line 15515) | def undo(self) -> None: ... method wheelEvent (line 15516) | def wheelEvent(self, e: PySide2.QtGui.QWheelEvent) -> None: ... method wordWrapMode (line 15517) | def wordWrapMode(self) -> PySide2.QtGui.QTextOption.WrapMode: ... method zoomIn (line 15518) | def zoomIn(self, range: int = ...) -> None: ... method zoomInF (line 15519) | def zoomInF(self, range: float) -> None: ... method zoomOut (line 15520) | def zoomOut(self, range: int = ...) -> None: ... class QTileRules (line 15522) | class QTileRules(shiboken2.Object): method __init__ (line 15526) | def __init__(self, horizontalRule: PySide2.QtCore.Qt.TileRule, vertica... method __init__ (line 15528) | def __init__(self, rule: PySide2.QtCore.Qt.TileRule = ...) -> None: ... method __init__ (line 15530) | def __init__(self, QTileRules: QTileRules) -> None: ... method __copy__ (line 15531) | def __copy__(self) -> None: ... class QTimeEdit (line 15533) | class QTimeEdit(QDateTimeEdit): method __init__ (line 15537) | def __init__(self, time: PySide2.QtCore.QTime, parent: QWidget | None ... method __init__ (line 15539) | def __init__(self, parent: QWidget | None = ..., accelerated: bool = .... class QToolBar (line 15541) | class QToolBar(QWidget): method __init__ (line 15552) | def __init__(self, title: str, parent: QWidget | None = ..., acceptDro... method __init__ (line 15554) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method actionAt (line 15556) | def actionAt(self, x: int, y: int) -> QAction: ... method actionAt (line 15558) | def actionAt(self, p: PySide2.QtCore.QPoint) -> QAction: ... method actionEvent (line 15559) | def actionEvent(self, event: PySide2.QtGui.QActionEvent) -> None: ... method actionGeometry (line 15560) | def actionGeometry(self, action: QAction) -> PySide2.QtCore.QRect: ... method addAction (line 15562) | def addAction(self, icon: PySide2.QtGui.QIcon, text: str, receiver: Py... method addAction (line 15564) | def addAction(self, text: str, receiver: PySide2.QtCore.QObject, membe... method addAction (line 15566) | def addAction(self, icon: PySide2.QtGui.QIcon, text: str) -> QAction: ... method addAction (line 15568) | def addAction(self, text: str) -> QAction: ... method addAction (line 15570) | def addAction(self, arg__1: QAction) -> None: ... method addSeparator (line 15571) | def addSeparator(self) -> QAction: ... method addWidget (line 15572) | def addWidget(self, widget: QWidget) -> QAction: ... method allowedAreas (line 15573) | def allowedAreas(self) -> PySide2.QtCore.Qt.ToolBarAreas | PySide2.QtC... method changeEvent (line 15574) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method clear (line 15575) | def clear(self) -> None: ... method event (line 15576) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method iconSize (line 15577) | def iconSize(self) -> PySide2.QtCore.QSize: ... method initStyleOption (line 15578) | def initStyleOption(self, option: QStyleOptionToolBar) -> None: ... method insertSeparator (line 15579) | def insertSeparator(self, before: QAction) -> QAction: ... method insertWidget (line 15580) | def insertWidget(self, before: QAction, widget: QWidget) -> QAction: ... method isAreaAllowed (line 15581) | def isAreaAllowed(self, area: PySide2.QtCore.Qt.ToolBarArea) -> bool: ... method isFloatable (line 15582) | def isFloatable(self) -> bool: ... method isFloating (line 15583) | def isFloating(self) -> bool: ... method isMovable (line 15584) | def isMovable(self) -> bool: ... method orientation (line 15585) | def orientation(self) -> PySide2.QtCore.Qt.Orientation: ... method paintEvent (line 15586) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method setAllowedAreas (line 15587) | def setAllowedAreas(self, areas: PySide2.QtCore.Qt.ToolBarAreas | PySi... method setFloatable (line 15588) | def setFloatable(self, floatable: bool) -> None: ... method setIconSize (line 15589) | def setIconSize(self, iconSize: PySide2.QtCore.QSize) -> None: ... method setMovable (line 15590) | def setMovable(self, movable: bool) -> None: ... method setOrientation (line 15591) | def setOrientation(self, orientation: PySide2.QtCore.Qt.Orientation) -... method setToolButtonStyle (line 15592) | def setToolButtonStyle(self, toolButtonStyle: PySide2.QtCore.Qt.ToolBu... method toggleViewAction (line 15593) | def toggleViewAction(self) -> QAction: ... method toolButtonStyle (line 15594) | def toolButtonStyle(self) -> PySide2.QtCore.Qt.ToolButtonStyle: ... method widgetForAction (line 15595) | def widgetForAction(self, action: QAction) -> QWidget: ... class QToolBox (line 15597) | class QToolBox(QFrame): method __init__ (line 15600) | def __init__(self, parent: QWidget | None = ..., f: PySide2.QtCore.Qt.... method addItem (line 15602) | def addItem(self, widget: QWidget, icon: PySide2.QtGui.QIcon, text: st... method addItem (line 15604) | def addItem(self, widget: QWidget, text: str) -> int: ... method changeEvent (line 15605) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method count (line 15606) | def count(self) -> int: ... method currentIndex (line 15607) | def currentIndex(self) -> int: ... method currentWidget (line 15608) | def currentWidget(self) -> QWidget: ... method event (line 15609) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method indexOf (line 15610) | def indexOf(self, widget: QWidget) -> int: ... method insertItem (line 15612) | def insertItem(self, index: int, widget: QWidget, icon: PySide2.QtGui.... method insertItem (line 15614) | def insertItem(self, index: int, widget: QWidget, text: str) -> int: ... method isItemEnabled (line 15615) | def isItemEnabled(self, index: int) -> bool: ... method itemIcon (line 15616) | def itemIcon(self, index: int) -> PySide2.QtGui.QIcon: ... method itemInserted (line 15617) | def itemInserted(self, index: int) -> None: ... method itemRemoved (line 15618) | def itemRemoved(self, index: int) -> None: ... method itemText (line 15619) | def itemText(self, index: int) -> str: ... method itemToolTip (line 15620) | def itemToolTip(self, index: int) -> str: ... method removeItem (line 15621) | def removeItem(self, index: int) -> None: ... method setCurrentIndex (line 15622) | def setCurrentIndex(self, index: int) -> None: ... method setCurrentWidget (line 15623) | def setCurrentWidget(self, widget: QWidget) -> None: ... method setItemEnabled (line 15624) | def setItemEnabled(self, index: int, enabled: bool) -> None: ... method setItemIcon (line 15625) | def setItemIcon(self, index: int, icon: PySide2.QtGui.QIcon) -> None: ... method setItemText (line 15626) | def setItemText(self, index: int, text: str) -> None: ... method setItemToolTip (line 15627) | def setItemToolTip(self, index: int, toolTip: str) -> None: ... method showEvent (line 15628) | def showEvent(self, e: PySide2.QtGui.QShowEvent) -> None: ... method widget (line 15629) | def widget(self, index: int) -> QWidget: ... class QToolButton (line 15631) | class QToolButton(QAbstractButton): class ToolButtonPopupMode (line 15632) | class ToolButtonPopupMode: method __init__ (line 15639) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15640) | def __add__(self, other: typing.SupportsInt) -> QToolButton.ToolButt... method __and__ (line 15641) | def __and__(self, other: typing.SupportsInt) -> QToolButton.ToolButt... method __bool__ (line 15642) | def __bool__(self) -> bool: ... method __eq__ (line 15643) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15644) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15645) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15646) | def __hash__(self) -> int: ... method __index__ (line 15647) | def __index__(self) -> int: ... method __int__ (line 15648) | def __int__(self) -> int: ... method __le__ (line 15649) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15650) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15651) | def __mul__(self, other: typing.SupportsInt) -> QToolButton.ToolButt... method __ne__ (line 15652) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15653) | def __or__(self, other: typing.SupportsInt) -> QToolButton.ToolButto... method __pos__ (line 15654) | def __pos__(self): ... method __radd__ (line 15655) | def __radd__(self, other: typing.SupportsInt) -> QToolButton.ToolBut... method __rand__ (line 15656) | def __rand__(self, other: typing.SupportsInt) -> QToolButton.ToolBut... method __rmul__ (line 15657) | def __rmul__(self, other: typing.SupportsInt) -> QToolButton.ToolBut... method __ror__ (line 15658) | def __ror__(self, other: typing.SupportsInt) -> QToolButton.ToolButt... method __rsub__ (line 15659) | def __rsub__(self, other: typing.SupportsInt) -> QToolButton.ToolBut... method __rxor__ (line 15660) | def __rxor__(self, other: typing.SupportsInt) -> QToolButton.ToolBut... method __sub__ (line 15661) | def __sub__(self, other: typing.SupportsInt) -> QToolButton.ToolButt... method __xor__ (line 15662) | def __xor__(self, other: typing.SupportsInt) -> QToolButton.ToolButt... method __init__ (line 15668) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method actionEvent (line 15669) | def actionEvent(self, arg__1: PySide2.QtGui.QActionEvent) -> None: ... method arrowType (line 15670) | def arrowType(self) -> PySide2.QtCore.Qt.ArrowType: ... method autoRaise (line 15671) | def autoRaise(self) -> bool: ... method changeEvent (line 15672) | def changeEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method defaultAction (line 15673) | def defaultAction(self) -> QAction: ... method enterEvent (line 15674) | def enterEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method event (line 15675) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method hitButton (line 15676) | def hitButton(self, pos: PySide2.QtCore.QPoint) -> bool: ... method initStyleOption (line 15677) | def initStyleOption(self, option: QStyleOptionToolButton) -> None: ... method leaveEvent (line 15678) | def leaveEvent(self, arg__1: PySide2.QtCore.QEvent) -> None: ... method menu (line 15679) | def menu(self) -> QMenu: ... method minimumSizeHint (line 15680) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method mousePressEvent (line 15681) | def mousePressEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 15682) | def mouseReleaseEvent(self, arg__1: PySide2.QtGui.QMouseEvent) -> None... method nextCheckState (line 15683) | def nextCheckState(self) -> None: ... method paintEvent (line 15684) | def paintEvent(self, arg__1: PySide2.QtGui.QPaintEvent) -> None: ... method popupMode (line 15685) | def popupMode(self) -> QToolButton.ToolButtonPopupMode: ... method setArrowType (line 15686) | def setArrowType(self, type: PySide2.QtCore.Qt.ArrowType) -> None: ... method setAutoRaise (line 15687) | def setAutoRaise(self, enable: bool) -> None: ... method setDefaultAction (line 15688) | def setDefaultAction(self, arg__1: QAction) -> None: ... method setMenu (line 15689) | def setMenu(self, menu: QMenu) -> None: ... method setPopupMode (line 15690) | def setPopupMode(self, mode: QToolButton.ToolButtonPopupMode) -> None:... method setToolButtonStyle (line 15691) | def setToolButtonStyle(self, style: PySide2.QtCore.Qt.ToolButtonStyle)... method showMenu (line 15692) | def showMenu(self) -> None: ... method sizeHint (line 15693) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method timerEvent (line 15694) | def timerEvent(self, arg__1: PySide2.QtCore.QTimerEvent) -> None: ... method toolButtonStyle (line 15695) | def toolButtonStyle(self) -> PySide2.QtCore.Qt.ToolButtonStyle: ... class QToolTip (line 15697) | class QToolTip(shiboken2.Object): method __init__ (line 15699) | def __init__(cls, *args, **kwargs) -> None: ... method font (line 15701) | def font() -> PySide2.QtGui.QFont: ... method hideText (line 15703) | def hideText() -> None: ... method isVisible (line 15705) | def isVisible() -> bool: ... method palette (line 15707) | def palette() -> PySide2.QtGui.QPalette: ... method setFont (line 15709) | def setFont(arg__1: PySide2.QtGui.QFont) -> None: ... method setPalette (line 15711) | def setPalette(arg__1: PySide2.QtGui.QPalette) -> None: ... method showText (line 15714) | def showText(pos: PySide2.QtCore.QPoint, text: str, w: QWidget, rect: ... method showText (line 15717) | def showText(pos: PySide2.QtCore.QPoint, text: str, w: QWidget, rect: ... method showText (line 15720) | def showText(pos: PySide2.QtCore.QPoint, text: str, w: QWidget | None ... method text (line 15722) | def text() -> str: ... class QTreeView (line 15724) | class QTreeView(QAbstractItemView): method __init__ (line 15728) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method allColumnsShowFocus (line 15729) | def allColumnsShowFocus(self) -> bool: ... method autoExpandDelay (line 15730) | def autoExpandDelay(self) -> int: ... method collapse (line 15731) | def collapse(self, index: PySide2.QtCore.QModelIndex) -> None: ... method collapseAll (line 15732) | def collapseAll(self) -> None: ... method columnAt (line 15733) | def columnAt(self, x: int) -> int: ... method columnCountChanged (line 15734) | def columnCountChanged(self, oldCount: int, newCount: int) -> None: ... method columnMoved (line 15735) | def columnMoved(self) -> None: ... method columnResized (line 15736) | def columnResized(self, column: int, oldSize: int, newSize: int) -> No... method columnViewportPosition (line 15737) | def columnViewportPosition(self, column: int) -> int: ... method columnWidth (line 15738) | def columnWidth(self, column: int) -> int: ... method currentChanged (line 15739) | def currentChanged(self, current: PySide2.QtCore.QModelIndex, previous... method dataChanged (line 15740) | def dataChanged(self, topLeft: PySide2.QtCore.QModelIndex, bottomRight... method doItemsLayout (line 15741) | def doItemsLayout(self) -> None: ... method dragMoveEvent (line 15742) | def dragMoveEvent(self, event: PySide2.QtGui.QDragMoveEvent) -> None: ... method drawBranches (line 15743) | def drawBranches(self, painter: PySide2.QtGui.QPainter, rect: PySide2.... method drawRow (line 15744) | def drawRow(self, painter: PySide2.QtGui.QPainter, options: QStyleOpti... method drawTree (line 15745) | def drawTree(self, painter: PySide2.QtGui.QPainter, region: PySide2.Qt... method expand (line 15746) | def expand(self, index: PySide2.QtCore.QModelIndex) -> None: ... method expandAll (line 15747) | def expandAll(self) -> None: ... method expandRecursively (line 15748) | def expandRecursively(self, index: PySide2.QtCore.QModelIndex, depth: ... method expandToDepth (line 15749) | def expandToDepth(self, depth: int) -> None: ... method expandsOnDoubleClick (line 15750) | def expandsOnDoubleClick(self) -> bool: ... method header (line 15751) | def header(self) -> QHeaderView: ... method hideColumn (line 15752) | def hideColumn(self, column: int) -> None: ... method horizontalOffset (line 15753) | def horizontalOffset(self) -> int: ... method horizontalScrollbarAction (line 15754) | def horizontalScrollbarAction(self, action: int) -> None: ... method indentation (line 15755) | def indentation(self) -> int: ... method indexAbove (line 15756) | def indexAbove(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method indexAt (line 15757) | def indexAt(self, p: PySide2.QtCore.QPoint) -> PySide2.QtCore.QModelIn... method indexBelow (line 15758) | def indexBelow(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method indexRowSizeHint (line 15759) | def indexRowSizeHint(self, index: PySide2.QtCore.QModelIndex) -> int: ... method isAnimated (line 15760) | def isAnimated(self) -> bool: ... method isColumnHidden (line 15761) | def isColumnHidden(self, column: int) -> bool: ... method isExpanded (line 15762) | def isExpanded(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isFirstColumnSpanned (line 15763) | def isFirstColumnSpanned(self, row: int, parent: PySide2.QtCore.QModel... method isHeaderHidden (line 15764) | def isHeaderHidden(self) -> bool: ... method isIndexHidden (line 15765) | def isIndexHidden(self, index: PySide2.QtCore.QModelIndex) -> bool: ... method isRowHidden (line 15766) | def isRowHidden(self, row: int, parent: PySide2.QtCore.QModelIndex) ->... method isSortingEnabled (line 15767) | def isSortingEnabled(self) -> bool: ... method itemsExpandable (line 15768) | def itemsExpandable(self) -> bool: ... method keyPressEvent (line 15769) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyboardSearch (line 15770) | def keyboardSearch(self, search: str) -> None: ... method mouseDoubleClickEvent (line 15771) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) -> N... method mouseMoveEvent (line 15772) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 15773) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 15774) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method moveCursor (line 15775) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method paintEvent (line 15776) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method reexpand (line 15777) | def reexpand(self) -> None: ... method reset (line 15778) | def reset(self) -> None: ... method resetIndentation (line 15779) | def resetIndentation(self) -> None: ... method resizeColumnToContents (line 15780) | def resizeColumnToContents(self, column: int) -> None: ... method rootIsDecorated (line 15781) | def rootIsDecorated(self) -> bool: ... method rowHeight (line 15782) | def rowHeight(self, index: PySide2.QtCore.QModelIndex) -> int: ... method rowsAboutToBeRemoved (line 15783) | def rowsAboutToBeRemoved(self, parent: PySide2.QtCore.QModelIndex, sta... method rowsInserted (line 15784) | def rowsInserted(self, parent: PySide2.QtCore.QModelIndex, start: int,... method rowsRemoved (line 15785) | def rowsRemoved(self, parent: PySide2.QtCore.QModelIndex, first: int, ... method scrollContentsBy (line 15786) | def scrollContentsBy(self, dx: int, dy: int) -> None: ... method scrollTo (line 15787) | def scrollTo(self, index: PySide2.QtCore.QModelIndex, hint: QAbstractI... method selectAll (line 15788) | def selectAll(self) -> None: ... method selectedIndexes (line 15789) | def selectedIndexes(self) -> list[PySide2.QtCore.QModelIndex]: ... method selectionChanged (line 15790) | def selectionChanged(self, selected: PySide2.QtCore.QItemSelection, de... method setAllColumnsShowFocus (line 15791) | def setAllColumnsShowFocus(self, enable: bool) -> None: ... method setAnimated (line 15792) | def setAnimated(self, enable: bool) -> None: ... method setAutoExpandDelay (line 15793) | def setAutoExpandDelay(self, delay: int) -> None: ... method setColumnHidden (line 15794) | def setColumnHidden(self, column: int, hide: bool) -> None: ... method setColumnWidth (line 15795) | def setColumnWidth(self, column: int, width: int) -> None: ... method setExpanded (line 15796) | def setExpanded(self, index: PySide2.QtCore.QModelIndex, expand: bool)... method setExpandsOnDoubleClick (line 15797) | def setExpandsOnDoubleClick(self, enable: bool) -> None: ... method setFirstColumnSpanned (line 15798) | def setFirstColumnSpanned(self, row: int, parent: PySide2.QtCore.QMode... method setHeader (line 15799) | def setHeader(self, header: QHeaderView) -> None: ... method setHeaderHidden (line 15800) | def setHeaderHidden(self, hide: bool) -> None: ... method setIndentation (line 15801) | def setIndentation(self, i: int) -> None: ... method setItemsExpandable (line 15802) | def setItemsExpandable(self, enable: bool) -> None: ... method setModel (line 15803) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setRootIndex (line 15804) | def setRootIndex(self, index: PySide2.QtCore.QModelIndex) -> None: ... method setRootIsDecorated (line 15805) | def setRootIsDecorated(self, show: bool) -> None: ... method setRowHidden (line 15806) | def setRowHidden(self, row: int, parent: PySide2.QtCore.QModelIndex, h... method setSelection (line 15807) | def setSelection(self, rect: PySide2.QtCore.QRect, command: PySide2.Qt... method setSelectionModel (line 15808) | def setSelectionModel(self, selectionModel: PySide2.QtCore.QItemSelect... method setSortingEnabled (line 15809) | def setSortingEnabled(self, enable: bool) -> None: ... method setTreePosition (line 15810) | def setTreePosition(self, logicalIndex: int) -> None: ... method setUniformRowHeights (line 15811) | def setUniformRowHeights(self, uniform: bool) -> None: ... method setWordWrap (line 15812) | def setWordWrap(self, on: bool) -> None: ... method showColumn (line 15813) | def showColumn(self, column: int) -> None: ... method sizeHintForColumn (line 15814) | def sizeHintForColumn(self, column: int) -> int: ... method sortByColumn (line 15816) | def sortByColumn(self, column: int, order: PySide2.QtCore.Qt.SortOrder... method sortByColumn (line 15818) | def sortByColumn(self, column: int) -> None: ... method timerEvent (line 15819) | def timerEvent(self, event: PySide2.QtCore.QTimerEvent) -> None: ... method treePosition (line 15820) | def treePosition(self) -> int: ... method uniformRowHeights (line 15821) | def uniformRowHeights(self) -> bool: ... method updateGeometries (line 15822) | def updateGeometries(self) -> None: ... method verticalOffset (line 15823) | def verticalOffset(self) -> int: ... method verticalScrollbarValueChanged (line 15824) | def verticalScrollbarValueChanged(self, value: int) -> None: ... method viewportEvent (line 15825) | def viewportEvent(self, event: PySide2.QtCore.QEvent) -> bool: ... method viewportSizeHint (line 15826) | def viewportSizeHint(self) -> PySide2.QtCore.QSize: ... method visualRect (line 15827) | def visualRect(self, index: PySide2.QtCore.QModelIndex) -> PySide2.QtC... method visualRegionForSelection (line 15828) | def visualRegionForSelection(self, selection: PySide2.QtCore.QItemSele... method wordWrap (line 15829) | def wordWrap(self) -> bool: ... class QTreeWidget (line 15831) | class QTreeWidget(QTreeView): method __init__ (line 15843) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method addTopLevelItem (line 15844) | def addTopLevelItem(self, item: QTreeWidgetItem) -> None: ... method addTopLevelItems (line 15845) | def addTopLevelItems(self, items: typing.Iterable[QTreeWidgetItem]) ->... method clear (line 15846) | def clear(self) -> None: ... method closePersistentEditor (line 15848) | def closePersistentEditor(self, item: QTreeWidgetItem, column: int = .... method closePersistentEditor (line 15850) | def closePersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> ... method collapseItem (line 15851) | def collapseItem(self, item: QTreeWidgetItem) -> None: ... method columnCount (line 15852) | def columnCount(self) -> int: ... method currentColumn (line 15853) | def currentColumn(self) -> int: ... method currentItem (line 15854) | def currentItem(self) -> QTreeWidgetItem: ... method dropEvent (line 15855) | def dropEvent(self, event: PySide2.QtGui.QDropEvent) -> None: ... method dropMimeData (line 15856) | def dropMimeData(self, parent: QTreeWidgetItem, index: int, data: PySi... method editItem (line 15857) | def editItem(self, item: QTreeWidgetItem, column: int = ...) -> None: ... method event (line 15858) | def event(self, e: PySide2.QtCore.QEvent) -> bool: ... method expandItem (line 15859) | def expandItem(self, item: QTreeWidgetItem) -> None: ... method findItems (line 15860) | def findItems(self, text: str, flags: PySide2.QtCore.Qt.MatchFlags | P... method headerItem (line 15861) | def headerItem(self) -> QTreeWidgetItem: ... method indexFromItem (line 15862) | def indexFromItem(self, item: QTreeWidgetItem, column: int = ...) -> P... method indexOfTopLevelItem (line 15863) | def indexOfTopLevelItem(self, item: QTreeWidgetItem) -> int: ... method insertTopLevelItem (line 15864) | def insertTopLevelItem(self, index: int, item: QTreeWidgetItem) -> Non... method insertTopLevelItems (line 15865) | def insertTopLevelItems(self, index: int, items: typing.Iterable[QTree... method invisibleRootItem (line 15866) | def invisibleRootItem(self) -> QTreeWidgetItem: ... method isFirstItemColumnSpanned (line 15867) | def isFirstItemColumnSpanned(self, item: QTreeWidgetItem) -> bool: ... method isItemExpanded (line 15868) | def isItemExpanded(self, item: QTreeWidgetItem) -> bool: ... method isItemHidden (line 15869) | def isItemHidden(self, item: QTreeWidgetItem) -> bool: ... method isItemSelected (line 15870) | def isItemSelected(self, item: QTreeWidgetItem) -> bool: ... method isPersistentEditorOpen (line 15872) | def isPersistentEditorOpen(self, item: QTreeWidgetItem, column: int = ... method isPersistentEditorOpen (line 15874) | def isPersistentEditorOpen(self, index: PySide2.QtCore.QModelIndex) ->... method itemAbove (line 15875) | def itemAbove(self, item: QTreeWidgetItem) -> QTreeWidgetItem: ... method itemAt (line 15877) | def itemAt(self, x: int, y: int) -> QTreeWidgetItem: ... method itemAt (line 15879) | def itemAt(self, p: PySide2.QtCore.QPoint) -> QTreeWidgetItem: ... method itemBelow (line 15880) | def itemBelow(self, item: QTreeWidgetItem) -> QTreeWidgetItem: ... method itemFromIndex (line 15881) | def itemFromIndex(self, index: PySide2.QtCore.QModelIndex) -> QTreeWid... method itemWidget (line 15882) | def itemWidget(self, item: QTreeWidgetItem, column: int) -> QWidget: ... method items (line 15883) | def items(self, data: PySide2.QtCore.QMimeData) -> list[QTreeWidgetIte... method mimeData (line 15884) | def mimeData(self, items: typing.Iterable[QTreeWidgetItem]) -> PySide2... method mimeTypes (line 15885) | def mimeTypes(self) -> list[str]: ... method openPersistentEditor (line 15887) | def openPersistentEditor(self, item: QTreeWidgetItem, column: int = ..... method openPersistentEditor (line 15889) | def openPersistentEditor(self, index: PySide2.QtCore.QModelIndex) -> N... method removeItemWidget (line 15890) | def removeItemWidget(self, item: QTreeWidgetItem, column: int) -> None... method scrollToItem (line 15891) | def scrollToItem(self, item: QTreeWidgetItem, hint: QAbstractItemView.... method selectedItems (line 15892) | def selectedItems(self) -> list[QTreeWidgetItem]: ... method setColumnCount (line 15893) | def setColumnCount(self, columns: int) -> None: ... method setCurrentItem (line 15895) | def setCurrentItem(self, item: QTreeWidgetItem, column: int, command: ... method setCurrentItem (line 15897) | def setCurrentItem(self, item: QTreeWidgetItem, column: int) -> None: ... method setCurrentItem (line 15899) | def setCurrentItem(self, item: QTreeWidgetItem) -> None: ... method setFirstItemColumnSpanned (line 15900) | def setFirstItemColumnSpanned(self, item: QTreeWidgetItem, span: bool)... method setHeaderItem (line 15901) | def setHeaderItem(self, item: QTreeWidgetItem) -> None: ... method setHeaderLabel (line 15902) | def setHeaderLabel(self, label: str) -> None: ... method setHeaderLabels (line 15903) | def setHeaderLabels(self, labels: typing.Iterable[str]) -> None: ... method setItemExpanded (line 15904) | def setItemExpanded(self, item: QTreeWidgetItem, expand: bool) -> None... method setItemHidden (line 15905) | def setItemHidden(self, item: QTreeWidgetItem, hide: bool) -> None: ... method setItemSelected (line 15906) | def setItemSelected(self, item: QTreeWidgetItem, select: bool) -> None... method setItemWidget (line 15907) | def setItemWidget(self, item: QTreeWidgetItem, column: int, widget: QW... method setModel (line 15908) | def setModel(self, model: PySide2.QtCore.QAbstractItemModel | None) ->... method setSelectionModel (line 15909) | def setSelectionModel(self, selectionModel: PySide2.QtCore.QItemSelect... method sortColumn (line 15910) | def sortColumn(self) -> int: ... method sortItems (line 15911) | def sortItems(self, column: int, order: PySide2.QtCore.Qt.SortOrder) -... method supportedDropActions (line 15912) | def supportedDropActions(self) -> PySide2.QtCore.Qt.DropActions | PySi... method takeTopLevelItem (line 15913) | def takeTopLevelItem(self, index: int) -> QTreeWidgetItem: ... method topLevelItem (line 15914) | def topLevelItem(self, index: int) -> QTreeWidgetItem: ... method topLevelItemCount (line 15915) | def topLevelItemCount(self) -> int: ... method visualItemRect (line 15916) | def visualItemRect(self, item: QTreeWidgetItem) -> PySide2.QtCore.QRec... class QTreeWidgetItem (line 15918) | class QTreeWidgetItem(shiboken2.Object): class ChildIndicatorPolicy (line 15919) | class ChildIndicatorPolicy: method __init__ (line 15926) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15927) | def __add__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chil... method __and__ (line 15928) | def __and__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chil... method __bool__ (line 15929) | def __bool__(self) -> bool: ... method __eq__ (line 15930) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15931) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15932) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15933) | def __hash__(self) -> int: ... method __index__ (line 15934) | def __index__(self) -> int: ... method __int__ (line 15935) | def __int__(self) -> int: ... method __le__ (line 15936) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15937) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15938) | def __mul__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chil... method __ne__ (line 15939) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15940) | def __or__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Child... method __pos__ (line 15941) | def __pos__(self): ... method __radd__ (line 15942) | def __radd__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chi... method __rand__ (line 15943) | def __rand__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chi... method __rmul__ (line 15944) | def __rmul__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chi... method __ror__ (line 15945) | def __ror__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chil... method __rsub__ (line 15946) | def __rsub__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chi... method __rxor__ (line 15947) | def __rxor__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chi... method __sub__ (line 15948) | def __sub__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chil... method __xor__ (line 15949) | def __xor__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Chil... class ItemType (line 15951) | class ItemType: method __init__ (line 15957) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 15958) | def __add__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Item... method __and__ (line 15959) | def __and__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Item... method __bool__ (line 15960) | def __bool__(self) -> bool: ... method __eq__ (line 15961) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15962) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 15963) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 15964) | def __hash__(self) -> int: ... method __index__ (line 15965) | def __index__(self) -> int: ... method __int__ (line 15966) | def __int__(self) -> int: ... method __le__ (line 15967) | def __le__(self, other: object) -> bool: ... method __lt__ (line 15968) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 15969) | def __mul__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Item... method __ne__ (line 15970) | def __ne__(self, other: object) -> bool: ... method __or__ (line 15971) | def __or__(self, other: typing.SupportsInt) -> QTreeWidgetItem.ItemT... method __pos__ (line 15972) | def __pos__(self): ... method __radd__ (line 15973) | def __radd__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Ite... method __rand__ (line 15974) | def __rand__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Ite... method __rmul__ (line 15975) | def __rmul__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Ite... method __ror__ (line 15976) | def __ror__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Item... method __rsub__ (line 15977) | def __rsub__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Ite... method __rxor__ (line 15978) | def __rxor__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Ite... method __sub__ (line 15979) | def __sub__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Item... method __xor__ (line 15980) | def __xor__(self, other: typing.SupportsInt) -> QTreeWidgetItem.Item... method __init__ (line 15987) | def __init__(self, treeview: QTreeWidget, strings: typing.Iterable[str... method __init__ (line 15989) | def __init__(self, treeview: QTreeWidget, after: QTreeWidgetItem, type... method __init__ (line 15991) | def __init__(self, parent: QTreeWidgetItem, strings: typing.Iterable[s... method __init__ (line 15993) | def __init__(self, parent: QTreeWidgetItem, after: QTreeWidgetItem, ty... method __init__ (line 15995) | def __init__(self, treeview: QTreeWidget, type: int = ...) -> None: ... method __init__ (line 15997) | def __init__(self, strings: typing.Iterable[str], type: int = ...) -> ... method __init__ (line 15999) | def __init__(self, parent: QTreeWidgetItem, type: int = ...) -> None: ... method __init__ (line 16001) | def __init__(self, type: int = ...) -> None: ... method __init__ (line 16003) | def __init__(self, other: QTreeWidgetItem) -> None: ... method addChild (line 16004) | def addChild(self, child: QTreeWidgetItem) -> None: ... method addChildren (line 16005) | def addChildren(self, children: typing.Iterable[QTreeWidgetItem]) -> N... method background (line 16006) | def background(self, column: int) -> PySide2.QtGui.QBrush: ... method backgroundColor (line 16007) | def backgroundColor(self, column: int) -> PySide2.QtGui.QColor: ... method checkState (line 16008) | def checkState(self, column: int) -> PySide2.QtCore.Qt.CheckState: ... method child (line 16009) | def child(self, index: int) -> QTreeWidgetItem: ... method childCount (line 16010) | def childCount(self) -> int: ... method childIndicatorPolicy (line 16011) | def childIndicatorPolicy(self) -> QTreeWidgetItem.ChildIndicatorPolicy... method clone (line 16012) | def clone(self) -> QTreeWidgetItem: ... method columnCount (line 16013) | def columnCount(self) -> int: ... method data (line 16014) | def data(self, column: int, role: PySide2.QtCore.Qt.ItemDataRole) -> t... method emitDataChanged (line 16015) | def emitDataChanged(self) -> None: ... method flags (line 16016) | def flags(self) -> PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore.Qt.Ite... method font (line 16017) | def font(self, column: int) -> PySide2.QtGui.QFont: ... method foreground (line 16018) | def foreground(self, column: int) -> PySide2.QtGui.QBrush: ... method icon (line 16019) | def icon(self, column: int) -> PySide2.QtGui.QIcon: ... method indexOfChild (line 16020) | def indexOfChild(self, child: QTreeWidgetItem) -> int: ... method insertChild (line 16021) | def insertChild(self, index: int, child: QTreeWidgetItem) -> None: ... method insertChildren (line 16022) | def insertChildren(self, index: int, children: typing.Iterable[QTreeWi... method isDisabled (line 16023) | def isDisabled(self) -> bool: ... method isExpanded (line 16024) | def isExpanded(self) -> bool: ... method isFirstColumnSpanned (line 16025) | def isFirstColumnSpanned(self) -> bool: ... method isHidden (line 16026) | def isHidden(self) -> bool: ... method isSelected (line 16027) | def isSelected(self) -> bool: ... method parent (line 16028) | def parent(self) -> QTreeWidgetItem: ... method read (line 16029) | def read(self, in_: PySide2.QtCore.QDataStream) -> None: ... method removeChild (line 16030) | def removeChild(self, child: QTreeWidgetItem) -> None: ... method setBackground (line 16031) | def setBackground(self, column: int, brush: PySide2.QtGui.QBrush | PyS... method setBackgroundColor (line 16032) | def setBackgroundColor(self, column: int, color: PySide2.QtGui.QColor ... method setCheckState (line 16033) | def setCheckState(self, column: int, state: PySide2.QtCore.Qt.CheckSta... method setChildIndicatorPolicy (line 16034) | def setChildIndicatorPolicy(self, policy: QTreeWidgetItem.ChildIndicat... method setData (line 16035) | def setData(self, column: int, role: PySide2.QtCore.Qt.ItemDataRole, v... method setDisabled (line 16036) | def setDisabled(self, disabled: bool) -> None: ... method setExpanded (line 16037) | def setExpanded(self, expand: bool) -> None: ... method setFirstColumnSpanned (line 16038) | def setFirstColumnSpanned(self, span: bool) -> None: ... method setFlags (line 16039) | def setFlags(self, flags: PySide2.QtCore.Qt.ItemFlags | PySide2.QtCore... method setFont (line 16040) | def setFont(self, column: int, font: PySide2.QtGui.QFont) -> None: ... method setForeground (line 16041) | def setForeground(self, column: int, brush: PySide2.QtGui.QBrush | PyS... method setHidden (line 16042) | def setHidden(self, hide: bool) -> None: ... method setIcon (line 16043) | def setIcon(self, column: int, icon: PySide2.QtGui.QIcon) -> None: ... method setSelected (line 16044) | def setSelected(self, select: bool) -> None: ... method setSizeHint (line 16045) | def setSizeHint(self, column: int, size: PySide2.QtCore.QSize) -> None... method setStatusTip (line 16046) | def setStatusTip(self, column: int, statusTip: str) -> None: ... method setText (line 16047) | def setText(self, column: int, text: str) -> None: ... method setTextAlignment (line 16048) | def setTextAlignment(self, column: int, alignment: int) -> None: ... method setTextColor (line 16049) | def setTextColor(self, column: int, color: PySide2.QtGui.QColor | PySi... method setToolTip (line 16050) | def setToolTip(self, column: int, toolTip: str) -> None: ... method setWhatsThis (line 16051) | def setWhatsThis(self, column: int, whatsThis: str) -> None: ... method sizeHint (line 16052) | def sizeHint(self, column: int) -> PySide2.QtCore.QSize: ... method sortChildren (line 16053) | def sortChildren(self, column: int, order: PySide2.QtCore.Qt.SortOrder... method statusTip (line 16054) | def statusTip(self, column: int) -> str: ... method takeChild (line 16055) | def takeChild(self, index: int) -> QTreeWidgetItem: ... method takeChildren (line 16056) | def takeChildren(self) -> list[QTreeWidgetItem]: ... method text (line 16057) | def text(self, column: int) -> str: ... method textAlignment (line 16058) | def textAlignment(self, column: int) -> int: ... method textColor (line 16059) | def textColor(self, column: int) -> PySide2.QtGui.QColor: ... method toolTip (line 16060) | def toolTip(self, column: int) -> str: ... method treeWidget (line 16061) | def treeWidget(self) -> QTreeWidget: ... method type (line 16062) | def type(self) -> int: ... method whatsThis (line 16063) | def whatsThis(self, column: int) -> str: ... method write (line 16064) | def write(self, out: PySide2.QtCore.QDataStream) -> None: ... method __eq__ (line 16065) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16066) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16067) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16068) | def __hash__(self) -> int: ... method __le__ (line 16069) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 16070) | def __lshift__(self, out: PySide2.QtCore.QDataStream) -> PySide2.QtCor... method __lt__ (line 16071) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16072) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 16073) | def __rlshift__(self, other): ... method __rrshift__ (line 16074) | def __rrshift__(self, other): ... method __rshift__ (line 16075) | def __rshift__(self, in_: PySide2.QtCore.QDataStream) -> PySide2.QtCor... class QTreeWidgetItemIterator (line 16077) | class QTreeWidgetItemIterator(shiboken2.Object): class IteratorFlag (line 16078) | class IteratorFlag: method __init__ (line 16102) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16103) | def __and__(self, other: typing.SupportsInt) -> QTreeWidgetItemItera... method __bool__ (line 16104) | def __bool__(self) -> bool: ... method __eq__ (line 16105) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16106) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16107) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16108) | def __hash__(self) -> int: ... method __index__ (line 16109) | def __index__(self) -> int: ... method __int__ (line 16110) | def __int__(self) -> int: ... method __invert__ (line 16111) | def __invert__(self) -> QTreeWidgetItemIterator.IteratorFlags: ... method __le__ (line 16112) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16113) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16114) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16115) | def __or__(self, other: typing.SupportsInt) -> QTreeWidgetItemIterat... method __rand__ (line 16116) | def __rand__(self, other: typing.SupportsInt) -> QTreeWidgetItemIter... method __ror__ (line 16117) | def __ror__(self, other: typing.SupportsInt) -> QTreeWidgetItemItera... method __rxor__ (line 16118) | def __rxor__(self, other: typing.SupportsInt) -> QTreeWidgetItemIter... method __xor__ (line 16119) | def __xor__(self, other: typing.SupportsInt) -> QTreeWidgetItemItera... class IteratorFlags (line 16121) | class IteratorFlags: method __init__ (line 16123) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16124) | def __and__(self, other: typing.SupportsInt) -> QTreeWidgetItemItera... method __bool__ (line 16125) | def __bool__(self) -> bool: ... method __eq__ (line 16126) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16127) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16128) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16129) | def __index__(self) -> int: ... method __int__ (line 16130) | def __int__(self) -> int: ... method __invert__ (line 16131) | def __invert__(self) -> QTreeWidgetItemIterator.IteratorFlags: ... method __le__ (line 16132) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16133) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16134) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16135) | def __or__(self, other: typing.SupportsInt) -> QTreeWidgetItemIterat... method __rand__ (line 16136) | def __rand__(self, other: typing.SupportsInt) -> QTreeWidgetItemIter... method __ror__ (line 16137) | def __ror__(self, other: typing.SupportsInt) -> QTreeWidgetItemItera... method __rxor__ (line 16138) | def __rxor__(self, other: typing.SupportsInt) -> QTreeWidgetItemIter... method __xor__ (line 16139) | def __xor__(self, other: typing.SupportsInt) -> QTreeWidgetItemItera... method __init__ (line 16161) | def __init__(self, widget: QTreeWidget, flags: QTreeWidgetItemIterator... method __init__ (line 16163) | def __init__(self, item: QTreeWidgetItem, flags: QTreeWidgetItemIterat... method __init__ (line 16165) | def __init__(self, it: QTreeWidgetItemIterator) -> None: ... method value (line 16166) | def value(self) -> QTreeWidgetItem: ... method __copy__ (line 16167) | def __copy__(self) -> None: ... method __iadd__ (line 16168) | def __iadd__(self, n: int) -> QTreeWidgetItemIterator: ... method __isub__ (line 16169) | def __isub__(self, n: int) -> QTreeWidgetItemIterator: ... method __iter__ (line 16170) | def __iter__(self) -> typing.Iterator[QTreeWidgetItemIterator]: ... method __next__ (line 16171) | def __next__(self) -> QTreeWidgetItemIterator: ... class QUndoCommand (line 16173) | class QUndoCommand(shiboken2.Object): method __init__ (line 16175) | def __init__(self, text: str, parent: QUndoCommand | None = ...) -> No... method __init__ (line 16177) | def __init__(self, parent: QUndoCommand | None = ...) -> None: ... method actionText (line 16178) | def actionText(self) -> str: ... method child (line 16179) | def child(self, index: int) -> QUndoCommand: ... method childCount (line 16180) | def childCount(self) -> int: ... method id (line 16181) | def id(self) -> int: ... method isObsolete (line 16182) | def isObsolete(self) -> bool: ... method mergeWith (line 16183) | def mergeWith(self, other: QUndoCommand) -> bool: ... method redo (line 16184) | def redo(self) -> None: ... method setObsolete (line 16185) | def setObsolete(self, obsolete: bool) -> None: ... method setText (line 16186) | def setText(self, text: str) -> None: ... method text (line 16187) | def text(self) -> str: ... method undo (line 16188) | def undo(self) -> None: ... class QUndoGroup (line 16190) | class QUndoGroup(PySide2.QtCore.QObject): method __init__ (line 16199) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method activeStack (line 16200) | def activeStack(self) -> QUndoStack: ... method addStack (line 16201) | def addStack(self, stack: QUndoStack) -> None: ... method canRedo (line 16202) | def canRedo(self) -> bool: ... method canUndo (line 16203) | def canUndo(self) -> bool: ... method createRedoAction (line 16204) | def createRedoAction(self, parent: PySide2.QtCore.QObject | None, pref... method createUndoAction (line 16205) | def createUndoAction(self, parent: PySide2.QtCore.QObject | None, pref... method isClean (line 16206) | def isClean(self) -> bool: ... method redo (line 16207) | def redo(self) -> None: ... method redoText (line 16208) | def redoText(self) -> str: ... method removeStack (line 16209) | def removeStack(self, stack: QUndoStack) -> None: ... method setActiveStack (line 16210) | def setActiveStack(self, stack: QUndoStack) -> None: ... method stacks (line 16211) | def stacks(self) -> list[QUndoStack]: ... method undo (line 16212) | def undo(self) -> None: ... method undoText (line 16213) | def undoText(self) -> str: ... class QUndoStack (line 16215) | class QUndoStack(PySide2.QtCore.QObject): method __init__ (line 16223) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., active... method beginMacro (line 16224) | def beginMacro(self, text: str) -> None: ... method canRedo (line 16225) | def canRedo(self) -> bool: ... method canUndo (line 16226) | def canUndo(self) -> bool: ... method cleanIndex (line 16227) | def cleanIndex(self) -> int: ... method clear (line 16228) | def clear(self) -> None: ... method command (line 16229) | def command(self, index: int) -> QUndoCommand: ... method count (line 16230) | def count(self) -> int: ... method createRedoAction (line 16231) | def createRedoAction(self, parent: PySide2.QtCore.QObject | None, pref... method createUndoAction (line 16232) | def createUndoAction(self, parent: PySide2.QtCore.QObject | None, pref... method endMacro (line 16233) | def endMacro(self) -> None: ... method index (line 16234) | def index(self) -> int: ... method isActive (line 16235) | def isActive(self) -> bool: ... method isClean (line 16236) | def isClean(self) -> bool: ... method push (line 16237) | def push(self, cmd: QUndoCommand) -> None: ... method redo (line 16238) | def redo(self) -> None: ... method redoText (line 16239) | def redoText(self) -> str: ... method resetClean (line 16240) | def resetClean(self) -> None: ... method setActive (line 16241) | def setActive(self, active: bool = ...) -> None: ... method setClean (line 16242) | def setClean(self) -> None: ... method setIndex (line 16243) | def setIndex(self, idx: int) -> None: ... method setUndoLimit (line 16244) | def setUndoLimit(self, limit: int) -> None: ... method text (line 16245) | def text(self, idx: int) -> str: ... method undo (line 16246) | def undo(self) -> None: ... method undoLimit (line 16247) | def undoLimit(self) -> int: ... method undoText (line 16248) | def undoText(self) -> str: ... class QUndoView (line 16250) | class QUndoView(QListView): method __init__ (line 16253) | def __init__(self, stack: QUndoStack, parent: QWidget | None = ..., ac... method __init__ (line 16255) | def __init__(self, group: QUndoGroup, parent: QWidget | None = ..., ac... method __init__ (line 16257) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method cleanIcon (line 16258) | def cleanIcon(self) -> PySide2.QtGui.QIcon: ... method emptyLabel (line 16259) | def emptyLabel(self) -> str: ... method group (line 16260) | def group(self) -> QUndoGroup: ... method setCleanIcon (line 16261) | def setCleanIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setEmptyLabel (line 16262) | def setEmptyLabel(self, label: str) -> None: ... method setGroup (line 16263) | def setGroup(self, group: QUndoGroup) -> None: ... method setStack (line 16264) | def setStack(self, stack: QUndoStack) -> None: ... method stack (line 16265) | def stack(self) -> QUndoStack: ... class QVBoxLayout (line 16267) | class QVBoxLayout(QBoxLayout): method __init__ (line 16270) | def __init__(self, parent: QWidget | None, destroyed: typing.Callable ... method __init__ (line 16272) | def __init__(self, destroyed: typing.Callable = ..., margin: int = ...... class QWhatsThis (line 16274) | class QWhatsThis(shiboken2.Object): method __init__ (line 16276) | def __init__(cls, *args, **kwargs) -> None: ... method createAction (line 16278) | def createAction(parent: PySide2.QtCore.QObject | None = ...) -> QActi... method enterWhatsThisMode (line 16280) | def enterWhatsThisMode() -> None: ... method hideText (line 16282) | def hideText() -> None: ... method inWhatsThisMode (line 16284) | def inWhatsThisMode() -> bool: ... method leaveWhatsThisMode (line 16286) | def leaveWhatsThisMode() -> None: ... method showText (line 16288) | def showText(pos: PySide2.QtCore.QPoint, text: str, w: QWidget | None ... class QWidget (line 16290) | class QWidget(PySide2.QtCore.QObject, PySide2.QtGui.QPaintDevice): class RenderFlag (line 16291) | class RenderFlag: method __init__ (line 16298) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16299) | def __and__(self, other: typing.SupportsInt) -> QWidget.RenderFlags:... method __bool__ (line 16300) | def __bool__(self) -> bool: ... method __eq__ (line 16301) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16302) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16303) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16304) | def __hash__(self) -> int: ... method __index__ (line 16305) | def __index__(self) -> int: ... method __int__ (line 16306) | def __int__(self) -> int: ... method __invert__ (line 16307) | def __invert__(self) -> QWidget.RenderFlags: ... method __le__ (line 16308) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16309) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16310) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16311) | def __or__(self, other: typing.SupportsInt) -> QWidget.RenderFlags: ... method __rand__ (line 16312) | def __rand__(self, other: typing.SupportsInt) -> QWidget.RenderFlags... method __ror__ (line 16313) | def __ror__(self, other: typing.SupportsInt) -> QWidget.RenderFlags:... method __rxor__ (line 16314) | def __rxor__(self, other: typing.SupportsInt) -> QWidget.RenderFlags... method __xor__ (line 16315) | def __xor__(self, other: typing.SupportsInt) -> QWidget.RenderFlags:... class RenderFlags (line 16317) | class RenderFlags: method __init__ (line 16319) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16320) | def __and__(self, other: typing.SupportsInt) -> QWidget.RenderFlags:... method __bool__ (line 16321) | def __bool__(self) -> bool: ... method __eq__ (line 16322) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16323) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16324) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16325) | def __index__(self) -> int: ... method __int__ (line 16326) | def __int__(self) -> int: ... method __invert__ (line 16327) | def __invert__(self) -> QWidget.RenderFlags: ... method __le__ (line 16328) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16329) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16330) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16331) | def __or__(self, other: typing.SupportsInt) -> QWidget.RenderFlags: ... method __rand__ (line 16332) | def __rand__(self, other: typing.SupportsInt) -> QWidget.RenderFlags... method __ror__ (line 16333) | def __ror__(self, other: typing.SupportsInt) -> QWidget.RenderFlags:... method __rxor__ (line 16334) | def __rxor__(self, other: typing.SupportsInt) -> QWidget.RenderFlags... method __xor__ (line 16335) | def __xor__(self, other: typing.SupportsInt) -> QWidget.RenderFlags:... method __init__ (line 16344) | def __init__(self, parent: QWidget | None = ..., f: PySide2.QtCore.Qt.... method acceptDrops (line 16345) | def acceptDrops(self) -> bool: ... method accessibleDescription (line 16346) | def accessibleDescription(self) -> str: ... method accessibleName (line 16347) | def accessibleName(self) -> str: ... method actionEvent (line 16348) | def actionEvent(self, event: PySide2.QtGui.QActionEvent) -> None: ... method actions (line 16349) | def actions(self) -> list[QAction]: ... method activateWindow (line 16350) | def activateWindow(self) -> None: ... method addAction (line 16351) | def addAction(self, action: QAction) -> None: ... method addActions (line 16352) | def addActions(self, actions: typing.Iterable[QAction]) -> None: ... method adjustSize (line 16353) | def adjustSize(self) -> None: ... method autoFillBackground (line 16354) | def autoFillBackground(self) -> bool: ... method backgroundRole (line 16355) | def backgroundRole(self) -> PySide2.QtGui.QPalette.ColorRole: ... method backingStore (line 16356) | def backingStore(self) -> PySide2.QtGui.QBackingStore: ... method baseSize (line 16357) | def baseSize(self) -> PySide2.QtCore.QSize: ... method changeEvent (line 16358) | def changeEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method childAt (line 16360) | def childAt(self, x: int, y: int) -> QWidget: ... method childAt (line 16362) | def childAt(self, p: PySide2.QtCore.QPoint) -> QWidget: ... method childrenRect (line 16363) | def childrenRect(self) -> PySide2.QtCore.QRect: ... method childrenRegion (line 16364) | def childrenRegion(self) -> PySide2.QtGui.QRegion: ... method clearFocus (line 16365) | def clearFocus(self) -> None: ... method clearMask (line 16366) | def clearMask(self) -> None: ... method close (line 16367) | def close(self) -> bool: ... method closeEvent (line 16368) | def closeEvent(self, event: PySide2.QtGui.QCloseEvent) -> None: ... method contentsMargins (line 16369) | def contentsMargins(self) -> PySide2.QtCore.QMargins: ... method contentsRect (line 16370) | def contentsRect(self) -> PySide2.QtCore.QRect: ... method contextMenuEvent (line 16371) | def contextMenuEvent(self, event: PySide2.QtGui.QContextMenuEvent) -> ... method contextMenuPolicy (line 16372) | def contextMenuPolicy(self) -> PySide2.QtCore.Qt.ContextMenuPolicy: ... method create (line 16373) | def create(self, arg__1: int = ..., initializeWindow: bool = ..., dest... method createWinId (line 16374) | def createWinId(self) -> None: ... method createWindowContainer (line 16376) | def createWindowContainer(window: PySide2.QtGui.QWindow, parent: QWidg... method cursor (line 16377) | def cursor(self) -> PySide2.QtGui.QCursor: ... method destroy (line 16378) | def destroy(self, destroyWindow: bool = ..., destroySubWindows: bool =... method devType (line 16379) | def devType(self) -> int: ... method dragEnterEvent (line 16380) | def dragEnterEvent(self, event: PySide2.QtGui.QDragEnterEvent) -> None... method dragLeaveEvent (line 16381) | def dragLeaveEvent(self, event: PySide2.QtGui.QDragLeaveEvent) -> None... method dragMoveEvent (line 16382) | def dragMoveEvent(self, event: PySide2.QtGui.QDragMoveEvent) -> None: ... method dropEvent (line 16383) | def dropEvent(self, event: PySide2.QtGui.QDropEvent) -> None: ... method effectiveWinId (line 16384) | def effectiveWinId(self) -> int: ... method ensurePolished (line 16385) | def ensurePolished(self) -> None: ... method enterEvent (line 16386) | def enterEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method event (line 16387) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method find (line 16389) | def find(arg__1: int) -> QWidget: ... method focusInEvent (line 16390) | def focusInEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusNextChild (line 16391) | def focusNextChild(self) -> bool: ... method focusNextPrevChild (line 16392) | def focusNextPrevChild(self, next: bool) -> bool: ... method focusOutEvent (line 16393) | def focusOutEvent(self, event: PySide2.QtGui.QFocusEvent) -> None: ... method focusPolicy (line 16394) | def focusPolicy(self) -> PySide2.QtCore.Qt.FocusPolicy: ... method focusPreviousChild (line 16395) | def focusPreviousChild(self) -> bool: ... method focusProxy (line 16396) | def focusProxy(self) -> QWidget: ... method focusWidget (line 16397) | def focusWidget(self) -> QWidget: ... method font (line 16398) | def font(self) -> PySide2.QtGui.QFont: ... method fontInfo (line 16399) | def fontInfo(self) -> PySide2.QtGui.QFontInfo: ... method fontMetrics (line 16400) | def fontMetrics(self) -> PySide2.QtGui.QFontMetrics: ... method foregroundRole (line 16401) | def foregroundRole(self) -> PySide2.QtGui.QPalette.ColorRole: ... method frameGeometry (line 16402) | def frameGeometry(self) -> PySide2.QtCore.QRect: ... method frameSize (line 16403) | def frameSize(self) -> PySide2.QtCore.QSize: ... method geometry (line 16404) | def geometry(self) -> PySide2.QtCore.QRect: ... method getContentsMargins (line 16405) | def getContentsMargins(self) -> tuple[int, int, int, int]: ... method grab (line 16406) | def grab(self, rectangle: PySide2.QtCore.QRect = ...) -> PySide2.QtGui... method grabGesture (line 16407) | def grabGesture(self, type: PySide2.QtCore.Qt.GestureType, flags: PySi... method grabKeyboard (line 16408) | def grabKeyboard(self) -> None: ... method grabMouse (line 16410) | def grabMouse(self, arg__1: PySide2.QtGui.QCursor | PySide2.QtCore.Qt.... method grabMouse (line 16412) | def grabMouse(self) -> None: ... method grabShortcut (line 16413) | def grabShortcut(self, key: PySide2.QtGui.QKeySequence | str, context:... method graphicsEffect (line 16414) | def graphicsEffect(self) -> QGraphicsEffect: ... method graphicsProxyWidget (line 16415) | def graphicsProxyWidget(self) -> QGraphicsProxyWidget: ... method hasFocus (line 16416) | def hasFocus(self) -> bool: ... method hasHeightForWidth (line 16417) | def hasHeightForWidth(self) -> bool: ... method hasMouseTracking (line 16418) | def hasMouseTracking(self) -> bool: ... method hasTabletTracking (line 16419) | def hasTabletTracking(self) -> bool: ... method height (line 16420) | def height(self) -> int: ... method heightForWidth (line 16421) | def heightForWidth(self, arg__1: int) -> int: ... method hide (line 16422) | def hide(self) -> None: ... method hideEvent (line 16423) | def hideEvent(self, event: PySide2.QtGui.QHideEvent) -> None: ... method initPainter (line 16424) | def initPainter(self, painter: PySide2.QtGui.QPainter) -> None: ... method inputMethodEvent (line 16425) | def inputMethodEvent(self, event: PySide2.QtGui.QInputMethodEvent) -> ... method inputMethodHints (line 16426) | def inputMethodHints(self) -> PySide2.QtCore.Qt.InputMethodHints | PyS... method inputMethodQuery (line 16427) | def inputMethodQuery(self, arg__1: PySide2.QtCore.Qt.InputMethodQuery)... method insertAction (line 16428) | def insertAction(self, before: QAction, action: QAction) -> None: ... method insertActions (line 16429) | def insertActions(self, before: QAction, actions: typing.Iterable[QAct... method internalWinId (line 16430) | def internalWinId(self) -> int: ... method isActiveWindow (line 16431) | def isActiveWindow(self) -> bool: ... method isAncestorOf (line 16432) | def isAncestorOf(self, child: QWidget) -> bool: ... method isEnabled (line 16433) | def isEnabled(self) -> bool: ... method isEnabledTo (line 16434) | def isEnabledTo(self, arg__1: QWidget) -> bool: ... method isEnabledToTLW (line 16435) | def isEnabledToTLW(self) -> bool: ... method isFullScreen (line 16436) | def isFullScreen(self) -> bool: ... method isHidden (line 16437) | def isHidden(self) -> bool: ... method isLeftToRight (line 16438) | def isLeftToRight(self) -> bool: ... method isMaximized (line 16439) | def isMaximized(self) -> bool: ... method isMinimized (line 16440) | def isMinimized(self) -> bool: ... method isModal (line 16441) | def isModal(self) -> bool: ... method isRightToLeft (line 16442) | def isRightToLeft(self) -> bool: ... method isTopLevel (line 16443) | def isTopLevel(self) -> bool: ... method isVisible (line 16444) | def isVisible(self) -> bool: ... method isVisibleTo (line 16445) | def isVisibleTo(self, arg__1: QWidget) -> bool: ... method isWindow (line 16446) | def isWindow(self) -> bool: ... method isWindowModified (line 16447) | def isWindowModified(self) -> bool: ... method keyPressEvent (line 16448) | def keyPressEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyReleaseEvent (line 16449) | def keyReleaseEvent(self, event: PySide2.QtGui.QKeyEvent) -> None: ... method keyboardGrabber (line 16451) | def keyboardGrabber() -> QWidget: ... method layout (line 16452) | def layout(self) -> QLayout: ... method layoutDirection (line 16453) | def layoutDirection(self) -> PySide2.QtCore.Qt.LayoutDirection: ... method leaveEvent (line 16454) | def leaveEvent(self, event: PySide2.QtCore.QEvent) -> None: ... method locale (line 16455) | def locale(self) -> PySide2.QtCore.QLocale: ... method lower (line 16456) | def lower(self) -> None: ... method mapFrom (line 16457) | def mapFrom(self, arg__1: QWidget, arg__2: PySide2.QtCore.QPoint) -> P... method mapFromGlobal (line 16458) | def mapFromGlobal(self, arg__1: PySide2.QtCore.QPoint) -> PySide2.QtCo... method mapFromParent (line 16459) | def mapFromParent(self, arg__1: PySide2.QtCore.QPoint) -> PySide2.QtCo... method mapTo (line 16460) | def mapTo(self, arg__1: QWidget, arg__2: PySide2.QtCore.QPoint) -> PyS... method mapToGlobal (line 16461) | def mapToGlobal(self, arg__1: PySide2.QtCore.QPoint) -> PySide2.QtCore... method mapToParent (line 16462) | def mapToParent(self, arg__1: PySide2.QtCore.QPoint) -> PySide2.QtCore... method mask (line 16463) | def mask(self) -> PySide2.QtGui.QRegion: ... method maximumHeight (line 16464) | def maximumHeight(self) -> int: ... method maximumSize (line 16465) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method maximumWidth (line 16466) | def maximumWidth(self) -> int: ... method metric (line 16467) | def metric(self, arg__1: PySide2.QtGui.QPaintDevice.PaintDeviceMetric)... method minimumHeight (line 16468) | def minimumHeight(self) -> int: ... method minimumSize (line 16469) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method minimumSizeHint (line 16470) | def minimumSizeHint(self) -> PySide2.QtCore.QSize: ... method minimumWidth (line 16471) | def minimumWidth(self) -> int: ... method mouseDoubleClickEvent (line 16472) | def mouseDoubleClickEvent(self, event: PySide2.QtGui.QMouseEvent) -> N... method mouseGrabber (line 16474) | def mouseGrabber() -> QWidget: ... method mouseMoveEvent (line 16475) | def mouseMoveEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mousePressEvent (line 16476) | def mousePressEvent(self, event: PySide2.QtGui.QMouseEvent) -> None: ... method mouseReleaseEvent (line 16477) | def mouseReleaseEvent(self, event: PySide2.QtGui.QMouseEvent) -> None:... method move (line 16479) | def move(self, x: int, y: int) -> None: ... method move (line 16481) | def move(self, arg__1: PySide2.QtCore.QPoint) -> None: ... method moveEvent (line 16482) | def moveEvent(self, event: PySide2.QtGui.QMoveEvent) -> None: ... method nativeEvent (line 16483) | def nativeEvent(self, eventType: PySide2.QtCore.QByteArray | bytes, me... method nativeParentWidget (line 16484) | def nativeParentWidget(self) -> QWidget: ... method nextInFocusChain (line 16485) | def nextInFocusChain(self) -> QWidget: ... method normalGeometry (line 16486) | def normalGeometry(self) -> PySide2.QtCore.QRect: ... method overrideWindowFlags (line 16487) | def overrideWindowFlags(self, type: PySide2.QtCore.Qt.WindowFlags | Py... method overrideWindowState (line 16488) | def overrideWindowState(self, state: PySide2.QtCore.Qt.WindowStates | ... method paintEngine (line 16489) | def paintEngine(self) -> PySide2.QtGui.QPaintEngine: ... method paintEvent (line 16490) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method palette (line 16491) | def palette(self) -> PySide2.QtGui.QPalette: ... method parentWidget (line 16492) | def parentWidget(self) -> QWidget: ... method pos (line 16493) | def pos(self) -> PySide2.QtCore.QPoint: ... method previousInFocusChain (line 16494) | def previousInFocusChain(self) -> QWidget: ... method raise_ (line 16495) | def raise_(self) -> None: ... method rect (line 16496) | def rect(self) -> PySide2.QtCore.QRect: ... method redirected (line 16497) | def redirected(self, offset: PySide2.QtCore.QPoint) -> PySide2.QtGui.Q... method releaseKeyboard (line 16498) | def releaseKeyboard(self) -> None: ... method releaseMouse (line 16499) | def releaseMouse(self) -> None: ... method releaseShortcut (line 16500) | def releaseShortcut(self, id: int) -> None: ... method removeAction (line 16501) | def removeAction(self, action: QAction) -> None: ... method render (line 16503) | def render(self, target: PySide2.QtGui.QPaintDevice, targetOffset: PyS... method render (line 16505) | def render(self, painter: PySide2.QtGui.QPainter, targetOffset: PySide... method repaint (line 16507) | def repaint(self, x: int, y: int, w: int, h: int) -> None: ... method repaint (line 16509) | def repaint(self, arg__1: PySide2.QtCore.QRect) -> None: ... method repaint (line 16511) | def repaint(self, arg__1: PySide2.QtGui.QRegion) -> None: ... method repaint (line 16513) | def repaint(self) -> None: ... method resize (line 16515) | def resize(self, w: int, h: int) -> None: ... method resize (line 16517) | def resize(self, arg__1: PySide2.QtCore.QSize) -> None: ... method resizeEvent (line 16518) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method restoreGeometry (line 16519) | def restoreGeometry(self, geometry: PySide2.QtCore.QByteArray | bytes)... method saveGeometry (line 16520) | def saveGeometry(self) -> PySide2.QtCore.QByteArray: ... method screen (line 16521) | def screen(self) -> PySide2.QtGui.QScreen: ... method scroll (line 16523) | def scroll(self, dx: int, dy: int, arg__3: PySide2.QtCore.QRect) -> No... method scroll (line 16525) | def scroll(self, dx: int, dy: int) -> None: ... method setAcceptDrops (line 16526) | def setAcceptDrops(self, on: bool) -> None: ... method setAccessibleDescription (line 16527) | def setAccessibleDescription(self, description: str) -> None: ... method setAccessibleName (line 16528) | def setAccessibleName(self, name: str) -> None: ... method setAttribute (line 16529) | def setAttribute(self, arg__1: PySide2.QtCore.Qt.WidgetAttribute, on: ... method setAutoFillBackground (line 16530) | def setAutoFillBackground(self, enabled: bool) -> None: ... method setBackgroundRole (line 16531) | def setBackgroundRole(self, arg__1: PySide2.QtGui.QPalette.ColorRole) ... method setBaseSize (line 16533) | def setBaseSize(self, basew: int, baseh: int) -> None: ... method setBaseSize (line 16535) | def setBaseSize(self, arg__1: PySide2.QtCore.QSize) -> None: ... method setContentsMargins (line 16537) | def setContentsMargins(self, left: int, top: int, right: int, bottom: ... method setContentsMargins (line 16539) | def setContentsMargins(self, margins: PySide2.QtCore.QMargins) -> None... method setContextMenuPolicy (line 16540) | def setContextMenuPolicy(self, policy: PySide2.QtCore.Qt.ContextMenuPo... method setCursor (line 16541) | def setCursor(self, arg__1: PySide2.QtGui.QCursor | PySide2.QtCore.Qt.... method setDisabled (line 16542) | def setDisabled(self, arg__1: bool) -> None: ... method setEnabled (line 16543) | def setEnabled(self, arg__1: bool) -> None: ... method setFixedHeight (line 16544) | def setFixedHeight(self, h: int) -> None: ... method setFixedSize (line 16546) | def setFixedSize(self, w: int, h: int) -> None: ... method setFixedSize (line 16548) | def setFixedSize(self, arg__1: PySide2.QtCore.QSize) -> None: ... method setFixedWidth (line 16549) | def setFixedWidth(self, w: int) -> None: ... method setFocus (line 16551) | def setFocus(self, reason: PySide2.QtCore.Qt.FocusReason) -> None: ... method setFocus (line 16553) | def setFocus(self) -> None: ... method setFocusPolicy (line 16554) | def setFocusPolicy(self, policy: PySide2.QtCore.Qt.FocusPolicy) -> Non... method setFocusProxy (line 16555) | def setFocusProxy(self, arg__1: QWidget) -> None: ... method setFont (line 16556) | def setFont(self, arg__1: PySide2.QtGui.QFont) -> None: ... method setForegroundRole (line 16557) | def setForegroundRole(self, arg__1: PySide2.QtGui.QPalette.ColorRole) ... method setGeometry (line 16559) | def setGeometry(self, x: int, y: int, w: int, h: int) -> None: ... method setGeometry (line 16561) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method setGraphicsEffect (line 16562) | def setGraphicsEffect(self, effect: QGraphicsEffect) -> None: ... method setHidden (line 16563) | def setHidden(self, hidden: bool) -> None: ... method setInputMethodHints (line 16564) | def setInputMethodHints(self, hints: PySide2.QtCore.Qt.InputMethodHint... method setLayout (line 16565) | def setLayout(self, arg__1: QLayout) -> None: ... method setLayoutDirection (line 16566) | def setLayoutDirection(self, direction: PySide2.QtCore.Qt.LayoutDirect... method setLocale (line 16567) | def setLocale(self, locale: PySide2.QtCore.QLocale) -> None: ... method setMask (line 16569) | def setMask(self, arg__1: PySide2.QtGui.QBitmap) -> None: ... method setMask (line 16571) | def setMask(self, arg__1: PySide2.QtGui.QRegion) -> None: ... method setMaximumHeight (line 16572) | def setMaximumHeight(self, maxh: int) -> None: ... method setMaximumSize (line 16574) | def setMaximumSize(self, maxw: int, maxh: int) -> None: ... method setMaximumSize (line 16576) | def setMaximumSize(self, arg__1: PySide2.QtCore.QSize) -> None: ... method setMaximumWidth (line 16577) | def setMaximumWidth(self, maxw: int) -> None: ... method setMinimumHeight (line 16578) | def setMinimumHeight(self, minh: int) -> None: ... method setMinimumSize (line 16580) | def setMinimumSize(self, minw: int, minh: int) -> None: ... method setMinimumSize (line 16582) | def setMinimumSize(self, arg__1: PySide2.QtCore.QSize) -> None: ... method setMinimumWidth (line 16583) | def setMinimumWidth(self, minw: int) -> None: ... method setMouseTracking (line 16584) | def setMouseTracking(self, enable: bool) -> None: ... method setPalette (line 16585) | def setPalette(self, arg__1: PySide2.QtGui.QPalette) -> None: ... method setParent (line 16586) | def setParent(self, parent: PySide2.QtCore.QObject | None, f: PySide2.... method setShortcutAutoRepeat (line 16587) | def setShortcutAutoRepeat(self, id: int, enable: bool = ...) -> None: ... method setShortcutEnabled (line 16588) | def setShortcutEnabled(self, id: int, enable: bool = ...) -> None: ... method setSizeIncrement (line 16590) | def setSizeIncrement(self, w: int, h: int) -> None: ... method setSizeIncrement (line 16592) | def setSizeIncrement(self, arg__1: PySide2.QtCore.QSize) -> None: ... method setSizePolicy (line 16594) | def setSizePolicy(self, horizontal: QSizePolicy.Policy, vertical: QSiz... method setSizePolicy (line 16596) | def setSizePolicy(self, arg__1: QSizePolicy) -> None: ... method setStatusTip (line 16597) | def setStatusTip(self, arg__1: str) -> None: ... method setStyle (line 16598) | def setStyle(self, arg__1: QStyle) -> None: ... method setStyleSheet (line 16599) | def setStyleSheet(self, styleSheet: str) -> None: ... method setTabOrder (line 16601) | def setTabOrder(arg__1: QWidget, arg__2: QWidget) -> None: ... method setTabletTracking (line 16602) | def setTabletTracking(self, enable: bool) -> None: ... method setToolTip (line 16603) | def setToolTip(self, arg__1: str) -> None: ... method setToolTipDuration (line 16604) | def setToolTipDuration(self, msec: int) -> None: ... method setUpdatesEnabled (line 16605) | def setUpdatesEnabled(self, enable: bool) -> None: ... method setVisible (line 16606) | def setVisible(self, visible: bool) -> None: ... method setWhatsThis (line 16607) | def setWhatsThis(self, arg__1: str) -> None: ... method setWindowFilePath (line 16608) | def setWindowFilePath(self, filePath: str) -> None: ... method setWindowFlag (line 16609) | def setWindowFlag(self, arg__1: PySide2.QtCore.Qt.WindowType, on: bool... method setWindowFlags (line 16610) | def setWindowFlags(self, type: PySide2.QtCore.Qt.WindowFlags | PySide2... method setWindowIcon (line 16611) | def setWindowIcon(self, icon: PySide2.QtGui.QIcon) -> None: ... method setWindowIconText (line 16612) | def setWindowIconText(self, arg__1: str) -> None: ... method setWindowModality (line 16613) | def setWindowModality(self, windowModality: PySide2.QtCore.Qt.WindowMo... method setWindowModified (line 16614) | def setWindowModified(self, arg__1: bool) -> None: ... method setWindowOpacity (line 16615) | def setWindowOpacity(self, level: float) -> None: ... method setWindowRole (line 16616) | def setWindowRole(self, arg__1: str) -> None: ... method setWindowState (line 16617) | def setWindowState(self, state: PySide2.QtCore.Qt.WindowStates | PySid... method setWindowTitle (line 16618) | def setWindowTitle(self, arg__1: str) -> None: ... method sharedPainter (line 16619) | def sharedPainter(self) -> PySide2.QtGui.QPainter: ... method show (line 16620) | def show(self) -> None: ... method showEvent (line 16621) | def showEvent(self, event: PySide2.QtGui.QShowEvent) -> None: ... method showFullScreen (line 16622) | def showFullScreen(self) -> None: ... method showMaximized (line 16623) | def showMaximized(self) -> None: ... method showMinimized (line 16624) | def showMinimized(self) -> None: ... method showNormal (line 16625) | def showNormal(self) -> None: ... method size (line 16626) | def size(self) -> PySide2.QtCore.QSize: ... method sizeHint (line 16627) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method sizeIncrement (line 16628) | def sizeIncrement(self) -> PySide2.QtCore.QSize: ... method sizePolicy (line 16629) | def sizePolicy(self) -> QSizePolicy: ... method stackUnder (line 16630) | def stackUnder(self, arg__1: QWidget) -> None: ... method statusTip (line 16631) | def statusTip(self) -> str: ... method style (line 16632) | def style(self) -> QStyle: ... method styleSheet (line 16633) | def styleSheet(self) -> str: ... method tabletEvent (line 16634) | def tabletEvent(self, event: PySide2.QtGui.QTabletEvent) -> None: ... method testAttribute (line 16635) | def testAttribute(self, arg__1: PySide2.QtCore.Qt.WidgetAttribute) -> ... method toolTip (line 16636) | def toolTip(self) -> str: ... method toolTipDuration (line 16637) | def toolTipDuration(self) -> int: ... method topLevelWidget (line 16638) | def topLevelWidget(self) -> QWidget: ... method underMouse (line 16639) | def underMouse(self) -> bool: ... method ungrabGesture (line 16640) | def ungrabGesture(self, type: PySide2.QtCore.Qt.GestureType) -> None: ... method unsetCursor (line 16641) | def unsetCursor(self) -> None: ... method unsetLayoutDirection (line 16642) | def unsetLayoutDirection(self) -> None: ... method unsetLocale (line 16643) | def unsetLocale(self) -> None: ... method update (line 16645) | def update(self, x: int, y: int, w: int, h: int) -> None: ... method update (line 16647) | def update(self, arg__1: PySide2.QtCore.QRect) -> None: ... method update (line 16649) | def update(self, arg__1: PySide2.QtGui.QRegion) -> None: ... method update (line 16651) | def update(self) -> None: ... method updateGeometry (line 16652) | def updateGeometry(self) -> None: ... method updateMicroFocus (line 16653) | def updateMicroFocus(self) -> None: ... method updatesEnabled (line 16654) | def updatesEnabled(self) -> bool: ... method visibleRegion (line 16655) | def visibleRegion(self) -> PySide2.QtGui.QRegion: ... method whatsThis (line 16656) | def whatsThis(self) -> str: ... method wheelEvent (line 16657) | def wheelEvent(self, event: PySide2.QtGui.QWheelEvent) -> None: ... method width (line 16658) | def width(self) -> int: ... method winId (line 16659) | def winId(self) -> int: ... method window (line 16660) | def window(self) -> QWidget: ... method windowFilePath (line 16661) | def windowFilePath(self) -> str: ... method windowFlags (line 16662) | def windowFlags(self) -> PySide2.QtCore.Qt.WindowFlags | PySide2.QtCor... method windowHandle (line 16663) | def windowHandle(self) -> PySide2.QtGui.QWindow: ... method windowIcon (line 16664) | def windowIcon(self) -> PySide2.QtGui.QIcon: ... method windowIconText (line 16665) | def windowIconText(self) -> str: ... method windowModality (line 16666) | def windowModality(self) -> PySide2.QtCore.Qt.WindowModality: ... method windowOpacity (line 16667) | def windowOpacity(self) -> float: ... method windowRole (line 16668) | def windowRole(self) -> str: ... method windowState (line 16669) | def windowState(self) -> PySide2.QtCore.Qt.WindowStates | PySide2.QtCo... method windowTitle (line 16670) | def windowTitle(self) -> str: ... method windowType (line 16671) | def windowType(self) -> PySide2.QtCore.Qt.WindowType: ... method x (line 16672) | def x(self) -> int: ... method y (line 16673) | def y(self) -> int: ... class QWidgetAction (line 16675) | class QWidgetAction(QAction): method __init__ (line 16677) | def __init__(self, parent: PySide2.QtCore.QObject | None, autoRepeat: ... method createWidget (line 16678) | def createWidget(self, parent: QWidget | None) -> QWidget: ... method createdWidgets (line 16679) | def createdWidgets(self) -> list[QWidget]: ... method defaultWidget (line 16680) | def defaultWidget(self) -> QWidget: ... method deleteWidget (line 16681) | def deleteWidget(self, widget: QWidget) -> None: ... method event (line 16682) | def event(self, arg__1: PySide2.QtCore.QEvent) -> bool: ... method eventFilter (line 16683) | def eventFilter(self, arg__1: PySide2.QtCore.QObject, arg__2: PySide2.... method releaseWidget (line 16684) | def releaseWidget(self, widget: QWidget) -> None: ... method requestWidget (line 16685) | def requestWidget(self, parent: QWidget | None) -> QWidget: ... method setDefaultWidget (line 16686) | def setDefaultWidget(self, w: QWidget) -> None: ... class QWidgetItem (line 16688) | class QWidgetItem(QLayoutItem): method __init__ (line 16690) | def __init__(self, w: QWidget) -> None: ... method controlTypes (line 16691) | def controlTypes(self) -> QSizePolicy.ControlTypes | QSizePolicy.Contr... method expandingDirections (line 16692) | def expandingDirections(self) -> PySide2.QtCore.Qt.Orientations | PySi... method geometry (line 16693) | def geometry(self) -> PySide2.QtCore.QRect: ... method hasHeightForWidth (line 16694) | def hasHeightForWidth(self) -> bool: ... method heightForWidth (line 16695) | def heightForWidth(self, arg__1: int) -> int: ... method isEmpty (line 16696) | def isEmpty(self) -> bool: ... method maximumSize (line 16697) | def maximumSize(self) -> PySide2.QtCore.QSize: ... method minimumSize (line 16698) | def minimumSize(self) -> PySide2.QtCore.QSize: ... method setGeometry (line 16699) | def setGeometry(self, arg__1: PySide2.QtCore.QRect) -> None: ... method sizeHint (line 16700) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method widget (line 16701) | def widget(self) -> QWidget: ... class QWizard (line 16703) | class QWizard(QDialog): class WizardButton (line 16704) | class WizardButton: method __init__ (line 16721) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16722) | def __add__(self, other: typing.SupportsInt) -> QWizard.WizardButton... method __and__ (line 16723) | def __and__(self, other: typing.SupportsInt) -> QWizard.WizardButton... method __bool__ (line 16724) | def __bool__(self) -> bool: ... method __eq__ (line 16725) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16726) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16727) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16728) | def __hash__(self) -> int: ... method __index__ (line 16729) | def __index__(self) -> int: ... method __int__ (line 16730) | def __int__(self) -> int: ... method __le__ (line 16731) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16732) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16733) | def __mul__(self, other: typing.SupportsInt) -> QWizard.WizardButton... method __ne__ (line 16734) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16735) | def __or__(self, other: typing.SupportsInt) -> QWizard.WizardButton:... method __pos__ (line 16736) | def __pos__(self): ... method __radd__ (line 16737) | def __radd__(self, other: typing.SupportsInt) -> QWizard.WizardButto... method __rand__ (line 16738) | def __rand__(self, other: typing.SupportsInt) -> QWizard.WizardButto... method __rmul__ (line 16739) | def __rmul__(self, other: typing.SupportsInt) -> QWizard.WizardButto... method __ror__ (line 16740) | def __ror__(self, other: typing.SupportsInt) -> QWizard.WizardButton... method __rsub__ (line 16741) | def __rsub__(self, other: typing.SupportsInt) -> QWizard.WizardButto... method __rxor__ (line 16742) | def __rxor__(self, other: typing.SupportsInt) -> QWizard.WizardButto... method __sub__ (line 16743) | def __sub__(self, other: typing.SupportsInt) -> QWizard.WizardButton... method __xor__ (line 16744) | def __xor__(self, other: typing.SupportsInt) -> QWizard.WizardButton... class WizardOption (line 16746) | class WizardOption: method __init__ (line 16767) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16768) | def __and__(self, other: typing.SupportsInt) -> QWizard.WizardOption... method __bool__ (line 16769) | def __bool__(self) -> bool: ... method __eq__ (line 16770) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16771) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16772) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16773) | def __hash__(self) -> int: ... method __index__ (line 16774) | def __index__(self) -> int: ... method __int__ (line 16775) | def __int__(self) -> int: ... method __invert__ (line 16776) | def __invert__(self) -> QWizard.WizardOptions: ... method __le__ (line 16777) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16778) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16779) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16780) | def __or__(self, other: typing.SupportsInt) -> QWizard.WizardOptions... method __rand__ (line 16781) | def __rand__(self, other: typing.SupportsInt) -> QWizard.WizardOptio... method __ror__ (line 16782) | def __ror__(self, other: typing.SupportsInt) -> QWizard.WizardOption... method __rxor__ (line 16783) | def __rxor__(self, other: typing.SupportsInt) -> QWizard.WizardOptio... method __xor__ (line 16784) | def __xor__(self, other: typing.SupportsInt) -> QWizard.WizardOption... class WizardOptions (line 16786) | class WizardOptions: method __init__ (line 16788) | def __init__(cls, *args, **kwargs) -> None: ... method __and__ (line 16789) | def __and__(self, other: typing.SupportsInt) -> QWizard.WizardOption... method __bool__ (line 16790) | def __bool__(self) -> bool: ... method __eq__ (line 16791) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16792) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16793) | def __gt__(self, other: object) -> bool: ... method __index__ (line 16794) | def __index__(self) -> int: ... method __int__ (line 16795) | def __int__(self) -> int: ... method __invert__ (line 16796) | def __invert__(self) -> QWizard.WizardOptions: ... method __le__ (line 16797) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16798) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 16799) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16800) | def __or__(self, other: typing.SupportsInt) -> QWizard.WizardOptions... method __rand__ (line 16801) | def __rand__(self, other: typing.SupportsInt) -> QWizard.WizardOptio... method __ror__ (line 16802) | def __ror__(self, other: typing.SupportsInt) -> QWizard.WizardOption... method __rxor__ (line 16803) | def __rxor__(self, other: typing.SupportsInt) -> QWizard.WizardOptio... method __xor__ (line 16804) | def __xor__(self, other: typing.SupportsInt) -> QWizard.WizardOption... class WizardPixmap (line 16806) | class WizardPixmap: method __init__ (line 16815) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16816) | def __add__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap... method __and__ (line 16817) | def __and__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap... method __bool__ (line 16818) | def __bool__(self) -> bool: ... method __eq__ (line 16819) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16820) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16821) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16822) | def __hash__(self) -> int: ... method __index__ (line 16823) | def __index__(self) -> int: ... method __int__ (line 16824) | def __int__(self) -> int: ... method __le__ (line 16825) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16826) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16827) | def __mul__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap... method __ne__ (line 16828) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16829) | def __or__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap:... method __pos__ (line 16830) | def __pos__(self): ... method __radd__ (line 16831) | def __radd__(self, other: typing.SupportsInt) -> QWizard.WizardPixma... method __rand__ (line 16832) | def __rand__(self, other: typing.SupportsInt) -> QWizard.WizardPixma... method __rmul__ (line 16833) | def __rmul__(self, other: typing.SupportsInt) -> QWizard.WizardPixma... method __ror__ (line 16834) | def __ror__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap... method __rsub__ (line 16835) | def __rsub__(self, other: typing.SupportsInt) -> QWizard.WizardPixma... method __rxor__ (line 16836) | def __rxor__(self, other: typing.SupportsInt) -> QWizard.WizardPixma... method __sub__ (line 16837) | def __sub__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap... method __xor__ (line 16838) | def __xor__(self, other: typing.SupportsInt) -> QWizard.WizardPixmap... class WizardStyle (line 16840) | class WizardStyle: method __init__ (line 16849) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 16850) | def __add__(self, other: typing.SupportsInt) -> QWizard.WizardStyle:... method __and__ (line 16851) | def __and__(self, other: typing.SupportsInt) -> QWizard.WizardStyle:... method __bool__ (line 16852) | def __bool__(self) -> bool: ... method __eq__ (line 16853) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16854) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16855) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 16856) | def __hash__(self) -> int: ... method __index__ (line 16857) | def __index__(self) -> int: ... method __int__ (line 16858) | def __int__(self) -> int: ... method __le__ (line 16859) | def __le__(self, other: object) -> bool: ... method __lt__ (line 16860) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 16861) | def __mul__(self, other: typing.SupportsInt) -> QWizard.WizardStyle:... method __ne__ (line 16862) | def __ne__(self, other: object) -> bool: ... method __or__ (line 16863) | def __or__(self, other: typing.SupportsInt) -> QWizard.WizardStyle: ... method __pos__ (line 16864) | def __pos__(self): ... method __radd__ (line 16865) | def __radd__(self, other: typing.SupportsInt) -> QWizard.WizardStyle... method __rand__ (line 16866) | def __rand__(self, other: typing.SupportsInt) -> QWizard.WizardStyle... method __rmul__ (line 16867) | def __rmul__(self, other: typing.SupportsInt) -> QWizard.WizardStyle... method __ror__ (line 16868) | def __ror__(self, other: typing.SupportsInt) -> QWizard.WizardStyle:... method __rsub__ (line 16869) | def __rsub__(self, other: typing.SupportsInt) -> QWizard.WizardStyle... method __rxor__ (line 16870) | def __rxor__(self, other: typing.SupportsInt) -> QWizard.WizardStyle... method __sub__ (line 16871) | def __sub__(self, other: typing.SupportsInt) -> QWizard.WizardStyle:... method __xor__ (line 16872) | def __xor__(self, other: typing.SupportsInt) -> QWizard.WizardStyle:... method __init__ (line 16919) | def __init__(self, parent: QWidget | None = ..., flags: PySide2.QtCore... method addPage (line 16920) | def addPage(self, page: QWizardPage) -> int: ... method back (line 16921) | def back(self) -> None: ... method button (line 16922) | def button(self, which: QWizard.WizardButton) -> QAbstractButton: ... method buttonText (line 16923) | def buttonText(self, which: QWizard.WizardButton) -> str: ... method cleanupPage (line 16924) | def cleanupPage(self, id: int) -> None: ... method currentId (line 16925) | def currentId(self) -> int: ... method currentPage (line 16926) | def currentPage(self) -> QWizardPage: ... method done (line 16927) | def done(self, result: int) -> None: ... method event (line 16928) | def event(self, event: PySide2.QtCore.QEvent) -> bool: ... method field (line 16929) | def field(self, name: str) -> typing.Any: ... method hasVisitedPage (line 16930) | def hasVisitedPage(self, id: int) -> bool: ... method initializePage (line 16931) | def initializePage(self, id: int) -> None: ... method next (line 16932) | def next(self) -> None: ... method nextId (line 16933) | def nextId(self) -> int: ... method options (line 16934) | def options(self) -> QWizard.WizardOptions | QWizard.WizardOption: ... method page (line 16935) | def page(self, id: int) -> QWizardPage: ... method pageIds (line 16936) | def pageIds(self) -> list[int]: ... method paintEvent (line 16937) | def paintEvent(self, event: PySide2.QtGui.QPaintEvent) -> None: ... method pixmap (line 16938) | def pixmap(self, which: QWizard.WizardPixmap) -> PySide2.QtGui.QPixmap... method removePage (line 16939) | def removePage(self, id: int) -> None: ... method resizeEvent (line 16940) | def resizeEvent(self, event: PySide2.QtGui.QResizeEvent) -> None: ... method restart (line 16941) | def restart(self) -> None: ... method setButton (line 16942) | def setButton(self, which: QWizard.WizardButton, button: QAbstractButt... method setButtonLayout (line 16943) | def setButtonLayout(self, layout: typing.Iterable[QWizard.WizardButton... method setButtonText (line 16944) | def setButtonText(self, which: QWizard.WizardButton, text: str) -> Non... method setDefaultProperty (line 16945) | def setDefaultProperty(self, className: bytes, property: bytes, change... method setField (line 16946) | def setField(self, name: str, value: typing.Any) -> None: ... method setOption (line 16947) | def setOption(self, option: QWizard.WizardOption, on: bool = ...) -> N... method setOptions (line 16948) | def setOptions(self, options: QWizard.WizardOptions | QWizard.WizardOp... method setPage (line 16949) | def setPage(self, id: int, page: QWizardPage) -> None: ... method setPixmap (line 16950) | def setPixmap(self, which: QWizard.WizardPixmap, pixmap: PySide2.QtGui... method setSideWidget (line 16951) | def setSideWidget(self, widget: QWidget) -> None: ... method setStartId (line 16952) | def setStartId(self, id: int) -> None: ... method setSubTitleFormat (line 16953) | def setSubTitleFormat(self, format: PySide2.QtCore.Qt.TextFormat) -> N... method setTitleFormat (line 16954) | def setTitleFormat(self, format: PySide2.QtCore.Qt.TextFormat) -> None... method setVisible (line 16955) | def setVisible(self, visible: bool) -> None: ... method setWizardStyle (line 16956) | def setWizardStyle(self, style: QWizard.WizardStyle) -> None: ... method sideWidget (line 16957) | def sideWidget(self) -> QWidget: ... method sizeHint (line 16958) | def sizeHint(self) -> PySide2.QtCore.QSize: ... method startId (line 16959) | def startId(self) -> int: ... method subTitleFormat (line 16960) | def subTitleFormat(self) -> PySide2.QtCore.Qt.TextFormat: ... method testOption (line 16961) | def testOption(self, option: QWizard.WizardOption) -> bool: ... method titleFormat (line 16962) | def titleFormat(self) -> PySide2.QtCore.Qt.TextFormat: ... method validateCurrentPage (line 16963) | def validateCurrentPage(self) -> bool: ... method visitedIds (line 16964) | def visitedIds(self) -> list[int]: ... method visitedPages (line 16965) | def visitedPages(self) -> list[int]: ... method wizardStyle (line 16966) | def wizardStyle(self) -> QWizard.WizardStyle: ... class QWizardPage (line 16968) | class QWizardPage(QWidget): method __init__ (line 16971) | def __init__(self, parent: QWidget | None = ..., acceptDrops: bool = .... method buttonText (line 16972) | def buttonText(self, which: QWizard.WizardButton) -> str: ... method cleanupPage (line 16973) | def cleanupPage(self) -> None: ... method field (line 16974) | def field(self, name: str) -> typing.Any: ... method initializePage (line 16975) | def initializePage(self) -> None: ... method isCommitPage (line 16976) | def isCommitPage(self) -> bool: ... method isComplete (line 16977) | def isComplete(self) -> bool: ... method isFinalPage (line 16978) | def isFinalPage(self) -> bool: ... method nextId (line 16979) | def nextId(self) -> int: ... method pixmap (line 16980) | def pixmap(self, which: QWizard.WizardPixmap) -> PySide2.QtGui.QPixmap... method registerField (line 16981) | def registerField(self, name: str, widget: QWidget, property: bytes | ... method setButtonText (line 16982) | def setButtonText(self, which: QWizard.WizardButton, text: str) -> Non... method setCommitPage (line 16983) | def setCommitPage(self, commitPage: bool) -> None: ... method setField (line 16984) | def setField(self, name: str, value: typing.Any) -> None: ... method setFinalPage (line 16985) | def setFinalPage(self, finalPage: bool) -> None: ... method setPixmap (line 16986) | def setPixmap(self, which: QWizard.WizardPixmap, pixmap: PySide2.QtGui... method setSubTitle (line 16987) | def setSubTitle(self, subTitle: str) -> None: ... method setTitle (line 16988) | def setTitle(self, title: str) -> None: ... method subTitle (line 16989) | def subTitle(self) -> str: ... method title (line 16990) | def title(self) -> str: ... method validatePage (line 16991) | def validatePage(self) -> bool: ... method wizard (line 16992) | def wizard(self) -> QWizard: ... FILE: pyside/stubs/PySide2-stubs/QtXml.pyi class QDomAttr (line 11) | class QDomAttr(QDomNode): method __init__ (line 13) | def __init__(self, x: QDomAttr) -> None: ... method __init__ (line 15) | def __init__(self) -> None: ... method name (line 16) | def name(self) -> str: ... method nodeType (line 17) | def nodeType(self) -> QDomNode.NodeType: ... method ownerElement (line 18) | def ownerElement(self) -> QDomElement: ... method setValue (line 19) | def setValue(self, arg__1: str) -> None: ... method specified (line 20) | def specified(self) -> bool: ... method value (line 21) | def value(self) -> str: ... method __bool__ (line 22) | def __bool__(self) -> bool: ... method __copy__ (line 23) | def __copy__(self) -> None: ... class QDomCDATASection (line 25) | class QDomCDATASection(QDomText): method __init__ (line 27) | def __init__(self, x: QDomCDATASection) -> None: ... method __init__ (line 29) | def __init__(self) -> None: ... method nodeType (line 30) | def nodeType(self) -> QDomNode.NodeType: ... method __copy__ (line 31) | def __copy__(self) -> None: ... class QDomCharacterData (line 33) | class QDomCharacterData(QDomNode): method __init__ (line 35) | def __init__(self, x: QDomCharacterData) -> None: ... method __init__ (line 37) | def __init__(self) -> None: ... method appendData (line 38) | def appendData(self, arg: str) -> None: ... method data (line 39) | def data(self) -> str: ... method deleteData (line 40) | def deleteData(self, offset: int, count: int) -> None: ... method insertData (line 41) | def insertData(self, offset: int, arg: str) -> None: ... method length (line 42) | def length(self) -> int: ... method nodeType (line 43) | def nodeType(self) -> QDomNode.NodeType: ... method replaceData (line 44) | def replaceData(self, offset: int, count: int, arg: str) -> None: ... method setData (line 45) | def setData(self, arg__1: str) -> None: ... method substringData (line 46) | def substringData(self, offset: int, count: int) -> str: ... method __bool__ (line 47) | def __bool__(self) -> bool: ... method __copy__ (line 48) | def __copy__(self) -> None: ... class QDomComment (line 50) | class QDomComment(QDomCharacterData): method __init__ (line 52) | def __init__(self, x: QDomComment) -> None: ... method __init__ (line 54) | def __init__(self) -> None: ... method nodeType (line 55) | def nodeType(self) -> QDomNode.NodeType: ... method __copy__ (line 56) | def __copy__(self) -> None: ... class QDomDocument (line 58) | class QDomDocument(QDomNode): method __init__ (line 60) | def __init__(self, x: QDomDocument) -> None: ... method __init__ (line 62) | def __init__(self, name: str) -> None: ... method __init__ (line 64) | def __init__(self, doctype: QDomDocumentType) -> None: ... method __init__ (line 66) | def __init__(self) -> None: ... method createAttribute (line 67) | def createAttribute(self, name: str) -> QDomAttr: ... method createAttributeNS (line 68) | def createAttributeNS(self, nsURI: str, qName: str) -> QDomAttr: ... method createCDATASection (line 69) | def createCDATASection(self, data: str) -> QDomCDATASection: ... method createComment (line 70) | def createComment(self, data: str) -> QDomComment: ... method createDocumentFragment (line 71) | def createDocumentFragment(self) -> QDomDocumentFragment: ... method createElement (line 72) | def createElement(self, tagName: str) -> QDomElement: ... method createElementNS (line 73) | def createElementNS(self, nsURI: str, qName: str) -> QDomElement: ... method createEntityReference (line 74) | def createEntityReference(self, name: str) -> QDomEntityReference: ... method createProcessingInstruction (line 75) | def createProcessingInstruction(self, target: str, data: str) -> QDomP... method createTextNode (line 76) | def createTextNode(self, data: str) -> QDomText: ... method doctype (line 77) | def doctype(self) -> QDomDocumentType: ... method documentElement (line 78) | def documentElement(self) -> QDomElement: ... method elementById (line 79) | def elementById(self, elementId: str) -> QDomElement: ... method elementsByTagName (line 80) | def elementsByTagName(self, tagname: str) -> QDomNodeList: ... method elementsByTagNameNS (line 81) | def elementsByTagNameNS(self, nsURI: str, localName: str) -> QDomNodeL... method implementation (line 82) | def implementation(self) -> QDomImplementation: ... method importNode (line 83) | def importNode(self, importedNode: QDomNode, deep: bool) -> QDomNode: ... method nodeType (line 84) | def nodeType(self) -> QDomNode.NodeType: ... method setContent (line 86) | def setContent(self, text: PySide2.QtCore.QByteArray | bytes, namespac... method setContent (line 88) | def setContent(self, text: str, namespaceProcessing: bool) -> tuple[bo... method setContent (line 90) | def setContent(self, source: QXmlInputSource, reader: QXmlReader) -> t... method setContent (line 92) | def setContent(self, source: QXmlInputSource, namespaceProcessing: boo... method setContent (line 94) | def setContent(self, reader: PySide2.QtCore.QXmlStreamReader, namespac... method setContent (line 96) | def setContent(self, dev: PySide2.QtCore.QIODevice, namespaceProcessin... method setContent (line 98) | def setContent(self, text: PySide2.QtCore.QByteArray | bytes) -> tuple... method setContent (line 100) | def setContent(self, text: str) -> tuple[bool, str, int, int]: ... method setContent (line 102) | def setContent(self, dev: PySide2.QtCore.QIODevice) -> tuple[bool, str... method toByteArray (line 103) | def toByteArray(self, arg__1: int = ...) -> PySide2.QtCore.QByteArray:... method toString (line 104) | def toString(self, arg__1: int = ...) -> str: ... method __bool__ (line 105) | def __bool__(self) -> bool: ... method __copy__ (line 106) | def __copy__(self) -> None: ... class QDomDocumentFragment (line 108) | class QDomDocumentFragment(QDomNode): method __init__ (line 110) | def __init__(self, x: QDomDocumentFragment) -> None: ... method __init__ (line 112) | def __init__(self) -> None: ... method nodeType (line 113) | def nodeType(self) -> QDomNode.NodeType: ... method __bool__ (line 114) | def __bool__(self) -> bool: ... method __copy__ (line 115) | def __copy__(self) -> None: ... class QDomDocumentType (line 117) | class QDomDocumentType(QDomNode): method __init__ (line 119) | def __init__(self, x: QDomDocumentType) -> None: ... method __init__ (line 121) | def __init__(self) -> None: ... method entities (line 122) | def entities(self) -> QDomNamedNodeMap: ... method internalSubset (line 123) | def internalSubset(self) -> str: ... method name (line 124) | def name(self) -> str: ... method nodeType (line 125) | def nodeType(self) -> QDomNode.NodeType: ... method notations (line 126) | def notations(self) -> QDomNamedNodeMap: ... method publicId (line 127) | def publicId(self) -> str: ... method systemId (line 128) | def systemId(self) -> str: ... method __bool__ (line 129) | def __bool__(self) -> bool: ... method __copy__ (line 130) | def __copy__(self) -> None: ... class QDomElement (line 132) | class QDomElement(QDomNode): method __init__ (line 134) | def __init__(self, x: QDomElement) -> None: ... method __init__ (line 136) | def __init__(self) -> None: ... method attribute (line 137) | def attribute(self, name: str, defValue: str = ...) -> str: ... method attributeNS (line 138) | def attributeNS(self, nsURI: str, localName: str, defValue: str = ...)... method attributeNode (line 139) | def attributeNode(self, name: str) -> QDomAttr: ... method attributeNodeNS (line 140) | def attributeNodeNS(self, nsURI: str, localName: str) -> QDomAttr: ... method attributes (line 141) | def attributes(self) -> QDomNamedNodeMap: ... method elementsByTagName (line 142) | def elementsByTagName(self, tagname: str) -> QDomNodeList: ... method elementsByTagNameNS (line 143) | def elementsByTagNameNS(self, nsURI: str, localName: str) -> QDomNodeL... method hasAttribute (line 144) | def hasAttribute(self, name: str) -> bool: ... method hasAttributeNS (line 145) | def hasAttributeNS(self, nsURI: str, localName: str) -> bool: ... method nodeType (line 146) | def nodeType(self) -> QDomNode.NodeType: ... method removeAttribute (line 147) | def removeAttribute(self, name: str) -> None: ... method removeAttributeNS (line 148) | def removeAttributeNS(self, nsURI: str, localName: str) -> None: ... method removeAttributeNode (line 149) | def removeAttributeNode(self, oldAttr: QDomAttr) -> QDomAttr: ... method setAttribute (line 151) | def setAttribute(self, name: str, value: str) -> None: ... method setAttribute (line 153) | def setAttribute(self, name: str, value: float) -> None: ... method setAttribute (line 155) | def setAttribute(self, name: str, value: int) -> None: ... # type: ig... method setAttributeNS (line 157) | def setAttributeNS(self, nsURI: str, qName: str, value: str) -> None: ... method setAttributeNS (line 159) | def setAttributeNS(self, nsURI: str, qName: str, value: float) -> None... method setAttributeNS (line 161) | def setAttributeNS(self, nsURI: str, qName: str, value: int) -> None: ... method setAttributeNode (line 162) | def setAttributeNode(self, newAttr: QDomAttr) -> QDomAttr: ... method setAttributeNodeNS (line 163) | def setAttributeNodeNS(self, newAttr: QDomAttr) -> QDomAttr: ... method setTagName (line 164) | def setTagName(self, name: str) -> None: ... method tagName (line 165) | def tagName(self) -> str: ... method text (line 166) | def text(self) -> str: ... method __bool__ (line 167) | def __bool__(self) -> bool: ... method __copy__ (line 168) | def __copy__(self) -> None: ... class QDomEntity (line 170) | class QDomEntity(QDomNode): method __init__ (line 172) | def __init__(self, x: QDomEntity) -> None: ... method __init__ (line 174) | def __init__(self) -> None: ... method nodeType (line 175) | def nodeType(self) -> QDomNode.NodeType: ... method notationName (line 176) | def notationName(self) -> str: ... method publicId (line 177) | def publicId(self) -> str: ... method systemId (line 178) | def systemId(self) -> str: ... method __bool__ (line 179) | def __bool__(self) -> bool: ... method __copy__ (line 180) | def __copy__(self) -> None: ... class QDomEntityReference (line 182) | class QDomEntityReference(QDomNode): method __init__ (line 184) | def __init__(self, x: QDomEntityReference) -> None: ... method __init__ (line 186) | def __init__(self) -> None: ... method nodeType (line 187) | def nodeType(self) -> QDomNode.NodeType: ... method __bool__ (line 188) | def __bool__(self) -> bool: ... method __copy__ (line 189) | def __copy__(self) -> None: ... class QDomImplementation (line 191) | class QDomImplementation(shiboken2.Object): class InvalidDataPolicy (line 192) | class InvalidDataPolicy: method __init__ (line 199) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 200) | def __add__(self, other: typing.SupportsInt) -> QDomImplementation.I... method __and__ (line 201) | def __and__(self, other: typing.SupportsInt) -> QDomImplementation.I... method __bool__ (line 202) | def __bool__(self) -> bool: ... method __eq__ (line 203) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 204) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 205) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 206) | def __hash__(self) -> int: ... method __index__ (line 207) | def __index__(self) -> int: ... method __int__ (line 208) | def __int__(self) -> int: ... method __le__ (line 209) | def __le__(self, other: object) -> bool: ... method __lt__ (line 210) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 211) | def __mul__(self, other: typing.SupportsInt) -> QDomImplementation.I... method __ne__ (line 212) | def __ne__(self, other: object) -> bool: ... method __or__ (line 213) | def __or__(self, other: typing.SupportsInt) -> QDomImplementation.In... method __pos__ (line 214) | def __pos__(self): ... method __radd__ (line 215) | def __radd__(self, other: typing.SupportsInt) -> QDomImplementation.... method __rand__ (line 216) | def __rand__(self, other: typing.SupportsInt) -> QDomImplementation.... method __rmul__ (line 217) | def __rmul__(self, other: typing.SupportsInt) -> QDomImplementation.... method __ror__ (line 218) | def __ror__(self, other: typing.SupportsInt) -> QDomImplementation.I... method __rsub__ (line 219) | def __rsub__(self, other: typing.SupportsInt) -> QDomImplementation.... method __rxor__ (line 220) | def __rxor__(self, other: typing.SupportsInt) -> QDomImplementation.... method __sub__ (line 221) | def __sub__(self, other: typing.SupportsInt) -> QDomImplementation.I... method __xor__ (line 222) | def __xor__(self, other: typing.SupportsInt) -> QDomImplementation.I... method __init__ (line 227) | def __init__(self, arg__1: QDomImplementation) -> None: ... method __init__ (line 229) | def __init__(self) -> None: ... method createDocument (line 230) | def createDocument(self, nsURI: str, qName: str, doctype: QDomDocument... method createDocumentType (line 231) | def createDocumentType(self, qName: str, publicId: str, systemId: str)... method hasFeature (line 232) | def hasFeature(self, feature: str, version: str) -> bool: ... method invalidDataPolicy (line 234) | def invalidDataPolicy() -> QDomImplementation.InvalidDataPolicy: ... method isNull (line 235) | def isNull(self) -> bool: ... method setInvalidDataPolicy (line 237) | def setInvalidDataPolicy(policy: QDomImplementation.InvalidDataPolicy)... method __copy__ (line 238) | def __copy__(self) -> None: ... method __eq__ (line 239) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 240) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 241) | def __gt__(self, other: object) -> bool: ... method __le__ (line 242) | def __le__(self, other: object) -> bool: ... method __lt__ (line 243) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 244) | def __ne__(self, other: object) -> bool: ... class QDomNamedNodeMap (line 246) | class QDomNamedNodeMap(shiboken2.Object): method __init__ (line 248) | def __init__(self, arg__1: QDomNamedNodeMap) -> None: ... method __init__ (line 250) | def __init__(self) -> None: ... method contains (line 251) | def contains(self, name: str) -> bool: ... method count (line 252) | def count(self) -> int: ... method isEmpty (line 253) | def isEmpty(self) -> bool: ... method item (line 254) | def item(self, index: int) -> QDomNode: ... method length (line 255) | def length(self) -> int: ... method namedItem (line 256) | def namedItem(self, name: str) -> QDomNode: ... method namedItemNS (line 257) | def namedItemNS(self, nsURI: str, localName: str) -> QDomNode: ... method removeNamedItem (line 258) | def removeNamedItem(self, name: str) -> QDomNode: ... method removeNamedItemNS (line 259) | def removeNamedItemNS(self, nsURI: str, localName: str) -> QDomNode: ... method setNamedItem (line 260) | def setNamedItem(self, newNode: QDomNode) -> QDomNode: ... method setNamedItemNS (line 261) | def setNamedItemNS(self, newNode: QDomNode) -> QDomNode: ... method size (line 262) | def size(self) -> int: ... method __copy__ (line 263) | def __copy__(self) -> None: ... method __eq__ (line 264) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 265) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 266) | def __gt__(self, other: object) -> bool: ... method __le__ (line 267) | def __le__(self, other: object) -> bool: ... method __lt__ (line 268) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 269) | def __ne__(self, other: object) -> bool: ... class QDomNode (line 271) | class QDomNode(shiboken2.Object): class EncodingPolicy (line 272) | class EncodingPolicy: method __init__ (line 278) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 279) | def __add__(self, other: typing.SupportsInt) -> QDomNode.EncodingPol... method __and__ (line 280) | def __and__(self, other: typing.SupportsInt) -> QDomNode.EncodingPol... method __bool__ (line 281) | def __bool__(self) -> bool: ... method __eq__ (line 282) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 283) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 284) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 285) | def __hash__(self) -> int: ... method __index__ (line 286) | def __index__(self) -> int: ... method __int__ (line 287) | def __int__(self) -> int: ... method __le__ (line 288) | def __le__(self, other: object) -> bool: ... method __lt__ (line 289) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 290) | def __mul__(self, other: typing.SupportsInt) -> QDomNode.EncodingPol... method __ne__ (line 291) | def __ne__(self, other: object) -> bool: ... method __or__ (line 292) | def __or__(self, other: typing.SupportsInt) -> QDomNode.EncodingPoli... method __pos__ (line 293) | def __pos__(self): ... method __radd__ (line 294) | def __radd__(self, other: typing.SupportsInt) -> QDomNode.EncodingPo... method __rand__ (line 295) | def __rand__(self, other: typing.SupportsInt) -> QDomNode.EncodingPo... method __rmul__ (line 296) | def __rmul__(self, other: typing.SupportsInt) -> QDomNode.EncodingPo... method __ror__ (line 297) | def __ror__(self, other: typing.SupportsInt) -> QDomNode.EncodingPol... method __rsub__ (line 298) | def __rsub__(self, other: typing.SupportsInt) -> QDomNode.EncodingPo... method __rxor__ (line 299) | def __rxor__(self, other: typing.SupportsInt) -> QDomNode.EncodingPo... method __sub__ (line 300) | def __sub__(self, other: typing.SupportsInt) -> QDomNode.EncodingPol... method __xor__ (line 301) | def __xor__(self, other: typing.SupportsInt) -> QDomNode.EncodingPol... class NodeType (line 303) | class NodeType: method __init__ (line 321) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 322) | def __add__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __and__ (line 323) | def __and__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __bool__ (line 324) | def __bool__(self) -> bool: ... method __eq__ (line 325) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 326) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 327) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 328) | def __hash__(self) -> int: ... method __index__ (line 329) | def __index__(self) -> int: ... method __int__ (line 330) | def __int__(self) -> int: ... method __le__ (line 331) | def __le__(self, other: object) -> bool: ... method __lt__ (line 332) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 333) | def __mul__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __ne__ (line 334) | def __ne__(self, other: object) -> bool: ... method __or__ (line 335) | def __or__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __pos__ (line 336) | def __pos__(self): ... method __radd__ (line 337) | def __radd__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __rand__ (line 338) | def __rand__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __rmul__ (line 339) | def __rmul__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __ror__ (line 340) | def __ror__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __rsub__ (line 341) | def __rsub__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __rxor__ (line 342) | def __rxor__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __sub__ (line 343) | def __sub__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __xor__ (line 344) | def __xor__(self, other: typing.SupportsInt) -> QDomNode.NodeType: ... method __init__ (line 362) | def __init__(self, arg__1: QDomNode) -> None: ... method __init__ (line 364) | def __init__(self) -> None: ... method appendChild (line 365) | def appendChild(self, newChild: QDomNode) -> QDomNode: ... method attributes (line 366) | def attributes(self) -> QDomNamedNodeMap: ... method childNodes (line 367) | def childNodes(self) -> QDomNodeList: ... method clear (line 368) | def clear(self) -> None: ... method cloneNode (line 369) | def cloneNode(self, deep: bool = ...) -> QDomNode: ... method columnNumber (line 370) | def columnNumber(self) -> int: ... method firstChild (line 371) | def firstChild(self) -> QDomNode: ... method firstChildElement (line 372) | def firstChildElement(self, tagName: str = ...) -> QDomElement: ... method hasAttributes (line 373) | def hasAttributes(self) -> bool: ... method hasChildNodes (line 374) | def hasChildNodes(self) -> bool: ... method insertAfter (line 375) | def insertAfter(self, newChild: QDomNode, refChild: QDomNode) -> QDomN... method insertBefore (line 376) | def insertBefore(self, newChild: QDomNode, refChild: QDomNode) -> QDom... method isAttr (line 377) | def isAttr(self) -> bool: ... method isCDATASection (line 378) | def isCDATASection(self) -> bool: ... method isCharacterData (line 379) | def isCharacterData(self) -> bool: ... method isComment (line 380) | def isComment(self) -> bool: ... method isDocument (line 381) | def isDocument(self) -> bool: ... method isDocumentFragment (line 382) | def isDocumentFragment(self) -> bool: ... method isDocumentType (line 383) | def isDocumentType(self) -> bool: ... method isElement (line 384) | def isElement(self) -> bool: ... method isEntity (line 385) | def isEntity(self) -> bool: ... method isEntityReference (line 386) | def isEntityReference(self) -> bool: ... method isNotation (line 387) | def isNotation(self) -> bool: ... method isNull (line 388) | def isNull(self) -> bool: ... method isProcessingInstruction (line 389) | def isProcessingInstruction(self) -> bool: ... method isSupported (line 390) | def isSupported(self, feature: str, version: str) -> bool: ... method isText (line 391) | def isText(self) -> bool: ... method lastChild (line 392) | def lastChild(self) -> QDomNode: ... method lastChildElement (line 393) | def lastChildElement(self, tagName: str = ...) -> QDomElement: ... method lineNumber (line 394) | def lineNumber(self) -> int: ... method localName (line 395) | def localName(self) -> str: ... method namedItem (line 396) | def namedItem(self, name: str) -> QDomNode: ... method namespaceURI (line 397) | def namespaceURI(self) -> str: ... method nextSibling (line 398) | def nextSibling(self) -> QDomNode: ... method nextSiblingElement (line 399) | def nextSiblingElement(self, taName: str = ...) -> QDomElement: ... method nodeName (line 400) | def nodeName(self) -> str: ... method nodeType (line 401) | def nodeType(self) -> QDomNode.NodeType: ... method nodeValue (line 402) | def nodeValue(self) -> str: ... method normalize (line 403) | def normalize(self) -> None: ... method ownerDocument (line 404) | def ownerDocument(self) -> QDomDocument: ... method parentNode (line 405) | def parentNode(self) -> QDomNode: ... method prefix (line 406) | def prefix(self) -> str: ... method previousSibling (line 407) | def previousSibling(self) -> QDomNode: ... method previousSiblingElement (line 408) | def previousSiblingElement(self, tagName: str = ...) -> QDomElement: ... method removeChild (line 409) | def removeChild(self, oldChild: QDomNode) -> QDomNode: ... method replaceChild (line 410) | def replaceChild(self, newChild: QDomNode, oldChild: QDomNode) -> QDom... method save (line 411) | def save(self, arg__1: PySide2.QtCore.QTextStream, arg__2: int, arg__3... method setNodeValue (line 412) | def setNodeValue(self, arg__1: str) -> None: ... method setPrefix (line 413) | def setPrefix(self, pre: str) -> None: ... method toAttr (line 414) | def toAttr(self) -> QDomAttr: ... method toCDATASection (line 415) | def toCDATASection(self) -> QDomCDATASection: ... method toCharacterData (line 416) | def toCharacterData(self) -> QDomCharacterData: ... method toComment (line 417) | def toComment(self) -> QDomComment: ... method toDocument (line 418) | def toDocument(self) -> QDomDocument: ... method toDocumentFragment (line 419) | def toDocumentFragment(self) -> QDomDocumentFragment: ... method toDocumentType (line 420) | def toDocumentType(self) -> QDomDocumentType: ... method toElement (line 421) | def toElement(self) -> QDomElement: ... method toEntity (line 422) | def toEntity(self) -> QDomEntity: ... method toEntityReference (line 423) | def toEntityReference(self) -> QDomEntityReference: ... method toNotation (line 424) | def toNotation(self) -> QDomNotation: ... method toProcessingInstruction (line 425) | def toProcessingInstruction(self) -> QDomProcessingInstruction: ... method toText (line 426) | def toText(self) -> QDomText: ... method __bool__ (line 427) | def __bool__(self) -> bool: ... method __copy__ (line 428) | def __copy__(self) -> None: ... method __eq__ (line 429) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 430) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 431) | def __gt__(self, other: object) -> bool: ... method __le__ (line 432) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 433) | def __lshift__(self, arg__1: PySide2.QtCore.QTextStream) -> PySide2.Qt... method __lt__ (line 434) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 435) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 436) | def __rlshift__(self, other): ... class QDomNodeList (line 438) | class QDomNodeList(shiboken2.Object): method __init__ (line 440) | def __init__(self, arg__1: QDomNodeList) -> None: ... method __init__ (line 442) | def __init__(self) -> None: ... method at (line 443) | def at(self, index: int) -> QDomNode: ... method count (line 444) | def count(self) -> int: ... method isEmpty (line 445) | def isEmpty(self) -> bool: ... method item (line 446) | def item(self, index: int) -> QDomNode: ... method length (line 447) | def length(self) -> int: ... method size (line 448) | def size(self) -> int: ... method __copy__ (line 449) | def __copy__(self) -> None: ... method __eq__ (line 450) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 451) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 452) | def __gt__(self, other: object) -> bool: ... method __le__ (line 453) | def __le__(self, other: object) -> bool: ... method __lt__ (line 454) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 455) | def __ne__(self, other: object) -> bool: ... class QDomNotation (line 457) | class QDomNotation(QDomNode): method __init__ (line 459) | def __init__(self, x: QDomNotation) -> None: ... method __init__ (line 461) | def __init__(self) -> None: ... method nodeType (line 462) | def nodeType(self) -> QDomNode.NodeType: ... method publicId (line 463) | def publicId(self) -> str: ... method systemId (line 464) | def systemId(self) -> str: ... method __bool__ (line 465) | def __bool__(self) -> bool: ... method __copy__ (line 466) | def __copy__(self) -> None: ... class QDomProcessingInstruction (line 468) | class QDomProcessingInstruction(QDomNode): method __init__ (line 470) | def __init__(self, x: QDomProcessingInstruction) -> None: ... method __init__ (line 472) | def __init__(self) -> None: ... method data (line 473) | def data(self) -> str: ... method nodeType (line 474) | def nodeType(self) -> QDomNode.NodeType: ... method setData (line 475) | def setData(self, d: str) -> None: ... method target (line 476) | def target(self) -> str: ... method __bool__ (line 477) | def __bool__(self) -> bool: ... method __copy__ (line 478) | def __copy__(self) -> None: ... class QDomText (line 480) | class QDomText(QDomCharacterData): method __init__ (line 482) | def __init__(self, x: QDomText) -> None: ... method __init__ (line 484) | def __init__(self) -> None: ... method nodeType (line 485) | def nodeType(self) -> QDomNode.NodeType: ... method splitText (line 486) | def splitText(self, offset: int) -> QDomText: ... method __copy__ (line 487) | def __copy__(self) -> None: ... class QXmlAttributes (line 489) | class QXmlAttributes(shiboken2.Object): method __init__ (line 491) | def __init__(self, arg__1: QXmlAttributes) -> None: ... method __init__ (line 493) | def __init__(self) -> None: ... method append (line 494) | def append(self, qName: str, uri: str, localPart: str, value: str) -> ... method clear (line 495) | def clear(self) -> None: ... method count (line 496) | def count(self) -> int: ... method index (line 498) | def index(self, uri: str, localPart: str) -> int: ... method index (line 500) | def index(self, qName: str) -> int: ... method length (line 501) | def length(self) -> int: ... method localName (line 502) | def localName(self, index: int) -> str: ... method qName (line 503) | def qName(self, index: int) -> str: ... method swap (line 504) | def swap(self, other: QXmlAttributes) -> None: ... method type (line 506) | def type(self, uri: str, localName: str) -> str: ... method type (line 508) | def type(self, qName: str) -> str: ... method type (line 510) | def type(self, index: int) -> str: ... method uri (line 511) | def uri(self, index: int) -> str: ... method value (line 513) | def value(self, uri: str, localName: str) -> str: ... method value (line 515) | def value(self, qName: str) -> str: ... method value (line 517) | def value(self, index: int) -> str: ... method __copy__ (line 518) | def __copy__(self) -> None: ... class QXmlContentHandler (line 520) | class QXmlContentHandler(shiboken2.Object): method __init__ (line 521) | def __init__(self) -> None: ... method characters (line 522) | def characters(self, ch: str) -> bool: ... method endDocument (line 523) | def endDocument(self) -> bool: ... method endElement (line 524) | def endElement(self, namespaceURI: str, localName: str, qName: str) ->... method endPrefixMapping (line 525) | def endPrefixMapping(self, prefix: str) -> bool: ... method errorString (line 526) | def errorString(self) -> str: ... method ignorableWhitespace (line 527) | def ignorableWhitespace(self, ch: str) -> bool: ... method processingInstruction (line 528) | def processingInstruction(self, target: str, data: str) -> bool: ... method setDocumentLocator (line 529) | def setDocumentLocator(self, locator: QXmlLocator) -> None: ... method skippedEntity (line 530) | def skippedEntity(self, name: str) -> bool: ... method startDocument (line 531) | def startDocument(self) -> bool: ... method startElement (line 532) | def startElement(self, namespaceURI: str, localName: str, qName: str, ... method startPrefixMapping (line 533) | def startPrefixMapping(self, prefix: str, uri: str) -> bool: ... class QXmlDTDHandler (line 535) | class QXmlDTDHandler(shiboken2.Object): method __init__ (line 536) | def __init__(self) -> None: ... method errorString (line 537) | def errorString(self) -> str: ... method notationDecl (line 538) | def notationDecl(self, name: str, publicId: str, systemId: str) -> boo... method unparsedEntityDecl (line 539) | def unparsedEntityDecl(self, name: str, publicId: str, systemId: str, ... class QXmlDeclHandler (line 541) | class QXmlDeclHandler(shiboken2.Object): method __init__ (line 542) | def __init__(self) -> None: ... method attributeDecl (line 543) | def attributeDecl(self, eName: str, aName: str, type: str, valueDefaul... method errorString (line 544) | def errorString(self) -> str: ... method externalEntityDecl (line 545) | def externalEntityDecl(self, name: str, publicId: str, systemId: str) ... method internalEntityDecl (line 546) | def internalEntityDecl(self, name: str, value: str) -> bool: ... class QXmlDefaultHandler (line 548) | class QXmlDefaultHandler(QXmlContentHandler, QXmlErrorHandler, QXmlDTDHa... method __init__ (line 549) | def __init__(self) -> None: ... method attributeDecl (line 550) | def attributeDecl(self, eName: str, aName: str, type: str, valueDefaul... method characters (line 551) | def characters(self, ch: str) -> bool: ... method comment (line 552) | def comment(self, ch: str) -> bool: ... method endCDATA (line 553) | def endCDATA(self) -> bool: ... method endDTD (line 554) | def endDTD(self) -> bool: ... method endDocument (line 555) | def endDocument(self) -> bool: ... method endElement (line 556) | def endElement(self, namespaceURI: str, localName: str, qName: str) ->... method endEntity (line 557) | def endEntity(self, name: str) -> bool: ... method endPrefixMapping (line 558) | def endPrefixMapping(self, prefix: str) -> bool: ... method error (line 559) | def error(self, exception: QXmlParseException) -> bool: ... method errorString (line 560) | def errorString(self) -> str: ... method externalEntityDecl (line 561) | def externalEntityDecl(self, name: str, publicId: str, systemId: str) ... method fatalError (line 562) | def fatalError(self, exception: QXmlParseException) -> bool: ... method ignorableWhitespace (line 563) | def ignorableWhitespace(self, ch: str) -> bool: ... method internalEntityDecl (line 564) | def internalEntityDecl(self, name: str, value: str) -> bool: ... method notationDecl (line 565) | def notationDecl(self, name: str, publicId: str, systemId: str) -> boo... method processingInstruction (line 566) | def processingInstruction(self, target: str, data: str) -> bool: ... method resolveEntity (line 567) | def resolveEntity(self, publicId: str, systemId: str, ret: QXmlInputSo... method setDocumentLocator (line 568) | def setDocumentLocator(self, locator: QXmlLocator) -> None: ... method skippedEntity (line 569) | def skippedEntity(self, name: str) -> bool: ... method startCDATA (line 570) | def startCDATA(self) -> bool: ... method startDTD (line 571) | def startDTD(self, name: str, publicId: str, systemId: str) -> bool: ... method startDocument (line 572) | def startDocument(self) -> bool: ... method startElement (line 573) | def startElement(self, namespaceURI: str, localName: str, qName: str, ... method startEntity (line 574) | def startEntity(self, name: str) -> bool: ... method startPrefixMapping (line 575) | def startPrefixMapping(self, prefix: str, uri: str) -> bool: ... method unparsedEntityDecl (line 576) | def unparsedEntityDecl(self, name: str, publicId: str, systemId: str, ... method warning (line 577) | def warning(self, exception: QXmlParseException) -> bool: ... class QXmlEntityResolver (line 579) | class QXmlEntityResolver(shiboken2.Object): method __init__ (line 580) | def __init__(self) -> None: ... method errorString (line 581) | def errorString(self) -> str: ... method resolveEntity (line 582) | def resolveEntity(self, publicId: str, systemId: str, ret: QXmlInputSo... class QXmlErrorHandler (line 584) | class QXmlErrorHandler(shiboken2.Object): method __init__ (line 585) | def __init__(self) -> None: ... method error (line 586) | def error(self, exception: QXmlParseException) -> bool: ... method errorString (line 587) | def errorString(self) -> str: ... method fatalError (line 588) | def fatalError(self, exception: QXmlParseException) -> bool: ... method warning (line 589) | def warning(self, exception: QXmlParseException) -> bool: ... class QXmlInputSource (line 591) | class QXmlInputSource(shiboken2.Object): method __init__ (line 593) | def __init__(self, dev: PySide2.QtCore.QIODevice) -> None: ... method __init__ (line 595) | def __init__(self) -> None: ... method data (line 596) | def data(self) -> str: ... method fetchData (line 597) | def fetchData(self) -> None: ... method fromRawData (line 598) | def fromRawData(self, data: PySide2.QtCore.QByteArray | bytes, beginni... method next (line 599) | def next(self) -> str: ... method reset (line 600) | def reset(self) -> None: ... method setData (line 602) | def setData(self, dat: PySide2.QtCore.QByteArray | bytes) -> None: ... method setData (line 604) | def setData(self, dat: str) -> None: ... class QXmlLexicalHandler (line 606) | class QXmlLexicalHandler(shiboken2.Object): method __init__ (line 607) | def __init__(self) -> None: ... method comment (line 608) | def comment(self, ch: str) -> bool: ... method endCDATA (line 609) | def endCDATA(self) -> bool: ... method endDTD (line 610) | def endDTD(self) -> bool: ... method endEntity (line 611) | def endEntity(self, name: str) -> bool: ... method errorString (line 612) | def errorString(self) -> str: ... method startCDATA (line 613) | def startCDATA(self) -> bool: ... method startDTD (line 614) | def startDTD(self, name: str, publicId: str, systemId: str) -> bool: ... method startEntity (line 615) | def startEntity(self, name: str) -> bool: ... class QXmlLocator (line 617) | class QXmlLocator(shiboken2.Object): method __init__ (line 618) | def __init__(self) -> None: ... method columnNumber (line 619) | def columnNumber(self) -> int: ... method lineNumber (line 620) | def lineNumber(self) -> int: ... class QXmlNamespaceSupport (line 622) | class QXmlNamespaceSupport(shiboken2.Object): method __init__ (line 623) | def __init__(self) -> None: ... method popContext (line 624) | def popContext(self) -> None: ... method prefix (line 625) | def prefix(self, arg__1: str) -> str: ... method prefixes (line 627) | def prefixes(self, arg__1: str) -> list[str]: ... method prefixes (line 629) | def prefixes(self) -> list[str]: ... method processName (line 630) | def processName(self, arg__1: str, arg__2: bool, arg__3: str, arg__4: ... method pushContext (line 631) | def pushContext(self) -> None: ... method reset (line 632) | def reset(self) -> None: ... method setPrefix (line 633) | def setPrefix(self, arg__1: str, arg__2: str) -> None: ... method splitName (line 634) | def splitName(self, arg__1: str, arg__2: str, arg__3: str) -> None: ... method uri (line 635) | def uri(self, arg__1: str) -> str: ... class QXmlParseException (line 637) | class QXmlParseException(shiboken2.Object): method __init__ (line 639) | def __init__(self, name: str = ..., c: int = ..., l: int = ..., p: str... method __init__ (line 641) | def __init__(self, other: QXmlParseException) -> None: ... method columnNumber (line 642) | def columnNumber(self) -> int: ... method lineNumber (line 643) | def lineNumber(self) -> int: ... method message (line 644) | def message(self) -> str: ... method publicId (line 645) | def publicId(self) -> str: ... method systemId (line 646) | def systemId(self) -> str: ... class QXmlReader (line 648) | class QXmlReader(shiboken2.Object): method __init__ (line 649) | def __init__(self) -> None: ... method DTDHandler (line 650) | def DTDHandler(self) -> QXmlDTDHandler: ... method contentHandler (line 651) | def contentHandler(self) -> QXmlContentHandler: ... method declHandler (line 652) | def declHandler(self) -> QXmlDeclHandler: ... method entityResolver (line 653) | def entityResolver(self) -> QXmlEntityResolver: ... method errorHandler (line 654) | def errorHandler(self) -> QXmlErrorHandler: ... method feature (line 655) | def feature(self, name: str) -> tuple[bool, bool]: ... method hasFeature (line 656) | def hasFeature(self, name: str) -> bool: ... method hasProperty (line 657) | def hasProperty(self, name: str) -> bool: ... method lexicalHandler (line 658) | def lexicalHandler(self) -> QXmlLexicalHandler: ... method parse (line 659) | def parse(self, input: QXmlInputSource) -> bool: ... method property (line 660) | def property(self, name: str) -> tuple[int, bool]: ... method setContentHandler (line 661) | def setContentHandler(self, handler: QXmlContentHandler) -> None: ... method setDTDHandler (line 662) | def setDTDHandler(self, handler: QXmlDTDHandler) -> None: ... method setDeclHandler (line 663) | def setDeclHandler(self, handler: QXmlDeclHandler) -> None: ... method setEntityResolver (line 664) | def setEntityResolver(self, handler: QXmlEntityResolver) -> None: ... method setErrorHandler (line 665) | def setErrorHandler(self, handler: QXmlErrorHandler) -> None: ... method setFeature (line 666) | def setFeature(self, name: str, value: bool) -> None: ... method setLexicalHandler (line 667) | def setLexicalHandler(self, handler: QXmlLexicalHandler) -> None: ... method setProperty (line 668) | def setProperty(self, name: str, value: int) -> None: ... class QXmlSimpleReader (line 670) | class QXmlSimpleReader(QXmlReader): method __init__ (line 671) | def __init__(self) -> None: ... method DTDHandler (line 672) | def DTDHandler(self) -> QXmlDTDHandler: ... method contentHandler (line 673) | def contentHandler(self) -> QXmlContentHandler: ... method declHandler (line 674) | def declHandler(self) -> QXmlDeclHandler: ... method entityResolver (line 675) | def entityResolver(self) -> QXmlEntityResolver: ... method errorHandler (line 676) | def errorHandler(self) -> QXmlErrorHandler: ... method feature (line 677) | def feature(self, name: str) -> tuple[bool, bool]: ... method hasFeature (line 678) | def hasFeature(self, name: str) -> bool: ... method hasProperty (line 679) | def hasProperty(self, name: str) -> bool: ... method lexicalHandler (line 680) | def lexicalHandler(self) -> QXmlLexicalHandler: ... method parse (line 682) | def parse(self, input: QXmlInputSource, incremental: bool) -> bool: ... method parse (line 684) | def parse(self, input: QXmlInputSource) -> bool: ... method parseContinue (line 685) | def parseContinue(self) -> bool: ... method property (line 686) | def property(self, name: str) -> tuple[int, bool]: ... method setContentHandler (line 687) | def setContentHandler(self, handler: QXmlContentHandler) -> None: ... method setDTDHandler (line 688) | def setDTDHandler(self, handler: QXmlDTDHandler) -> None: ... method setDeclHandler (line 689) | def setDeclHandler(self, handler: QXmlDeclHandler) -> None: ... method setEntityResolver (line 690) | def setEntityResolver(self, handler: QXmlEntityResolver) -> None: ... method setErrorHandler (line 691) | def setErrorHandler(self, handler: QXmlErrorHandler) -> None: ... method setFeature (line 692) | def setFeature(self, name: str, value: bool) -> None: ... method setLexicalHandler (line 693) | def setLexicalHandler(self, handler: QXmlLexicalHandler) -> None: ... method setProperty (line 694) | def setProperty(self, name: str, value: int) -> None: ... FILE: pyside/stubs/PySide2-stubs/QtXmlPatterns.pyi class QAbstractMessageHandler (line 11) | class QAbstractMessageHandler(PySide2.QtCore.QObject): method __init__ (line 13) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method handleMessage (line 14) | def handleMessage(self, type: PySide2.QtCore.QtMsgType, description: s... method message (line 15) | def message(self, type: PySide2.QtCore.QtMsgType, description: str, id... class QAbstractUriResolver (line 17) | class QAbstractUriResolver(PySide2.QtCore.QObject): method __init__ (line 19) | def __init__(self, parent: PySide2.QtCore.QObject | None = ..., destro... method resolve (line 20) | def resolve(self, relative: PySide2.QtCore.QUrl, baseURI: PySide2.QtCo... class QAbstractXmlNodeModel (line 22) | class QAbstractXmlNodeModel(shiboken2.Object): class NodeCopySetting (line 23) | class NodeCopySetting: method __init__ (line 29) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 30) | def __add__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __and__ (line 31) | def __and__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __bool__ (line 32) | def __bool__(self) -> bool: ... method __eq__ (line 33) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 34) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 35) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 36) | def __hash__(self) -> int: ... method __index__ (line 37) | def __index__(self) -> int: ... method __int__ (line 38) | def __int__(self) -> int: ... method __le__ (line 39) | def __le__(self, other: object) -> bool: ... method __lt__ (line 40) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 41) | def __mul__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __ne__ (line 42) | def __ne__(self, other: object) -> bool: ... method __or__ (line 43) | def __or__(self, other: typing.SupportsInt) -> QAbstractXmlNodeModel... method __pos__ (line 44) | def __pos__(self): ... method __radd__ (line 45) | def __radd__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __rand__ (line 46) | def __rand__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __rmul__ (line 47) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __ror__ (line 48) | def __ror__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __rsub__ (line 49) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __rxor__ (line 50) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __sub__ (line 51) | def __sub__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __xor__ (line 52) | def __xor__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... class SimpleAxis (line 54) | class SimpleAxis: method __init__ (line 62) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 63) | def __add__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __and__ (line 64) | def __and__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __bool__ (line 65) | def __bool__(self) -> bool: ... method __eq__ (line 66) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 67) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 68) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 69) | def __hash__(self) -> int: ... method __index__ (line 70) | def __index__(self) -> int: ... method __int__ (line 71) | def __int__(self) -> int: ... method __le__ (line 72) | def __le__(self, other: object) -> bool: ... method __lt__ (line 73) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 74) | def __mul__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __ne__ (line 75) | def __ne__(self, other: object) -> bool: ... method __or__ (line 76) | def __or__(self, other: typing.SupportsInt) -> QAbstractXmlNodeModel... method __pos__ (line 77) | def __pos__(self): ... method __radd__ (line 78) | def __radd__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __rand__ (line 79) | def __rand__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __rmul__ (line 80) | def __rmul__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __ror__ (line 81) | def __ror__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __rsub__ (line 82) | def __rsub__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __rxor__ (line 83) | def __rxor__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMod... method __sub__ (line 84) | def __sub__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __xor__ (line 85) | def __xor__(self, other: typing.SupportsInt) -> QAbstractXmlNodeMode... method __init__ (line 92) | def __init__(self) -> None: ... method attributes (line 93) | def attributes(self, element: QXmlNodeModelIndex) -> list[QXmlNodeMode... method baseUri (line 94) | def baseUri(self, ni: QXmlNodeModelIndex) -> PySide2.QtCore.QUrl: ... method compareOrder (line 95) | def compareOrder(self, ni1: QXmlNodeModelIndex, ni2: QXmlNodeModelInde... method createIndex (line 97) | def createIndex(self, pointer: int, additionalData: int = ...) -> QXml... method createIndex (line 99) | def createIndex(self, data: int, additionalData: int) -> QXmlNodeModel... method createIndex (line 101) | def createIndex(self, data: int) -> QXmlNodeModelIndex: ... method documentUri (line 102) | def documentUri(self, ni: QXmlNodeModelIndex) -> PySide2.QtCore.QUrl: ... method elementById (line 103) | def elementById(self, NCName: QXmlName) -> QXmlNodeModelIndex: ... method isDeepEqual (line 104) | def isDeepEqual(self, ni1: QXmlNodeModelIndex, ni2: QXmlNodeModelIndex... method kind (line 105) | def kind(self, ni: QXmlNodeModelIndex) -> QXmlNodeModelIndex.NodeKind:... method name (line 106) | def name(self, ni: QXmlNodeModelIndex) -> QXmlName: ... method namespaceBindings (line 107) | def namespaceBindings(self, n: QXmlNodeModelIndex) -> list[QXmlName]: ... method namespaceForPrefix (line 108) | def namespaceForPrefix(self, *args, **kwargs): ... method nextFromSimpleAxis (line 109) | def nextFromSimpleAxis(self, axis: QAbstractXmlNodeModel.SimpleAxis, o... method nodesByIdref (line 110) | def nodesByIdref(self, NCName: QXmlName) -> list[QXmlNodeModelIndex]: ... method root (line 111) | def root(self, n: QXmlNodeModelIndex) -> QXmlNodeModelIndex: ... method sendNamespaces (line 112) | def sendNamespaces(self, n: QXmlNodeModelIndex, receiver: QAbstractXml... method sourceLocation (line 113) | def sourceLocation(self, index: QXmlNodeModelIndex) -> QSourceLocation... method stringValue (line 114) | def stringValue(self, n: QXmlNodeModelIndex) -> str: ... method typedValue (line 115) | def typedValue(self, n: QXmlNodeModelIndex) -> typing.Any: ... class QAbstractXmlReceiver (line 117) | class QAbstractXmlReceiver(shiboken2.Object): method __init__ (line 118) | def __init__(self) -> None: ... method atomicValue (line 119) | def atomicValue(self, value: typing.Any) -> None: ... method attribute (line 120) | def attribute(self, name: QXmlName, value: str) -> None: ... method characters (line 121) | def characters(self, value: str) -> None: ... method comment (line 122) | def comment(self, value: str) -> None: ... method endDocument (line 123) | def endDocument(self) -> None: ... method endElement (line 124) | def endElement(self) -> None: ... method endOfSequence (line 125) | def endOfSequence(self) -> None: ... method namespaceBinding (line 126) | def namespaceBinding(self, name: QXmlName) -> None: ... method processingInstruction (line 127) | def processingInstruction(self, target: QXmlName, value: str) -> None:... method startDocument (line 128) | def startDocument(self) -> None: ... method startElement (line 129) | def startElement(self, name: QXmlName) -> None: ... method startOfSequence (line 130) | def startOfSequence(self) -> None: ... method whitespaceOnly (line 131) | def whitespaceOnly(self, value: str) -> None: ... class QSourceLocation (line 133) | class QSourceLocation(shiboken2.Object): method __init__ (line 135) | def __init__(self, uri: PySide2.QtCore.QUrl, line: int = ..., column: ... method __init__ (line 137) | def __init__(self, other: QSourceLocation) -> None: ... method __init__ (line 139) | def __init__(self) -> None: ... method column (line 140) | def column(self) -> int: ... method isNull (line 141) | def isNull(self) -> bool: ... method line (line 142) | def line(self) -> int: ... method setColumn (line 143) | def setColumn(self, newColumn: int) -> None: ... method setLine (line 144) | def setLine(self, newLine: int) -> None: ... method setUri (line 145) | def setUri(self, newUri: PySide2.QtCore.QUrl) -> None: ... method uri (line 146) | def uri(self) -> PySide2.QtCore.QUrl: ... method __bool__ (line 147) | def __bool__(self) -> bool: ... method __copy__ (line 148) | def __copy__(self) -> None: ... method __eq__ (line 149) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 150) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 151) | def __gt__(self, other: object) -> bool: ... method __le__ (line 152) | def __le__(self, other: object) -> bool: ... method __lt__ (line 153) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 154) | def __ne__(self, other: object) -> bool: ... class QXmlFormatter (line 156) | class QXmlFormatter(QXmlSerializer): method __init__ (line 157) | def __init__(self, query: QXmlQuery, outputDevice: PySide2.QtCore.QIOD... method atomicValue (line 158) | def atomicValue(self, value: typing.Any) -> None: ... method attribute (line 159) | def attribute(self, name: QXmlName, value: str) -> None: ... method characters (line 160) | def characters(self, value: str) -> None: ... method comment (line 161) | def comment(self, value: str) -> None: ... method endDocument (line 162) | def endDocument(self) -> None: ... method endElement (line 163) | def endElement(self) -> None: ... method endOfSequence (line 164) | def endOfSequence(self) -> None: ... method indentationDepth (line 165) | def indentationDepth(self) -> int: ... method processingInstruction (line 166) | def processingInstruction(self, name: QXmlName, value: str) -> None: ... method setIndentationDepth (line 167) | def setIndentationDepth(self, depth: int) -> None: ... method startDocument (line 168) | def startDocument(self) -> None: ... method startElement (line 169) | def startElement(self, name: QXmlName) -> None: ... method startOfSequence (line 170) | def startOfSequence(self) -> None: ... class QXmlItem (line 172) | class QXmlItem(shiboken2.Object): method __init__ (line 174) | def __init__(self, other: QXmlItem) -> None: ... method __init__ (line 176) | def __init__(self, node: QXmlNodeModelIndex) -> None: ... method __init__ (line 178) | def __init__(self, atomicValue: typing.Any) -> None: ... method __init__ (line 180) | def __init__(self) -> None: ... method isAtomicValue (line 181) | def isAtomicValue(self) -> bool: ... method isNode (line 182) | def isNode(self) -> bool: ... method isNull (line 183) | def isNull(self) -> bool: ... method toAtomicValue (line 184) | def toAtomicValue(self) -> typing.Any: ... method toNodeModelIndex (line 185) | def toNodeModelIndex(self) -> QXmlNodeModelIndex: ... method __bool__ (line 186) | def __bool__(self) -> bool: ... method __copy__ (line 187) | def __copy__(self) -> None: ... class QXmlName (line 189) | class QXmlName(shiboken2.Object): method __init__ (line 191) | def __init__(self, namePool: QXmlNamePool, localName: str, namespaceUR... method __init__ (line 193) | def __init__(self, other: QXmlName) -> None: ... method __init__ (line 195) | def __init__(self) -> None: ... method fromClarkName (line 197) | def fromClarkName(clarkName: str, namePool: QXmlNamePool) -> QXmlName:... method isNCName (line 199) | def isNCName(candidate: str) -> bool: ... method isNull (line 200) | def isNull(self) -> bool: ... method localName (line 201) | def localName(self, query: QXmlNamePool) -> str: ... method namespaceUri (line 202) | def namespaceUri(self, query: QXmlNamePool) -> str: ... method prefix (line 203) | def prefix(self, query: QXmlNamePool) -> str: ... method toClarkName (line 204) | def toClarkName(self, query: QXmlNamePool) -> str: ... method __bool__ (line 205) | def __bool__(self) -> bool: ... method __copy__ (line 206) | def __copy__(self) -> None: ... method __eq__ (line 207) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 208) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 209) | def __gt__(self, other: object) -> bool: ... method __le__ (line 210) | def __le__(self, other: object) -> bool: ... method __lt__ (line 211) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 212) | def __ne__(self, other: object) -> bool: ... class QXmlNamePool (line 214) | class QXmlNamePool(shiboken2.Object): method __init__ (line 216) | def __init__(self, other: QXmlNamePool) -> None: ... method __init__ (line 218) | def __init__(self) -> None: ... method __copy__ (line 219) | def __copy__(self) -> None: ... class QXmlNodeModelIndex (line 221) | class QXmlNodeModelIndex(shiboken2.Object): class DocumentOrder (line 222) | class DocumentOrder: method __init__ (line 229) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 230) | def __add__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.D... method __and__ (line 231) | def __and__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.D... method __bool__ (line 232) | def __bool__(self) -> bool: ... method __eq__ (line 233) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 234) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 235) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 236) | def __hash__(self) -> int: ... method __index__ (line 237) | def __index__(self) -> int: ... method __int__ (line 238) | def __int__(self) -> int: ... method __le__ (line 239) | def __le__(self, other: object) -> bool: ... method __lt__ (line 240) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 241) | def __mul__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.D... method __ne__ (line 242) | def __ne__(self, other: object) -> bool: ... method __or__ (line 243) | def __or__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.Do... method __pos__ (line 244) | def __pos__(self): ... method __radd__ (line 245) | def __radd__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __rand__ (line 246) | def __rand__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __rmul__ (line 247) | def __rmul__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __ror__ (line 248) | def __ror__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.D... method __rsub__ (line 249) | def __rsub__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __rxor__ (line 250) | def __rxor__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __sub__ (line 251) | def __sub__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.D... method __xor__ (line 252) | def __xor__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.D... class NodeKind (line 254) | class NodeKind: method __init__ (line 265) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 266) | def __add__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.N... method __and__ (line 267) | def __and__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.N... method __bool__ (line 268) | def __bool__(self) -> bool: ... method __eq__ (line 269) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 270) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 271) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 272) | def __hash__(self) -> int: ... method __index__ (line 273) | def __index__(self) -> int: ... method __int__ (line 274) | def __int__(self) -> int: ... method __le__ (line 275) | def __le__(self, other: object) -> bool: ... method __lt__ (line 276) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 277) | def __mul__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.N... method __ne__ (line 278) | def __ne__(self, other: object) -> bool: ... method __or__ (line 279) | def __or__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.No... method __pos__ (line 280) | def __pos__(self): ... method __radd__ (line 281) | def __radd__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __rand__ (line 282) | def __rand__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __rmul__ (line 283) | def __rmul__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __ror__ (line 284) | def __ror__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.N... method __rsub__ (line 285) | def __rsub__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __rxor__ (line 286) | def __rxor__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.... method __sub__ (line 287) | def __sub__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.N... method __xor__ (line 288) | def __xor__(self, other: typing.SupportsInt) -> QXmlNodeModelIndex.N... method __init__ (line 300) | def __init__(self, other: QXmlNodeModelIndex) -> None: ... method __init__ (line 302) | def __init__(self) -> None: ... method additionalData (line 303) | def additionalData(self) -> int: ... method data (line 304) | def data(self) -> int: ... method internalPointer (line 305) | def internalPointer(self) -> int: ... method isNull (line 306) | def isNull(self) -> bool: ... method model (line 307) | def model(self) -> QAbstractXmlNodeModel: ... method __bool__ (line 308) | def __bool__(self) -> bool: ... method __copy__ (line 309) | def __copy__(self) -> None: ... method __eq__ (line 310) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 311) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 312) | def __gt__(self, other: object) -> bool: ... method __le__ (line 313) | def __le__(self, other: object) -> bool: ... method __lt__ (line 314) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 315) | def __ne__(self, other: object) -> bool: ... class QXmlQuery (line 317) | class QXmlQuery(shiboken2.Object): class QueryLanguage (line 318) | class QueryLanguage: method __init__ (line 327) | def __init__(cls, *args, **kwargs) -> None: ... method __add__ (line 328) | def __add__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangu... method __and__ (line 329) | def __and__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangu... method __bool__ (line 330) | def __bool__(self) -> bool: ... method __eq__ (line 331) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 332) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 333) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 334) | def __hash__(self) -> int: ... method __index__ (line 335) | def __index__(self) -> int: ... method __int__ (line 336) | def __int__(self) -> int: ... method __le__ (line 337) | def __le__(self, other: object) -> bool: ... method __lt__ (line 338) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 339) | def __mul__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangu... method __ne__ (line 340) | def __ne__(self, other: object) -> bool: ... method __or__ (line 341) | def __or__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangua... method __pos__ (line 342) | def __pos__(self): ... method __radd__ (line 343) | def __radd__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLang... method __rand__ (line 344) | def __rand__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLang... method __rmul__ (line 345) | def __rmul__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLang... method __ror__ (line 346) | def __ror__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangu... method __rsub__ (line 347) | def __rsub__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLang... method __rxor__ (line 348) | def __rxor__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLang... method __sub__ (line 349) | def __sub__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangu... method __xor__ (line 350) | def __xor__(self, other: typing.SupportsInt) -> QXmlQuery.QueryLangu... method __init__ (line 357) | def __init__(self, queryLanguage: QXmlQuery.QueryLanguage, np: QXmlNam... method __init__ (line 359) | def __init__(self, other: QXmlQuery) -> None: ... method __init__ (line 361) | def __init__(self, np: QXmlNamePool) -> None: ... method __init__ (line 363) | def __init__(self) -> None: ... method bindVariable (line 365) | def bindVariable(self, name: QXmlName, value: QXmlItem) -> None: ... method bindVariable (line 367) | def bindVariable(self, name: QXmlName, query: QXmlQuery) -> None: ... method bindVariable (line 369) | def bindVariable(self, name: QXmlName, arg__2: PySide2.QtCore.QIODevic... method bindVariable (line 371) | def bindVariable(self, localName: str, value: QXmlItem) -> None: ... method bindVariable (line 373) | def bindVariable(self, localName: str, query: QXmlQuery) -> None: ... method bindVariable (line 375) | def bindVariable(self, localName: str, arg__2: PySide2.QtCore.QIODevic... method evaluateTo (line 377) | def evaluateTo(self, target: PySide2.QtCore.QIODevice) -> bool: ... method evaluateTo (line 379) | def evaluateTo(self, result: QXmlResultItems) -> None: ... method evaluateTo (line 381) | def evaluateTo(self, callback: QAbstractXmlReceiver) -> bool: ... method initialTemplateName (line 382) | def initialTemplateName(self) -> QXmlName: ... method isValid (line 383) | def isValid(self) -> bool: ... method messageHandler (line 384) | def messageHandler(self) -> QAbstractMessageHandler: ... method namePool (line 385) | def namePool(self) -> QXmlNamePool: ... method queryLanguage (line 386) | def queryLanguage(self) -> QXmlQuery.QueryLanguage: ... method setFocus (line 388) | def setFocus(self, item: QXmlItem) -> None: ... method setFocus (line 390) | def setFocus(self, focus: str) -> bool: ... method setFocus (line 392) | def setFocus(self, documentURI: PySide2.QtCore.QUrl) -> bool: ... method setFocus (line 394) | def setFocus(self, document: PySide2.QtCore.QIODevice) -> bool: ... method setInitialTemplateName (line 396) | def setInitialTemplateName(self, name: QXmlName) -> None: ... method setInitialTemplateName (line 398) | def setInitialTemplateName(self, name: str) -> None: ... method setMessageHandler (line 399) | def setMessageHandler(self, messageHandler: QAbstractMessageHandler) -... method setQuery (line 401) | def setQuery(self, sourceCode: PySide2.QtCore.QIODevice, documentURI: ... method setQuery (line 403) | def setQuery(self, sourceCode: str, documentURI: PySide2.QtCore.QUrl =... method setQuery (line 405) | def setQuery(self, queryURI: PySide2.QtCore.QUrl, baseURI: PySide2.QtC... method setUriResolver (line 406) | def setUriResolver(self, resolver: QAbstractUriResolver) -> None: ... method uriResolver (line 407) | def uriResolver(self) -> QAbstractUriResolver: ... method __copy__ (line 408) | def __copy__(self) -> None: ... class QXmlResultItems (line 410) | class QXmlResultItems(shiboken2.Object): method __init__ (line 411) | def __init__(self) -> None: ... method current (line 412) | def current(self) -> QXmlItem: ... method hasError (line 413) | def hasError(self) -> bool: ... method next (line 414) | def next(self) -> QXmlItem: ... class QXmlSchema (line 416) | class QXmlSchema(shiboken2.Object): method __init__ (line 418) | def __init__(self, other: QXmlSchema) -> None: ... method __init__ (line 420) | def __init__(self) -> None: ... method documentUri (line 421) | def documentUri(self) -> PySide2.QtCore.QUrl: ... method isValid (line 422) | def isValid(self) -> bool: ... method load (line 424) | def load(self, source: PySide2.QtCore.QIODevice, documentUri: PySide2.... method load (line 426) | def load(self, data: PySide2.QtCore.QByteArray | bytes, documentUri: P... method load (line 428) | def load(self, source: PySide2.QtCore.QUrl) -> bool: ... method messageHandler (line 429) | def messageHandler(self) -> QAbstractMessageHandler: ... method namePool (line 430) | def namePool(self) -> QXmlNamePool: ... method setMessageHandler (line 431) | def setMessageHandler(self, handler: QAbstractMessageHandler) -> None:... method setUriResolver (line 432) | def setUriResolver(self, resolver: QAbstractUriResolver) -> None: ... method uriResolver (line 433) | def uriResolver(self) -> QAbstractUriResolver: ... class QXmlSchemaValidator (line 435) | class QXmlSchemaValidator(shiboken2.Object): method __init__ (line 437) | def __init__(self, schema: QXmlSchema) -> None: ... method __init__ (line 439) | def __init__(self) -> None: ... method messageHandler (line 440) | def messageHandler(self) -> QAbstractMessageHandler: ... method namePool (line 441) | def namePool(self) -> QXmlNamePool: ... method schema (line 442) | def schema(self) -> QXmlSchema: ... method setMessageHandler (line 443) | def setMessageHandler(self, handler: QAbstractMessageHandler) -> None:... method setSchema (line 444) | def setSchema(self, schema: QXmlSchema) -> None: ... method setUriResolver (line 445) | def setUriResolver(self, resolver: QAbstractUriResolver) -> None: ... method uriResolver (line 446) | def uriResolver(self) -> QAbstractUriResolver: ... method validate (line 448) | def validate(self, source: PySide2.QtCore.QIODevice, documentUri: PySi... method validate (line 450) | def validate(self, data: PySide2.QtCore.QByteArray | bytes, documentUr... method validate (line 452) | def validate(self, source: PySide2.QtCore.QUrl) -> bool: ... class QXmlSerializer (line 454) | class QXmlSerializer(QAbstractXmlReceiver): method __init__ (line 455) | def __init__(self, query: QXmlQuery, outputDevice: PySide2.QtCore.QIOD... method atomicValue (line 456) | def atomicValue(self, value: typing.Any) -> None: ... method attribute (line 457) | def attribute(self, name: QXmlName, value: str) -> None: ... method characters (line 458) | def characters(self, value: str) -> None: ... method codec (line 459) | def codec(self) -> PySide2.QtCore.QTextCodec: ... method comment (line 460) | def comment(self, value: str) -> None: ... method endDocument (line 461) | def endDocument(self) -> None: ... method endElement (line 462) | def endElement(self) -> None: ... method endOfSequence (line 463) | def endOfSequence(self) -> None: ... method namespaceBinding (line 464) | def namespaceBinding(self, nb: QXmlName) -> None: ... method outputDevice (line 465) | def outputDevice(self) -> PySide2.QtCore.QIODevice: ... method processingInstruction (line 466) | def processingInstruction(self, name: QXmlName, value: str) -> None: ... method setCodec (line 467) | def setCodec(self, codec: PySide2.QtCore.QTextCodec) -> None: ... method startDocument (line 468) | def startDocument(self) -> None: ... method startElement (line 469) | def startElement(self, name: QXmlName) -> None: ... method startOfSequence (line 470) | def startOfSequence(self) -> None: ... FILE: pyside/stubs/PySide2-stubs/scripts/pyside_tool.pyi function main (line 1) | def main() -> None: ... function qt_tool_wrapper (line 2) | def qt_tool_wrapper(qt_tool, args) -> None: ... function uic (line 3) | def uic() -> None: ... function rcc (line 4) | def rcc() -> None: ... function designer (line 5) | def designer() -> None: ... FILE: pyside/stubs/PySide2-stubs/support/deprecated.pyi class PySideDeprecationWarningRemovedInQt6 (line 1) | class PySideDeprecationWarningRemovedInQt6(Warning): ... function constData (line 3) | def constData(self): ... function fix_for_QtGui (line 4) | def fix_for_QtGui(QtGui) -> None: ... FILE: pyside/stubs/PySide2-stubs/support/generate_pyi.pyi class Writer (line 13) | class Writer: method __init__ (line 16) | def __init__(self, outfile) -> None: ... method print (line 17) | def print(self, *args, **kw) -> None: ... class Formatter (line 19) | class Formatter(Writer): method __init__ (line 21) | def __init__(self, *args) -> None: ... method module (line 24) | def module(self, mod_name) -> Generator[None]: ... method klass (line 26) | def klass(self, class_name, class_str) -> Generator[None]: ... method function (line 28) | def function(self, func_name, signature) -> Generator[Incomplete]: ... method _function (line 29) | def _function(self, func_name, signature, spaces) -> None: ... method enum (line 31) | def enum(self, class_name, enum_name, value) -> Generator[None]: ... function get_license_text (line 33) | def get_license_text(): ... function find_imports (line 34) | def find_imports(text): ... function generate_pyi (line 35) | def generate_pyi(import_name, outpath, options) -> None: ... function generate_all_pyi (line 36) | def generate_all_pyi(outpath, options) -> None: ... FILE: pyside/stubs/shiboken2-stubs/shiboken2.pyi class VoidPtr (line 11) | class VoidPtr: method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: ... method toBytes (line 13) | def toBytes(self, *args, **kwargs): ... method __eq__ (line 14) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 15) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 16) | def __gt__(self, other: object) -> bool: ... method __int__ (line 17) | def __int__(self) -> int: ... method __le__ (line 18) | def __le__(self, other: object) -> bool: ... method __len__ (line 19) | def __len__(self) -> int: ... method __lt__ (line 20) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 21) | def __ne__(self, other: object) -> bool: ... function _unpickle_enum (line 23) | def _unpickle_enum(*args, **kwargs): ... function createdByPython (line 24) | def createdByPython(*args, **kwargs): ... function delete (line 25) | def delete(*args, **kwargs): ... function dump (line 26) | def dump(*args, **kwargs): ... function getAllValidWrappers (line 27) | def getAllValidWrappers(*args, **kwargs): ... function getCppPointer (line 28) | def getCppPointer(*args, **kwargs): ... function invalidate (line 29) | def invalidate(*args, **kwargs): ... function isValid (line 30) | def isValid(*args, **kwargs): ... function ownedByPython (line 31) | def ownedByPython(*args, **kwargs): ... function wrapInstance (line 32) | def wrapInstance(*args, **kwargs): ... class Object (line 34) | class Object: ... FILE: pyside/tests/conftest.py function qapplication_fixture (line 8) | def qapplication_fixture() -> QApplication: function fix_import (line 17) | def fix_import(): FILE: pyside/tests/qmenu.py class Toto (line 10) | class Toto(QTreeWidget): method __init__ (line 13) | def __init__(self, *args: Any) -> None: method toto (line 17) | def toto(self) -> None: FILE: pyside/tests/test_general.py function test_qmenu1 (line 16) | def test_qmenu1() -> None: function test_qmenu (line 28) | def test_qmenu() -> None: function test_qmenu2 (line 35) | def test_qmenu2() -> None: function test_qmenu3 (line 43) | def test_qmenu3() -> None: function test_qmenu_failures (line 52) | def test_qmenu_failures() -> None: function test_qapplication (line 68) | def test_qapplication() -> None: function test_qaction (line 80) | def test_qaction() -> None: function test_qbytearray (line 88) | def test_qbytearray() -> None: function test_qcoreapplication (line 100) | def test_qcoreapplication() -> None: function test_qdate (line 113) | def test_qdate() -> None: function test_qdatetime (line 129) | def test_qdatetime() -> None: function test_qdialog (line 134) | def test_qdialog() -> None: function test_qdialogbuttonbox (line 140) | def test_qdialogbuttonbox() -> None: function test_qguiapplication (line 152) | def test_qguiapplication() -> None: function test_qicon (line 158) | def test_qicon() -> None: function test_qlabel (line 167) | def test_qlabel() -> None: function test_qmessagebox (line 172) | def test_qmessagebox() -> None: function test_qobject (line 199) | def test_qobject() -> None: function test_qpainter (line 223) | def test_qpainter() -> None: function test_qpixmap (line 280) | def test_qpixmap() -> None: function test_qpolygon (line 290) | def test_qpolygon() -> None: function test_qprocess (line 318) | def test_qprocess() -> None: function test_qprogressdialog (line 322) | def test_qprogressdialog() -> None: function test_qpropertyanimation (line 327) | def test_qpropertyanimation() -> None: function test_qquickitem (line 334) | def test_qquickitem() -> None: function test_qsize (line 339) | def test_qsize() -> None: function test_qspaceritem (line 410) | def test_qspaceritem() -> None: function test_qsplitter (line 427) | def test_qsplitter() -> None: function test_qtimer (line 434) | def test_qtimer() -> None: function test_qtreewidget (line 445) | def test_qtreewidget() -> None: function test_qtreewidgetitem (line 453) | def test_qtreewidgetitem() -> None: function test_qversion (line 472) | def test_qversion() -> None: function test_qwidget (line 478) | def test_qwidget() -> None: function test_qwindow (line 483) | def test_qwindow() -> None: function test_signal_slot (line 488) | def test_signal_slot() -> None: function test_qbrush_implicit_args (line 520) | def test_qbrush_implicit_args() -> None: function test_iterability (line 533) | def test_iterability() -> None: function test_fonts (line 568) | def test_fonts() -> None: function test_qfile (line 573) | def test_qfile() -> None: function test_qline (line 581) | def test_qline() -> None: function test_signal_connect (line 589) | def test_signal_connect() -> None: FILE: pyside/tests/test_qflag.py function assert_type_of_value_int (line 24) | def assert_type_of_value_int(value: int) -> None: function assert_type_of_value_oneFlag (line 30) | def assert_type_of_value_oneFlag(value: OneFlagClass) -> None: function assert_type_of_value_multiFlag (line 35) | def assert_type_of_value_multiFlag(value: MultiFlagClass) -> None: function test_on_one_flag_class (line 40) | def test_on_one_flag_class() -> None: function test_on_multi_flag_class (line 120) | def test_on_multi_flag_class() -> None: FILE: pyside/tests/test_slot.py function test (line 7) | def test() -> None: FILE: pyside6/stubgen_pyside6.py function swap (line 37) | def swap(src: Path, dest: Path) -> None: FILE: pyside6/stubs/PySide6-stubs/Qt3DAnimation.pyi class QIntList (line 15) | class QIntList: method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method append (line 18) | def append(self, *args, **kwargs): ... method capacity (line 19) | def capacity(self, *args, **kwargs): ... method clear (line 20) | def clear(self, *args, **kwargs): ... method constData (line 21) | def constData(self, *args, **kwargs): ... method data (line 22) | def data(self, *args, **kwargs): ... method pop_back (line 23) | def pop_back(self, *args, **kwargs): ... method pop_front (line 24) | def pop_front(self, *args, **kwargs): ... method prepend (line 25) | def prepend(self, *args, **kwargs): ... method push_back (line 26) | def push_back(self, *args, **kwargs): ... method push_front (line 27) | def push_front(self, *args, **kwargs): ... method removeFirst (line 28) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 29) | def removeLast(self, *args, **kwargs): ... method reserve (line 30) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 31) | def __delitem__(self, other) -> None: ... method __getitem__ (line 32) | def __getitem__(self, index): ... method __len__ (line 33) | def __len__(self) -> int: ... method __setitem__ (line 34) | def __setitem__(self, index, object) -> None: ... class Qt3DAnimation (line 36) | class Qt3DAnimation(shiboken6.Object): class QAbstractAnimation (line 37) | class QAbstractAnimation(PySide6.QtCore.QObject): class AnimationType (line 38) | class AnimationType(enum.Enum): method __init__ (line 46) | def __init__(self, *args, destroyed: typing.Callable = ..., objectNa... method animationName (line 47) | def animationName(self, /) -> str: ... method animationType (line 48) | def animationType(self, /) -> Qt3DAnimation.QAbstractAnimation.Anima... method duration (line 49) | def duration(self, /) -> float: ... method position (line 50) | def position(self, /) -> float: ... method setAnimationName (line 51) | def setAnimationName(self, name: str, /) -> None: ... method setDuration (line 52) | def setDuration(self, duration: float, /) -> None: ... method setPosition (line 53) | def setPosition(self, position: float, /) -> None: ... class QAbstractAnimationClip (line 55) | class QAbstractAnimationClip(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 58) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... method duration (line 59) | def duration(self, /) -> float: ... class QAbstractChannelMapping (line 61) | class QAbstractChannelMapping(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 63) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... class QAbstractClipAnimator (line 65) | class QAbstractClipAnimator(PySide6.Qt3DCore.Qt3DCore.QComponent): class Loops (line 66) | class Loops(enum.Enum): method __init__ (line 74) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method channelMapper (line 75) | def channelMapper(self, /) -> Qt3DAnimation.QChannelMapper: ... method clock (line 76) | def clock(self, /) -> Qt3DAnimation.QClock: ... method isRunning (line 77) | def isRunning(self, /) -> bool: ... method loopCount (line 78) | def loopCount(self, /) -> int: ... method normalizedTime (line 79) | def normalizedTime(self, /) -> float: ... method setChannelMapper (line 80) | def setChannelMapper(self, channelMapper: Qt3DAnimation.QChannelMapp... method setClock (line 81) | def setClock(self, clock: Qt3DAnimation.QClock, /) -> None: ... method setLoopCount (line 82) | def setLoopCount(self, loops: int, /) -> None: ... method setNormalizedTime (line 83) | def setNormalizedTime(self, timeFraction: float, /) -> None: ... method setRunning (line 84) | def setRunning(self, running: bool, /) -> None: ... method start (line 85) | def start(self, /) -> None: ... method stop (line 86) | def stop(self, /) -> None: ... class QAbstractClipBlendNode (line 88) | class QAbstractClipBlendNode(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 90) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QAdditiveClipBlend (line 92) | class QAdditiveClipBlend(Qt3DAnimation.QAbstractClipBlendNode): method __init__ (line 97) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method additiveClip (line 98) | def additiveClip(self, /) -> Qt3DAnimation.QAbstractClipBlendNode: ... method additiveFactor (line 99) | def additiveFactor(self, /) -> float: ... method baseClip (line 100) | def baseClip(self, /) -> Qt3DAnimation.QAbstractClipBlendNode: ... method setAdditiveClip (line 101) | def setAdditiveClip(self, additiveClip: Qt3DAnimation.QAbstractClipB... method setAdditiveFactor (line 102) | def setAdditiveFactor(self, additiveFactor: float, /) -> None: ... method setBaseClip (line 103) | def setBaseClip(self, baseClip: Qt3DAnimation.QAbstractClipBlendNode... class QAnimationAspect (line 105) | class QAnimationAspect(PySide6.Qt3DCore.Qt3DCore.QAbstractAspect): method __init__ (line 107) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... class QAnimationCallback (line 109) | class QAnimationCallback(shiboken6.Object): class Flag (line 110) | class Flag(enum.Flag): method __init__ (line 113) | def __init__(self, /) -> None: ... method valueChanged (line 114) | def valueChanged(self, value: Any, /) -> None: ... class QAnimationClip (line 116) | class QAnimationClip(Qt3DAnimation.QAbstractAnimationClip): method __init__ (line 119) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method clipData (line 120) | def clipData(self, /) -> Qt3DAnimation.QAnimationClipData: ... method setClipData (line 121) | def setClipData(self, clipData: Qt3DAnimation.QAnimationClipData, /)... class QAnimationClipData (line 123) | class QAnimationClipData(shiboken6.Object): method __init__ (line 125) | def __init__(self, arg__1: Qt3DAnimation.QAnimationClipData, /) -> N... method __init__ (line 127) | def __init__(self, /) -> None: ... method appendChannel (line 128) | def appendChannel(self, c: Qt3DAnimation.QChannel, /) -> None: ... method begin (line 129) | def begin(self, /) -> Qt3DAnimation.QChannel: ... method cbegin (line 130) | def cbegin(self, /) -> Qt3DAnimation.QChannel: ... method cend (line 131) | def cend(self, /) -> Qt3DAnimation.QChannel: ... method channelCount (line 132) | def channelCount(self, /) -> int: ... method clearChannels (line 133) | def clearChannels(self, /) -> None: ... method end (line 134) | def end(self, /) -> Qt3DAnimation.QChannel: ... method insertChannel (line 135) | def insertChannel(self, index: int, c: Qt3DAnimation.QChannel, /) ->... method isValid (line 136) | def isValid(self, /) -> bool: ... method name (line 137) | def name(self, /) -> str: ... method removeChannel (line 138) | def removeChannel(self, index: int, /) -> None: ... method setName (line 139) | def setName(self, name: str, /) -> None: ... method __copy__ (line 140) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 141) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 142) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 143) | def __gt__(self, other: object) -> bool: ... method __le__ (line 144) | def __le__(self, other: object) -> bool: ... method __lt__ (line 145) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 146) | def __ne__(self, other: object) -> bool: ... class QAnimationClipLoader (line 148) | class QAnimationClipLoader(Qt3DAnimation.QAbstractAnimationClip): class Status (line 149) | class Status(enum.Enum): method __init__ (line 157) | def __init__(self, source: PySide6.QtCore.QUrl | str, /, parent: PyS... method __init__ (line 159) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setSource (line 160) | def setSource(self, source: PySide6.QtCore.QUrl | str, /) -> None: ... method source (line 161) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 162) | def status(self, /) -> Qt3DAnimation.QAnimationClipLoader.Status: ... class QAnimationController (line 164) | class QAnimationController(PySide6.QtCore.QObject): method __init__ (line 172) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method activeAnimationGroup (line 173) | def activeAnimationGroup(self, /) -> int: ... method addAnimationGroup (line 174) | def addAnimationGroup(self, animationGroups: Qt3DAnimation.QAnimatio... method animationGroupList (line 175) | def animationGroupList(self, /) -> List[Qt3DAnimation.QAnimationGrou... method entity (line 176) | def entity(self, /) -> PySide6.Qt3DCore.Qt3DCore.QEntity: ... method getAnimationIndex (line 177) | def getAnimationIndex(self, name: str, /) -> int: ... method getGroup (line 178) | def getGroup(self, index: int, /) -> Qt3DAnimation.QAnimationGroup: ... method position (line 179) | def position(self, /) -> float: ... method positionOffset (line 180) | def positionOffset(self, /) -> float: ... method positionScale (line 181) | def positionScale(self, /) -> float: ... method recursive (line 182) | def recursive(self, /) -> bool: ... method removeAnimationGroup (line 183) | def removeAnimationGroup(self, animationGroups: Qt3DAnimation.QAnima... method setActiveAnimationGroup (line 184) | def setActiveAnimationGroup(self, index: int, /) -> None: ... method setAnimationGroups (line 185) | def setAnimationGroups(self, animationGroups: typing.Iterable[Qt3DAn... method setEntity (line 186) | def setEntity(self, entity: PySide6.Qt3DCore.Qt3DCore.QEntity, /) ->... method setPosition (line 187) | def setPosition(self, position: float, /) -> None: ... method setPositionOffset (line 188) | def setPositionOffset(self, offset: float, /) -> None: ... method setPositionScale (line 189) | def setPositionScale(self, scale: float, /) -> None: ... method setRecursive (line 190) | def setRecursive(self, recursive: bool, /) -> None: ... class QAnimationGroup (line 192) | class QAnimationGroup(PySide6.QtCore.QObject): method __init__ (line 197) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method addAnimation (line 198) | def addAnimation(self, animation: Qt3DAnimation.QAbstractAnimation, ... method animationList (line 199) | def animationList(self, /) -> List[Qt3DAnimation.QAbstractAnimation]... method duration (line 200) | def duration(self, /) -> float: ... method name (line 201) | def name(self, /) -> str: ... method position (line 202) | def position(self, /) -> float: ... method removeAnimation (line 203) | def removeAnimation(self, animation: Qt3DAnimation.QAbstractAnimatio... method setAnimations (line 204) | def setAnimations(self, animations: typing.Iterable[Qt3DAnimation.QA... method setName (line 205) | def setName(self, name: str, /) -> None: ... method setPosition (line 206) | def setPosition(self, position: float, /) -> None: ... class QBlendedClipAnimator (line 208) | class QBlendedClipAnimator(Qt3DAnimation.QAbstractClipAnimator): method __init__ (line 211) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method blendTree (line 212) | def blendTree(self, /) -> Qt3DAnimation.QAbstractClipBlendNode: ... method setBlendTree (line 213) | def setBlendTree(self, blendTree: Qt3DAnimation.QAbstractClipBlendNo... class QCallbackMapping (line 215) | class QCallbackMapping(Qt3DAnimation.QAbstractChannelMapping): method __init__ (line 218) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method callback (line 219) | def callback(self, /) -> Qt3DAnimation.QAnimationCallback: ... method channelName (line 220) | def channelName(self, /) -> str: ... method setCallback (line 221) | def setCallback(self, type: int, callback: Qt3DAnimation.QAnimationC... method setChannelName (line 222) | def setChannelName(self, channelName: str, /) -> None: ... class QChannel (line 224) | class QChannel(shiboken6.Object): method __init__ (line 226) | def __init__(self, name: str, /) -> None: ... method __init__ (line 228) | def __init__(self, arg__1: Qt3DAnimation.QChannel, /) -> None: ... method __init__ (line 230) | def __init__(self, /) -> None: ... method appendChannelComponent (line 231) | def appendChannelComponent(self, component: Qt3DAnimation.QChannelCo... method begin (line 232) | def begin(self, /) -> Qt3DAnimation.QChannelComponent: ... method cbegin (line 233) | def cbegin(self, /) -> Qt3DAnimation.QChannelComponent: ... method cend (line 234) | def cend(self, /) -> Qt3DAnimation.QChannelComponent: ... method channelComponentCount (line 235) | def channelComponentCount(self, /) -> int: ... method clearChannelComponents (line 236) | def clearChannelComponents(self, /) -> None: ... method end (line 237) | def end(self, /) -> Qt3DAnimation.QChannelComponent: ... method insertChannelComponent (line 238) | def insertChannelComponent(self, index: int, component: Qt3DAnimatio... method jointIndex (line 239) | def jointIndex(self, /) -> int: ... method name (line 240) | def name(self, /) -> str: ... method removeChannelComponent (line 241) | def removeChannelComponent(self, index: int, /) -> None: ... method setJointIndex (line 242) | def setJointIndex(self, jointIndex: int, /) -> None: ... method setName (line 243) | def setName(self, name: str, /) -> None: ... method __copy__ (line 244) | def __copy__(self, /) -> typing_extensions.Self: ... class QChannelComponent (line 246) | class QChannelComponent(shiboken6.Object): method __init__ (line 248) | def __init__(self, name: str, /) -> None: ... method __init__ (line 250) | def __init__(self, arg__1: Qt3DAnimation.QChannelComponent, /) -> No... method __init__ (line 252) | def __init__(self, /) -> None: ... method appendKeyFrame (line 253) | def appendKeyFrame(self, kf: Qt3DAnimation.QKeyFrame, /) -> None: ... method begin (line 254) | def begin(self, /) -> Qt3DAnimation.QKeyFrame: ... method cbegin (line 255) | def cbegin(self, /) -> Qt3DAnimation.QKeyFrame: ... method cend (line 256) | def cend(self, /) -> Qt3DAnimation.QKeyFrame: ... method clearKeyFrames (line 257) | def clearKeyFrames(self, /) -> None: ... method end (line 258) | def end(self, /) -> Qt3DAnimation.QKeyFrame: ... method insertKeyFrame (line 259) | def insertKeyFrame(self, index: int, kf: Qt3DAnimation.QKeyFrame, /)... method keyFrameCount (line 260) | def keyFrameCount(self, /) -> int: ... method name (line 261) | def name(self, /) -> str: ... method removeKeyFrame (line 262) | def removeKeyFrame(self, index: int, /) -> None: ... method setName (line 263) | def setName(self, name: str, /) -> None: ... method __copy__ (line 264) | def __copy__(self, /) -> typing_extensions.Self: ... class QChannelMapper (line 266) | class QChannelMapper(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 268) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addMapping (line 269) | def addMapping(self, mapping: Qt3DAnimation.QAbstractChannelMapping,... method mappings (line 270) | def mappings(self, /) -> List[Qt3DAnimation.QAbstractChannelMapping]... method removeMapping (line 271) | def removeMapping(self, mapping: Qt3DAnimation.QAbstractChannelMappi... class QChannelMapping (line 273) | class QChannelMapping(Qt3DAnimation.QAbstractChannelMapping): method __init__ (line 278) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method channelName (line 279) | def channelName(self, /) -> str: ... method property (line 280) | def property(self, /) -> str: ... # type: ignore[override] method setChannelName (line 281) | def setChannelName(self, channelName: str, /) -> None: ... method setProperty (line 282) | def setProperty(self, property: str, /) -> None: ... # type: ignore... method setTarget (line 283) | def setTarget(self, target: PySide6.Qt3DCore.Qt3DCore.QNode, /) -> N... method target (line 284) | def target(self, /) -> PySide6.Qt3DCore.Qt3DCore.QNode: ... class QClipAnimator (line 286) | class QClipAnimator(Qt3DAnimation.QAbstractClipAnimator): method __init__ (line 289) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method clip (line 290) | def clip(self, /) -> Qt3DAnimation.QAbstractAnimationClip: ... method setClip (line 291) | def setClip(self, clip: Qt3DAnimation.QAbstractAnimationClip, /) -> ... class QClipBlendValue (line 293) | class QClipBlendValue(Qt3DAnimation.QAbstractClipBlendNode): method __init__ (line 297) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method __init__ (line 299) | def __init__(self, clip: Qt3DAnimation.QAbstractAnimationClip, /, pa... method clip (line 300) | def clip(self, /) -> Qt3DAnimation.QAbstractAnimationClip: ... method setClip (line 301) | def setClip(self, clip: Qt3DAnimation.QAbstractAnimationClip, /) -> ... class QClock (line 303) | class QClock(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 306) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method playbackRate (line 307) | def playbackRate(self, /) -> float: ... method setPlaybackRate (line 308) | def setPlaybackRate(self, playbackRate: float, /) -> None: ... class QKeyFrame (line 310) | class QKeyFrame(shiboken6.Object): class InterpolationType (line 311) | class InterpolationType(enum.Enum): method __init__ (line 316) | def __init__(self, coords: PySide6.QtGui.QVector2D, lh: PySide6.QtGu... method __init__ (line 318) | def __init__(self, coords: PySide6.QtGui.QVector2D, /) -> None: ... method __init__ (line 320) | def __init__(self, /) -> None: ... method coordinates (line 321) | def coordinates(self, /) -> PySide6.QtGui.QVector2D: ... method interpolationType (line 322) | def interpolationType(self, /) -> Qt3DAnimation.QKeyFrame.Interpolat... method leftControlPoint (line 323) | def leftControlPoint(self, /) -> PySide6.QtGui.QVector2D: ... method rightControlPoint (line 324) | def rightControlPoint(self, /) -> PySide6.QtGui.QVector2D: ... method setCoordinates (line 325) | def setCoordinates(self, coords: PySide6.QtGui.QVector2D, /) -> None... method setInterpolationType (line 326) | def setInterpolationType(self, interp: Qt3DAnimation.QKeyFrame.Inter... method setLeftControlPoint (line 327) | def setLeftControlPoint(self, lh: PySide6.QtGui.QVector2D, /) -> Non... method setRightControlPoint (line 328) | def setRightControlPoint(self, rh: PySide6.QtGui.QVector2D, /) -> No... method __eq__ (line 329) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 330) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 331) | def __gt__(self, other: object) -> bool: ... method __le__ (line 332) | def __le__(self, other: object) -> bool: ... method __lt__ (line 333) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 334) | def __ne__(self, other: object) -> bool: ... class QKeyframeAnimation (line 336) | class QKeyframeAnimation(Qt3DAnimation.QAbstractAnimation): class RepeatMode (line 337) | class RepeatMode(enum.Enum): method __init__ (line 348) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method addKeyframe (line 349) | def addKeyframe(self, keyframe: PySide6.Qt3DCore.Qt3DCore.QTransform... method easing (line 350) | def easing(self, /) -> PySide6.QtCore.QEasingCurve: ... method endMode (line 351) | def endMode(self, /) -> Qt3DAnimation.QKeyframeAnimation.RepeatMode:... method framePositions (line 352) | def framePositions(self, /) -> List[float]: ... method keyframeList (line 353) | def keyframeList(self, /) -> List[PySide6.Qt3DCore.Qt3DCore.QTransfo... method removeKeyframe (line 354) | def removeKeyframe(self, keyframe: PySide6.Qt3DCore.Qt3DCore.QTransf... method setEasing (line 355) | def setEasing(self, easing: PySide6.QtCore.QEasingCurve | PySide6.Qt... method setEndMode (line 356) | def setEndMode(self, mode: Qt3DAnimation.QKeyframeAnimation.RepeatMo... method setFramePositions (line 357) | def setFramePositions(self, positions: typing.Iterable[float], /) ->... method setKeyframes (line 358) | def setKeyframes(self, keyframes: typing.Iterable[PySide6.Qt3DCore.Q... method setStartMode (line 359) | def setStartMode(self, mode: Qt3DAnimation.QKeyframeAnimation.Repeat... method setTarget (line 360) | def setTarget(self, target: PySide6.Qt3DCore.Qt3DCore.QTransform, /)... method setTargetName (line 361) | def setTargetName(self, name: str, /) -> None: ... method startMode (line 362) | def startMode(self, /) -> Qt3DAnimation.QKeyframeAnimation.RepeatMod... method target (line 363) | def target(self, /) -> PySide6.Qt3DCore.Qt3DCore.QTransform: ... method targetName (line 364) | def targetName(self, /) -> str: ... class QLerpClipBlend (line 366) | class QLerpClipBlend(Qt3DAnimation.QAbstractClipBlendNode): method __init__ (line 371) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method blendFactor (line 372) | def blendFactor(self, /) -> float: ... method endClip (line 373) | def endClip(self, /) -> Qt3DAnimation.QAbstractClipBlendNode: ... method setBlendFactor (line 374) | def setBlendFactor(self, blendFactor: float, /) -> None: ... method setEndClip (line 375) | def setEndClip(self, endClip: Qt3DAnimation.QAbstractClipBlendNode, ... method setStartClip (line 376) | def setStartClip(self, startClip: Qt3DAnimation.QAbstractClipBlendNo... method startClip (line 377) | def startClip(self, /) -> Qt3DAnimation.QAbstractClipBlendNode: ... class QMorphTarget (line 379) | class QMorphTarget(PySide6.QtCore.QObject): method __init__ (line 382) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method addAttribute (line 383) | def addAttribute(self, attribute: PySide6.Qt3DCore.Qt3DCore.QAttribu... method attributeList (line 384) | def attributeList(self, /) -> List[PySide6.Qt3DCore.Qt3DCore.QAttrib... method attributeNames (line 385) | def attributeNames(self, /) -> List[str]: ... method fromGeometry (line 387) | def fromGeometry(geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry, attr... method removeAttribute (line 388) | def removeAttribute(self, attribute: PySide6.Qt3DCore.Qt3DCore.QAttr... method setAttributes (line 389) | def setAttributes(self, attributes: typing.Iterable[PySide6.Qt3DCore... class QMorphingAnimation (line 391) | class QMorphingAnimation(Qt3DAnimation.QAbstractAnimation): class Method (line 392) | class Method(enum.Enum): method __init__ (line 402) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method addMorphTarget (line 403) | def addMorphTarget(self, target: Qt3DAnimation.QMorphTarget, /) -> N... method easing (line 404) | def easing(self, /) -> PySide6.QtCore.QEasingCurve: ... method getWeights (line 405) | def getWeights(self, positionIndex: int, /) -> List[float]: ... method interpolator (line 406) | def interpolator(self, /) -> float: ... method method (line 407) | def method(self, /) -> Qt3DAnimation.QMorphingAnimation.Method: ... method morphTargetList (line 408) | def morphTargetList(self, /) -> List[Qt3DAnimation.QMorphTarget]: ... method removeMorphTarget (line 409) | def removeMorphTarget(self, target: Qt3DAnimation.QMorphTarget, /) -... method setEasing (line 410) | def setEasing(self, easing: PySide6.QtCore.QEasingCurve | PySide6.Qt... method setMethod (line 411) | def setMethod(self, method: Qt3DAnimation.QMorphingAnimation.Method,... method setMorphTargets (line 412) | def setMorphTargets(self, targets: typing.Iterable[Qt3DAnimation.QMo... method setTarget (line 413) | def setTarget(self, target: PySide6.Qt3DRender.Qt3DRender.QGeometryR... method setTargetName (line 414) | def setTargetName(self, name: str, /) -> None: ... method setTargetPositions (line 415) | def setTargetPositions(self, targetPositions: typing.Iterable[float]... method setWeights (line 416) | def setWeights(self, positionIndex: int, weights: typing.Iterable[fl... method target (line 417) | def target(self, /) -> PySide6.Qt3DRender.Qt3DRender.QGeometryRender... method targetName (line 418) | def targetName(self, /) -> str: ... method targetPositions (line 419) | def targetPositions(self, /) -> List[float]: ... class QSkeletonMapping (line 421) | class QSkeletonMapping(Qt3DAnimation.QAbstractChannelMapping): method __init__ (line 424) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setSkeleton (line 425) | def setSkeleton(self, skeleton: PySide6.Qt3DCore.Qt3DCore.QAbstractS... method skeleton (line 426) | def skeleton(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAbstractSkeleton... class QVertexBlendAnimation (line 428) | class QVertexBlendAnimation(Qt3DAnimation.QAbstractAnimation): method __init__ (line 434) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method addMorphTarget (line 435) | def addMorphTarget(self, target: Qt3DAnimation.QMorphTarget, /) -> N... method interpolator (line 436) | def interpolator(self, /) -> float: ... method morphTargetList (line 437) | def morphTargetList(self, /) -> List[Qt3DAnimation.QMorphTarget]: ... method removeMorphTarget (line 438) | def removeMorphTarget(self, target: Qt3DAnimation.QMorphTarget, /) -... method setMorphTargets (line 439) | def setMorphTargets(self, targets: typing.Iterable[Qt3DAnimation.QMo... method setTarget (line 440) | def setTarget(self, target: PySide6.Qt3DRender.Qt3DRender.QGeometryR... method setTargetName (line 441) | def setTargetName(self, name: str, /) -> None: ... method setTargetPositions (line 442) | def setTargetPositions(self, targetPositions: typing.Iterable[float]... method target (line 443) | def target(self, /) -> PySide6.Qt3DRender.Qt3DRender.QGeometryRender... method targetName (line 444) | def targetName(self, /) -> str: ... method targetPositions (line 445) | def targetPositions(self, /) -> List[float]: ... method __init__ (line 446) | def __init__(self, *args, **kwargs) -> None: ... FILE: pyside6/stubs/PySide6-stubs/Qt3DCore.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class Qt3DCore (line 34) | class Qt3DCore(shiboken6.Object): class QAbstractAspect (line 35) | class QAbstractAspect(PySide6.QtCore.QObject): method __init__ (line 37) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... method dependencies (line 38) | def dependencies(self, /) -> List[str]: ... method registerBackendType (line 39) | def registerBackendType(self, obj: PySide6.QtCore.QMetaObject, funct... method rootEntityId (line 40) | def rootEntityId(self, /) -> Qt3DCore.QNodeId: ... method scheduleSingleShotJob (line 41) | def scheduleSingleShotJob(self, job: Qt3DCore.QAspectJobPtr, /) -> N... method unregisterBackendType (line 42) | def unregisterBackendType(self, arg__1: PySide6.QtCore.QMetaObject, ... class QAbstractFunctor (line 44) | class QAbstractFunctor(shiboken6.Object): method __init__ (line 45) | def __init__(self, /) -> None: ... method id (line 46) | def id(self, /) -> int: ... class QAbstractSkeleton (line 48) | class QAbstractSkeleton(Qt3DCore.QNode): method __init__ (line 51) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... method jointCount (line 52) | def jointCount(self, /) -> int: ... class QArmature (line 54) | class QArmature(Qt3DCore.QComponent): method __init__ (line 57) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, skelet... method setSkeleton (line 58) | def setSkeleton(self, skeleton: Qt3DCore.QAbstractSkeleton, /) -> No... method skeleton (line 59) | def skeleton(self, /) -> Qt3DCore.QAbstractSkeleton: ... class QAspectEngine (line 61) | class QAspectEngine(PySide6.QtCore.QObject): class RunMode (line 62) | class RunMode(enum.Enum): method __init__ (line 66) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... method aspect (line 67) | def aspect(self, name: str, /) -> Qt3DCore.QAbstractAspect: ... method aspects (line 68) | def aspects(self, /) -> List[Qt3DCore.QAbstractAspect]: ... method executeCommand (line 69) | def executeCommand(self, command: str, /) -> Any: ... method lookupNode (line 70) | def lookupNode(self, id: Qt3DCore.QNodeId, /) -> Qt3DCore.QNode: ... method lookupNodes (line 71) | def lookupNodes(self, ids: typing.Iterable[Qt3DCore.QNodeId], /) -> ... method processFrame (line 72) | def processFrame(self, /) -> None: ... method registerAspect (line 74) | def registerAspect(self, name: str, /) -> None: ... method registerAspect (line 76) | def registerAspect(self, aspect: Qt3DCore.QAbstractAspect, /) -> Non... method rootEntity (line 77) | def rootEntity(self, /) -> Qt3DCore.QEntityPtr: ... method runMode (line 78) | def runMode(self, /) -> Qt3DCore.QAspectEngine.RunMode: ... method setRootEntity (line 79) | def setRootEntity(self, root: Qt3DCore.QEntityPtr, /) -> None: ... method setRunMode (line 80) | def setRunMode(self, mode: Qt3DCore.QAspectEngine.RunMode, /) -> Non... method unregisterAspect (line 82) | def unregisterAspect(self, name: str, /) -> None: ... method unregisterAspect (line 84) | def unregisterAspect(self, aspect: Qt3DCore.QAbstractAspect, /) -> N... class QAspectJob (line 86) | class QAspectJob(shiboken6.Object): method __init__ (line 87) | def __init__(self, /) -> None: ... method isRequired (line 88) | def isRequired(self, /) -> bool: ... method postFrame (line 89) | def postFrame(self, aspectEngine: Qt3DCore.QAspectEngine, /) -> None... method run (line 90) | def run(self, /) -> None: ... class QAspectJobPtr (line 92) | class QAspectJobPtr(shiboken6.Object): method __init__ (line 94) | def __init__(self, pointee: Qt3DCore.QAspectJob, /) -> None: ... method __init__ (line 96) | def __init__(self, /) -> None: ... method data (line 97) | def data(self, /) -> Qt3DCore.QAspectJob: ... method reset (line 99) | def reset(self, t: Qt3DCore.QAspectJob, /) -> None: ... method reset (line 101) | def reset(self, /) -> None: ... method __bool__ (line 102) | def __bool__(self) -> bool: ... method __copy__ (line 103) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 104) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 105) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 106) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 107) | def __gt__(self, other: object) -> bool: ... method __le__ (line 108) | def __le__(self, other: object) -> bool: ... method __lt__ (line 109) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 110) | def __ne__(self, other: object) -> bool: ... class QAttribute (line 112) | class QAttribute(Qt3DCore.QNode): class AttributeType (line 113) | class AttributeType(enum.Enum): class VertexBaseType (line 118) | class VertexBaseType(enum.Enum): method __init__ (line 141) | def __init__(self, buf: Qt3DCore.QBuffer, vertexBaseType: Qt3DCore.Q... method __init__ (line 143) | def __init__(self, buf: Qt3DCore.QBuffer, name: str, vertexBaseType:... method __init__ (line 145) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, buffer... method attributeType (line 146) | def attributeType(self, /) -> Qt3DCore.QAttribute.AttributeType: ... method buffer (line 147) | def buffer(self, /) -> Qt3DCore.QBuffer: ... method byteOffset (line 148) | def byteOffset(self, /) -> int: ... method byteStride (line 149) | def byteStride(self, /) -> int: ... method count (line 150) | def count(self, /) -> int: ... method defaultColorAttributeName (line 152) | def defaultColorAttributeName() -> str: ... method defaultJointIndicesAttributeName (line 154) | def defaultJointIndicesAttributeName() -> str: ... method defaultJointWeightsAttributeName (line 156) | def defaultJointWeightsAttributeName() -> str: ... method defaultNormalAttributeName (line 158) | def defaultNormalAttributeName() -> str: ... method defaultPositionAttributeName (line 160) | def defaultPositionAttributeName() -> str: ... method defaultTangentAttributeName (line 162) | def defaultTangentAttributeName() -> str: ... method defaultTextureCoordinate1AttributeName (line 164) | def defaultTextureCoordinate1AttributeName() -> str: ... method defaultTextureCoordinate2AttributeName (line 166) | def defaultTextureCoordinate2AttributeName() -> str: ... method defaultTextureCoordinateAttributeName (line 168) | def defaultTextureCoordinateAttributeName() -> str: ... method divisor (line 169) | def divisor(self, /) -> int: ... method name (line 170) | def name(self, /) -> str: ... method setAttributeType (line 171) | def setAttributeType(self, attributeType: Qt3DCore.QAttribute.Attrib... method setBuffer (line 172) | def setBuffer(self, buffer: Qt3DCore.QBuffer, /) -> None: ... method setByteOffset (line 173) | def setByteOffset(self, byteOffset: int, /) -> None: ... method setByteStride (line 174) | def setByteStride(self, byteStride: int, /) -> None: ... method setCount (line 175) | def setCount(self, count: int, /) -> None: ... method setDivisor (line 176) | def setDivisor(self, divisor: int, /) -> None: ... method setName (line 177) | def setName(self, name: str, /) -> None: ... method setVertexBaseType (line 178) | def setVertexBaseType(self, type: Qt3DCore.QAttribute.VertexBaseType... method setVertexSize (line 179) | def setVertexSize(self, size: int, /) -> None: ... method vertexBaseType (line 180) | def vertexBaseType(self, /) -> Qt3DCore.QAttribute.VertexBaseType: ... method vertexSize (line 181) | def vertexSize(self, /) -> int: ... class QBackendNode (line 183) | class QBackendNode(shiboken6.Object): class Mode (line 184) | class Mode(enum.Enum): method __init__ (line 187) | def __init__(self, /, mode: Qt3DCore.QBackendNode.Mode = ...) -> Non... method isEnabled (line 188) | def isEnabled(self, /) -> bool: ... method mode (line 189) | def mode(self, /) -> Qt3DCore.QBackendNode.Mode: ... method peerId (line 190) | def peerId(self, /) -> Qt3DCore.QNodeId: ... method setEnabled (line 191) | def setEnabled(self, enabled: bool, /) -> None: ... method syncFromFrontEnd (line 192) | def syncFromFrontEnd(self, frontEnd: Qt3DCore.QNode, firstTime: bool... class QBackendNodeMapper (line 194) | class QBackendNodeMapper(shiboken6.Object): method __init__ (line 195) | def __init__(self, /) -> None: ... method create (line 196) | def create(self, id: Qt3DCore.QNodeId, /) -> Qt3DCore.QBackendNode: ... method destroy (line 197) | def destroy(self, id: Qt3DCore.QNodeId, /) -> None: ... method get (line 198) | def get(self, id: Qt3DCore.QNodeId, /) -> Qt3DCore.QBackendNode: ... class QBackendNodeMapperPtr (line 200) | class QBackendNodeMapperPtr(shiboken6.Object): method __init__ (line 202) | def __init__(self, pointee: Qt3DCore.QBackendNodeMapper, /) -> None:... method __init__ (line 204) | def __init__(self, /) -> None: ... method data (line 205) | def data(self, /) -> Qt3DCore.QBackendNodeMapper: ... method reset (line 207) | def reset(self, t: Qt3DCore.QBackendNodeMapper, /) -> None: ... method reset (line 209) | def reset(self, /) -> None: ... method __bool__ (line 210) | def __bool__(self) -> bool: ... method __copy__ (line 211) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 212) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 213) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 214) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 215) | def __gt__(self, other: object) -> bool: ... method __le__ (line 216) | def __le__(self, other: object) -> bool: ... method __lt__ (line 217) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 218) | def __ne__(self, other: object) -> bool: ... class QBoundingVolume (line 220) | class QBoundingVolume(Qt3DCore.QComponent): method __init__ (line 228) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, view: ... method areImplicitPointsValid (line 229) | def areImplicitPointsValid(self, /) -> bool: ... method implicitMaxPoint (line 230) | def implicitMaxPoint(self, /) -> PySide6.QtGui.QVector3D: ... method implicitMinPoint (line 231) | def implicitMinPoint(self, /) -> PySide6.QtGui.QVector3D: ... method maxPoint (line 232) | def maxPoint(self, /) -> PySide6.QtGui.QVector3D: ... method minPoint (line 233) | def minPoint(self, /) -> PySide6.QtGui.QVector3D: ... method setMaxPoint (line 234) | def setMaxPoint(self, maxPoint: PySide6.QtGui.QVector3D, /) -> None:... method setMinPoint (line 235) | def setMinPoint(self, minPoint: PySide6.QtGui.QVector3D, /) -> None:... method setView (line 236) | def setView(self, view: Qt3DCore.QGeometryView, /) -> None: ... method updateImplicitBounds (line 237) | def updateImplicitBounds(self, /) -> bool: ... method view (line 238) | def view(self, /) -> Qt3DCore.QGeometryView: ... class QBuffer (line 240) | class QBuffer(Qt3DCore.QNode): class AccessType (line 241) | class AccessType(enum.Enum): class UsageType (line 246) | class UsageType(enum.Enum): method __init__ (line 261) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, usage:... method accessType (line 262) | def accessType(self, /) -> Qt3DCore.QBuffer.AccessType: ... method data (line 263) | def data(self, /) -> PySide6.QtCore.QByteArray: ... method setAccessType (line 264) | def setAccessType(self, access: Qt3DCore.QBuffer.AccessType, /) -> N... method setData (line 265) | def setData(self, bytes: PySide6.QtCore.QByteArray | bytes | bytearr... method setUsage (line 266) | def setUsage(self, usage: Qt3DCore.QBuffer.UsageType, /) -> None: ... method updateData (line 267) | def updateData(self, offset: int, bytes: PySide6.QtCore.QByteArray |... method usage (line 268) | def usage(self, /) -> Qt3DCore.QBuffer.UsageType: ... class QComponent (line 270) | class QComponent(Qt3DCore.QNode): method __init__ (line 275) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, isShar... method entities (line 276) | def entities(self, /) -> List[Qt3DCore.QEntity]: ... method isShareable (line 277) | def isShareable(self, /) -> bool: ... method setShareable (line 278) | def setShareable(self, isShareable: bool, /) -> None: ... class QCoreAspect (line 280) | class QCoreAspect(Qt3DCore.QAbstractAspect): method __init__ (line 282) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... method calculateBoundingVolumeJob (line 283) | def calculateBoundingVolumeJob(self, /) -> Qt3DCore.QAspectJobPtr: ... class QCoreSettings (line 285) | class QCoreSettings(Qt3DCore.QComponent): method __init__ (line 288) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, boundi... method boundingVolumesEnabled (line 289) | def boundingVolumesEnabled(self, /) -> bool: ... method setBoundingVolumesEnabled (line 290) | def setBoundingVolumesEnabled(self, boundingVolumesEnabled: bool, /)... class QEntity (line 292) | class QEntity(Qt3DCore.QNode): method __init__ (line 294) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., destroyed... method addComponent (line 295) | def addComponent(self, comp: Qt3DCore.QComponent, /) -> None: ... method components (line 296) | def components(self, /) -> List[Qt3DCore.QComponent]: ... method parentEntity (line 297) | def parentEntity(self, /) -> Qt3DCore.QEntity: ... method removeComponent (line 298) | def removeComponent(self, comp: Qt3DCore.QComponent, /) -> None: ... class QEntityPtr (line 300) | class QEntityPtr(shiboken6.Object): method __init__ (line 302) | def __init__(self, pointee: Qt3DCore.QEntity, /) -> None: ... method __init__ (line 304) | def __init__(self, /) -> None: ... method data (line 305) | def data(self, /) -> Qt3DCore.QEntity: ... method reset (line 307) | def reset(self, t: Qt3DCore.QEntity, /) -> None: ... method reset (line 309) | def reset(self, /) -> None: ... method __bool__ (line 310) | def __bool__(self) -> bool: ... method __copy__ (line 311) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 312) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 313) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 314) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 315) | def __gt__(self, other: object) -> bool: ... method __le__ (line 316) | def __le__(self, other: object) -> bool: ... method __lt__ (line 317) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 318) | def __ne__(self, other: object) -> bool: ... class QGeometry (line 320) | class QGeometry(Qt3DCore.QNode): method __init__ (line 325) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, boundi... method addAttribute (line 326) | def addAttribute(self, attribute: Qt3DCore.QAttribute, /) -> None: ... method attributes (line 327) | def attributes(self, /) -> List[Qt3DCore.QAttribute]: ... method boundingVolumePositionAttribute (line 328) | def boundingVolumePositionAttribute(self, /) -> Qt3DCore.QAttribute:... method maxExtent (line 329) | def maxExtent(self, /) -> PySide6.QtGui.QVector3D: ... method minExtent (line 330) | def minExtent(self, /) -> PySide6.QtGui.QVector3D: ... method removeAttribute (line 331) | def removeAttribute(self, attribute: Qt3DCore.QAttribute, /) -> None... method setBoundingVolumePositionAttribute (line 332) | def setBoundingVolumePositionAttribute(self, boundingVolumePositionA... class QGeometryView (line 334) | class QGeometryView(Qt3DCore.QNode): class PrimitiveType (line 335) | class PrimitiveType(enum.Enum): method __init__ (line 360) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, instan... method firstInstance (line 361) | def firstInstance(self, /) -> int: ... method firstVertex (line 362) | def firstVertex(self, /) -> int: ... method geometry (line 363) | def geometry(self, /) -> Qt3DCore.QGeometry: ... method indexBufferByteOffset (line 364) | def indexBufferByteOffset(self, /) -> int: ... method indexOffset (line 365) | def indexOffset(self, /) -> int: ... method instanceCount (line 366) | def instanceCount(self, /) -> int: ... method primitiveRestartEnabled (line 367) | def primitiveRestartEnabled(self, /) -> bool: ... method primitiveType (line 368) | def primitiveType(self, /) -> Qt3DCore.QGeometryView.PrimitiveType: ... method restartIndexValue (line 369) | def restartIndexValue(self, /) -> int: ... method setFirstInstance (line 370) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setFirstVertex (line 371) | def setFirstVertex(self, firstVertex: int, /) -> None: ... method setGeometry (line 372) | def setGeometry(self, geometry: Qt3DCore.QGeometry, /) -> None: ... method setIndexBufferByteOffset (line 373) | def setIndexBufferByteOffset(self, offset: int, /) -> None: ... method setIndexOffset (line 374) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 375) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setPrimitiveRestartEnabled (line 376) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 377) | def setPrimitiveType(self, primitiveType: Qt3DCore.QGeometryView.Pri... method setRestartIndexValue (line 378) | def setRestartIndexValue(self, index: int, /) -> None: ... method setVertexCount (line 379) | def setVertexCount(self, vertexCount: int, /) -> None: ... method setVerticesPerPatch (line 380) | def setVerticesPerPatch(self, verticesPerPatch: int, /) -> None: ... method vertexCount (line 381) | def vertexCount(self, /) -> int: ... method verticesPerPatch (line 382) | def verticesPerPatch(self, /) -> int: ... class QJoint (line 384) | class QJoint(Qt3DCore.QNode): method __init__ (line 394) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, scale:... method addChildJoint (line 395) | def addChildJoint(self, joint: Qt3DCore.QJoint, /) -> None: ... method childJoints (line 396) | def childJoints(self, /) -> List[Qt3DCore.QJoint]: ... method inverseBindMatrix (line 397) | def inverseBindMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method name (line 398) | def name(self, /) -> str: ... method removeChildJoint (line 399) | def removeChildJoint(self, joint: Qt3DCore.QJoint, /) -> None: ... method rotation (line 400) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method rotationX (line 401) | def rotationX(self, /) -> float: ... method rotationY (line 402) | def rotationY(self, /) -> float: ... method rotationZ (line 403) | def rotationZ(self, /) -> float: ... method scale (line 404) | def scale(self, /) -> PySide6.QtGui.QVector3D: ... method setInverseBindMatrix (line 405) | def setInverseBindMatrix(self, inverseBindMatrix: PySide6.QtGui.QMat... method setName (line 406) | def setName(self, name: str, /) -> None: ... method setRotation (line 407) | def setRotation(self, rotation: PySide6.QtGui.QQuaternion, /) -> Non... method setRotationX (line 408) | def setRotationX(self, rotationX: float, /) -> None: ... method setRotationY (line 409) | def setRotationY(self, rotationY: float, /) -> None: ... method setRotationZ (line 410) | def setRotationZ(self, rotationZ: float, /) -> None: ... method setScale (line 411) | def setScale(self, scale: PySide6.QtGui.QVector3D, /) -> None: ... method setToIdentity (line 412) | def setToIdentity(self, /) -> None: ... method setTranslation (line 413) | def setTranslation(self, translation: PySide6.QtGui.QVector3D, /) ->... method translation (line 414) | def translation(self, /) -> PySide6.QtGui.QVector3D: ... class QNode (line 416) | class QNode(PySide6.QtCore.QObject): method __init__ (line 421) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, enable... method blockNotifications (line 422) | def blockNotifications(self, block: bool, /) -> bool: ... method childNodes (line 423) | def childNodes(self, /) -> List[Qt3DCore.QNode]: ... method id (line 424) | def id(self, /) -> Qt3DCore.QNodeId: ... method isEnabled (line 425) | def isEnabled(self, /) -> bool: ... method notificationsBlocked (line 426) | def notificationsBlocked(self, /) -> bool: ... method parentNode (line 427) | def parentNode(self, /) -> Qt3DCore.QNode: ... method setEnabled (line 428) | def setEnabled(self, isEnabled: bool, /) -> None: ... method setParent (line 429) | def setParent(self, parent: Qt3DCore.QNode, /) -> None: ... # type:... class QNodeId (line 431) | class QNodeId(shiboken6.Object): method __init__ (line 433) | def __init__(self, QNodeId: Qt3DCore.QNodeId, /) -> None: ... method __init__ (line 435) | def __init__(self, /) -> None: ... method createId (line 437) | def createId() -> Qt3DCore.QNodeId: ... method id (line 438) | def id(self, /) -> int: ... method isNull (line 439) | def isNull(self, /) -> bool: ... method __bool__ (line 440) | def __bool__(self) -> bool: ... method __copy__ (line 441) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 442) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 443) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 444) | def __gt__(self, other: object) -> bool: ... method __le__ (line 445) | def __le__(self, other: object) -> bool: ... method __lt__ (line 446) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 447) | def __ne__(self, other: object) -> bool: ... class QNodeIdTypePair (line 449) | class QNodeIdTypePair(shiboken6.Object): method __init__ (line 453) | def __init__(self, _id: Qt3DCore.QNodeId, _type: PySide6.QtCore.QMet... method __init__ (line 455) | def __init__(self, QNodeIdTypePair: Qt3DCore.QNodeIdTypePair, /) -> ... method __init__ (line 457) | def __init__(self, /) -> None: ... method __copy__ (line 458) | def __copy__(self, /) -> typing_extensions.Self: ... class QSkeleton (line 460) | class QSkeleton(Qt3DCore.QAbstractSkeleton): method __init__ (line 463) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, rootJo... method rootJoint (line 464) | def rootJoint(self, /) -> Qt3DCore.QJoint: ... method setRootJoint (line 465) | def setRootJoint(self, rootJoint: Qt3DCore.QJoint, /) -> None: ... class QSkeletonLoader (line 467) | class QSkeletonLoader(Qt3DCore.QAbstractSkeleton): class Status (line 468) | class Status(enum.Enum): method __init__ (line 478) | def __init__(self, source: PySide6.QtCore.QUrl | str, /, parent: Qt3... method __init__ (line 480) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, source... method isCreateJointsEnabled (line 481) | def isCreateJointsEnabled(self, /) -> bool: ... method rootJoint (line 482) | def rootJoint(self, /) -> Qt3DCore.QJoint: ... method setCreateJointsEnabled (line 483) | def setCreateJointsEnabled(self, enabled: bool, /) -> None: ... method setSource (line 484) | def setSource(self, source: PySide6.QtCore.QUrl | str, /) -> None: ... method source (line 485) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 486) | def status(self, /) -> Qt3DCore.QSkeletonLoader.Status: ... class QTransform (line 488) | class QTransform(Qt3DCore.QComponent): method __init__ (line 499) | def __init__(self, /, parent: Qt3DCore.QNode | None = ..., *, matrix... method fromAxes (line 501) | def fromAxes(xAxis: PySide6.QtGui.QVector3D, yAxis: PySide6.QtGui.QV... method fromAxesAndAngles (line 504) | def fromAxesAndAngles(axis1: PySide6.QtGui.QVector3D, angle1: float,... method fromAxesAndAngles (line 507) | def fromAxesAndAngles(axis1: PySide6.QtGui.QVector3D, angle1: float,... method fromAxisAndAngle (line 510) | def fromAxisAndAngle(x: float, y: float, z: float, angle: float, /) ... method fromAxisAndAngle (line 513) | def fromAxisAndAngle(axis: PySide6.QtGui.QVector3D, angle: float, /)... method fromEulerAngles (line 516) | def fromEulerAngles(pitch: float, yaw: float, roll: float, /) -> PyS... method fromEulerAngles (line 519) | def fromEulerAngles(eulerAngles: PySide6.QtGui.QVector3D, /) -> PySi... method matrix (line 520) | def matrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method rotateAround (line 522) | def rotateAround(point: PySide6.QtGui.QVector3D, angle: float, axis:... method rotateFromAxes (line 524) | def rotateFromAxes(xAxis: PySide6.QtGui.QVector3D, yAxis: PySide6.Qt... method rotation (line 525) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method rotationX (line 526) | def rotationX(self, /) -> float: ... method rotationY (line 527) | def rotationY(self, /) -> float: ... method rotationZ (line 528) | def rotationZ(self, /) -> float: ... method scale (line 529) | def scale(self, /) -> float: ... method scale3D (line 530) | def scale3D(self, /) -> PySide6.QtGui.QVector3D: ... method setMatrix (line 531) | def setMatrix(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6.QtGui... method setRotation (line 532) | def setRotation(self, rotation: PySide6.QtGui.QQuaternion, /) -> Non... method setRotationX (line 533) | def setRotationX(self, rotationX: float, /) -> None: ... method setRotationY (line 534) | def setRotationY(self, rotationY: float, /) -> None: ... method setRotationZ (line 535) | def setRotationZ(self, rotationZ: float, /) -> None: ... method setScale (line 536) | def setScale(self, scale: float, /) -> None: ... method setScale3D (line 537) | def setScale3D(self, scale: PySide6.QtGui.QVector3D, /) -> None: ... method setTranslation (line 538) | def setTranslation(self, translation: PySide6.QtGui.QVector3D, /) ->... method translation (line 539) | def translation(self, /) -> PySide6.QtGui.QVector3D: ... method worldMatrix (line 540) | def worldMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method __init__ (line 541) | def __init__(self, *args, **kwargs) -> None: ... method qHash (line 543) | def qHash(id: Qt3DCore.QNodeId, /, seed: int | None = ...) -> int: ... method qIdForNode (line 545) | def qIdForNode(node: Qt3DCore.QNode, /) -> Qt3DCore.QNodeId: ... FILE: pyside6/stubs/PySide6-stubs/Qt3DExtras.pyi class QIntList (line 14) | class QIntList: method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method append (line 17) | def append(self, *args, **kwargs): ... method capacity (line 18) | def capacity(self, *args, **kwargs): ... method clear (line 19) | def clear(self, *args, **kwargs): ... method constData (line 20) | def constData(self, *args, **kwargs): ... method data (line 21) | def data(self, *args, **kwargs): ... method pop_back (line 22) | def pop_back(self, *args, **kwargs): ... method pop_front (line 23) | def pop_front(self, *args, **kwargs): ... method prepend (line 24) | def prepend(self, *args, **kwargs): ... method push_back (line 25) | def push_back(self, *args, **kwargs): ... method push_front (line 26) | def push_front(self, *args, **kwargs): ... method removeFirst (line 27) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 28) | def removeLast(self, *args, **kwargs): ... method reserve (line 29) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 30) | def __delitem__(self, other) -> None: ... method __getitem__ (line 31) | def __getitem__(self, index): ... method __len__ (line 32) | def __len__(self) -> int: ... method __setitem__ (line 33) | def __setitem__(self, index, object) -> None: ... class Qt3DExtras (line 35) | class Qt3DExtras(shiboken6.Object): class QAbstractCameraController (line 36) | class QAbstractCameraController(PySide6.Qt3DCore.Qt3DCore.QEntity): class InputState (line 37) | class InputState(shiboken6.Object): method __init__ (line 49) | def __init__(self, InputState: Qt3DExtras.QAbstractCameraControlle... method __init__ (line 51) | def __init__(self, /) -> None: ... method __copy__ (line 52) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 59) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method acceleration (line 60) | def acceleration(self, /) -> float: ... method camera (line 61) | def camera(self, /) -> PySide6.Qt3DRender.Qt3DRender.QCamera: ... method deceleration (line 62) | def deceleration(self, /) -> float: ... method linearSpeed (line 63) | def linearSpeed(self, /) -> float: ... method lookSpeed (line 64) | def lookSpeed(self, /) -> float: ... method setAcceleration (line 65) | def setAcceleration(self, acceleration: float, /) -> None: ... method setCamera (line 66) | def setCamera(self, camera: PySide6.Qt3DRender.Qt3DRender.QCamera, /... method setDeceleration (line 67) | def setDeceleration(self, deceleration: float, /) -> None: ... method setLinearSpeed (line 68) | def setLinearSpeed(self, linearSpeed: float, /) -> None: ... method setLookSpeed (line 69) | def setLookSpeed(self, lookSpeed: float, /) -> None: ... class QAbstractSpriteSheet (line 71) | class QAbstractSpriteSheet(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 76) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... method currentIndex (line 77) | def currentIndex(self, /) -> int: ... method setCurrentIndex (line 78) | def setCurrentIndex(self, currentIndex: int, /) -> None: ... method setTexture (line 79) | def setTexture(self, texture: PySide6.Qt3DRender.Qt3DRender.QAbstrac... method texture (line 80) | def texture(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextu... method textureTransform (line 81) | def textureTransform(self, /) -> PySide6.QtGui.QMatrix3x3: ... class QConeGeometry (line 83) | class QConeGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 92) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method bottomRadius (line 93) | def bottomRadius(self, /) -> float: ... method hasBottomEndcap (line 94) | def hasBottomEndcap(self, /) -> bool: ... method hasTopEndcap (line 95) | def hasTopEndcap(self, /) -> bool: ... method indexAttribute (line 96) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method length (line 97) | def length(self, /) -> float: ... method normalAttribute (line 98) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 99) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method rings (line 100) | def rings(self, /) -> int: ... method setBottomRadius (line 101) | def setBottomRadius(self, bottomRadius: float, /) -> None: ... method setHasBottomEndcap (line 102) | def setHasBottomEndcap(self, hasBottomEndcap: bool, /) -> None: ... method setHasTopEndcap (line 103) | def setHasTopEndcap(self, hasTopEndcap: bool, /) -> None: ... method setLength (line 104) | def setLength(self, length: float, /) -> None: ... method setRings (line 105) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 106) | def setSlices(self, slices: int, /) -> None: ... method setTopRadius (line 107) | def setTopRadius(self, topRadius: float, /) -> None: ... method slices (line 108) | def slices(self, /) -> int: ... method texCoordAttribute (line 109) | def texCoordAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method topRadius (line 110) | def topRadius(self, /) -> float: ... method updateIndices (line 111) | def updateIndices(self, /) -> None: ... method updateVertices (line 112) | def updateVertices(self, /) -> None: ... class QConeGeometryView (line 114) | class QConeGeometryView(PySide6.Qt3DCore.Qt3DCore.QGeometryView): method __init__ (line 123) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method bottomRadius (line 124) | def bottomRadius(self, /) -> float: ... method hasBottomEndcap (line 125) | def hasBottomEndcap(self, /) -> bool: ... method hasTopEndcap (line 126) | def hasTopEndcap(self, /) -> bool: ... method length (line 127) | def length(self, /) -> float: ... method rings (line 128) | def rings(self, /) -> int: ... method setBottomRadius (line 129) | def setBottomRadius(self, bottomRadius: float, /) -> None: ... method setFirstInstance (line 130) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 131) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setHasBottomEndcap (line 132) | def setHasBottomEndcap(self, hasBottomEndcap: bool, /) -> None: ... method setHasTopEndcap (line 133) | def setHasTopEndcap(self, hasTopEndcap: bool, /) -> None: ... method setIndexOffset (line 134) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 135) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setLength (line 136) | def setLength(self, length: float, /) -> None: ... method setPrimitiveRestartEnabled (line 137) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 138) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DCore.Qt3DCore.... method setRestartIndexValue (line 139) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 140) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 141) | def setSlices(self, slices: int, /) -> None: ... method setTopRadius (line 142) | def setTopRadius(self, topRadius: float, /) -> None: ... method setVertexCount (line 143) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 144) | def slices(self, /) -> int: ... method topRadius (line 145) | def topRadius(self, /) -> float: ... class QConeMesh (line 147) | class QConeMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 156) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method bottomRadius (line 157) | def bottomRadius(self, /) -> float: ... method hasBottomEndcap (line 158) | def hasBottomEndcap(self, /) -> bool: ... method hasTopEndcap (line 159) | def hasTopEndcap(self, /) -> bool: ... method length (line 160) | def length(self, /) -> float: ... method rings (line 161) | def rings(self, /) -> int: ... method setBottomRadius (line 162) | def setBottomRadius(self, bottomRadius: float, /) -> None: ... method setFirstInstance (line 163) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 164) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setHasBottomEndcap (line 165) | def setHasBottomEndcap(self, hasBottomEndcap: bool, /) -> None: ... method setHasTopEndcap (line 166) | def setHasTopEndcap(self, hasTopEndcap: bool, /) -> None: ... method setIndexOffset (line 167) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 168) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setLength (line 169) | def setLength(self, length: float, /) -> None: ... method setPrimitiveRestartEnabled (line 170) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 171) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DRender.Qt3DRen... method setRestartIndexValue (line 172) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 173) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 174) | def setSlices(self, slices: int, /) -> None: ... method setTopRadius (line 175) | def setTopRadius(self, topRadius: float, /) -> None: ... method setVertexCount (line 176) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 177) | def slices(self, /) -> int: ... method topRadius (line 178) | def topRadius(self, /) -> float: ... class QCuboidGeometry (line 180) | class QCuboidGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 188) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method indexAttribute (line 189) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method normalAttribute (line 190) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 191) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method setXExtent (line 192) | def setXExtent(self, xExtent: float, /) -> None: ... method setXYMeshResolution (line 193) | def setXYMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setXZMeshResolution (line 194) | def setXZMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setYExtent (line 195) | def setYExtent(self, yExtent: float, /) -> None: ... method setYZMeshResolution (line 196) | def setYZMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setZExtent (line 197) | def setZExtent(self, zExtent: float, /) -> None: ... method tangentAttribute (line 198) | def tangentAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribut... method texCoordAttribute (line 199) | def texCoordAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method updateIndices (line 200) | def updateIndices(self, /) -> None: ... method updateVertices (line 201) | def updateVertices(self, /) -> None: ... method xExtent (line 202) | def xExtent(self, /) -> float: ... method xyMeshResolution (line 203) | def xyMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method xzMeshResolution (line 204) | def xzMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method yExtent (line 205) | def yExtent(self, /) -> float: ... method yzMeshResolution (line 206) | def yzMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method zExtent (line 207) | def zExtent(self, /) -> float: ... class QCuboidGeometryView (line 209) | class QCuboidGeometryView(PySide6.Qt3DCore.Qt3DCore.QGeometryView): method __init__ (line 217) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setFirstInstance (line 218) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 219) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 220) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 221) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setPrimitiveRestartEnabled (line 222) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 223) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DCore.Qt3DCore.... method setRestartIndexValue (line 224) | def setRestartIndexValue(self, index: int, /) -> None: ... method setVertexCount (line 225) | def setVertexCount(self, vertexCount: int, /) -> None: ... method setXExtent (line 226) | def setXExtent(self, xExtent: float, /) -> None: ... method setXYMeshResolution (line 227) | def setXYMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setXZMeshResolution (line 228) | def setXZMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setYExtent (line 229) | def setYExtent(self, yExtent: float, /) -> None: ... method setYZMeshResolution (line 230) | def setYZMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setZExtent (line 231) | def setZExtent(self, zExtent: float, /) -> None: ... method xExtent (line 232) | def xExtent(self, /) -> float: ... method xyMeshResolution (line 233) | def xyMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method xzMeshResolution (line 234) | def xzMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method yExtent (line 235) | def yExtent(self, /) -> float: ... method yzMeshResolution (line 236) | def yzMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method zExtent (line 237) | def zExtent(self, /) -> float: ... class QCuboidMesh (line 239) | class QCuboidMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 247) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setFirstInstance (line 248) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 249) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 250) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 251) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setPrimitiveRestartEnabled (line 252) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 253) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DRender.Qt3DRen... method setRestartIndexValue (line 254) | def setRestartIndexValue(self, index: int, /) -> None: ... method setVertexCount (line 255) | def setVertexCount(self, vertexCount: int, /) -> None: ... method setXExtent (line 256) | def setXExtent(self, xExtent: float, /) -> None: ... method setXYMeshResolution (line 257) | def setXYMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setXZMeshResolution (line 258) | def setXZMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setYExtent (line 259) | def setYExtent(self, yExtent: float, /) -> None: ... method setYZMeshResolution (line 260) | def setYZMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -... method setZExtent (line 261) | def setZExtent(self, zExtent: float, /) -> None: ... method xExtent (line 262) | def xExtent(self, /) -> float: ... method xyMeshResolution (line 263) | def xyMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method xzMeshResolution (line 264) | def xzMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method yExtent (line 265) | def yExtent(self, /) -> float: ... method yzMeshResolution (line 266) | def yzMeshResolution(self, /) -> PySide6.QtCore.QSize: ... method zExtent (line 267) | def zExtent(self, /) -> float: ... class QCylinderGeometry (line 269) | class QCylinderGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 275) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method indexAttribute (line 276) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method length (line 277) | def length(self, /) -> float: ... method normalAttribute (line 278) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 279) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method radius (line 280) | def radius(self, /) -> float: ... method rings (line 281) | def rings(self, /) -> int: ... method setLength (line 282) | def setLength(self, length: float, /) -> None: ... method setRadius (line 283) | def setRadius(self, radius: float, /) -> None: ... method setRings (line 284) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 285) | def setSlices(self, slices: int, /) -> None: ... method slices (line 286) | def slices(self, /) -> int: ... method texCoordAttribute (line 287) | def texCoordAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method updateIndices (line 288) | def updateIndices(self, /) -> None: ... method updateVertices (line 289) | def updateVertices(self, /) -> None: ... class QCylinderGeometryView (line 291) | class QCylinderGeometryView(PySide6.Qt3DCore.Qt3DCore.QGeometryView): method __init__ (line 297) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method length (line 298) | def length(self, /) -> float: ... method radius (line 299) | def radius(self, /) -> float: ... method rings (line 300) | def rings(self, /) -> int: ... method setFirstInstance (line 301) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 302) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 303) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 304) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setLength (line 305) | def setLength(self, length: float, /) -> None: ... method setPrimitiveRestartEnabled (line 306) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 307) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DCore.Qt3DCore.... method setRadius (line 308) | def setRadius(self, radius: float, /) -> None: ... method setRestartIndexValue (line 309) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 310) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 311) | def setSlices(self, slices: int, /) -> None: ... method setVertexCount (line 312) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 313) | def slices(self, /) -> int: ... class QCylinderMesh (line 315) | class QCylinderMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 321) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method length (line 322) | def length(self, /) -> float: ... method radius (line 323) | def radius(self, /) -> float: ... method rings (line 324) | def rings(self, /) -> int: ... method setFirstInstance (line 325) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 326) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 327) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 328) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setLength (line 329) | def setLength(self, length: float, /) -> None: ... method setPrimitiveRestartEnabled (line 330) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 331) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DRender.Qt3DRen... method setRadius (line 332) | def setRadius(self, radius: float, /) -> None: ... method setRestartIndexValue (line 333) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 334) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 335) | def setSlices(self, slices: int, /) -> None: ... method setVertexCount (line 336) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 337) | def slices(self, /) -> int: ... class QDiffuseMapMaterial (line 339) | class QDiffuseMapMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 346) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 347) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 348) | def diffuse(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextu... method setAmbient (line 349) | def setAmbient(self, color: Union[PySide6.QtGui.QColor, str, PySide6... method setDiffuse (line 350) | def setDiffuse(self, diffuse: PySide6.Qt3DRender.Qt3DRender.QAbstrac... method setShininess (line 351) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 352) | def setSpecular(self, specular: Union[PySide6.QtGui.QColor, str, PyS... method setTextureScale (line 353) | def setTextureScale(self, textureScale: float, /) -> None: ... method shininess (line 354) | def shininess(self, /) -> float: ... method specular (line 355) | def specular(self, /) -> PySide6.QtGui.QColor: ... method textureScale (line 356) | def textureScale(self, /) -> float: ... class QDiffuseSpecularMapMaterial (line 358) | class QDiffuseSpecularMapMaterial(PySide6.Qt3DRender.Qt3DRender.QMater... method __init__ (line 365) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 366) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 367) | def diffuse(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextu... method setAmbient (line 368) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setDiffuse (line 369) | def setDiffuse(self, diffuse: PySide6.Qt3DRender.Qt3DRender.QAbstrac... method setShininess (line 370) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 371) | def setSpecular(self, specular: PySide6.Qt3DRender.Qt3DRender.QAbstr... method setTextureScale (line 372) | def setTextureScale(self, textureScale: float, /) -> None: ... method shininess (line 373) | def shininess(self, /) -> float: ... method specular (line 374) | def specular(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractText... method textureScale (line 375) | def textureScale(self, /) -> float: ... class QDiffuseSpecularMaterial (line 377) | class QDiffuseSpecularMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 386) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 387) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 388) | def diffuse(self, /) -> Any: ... method isAlphaBlendingEnabled (line 389) | def isAlphaBlendingEnabled(self, /) -> bool: ... method normal (line 390) | def normal(self, /) -> Any: ... method setAlphaBlendingEnabled (line 391) | def setAlphaBlendingEnabled(self, enabled: bool, /) -> None: ... method setAmbient (line 392) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setDiffuse (line 393) | def setDiffuse(self, diffuse: Any, /) -> None: ... method setNormal (line 394) | def setNormal(self, normal: Any, /) -> None: ... method setShininess (line 395) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 396) | def setSpecular(self, specular: Any, /) -> None: ... method setTextureScale (line 397) | def setTextureScale(self, textureScale: float, /) -> None: ... method shininess (line 398) | def shininess(self, /) -> float: ... method specular (line 399) | def specular(self, /) -> Any: ... method textureScale (line 400) | def textureScale(self, /) -> float: ... class QExtrudedTextGeometry (line 402) | class QExtrudedTextGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 407) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method extrusionLength (line 408) | def extrusionLength(self, /) -> float: ... method font (line 409) | def font(self, /) -> PySide6.QtGui.QFont: ... method indexAttribute (line 410) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method normalAttribute (line 411) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 412) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method setDepth (line 413) | def setDepth(self, extrusionLength: float, /) -> None: ... method setFont (line 414) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[... method setText (line 415) | def setText(self, text: str, /) -> None: ... method text (line 416) | def text(self, /) -> str: ... class QExtrudedTextMesh (line 418) | class QExtrudedTextMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 423) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method depth (line 424) | def depth(self, /) -> float: ... method font (line 425) | def font(self, /) -> PySide6.QtGui.QFont: ... method setDepth (line 426) | def setDepth(self, depth: float, /) -> None: ... method setFont (line 427) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[... method setText (line 428) | def setText(self, text: str, /) -> None: ... method text (line 429) | def text(self, /) -> str: ... class QFirstPersonCameraController (line 431) | class QFirstPersonCameraController(Qt3DExtras.QAbstractCameraController): method __init__ (line 433) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QForwardRenderer (line 435) | class QForwardRenderer(PySide6.Qt3DRender.Qt3DRender.QTechniqueFilter): method __init__ (line 446) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method buffersToClear (line 447) | def buffersToClear(self, /) -> PySide6.Qt3DRender.Qt3DRender.QClearB... method camera (line 448) | def camera(self, /) -> PySide6.Qt3DCore.Qt3DCore.QEntity: ... method clearColor (line 449) | def clearColor(self, /) -> PySide6.QtGui.QColor: ... method externalRenderTargetSize (line 450) | def externalRenderTargetSize(self, /) -> PySide6.QtCore.QSize: ... method gamma (line 451) | def gamma(self, /) -> float: ... method isFrustumCullingEnabled (line 452) | def isFrustumCullingEnabled(self, /) -> bool: ... method setBuffersToClear (line 453) | def setBuffersToClear(self, arg__1: PySide6.Qt3DRender.Qt3DRender.QC... method setCamera (line 454) | def setCamera(self, camera: PySide6.Qt3DCore.Qt3DCore.QEntity, /) ->... method setClearColor (line 455) | def setClearColor(self, clearColor: Union[PySide6.QtGui.QColor, str,... method setExternalRenderTargetSize (line 456) | def setExternalRenderTargetSize(self, size: PySide6.QtCore.QSize, /)... method setFrustumCullingEnabled (line 457) | def setFrustumCullingEnabled(self, enabled: bool, /) -> None: ... method setGamma (line 458) | def setGamma(self, gamma: float, /) -> None: ... method setShowDebugOverlay (line 459) | def setShowDebugOverlay(self, showDebugOverlay: bool, /) -> None: ... method setSurface (line 460) | def setSurface(self, surface: PySide6.QtCore.QObject, /) -> None: ... method setViewportRect (line 461) | def setViewportRect(self, viewportRect: PySide6.QtCore.QRectF | PySi... method showDebugOverlay (line 462) | def showDebugOverlay(self, /) -> bool: ... method surface (line 463) | def surface(self, /) -> PySide6.QtCore.QObject: ... method viewportRect (line 464) | def viewportRect(self, /) -> PySide6.QtCore.QRectF: ... class QGoochMaterial (line 466) | class QGoochMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 475) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method alpha (line 476) | def alpha(self, /) -> float: ... method beta (line 477) | def beta(self, /) -> float: ... method cool (line 478) | def cool(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 479) | def diffuse(self, /) -> PySide6.QtGui.QColor: ... method setAlpha (line 480) | def setAlpha(self, alpha: float, /) -> None: ... method setBeta (line 481) | def setBeta(self, beta: float, /) -> None: ... method setCool (line 482) | def setCool(self, cool: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setDiffuse (line 483) | def setDiffuse(self, diffuse: Union[PySide6.QtGui.QColor, str, PySid... method setShininess (line 484) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 485) | def setSpecular(self, specular: Union[PySide6.QtGui.QColor, str, PyS... method setWarm (line 486) | def setWarm(self, warm: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method shininess (line 487) | def shininess(self, /) -> float: ... method specular (line 488) | def specular(self, /) -> PySide6.QtGui.QColor: ... method warm (line 489) | def warm(self, /) -> PySide6.QtGui.QColor: ... class QMetalRoughMaterial (line 491) | class QMetalRoughMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 499) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambientOcclusion (line 500) | def ambientOcclusion(self, /) -> Any: ... method baseColor (line 501) | def baseColor(self, /) -> Any: ... method metalness (line 502) | def metalness(self, /) -> Any: ... method normal (line 503) | def normal(self, /) -> Any: ... method roughness (line 504) | def roughness(self, /) -> Any: ... method setAmbientOcclusion (line 505) | def setAmbientOcclusion(self, ambientOcclusion: Any, /) -> None: ... method setBaseColor (line 506) | def setBaseColor(self, baseColor: Any, /) -> None: ... method setMetalness (line 507) | def setMetalness(self, metalness: Any, /) -> None: ... method setNormal (line 508) | def setNormal(self, normal: Any, /) -> None: ... method setRoughness (line 509) | def setRoughness(self, roughness: Any, /) -> None: ... method setTextureScale (line 510) | def setTextureScale(self, textureScale: float, /) -> None: ... method textureScale (line 511) | def textureScale(self, /) -> float: ... class QMorphPhongMaterial (line 513) | class QMorphPhongMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 520) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 521) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 522) | def diffuse(self, /) -> PySide6.QtGui.QColor: ... method interpolator (line 523) | def interpolator(self, /) -> float: ... method setAmbient (line 524) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setDiffuse (line 525) | def setDiffuse(self, diffuse: Union[PySide6.QtGui.QColor, str, PySid... method setInterpolator (line 526) | def setInterpolator(self, interpolator: float, /) -> None: ... method setShininess (line 527) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 528) | def setSpecular(self, specular: Union[PySide6.QtGui.QColor, str, PyS... method shininess (line 529) | def shininess(self, /) -> float: ... method specular (line 530) | def specular(self, /) -> PySide6.QtGui.QColor: ... class QNormalDiffuseMapAlphaMaterial (line 532) | class QNormalDiffuseMapAlphaMaterial(Qt3DExtras.QNormalDiffuseMapMater... method __init__ (line 534) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QNormalDiffuseMapMaterial (line 536) | class QNormalDiffuseMapMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 544) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 545) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 546) | def diffuse(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextu... method normal (line 547) | def normal(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextur... method setAmbient (line 548) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setDiffuse (line 549) | def setDiffuse(self, diffuse: PySide6.Qt3DRender.Qt3DRender.QAbstrac... method setNormal (line 550) | def setNormal(self, normal: PySide6.Qt3DRender.Qt3DRender.QAbstractT... method setShininess (line 551) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 552) | def setSpecular(self, specular: Union[PySide6.QtGui.QColor, str, PyS... method setTextureScale (line 553) | def setTextureScale(self, textureScale: float, /) -> None: ... method shininess (line 554) | def shininess(self, /) -> float: ... method specular (line 555) | def specular(self, /) -> PySide6.QtGui.QColor: ... method textureScale (line 556) | def textureScale(self, /) -> float: ... class QNormalDiffuseSpecularMapMaterial (line 558) | class QNormalDiffuseSpecularMapMaterial(PySide6.Qt3DRender.Qt3DRender.... method __init__ (line 566) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 567) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 568) | def diffuse(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextu... method normal (line 569) | def normal(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextur... method setAmbient (line 570) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setDiffuse (line 571) | def setDiffuse(self, diffuse: PySide6.Qt3DRender.Qt3DRender.QAbstrac... method setNormal (line 572) | def setNormal(self, normal: PySide6.Qt3DRender.Qt3DRender.QAbstractT... method setShininess (line 573) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 574) | def setSpecular(self, specular: PySide6.Qt3DRender.Qt3DRender.QAbstr... method setTextureScale (line 575) | def setTextureScale(self, textureScale: float, /) -> None: ... method shininess (line 576) | def shininess(self, /) -> float: ... method specular (line 577) | def specular(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractText... method textureScale (line 578) | def textureScale(self, /) -> float: ... class QOrbitCameraController (line 580) | class QOrbitCameraController(Qt3DExtras.QAbstractCameraController): method __init__ (line 589) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method inversePan (line 590) | def inversePan(self, /) -> bool: ... method inverseTilt (line 591) | def inverseTilt(self, /) -> bool: ... method inverseXTranslate (line 592) | def inverseXTranslate(self, /) -> bool: ... method inverseYTranslate (line 593) | def inverseYTranslate(self, /) -> bool: ... method setInversePan (line 594) | def setInversePan(self, isInverse: bool, /) -> None: ... method setInverseTilt (line 595) | def setInverseTilt(self, isInverse: bool, /) -> None: ... method setInverseXTranslate (line 596) | def setInverseXTranslate(self, isInverse: bool, /) -> None: ... method setInverseYTranslate (line 597) | def setInverseYTranslate(self, isInverse: bool, /) -> None: ... method setUpVector (line 598) | def setUpVector(self, upVector: PySide6.QtGui.QVector3D, /) -> None:... method setZoomInLimit (line 599) | def setZoomInLimit(self, zoomInLimit: float, /) -> None: ... method setZoomTranslateViewCenter (line 600) | def setZoomTranslateViewCenter(self, isTranslate: bool, /) -> None: ... method upVector (line 601) | def upVector(self, /) -> PySide6.QtGui.QVector3D: ... method zoomInLimit (line 602) | def zoomInLimit(self, /) -> float: ... method zoomTranslateViewCenter (line 603) | def zoomTranslateViewCenter(self, /) -> bool: ... class QPerVertexColorMaterial (line 605) | class QPerVertexColorMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 607) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QPhongAlphaMaterial (line 609) | class QPhongAlphaMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 621) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method alpha (line 622) | def alpha(self, /) -> float: ... method ambient (line 623) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method blendFunctionArg (line 624) | def blendFunctionArg(self, /) -> PySide6.Qt3DRender.Qt3DRender.QBlen... method destinationAlphaArg (line 625) | def destinationAlphaArg(self, /) -> PySide6.Qt3DRender.Qt3DRender.QB... method destinationRgbArg (line 626) | def destinationRgbArg(self, /) -> PySide6.Qt3DRender.Qt3DRender.QBle... method diffuse (line 627) | def diffuse(self, /) -> PySide6.QtGui.QColor: ... method setAlpha (line 628) | def setAlpha(self, alpha: float, /) -> None: ... method setAmbient (line 629) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setBlendFunctionArg (line 630) | def setBlendFunctionArg(self, blendFunctionArg: PySide6.Qt3DRender.Q... method setDestinationAlphaArg (line 631) | def setDestinationAlphaArg(self, destinationAlphaArg: PySide6.Qt3DRe... method setDestinationRgbArg (line 632) | def setDestinationRgbArg(self, destinationRgbArg: PySide6.Qt3DRender... method setDiffuse (line 633) | def setDiffuse(self, diffuse: Union[PySide6.QtGui.QColor, str, PySid... method setShininess (line 634) | def setShininess(self, shininess: float, /) -> None: ... method setSourceAlphaArg (line 635) | def setSourceAlphaArg(self, sourceAlphaArg: PySide6.Qt3DRender.Qt3DR... method setSourceRgbArg (line 636) | def setSourceRgbArg(self, sourceRgbArg: PySide6.Qt3DRender.Qt3DRende... method setSpecular (line 637) | def setSpecular(self, specular: Union[PySide6.QtGui.QColor, str, PyS... method shininess (line 638) | def shininess(self, /) -> float: ... method sourceAlphaArg (line 639) | def sourceAlphaArg(self, /) -> PySide6.Qt3DRender.Qt3DRender.QBlendE... method sourceRgbArg (line 640) | def sourceRgbArg(self, /) -> PySide6.Qt3DRender.Qt3DRender.QBlendEqu... method specular (line 641) | def specular(self, /) -> PySide6.QtGui.QColor: ... class QPhongMaterial (line 643) | class QPhongMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 649) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method ambient (line 650) | def ambient(self, /) -> PySide6.QtGui.QColor: ... method diffuse (line 651) | def diffuse(self, /) -> PySide6.QtGui.QColor: ... method setAmbient (line 652) | def setAmbient(self, ambient: Union[PySide6.QtGui.QColor, str, PySid... method setDiffuse (line 653) | def setDiffuse(self, diffuse: Union[PySide6.QtGui.QColor, str, PySid... method setShininess (line 654) | def setShininess(self, shininess: float, /) -> None: ... method setSpecular (line 655) | def setSpecular(self, specular: Union[PySide6.QtGui.QColor, str, PyS... method shininess (line 656) | def shininess(self, /) -> float: ... method specular (line 657) | def specular(self, /) -> PySide6.QtGui.QColor: ... class QPlaneGeometry (line 659) | class QPlaneGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 665) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method height (line 666) | def height(self, /) -> float: ... method indexAttribute (line 667) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method mirrored (line 668) | def mirrored(self, /) -> bool: ... method normalAttribute (line 669) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 670) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method resolution (line 671) | def resolution(self, /) -> PySide6.QtCore.QSize: ... method setHeight (line 672) | def setHeight(self, height: float, /) -> None: ... method setMirrored (line 673) | def setMirrored(self, mirrored: bool, /) -> None: ... method setResolution (line 674) | def setResolution(self, resolution: PySide6.QtCore.QSize, /) -> None... method setWidth (line 675) | def setWidth(self, width: float, /) -> None: ... method tangentAttribute (line 676) | def tangentAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribut... method texCoordAttribute (line 677) | def texCoordAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method updateIndices (line 678) | def updateIndices(self, /) -> None: ... method updateVertices (line 679) | def updateVertices(self, /) -> None: ... method width (line 680) | def width(self, /) -> float: ... class QPlaneGeometryView (line 682) | class QPlaneGeometryView(PySide6.Qt3DCore.Qt3DCore.QGeometryView): method __init__ (line 688) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method height (line 689) | def height(self, /) -> float: ... method meshResolution (line 690) | def meshResolution(self, /) -> PySide6.QtCore.QSize: ... method mirrored (line 691) | def mirrored(self, /) -> bool: ... method setFirstInstance (line 692) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 693) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setHeight (line 694) | def setHeight(self, height: float, /) -> None: ... method setIndexOffset (line 695) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 696) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setMeshResolution (line 697) | def setMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -> ... method setMirrored (line 698) | def setMirrored(self, mirrored: bool, /) -> None: ... method setPrimitiveRestartEnabled (line 699) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 700) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DCore.Qt3DCore.... method setRestartIndexValue (line 701) | def setRestartIndexValue(self, index: int, /) -> None: ... method setVertexCount (line 702) | def setVertexCount(self, vertexCount: int, /) -> None: ... method setWidth (line 703) | def setWidth(self, width: float, /) -> None: ... method width (line 704) | def width(self, /) -> float: ... class QPlaneMesh (line 706) | class QPlaneMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 712) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method height (line 713) | def height(self, /) -> float: ... method meshResolution (line 714) | def meshResolution(self, /) -> PySide6.QtCore.QSize: ... method mirrored (line 715) | def mirrored(self, /) -> bool: ... method setFirstInstance (line 716) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 717) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setHeight (line 718) | def setHeight(self, height: float, /) -> None: ... method setIndexOffset (line 719) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 720) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setMeshResolution (line 721) | def setMeshResolution(self, resolution: PySide6.QtCore.QSize, /) -> ... method setMirrored (line 722) | def setMirrored(self, mirrored: bool, /) -> None: ... method setPrimitiveRestartEnabled (line 723) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 724) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DRender.Qt3DRen... method setRestartIndexValue (line 725) | def setRestartIndexValue(self, index: int, /) -> None: ... method setVertexCount (line 726) | def setVertexCount(self, vertexCount: int, /) -> None: ... method setWidth (line 727) | def setWidth(self, width: float, /) -> None: ... method width (line 728) | def width(self, /) -> float: ... class QSkyboxEntity (line 730) | class QSkyboxEntity(PySide6.Qt3DCore.Qt3DCore.QEntity): method __init__ (line 735) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method baseName (line 736) | def baseName(self, /) -> str: ... method extension (line 737) | def extension(self, /) -> str: ... method isGammaCorrectEnabled (line 738) | def isGammaCorrectEnabled(self, /) -> bool: ... method setBaseName (line 739) | def setBaseName(self, path: str, /) -> None: ... method setExtension (line 740) | def setExtension(self, extension: str, /) -> None: ... method setGammaCorrectEnabled (line 741) | def setGammaCorrectEnabled(self, enabled: bool, /) -> None: ... class QSphereGeometry (line 743) | class QSphereGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 749) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method generateTangents (line 750) | def generateTangents(self, /) -> bool: ... method indexAttribute (line 751) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method normalAttribute (line 752) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 753) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method radius (line 754) | def radius(self, /) -> float: ... method rings (line 755) | def rings(self, /) -> int: ... method setGenerateTangents (line 756) | def setGenerateTangents(self, gen: bool, /) -> None: ... method setRadius (line 757) | def setRadius(self, radius: float, /) -> None: ... method setRings (line 758) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 759) | def setSlices(self, slices: int, /) -> None: ... method slices (line 760) | def slices(self, /) -> int: ... method tangentAttribute (line 761) | def tangentAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribut... method texCoordAttribute (line 762) | def texCoordAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method updateIndices (line 763) | def updateIndices(self, /) -> None: ... method updateVertices (line 764) | def updateVertices(self, /) -> None: ... class QSphereGeometryView (line 766) | class QSphereGeometryView(PySide6.Qt3DCore.Qt3DCore.QGeometryView): method __init__ (line 772) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method generateTangents (line 773) | def generateTangents(self, /) -> bool: ... method radius (line 774) | def radius(self, /) -> float: ... method rings (line 775) | def rings(self, /) -> int: ... method setFirstInstance (line 776) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGenerateTangents (line 777) | def setGenerateTangents(self, gen: bool, /) -> None: ... method setGeometry (line 778) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 779) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setPrimitiveRestartEnabled (line 780) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 781) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DCore.Qt3DCore.... method setRadius (line 782) | def setRadius(self, radius: float, /) -> None: ... method setRestartIndexValue (line 783) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 784) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 785) | def setSlices(self, slices: int, /) -> None: ... method setVertexCount (line 786) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 787) | def slices(self, /) -> int: ... class QSphereMesh (line 789) | class QSphereMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 795) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method generateTangents (line 796) | def generateTangents(self, /) -> bool: ... method radius (line 797) | def radius(self, /) -> float: ... method rings (line 798) | def rings(self, /) -> int: ... method setFirstInstance (line 799) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGenerateTangents (line 800) | def setGenerateTangents(self, gen: bool, /) -> None: ... method setGeometry (line 801) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 802) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setPrimitiveRestartEnabled (line 803) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 804) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DRender.Qt3DRen... method setRadius (line 805) | def setRadius(self, radius: float, /) -> None: ... method setRestartIndexValue (line 806) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 807) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 808) | def setSlices(self, slices: int, /) -> None: ... method setVertexCount (line 809) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 810) | def slices(self, /) -> int: ... class QSpriteGrid (line 812) | class QSpriteGrid(Qt3DExtras.QAbstractSpriteSheet): method __init__ (line 816) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method columns (line 817) | def columns(self, /) -> int: ... method rows (line 818) | def rows(self, /) -> int: ... method setColumns (line 819) | def setColumns(self, columns: int, /) -> None: ... method setRows (line 820) | def setRows(self, rows: int, /) -> None: ... class QSpriteSheet (line 822) | class QSpriteSheet(Qt3DExtras.QAbstractSpriteSheet): method __init__ (line 825) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addSprite (line 827) | def addSprite(self, x: int, y: int, width: int, height: int, /) -> Q... method addSprite (line 829) | def addSprite(self, sprite: Qt3DExtras.QSpriteSheetItem, /) -> None:... method removeSprite (line 830) | def removeSprite(self, sprite: Qt3DExtras.QSpriteSheetItem, /) -> No... method setSprites (line 831) | def setSprites(self, sprites: typing.Iterable[Qt3DExtras.QSpriteShee... method sprites (line 832) | def sprites(self, /) -> List[Qt3DExtras.QSpriteSheetItem]: ... class QSpriteSheetItem (line 834) | class QSpriteSheetItem(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 840) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method height (line 841) | def height(self, /) -> int: ... method setHeight (line 842) | def setHeight(self, height: int, /) -> None: ... method setWidth (line 843) | def setWidth(self, width: int, /) -> None: ... method setX (line 844) | def setX(self, x: int, /) -> None: ... method setY (line 845) | def setY(self, y: int, /) -> None: ... method width (line 846) | def width(self, /) -> int: ... method x (line 847) | def x(self, /) -> int: ... method y (line 848) | def y(self, /) -> int: ... class QText2DEntity (line 850) | class QText2DEntity(PySide6.Qt3DCore.Qt3DCore.QEntity): method __init__ (line 857) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method alignment (line 858) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method color (line 859) | def color(self, /) -> PySide6.QtGui.QColor: ... method font (line 860) | def font(self, /) -> PySide6.QtGui.QFont: ... method height (line 861) | def height(self, /) -> float: ... method setAlignment (line 862) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /... method setColor (line 863) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.Q... method setFont (line 864) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[... method setHeight (line 865) | def setHeight(self, height: float, /) -> None: ... method setText (line 866) | def setText(self, text: str, /) -> None: ... method setWidth (line 867) | def setWidth(self, width: float, /) -> None: ... method text (line 868) | def text(self, /) -> str: ... method width (line 869) | def width(self, /) -> float: ... class QTextureMaterial (line 871) | class QTextureMaterial(PySide6.Qt3DRender.Qt3DRender.QMaterial): method __init__ (line 877) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method isAlphaBlendingEnabled (line 878) | def isAlphaBlendingEnabled(self, /) -> bool: ... method setAlphaBlendingEnabled (line 879) | def setAlphaBlendingEnabled(self, enabled: bool, /) -> None: ... method setTexture (line 880) | def setTexture(self, texture: PySide6.Qt3DRender.Qt3DRender.QAbstrac... method setTextureOffset (line 881) | def setTextureOffset(self, textureOffset: PySide6.QtGui.QVector2D, /... method setTextureTransform (line 882) | def setTextureTransform(self, matrix: PySide6.QtGui.QMatrix3x3, /) -... method texture (line 883) | def texture(self, /) -> PySide6.Qt3DRender.Qt3DRender.QAbstractTextu... method textureOffset (line 884) | def textureOffset(self, /) -> PySide6.QtGui.QVector2D: ... method textureTransform (line 885) | def textureTransform(self, /) -> PySide6.QtGui.QMatrix3x3: ... class QTorusGeometry (line 887) | class QTorusGeometry(PySide6.Qt3DCore.Qt3DCore.QGeometry): method __init__ (line 893) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method indexAttribute (line 894) | def indexAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute:... method minorRadius (line 895) | def minorRadius(self, /) -> float: ... method normalAttribute (line 896) | def normalAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribute... method positionAttribute (line 897) | def positionAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method radius (line 898) | def radius(self, /) -> float: ... method rings (line 899) | def rings(self, /) -> int: ... method setMinorRadius (line 900) | def setMinorRadius(self, minorRadius: float, /) -> None: ... method setRadius (line 901) | def setRadius(self, radius: float, /) -> None: ... method setRings (line 902) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 903) | def setSlices(self, slices: int, /) -> None: ... method slices (line 904) | def slices(self, /) -> int: ... method texCoordAttribute (line 905) | def texCoordAttribute(self, /) -> PySide6.Qt3DCore.Qt3DCore.QAttribu... method updateIndices (line 906) | def updateIndices(self, /) -> None: ... method updateVertices (line 907) | def updateVertices(self, /) -> None: ... class QTorusGeometryView (line 909) | class QTorusGeometryView(PySide6.Qt3DCore.Qt3DCore.QGeometryView): method __init__ (line 915) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method minorRadius (line 916) | def minorRadius(self, /) -> float: ... method radius (line 917) | def radius(self, /) -> float: ... method rings (line 918) | def rings(self, /) -> int: ... method setFirstInstance (line 919) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 920) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 921) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 922) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setMinorRadius (line 923) | def setMinorRadius(self, minorRadius: float, /) -> None: ... method setPrimitiveRestartEnabled (line 924) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 925) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DCore.Qt3DCore.... method setRadius (line 926) | def setRadius(self, radius: float, /) -> None: ... method setRestartIndexValue (line 927) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 928) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 929) | def setSlices(self, slices: int, /) -> None: ... method setVertexCount (line 930) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 931) | def slices(self, /) -> int: ... class QTorusMesh (line 933) | class QTorusMesh(PySide6.Qt3DRender.Qt3DRender.QGeometryRenderer): method __init__ (line 939) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method minorRadius (line 940) | def minorRadius(self, /) -> float: ... method radius (line 941) | def radius(self, /) -> float: ... method rings (line 942) | def rings(self, /) -> int: ... method setFirstInstance (line 943) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setGeometry (line 944) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexOffset (line 945) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 946) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setMinorRadius (line 947) | def setMinorRadius(self, minorRadius: float, /) -> None: ... method setPrimitiveRestartEnabled (line 948) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 949) | def setPrimitiveType(self, primitiveType: PySide6.Qt3DRender.Qt3DRen... method setRadius (line 950) | def setRadius(self, radius: float, /) -> None: ... method setRestartIndexValue (line 951) | def setRestartIndexValue(self, index: int, /) -> None: ... method setRings (line 952) | def setRings(self, rings: int, /) -> None: ... method setSlices (line 953) | def setSlices(self, slices: int, /) -> None: ... method setVertexCount (line 954) | def setVertexCount(self, vertexCount: int, /) -> None: ... method slices (line 955) | def slices(self, /) -> int: ... class Qt3DWindow (line 957) | class Qt3DWindow(PySide6.QtGui.QWindow): method __init__ (line 959) | def __init__(self, /, screen: PySide6.QtGui.QScreen | None = ..., ar... method activeFrameGraph (line 960) | def activeFrameGraph(self, /) -> PySide6.Qt3DRender.Qt3DRender.QFram... method camera (line 961) | def camera(self, /) -> PySide6.Qt3DRender.Qt3DRender.QCamera: ... method defaultFrameGraph (line 962) | def defaultFrameGraph(self, /) -> Qt3DExtras.QForwardRenderer: ... method event (line 963) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method registerAspect (line 965) | def registerAspect(self, name: str, /) -> None: ... method registerAspect (line 967) | def registerAspect(self, aspect: PySide6.Qt3DCore.Qt3DCore.QAbstract... method renderSettings (line 968) | def renderSettings(self, /) -> PySide6.Qt3DRender.Qt3DRender.QRender... method resizeEvent (line 969) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None... method setActiveFrameGraph (line 970) | def setActiveFrameGraph(self, activeFrameGraph: PySide6.Qt3DRender.Q... method setRootEntity (line 971) | def setRootEntity(self, root: PySide6.Qt3DCore.Qt3DCore.QEntity, /) ... method showEvent (line 972) | def showEvent(self, e: PySide6.QtGui.QShowEvent, /) -> None: ... method __init__ (line 973) | def __init__(self, *args, **kwargs) -> None: ... method setupWindowSurface (line 975) | def setupWindowSurface(window: PySide6.QtGui.QWindow, arg__2: PySide6.... FILE: pyside6/stubs/PySide6-stubs/Qt3DInput.pyi class QIntList (line 14) | class QIntList: method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method append (line 17) | def append(self, *args, **kwargs): ... method capacity (line 18) | def capacity(self, *args, **kwargs): ... method clear (line 19) | def clear(self, *args, **kwargs): ... method constData (line 20) | def constData(self, *args, **kwargs): ... method data (line 21) | def data(self, *args, **kwargs): ... method pop_back (line 22) | def pop_back(self, *args, **kwargs): ... method pop_front (line 23) | def pop_front(self, *args, **kwargs): ... method prepend (line 24) | def prepend(self, *args, **kwargs): ... method push_back (line 25) | def push_back(self, *args, **kwargs): ... method push_front (line 26) | def push_front(self, *args, **kwargs): ... method removeFirst (line 27) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 28) | def removeLast(self, *args, **kwargs): ... method reserve (line 29) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 30) | def __delitem__(self, other) -> None: ... method __getitem__ (line 31) | def __getitem__(self, index): ... method __len__ (line 32) | def __len__(self) -> int: ... method __setitem__ (line 33) | def __setitem__(self, index, object) -> None: ... class Qt3DInput (line 35) | class Qt3DInput(shiboken6.Object): class QAbstractActionInput (line 36) | class QAbstractActionInput(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 38) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... class QAbstractAxisInput (line 40) | class QAbstractAxisInput(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 43) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... method setSourceDevice (line 44) | def setSourceDevice(self, sourceDevice: Qt3DInput.QAbstractPhysicalD... method sourceDevice (line 45) | def sourceDevice(self, /) -> Qt3DInput.QAbstractPhysicalDevice: ... class QAbstractPhysicalDevice (line 47) | class QAbstractPhysicalDevice(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 49) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addAxisSetting (line 50) | def addAxisSetting(self, axisSetting: Qt3DInput.QAxisSetting, /) -> ... method axisCount (line 51) | def axisCount(self, /) -> int: ... method axisIdentifier (line 52) | def axisIdentifier(self, name: str, /) -> int: ... method axisNames (line 53) | def axisNames(self, /) -> List[str]: ... method axisSettings (line 54) | def axisSettings(self, /) -> List[Qt3DInput.QAxisSetting]: ... method buttonCount (line 55) | def buttonCount(self, /) -> int: ... method buttonIdentifier (line 56) | def buttonIdentifier(self, name: str, /) -> int: ... method buttonNames (line 57) | def buttonNames(self, /) -> List[str]: ... method removeAxisSetting (line 58) | def removeAxisSetting(self, axisSetting: Qt3DInput.QAxisSetting, /) ... class QAction (line 60) | class QAction(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 63) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addInput (line 64) | def addInput(self, input: Qt3DInput.QAbstractActionInput, /) -> None... method inputs (line 65) | def inputs(self, /) -> List[Qt3DInput.QAbstractActionInput]: ... method isActive (line 66) | def isActive(self, /) -> bool: ... method removeInput (line 67) | def removeInput(self, input: Qt3DInput.QAbstractActionInput, /) -> N... class QActionInput (line 69) | class QActionInput(Qt3DInput.QAbstractActionInput): method __init__ (line 73) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method buttons (line 74) | def buttons(self, /) -> List[int]: ... method setButtons (line 75) | def setButtons(self, buttons: typing.Iterable[int], /) -> None: ... method setSourceDevice (line 76) | def setSourceDevice(self, sourceDevice: Qt3DInput.QAbstractPhysicalD... method sourceDevice (line 77) | def sourceDevice(self, /) -> Qt3DInput.QAbstractPhysicalDevice: ... class QAnalogAxisInput (line 79) | class QAnalogAxisInput(Qt3DInput.QAbstractAxisInput): method __init__ (line 82) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method axis (line 83) | def axis(self, /) -> int: ... method setAxis (line 84) | def setAxis(self, axis: int, /) -> None: ... class QAxis (line 86) | class QAxis(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 89) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addInput (line 90) | def addInput(self, input: Qt3DInput.QAbstractAxisInput, /) -> None: ... method inputs (line 91) | def inputs(self, /) -> List[Qt3DInput.QAbstractAxisInput]: ... method removeInput (line 92) | def removeInput(self, input: Qt3DInput.QAbstractAxisInput, /) -> Non... method value (line 93) | def value(self, /) -> float: ... class QAxisAccumulator (line 95) | class QAxisAccumulator(PySide6.Qt3DCore.Qt3DCore.QComponent): class SourceAxisType (line 96) | class SourceAxisType(enum.Enum): method __init__ (line 105) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method scale (line 106) | def scale(self, /) -> float: ... method setScale (line 107) | def setScale(self, scale: float, /) -> None: ... method setSourceAxis (line 108) | def setSourceAxis(self, sourceAxis: Qt3DInput.QAxis, /) -> None: ... method setSourceAxisType (line 109) | def setSourceAxisType(self, sourceAxisType: Qt3DInput.QAxisAccumulat... method sourceAxis (line 110) | def sourceAxis(self, /) -> Qt3DInput.QAxis: ... method sourceAxisType (line 111) | def sourceAxisType(self, /) -> Qt3DInput.QAxisAccumulator.SourceAxis... method value (line 112) | def value(self, /) -> float: ... method velocity (line 113) | def velocity(self, /) -> float: ... class QAxisSetting (line 115) | class QAxisSetting(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 120) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method axes (line 121) | def axes(self, /) -> List[int]: ... method deadZoneRadius (line 122) | def deadZoneRadius(self, /) -> float: ... method isSmoothEnabled (line 123) | def isSmoothEnabled(self, /) -> bool: ... method setAxes (line 124) | def setAxes(self, axes: typing.Iterable[int], /) -> None: ... method setDeadZoneRadius (line 125) | def setDeadZoneRadius(self, deadZoneRadius: float, /) -> None: ... method setSmoothEnabled (line 126) | def setSmoothEnabled(self, enabled: bool, /) -> None: ... class QButtonAxisInput (line 128) | class QButtonAxisInput(Qt3DInput.QAbstractAxisInput): method __init__ (line 134) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method acceleration (line 135) | def acceleration(self, /) -> float: ... method buttons (line 136) | def buttons(self, /) -> List[int]: ... method deceleration (line 137) | def deceleration(self, /) -> float: ... method scale (line 138) | def scale(self, /) -> float: ... method setAcceleration (line 139) | def setAcceleration(self, acceleration: float, /) -> None: ... method setButtons (line 140) | def setButtons(self, buttons: typing.Iterable[int], /) -> None: ... method setDeceleration (line 141) | def setDeceleration(self, deceleration: float, /) -> None: ... method setScale (line 142) | def setScale(self, scale: float, /) -> None: ... class QInputAspect (line 144) | class QInputAspect(PySide6.Qt3DCore.Qt3DCore.QAbstractAspect): method __init__ (line 146) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... method availablePhysicalDevices (line 147) | def availablePhysicalDevices(self, /) -> List[str]: ... method createPhysicalDevice (line 148) | def createPhysicalDevice(self, name: str, /) -> Qt3DInput.QAbstractP... class QInputChord (line 150) | class QInputChord(Qt3DInput.QAbstractActionInput): method __init__ (line 153) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addChord (line 154) | def addChord(self, input: Qt3DInput.QAbstractActionInput, /) -> None... method chords (line 155) | def chords(self, /) -> List[Qt3DInput.QAbstractActionInput]: ... method removeChord (line 156) | def removeChord(self, input: Qt3DInput.QAbstractActionInput, /) -> N... method setTimeout (line 157) | def setTimeout(self, timeout: int, /) -> None: ... method timeout (line 158) | def timeout(self, /) -> int: ... class QInputSequence (line 160) | class QInputSequence(Qt3DInput.QAbstractActionInput): method __init__ (line 164) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addSequence (line 165) | def addSequence(self, input: Qt3DInput.QAbstractActionInput, /) -> N... method buttonInterval (line 166) | def buttonInterval(self, /) -> int: ... method removeSequence (line 167) | def removeSequence(self, input: Qt3DInput.QAbstractActionInput, /) -... method sequences (line 168) | def sequences(self, /) -> List[Qt3DInput.QAbstractActionInput]: ... method setButtonInterval (line 169) | def setButtonInterval(self, buttonInterval: int, /) -> None: ... method setTimeout (line 170) | def setTimeout(self, timeout: int, /) -> None: ... method timeout (line 171) | def timeout(self, /) -> int: ... class QInputSettings (line 173) | class QInputSettings(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 176) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method eventSource (line 177) | def eventSource(self, /) -> PySide6.QtCore.QObject: ... method setEventSource (line 178) | def setEventSource(self, eventSource: PySide6.QtCore.QObject, /) -> ... class QKeyEvent (line 180) | class QKeyEvent(PySide6.QtCore.QObject): method __init__ (line 183) | def __init__(self, type: PySide6.QtCore.QEvent.Type, key: int, modif... method __init__ (line 185) | def __init__(self, ke: PySide6.QtGui.QKeyEvent, /, *, key: int | Non... method count (line 186) | def count(self, /) -> int: ... method isAccepted (line 187) | def isAccepted(self, /) -> bool: ... method isAutoRepeat (line 188) | def isAutoRepeat(self, /) -> bool: ... method key (line 189) | def key(self, /) -> int: ... method matches (line 190) | def matches(self, key_: PySide6.QtGui.QKeySequence.StandardKey, /) -... method modifiers (line 191) | def modifiers(self, /) -> int: ... method nativeScanCode (line 192) | def nativeScanCode(self, /) -> int: ... method setAccepted (line 193) | def setAccepted(self, accepted: bool, /) -> None: ... method text (line 194) | def text(self, /) -> str: ... method type (line 195) | def type(self, /) -> PySide6.QtCore.QEvent.Type: ... class QKeyboardDevice (line 197) | class QKeyboardDevice(Qt3DInput.QAbstractPhysicalDevice): method __init__ (line 200) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method activeInput (line 201) | def activeInput(self, /) -> Qt3DInput.QKeyboardHandler: ... method axisCount (line 202) | def axisCount(self, /) -> int: ... method axisIdentifier (line 203) | def axisIdentifier(self, name: str, /) -> int: ... method axisNames (line 204) | def axisNames(self, /) -> List[str]: ... method buttonCount (line 205) | def buttonCount(self, /) -> int: ... method buttonIdentifier (line 206) | def buttonIdentifier(self, name: str, /) -> int: ... method buttonNames (line 207) | def buttonNames(self, /) -> List[str]: ... class QKeyboardHandler (line 209) | class QKeyboardHandler(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 253) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method focus (line 254) | def focus(self, /) -> bool: ... method setFocus (line 255) | def setFocus(self, focus: bool, /) -> None: ... method setSourceDevice (line 256) | def setSourceDevice(self, keyboardDevice: Qt3DInput.QKeyboardDevice,... method sourceDevice (line 257) | def sourceDevice(self, /) -> Qt3DInput.QKeyboardDevice: ... class QLogicalDevice (line 259) | class QLogicalDevice(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 261) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method actions (line 262) | def actions(self, /) -> List[Qt3DInput.QAction]: ... method addAction (line 263) | def addAction(self, action: Qt3DInput.QAction, /) -> None: ... method addAxis (line 264) | def addAxis(self, axis: Qt3DInput.QAxis, /) -> None: ... method axes (line 265) | def axes(self, /) -> List[Qt3DInput.QAxis]: ... method removeAction (line 266) | def removeAction(self, action: Qt3DInput.QAction, /) -> None: ... method removeAxis (line 267) | def removeAxis(self, axis: Qt3DInput.QAxis, /) -> None: ... class QMouseDevice (line 269) | class QMouseDevice(Qt3DInput.QAbstractPhysicalDevice): class Axis (line 270) | class Axis(enum.Enum): method __init__ (line 278) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method axisCount (line 279) | def axisCount(self, /) -> int: ... method axisIdentifier (line 280) | def axisIdentifier(self, name: str, /) -> int: ... method axisNames (line 281) | def axisNames(self, /) -> List[str]: ... method buttonCount (line 282) | def buttonCount(self, /) -> int: ... method buttonIdentifier (line 283) | def buttonIdentifier(self, name: str, /) -> int: ... method buttonNames (line 284) | def buttonNames(self, /) -> List[str]: ... method sensitivity (line 285) | def sensitivity(self, /) -> float: ... method setSensitivity (line 286) | def setSensitivity(self, value: float, /) -> None: ... method setUpdateAxesContinuously (line 287) | def setUpdateAxesContinuously(self, updateAxesContinuously: bool, /)... method updateAxesContinuously (line 288) | def updateAxesContinuously(self, /) -> bool: ... class QMouseEvent (line 290) | class QMouseEvent(PySide6.QtCore.QObject): class Buttons (line 291) | class Buttons(enum.Enum): class Modifiers (line 298) | class Modifiers(enum.Enum): method __init__ (line 306) | def __init__(self, e: PySide6.QtGui.QMouseEvent, /, *, x: int | None... method button (line 307) | def button(self, /) -> Qt3DInput.QMouseEvent.Buttons: ... method buttons (line 308) | def buttons(self, /) -> int: ... method isAccepted (line 309) | def isAccepted(self, /) -> bool: ... method modifiers (line 310) | def modifiers(self, /) -> Qt3DInput.QMouseEvent.Modifiers: ... method setAccepted (line 311) | def setAccepted(self, accepted: bool, /) -> None: ... method type (line 312) | def type(self, /) -> PySide6.QtCore.QEvent.Type: ... method wasHeld (line 313) | def wasHeld(self, /) -> bool: ... method x (line 314) | def x(self, /) -> int: ... method y (line 315) | def y(self, /) -> int: ... class QMouseHandler (line 317) | class QMouseHandler(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 330) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method containsMouse (line 331) | def containsMouse(self, /) -> bool: ... method setContainsMouse (line 332) | def setContainsMouse(self, contains: bool, /) -> None: ... method setSourceDevice (line 333) | def setSourceDevice(self, mouseDevice: Qt3DInput.QMouseDevice, /) ->... method sourceDevice (line 334) | def sourceDevice(self, /) -> Qt3DInput.QMouseDevice: ... class QWheelEvent (line 336) | class QWheelEvent(PySide6.QtCore.QObject): class Buttons (line 337) | class Buttons(enum.Enum): class Modifiers (line 344) | class Modifiers(enum.Enum): method __init__ (line 352) | def __init__(self, e: PySide6.QtGui.QWheelEvent, /, *, x: int | None... method angleDelta (line 353) | def angleDelta(self, /) -> PySide6.QtCore.QPoint: ... method buttons (line 354) | def buttons(self, /) -> int: ... method isAccepted (line 355) | def isAccepted(self, /) -> bool: ... method modifiers (line 356) | def modifiers(self, /) -> Qt3DInput.QWheelEvent.Modifiers: ... method setAccepted (line 357) | def setAccepted(self, accepted: bool, /) -> None: ... method type (line 358) | def type(self, /) -> PySide6.QtCore.QEvent.Type: ... method x (line 359) | def x(self, /) -> int: ... method y (line 360) | def y(self, /) -> int: ... method __init__ (line 361) | def __init__(self, *args, **kwargs) -> None: ... FILE: pyside6/stubs/PySide6-stubs/Qt3DLogic.pyi class QIntList (line 12) | class QIntList: method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method append (line 15) | def append(self, *args, **kwargs): ... method capacity (line 16) | def capacity(self, *args, **kwargs): ... method clear (line 17) | def clear(self, *args, **kwargs): ... method constData (line 18) | def constData(self, *args, **kwargs): ... method data (line 19) | def data(self, *args, **kwargs): ... method pop_back (line 20) | def pop_back(self, *args, **kwargs): ... method pop_front (line 21) | def pop_front(self, *args, **kwargs): ... method prepend (line 22) | def prepend(self, *args, **kwargs): ... method push_back (line 23) | def push_back(self, *args, **kwargs): ... method push_front (line 24) | def push_front(self, *args, **kwargs): ... method removeFirst (line 25) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 26) | def removeLast(self, *args, **kwargs): ... method reserve (line 27) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 28) | def __delitem__(self, other) -> None: ... method __getitem__ (line 29) | def __getitem__(self, index): ... method __len__ (line 30) | def __len__(self) -> int: ... method __setitem__ (line 31) | def __setitem__(self, index, object) -> None: ... class Qt3DLogic (line 33) | class Qt3DLogic(shiboken6.Object): class QFrameAction (line 34) | class QFrameAction(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 37) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QLogicAspect (line 39) | class QLogicAspect(PySide6.Qt3DCore.Qt3DCore.QAbstractAspect): method __init__ (line 41) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... method __init__ (line 42) | def __init__(self, *args, **kwargs) -> None: ... FILE: pyside6/stubs/PySide6-stubs/Qt3DRender.pyi class QIntList (line 15) | class QIntList: method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method append (line 18) | def append(self, *args, **kwargs): ... method capacity (line 19) | def capacity(self, *args, **kwargs): ... method clear (line 20) | def clear(self, *args, **kwargs): ... method constData (line 21) | def constData(self, *args, **kwargs): ... method data (line 22) | def data(self, *args, **kwargs): ... method pop_back (line 23) | def pop_back(self, *args, **kwargs): ... method pop_front (line 24) | def pop_front(self, *args, **kwargs): ... method prepend (line 25) | def prepend(self, *args, **kwargs): ... method push_back (line 26) | def push_back(self, *args, **kwargs): ... method push_front (line 27) | def push_front(self, *args, **kwargs): ... method removeFirst (line 28) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 29) | def removeLast(self, *args, **kwargs): ... method reserve (line 30) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 31) | def __delitem__(self, other) -> None: ... method __getitem__ (line 32) | def __getitem__(self, index): ... method __len__ (line 33) | def __len__(self) -> int: ... method __setitem__ (line 34) | def __setitem__(self, index, object) -> None: ... class Qt3DRender (line 36) | class Qt3DRender(shiboken6.Object): class API (line 37) | class API(enum.Enum): class PropertyReaderInterface (line 45) | class PropertyReaderInterface(shiboken6.Object): method __init__ (line 46) | def __init__(self, /) -> None: ... method readProperty (line 47) | def readProperty(self, v: Any, /) -> Any: ... class PropertyReaderInterfacePtr (line 49) | class PropertyReaderInterfacePtr(shiboken6.Object): method __init__ (line 51) | def __init__(self, pointee: Qt3DRender.PropertyReaderInterface, /) -... method __init__ (line 53) | def __init__(self, /) -> None: ... method data (line 54) | def data(self, /) -> Qt3DRender.PropertyReaderInterface: ... method reset (line 56) | def reset(self, t: Qt3DRender.PropertyReaderInterface, /) -> None: ... method reset (line 58) | def reset(self, /) -> None: ... method __bool__ (line 59) | def __bool__(self) -> bool: ... method __copy__ (line 60) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 61) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 62) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 63) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 64) | def __gt__(self, other: object) -> bool: ... method __le__ (line 65) | def __le__(self, other: object) -> bool: ... method __lt__ (line 66) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 67) | def __ne__(self, other: object) -> bool: ... class QAbstractLight (line 69) | class QAbstractLight(PySide6.Qt3DCore.Qt3DCore.QComponent): class Type (line 70) | class Type(enum.Enum): method __init__ (line 77) | def __init__(self, *args, addedToEntity: typing.Callable = ..., dest... method color (line 78) | def color(self, /) -> PySide6.QtGui.QColor: ... method intensity (line 79) | def intensity(self, /) -> float: ... method setColor (line 80) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.Q... method setIntensity (line 81) | def setIntensity(self, intensity: float, /) -> None: ... method type (line 82) | def type(self, /) -> Qt3DRender.QAbstractLight.Type: ... class QAbstractRayCaster (line 84) | class QAbstractRayCaster(PySide6.Qt3DCore.Qt3DCore.QComponent): class FilterMode (line 85) | class FilterMode(enum.Enum): class RunMode (line 91) | class RunMode(enum.Enum): method __init__ (line 98) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addLayer (line 99) | def addLayer(self, layer: Qt3DRender.QLayer, /) -> None: ... method filterMode (line 100) | def filterMode(self, /) -> Qt3DRender.QAbstractRayCaster.FilterMode:... method hits (line 101) | def hits(self, /) -> List[Qt3DRender.QRayCasterHit]: ... method layers (line 102) | def layers(self, /) -> List[Qt3DRender.QLayer]: ... method removeLayer (line 103) | def removeLayer(self, layer: Qt3DRender.QLayer, /) -> None: ... method runMode (line 104) | def runMode(self, /) -> Qt3DRender.QAbstractRayCaster.RunMode: ... method setFilterMode (line 105) | def setFilterMode(self, filterMode: Qt3DRender.QAbstractRayCaster.Fi... method setRunMode (line 106) | def setRunMode(self, runMode: Qt3DRender.QAbstractRayCaster.RunMode,... class QAbstractTexture (line 108) | class QAbstractTexture(PySide6.Qt3DCore.Qt3DCore.QNode): class ComparisonFunction (line 109) | class ComparisonFunction(enum.Enum): class ComparisonMode (line 119) | class ComparisonMode(enum.Enum): class CubeMapFace (line 123) | class CubeMapFace(enum.Enum): class Filter (line 132) | class Filter(enum.Enum): class HandleType (line 140) | class HandleType(enum.Enum): class Status (line 145) | class Status(enum.Enum): class Target (line 151) | class Target(enum.Enum): class TextureFormat (line 165) | class TextureFormat(enum.Enum): method __init__ (line 283) | def __init__(self, target: Qt3DRender.QAbstractTexture.Target, /, pa... method __init__ (line 285) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addTextureImage (line 286) | def addTextureImage(self, textureImage: Qt3DRender.QAbstractTextureI... method comparisonFunction (line 287) | def comparisonFunction(self, /) -> Qt3DRender.QAbstractTexture.Compa... method comparisonMode (line 288) | def comparisonMode(self, /) -> Qt3DRender.QAbstractTexture.Compariso... method depth (line 289) | def depth(self, /) -> int: ... method format (line 290) | def format(self, /) -> Qt3DRender.QAbstractTexture.TextureFormat: ... method generateMipMaps (line 291) | def generateMipMaps(self, /) -> bool: ... method handle (line 292) | def handle(self, /) -> Any: ... method handleType (line 293) | def handleType(self, /) -> Qt3DRender.QAbstractTexture.HandleType: ... method height (line 294) | def height(self, /) -> int: ... method layers (line 295) | def layers(self, /) -> int: ... method magnificationFilter (line 296) | def magnificationFilter(self, /) -> Qt3DRender.QAbstractTexture.Filt... method maximumAnisotropy (line 297) | def maximumAnisotropy(self, /) -> float: ... method minificationFilter (line 298) | def minificationFilter(self, /) -> Qt3DRender.QAbstractTexture.Filte... method mipLevels (line 299) | def mipLevels(self, /) -> int: ... method removeTextureImage (line 300) | def removeTextureImage(self, textureImage: Qt3DRender.QAbstractTextu... method samples (line 301) | def samples(self, /) -> int: ... method setComparisonFunction (line 302) | def setComparisonFunction(self, function: Qt3DRender.QAbstractTextur... method setComparisonMode (line 303) | def setComparisonMode(self, mode: Qt3DRender.QAbstractTexture.Compar... method setDepth (line 304) | def setDepth(self, depth: int, /) -> None: ... method setFormat (line 305) | def setFormat(self, format: Qt3DRender.QAbstractTexture.TextureForma... method setGenerateMipMaps (line 306) | def setGenerateMipMaps(self, gen: bool, /) -> None: ... method setHandle (line 307) | def setHandle(self, handle: Any, /) -> None: ... method setHandleType (line 308) | def setHandleType(self, type: Qt3DRender.QAbstractTexture.HandleType... method setHeight (line 309) | def setHeight(self, height: int, /) -> None: ... method setLayers (line 310) | def setLayers(self, layers: int, /) -> None: ... method setMagnificationFilter (line 311) | def setMagnificationFilter(self, f: Qt3DRender.QAbstractTexture.Filt... method setMaximumAnisotropy (line 312) | def setMaximumAnisotropy(self, anisotropy: float, /) -> None: ... method setMinificationFilter (line 313) | def setMinificationFilter(self, f: Qt3DRender.QAbstractTexture.Filte... method setMipLevels (line 314) | def setMipLevels(self, mipLevels: int, /) -> None: ... method setSamples (line 315) | def setSamples(self, samples: int, /) -> None: ... method setSize (line 316) | def setSize(self, width: int, /, height: int = ..., depth: int = ...... method setStatus (line 317) | def setStatus(self, status: Qt3DRender.QAbstractTexture.Status, /) -... method setWidth (line 318) | def setWidth(self, width: int, /) -> None: ... method setWrapMode (line 319) | def setWrapMode(self, wrapMode: Qt3DRender.QTextureWrapMode, /) -> N... method status (line 320) | def status(self, /) -> Qt3DRender.QAbstractTexture.Status: ... method target (line 321) | def target(self, /) -> Qt3DRender.QAbstractTexture.Target: ... method textureImages (line 322) | def textureImages(self, /) -> List[Qt3DRender.QAbstractTextureImage]... method updateData (line 323) | def updateData(self, update: Qt3DRender.QTextureDataUpdate, /) -> No... method width (line 324) | def width(self, /) -> int: ... method wrapMode (line 325) | def wrapMode(self, /) -> Qt3DRender.QTextureWrapMode: ... class QAbstractTextureImage (line 327) | class QAbstractTextureImage(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 332) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method dataGenerator (line 333) | def dataGenerator(self, /) -> Qt3DRender.QTextureImageDataGeneratorP... method face (line 334) | def face(self, /) -> Qt3DRender.QAbstractTexture.CubeMapFace: ... method layer (line 335) | def layer(self, /) -> int: ... method mipLevel (line 336) | def mipLevel(self, /) -> int: ... method notifyDataGeneratorChanged (line 337) | def notifyDataGeneratorChanged(self, /) -> None: ... method setFace (line 338) | def setFace(self, face: Qt3DRender.QAbstractTexture.CubeMapFace, /) ... method setLayer (line 339) | def setLayer(self, layer: int, /) -> None: ... method setMipLevel (line 340) | def setMipLevel(self, level: int, /) -> None: ... class QAlphaCoverage (line 342) | class QAlphaCoverage(Qt3DRender.QRenderState): method __init__ (line 344) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QAlphaTest (line 346) | class QAlphaTest(Qt3DRender.QRenderState): class AlphaFunction (line 347) | class AlphaFunction(enum.Enum): method __init__ (line 359) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method alphaFunction (line 360) | def alphaFunction(self, /) -> Qt3DRender.QAlphaTest.AlphaFunction: ... method referenceValue (line 361) | def referenceValue(self, /) -> float: ... method setAlphaFunction (line 362) | def setAlphaFunction(self, alphaFunction: Qt3DRender.QAlphaTest.Alph... method setReferenceValue (line 363) | def setReferenceValue(self, referenceValue: float, /) -> None: ... class QBlendEquation (line 365) | class QBlendEquation(Qt3DRender.QRenderState): class BlendFunction (line 366) | class BlendFunction(enum.Enum): method __init__ (line 374) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method blendFunction (line 375) | def blendFunction(self, /) -> Qt3DRender.QBlendEquation.BlendFunctio... method setBlendFunction (line 376) | def setBlendFunction(self, blendFunction: Qt3DRender.QBlendEquation.... class QBlendEquationArguments (line 378) | class QBlendEquationArguments(Qt3DRender.QRenderState): class Blending (line 379) | class Blending(enum.Enum): method __init__ (line 408) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method bufferIndex (line 409) | def bufferIndex(self, /) -> int: ... method destinationAlpha (line 410) | def destinationAlpha(self, /) -> Qt3DRender.QBlendEquationArguments.... method destinationRgb (line 411) | def destinationRgb(self, /) -> Qt3DRender.QBlendEquationArguments.Bl... method setBufferIndex (line 412) | def setBufferIndex(self, index: int, /) -> None: ... method setDestinationAlpha (line 413) | def setDestinationAlpha(self, destinationAlpha: Qt3DRender.QBlendEqu... method setDestinationRgb (line 414) | def setDestinationRgb(self, destinationRgb: Qt3DRender.QBlendEquatio... method setDestinationRgba (line 415) | def setDestinationRgba(self, destinationRgba: Qt3DRender.QBlendEquat... method setSourceAlpha (line 416) | def setSourceAlpha(self, sourceAlpha: Qt3DRender.QBlendEquationArgum... method setSourceRgb (line 417) | def setSourceRgb(self, sourceRgb: Qt3DRender.QBlendEquationArguments... method setSourceRgba (line 418) | def setSourceRgba(self, sourceRgba: Qt3DRender.QBlendEquationArgumen... method sourceAlpha (line 419) | def sourceAlpha(self, /) -> Qt3DRender.QBlendEquationArguments.Blend... method sourceRgb (line 420) | def sourceRgb(self, /) -> Qt3DRender.QBlendEquationArguments.Blendin... class QBlitFramebuffer (line 422) | class QBlitFramebuffer(Qt3DRender.QFrameGraphNode): class InterpolationMethod (line 423) | class InterpolationMethod(enum.Enum): method __init__ (line 434) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method destination (line 435) | def destination(self, /) -> Qt3DRender.QRenderTarget: ... method destinationAttachmentPoint (line 436) | def destinationAttachmentPoint(self, /) -> Qt3DRender.QRenderTargetO... method destinationRect (line 437) | def destinationRect(self, /) -> PySide6.QtCore.QRectF: ... method interpolationMethod (line 438) | def interpolationMethod(self, /) -> Qt3DRender.QBlitFramebuffer.Inte... method setDestination (line 439) | def setDestination(self, destination: Qt3DRender.QRenderTarget, /) -... method setDestinationAttachmentPoint (line 440) | def setDestinationAttachmentPoint(self, destinationAttachmentPoint: ... method setDestinationRect (line 441) | def setDestinationRect(self, destinationRect: PySide6.QtCore.QRectF ... method setInterpolationMethod (line 442) | def setInterpolationMethod(self, interpolationMethod: Qt3DRender.QBl... method setSource (line 443) | def setSource(self, source: Qt3DRender.QRenderTarget, /) -> None: ... method setSourceAttachmentPoint (line 444) | def setSourceAttachmentPoint(self, sourceAttachmentPoint: Qt3DRender... method setSourceRect (line 445) | def setSourceRect(self, sourceRect: PySide6.QtCore.QRectF | PySide6.... method source (line 446) | def source(self, /) -> Qt3DRender.QRenderTarget: ... method sourceAttachmentPoint (line 447) | def sourceAttachmentPoint(self, /) -> Qt3DRender.QRenderTargetOutput... method sourceRect (line 448) | def sourceRect(self, /) -> PySide6.QtCore.QRectF: ... class QBufferCapture (line 450) | class QBufferCapture(Qt3DRender.QFrameGraphNode): method __init__ (line 452) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QCamera (line 454) | class QCamera(PySide6.Qt3DCore.Qt3DCore.QEntity): class CameraTranslationOption (line 455) | class CameraTranslationOption(enum.Enum): method __init__ (line 475) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method aspectRatio (line 476) | def aspectRatio(self, /) -> float: ... method bottom (line 477) | def bottom(self, /) -> float: ... method exposure (line 478) | def exposure(self, /) -> float: ... method farPlane (line 479) | def farPlane(self, /) -> float: ... method fieldOfView (line 480) | def fieldOfView(self, /) -> float: ... method left (line 481) | def left(self, /) -> float: ... method lens (line 482) | def lens(self, /) -> Qt3DRender.QCameraLens: ... method nearPlane (line 483) | def nearPlane(self, /) -> float: ... method pan (line 485) | def pan(self, angle: float, axis: PySide6.QtGui.QVector3D, /) -> Non... method pan (line 487) | def pan(self, angle: float, /) -> None: ... method panAboutViewCenter (line 489) | def panAboutViewCenter(self, angle: float, axis: PySide6.QtGui.QVect... method panAboutViewCenter (line 491) | def panAboutViewCenter(self, angle: float, /) -> None: ... method panRotation (line 492) | def panRotation(self, angle: float, /) -> PySide6.QtGui.QQuaternion:... method position (line 493) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method projectionMatrix (line 494) | def projectionMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method projectionType (line 495) | def projectionType(self, /) -> Qt3DRender.QCameraLens.ProjectionType... method right (line 496) | def right(self, /) -> float: ... method roll (line 497) | def roll(self, angle: float, /) -> None: ... method rollAboutViewCenter (line 498) | def rollAboutViewCenter(self, angle: float, /) -> None: ... method rollRotation (line 499) | def rollRotation(self, angle: float, /) -> PySide6.QtGui.QQuaternion... method rotate (line 500) | def rotate(self, q: PySide6.QtGui.QQuaternion, /) -> None: ... method rotateAboutViewCenter (line 501) | def rotateAboutViewCenter(self, q: PySide6.QtGui.QQuaternion, /) -> ... method rotation (line 502) | def rotation(self, angle: float, axis: PySide6.QtGui.QVector3D, /) -... method setAspectRatio (line 503) | def setAspectRatio(self, aspectRatio: float, /) -> None: ... method setBottom (line 504) | def setBottom(self, bottom: float, /) -> None: ... method setExposure (line 505) | def setExposure(self, exposure: float, /) -> None: ... method setFarPlane (line 506) | def setFarPlane(self, farPlane: float, /) -> None: ... method setFieldOfView (line 507) | def setFieldOfView(self, fieldOfView: float, /) -> None: ... method setLeft (line 508) | def setLeft(self, left: float, /) -> None: ... method setNearPlane (line 509) | def setNearPlane(self, nearPlane: float, /) -> None: ... method setPosition (line 510) | def setPosition(self, position: PySide6.QtGui.QVector3D, /) -> None:... method setProjectionMatrix (line 511) | def setProjectionMatrix(self, projectionMatrix: PySide6.QtGui.QMatri... method setProjectionType (line 512) | def setProjectionType(self, type: Qt3DRender.QCameraLens.ProjectionT... method setRight (line 513) | def setRight(self, right: float, /) -> None: ... method setTop (line 514) | def setTop(self, top: float, /) -> None: ... method setUpVector (line 515) | def setUpVector(self, upVector: PySide6.QtGui.QVector3D, /) -> None:... method setViewCenter (line 516) | def setViewCenter(self, viewCenter: PySide6.QtGui.QVector3D, /) -> N... method tilt (line 517) | def tilt(self, angle: float, /) -> None: ... method tiltAboutViewCenter (line 518) | def tiltAboutViewCenter(self, angle: float, /) -> None: ... method tiltRotation (line 519) | def tiltRotation(self, angle: float, /) -> PySide6.QtGui.QQuaternion... method top (line 520) | def top(self, /) -> float: ... method transform (line 521) | def transform(self, /) -> PySide6.Qt3DCore.Qt3DCore.QTransform: ... method translate (line 522) | def translate(self, vLocal: PySide6.QtGui.QVector3D, /, option: Qt3D... method translateWorld (line 523) | def translateWorld(self, vWorld: PySide6.QtGui.QVector3D, /, option:... method upVector (line 524) | def upVector(self, /) -> PySide6.QtGui.QVector3D: ... method viewAll (line 525) | def viewAll(self, /) -> None: ... method viewCenter (line 526) | def viewCenter(self, /) -> PySide6.QtGui.QVector3D: ... method viewEntity (line 527) | def viewEntity(self, entity: PySide6.Qt3DCore.Qt3DCore.QEntity, /) -... method viewMatrix (line 528) | def viewMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method viewSphere (line 529) | def viewSphere(self, center: PySide6.QtGui.QVector3D, radius: float,... method viewVector (line 530) | def viewVector(self, /) -> PySide6.QtGui.QVector3D: ... class QCameraLens (line 532) | class QCameraLens(PySide6.Qt3DCore.Qt3DCore.QComponent): class ProjectionType (line 533) | class ProjectionType(enum.Enum): method __init__ (line 551) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method aspectRatio (line 552) | def aspectRatio(self, /) -> float: ... method bottom (line 553) | def bottom(self, /) -> float: ... method exposure (line 554) | def exposure(self, /) -> float: ... method farPlane (line 555) | def farPlane(self, /) -> float: ... method fieldOfView (line 556) | def fieldOfView(self, /) -> float: ... method left (line 557) | def left(self, /) -> float: ... method nearPlane (line 558) | def nearPlane(self, /) -> float: ... method projectionMatrix (line 559) | def projectionMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method projectionType (line 560) | def projectionType(self, /) -> Qt3DRender.QCameraLens.ProjectionType... method right (line 561) | def right(self, /) -> float: ... method setAspectRatio (line 562) | def setAspectRatio(self, aspectRatio: float, /) -> None: ... method setBottom (line 563) | def setBottom(self, bottom: float, /) -> None: ... method setExposure (line 564) | def setExposure(self, exposure: float, /) -> None: ... method setFarPlane (line 565) | def setFarPlane(self, farPlane: float, /) -> None: ... method setFieldOfView (line 566) | def setFieldOfView(self, fieldOfView: float, /) -> None: ... method setFrustumProjection (line 567) | def setFrustumProjection(self, left: float, right: float, bottom: fl... method setLeft (line 568) | def setLeft(self, left: float, /) -> None: ... method setNearPlane (line 569) | def setNearPlane(self, nearPlane: float, /) -> None: ... method setOrthographicProjection (line 570) | def setOrthographicProjection(self, left: float, right: float, botto... method setPerspectiveProjection (line 571) | def setPerspectiveProjection(self, fieldOfView: float, aspect: float... method setProjectionMatrix (line 572) | def setProjectionMatrix(self, projectionMatrix: PySide6.QtGui.QMatri... method setProjectionType (line 573) | def setProjectionType(self, projectionType: Qt3DRender.QCameraLens.P... method setRight (line 574) | def setRight(self, right: float, /) -> None: ... method setTop (line 575) | def setTop(self, top: float, /) -> None: ... method top (line 576) | def top(self, /) -> float: ... method viewAll (line 577) | def viewAll(self, cameraId: PySide6.Qt3DCore.Qt3DCore.QNodeId, /) ->... method viewEntity (line 578) | def viewEntity(self, entityId: PySide6.Qt3DCore.Qt3DCore.QNodeId, ca... class QCameraSelector (line 580) | class QCameraSelector(Qt3DRender.QFrameGraphNode): method __init__ (line 583) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method camera (line 584) | def camera(self, /) -> PySide6.Qt3DCore.Qt3DCore.QEntity: ... method setCamera (line 585) | def setCamera(self, camera: PySide6.Qt3DCore.Qt3DCore.QEntity, /) ->... class QClearBuffers (line 587) | class QClearBuffers(Qt3DRender.QFrameGraphNode): class BufferType (line 588) | class BufferType(enum.Flag): method __init__ (line 603) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method buffers (line 604) | def buffers(self, /) -> Qt3DRender.QClearBuffers.BufferType: ... method clearColor (line 605) | def clearColor(self, /) -> PySide6.QtGui.QColor: ... method clearDepthValue (line 606) | def clearDepthValue(self, /) -> float: ... method clearStencilValue (line 607) | def clearStencilValue(self, /) -> int: ... method colorBuffer (line 608) | def colorBuffer(self, /) -> Qt3DRender.QRenderTargetOutput: ... method setBuffers (line 609) | def setBuffers(self, buffers: Qt3DRender.QClearBuffers.BufferType, /... method setClearColor (line 610) | def setClearColor(self, color: Union[PySide6.QtGui.QColor, str, PySi... method setClearDepthValue (line 611) | def setClearDepthValue(self, clearDepthValue: float, /) -> None: ... method setClearStencilValue (line 612) | def setClearStencilValue(self, clearStencilValue: int, /) -> None: ... method setColorBuffer (line 613) | def setColorBuffer(self, buffer: Qt3DRender.QRenderTargetOutput, /) ... class QClipPlane (line 615) | class QClipPlane(Qt3DRender.QRenderState): method __init__ (line 620) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method distance (line 621) | def distance(self, /) -> float: ... method normal (line 622) | def normal(self, /) -> PySide6.QtGui.QVector3D: ... method planeIndex (line 623) | def planeIndex(self, /) -> int: ... method setDistance (line 624) | def setDistance(self, arg__1: float, /) -> None: ... method setNormal (line 625) | def setNormal(self, arg__1: PySide6.QtGui.QVector3D, /) -> None: ... method setPlaneIndex (line 626) | def setPlaneIndex(self, arg__1: int, /) -> None: ... class QColorMask (line 628) | class QColorMask(Qt3DRender.QRenderState): method __init__ (line 634) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method isAlphaMasked (line 635) | def isAlphaMasked(self, /) -> bool: ... method isBlueMasked (line 636) | def isBlueMasked(self, /) -> bool: ... method isGreenMasked (line 637) | def isGreenMasked(self, /) -> bool: ... method isRedMasked (line 638) | def isRedMasked(self, /) -> bool: ... method setAlphaMasked (line 639) | def setAlphaMasked(self, alphaMasked: bool, /) -> None: ... method setBlueMasked (line 640) | def setBlueMasked(self, blueMasked: bool, /) -> None: ... method setGreenMasked (line 641) | def setGreenMasked(self, greenMasked: bool, /) -> None: ... method setRedMasked (line 642) | def setRedMasked(self, redMasked: bool, /) -> None: ... class QComputeCommand (line 644) | class QComputeCommand(PySide6.Qt3DCore.Qt3DCore.QComponent): class RunType (line 645) | class RunType(enum.Enum): method __init__ (line 653) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method runType (line 654) | def runType(self, /) -> Qt3DRender.QComputeCommand.RunType: ... method setRunType (line 655) | def setRunType(self, runType: Qt3DRender.QComputeCommand.RunType, /)... method setWorkGroupX (line 656) | def setWorkGroupX(self, workGroupX: int, /) -> None: ... method setWorkGroupY (line 657) | def setWorkGroupY(self, workGroupY: int, /) -> None: ... method setWorkGroupZ (line 658) | def setWorkGroupZ(self, workGroupZ: int, /) -> None: ... method trigger (line 660) | def trigger(self, workGroupX: int, workGroupY: int, workGroupZ: int,... method trigger (line 662) | def trigger(self, /, frameCount: int = ...) -> None: ... method workGroupX (line 663) | def workGroupX(self, /) -> int: ... method workGroupY (line 664) | def workGroupY(self, /) -> int: ... method workGroupZ (line 665) | def workGroupZ(self, /) -> int: ... class QCullFace (line 667) | class QCullFace(Qt3DRender.QRenderState): class CullingMode (line 668) | class CullingMode(enum.Enum): method __init__ (line 675) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method mode (line 676) | def mode(self, /) -> Qt3DRender.QCullFace.CullingMode: ... method setMode (line 677) | def setMode(self, mode: Qt3DRender.QCullFace.CullingMode, /) -> None... class QDebugOverlay (line 679) | class QDebugOverlay(Qt3DRender.QFrameGraphNode): method __init__ (line 681) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QDepthRange (line 683) | class QDepthRange(Qt3DRender.QRenderState): method __init__ (line 687) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method farValue (line 688) | def farValue(self, /) -> float: ... method nearValue (line 689) | def nearValue(self, /) -> float: ... method setFarValue (line 690) | def setFarValue(self, value: float, /) -> None: ... method setNearValue (line 691) | def setNearValue(self, value: float, /) -> None: ... class QDepthTest (line 693) | class QDepthTest(Qt3DRender.QRenderState): class DepthFunction (line 694) | class DepthFunction(enum.Enum): method __init__ (line 705) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method depthFunction (line 706) | def depthFunction(self, /) -> Qt3DRender.QDepthTest.DepthFunction: ... method setDepthFunction (line 707) | def setDepthFunction(self, depthFunction: Qt3DRender.QDepthTest.Dept... class QDirectionalLight (line 709) | class QDirectionalLight(Qt3DRender.QAbstractLight): method __init__ (line 712) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setWorldDirection (line 713) | def setWorldDirection(self, worldDirection: PySide6.QtGui.QVector3D,... method worldDirection (line 714) | def worldDirection(self, /) -> PySide6.QtGui.QVector3D: ... class QDispatchCompute (line 716) | class QDispatchCompute(Qt3DRender.QFrameGraphNode): method __init__ (line 721) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setWorkGroupX (line 722) | def setWorkGroupX(self, workGroupX: int, /) -> None: ... method setWorkGroupY (line 723) | def setWorkGroupY(self, workGroupY: int, /) -> None: ... method setWorkGroupZ (line 724) | def setWorkGroupZ(self, workGroupZ: int, /) -> None: ... method workGroupX (line 725) | def workGroupX(self, /) -> int: ... method workGroupY (line 726) | def workGroupY(self, /) -> int: ... method workGroupZ (line 727) | def workGroupZ(self, /) -> int: ... class QDithering (line 729) | class QDithering(Qt3DRender.QRenderState): method __init__ (line 731) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QEffect (line 733) | class QEffect(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 735) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addParameter (line 736) | def addParameter(self, parameter: Qt3DRender.QParameter, /) -> None:... method addTechnique (line 737) | def addTechnique(self, t: Qt3DRender.QTechnique, /) -> None: ... method parameters (line 738) | def parameters(self, /) -> List[Qt3DRender.QParameter]: ... method removeParameter (line 739) | def removeParameter(self, parameter: Qt3DRender.QParameter, /) -> No... method removeTechnique (line 740) | def removeTechnique(self, t: Qt3DRender.QTechnique, /) -> None: ... method techniques (line 741) | def techniques(self, /) -> List[Qt3DRender.QTechnique]: ... class QEnvironmentLight (line 743) | class QEnvironmentLight(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 747) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method irradiance (line 748) | def irradiance(self, /) -> Qt3DRender.QAbstractTexture: ... method setIrradiance (line 749) | def setIrradiance(self, irradiance: Qt3DRender.QAbstractTexture, /) ... method setSpecular (line 750) | def setSpecular(self, specular: Qt3DRender.QAbstractTexture, /) -> N... method specular (line 751) | def specular(self, /) -> Qt3DRender.QAbstractTexture: ... class QFilterKey (line 753) | class QFilterKey(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 757) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method name (line 758) | def name(self, /) -> str: ... method setName (line 759) | def setName(self, customType: str, /) -> None: ... method setValue (line 760) | def setValue(self, value: Any, /) -> None: ... method value (line 761) | def value(self, /) -> Any: ... class QFrameGraphNode (line 763) | class QFrameGraphNode(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 765) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method parentFrameGraphNode (line 766) | def parentFrameGraphNode(self, /) -> Qt3DRender.QFrameGraphNode: ... class QFrontFace (line 768) | class QFrontFace(Qt3DRender.QRenderState): class WindingDirection (line 769) | class WindingDirection(enum.Enum): method __init__ (line 774) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method direction (line 775) | def direction(self, /) -> Qt3DRender.QFrontFace.WindingDirection: ... method setDirection (line 776) | def setDirection(self, direction: Qt3DRender.QFrontFace.WindingDirec... class QFrustumCulling (line 778) | class QFrustumCulling(Qt3DRender.QFrameGraphNode): method __init__ (line 780) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QGeometryRenderer (line 782) | class QGeometryRenderer(PySide6.Qt3DCore.Qt3DCore.QBoundingVolume): class PrimitiveType (line 783) | class PrimitiveType(enum.Enum): method __init__ (line 809) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method firstInstance (line 810) | def firstInstance(self, /) -> int: ... method firstVertex (line 811) | def firstVertex(self, /) -> int: ... method geometry (line 812) | def geometry(self, /) -> PySide6.Qt3DCore.Qt3DCore.QGeometry: ... method indexBufferByteOffset (line 813) | def indexBufferByteOffset(self, /) -> int: ... method indexOffset (line 814) | def indexOffset(self, /) -> int: ... method instanceCount (line 815) | def instanceCount(self, /) -> int: ... method primitiveRestartEnabled (line 816) | def primitiveRestartEnabled(self, /) -> bool: ... method primitiveType (line 817) | def primitiveType(self, /) -> Qt3DRender.QGeometryRenderer.Primitive... method restartIndexValue (line 818) | def restartIndexValue(self, /) -> int: ... method setFirstInstance (line 819) | def setFirstInstance(self, firstInstance: int, /) -> None: ... method setFirstVertex (line 820) | def setFirstVertex(self, firstVertex: int, /) -> None: ... method setGeometry (line 821) | def setGeometry(self, geometry: PySide6.Qt3DCore.Qt3DCore.QGeometry,... method setIndexBufferByteOffset (line 822) | def setIndexBufferByteOffset(self, offset: int, /) -> None: ... method setIndexOffset (line 823) | def setIndexOffset(self, indexOffset: int, /) -> None: ... method setInstanceCount (line 824) | def setInstanceCount(self, instanceCount: int, /) -> None: ... method setPrimitiveRestartEnabled (line 825) | def setPrimitiveRestartEnabled(self, enabled: bool, /) -> None: ... method setPrimitiveType (line 826) | def setPrimitiveType(self, primitiveType: Qt3DRender.QGeometryRender... method setRestartIndexValue (line 827) | def setRestartIndexValue(self, index: int, /) -> None: ... method setSortIndex (line 828) | def setSortIndex(self, sortIndex: float, /) -> None: ... method setVertexCount (line 829) | def setVertexCount(self, vertexCount: int, /) -> None: ... method setVerticesPerPatch (line 830) | def setVerticesPerPatch(self, verticesPerPatch: int, /) -> None: ... method sortIndex (line 831) | def sortIndex(self, /) -> float: ... method vertexCount (line 832) | def vertexCount(self, /) -> int: ... method verticesPerPatch (line 833) | def verticesPerPatch(self, /) -> int: ... class QGraphicsApiFilter (line 835) | class QGraphicsApiFilter(PySide6.QtCore.QObject): class Api (line 836) | class Api(enum.Enum): class OpenGLProfile (line 843) | class OpenGLProfile(enum.Enum): method __init__ (line 855) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method api (line 856) | def api(self, /) -> Qt3DRender.QGraphicsApiFilter.Api: ... method extensions (line 857) | def extensions(self, /) -> List[str]: ... method majorVersion (line 858) | def majorVersion(self, /) -> int: ... method minorVersion (line 859) | def minorVersion(self, /) -> int: ... method profile (line 860) | def profile(self, /) -> Qt3DRender.QGraphicsApiFilter.OpenGLProfile:... method setApi (line 861) | def setApi(self, api: Qt3DRender.QGraphicsApiFilter.Api, /) -> None:... method setExtensions (line 862) | def setExtensions(self, extensions: typing.Iterable[str], /) -> None... method setMajorVersion (line 863) | def setMajorVersion(self, majorVersion: int, /) -> None: ... method setMinorVersion (line 864) | def setMinorVersion(self, minorVersion: int, /) -> None: ... method setProfile (line 865) | def setProfile(self, profile: Qt3DRender.QGraphicsApiFilter.OpenGLPr... method setVendor (line 866) | def setVendor(self, vendor: str, /) -> None: ... method vendor (line 867) | def vendor(self, /) -> str: ... method __eq__ (line 868) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 869) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 870) | def __gt__(self, other: object) -> bool: ... method __le__ (line 871) | def __le__(self, other: object) -> bool: ... method __lt__ (line 872) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 873) | def __ne__(self, other: object) -> bool: ... class QLayer (line 875) | class QLayer(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 878) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method recursive (line 879) | def recursive(self, /) -> bool: ... method setRecursive (line 880) | def setRecursive(self, recursive: bool, /) -> None: ... class QLayerFilter (line 882) | class QLayerFilter(Qt3DRender.QFrameGraphNode): class FilterMode (line 883) | class FilterMode(enum.Enum): method __init__ (line 890) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addLayer (line 891) | def addLayer(self, layer: Qt3DRender.QLayer, /) -> None: ... method filterMode (line 892) | def filterMode(self, /) -> Qt3DRender.QLayerFilter.FilterMode: ... method layers (line 893) | def layers(self, /) -> List[Qt3DRender.QLayer]: ... method removeLayer (line 894) | def removeLayer(self, layer: Qt3DRender.QLayer, /) -> None: ... method setFilterMode (line 895) | def setFilterMode(self, filterMode: Qt3DRender.QLayerFilter.FilterMo... class QLevelOfDetail (line 897) | class QLevelOfDetail(PySide6.Qt3DCore.Qt3DCore.QComponent): class ThresholdType (line 898) | class ThresholdType(enum.Enum): method __init__ (line 907) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method camera (line 908) | def camera(self, /) -> Qt3DRender.QCamera: ... method createBoundingSphere (line 909) | def createBoundingSphere(self, center: PySide6.QtGui.QVector3D, radi... method currentIndex (line 910) | def currentIndex(self, /) -> int: ... method setCamera (line 911) | def setCamera(self, camera: Qt3DRender.QCamera, /) -> None: ... method setCurrentIndex (line 912) | def setCurrentIndex(self, currentIndex: int, /) -> None: ... method setThresholdType (line 913) | def setThresholdType(self, thresholdType: Qt3DRender.QLevelOfDetail.... method setThresholds (line 914) | def setThresholds(self, thresholds: typing.Iterable[float], /) -> No... method setVolumeOverride (line 915) | def setVolumeOverride(self, volumeOverride: Qt3DRender.QLevelOfDetai... method thresholdType (line 916) | def thresholdType(self, /) -> Qt3DRender.QLevelOfDetail.ThresholdTyp... method thresholds (line 917) | def thresholds(self, /) -> List[float]: ... method volumeOverride (line 918) | def volumeOverride(self, /) -> Qt3DRender.QLevelOfDetailBoundingSphe... class QLevelOfDetailBoundingSphere (line 920) | class QLevelOfDetailBoundingSphere(shiboken6.Object): method __init__ (line 922) | def __init__(self, other: Qt3DRender.QLevelOfDetailBoundingSphere, /... method __init__ (line 924) | def __init__(self, /, center: PySide6.QtGui.QVector3D = ..., radius:... method center (line 925) | def center(self, /) -> PySide6.QtGui.QVector3D: ... method isEmpty (line 926) | def isEmpty(self, /) -> bool: ... method radius (line 927) | def radius(self, /) -> float: ... method __eq__ (line 928) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 929) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 930) | def __gt__(self, other: object) -> bool: ... method __le__ (line 931) | def __le__(self, other: object) -> bool: ... method __lt__ (line 932) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 933) | def __ne__(self, other: object) -> bool: ... class QLevelOfDetailSwitch (line 935) | class QLevelOfDetailSwitch(Qt3DRender.QLevelOfDetail): method __init__ (line 937) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QLineWidth (line 939) | class QLineWidth(Qt3DRender.QRenderState): method __init__ (line 943) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setSmooth (line 944) | def setSmooth(self, enabled: bool, /) -> None: ... method setValue (line 945) | def setValue(self, value: float, /) -> None: ... method smooth (line 946) | def smooth(self, /) -> bool: ... method value (line 947) | def value(self, /) -> float: ... class QMaterial (line 949) | class QMaterial(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 952) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addParameter (line 953) | def addParameter(self, parameter: Qt3DRender.QParameter, /) -> None:... method effect (line 954) | def effect(self, /) -> Qt3DRender.QEffect: ... method parameters (line 955) | def parameters(self, /) -> List[Qt3DRender.QParameter]: ... method removeParameter (line 956) | def removeParameter(self, parameter: Qt3DRender.QParameter, /) -> No... method setEffect (line 957) | def setEffect(self, effect: Qt3DRender.QEffect, /) -> None: ... class QMemoryBarrier (line 959) | class QMemoryBarrier(Qt3DRender.QFrameGraphNode): class Operation (line 960) | class Operation(enum.Flag): method __init__ (line 979) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setWaitOperations (line 980) | def setWaitOperations(self, operations: Qt3DRender.QMemoryBarrier.Op... method waitOperations (line 981) | def waitOperations(self, /) -> Qt3DRender.QMemoryBarrier.Operation: ... class QMesh (line 983) | class QMesh(Qt3DRender.QGeometryRenderer): class Status (line 984) | class Status(enum.Enum): method __init__ (line 993) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method meshName (line 994) | def meshName(self, /) -> str: ... method setMeshName (line 995) | def setMeshName(self, meshName: str, /) -> None: ... method setSource (line 996) | def setSource(self, source: PySide6.QtCore.QUrl | str, /) -> None: ... method source (line 997) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 998) | def status(self, /) -> Qt3DRender.QMesh.Status: ... class QMultiSampleAntiAliasing (line 1000) | class QMultiSampleAntiAliasing(Qt3DRender.QRenderState): method __init__ (line 1002) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QNoDepthMask (line 1004) | class QNoDepthMask(Qt3DRender.QRenderState): method __init__ (line 1006) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QNoDraw (line 1008) | class QNoDraw(Qt3DRender.QFrameGraphNode): method __init__ (line 1010) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QNoPicking (line 1012) | class QNoPicking(Qt3DRender.QFrameGraphNode): method __init__ (line 1014) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QObjectPicker (line 1016) | class QObjectPicker(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 1029) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method containsMouse (line 1030) | def containsMouse(self, /) -> bool: ... method isDragEnabled (line 1031) | def isDragEnabled(self, /) -> bool: ... method isHoverEnabled (line 1032) | def isHoverEnabled(self, /) -> bool: ... method isPressed (line 1033) | def isPressed(self, /) -> bool: ... method priority (line 1034) | def priority(self, /) -> int: ... method setDragEnabled (line 1035) | def setDragEnabled(self, dragEnabled: bool, /) -> None: ... method setHoverEnabled (line 1036) | def setHoverEnabled(self, hoverEnabled: bool, /) -> None: ... method setPriority (line 1037) | def setPriority(self, priority: int, /) -> None: ... class QPaintedTextureImage (line 1039) | class QPaintedTextureImage(Qt3DRender.QAbstractTextureImage): method __init__ (line 1044) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method dataGenerator (line 1045) | def dataGenerator(self, /) -> Qt3DRender.QTextureImageDataGeneratorP... method height (line 1046) | def height(self, /) -> int: ... method paint (line 1047) | def paint(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method setHeight (line 1048) | def setHeight(self, h: int, /) -> None: ... method setSize (line 1049) | def setSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setWidth (line 1050) | def setWidth(self, w: int, /) -> None: ... method size (line 1051) | def size(self, /) -> PySide6.QtCore.QSize: ... method update (line 1052) | def update(self, /, rect: PySide6.QtCore.QRect = ...) -> None: ... method width (line 1053) | def width(self, /) -> int: ... class QParameter (line 1055) | class QParameter(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1060) | def __init__(self, name: str, texture: Qt3DRender.QAbstractTexture, ... method __init__ (line 1062) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method __init__ (line 1064) | def __init__(self, name: str, value: Any, /, parent: PySide6.Qt3DCor... method name (line 1065) | def name(self, /) -> str: ... method setName (line 1066) | def setName(self, name: str, /) -> None: ... method setValue (line 1067) | def setValue(self, dv: Any, /) -> None: ... method value (line 1068) | def value(self, /) -> Any: ... class QPickEvent (line 1070) | class QPickEvent(PySide6.QtCore.QObject): class Buttons (line 1071) | class Buttons(enum.Enum): class Modifiers (line 1078) | class Modifiers(enum.Enum): method __init__ (line 1088) | def __init__(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1090) | def __init__(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1092) | def __init__(self, /, *, accepted: bool | None = ..., position: PySi... method button (line 1093) | def button(self, /) -> Qt3DRender.QPickEvent.Buttons: ... method buttons (line 1094) | def buttons(self, /) -> int: ... method distance (line 1095) | def distance(self, /) -> float: ... method entity (line 1096) | def entity(self, /) -> PySide6.Qt3DCore.Qt3DCore.QEntity: ... method isAccepted (line 1097) | def isAccepted(self, /) -> bool: ... method localIntersection (line 1098) | def localIntersection(self, /) -> PySide6.QtGui.QVector3D: ... method modifiers (line 1099) | def modifiers(self, /) -> int: ... method position (line 1100) | def position(self, /) -> PySide6.QtCore.QPointF: ... method setAccepted (line 1101) | def setAccepted(self, accepted: bool, /) -> None: ... method viewport (line 1102) | def viewport(self, /) -> Qt3DRender.QViewport: ... method worldIntersection (line 1103) | def worldIntersection(self, /) -> PySide6.QtGui.QVector3D: ... class QPickLineEvent (line 1105) | class QPickLineEvent(Qt3DRender.QPickEvent): method __init__ (line 1108) | def __init__(self, /, *, edgeIndex: int | None = ..., vertex1Index: ... method __init__ (line 1110) | def __init__(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method edgeIndex (line 1111) | def edgeIndex(self, /) -> int: ... method vertex1Index (line 1112) | def vertex1Index(self, /) -> int: ... method vertex2Index (line 1113) | def vertex2Index(self, /) -> int: ... class QPickPointEvent (line 1115) | class QPickPointEvent(Qt3DRender.QPickEvent): method __init__ (line 1118) | def __init__(self, /, *, pointIndex: int | None = ..., accepted: boo... method __init__ (line 1120) | def __init__(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method pointIndex (line 1121) | def pointIndex(self, /) -> int: ... class QPickTriangleEvent (line 1123) | class QPickTriangleEvent(Qt3DRender.QPickEvent): method __init__ (line 1126) | def __init__(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1128) | def __init__(self, /, *, triangleIndex: int | None = ..., vertex1Ind... method __init__ (line 1130) | def __init__(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method triangleIndex (line 1131) | def triangleIndex(self, /) -> int: ... method uvw (line 1132) | def uvw(self, /) -> PySide6.QtGui.QVector3D: ... method vertex1Index (line 1133) | def vertex1Index(self, /) -> int: ... method vertex2Index (line 1134) | def vertex2Index(self, /) -> int: ... method vertex3Index (line 1135) | def vertex3Index(self, /) -> int: ... class QPickingProxy (line 1137) | class QPickingProxy(PySide6.Qt3DCore.Qt3DCore.QBoundingVolume): method __init__ (line 1139) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QPickingSettings (line 1141) | class QPickingSettings(PySide6.Qt3DCore.Qt3DCore.QNode): class FaceOrientationPickingMode (line 1142) | class FaceOrientationPickingMode(enum.Enum): class PickMethod (line 1147) | class PickMethod(enum.Enum): class PickResultMode (line 1154) | class PickResultMode(enum.Enum): method __init__ (line 1163) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method faceOrientationPickingMode (line 1164) | def faceOrientationPickingMode(self, /) -> Qt3DRender.QPickingSettin... method pickMethod (line 1165) | def pickMethod(self, /) -> Qt3DRender.QPickingSettings.PickMethod: ... method pickResultMode (line 1166) | def pickResultMode(self, /) -> Qt3DRender.QPickingSettings.PickResul... method setFaceOrientationPickingMode (line 1167) | def setFaceOrientationPickingMode(self, faceOrientationPickingMode: ... method setPickMethod (line 1168) | def setPickMethod(self, pickMethod: Qt3DRender.QPickingSettings.Pick... method setPickResultMode (line 1169) | def setPickResultMode(self, pickResultMode: Qt3DRender.QPickingSetti... method setWorldSpaceTolerance (line 1170) | def setWorldSpaceTolerance(self, worldSpaceTolerance: float, /) -> N... method worldSpaceTolerance (line 1171) | def worldSpaceTolerance(self, /) -> float: ... class QPointLight (line 1173) | class QPointLight(Qt3DRender.QAbstractLight): method __init__ (line 1178) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method constantAttenuation (line 1179) | def constantAttenuation(self, /) -> float: ... method linearAttenuation (line 1180) | def linearAttenuation(self, /) -> float: ... method quadraticAttenuation (line 1181) | def quadraticAttenuation(self, /) -> float: ... method setConstantAttenuation (line 1182) | def setConstantAttenuation(self, value: float, /) -> None: ... method setLinearAttenuation (line 1183) | def setLinearAttenuation(self, value: float, /) -> None: ... method setQuadraticAttenuation (line 1184) | def setQuadraticAttenuation(self, value: float, /) -> None: ... class QPointSize (line 1186) | class QPointSize(Qt3DRender.QRenderState): class SizeMode (line 1187) | class SizeMode(enum.Enum): method __init__ (line 1193) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setSizeMode (line 1194) | def setSizeMode(self, sizeMode: Qt3DRender.QPointSize.SizeMode, /) -... method setValue (line 1195) | def setValue(self, value: float, /) -> None: ... method sizeMode (line 1196) | def sizeMode(self, /) -> Qt3DRender.QPointSize.SizeMode: ... method value (line 1197) | def value(self, /) -> float: ... class QPolygonOffset (line 1199) | class QPolygonOffset(Qt3DRender.QRenderState): method __init__ (line 1203) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method depthSteps (line 1204) | def depthSteps(self, /) -> float: ... method scaleFactor (line 1205) | def scaleFactor(self, /) -> float: ... method setDepthSteps (line 1206) | def setDepthSteps(self, depthSteps: float, /) -> None: ... method setScaleFactor (line 1207) | def setScaleFactor(self, scaleFactor: float, /) -> None: ... class QProximityFilter (line 1209) | class QProximityFilter(Qt3DRender.QFrameGraphNode): method __init__ (line 1213) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method distanceThreshold (line 1214) | def distanceThreshold(self, /) -> float: ... method entity (line 1215) | def entity(self, /) -> PySide6.Qt3DCore.Qt3DCore.QEntity: ... method setDistanceThreshold (line 1216) | def setDistanceThreshold(self, distanceThreshold: float, /) -> None:... method setEntity (line 1217) | def setEntity(self, entity: PySide6.Qt3DCore.Qt3DCore.QEntity, /) ->... class QRasterMode (line 1219) | class QRasterMode(Qt3DRender.QRenderState): class FaceMode (line 1220) | class FaceMode(enum.Enum): class RasterMode (line 1225) | class RasterMode(enum.Enum): method __init__ (line 1232) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method faceMode (line 1233) | def faceMode(self, /) -> Qt3DRender.QRasterMode.FaceMode: ... method rasterMode (line 1234) | def rasterMode(self, /) -> Qt3DRender.QRasterMode.RasterMode: ... method setFaceMode (line 1235) | def setFaceMode(self, faceMode: Qt3DRender.QRasterMode.FaceMode, /) ... method setRasterMode (line 1236) | def setRasterMode(self, rasterMode: Qt3DRender.QRasterMode.RasterMod... class QRayCaster (line 1238) | class QRayCaster(Qt3DRender.QAbstractRayCaster): method __init__ (line 1243) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method direction (line 1244) | def direction(self, /) -> PySide6.QtGui.QVector3D: ... method length (line 1245) | def length(self, /) -> float: ... method origin (line 1246) | def origin(self, /) -> PySide6.QtGui.QVector3D: ... method pick (line 1247) | def pick(self, origin: PySide6.QtGui.QVector3D, direction: PySide6.Q... method setDirection (line 1248) | def setDirection(self, direction: PySide6.QtGui.QVector3D, /) -> Non... method setLength (line 1249) | def setLength(self, length: float, /) -> None: ... method setOrigin (line 1250) | def setOrigin(self, origin: PySide6.QtGui.QVector3D, /) -> None: ... method trigger (line 1252) | def trigger(self, origin: PySide6.QtGui.QVector3D, direction: PySide... method trigger (line 1254) | def trigger(self, /) -> None: ... class QRayCasterHit (line 1256) | class QRayCasterHit(shiboken6.Object): class HitType (line 1257) | class HitType(enum.Enum): method __init__ (line 1263) | def __init__(self, type: Qt3DRender.QRayCasterHit.HitType, id: PySid... method __init__ (line 1265) | def __init__(self, other: Qt3DRender.QRayCasterHit, /, *, type: Qt3D... method __init__ (line 1267) | def __init__(self, /, *, type: Qt3DRender.QRayCasterHit.HitType | No... method distance (line 1268) | def distance(self, /) -> float: ... method entity (line 1269) | def entity(self, /) -> PySide6.Qt3DCore.Qt3DCore.QEntity: ... method entityId (line 1270) | def entityId(self, /) -> PySide6.Qt3DCore.Qt3DCore.QNodeId: ... method localIntersection (line 1271) | def localIntersection(self, /) -> PySide6.QtGui.QVector3D: ... method primitiveIndex (line 1272) | def primitiveIndex(self, /) -> int: ... method toString (line 1273) | def toString(self, /) -> str: ... method type (line 1274) | def type(self, /) -> Qt3DRender.QRayCasterHit.HitType: ... method vertex1Index (line 1275) | def vertex1Index(self, /) -> int: ... method vertex2Index (line 1276) | def vertex2Index(self, /) -> int: ... method vertex3Index (line 1277) | def vertex3Index(self, /) -> int: ... method worldIntersection (line 1278) | def worldIntersection(self, /) -> PySide6.QtGui.QVector3D: ... method __copy__ (line 1279) | def __copy__(self, /) -> typing_extensions.Self: ... class QRenderAspect (line 1281) | class QRenderAspect(PySide6.Qt3DCore.Qt3DCore.QAbstractAspect): class SubmissionType (line 1282) | class SubmissionType(enum.Enum): method __init__ (line 1287) | def __init__(self, submissionType: Qt3DRender.QRenderAspect.Submissi... method __init__ (line 1289) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., d... method dependencies (line 1290) | def dependencies(self, /) -> List[str]: ... class QRenderCapabilities (line 1292) | class QRenderCapabilities(PySide6.QtCore.QObject): class API (line 1293) | class API(enum.Enum): class Profile (line 1300) | class Profile(enum.Enum): method __init__ (line 1305) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *... method api (line 1306) | def api(self, /) -> Qt3DRender.QRenderCapabilities.API: ... method driverVersion (line 1307) | def driverVersion(self, /) -> str: ... method extensions (line 1308) | def extensions(self, /) -> List[str]: ... method glslVersion (line 1309) | def glslVersion(self, /) -> str: ... method isValid (line 1310) | def isValid(self, /) -> bool: ... method majorVersion (line 1311) | def majorVersion(self, /) -> int: ... method maxComputeInvocations (line 1312) | def maxComputeInvocations(self, /) -> int: ... method maxComputeSharedMemorySize (line 1313) | def maxComputeSharedMemorySize(self, /) -> int: ... method maxImageUnits (line 1314) | def maxImageUnits(self, /) -> int: ... method maxSSBOBindings (line 1315) | def maxSSBOBindings(self, /) -> int: ... method maxSSBOSize (line 1316) | def maxSSBOSize(self, /) -> int: ... method maxSamples (line 1317) | def maxSamples(self, /) -> int: ... method maxTextureLayers (line 1318) | def maxTextureLayers(self, /) -> int: ... method maxTextureSize (line 1319) | def maxTextureSize(self, /) -> int: ... method maxTextureUnits (line 1320) | def maxTextureUnits(self, /) -> int: ... method maxUBOBindings (line 1321) | def maxUBOBindings(self, /) -> int: ... method maxUBOSize (line 1322) | def maxUBOSize(self, /) -> int: ... method maxWorkGroupCountX (line 1323) | def maxWorkGroupCountX(self, /) -> int: ... method maxWorkGroupCountY (line 1324) | def maxWorkGroupCountY(self, /) -> int: ... method maxWorkGroupCountZ (line 1325) | def maxWorkGroupCountZ(self, /) -> int: ... method maxWorkGroupSizeX (line 1326) | def maxWorkGroupSizeX(self, /) -> int: ... method maxWorkGroupSizeY (line 1327) | def maxWorkGroupSizeY(self, /) -> int: ... method maxWorkGroupSizeZ (line 1328) | def maxWorkGroupSizeZ(self, /) -> int: ... method minorVersion (line 1329) | def minorVersion(self, /) -> int: ... method profile (line 1330) | def profile(self, /) -> Qt3DRender.QRenderCapabilities.Profile: ... method renderer (line 1331) | def renderer(self, /) -> str: ... method supportsCompute (line 1332) | def supportsCompute(self, /) -> bool: ... method supportsImageStore (line 1333) | def supportsImageStore(self, /) -> bool: ... method supportsSSBO (line 1334) | def supportsSSBO(self, /) -> bool: ... method supportsUBO (line 1335) | def supportsUBO(self, /) -> bool: ... method vendor (line 1336) | def vendor(self, /) -> str: ... class QRenderCapture (line 1338) | class QRenderCapture(Qt3DRender.QFrameGraphNode): method __init__ (line 1340) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method requestCapture (line 1342) | def requestCapture(self, rect: PySide6.QtCore.QRect, /) -> Qt3DRende... method requestCapture (line 1344) | def requestCapture(self, captureId: int, /) -> Qt3DRender.QRenderCap... method requestCapture (line 1346) | def requestCapture(self, /) -> Qt3DRender.QRenderCaptureReply: ... class QRenderCaptureReply (line 1348) | class QRenderCaptureReply(PySide6.QtCore.QObject): method __init__ (line 1351) | def __init__(self, *args, destroyed: typing.Callable = ..., objectNa... method captureId (line 1352) | def captureId(self, /) -> int: ... method image (line 1353) | def image(self, /) -> PySide6.QtGui.QImage: ... method isComplete (line 1354) | def isComplete(self, /) -> bool: ... method saveImage (line 1355) | def saveImage(self, fileName: str, /) -> bool: ... class QRenderPass (line 1357) | class QRenderPass(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1360) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addFilterKey (line 1361) | def addFilterKey(self, filterKey: Qt3DRender.QFilterKey, /) -> None:... method addParameter (line 1362) | def addParameter(self, p: Qt3DRender.QParameter, /) -> None: ... method addRenderState (line 1363) | def addRenderState(self, state: Qt3DRender.QRenderState, /) -> None:... method filterKeys (line 1364) | def filterKeys(self, /) -> List[Qt3DRender.QFilterKey]: ... method parameters (line 1365) | def parameters(self, /) -> List[Qt3DRender.QParameter]: ... method removeFilterKey (line 1366) | def removeFilterKey(self, filterKey: Qt3DRender.QFilterKey, /) -> No... method removeParameter (line 1367) | def removeParameter(self, p: Qt3DRender.QParameter, /) -> None: ... method removeRenderState (line 1368) | def removeRenderState(self, state: Qt3DRender.QRenderState, /) -> No... method renderStates (line 1369) | def renderStates(self, /) -> List[Qt3DRender.QRenderState]: ... method setShaderProgram (line 1370) | def setShaderProgram(self, shaderProgram: Qt3DRender.QShaderProgram,... method shaderProgram (line 1371) | def shaderProgram(self, /) -> Qt3DRender.QShaderProgram: ... class QRenderPassFilter (line 1373) | class QRenderPassFilter(Qt3DRender.QFrameGraphNode): method __init__ (line 1375) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addMatch (line 1376) | def addMatch(self, filterKey: Qt3DRender.QFilterKey, /) -> None: ... method addParameter (line 1377) | def addParameter(self, parameter: Qt3DRender.QParameter, /) -> None:... method matchAny (line 1378) | def matchAny(self, /) -> List[Qt3DRender.QFilterKey]: ... method parameters (line 1379) | def parameters(self, /) -> List[Qt3DRender.QParameter]: ... method removeMatch (line 1380) | def removeMatch(self, filterKey: Qt3DRender.QFilterKey, /) -> None: ... method removeParameter (line 1381) | def removeParameter(self, parameter: Qt3DRender.QParameter, /) -> No... class QRenderSettings (line 1383) | class QRenderSettings(PySide6.Qt3DCore.Qt3DCore.QComponent): class RenderPolicy (line 1384) | class RenderPolicy(enum.Enum): method __init__ (line 1390) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method activeFrameGraph (line 1391) | def activeFrameGraph(self, /) -> Qt3DRender.QFrameGraphNode: ... method pickingSettings (line 1392) | def pickingSettings(self, /) -> Qt3DRender.QPickingSettings: ... method renderCapabilities (line 1393) | def renderCapabilities(self, /) -> Qt3DRender.QRenderCapabilities: ... method renderPolicy (line 1394) | def renderPolicy(self, /) -> Qt3DRender.QRenderSettings.RenderPolicy... method setActiveFrameGraph (line 1395) | def setActiveFrameGraph(self, activeFrameGraph: Qt3DRender.QFrameGra... method setRenderPolicy (line 1396) | def setRenderPolicy(self, renderPolicy: Qt3DRender.QRenderSettings.R... class QRenderState (line 1398) | class QRenderState(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1400) | def __init__(self, *args, destroyed: typing.Callable = ..., enabled:... class QRenderStateSet (line 1402) | class QRenderStateSet(Qt3DRender.QFrameGraphNode): method __init__ (line 1404) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addRenderState (line 1405) | def addRenderState(self, state: Qt3DRender.QRenderState, /) -> None:... method removeRenderState (line 1406) | def removeRenderState(self, state: Qt3DRender.QRenderState, /) -> No... method renderStates (line 1407) | def renderStates(self, /) -> List[Qt3DRender.QRenderState]: ... class QRenderSurfaceSelector (line 1409) | class QRenderSurfaceSelector(Qt3DRender.QFrameGraphNode): method __init__ (line 1414) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method externalRenderTargetSize (line 1415) | def externalRenderTargetSize(self, /) -> PySide6.QtCore.QSize: ... method setExternalRenderTargetSize (line 1416) | def setExternalRenderTargetSize(self, size: PySide6.QtCore.QSize, /)... method setSurface (line 1417) | def setSurface(self, surfaceObject: PySide6.QtCore.QObject, /) -> No... method setSurfacePixelRatio (line 1418) | def setSurfacePixelRatio(self, ratio: float, /) -> None: ... method surface (line 1419) | def surface(self, /) -> PySide6.QtCore.QObject: ... method surfacePixelRatio (line 1420) | def surfacePixelRatio(self, /) -> float: ... class QRenderTarget (line 1422) | class QRenderTarget(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 1424) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addOutput (line 1425) | def addOutput(self, output: Qt3DRender.QRenderTargetOutput, /) -> No... method outputs (line 1426) | def outputs(self, /) -> List[Qt3DRender.QRenderTargetOutput]: ... method removeOutput (line 1427) | def removeOutput(self, output: Qt3DRender.QRenderTargetOutput, /) ->... class QRenderTargetOutput (line 1429) | class QRenderTargetOutput(PySide6.Qt3DCore.Qt3DCore.QNode): class AttachmentPoint (line 1430) | class AttachmentPoint(enum.Enum): method __init__ (line 1458) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method attachmentPoint (line 1459) | def attachmentPoint(self, /) -> Qt3DRender.QRenderTargetOutput.Attac... method face (line 1460) | def face(self, /) -> Qt3DRender.QAbstractTexture.CubeMapFace: ... method layer (line 1461) | def layer(self, /) -> int: ... method mipLevel (line 1462) | def mipLevel(self, /) -> int: ... method setAttachmentPoint (line 1463) | def setAttachmentPoint(self, attachmentPoint: Qt3DRender.QRenderTarg... method setFace (line 1464) | def setFace(self, face: Qt3DRender.QAbstractTexture.CubeMapFace, /) ... method setLayer (line 1465) | def setLayer(self, layer: int, /) -> None: ... method setMipLevel (line 1466) | def setMipLevel(self, level: int, /) -> None: ... method setTexture (line 1467) | def setTexture(self, texture: Qt3DRender.QAbstractTexture, /) -> Non... method texture (line 1468) | def texture(self, /) -> Qt3DRender.QAbstractTexture: ... class QRenderTargetSelector (line 1470) | class QRenderTargetSelector(Qt3DRender.QFrameGraphNode): method __init__ (line 1473) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setTarget (line 1474) | def setTarget(self, target: Qt3DRender.QRenderTarget, /) -> None: ... method target (line 1475) | def target(self, /) -> Qt3DRender.QRenderTarget: ... class QSceneLoader (line 1477) | class QSceneLoader(PySide6.Qt3DCore.Qt3DCore.QComponent): class ComponentType (line 1478) | class ComponentType(enum.Enum): class Status (line 1486) | class Status(enum.Enum): method __init__ (line 1494) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method component (line 1495) | def component(self, entityName: str, componentType: Qt3DRender.QScen... method entity (line 1496) | def entity(self, entityName: str, /) -> PySide6.Qt3DCore.Qt3DCore.QE... method entityNames (line 1497) | def entityNames(self, /) -> List[str]: ... method setSource (line 1498) | def setSource(self, arg: PySide6.QtCore.QUrl | str, /) -> None: ... method source (line 1499) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 1500) | def status(self, /) -> Qt3DRender.QSceneLoader.Status: ... class QScissorTest (line 1502) | class QScissorTest(Qt3DRender.QRenderState): method __init__ (line 1508) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method bottom (line 1509) | def bottom(self, /) -> int: ... method height (line 1510) | def height(self, /) -> int: ... method left (line 1511) | def left(self, /) -> int: ... method setBottom (line 1512) | def setBottom(self, bottom: int, /) -> None: ... method setHeight (line 1513) | def setHeight(self, height: int, /) -> None: ... method setLeft (line 1514) | def setLeft(self, left: int, /) -> None: ... method setWidth (line 1515) | def setWidth(self, width: int, /) -> None: ... method width (line 1516) | def width(self, /) -> int: ... class QScreenRayCaster (line 1518) | class QScreenRayCaster(Qt3DRender.QAbstractRayCaster): method __init__ (line 1521) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method pick (line 1522) | def pick(self, position: PySide6.QtCore.QPoint, /) -> List[Qt3DRende... method position (line 1523) | def position(self, /) -> PySide6.QtCore.QPoint: ... method setPosition (line 1524) | def setPosition(self, position: PySide6.QtCore.QPoint, /) -> None: ... method trigger (line 1526) | def trigger(self, position: PySide6.QtCore.QPoint, /) -> None: ... method trigger (line 1528) | def trigger(self, /) -> None: ... class QSeamlessCubemap (line 1530) | class QSeamlessCubemap(Qt3DRender.QRenderState): method __init__ (line 1532) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QSetFence (line 1534) | class QSetFence(Qt3DRender.QFrameGraphNode): class HandleType (line 1535) | class HandleType(enum.Enum): method __init__ (line 1541) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method handle (line 1542) | def handle(self, /) -> Any: ... method handleType (line 1543) | def handleType(self, /) -> Qt3DRender.QSetFence.HandleType: ... class QShaderData (line 1545) | class QShaderData(PySide6.Qt3DCore.Qt3DCore.QComponent): method __init__ (line 1547) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method event (line 1548) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method propertyReader (line 1549) | def propertyReader(self, /) -> Qt3DRender.PropertyReaderInterfacePtr... class QShaderImage (line 1551) | class QShaderImage(PySide6.Qt3DCore.Qt3DCore.QNode): class Access (line 1552) | class Access(enum.Enum): class ImageFormat (line 1557) | class ImageFormat(enum.Enum): method __init__ (line 1606) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method access (line 1607) | def access(self, /) -> Qt3DRender.QShaderImage.Access: ... method format (line 1608) | def format(self, /) -> Qt3DRender.QShaderImage.ImageFormat: ... method layer (line 1609) | def layer(self, /) -> int: ... method layered (line 1610) | def layered(self, /) -> bool: ... method mipLevel (line 1611) | def mipLevel(self, /) -> int: ... method setAccess (line 1612) | def setAccess(self, access: Qt3DRender.QShaderImage.Access, /) -> No... method setFormat (line 1613) | def setFormat(self, format: Qt3DRender.QShaderImage.ImageFormat, /) ... method setLayer (line 1614) | def setLayer(self, layer: int, /) -> None: ... method setLayered (line 1615) | def setLayered(self, layered: bool, /) -> None: ... method setMipLevel (line 1616) | def setMipLevel(self, mipLevel: int, /) -> None: ... method setTexture (line 1617) | def setTexture(self, texture: Qt3DRender.QAbstractTexture, /) -> Non... method texture (line 1618) | def texture(self, /) -> Qt3DRender.QAbstractTexture: ... class QShaderProgram (line 1620) | class QShaderProgram(PySide6.Qt3DCore.Qt3DCore.QNode): class Format (line 1621) | class Format(enum.Enum): class ShaderType (line 1625) | class ShaderType(enum.Enum): class Status (line 1633) | class Status(enum.Enum): method __init__ (line 1647) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method computeShaderCode (line 1648) | def computeShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method format (line 1649) | def format(self, /) -> Qt3DRender.QShaderProgram.Format: ... method fragmentShaderCode (line 1650) | def fragmentShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method geometryShaderCode (line 1651) | def geometryShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method loadSource (line 1653) | def loadSource(sourceUrl: PySide6.QtCore.QUrl | str, /) -> PySide6.Q... method log (line 1654) | def log(self, /) -> str: ... method setComputeShaderCode (line 1655) | def setComputeShaderCode(self, computeShaderCode: PySide6.QtCore.QBy... method setFormat (line 1656) | def setFormat(self, format: Qt3DRender.QShaderProgram.Format, /) -> ... method setFragmentShaderCode (line 1657) | def setFragmentShaderCode(self, fragmentShaderCode: PySide6.QtCore.Q... method setGeometryShaderCode (line 1658) | def setGeometryShaderCode(self, geometryShaderCode: PySide6.QtCore.Q... method setShaderCode (line 1659) | def setShaderCode(self, type: Qt3DRender.QShaderProgram.ShaderType, ... method setTessellationControlShaderCode (line 1660) | def setTessellationControlShaderCode(self, tessellationControlShader... method setTessellationEvaluationShaderCode (line 1661) | def setTessellationEvaluationShaderCode(self, tessellationEvaluation... method setVertexShaderCode (line 1662) | def setVertexShaderCode(self, vertexShaderCode: PySide6.QtCore.QByte... method shaderCode (line 1663) | def shaderCode(self, type: Qt3DRender.QShaderProgram.ShaderType, /) ... method status (line 1664) | def status(self, /) -> Qt3DRender.QShaderProgram.Status: ... method tessellationControlShaderCode (line 1665) | def tessellationControlShaderCode(self, /) -> PySide6.QtCore.QByteAr... method tessellationEvaluationShaderCode (line 1666) | def tessellationEvaluationShaderCode(self, /) -> PySide6.QtCore.QByt... method vertexShaderCode (line 1667) | def vertexShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... class QShaderProgramBuilder (line 1669) | class QShaderProgramBuilder(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1685) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method computeShaderCode (line 1686) | def computeShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method computeShaderGraph (line 1687) | def computeShaderGraph(self, /) -> PySide6.QtCore.QUrl: ... method enabledLayers (line 1688) | def enabledLayers(self, /) -> List[str]: ... method fragmentShaderCode (line 1689) | def fragmentShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method fragmentShaderGraph (line 1690) | def fragmentShaderGraph(self, /) -> PySide6.QtCore.QUrl: ... method geometryShaderCode (line 1691) | def geometryShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method geometryShaderGraph (line 1692) | def geometryShaderGraph(self, /) -> PySide6.QtCore.QUrl: ... method setComputeShaderGraph (line 1693) | def setComputeShaderGraph(self, computeShaderGraph: PySide6.QtCore.Q... method setEnabledLayers (line 1694) | def setEnabledLayers(self, layers: typing.Iterable[str], /) -> None:... method setFragmentShaderGraph (line 1695) | def setFragmentShaderGraph(self, fragmentShaderGraph: PySide6.QtCore... method setGeometryShaderGraph (line 1696) | def setGeometryShaderGraph(self, geometryShaderGraph: PySide6.QtCore... method setShaderProgram (line 1697) | def setShaderProgram(self, program: Qt3DRender.QShaderProgram, /) ->... method setTessellationControlShaderGraph (line 1698) | def setTessellationControlShaderGraph(self, tessellationControlShade... method setTessellationEvaluationShaderGraph (line 1699) | def setTessellationEvaluationShaderGraph(self, tessellationEvaluatio... method setVertexShaderGraph (line 1700) | def setVertexShaderGraph(self, vertexShaderGraph: PySide6.QtCore.QUr... method shaderProgram (line 1701) | def shaderProgram(self, /) -> Qt3DRender.QShaderProgram: ... method tessellationControlShaderCode (line 1702) | def tessellationControlShaderCode(self, /) -> PySide6.QtCore.QByteAr... method tessellationControlShaderGraph (line 1703) | def tessellationControlShaderGraph(self, /) -> PySide6.QtCore.QUrl: ... method tessellationEvaluationShaderCode (line 1704) | def tessellationEvaluationShaderCode(self, /) -> PySide6.QtCore.QByt... method tessellationEvaluationShaderGraph (line 1705) | def tessellationEvaluationShaderGraph(self, /) -> PySide6.QtCore.QUr... method vertexShaderCode (line 1706) | def vertexShaderCode(self, /) -> PySide6.QtCore.QByteArray: ... method vertexShaderGraph (line 1707) | def vertexShaderGraph(self, /) -> PySide6.QtCore.QUrl: ... class QSharedGLTexture (line 1709) | class QSharedGLTexture(Qt3DRender.QAbstractTexture): method __init__ (line 1712) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setTextureId (line 1713) | def setTextureId(self, id: int, /) -> None: ... method textureId (line 1714) | def textureId(self, /) -> int: ... class QSortPolicy (line 1716) | class QSortPolicy(Qt3DRender.QFrameGraphNode): class SortType (line 1717) | class SortType(enum.Enum): method __init__ (line 1726) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method setSortTypes (line 1728) | def setSortTypes(self, sortTypesInt: typing.Iterable[int], /) -> Non... method setSortTypes (line 1730) | def setSortTypes(self, sortTypes: typing.Iterable[Qt3DRender.QSortPo... method sortTypes (line 1731) | def sortTypes(self, /) -> List[Qt3DRender.QSortPolicy.SortType]: ... method sortTypesInt (line 1732) | def sortTypesInt(self, /) -> List[int]: ... class QSpotLight (line 1734) | class QSpotLight(Qt3DRender.QAbstractLight): method __init__ (line 1741) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method constantAttenuation (line 1742) | def constantAttenuation(self, /) -> float: ... method cutOffAngle (line 1743) | def cutOffAngle(self, /) -> float: ... method linearAttenuation (line 1744) | def linearAttenuation(self, /) -> float: ... method localDirection (line 1745) | def localDirection(self, /) -> PySide6.QtGui.QVector3D: ... method quadraticAttenuation (line 1746) | def quadraticAttenuation(self, /) -> float: ... method setConstantAttenuation (line 1747) | def setConstantAttenuation(self, value: float, /) -> None: ... method setCutOffAngle (line 1748) | def setCutOffAngle(self, cutOffAngle: float, /) -> None: ... method setLinearAttenuation (line 1749) | def setLinearAttenuation(self, value: float, /) -> None: ... method setLocalDirection (line 1750) | def setLocalDirection(self, localDirection: PySide6.QtGui.QVector3D,... method setQuadraticAttenuation (line 1751) | def setQuadraticAttenuation(self, value: float, /) -> None: ... class QStencilMask (line 1753) | class QStencilMask(Qt3DRender.QRenderState): method __init__ (line 1757) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method backOutputMask (line 1758) | def backOutputMask(self, /) -> int: ... method frontOutputMask (line 1759) | def frontOutputMask(self, /) -> int: ... method setBackOutputMask (line 1760) | def setBackOutputMask(self, backOutputMask: int, /) -> None: ... method setFrontOutputMask (line 1761) | def setFrontOutputMask(self, frontOutputMask: int, /) -> None: ... class QStencilOperation (line 1763) | class QStencilOperation(Qt3DRender.QRenderState): method __init__ (line 1765) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method back (line 1766) | def back(self, /) -> Qt3DRender.QStencilOperationArguments: ... method front (line 1767) | def front(self, /) -> Qt3DRender.QStencilOperationArguments: ... class QStencilOperationArguments (line 1769) | class QStencilOperationArguments(PySide6.QtCore.QObject): class FaceMode (line 1770) | class FaceMode(enum.Enum): class Operation (line 1775) | class Operation(enum.Enum): method __init__ (line 1789) | def __init__(self, *args, destroyed: typing.Callable = ..., objectNa... method allTestsPassOperation (line 1790) | def allTestsPassOperation(self, /) -> Qt3DRender.QStencilOperationAr... method depthTestFailureOperation (line 1791) | def depthTestFailureOperation(self, /) -> Qt3DRender.QStencilOperati... method faceMode (line 1792) | def faceMode(self, /) -> Qt3DRender.QStencilOperationArguments.FaceM... method setAllTestsPassOperation (line 1793) | def setAllTestsPassOperation(self, operation: Qt3DRender.QStencilOpe... method setDepthTestFailureOperation (line 1794) | def setDepthTestFailureOperation(self, operation: Qt3DRender.QStenci... method setStencilTestFailureOperation (line 1795) | def setStencilTestFailureOperation(self, operation: Qt3DRender.QSten... method stencilTestFailureOperation (line 1796) | def stencilTestFailureOperation(self, /) -> Qt3DRender.QStencilOpera... class QStencilTest (line 1798) | class QStencilTest(Qt3DRender.QRenderState): method __init__ (line 1800) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method back (line 1801) | def back(self, /) -> Qt3DRender.QStencilTestArguments: ... method front (line 1802) | def front(self, /) -> Qt3DRender.QStencilTestArguments: ... class QStencilTestArguments (line 1804) | class QStencilTestArguments(PySide6.QtCore.QObject): class StencilFaceMode (line 1805) | class StencilFaceMode(enum.Enum): class StencilFunction (line 1810) | class StencilFunction(enum.Enum): method __init__ (line 1824) | def __init__(self, *args, destroyed: typing.Callable = ..., objectNa... method comparisonMask (line 1825) | def comparisonMask(self, /) -> int: ... method faceMode (line 1826) | def faceMode(self, /) -> Qt3DRender.QStencilTestArguments.StencilFac... method referenceValue (line 1827) | def referenceValue(self, /) -> int: ... method setComparisonMask (line 1828) | def setComparisonMask(self, comparisonMask: int, /) -> None: ... method setReferenceValue (line 1829) | def setReferenceValue(self, referenceValue: int, /) -> None: ... method setStencilFunction (line 1830) | def setStencilFunction(self, stencilFunction: Qt3DRender.QStencilTes... method stencilFunction (line 1831) | def stencilFunction(self, /) -> Qt3DRender.QStencilTestArguments.Ste... class QSubtreeEnabler (line 1833) | class QSubtreeEnabler(Qt3DRender.QFrameGraphNode): class Enablement (line 1834) | class Enablement(enum.Enum): method __init__ (line 1839) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method enablement (line 1840) | def enablement(self, /) -> Qt3DRender.QSubtreeEnabler.Enablement: ... method requestUpdate (line 1841) | def requestUpdate(self, /) -> None: ... method setEnablement (line 1842) | def setEnablement(self, enablement: Qt3DRender.QSubtreeEnabler.Enabl... class QTechnique (line 1844) | class QTechnique(PySide6.Qt3DCore.Qt3DCore.QNode): method __init__ (line 1846) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addFilterKey (line 1847) | def addFilterKey(self, filterKey: Qt3DRender.QFilterKey, /) -> None:... method addParameter (line 1848) | def addParameter(self, p: Qt3DRender.QParameter, /) -> None: ... method addRenderPass (line 1849) | def addRenderPass(self, pass_: Qt3DRender.QRenderPass, /) -> None: ... method filterKeys (line 1850) | def filterKeys(self, /) -> List[Qt3DRender.QFilterKey]: ... method graphicsApiFilter (line 1851) | def graphicsApiFilter(self, /) -> Qt3DRender.QGraphicsApiFilter: ... method parameters (line 1852) | def parameters(self, /) -> List[Qt3DRender.QParameter]: ... method removeFilterKey (line 1853) | def removeFilterKey(self, filterKey: Qt3DRender.QFilterKey, /) -> No... method removeParameter (line 1854) | def removeParameter(self, p: Qt3DRender.QParameter, /) -> None: ... method removeRenderPass (line 1855) | def removeRenderPass(self, pass_: Qt3DRender.QRenderPass, /) -> None... method renderPasses (line 1856) | def renderPasses(self, /) -> List[Qt3DRender.QRenderPass]: ... class QTechniqueFilter (line 1858) | class QTechniqueFilter(Qt3DRender.QFrameGraphNode): method __init__ (line 1860) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method addMatch (line 1861) | def addMatch(self, filterKey: Qt3DRender.QFilterKey, /) -> None: ... method addParameter (line 1862) | def addParameter(self, p: Qt3DRender.QParameter, /) -> None: ... method matchAll (line 1863) | def matchAll(self, /) -> List[Qt3DRender.QFilterKey]: ... method parameters (line 1864) | def parameters(self, /) -> List[Qt3DRender.QParameter]: ... method removeMatch (line 1865) | def removeMatch(self, filterKey: Qt3DRender.QFilterKey, /) -> None: ... method removeParameter (line 1866) | def removeParameter(self, p: Qt3DRender.QParameter, /) -> None: ... class QTexture1D (line 1868) | class QTexture1D(Qt3DRender.QAbstractTexture): method __init__ (line 1870) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTexture1DArray (line 1872) | class QTexture1DArray(Qt3DRender.QAbstractTexture): method __init__ (line 1874) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTexture2D (line 1876) | class QTexture2D(Qt3DRender.QAbstractTexture): method __init__ (line 1878) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTexture2DArray (line 1880) | class QTexture2DArray(Qt3DRender.QAbstractTexture): method __init__ (line 1882) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTexture2DMultisample (line 1884) | class QTexture2DMultisample(Qt3DRender.QAbstractTexture): method __init__ (line 1886) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTexture2DMultisampleArray (line 1888) | class QTexture2DMultisampleArray(Qt3DRender.QAbstractTexture): method __init__ (line 1890) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTexture3D (line 1892) | class QTexture3D(Qt3DRender.QAbstractTexture): method __init__ (line 1894) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTextureBuffer (line 1896) | class QTextureBuffer(Qt3DRender.QAbstractTexture): method __init__ (line 1898) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTextureCubeMap (line 1900) | class QTextureCubeMap(Qt3DRender.QAbstractTexture): method __init__ (line 1902) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTextureCubeMapArray (line 1904) | class QTextureCubeMapArray(Qt3DRender.QAbstractTexture): method __init__ (line 1906) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTextureData (line 1908) | class QTextureData(shiboken6.Object): method __init__ (line 1909) | def __init__(self, /) -> None: ... method addImageData (line 1910) | def addImageData(self, imageData: Qt3DRender.QTextureImageDataPtr, /... method comparisonFunction (line 1911) | def comparisonFunction(self, /) -> Qt3DRender.QAbstractTexture.Compa... method comparisonMode (line 1912) | def comparisonMode(self, /) -> Qt3DRender.QAbstractTexture.Compariso... method depth (line 1913) | def depth(self, /) -> int: ... method format (line 1914) | def format(self, /) -> Qt3DRender.QAbstractTexture.TextureFormat: ... method height (line 1915) | def height(self, /) -> int: ... method imageData (line 1916) | def imageData(self, /) -> List[Tuple[Qt3DRender.QTextureImageData]]:... method isAutoMipMapGenerationEnabled (line 1917) | def isAutoMipMapGenerationEnabled(self, /) -> bool: ... method layers (line 1918) | def layers(self, /) -> int: ... method magnificationFilter (line 1919) | def magnificationFilter(self, /) -> Qt3DRender.QAbstractTexture.Filt... method maximumAnisotropy (line 1920) | def maximumAnisotropy(self, /) -> float: ... method minificationFilter (line 1921) | def minificationFilter(self, /) -> Qt3DRender.QAbstractTexture.Filte... method setAutoMipMapGenerationEnabled (line 1922) | def setAutoMipMapGenerationEnabled(self, isAutoMipMapGenerationEnabl... method setComparisonFunction (line 1923) | def setComparisonFunction(self, comparisonFunction: Qt3DRender.QAbst... method setComparisonMode (line 1924) | def setComparisonMode(self, comparisonMode: Qt3DRender.QAbstractText... method setDepth (line 1925) | def setDepth(self, depth: int, /) -> None: ... method setFormat (line 1926) | def setFormat(self, arg__1: Qt3DRender.QAbstractTexture.TextureForma... method setHeight (line 1927) | def setHeight(self, height: int, /) -> None: ... method setLayers (line 1928) | def setLayers(self, layers: int, /) -> None: ... method setMagnificationFilter (line 1929) | def setMagnificationFilter(self, filter: Qt3DRender.QAbstractTexture... method setMaximumAnisotropy (line 1930) | def setMaximumAnisotropy(self, maximumAnisotropy: float, /) -> None:... method setMinificationFilter (line 1931) | def setMinificationFilter(self, filter: Qt3DRender.QAbstractTexture.... method setTarget (line 1932) | def setTarget(self, target: Qt3DRender.QAbstractTexture.Target, /) -... method setWidth (line 1933) | def setWidth(self, width: int, /) -> None: ... method setWrapModeX (line 1934) | def setWrapModeX(self, wrapModeX: Qt3DRender.QTextureWrapMode.WrapMo... method setWrapModeY (line 1935) | def setWrapModeY(self, wrapModeY: Qt3DRender.QTextureWrapMode.WrapMo... method setWrapModeZ (line 1936) | def setWrapModeZ(self, wrapModeZ: Qt3DRender.QTextureWrapMode.WrapMo... method target (line 1937) | def target(self, /) -> Qt3DRender.QAbstractTexture.Target: ... method width (line 1938) | def width(self, /) -> int: ... method wrapModeX (line 1939) | def wrapModeX(self, /) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method wrapModeY (line 1940) | def wrapModeY(self, /) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method wrapModeZ (line 1941) | def wrapModeZ(self, /) -> Qt3DRender.QTextureWrapMode.WrapMode: ... class QTextureDataUpdate (line 1943) | class QTextureDataUpdate(shiboken6.Object): method __init__ (line 1945) | def __init__(self, other: Qt3DRender.QTextureDataUpdate, /) -> None:... method __init__ (line 1947) | def __init__(self, /) -> None: ... method data (line 1948) | def data(self, /) -> Qt3DRender.QTextureImageDataPtr: ... method face (line 1949) | def face(self, /) -> Qt3DRender.QAbstractTexture.CubeMapFace: ... method layer (line 1950) | def layer(self, /) -> int: ... method mipLevel (line 1951) | def mipLevel(self, /) -> int: ... method setData (line 1952) | def setData(self, data: Qt3DRender.QTextureImageDataPtr, /) -> None:... method setFace (line 1953) | def setFace(self, face: Qt3DRender.QAbstractTexture.CubeMapFace, /) ... method setLayer (line 1954) | def setLayer(self, layer: int, /) -> None: ... method setMipLevel (line 1955) | def setMipLevel(self, mipLevel: int, /) -> None: ... method setX (line 1956) | def setX(self, x: int, /) -> None: ... method setY (line 1957) | def setY(self, y: int, /) -> None: ... method setZ (line 1958) | def setZ(self, z: int, /) -> None: ... method swap (line 1959) | def swap(self, other: Qt3DRender.QTextureDataUpdate, /) -> None: ... method x (line 1960) | def x(self, /) -> int: ... method y (line 1961) | def y(self, /) -> int: ... method z (line 1962) | def z(self, /) -> int: ... method __copy__ (line 1963) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1964) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1965) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1966) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1967) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1968) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1969) | def __ne__(self, other: object) -> bool: ... class QTextureImage (line 1971) | class QTextureImage(Qt3DRender.QAbstractTextureImage): class Status (line 1972) | class Status(enum.Enum): method __init__ (line 1981) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method dataGenerator (line 1982) | def dataGenerator(self, /) -> Qt3DRender.QTextureImageDataGeneratorP... method isMirrored (line 1983) | def isMirrored(self, /) -> bool: ... method setMirrored (line 1984) | def setMirrored(self, mirrored: bool, /) -> None: ... method setSource (line 1985) | def setSource(self, source: PySide6.QtCore.QUrl | str, /) -> None: ... method setStatus (line 1986) | def setStatus(self, status: Qt3DRender.QTextureImage.Status, /) -> N... method source (line 1987) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 1988) | def status(self, /) -> Qt3DRender.QTextureImage.Status: ... class QTextureImageData (line 1990) | class QTextureImageData(shiboken6.Object): method __init__ (line 1991) | def __init__(self, /) -> None: ... method alignment (line 1992) | def alignment(self, /) -> int: ... method cleanup (line 1993) | def cleanup(self, /) -> None: ... method data (line 1994) | def data(self, /, layer: int | None = ..., face: int | None = ..., m... method depth (line 1995) | def depth(self, /) -> int: ... method faces (line 1996) | def faces(self, /) -> int: ... method format (line 1997) | def format(self, /) -> PySide6.QtOpenGL.QOpenGLTexture.TextureFormat... method height (line 1998) | def height(self, /) -> int: ... method isCompressed (line 1999) | def isCompressed(self, /) -> bool: ... method layers (line 2000) | def layers(self, /) -> int: ... method mipLevels (line 2001) | def mipLevels(self, /) -> int: ... method pixelFormat (line 2002) | def pixelFormat(self, /) -> PySide6.QtOpenGL.QOpenGLTexture.PixelFor... method pixelType (line 2003) | def pixelType(self, /) -> PySide6.QtOpenGL.QOpenGLTexture.PixelType:... method setAlignment (line 2004) | def setAlignment(self, alignment: int, /) -> None: ... method setData (line 2005) | def setData(self, data: PySide6.QtCore.QByteArray | bytes | bytearra... method setDepth (line 2006) | def setDepth(self, depth: int, /) -> None: ... method setFaces (line 2007) | def setFaces(self, faces: int, /) -> None: ... method setFormat (line 2008) | def setFormat(self, format: PySide6.QtOpenGL.QOpenGLTexture.TextureF... method setHeight (line 2009) | def setHeight(self, height: int, /) -> None: ... method setImage (line 2010) | def setImage(self, arg__1: PySide6.QtGui.QImage, /) -> None: ... method setLayers (line 2011) | def setLayers(self, layers: int, /) -> None: ... method setMipLevels (line 2012) | def setMipLevels(self, mipLevels: int, /) -> None: ... method setPixelFormat (line 2013) | def setPixelFormat(self, pixelFormat: PySide6.QtOpenGL.QOpenGLTextur... method setPixelType (line 2014) | def setPixelType(self, pixelType: PySide6.QtOpenGL.QOpenGLTexture.Pi... method setTarget (line 2015) | def setTarget(self, target: PySide6.QtOpenGL.QOpenGLTexture.Target, ... method setWidth (line 2016) | def setWidth(self, width: int, /) -> None: ... method target (line 2017) | def target(self, /) -> PySide6.QtOpenGL.QOpenGLTexture.Target: ... method width (line 2018) | def width(self, /) -> int: ... class QTextureImageDataGenerator (line 2020) | class QTextureImageDataGenerator(PySide6.Qt3DCore.Qt3DCore.QAbstractFu... method __init__ (line 2021) | def __init__(self, /) -> None: ... method __call__ (line 2022) | def __call__(self, /) -> Qt3DRender.QTextureImageDataPtr: ... method __eq__ (line 2023) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2024) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2025) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2026) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2027) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2028) | def __ne__(self, other: object) -> bool: ... class QTextureImageDataGeneratorPtr (line 2030) | class QTextureImageDataGeneratorPtr(shiboken6.Object): method __init__ (line 2032) | def __init__(self, pointee: Qt3DRender.QTextureImageDataGenerator, /... method __init__ (line 2034) | def __init__(self, /) -> None: ... method data (line 2035) | def data(self, /) -> Qt3DRender.QTextureImageDataGenerator: ... method reset (line 2037) | def reset(self, t: Qt3DRender.QTextureImageDataGenerator, /) -> None... method reset (line 2039) | def reset(self, /) -> None: ... method __bool__ (line 2040) | def __bool__(self) -> bool: ... method __copy__ (line 2041) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 2042) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 2043) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2044) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2045) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2046) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2047) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2048) | def __ne__(self, other: object) -> bool: ... class QTextureImageDataPtr (line 2050) | class QTextureImageDataPtr(shiboken6.Object): method __init__ (line 2052) | def __init__(self, pointee: Qt3DRender.QTextureImageData, /) -> None... method __init__ (line 2054) | def __init__(self, /) -> None: ... method data (line 2055) | def data(self, /) -> Qt3DRender.QTextureImageData: ... method reset (line 2057) | def reset(self, t: Qt3DRender.QTextureImageData, /) -> None: ... method reset (line 2059) | def reset(self, /) -> None: ... method __bool__ (line 2060) | def __bool__(self) -> bool: ... method __copy__ (line 2061) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 2062) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 2063) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2064) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2065) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2066) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2067) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2068) | def __ne__(self, other: object) -> bool: ... class QTextureLoader (line 2070) | class QTextureLoader(Qt3DRender.QAbstractTexture): method __init__ (line 2074) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method isMirrored (line 2075) | def isMirrored(self, /) -> bool: ... method setMirrored (line 2076) | def setMirrored(self, mirrored: bool, /) -> None: ... method setSource (line 2077) | def setSource(self, source: PySide6.QtCore.QUrl | str, /) -> None: ... method source (line 2078) | def source(self, /) -> PySide6.QtCore.QUrl: ... class QTextureRectangle (line 2080) | class QTextureRectangle(Qt3DRender.QAbstractTexture): method __init__ (line 2082) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... class QTextureWrapMode (line 2084) | class QTextureWrapMode(PySide6.QtCore.QObject): class WrapMode (line 2085) | class WrapMode(enum.Enum): method __init__ (line 2095) | def __init__(self, /, wrapMode: Qt3DRender.QTextureWrapMode.WrapMode... method __init__ (line 2097) | def __init__(self, x: Qt3DRender.QTextureWrapMode.WrapMode, y: Qt3DR... method setX (line 2098) | def setX(self, x: Qt3DRender.QTextureWrapMode.WrapMode, /) -> None: ... method setY (line 2099) | def setY(self, y: Qt3DRender.QTextureWrapMode.WrapMode, /) -> None: ... method setZ (line 2100) | def setZ(self, z: Qt3DRender.QTextureWrapMode.WrapMode, /) -> None: ... method x (line 2101) | def x(self, /) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method y (line 2102) | def y(self, /) -> Qt3DRender.QTextureWrapMode.WrapMode: ... method z (line 2103) | def z(self, /) -> Qt3DRender.QTextureWrapMode.WrapMode: ... class QViewport (line 2105) | class QViewport(Qt3DRender.QFrameGraphNode): method __init__ (line 2109) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method gamma (line 2110) | def gamma(self, /) -> float: ... method normalizedRect (line 2111) | def normalizedRect(self, /) -> PySide6.QtCore.QRectF: ... method setGamma (line 2112) | def setGamma(self, gamma: float, /) -> None: ... method setNormalizedRect (line 2113) | def setNormalizedRect(self, normalizedRect: PySide6.QtCore.QRectF | ... class QWaitFence (line 2115) | class QWaitFence(Qt3DRender.QFrameGraphNode): class HandleType (line 2116) | class HandleType(enum.Enum): method __init__ (line 2124) | def __init__(self, /, parent: PySide6.Qt3DCore.Qt3DCore.QNode | None... method handle (line 2125) | def handle(self, /) -> Any: ... method handleType (line 2126) | def handleType(self, /) -> Qt3DRender.QWaitFence.HandleType: ... method setHandle (line 2127) | def setHandle(self, handle: Any, /) -> None: ... method setHandleType (line 2128) | def setHandleType(self, type: Qt3DRender.QWaitFence.HandleType, /) -... method setTimeout (line 2129) | def setTimeout(self, timeout: int, /) -> None: ... method setWaitOnCPU (line 2130) | def setWaitOnCPU(self, waitOnCPU: bool, /) -> None: ... method timeout (line 2131) | def timeout(self, /) -> int: ... method waitOnCPU (line 2132) | def waitOnCPU(self, /) -> bool: ... method __init__ (line 2133) | def __init__(self, *args, **kwargs) -> None: ... method swap (line 2135) | def swap(lhs: Qt3DRender.QTextureDataUpdate, rhs: Qt3DRender.QTextureD... FILE: pyside6/stubs/PySide6-stubs/QtAsyncio/events.pyi class QAsyncioExecutorWrapper (line 18) | class QAsyncioExecutorWrapper(QObject): method __init__ (line 24) | def __init__(self, func: Callable[[Unpack[_Ts]], Any], *args: Unpack[_... method _cb (line 25) | def _cb(self) -> None: ... method do (line 26) | def do(self) -> Any: ... method exit (line 27) | def exit(self) -> None: ... class QAsyncioEventLoopPolicy (line 29) | class QAsyncioEventLoopPolicy(asyncio.AbstractEventLoopPolicy): method __init__ (line 33) | def __init__(self, quit_qapp: bool = True, handle_sigint: bool = False... method get_event_loop (line 34) | def get_event_loop(self) -> asyncio.AbstractEventLoop: ... method set_event_loop (line 35) | def set_event_loop(self, loop: asyncio.AbstractEventLoop | None) -> No... method new_event_loop (line 36) | def new_event_loop(self) -> asyncio.AbstractEventLoop: ... method get_child_watcher (line 37) | def get_child_watcher(self) -> asyncio.AbstractChildWatcher: ... method set_child_watcher (line 38) | def set_child_watcher(self, watcher: asyncio.AbstractChildWatcher) -> ... class QAsyncioEventLoop (line 40) | class QAsyncioEventLoop(asyncio.BaseEventLoop, QObject): class ShutDownThread (line 41) | class ShutDownThread(QThread): method __init__ (line 44) | def __init__(self, future: futures.QAsyncioFuture, loop: QAsyncioEve... method run (line 45) | def run(self) -> None: ... method shutdown (line 46) | def shutdown(self) -> None: ... method __init__ (line 59) | def __init__(self, application: QCoreApplication, quit_qapp: bool = Tr... method _run_until_complete_cb (line 60) | def _run_until_complete_cb(self, future: futures.QAsyncioFuture) -> No... method run_until_complete (line 61) | def run_until_complete(self, future: futures.QAsyncioFuture) -> Any: .... method run_forever (line 62) | def run_forever(self) -> None: ... method _about_to_quit_cb (line 63) | def _about_to_quit_cb(self) -> None: ... method stop (line 64) | def stop(self) -> None: ... method is_running (line 65) | def is_running(self) -> bool: ... method is_closed (line 66) | def is_closed(self) -> bool: ... method close (line 67) | def close(self) -> None: ... method shutdown_asyncgens (line 68) | async def shutdown_asyncgens(self) -> None: ... method shutdown_default_executor (line 69) | async def shutdown_default_executor(self, timeout: int | float | None ... method _call_soon_impl (line 70) | def _call_soon_impl(self, callback: Callable[[Unpack[_Ts]], object], *... method call_soon (line 71) | def call_soon(self, callback: Callable[[Unpack[_Ts]], object], *args: ... method call_soon_threadsafe (line 72) | def call_soon_threadsafe(self, callback: Callable[[Unpack[_Ts]], objec... method _call_later_impl (line 73) | def _call_later_impl(self, delay: float, callback: Callable[[Unpack[_T... method call_later (line 74) | def call_later(self, delay: float, callback: Callable[[Unpack[_Ts]], o... method _call_at_impl (line 75) | def _call_at_impl(self, when: float, callback: Callable[[Unpack[_Ts]],... method call_at (line 76) | def call_at(self, when: float, callback: Callable[[Unpack[_Ts]], objec... method time (line 77) | def time(self) -> float: ... method create_future (line 78) | def create_future(self) -> futures.QAsyncioFuture: ... # type: ignore... method create_task (line 79) | def create_task(self, coro: collections.abc.Generator | collections.ab... method set_task_factory (line 80) | def set_task_factory(self, factory: Callable | None) -> None: ... method get_task_factory (line 81) | def get_task_factory(self) -> Callable | None: ... method create_connection (line 82) | async def create_connection(self, protocol_factory, host=None, port=No... method create_datagram_endpoint (line 83) | async def create_datagram_endpoint(self, protocol_factory, local_addr=... method create_unix_connection (line 84) | async def create_unix_connection(self, protocol_factory, path=None, *,... method create_server (line 85) | async def create_server(self, protocol_factory, host=None, port=None, ... method create_unix_server (line 86) | async def create_unix_server(self, protocol_factory, path=None, *, soc... method connect_accepted_socket (line 87) | async def connect_accepted_socket(self, protocol_factory, sock, *, ssl... method sendfile (line 88) | async def sendfile(self, transport, file, offset: int = 0, count=None,... method start_tls (line 89) | async def start_tls(self, transport, protocol, sslcontext, *, server_s... method add_reader (line 90) | def add_reader(self, fd, callback, *args) -> None: ... # type: ignore... method remove_reader (line 91) | def remove_reader(self, fd) -> None: ... # type: ignore[override] method add_writer (line 92) | def add_writer(self, fd, callback, *args) -> None: ... # type: ignore... method remove_writer (line 93) | def remove_writer(self, fd) -> None: ... # type: ignore[override] method sock_recv (line 94) | async def sock_recv(self, sock, nbytes) -> None: ... # type: ignore[o... method sock_recv_into (line 95) | async def sock_recv_into(self, sock, buf) -> None: ... # type: ignore... method sock_recvfrom (line 96) | async def sock_recvfrom(self, sock, bufsize) -> None: ... method sock_recvfrom_into (line 97) | async def sock_recvfrom_into(self, sock, buf, nbytes: int = 0) -> None... method sock_sendall (line 98) | async def sock_sendall(self, sock, data) -> None: ... method sock_sendto (line 99) | async def sock_sendto(self, sock, data, address) -> None: ... method sock_connect (line 100) | async def sock_connect(self, sock, address) -> None: ... method sock_accept (line 101) | async def sock_accept(self, sock) -> None: ... # type: ignore[override] method sock_sendfile (line 102) | async def sock_sendfile(self, sock, file, offset: int = 0, count=None,... method getaddrinfo (line 103) | async def getaddrinfo(self, host, port, *, family: int = 0, type: int ... method getnameinfo (line 104) | async def getnameinfo(self, sockaddr, flags: int = 0) -> None: ... # ... method connect_read_pipe (line 105) | async def connect_read_pipe(self, protocol_factory, pipe) -> None: ...... method connect_write_pipe (line 106) | async def connect_write_pipe(self, protocol_factory, pipe) -> None: ..... method add_signal_handler (line 107) | def add_signal_handler(self, sig, callback, *args) -> None: ... # typ... method remove_signal_handler (line 108) | def remove_signal_handler(self, sig) -> None: ... # type: ignore[over... method run_in_executor (line 109) | def run_in_executor(self, executor: concurrent.futures.ThreadPoolExecu... method set_default_executor (line 110) | def set_default_executor(self, executor: concurrent.futures.ThreadPool... method set_exception_handler (line 111) | def set_exception_handler(self, handler: Callable | None) -> None: ... method get_exception_handler (line 112) | def get_exception_handler(self) -> Callable | None: ... method default_exception_handler (line 113) | def default_exception_handler(self, context: dict[str, Any]) -> None: ... method call_exception_handler (line 114) | def call_exception_handler(self, context: dict[str, Any]) -> None: ... method get_debug (line 115) | def get_debug(self) -> bool: ... method set_debug (line 116) | def set_debug(self, enabled: bool) -> None: ... method subprocess_exec (line 117) | async def subprocess_exec(self, protocol_factory, *args, stdin=..., st... method subprocess_shell (line 118) | async def subprocess_shell(self, protocol_factory, cmd, *, stdin=..., ... class QAsyncioHandle (line 120) | class QAsyncioHandle: class HandleState (line 121) | class HandleState(enum.Enum): method __init__ (line 132) | def __init__(self, callback: Callable, args: tuple, loop: QAsyncioEven... method _start (line 133) | def _start(self) -> None: ... method _schedule_event (line 134) | def _schedule_event(self, timeout: int, func: Callable) -> None: ... method _cb (line 135) | def _cb(self) -> None: ... method cancel (line 136) | def cancel(self) -> None: ... method cancelled (line 137) | def cancelled(self) -> bool: ... class QAsyncioTimerHandle (line 139) | class QAsyncioTimerHandle(QAsyncioHandle, asyncio.TimerHandle): method __init__ (line 142) | def __init__(self, when: float, callback: Callable, args: tuple, loop:... method _start (line 143) | def _start(self) -> None: ... method when (line 144) | def when(self) -> float: ... FILE: pyside6/stubs/PySide6-stubs/QtAsyncio/futures.pyi class QAsyncioFuture (line 9) | class QAsyncioFuture: class FutureState (line 11) | class FutureState(enum.Enum): method __init__ (line 23) | def __init__(self, *, loop: events.QAsyncioEventLoop | None = None, co... method __await__ (line 24) | def __await__(self) -> Generator[Incomplete, None, Incomplete]: ... method _schedule_callbacks (line 26) | def _schedule_callbacks(self, context: contextvars.Context | None = No... method result (line 27) | def result(self) -> Any | Exception: ... method set_result (line 28) | def set_result(self, result: Any) -> None: ... method set_exception (line 29) | def set_exception(self, exception: Exception) -> None: ... method done (line 30) | def done(self) -> bool: ... method cancelled (line 31) | def cancelled(self) -> bool: ... method add_done_callback (line 32) | def add_done_callback(self, cb: Callable, *, context: contextvars.Cont... method remove_done_callback (line 33) | def remove_done_callback(self, cb: Callable) -> int: ... method cancel (line 34) | def cancel(self, msg: str | None = None) -> bool: ... method exception (line 35) | def exception(self) -> BaseException | None: ... method get_loop (line 36) | def get_loop(self) -> asyncio.AbstractEventLoop: ... FILE: pyside6/stubs/PySide6-stubs/QtAsyncio/tasks.pyi class QAsyncioTask (line 8) | class QAsyncioTask(futures.QAsyncioFuture): method __init__ (line 19) | def __init__(self, coro: collections.abc.Generator | collections.abc.C... method __repr__ (line 20) | def __repr__(self) -> str: ... class QtTaskApiMisuseError (line 21) | class QtTaskApiMisuseError(Exception): ... method set_result (line 22) | def set_result(self, result: Any) -> None: ... method set_exception (line 23) | def set_exception(self, exception: Any) -> None: ... method _step (line 25) | def _step(self, exception_or_future: BaseException | futures.QAsyncioF... method get_stack (line 26) | def get_stack(self, *, limit=None) -> list[Any]: ... method print_stack (line 27) | def print_stack(self, *, limit=None, file=None) -> None: ... method get_coro (line 28) | def get_coro(self) -> collections.abc.Generator | collections.abc.Coro... method get_name (line 29) | def get_name(self) -> str: ... method set_name (line 30) | def set_name(self, value) -> None: ... method cancel (line 31) | def cancel(self, msg: str | None = None) -> bool: ... method uncancel (line 32) | def uncancel(self) -> int: ... method cancelling (line 33) | def cancelling(self) -> int: ... FILE: pyside6/stubs/PySide6-stubs/QtBluetooth.pyi class QBluetooth (line 12) | class QBluetooth(shiboken6.Object): class AttAccessConstraint (line 13) | class AttAccessConstraint(enum.Flag): class Security (line 18) | class Security(enum.Flag): method __init__ (line 24) | def __init__(self, *args, **kwargs) -> None: ... class QBluetoothAddress (line 26) | class QBluetoothAddress(shiboken6.Object): method __init__ (line 28) | def __init__(self, other: QBluetoothAddress, /) -> None: ... method __init__ (line 30) | def __init__(self, address: str, /) -> None: ... method __init__ (line 32) | def __init__(self, address: int, /) -> None: ... method __init__ (line 34) | def __init__(self, /) -> None: ... method clear (line 35) | def clear(self, /) -> None: ... method isNull (line 36) | def isNull(self, /) -> bool: ... method toString (line 37) | def toString(self, /) -> str: ... method toUInt64 (line 38) | def toUInt64(self, /) -> int: ... method __bool__ (line 39) | def __bool__(self) -> bool: ... method __copy__ (line 40) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 41) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 42) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 43) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 44) | def __hash__(self, /) -> int: ... method __le__ (line 45) | def __le__(self, other: object) -> bool: ... method __lt__ (line 46) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 47) | def __ne__(self, other: object) -> bool: ... class QBluetoothDeviceDiscoveryAgent (line 49) | class QBluetoothDeviceDiscoveryAgent(PySide6.QtCore.QObject): class DiscoveryMethod (line 50) | class DiscoveryMethod(enum.Flag): class Error (line 55) | class Error(enum.Enum): method __init__ (line 72) | def __init__(self, deviceAdapter: QBluetoothAddress, /, parent: PySide... method __init__ (line 74) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., can... method discoveredDevices (line 75) | def discoveredDevices(self, /) -> List[QBluetoothDeviceInfo]: ... method error (line 76) | def error(self, /) -> QBluetoothDeviceDiscoveryAgent.Error: ... method errorString (line 77) | def errorString(self, /) -> str: ... method isActive (line 78) | def isActive(self, /) -> bool: ... method lowEnergyDiscoveryTimeout (line 79) | def lowEnergyDiscoveryTimeout(self, /) -> int: ... method setLowEnergyDiscoveryTimeout (line 80) | def setLowEnergyDiscoveryTimeout(self, msTimeout: int, /) -> None: ... method start (line 82) | def start(self, method: QBluetoothDeviceDiscoveryAgent.DiscoveryMethod... method start (line 84) | def start(self, /) -> None: ... method stop (line 85) | def stop(self, /) -> None: ... method supportedDiscoveryMethods (line 87) | def supportedDiscoveryMethods() -> QBluetoothDeviceDiscoveryAgent.Disc... class QBluetoothDeviceInfo (line 89) | class QBluetoothDeviceInfo(shiboken6.Object): class CoreConfiguration (line 90) | class CoreConfiguration(enum.Flag): class Field (line 96) | class Field(enum.Flag): class MajorDeviceClass (line 103) | class MajorDeviceClass(enum.Enum): class MinorAudioVideoClass (line 116) | class MinorAudioVideoClass(enum.Enum): class MinorComputerClass (line 135) | class MinorComputerClass(enum.Enum): class MinorHealthClass (line 144) | class MinorHealthClass(enum.Enum): class MinorImagingClass (line 154) | class MinorImagingClass(enum.Enum): class MinorMiscellaneousClass (line 161) | class MinorMiscellaneousClass(enum.Enum): class MinorNetworkClass (line 164) | class MinorNetworkClass(enum.Enum): class MinorPeripheralClass (line 174) | class MinorPeripheralClass(enum.Enum): class MinorPhoneClass (line 186) | class MinorPhoneClass(enum.Enum): class MinorToyClass (line 194) | class MinorToyClass(enum.Enum): class MinorWearableClass (line 202) | class MinorWearableClass(enum.Enum): class ServiceClass (line 210) | class ServiceClass(enum.Flag): method __init__ (line 222) | def __init__(self, uuid: QBluetoothUuid | QBluetoothUuid.Characteristi... method __init__ (line 224) | def __init__(self, address: QBluetoothAddress, name: str, classOfDevic... method __init__ (line 226) | def __init__(self, other: QBluetoothDeviceInfo, /) -> None: ... method __init__ (line 228) | def __init__(self, /) -> None: ... method address (line 229) | def address(self, /) -> QBluetoothAddress: ... method coreConfigurations (line 230) | def coreConfigurations(self, /) -> QBluetoothDeviceInfo.CoreConfigurat... method deviceUuid (line 231) | def deviceUuid(self, /) -> QBluetoothUuid: ... method isCached (line 232) | def isCached(self, /) -> bool: ... method isValid (line 233) | def isValid(self, /) -> bool: ... method majorDeviceClass (line 234) | def majorDeviceClass(self, /) -> QBluetoothDeviceInfo.MajorDeviceClass... method manufacturerData (line 236) | def manufacturerData(self, manufacturerId: int, /) -> PySide6.QtCore.Q... method manufacturerData (line 238) | def manufacturerData(self, /) -> Dict[int, PySide6.QtCore.QByteArray]:... method manufacturerIds (line 239) | def manufacturerIds(self, /) -> List[int]: ... method minorDeviceClass (line 240) | def minorDeviceClass(self, /) -> int: ... method name (line 241) | def name(self, /) -> str: ... method rssi (line 242) | def rssi(self, /) -> int: ... method serviceClasses (line 243) | def serviceClasses(self, /) -> QBluetoothDeviceInfo.ServiceClass: ... method serviceData (line 245) | def serviceData(self, serviceId: QBluetoothUuid | QBluetoothUuid.Chara... method serviceData (line 247) | def serviceData(self, /) -> Dict[QBluetoothUuid, PySide6.QtCore.QByteA... method serviceIds (line 248) | def serviceIds(self, /) -> List[QBluetoothUuid]: ... method serviceUuids (line 249) | def serviceUuids(self, /) -> List[QBluetoothUuid]: ... method setCached (line 250) | def setCached(self, cached: bool, /) -> None: ... method setCoreConfigurations (line 251) | def setCoreConfigurations(self, coreConfigs: QBluetoothDeviceInfo.Core... method setDeviceUuid (line 252) | def setDeviceUuid(self, uuid: QBluetoothUuid | QBluetoothUuid.Characte... method setManufacturerData (line 253) | def setManufacturerData(self, manufacturerId: int, data: PySide6.QtCor... method setName (line 254) | def setName(self, name: str, /) -> None: ... method setRssi (line 255) | def setRssi(self, signal: int, /) -> None: ... method setServiceData (line 256) | def setServiceData(self, serviceId: QBluetoothUuid | QBluetoothUuid.Ch... method setServiceUuids (line 257) | def setServiceUuids(self, uuids: typing.Iterable[QBluetoothUuid], /) -... method __copy__ (line 258) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 259) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 260) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 261) | def __gt__(self, other: object) -> bool: ... method __le__ (line 262) | def __le__(self, other: object) -> bool: ... method __lt__ (line 263) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 264) | def __ne__(self, other: object) -> bool: ... class QBluetoothHostInfo (line 266) | class QBluetoothHostInfo(shiboken6.Object): method __init__ (line 268) | def __init__(self, other: QBluetoothHostInfo, /) -> None: ... method __init__ (line 270) | def __init__(self, /) -> None: ... method address (line 271) | def address(self, /) -> QBluetoothAddress: ... method name (line 272) | def name(self, /) -> str: ... method setAddress (line 273) | def setAddress(self, address: QBluetoothAddress, /) -> None: ... method setName (line 274) | def setName(self, name: str, /) -> None: ... method __copy__ (line 275) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 276) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 277) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 278) | def __gt__(self, other: object) -> bool: ... method __le__ (line 279) | def __le__(self, other: object) -> bool: ... method __lt__ (line 280) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 281) | def __ne__(self, other: object) -> bool: ... class QBluetoothLocalDevice (line 283) | class QBluetoothLocalDevice(PySide6.QtCore.QObject): class Error (line 284) | class Error(enum.Enum): class HostMode (line 290) | class HostMode(enum.Enum): class Pairing (line 296) | class Pairing(enum.Enum): method __init__ (line 307) | def __init__(self, address: QBluetoothAddress, /, parent: PySide6.QtCo... method __init__ (line 309) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method address (line 310) | def address(self, /) -> QBluetoothAddress: ... method allDevices (line 312) | def allDevices() -> List[QBluetoothHostInfo]: ... method connectedDevices (line 313) | def connectedDevices(self, /) -> List[QBluetoothAddress]: ... method hostMode (line 314) | def hostMode(self, /) -> QBluetoothLocalDevice.HostMode: ... method isValid (line 315) | def isValid(self, /) -> bool: ... method name (line 316) | def name(self, /) -> str: ... method pairingStatus (line 317) | def pairingStatus(self, address: QBluetoothAddress, /) -> QBluetoothLo... method powerOn (line 318) | def powerOn(self, /) -> None: ... method requestPairing (line 319) | def requestPairing(self, address: QBluetoothAddress, pairing: QBluetoo... method setHostMode (line 320) | def setHostMode(self, mode: QBluetoothLocalDevice.HostMode, /) -> None... class QBluetoothServer (line 322) | class QBluetoothServer(PySide6.QtCore.QObject): class Error (line 323) | class Error(enum.Enum): method __init__ (line 334) | def __init__(self, serverType: QBluetoothServiceInfo.Protocol, /, pare... method close (line 335) | def close(self, /) -> None: ... method error (line 336) | def error(self, /) -> QBluetoothServer.Error: ... method hasPendingConnections (line 337) | def hasPendingConnections(self, /) -> bool: ... method isListening (line 338) | def isListening(self, /) -> bool: ... method listen (line 340) | def listen(self, uuid: QBluetoothUuid | QBluetoothUuid.CharacteristicT... method listen (line 342) | def listen(self, /, address: QBluetoothAddress = ..., port: int | None... method maxPendingConnections (line 343) | def maxPendingConnections(self, /) -> int: ... method nextPendingConnection (line 344) | def nextPendingConnection(self, /) -> QBluetoothSocket: ... method securityFlags (line 345) | def securityFlags(self, /) -> QBluetooth.Security: ... method serverAddress (line 346) | def serverAddress(self, /) -> QBluetoothAddress: ... method serverPort (line 347) | def serverPort(self, /) -> int: ... method serverType (line 348) | def serverType(self, /) -> QBluetoothServiceInfo.Protocol: ... method setMaxPendingConnections (line 349) | def setMaxPendingConnections(self, numConnections: int, /) -> None: ... method setSecurityFlags (line 350) | def setSecurityFlags(self, security: QBluetooth.Security, /) -> None: ... class QBluetoothServiceDiscoveryAgent (line 352) | class QBluetoothServiceDiscoveryAgent(PySide6.QtCore.QObject): class DiscoveryMode (line 353) | class DiscoveryMode(enum.Enum): class Error (line 357) | class Error(enum.Enum): method __init__ (line 370) | def __init__(self, deviceAdapter: QBluetoothAddress, /, parent: PySide... method __init__ (line 372) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., can... method clear (line 373) | def clear(self, /) -> None: ... method discoveredServices (line 374) | def discoveredServices(self, /) -> List[QBluetoothServiceInfo]: ... method error (line 375) | def error(self, /) -> QBluetoothServiceDiscoveryAgent.Error: ... method errorString (line 376) | def errorString(self, /) -> str: ... method isActive (line 377) | def isActive(self, /) -> bool: ... method remoteAddress (line 378) | def remoteAddress(self, /) -> QBluetoothAddress: ... method setRemoteAddress (line 379) | def setRemoteAddress(self, address: QBluetoothAddress, /) -> bool: ... method setUuidFilter (line 381) | def setUuidFilter(self, uuids: typing.Iterable[QBluetoothUuid], /) -> ... method setUuidFilter (line 383) | def setUuidFilter(self, uuid: QBluetoothUuid | QBluetoothUuid.Characte... method start (line 384) | def start(self, /, mode: QBluetoothServiceDiscoveryAgent.DiscoveryMode... method stop (line 385) | def stop(self, /) -> None: ... method uuidFilter (line 386) | def uuidFilter(self, /) -> List[QBluetoothUuid]: ... class QBluetoothServiceInfo (line 388) | class QBluetoothServiceInfo(shiboken6.Object): class Alternative (line 389) | class Alternative(shiboken6.Object): method __init__ (line 391) | def __init__(self, list: typing.Iterable[typing.Any], /) -> None: ... method __init__ (line 393) | def __init__(self, Alternative: QBluetoothServiceInfo.Alternative, /... method __init__ (line 395) | def __init__(self, /) -> None: ... method append (line 397) | def append(self, l: typing.Iterable[typing.Any], /) -> None: ... method append (line 399) | def append(self, arg__1: Any, /) -> None: ... method at (line 400) | def at(self, i: int, /) -> Any: ... method back (line 401) | def back(self, /) -> Any: ... method capacity (line 402) | def capacity(self, /) -> int: ... method clear (line 403) | def clear(self, /) -> None: ... method constData (line 404) | def constData(self, /) -> typing.Any: ... method constFirst (line 405) | def constFirst(self, /) -> Any: ... method constLast (line 406) | def constLast(self, /) -> Any: ... method count (line 407) | def count(self, /) -> int: ... method data (line 408) | def data(self, /) -> typing.Any: ... method empty (line 409) | def empty(self, /) -> bool: ... method first (line 411) | def first(self, n: int, /) -> List[Any]: ... method first (line 413) | def first(self, /) -> Any: ... method fromList (line 415) | def fromList(list: typing.Iterable[typing.Any], /) -> List[Any]: ... method fromVector (line 417) | def fromVector(vector: typing.Iterable[typing.Any], /) -> List[Any]:... method front (line 418) | def front(self, /) -> Any: ... method insert (line 419) | def insert(self, arg__1: int, arg__2: Any, /) -> None: ... method isEmpty (line 420) | def isEmpty(self, /) -> bool: ... method isSharedWith (line 421) | def isSharedWith(self, other: typing.Iterable[typing.Any], /) -> boo... method last (line 423) | def last(self, n: int, /) -> List[Any]: ... method last (line 425) | def last(self, /) -> Any: ... method length (line 426) | def length(self, /) -> int: ... method maxSize (line 428) | def maxSize() -> int: ... method max_size (line 429) | def max_size(self, /) -> int: ... method mid (line 430) | def mid(self, pos: int, /, len: int = ...) -> List[Any]: ... method move (line 431) | def move(self, from_: int, to: int, /) -> None: ... method pop_back (line 432) | def pop_back(self, /) -> None: ... method pop_front (line 433) | def pop_front(self, /) -> None: ... method prepend (line 434) | def prepend(self, arg__1: Any, /) -> None: ... method push_back (line 435) | def push_back(self, arg__1: Any, /) -> None: ... method push_front (line 436) | def push_front(self, arg__1: Any, /) -> None: ... method remove (line 437) | def remove(self, i: int, /, n: int = ...) -> None: ... method removeAll (line 438) | def removeAll(self, arg__1: Any, /) -> None: ... method removeAt (line 439) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 440) | def removeFirst(self, /) -> None: ... method removeLast (line 441) | def removeLast(self, /) -> None: ... method removeOne (line 442) | def removeOne(self, arg__1: Any, /) -> None: ... method reserve (line 443) | def reserve(self, size: int, /) -> None: ... method resize (line 444) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 445) | def resizeForOverwrite(self, size: int, /) -> None: ... method shrink_to_fit (line 446) | def shrink_to_fit(self, /) -> None: ... method size (line 447) | def size(self, /) -> int: ... method sliced (line 449) | def sliced(self, pos: int, n: int, /) -> List[Any]: ... method sliced (line 451) | def sliced(self, pos: int, /) -> List[Any]: ... method squeeze (line 452) | def squeeze(self, /) -> None: ... method swap (line 453) | def swap(self, other: typing.Iterable[typing.Any], /) -> None: ... method swapItemsAt (line 454) | def swapItemsAt(self, i: int, j: int, /) -> None: ... method takeAt (line 455) | def takeAt(self, i: int, /) -> Any: ... method toList (line 456) | def toList(self, /) -> List[Any]: ... method toVector (line 457) | def toVector(self, /) -> List[Any]: ... method value (line 458) | def value(self, i: int, /) -> Any: ... method __add__ (line 459) | def __add__(self, l: typing.Iterable[typing.Any], /) -> List[Any]: ... method __copy__ (line 460) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 461) | def __delitem__(self, other) -> None: ... method __getitem__ (line 462) | def __getitem__(self, index): ... method __iadd__ (line 463) | def __iadd__(self, l: typing.Iterable[typing.Any], /) -> List[Any]: ... method __len__ (line 464) | def __len__(self) -> int: ... method __lshift__ (line 465) | def __lshift__(self, l: typing.Iterable[typing.Any], /) -> List[Any]... method __radd__ (line 466) | def __radd__(self, other): ... method __rlshift__ (line 467) | def __rlshift__(self, other): ... method __setitem__ (line 468) | def __setitem__(self, index, object) -> None: ... class AttributeId (line 470) | class AttributeId(enum.Enum): class Protocol (line 490) | class Protocol(enum.Enum): class Sequence (line 495) | class Sequence(shiboken6.Object): method __init__ (line 497) | def __init__(self, list: typing.Iterable[typing.Any], /) -> None: ... method __init__ (line 499) | def __init__(self, Sequence: QBluetoothServiceInfo.Sequence, /) -> N... method __init__ (line 501) | def __init__(self, /) -> None: ... method append (line 503) | def append(self, l: typing.Iterable[typing.Any], /) -> None: ... method append (line 505) | def append(self, arg__1: Any, /) -> None: ... method at (line 506) | def at(self, i: int, /) -> Any: ... method back (line 507) | def back(self, /) -> Any: ... method capacity (line 508) | def capacity(self, /) -> int: ... method clear (line 509) | def clear(self, /) -> None: ... method constData (line 510) | def constData(self, /) -> typing.Any: ... method constFirst (line 511) | def constFirst(self, /) -> Any: ... method constLast (line 512) | def constLast(self, /) -> Any: ... method count (line 513) | def count(self, /) -> int: ... method data (line 514) | def data(self, /) -> typing.Any: ... method empty (line 515) | def empty(self, /) -> bool: ... method first (line 517) | def first(self, n: int, /) -> List[Any]: ... method first (line 519) | def first(self, /) -> Any: ... method fromList (line 521) | def fromList(list: typing.Iterable[typing.Any], /) -> List[Any]: ... method fromVector (line 523) | def fromVector(vector: typing.Iterable[typing.Any], /) -> List[Any]:... method front (line 524) | def front(self, /) -> Any: ... method insert (line 525) | def insert(self, arg__1: int, arg__2: Any, /) -> None: ... method isEmpty (line 526) | def isEmpty(self, /) -> bool: ... method isSharedWith (line 527) | def isSharedWith(self, other: typing.Iterable[typing.Any], /) -> boo... method last (line 529) | def last(self, n: int, /) -> List[Any]: ... method last (line 531) | def last(self, /) -> Any: ... method length (line 532) | def length(self, /) -> int: ... method maxSize (line 534) | def maxSize() -> int: ... method max_size (line 535) | def max_size(self, /) -> int: ... method mid (line 536) | def mid(self, pos: int, /, len: int = ...) -> List[Any]: ... method move (line 537) | def move(self, from_: int, to: int, /) -> None: ... method pop_back (line 538) | def pop_back(self, /) -> None: ... method pop_front (line 539) | def pop_front(self, /) -> None: ... method prepend (line 540) | def prepend(self, arg__1: Any, /) -> None: ... method push_back (line 541) | def push_back(self, arg__1: Any, /) -> None: ... method push_front (line 542) | def push_front(self, arg__1: Any, /) -> None: ... method remove (line 543) | def remove(self, i: int, /, n: int = ...) -> None: ... method removeAll (line 544) | def removeAll(self, arg__1: Any, /) -> None: ... method removeAt (line 545) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 546) | def removeFirst(self, /) -> None: ... method removeLast (line 547) | def removeLast(self, /) -> None: ... method removeOne (line 548) | def removeOne(self, arg__1: Any, /) -> None: ... method reserve (line 549) | def reserve(self, size: int, /) -> None: ... method resize (line 550) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 551) | def resizeForOverwrite(self, size: int, /) -> None: ... method shrink_to_fit (line 552) | def shrink_to_fit(self, /) -> None: ... method size (line 553) | def size(self, /) -> int: ... method sliced (line 555) | def sliced(self, pos: int, n: int, /) -> List[Any]: ... method sliced (line 557) | def sliced(self, pos: int, /) -> List[Any]: ... method squeeze (line 558) | def squeeze(self, /) -> None: ... method swap (line 559) | def swap(self, other: typing.Iterable[typing.Any], /) -> None: ... method swapItemsAt (line 560) | def swapItemsAt(self, i: int, j: int, /) -> None: ... method takeAt (line 561) | def takeAt(self, i: int, /) -> Any: ... method toList (line 562) | def toList(self, /) -> List[Any]: ... method toVector (line 563) | def toVector(self, /) -> List[Any]: ... method value (line 564) | def value(self, i: int, /) -> Any: ... method __add__ (line 565) | def __add__(self, l: typing.Iterable[typing.Any], /) -> List[Any]: ... method __copy__ (line 566) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 567) | def __delitem__(self, other) -> None: ... method __getitem__ (line 568) | def __getitem__(self, index): ... method __iadd__ (line 569) | def __iadd__(self, l: typing.Iterable[typing.Any], /) -> List[Any]: ... method __len__ (line 570) | def __len__(self) -> int: ... method __lshift__ (line 571) | def __lshift__(self, l: typing.Iterable[typing.Any], /) -> List[Any]... method __radd__ (line 572) | def __radd__(self, other): ... method __rlshift__ (line 573) | def __rlshift__(self, other): ... method __setitem__ (line 574) | def __setitem__(self, index, object) -> None: ... method __init__ (line 576) | def __init__(self, other: QBluetoothServiceInfo, /) -> None: ... method __init__ (line 578) | def __init__(self, /) -> None: ... method attribute (line 579) | def attribute(self, attributeId: int, /) -> Any: ... method attributes (line 580) | def attributes(self, /) -> List[int]: ... method contains (line 581) | def contains(self, attributeId: int, /) -> bool: ... method device (line 582) | def device(self, /) -> QBluetoothDeviceInfo: ... method isComplete (line 583) | def isComplete(self, /) -> bool: ... method isRegistered (line 584) | def isRegistered(self, /) -> bool: ... method isValid (line 585) | def isValid(self, /) -> bool: ... method protocolDescriptor (line 586) | def protocolDescriptor(self, protocol: QBluetoothUuid.ProtocolUuid, /)... method protocolServiceMultiplexer (line 587) | def protocolServiceMultiplexer(self, /) -> int: ... method registerService (line 588) | def registerService(self, /, localAdapter: QBluetoothAddress = ...) ->... method removeAttribute (line 589) | def removeAttribute(self, attributeId: int, /) -> None: ... method serverChannel (line 590) | def serverChannel(self, /) -> int: ... method serviceAvailability (line 591) | def serviceAvailability(self, /) -> int: ... method serviceClassUuids (line 592) | def serviceClassUuids(self, /) -> List[QBluetoothUuid]: ... method serviceDescription (line 593) | def serviceDescription(self, /) -> str: ... method serviceName (line 594) | def serviceName(self, /) -> str: ... method serviceProvider (line 595) | def serviceProvider(self, /) -> str: ... method serviceUuid (line 596) | def serviceUuid(self, /) -> QBluetoothUuid: ... method setAttribute (line 598) | def setAttribute(self, attributeId: int, value: QBluetoothServiceInfo.... method setAttribute (line 600) | def setAttribute(self, attributeId: int, value: QBluetoothServiceInfo.... method setAttribute (line 602) | def setAttribute(self, attributeId: int, value: QBluetoothUuid | QBlue... method setAttribute (line 604) | def setAttribute(self, attributeId: int, value: Any, /) -> None: ... method setDevice (line 605) | def setDevice(self, info: QBluetoothDeviceInfo, /) -> None: ... method setServiceAvailability (line 606) | def setServiceAvailability(self, availability: int, /) -> None: ... method setServiceDescription (line 607) | def setServiceDescription(self, description: str, /) -> None: ... method setServiceName (line 608) | def setServiceName(self, name: str, /) -> None: ... method setServiceProvider (line 609) | def setServiceProvider(self, provider: str, /) -> None: ... method setServiceUuid (line 610) | def setServiceUuid(self, uuid: QBluetoothUuid | QBluetoothUuid.Charact... method socketProtocol (line 611) | def socketProtocol(self, /) -> QBluetoothServiceInfo.Protocol: ... method unregisterService (line 612) | def unregisterService(self, /) -> bool: ... method __copy__ (line 613) | def __copy__(self, /) -> typing_extensions.Self: ... class QBluetoothSocket (line 615) | class QBluetoothSocket(PySide6.QtCore.QIODevice): class SocketError (line 616) | class SocketError(enum.Enum): class SocketState (line 627) | class SocketState(enum.Enum): method __init__ (line 641) | def __init__(self, socketType: QBluetoothServiceInfo.Protocol, /, pare... method __init__ (line 643) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method abort (line 644) | def abort(self, /) -> None: ... method bytesAvailable (line 645) | def bytesAvailable(self, /) -> int: ... method bytesToWrite (line 646) | def bytesToWrite(self, /) -> int: ... method canReadLine (line 647) | def canReadLine(self, /) -> bool: ... method close (line 648) | def close(self, /) -> None: ... method connectToService (line 650) | def connectToService(self, address: QBluetoothAddress, uuid: QBluetoot... method connectToService (line 652) | def connectToService(self, address: QBluetoothAddress, uuid: QBluetoot... method connectToService (line 654) | def connectToService(self, address: QBluetoothAddress, port: int, /, o... method connectToService (line 656) | def connectToService(self, service: QBluetoothServiceInfo, /, openMode... method disconnectFromService (line 657) | def disconnectFromService(self, /) -> None: ... method doDeviceDiscovery (line 658) | def doDeviceDiscovery(self, service: QBluetoothServiceInfo, openMode: ... method error (line 659) | def error(self, /) -> QBluetoothSocket.SocketError: ... method errorString (line 660) | def errorString(self, /) -> str: ... method isSequential (line 661) | def isSequential(self, /) -> bool: ... method localAddress (line 662) | def localAddress(self, /) -> QBluetoothAddress: ... method localName (line 663) | def localName(self, /) -> str: ... method localPort (line 664) | def localPort(self, /) -> int: ... method peerAddress (line 665) | def peerAddress(self, /) -> QBluetoothAddress: ... method peerName (line 666) | def peerName(self, /) -> str: ... method peerPort (line 667) | def peerPort(self, /) -> int: ... method preferredSecurityFlags (line 668) | def preferredSecurityFlags(self, /) -> QBluetooth.Security: ... method readData (line 669) | def readData(self, maxSize: int, /) -> typing.Any: ... method setPreferredSecurityFlags (line 670) | def setPreferredSecurityFlags(self, flags: QBluetooth.Security, /) -> ... method setSocketDescriptor (line 671) | def setSocketDescriptor(self, socketDescriptor: int, socketType: QBlue... method setSocketError (line 672) | def setSocketError(self, error: QBluetoothSocket.SocketError, /) -> No... method setSocketState (line 673) | def setSocketState(self, state: QBluetoothSocket.SocketState, /) -> No... method socketDescriptor (line 674) | def socketDescriptor(self, /) -> int: ... method socketType (line 675) | def socketType(self, /) -> QBluetoothServiceInfo.Protocol: ... method state (line 676) | def state(self, /) -> QBluetoothSocket.SocketState: ... method writeData (line 677) | def writeData(self, data: bytes | bytearray | memoryview, maxSize: int... class QBluetoothUuid (line 679) | class QBluetoothUuid(PySide6.QtCore.QUuid): class CharacteristicType (line 680) | class CharacteristicType(enum.Enum): class DescriptorType (line 819) | class DescriptorType(enum.Enum): class ProtocolUuid (line 834) | class ProtocolUuid(enum.Enum): class ServiceClassUuid (line 861) | class ServiceClassUuid(enum.Enum): method __init__ (line 954) | def __init__(self, uuid: QBluetoothUuid, /) -> None: ... method __init__ (line 956) | def __init__(self, uuid: QBluetoothUuid.CharacteristicType, /) -> None... method __init__ (line 958) | def __init__(self, uuid: QBluetoothUuid.DescriptorType, /) -> None: ... method __init__ (line 960) | def __init__(self, uuid: QBluetoothUuid.ProtocolUuid, /) -> None: ... method __init__ (line 962) | def __init__(self, uuid: PySide6.QtCore.QUuid, /) -> None: ... method __init__ (line 964) | def __init__(self, uuid: QBluetoothUuid.ServiceClassUuid, /) -> None: ... method __init__ (line 966) | def __init__(self, uuid: int, /) -> None: ... method __init__ (line 968) | def __init__(self, /) -> None: ... method characteristicToString (line 970) | def characteristicToString(uuid: QBluetoothUuid.CharacteristicType, /)... method descriptorToString (line 972) | def descriptorToString(uuid: QBluetoothUuid.DescriptorType, /) -> str:... method minimumSize (line 973) | def minimumSize(self, /) -> int: ... method protocolToString (line 975) | def protocolToString(uuid: QBluetoothUuid.ProtocolUuid, /) -> str: ... method serviceClassToString (line 977) | def serviceClassToString(uuid: QBluetoothUuid.ServiceClassUuid, /) -> ... method toUInt16 (line 978) | def toUInt16(self, /) -> Tuple[int, bool]: ... method toUInt32 (line 979) | def toUInt32(self, /) -> Tuple[int, bool]: ... method __copy__ (line 980) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 981) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 982) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 983) | def __gt__(self, other: object) -> bool: ... method __le__ (line 984) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 985) | def __lshift__(self, s: PySide6.QtCore.QDataStream, /) -> PySide6.QtCo... method __lt__ (line 986) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 987) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 988) | def __rlshift__(self, other): ... method __rrshift__ (line 989) | def __rrshift__(self, other): ... method __rshift__ (line 990) | def __rshift__(self, s: PySide6.QtCore.QDataStream, /) -> PySide6.QtCo... class QIntList (line 992) | class QIntList: method __init__ (line 994) | def __init__(self, *args, **kwargs) -> None: ... method append (line 995) | def append(self, *args, **kwargs): ... method capacity (line 996) | def capacity(self, *args, **kwargs): ... method clear (line 997) | def clear(self, *args, **kwargs): ... method constData (line 998) | def constData(self, *args, **kwargs): ... method data (line 999) | def data(self, *args, **kwargs): ... method pop_back (line 1000) | def pop_back(self, *args, **kwargs): ... method pop_front (line 1001) | def pop_front(self, *args, **kwargs): ... method prepend (line 1002) | def prepend(self, *args, **kwargs): ... method push_back (line 1003) | def push_back(self, *args, **kwargs): ... method push_front (line 1004) | def push_front(self, *args, **kwargs): ... method removeFirst (line 1005) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 1006) | def removeLast(self, *args, **kwargs): ... method reserve (line 1007) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 1008) | def __delitem__(self, other) -> None: ... method __getitem__ (line 1009) | def __getitem__(self, index): ... method __len__ (line 1010) | def __len__(self) -> int: ... method __setitem__ (line 1011) | def __setitem__(self, index, object) -> None: ... class QLowEnergyAdvertisingData (line 1013) | class QLowEnergyAdvertisingData(shiboken6.Object): class Discoverability (line 1014) | class Discoverability(enum.Enum): method __init__ (line 1019) | def __init__(self, other: QLowEnergyAdvertisingData, /) -> None: ... method __init__ (line 1021) | def __init__(self, /) -> None: ... method discoverability (line 1022) | def discoverability(self, /) -> QLowEnergyAdvertisingData.Discoverabil... method includePowerLevel (line 1023) | def includePowerLevel(self, /) -> bool: ... method invalidManufacturerId (line 1025) | def invalidManufacturerId() -> int: ... method localName (line 1026) | def localName(self, /) -> str: ... method manufacturerData (line 1027) | def manufacturerData(self, /) -> PySide6.QtCore.QByteArray: ... method manufacturerId (line 1028) | def manufacturerId(self, /) -> int: ... method rawData (line 1029) | def rawData(self, /) -> PySide6.QtCore.QByteArray: ... method services (line 1030) | def services(self, /) -> List[QBluetoothUuid]: ... method setDiscoverability (line 1031) | def setDiscoverability(self, mode: QLowEnergyAdvertisingData.Discovera... method setIncludePowerLevel (line 1032) | def setIncludePowerLevel(self, doInclude: bool, /) -> None: ... method setLocalName (line 1033) | def setLocalName(self, name: str, /) -> None: ... method setManufacturerData (line 1034) | def setManufacturerData(self, id: int, data: PySide6.QtCore.QByteArray... method setRawData (line 1035) | def setRawData(self, data: PySide6.QtCore.QByteArray | bytes | bytearr... method setServices (line 1036) | def setServices(self, services: typing.Iterable[QBluetoothUuid], /) ->... method swap (line 1037) | def swap(self, other: QLowEnergyAdvertisingData, /) -> None: ... method __copy__ (line 1038) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1039) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1040) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1041) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1042) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1043) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1044) | def __ne__(self, other: object) -> bool: ... class QLowEnergyAdvertisingParameters (line 1046) | class QLowEnergyAdvertisingParameters(shiboken6.Object): class AddressInfo (line 1047) | class AddressInfo(shiboken6.Object): method __init__ (line 1051) | def __init__(self, addr: QBluetoothAddress, t: QLowEnergyController.... method __init__ (line 1053) | def __init__(self, AddressInfo: QLowEnergyAdvertisingParameters.Addr... method __init__ (line 1055) | def __init__(self, /) -> None: ... method __copy__ (line 1056) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1057) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1058) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1059) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1060) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1061) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1062) | def __ne__(self, other: object) -> bool: ... class FilterPolicy (line 1064) | class FilterPolicy(enum.Enum): class Mode (line 1070) | class Mode(enum.Enum): method __init__ (line 1075) | def __init__(self, other: QLowEnergyAdvertisingParameters, /) -> None:... method __init__ (line 1077) | def __init__(self, /) -> None: ... method filterPolicy (line 1078) | def filterPolicy(self, /) -> QLowEnergyAdvertisingParameters.FilterPol... method maximumInterval (line 1079) | def maximumInterval(self, /) -> int: ... method minimumInterval (line 1080) | def minimumInterval(self, /) -> int: ... method mode (line 1081) | def mode(self, /) -> QLowEnergyAdvertisingParameters.Mode: ... method setInterval (line 1082) | def setInterval(self, minimum: int, maximum: int, /) -> None: ... method setMode (line 1083) | def setMode(self, mode: QLowEnergyAdvertisingParameters.Mode, /) -> No... method setWhiteList (line 1084) | def setWhiteList(self, whiteList: typing.Iterable[QLowEnergyAdvertisin... method swap (line 1085) | def swap(self, other: QLowEnergyAdvertisingParameters, /) -> None: ... method whiteList (line 1086) | def whiteList(self, /) -> List[QLowEnergyAdvertisingParameters.Address... method __copy__ (line 1087) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1088) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1089) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1090) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1091) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1092) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1093) | def __ne__(self, other: object) -> bool: ... class QLowEnergyCharacteristic (line 1095) | class QLowEnergyCharacteristic(shiboken6.Object): class PropertyType (line 1096) | class PropertyType(enum.Flag): method __init__ (line 1110) | def __init__(self, other: QLowEnergyCharacteristic, /) -> None: ... method __init__ (line 1112) | def __init__(self, /) -> None: ... method clientCharacteristicConfiguration (line 1113) | def clientCharacteristicConfiguration(self, /) -> QLowEnergyDescriptor... method descriptor (line 1114) | def descriptor(self, uuid: QBluetoothUuid | QBluetoothUuid.Characteris... method descriptors (line 1115) | def descriptors(self, /) -> List[QLowEnergyDescriptor]: ... method isValid (line 1116) | def isValid(self, /) -> bool: ... method name (line 1117) | def name(self, /) -> str: ... method properties (line 1118) | def properties(self, /) -> QLowEnergyCharacteristic.PropertyType: ... method uuid (line 1119) | def uuid(self, /) -> QBluetoothUuid: ... method value (line 1120) | def value(self, /) -> PySide6.QtCore.QByteArray: ... method __copy__ (line 1121) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1122) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1123) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1124) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1125) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1126) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1127) | def __ne__(self, other: object) -> bool: ... class QLowEnergyCharacteristicData (line 1129) | class QLowEnergyCharacteristicData(shiboken6.Object): method __init__ (line 1131) | def __init__(self, other: QLowEnergyCharacteristicData, /) -> None: ... method __init__ (line 1133) | def __init__(self, /) -> None: ... method addDescriptor (line 1134) | def addDescriptor(self, descriptor: QLowEnergyDescriptorData, /) -> No... method descriptors (line 1135) | def descriptors(self, /) -> List[QLowEnergyDescriptorData]: ... method isValid (line 1136) | def isValid(self, /) -> bool: ... method maximumValueLength (line 1137) | def maximumValueLength(self, /) -> int: ... method minimumValueLength (line 1138) | def minimumValueLength(self, /) -> int: ... method properties (line 1139) | def properties(self, /) -> QLowEnergyCharacteristic.PropertyType: ... method readConstraints (line 1140) | def readConstraints(self, /) -> QBluetooth.AttAccessConstraint: ... method setDescriptors (line 1141) | def setDescriptors(self, descriptors: typing.Iterable[QLowEnergyDescri... method setProperties (line 1142) | def setProperties(self, properties: QLowEnergyCharacteristic.PropertyT... method setReadConstraints (line 1143) | def setReadConstraints(self, constraints: QBluetooth.AttAccessConstrai... method setUuid (line 1144) | def setUuid(self, uuid: QBluetoothUuid | QBluetoothUuid.Characteristic... method setValue (line 1145) | def setValue(self, value: PySide6.QtCore.QByteArray | bytes | bytearra... method setValueLength (line 1146) | def setValueLength(self, minimum: int, maximum: int, /) -> None: ... method setWriteConstraints (line 1147) | def setWriteConstraints(self, constraints: QBluetooth.AttAccessConstra... method swap (line 1148) | def swap(self, other: QLowEnergyCharacteristicData, /) -> None: ... method uuid (line 1149) | def uuid(self, /) -> QBluetoothUuid: ... method value (line 1150) | def value(self, /) -> PySide6.QtCore.QByteArray: ... method writeConstraints (line 1151) | def writeConstraints(self, /) -> QBluetooth.AttAccessConstraint: ... method __copy__ (line 1152) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1153) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1154) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1155) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1156) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1157) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1158) | def __ne__(self, other: object) -> bool: ... class QLowEnergyConnectionParameters (line 1160) | class QLowEnergyConnectionParameters(shiboken6.Object): method __init__ (line 1162) | def __init__(self, other: QLowEnergyConnectionParameters, /) -> None: ... method __init__ (line 1164) | def __init__(self, /) -> None: ... method latency (line 1165) | def latency(self, /) -> int: ... method maximumInterval (line 1166) | def maximumInterval(self, /) -> float: ... method minimumInterval (line 1167) | def minimumInterval(self, /) -> float: ... method setIntervalRange (line 1168) | def setIntervalRange(self, minimum: float, maximum: float, /) -> None:... method setLatency (line 1169) | def setLatency(self, latency: int, /) -> None: ... method setSupervisionTimeout (line 1170) | def setSupervisionTimeout(self, timeout: int, /) -> None: ... method supervisionTimeout (line 1171) | def supervisionTimeout(self, /) -> int: ... method swap (line 1172) | def swap(self, other: QLowEnergyConnectionParameters, /) -> None: ... method __copy__ (line 1173) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1174) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1175) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1176) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1177) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1178) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1179) | def __ne__(self, other: object) -> bool: ... class QLowEnergyController (line 1181) | class QLowEnergyController(PySide6.QtCore.QObject): class ControllerState (line 1182) | class ControllerState(enum.Enum): class Error (line 1191) | class Error(enum.Enum): class RemoteAddressType (line 1204) | class RemoteAddressType(enum.Enum): class Role (line 1208) | class Role(enum.Enum): method __init__ (line 1221) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method addService (line 1222) | def addService(self, service: QLowEnergyServiceData, /, parent: PySide... method connectToDevice (line 1223) | def connectToDevice(self, /) -> None: ... method createCentral (line 1226) | def createCentral(remoteDevice: QBluetoothDeviceInfo, localDevice: QBl... method createCentral (line 1229) | def createCentral(remoteDevice: QBluetoothDeviceInfo, /, parent: PySid... method createPeripheral (line 1232) | def createPeripheral(localDevice: QBluetoothAddress, /, parent: PySide... method createPeripheral (line 1235) | def createPeripheral(parent: PySide6.QtCore.QObject | None = ...) -> Q... method createServiceObject (line 1236) | def createServiceObject(self, service: QBluetoothUuid | QBluetoothUuid... method disconnectFromDevice (line 1237) | def disconnectFromDevice(self, /) -> None: ... method discoverServices (line 1238) | def discoverServices(self, /) -> None: ... method error (line 1239) | def error(self, /) -> QLowEnergyController.Error: ... method errorString (line 1240) | def errorString(self, /) -> str: ... method localAddress (line 1241) | def localAddress(self, /) -> QBluetoothAddress: ... method mtu (line 1242) | def mtu(self, /) -> int: ... method readRssi (line 1243) | def readRssi(self, /) -> None: ... method remoteAddress (line 1244) | def remoteAddress(self, /) -> QBluetoothAddress: ... method remoteAddressType (line 1245) | def remoteAddressType(self, /) -> QLowEnergyController.RemoteAddressTy... method remoteDeviceUuid (line 1246) | def remoteDeviceUuid(self, /) -> QBluetoothUuid: ... method remoteName (line 1247) | def remoteName(self, /) -> str: ... method requestConnectionUpdate (line 1248) | def requestConnectionUpdate(self, parameters: QLowEnergyConnectionPara... method role (line 1249) | def role(self, /) -> QLowEnergyController.Role: ... method services (line 1250) | def services(self, /) -> List[QBluetoothUuid]: ... method setRemoteAddressType (line 1251) | def setRemoteAddressType(self, type: QLowEnergyController.RemoteAddres... method startAdvertising (line 1252) | def startAdvertising(self, parameters: QLowEnergyAdvertisingParameters... method state (line 1253) | def state(self, /) -> QLowEnergyController.ControllerState: ... method stopAdvertising (line 1254) | def stopAdvertising(self, /) -> None: ... class QLowEnergyDescriptor (line 1256) | class QLowEnergyDescriptor(shiboken6.Object): method __init__ (line 1258) | def __init__(self, other: QLowEnergyDescriptor, /) -> None: ... method __init__ (line 1260) | def __init__(self, /) -> None: ... method isValid (line 1261) | def isValid(self, /) -> bool: ... method name (line 1262) | def name(self, /) -> str: ... method type (line 1263) | def type(self, /) -> QBluetoothUuid.DescriptorType: ... method uuid (line 1264) | def uuid(self, /) -> QBluetoothUuid: ... method value (line 1265) | def value(self, /) -> PySide6.QtCore.QByteArray: ... method __copy__ (line 1266) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1267) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1268) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1269) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1270) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1271) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1272) | def __ne__(self, other: object) -> bool: ... class QLowEnergyDescriptorData (line 1274) | class QLowEnergyDescriptorData(shiboken6.Object): method __init__ (line 1276) | def __init__(self, uuid: QBluetoothUuid | QBluetoothUuid.Characteristi... method __init__ (line 1278) | def __init__(self, other: QLowEnergyDescriptorData, /) -> None: ... method __init__ (line 1280) | def __init__(self, /) -> None: ... method isReadable (line 1281) | def isReadable(self, /) -> bool: ... method isValid (line 1282) | def isValid(self, /) -> bool: ... method isWritable (line 1283) | def isWritable(self, /) -> bool: ... method readConstraints (line 1284) | def readConstraints(self, /) -> QBluetooth.AttAccessConstraint: ... method setReadPermissions (line 1285) | def setReadPermissions(self, readable: bool, /, constraints: QBluetoot... method setUuid (line 1286) | def setUuid(self, uuid: QBluetoothUuid | QBluetoothUuid.Characteristic... method setValue (line 1287) | def setValue(self, value: PySide6.QtCore.QByteArray | bytes | bytearra... method setWritePermissions (line 1288) | def setWritePermissions(self, writable: bool, /, constraints: QBluetoo... method swap (line 1289) | def swap(self, other: QLowEnergyDescriptorData, /) -> None: ... method uuid (line 1290) | def uuid(self, /) -> QBluetoothUuid: ... method value (line 1291) | def value(self, /) -> PySide6.QtCore.QByteArray: ... method writeConstraints (line 1292) | def writeConstraints(self, /) -> QBluetooth.AttAccessConstraint: ... method __copy__ (line 1293) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1294) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1295) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1296) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1297) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1298) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1299) | def __ne__(self, other: object) -> bool: ... class QLowEnergyService (line 1301) | class QLowEnergyService(PySide6.QtCore.QObject): class DiscoveryMode (line 1302) | class DiscoveryMode(enum.Enum): class ServiceError (line 1306) | class ServiceError(enum.Enum): class ServiceState (line 1315) | class ServiceState(enum.Enum): class ServiceType (line 1325) | class ServiceType(enum.Flag): class WriteMode (line 1329) | class WriteMode(enum.Enum): method __init__ (line 1341) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method characteristic (line 1342) | def characteristic(self, uuid: QBluetoothUuid | QBluetoothUuid.Charact... method characteristics (line 1343) | def characteristics(self, /) -> List[QLowEnergyCharacteristic]: ... method contains (line 1345) | def contains(self, descriptor: QLowEnergyDescriptor, /) -> bool: ... method contains (line 1347) | def contains(self, characteristic: QLowEnergyCharacteristic, /) -> boo... method discoverDetails (line 1348) | def discoverDetails(self, /, mode: QLowEnergyService.DiscoveryMode = .... method error (line 1349) | def error(self, /) -> QLowEnergyService.ServiceError: ... method includedServices (line 1350) | def includedServices(self, /) -> List[QBluetoothUuid]: ... method readCharacteristic (line 1351) | def readCharacteristic(self, characteristic: QLowEnergyCharacteristic,... method readDescriptor (line 1352) | def readDescriptor(self, descriptor: QLowEnergyDescriptor, /) -> None:... method serviceName (line 1353) | def serviceName(self, /) -> str: ... method serviceUuid (line 1354) | def serviceUuid(self, /) -> QBluetoothUuid: ... method state (line 1355) | def state(self, /) -> QLowEnergyService.ServiceState: ... method type (line 1356) | def type(self, /) -> QLowEnergyService.ServiceType: ... method writeCharacteristic (line 1357) | def writeCharacteristic(self, characteristic: QLowEnergyCharacteristic... method writeDescriptor (line 1358) | def writeDescriptor(self, descriptor: QLowEnergyDescriptor, newValue: ... class QLowEnergyServiceData (line 1360) | class QLowEnergyServiceData(shiboken6.Object): class ServiceType (line 1361) | class ServiceType(enum.Enum): method __init__ (line 1365) | def __init__(self, other: QLowEnergyServiceData, /) -> None: ... method __init__ (line 1367) | def __init__(self, /) -> None: ... method addCharacteristic (line 1368) | def addCharacteristic(self, characteristic: QLowEnergyCharacteristicDa... method addIncludedService (line 1369) | def addIncludedService(self, service: QLowEnergyService, /) -> None: ... method characteristics (line 1370) | def characteristics(self, /) -> List[QLowEnergyCharacteristicData]: ... method includedServices (line 1371) | def includedServices(self, /) -> List[QLowEnergyService]: ... method isValid (line 1372) | def isValid(self, /) -> bool: ... method setCharacteristics (line 1373) | def setCharacteristics(self, characteristics: typing.Iterable[QLowEner... method setIncludedServices (line 1374) | def setIncludedServices(self, services: typing.Iterable[QLowEnergyServ... method setType (line 1375) | def setType(self, type: QLowEnergyServiceData.ServiceType, /) -> None:... method setUuid (line 1376) | def setUuid(self, uuid: QBluetoothUuid | QBluetoothUuid.Characteristic... method swap (line 1377) | def swap(self, other: QLowEnergyServiceData, /) -> None: ... method type (line 1378) | def type(self, /) -> QLowEnergyServiceData.ServiceType: ... method uuid (line 1379) | def uuid(self, /) -> QBluetoothUuid: ... method __copy__ (line 1380) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1381) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1382) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1383) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1384) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1385) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1386) | def __ne__(self, other: object) -> bool: ... FILE: pyside6/stubs/PySide6-stubs/QtCharts.pyi class QAbstractAxis (line 14) | class QAbstractAxis(PySide6.QtCore.QObject): class AxisType (line 15) | class AxisType(enum.Enum): method __init__ (line 52) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method alignment (line 53) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method gridLineColor (line 54) | def gridLineColor(self, /) -> PySide6.QtGui.QColor: ... method gridLinePen (line 55) | def gridLinePen(self, /) -> PySide6.QtGui.QPen: ... method hide (line 56) | def hide(self, /) -> None: ... method isGridLineVisible (line 57) | def isGridLineVisible(self, /) -> bool: ... method isLineVisible (line 58) | def isLineVisible(self, /) -> bool: ... method isMinorGridLineVisible (line 59) | def isMinorGridLineVisible(self, /) -> bool: ... method isReverse (line 60) | def isReverse(self, /) -> bool: ... method isTitleVisible (line 61) | def isTitleVisible(self, /) -> bool: ... method isVisible (line 62) | def isVisible(self, /) -> bool: ... method labelsAngle (line 63) | def labelsAngle(self, /) -> int: ... method labelsBrush (line 64) | def labelsBrush(self, /) -> PySide6.QtGui.QBrush: ... method labelsColor (line 65) | def labelsColor(self, /) -> PySide6.QtGui.QColor: ... method labelsEditable (line 66) | def labelsEditable(self, /) -> bool: ... method labelsFont (line 67) | def labelsFont(self, /) -> PySide6.QtGui.QFont: ... method labelsTruncated (line 68) | def labelsTruncated(self, /) -> bool: ... method labelsVisible (line 69) | def labelsVisible(self, /) -> bool: ... method linePen (line 70) | def linePen(self, /) -> PySide6.QtGui.QPen: ... method linePenColor (line 71) | def linePenColor(self, /) -> PySide6.QtGui.QColor: ... method minorGridLineColor (line 72) | def minorGridLineColor(self, /) -> PySide6.QtGui.QColor: ... method minorGridLinePen (line 73) | def minorGridLinePen(self, /) -> PySide6.QtGui.QPen: ... method orientation (line 74) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method setGridLineColor (line 75) | def setGridLineColor(self, color: Union[PySide6.QtGui.QColor, str, PyS... method setGridLinePen (line 76) | def setGridLinePen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.P... method setGridLineVisible (line 77) | def setGridLineVisible(self, /, visible: bool = ...) -> None: ... method setLabelsAngle (line 78) | def setLabelsAngle(self, angle: int, /) -> None: ... method setLabelsBrush (line 79) | def setLabelsBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.... method setLabelsColor (line 80) | def setLabelsColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setLabelsEditable (line 81) | def setLabelsEditable(self, /, editable: bool = ...) -> None: ... method setLabelsFont (line 82) | def setLabelsFont(self, font: PySide6.QtGui.QFont | str | typing.Itera... method setLabelsVisible (line 83) | def setLabelsVisible(self, /, visible: bool = ...) -> None: ... method setLinePen (line 84) | def setLinePen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenSt... method setLinePenColor (line 85) | def setLinePenColor(self, color: Union[PySide6.QtGui.QColor, str, PySi... method setLineVisible (line 86) | def setLineVisible(self, /, visible: bool = ...) -> None: ... method setMax (line 87) | def setMax(self, max: Any, /) -> None: ... method setMin (line 88) | def setMin(self, min: Any, /) -> None: ... method setMinorGridLineColor (line 89) | def setMinorGridLineColor(self, color: Union[PySide6.QtGui.QColor, str... method setMinorGridLinePen (line 90) | def setMinorGridLinePen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore... method setMinorGridLineVisible (line 91) | def setMinorGridLineVisible(self, /, visible: bool = ...) -> None: ... method setRange (line 92) | def setRange(self, min: Any, max: Any, /) -> None: ... method setReverse (line 93) | def setReverse(self, /, reverse: bool = ...) -> None: ... method setShadesBorderColor (line 94) | def setShadesBorderColor(self, color: Union[PySide6.QtGui.QColor, str,... method setShadesBrush (line 95) | def setShadesBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.... method setShadesColor (line 96) | def setShadesColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setShadesPen (line 97) | def setShadesPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.Pen... method setShadesVisible (line 98) | def setShadesVisible(self, /, visible: bool = ...) -> None: ... method setTitleBrush (line 99) | def setTitleBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setTitleFont (line 100) | def setTitleFont(self, font: PySide6.QtGui.QFont | str | typing.Iterab... method setTitleText (line 101) | def setTitleText(self, title: str, /) -> None: ... method setTitleVisible (line 102) | def setTitleVisible(self, /, visible: bool = ...) -> None: ... method setTruncateLabels (line 103) | def setTruncateLabels(self, /, truncateLabels: bool = ...) -> None: ... method setVisible (line 104) | def setVisible(self, /, visible: bool = ...) -> None: ... method shadesBorderColor (line 105) | def shadesBorderColor(self, /) -> PySide6.QtGui.QColor: ... method shadesBrush (line 106) | def shadesBrush(self, /) -> PySide6.QtGui.QBrush: ... method shadesColor (line 107) | def shadesColor(self, /) -> PySide6.QtGui.QColor: ... method shadesPen (line 108) | def shadesPen(self, /) -> PySide6.QtGui.QPen: ... method shadesVisible (line 109) | def shadesVisible(self, /) -> bool: ... method show (line 110) | def show(self, /) -> None: ... method titleBrush (line 111) | def titleBrush(self, /) -> PySide6.QtGui.QBrush: ... method titleFont (line 112) | def titleFont(self, /) -> PySide6.QtGui.QFont: ... method titleText (line 113) | def titleText(self, /) -> str: ... method truncateLabels (line 114) | def truncateLabels(self, /) -> bool: ... method type (line 115) | def type(self, /) -> QAbstractAxis.AxisType: ... class QAbstractBarSeries (line 117) | class QAbstractBarSeries(QAbstractSeries): class LabelsPosition (line 118) | class LabelsPosition(enum.Enum): method __init__ (line 137) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method append (line 139) | def append(self, sets: typing.Iterable[QBarSet], /) -> bool: ... method append (line 141) | def append(self, set: QBarSet, /) -> bool: ... method barSets (line 142) | def barSets(self, /) -> List[QBarSet]: ... method barWidth (line 143) | def barWidth(self, /) -> float: ... method clear (line 144) | def clear(self, /) -> None: ... method count (line 145) | def count(self, /) -> int: ... method insert (line 146) | def insert(self, index: int, set: QBarSet, /) -> bool: ... method isLabelsVisible (line 147) | def isLabelsVisible(self, /) -> bool: ... method labelsAngle (line 148) | def labelsAngle(self, /) -> float: ... method labelsFormat (line 149) | def labelsFormat(self, /) -> str: ... method labelsPosition (line 150) | def labelsPosition(self, /) -> QAbstractBarSeries.LabelsPosition: ... method labelsPrecision (line 151) | def labelsPrecision(self, /) -> int: ... method remove (line 152) | def remove(self, set: QBarSet, /) -> bool: ... method setBarWidth (line 153) | def setBarWidth(self, width: float, /) -> None: ... method setLabelsAngle (line 154) | def setLabelsAngle(self, angle: float, /) -> None: ... method setLabelsFormat (line 155) | def setLabelsFormat(self, format: str, /) -> None: ... method setLabelsPosition (line 156) | def setLabelsPosition(self, position: QAbstractBarSeries.LabelsPositio... method setLabelsPrecision (line 157) | def setLabelsPrecision(self, precision: int, /) -> None: ... method setLabelsVisible (line 158) | def setLabelsVisible(self, /, visible: bool = ...) -> None: ... method take (line 159) | def take(self, set: QBarSet, /) -> bool: ... class QAbstractSeries (line 161) | class QAbstractSeries(PySide6.QtCore.QObject): class SeriesType (line 162) | class SeriesType(enum.Enum): method __init__ (line 181) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method attachAxis (line 182) | def attachAxis(self, axis: QAbstractAxis, /) -> bool: ... method attachedAxes (line 183) | def attachedAxes(self, /) -> List[QAbstractAxis]: ... method chart (line 184) | def chart(self, /) -> QChart: ... method detachAxis (line 185) | def detachAxis(self, axis: QAbstractAxis, /) -> bool: ... method hide (line 186) | def hide(self, /) -> None: ... method isVisible (line 187) | def isVisible(self, /) -> bool: ... method name (line 188) | def name(self, /) -> str: ... method opacity (line 189) | def opacity(self, /) -> float: ... method setName (line 190) | def setName(self, name: str, /) -> None: ... method setOpacity (line 191) | def setOpacity(self, opacity: float, /) -> None: ... method setUseOpenGL (line 192) | def setUseOpenGL(self, /, enable: bool = ...) -> None: ... method setVisible (line 193) | def setVisible(self, /, visible: bool = ...) -> None: ... method show (line 194) | def show(self, /) -> None: ... method type (line 195) | def type(self, /) -> QAbstractSeries.SeriesType: ... method useOpenGL (line 196) | def useOpenGL(self, /) -> bool: ... class QAreaLegendMarker (line 198) | class QAreaLegendMarker(QLegendMarker): method __init__ (line 200) | def __init__(self, series: QAreaSeries, legend: QLegend, /, parent: Py... method series (line 201) | def series(self, /) -> QAreaSeries: ... method type (line 202) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QAreaSeries (line 204) | class QAreaSeries(QAbstractSeries): method __init__ (line 220) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method __init__ (line 222) | def __init__(self, upperSeries: QLineSeries, /, lowerSeries: QLineSeri... method borderColor (line 223) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method brush (line 224) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method color (line 225) | def color(self, /) -> PySide6.QtGui.QColor: ... method lowerSeries (line 226) | def lowerSeries(self, /) -> QLineSeries: ... method pen (line 227) | def pen(self, /) -> PySide6.QtGui.QPen: ... method pointLabelsClipping (line 228) | def pointLabelsClipping(self, /) -> bool: ... method pointLabelsColor (line 229) | def pointLabelsColor(self, /) -> PySide6.QtGui.QColor: ... method pointLabelsFont (line 230) | def pointLabelsFont(self, /) -> PySide6.QtGui.QFont: ... method pointLabelsFormat (line 231) | def pointLabelsFormat(self, /) -> str: ... method pointLabelsVisible (line 232) | def pointLabelsVisible(self, /) -> bool: ... method pointsVisible (line 233) | def pointsVisible(self, /) -> bool: ... method setBorderColor (line 234) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBrush (line 235) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setColor (line 236) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setLowerSeries (line 237) | def setLowerSeries(self, series: QLineSeries, /) -> None: ... method setPen (line 238) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setPointLabelsClipping (line 239) | def setPointLabelsClipping(self, /, enabled: bool = ...) -> None: ... method setPointLabelsColor (line 240) | def setPointLabelsColor(self, color: Union[PySide6.QtGui.QColor, str, ... method setPointLabelsFont (line 241) | def setPointLabelsFont(self, font: PySide6.QtGui.QFont | str | typing.... method setPointLabelsFormat (line 242) | def setPointLabelsFormat(self, format: str, /) -> None: ... method setPointLabelsVisible (line 243) | def setPointLabelsVisible(self, /, visible: bool = ...) -> None: ... method setPointsVisible (line 244) | def setPointsVisible(self, /, visible: bool = ...) -> None: ... method setUpperSeries (line 245) | def setUpperSeries(self, series: QLineSeries, /) -> None: ... method type (line 246) | def type(self, /) -> QAbstractSeries.SeriesType: ... method upperSeries (line 247) | def upperSeries(self, /) -> QLineSeries: ... class QBarCategoryAxis (line 249) | class QBarCategoryAxis(QAbstractAxis): method __init__ (line 256) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 258) | def append(self, category: str, /) -> None: ... method append (line 260) | def append(self, categories: typing.Iterable[str], /) -> None: ... method at (line 261) | def at(self, index: int, /) -> str: ... method categories (line 262) | def categories(self, /) -> List[str]: ... method clear (line 263) | def clear(self, /) -> None: ... method count (line 264) | def count(self, /) -> int: ... method insert (line 265) | def insert(self, index: int, category: str, /) -> None: ... method max (line 266) | def max(self, /) -> str: ... method min (line 267) | def min(self, /) -> str: ... method remove (line 268) | def remove(self, category: str, /) -> None: ... method replace (line 269) | def replace(self, oldCategory: str, newCategory: str, /) -> None: ... method setCategories (line 270) | def setCategories(self, categories: typing.Iterable[str], /) -> None: ... method setMax (line 271) | def setMax(self, maxCategory: str, /) -> None: ... method setMin (line 272) | def setMin(self, minCategory: str, /) -> None: ... method setRange (line 273) | def setRange(self, minCategory: str, maxCategory: str, /) -> None: ... method type (line 274) | def type(self, /) -> QAbstractAxis.AxisType: ... class QBarLegendMarker (line 276) | class QBarLegendMarker(QLegendMarker): method __init__ (line 278) | def __init__(self, series: QAbstractBarSeries, barset: QBarSet, legend... method barset (line 279) | def barset(self, /) -> QBarSet: ... method series (line 280) | def series(self, /) -> QAbstractBarSeries: ... method type (line 281) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QBarModelMapper (line 283) | class QBarModelMapper(PySide6.QtCore.QObject): method __init__ (line 285) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method count (line 286) | def count(self, /) -> int: ... method first (line 287) | def first(self, /) -> int: ... method firstBarSetSection (line 288) | def firstBarSetSection(self, /) -> int: ... method lastBarSetSection (line 289) | def lastBarSetSection(self, /) -> int: ... method model (line 290) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 291) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 292) | def series(self, /) -> QAbstractBarSeries: ... method setCount (line 293) | def setCount(self, count: int, /) -> None: ... method setFirst (line 294) | def setFirst(self, first: int, /) -> None: ... method setFirstBarSetSection (line 295) | def setFirstBarSetSection(self, firstBarSetSection: int, /) -> None: ... method setLastBarSetSection (line 296) | def setLastBarSetSection(self, lastBarSetSection: int, /) -> None: ... method setModel (line 297) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 298) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 299) | def setSeries(self, series: QAbstractBarSeries, /) -> None: ... class QBarSeries (line 301) | class QBarSeries(QAbstractBarSeries): method __init__ (line 303) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bar... method type (line 304) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QBarSet (line 306) | class QBarSet(PySide6.QtCore.QObject): method __init__ (line 326) | def __init__(self, label: str, /, parent: PySide6.QtCore.QObject | Non... method append (line 328) | def append(self, values: typing.Iterable[float], /) -> None: ... method append (line 330) | def append(self, value: float, /) -> None: ... method at (line 331) | def at(self, index: int, /) -> float: ... method borderColor (line 332) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method brush (line 333) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method color (line 334) | def color(self, /) -> PySide6.QtGui.QColor: ... method count (line 335) | def count(self, /) -> int: ... method deselectAllBars (line 336) | def deselectAllBars(self, /) -> None: ... method deselectBar (line 337) | def deselectBar(self, index: int, /) -> None: ... method deselectBars (line 338) | def deselectBars(self, indexes: typing.Iterable[int], /) -> None: ... method insert (line 339) | def insert(self, index: int, value: float, /) -> None: ... method isBarSelected (line 340) | def isBarSelected(self, index: int, /) -> bool: ... method label (line 341) | def label(self, /) -> str: ... method labelBrush (line 342) | def labelBrush(self, /) -> PySide6.QtGui.QBrush: ... method labelColor (line 343) | def labelColor(self, /) -> PySide6.QtGui.QColor: ... method labelFont (line 344) | def labelFont(self, /) -> PySide6.QtGui.QFont: ... method pen (line 345) | def pen(self, /) -> PySide6.QtGui.QPen: ... method remove (line 346) | def remove(self, index: int, /, count: int = ...) -> None: ... method replace (line 347) | def replace(self, index: int, value: float, /) -> None: ... method selectAllBars (line 348) | def selectAllBars(self, /) -> None: ... method selectBar (line 349) | def selectBar(self, index: int, /) -> None: ... method selectBars (line 350) | def selectBars(self, indexes: typing.Iterable[int], /) -> None: ... method selectedBars (line 351) | def selectedBars(self, /) -> List[int]: ... method selectedColor (line 352) | def selectedColor(self, /) -> PySide6.QtGui.QColor: ... method setBarSelected (line 353) | def setBarSelected(self, index: int, selected: bool, /) -> None: ... method setBorderColor (line 354) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBrush (line 355) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setColor (line 356) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setLabel (line 357) | def setLabel(self, label: str, /) -> None: ... method setLabelBrush (line 358) | def setLabelBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setLabelColor (line 359) | def setLabelColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setLabelFont (line 360) | def setLabelFont(self, font: PySide6.QtGui.QFont | str | typing.Iterab... method setPen (line 361) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setSelectedColor (line 362) | def setSelectedColor(self, color: Union[PySide6.QtGui.QColor, str, PyS... method sum (line 363) | def sum(self, /) -> float: ... method toggleSelection (line 364) | def toggleSelection(self, indexes: typing.Iterable[int], /) -> None: ... method __lshift__ (line 365) | def __lshift__(self, value: float, /) -> QBarSet: ... method __rlshift__ (line 366) | def __rlshift__(self, other): ... class QBoxPlotLegendMarker (line 368) | class QBoxPlotLegendMarker(QLegendMarker): method __init__ (line 370) | def __init__(self, series: QBoxPlotSeries, legend: QLegend, /, parent:... method series (line 371) | def series(self, /) -> QBoxPlotSeries: ... method type (line 372) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QBoxPlotModelMapper (line 374) | class QBoxPlotModelMapper(PySide6.QtCore.QObject): method __init__ (line 376) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method count (line 377) | def count(self, /) -> int: ... method first (line 378) | def first(self, /) -> int: ... method firstBoxSetSection (line 379) | def firstBoxSetSection(self, /) -> int: ... method lastBoxSetSection (line 380) | def lastBoxSetSection(self, /) -> int: ... method model (line 381) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 382) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 383) | def series(self, /) -> QBoxPlotSeries: ... method setCount (line 384) | def setCount(self, count: int, /) -> None: ... method setFirst (line 385) | def setFirst(self, first: int, /) -> None: ... method setFirstBoxSetSection (line 386) | def setFirstBoxSetSection(self, firstBoxSetSection: int, /) -> None: ... method setLastBoxSetSection (line 387) | def setLastBoxSetSection(self, lastBoxSetSection: int, /) -> None: ... method setModel (line 388) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 389) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 390) | def setSeries(self, series: QBoxPlotSeries, /) -> None: ... class QBoxPlotSeries (line 392) | class QBoxPlotSeries(QAbstractSeries): method __init__ (line 406) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 408) | def append(self, boxes: typing.Iterable[QBoxSet], /) -> bool: ... method append (line 410) | def append(self, box: QBoxSet, /) -> bool: ... method boxOutlineVisible (line 411) | def boxOutlineVisible(self, /) -> bool: ... method boxSets (line 412) | def boxSets(self, /) -> List[QBoxSet]: ... method boxWidth (line 413) | def boxWidth(self, /) -> float: ... method brush (line 414) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method clear (line 415) | def clear(self, /) -> None: ... method count (line 416) | def count(self, /) -> int: ... method insert (line 417) | def insert(self, index: int, box: QBoxSet, /) -> bool: ... method pen (line 418) | def pen(self, /) -> PySide6.QtGui.QPen: ... method remove (line 419) | def remove(self, box: QBoxSet, /) -> bool: ... method setBoxOutlineVisible (line 420) | def setBoxOutlineVisible(self, visible: bool, /) -> None: ... method setBoxWidth (line 421) | def setBoxWidth(self, width: float, /) -> None: ... method setBrush (line 422) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setPen (line 423) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method take (line 424) | def take(self, box: QBoxSet, /) -> bool: ... method type (line 425) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QBoxSet (line 427) | class QBoxSet(PySide6.QtCore.QObject): class ValuePositions (line 428) | class ValuePositions(enum.IntEnum): method __init__ (line 446) | def __init__(self, le: float, lq: float, m: float, uq: float, ue: floa... method __init__ (line 448) | def __init__(self, /, label: str = ..., parent: PySide6.QtCore.QObject... method append (line 450) | def append(self, values: typing.Iterable[float], /) -> None: ... method append (line 452) | def append(self, value: float, /) -> None: ... method at (line 453) | def at(self, index: int, /) -> float: ... method brush (line 454) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method clear (line 455) | def clear(self, /) -> None: ... method count (line 456) | def count(self, /) -> int: ... method label (line 457) | def label(self, /) -> str: ... method pen (line 458) | def pen(self, /) -> PySide6.QtGui.QPen: ... method setBrush (line 459) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setLabel (line 460) | def setLabel(self, label: str, /) -> None: ... method setPen (line 461) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setValue (line 462) | def setValue(self, index: int, value: float, /) -> None: ... method __lshift__ (line 463) | def __lshift__(self, value: float, /) -> QBoxSet: ... method __rlshift__ (line 464) | def __rlshift__(self, other): ... class QCandlestickLegendMarker (line 466) | class QCandlestickLegendMarker(QLegendMarker): method __init__ (line 468) | def __init__(self, series: QCandlestickSeries, legend: QLegend, /, par... method series (line 469) | def series(self, /) -> QCandlestickSeries: ... method type (line 470) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QCandlestickModelMapper (line 472) | class QCandlestickModelMapper(PySide6.QtCore.QObject): method __init__ (line 476) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method close (line 477) | def close(self, /) -> int: ... method firstSetSection (line 478) | def firstSetSection(self, /) -> int: ... method high (line 479) | def high(self, /) -> int: ... method lastSetSection (line 480) | def lastSetSection(self, /) -> int: ... method low (line 481) | def low(self, /) -> int: ... method model (line 482) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method open (line 483) | def open(self, /) -> int: ... method orientation (line 484) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 485) | def series(self, /) -> QCandlestickSeries: ... method setClose (line 486) | def setClose(self, close: int, /) -> None: ... method setFirstSetSection (line 487) | def setFirstSetSection(self, firstSetSection: int, /) -> None: ... method setHigh (line 488) | def setHigh(self, high: int, /) -> None: ... method setLastSetSection (line 489) | def setLastSetSection(self, lastSetSection: int, /) -> None: ... method setLow (line 490) | def setLow(self, low: int, /) -> None: ... method setModel (line 491) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOpen (line 492) | def setOpen(self, open: int, /) -> None: ... method setSeries (line 493) | def setSeries(self, series: QCandlestickSeries, /) -> None: ... method setTimestamp (line 494) | def setTimestamp(self, timestamp: int, /) -> None: ... method timestamp (line 495) | def timestamp(self, /) -> int: ... class QCandlestickSeries (line 497) | class QCandlestickSeries(QAbstractSeries): method __init__ (line 517) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 519) | def append(self, sets: typing.Iterable[QCandlestickSet], /) -> bool: ... method append (line 521) | def append(self, set: QCandlestickSet, /) -> bool: ... method bodyOutlineVisible (line 522) | def bodyOutlineVisible(self, /) -> bool: ... method bodyWidth (line 523) | def bodyWidth(self, /) -> float: ... method brush (line 524) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method capsVisible (line 525) | def capsVisible(self, /) -> bool: ... method capsWidth (line 526) | def capsWidth(self, /) -> float: ... method clear (line 527) | def clear(self, /) -> None: ... method count (line 528) | def count(self, /) -> int: ... method decreasingColor (line 529) | def decreasingColor(self, /) -> PySide6.QtGui.QColor: ... method increasingColor (line 530) | def increasingColor(self, /) -> PySide6.QtGui.QColor: ... method insert (line 531) | def insert(self, index: int, set: QCandlestickSet, /) -> bool: ... method maximumColumnWidth (line 532) | def maximumColumnWidth(self, /) -> float: ... method minimumColumnWidth (line 533) | def minimumColumnWidth(self, /) -> float: ... method pen (line 534) | def pen(self, /) -> PySide6.QtGui.QPen: ... method remove (line 536) | def remove(self, sets: typing.Iterable[QCandlestickSet], /) -> bool: ... method remove (line 538) | def remove(self, set: QCandlestickSet, /) -> bool: ... method setBodyOutlineVisible (line 539) | def setBodyOutlineVisible(self, bodyOutlineVisible: bool, /) -> None: ... method setBodyWidth (line 540) | def setBodyWidth(self, bodyWidth: float, /) -> None: ... method setBrush (line 541) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setCapsVisible (line 542) | def setCapsVisible(self, capsVisible: bool, /) -> None: ... method setCapsWidth (line 543) | def setCapsWidth(self, capsWidth: float, /) -> None: ... method setDecreasingColor (line 544) | def setDecreasingColor(self, decreasingColor: Union[PySide6.QtGui.QCol... method setIncreasingColor (line 545) | def setIncreasingColor(self, increasingColor: Union[PySide6.QtGui.QCol... method setMaximumColumnWidth (line 546) | def setMaximumColumnWidth(self, maximumColumnWidth: float, /) -> None:... method setMinimumColumnWidth (line 547) | def setMinimumColumnWidth(self, minimumColumnWidth: float, /) -> None:... method setPen (line 548) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method sets (line 549) | def sets(self, /) -> List[QCandlestickSet]: ... method take (line 550) | def take(self, set: QCandlestickSet, /) -> bool: ... method type (line 551) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QCandlestickSet (line 553) | class QCandlestickSet(PySide6.QtCore.QObject): method __init__ (line 568) | def __init__(self, open: float, high: float, low: float, close: float,... method __init__ (line 570) | def __init__(self, /, timestamp: float = ..., parent: PySide6.QtCore.Q... method brush (line 571) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method close (line 572) | def close(self, /) -> float: ... method high (line 573) | def high(self, /) -> float: ... method low (line 574) | def low(self, /) -> float: ... method open (line 575) | def open(self, /) -> float: ... method pen (line 576) | def pen(self, /) -> PySide6.QtGui.QPen: ... method setBrush (line 577) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setClose (line 578) | def setClose(self, close: float, /) -> None: ... method setHigh (line 579) | def setHigh(self, high: float, /) -> None: ... method setLow (line 580) | def setLow(self, low: float, /) -> None: ... method setOpen (line 581) | def setOpen(self, open: float, /) -> None: ... method setPen (line 582) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setTimestamp (line 583) | def setTimestamp(self, timestamp: float, /) -> None: ... method timestamp (line 584) | def timestamp(self, /) -> float: ... class QCategoryAxis (line 586) | class QCategoryAxis(QValueAxis): class AxisLabelsPosition (line 587) | class AxisLabelsPosition(enum.Enum): method __init__ (line 593) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 594) | def append(self, label: str, categoryEndValue: float, /) -> None: ... method categoriesLabels (line 595) | def categoriesLabels(self, /) -> List[str]: ... method count (line 596) | def count(self, /) -> int: ... method endValue (line 597) | def endValue(self, categoryLabel: str, /) -> float: ... method labelsPosition (line 598) | def labelsPosition(self, /) -> QCategoryAxis.AxisLabelsPosition: ... method remove (line 599) | def remove(self, label: str, /) -> None: ... method replaceLabel (line 600) | def replaceLabel(self, oldLabel: str, newLabel: str, /) -> None: ... method setLabelsPosition (line 601) | def setLabelsPosition(self, position: QCategoryAxis.AxisLabelsPosition... method setStartValue (line 602) | def setStartValue(self, min: float, /) -> None: ... method startValue (line 603) | def startValue(self, /, categoryLabel: str = ...) -> float: ... method type (line 604) | def type(self, /) -> QAbstractAxis.AxisType: ... class QChart (line 606) | class QChart(PySide6.QtWidgets.QGraphicsWidget): class AnimationOption (line 607) | class AnimationOption(enum.Flag): class ChartTheme (line 613) | class ChartTheme(enum.Enum): class ChartType (line 623) | class ChartType(enum.Enum): method __init__ (line 630) | def __init__(self, type: QChart.ChartType, parent: PySide6.QtWidgets.Q... method __init__ (line 632) | def __init__(self, /, parent: PySide6.QtWidgets.QGraphicsItem | None =... method addAxis (line 633) | def addAxis(self, axis: QAbstractAxis, alignment: PySide6.QtCore.Qt.Al... method addSeries (line 634) | def addSeries(self, series: QAbstractSeries, /) -> None: ... method animationDuration (line 635) | def animationDuration(self, /) -> int: ... method animationEasingCurve (line 636) | def animationEasingCurve(self, /) -> PySide6.QtCore.QEasingCurve: ... method animationOptions (line 637) | def animationOptions(self, /) -> QChart.AnimationOption: ... method axes (line 638) | def axes(self, /, orientation: PySide6.QtCore.Qt.Orientation = ..., se... method axisX (line 639) | def axisX(self, /, series: QAbstractSeries | None = ...) -> QAbstractA... method axisY (line 640) | def axisY(self, /, series: QAbstractSeries | None = ...) -> QAbstractA... method backgroundBrush (line 641) | def backgroundBrush(self, /) -> PySide6.QtGui.QBrush: ... method backgroundPen (line 642) | def backgroundPen(self, /) -> PySide6.QtGui.QPen: ... method backgroundRoundness (line 643) | def backgroundRoundness(self, /) -> float: ... method chartType (line 644) | def chartType(self, /) -> QChart.ChartType: ... method createDefaultAxes (line 645) | def createDefaultAxes(self, /) -> None: ... method isBackgroundVisible (line 646) | def isBackgroundVisible(self, /) -> bool: ... method isDropShadowEnabled (line 647) | def isDropShadowEnabled(self, /) -> bool: ... method isPlotAreaBackgroundVisible (line 648) | def isPlotAreaBackgroundVisible(self, /) -> bool: ... method isZoomed (line 649) | def isZoomed(self, /) -> bool: ... method legend (line 650) | def legend(self, /) -> QLegend: ... method locale (line 651) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method localizeNumbers (line 652) | def localizeNumbers(self, /) -> bool: ... method mapToPosition (line 653) | def mapToPosition(self, value: PySide6.QtCore.QPointF | PySide6.QtCore... method mapToValue (line 654) | def mapToValue(self, position: PySide6.QtCore.QPointF | PySide6.QtCore... method margins (line 655) | def margins(self, /) -> PySide6.QtCore.QMargins: ... method plotArea (line 656) | def plotArea(self, /) -> PySide6.QtCore.QRectF: ... method plotAreaBackgroundBrush (line 657) | def plotAreaBackgroundBrush(self, /) -> PySide6.QtGui.QBrush: ... method plotAreaBackgroundPen (line 658) | def plotAreaBackgroundPen(self, /) -> PySide6.QtGui.QPen: ... method removeAllSeries (line 659) | def removeAllSeries(self, /) -> None: ... method removeAxis (line 660) | def removeAxis(self, axis: QAbstractAxis, /) -> None: ... method removeSeries (line 661) | def removeSeries(self, series: QAbstractSeries, /) -> None: ... method scroll (line 662) | def scroll(self, dx: float, dy: float, /) -> None: ... # type: ignore... method series (line 663) | def series(self, /) -> List[QAbstractSeries]: ... method setAnimationDuration (line 664) | def setAnimationDuration(self, msecs: int, /) -> None: ... method setAnimationEasingCurve (line 665) | def setAnimationEasingCurve(self, curve: PySide6.QtCore.QEasingCurve |... method setAnimationOptions (line 666) | def setAnimationOptions(self, options: QChart.AnimationOption, /) -> N... method setAxisX (line 667) | def setAxisX(self, axis: QAbstractAxis, /, series: QAbstractSeries | N... method setAxisY (line 668) | def setAxisY(self, axis: QAbstractAxis, /, series: QAbstractSeries | N... method setBackgroundBrush (line 669) | def setBackgroundBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtC... method setBackgroundPen (line 670) | def setBackgroundPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt... method setBackgroundRoundness (line 671) | def setBackgroundRoundness(self, diameter: float, /) -> None: ... method setBackgroundVisible (line 672) | def setBackgroundVisible(self, /, visible: bool = ...) -> None: ... method setDropShadowEnabled (line 673) | def setDropShadowEnabled(self, /, enabled: bool = ...) -> None: ... method setLocale (line 674) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setLocalizeNumbers (line 675) | def setLocalizeNumbers(self, localize: bool, /) -> None: ... method setMargins (line 676) | def setMargins(self, margins: PySide6.QtCore.QMargins, /) -> None: ... method setPlotArea (line 677) | def setPlotArea(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setPlotAreaBackgroundBrush (line 678) | def setPlotAreaBackgroundBrush(self, brush: PySide6.QtGui.QBrush | PyS... method setPlotAreaBackgroundPen (line 679) | def setPlotAreaBackgroundPen(self, pen: PySide6.QtGui.QPen | PySide6.Q... method setPlotAreaBackgroundVisible (line 680) | def setPlotAreaBackgroundVisible(self, /, visible: bool = ...) -> None... method setTheme (line 681) | def setTheme(self, theme: QChart.ChartTheme, /) -> None: ... method setTitle (line 682) | def setTitle(self, title: str, /) -> None: ... method setTitleBrush (line 683) | def setTitleBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setTitleFont (line 684) | def setTitleFont(self, font: PySide6.QtGui.QFont | str | typing.Iterab... method theme (line 685) | def theme(self, /) -> QChart.ChartTheme: ... method title (line 686) | def title(self, /) -> str: ... method titleBrush (line 687) | def titleBrush(self, /) -> PySide6.QtGui.QBrush: ... method titleFont (line 688) | def titleFont(self, /) -> PySide6.QtGui.QFont: ... method zoom (line 689) | def zoom(self, factor: float, /) -> None: ... method zoomIn (line 691) | def zoomIn(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, /... method zoomIn (line 693) | def zoomIn(self, /) -> None: ... method zoomOut (line 694) | def zoomOut(self, /) -> None: ... method zoomReset (line 695) | def zoomReset(self, /) -> None: ... class QChartView (line 697) | class QChartView(PySide6.QtWidgets.QGraphicsView): class RubberBand (line 698) | class RubberBand(enum.Flag): method __init__ (line 706) | def __init__(self, chart: QChart, /, parent: PySide6.QtWidgets.QWidget... method __init__ (line 708) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method chart (line 709) | def chart(self, /) -> QChart: ... method mouseMoveEvent (line 710) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 711) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 712) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method resizeEvent (line 713) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method rubberBand (line 714) | def rubberBand(self, /) -> QChartView.RubberBand: ... method setChart (line 715) | def setChart(self, chart: QChart, /) -> None: ... method setRubberBand (line 716) | def setRubberBand(self, rubberBands: QChartView.RubberBand, /) -> None... method wheelEvent (line 717) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class QColorAxis (line 719) | class QColorAxis(QAbstractAxis): method __init__ (line 728) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoRange (line 729) | def autoRange(self, /) -> bool: ... method gradient (line 730) | def gradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method max (line 731) | def max(self, /) -> float: ... method min (line 732) | def min(self, /) -> float: ... method setAutoRange (line 733) | def setAutoRange(self, autoRange: bool, /) -> None: ... method setGradient (line 734) | def setGradient(self, gradient: PySide6.QtGui.QLinearGradient, /) -> N... method setMax (line 735) | def setMax(self, max: float, /) -> None: ... method setMin (line 736) | def setMin(self, min: float, /) -> None: ... method setRange (line 737) | def setRange(self, min: float, max: float, /) -> None: ... method setSize (line 738) | def setSize(self, size: float, /) -> None: ... method setTickCount (line 739) | def setTickCount(self, count: int, /) -> None: ... method size (line 740) | def size(self, /) -> float: ... method tickCount (line 741) | def tickCount(self, /) -> int: ... method type (line 742) | def type(self, /) -> QAbstractAxis.AxisType: ... class QDateTimeAxis (line 744) | class QDateTimeAxis(QAbstractAxis): method __init__ (line 751) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method format (line 752) | def format(self, /) -> str: ... method max (line 753) | def max(self, /) -> PySide6.QtCore.QDateTime: ... method min (line 754) | def min(self, /) -> PySide6.QtCore.QDateTime: ... method setFormat (line 755) | def setFormat(self, format: str, /) -> None: ... method setMax (line 756) | def setMax(self, max: PySide6.QtCore.QDateTime | datetime.datetime, /)... method setMin (line 757) | def setMin(self, min: PySide6.QtCore.QDateTime | datetime.datetime, /)... method setRange (line 758) | def setRange(self, min: PySide6.QtCore.QDateTime | datetime.datetime, ... method setTickCount (line 759) | def setTickCount(self, count: int, /) -> None: ... method tickCount (line 760) | def tickCount(self, /) -> int: ... method type (line 761) | def type(self, /) -> QAbstractAxis.AxisType: ... class QHBarModelMapper (line 763) | class QHBarModelMapper(QBarModelMapper): method __init__ (line 771) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method columnCount (line 772) | def columnCount(self, /) -> int: ... method firstBarSetRow (line 773) | def firstBarSetRow(self, /) -> int: ... method firstColumn (line 774) | def firstColumn(self, /) -> int: ... method lastBarSetRow (line 775) | def lastBarSetRow(self, /) -> int: ... method model (line 776) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method series (line 777) | def series(self, /) -> QAbstractBarSeries: ... method setColumnCount (line 778) | def setColumnCount(self, columnCount: int, /) -> None: ... method setFirstBarSetRow (line 779) | def setFirstBarSetRow(self, firstBarSetRow: int, /) -> None: ... method setFirstColumn (line 780) | def setFirstColumn(self, firstColumn: int, /) -> None: ... method setLastBarSetRow (line 781) | def setLastBarSetRow(self, lastBarSetRow: int, /) -> None: ... method setModel (line 782) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setSeries (line 783) | def setSeries(self, series: QAbstractBarSeries, /) -> None: ... class QHBoxPlotModelMapper (line 785) | class QHBoxPlotModelMapper(QBoxPlotModelMapper): method __init__ (line 793) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method columnCount (line 794) | def columnCount(self, /) -> int: ... method firstBoxSetRow (line 795) | def firstBoxSetRow(self, /) -> int: ... method firstColumn (line 796) | def firstColumn(self, /) -> int: ... method lastBoxSetRow (line 797) | def lastBoxSetRow(self, /) -> int: ... method model (line 798) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method series (line 799) | def series(self, /) -> QBoxPlotSeries: ... method setColumnCount (line 800) | def setColumnCount(self, rowCount: int, /) -> None: ... method setFirstBoxSetRow (line 801) | def setFirstBoxSetRow(self, firstBoxSetRow: int, /) -> None: ... method setFirstColumn (line 802) | def setFirstColumn(self, firstColumn: int, /) -> None: ... method setLastBoxSetRow (line 803) | def setLastBoxSetRow(self, lastBoxSetRow: int, /) -> None: ... method setModel (line 804) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setSeries (line 805) | def setSeries(self, series: QBoxPlotSeries, /) -> None: ... class QHCandlestickModelMapper (line 807) | class QHCandlestickModelMapper(QCandlestickModelMapper): method __init__ (line 816) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method closeColumn (line 817) | def closeColumn(self, /) -> int: ... method firstSetRow (line 818) | def firstSetRow(self, /) -> int: ... method highColumn (line 819) | def highColumn(self, /) -> int: ... method lastSetRow (line 820) | def lastSetRow(self, /) -> int: ... method lowColumn (line 821) | def lowColumn(self, /) -> int: ... method openColumn (line 822) | def openColumn(self, /) -> int: ... method orientation (line 823) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method setCloseColumn (line 824) | def setCloseColumn(self, closeColumn: int, /) -> None: ... method setFirstSetRow (line 825) | def setFirstSetRow(self, firstSetRow: int, /) -> None: ... method setHighColumn (line 826) | def setHighColumn(self, highColumn: int, /) -> None: ... method setLastSetRow (line 827) | def setLastSetRow(self, lastSetRow: int, /) -> None: ... method setLowColumn (line 828) | def setLowColumn(self, lowColumn: int, /) -> None: ... method setOpenColumn (line 829) | def setOpenColumn(self, openColumn: int, /) -> None: ... method setTimestampColumn (line 830) | def setTimestampColumn(self, timestampColumn: int, /) -> None: ... method timestampColumn (line 831) | def timestampColumn(self, /) -> int: ... class QHPieModelMapper (line 833) | class QHPieModelMapper(QPieModelMapper): method __init__ (line 841) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method columnCount (line 842) | def columnCount(self, /) -> int: ... method firstColumn (line 843) | def firstColumn(self, /) -> int: ... method labelsRow (line 844) | def labelsRow(self, /) -> int: ... method model (line 845) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method series (line 846) | def series(self, /) -> QPieSeries: ... method setColumnCount (line 847) | def setColumnCount(self, columnCount: int, /) -> None: ... method setFirstColumn (line 848) | def setFirstColumn(self, firstColumn: int, /) -> None: ... method setLabelsRow (line 849) | def setLabelsRow(self, labelsRow: int, /) -> None: ... method setModel (line 850) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setSeries (line 851) | def setSeries(self, series: QPieSeries, /) -> None: ... method setValuesRow (line 852) | def setValuesRow(self, valuesRow: int, /) -> None: ... method valuesRow (line 853) | def valuesRow(self, /) -> int: ... class QHXYModelMapper (line 855) | class QHXYModelMapper(QXYModelMapper): method __init__ (line 863) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method columnCount (line 864) | def columnCount(self, /) -> int: ... method firstColumn (line 865) | def firstColumn(self, /) -> int: ... method model (line 866) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method series (line 867) | def series(self, /) -> QXYSeries: ... method setColumnCount (line 868) | def setColumnCount(self, columnCount: int, /) -> None: ... method setFirstColumn (line 869) | def setFirstColumn(self, firstColumn: int, /) -> None: ... method setModel (line 870) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setSeries (line 871) | def setSeries(self, series: QXYSeries, /) -> None: ... method setXRow (line 872) | def setXRow(self, xRow: int, /) -> None: ... method setYRow (line 873) | def setYRow(self, yRow: int, /) -> None: ... method xRow (line 874) | def xRow(self, /) -> int: ... method yRow (line 875) | def yRow(self, /) -> int: ... class QHorizontalBarSeries (line 877) | class QHorizontalBarSeries(QAbstractBarSeries): method __init__ (line 879) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bar... method type (line 880) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QHorizontalPercentBarSeries (line 882) | class QHorizontalPercentBarSeries(QAbstractBarSeries): method __init__ (line 884) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bar... method type (line 885) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QHorizontalStackedBarSeries (line 887) | class QHorizontalStackedBarSeries(QAbstractBarSeries): method __init__ (line 889) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bar... method type (line 890) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QIntList (line 892) | class QIntList: method __init__ (line 894) | def __init__(self, *args, **kwargs) -> None: ... method append (line 895) | def append(self, *args, **kwargs): ... method capacity (line 896) | def capacity(self, *args, **kwargs): ... method clear (line 897) | def clear(self, *args, **kwargs): ... method constData (line 898) | def constData(self, *args, **kwargs): ... method data (line 899) | def data(self, *args, **kwargs): ... method pop_back (line 900) | def pop_back(self, *args, **kwargs): ... method pop_front (line 901) | def pop_front(self, *args, **kwargs): ... method prepend (line 902) | def prepend(self, *args, **kwargs): ... method push_back (line 903) | def push_back(self, *args, **kwargs): ... method push_front (line 904) | def push_front(self, *args, **kwargs): ... method removeFirst (line 905) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 906) | def removeLast(self, *args, **kwargs): ... method reserve (line 907) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 908) | def __delitem__(self, other) -> None: ... method __getitem__ (line 909) | def __getitem__(self, index): ... method __len__ (line 910) | def __len__(self) -> int: ... method __setitem__ (line 911) | def __setitem__(self, index, object) -> None: ... class QLegend (line 913) | class QLegend(PySide6.QtWidgets.QGraphicsWidget): class MarkerShape (line 914) | class MarkerShape(enum.Enum): method __init__ (line 934) | def __init__(self, *args, autoFillBackground: bool = ..., childrenChan... method alignment (line 935) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method attachToChart (line 936) | def attachToChart(self, /) -> None: ... method borderColor (line 937) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method brush (line 938) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method color (line 939) | def color(self, /) -> PySide6.QtGui.QColor: ... method detachFromChart (line 940) | def detachFromChart(self, /) -> None: ... method font (line 941) | def font(self, /) -> PySide6.QtGui.QFont: ... method hideEvent (line 942) | def hideEvent(self, event: PySide6.QtGui.QHideEvent, /) -> None: ... method isAttachedToChart (line 943) | def isAttachedToChart(self, /) -> bool: ... method isBackgroundVisible (line 944) | def isBackgroundVisible(self, /) -> bool: ... method isInteractive (line 945) | def isInteractive(self, /) -> bool: ... method labelBrush (line 946) | def labelBrush(self, /) -> PySide6.QtGui.QBrush: ... method labelColor (line 947) | def labelColor(self, /) -> PySide6.QtGui.QColor: ... method markerShape (line 948) | def markerShape(self, /) -> QLegend.MarkerShape: ... method markers (line 949) | def markers(self, /, series: QAbstractSeries | None = ...) -> List[QLe... method paint (line 950) | def paint(self, painter: PySide6.QtGui.QPainter, option: PySide6.QtWid... method pen (line 951) | def pen(self, /) -> PySide6.QtGui.QPen: ... method reverseMarkers (line 952) | def reverseMarkers(self, /) -> bool: ... method setAlignment (line 953) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setBackgroundVisible (line 954) | def setBackgroundVisible(self, /, visible: bool = ...) -> None: ... method setBorderColor (line 955) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBrush (line 956) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setColor (line 957) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setFont (line 958) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setInteractive (line 959) | def setInteractive(self, interactive: bool, /) -> None: ... method setLabelBrush (line 960) | def setLabelBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setLabelColor (line 961) | def setLabelColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setMarkerShape (line 962) | def setMarkerShape(self, shape: QLegend.MarkerShape, /) -> None: ... method setPen (line 963) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setReverseMarkers (line 964) | def setReverseMarkers(self, /, reverseMarkers: bool = ...) -> None: ... method setShowToolTips (line 965) | def setShowToolTips(self, show: bool, /) -> None: ... method showEvent (line 966) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method showToolTips (line 967) | def showToolTips(self, /) -> bool: ... class QLegendMarker (line 969) | class QLegendMarker(PySide6.QtCore.QObject): class LegendMarkerType (line 970) | class LegendMarkerType(enum.Enum): method __init__ (line 987) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method brush (line 988) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method font (line 989) | def font(self, /) -> PySide6.QtGui.QFont: ... method isVisible (line 990) | def isVisible(self, /) -> bool: ... method label (line 991) | def label(self, /) -> str: ... method labelBrush (line 992) | def labelBrush(self, /) -> PySide6.QtGui.QBrush: ... method pen (line 993) | def pen(self, /) -> PySide6.QtGui.QPen: ... method series (line 994) | def series(self, /) -> QAbstractSeries: ... method setBrush (line 995) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setFont (line 996) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setLabel (line 997) | def setLabel(self, label: str, /) -> None: ... method setLabelBrush (line 998) | def setLabelBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setPen (line 999) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setShape (line 1000) | def setShape(self, shape: QLegend.MarkerShape, /) -> None: ... method setVisible (line 1001) | def setVisible(self, visible: bool, /) -> None: ... method shape (line 1002) | def shape(self, /) -> QLegend.MarkerShape: ... method type (line 1003) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QLineSeries (line 1005) | class QLineSeries(QXYSeries): method __init__ (line 1007) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bes... method type (line 1008) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QLogValueAxis (line 1010) | class QLogValueAxis(QAbstractAxis): method __init__ (line 1019) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method base (line 1020) | def base(self, /) -> float: ... method labelFormat (line 1021) | def labelFormat(self, /) -> str: ... method max (line 1022) | def max(self, /) -> float: ... method min (line 1023) | def min(self, /) -> float: ... method minorTickCount (line 1024) | def minorTickCount(self, /) -> int: ... method setBase (line 1025) | def setBase(self, base: float, /) -> None: ... method setLabelFormat (line 1026) | def setLabelFormat(self, format: str, /) -> None: ... method setMax (line 1027) | def setMax(self, max: float, /) -> None: ... method setMin (line 1028) | def setMin(self, min: float, /) -> None: ... method setMinorTickCount (line 1029) | def setMinorTickCount(self, minorTickCount: int, /) -> None: ... method setRange (line 1030) | def setRange(self, min: float, max: float, /) -> None: ... method tickCount (line 1031) | def tickCount(self, /) -> int: ... method type (line 1032) | def type(self, /) -> QAbstractAxis.AxisType: ... class QPercentBarSeries (line 1034) | class QPercentBarSeries(QAbstractBarSeries): method __init__ (line 1036) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bar... method type (line 1037) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QPieLegendMarker (line 1039) | class QPieLegendMarker(QLegendMarker): method __init__ (line 1041) | def __init__(self, series: QPieSeries, slice: QPieSlice, legend: QLege... method series (line 1042) | def series(self, /) -> QPieSeries: ... method slice (line 1043) | def slice(self, /) -> QPieSlice: ... method type (line 1044) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QPieModelMapper (line 1046) | class QPieModelMapper(PySide6.QtCore.QObject): method __init__ (line 1048) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method count (line 1049) | def count(self, /) -> int: ... method first (line 1050) | def first(self, /) -> int: ... method labelsSection (line 1051) | def labelsSection(self, /) -> int: ... method model (line 1052) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 1053) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 1054) | def series(self, /) -> QPieSeries: ... method setCount (line 1055) | def setCount(self, count: int, /) -> None: ... method setFirst (line 1056) | def setFirst(self, first: int, /) -> None: ... method setLabelsSection (line 1057) | def setLabelsSection(self, labelsSection: int, /) -> None: ... method setModel (line 1058) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 1059) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 1060) | def setSeries(self, series: QPieSeries, /) -> None: ... method setValuesSection (line 1061) | def setValuesSection(self, valuesSection: int, /) -> None: ... method valuesSection (line 1062) | def valuesSection(self, /) -> int: ... class QPieSeries (line 1064) | class QPieSeries(QAbstractSeries): method __init__ (line 1075) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 1077) | def append(self, label: str, value: float, /) -> QPieSlice: ... method append (line 1079) | def append(self, slices: typing.Iterable[QPieSlice], /) -> bool: ... method append (line 1081) | def append(self, slice: QPieSlice, /) -> bool: ... method clear (line 1082) | def clear(self, /) -> None: ... method count (line 1083) | def count(self, /) -> int: ... method holeSize (line 1084) | def holeSize(self, /) -> float: ... method horizontalPosition (line 1085) | def horizontalPosition(self, /) -> float: ... method insert (line 1086) | def insert(self, index: int, slice: QPieSlice, /) -> bool: ... method isEmpty (line 1087) | def isEmpty(self, /) -> bool: ... method pieEndAngle (line 1088) | def pieEndAngle(self, /) -> float: ... method pieSize (line 1089) | def pieSize(self, /) -> float: ... method pieStartAngle (line 1090) | def pieStartAngle(self, /) -> float: ... method remove (line 1091) | def remove(self, slice: QPieSlice, /) -> bool: ... method setHoleSize (line 1092) | def setHoleSize(self, holeSize: float, /) -> None: ... method setHorizontalPosition (line 1093) | def setHorizontalPosition(self, relativePosition: float, /) -> None: ... method setLabelsPosition (line 1094) | def setLabelsPosition(self, position: QPieSlice.LabelPosition, /) -> N... method setLabelsVisible (line 1095) | def setLabelsVisible(self, /, visible: bool = ...) -> None: ... method setPieEndAngle (line 1096) | def setPieEndAngle(self, endAngle: float, /) -> None: ... method setPieSize (line 1097) | def setPieSize(self, relativeSize: float, /) -> None: ... method setPieStartAngle (line 1098) | def setPieStartAngle(self, startAngle: float, /) -> None: ... method setVerticalPosition (line 1099) | def setVerticalPosition(self, relativePosition: float, /) -> None: ... method slices (line 1100) | def slices(self, /) -> List[QPieSlice]: ... method sum (line 1101) | def sum(self, /) -> float: ... method take (line 1102) | def take(self, slice: QPieSlice, /) -> bool: ... method type (line 1103) | def type(self, /) -> QAbstractSeries.SeriesType: ... method verticalPosition (line 1104) | def verticalPosition(self, /) -> float: ... method __lshift__ (line 1105) | def __lshift__(self, slice: QPieSlice, /) -> QPieSeries: ... method __rlshift__ (line 1106) | def __rlshift__(self, other): ... class QPieSlice (line 1108) | class QPieSlice(PySide6.QtCore.QObject): class LabelPosition (line 1109) | class LabelPosition(enum.Enum): method __init__ (line 1135) | def __init__(self, label: str, value: float, /, parent: PySide6.QtCore... method __init__ (line 1137) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method angleSpan (line 1138) | def angleSpan(self, /) -> float: ... method borderColor (line 1139) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method borderWidth (line 1140) | def borderWidth(self, /) -> int: ... method brush (line 1141) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method color (line 1142) | def color(self, /) -> PySide6.QtGui.QColor: ... method explodeDistanceFactor (line 1143) | def explodeDistanceFactor(self, /) -> float: ... method isExploded (line 1144) | def isExploded(self, /) -> bool: ... method isLabelVisible (line 1145) | def isLabelVisible(self, /) -> bool: ... method label (line 1146) | def label(self, /) -> str: ... method labelArmLengthFactor (line 1147) | def labelArmLengthFactor(self, /) -> float: ... method labelBrush (line 1148) | def labelBrush(self, /) -> PySide6.QtGui.QBrush: ... method labelColor (line 1149) | def labelColor(self, /) -> PySide6.QtGui.QColor: ... method labelFont (line 1150) | def labelFont(self, /) -> PySide6.QtGui.QFont: ... method labelPosition (line 1151) | def labelPosition(self, /) -> QPieSlice.LabelPosition: ... method pen (line 1152) | def pen(self, /) -> PySide6.QtGui.QPen: ... method percentage (line 1153) | def percentage(self, /) -> float: ... method series (line 1154) | def series(self, /) -> QPieSeries: ... method setBorderColor (line 1155) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBorderWidth (line 1156) | def setBorderWidth(self, width: int, /) -> None: ... method setBrush (line 1157) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setColor (line 1158) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setExplodeDistanceFactor (line 1159) | def setExplodeDistanceFactor(self, factor: float, /) -> None: ... method setExploded (line 1160) | def setExploded(self, /, exploded: bool = ...) -> None: ... method setLabel (line 1161) | def setLabel(self, label: str, /) -> None: ... method setLabelArmLengthFactor (line 1162) | def setLabelArmLengthFactor(self, factor: float, /) -> None: ... method setLabelBrush (line 1163) | def setLabelBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setLabelColor (line 1164) | def setLabelColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setLabelFont (line 1165) | def setLabelFont(self, font: PySide6.QtGui.QFont | str | typing.Iterab... method setLabelPosition (line 1166) | def setLabelPosition(self, position: QPieSlice.LabelPosition, /) -> No... method setLabelVisible (line 1167) | def setLabelVisible(self, /, visible: bool = ...) -> None: ... method setPen (line 1168) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setValue (line 1169) | def setValue(self, value: float, /) -> None: ... method startAngle (line 1170) | def startAngle(self, /) -> float: ... method value (line 1171) | def value(self, /) -> float: ... class QPointFList (line 1173) | class QPointFList: method __init__ (line 1175) | def __init__(self, *args, **kwargs) -> None: ... method append (line 1176) | def append(self, *args, **kwargs): ... method capacity (line 1177) | def capacity(self, *args, **kwargs): ... method clear (line 1178) | def clear(self, *args, **kwargs): ... method constData (line 1179) | def constData(self, *args, **kwargs): ... method data (line 1180) | def data(self, *args, **kwargs): ... method pop_back (line 1181) | def pop_back(self, *args, **kwargs): ... method pop_front (line 1182) | def pop_front(self, *args, **kwargs): ... method prepend (line 1183) | def prepend(self, *args, **kwargs): ... method push_back (line 1184) | def push_back(self, *args, **kwargs): ... method push_front (line 1185) | def push_front(self, *args, **kwargs): ... method removeFirst (line 1186) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 1187) | def removeLast(self, *args, **kwargs): ... method reserve (line 1188) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 1189) | def __delitem__(self, other) -> None: ... method __getitem__ (line 1190) | def __getitem__(self, index): ... method __len__ (line 1191) | def __len__(self) -> int: ... method __setitem__ (line 1192) | def __setitem__(self, index, object) -> None: ... class QPolarChart (line 1194) | class QPolarChart(QChart): class PolarOrientation (line 1195) | class PolarOrientation(enum.Flag): method __init__ (line 1199) | def __init__(self, /, parent: PySide6.QtWidgets.QGraphicsItem | None =... method addAxis (line 1200) | def addAxis(self, axis: QAbstractAxis, polarOrientation: QPolarChart.P... method axisPolarOrientation (line 1202) | def axisPolarOrientation(axis: QAbstractAxis, /) -> QPolarChart.PolarO... class QScatterSeries (line 1204) | class QScatterSeries(QXYSeries): class MarkerShape (line 1205) | class MarkerShape(enum.Enum): method __init__ (line 1217) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method borderColor (line 1218) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method brush (line 1219) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method color (line 1220) | def color(self, /) -> PySide6.QtGui.QColor: ... method markerShape (line 1221) | def markerShape(self, /) -> QScatterSeries.MarkerShape: ... method markerSize (line 1222) | def markerSize(self, /) -> float: ... method setBorderColor (line 1223) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBrush (line 1224) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setColor (line 1225) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setMarkerShape (line 1226) | def setMarkerShape(self, shape: QScatterSeries.MarkerShape, /) -> None... method setMarkerSize (line 1227) | def setMarkerSize(self, size: float, /) -> None: ... method setPen (line 1228) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method type (line 1229) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QSplineSeries (line 1231) | class QSplineSeries(QLineSeries): method __init__ (line 1233) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bes... method type (line 1234) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QStackedBarSeries (line 1236) | class QStackedBarSeries(QAbstractBarSeries): method __init__ (line 1238) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., bar... method type (line 1239) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QVBarModelMapper (line 1241) | class QVBarModelMapper(QBarModelMapper): method __init__ (line 1249) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method firstBarSetColumn (line 1250) | def firstBarSetColumn(self, /) -> int: ... method firstRow (line 1251) | def firstRow(self, /) -> int: ... method lastBarSetColumn (line 1252) | def lastBarSetColumn(self, /) -> int: ... method model (line 1253) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method rowCount (line 1254) | def rowCount(self, /) -> int: ... method series (line 1255) | def series(self, /) -> QAbstractBarSeries: ... method setFirstBarSetColumn (line 1256) | def setFirstBarSetColumn(self, firstBarSetColumn: int, /) -> None: ... method setFirstRow (line 1257) | def setFirstRow(self, firstRow: int, /) -> None: ... method setLastBarSetColumn (line 1258) | def setLastBarSetColumn(self, lastBarSetColumn: int, /) -> None: ... method setModel (line 1259) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setRowCount (line 1260) | def setRowCount(self, rowCount: int, /) -> None: ... method setSeries (line 1261) | def setSeries(self, series: QAbstractBarSeries, /) -> None: ... class QVBoxPlotModelMapper (line 1263) | class QVBoxPlotModelMapper(QBoxPlotModelMapper): method __init__ (line 1271) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method firstBoxSetColumn (line 1272) | def firstBoxSetColumn(self, /) -> int: ... method firstRow (line 1273) | def firstRow(self, /) -> int: ... method lastBoxSetColumn (line 1274) | def lastBoxSetColumn(self, /) -> int: ... method model (line 1275) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method rowCount (line 1276) | def rowCount(self, /) -> int: ... method series (line 1277) | def series(self, /) -> QBoxPlotSeries: ... method setFirstBoxSetColumn (line 1278) | def setFirstBoxSetColumn(self, firstBoxSetColumn: int, /) -> None: ... method setFirstRow (line 1279) | def setFirstRow(self, firstRow: int, /) -> None: ... method setLastBoxSetColumn (line 1280) | def setLastBoxSetColumn(self, lastBoxSetColumn: int, /) -> None: ... method setModel (line 1281) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setRowCount (line 1282) | def setRowCount(self, rowCount: int, /) -> None: ... method setSeries (line 1283) | def setSeries(self, series: QBoxPlotSeries, /) -> None: ... class QVCandlestickModelMapper (line 1285) | class QVCandlestickModelMapper(QCandlestickModelMapper): method __init__ (line 1294) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method closeRow (line 1295) | def closeRow(self, /) -> int: ... method firstSetColumn (line 1296) | def firstSetColumn(self, /) -> int: ... method highRow (line 1297) | def highRow(self, /) -> int: ... method lastSetColumn (line 1298) | def lastSetColumn(self, /) -> int: ... method lowRow (line 1299) | def lowRow(self, /) -> int: ... method openRow (line 1300) | def openRow(self, /) -> int: ... method orientation (line 1301) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method setCloseRow (line 1302) | def setCloseRow(self, closeRow: int, /) -> None: ... method setFirstSetColumn (line 1303) | def setFirstSetColumn(self, firstSetColumn: int, /) -> None: ... method setHighRow (line 1304) | def setHighRow(self, highRow: int, /) -> None: ... method setLastSetColumn (line 1305) | def setLastSetColumn(self, lastSetColumn: int, /) -> None: ... method setLowRow (line 1306) | def setLowRow(self, lowRow: int, /) -> None: ... method setOpenRow (line 1307) | def setOpenRow(self, openRow: int, /) -> None: ... method setTimestampRow (line 1308) | def setTimestampRow(self, timestampRow: int, /) -> None: ... method timestampRow (line 1309) | def timestampRow(self, /) -> int: ... class QVPieModelMapper (line 1311) | class QVPieModelMapper(QPieModelMapper): method __init__ (line 1319) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method firstRow (line 1320) | def firstRow(self, /) -> int: ... method labelsColumn (line 1321) | def labelsColumn(self, /) -> int: ... method model (line 1322) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method rowCount (line 1323) | def rowCount(self, /) -> int: ... method series (line 1324) | def series(self, /) -> QPieSeries: ... method setFirstRow (line 1325) | def setFirstRow(self, firstRow: int, /) -> None: ... method setLabelsColumn (line 1326) | def setLabelsColumn(self, labelsColumn: int, /) -> None: ... method setModel (line 1327) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setRowCount (line 1328) | def setRowCount(self, rowCount: int, /) -> None: ... method setSeries (line 1329) | def setSeries(self, series: QPieSeries, /) -> None: ... method setValuesColumn (line 1330) | def setValuesColumn(self, valuesColumn: int, /) -> None: ... method valuesColumn (line 1331) | def valuesColumn(self, /) -> int: ... class QVXYModelMapper (line 1333) | class QVXYModelMapper(QXYModelMapper): method __init__ (line 1341) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method firstRow (line 1342) | def firstRow(self, /) -> int: ... method model (line 1343) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method rowCount (line 1344) | def rowCount(self, /) -> int: ... method series (line 1345) | def series(self, /) -> QXYSeries: ... method setFirstRow (line 1346) | def setFirstRow(self, firstRow: int, /) -> None: ... method setModel (line 1347) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setRowCount (line 1348) | def setRowCount(self, rowCount: int, /) -> None: ... method setSeries (line 1349) | def setSeries(self, series: QXYSeries, /) -> None: ... method setXColumn (line 1350) | def setXColumn(self, xColumn: int, /) -> None: ... method setYColumn (line 1351) | def setYColumn(self, yColumn: int, /) -> None: ... method xColumn (line 1352) | def xColumn(self, /) -> int: ... method yColumn (line 1353) | def yColumn(self, /) -> int: ... class QValueAxis (line 1355) | class QValueAxis(QAbstractAxis): class TickType (line 1356) | class TickType(enum.Enum): method __init__ (line 1369) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method applyNiceNumbers (line 1370) | def applyNiceNumbers(self, /) -> None: ... method labelFormat (line 1371) | def labelFormat(self, /) -> str: ... method max (line 1372) | def max(self, /) -> float: ... method min (line 1373) | def min(self, /) -> float: ... method minorTickCount (line 1374) | def minorTickCount(self, /) -> int: ... method setLabelFormat (line 1375) | def setLabelFormat(self, format: str, /) -> None: ... method setMax (line 1376) | def setMax(self, max: float, /) -> None: ... method setMin (line 1377) | def setMin(self, min: float, /) -> None: ... method setMinorTickCount (line 1378) | def setMinorTickCount(self, count: int, /) -> None: ... method setRange (line 1379) | def setRange(self, min: float, max: float, /) -> None: ... method setTickAnchor (line 1380) | def setTickAnchor(self, anchor: float, /) -> None: ... method setTickCount (line 1381) | def setTickCount(self, count: int, /) -> None: ... method setTickInterval (line 1382) | def setTickInterval(self, insterval: float, /) -> None: ... method setTickType (line 1383) | def setTickType(self, type: QValueAxis.TickType, /) -> None: ... method tickAnchor (line 1384) | def tickAnchor(self, /) -> float: ... method tickCount (line 1385) | def tickCount(self, /) -> int: ... method tickInterval (line 1386) | def tickInterval(self, /) -> float: ... method tickType (line 1387) | def tickType(self, /) -> QValueAxis.TickType: ... method type (line 1388) | def type(self, /) -> QAbstractAxis.AxisType: ... class QXYLegendMarker (line 1390) | class QXYLegendMarker(QLegendMarker): method __init__ (line 1392) | def __init__(self, series: QXYSeries, legend: QLegend, /, parent: PySi... method series (line 1393) | def series(self, /) -> QXYSeries: ... method type (line 1394) | def type(self, /) -> QLegendMarker.LegendMarkerType: ... class QXYModelMapper (line 1396) | class QXYModelMapper(PySide6.QtCore.QObject): method __init__ (line 1398) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method count (line 1399) | def count(self, /) -> int: ... method first (line 1400) | def first(self, /) -> int: ... method model (line 1401) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 1402) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 1403) | def series(self, /) -> QXYSeries: ... method setCount (line 1404) | def setCount(self, count: int, /) -> None: ... method setFirst (line 1405) | def setFirst(self, first: int, /) -> None: ... method setModel (line 1406) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 1407) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 1408) | def setSeries(self, series: QXYSeries, /) -> None: ... method setXSection (line 1409) | def setXSection(self, xSection: int, /) -> None: ... method setYSection (line 1410) | def setYSection(self, ySection: int, /) -> None: ... method xSection (line 1411) | def xSection(self, /) -> int: ... method ySection (line 1412) | def ySection(self, /) -> int: ... class QXYSeries (line 1414) | class QXYSeries(QAbstractSeries): class PointConfiguration (line 1415) | class PointConfiguration(enum.Enum): method __init__ (line 1448) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method append (line 1450) | def append(self, x: float, y: float, /) -> None: ... method append (line 1452) | def append(self, points: typing.Iterable[PySide6.QtCore.QPointF], /) -... method append (line 1454) | def append(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method appendNp (line 1455) | def appendNp(self, x: typing.Iterable[typing.Any], y: typing.Iterable[... method at (line 1456) | def at(self, index: int, /) -> PySide6.QtCore.QPointF: ... method bestFitLineColor (line 1457) | def bestFitLineColor(self, /) -> PySide6.QtGui.QColor: ... method bestFitLineEquation (line 1458) | def bestFitLineEquation(self, ok: bool, /) -> Tuple[float, float]: ... method bestFitLinePen (line 1459) | def bestFitLinePen(self, /) -> PySide6.QtGui.QPen: ... method bestFitLineVisible (line 1460) | def bestFitLineVisible(self, /) -> bool: ... method brush (line 1461) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method clear (line 1462) | def clear(self, /) -> None: ... method clearPointConfiguration (line 1464) | def clearPointConfiguration(self, index: int, key: QXYSeries.PointConf... method clearPointConfiguration (line 1466) | def clearPointConfiguration(self, index: int, /) -> None: ... method clearPointsConfiguration (line 1468) | def clearPointsConfiguration(self, key: QXYSeries.PointConfiguration, ... method clearPointsConfiguration (line 1470) | def clearPointsConfiguration(self, /) -> None: ... method color (line 1471) | def color(self, /) -> PySide6.QtGui.QColor: ... method colorBy (line 1472) | def colorBy(self, sourceData: typing.Iterable[float], /, gradient: PyS... method count (line 1473) | def count(self, /) -> int: ... method deselectAllPoints (line 1474) | def deselectAllPoints(self, /) -> None: ... method deselectPoint (line 1475) | def deselectPoint(self, index: int, /) -> None: ... method deselectPoints (line 1476) | def deselectPoints(self, indexes: typing.Iterable[int], /) -> None: ... method insert (line 1477) | def insert(self, index: int, point: PySide6.QtCore.QPointF | PySide6.Q... method isPointSelected (line 1478) | def isPointSelected(self, index: int, /) -> bool: ... method lightMarker (line 1479) | def lightMarker(self, /) -> PySide6.QtGui.QImage: ... method markerSize (line 1480) | def markerSize(self, /) -> float: ... method pen (line 1481) | def pen(self, /) -> PySide6.QtGui.QPen: ... method pointConfiguration (line 1482) | def pointConfiguration(self, index: int, /) -> Dict[QXYSeries.PointCon... method pointLabelsClipping (line 1483) | def pointLabelsClipping(self, /) -> bool: ... method pointLabelsColor (line 1484) | def pointLabelsColor(self, /) -> PySide6.QtGui.QColor: ... method pointLabelsFont (line 1485) | def pointLabelsFont(self, /) -> PySide6.QtGui.QFont: ... method pointLabelsFormat (line 1486) | def pointLabelsFormat(self, /) -> str: ... method pointLabelsVisible (line 1487) | def pointLabelsVisible(self, /) -> bool: ... method points (line 1488) | def points(self, /) -> List[PySide6.QtCore.QPointF]: ... method pointsConfiguration (line 1489) | def pointsConfiguration(self, /) -> Dict[int, Dict[QXYSeries.PointConf... method pointsVector (line 1490) | def pointsVector(self, /) -> List[PySide6.QtCore.QPointF]: ... method pointsVisible (line 1491) | def pointsVisible(self, /) -> bool: ... method remove (line 1493) | def remove(self, x: float, y: float, /) -> None: ... method remove (line 1495) | def remove(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method remove (line 1497) | def remove(self, index: int, /) -> None: ... method removePoints (line 1498) | def removePoints(self, index: int, count: int, /) -> None: ... method replace (line 1500) | def replace(self, oldX: float, oldY: float, newX: float, newY: float, ... method replace (line 1502) | def replace(self, index: int, newX: float, newY: float, /) -> None: ... method replace (line 1504) | def replace(self, oldPoint: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method replace (line 1506) | def replace(self, index: int, newPoint: PySide6.QtCore.QPointF | PySid... method replace (line 1508) | def replace(self, points: typing.Iterable[PySide6.QtCore.QPointF], /) ... method replaceNp (line 1509) | def replaceNp(self, x: typing.Iterable[typing.Any], y: typing.Iterable... method selectAllPoints (line 1510) | def selectAllPoints(self, /) -> None: ... method selectPoint (line 1511) | def selectPoint(self, index: int, /) -> None: ... method selectPoints (line 1512) | def selectPoints(self, indexes: typing.Iterable[int], /) -> None: ... method selectedColor (line 1513) | def selectedColor(self, /) -> PySide6.QtGui.QColor: ... method selectedLightMarker (line 1514) | def selectedLightMarker(self, /) -> PySide6.QtGui.QImage: ... method selectedPoints (line 1515) | def selectedPoints(self, /) -> List[int]: ... method setBestFitLineColor (line 1516) | def setBestFitLineColor(self, color: Union[PySide6.QtGui.QColor, str, ... method setBestFitLinePen (line 1517) | def setBestFitLinePen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Q... method setBestFitLineVisible (line 1518) | def setBestFitLineVisible(self, /, visible: bool = ...) -> None: ... method setBrush (line 1519) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setColor (line 1520) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setLightMarker (line 1521) | def setLightMarker(self, lightMarker: PySide6.QtGui.QImage, /) -> None... method setMarkerSize (line 1522) | def setMarkerSize(self, size: float, /) -> None: ... method setPen (line 1523) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method setPointConfiguration (line 1525) | def setPointConfiguration(self, index: int, key: QXYSeries.PointConfig... method setPointConfiguration (line 1527) | def setPointConfiguration(self, index: int, configuration: Dict[QXYSer... method setPointLabelsClipping (line 1528) | def setPointLabelsClipping(self, /, enabled: bool = ...) -> None: ... method setPointLabelsColor (line 1529) | def setPointLabelsColor(self, color: Union[PySide6.QtGui.QColor, str, ... method setPointLabelsFont (line 1530) | def setPointLabelsFont(self, font: PySide6.QtGui.QFont | str | typing.... method setPointLabelsFormat (line 1531) | def setPointLabelsFormat(self, format: str, /) -> None: ... method setPointLabelsVisible (line 1532) | def setPointLabelsVisible(self, /, visible: bool = ...) -> None: ... method setPointSelected (line 1533) | def setPointSelected(self, index: int, selected: bool, /) -> None: ... method setPointsConfiguration (line 1534) | def setPointsConfiguration(self, pointsConfiguration: Dict[int, Dict[Q... method setPointsVisible (line 1535) | def setPointsVisible(self, /, visible: bool = ...) -> None: ... method setSelectedColor (line 1536) | def setSelectedColor(self, color: Union[PySide6.QtGui.QColor, str, PyS... method setSelectedLightMarker (line 1537) | def setSelectedLightMarker(self, selectedLightMarker: PySide6.QtGui.QI... method sizeBy (line 1538) | def sizeBy(self, sourceData: typing.Iterable[float], minSize: float, m... method toggleSelection (line 1539) | def toggleSelection(self, indexes: typing.Iterable[int], /) -> None: ... method __lshift__ (line 1541) | def __lshift__(self, points: typing.Iterable[PySide6.QtCore.QPointF], ... method __lshift__ (line 1543) | def __lshift__(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method __rlshift__ (line 1544) | def __rlshift__(self, other): ... FILE: pyside6/stubs/PySide6-stubs/QtConcurrent.pyi class QFutureQString (line 12) | class QFutureQString(shiboken6.Object): method __init__ (line 14) | def __init__(self, QFutureQString: QFutureQString, /) -> None: ... method __init__ (line 16) | def __init__(self, /) -> None: ... method cancel (line 17) | def cancel(self, /) -> None: ... method cancelChain (line 18) | def cancelChain(self, /) -> None: ... method isCanceled (line 19) | def isCanceled(self, /) -> bool: ... method isFinished (line 20) | def isFinished(self, /) -> bool: ... method isPaused (line 21) | def isPaused(self, /) -> bool: ... method isRunning (line 22) | def isRunning(self, /) -> bool: ... method isStarted (line 23) | def isStarted(self, /) -> bool: ... method isSuspended (line 24) | def isSuspended(self, /) -> bool: ... method isSuspending (line 25) | def isSuspending(self, /) -> bool: ... method isValid (line 26) | def isValid(self, /) -> bool: ... method pause (line 27) | def pause(self, /) -> None: ... method progressMaximum (line 28) | def progressMaximum(self, /) -> int: ... method progressMinimum (line 29) | def progressMinimum(self, /) -> int: ... method progressText (line 30) | def progressText(self, /) -> str: ... method progressValue (line 31) | def progressValue(self, /) -> int: ... method resultCount (line 32) | def resultCount(self, /) -> int: ... method resume (line 33) | def resume(self, /) -> None: ... method setPaused (line 34) | def setPaused(self, paused: bool, /) -> None: ... method setSuspended (line 35) | def setSuspended(self, suspend: bool, /) -> None: ... method suspend (line 36) | def suspend(self, /) -> None: ... method togglePaused (line 37) | def togglePaused(self, /) -> None: ... method toggleSuspended (line 38) | def toggleSuspended(self, /) -> None: ... method waitForFinished (line 39) | def waitForFinished(self, /) -> None: ... method __copy__ (line 40) | def __copy__(self, /) -> typing_extensions.Self: ... class QFutureVoid (line 42) | class QFutureVoid(shiboken6.Object): method __init__ (line 44) | def __init__(self, QFutureVoid: QFutureVoid, /) -> None: ... method __init__ (line 46) | def __init__(self, /) -> None: ... method cancel (line 47) | def cancel(self, /) -> None: ... method cancelChain (line 48) | def cancelChain(self, /) -> None: ... method isCanceled (line 49) | def isCanceled(self, /) -> bool: ... method isFinished (line 50) | def isFinished(self, /) -> bool: ... method isPaused (line 51) | def isPaused(self, /) -> bool: ... method isRunning (line 52) | def isRunning(self, /) -> bool: ... method isStarted (line 53) | def isStarted(self, /) -> bool: ... method isSuspended (line 54) | def isSuspended(self, /) -> bool: ... method isSuspending (line 55) | def isSuspending(self, /) -> bool: ... method isValid (line 56) | def isValid(self, /) -> bool: ... method pause (line 57) | def pause(self, /) -> None: ... method progressMaximum (line 58) | def progressMaximum(self, /) -> int: ... method progressMinimum (line 59) | def progressMinimum(self, /) -> int: ... method progressText (line 60) | def progressText(self, /) -> str: ... method progressValue (line 61) | def progressValue(self, /) -> int: ... method resultCount (line 62) | def resultCount(self, /) -> int: ... method resume (line 63) | def resume(self, /) -> None: ... method setPaused (line 64) | def setPaused(self, paused: bool, /) -> None: ... method setSuspended (line 65) | def setSuspended(self, suspend: bool, /) -> None: ... method suspend (line 66) | def suspend(self, /) -> None: ... method togglePaused (line 67) | def togglePaused(self, /) -> None: ... method toggleSuspended (line 68) | def toggleSuspended(self, /) -> None: ... method waitForFinished (line 69) | def waitForFinished(self, /) -> None: ... method __copy__ (line 70) | def __copy__(self, /) -> typing_extensions.Self: ... class QFutureWatcherQString (line 72) | class QFutureWatcherQString(PySide6.QtCore.QObject): method __init__ (line 74) | def __init__(self, /, _parent: PySide6.QtCore.QObject | None = ..., ca... method future (line 75) | def future(self, /) -> QFutureQString: ... method setFuture (line 76) | def setFuture(self, future: QFutureQString, /) -> None: ... class QFutureWatcherVoid (line 78) | class QFutureWatcherVoid(PySide6.QtCore.QObject): method __init__ (line 80) | def __init__(self, /, _parent: PySide6.QtCore.QObject | None = ..., ca... class QIntList (line 82) | class QIntList: method __init__ (line 84) | def __init__(self, *args, **kwargs) -> None: ... method append (line 85) | def append(self, *args, **kwargs): ... method capacity (line 86) | def capacity(self, *args, **kwargs): ... method clear (line 87) | def clear(self, *args, **kwargs): ... method constData (line 88) | def constData(self, *args, **kwargs): ... method data (line 89) | def data(self, *args, **kwargs): ... method pop_back (line 90) | def pop_back(self, *args, **kwargs): ... method pop_front (line 91) | def pop_front(self, *args, **kwargs): ... method prepend (line 92) | def prepend(self, *args, **kwargs): ... method push_back (line 93) | def push_back(self, *args, **kwargs): ... method push_front (line 94) | def push_front(self, *args, **kwargs): ... method removeFirst (line 95) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 96) | def removeLast(self, *args, **kwargs): ... method reserve (line 97) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 98) | def __delitem__(self, other) -> None: ... method __getitem__ (line 99) | def __getitem__(self, index): ... method __len__ (line 100) | def __len__(self) -> int: ... method __setitem__ (line 101) | def __setitem__(self, index, object) -> None: ... class QtConcurrent (line 103) | class QtConcurrent(shiboken6.Object): class FutureResult (line 104) | class FutureResult(enum.Enum): class ReduceOption (line 107) | class ReduceOption(enum.Flag): class ThreadFunctionResult (line 112) | class ThreadFunctionResult(enum.Enum): method __init__ (line 115) | def __init__(self, *args, **kwargs) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtCore.pyi class _add_QDate_isValid_overloads (line 15) | class _add_QDate_isValid_overloads: class StaticOverloads (line 22) | class StaticOverloads: class isValid (line 23) | class isValid: method __call__ (line 25) | def __call__(y: int, m: int, d: int, /) -> bool: ... class InstanceOverloads (line 27) | class InstanceOverloads: class isValid (line 28) | class isValid: method __call__ (line 30) | def __call__(self, /) -> bool: ... method __call__ (line 32) | def __call__(self, y: int, m: int, d: int, /) -> bool: ... method __init__ (line 34) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 37) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 40) | def __get__(self, object: QDate, owner: typing.Any) -> InstanceOverloa... class _add_QFile_copy_overloads (line 42) | class _add_QFile_copy_overloads: class StaticOverloads (line 49) | class StaticOverloads: class copy (line 50) | class copy: method __call__ (line 52) | def __call__(fileName: str, newName: str, /) -> bool: ... class InstanceOverloads (line 54) | class InstanceOverloads: class copy (line 55) | class copy: method __call__ (line 57) | def __call__(self, newName: str | bytes | os.PathLike[str], /) -> ... method __call__ (line 59) | def __call__(self, fileName: str, newName: str, /) -> bool: ... method __init__ (line 61) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 64) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 67) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_exists_overloads (line 69) | class _add_QFile_exists_overloads: class StaticOverloads (line 76) | class StaticOverloads: class exists (line 77) | class exists: method __call__ (line 79) | def __call__(fileName: str, /) -> bool: ... class InstanceOverloads (line 81) | class InstanceOverloads: class exists (line 82) | class exists: method __call__ (line 84) | def __call__(self, /) -> bool: ... method __call__ (line 86) | def __call__(self, fileName: str, /) -> bool: ... method __init__ (line 88) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 91) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 94) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_link_overloads (line 96) | class _add_QFile_link_overloads: class StaticOverloads (line 103) | class StaticOverloads: class link (line 104) | class link: method __call__ (line 106) | def __call__(fileName: str, newName: str, /) -> bool: ... class InstanceOverloads (line 108) | class InstanceOverloads: class link (line 109) | class link: method __call__ (line 111) | def __call__(self, newName: str | bytes | os.PathLike[str], /) -> ... method __call__ (line 113) | def __call__(self, fileName: str, newName: str, /) -> bool: ... method __init__ (line 115) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 118) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 121) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_moveToTrash_overloads (line 123) | class _add_QFile_moveToTrash_overloads: class StaticOverloads (line 130) | class StaticOverloads: class moveToTrash (line 131) | class moveToTrash: method __call__ (line 133) | def __call__(fileName: str, /) -> Tuple[bool, str]: ... class InstanceOverloads (line 135) | class InstanceOverloads: class moveToTrash (line 136) | class moveToTrash: method __call__ (line 138) | def __call__(self, /) -> bool: ... method __call__ (line 140) | def __call__(self, fileName: str, /) -> Tuple[bool, str]: ... method __init__ (line 142) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 145) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 148) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_permissions_overloads (line 150) | class _add_QFile_permissions_overloads: class StaticOverloads (line 157) | class StaticOverloads: class permissions (line 158) | class permissions: method __call__ (line 160) | def __call__(filename: str | bytes | os.PathLike[str], /) -> QFile... class InstanceOverloads (line 162) | class InstanceOverloads: class permissions (line 163) | class permissions: method __call__ (line 165) | def __call__(self, /) -> QFileDevice.Permission: ... method __call__ (line 167) | def __call__(self, filename: str | bytes | os.PathLike[str], /) ->... method __init__ (line 169) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 172) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 175) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_remove_overloads (line 177) | class _add_QFile_remove_overloads: class StaticOverloads (line 184) | class StaticOverloads: class remove (line 185) | class remove: method __call__ (line 187) | def __call__(fileName: str, /) -> bool: ... class InstanceOverloads (line 189) | class InstanceOverloads: class remove (line 190) | class remove: method __call__ (line 192) | def __call__(self, /) -> bool: ... method __call__ (line 194) | def __call__(self, fileName: str, /) -> bool: ... method __init__ (line 196) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 199) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 202) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_rename_overloads (line 204) | class _add_QFile_rename_overloads: class StaticOverloads (line 211) | class StaticOverloads: class rename (line 212) | class rename: method __call__ (line 214) | def __call__(oldName: str, newName: str, /) -> bool: ... class InstanceOverloads (line 216) | class InstanceOverloads: class rename (line 217) | class rename: method __call__ (line 219) | def __call__(self, newName: str | bytes | os.PathLike[str], /) -> ... method __call__ (line 221) | def __call__(self, oldName: str, newName: str, /) -> bool: ... method __init__ (line 223) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 226) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 229) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_resize_overloads (line 231) | class _add_QFile_resize_overloads: class StaticOverloads (line 238) | class StaticOverloads: class resize (line 239) | class resize: method __call__ (line 241) | def __call__(filename: str, sz: int, /) -> bool: ... class InstanceOverloads (line 243) | class InstanceOverloads: class resize (line 244) | class resize: method __call__ (line 246) | def __call__(self, sz: int, /) -> bool: ... method __call__ (line 248) | def __call__(self, filename: str, sz: int, /) -> bool: ... method __init__ (line 250) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 253) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 256) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_setPermissions_overloads (line 258) | class _add_QFile_setPermissions_overloads: class StaticOverloads (line 265) | class StaticOverloads: class setPermissions (line 266) | class setPermissions: method __call__ (line 268) | def __call__(filename: str | bytes | os.PathLike[str], permissionS... class InstanceOverloads (line 270) | class InstanceOverloads: class setPermissions (line 271) | class setPermissions: method __call__ (line 273) | def __call__(self, permissionSpec: QFileDevice.Permission, /) -> b... method __call__ (line 275) | def __call__(self, filename: str | bytes | os.PathLike[str], permi... method __init__ (line 277) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 280) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 283) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFile_symLinkTarget_overloads (line 285) | class _add_QFile_symLinkTarget_overloads: class StaticOverloads (line 292) | class StaticOverloads: class symLinkTarget (line 293) | class symLinkTarget: method __call__ (line 295) | def __call__(fileName: str, /) -> str: ... class InstanceOverloads (line 297) | class InstanceOverloads: class symLinkTarget (line 298) | class symLinkTarget: method __call__ (line 300) | def __call__(self, /) -> str: ... method __call__ (line 302) | def __call__(self, fileName: str, /) -> str: ... method __init__ (line 304) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 307) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 310) | def __get__(self, object: QFile, owner: typing.Any) -> InstanceOverloa... class _add_QFileInfo_exists_overloads (line 312) | class _add_QFileInfo_exists_overloads: class StaticOverloads (line 319) | class StaticOverloads: class exists (line 320) | class exists: method __call__ (line 322) | def __call__(file: str, /) -> bool: ... class InstanceOverloads (line 324) | class InstanceOverloads: class exists (line 325) | class exists: method __call__ (line 327) | def __call__(self, /) -> bool: ... method __call__ (line 329) | def __call__(self, file: str, /) -> bool: ... method __init__ (line 331) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 334) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 337) | def __get__(self, object: QFileInfo, owner: typing.Any) -> InstanceOve... class _add_QLibrary_resolve_overloads (line 339) | class _add_QLibrary_resolve_overloads: class StaticOverloads (line 346) | class StaticOverloads: class resolve (line 347) | class resolve: method __call__ (line 350) | def __call__(fileName: str, version: str, symbol: bytes | bytearra... method __call__ (line 353) | def __call__(fileName: str, symbol: bytes | bytearray | memoryview... method __call__ (line 356) | def __call__(fileName: str, verNum: int, symbol: bytes | bytearray... class InstanceOverloads (line 358) | class InstanceOverloads: class resolve (line 359) | class resolve: method __call__ (line 361) | def __call__(self, symbol: bytes | bytearray | memoryview, /) -> i... method __call__ (line 363) | def __call__(self, fileName: str, version: str, symbol: bytes | by... method __call__ (line 365) | def __call__(self, fileName: str, symbol: bytes | bytearray | memo... method __call__ (line 367) | def __call__(self, fileName: str, verNum: int, symbol: bytes | byt... method __init__ (line 369) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 372) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 375) | def __get__(self, object: QLibrary, owner: typing.Any) -> InstanceOver... class _add_QMetaType_construct_overloads (line 377) | class _add_QMetaType_construct_overloads: class StaticOverloads (line 384) | class StaticOverloads: class construct (line 385) | class construct: method __call__ (line 387) | def __call__(type: int, where: int, copy: int, /) -> int: ... class InstanceOverloads (line 389) | class InstanceOverloads: class construct (line 390) | class construct: method __call__ (line 392) | def __call__(self, where: int, /, copy: int | None = ...) -> int: ... method __call__ (line 394) | def __call__(self, type: int, where: int, copy: int, /) -> int: ... method __init__ (line 396) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 399) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 402) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_create_overloads (line 404) | class _add_QMetaType_create_overloads: class StaticOverloads (line 411) | class StaticOverloads: class create (line 412) | class create: method __call__ (line 414) | def __call__(type: int, /, copy: int | None = ...) -> int: ... class InstanceOverloads (line 416) | class InstanceOverloads: class create (line 417) | class create: method __call__ (line 419) | def __call__(self, /, copy: int | None = ...) -> int: ... method __call__ (line 421) | def __call__(self, type: int, /, copy: int | None = ...) -> int: ... method __init__ (line 423) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 426) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 429) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_destroy_overloads (line 431) | class _add_QMetaType_destroy_overloads: class StaticOverloads (line 438) | class StaticOverloads: class destroy (line 439) | class destroy: method __call__ (line 441) | def __call__(type: int, data: int, /) -> None: ... class InstanceOverloads (line 443) | class InstanceOverloads: class destroy (line 444) | class destroy: method __call__ (line 446) | def __call__(self, data: int, /) -> None: ... method __call__ (line 448) | def __call__(self, type: int, data: int, /) -> None: ... method __init__ (line 450) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 453) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 456) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_destruct_overloads (line 458) | class _add_QMetaType_destruct_overloads: class StaticOverloads (line 465) | class StaticOverloads: class destruct (line 466) | class destruct: method __call__ (line 468) | def __call__(type: int, where: int, /) -> None: ... class InstanceOverloads (line 470) | class InstanceOverloads: class destruct (line 471) | class destruct: method __call__ (line 473) | def __call__(self, data: int, /) -> None: ... method __call__ (line 475) | def __call__(self, type: int, where: int, /) -> None: ... method __init__ (line 477) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 480) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 483) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_equals_overloads (line 485) | class _add_QMetaType_equals_overloads: class StaticOverloads (line 492) | class StaticOverloads: class equals (line 493) | class equals: method __call__ (line 495) | def __call__(lhs: int, rhs: int, typeId: int, /) -> Tuple[bool, in... class InstanceOverloads (line 497) | class InstanceOverloads: class equals (line 498) | class equals: method __call__ (line 500) | def __call__(self, lhs: int, rhs: int, /) -> bool: ... method __call__ (line 502) | def __call__(self, lhs: int, rhs: int, typeId: int, /) -> Tuple[bo... method __init__ (line 504) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 507) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 510) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_hasRegisteredDebugStreamOperator_overloads (line 512) | class _add_QMetaType_hasRegisteredDebugStreamOperator_overloads: class StaticOverloads (line 519) | class StaticOverloads: class hasRegisteredDebugStreamOperator (line 520) | class hasRegisteredDebugStreamOperator: method __call__ (line 522) | def __call__(typeId: int, /) -> bool: ... class InstanceOverloads (line 524) | class InstanceOverloads: class hasRegisteredDebugStreamOperator (line 525) | class hasRegisteredDebugStreamOperator: method __call__ (line 527) | def __call__(self, /) -> bool: ... method __call__ (line 529) | def __call__(self, typeId: int, /) -> bool: ... method __init__ (line 531) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 534) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 537) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_isRegistered_overloads (line 539) | class _add_QMetaType_isRegistered_overloads: class StaticOverloads (line 546) | class StaticOverloads: class isRegistered (line 547) | class isRegistered: method __call__ (line 549) | def __call__(type: int, /) -> bool: ... class InstanceOverloads (line 551) | class InstanceOverloads: class isRegistered (line 552) | class isRegistered: method __call__ (line 554) | def __call__(self, /) -> bool: ... method __call__ (line 556) | def __call__(self, type: int, /) -> bool: ... method __init__ (line 558) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 561) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 564) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_load_overloads (line 566) | class _add_QMetaType_load_overloads: class StaticOverloads (line 573) | class StaticOverloads: class load (line 574) | class load: method __call__ (line 576) | def __call__(stream: QDataStream, type: int, data: int, /) -> bool... class InstanceOverloads (line 578) | class InstanceOverloads: class load (line 579) | class load: method __call__ (line 581) | def __call__(self, stream: QDataStream, data: int, /) -> bool: ... method __call__ (line 583) | def __call__(self, stream: QDataStream, type: int, data: int, /) -... method __init__ (line 585) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 588) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 591) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_save_overloads (line 593) | class _add_QMetaType_save_overloads: class StaticOverloads (line 600) | class StaticOverloads: class save (line 601) | class save: method __call__ (line 603) | def __call__(stream: QDataStream, type: int, data: int, /) -> bool... class InstanceOverloads (line 605) | class InstanceOverloads: class save (line 606) | class save: method __call__ (line 608) | def __call__(self, stream: QDataStream, data: int, /) -> bool: ... method __call__ (line 610) | def __call__(self, stream: QDataStream, type: int, data: int, /) -... method __init__ (line 612) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 615) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 618) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QMetaType_sizeOf_overloads (line 620) | class _add_QMetaType_sizeOf_overloads: class StaticOverloads (line 627) | class StaticOverloads: class sizeOf (line 628) | class sizeOf: method __call__ (line 630) | def __call__(type: int, /) -> int: ... class InstanceOverloads (line 632) | class InstanceOverloads: class sizeOf (line 633) | class sizeOf: method __call__ (line 635) | def __call__(self, /) -> int: ... method __call__ (line 637) | def __call__(self, type: int, /) -> int: ... method __init__ (line 639) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 642) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 645) | def __get__(self, object: QMetaType, owner: typing.Any) -> InstanceOve... class _add_QObject_connect_overloads (line 647) | class _add_QObject_connect_overloads: class StaticOverloads (line 654) | class StaticOverloads: class connect (line 655) | class connect: method __call__ (line 658) | def __call__(sender: QObject, signal: QMetaMethod, receiver: QObje... method __call__ (line 661) | def __call__(sender: QObject, signal: str, receiver: QObject, memb... method __call__ (line 664) | def __call__(sender: QObject, signal: str, context: QObject, funct... method __call__ (line 667) | def __call__(sender: QObject, signal: str, functor: collections.ab... class InstanceOverloads (line 669) | class InstanceOverloads: class connect (line 670) | class connect: method __call__ (line 672) | def __call__(self, sender: QObject, signal: str, member: str, /, t... method __call__ (line 674) | def __call__(self, signal: str, receiver: QObject, method: str, /,... method __call__ (line 676) | def __call__(self, signal: str, functor: collections.abc.Callable[... method __call__ (line 678) | def __call__(self, sender: QObject, signal: QMetaMethod, receiver:... method __call__ (line 680) | def __call__(self, sender: QObject, signal: str, receiver: QObject... method __call__ (line 682) | def __call__(self, sender: QObject, signal: str, context: QObject,... method __call__ (line 684) | def __call__(self, sender: QObject, signal: str, functor: collecti... method __init__ (line 686) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 689) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 692) | def __get__(self, object: QObject, owner: typing.Any) -> InstanceOverl... class _add_QObject_disconnect_overloads (line 694) | class _add_QObject_disconnect_overloads: class StaticOverloads (line 701) | class StaticOverloads: class disconnect (line 702) | class disconnect: method __call__ (line 705) | def __call__(connection: QMetaObject.Connection, /) -> bool: ... method __call__ (line 708) | def __call__(sender: QObject, signal: QMetaMethod, receiver: QObje... method __call__ (line 711) | def __call__(sender: QObject, signal: str, receiver: QObject, memb... method __call__ (line 714) | def __call__(sender: QObject, signal: str, functor: collections.ab... class InstanceOverloads (line 716) | class InstanceOverloads: class disconnect (line 717) | class disconnect: method __call__ (line 719) | def __call__(self, receiver: QObject, /, member: str | None = ...)... method __call__ (line 721) | def __call__(self, signal: str, receiver: QObject, member: str, /)... method __call__ (line 723) | def __call__(self, signal: str, functor: collections.abc.Callable[... method __call__ (line 725) | def __call__(self, connection: QMetaObject.Connection, /) -> bool:... method __call__ (line 727) | def __call__(self, sender: QObject, signal: QMetaMethod, receiver:... method __call__ (line 729) | def __call__(self, sender: QObject, signal: str, receiver: QObject... method __call__ (line 731) | def __call__(self, sender: QObject, signal: str, functor: collecti... method __init__ (line 733) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 736) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 739) | def __get__(self, object: QObject, owner: typing.Any) -> InstanceOverl... class _add_QOperatingSystemVersionBase_name_overloads (line 741) | class _add_QOperatingSystemVersionBase_name_overloads: class StaticOverloads (line 748) | class StaticOverloads: class name (line 749) | class name: method __call__ (line 751) | def __call__(osversion: QOperatingSystemVersionBase, /) -> str: ... class InstanceOverloads (line 753) | class InstanceOverloads: class name (line 754) | class name: method __call__ (line 756) | def __call__(self, /) -> str: ... method __call__ (line 758) | def __call__(self, osversion: QOperatingSystemVersionBase, /) -> s... method __init__ (line 760) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 763) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 766) | def __get__(self, object: QOperatingSystemVersionBase, owner: typing.A... class _add_QProcess_startDetached_overloads (line 768) | class _add_QProcess_startDetached_overloads: class StaticOverloads (line 775) | class StaticOverloads: class startDetached (line 776) | class startDetached: method __call__ (line 778) | def __call__(program: str, /, arguments: typing.Iterable[str] = ..... class InstanceOverloads (line 780) | class InstanceOverloads: class startDetached (line 781) | class startDetached: method __call__ (line 783) | def __call__(self, /) -> Tuple[bool, int]: ... method __call__ (line 785) | def __call__(self, program: str, /, arguments: typing.Iterable[str... method __init__ (line 787) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 790) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 793) | def __get__(self, object: QProcess, owner: typing.Any) -> InstanceOver... class _add_QTime_isValid_overloads (line 795) | class _add_QTime_isValid_overloads: class StaticOverloads (line 802) | class StaticOverloads: class isValid (line 803) | class isValid: method __call__ (line 805) | def __call__(h: int, m: int, s: int, /, ms: int | None = ...) -> b... class InstanceOverloads (line 807) | class InstanceOverloads: class isValid (line 808) | class isValid: method __call__ (line 810) | def __call__(self, /) -> bool: ... method __call__ (line 812) | def __call__(self, h: int, m: int, s: int, /, ms: int | None = ...... method __init__ (line 814) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 817) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 820) | def __get__(self, object: QTime, owner: typing.Any) -> InstanceOverloa... class _add_QTimeZone_isUtcOrFixedOffset_overloads (line 822) | class _add_QTimeZone_isUtcOrFixedOffset_overloads: class StaticOverloads (line 829) | class StaticOverloads: class isUtcOrFixedOffset (line 830) | class isUtcOrFixedOffset: method __call__ (line 832) | def __call__(spec: Qt.TimeSpec, /) -> bool: ... class InstanceOverloads (line 834) | class InstanceOverloads: class isUtcOrFixedOffset (line 835) | class isUtcOrFixedOffset: method __call__ (line 837) | def __call__(self, /) -> bool: ... method __call__ (line 839) | def __call__(self, spec: Qt.TimeSpec, /) -> bool: ... method __init__ (line 841) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 844) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 847) | def __get__(self, object: QTimeZone, owner: typing.Any) -> InstanceOve... class ClassInfo (line 852) | class ClassInfo: method __init__ (line 853) | def __init__(self, /, **info: Dict[str, str]) -> None: ... method __call__ (line 854) | def __call__(self, *args, **kwargs): ... class MetaFunction (line 856) | class MetaFunction: method __init__ (line 858) | def __init__(cls, *args, **kwargs) -> None: ... method __call__ (line 859) | def __call__(self, /, *args: Any) -> Any: ... class MetaSignal (line 861) | class MetaSignal(type): method __instancecheck__ (line 863) | def __instancecheck__(self, object: object, /) -> bool: ... # type: i... class Property (line 865) | class Property: method __init__ (line 870) | def __init__(self, type: type, /, fget: collections.abc.Callable[[typi... method deleter (line 871) | def deleter(self, fdel: collections.abc.Callable[[typing.Any], None], ... method getter (line 872) | def getter(self, fget: collections.abc.Callable[[typing.Any], typing.A... method read (line 873) | def read(self, fget: collections.abc.Callable[[typing.Any], typing.Any... method resetter (line 874) | def resetter(self, *args, **kwargs): ... method setter (line 875) | def setter(self, fset: collections.abc.Callable[[typing.Any, typing.An... method write (line 876) | def write(self, fset: collections.abc.Callable[[typing.Any, typing.Any... method __call__ (line 877) | def __call__(self, func: collections.abc.Callable[..., typing.Any], /)... class PyClassProperty (line 879) | class PyClassProperty(property): method __init__ (line 882) | def __init__(cls, /, fget: collections.abc.Callable[[typing.Any], typi... method __delete__ (line 883) | def __delete__(self, *args, **kwargs): ... method __get__ (line 884) | def __get__(self, instance, owner): ... # type: ignore[override] method __set__ (line 885) | def __set__(self, instance, value): ... class QAbstractAnimation (line 887) | class QAbstractAnimation(QObject): class DeletionPolicy (line 888) | class DeletionPolicy(enum.Enum): class Direction (line 892) | class Direction(enum.Enum): class State (line 896) | class State(enum.Enum): method __init__ (line 905) | def __init__(self, /, parent: QObject | None = ..., *, state: QAbstrac... method currentLoop (line 906) | def currentLoop(self, /) -> int: ... method currentLoopTime (line 907) | def currentLoopTime(self, /) -> int: ... method currentTime (line 908) | def currentTime(self, /) -> int: ... method direction (line 909) | def direction(self, /) -> QAbstractAnimation.Direction: ... method duration (line 910) | def duration(self, /) -> int: ... method event (line 911) | def event(self, event: QEvent, /) -> bool: ... method group (line 912) | def group(self, /) -> QAnimationGroup: ... method loopCount (line 913) | def loopCount(self, /) -> int: ... method pause (line 914) | def pause(self, /) -> None: ... method resume (line 915) | def resume(self, /) -> None: ... method setCurrentTime (line 916) | def setCurrentTime(self, msecs: int, /) -> None: ... method setDirection (line 917) | def setDirection(self, direction: QAbstractAnimation.Direction, /) -> ... method setLoopCount (line 918) | def setLoopCount(self, loopCount: int, /) -> None: ... method setPaused (line 919) | def setPaused(self, arg__1: bool, /) -> None: ... method start (line 920) | def start(self, /, policy: QAbstractAnimation.DeletionPolicy = ...) ->... method state (line 921) | def state(self, /) -> QAbstractAnimation.State: ... method stop (line 922) | def stop(self, /) -> None: ... method totalDuration (line 923) | def totalDuration(self, /) -> int: ... method updateCurrentTime (line 924) | def updateCurrentTime(self, currentTime: int, /) -> None: ... method updateDirection (line 925) | def updateDirection(self, direction: QAbstractAnimation.Direction, /) ... method updateState (line 926) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QAbstractEventDispatcher (line 928) | class QAbstractEventDispatcher(QObject): class TimerInfo (line 929) | class TimerInfo(shiboken6.Object): method __init__ (line 934) | def __init__(self, id: int, i: int, t: Qt.TimerType, /) -> None: ... method __init__ (line 936) | def __init__(self, TimerInfo: QAbstractEventDispatcher.TimerInfo, /)... method __copy__ (line 937) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 941) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method closingDown (line 942) | def closingDown(self, /) -> None: ... method filterNativeEvent (line 943) | def filterNativeEvent(self, eventType: QByteArray | bytes | bytearray ... method installNativeEventFilter (line 944) | def installNativeEventFilter(self, filterObj: QAbstractNativeEventFilt... method instance (line 946) | def instance(thread: QThread | None = ...) -> QAbstractEventDispatcher... method interrupt (line 947) | def interrupt(self, /) -> None: ... method processEvents (line 948) | def processEvents(self, flags: QEventLoop.ProcessEventsFlag, /) -> boo... method registerSocketNotifier (line 949) | def registerSocketNotifier(self, notifier: QSocketNotifier, /) -> None... method registerTimer (line 951) | def registerTimer(self, timerId: int, interval: int, timerType: Qt.Tim... method registerTimer (line 953) | def registerTimer(self, interval: int, timerType: Qt.TimerType, object... method registeredTimers (line 954) | def registeredTimers(self, object: QObject, /) -> List[QAbstractEventD... method remainingTime (line 955) | def remainingTime(self, timerId: int, /) -> int: ... method removeNativeEventFilter (line 956) | def removeNativeEventFilter(self, filterObj: QAbstractNativeEventFilte... method startingUp (line 957) | def startingUp(self, /) -> None: ... method unregisterSocketNotifier (line 958) | def unregisterSocketNotifier(self, notifier: QSocketNotifier, /) -> No... method unregisterTimer (line 960) | def unregisterTimer(self, timerId: Qt.TimerId, /) -> bool: ... method unregisterTimer (line 962) | def unregisterTimer(self, timerId: int, /) -> bool: ... method unregisterTimers (line 963) | def unregisterTimers(self, object: QObject, /) -> bool: ... method wakeUp (line 964) | def wakeUp(self, /) -> None: ... class QAbstractItemModel (line 966) | class QAbstractItemModel(QObject): class CheckIndexOption (line 967) | class CheckIndexOption(enum.Flag): class LayoutChangeHint (line 973) | class LayoutChangeHint(enum.Enum): method __init__ (line 996) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method beginInsertColumns (line 997) | def beginInsertColumns(self, parent: QModelIndex | QPersistentModelInd... method beginInsertRows (line 998) | def beginInsertRows(self, parent: QModelIndex | QPersistentModelIndex,... method beginMoveColumns (line 999) | def beginMoveColumns(self, sourceParent: QModelIndex | QPersistentMode... method beginMoveRows (line 1000) | def beginMoveRows(self, sourceParent: QModelIndex | QPersistentModelIn... method beginRemoveColumns (line 1001) | def beginRemoveColumns(self, parent: QModelIndex | QPersistentModelInd... method beginRemoveRows (line 1002) | def beginRemoveRows(self, parent: QModelIndex | QPersistentModelIndex,... method beginResetModel (line 1003) | def beginResetModel(self, /) -> None: ... method buddy (line 1004) | def buddy(self, index: QModelIndex | QPersistentModelIndex, /) -> QMod... method canDropMimeData (line 1005) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method canFetchMore (line 1006) | def canFetchMore(self, parent: QModelIndex | QPersistentModelIndex, /)... method changePersistentIndex (line 1007) | def changePersistentIndex(self, from_: QModelIndex | QPersistentModelI... method changePersistentIndexList (line 1008) | def changePersistentIndexList(self, from_: list[QModelIndex], to: list... method checkIndex (line 1009) | def checkIndex(self, index: QModelIndex | QPersistentModelIndex, /, op... method clearItemData (line 1010) | def clearItemData(self, index: QModelIndex | QPersistentModelIndex, /)... method columnCount (line 1011) | def columnCount(self, /, parent: QModelIndex | QPersistentModelIndex =... method createIndex (line 1013) | def createIndex(self, row: int, column: int, ptr: object, /) -> QModel... method createIndex (line 1015) | def createIndex(self, row: int, column: int, /, id: int | None = ...) ... method data (line 1016) | def data(self, index: QModelIndex | QPersistentModelIndex, /, role: Qt... method decodeData (line 1017) | def decodeData(self, row: int, column: int, parent: QModelIndex | QPer... method dropMimeData (line 1018) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method encodeData (line 1019) | def encodeData(self, indexes: typing.Iterable[QModelIndex | QPersisten... method endInsertColumns (line 1020) | def endInsertColumns(self, /) -> None: ... method endInsertRows (line 1021) | def endInsertRows(self, /) -> None: ... method endMoveColumns (line 1022) | def endMoveColumns(self, /) -> None: ... method endMoveRows (line 1023) | def endMoveRows(self, /) -> None: ... method endRemoveColumns (line 1024) | def endRemoveColumns(self, /) -> None: ... method endRemoveRows (line 1025) | def endRemoveRows(self, /) -> None: ... method endResetModel (line 1026) | def endResetModel(self, /) -> None: ... method fetchMore (line 1027) | def fetchMore(self, parent: QModelIndex | QPersistentModelIndex, /) ->... method flags (line 1028) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method hasChildren (line 1029) | def hasChildren(self, /, parent: QModelIndex | QPersistentModelIndex =... method hasIndex (line 1030) | def hasIndex(self, row: int, column: int, /, parent: QModelIndex | QPe... method headerData (line 1031) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method index (line 1032) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method insertColumn (line 1033) | def insertColumn(self, column: int, /, parent: QModelIndex | QPersiste... method insertColumns (line 1034) | def insertColumns(self, column: int, count: int, /, parent: QModelInde... method insertRow (line 1035) | def insertRow(self, row: int, /, parent: QModelIndex | QPersistentMode... method insertRows (line 1036) | def insertRows(self, row: int, count: int, /, parent: QModelIndex | QP... method itemData (line 1037) | def itemData(self, index: QModelIndex | QPersistentModelIndex, /) -> D... method match (line 1038) | def match(self, start: QModelIndex | QPersistentModelIndex, role: Qt.I... method mimeData (line 1039) | def mimeData(self, indexes: list[QModelIndex], /) -> QMimeData: ... method mimeTypes (line 1040) | def mimeTypes(self, /) -> List[str]: ... method moveColumn (line 1041) | def moveColumn(self, sourceParent: QModelIndex | QPersistentModelIndex... method moveColumns (line 1042) | def moveColumns(self, sourceParent: QModelIndex | QPersistentModelInde... method moveRow (line 1043) | def moveRow(self, sourceParent: QModelIndex | QPersistentModelIndex, s... method moveRows (line 1044) | def moveRows(self, sourceParent: QModelIndex | QPersistentModelIndex, ... method multiData (line 1045) | def multiData(self, index: QModelIndex | QPersistentModelIndex, roleDa... method parent (line 1047) | def parent(self, child: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 1049) | def parent(self, /) -> QObject: ... method persistentIndexList (line 1050) | def persistentIndexList(self, /) -> list[QModelIndex]: ... method removeColumn (line 1051) | def removeColumn(self, column: int, /, parent: QModelIndex | QPersiste... method removeColumns (line 1052) | def removeColumns(self, column: int, count: int, /, parent: QModelInde... method removeRow (line 1053) | def removeRow(self, row: int, /, parent: QModelIndex | QPersistentMode... method removeRows (line 1054) | def removeRows(self, row: int, count: int, /, parent: QModelIndex | QP... method resetInternalData (line 1055) | def resetInternalData(self, /) -> None: ... method revert (line 1056) | def revert(self, /) -> None: ... method roleNames (line 1057) | def roleNames(self, /) -> Dict[int, QByteArray]: ... method rowCount (line 1058) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setData (line 1059) | def setData(self, index: QModelIndex | QPersistentModelIndex, value: A... method setHeaderData (line 1060) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setItemData (line 1061) | def setItemData(self, index: QModelIndex | QPersistentModelIndex, role... method sibling (line 1062) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... method sort (line 1063) | def sort(self, column: int, /, order: Qt.SortOrder = ...) -> None: ... method span (line 1064) | def span(self, index: QModelIndex | QPersistentModelIndex, /) -> QSize... method submit (line 1065) | def submit(self, /) -> bool: ... method supportedDragActions (line 1066) | def supportedDragActions(self, /) -> Qt.DropAction: ... method supportedDropActions (line 1067) | def supportedDropActions(self, /) -> Qt.DropAction: ... class QAbstractListModel (line 1069) | class QAbstractListModel(QAbstractItemModel): method __init__ (line 1071) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method columnCount (line 1072) | def columnCount(self, parent: QModelIndex | QPersistentModelIndex, /) ... method dropMimeData (line 1073) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method flags (line 1074) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method hasChildren (line 1075) | def hasChildren(self, parent: QModelIndex | QPersistentModelIndex, /) ... method index (line 1076) | def index(self, row: int, /, column: int | None = ..., parent: QModelI... method parent (line 1078) | def parent(self, child: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 1080) | def parent(self, /) -> QObject: ... method sibling (line 1081) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... class QAbstractNativeEventFilter (line 1083) | class QAbstractNativeEventFilter(shiboken6.Object): method __init__ (line 1084) | def __init__(self, /) -> None: ... method nativeEventFilter (line 1085) | def nativeEventFilter(self, eventType: QByteArray | bytes | bytearray ... class QAbstractProxyModel (line 1087) | class QAbstractProxyModel(QAbstractItemModel): method __init__ (line 1090) | def __init__(self, /, parent: QObject | None = ..., *, sourceModel: QA... method buddy (line 1091) | def buddy(self, index: QModelIndex | QPersistentModelIndex, /) -> QMod... method canDropMimeData (line 1092) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method canFetchMore (line 1093) | def canFetchMore(self, parent: QModelIndex | QPersistentModelIndex, /)... method clearItemData (line 1094) | def clearItemData(self, index: QModelIndex | QPersistentModelIndex, /)... method createSourceIndex (line 1095) | def createSourceIndex(self, row: int, col: int, internalPtr: int, /) -... method data (line 1096) | def data(self, proxyIndex: QModelIndex | QPersistentModelIndex, /, rol... method dropMimeData (line 1097) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method fetchMore (line 1098) | def fetchMore(self, parent: QModelIndex | QPersistentModelIndex, /) ->... method flags (line 1099) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method hasChildren (line 1100) | def hasChildren(self, /, parent: QModelIndex | QPersistentModelIndex =... method headerData (line 1101) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method itemData (line 1102) | def itemData(self, index: QModelIndex | QPersistentModelIndex, /) -> D... method mapFromSource (line 1103) | def mapFromSource(self, sourceIndex: QModelIndex | QPersistentModelInd... method mapSelectionFromSource (line 1104) | def mapSelectionFromSource(self, selection: QItemSelection, /) -> QIte... method mapSelectionToSource (line 1105) | def mapSelectionToSource(self, selection: QItemSelection, /) -> QItemS... method mapToSource (line 1106) | def mapToSource(self, proxyIndex: QModelIndex | QPersistentModelIndex,... method mimeData (line 1107) | def mimeData(self, indexes: typing.Iterable[QModelIndex | QPersistentM... method mimeTypes (line 1108) | def mimeTypes(self, /) -> List[str]: ... method revert (line 1109) | def revert(self, /) -> None: ... method roleNames (line 1110) | def roleNames(self, /) -> Dict[int, QByteArray]: ... method setData (line 1111) | def setData(self, index: QModelIndex | QPersistentModelIndex, value: A... method setHeaderData (line 1112) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setItemData (line 1113) | def setItemData(self, index: QModelIndex | QPersistentModelIndex, role... method setSourceModel (line 1114) | def setSourceModel(self, sourceModel: QAbstractItemModel, /) -> None: ... method sibling (line 1115) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... method sort (line 1116) | def sort(self, column: int, /, order: Qt.SortOrder = ...) -> None: ... method sourceModel (line 1117) | def sourceModel(self, /) -> QAbstractItemModel: ... method span (line 1118) | def span(self, index: QModelIndex | QPersistentModelIndex, /) -> QSize... method submit (line 1119) | def submit(self, /) -> bool: ... method supportedDragActions (line 1120) | def supportedDragActions(self, /) -> Qt.DropAction: ... method supportedDropActions (line 1121) | def supportedDropActions(self, /) -> Qt.DropAction: ... class QAbstractTableModel (line 1123) | class QAbstractTableModel(QAbstractItemModel): method __init__ (line 1125) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method dropMimeData (line 1126) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method flags (line 1127) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method hasChildren (line 1128) | def hasChildren(self, parent: QModelIndex | QPersistentModelIndex, /) ... method index (line 1129) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method parent (line 1131) | def parent(self, child: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 1133) | def parent(self, /) -> QObject: ... method sibling (line 1134) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... class QAnimationGroup (line 1136) | class QAnimationGroup(QAbstractAnimation): method __init__ (line 1138) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method addAnimation (line 1139) | def addAnimation(self, animation: QAbstractAnimation, /) -> None: ... method animationAt (line 1140) | def animationAt(self, index: int, /) -> QAbstractAnimation: ... method animationCount (line 1141) | def animationCount(self, /) -> int: ... method clear (line 1142) | def clear(self, /) -> None: ... method event (line 1143) | def event(self, event: QEvent, /) -> bool: ... method indexOfAnimation (line 1144) | def indexOfAnimation(self, animation: QAbstractAnimation, /) -> int: ... method insertAnimation (line 1145) | def insertAnimation(self, index: int, animation: QAbstractAnimation, /... method removeAnimation (line 1146) | def removeAnimation(self, animation: QAbstractAnimation, /) -> None: ... method takeAnimation (line 1147) | def takeAnimation(self, index: int, /) -> QAbstractAnimation: ... class QBasicMutex (line 1149) | class QBasicMutex(shiboken6.Object): method __init__ (line 1150) | def __init__(self, /) -> None: ... method lock (line 1151) | def lock(self, /) -> None: ... method tryLock (line 1152) | def tryLock(self, /) -> bool: ... method try_lock (line 1153) | def try_lock(self, /) -> bool: ... method unlock (line 1154) | def unlock(self, /) -> None: ... class QBasicTimer (line 1156) | class QBasicTimer(shiboken6.Object): method __init__ (line 1157) | def __init__(self, /) -> None: ... method id (line 1158) | def id(self, /) -> Qt.TimerId: ... method isActive (line 1159) | def isActive(self, /) -> bool: ... method start (line 1161) | def start(self, msec: int, timerType: Qt.TimerType, obj: QObject, /) -... method start (line 1163) | def start(self, msec: int, obj: QObject, /) -> None: ... method stop (line 1164) | def stop(self, /) -> None: ... method swap (line 1165) | def swap(self, other: QBasicTimer, /) -> None: ... method timerId (line 1166) | def timerId(self, /) -> int: ... class QBitArray (line 1168) | class QBitArray(shiboken6.Object): method __init__ (line 1170) | def __init__(self, size: int, /, val: bool = ...) -> None: ... method __init__ (line 1172) | def __init__(self, other: QBitArray, /) -> None: ... method __init__ (line 1174) | def __init__(self, /) -> None: ... method at (line 1175) | def at(self, i: int, /) -> bool: ... method bits (line 1176) | def bits(self, /) -> bytes | bytearray | memoryview: ... method clear (line 1177) | def clear(self, /) -> None: ... method clearBit (line 1178) | def clearBit(self, i: int, /) -> None: ... method count (line 1180) | def count(self, on: bool, /) -> int: ... method count (line 1182) | def count(self, /) -> int: ... method fill (line 1184) | def fill(self, val: bool, first: int, last: int, /) -> None: ... method fill (line 1186) | def fill(self, aval: bool, /, asize: int = ...) -> bool: ... method fromBits (line 1188) | def fromBits(data: bytes | bytearray | memoryview, len: int, /) -> QBi... method isEmpty (line 1189) | def isEmpty(self, /) -> bool: ... method isNull (line 1190) | def isNull(self, /) -> bool: ... method resize (line 1191) | def resize(self, size: int, /) -> None: ... method setBit (line 1193) | def setBit(self, i: int, val: bool, /) -> None: ... method setBit (line 1195) | def setBit(self, i: int, /) -> None: ... method size (line 1196) | def size(self, /) -> int: ... method swap (line 1197) | def swap(self, other: QBitArray | int, /) -> None: ... method testBit (line 1198) | def testBit(self, i: int, /) -> bool: ... method toUInt32 (line 1199) | def toUInt32(self, endianness: QSysInfo.Endian, /) -> Tuple[int, bool]... method toggleBit (line 1200) | def toggleBit(self, i: int, /) -> bool: ... method truncate (line 1201) | def truncate(self, pos: int, /) -> None: ... method __and__ (line 1202) | def __and__(self, a2: QBitArray | int, /) -> QBitArray: ... method __bool__ (line 1203) | def __bool__(self) -> bool: ... method __copy__ (line 1204) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 1205) | def __delitem__(self, other) -> None: ... method __eq__ (line 1206) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1207) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 1208) | def __getitem__(self, index): ... method __gt__ (line 1209) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1210) | def __hash__(self, /) -> int: ... method __iand__ (line 1211) | def __iand__(self, arg__1: QBitArray | int, /) -> QBitArray: ... method __invert__ (line 1212) | def __invert__(self, /) -> QBitArray: ... method __ior__ (line 1213) | def __ior__(self, arg__1: QBitArray | int, /) -> QBitArray: ... method __ixor__ (line 1214) | def __ixor__(self, arg__1: QBitArray | int, /) -> QBitArray: ... method __le__ (line 1215) | def __le__(self, other: object) -> bool: ... method __len__ (line 1216) | def __len__(self) -> int: ... method __lt__ (line 1217) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1218) | def __ne__(self, other: object) -> bool: ... method __or__ (line 1219) | def __or__(self, a2: QBitArray | int, /) -> QBitArray: ... method __rand__ (line 1220) | def __rand__(self, other): ... method __ror__ (line 1221) | def __ror__(self, other): ... method __rxor__ (line 1222) | def __rxor__(self, other): ... method __setitem__ (line 1223) | def __setitem__(self, index, object) -> None: ... method __xor__ (line 1224) | def __xor__(self, a2: QBitArray | int, /) -> QBitArray: ... class QBluetoothPermission (line 1226) | class QBluetoothPermission(shiboken6.Object): class CommunicationMode (line 1227) | class CommunicationMode(enum.Flag): method __init__ (line 1232) | def __init__(self, other: QBluetoothPermission, /) -> None: ... method __init__ (line 1234) | def __init__(self, /) -> None: ... method communicationModes (line 1235) | def communicationModes(self, /) -> QBluetoothPermission.CommunicationM... method setCommunicationModes (line 1236) | def setCommunicationModes(self, modes: QBluetoothPermission.Communicat... method swap (line 1237) | def swap(self, other: QBluetoothPermission, /) -> None: ... method __copy__ (line 1238) | def __copy__(self, /) -> typing_extensions.Self: ... class QBuffer (line 1240) | class QBuffer(QIODevice): method __init__ (line 1243) | def __init__(self, buf: QByteArray | bytes | bytearray | memoryview, /... method __init__ (line 1245) | def __init__(self, /, parent: QObject | None = ..., aboutToClose: typi... method atEnd (line 1246) | def atEnd(self, /) -> bool: ... method buffer (line 1247) | def buffer(self, /) -> QByteArray: ... method canReadLine (line 1248) | def canReadLine(self, /) -> bool: ... method close (line 1249) | def close(self, /) -> None: ... method connectNotify (line 1250) | def connectNotify(self, arg__1: QMetaMethod, /) -> None: ... method data (line 1251) | def data(self, /) -> QByteArray: ... method disconnectNotify (line 1252) | def disconnectNotify(self, arg__1: QMetaMethod, /) -> None: ... method open (line 1253) | def open(self, openMode: QIODeviceBase.OpenModeFlag, /) -> bool: ... method pos (line 1254) | def pos(self, /) -> int: ... method readData (line 1255) | def readData(self, maxlen: int, /) -> typing.Any: ... method seek (line 1256) | def seek(self, off: int, /) -> bool: ... method setBuffer (line 1257) | def setBuffer(self, a: QByteArray | bytes | bytearray | memoryview, /)... method setData (line 1258) | def setData(self, data: QByteArray | bytes | bytearray | memoryview, /... method size (line 1259) | def size(self, /) -> int: ... method writeData (line 1260) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QByteArray (line 1262) | class QByteArray(shiboken6.Object): class Base64DecodingStatus (line 1263) | class Base64DecodingStatus(enum.Enum): class Base64Option (line 1269) | class Base64Option(enum.Flag): class FromBase64Result (line 1277) | class FromBase64Result(shiboken6.Object): method __init__ (line 1281) | def __init__(self, FromBase64Result: QByteArray.FromBase64Result, /)... method __init__ (line 1283) | def __init__(self, /) -> None: ... method swap (line 1284) | def swap(self, other: QByteArray.FromBase64Result, /) -> None: ... method __copy__ (line 1285) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1286) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1287) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1288) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1289) | def __hash__(self, /) -> int: ... method __le__ (line 1290) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1291) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1292) | def __ne__(self, other: object) -> bool: ... method __init__ (line 1294) | def __init__(self, size: int, c: int, /) -> None: ... method __init__ (line 1296) | def __init__(self, arg__1: bytes | bytearray | memoryview, /, size: in... method __init__ (line 1298) | def __init__(self, v: QByteArray | bytes | bytearray | memoryview, /) ... method __init__ (line 1300) | def __init__(self, data: bytearray, /) -> None: ... # type: ignore[ov... method __init__ (line 1302) | def __init__(self, data: bytes | bytearray | memoryview, /) -> None: .... method __init__ (line 1304) | def __init__(self, arg__1: QByteArray | bytes, /) -> None: ... # type... method __init__ (line 1306) | def __init__(self, /) -> None: ... method append (line 1308) | def append(self, s: bytes | bytearray | memoryview, len: int, /) -> QB... method append (line 1310) | def append(self, count: int, c: int, /) -> QByteArray: ... method append (line 1312) | def append(self, c: int, /) -> QByteArray: ... method append (line 1314) | def append(self, a: QByteArray | bytes | bytearray | memoryview, /) ->... method assign (line 1316) | def assign(self, n: int, c: int, /) -> QByteArray: ... method assign (line 1318) | def assign(self, v: QByteArray | bytes | bytearray | memoryview, /) ->... method at (line 1319) | def at(self, i: int, /) -> int: ... method back (line 1320) | def back(self, /) -> int: ... method capacity (line 1321) | def capacity(self, /) -> int: ... method cbegin (line 1322) | def cbegin(self, /) -> bytes | bytearray | memoryview: ... method cend (line 1323) | def cend(self, /) -> bytes | bytearray | memoryview: ... method chop (line 1324) | def chop(self, n: int, /) -> None: ... method chopped (line 1325) | def chopped(self, len: int, /) -> QByteArray: ... method clear (line 1326) | def clear(self, /) -> None: ... method compare (line 1327) | def compare(self, a: QByteArray | bytes | bytearray | memoryview, /, c... method contains (line 1329) | def contains(self, c: int, /) -> bool: ... method contains (line 1331) | def contains(self, bv: QByteArray | bytes | bytearray | memoryview, /)... method count (line 1333) | def count(self, c: int, /) -> int: ... method count (line 1335) | def count(self, bv: QByteArray | bytes | bytearray | memoryview, /) ->... method count (line 1337) | def count(self, /) -> int: ... method data (line 1338) | def data(self, /) -> bytes | bytearray | memoryview: ... method endsWith (line 1340) | def endsWith(self, c: int, /) -> bool: ... method endsWith (line 1342) | def endsWith(self, bv: QByteArray | bytes | bytearray | memoryview, /)... method erase (line 1344) | def erase(self, first: bytes | bytearray | memoryview, last: bytes | b... method erase (line 1346) | def erase(self, it: bytes | bytearray | memoryview, /) -> bytes | byte... method fill (line 1347) | def fill(self, c: int, /, size: int = ...) -> QByteArray: ... method first (line 1348) | def first(self, n: int, /) -> QByteArray: ... method fromBase64 (line 1350) | def fromBase64(base64: QByteArray | bytes | bytearray | memoryview, /,... method fromBase64Encoding (line 1352) | def fromBase64Encoding(base64: QByteArray | bytes | bytearray | memory... method fromHex (line 1354) | def fromHex(hexEncoded: QByteArray | bytes | bytearray | memoryview, /... method fromPercentEncoding (line 1356) | def fromPercentEncoding(pctEncoded: QByteArray | bytes | bytearray | m... method fromRawData (line 1358) | def fromRawData(data: str, size: int, /) -> QByteArray: ... method fromStdString (line 1360) | def fromStdString(s: str, /) -> QByteArray: ... method front (line 1361) | def front(self, /) -> int: ... method indexOf (line 1363) | def indexOf(self, c: int, /, from_: int | None = ...) -> int: ... method indexOf (line 1365) | def indexOf(self, bv: QByteArray | bytes | bytearray | memoryview, /, ... method insert (line 1367) | def insert(self, i: int, s: bytes | bytearray | memoryview, len: int, ... method insert (line 1369) | def insert(self, i: int, count: int, c: int, /) -> QByteArray: ... method insert (line 1371) | def insert(self, i: int, s: bytes | bytearray | memoryview, /) -> QByt... method insert (line 1373) | def insert(self, i: int, data: QByteArray | bytes | bytearray | memory... method insert (line 1375) | def insert(self, i: int, c: int, /) -> QByteArray: ... method isEmpty (line 1376) | def isEmpty(self, /) -> bool: ... method isLower (line 1377) | def isLower(self, /) -> bool: ... method isNull (line 1378) | def isNull(self, /) -> bool: ... method isSharedWith (line 1379) | def isSharedWith(self, other: QByteArray | bytes | bytearray | memoryv... method isUpper (line 1380) | def isUpper(self, /) -> bool: ... method isValidUtf8 (line 1381) | def isValidUtf8(self, /) -> bool: ... method last (line 1382) | def last(self, n: int, /) -> QByteArray: ... method lastIndexOf (line 1384) | def lastIndexOf(self, c: int, /, from_: int = ...) -> int: ... method lastIndexOf (line 1386) | def lastIndexOf(self, bv: QByteArray | bytes | bytearray | memoryview,... method lastIndexOf (line 1388) | def lastIndexOf(self, bv: QByteArray | bytes | bytearray | memoryview,... method left (line 1389) | def left(self, n: int, /) -> QByteArray: ... method leftJustified (line 1390) | def leftJustified(self, width: int, /, fill: int = ..., truncate: bool... method length (line 1391) | def length(self, /) -> int: ... method maxSize (line 1393) | def maxSize() -> int: ... method max_size (line 1394) | def max_size(self, /) -> int: ... method mid (line 1395) | def mid(self, index: int, /, len: int = ...) -> QByteArray: ... method nullTerminate (line 1396) | def nullTerminate(self, /) -> QByteArray: ... method nullTerminated (line 1397) | def nullTerminated(self, /) -> QByteArray: ... method number (line 1400) | def number(arg__1: float, /, format: int = ..., precision: int = ...) ... method number (line 1403) | def number(arg__1: int, /, base: int = ...) -> QByteArray: ... method percentDecoded (line 1404) | def percentDecoded(self, /, percent: int = ...) -> QByteArray: ... method prepend (line 1406) | def prepend(self, s: bytes | bytearray | memoryview, len: int, /) -> Q... method prepend (line 1408) | def prepend(self, count: int, c: int, /) -> QByteArray: ... method prepend (line 1410) | def prepend(self, c: int, /) -> QByteArray: ... method prepend (line 1412) | def prepend(self, a: QByteArray | bytes | bytearray | memoryview, /) -... method push_back (line 1413) | def push_back(self, a: QByteArray | bytes | bytearray | memoryview, /)... method push_front (line 1414) | def push_front(self, a: QByteArray | bytes | bytearray | memoryview, /... method remove (line 1415) | def remove(self, index: int, len: int, /) -> QByteArray: ... method removeAt (line 1416) | def removeAt(self, pos: int, /) -> QByteArray: ... method removeFirst (line 1417) | def removeFirst(self, /) -> QByteArray: ... method removeLast (line 1418) | def removeLast(self, /) -> QByteArray: ... method repeated (line 1419) | def repeated(self, times: int, /) -> QByteArray: ... method replace (line 1421) | def replace(self, index: int, len: int, s: bytes | bytearray | memoryv... method replace (line 1423) | def replace(self, before: bytes | bytearray | memoryview, bsize: int, ... method replace (line 1425) | def replace(self, index: int, len: int, s: QByteArray | bytes | bytear... method replace (line 1427) | def replace(self, before: QByteArray | bytes | bytearray | memoryview,... method replace (line 1429) | def replace(self, before: int, after: QByteArray | bytes | bytearray |... method replace (line 1431) | def replace(self, before: int, after: int, /) -> QByteArray: ... method reserve (line 1432) | def reserve(self, size: int, /) -> None: ... method resize (line 1434) | def resize(self, size: int, c: int, /) -> None: ... method resize (line 1436) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 1437) | def resizeForOverwrite(self, size: int, /) -> None: ... method right (line 1438) | def right(self, n: int, /) -> QByteArray: ... method rightJustified (line 1439) | def rightJustified(self, width: int, /, fill: int = ..., truncate: boo... method setNum (line 1441) | def setNum(self, arg__1: float, /, format: int = ..., precision: int =... method setNum (line 1443) | def setNum(self, arg__1: int, /, base: int = ...) -> QByteArray: ... method setRawData (line 1444) | def setRawData(self, a: bytes | bytearray | memoryview, n: int, /) -> ... method shrink_to_fit (line 1445) | def shrink_to_fit(self, /) -> None: ... method simplified (line 1446) | def simplified(self, /) -> QByteArray: ... method size (line 1447) | def size(self, /) -> int: ... method slice (line 1449) | def slice(self, pos: int, n: int, /) -> QByteArray: ... method slice (line 1451) | def slice(self, pos: int, /) -> QByteArray: ... method sliced (line 1453) | def sliced(self, pos: int, n: int, /) -> QByteArray: ... method sliced (line 1455) | def sliced(self, pos: int, /) -> QByteArray: ... method split (line 1456) | def split(self, sep: int, /) -> List[QByteArray]: ... method squeeze (line 1457) | def squeeze(self, /) -> None: ... method startsWith (line 1459) | def startsWith(self, c: int, /) -> bool: ... method startsWith (line 1461) | def startsWith(self, bv: QByteArray | bytes | bytearray | memoryview, ... method swap (line 1462) | def swap(self, other: QByteArray | bytes | bytearray | memoryview, /) ... method toBase64 (line 1463) | def toBase64(self, /, options: QByteArray.Base64Option = ...) -> QByte... method toDouble (line 1464) | def toDouble(self, /) -> float: ... method toFloat (line 1465) | def toFloat(self, /) -> float: ... method toHex (line 1466) | def toHex(self, /, separator: int = ...) -> QByteArray: ... method toInt (line 1467) | def toInt(self, /, base: int = ...) -> int: ... method toLong (line 1468) | def toLong(self, /, base: int = ...) -> int: ... method toLongLong (line 1469) | def toLongLong(self, /, base: int = ...) -> int: ... method toLower (line 1470) | def toLower(self, /) -> QByteArray: ... method toPercentEncoding (line 1471) | def toPercentEncoding(self, /, exclude: QByteArray | bytes | bytearray... method toShort (line 1472) | def toShort(self, /, base: int = ...) -> int: ... method toStdString (line 1473) | def toStdString(self, /) -> str: ... method toUInt (line 1474) | def toUInt(self, /, base: int = ...) -> int: ... method toULong (line 1475) | def toULong(self, /, base: int = ...) -> int: ... method toULongLong (line 1476) | def toULongLong(self, /, base: int = ...) -> int: ... method toUShort (line 1477) | def toUShort(self, /, base: int = ...) -> int: ... method toUpper (line 1478) | def toUpper(self, /) -> QByteArray: ... method trimmed (line 1479) | def trimmed(self, /) -> QByteArray: ... method truncate (line 1480) | def truncate(self, pos: int, /) -> None: ... method __add__ (line 1482) | def __add__(self, s: str, /) -> str: ... method __add__ (line 1484) | def __add__(self, arg__1: bytearray, /) -> QByteArray: ... method __add__ (line 1486) | def __add__(self, arg__1: bytes | bytearray | memoryview, /) -> QByteA... method __add__ (line 1488) | def __add__(self, a2: QByteArray | bytes | bytearray | memoryview, /) ... method __add__ (line 1490) | def __add__(self, a2: int, /) -> QByteArray: ... method __bytes__ (line 1491) | def __bytes__(self) -> bytes: ... method __copy__ (line 1492) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 1493) | def __delitem__(self, other) -> None: ... method __eq__ (line 1494) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1495) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 1496) | def __getitem__(self, index: int) -> bytes: ... method __iter__ (line 1497) | def __iter__(self) -> typing.Iterator[bytes]: ... method __gt__ (line 1498) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1499) | def __hash__(self, /) -> int: ... method __iadd__ (line 1501) | def __iadd__(self, c: int, /) -> QByteArray: ... method __iadd__ (line 1503) | def __iadd__(self, arg__1: bytearray, /) -> QByteArray: ... method __iadd__ (line 1505) | def __iadd__(self, a: QByteArray | bytes | bytearray | memoryview, /) ... method __le__ (line 1506) | def __le__(self, other: object) -> bool: ... method __len__ (line 1507) | def __len__(self) -> int: ... method __lt__ (line 1508) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1509) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 1510) | def __radd__(self, other): ... method __setitem__ (line 1511) | def __setitem__(self, index, object) -> None: ... class QByteArrayMatcher (line 1513) | class QByteArrayMatcher(shiboken6.Object): method __init__ (line 1515) | def __init__(self, pattern: bytes | bytearray | memoryview, /, length:... method __init__ (line 1517) | def __init__(self, pattern: QByteArray | bytes | bytearray | memoryvie... method __init__ (line 1519) | def __init__(self, other: QByteArrayMatcher, /) -> None: ... method __init__ (line 1521) | def __init__(self, /) -> None: ... method indexIn (line 1523) | def indexIn(self, str: bytes | bytearray | memoryview, len: int, /, fr... method indexIn (line 1525) | def indexIn(self, data: QByteArray | bytes | bytearray | memoryview, /... method pattern (line 1526) | def pattern(self, /) -> QByteArray: ... method setPattern (line 1527) | def setPattern(self, pattern: QByteArray | bytes | bytearray | memoryv... method __copy__ (line 1528) | def __copy__(self, /) -> typing_extensions.Self: ... class QCalendar (line 1530) | class QCalendar(shiboken6.Object): class System (line 1531) | class System(enum.Enum): class SystemId (line 1540) | class SystemId(shiboken6.Object): method __init__ (line 1541) | def __init__(self, /) -> None: ... method index (line 1542) | def index(self, /) -> int: ... method isValid (line 1543) | def isValid(self, /) -> bool: ... class YearMonthDay (line 1545) | class YearMonthDay(shiboken6.Object): method __init__ (line 1550) | def __init__(self, y: int, /, m: int = ..., d: int = ...) -> None: ... method __init__ (line 1552) | def __init__(self, YearMonthDay: QCalendar.YearMonthDay, /) -> None:... method __init__ (line 1554) | def __init__(self, /) -> None: ... method isValid (line 1555) | def isValid(self, /) -> bool: ... method __copy__ (line 1556) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 1559) | def __init__(self, system: QCalendar.System, /) -> None: ... method __init__ (line 1561) | def __init__(self, name: str, /) -> None: ... method __init__ (line 1563) | def __init__(self, id: QCalendar.SystemId, /) -> None: ... method __init__ (line 1565) | def __init__(self, QCalendar: QCalendar, /) -> None: ... method __init__ (line 1567) | def __init__(self, /) -> None: ... method availableCalendars (line 1569) | def availableCalendars() -> List[str]: ... method dateFromParts (line 1571) | def dateFromParts(self, year: int, month: int, day: int, /) -> QDate: ... method dateFromParts (line 1573) | def dateFromParts(self, parts: QCalendar.YearMonthDay | int, /) -> QDa... method dateTimeToString (line 1574) | def dateTimeToString(self, format: str, datetime: QDateTime | datetime... method dayOfWeek (line 1575) | def dayOfWeek(self, date: QDate | datetime.date, /) -> int: ... method daysInMonth (line 1576) | def daysInMonth(self, month: int, /, year: int = ...) -> int: ... method daysInYear (line 1577) | def daysInYear(self, year: int, /) -> int: ... method hasYearZero (line 1578) | def hasYearZero(self, /) -> bool: ... method isDateValid (line 1579) | def isDateValid(self, year: int, month: int, day: int, /) -> bool: ... method isGregorian (line 1580) | def isGregorian(self, /) -> bool: ... method isLeapYear (line 1581) | def isLeapYear(self, year: int, /) -> bool: ... method isLunar (line 1582) | def isLunar(self, /) -> bool: ... method isLuniSolar (line 1583) | def isLuniSolar(self, /) -> bool: ... method isProleptic (line 1584) | def isProleptic(self, /) -> bool: ... method isSolar (line 1585) | def isSolar(self, /) -> bool: ... method isValid (line 1586) | def isValid(self, /) -> bool: ... method matchCenturyToWeekday (line 1587) | def matchCenturyToWeekday(self, parts: QCalendar.YearMonthDay | int, d... method maximumDaysInMonth (line 1588) | def maximumDaysInMonth(self, /) -> int: ... method maximumMonthsInYear (line 1589) | def maximumMonthsInYear(self, /) -> int: ... method minimumDaysInMonth (line 1590) | def minimumDaysInMonth(self, /) -> int: ... method monthName (line 1591) | def monthName(self, locale: QLocale | QLocale.Language, month: int, /,... method monthsInYear (line 1592) | def monthsInYear(self, year: int, /) -> int: ... method name (line 1593) | def name(self, /) -> str: ... method partsFromDate (line 1594) | def partsFromDate(self, date: QDate | datetime.date, /) -> QCalendar.Y... method standaloneMonthName (line 1595) | def standaloneMonthName(self, locale: QLocale | QLocale.Language, mont... method standaloneWeekDayName (line 1596) | def standaloneWeekDayName(self, locale: QLocale | QLocale.Language, da... method weekDayName (line 1597) | def weekDayName(self, locale: QLocale | QLocale.Language, day: int, /,... method __copy__ (line 1598) | def __copy__(self, /) -> typing_extensions.Self: ... class QCalendarPermission (line 1600) | class QCalendarPermission(shiboken6.Object): class AccessMode (line 1601) | class AccessMode(enum.Enum): method __init__ (line 1605) | def __init__(self, other: QCalendarPermission, /) -> None: ... method __init__ (line 1607) | def __init__(self, /) -> None: ... method accessMode (line 1608) | def accessMode(self, /) -> QCalendarPermission.AccessMode: ... method setAccessMode (line 1609) | def setAccessMode(self, mode: QCalendarPermission.AccessMode, /) -> No... method swap (line 1610) | def swap(self, other: QCalendarPermission, /) -> None: ... method __copy__ (line 1611) | def __copy__(self, /) -> typing_extensions.Self: ... class QCameraPermission (line 1613) | class QCameraPermission(shiboken6.Object): method __init__ (line 1615) | def __init__(self, other: QCameraPermission, /) -> None: ... method __init__ (line 1617) | def __init__(self, /) -> None: ... method swap (line 1618) | def swap(self, other: QCameraPermission, /) -> None: ... method __copy__ (line 1619) | def __copy__(self, /) -> typing_extensions.Self: ... class QCborArray (line 1621) | class QCborArray(shiboken6.Object): method __init__ (line 1623) | def __init__(self, other: QCborArray, /) -> None: ... method __init__ (line 1625) | def __init__(self, /) -> None: ... method append (line 1626) | def append(self, value: QCborValue | QCborKnownTags | QCborSimpleType ... method at (line 1627) | def at(self, i: int, /) -> QCborValue: ... method clear (line 1628) | def clear(self, /) -> None: ... method compare (line 1629) | def compare(self, other: QCborArray, /) -> int: ... method contains (line 1630) | def contains(self, value: QCborValue | QCborKnownTags | QCborSimpleTyp... method empty (line 1631) | def empty(self, /) -> bool: ... method first (line 1632) | def first(self, /) -> QCborValue: ... method fromJsonArray (line 1634) | def fromJsonArray(array: QJsonArray, /) -> QCborArray: ... method fromStringList (line 1636) | def fromStringList(list: typing.Iterable[str], /) -> QCborArray: ... method fromVariantList (line 1638) | def fromVariantList(list: typing.Iterable[typing.Any], /) -> QCborArra... method insert (line 1639) | def insert(self, i: int, value: QCborValue | QCborKnownTags | QCborSim... method isEmpty (line 1640) | def isEmpty(self, /) -> bool: ... method last (line 1641) | def last(self, /) -> QCborValue: ... method pop_back (line 1642) | def pop_back(self, /) -> None: ... method pop_front (line 1643) | def pop_front(self, /) -> None: ... method prepend (line 1644) | def prepend(self, value: QCborValue | QCborKnownTags | QCborSimpleType... method push_back (line 1645) | def push_back(self, t: QCborValue | QCborKnownTags | QCborSimpleType |... method push_front (line 1646) | def push_front(self, t: QCborValue | QCborKnownTags | QCborSimpleType ... method removeAt (line 1647) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 1648) | def removeFirst(self, /) -> None: ... method removeLast (line 1649) | def removeLast(self, /) -> None: ... method size (line 1650) | def size(self, /) -> int: ... method swap (line 1651) | def swap(self, other: QCborArray, /) -> None: ... method takeAt (line 1652) | def takeAt(self, i: int, /) -> QCborValue: ... method takeFirst (line 1653) | def takeFirst(self, /) -> QCborValue: ... method takeLast (line 1654) | def takeLast(self, /) -> QCborValue: ... method toCborValue (line 1655) | def toCborValue(self, /) -> QCborValue: ... method toJsonArray (line 1656) | def toJsonArray(self, /) -> QJsonArray: ... method toVariantList (line 1657) | def toVariantList(self, /) -> List[Any]: ... method __add__ (line 1658) | def __add__(self, v: QCborValue | QCborKnownTags | QCborSimpleType | Q... method __copy__ (line 1659) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1660) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1661) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1662) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1663) | def __hash__(self, /) -> int: ... method __iadd__ (line 1664) | def __iadd__(self, v: QCborValue | QCborKnownTags | QCborSimpleType | ... method __le__ (line 1665) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1666) | def __lshift__(self, v: QCborValue | QCborKnownTags | QCborSimpleType ... method __lt__ (line 1667) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1668) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 1669) | def __radd__(self, other): ... method __rlshift__ (line 1670) | def __rlshift__(self, other): ... class QCborError (line 1672) | class QCborError(shiboken6.Object): class Code (line 1673) | class Code(enum.Enum): method __init__ (line 1691) | def __init__(self, QCborError: QCborError, /) -> None: ... method __init__ (line 1693) | def __init__(self, /) -> None: ... method toString (line 1694) | def toString(self, /) -> str: ... method __copy__ (line 1695) | def __copy__(self, /) -> typing_extensions.Self: ... class QCborKnownTags (line 1697) | class QCborKnownTags(enum.IntEnum): class QCborMap (line 1722) | class QCborMap(shiboken6.Object): method __init__ (line 1724) | def __init__(self, other: QCborMap, /) -> None: ... method __init__ (line 1726) | def __init__(self, /) -> None: ... method clear (line 1727) | def clear(self, /) -> None: ... method compare (line 1728) | def compare(self, other: QCborMap, /) -> int: ... method contains (line 1730) | def contains(self, key: str, /) -> bool: ... method contains (line 1732) | def contains(self, key: int, /) -> bool: ... method contains (line 1734) | def contains(self, key: QCborValue | QCborKnownTags | QCborSimpleType ... method empty (line 1735) | def empty(self, /) -> bool: ... method fromJsonObject (line 1737) | def fromJsonObject(o: Dict[str, QJsonValue], /) -> QCborMap: ... method fromVariantHash (line 1739) | def fromVariantHash(hash: Dict[str, Any], /) -> QCborMap: ... method fromVariantMap (line 1741) | def fromVariantMap(map: Dict[str, Any], /) -> QCborMap: ... method isEmpty (line 1742) | def isEmpty(self, /) -> bool: ... method keys (line 1743) | def keys(self, /) -> List[QCborValue]: ... method remove (line 1745) | def remove(self, key: str, /) -> None: ... method remove (line 1747) | def remove(self, key: int, /) -> None: ... method remove (line 1749) | def remove(self, key: QCborValue | QCborKnownTags | QCborSimpleType | ... method size (line 1750) | def size(self, /) -> int: ... method swap (line 1751) | def swap(self, other: QCborMap, /) -> None: ... method take (line 1753) | def take(self, key: str, /) -> QCborValue: ... method take (line 1755) | def take(self, key: int, /) -> QCborValue: ... method take (line 1757) | def take(self, key: QCborValue | QCborKnownTags | QCborSimpleType | QC... method toCborValue (line 1758) | def toCborValue(self, /) -> QCborValue: ... method toJsonObject (line 1759) | def toJsonObject(self, /) -> Dict[str, QJsonValue]: ... method toVariantHash (line 1760) | def toVariantHash(self, /) -> Dict[str, Any]: ... method toVariantMap (line 1761) | def toVariantMap(self, /) -> Dict[str, Any]: ... method value (line 1763) | def value(self, key: str, /) -> QCborValue: ... method value (line 1765) | def value(self, key: int, /) -> QCborValue: ... method value (line 1767) | def value(self, key: QCborValue | QCborKnownTags | QCborSimpleType | Q... method __copy__ (line 1768) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1769) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1770) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1771) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1772) | def __hash__(self, /) -> int: ... method __le__ (line 1773) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1774) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1775) | def __ne__(self, other: object) -> bool: ... class QCborParserError (line 1777) | class QCborParserError(shiboken6.Object): method __init__ (line 1781) | def __init__(self, QCborParserError: QCborParserError, /) -> None: ... method __init__ (line 1783) | def __init__(self, /) -> None: ... method errorString (line 1784) | def errorString(self, /) -> str: ... method __copy__ (line 1785) | def __copy__(self, /) -> typing_extensions.Self: ... class QCborSimpleType (line 1787) | class QCborSimpleType(enum.IntEnum): class QCborStreamReader (line 1793) | class QCborStreamReader(shiboken6.Object): class StringResultCode (line 1794) | class StringResultCode(enum.Enum): class Type (line 1799) | class Type(enum.Enum): method __init__ (line 1816) | def __init__(self, data: bytearray, len: int, /) -> None: ... method __init__ (line 1818) | def __init__(self, data: bytes | bytearray | memoryview, len: int, /) ... method __init__ (line 1820) | def __init__(self, device: QIODevice, /) -> None: ... method __init__ (line 1822) | def __init__(self, data: QByteArray | bytes | bytearray | memoryview, ... method __init__ (line 1824) | def __init__(self, /) -> None: ... method addData (line 1826) | def addData(self, data: bytearray, len: int, /) -> None: ... method addData (line 1828) | def addData(self, data: bytes | bytearray | memoryview, len: int, /) -... method addData (line 1830) | def addData(self, data: QByteArray | bytes | bytearray | memoryview, /... method clear (line 1831) | def clear(self, /) -> None: ... method containerDepth (line 1832) | def containerDepth(self, /) -> int: ... method currentOffset (line 1833) | def currentOffset(self, /) -> int: ... method currentStringChunkSize (line 1834) | def currentStringChunkSize(self, /) -> int: ... method device (line 1835) | def device(self, /) -> QIODevice: ... method enterContainer (line 1836) | def enterContainer(self, /) -> bool: ... method hasNext (line 1837) | def hasNext(self, /) -> bool: ... method isArray (line 1838) | def isArray(self, /) -> bool: ... method isBool (line 1839) | def isBool(self, /) -> bool: ... method isByteArray (line 1840) | def isByteArray(self, /) -> bool: ... method isContainer (line 1841) | def isContainer(self, /) -> bool: ... method isDouble (line 1842) | def isDouble(self, /) -> bool: ... method isFalse (line 1843) | def isFalse(self, /) -> bool: ... method isFloat (line 1844) | def isFloat(self, /) -> bool: ... method isFloat16 (line 1845) | def isFloat16(self, /) -> bool: ... method isInteger (line 1846) | def isInteger(self, /) -> bool: ... method isInvalid (line 1847) | def isInvalid(self, /) -> bool: ... method isLengthKnown (line 1848) | def isLengthKnown(self, /) -> bool: ... method isMap (line 1849) | def isMap(self, /) -> bool: ... method isNegativeInteger (line 1850) | def isNegativeInteger(self, /) -> bool: ... method isNull (line 1851) | def isNull(self, /) -> bool: ... method isSimpleType (line 1853) | def isSimpleType(self, st: QCborSimpleType, /) -> bool: ... method isSimpleType (line 1855) | def isSimpleType(self, /) -> bool: ... method isString (line 1856) | def isString(self, /) -> bool: ... method isTag (line 1857) | def isTag(self, /) -> bool: ... method isTrue (line 1858) | def isTrue(self, /) -> bool: ... method isUndefined (line 1859) | def isUndefined(self, /) -> bool: ... method isUnsignedInteger (line 1860) | def isUnsignedInteger(self, /) -> bool: ... method isValid (line 1861) | def isValid(self, /) -> bool: ... method lastError (line 1862) | def lastError(self, /) -> QCborError: ... method leaveContainer (line 1863) | def leaveContainer(self, /) -> bool: ... method length (line 1864) | def length(self, /) -> int: ... method next (line 1865) | def next(self, /, maxRecursion: int = ...) -> bool: ... method parentContainerType (line 1866) | def parentContainerType(self, /) -> QCborStreamReader.Type: ... method readAllByteArray (line 1867) | def readAllByteArray(self, /) -> QByteArray: ... method readAllString (line 1868) | def readAllString(self, /) -> str: ... method readAllUtf8String (line 1869) | def readAllUtf8String(self, /) -> QByteArray: ... method readAndAppendToByteArray (line 1870) | def readAndAppendToByteArray(self, dst: QByteArray | bytes | bytearray... method readAndAppendToString (line 1871) | def readAndAppendToString(self, dst: str, /) -> bool: ... method readAndAppendToUtf8String (line 1872) | def readAndAppendToUtf8String(self, dst: QByteArray | bytes | bytearra... method readByteArray (line 1873) | def readByteArray(self, /) -> QCborStringResultByteArray: ... method readString (line 1874) | def readString(self, /) -> QCborStringResultString: ... method readUtf8String (line 1875) | def readUtf8String(self, /) -> QCborStringResultByteArray: ... method reparse (line 1876) | def reparse(self, /) -> None: ... method reset (line 1877) | def reset(self, /) -> None: ... method setDevice (line 1878) | def setDevice(self, device: QIODevice, /) -> None: ... method toBool (line 1879) | def toBool(self, /) -> bool: ... method toDouble (line 1880) | def toDouble(self, /) -> float: ... method toFloat (line 1881) | def toFloat(self, /) -> float: ... method toInteger (line 1882) | def toInteger(self, /) -> int: ... method toSimpleType (line 1883) | def toSimpleType(self, /) -> QCborSimpleType: ... method toTag (line 1884) | def toTag(self, /) -> QCborTag: ... method toUnsignedInteger (line 1885) | def toUnsignedInteger(self, /) -> int: ... method type (line 1886) | def type(self, /) -> QCborStreamReader.Type: ... method __bool__ (line 1887) | def __bool__(self) -> bool: ... class QCborStreamWriter (line 1889) | class QCborStreamWriter(shiboken6.Object): method __init__ (line 1891) | def __init__(self, device: QIODevice, /) -> None: ... method __init__ (line 1893) | def __init__(self, data: QByteArray | bytes | bytearray | memoryview, ... method append (line 1895) | def append(self, str: bytes | bytearray | memoryview, /, size: int = .... method append (line 1897) | def append(self, u: int, /) -> None: ... method append (line 1899) | def append(self, tag: QCborKnownTags, /) -> None: ... # type: ignore[... method append (line 1901) | def append(self, tag: QCborTag, /) -> None: ... # type: ignore[overlo... method append (line 1903) | def append(self, str: str, /) -> None: ... method append (line 1905) | def append(self, st: QCborSimpleType, /) -> None: ... # type: ignore[... method append (line 1907) | def append(self, d: float, /) -> None: ... method append (line 1909) | def append(self, ba: QByteArray | bytes | bytearray | memoryview, /) -... method append (line 1911) | def append(self, b: bool, /) -> None: ... # type: ignore[overload-can... method appendByteString (line 1912) | def appendByteString(self, data: bytes | bytearray | memoryview, len: ... method appendNull (line 1913) | def appendNull(self, /) -> None: ... method appendTextString (line 1914) | def appendTextString(self, utf8: bytes | bytearray | memoryview, len: ... method appendUndefined (line 1915) | def appendUndefined(self, /) -> None: ... method device (line 1916) | def device(self, /) -> QIODevice: ... method endArray (line 1917) | def endArray(self, /) -> bool: ... method endMap (line 1918) | def endMap(self, /) -> bool: ... method setDevice (line 1919) | def setDevice(self, device: QIODevice, /) -> None: ... method startArray (line 1921) | def startArray(self, count: int, /) -> None: ... method startArray (line 1923) | def startArray(self, /) -> None: ... method startMap (line 1925) | def startMap(self, count: int, /) -> None: ... method startMap (line 1927) | def startMap(self, /) -> None: ... class QCborStringResultByteArray (line 1929) | class QCborStringResultByteArray(shiboken6.Object): method __init__ (line 1933) | def __init__(self, QCborStringResultByteArray: QCborStringResultByteAr... method __init__ (line 1935) | def __init__(self, /) -> None: ... method __copy__ (line 1936) | def __copy__(self, /) -> typing_extensions.Self: ... class QCborStringResultString (line 1938) | class QCborStringResultString(shiboken6.Object): method __init__ (line 1942) | def __init__(self, QCborStringResultString: QCborStringResultString, /... method __init__ (line 1944) | def __init__(self, /) -> None: ... method __copy__ (line 1945) | def __copy__(self, /) -> typing_extensions.Self: ... class QCborTag (line 1947) | class QCborTag(enum.IntEnum): ... # type: ignore[misc] class QCborValue (line 1949) | class QCborValue(shiboken6.Object): class DiagnosticNotationOption (line 1950) | class DiagnosticNotationOption(enum.Flag): class EncodingOption (line 1955) | class EncodingOption(enum.Flag): class Type (line 1962) | class Type(enum.Enum): method __init__ (line 1981) | def __init__(self, tag: QCborTag, /, taggedValue: QCborValue | QCborKn... method __init__ (line 1983) | def __init__(self, t_: QCborKnownTags, /, tv: QCborValue | QCborKnownT... method __init__ (line 1985) | def __init__(self, v: float, /) -> None: ... method __init__ (line 1987) | def __init__(self, uuid: QUuid, /) -> None: ... method __init__ (line 1989) | def __init__(self, url: QUrl | str, /) -> None: ... method __init__ (line 1991) | def __init__(self, u: int, /) -> None: ... # type: ignore[overload-ca... method __init__ (line 1993) | def __init__(self, t_: QCborValue.Type, /) -> None: ... method __init__ (line 1995) | def __init__(self, st: QCborSimpleType, /) -> None: ... # type: ignor... method __init__ (line 1997) | def __init__(self, s: str, /) -> None: ... # type: ignore[overload-ca... method __init__ (line 1999) | def __init__(self, s: bytes | bytearray | memoryview, /) -> None: ... method __init__ (line 2001) | def __init__(self, rx: QRegularExpression | str, /) -> None: ... method __init__ (line 2003) | def __init__(self, other: QCborValue, /) -> None: ... method __init__ (line 2005) | def __init__(self, m: QCborMap, /) -> None: ... method __init__ (line 2007) | def __init__(self, dt: QDateTime | datetime.datetime, /) -> None: ... method __init__ (line 2009) | def __init__(self, ba: QByteArray | bytes | bytearray | memoryview, /)... method __init__ (line 2011) | def __init__(self, b_: bool, /) -> None: ... # type: ignore[overload-... method __init__ (line 2013) | def __init__(self, a: QCborArray, /) -> None: ... method __init__ (line 2015) | def __init__(self, /) -> None: ... method compare (line 2016) | def compare(self, other: QCborValue | QCborKnownTags | QCborSimpleType... method fromCbor (line 2019) | def fromCbor(data: bytearray, len: int, /, error: QCborParserError | N... method fromCbor (line 2022) | def fromCbor(data: bytes | bytearray | memoryview, len: int, /, error:... method fromCbor (line 2025) | def fromCbor(ba: QByteArray | bytes | bytearray | memoryview, /, error... method fromCbor (line 2028) | def fromCbor(reader: QCborStreamReader, /) -> QCborValue: ... method fromJsonValue (line 2030) | def fromJsonValue(v: Union[QJsonValue, QJsonValue.Type, str, bool, QJs... method fromVariant (line 2032) | def fromVariant(variant: Any, /) -> QCborValue: ... method isArray (line 2033) | def isArray(self, /) -> bool: ... method isBool (line 2034) | def isBool(self, /) -> bool: ... method isByteArray (line 2035) | def isByteArray(self, /) -> bool: ... method isContainer (line 2036) | def isContainer(self, /) -> bool: ... method isDateTime (line 2037) | def isDateTime(self, /) -> bool: ... method isDouble (line 2038) | def isDouble(self, /) -> bool: ... method isFalse (line 2039) | def isFalse(self, /) -> bool: ... method isInteger (line 2040) | def isInteger(self, /) -> bool: ... method isInvalid (line 2041) | def isInvalid(self, /) -> bool: ... method isMap (line 2042) | def isMap(self, /) -> bool: ... method isNull (line 2043) | def isNull(self, /) -> bool: ... method isRegularExpression (line 2044) | def isRegularExpression(self, /) -> bool: ... method isSimpleType (line 2046) | def isSimpleType(self, st: QCborSimpleType, /) -> bool: ... method isSimpleType (line 2048) | def isSimpleType(self, /) -> bool: ... method isString (line 2049) | def isString(self, /) -> bool: ... method isTag (line 2050) | def isTag(self, /) -> bool: ... method isTrue (line 2051) | def isTrue(self, /) -> bool: ... method isUndefined (line 2052) | def isUndefined(self, /) -> bool: ... method isUrl (line 2053) | def isUrl(self, /) -> bool: ... method isUuid (line 2054) | def isUuid(self, /) -> bool: ... method swap (line 2055) | def swap(self, other: QCborValue | QCborKnownTags | QCborSimpleType | ... method tag (line 2056) | def tag(self, /, defaultValue: QCborTag = ...) -> QCborTag: ... method taggedValue (line 2057) | def taggedValue(self, /, defaultValue: QCborValue | QCborKnownTags | Q... method toArray (line 2059) | def toArray(self, defaultValue: QCborArray, /) -> QCborArray: ... method toArray (line 2061) | def toArray(self, /) -> QCborArray: ... method toBool (line 2062) | def toBool(self, /, defaultValue: bool = ...) -> bool: ... method toByteArray (line 2063) | def toByteArray(self, /, defaultValue: QByteArray | bytes | bytearray ... method toCbor (line 2065) | def toCbor(self, writer: QCborStreamWriter, /, opt: QCborValue.Encodin... method toCbor (line 2067) | def toCbor(self, /, opt: QCborValue.EncodingOption = ...) -> QByteArra... method toDateTime (line 2068) | def toDateTime(self, /, defaultValue: QDateTime | datetime.datetime = ... method toDiagnosticNotation (line 2069) | def toDiagnosticNotation(self, /, opts: QCborValue.DiagnosticNotationO... method toDouble (line 2070) | def toDouble(self, /, defaultValue: float | None = ...) -> float: ... method toInteger (line 2071) | def toInteger(self, /, defaultValue: int | None = ...) -> int: ... method toJsonValue (line 2072) | def toJsonValue(self, /) -> QJsonValue: ... method toMap (line 2074) | def toMap(self, defaultValue: QCborMap, /) -> QCborMap: ... method toMap (line 2076) | def toMap(self, /) -> QCborMap: ... method toRegularExpression (line 2077) | def toRegularExpression(self, /, defaultValue: QRegularExpression | st... method toSimpleType (line 2078) | def toSimpleType(self, /, defaultValue: QCborSimpleType = ...) -> QCbo... method toString (line 2079) | def toString(self, /, defaultValue: str = ...) -> str: ... method toStringView (line 2080) | def toStringView(self, /, defaultValue: str = ...) -> str: ... method toUrl (line 2081) | def toUrl(self, /, defaultValue: QUrl | str = ...) -> QUrl: ... method toUuid (line 2082) | def toUuid(self, /, defaultValue: QUuid = ...) -> QUuid: ... method toVariant (line 2083) | def toVariant(self, /) -> Any: ... method type (line 2084) | def type(self, /) -> QCborValue.Type: ... method __bool__ (line 2085) | def __bool__(self) -> bool: ... method __copy__ (line 2086) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2087) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2088) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2089) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2090) | def __hash__(self, /) -> int: ... method __le__ (line 2091) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2092) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2093) | def __ne__(self, other: object) -> bool: ... class QChildEvent (line 2095) | class QChildEvent(QEvent): method __init__ (line 2097) | def __init__(self, type: QEvent.Type, child: QObject, /) -> None: ... method __init__ (line 2099) | def __init__(self, arg__1: QChildEvent, /) -> None: ... method added (line 2100) | def added(self, /) -> bool: ... method child (line 2101) | def child(self, /) -> QObject: ... method clone (line 2102) | def clone(self, /) -> QChildEvent: ... method polished (line 2103) | def polished(self, /) -> bool: ... method removed (line 2104) | def removed(self, /) -> bool: ... class QCollator (line 2106) | class QCollator(shiboken6.Object): method __init__ (line 2108) | def __init__(self, locale: QLocale | QLocale.Language, /) -> None: ... method __init__ (line 2110) | def __init__(self, arg__1: QCollator, /) -> None: ... method __init__ (line 2112) | def __init__(self, /) -> None: ... method caseSensitivity (line 2113) | def caseSensitivity(self, /) -> Qt.CaseSensitivity: ... method compare (line 2115) | def compare(self, s1: bytes | bytearray | memoryview, len1: int, s2: b... method compare (line 2117) | def compare(self, s1: str, s2: str, /) -> int: ... method defaultCompare (line 2119) | def defaultCompare(s1: str, s2: str, /) -> int: ... method defaultSortKey (line 2121) | def defaultSortKey(key: str, /) -> QCollatorSortKey: ... method ignorePunctuation (line 2122) | def ignorePunctuation(self, /) -> bool: ... method locale (line 2123) | def locale(self, /) -> QLocale: ... method numericMode (line 2124) | def numericMode(self, /) -> bool: ... method setCaseSensitivity (line 2125) | def setCaseSensitivity(self, cs: Qt.CaseSensitivity, /) -> None: ... method setIgnorePunctuation (line 2126) | def setIgnorePunctuation(self, on: bool, /) -> None: ... method setLocale (line 2127) | def setLocale(self, locale: QLocale | QLocale.Language, /) -> None: ... method setNumericMode (line 2128) | def setNumericMode(self, on: bool, /) -> None: ... method sortKey (line 2129) | def sortKey(self, string: str, /) -> QCollatorSortKey: ... method swap (line 2130) | def swap(self, other: QCollator, /) -> None: ... method __call__ (line 2131) | def __call__(self, s1: str, s2: str, /) -> bool: ... class QCollatorSortKey (line 2133) | class QCollatorSortKey(shiboken6.Object): method __init__ (line 2134) | def __init__(self, other: QCollatorSortKey, /) -> None: ... method compare (line 2135) | def compare(self, key: QCollatorSortKey, /) -> int: ... method swap (line 2136) | def swap(self, other: QCollatorSortKey, /) -> None: ... method __eq__ (line 2137) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2138) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2139) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2140) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2141) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2142) | def __ne__(self, other: object) -> bool: ... class QCommandLineOption (line 2144) | class QCommandLineOption(shiboken6.Object): class Flag (line 2145) | class Flag(enum.Flag): method __init__ (line 2150) | def __init__(self, names: typing.Iterable[str], description: str, /, v... method __init__ (line 2152) | def __init__(self, name: str, description: str, /, valueName: str = ..... method __init__ (line 2154) | def __init__(self, other: QCommandLineOption, /) -> None: ... method __init__ (line 2156) | def __init__(self, names: typing.Iterable[str], /) -> None: ... method __init__ (line 2158) | def __init__(self, name: str, /) -> None: ... # type: ignore[overload... method defaultValues (line 2159) | def defaultValues(self, /) -> List[str]: ... method description (line 2160) | def description(self, /) -> str: ... method flags (line 2161) | def flags(self, /) -> QCommandLineOption.Flag: ... method names (line 2162) | def names(self, /) -> List[str]: ... method setDefaultValue (line 2163) | def setDefaultValue(self, defaultValue: str, /) -> None: ... method setDefaultValues (line 2164) | def setDefaultValues(self, defaultValues: typing.Iterable[str], /) -> ... method setDescription (line 2165) | def setDescription(self, description: str, /) -> None: ... method setFlags (line 2166) | def setFlags(self, aflags: QCommandLineOption.Flag, /) -> None: ... method setValueName (line 2167) | def setValueName(self, name: str, /) -> None: ... method swap (line 2168) | def swap(self, other: QCommandLineOption, /) -> None: ... method valueName (line 2169) | def valueName(self, /) -> str: ... class QCommandLineParser (line 2171) | class QCommandLineParser(shiboken6.Object): class MessageType (line 2172) | class MessageType(enum.Enum): class OptionsAfterPositionalArgumentsMode (line 2176) | class OptionsAfterPositionalArgumentsMode(enum.Enum): class SingleDashWordOptionMode (line 2180) | class SingleDashWordOptionMode(enum.Enum): method __init__ (line 2183) | def __init__(self, /) -> None: ... method addHelpOption (line 2184) | def addHelpOption(self, /) -> QCommandLineOption: ... method addOption (line 2185) | def addOption(self, commandLineOption: QCommandLineOption, /) -> bool:... method addOptions (line 2186) | def addOptions(self, options: typing.Iterable[QCommandLineOption], /) ... method addPositionalArgument (line 2187) | def addPositionalArgument(self, name: str, description: str, /, syntax... method addVersionOption (line 2188) | def addVersionOption(self, /) -> QCommandLineOption: ... method applicationDescription (line 2189) | def applicationDescription(self, /) -> str: ... method clearPositionalArguments (line 2190) | def clearPositionalArguments(self, /) -> None: ... method errorText (line 2191) | def errorText(self, /) -> str: ... method helpText (line 2192) | def helpText(self, /) -> str: ... method isSet (line 2194) | def isSet(self, option: QCommandLineOption, /) -> bool: ... method isSet (line 2196) | def isSet(self, name: str, /) -> bool: ... method optionNames (line 2197) | def optionNames(self, /) -> List[str]: ... method parse (line 2198) | def parse(self, arguments: typing.Iterable[str], /) -> bool: ... method positionalArguments (line 2199) | def positionalArguments(self, /) -> List[str]: ... method process (line 2201) | def process(self, arguments: typing.Iterable[str], /) -> None: ... method process (line 2203) | def process(self, app: QCoreApplication, /) -> None: ... method setApplicationDescription (line 2204) | def setApplicationDescription(self, description: str, /) -> None: ... method setOptionsAfterPositionalArgumentsMode (line 2205) | def setOptionsAfterPositionalArgumentsMode(self, mode: QCommandLinePar... method setSingleDashWordOptionMode (line 2206) | def setSingleDashWordOptionMode(self, parsingMode: QCommandLineParser.... method showHelp (line 2207) | def showHelp(self, /, exitCode: int | None = ...) -> None: ... method showMessageAndExit (line 2209) | def showMessageAndExit(type: QCommandLineParser.MessageType, message: ... method showVersion (line 2210) | def showVersion(self, /) -> None: ... method unknownOptionNames (line 2211) | def unknownOptionNames(self, /) -> List[str]: ... method value (line 2213) | def value(self, option: QCommandLineOption, /) -> str: ... method value (line 2215) | def value(self, name: str, /) -> str: ... method values (line 2217) | def values(self, option: QCommandLineOption, /) -> List[str]: ... method values (line 2219) | def values(self, name: str, /) -> List[str]: ... class QConcatenateTablesProxyModel (line 2221) | class QConcatenateTablesProxyModel(QAbstractItemModel): method __init__ (line 2223) | def __init__(self, /, parent: QObject | None = ..., columnsAboutToBeIn... method addSourceModel (line 2224) | def addSourceModel(self, sourceModel: QAbstractItemModel, /) -> None: ... method canDropMimeData (line 2225) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method columnCount (line 2226) | def columnCount(self, /, parent: QModelIndex | QPersistentModelIndex =... method data (line 2227) | def data(self, index: QModelIndex | QPersistentModelIndex, /, role: Qt... method dropMimeData (line 2228) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method flags (line 2229) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method headerData (line 2230) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method index (line 2231) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method itemData (line 2232) | def itemData(self, proxyIndex: QModelIndex | QPersistentModelIndex, /)... method mapFromSource (line 2233) | def mapFromSource(self, sourceIndex: QModelIndex | QPersistentModelInd... method mapToSource (line 2234) | def mapToSource(self, proxyIndex: QModelIndex | QPersistentModelIndex,... method mimeData (line 2235) | def mimeData(self, indexes: typing.Iterable[QModelIndex | QPersistentM... method mimeTypes (line 2236) | def mimeTypes(self, /) -> List[str]: ... method parent (line 2238) | def parent(self, index: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 2240) | def parent(self, /) -> QObject: ... method removeSourceModel (line 2241) | def removeSourceModel(self, sourceModel: QAbstractItemModel, /) -> Non... method roleNames (line 2242) | def roleNames(self, /) -> Dict[int, QByteArray]: ... method rowCount (line 2243) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setData (line 2244) | def setData(self, index: QModelIndex | QPersistentModelIndex, value: A... method setItemData (line 2245) | def setItemData(self, index: QModelIndex | QPersistentModelIndex, role... method sourceModels (line 2246) | def sourceModels(self, /) -> List[QAbstractItemModel]: ... method span (line 2247) | def span(self, index: QModelIndex | QPersistentModelIndex, /) -> QSize... class QContactsPermission (line 2249) | class QContactsPermission(shiboken6.Object): class AccessMode (line 2250) | class AccessMode(enum.Enum): method __init__ (line 2254) | def __init__(self, other: QContactsPermission, /) -> None: ... method __init__ (line 2256) | def __init__(self, /) -> None: ... method accessMode (line 2257) | def accessMode(self, /) -> QContactsPermission.AccessMode: ... method setAccessMode (line 2258) | def setAccessMode(self, mode: QContactsPermission.AccessMode, /) -> No... method swap (line 2259) | def swap(self, other: QContactsPermission, /) -> None: ... method __copy__ (line 2260) | def __copy__(self, /) -> typing_extensions.Self: ... class QCoreApplication (line 2262) | class QCoreApplication(QObject): method __init__ (line 2271) | def __init__(self, args: typing.Iterable[str], /, *, applicationName: ... method __init__ (line 2273) | def __init__(self, /, *, applicationName: str | None = ..., applicatio... method addLibraryPath (line 2275) | def addLibraryPath(arg__1: str, /) -> None: ... method applicationDirPath (line 2277) | def applicationDirPath() -> str: ... method applicationFilePath (line 2279) | def applicationFilePath() -> str: ... method applicationName (line 2281) | def applicationName() -> str: ... method applicationPid (line 2283) | def applicationPid() -> int: ... method applicationVersion (line 2285) | def applicationVersion() -> str: ... method arguments (line 2287) | def arguments() -> List[str]: ... method checkPermission (line 2289) | def checkPermission(self, permission: QBluetoothPermission, /) -> Qt.P... method checkPermission (line 2291) | def checkPermission(self, permission: QCalendarPermission, /) -> Qt.Pe... method checkPermission (line 2293) | def checkPermission(self, permission: QCameraPermission, /) -> Qt.Perm... method checkPermission (line 2295) | def checkPermission(self, permission: QContactsPermission, /) -> Qt.Pe... method checkPermission (line 2297) | def checkPermission(self, permission: QLocationPermission, /) -> Qt.Pe... method checkPermission (line 2299) | def checkPermission(self, permission: QMicrophonePermission, /) -> Qt.... method checkPermission (line 2301) | def checkPermission(self, permission: QPermission, /) -> Qt.Permission... method closingDown (line 2303) | def closingDown() -> bool: ... method event (line 2304) | def event(self, arg__1: QEvent, /) -> bool: ... method eventDispatcher (line 2306) | def eventDispatcher() -> QAbstractEventDispatcher: ... method exec (line 2308) | def exec() -> int: ... method exec_ (line 2309) | def exec_(self, /) -> int: ... method exit (line 2311) | def exit(retcode: int | None = ...) -> None: ... method installNativeEventFilter (line 2312) | def installNativeEventFilter(self, filterObj: QAbstractNativeEventFilt... method installTranslator (line 2314) | def installTranslator(messageFile: QTranslator, /) -> bool: ... method instance (line 2316) | def instance(cls: type[typing_extensions.Self]) -> typing_extensions.S... method instanceExists (line 2318) | def instanceExists() -> bool: ... method isQuitLockEnabled (line 2320) | def isQuitLockEnabled() -> bool: ... method isSetuidAllowed (line 2322) | def isSetuidAllowed() -> bool: ... method libraryPaths (line 2324) | def libraryPaths() -> List[str]: ... method notify (line 2325) | def notify(self, arg__1: QObject, arg__2: QEvent, /) -> bool: ... method organizationDomain (line 2327) | def organizationDomain() -> str: ... method organizationName (line 2329) | def organizationName() -> str: ... method postEvent (line 2331) | def postEvent(receiver: QObject, event: QEvent, /, priority: int = ...... method processEvents (line 2334) | def processEvents(flags: QEventLoop.ProcessEventsFlag, maxtime: int, /... method processEvents (line 2337) | def processEvents(flags: QEventLoop.ProcessEventsFlag, deadline: QDead... method processEvents (line 2340) | def processEvents(flags: QEventLoop.ProcessEventsFlag = ...) -> None: ... method quit (line 2342) | def quit() -> None: ... method removeLibraryPath (line 2344) | def removeLibraryPath(arg__1: str, /) -> None: ... method removeNativeEventFilter (line 2345) | def removeNativeEventFilter(self, filterObj: QAbstractNativeEventFilte... method removePostedEvents (line 2347) | def removePostedEvents(receiver: QObject, /, eventType: int | None = .... method removeTranslator (line 2349) | def removeTranslator(messageFile: QTranslator, /) -> bool: ... method requestPermission (line 2351) | def requestPermission(self, permission: QBluetoothPermission, context:... method requestPermission (line 2353) | def requestPermission(self, permission: QCalendarPermission, context: ... method requestPermission (line 2355) | def requestPermission(self, permission: QCameraPermission, context: QO... method requestPermission (line 2357) | def requestPermission(self, permission: QContactsPermission, context: ... method requestPermission (line 2359) | def requestPermission(self, permission: QLocationPermission, context: ... method requestPermission (line 2361) | def requestPermission(self, permission: QMicrophonePermission, context... method resolveInterface (line 2362) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method sendEvent (line 2364) | def sendEvent(receiver: QObject, event: QEvent, /) -> bool: ... method sendPostedEvents (line 2366) | def sendPostedEvents(receiver: QObject | None = ..., event_type: int |... method setApplicationName (line 2368) | def setApplicationName(application: str, /) -> None: ... method setApplicationVersion (line 2370) | def setApplicationVersion(version: str, /) -> None: ... method setAttribute (line 2372) | def setAttribute(attribute: Qt.ApplicationAttribute, /, on: bool = ...... method setEventDispatcher (line 2374) | def setEventDispatcher(eventDispatcher: QAbstractEventDispatcher, /) -... method setLibraryPaths (line 2376) | def setLibraryPaths(arg__1: typing.Iterable[str], /) -> None: ... method setOrganizationDomain (line 2378) | def setOrganizationDomain(orgDomain: str, /) -> None: ... method setOrganizationName (line 2380) | def setOrganizationName(orgName: str, /) -> None: ... method setQuitLockEnabled (line 2382) | def setQuitLockEnabled(enabled: bool, /) -> None: ... method setSetuidAllowed (line 2384) | def setSetuidAllowed(allow: bool, /) -> None: ... method shutdown (line 2385) | def shutdown(self, /) -> None: ... method startingUp (line 2387) | def startingUp() -> bool: ... method testAttribute (line 2389) | def testAttribute(attribute: Qt.ApplicationAttribute, /) -> bool: ... method translate (line 2391) | def translate(context: str, key: str, /, disambiguation: str | None = ... class QCryptographicHash (line 2393) | class QCryptographicHash(shiboken6.Object): class Algorithm (line 2394) | class Algorithm(enum.Enum): method __init__ (line 2423) | def __init__(self, method: QCryptographicHash.Algorithm, /) -> None: ... method addData (line 2425) | def addData(self, device: QIODevice, /) -> bool: ... method addData (line 2427) | def addData(self, data: bytes | bytearray | memoryview, /) -> None: ... method addData (line 2429) | def addData(self, data: QByteArray | bytes | bytearray | memoryview, /... method algorithm (line 2430) | def algorithm(self, /) -> QCryptographicHash.Algorithm: ... method hash (line 2432) | def hash(data: QByteArray | bytes | bytearray | memoryview, method: QC... method hashLength (line 2434) | def hashLength(method: QCryptographicHash.Algorithm, /) -> int: ... method reset (line 2435) | def reset(self, /) -> None: ... method result (line 2436) | def result(self, /) -> QByteArray: ... method resultView (line 2437) | def resultView(self, /) -> QByteArray: ... method supportsAlgorithm (line 2439) | def supportsAlgorithm(method: QCryptographicHash.Algorithm, /) -> bool... method swap (line 2440) | def swap(self, other: QCryptographicHash, /) -> None: ... class QDataStream (line 2442) | class QDataStream(QIODeviceBase): class ByteOrder (line 2443) | class ByteOrder(enum.Enum): class FloatingPointPrecision (line 2447) | class FloatingPointPrecision(enum.Enum): class Status (line 2451) | class Status(enum.Enum): class Version (line 2458) | class Version(enum.IntEnum): method __init__ (line 2504) | def __init__(self, arg__1: QByteArray | bytes | bytearray | memoryview... method __init__ (line 2506) | def __init__(self, arg__1: QIODevice, /) -> None: ... method __init__ (line 2508) | def __init__(self, arg__1: QByteArray | bytes | bytearray | memoryview... method __init__ (line 2510) | def __init__(self, /) -> None: ... method abortTransaction (line 2511) | def abortTransaction(self, /) -> None: ... method atEnd (line 2512) | def atEnd(self, /) -> bool: ... method byteOrder (line 2513) | def byteOrder(self, /) -> QDataStream.ByteOrder: ... method commitTransaction (line 2514) | def commitTransaction(self, /) -> bool: ... method device (line 2515) | def device(self, /) -> QIODevice: ... method floatingPointPrecision (line 2516) | def floatingPointPrecision(self, /) -> QDataStream.FloatingPointPrecis... method isDeviceTransactionStarted (line 2517) | def isDeviceTransactionStarted(self, /) -> bool: ... method readBool (line 2518) | def readBool(self, /) -> bool: ... method readBytes (line 2519) | def readBytes(self, len: int, /) -> Tuple: ... method readDouble (line 2520) | def readDouble(self, /) -> float: ... method readFloat (line 2521) | def readFloat(self, /) -> float: ... method readInt16 (line 2522) | def readInt16(self, /) -> int: ... method readInt32 (line 2523) | def readInt32(self, /) -> int: ... method readInt64 (line 2524) | def readInt64(self, /) -> int: ... method readInt8 (line 2525) | def readInt8(self, /) -> int: ... method readQChar (line 2526) | def readQChar(self, /) -> str: ... method readQString (line 2527) | def readQString(self, /) -> str: ... method readQStringList (line 2528) | def readQStringList(self, /) -> List[str]: ... method readQVariant (line 2529) | def readQVariant(self, /) -> Any: ... method readRawData (line 2530) | def readRawData(self, len: int, /) -> bytes: ... method readString (line 2531) | def readString(self, /) -> str: ... method readUInt16 (line 2532) | def readUInt16(self, /) -> int: ... method readUInt32 (line 2533) | def readUInt32(self, /) -> int: ... method readUInt64 (line 2534) | def readUInt64(self, /) -> int: ... method readUInt8 (line 2535) | def readUInt8(self, /) -> int: ... method resetStatus (line 2536) | def resetStatus(self, /) -> None: ... method rollbackTransaction (line 2537) | def rollbackTransaction(self, /) -> None: ... method setByteOrder (line 2538) | def setByteOrder(self, arg__1: QDataStream.ByteOrder, /) -> None: ... method setDevice (line 2539) | def setDevice(self, arg__1: QIODevice, /) -> None: ... method setFloatingPointPrecision (line 2540) | def setFloatingPointPrecision(self, precision: QDataStream.FloatingPoi... method setStatus (line 2541) | def setStatus(self, status: QDataStream.Status, /) -> None: ... method setVersion (line 2542) | def setVersion(self, arg__1: int, /) -> None: ... method skipRawData (line 2543) | def skipRawData(self, len: int, /) -> int: ... method startTransaction (line 2544) | def startTransaction(self, /) -> None: ... method status (line 2545) | def status(self, /) -> QDataStream.Status: ... method version (line 2546) | def version(self, /) -> int: ... method writeBool (line 2547) | def writeBool(self, arg__1: bool, /) -> None: ... method writeBytes (line 2548) | def writeBytes(self, arg__1: bytes | bytearray | memoryview, /) -> QDa... method writeDouble (line 2549) | def writeDouble(self, arg__1: float, /) -> None: ... method writeFloat (line 2550) | def writeFloat(self, arg__1: float, /) -> None: ... method writeInt16 (line 2551) | def writeInt16(self, arg__1: int, /) -> None: ... method writeInt32 (line 2552) | def writeInt32(self, arg__1: int, /) -> None: ... method writeInt64 (line 2553) | def writeInt64(self, arg__1: int, /) -> None: ... method writeInt8 (line 2554) | def writeInt8(self, arg__1: int, /) -> None: ... method writeQChar (line 2555) | def writeQChar(self, arg__1: str, /) -> None: ... method writeQString (line 2556) | def writeQString(self, arg__1: str, /) -> None: ... method writeQStringList (line 2557) | def writeQStringList(self, arg__1: typing.Iterable[str], /) -> None: ... method writeQVariant (line 2558) | def writeQVariant(self, arg__1: Any, /) -> None: ... method writeRawData (line 2560) | def writeRawData(self, arg__1: str, /) -> int: ... method writeRawData (line 2562) | def writeRawData(self, arg__1: bytes | bytearray | memoryview, /) -> N... method writeString (line 2563) | def writeString(self, arg__1: str, /) -> None: ... method writeUInt16 (line 2564) | def writeUInt16(self, arg__1: int, /) -> None: ... method writeUInt32 (line 2565) | def writeUInt32(self, arg__1: int, /) -> None: ... method writeUInt64 (line 2566) | def writeUInt64(self, arg__1: int, /) -> None: ... method writeUInt8 (line 2567) | def writeUInt8(self, arg__1: int, /) -> None: ... method __lshift__ (line 2569) | def __lshift__(self, version: QVersionNumber, /) -> QDataStream: ... method __lshift__ (line 2571) | def __lshift__(self, tz: QTimeZone | QTimeZone.Initialization, /) -> Q... method __lshift__ (line 2573) | def __lshift__(self, st: QCborSimpleType, /) -> QDataStream: ... method __lshift__ (line 2575) | def __lshift__(self, re: QRegularExpression | str, /) -> QDataStream: ... method __lshift__ (line 2577) | def __lshift__(self, p: Any, /) -> QDataStream: ... method __lshift__ (line 2579) | def __lshift__(self, i: int, /) -> QDataStream: ... # type: ignore[ov... method __lshift__ (line 2581) | def __lshift__(self, combination: QKeyCombination | Qt.KeyboardModifie... method __lshift__ (line 2583) | def __lshift__(self, chr: str, /) -> QDataStream: ... # type: ignore[... method __lshift__ (line 2585) | def __lshift__(self, arg__2: QCborArray, /) -> QDataStream: ... # typ... method __lshift__ (line 2587) | def __lshift__(self, arg__2: QCborMap, /) -> QDataStream: ... # type:... method __lshift__ (line 2589) | def __lshift__(self, arg__2: QDate | datetime.date, /) -> QDataStream:... method __lshift__ (line 2591) | def __lshift__(self, arg__2: QDateTime | datetime.datetime, /) -> QDat... method __lshift__ (line 2593) | def __lshift__(self, arg__2: QJsonArray, /) -> QDataStream: ... # typ... method __lshift__ (line 2595) | def __lshift__(self, arg__2: QJsonDocument, /) -> QDataStream: ... # ... method __lshift__ (line 2597) | def __lshift__(self, arg__2: QLine, /) -> QDataStream: ... # type: ig... method __lshift__ (line 2599) | def __lshift__(self, arg__2: QMargins, /) -> QDataStream: ... # type:... method __lshift__ (line 2601) | def __lshift__(self, arg__2: QPoint, /) -> QDataStream: ... # type: i... method __lshift__ (line 2603) | def __lshift__(self, arg__2: QRect, /) -> QDataStream: ... # type: ig... method __lshift__ (line 2605) | def __lshift__(self, arg__2: QSize, /) -> QDataStream: ... # type: ig... method __lshift__ (line 2607) | def __lshift__(self, arg__2: QTime, /) -> QDataStream: ... # type: ig... method __lshift__ (line 2609) | def __lshift__(self, arg__2: QUuid, /) -> QDataStream: ... # type: ig... method __lshift__ (line 2611) | def __lshift__(self, arg__2: QEasingCurve | QEasingCurve.Type, /) -> Q... method __lshift__ (line 2613) | def __lshift__(self, arg__2: QLineF | QLine, /) -> QDataStream: ... #... method __lshift__ (line 2615) | def __lshift__(self, arg__2: QLocale | QLocale.Language, /) -> QDataSt... method __lshift__ (line 2617) | def __lshift__(self, arg__2: QMarginsF | QMargins, /) -> QDataStream: ... method __lshift__ (line 2619) | def __lshift__(self, arg__2: QPointF | QPoint, /) -> QDataStream: ... ... method __lshift__ (line 2621) | def __lshift__(self, arg__2: QRectF | QRect, /) -> QDataStream: ... #... method __lshift__ (line 2623) | def __lshift__(self, arg__2: QSizeF | QSize, /) -> QDataStream: ... #... method __lshift__ (line 2625) | def __lshift__(self, arg__2: Dict[str, QJsonValue], /) -> QDataStream:... method __lshift__ (line 2627) | def __lshift__(self, arg__2: QUrl | str, /) -> QDataStream: ... # typ... method __lshift__ (line 2629) | def __lshift__(self, arg__2: QByteArray | bytes | bytearray | memoryvi... method __lshift__ (line 2631) | def __lshift__(self, arg__2: QBitArray | int, /) -> QDataStream: ... ... method __lshift__ (line 2633) | def __lshift__(self, arg__2: Union[QJsonValue, QJsonValue.Type, str, b... method __lshift__ (line 2635) | def __lshift__(self, arg__2: QCborValue | QCborKnownTags | QCborSimple... method __rlshift__ (line 2636) | def __rlshift__(self, other): ... method __rrshift__ (line 2637) | def __rrshift__(self, other): ... method __rshift__ (line 2639) | def __rshift__(self, version: QVersionNumber, /) -> QDataStream: ... method __rshift__ (line 2641) | def __rshift__(self, tz: QTimeZone | QTimeZone.Initialization, /) -> Q... method __rshift__ (line 2643) | def __rshift__(self, st: QCborSimpleType, /) -> QDataStream: ... method __rshift__ (line 2645) | def __rshift__(self, re: QRegularExpression | str, /) -> QDataStream: ... method __rshift__ (line 2647) | def __rshift__(self, p: Any, /) -> QDataStream: ... method __rshift__ (line 2649) | def __rshift__(self, i: bool, /) -> QDataStream: ... # type: ignore[o... method __rshift__ (line 2651) | def __rshift__(self, i: int, /) -> QDataStream: ... # type: ignore[ov... method __rshift__ (line 2653) | def __rshift__(self, combination: QKeyCombination | Qt.KeyboardModifie... method __rshift__ (line 2655) | def __rshift__(self, chr: str, /) -> QDataStream: ... # type: ignore[... method __rshift__ (line 2657) | def __rshift__(self, arg__2: QCborArray, /) -> QDataStream: ... # typ... method __rshift__ (line 2659) | def __rshift__(self, arg__2: QCborMap, /) -> QDataStream: ... # type:... method __rshift__ (line 2661) | def __rshift__(self, arg__2: QDate | datetime.date, /) -> QDataStream:... method __rshift__ (line 2663) | def __rshift__(self, arg__2: QDateTime | datetime.datetime, /) -> QDat... method __rshift__ (line 2665) | def __rshift__(self, arg__2: QJsonArray, /) -> QDataStream: ... # typ... method __rshift__ (line 2667) | def __rshift__(self, arg__2: QJsonDocument, /) -> QDataStream: ... # ... method __rshift__ (line 2669) | def __rshift__(self, arg__2: QLine, /) -> QDataStream: ... # type: ig... method __rshift__ (line 2671) | def __rshift__(self, arg__2: QMargins, /) -> QDataStream: ... # type:... method __rshift__ (line 2673) | def __rshift__(self, arg__2: QPoint, /) -> QDataStream: ... # type: i... method __rshift__ (line 2675) | def __rshift__(self, arg__2: QRect, /) -> QDataStream: ... # type: ig... method __rshift__ (line 2677) | def __rshift__(self, arg__2: QSize, /) -> QDataStream: ... # type: ig... method __rshift__ (line 2679) | def __rshift__(self, arg__2: QTime, /) -> QDataStream: ... # type: ig... method __rshift__ (line 2681) | def __rshift__(self, arg__2: QUuid, /) -> QDataStream: ... # type: ig... method __rshift__ (line 2683) | def __rshift__(self, arg__2: QEasingCurve | QEasingCurve.Type, /) -> Q... method __rshift__ (line 2685) | def __rshift__(self, arg__2: QLineF | QLine, /) -> QDataStream: ... #... method __rshift__ (line 2687) | def __rshift__(self, arg__2: QLocale | QLocale.Language, /) -> QDataSt... method __rshift__ (line 2689) | def __rshift__(self, arg__2: QMarginsF | QMargins, /) -> QDataStream: ... method __rshift__ (line 2691) | def __rshift__(self, arg__2: QPointF | QPoint, /) -> QDataStream: ... ... method __rshift__ (line 2693) | def __rshift__(self, arg__2: QRectF | QRect, /) -> QDataStream: ... #... method __rshift__ (line 2695) | def __rshift__(self, arg__2: QSizeF | QSize, /) -> QDataStream: ... #... method __rshift__ (line 2697) | def __rshift__(self, arg__2: Dict[str, QJsonValue], /) -> QDataStream:... method __rshift__ (line 2699) | def __rshift__(self, arg__2: QUrl | str, /) -> QDataStream: ... # typ... method __rshift__ (line 2701) | def __rshift__(self, arg__2: QByteArray | bytes | bytearray | memoryvi... method __rshift__ (line 2703) | def __rshift__(self, arg__2: QBitArray | int, /) -> QDataStream: ... ... method __rshift__ (line 2705) | def __rshift__(self, arg__2: Union[QJsonValue, QJsonValue.Type, str, b... method __rshift__ (line 2707) | def __rshift__(self, arg__2: QCborValue | QCborKnownTags | QCborSimple... class QDate (line 2709) | class QDate(shiboken6.Object): method __init__ (line 2711) | def __init__(self, y: int, m: int, d: int, cal: QCalendar, /) -> None:... method __init__ (line 2713) | def __init__(self, y: int, m: int, d: int, /) -> None: ... method __init__ (line 2715) | def __init__(self, QDate: QDate | datetime.date, /) -> None: ... method __init__ (line 2717) | def __init__(self, /) -> None: ... method addDays (line 2718) | def addDays(self, days: int, /) -> QDate: ... method addMonths (line 2720) | def addMonths(self, months: int, cal: QCalendar, /) -> QDate: ... method addMonths (line 2722) | def addMonths(self, months: int, /) -> QDate: ... method addYears (line 2724) | def addYears(self, years: int, cal: QCalendar, /) -> QDate: ... method addYears (line 2726) | def addYears(self, years: int, /) -> QDate: ... method currentDate (line 2728) | def currentDate() -> QDate: ... method day (line 2730) | def day(self, cal: QCalendar, /) -> int: ... method day (line 2732) | def day(self, /) -> int: ... method dayOfWeek (line 2734) | def dayOfWeek(self, cal: QCalendar, /) -> int: ... method dayOfWeek (line 2736) | def dayOfWeek(self, /) -> int: ... method dayOfYear (line 2738) | def dayOfYear(self, cal: QCalendar, /) -> int: ... method dayOfYear (line 2740) | def dayOfYear(self, /) -> int: ... method daysInMonth (line 2742) | def daysInMonth(self, cal: QCalendar, /) -> int: ... method daysInMonth (line 2744) | def daysInMonth(self, /) -> int: ... method daysInYear (line 2746) | def daysInYear(self, cal: QCalendar, /) -> int: ... method daysInYear (line 2748) | def daysInYear(self, /) -> int: ... method daysTo (line 2749) | def daysTo(self, d: QDate | datetime.date, /) -> int: ... method endOfDay (line 2751) | def endOfDay(self, spec: Qt.TimeSpec, /, offsetSeconds: int | None = .... method endOfDay (line 2753) | def endOfDay(self, zone: QTimeZone | QTimeZone.Initialization, /) -> Q... method endOfDay (line 2755) | def endOfDay(self, /) -> QDateTime: ... method fromJulianDay (line 2757) | def fromJulianDay(jd_: int, /) -> QDate: ... method fromString (line 2760) | def fromString(string: str, format: str, baseYear: int, cal: QCalendar... method fromString (line 2763) | def fromString(string: str, format: str, cal: QCalendar, /) -> QDate: ... method fromString (line 2766) | def fromString(string: str, format: str, /, baseYear: int = ...) -> QD... method fromString (line 2769) | def fromString(string: str, /, format: Qt.DateFormat = ...) -> QDate: ... method getDate (line 2770) | def getDate(self, /) -> Tuple[int, int, int]: ... method isLeapYear (line 2772) | def isLeapYear(year: int, /) -> bool: ... method isNull (line 2773) | def isNull(self, /) -> bool: ... method isValid (line 2775) | def isValid(self) -> typing.Any: ... method month (line 2777) | def month(self, cal: QCalendar, /) -> int: ... method month (line 2779) | def month(self, /) -> int: ... method setDate (line 2781) | def setDate(self, year: int, month: int, day: int, cal: QCalendar, /) ... method setDate (line 2783) | def setDate(self, year: int, month: int, day: int, /) -> bool: ... method startOfDay (line 2785) | def startOfDay(self, spec: Qt.TimeSpec, /, offsetSeconds: int | None =... method startOfDay (line 2787) | def startOfDay(self, zone: QTimeZone | QTimeZone.Initialization, /) ->... method startOfDay (line 2789) | def startOfDay(self, /) -> QDateTime: ... method toJulianDay (line 2790) | def toJulianDay(self, /) -> int: ... method toPython (line 2791) | def toPython(self, /) -> typing.Any: ... method toString (line 2793) | def toString(self, format: str, cal: QCalendar, /) -> str: ... method toString (line 2795) | def toString(self, format: str, /) -> str: ... method toString (line 2797) | def toString(self, /, format: Qt.DateFormat = ...) -> str: ... method weekNumber (line 2798) | def weekNumber(self, /) -> Tuple[int, int]: ... method year (line 2800) | def year(self, cal: QCalendar, /) -> int: ... method year (line 2802) | def year(self, /) -> int: ... method __bool__ (line 2803) | def __bool__(self) -> bool: ... method __copy__ (line 2804) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2805) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2806) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2807) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2808) | def __hash__(self, /) -> int: ... method __le__ (line 2809) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2810) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2811) | def __ne__(self, other: object) -> bool: ... class QDateTime (line 2813) | class QDateTime(shiboken6.Object): class TransitionResolution (line 2814) | class TransitionResolution(enum.Enum): class YearRange (line 2824) | class YearRange(enum.Enum): method __init__ (line 2828) | def __init__(self, year: int, month: int, day: int, h: int, m: int, s:... method __init__ (line 2830) | def __init__(self, year: int, month: int, day: int, h: int, m: int, s:... method __init__ (line 2832) | def __init__(self, year: int, month: int, day: int, h: int, m: int, s:... method __init__ (line 2834) | def __init__(self, year: int, month: int, day: int, h: int, m: int, s:... method __init__ (line 2836) | def __init__(self, date: QDate | datetime.date, time: QTime, timeZone:... method __init__ (line 2838) | def __init__(self, date: QDate | datetime.date, time: QTime, spec: Qt.... method __init__ (line 2840) | def __init__(self, date: QDate | datetime.date, time: QTime, /, resolv... method __init__ (line 2842) | def __init__(self, other: QDateTime | datetime.datetime, /) -> None: ... method __init__ (line 2844) | def __init__(self, /) -> None: ... method addDays (line 2845) | def addDays(self, days: int, /) -> QDateTime: ... method addDuration (line 2846) | def addDuration(self, msecs: int, /) -> QDateTime: ... method addMSecs (line 2847) | def addMSecs(self, msecs: int, /) -> QDateTime: ... method addMonths (line 2848) | def addMonths(self, months: int, /) -> QDateTime: ... method addSecs (line 2849) | def addSecs(self, secs: int, /) -> QDateTime: ... method addYears (line 2850) | def addYears(self, years: int, /) -> QDateTime: ... method currentDateTime (line 2853) | def currentDateTime(zone: QTimeZone | QTimeZone.Initialization, /) -> ... method currentDateTime (line 2856) | def currentDateTime() -> QDateTime: ... method currentDateTimeUtc (line 2858) | def currentDateTimeUtc() -> QDateTime: ... method currentMSecsSinceEpoch (line 2860) | def currentMSecsSinceEpoch() -> int: ... method currentSecsSinceEpoch (line 2862) | def currentSecsSinceEpoch() -> int: ... method date (line 2863) | def date(self, /) -> QDate: ... method daysTo (line 2864) | def daysTo(self, arg__1: QDateTime | datetime.datetime, /) -> int: ... method fromMSecsSinceEpoch (line 2867) | def fromMSecsSinceEpoch(msecs: int, spec: Qt.TimeSpec, /, offsetFromUt... method fromMSecsSinceEpoch (line 2870) | def fromMSecsSinceEpoch(msecs: int, timeZone: QTimeZone | QTimeZone.In... method fromMSecsSinceEpoch (line 2873) | def fromMSecsSinceEpoch(msecs: int, /) -> QDateTime: ... method fromSecsSinceEpoch (line 2876) | def fromSecsSinceEpoch(secs: int, spec: Qt.TimeSpec, /, offsetFromUtc:... method fromSecsSinceEpoch (line 2879) | def fromSecsSinceEpoch(secs: int, timeZone: QTimeZone | QTimeZone.Init... method fromSecsSinceEpoch (line 2882) | def fromSecsSinceEpoch(secs: int, /) -> QDateTime: ... method fromString (line 2885) | def fromString(string: str, format: str, baseYear: int, cal: QCalendar... method fromString (line 2888) | def fromString(string: str, format: str, cal: QCalendar, /) -> QDateTi... method fromString (line 2891) | def fromString(string: str, format: str, /, baseYear: int = ...) -> QD... method fromString (line 2894) | def fromString(string: str, /, format: Qt.DateFormat = ...) -> QDateTi... method isDaylightTime (line 2895) | def isDaylightTime(self, /) -> bool: ... method isNull (line 2896) | def isNull(self, /) -> bool: ... method isValid (line 2897) | def isValid(self, /) -> bool: ... method msecsTo (line 2898) | def msecsTo(self, arg__1: QDateTime | datetime.datetime, /) -> int: ... method offsetFromUtc (line 2899) | def offsetFromUtc(self, /) -> int: ... method secsTo (line 2900) | def secsTo(self, arg__1: QDateTime | datetime.datetime, /) -> int: ... method setDate (line 2901) | def setDate(self, date: QDate | datetime.date, /, resolve: QDateTime.T... method setMSecsSinceEpoch (line 2902) | def setMSecsSinceEpoch(self, msecs: int, /) -> None: ... method setOffsetFromUtc (line 2903) | def setOffsetFromUtc(self, offsetSeconds: int, /) -> None: ... method setSecsSinceEpoch (line 2904) | def setSecsSinceEpoch(self, secs: int, /) -> None: ... method setTime (line 2905) | def setTime(self, time: QTime, /, resolve: QDateTime.TransitionResolut... method setTimeSpec (line 2906) | def setTimeSpec(self, spec: Qt.TimeSpec, /) -> None: ... method setTimeZone (line 2907) | def setTimeZone(self, toZone: QTimeZone | QTimeZone.Initialization, /,... method swap (line 2908) | def swap(self, other: QDateTime | datetime.datetime, /) -> None: ... method time (line 2909) | def time(self, /) -> QTime: ... method timeRepresentation (line 2910) | def timeRepresentation(self, /) -> QTimeZone: ... method timeSpec (line 2911) | def timeSpec(self, /) -> Qt.TimeSpec: ... method timeZone (line 2912) | def timeZone(self, /) -> QTimeZone: ... method timeZoneAbbreviation (line 2913) | def timeZoneAbbreviation(self, /) -> str: ... method toLocalTime (line 2914) | def toLocalTime(self, /) -> QDateTime: ... method toMSecsSinceEpoch (line 2915) | def toMSecsSinceEpoch(self, /) -> int: ... method toOffsetFromUtc (line 2916) | def toOffsetFromUtc(self, offsetSeconds: int, /) -> QDateTime: ... method toPython (line 2917) | def toPython(self, /) -> typing.Any: ... method toSecsSinceEpoch (line 2918) | def toSecsSinceEpoch(self, /) -> int: ... method toString (line 2920) | def toString(self, format: str, cal: QCalendar, /) -> str: ... method toString (line 2922) | def toString(self, format: str, /) -> str: ... method toString (line 2924) | def toString(self, /, format: Qt.DateFormat = ...) -> str: ... method toTimeSpec (line 2925) | def toTimeSpec(self, spec: Qt.TimeSpec, /) -> QDateTime: ... method toTimeZone (line 2926) | def toTimeZone(self, toZone: QTimeZone | QTimeZone.Initialization, /) ... method toUTC (line 2927) | def toUTC(self, /) -> QDateTime: ... method __add__ (line 2928) | def __add__(self, duration: int, /) -> QDateTime: ... method __bool__ (line 2929) | def __bool__(self) -> bool: ... method __copy__ (line 2930) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2931) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2932) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2933) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2934) | def __hash__(self, /) -> int: ... method __iadd__ (line 2935) | def __iadd__(self, duration: int, /) -> QDateTime: ... method __isub__ (line 2936) | def __isub__(self, duration: int, /) -> QDateTime: ... # type: ignore... method __le__ (line 2937) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2938) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2939) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2940) | def __radd__(self, other): ... method __rsub__ (line 2941) | def __rsub__(self, other): ... method __sub__ (line 2943) | def __sub__(self, rhs: QDateTime | datetime.datetime, /) -> int: ... method __sub__ (line 2945) | def __sub__(self, duration: int, /) -> QDateTime: ... class QDeadlineTimer (line 2947) | class QDeadlineTimer(shiboken6.Object): class ForeverConstant (line 2948) | class ForeverConstant(enum.Enum): method __init__ (line 2952) | def __init__(self, msecs: int, /, type: Qt.TimerType = ...) -> None: ... method __init__ (line 2954) | def __init__(self, arg__1: QDeadlineTimer.ForeverConstant, /, type_: Q... method __init__ (line 2956) | def __init__(self, type_: Qt.TimerType, /) -> None: ... method __init__ (line 2958) | def __init__(self, QDeadlineTimer: QDeadlineTimer, /) -> None: ... method __init__ (line 2960) | def __init__(self, /) -> None: ... method addNSecs (line 2962) | def addNSecs(dt: QDeadlineTimer | QDeadlineTimer.ForeverConstant | int... method current (line 2964) | def current(timerType: Qt.TimerType = ...) -> QDeadlineTimer: ... method deadline (line 2965) | def deadline(self, /) -> int: ... method deadlineNSecs (line 2966) | def deadlineNSecs(self, /) -> int: ... method hasExpired (line 2967) | def hasExpired(self, /) -> bool: ... method isForever (line 2968) | def isForever(self, /) -> bool: ... method remainingTime (line 2969) | def remainingTime(self, /) -> int: ... method remainingTimeNSecs (line 2970) | def remainingTimeNSecs(self, /) -> int: ... method setDeadline (line 2971) | def setDeadline(self, msecs: int, /, timerType: Qt.TimerType = ...) ->... method setPreciseDeadline (line 2972) | def setPreciseDeadline(self, secs: int, /, nsecs: int | None = ..., ty... method setPreciseRemainingTime (line 2973) | def setPreciseRemainingTime(self, secs: int, /, nsecs: int | None = ..... method setRemainingTime (line 2974) | def setRemainingTime(self, msecs: int, /, type: Qt.TimerType = ...) ->... method setTimerType (line 2975) | def setTimerType(self, type: Qt.TimerType, /) -> None: ... method swap (line 2976) | def swap(self, other: QDeadlineTimer | QDeadlineTimer.ForeverConstant ... method timerType (line 2977) | def timerType(self, /) -> Qt.TimerType: ... method __add__ (line 2978) | def __add__(self, msecs: int, /) -> QDeadlineTimer: ... method __copy__ (line 2979) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2980) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2981) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2982) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 2983) | def __iadd__(self, msecs: int, /) -> QDeadlineTimer: ... method __isub__ (line 2984) | def __isub__(self, msecs: int, /) -> QDeadlineTimer: ... # type: igno... method __le__ (line 2985) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2986) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2987) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2988) | def __radd__(self, other): ... method __rsub__ (line 2989) | def __rsub__(self, other): ... method __sub__ (line 2991) | def __sub__(self, msecs: int, /) -> QDeadlineTimer: ... # type: ignor... method __sub__ (line 2993) | def __sub__(self, dt2: QDeadlineTimer | QDeadlineTimer.ForeverConstant... class QDir (line 2995) | class QDir(shiboken6.Object): class Filter (line 2996) | class Filter(enum.Flag): class SortFlag (line 3018) | class SortFlag(enum.Flag): method __init__ (line 3032) | def __init__(self, path: str | bytes | os.PathLike[str], nameFilter: s... method __init__ (line 3034) | def __init__(self, arg__1: QDir, /) -> None: ... method __init__ (line 3036) | def __init__(self, /, path: str | bytes | os.PathLike[str] | None = ..... method absoluteFilePath (line 3037) | def absoluteFilePath(self, fileName: str, /) -> str: ... method absolutePath (line 3038) | def absolutePath(self, /) -> str: ... method addSearchPath (line 3040) | def addSearchPath(prefix: str, path: str | bytes | os.PathLike[str], /... method canonicalPath (line 3041) | def canonicalPath(self, /) -> str: ... method cd (line 3042) | def cd(self, dirName: str, /) -> bool: ... method cdUp (line 3043) | def cdUp(self, /) -> bool: ... method cleanPath (line 3045) | def cleanPath(path: str, /) -> str: ... method count (line 3046) | def count(self, /) -> int: ... method current (line 3048) | def current() -> QDir: ... method currentPath (line 3050) | def currentPath() -> str: ... method dirName (line 3051) | def dirName(self, /) -> str: ... method drives (line 3053) | def drives() -> List[QFileInfo]: ... method entryInfoList (line 3055) | def entryInfoList(self, nameFilters: typing.Iterable[str], /, filters:... method entryInfoList (line 3057) | def entryInfoList(self, /, filters: QDir.Filter = ..., sort: QDir.Sort... method entryList (line 3059) | def entryList(self, nameFilters: typing.Iterable[str], /, filters: QDi... method entryList (line 3061) | def entryList(self, /, filters: QDir.Filter = ..., sort: QDir.SortFlag... method exists (line 3063) | def exists(self, name: str, /) -> bool: ... method exists (line 3065) | def exists(self, /) -> bool: ... method filePath (line 3066) | def filePath(self, fileName: str, /) -> str: ... method filter (line 3067) | def filter(self, /) -> QDir.Filter: ... method fromNativeSeparators (line 3069) | def fromNativeSeparators(pathName: str, /) -> str: ... method home (line 3071) | def home() -> QDir: ... method homePath (line 3073) | def homePath() -> str: ... method isAbsolute (line 3074) | def isAbsolute(self, /) -> bool: ... method isAbsolutePath (line 3076) | def isAbsolutePath(path: str, /) -> bool: ... method isEmpty (line 3077) | def isEmpty(self, /, filters: QDir.Filter = ...) -> bool: ... method isReadable (line 3078) | def isReadable(self, /) -> bool: ... method isRelative (line 3079) | def isRelative(self, /) -> bool: ... method isRelativePath (line 3081) | def isRelativePath(path: str, /) -> bool: ... method isRoot (line 3082) | def isRoot(self, /) -> bool: ... method listSeparator (line 3084) | def listSeparator() -> str: ... method makeAbsolute (line 3085) | def makeAbsolute(self, /) -> bool: ... method match (line 3088) | def match(filters: typing.Iterable[str], fileName: str, /) -> bool: ... method match (line 3091) | def match(filter: str, fileName: str, /) -> bool: ... # type: ignore[... method mkdir (line 3093) | def mkdir(self, arg__1: str, arg__2: QFileDevice.Permission, /) -> boo... method mkdir (line 3095) | def mkdir(self, arg__1: str, /) -> bool: ... method mkpath (line 3097) | def mkpath(self, arg__1: str, arg__2: QFileDevice.Permission, /) -> bo... method mkpath (line 3099) | def mkpath(self, arg__1: str, /) -> bool: ... method nameFilters (line 3100) | def nameFilters(self, /) -> List[str]: ... method nameFiltersFromString (line 3102) | def nameFiltersFromString(nameFilter: str, /) -> List[str]: ... method path (line 3103) | def path(self, /) -> str: ... method refresh (line 3104) | def refresh(self, /) -> None: ... method relativeFilePath (line 3105) | def relativeFilePath(self, fileName: str, /) -> str: ... method remove (line 3106) | def remove(self, fileName: str, /) -> bool: ... method removeRecursively (line 3107) | def removeRecursively(self, /) -> bool: ... method rename (line 3108) | def rename(self, oldName: str, newName: str, /) -> bool: ... method rmdir (line 3109) | def rmdir(self, dirName: str, /) -> bool: ... method rmpath (line 3110) | def rmpath(self, dirPath: str, /) -> bool: ... method root (line 3112) | def root() -> QDir: ... method rootPath (line 3114) | def rootPath() -> str: ... method searchPaths (line 3116) | def searchPaths(prefix: str, /) -> List[str]: ... method separator (line 3118) | def separator() -> str: ... method setCurrent (line 3120) | def setCurrent(path: str, /) -> bool: ... method setFilter (line 3121) | def setFilter(self, filter: QDir.Filter, /) -> None: ... method setNameFilters (line 3122) | def setNameFilters(self, nameFilters: typing.Iterable[str], /) -> None... method setPath (line 3123) | def setPath(self, path: str | bytes | os.PathLike[str], /) -> None: ... method setSearchPaths (line 3125) | def setSearchPaths(prefix: str, searchPaths: typing.Iterable[str], /) ... method setSorting (line 3126) | def setSorting(self, sort: QDir.SortFlag, /) -> None: ... method sorting (line 3127) | def sorting(self, /) -> QDir.SortFlag: ... method swap (line 3128) | def swap(self, other: QDir, /) -> None: ... method temp (line 3130) | def temp() -> QDir: ... method tempPath (line 3132) | def tempPath() -> str: ... method toNativeSeparators (line 3134) | def toNativeSeparators(pathName: str, /) -> str: ... method __copy__ (line 3135) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3136) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3137) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3138) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3139) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3140) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3141) | def __ne__(self, other: object) -> bool: ... class QDirIterator (line 3143) | class QDirIterator(shiboken6.Object): class IteratorFlag (line 3144) | class IteratorFlag(enum.Flag): method __init__ (line 3149) | def __init__(self, path: str, nameFilters: typing.Iterable[str], /, fi... method __init__ (line 3151) | def __init__(self, path: str, filter: QDir.Filter, /, flags: QDirItera... method __init__ (line 3153) | def __init__(self, path: str, /, flags: QDirIterator.IteratorFlag = ..... method __init__ (line 3155) | def __init__(self, dir: QDir, /, flags: QDirIterator.IteratorFlag = ..... method fileInfo (line 3156) | def fileInfo(self, /) -> QFileInfo: ... method fileName (line 3157) | def fileName(self, /) -> str: ... method filePath (line 3158) | def filePath(self, /) -> str: ... method hasNext (line 3159) | def hasNext(self, /) -> bool: ... method next (line 3160) | def next(self, /) -> str: ... method nextFileInfo (line 3161) | def nextFileInfo(self, /) -> QFileInfo: ... method path (line 3162) | def path(self, /) -> str: ... class QDirListing (line 3164) | class QDirListing(shiboken6.Object): class DirEntry (line 3165) | class DirEntry(shiboken6.Object): method __init__ (line 3167) | def __init__(self, DirEntry: QDirListing.DirEntry, /) -> None: ... method __init__ (line 3169) | def __init__(self, /) -> None: ... method absoluteFilePath (line 3170) | def absoluteFilePath(self, /) -> str: ... method absolutePath (line 3171) | def absolutePath(self, /) -> str: ... method baseName (line 3172) | def baseName(self, /) -> str: ... method birthTime (line 3173) | def birthTime(self, tz: QTimeZone | QTimeZone.Initialization, /) -> ... method bundleName (line 3174) | def bundleName(self, /) -> str: ... method canonicalFilePath (line 3175) | def canonicalFilePath(self, /) -> str: ... method completeBaseName (line 3176) | def completeBaseName(self, /) -> str: ... method completeSuffix (line 3177) | def completeSuffix(self, /) -> str: ... method exists (line 3178) | def exists(self, /) -> bool: ... method fileInfo (line 3179) | def fileInfo(self, /) -> QFileInfo: ... method fileName (line 3180) | def fileName(self, /) -> str: ... method filePath (line 3181) | def filePath(self, /) -> str: ... method fileTime (line 3182) | def fileTime(self, type: QFileDevice.FileTime, tz: QTimeZone | QTime... method isDir (line 3183) | def isDir(self, /) -> bool: ... method isExecutable (line 3184) | def isExecutable(self, /) -> bool: ... method isFile (line 3185) | def isFile(self, /) -> bool: ... method isHidden (line 3186) | def isHidden(self, /) -> bool: ... method isReadable (line 3187) | def isReadable(self, /) -> bool: ... method isSymLink (line 3188) | def isSymLink(self, /) -> bool: ... method isWritable (line 3189) | def isWritable(self, /) -> bool: ... method lastModified (line 3190) | def lastModified(self, tz: QTimeZone | QTimeZone.Initialization, /) ... method lastRead (line 3191) | def lastRead(self, tz: QTimeZone | QTimeZone.Initialization, /) -> Q... method metadataChangeTime (line 3192) | def metadataChangeTime(self, tz: QTimeZone | QTimeZone.Initializatio... method size (line 3193) | def size(self, /) -> int: ... method suffix (line 3194) | def suffix(self, /) -> str: ... method __copy__ (line 3195) | def __copy__(self, /) -> typing_extensions.Self: ... class IteratorFlag (line 3197) | class IteratorFlag(enum.Flag): method __init__ (line 3212) | def __init__(self, path: str, nameFilters: typing.Iterable[str], /, fl... method __init__ (line 3214) | def __init__(self, path: str, /, flags: QDirListing.IteratorFlag = ...... method iteratorFlags (line 3215) | def iteratorFlags(self, /) -> QDirListing.IteratorFlag: ... method iteratorPath (line 3216) | def iteratorPath(self, /) -> str: ... method nameFilters (line 3217) | def nameFilters(self, /) -> List[str]: ... method swap (line 3218) | def swap(self, other: QDirListing, /) -> None: ... method __iter__ (line 3219) | def __iter__(self, /) -> typing.Iterator: ... class QDirListingIterator (line 3221) | class QDirListingIterator(shiboken6.Object): method __init__ (line 3223) | def __init__(self, dl: QDirListing, /) -> None: ... method __init__ (line 3225) | def __init__(self, arg__1: QDirListingIterator, /) -> None: ... method __init__ (line 3227) | def __init__(self, /) -> None: ... method atEnd (line 3228) | def atEnd(self, /) -> bool: ... method next (line 3229) | def next(self, /) -> bool: ... method value (line 3230) | def value(self, /) -> QDirListing.DirEntry: ... method __copy__ (line 3231) | def __copy__(self, /) -> typing_extensions.Self: ... method __iter__ (line 3232) | def __iter__(self, /) -> typing.Iterator: ... method __next__ (line 3233) | def __next__(self, /) -> typing.Any: ... class QDynamicPropertyChangeEvent (line 3235) | class QDynamicPropertyChangeEvent(QEvent): method __init__ (line 3237) | def __init__(self, name: QByteArray | bytes | bytearray | memoryview, ... method __init__ (line 3239) | def __init__(self, arg__1: QDynamicPropertyChangeEvent, /) -> None: ... method clone (line 3240) | def clone(self, /) -> QDynamicPropertyChangeEvent: ... method propertyName (line 3241) | def propertyName(self, /) -> QByteArray: ... class QEasingCurve (line 3243) | class QEasingCurve(shiboken6.Object): class Type (line 3244) | class Type(enum.Enum): method __init__ (line 3295) | def __init__(self, other: QEasingCurve | QEasingCurve.Type, /) -> None... method __init__ (line 3297) | def __init__(self, /, type: QEasingCurve.Type = ...) -> None: ... method addCubicBezierSegment (line 3298) | def addCubicBezierSegment(self, c1: QPointF | QPoint, c2: QPointF | QP... method addTCBSegment (line 3299) | def addTCBSegment(self, nextPoint: QPointF | QPoint, t: float, c: floa... method amplitude (line 3300) | def amplitude(self, /) -> float: ... method customType (line 3301) | def customType(self, /) -> typing.Any: ... method overshoot (line 3302) | def overshoot(self, /) -> float: ... method period (line 3303) | def period(self, /) -> float: ... method setAmplitude (line 3304) | def setAmplitude(self, amplitude: float, /) -> None: ... method setCustomType (line 3305) | def setCustomType(self, callable: object, /) -> None: ... method setOvershoot (line 3306) | def setOvershoot(self, overshoot: float, /) -> None: ... method setPeriod (line 3307) | def setPeriod(self, period: float, /) -> None: ... method setType (line 3308) | def setType(self, type: QEasingCurve.Type, /) -> None: ... method swap (line 3309) | def swap(self, other: QEasingCurve | QEasingCurve.Type, /) -> None: ... method toCubicSpline (line 3310) | def toCubicSpline(self, /) -> List[QPointF]: ... method type (line 3311) | def type(self, /) -> QEasingCurve.Type: ... method valueForProgress (line 3312) | def valueForProgress(self, progress: float, /) -> float: ... method __copy__ (line 3313) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3314) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3315) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3316) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3317) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3318) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3319) | def __ne__(self, other: object) -> bool: ... class QElapsedTimer (line 3321) | class QElapsedTimer(shiboken6.Object): class ClockType (line 3322) | class ClockType(enum.Enum): method __init__ (line 3329) | def __init__(self, QElapsedTimer: QElapsedTimer, /) -> None: ... method __init__ (line 3331) | def __init__(self, /) -> None: ... method clockType (line 3333) | def clockType() -> QElapsedTimer.ClockType: ... method elapsed (line 3334) | def elapsed(self, /) -> int: ... method hasExpired (line 3335) | def hasExpired(self, timeout: int, /) -> bool: ... method invalidate (line 3336) | def invalidate(self, /) -> None: ... method isMonotonic (line 3338) | def isMonotonic() -> bool: ... method isValid (line 3339) | def isValid(self, /) -> bool: ... method msecsSinceReference (line 3340) | def msecsSinceReference(self, /) -> int: ... method msecsTo (line 3341) | def msecsTo(self, other: QElapsedTimer, /) -> int: ... method nsecsElapsed (line 3342) | def nsecsElapsed(self, /) -> int: ... method restart (line 3343) | def restart(self, /) -> int: ... method secsTo (line 3344) | def secsTo(self, other: QElapsedTimer, /) -> int: ... method start (line 3345) | def start(self, /) -> None: ... method __copy__ (line 3346) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3347) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3348) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3349) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3350) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3351) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3352) | def __ne__(self, other: object) -> bool: ... class QEvent (line 3354) | class QEvent(shiboken6.Object): class Type (line 3355) | class Type(enum.IntEnum): method __init__ (line 3536) | def __init__(self, type: QEvent.Type, /) -> None: ... method __init__ (line 3538) | def __init__(self, arg__1: QEvent, /) -> None: ... method accept (line 3539) | def accept(self, /) -> None: ... method clone (line 3540) | def clone(self, /) -> QEvent: ... method ignore (line 3541) | def ignore(self, /) -> None: ... method isAccepted (line 3542) | def isAccepted(self, /) -> bool: ... method isInputEvent (line 3543) | def isInputEvent(self, /) -> bool: ... method isPointerEvent (line 3544) | def isPointerEvent(self, /) -> bool: ... method isSinglePointEvent (line 3545) | def isSinglePointEvent(self, /) -> bool: ... method registerEventType (line 3547) | def registerEventType(hint: int = ...) -> int: ... method setAccepted (line 3548) | def setAccepted(self, accepted: bool, /) -> None: ... method spontaneous (line 3549) | def spontaneous(self, /) -> bool: ... method type (line 3550) | def type(self, /) -> QEvent.Type: ... class QEventLoop (line 3552) | class QEventLoop(QObject): class ProcessEventsFlag (line 3553) | class ProcessEventsFlag(enum.Flag): method __init__ (line 3563) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method event (line 3564) | def event(self, event: QEvent, /) -> bool: ... method exec (line 3565) | def exec(self, /, flags: QEventLoop.ProcessEventsFlag = ...) -> int: ... method exec_ (line 3566) | def exec_(self, /, flags: QEventLoop.ProcessEventsFlag = ...) -> int: ... method exit (line 3567) | def exit(self, /, returnCode: int | None = ...) -> None: ... method isRunning (line 3568) | def isRunning(self, /) -> bool: ... method processEvents (line 3570) | def processEvents(self, flags: QEventLoop.ProcessEventsFlag, maximumTi... method processEvents (line 3572) | def processEvents(self, flags: QEventLoop.ProcessEventsFlag, deadline:... method processEvents (line 3574) | def processEvents(self, /, flags: QEventLoop.ProcessEventsFlag = ...) ... method quit (line 3575) | def quit(self, /) -> None: ... method wakeUp (line 3576) | def wakeUp(self, /) -> None: ... class QFactoryInterface (line 3578) | class QFactoryInterface(shiboken6.Object): method __init__ (line 3579) | def __init__(self, /) -> None: ... method keys (line 3580) | def keys(self, /) -> List[str]: ... class QFile (line 3582) | class QFile(QFileDevice): method __init__ (line 3585) | def __init__(self, name: str | bytes | os.PathLike[str], parent: QObje... method __init__ (line 3587) | def __init__(self, parent: QObject | None, /, aboutToClose: typing.Cal... method __init__ (line 3589) | def __init__(self, name: str | bytes | os.PathLike[str], /, aboutToClo... method __init__ (line 3591) | def __init__(self, /, aboutToClose: typing.Callable = ..., bytesWritte... method copy (line 3593) | def copy(self) -> typing.Any: ... method decodeName (line 3596) | def decodeName(localFileName: bytes | bytearray | memoryview, /) -> st... method decodeName (line 3599) | def decodeName(localFileName: QByteArray | bytes | bytearray | memoryv... method encodeName (line 3601) | def encodeName(fileName: str, /) -> QByteArray: ... method exists (line 3603) | def exists(self) -> typing.Any: ... method fileName (line 3604) | def fileName(self, /) -> str: ... method link (line 3606) | def link(self) -> typing.Any: ... method moveToTrash (line 3608) | def moveToTrash(self) -> typing.Any: ... method open (line 3610) | def open(self, fd: int, ioFlags: QIODeviceBase.OpenModeFlag, /, handle... method open (line 3612) | def open(self, flags: QIODeviceBase.OpenModeFlag, permissions: QFileDe... method open (line 3614) | def open(self, flags: QIODeviceBase.OpenModeFlag, /) -> bool: ... method permissions (line 3616) | def permissions(self) -> typing.Any: ... method remove (line 3618) | def remove(self) -> typing.Any: ... method rename (line 3620) | def rename(self) -> typing.Any: ... method resize (line 3622) | def resize(self) -> typing.Any: ... method setFileName (line 3623) | def setFileName(self, name: str | bytes | os.PathLike[str], /) -> None... method setPermissions (line 3625) | def setPermissions(self) -> typing.Any: ... method size (line 3626) | def size(self, /) -> int: ... method supportsMoveToTrash (line 3628) | def supportsMoveToTrash() -> bool: ... method symLinkTarget (line 3630) | def symLinkTarget(self) -> typing.Any: ... class QFileDevice (line 3632) | class QFileDevice(QIODevice): class FileError (line 3633) | class FileError(enum.Enum): class FileHandleFlag (line 3650) | class FileHandleFlag(enum.Flag): class FileTime (line 3654) | class FileTime(enum.Enum): class MemoryMapFlag (line 3660) | class MemoryMapFlag(enum.Flag): class Permission (line 3664) | class Permission(enum.Flag): method __init__ (line 3679) | def __init__(self, parent: QObject | None, /, aboutToClose: typing.Cal... method __init__ (line 3681) | def __init__(self, /, aboutToClose: typing.Callable = ..., bytesWritte... method atEnd (line 3682) | def atEnd(self, /) -> bool: ... method close (line 3683) | def close(self, /) -> None: ... method error (line 3684) | def error(self, /) -> QFileDevice.FileError: ... method fileName (line 3685) | def fileName(self, /) -> str: ... method fileTime (line 3686) | def fileTime(self, time: QFileDevice.FileTime, /) -> QDateTime: ... method flush (line 3687) | def flush(self, /) -> bool: ... method handle (line 3688) | def handle(self, /) -> int: ... method isSequential (line 3689) | def isSequential(self, /) -> bool: ... method map (line 3690) | def map(self, offset: int, size: int, /, flags: QFileDevice.MemoryMapF... method permissions (line 3691) | def permissions(self, /) -> QFileDevice.Permission: ... method pos (line 3692) | def pos(self, /) -> int: ... method readData (line 3693) | def readData(self, maxlen: int, /) -> typing.Any: ... method readLineData (line 3694) | def readLineData(self, maxlen: int, /) -> typing.Any: ... method resize (line 3695) | def resize(self, sz: int, /) -> bool: ... method seek (line 3696) | def seek(self, offset: int, /) -> bool: ... method setFileTime (line 3697) | def setFileTime(self, newDate: QDateTime | datetime.datetime, fileTime... method setPermissions (line 3698) | def setPermissions(self, permissionSpec: QFileDevice.Permission, /) ->... method size (line 3699) | def size(self, /) -> int: ... method unmap (line 3700) | def unmap(self, address: bytes | bytearray | memoryview, /) -> bool: ... method unsetError (line 3701) | def unsetError(self, /) -> None: ... method writeData (line 3702) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QFileInfo (line 3704) | class QFileInfo(shiboken6.Object): method __init__ (line 3706) | def __init__(self, dir: QDir, file: str | bytes | os.PathLike[str], /)... method __init__ (line 3708) | def __init__(self, fileinfo: QFileInfo, /) -> None: ... method __init__ (line 3710) | def __init__(self, file: QFileDevice, /) -> None: ... method __init__ (line 3712) | def __init__(self, file: str | bytes | os.PathLike[str], /) -> None: ... method __init__ (line 3714) | def __init__(self, /) -> None: ... method absoluteDir (line 3715) | def absoluteDir(self, /) -> QDir: ... method absoluteFilePath (line 3716) | def absoluteFilePath(self, /) -> str: ... method absolutePath (line 3717) | def absolutePath(self, /) -> str: ... method baseName (line 3718) | def baseName(self, /) -> str: ... method birthTime (line 3720) | def birthTime(self, tz: QTimeZone | QTimeZone.Initialization, /) -> QD... method birthTime (line 3722) | def birthTime(self, /) -> QDateTime: ... method bundleName (line 3723) | def bundleName(self, /) -> str: ... method caching (line 3724) | def caching(self, /) -> bool: ... method canonicalFilePath (line 3725) | def canonicalFilePath(self, /) -> str: ... method canonicalPath (line 3726) | def canonicalPath(self, /) -> str: ... method completeBaseName (line 3727) | def completeBaseName(self, /) -> str: ... method completeSuffix (line 3728) | def completeSuffix(self, /) -> str: ... method dir (line 3729) | def dir(self, /) -> QDir: ... method exists (line 3731) | def exists(self) -> typing.Any: ... method fileName (line 3732) | def fileName(self, /) -> str: ... method filePath (line 3733) | def filePath(self, /) -> str: ... method fileTime (line 3735) | def fileTime(self, time: QFileDevice.FileTime, tz: QTimeZone | QTimeZo... method fileTime (line 3737) | def fileTime(self, time: QFileDevice.FileTime, /) -> QDateTime: ... method group (line 3738) | def group(self, /) -> str: ... method groupId (line 3739) | def groupId(self, /) -> int: ... method isAbsolute (line 3740) | def isAbsolute(self, /) -> bool: ... method isAlias (line 3741) | def isAlias(self, /) -> bool: ... method isBundle (line 3742) | def isBundle(self, /) -> bool: ... method isDir (line 3743) | def isDir(self, /) -> bool: ... method isExecutable (line 3744) | def isExecutable(self, /) -> bool: ... method isFile (line 3745) | def isFile(self, /) -> bool: ... method isHidden (line 3746) | def isHidden(self, /) -> bool: ... method isJunction (line 3747) | def isJunction(self, /) -> bool: ... method isNativePath (line 3748) | def isNativePath(self, /) -> bool: ... method isOther (line 3749) | def isOther(self, /) -> bool: ... method isReadable (line 3750) | def isReadable(self, /) -> bool: ... method isRelative (line 3751) | def isRelative(self, /) -> bool: ... method isRoot (line 3752) | def isRoot(self, /) -> bool: ... method isShortcut (line 3753) | def isShortcut(self, /) -> bool: ... method isSymLink (line 3754) | def isSymLink(self, /) -> bool: ... method isSymbolicLink (line 3755) | def isSymbolicLink(self, /) -> bool: ... method isWritable (line 3756) | def isWritable(self, /) -> bool: ... method junctionTarget (line 3757) | def junctionTarget(self, /) -> str: ... method lastModified (line 3759) | def lastModified(self, tz: QTimeZone | QTimeZone.Initialization, /) ->... method lastModified (line 3761) | def lastModified(self, /) -> QDateTime: ... method lastRead (line 3763) | def lastRead(self, tz: QTimeZone | QTimeZone.Initialization, /) -> QDa... method lastRead (line 3765) | def lastRead(self, /) -> QDateTime: ... method makeAbsolute (line 3766) | def makeAbsolute(self, /) -> bool: ... method metadataChangeTime (line 3768) | def metadataChangeTime(self, tz: QTimeZone | QTimeZone.Initialization,... method metadataChangeTime (line 3770) | def metadataChangeTime(self, /) -> QDateTime: ... method owner (line 3771) | def owner(self, /) -> str: ... method ownerId (line 3772) | def ownerId(self, /) -> int: ... method path (line 3773) | def path(self, /) -> str: ... method permission (line 3774) | def permission(self, permissions: QFileDevice.Permission, /) -> bool: ... method permissions (line 3775) | def permissions(self, /) -> QFileDevice.Permission: ... method readSymLink (line 3776) | def readSymLink(self, /) -> str: ... method refresh (line 3777) | def refresh(self, /) -> None: ... method setCaching (line 3778) | def setCaching(self, on: bool, /) -> None: ... method setFile (line 3780) | def setFile(self, dir: QDir, file: str, /) -> None: ... method setFile (line 3782) | def setFile(self, file: QFileDevice, /) -> None: ... method setFile (line 3784) | def setFile(self, file: str | bytes | os.PathLike[str], /) -> None: ... method size (line 3785) | def size(self, /) -> int: ... method stat (line 3786) | def stat(self, /) -> None: ... method suffix (line 3787) | def suffix(self, /) -> str: ... method swap (line 3788) | def swap(self, other: QFileInfo, /) -> None: ... method symLinkTarget (line 3789) | def symLinkTarget(self, /) -> str: ... method __copy__ (line 3790) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3791) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3792) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3793) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3794) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3795) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3796) | def __ne__(self, other: object) -> bool: ... class QFileSelector (line 3798) | class QFileSelector(QObject): method __init__ (line 3800) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method allSelectors (line 3801) | def allSelectors(self, /) -> List[str]: ... method extraSelectors (line 3802) | def extraSelectors(self, /) -> List[str]: ... method select (line 3804) | def select(self, filePath: str, /) -> str: ... # type: ignore[overloa... method select (line 3806) | def select(self, filePath: QUrl | str, /) -> QUrl: ... method setExtraSelectors (line 3807) | def setExtraSelectors(self, list: typing.Iterable[str], /) -> None: ... class QFileSystemWatcher (line 3809) | class QFileSystemWatcher(QObject): method __init__ (line 3814) | def __init__(self, paths: typing.Iterable[str], /, parent: QObject | N... method __init__ (line 3816) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method addPath (line 3817) | def addPath(self, file: str, /) -> bool: ... method addPaths (line 3818) | def addPaths(self, files: typing.Iterable[str], /) -> List[str]: ... method directories (line 3819) | def directories(self, /) -> List[str]: ... method files (line 3820) | def files(self, /) -> List[str]: ... method removePath (line 3821) | def removePath(self, file: str, /) -> bool: ... method removePaths (line 3822) | def removePaths(self, files: typing.Iterable[str], /) -> List[str]: ... class QFutureInterfaceBase (line 3824) | class QFutureInterfaceBase(shiboken6.Object): class CancelMode (line 3825) | class CancelMode(enum.Enum): class ContinuationType (line 3829) | class ContinuationType(enum.Enum): class State (line 3835) | class State(enum.Enum): method __init__ (line 3846) | def __init__(self, other: QFutureInterfaceBase, /) -> None: ... method __init__ (line 3848) | def __init__(self, /, initialState: QFutureInterfaceBase.State = ...) ... method cancel (line 3850) | def cancel(self, mode: QFutureInterfaceBase.CancelMode, /) -> None: ... method cancel (line 3852) | def cancel(self, /) -> None: ... method cancelAndFinish (line 3853) | def cancelAndFinish(self, /) -> None: ... method cancelChain (line 3855) | def cancelChain(self, mode: QFutureInterfaceBase.CancelMode, /) -> Non... method cancelChain (line 3857) | def cancelChain(self, /) -> None: ... method cleanContinuation (line 3858) | def cleanContinuation(self, /) -> None: ... method derefT (line 3859) | def derefT(self, /) -> bool: ... method expectedResultCount (line 3860) | def expectedResultCount(self, /) -> int: ... method hasException (line 3861) | def hasException(self, /) -> bool: ... method isCanceled (line 3862) | def isCanceled(self, /) -> bool: ... method isChainCanceled (line 3863) | def isChainCanceled(self, /) -> bool: ... method isFinished (line 3864) | def isFinished(self, /) -> bool: ... method isPaused (line 3865) | def isPaused(self, /) -> bool: ... method isProgressUpdateNeeded (line 3866) | def isProgressUpdateNeeded(self, /) -> bool: ... method isResultReadyAt (line 3867) | def isResultReadyAt(self, index: int, /) -> bool: ... method isRunning (line 3868) | def isRunning(self, /) -> bool: ... method isRunningOrPending (line 3869) | def isRunningOrPending(self, /) -> bool: ... method isStarted (line 3870) | def isStarted(self, /) -> bool: ... method isSuspended (line 3871) | def isSuspended(self, /) -> bool: ... method isSuspending (line 3872) | def isSuspending(self, /) -> bool: ... method isThrottled (line 3873) | def isThrottled(self, /) -> bool: ... method isValid (line 3874) | def isValid(self, /) -> bool: ... method launchAsync (line 3875) | def launchAsync(self, /) -> bool: ... method loadState (line 3876) | def loadState(self, /) -> int: ... method mutex (line 3877) | def mutex(self, /) -> QMutex: ... method progressMaximum (line 3878) | def progressMaximum(self, /) -> int: ... method progressMinimum (line 3879) | def progressMinimum(self, /) -> int: ... method progressText (line 3880) | def progressText(self, /) -> str: ... method progressValue (line 3881) | def progressValue(self, /) -> int: ... method queryState (line 3882) | def queryState(self, state: QFutureInterfaceBase.State, /) -> bool: ... method refT (line 3883) | def refT(self, /) -> bool: ... method reportCanceled (line 3884) | def reportCanceled(self, /) -> None: ... method reportFinished (line 3885) | def reportFinished(self, /) -> None: ... method reportResultsReady (line 3886) | def reportResultsReady(self, beginIndex: int, endIndex: int, /) -> Non... method reportStarted (line 3887) | def reportStarted(self, /) -> None: ... method reportSuspended (line 3888) | def reportSuspended(self, /) -> None: ... method reset (line 3889) | def reset(self, /) -> None: ... method resultCount (line 3890) | def resultCount(self, /) -> int: ... method rethrowPossibleException (line 3891) | def rethrowPossibleException(self, /) -> None: ... method runContinuation (line 3892) | def runContinuation(self, /) -> None: ... method setExpectedResultCount (line 3893) | def setExpectedResultCount(self, resultCount: int, /) -> None: ... method setFilterMode (line 3894) | def setFilterMode(self, enable: bool, /) -> None: ... method setLaunchAsync (line 3895) | def setLaunchAsync(self, value: bool, /) -> None: ... method setPaused (line 3896) | def setPaused(self, paused: bool, /) -> None: ... method setProgressRange (line 3897) | def setProgressRange(self, minimum: int, maximum: int, /) -> None: ... method setProgressValue (line 3898) | def setProgressValue(self, progressValue: int, /) -> None: ... method setProgressValueAndText (line 3899) | def setProgressValueAndText(self, progressValue: int, progressText: st... method setRunnable (line 3900) | def setRunnable(self, runnable: QRunnable, /) -> None: ... method setSuspended (line 3901) | def setSuspended(self, suspend: bool, /) -> None: ... method setThreadPool (line 3902) | def setThreadPool(self, pool: QThreadPool, /) -> None: ... method setThrottled (line 3903) | def setThrottled(self, enable: bool, /) -> None: ... method suspendIfRequested (line 3904) | def suspendIfRequested(self, /) -> None: ... method swap (line 3905) | def swap(self, other: QFutureInterfaceBase, /) -> None: ... method threadPool (line 3906) | def threadPool(self, /) -> QThreadPool: ... method togglePaused (line 3907) | def togglePaused(self, /) -> None: ... method toggleSuspended (line 3908) | def toggleSuspended(self, /) -> None: ... method waitForFinished (line 3909) | def waitForFinished(self, /) -> None: ... method waitForNextResult (line 3910) | def waitForNextResult(self, /) -> bool: ... method waitForResult (line 3911) | def waitForResult(self, resultIndex: int, /) -> None: ... method waitForResume (line 3912) | def waitForResume(self, /) -> None: ... method __eq__ (line 3913) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3914) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3915) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3916) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3917) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3918) | def __ne__(self, other: object) -> bool: ... class QGenericArgument (line 3920) | class QGenericArgument(shiboken6.Object): method __init__ (line 3922) | def __init__(self, /, aName: bytes | bytearray | memoryview | None = .... method __init__ (line 3924) | def __init__(self, QGenericArgument: QGenericArgument, /) -> None: ... method data (line 3925) | def data(self, /) -> int: ... method name (line 3926) | def name(self, /) -> bytes | bytearray | memoryview: ... method __copy__ (line 3927) | def __copy__(self, /) -> typing_extensions.Self: ... class QGenericArgumentHolder (line 3929) | class QGenericArgumentHolder(shiboken6.Object): method __init__ (line 3931) | def __init__(self, type: QMetaType | QMetaType.Type, aData: int, /) ->... method __init__ (line 3933) | def __init__(self, arg__1: QGenericArgumentHolder, /) -> None: ... method __init__ (line 3935) | def __init__(self, /) -> None: ... method data (line 3936) | def data(self, /) -> int: ... method metaType (line 3937) | def metaType(self, /) -> QMetaType: ... method toGenericArgument (line 3938) | def toGenericArgument(self, /) -> QGenericArgument: ... method __copy__ (line 3939) | def __copy__(self, /) -> typing_extensions.Self: ... class QGenericReturnArgument (line 3941) | class QGenericReturnArgument(QGenericArgument): method __init__ (line 3943) | def __init__(self, /, aName: bytes | bytearray | memoryview | None = .... method __init__ (line 3945) | def __init__(self, QGenericReturnArgument: QGenericReturnArgument, /) ... method __copy__ (line 3946) | def __copy__(self, /) -> typing_extensions.Self: ... class QGenericReturnArgumentHolder (line 3948) | class QGenericReturnArgumentHolder(shiboken6.Object): method __init__ (line 3950) | def __init__(self, type: QMetaType | QMetaType.Type, aData: int, /) ->... method __init__ (line 3952) | def __init__(self, arg__1: QGenericReturnArgumentHolder, /) -> None: ... method data (line 3953) | def data(self, /) -> int: ... method metaType (line 3954) | def metaType(self, /) -> QMetaType: ... method toGenericReturnArgument (line 3955) | def toGenericReturnArgument(self, /) -> QGenericReturnArgument: ... method __copy__ (line 3956) | def __copy__(self, /) -> typing_extensions.Self: ... class QHashSeed (line 3958) | class QHashSeed(shiboken6.Object): method __init__ (line 3960) | def __init__(self, QHashSeed: QHashSeed, /) -> None: ... method __init__ (line 3962) | def __init__(self, /, d: int | None = ...) -> None: ... method globalSeed (line 3964) | def globalSeed() -> QHashSeed: ... method resetRandomGlobalSeed (line 3966) | def resetRandomGlobalSeed() -> None: ... method setDeterministicGlobalSeed (line 3968) | def setDeterministicGlobalSeed() -> None: ... method __copy__ (line 3969) | def __copy__(self, /) -> typing_extensions.Self: ... class QIODevice (line 3971) | class QIODevice(QObject, QIODeviceBase): method __init__ (line 3980) | def __init__(self, parent: QObject | None, /, destroyed: typing.Callab... method __init__ (line 3982) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method atEnd (line 3983) | def atEnd(self, /) -> bool: ... method bytesAvailable (line 3984) | def bytesAvailable(self, /) -> int: ... method bytesToWrite (line 3985) | def bytesToWrite(self, /) -> int: ... method canReadLine (line 3986) | def canReadLine(self, /) -> bool: ... method close (line 3987) | def close(self, /) -> None: ... method commitTransaction (line 3988) | def commitTransaction(self, /) -> None: ... method currentReadChannel (line 3989) | def currentReadChannel(self, /) -> int: ... method currentWriteChannel (line 3990) | def currentWriteChannel(self, /) -> int: ... method errorString (line 3991) | def errorString(self, /) -> str: ... method getChar (line 3992) | def getChar(self, /) -> bool: ... method isOpen (line 3993) | def isOpen(self, /) -> bool: ... method isReadable (line 3994) | def isReadable(self, /) -> bool: ... method isSequential (line 3995) | def isSequential(self, /) -> bool: ... method isTextModeEnabled (line 3996) | def isTextModeEnabled(self, /) -> bool: ... method isTransactionStarted (line 3997) | def isTransactionStarted(self, /) -> bool: ... method isWritable (line 3998) | def isWritable(self, /) -> bool: ... method open (line 3999) | def open(self, mode: QIODeviceBase.OpenModeFlag, /) -> bool: ... method openMode (line 4000) | def openMode(self, /) -> QIODeviceBase.OpenModeFlag: ... method peek (line 4002) | def peek(self, buffer: bytearray, maxlen: int, /) -> int: ... method peek (line 4004) | def peek(self, maxlen: int, /) -> QByteArray: ... method pos (line 4005) | def pos(self, /) -> int: ... method putChar (line 4006) | def putChar(self, c: int, /) -> bool: ... method read (line 4008) | def read(self, buffer: bytearray, maxlen: int, /) -> int: ... method read (line 4010) | def read(self, maxlen: int, /) -> QByteArray: ... method readAll (line 4011) | def readAll(self, /) -> QByteArray: ... method readChannelCount (line 4012) | def readChannelCount(self, /) -> int: ... method readData (line 4013) | def readData(self, maxlen: int, /) -> typing.Any: ... method readLine (line 4015) | def readLine(self, buffer: bytearray, maxlen: int, /) -> int: ... method readLine (line 4017) | def readLine(self, /, maxlen: int | None = ...) -> QByteArray: ... method readLineData (line 4018) | def readLineData(self, maxlen: int, /) -> typing.Any: ... method readLineInto (line 4019) | def readLineInto(self, result: QByteArray | bytes | bytearray | memory... method reset (line 4020) | def reset(self, /) -> bool: ... method rollbackTransaction (line 4021) | def rollbackTransaction(self, /) -> None: ... method seek (line 4022) | def seek(self, pos: int, /) -> bool: ... method setCurrentReadChannel (line 4023) | def setCurrentReadChannel(self, channel: int, /) -> None: ... method setCurrentWriteChannel (line 4024) | def setCurrentWriteChannel(self, channel: int, /) -> None: ... method setErrorString (line 4025) | def setErrorString(self, errorString: str, /) -> None: ... method setOpenMode (line 4026) | def setOpenMode(self, openMode: QIODeviceBase.OpenModeFlag, /) -> None... method setTextModeEnabled (line 4027) | def setTextModeEnabled(self, enabled: bool, /) -> None: ... method size (line 4028) | def size(self, /) -> int: ... method skip (line 4029) | def skip(self, maxSize: int, /) -> int: ... method skipData (line 4030) | def skipData(self, maxSize: int, /) -> int: ... method startTransaction (line 4031) | def startTransaction(self, /) -> None: ... method ungetChar (line 4032) | def ungetChar(self, c: int, /) -> None: ... method waitForBytesWritten (line 4033) | def waitForBytesWritten(self, msecs: int, /) -> bool: ... method waitForReadyRead (line 4034) | def waitForReadyRead(self, msecs: int, /) -> bool: ... method write (line 4035) | def write(self, data: QByteArray | bytes | bytearray | memoryview, /) ... method writeChannelCount (line 4036) | def writeChannelCount(self, /) -> int: ... method writeData (line 4037) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QIODeviceBase (line 4039) | class QIODeviceBase(shiboken6.Object): class OpenModeFlag (line 4040) | class OpenModeFlag(enum.Flag): method __init__ (line 4051) | def __init__(self, /) -> None: ... class QIOPipe (line 4053) | class QIOPipe(QObject): method __init__ (line 4055) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method end1 (line 4056) | def end1(self, /) -> QIODevice: ... method end2 (line 4057) | def end2(self, /) -> QIODevice: ... method open (line 4058) | def open(self, mode: QIODeviceBase.OpenModeFlag, /) -> bool: ... class QIdentityProxyModel (line 4060) | class QIdentityProxyModel(QAbstractProxyModel): method __init__ (line 4062) | def __init__(self, /, parent: QObject | None = ..., columnsAboutToBeIn... method columnCount (line 4063) | def columnCount(self, /, parent: QModelIndex | QPersistentModelIndex =... method dropMimeData (line 4064) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method handleSourceDataChanges (line 4065) | def handleSourceDataChanges(self, /) -> bool: ... method handleSourceLayoutChanges (line 4066) | def handleSourceLayoutChanges(self, /) -> bool: ... method headerData (line 4067) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method index (line 4068) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method insertColumns (line 4069) | def insertColumns(self, column: int, count: int, /, parent: QModelInde... method insertRows (line 4070) | def insertRows(self, row: int, count: int, /, parent: QModelIndex | QP... method mapFromSource (line 4071) | def mapFromSource(self, sourceIndex: QModelIndex | QPersistentModelInd... method mapSelectionFromSource (line 4072) | def mapSelectionFromSource(self, selection: QItemSelection, /) -> QIte... method mapSelectionToSource (line 4073) | def mapSelectionToSource(self, selection: QItemSelection, /) -> QItemS... method mapToSource (line 4074) | def mapToSource(self, proxyIndex: QModelIndex | QPersistentModelIndex,... method match (line 4075) | def match(self, start: QModelIndex | QPersistentModelIndex, role: Qt.I... method moveColumns (line 4076) | def moveColumns(self, sourceParent: QModelIndex | QPersistentModelInde... method moveRows (line 4077) | def moveRows(self, sourceParent: QModelIndex | QPersistentModelIndex, ... method parent (line 4079) | def parent(self, child: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 4081) | def parent(self, /) -> QObject: ... method removeColumns (line 4082) | def removeColumns(self, column: int, count: int, /, parent: QModelInde... method removeRows (line 4083) | def removeRows(self, row: int, count: int, /, parent: QModelIndex | QP... method rowCount (line 4084) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setHandleSourceDataChanges (line 4085) | def setHandleSourceDataChanges(self, arg__1: bool, /) -> None: ... method setHandleSourceLayoutChanges (line 4086) | def setHandleSourceLayoutChanges(self, arg__1: bool, /) -> None: ... method setSourceModel (line 4087) | def setSourceModel(self, sourceModel: QAbstractItemModel, /) -> None: ... method sibling (line 4088) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... class QIntList (line 4090) | class QIntList: method __init__ (line 4092) | def __init__(self, *args, **kwargs) -> None: ... method append (line 4093) | def append(self, *args, **kwargs): ... method capacity (line 4094) | def capacity(self, *args, **kwargs): ... method clear (line 4095) | def clear(self, *args, **kwargs): ... method constData (line 4096) | def constData(self, *args, **kwargs): ... method data (line 4097) | def data(self, *args, **kwargs): ... method pop_back (line 4098) | def pop_back(self, *args, **kwargs): ... method pop_front (line 4099) | def pop_front(self, *args, **kwargs): ... method prepend (line 4100) | def prepend(self, *args, **kwargs): ... method push_back (line 4101) | def push_back(self, *args, **kwargs): ... method push_front (line 4102) | def push_front(self, *args, **kwargs): ... method removeFirst (line 4103) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 4104) | def removeLast(self, *args, **kwargs): ... method reserve (line 4105) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 4106) | def __delitem__(self, other) -> None: ... method __getitem__ (line 4107) | def __getitem__(self, index): ... method __len__ (line 4108) | def __len__(self) -> int: ... method __setitem__ (line 4109) | def __setitem__(self, index, object) -> None: ... class QItemSelection (line 4111) | class QItemSelection(shiboken6.Object): method __init__ (line 4113) | def __init__(self, topLeft: QModelIndex | QPersistentModelIndex, botto... method __init__ (line 4115) | def __init__(self, QItemSelection: QItemSelection, /) -> None: ... method __init__ (line 4117) | def __init__(self, /) -> None: ... method append (line 4119) | def append(self, l: typing.Iterable[QItemSelectionRange], /) -> None: ... method append (line 4121) | def append(self, arg__1: QItemSelectionRange, /) -> None: ... method at (line 4122) | def at(self, i: int, /) -> QItemSelectionRange: ... method back (line 4123) | def back(self, /) -> QItemSelectionRange: ... method capacity (line 4124) | def capacity(self, /) -> int: ... method clear (line 4125) | def clear(self, /) -> None: ... method constData (line 4126) | def constData(self, /) -> QItemSelectionRange: ... method constFirst (line 4127) | def constFirst(self, /) -> QItemSelectionRange: ... method constLast (line 4128) | def constLast(self, /) -> QItemSelectionRange: ... method contains (line 4129) | def contains(self, index: QModelIndex | QPersistentModelIndex, /) -> b... method count (line 4130) | def count(self, /) -> int: ... method data (line 4131) | def data(self, /) -> QItemSelectionRange: ... method empty (line 4132) | def empty(self, /) -> bool: ... method first (line 4134) | def first(self, n: int, /) -> List[QItemSelectionRange]: ... method first (line 4136) | def first(self, /) -> QItemSelectionRange: ... method fromList (line 4138) | def fromList(list: typing.Iterable[QItemSelectionRange], /) -> List[QI... method fromVector (line 4140) | def fromVector(vector: typing.Iterable[QItemSelectionRange], /) -> Lis... method front (line 4141) | def front(self, /) -> QItemSelectionRange: ... method indexes (line 4142) | def indexes(self, /) -> list[QModelIndex]: ... method insert (line 4143) | def insert(self, arg__1: int, arg__2: QItemSelectionRange, /) -> None:... method isEmpty (line 4144) | def isEmpty(self, /) -> bool: ... method isSharedWith (line 4145) | def isSharedWith(self, other: typing.Iterable[QItemSelectionRange], /)... method last (line 4147) | def last(self, n: int, /) -> List[QItemSelectionRange]: ... method last (line 4149) | def last(self, /) -> QItemSelectionRange: ... method length (line 4150) | def length(self, /) -> int: ... method maxSize (line 4152) | def maxSize() -> int: ... method max_size (line 4153) | def max_size(self, /) -> int: ... method merge (line 4154) | def merge(self, other: QItemSelection, command: QItemSelectionModel.Se... method mid (line 4155) | def mid(self, pos: int, /, len: int = ...) -> List[QItemSelectionRange... method move (line 4156) | def move(self, from_: int, to: int, /) -> None: ... method pop_back (line 4157) | def pop_back(self, /) -> None: ... method pop_front (line 4158) | def pop_front(self, /) -> None: ... method prepend (line 4159) | def prepend(self, arg__1: QItemSelectionRange, /) -> None: ... method push_back (line 4160) | def push_back(self, arg__1: QItemSelectionRange, /) -> None: ... method push_front (line 4161) | def push_front(self, arg__1: QItemSelectionRange, /) -> None: ... method remove (line 4162) | def remove(self, i: int, /, n: int = ...) -> None: ... method removeAll (line 4163) | def removeAll(self, arg__1: QItemSelectionRange, /) -> None: ... method removeAt (line 4164) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 4165) | def removeFirst(self, /) -> None: ... method removeLast (line 4166) | def removeLast(self, /) -> None: ... method removeOne (line 4167) | def removeOne(self, arg__1: QItemSelectionRange, /) -> None: ... method reserve (line 4168) | def reserve(self, size: int, /) -> None: ... method resize (line 4169) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 4170) | def resizeForOverwrite(self, size: int, /) -> None: ... method select (line 4171) | def select(self, topLeft: QModelIndex | QPersistentModelIndex, bottomR... method shrink_to_fit (line 4172) | def shrink_to_fit(self, /) -> None: ... method size (line 4173) | def size(self, /) -> int: ... method sliced (line 4175) | def sliced(self, pos: int, n: int, /) -> List[QItemSelectionRange]: ... method sliced (line 4177) | def sliced(self, pos: int, /) -> List[QItemSelectionRange]: ... method split (line 4179) | def split(range: QItemSelectionRange, other: QItemSelectionRange, resu... method squeeze (line 4180) | def squeeze(self, /) -> None: ... method swap (line 4181) | def swap(self, other: typing.Iterable[QItemSelectionRange], /) -> None... method swapItemsAt (line 4182) | def swapItemsAt(self, i: int, j: int, /) -> None: ... method takeAt (line 4183) | def takeAt(self, i: int, /) -> QItemSelectionRange: ... method toList (line 4184) | def toList(self, /) -> List[QItemSelectionRange]: ... method toVector (line 4185) | def toVector(self, /) -> List[QItemSelectionRange]: ... method value (line 4186) | def value(self, i: int, /) -> QItemSelectionRange: ... method __add__ (line 4187) | def __add__(self, arg__1: QItemSelection, /) -> QItemSelection: ... method __copy__ (line 4188) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 4189) | def __delitem__(self, other) -> None: ... method __eq__ (line 4190) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4191) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 4192) | def __getitem__(self, index): ... method __gt__ (line 4193) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 4194) | def __iadd__(self, l: typing.Iterable[QItemSelectionRange], /) -> List... method __le__ (line 4195) | def __le__(self, other: object) -> bool: ... method __len__ (line 4196) | def __len__(self) -> int: ... method __lshift__ (line 4197) | def __lshift__(self, l: typing.Iterable[QItemSelectionRange], /) -> Li... method __lt__ (line 4198) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4199) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 4200) | def __radd__(self, other): ... method __rlshift__ (line 4201) | def __rlshift__(self, other): ... method __setitem__ (line 4202) | def __setitem__(self, index, object) -> None: ... class QItemSelectionModel (line 4204) | class QItemSelectionModel(QObject): class SelectionFlag (line 4205) | class SelectionFlag(enum.Flag): method __init__ (line 4224) | def __init__(self, model: QAbstractItemModel, parent: QObject | None, ... method __init__ (line 4226) | def __init__(self, /, model: QAbstractItemModel | None = ..., *, hasSe... method clear (line 4227) | def clear(self, /) -> None: ... method clearCurrentIndex (line 4228) | def clearCurrentIndex(self, /) -> None: ... method clearSelection (line 4229) | def clearSelection(self, /) -> None: ... method columnIntersectsSelection (line 4230) | def columnIntersectsSelection(self, column: int, /, parent: QModelInde... method currentIndex (line 4231) | def currentIndex(self, /) -> QModelIndex: ... method emitSelectionChanged (line 4232) | def emitSelectionChanged(self, newSelection: QItemSelection, oldSelect... method hasSelection (line 4233) | def hasSelection(self, /) -> bool: ... method isColumnSelected (line 4234) | def isColumnSelected(self, column: int, /, parent: QModelIndex | QPers... method isRowSelected (line 4235) | def isRowSelected(self, row: int, /, parent: QModelIndex | QPersistent... method isSelected (line 4236) | def isSelected(self, index: QModelIndex | QPersistentModelIndex, /) ->... method model (line 4237) | def model(self, /) -> QAbstractItemModel: ... method reset (line 4238) | def reset(self, /) -> None: ... method rowIntersectsSelection (line 4239) | def rowIntersectsSelection(self, row: int, /, parent: QModelIndex | QP... method select (line 4241) | def select(self, selection: QItemSelection, command: QItemSelectionMod... method select (line 4243) | def select(self, index: QModelIndex | QPersistentModelIndex, command: ... method selectedColumns (line 4244) | def selectedColumns(self, /, row: int | None = ...) -> list[QModelInde... method selectedIndexes (line 4245) | def selectedIndexes(self, /) -> list[QModelIndex]: ... method selectedRows (line 4246) | def selectedRows(self, /, column: int | None = ...) -> list[QModelInde... method selection (line 4247) | def selection(self, /) -> QItemSelection: ... method setCurrentIndex (line 4248) | def setCurrentIndex(self, index: QModelIndex | QPersistentModelIndex, ... method setModel (line 4249) | def setModel(self, model: QAbstractItemModel | None, /) -> None: ... class QItemSelectionRange (line 4251) | class QItemSelectionRange(shiboken6.Object): method __init__ (line 4253) | def __init__(self, topL: QModelIndex | QPersistentModelIndex, bottomR:... method __init__ (line 4255) | def __init__(self, index: QModelIndex | QPersistentModelIndex, /) -> N... method __init__ (line 4257) | def __init__(self, QItemSelectionRange: QItemSelectionRange, /) -> Non... method __init__ (line 4259) | def __init__(self, /) -> None: ... method bottom (line 4260) | def bottom(self, /) -> int: ... method bottomRight (line 4261) | def bottomRight(self, /) -> QPersistentModelIndex: ... method contains (line 4263) | def contains(self, row: int, column: int, parentIndex: QModelIndex | Q... method contains (line 4265) | def contains(self, index: QModelIndex | QPersistentModelIndex, /) -> b... method height (line 4266) | def height(self, /) -> int: ... method indexes (line 4267) | def indexes(self, /) -> list[QModelIndex]: ... method intersected (line 4268) | def intersected(self, other: QItemSelectionRange, /) -> QItemSelection... method intersects (line 4269) | def intersects(self, other: QItemSelectionRange, /) -> bool: ... method isEmpty (line 4270) | def isEmpty(self, /) -> bool: ... method isValid (line 4271) | def isValid(self, /) -> bool: ... method left (line 4272) | def left(self, /) -> int: ... method model (line 4273) | def model(self, /) -> QAbstractItemModel: ... method parent (line 4274) | def parent(self, /) -> QModelIndex: ... method right (line 4275) | def right(self, /) -> int: ... method swap (line 4276) | def swap(self, other: QItemSelectionRange, /) -> None: ... method top (line 4277) | def top(self, /) -> int: ... method topLeft (line 4278) | def topLeft(self, /) -> QPersistentModelIndex: ... method width (line 4279) | def width(self, /) -> int: ... method __copy__ (line 4280) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4281) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4282) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4283) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4284) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4285) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4286) | def __ne__(self, other: object) -> bool: ... class QJsonArray (line 4288) | class QJsonArray(shiboken6.Object): method __init__ (line 4290) | def __init__(self, other: QJsonArray, /) -> None: ... method __init__ (line 4292) | def __init__(self, /) -> None: ... method append (line 4293) | def append(self, value: Union[QJsonValue, QJsonValue.Type, str, bool, ... method at (line 4294) | def at(self, i: int, /) -> QJsonValue: ... method contains (line 4295) | def contains(self, element: Union[QJsonValue, QJsonValue.Type, str, bo... method count (line 4296) | def count(self, /) -> int: ... method empty (line 4297) | def empty(self, /) -> bool: ... method first (line 4298) | def first(self, /) -> QJsonValue: ... method fromStringList (line 4300) | def fromStringList(list: typing.Iterable[str], /) -> QJsonArray: ... method fromVariantList (line 4302) | def fromVariantList(list: typing.Iterable[typing.Any], /) -> QJsonArra... method insert (line 4303) | def insert(self, i: int, value: Union[QJsonValue, QJsonValue.Type, str... method isEmpty (line 4304) | def isEmpty(self, /) -> bool: ... method last (line 4305) | def last(self, /) -> QJsonValue: ... method pop_back (line 4306) | def pop_back(self, /) -> None: ... method pop_front (line 4307) | def pop_front(self, /) -> None: ... method prepend (line 4308) | def prepend(self, value: Union[QJsonValue, QJsonValue.Type, str, bool,... method push_back (line 4309) | def push_back(self, t: Union[QJsonValue, QJsonValue.Type, str, bool, Q... method push_front (line 4310) | def push_front(self, t: Union[QJsonValue, QJsonValue.Type, str, bool, ... method removeAt (line 4311) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 4312) | def removeFirst(self, /) -> None: ... method removeLast (line 4313) | def removeLast(self, /) -> None: ... method replace (line 4314) | def replace(self, i: int, value: Union[QJsonValue, QJsonValue.Type, st... method size (line 4315) | def size(self, /) -> int: ... method swap (line 4316) | def swap(self, other: QJsonArray, /) -> None: ... method takeAt (line 4317) | def takeAt(self, i: int, /) -> QJsonValue: ... method toVariantList (line 4318) | def toVariantList(self, /) -> List[Any]: ... method __add__ (line 4319) | def __add__(self, v: Union[QJsonValue, QJsonValue.Type, str, bool, QJs... method __copy__ (line 4320) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4321) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4322) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4323) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4324) | def __hash__(self, /) -> int: ... method __iadd__ (line 4325) | def __iadd__(self, v: Union[QJsonValue, QJsonValue.Type, str, bool, QJ... method __le__ (line 4326) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4327) | def __lshift__(self, v: Union[QJsonValue, QJsonValue.Type, str, bool, ... method __lt__ (line 4328) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4329) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 4330) | def __radd__(self, other): ... method __rlshift__ (line 4331) | def __rlshift__(self, other): ... class QJsonDocument (line 4333) | class QJsonDocument(shiboken6.Object): class JsonFormat (line 4334) | class JsonFormat(enum.Enum): method __init__ (line 4338) | def __init__(self, other: QJsonDocument, /) -> None: ... method __init__ (line 4340) | def __init__(self, object: Dict[str, QJsonValue], /) -> None: ... method __init__ (line 4342) | def __init__(self, array: QJsonArray, /) -> None: ... method __init__ (line 4344) | def __init__(self, /) -> None: ... method array (line 4345) | def array(self, /) -> QJsonArray: ... method fromJson (line 4347) | def fromJson(json: QByteArray | bytes | bytearray | memoryview, /, err... method fromVariant (line 4349) | def fromVariant(variant: Any, /) -> QJsonDocument: ... method isArray (line 4350) | def isArray(self, /) -> bool: ... method isEmpty (line 4351) | def isEmpty(self, /) -> bool: ... method isNull (line 4352) | def isNull(self, /) -> bool: ... method isObject (line 4353) | def isObject(self, /) -> bool: ... method object (line 4354) | def object(self, /) -> Dict[str, QJsonValue]: ... method setArray (line 4355) | def setArray(self, array: QJsonArray, /) -> None: ... method setObject (line 4356) | def setObject(self, object: Dict[str, QJsonValue], /) -> None: ... method swap (line 4357) | def swap(self, other: QJsonDocument, /) -> None: ... method toJson (line 4358) | def toJson(self, /, format: QJsonDocument.JsonFormat = ...) -> QByteAr... method toVariant (line 4359) | def toVariant(self, /) -> Any: ... method __bool__ (line 4360) | def __bool__(self) -> bool: ... method __copy__ (line 4361) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4362) | def __eq__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ge__ (line 4363) | def __ge__(self, other: object) -> bool: ... # type: ignore[valid-type] method __gt__ (line 4364) | def __gt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __le__ (line 4365) | def __le__(self, other: object) -> bool: ... # type: ignore[valid-type] method __lt__ (line 4366) | def __lt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ne__ (line 4367) | def __ne__(self, other: object) -> bool: ... # type: ignore[valid-type] class QJsonParseError (line 4369) | class QJsonParseError(shiboken6.Object): class ParseError (line 4370) | class ParseError(enum.Enum): method __init__ (line 4388) | def __init__(self, QJsonParseError: QJsonParseError, /) -> None: ... method __init__ (line 4390) | def __init__(self, /) -> None: ... method errorString (line 4391) | def errorString(self, /) -> str: ... method __copy__ (line 4392) | def __copy__(self, /) -> typing_extensions.Self: ... class QJsonValue (line 4394) | class QJsonValue(shiboken6.Object): class Type (line 4395) | class Type(enum.Enum): method __init__ (line 4404) | def __init__(self, v: int, /) -> None: ... method __init__ (line 4406) | def __init__(self, s: str, /) -> None: ... method __init__ (line 4408) | def __init__(self, s: bytes | bytearray | memoryview, /) -> None: ... method __init__ (line 4410) | def __init__(self, other: QJsonValue, /) -> None: ... method __init__ (line 4412) | def __init__(self, o: Dict[str, QJsonValue], /) -> None: ... method __init__ (line 4414) | def __init__(self, n: float, /) -> None: ... method __init__ (line 4416) | def __init__(self, b: bool, /) -> None: ... # type: ignore[overload-c... method __init__ (line 4418) | def __init__(self, a: QJsonArray, /) -> None: ... method __init__ (line 4420) | def __init__(self, /, arg__1: QJsonValue.Type = ...) -> None: ... method fromJson (line 4422) | def fromJson(json: QByteArray | bytes | bytearray | memoryview, /, err... method fromVariant (line 4424) | def fromVariant(variant: Any, /) -> QJsonValue: ... method isArray (line 4425) | def isArray(self, /) -> bool: ... method isBool (line 4426) | def isBool(self, /) -> bool: ... method isDouble (line 4427) | def isDouble(self, /) -> bool: ... method isNull (line 4428) | def isNull(self, /) -> bool: ... method isObject (line 4429) | def isObject(self, /) -> bool: ... method isString (line 4430) | def isString(self, /) -> bool: ... method isUndefined (line 4431) | def isUndefined(self, /) -> bool: ... method swap (line 4432) | def swap(self, other: Union[QJsonValue, QJsonValue.Type, str, bool, QJ... method toArray (line 4434) | def toArray(self, defaultValue: QJsonArray, /) -> QJsonArray: ... method toArray (line 4436) | def toArray(self, /) -> QJsonArray: ... method toBool (line 4437) | def toBool(self, /, defaultValue: bool = ...) -> bool: ... method toDouble (line 4438) | def toDouble(self, /, defaultValue: float | None = ...) -> float: ... method toInt (line 4439) | def toInt(self, /, defaultValue: int | None = ...) -> int: ... method toInteger (line 4440) | def toInteger(self, /, defaultValue: int | None = ...) -> int: ... method toJson (line 4441) | def toJson(self, /, format: QJsonDocument.JsonFormat = ...) -> QByteAr... method toObject (line 4443) | def toObject(self, defaultValue: Dict[str, QJsonValue], /) -> Dict[str... method toObject (line 4445) | def toObject(self, /) -> Dict[str, QJsonValue]: ... method toString (line 4447) | def toString(self, defaultValue: str, /) -> str: ... method toString (line 4449) | def toString(self, /) -> str: ... method toStringView (line 4450) | def toStringView(self, /, defaultValue: str = ...) -> str: ... method toVariant (line 4451) | def toVariant(self, /) -> Any: ... method type (line 4452) | def type(self, /) -> QJsonValue.Type: ... method __bool__ (line 4453) | def __bool__(self) -> bool: ... method __copy__ (line 4454) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4455) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4456) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4457) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4458) | def __hash__(self, /) -> int: ... method __le__ (line 4459) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4460) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4461) | def __ne__(self, other: object) -> bool: ... class QKeyCombination (line 4463) | class QKeyCombination(shiboken6.Object): method __init__ (line 4465) | def __init__(self, modifiers: Qt.Modifier, key: Qt.Key, /) -> None: ... method __init__ (line 4467) | def __init__(self, modifiers: Qt.KeyboardModifier, /, key: Qt.Key = ..... method __init__ (line 4469) | def __init__(self, arg__1: QKeyCombination, /) -> None: ... method __init__ (line 4471) | def __init__(self, /, key: Qt.Key = ...) -> None: ... method fromCombined (line 4473) | def fromCombined(combined: int, /) -> QKeyCombination: ... method key (line 4474) | def key(self, /) -> Qt.Key: ... method keyboardModifiers (line 4475) | def keyboardModifiers(self, /) -> Qt.KeyboardModifier: ... method toCombined (line 4476) | def toCombined(self, /) -> int: ... method __copy__ (line 4477) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4478) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4479) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4480) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4481) | def __hash__(self, /) -> int: ... method __le__ (line 4482) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4483) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4484) | def __ne__(self, other: object) -> bool: ... class QLibrary (line 4486) | class QLibrary(QObject): class LoadHint (line 4487) | class LoadHint(enum.Flag): method __init__ (line 4495) | def __init__(self, fileName: str, version: str, /, parent: QObject | N... method __init__ (line 4497) | def __init__(self, fileName: str, verNum: int, /, parent: QObject | No... method __init__ (line 4499) | def __init__(self, fileName: str, /, parent: QObject | None = ..., *, ... method __init__ (line 4501) | def __init__(self, /, parent: QObject | None = ..., *, fileName: str |... method errorString (line 4502) | def errorString(self, /) -> str: ... method fileName (line 4503) | def fileName(self, /) -> str: ... method isLibrary (line 4505) | def isLibrary(fileName: str, /) -> bool: ... method isLoaded (line 4506) | def isLoaded(self, /) -> bool: ... method load (line 4507) | def load(self, /) -> bool: ... method loadHints (line 4508) | def loadHints(self, /) -> QLibrary.LoadHint: ... method resolve (line 4510) | def resolve(self) -> typing.Any: ... method setFileName (line 4511) | def setFileName(self, fileName: str, /) -> None: ... method setFileNameAndVersion (line 4513) | def setFileNameAndVersion(self, fileName: str, version: str, /) -> Non... method setFileNameAndVersion (line 4515) | def setFileNameAndVersion(self, fileName: str, verNum: int, /) -> None... method setLoadHints (line 4516) | def setLoadHints(self, hints: QLibrary.LoadHint, /) -> None: ... method unload (line 4517) | def unload(self, /) -> bool: ... class QLibraryInfo (line 4519) | class QLibraryInfo(shiboken6.Object): class LibraryPath (line 4520) | class LibraryPath(enum.Enum): method __init__ (line 4536) | def __init__(self, *args, **kwargs) -> None: ... method build (line 4538) | def build() -> bytes | bytearray | memoryview: ... method isDebugBuild (line 4540) | def isDebugBuild() -> bool: ... method isSharedBuild (line 4542) | def isSharedBuild() -> bool: ... method location (line 4544) | def location(location: QLibraryInfo.LibraryPath, /) -> str: ... method path (line 4546) | def path(p: QLibraryInfo.LibraryPath, /) -> str: ... method paths (line 4548) | def paths(p: QLibraryInfo.LibraryPath, /) -> List[str]: ... method platformPluginArguments (line 4550) | def platformPluginArguments(platformName: str, /) -> List[str]: ... method version (line 4552) | def version() -> QVersionNumber: ... class QLine (line 4554) | class QLine(shiboken6.Object): method __init__ (line 4556) | def __init__(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method __init__ (line 4558) | def __init__(self, pt1: QPoint, pt2: QPoint, /) -> None: ... method __init__ (line 4560) | def __init__(self, QLine: QLine, /) -> None: ... method __init__ (line 4562) | def __init__(self, /) -> None: ... method center (line 4563) | def center(self, /) -> QPoint: ... method dx (line 4564) | def dx(self, /) -> int: ... method dy (line 4565) | def dy(self, /) -> int: ... method isNull (line 4566) | def isNull(self, /) -> bool: ... method p1 (line 4567) | def p1(self, /) -> QPoint: ... method p2 (line 4568) | def p2(self, /) -> QPoint: ... method setLine (line 4569) | def setLine(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method setP1 (line 4570) | def setP1(self, p1: QPoint, /) -> None: ... method setP2 (line 4571) | def setP2(self, p2: QPoint, /) -> None: ... method setPoints (line 4572) | def setPoints(self, p1: QPoint, p2: QPoint, /) -> None: ... method toLineF (line 4573) | def toLineF(self, /) -> QLineF: ... method toTuple (line 4574) | def toTuple(self, /) -> Tuple[int, int, int, int]: ... method translate (line 4576) | def translate(self, dx: int, dy: int, /) -> None: ... method translate (line 4578) | def translate(self, p: QPoint, /) -> None: ... method translated (line 4580) | def translated(self, dx: int, dy: int, /) -> QLine: ... method translated (line 4582) | def translated(self, p: QPoint, /) -> QLine: ... method x1 (line 4583) | def x1(self, /) -> int: ... method x2 (line 4584) | def x2(self, /) -> int: ... method y1 (line 4585) | def y1(self, /) -> int: ... method y2 (line 4586) | def y2(self, /) -> int: ... method __bool__ (line 4587) | def __bool__(self) -> bool: ... method __copy__ (line 4588) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4589) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4590) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4591) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4592) | def __hash__(self, /) -> int: ... method __le__ (line 4593) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4594) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4595) | def __ne__(self, other: object) -> bool: ... class QLineF (line 4597) | class QLineF(shiboken6.Object): class IntersectionType (line 4598) | class IntersectionType(enum.Enum): method __init__ (line 4603) | def __init__(self, x1: float, y1: float, x2: float, y2: float, /) -> N... method __init__ (line 4605) | def __init__(self, pt1: QPointF | QPoint, pt2: QPointF | QPoint, /) ->... method __init__ (line 4607) | def __init__(self, line: QLine, /) -> None: ... method __init__ (line 4609) | def __init__(self, QLineF: QLineF, /) -> None: ... method __init__ (line 4611) | def __init__(self, /) -> None: ... method angle (line 4612) | def angle(self, /) -> float: ... method angleTo (line 4613) | def angleTo(self, l: QLineF | QLine, /) -> float: ... method center (line 4614) | def center(self, /) -> QPointF: ... method dx (line 4615) | def dx(self, /) -> float: ... method dy (line 4616) | def dy(self, /) -> float: ... method fromPolar (line 4618) | def fromPolar(length: float, angle: float, /) -> QLineF: ... method intersects (line 4619) | def intersects(self, l: QLineF | QLine, /) -> Tuple[QLineF.Intersectio... method isNull (line 4620) | def isNull(self, /) -> bool: ... method length (line 4621) | def length(self, /) -> float: ... method normalVector (line 4622) | def normalVector(self, /) -> QLineF: ... method p1 (line 4623) | def p1(self, /) -> QPointF: ... method p2 (line 4624) | def p2(self, /) -> QPointF: ... method pointAt (line 4625) | def pointAt(self, t: float, /) -> QPointF: ... method setAngle (line 4626) | def setAngle(self, angle: float, /) -> None: ... method setLength (line 4627) | def setLength(self, len: float, /) -> None: ... method setLine (line 4628) | def setLine(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method setP1 (line 4629) | def setP1(self, p1: QPointF | QPoint, /) -> None: ... method setP2 (line 4630) | def setP2(self, p2: QPointF | QPoint, /) -> None: ... method setPoints (line 4631) | def setPoints(self, p1: QPointF | QPoint, p2: QPointF | QPoint, /) -> ... method toLine (line 4632) | def toLine(self, /) -> QLine: ... method toTuple (line 4633) | def toTuple(self, /) -> Tuple[float, float, float, float]: ... method translate (line 4635) | def translate(self, dx: float, dy: float, /) -> None: ... method translate (line 4637) | def translate(self, p: QPointF | QPoint, /) -> None: ... method translated (line 4639) | def translated(self, dx: float, dy: float, /) -> QLineF: ... method translated (line 4641) | def translated(self, p: QPointF | QPoint, /) -> QLineF: ... method unitVector (line 4642) | def unitVector(self, /) -> QLineF: ... method x1 (line 4643) | def x1(self, /) -> float: ... method x2 (line 4644) | def x2(self, /) -> float: ... method y1 (line 4645) | def y1(self, /) -> float: ... method y2 (line 4646) | def y2(self, /) -> float: ... method __bool__ (line 4647) | def __bool__(self) -> bool: ... method __copy__ (line 4648) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4649) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4650) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4651) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4652) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4653) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4654) | def __ne__(self, other: object) -> bool: ... class QLocale (line 4656) | class QLocale(shiboken6.Object): class Country (line 4657) | class Country(enum.Enum): class CurrencySymbolFormat (line 4947) | class CurrencySymbolFormat(enum.Enum): class DataSizeFormat (line 4952) | class DataSizeFormat(enum.Flag): class FloatingPointPrecisionOption (line 4959) | class FloatingPointPrecisionOption(enum.IntEnum): class FormatType (line 4962) | class FormatType(enum.Enum): class Language (line 4967) | class Language(enum.Enum): class LanguageCodeType (line 5336) | class LanguageCodeType(enum.IntFlag): class MeasurementSystem (line 5348) | class MeasurementSystem(enum.Enum): class NumberOption (line 5354) | class NumberOption(enum.Flag): class QuotationStyle (line 5363) | class QuotationStyle(enum.Enum): class Script (line 5367) | class Script(enum.Enum): class TagSeparator (line 5518) | class TagSeparator(enum.Enum): method __init__ (line 5523) | def __init__(self, language: QLocale.Language, /, script: QLocale.Scri... method __init__ (line 5525) | def __init__(self, language: QLocale.Language, territory: QLocale.Coun... method __init__ (line 5527) | def __init__(self, other: QLocale, /) -> None: ... method __init__ (line 5529) | def __init__(self, name: str, /) -> None: ... method __init__ (line 5531) | def __init__(self, /) -> None: ... method amText (line 5532) | def amText(self, /) -> str: ... method bcp47Name (line 5533) | def bcp47Name(self, /, separator: QLocale.TagSeparator = ...) -> str: ... method c (line 5535) | def c() -> QLocale: ... method codeToCountry (line 5537) | def codeToCountry(countryCode: str, /) -> QLocale.Country: ... method codeToLanguage (line 5539) | def codeToLanguage(languageCode: str, /, codeTypes: QLocale.LanguageCo... method codeToScript (line 5541) | def codeToScript(scriptCode: str, /) -> QLocale.Script: ... method codeToTerritory (line 5543) | def codeToTerritory(territoryCode: str, /) -> QLocale.Country: ... method collation (line 5544) | def collation(self, /) -> QLocale: ... method countriesForLanguage (line 5546) | def countriesForLanguage(lang: QLocale.Language, /) -> List[QLocale.Co... method country (line 5547) | def country(self, /) -> QLocale.Country: ... method countryToCode (line 5549) | def countryToCode(country: QLocale.Country, /) -> str: ... method countryToString (line 5551) | def countryToString(country: QLocale.Country, /) -> str: ... method createSeparatedList (line 5552) | def createSeparatedList(self, strl: typing.Iterable[str], /) -> str: ... method currencySymbol (line 5553) | def currencySymbol(self, /, arg__1: QLocale.CurrencySymbolFormat = ...... method dateFormat (line 5554) | def dateFormat(self, /, format: QLocale.FormatType = ...) -> str: ... method dateTimeFormat (line 5555) | def dateTimeFormat(self, /, format: QLocale.FormatType = ...) -> str: ... method dayName (line 5556) | def dayName(self, arg__1: int, /, format: QLocale.FormatType = ...) ->... method decimalPoint (line 5557) | def decimalPoint(self, /) -> str: ... method exponential (line 5558) | def exponential(self, /) -> str: ... method firstDayOfWeek (line 5559) | def firstDayOfWeek(self, /) -> Qt.DayOfWeek: ... method formattedDataSize (line 5560) | def formattedDataSize(self, bytes: int, /, precision: int = ..., forma... method groupSeparator (line 5561) | def groupSeparator(self, /) -> str: ... method language (line 5562) | def language(self, /) -> QLocale.Language: ... method languageToCode (line 5564) | def languageToCode(language: QLocale.Language, /, codeTypes: QLocale.L... method languageToString (line 5566) | def languageToString(language: QLocale.Language, /) -> str: ... method matchingLocales (line 5568) | def matchingLocales(language: QLocale.Language, script: QLocale.Script... method measurementSystem (line 5569) | def measurementSystem(self, /) -> QLocale.MeasurementSystem: ... method monthName (line 5570) | def monthName(self, arg__1: int, /, format: QLocale.FormatType = ...) ... method name (line 5571) | def name(self, /, separator: QLocale.TagSeparator = ...) -> str: ... method nativeCountryName (line 5572) | def nativeCountryName(self, /) -> str: ... method nativeLanguageName (line 5573) | def nativeLanguageName(self, /) -> str: ... method nativeTerritoryName (line 5574) | def nativeTerritoryName(self, /) -> str: ... method negativeSign (line 5575) | def negativeSign(self, /) -> str: ... method numberOptions (line 5576) | def numberOptions(self, /) -> QLocale.NumberOption: ... method percent (line 5577) | def percent(self, /) -> str: ... method pmText (line 5578) | def pmText(self, /) -> str: ... method positiveSign (line 5579) | def positiveSign(self, /) -> str: ... method quoteString (line 5580) | def quoteString(self, str: str, /, style: QLocale.QuotationStyle = ...... method script (line 5581) | def script(self, /) -> QLocale.Script: ... method scriptToCode (line 5583) | def scriptToCode(script: QLocale.Script, /) -> str: ... method scriptToString (line 5585) | def scriptToString(script: QLocale.Script, /) -> str: ... method setDefault (line 5587) | def setDefault(locale: QLocale | QLocale.Language, /) -> None: ... method setNumberOptions (line 5588) | def setNumberOptions(self, options: QLocale.NumberOption, /) -> None: ... method standaloneDayName (line 5589) | def standaloneDayName(self, arg__1: int, /, format: QLocale.FormatType... method standaloneMonthName (line 5590) | def standaloneMonthName(self, arg__1: int, /, format: QLocale.FormatTy... method swap (line 5591) | def swap(self, other: QLocale | QLocale.Language, /) -> None: ... method system (line 5593) | def system() -> QLocale: ... method territory (line 5594) | def territory(self, /) -> QLocale.Country: ... method territoryToCode (line 5596) | def territoryToCode(territory: QLocale.Country, /) -> str: ... method territoryToString (line 5598) | def territoryToString(territory: QLocale.Country, /) -> str: ... method textDirection (line 5599) | def textDirection(self, /) -> Qt.LayoutDirection: ... method timeFormat (line 5600) | def timeFormat(self, /, format: QLocale.FormatType = ...) -> str: ... method toCurrencyString (line 5602) | def toCurrencyString(self, arg__1: float, /, symbol: str = ..., precis... method toCurrencyString (line 5604) | def toCurrencyString(self, arg__1: int, /, symbol: str = ...) -> str: ... method toDate (line 5606) | def toDate(self, string: str, format: QLocale.FormatType, cal: QCalend... method toDate (line 5608) | def toDate(self, string: str, format: str, cal: QCalendar, /, baseYear... method toDate (line 5610) | def toDate(self, string: str, format: str, /, baseYear: int = ...) -> ... method toDate (line 5612) | def toDate(self, string: str, /, format: QLocale.FormatType = ..., bas... method toDateTime (line 5614) | def toDateTime(self, string: str, format: QLocale.FormatType, cal: QCa... method toDateTime (line 5616) | def toDateTime(self, string: str, format: str, cal: QCalendar, /, base... method toDateTime (line 5618) | def toDateTime(self, string: str, format: str, /, baseYear: int = ...)... method toDateTime (line 5620) | def toDateTime(self, string: str, /, format: QLocale.FormatType = ...,... method toDouble (line 5621) | def toDouble(self, s: str, /) -> Tuple[float, bool]: ... method toFloat (line 5622) | def toFloat(self, s: str, /) -> Tuple[float, bool]: ... method toInt (line 5623) | def toInt(self, s: str, /) -> Tuple[int, bool]: ... method toLong (line 5624) | def toLong(self, s: str, /) -> Tuple[int, bool]: ... method toLongLong (line 5625) | def toLongLong(self, s: str, /) -> Tuple[int, bool]: ... method toLower (line 5626) | def toLower(self, str: str, /) -> str: ... method toShort (line 5627) | def toShort(self, s: str, /) -> Tuple[int, bool]: ... method toString (line 5629) | def toString(self, f: float, /, format: str = ..., precision: int = ..... method toString (line 5631) | def toString(self, dateTime: QDateTime | datetime.datetime, format: QL... method toString (line 5633) | def toString(self, date: QDate | datetime.date, format: QLocale.Format... method toString (line 5635) | def toString(self, time: QTime, format: str, /) -> str: ... method toString (line 5637) | def toString(self, time: QTime, /, format: QLocale.FormatType = ...) -... method toString (line 5639) | def toString(self, dateTime: QDateTime | datetime.datetime, format: st... method toString (line 5641) | def toString(self, dateTime: QDateTime | datetime.datetime, /, format:... method toString (line 5643) | def toString(self, date: QDate | datetime.date, format: str, /) -> str... method toString (line 5645) | def toString(self, date: QDate | datetime.date, /, format: QLocale.For... method toString (line 5647) | def toString(self, i: int, /) -> str: ... # type: ignore[overload-can... method toTime (line 5649) | def toTime(self, string: str, format: str, /) -> QTime: ... method toTime (line 5651) | def toTime(self, string: str, /, format: QLocale.FormatType = ...) -> ... method toUInt (line 5652) | def toUInt(self, s: str, /) -> Tuple[int, bool]: ... method toULong (line 5653) | def toULong(self, s: str, /) -> Tuple[int, bool]: ... method toULongLong (line 5654) | def toULongLong(self, s: str, /) -> Tuple[int, bool]: ... method toUShort (line 5655) | def toUShort(self, s: str, /) -> Tuple[int, bool]: ... method toUpper (line 5656) | def toUpper(self, str: str, /) -> str: ... method uiLanguages (line 5657) | def uiLanguages(self, /, separator: QLocale.TagSeparator = ...) -> Lis... method weekdays (line 5658) | def weekdays(self, /) -> List[Qt.DayOfWeek]: ... method zeroDigit (line 5659) | def zeroDigit(self, /) -> str: ... method __copy__ (line 5660) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5661) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5662) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5663) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5664) | def __hash__(self, /) -> int: ... method __le__ (line 5665) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5666) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5667) | def __ne__(self, other: object) -> bool: ... class QLocationPermission (line 5669) | class QLocationPermission(shiboken6.Object): class Accuracy (line 5670) | class Accuracy(enum.Enum): class Availability (line 5674) | class Availability(enum.Enum): method __init__ (line 5678) | def __init__(self, other: QLocationPermission, /) -> None: ... method __init__ (line 5680) | def __init__(self, /) -> None: ... method accuracy (line 5681) | def accuracy(self, /) -> QLocationPermission.Accuracy: ... method availability (line 5682) | def availability(self, /) -> QLocationPermission.Availability: ... method setAccuracy (line 5683) | def setAccuracy(self, accuracy: QLocationPermission.Accuracy, /) -> No... method setAvailability (line 5684) | def setAvailability(self, availability: QLocationPermission.Availabili... method swap (line 5685) | def swap(self, other: QLocationPermission, /) -> None: ... method __copy__ (line 5686) | def __copy__(self, /) -> typing_extensions.Self: ... class QLockFile (line 5688) | class QLockFile(shiboken6.Object): class LockError (line 5689) | class LockError(enum.Enum): method __init__ (line 5694) | def __init__(self, fileName: str, /) -> None: ... method error (line 5695) | def error(self, /) -> QLockFile.LockError: ... method fileName (line 5696) | def fileName(self, /) -> str: ... method getLockInfo (line 5697) | def getLockInfo(self, /) -> Tuple[int, str, str]: ... method isLocked (line 5698) | def isLocked(self, /) -> bool: ... method lock (line 5699) | def lock(self, /) -> bool: ... method removeStaleLockFile (line 5700) | def removeStaleLockFile(self, /) -> bool: ... method setStaleLockTime (line 5701) | def setStaleLockTime(self, arg__1: int, /) -> None: ... method staleLockTime (line 5702) | def staleLockTime(self, /) -> int: ... method staleLockTimeAsDuration (line 5703) | def staleLockTimeAsDuration(self, /) -> int: ... method tryLock (line 5704) | def tryLock(self, timeout: int, /) -> bool: ... method unlock (line 5705) | def unlock(self, /) -> None: ... class QLoggingCategory (line 5707) | class QLoggingCategory(shiboken6.Object): method __init__ (line 5708) | def __init__(self, category: bytes | bytearray | memoryview, /, severi... method categoryName (line 5709) | def categoryName(self, /) -> bytes | bytearray | memoryview: ... method defaultCategory (line 5711) | def defaultCategory() -> QLoggingCategory: ... method isCriticalEnabled (line 5712) | def isCriticalEnabled(self, /) -> bool: ... method isDebugEnabled (line 5713) | def isDebugEnabled(self, /) -> bool: ... method isEnabled (line 5714) | def isEnabled(self, type: QtMsgType, /) -> bool: ... method isInfoEnabled (line 5715) | def isInfoEnabled(self, /) -> bool: ... method isWarningEnabled (line 5716) | def isWarningEnabled(self, /) -> bool: ... method setEnabled (line 5717) | def setEnabled(self, type: QtMsgType, enable: bool, /) -> None: ... method setFilterRules (line 5719) | def setFilterRules(rules: str, /) -> None: ... method __call__ (line 5720) | def __call__(self, /) -> QLoggingCategory: ... class QMargins (line 5722) | class QMargins(shiboken6.Object): method __init__ (line 5724) | def __init__(self, left: int, top: int, right: int, bottom: int, /) ->... method __init__ (line 5726) | def __init__(self, QMargins: QMargins, /) -> None: ... method __init__ (line 5728) | def __init__(self, /) -> None: ... method bottom (line 5729) | def bottom(self, /) -> int: ... method isNull (line 5730) | def isNull(self, /) -> bool: ... method left (line 5731) | def left(self, /) -> int: ... method right (line 5732) | def right(self, /) -> int: ... method setBottom (line 5733) | def setBottom(self, bottom: int, /) -> None: ... method setLeft (line 5734) | def setLeft(self, left: int, /) -> None: ... method setRight (line 5735) | def setRight(self, right: int, /) -> None: ... method setTop (line 5736) | def setTop(self, top: int, /) -> None: ... method toMarginsF (line 5737) | def toMarginsF(self, /) -> QMarginsF: ... method top (line 5738) | def top(self, /) -> int: ... method __add__ (line 5740) | def __add__(self, m2: QMargins, /) -> QMargins: ... method __add__ (line 5742) | def __add__(self, lhs: int, /) -> QMargins: ... method __bool__ (line 5743) | def __bool__(self) -> bool: ... method __copy__ (line 5744) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5745) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5746) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5747) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5749) | def __iadd__(self, margins: QMargins, /) -> QMargins: ... method __iadd__ (line 5751) | def __iadd__(self, arg__1: int, /) -> QMargins: ... method __imul__ (line 5753) | def __imul__(self, arg__1: int, /) -> QMargins: ... method __imul__ (line 5755) | def __imul__(self, arg__1: float, /) -> QMargins: ... method __isub__ (line 5757) | def __isub__(self, margins: QMargins, /) -> QMargins: ... method __isub__ (line 5759) | def __isub__(self, arg__1: int, /) -> QMargins: ... method __le__ (line 5760) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5761) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5763) | def __mul__(self, factor: int, /) -> QMargins: ... method __mul__ (line 5765) | def __mul__(self, factor: float, /) -> QMargins: ... method __ne__ (line 5766) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 5767) | def __neg__(self, /) -> QMargins: ... method __or__ (line 5768) | def __or__(self, m2: QMargins, /) -> QMargins: ... method __pos__ (line 5769) | def __pos__(self, /) -> QMargins: ... method __radd__ (line 5770) | def __radd__(self, other): ... method __rmul__ (line 5771) | def __rmul__(self, other): ... method __ror__ (line 5772) | def __ror__(self, other): ... method __rsub__ (line 5773) | def __rsub__(self, other): ... method __rtruediv__ (line 5774) | def __rtruediv__(self, other): ... method __sub__ (line 5776) | def __sub__(self, rhs: int, /) -> QMargins: ... method __sub__ (line 5778) | def __sub__(self, m2: QMargins, /) -> QMargins: ... method __truediv__ (line 5779) | def __truediv__(self, other): ... class QMarginsF (line 5781) | class QMarginsF(shiboken6.Object): method __init__ (line 5783) | def __init__(self, left: float, top: float, right: float, bottom: floa... method __init__ (line 5785) | def __init__(self, margins: QMargins, /) -> None: ... method __init__ (line 5787) | def __init__(self, QMarginsF: QMarginsF, /) -> None: ... method __init__ (line 5789) | def __init__(self, /) -> None: ... method bottom (line 5790) | def bottom(self, /) -> float: ... method isNull (line 5791) | def isNull(self, /) -> bool: ... method left (line 5792) | def left(self, /) -> float: ... method right (line 5793) | def right(self, /) -> float: ... method setBottom (line 5794) | def setBottom(self, abottom: float, /) -> None: ... method setLeft (line 5795) | def setLeft(self, aleft: float, /) -> None: ... method setRight (line 5796) | def setRight(self, aright: float, /) -> None: ... method setTop (line 5797) | def setTop(self, atop: float, /) -> None: ... method toMargins (line 5798) | def toMargins(self, /) -> QMargins: ... method top (line 5799) | def top(self, /) -> float: ... method __add__ (line 5801) | def __add__(self, rhs: QMarginsF | QMargins, /) -> QMarginsF: ... method __add__ (line 5803) | def __add__(self, lhs: float, /) -> QMarginsF: ... method __bool__ (line 5804) | def __bool__(self) -> bool: ... method __copy__ (line 5805) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5806) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5807) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5808) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5810) | def __iadd__(self, margins: QMarginsF | QMargins, /) -> QMarginsF: ... method __iadd__ (line 5812) | def __iadd__(self, addend: float, /) -> QMarginsF: ... method __imul__ (line 5813) | def __imul__(self, factor: float, /) -> QMarginsF: ... method __isub__ (line 5815) | def __isub__(self, subtrahend: float, /) -> QMarginsF: ... method __isub__ (line 5817) | def __isub__(self, margins: QMarginsF | QMargins, /) -> QMarginsF: ... method __le__ (line 5818) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5819) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5820) | def __mul__(self, lhs: float, /) -> QMarginsF: ... method __ne__ (line 5821) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 5822) | def __neg__(self, /) -> QMarginsF: ... method __or__ (line 5823) | def __or__(self, m2: QMarginsF | QMargins, /) -> QMarginsF: ... method __pos__ (line 5824) | def __pos__(self, /) -> QMarginsF: ... method __radd__ (line 5825) | def __radd__(self, other): ... method __rmul__ (line 5826) | def __rmul__(self, other): ... method __ror__ (line 5827) | def __ror__(self, other): ... method __rsub__ (line 5828) | def __rsub__(self, other): ... method __rtruediv__ (line 5829) | def __rtruediv__(self, other): ... method __sub__ (line 5831) | def __sub__(self, rhs: QMarginsF | QMargins, /) -> QMarginsF: ... method __sub__ (line 5833) | def __sub__(self, rhs: float, /) -> QMarginsF: ... method __truediv__ (line 5834) | def __truediv__(self, other): ... class QMessageAuthenticationCode (line 5836) | class QMessageAuthenticationCode(shiboken6.Object): method __init__ (line 5837) | def __init__(self, method: QCryptographicHash.Algorithm, /, key: QByte... method addData (line 5839) | def addData(self, data: bytes | bytearray | memoryview, length: int, /... method addData (line 5841) | def addData(self, device: QIODevice, /) -> bool: ... method addData (line 5843) | def addData(self, data: QByteArray | bytes | bytearray | memoryview, /... method hash (line 5845) | def hash(message: QByteArray | bytes | bytearray | memoryview, key: QB... method reset (line 5846) | def reset(self, /) -> None: ... method result (line 5847) | def result(self, /) -> QByteArray: ... method resultView (line 5848) | def resultView(self, /) -> QByteArray: ... method setKey (line 5849) | def setKey(self, key: QByteArray | bytes | bytearray | memoryview, /) ... method swap (line 5850) | def swap(self, other: QMessageAuthenticationCode, /) -> None: ... class QMessageLogContext (line 5852) | class QMessageLogContext(shiboken6.Object): method __init__ (line 5860) | def __init__(self, fileName: bytes | bytearray | memoryview, lineNumbe... method __init__ (line 5862) | def __init__(self, /) -> None: ... class QMessageLogger (line 5864) | class QMessageLogger(shiboken6.Object): method __init__ (line 5866) | def __init__(self, file: bytes | bytearray | memoryview, line: int, fu... method __init__ (line 5868) | def __init__(self, file: bytes | bytearray | memoryview, line: int, fu... method __init__ (line 5870) | def __init__(self, /) -> None: ... method critical (line 5872) | def critical(self, cat: QLoggingCategory, msg: str, /) -> None: ... method critical (line 5874) | def critical(self, msg: str, /) -> None: ... method debug (line 5876) | def debug(self, cat: QLoggingCategory, msg: str, /) -> None: ... method debug (line 5878) | def debug(self, msg: str, /) -> None: ... method fatal (line 5880) | def fatal(self, cat: QLoggingCategory, msg: str, /) -> None: ... method fatal (line 5882) | def fatal(self, msg: str, /) -> None: ... method info (line 5884) | def info(self, cat: QLoggingCategory, msg: str, /) -> None: ... method info (line 5886) | def info(self, msg: str, /) -> None: ... method noDebug (line 5887) | def noDebug(self, arg__1: str, /) -> None: ... method warning (line 5889) | def warning(self, cat: QLoggingCategory, msg: str, /) -> None: ... method warning (line 5891) | def warning(self, msg: str, /) -> None: ... class QMetaClassInfo (line 5893) | class QMetaClassInfo(shiboken6.Object): method __init__ (line 5895) | def __init__(self, QMetaClassInfo: QMetaClassInfo, /) -> None: ... method __init__ (line 5897) | def __init__(self, /) -> None: ... method name (line 5898) | def name(self, /) -> bytes | bytearray | memoryview: ... method value (line 5899) | def value(self, /) -> bytes | bytearray | memoryview: ... method __copy__ (line 5900) | def __copy__(self, /) -> typing_extensions.Self: ... class QMetaEnum (line 5902) | class QMetaEnum(shiboken6.Object): method __init__ (line 5904) | def __init__(self, QMetaEnum: QMetaEnum, /) -> None: ... method __init__ (line 5906) | def __init__(self, /) -> None: ... method enumName (line 5907) | def enumName(self, /) -> bytes | bytearray | memoryview: ... method is64Bit (line 5908) | def is64Bit(self, /) -> bool: ... method isFlag (line 5909) | def isFlag(self, /) -> bool: ... method isScoped (line 5910) | def isScoped(self, /) -> bool: ... method isValid (line 5911) | def isValid(self, /) -> bool: ... method key (line 5912) | def key(self, index: int, /) -> bytes | bytearray | memoryview: ... method keyCount (line 5913) | def keyCount(self, /) -> int: ... method keyToValue (line 5914) | def keyToValue(self, key: bytes | bytearray | memoryview, /) -> Tuple:... method keysToValue (line 5915) | def keysToValue(self, keys: bytes | bytearray | memoryview, /) -> Tupl... method metaType (line 5916) | def metaType(self, /) -> QMetaType: ... method name (line 5917) | def name(self, /) -> bytes | bytearray | memoryview: ... method scope (line 5918) | def scope(self, /) -> bytes | bytearray | memoryview: ... method value (line 5919) | def value(self, index: int, /) -> int: ... method valueToKey (line 5920) | def valueToKey(self, value: int, /) -> bytes | bytearray | memoryview:... method valueToKeys (line 5921) | def valueToKeys(self, value: int, /) -> QByteArray: ... method __copy__ (line 5922) | def __copy__(self, /) -> typing_extensions.Self: ... class QMetaMethod (line 5924) | class QMetaMethod(shiboken6.Object): class Access (line 5925) | class Access(enum.Enum): class MethodType (line 5930) | class MethodType(enum.Enum): method __init__ (line 5936) | def __init__(self, QMetaMethod: QMetaMethod, /) -> None: ... method __init__ (line 5938) | def __init__(self, /) -> None: ... method access (line 5939) | def access(self, /) -> QMetaMethod.Access: ... method enclosingMetaObject (line 5940) | def enclosingMetaObject(self, /) -> QMetaObject: ... method fromSignal (line 5942) | def fromSignal(signal: SignalInstance, /) -> QMetaMethod: ... method invoke (line 5944) | def invoke(self, object: QObject, type: Qt.ConnectionType, ret: QGener... method invoke (line 5946) | def invoke(self, object: QObject, connectionType: Qt.ConnectionType, r... method invoke (line 5948) | def invoke(self, object: QObject, type: Qt.ConnectionType, /, val0: QG... method invoke (line 5950) | def invoke(self, object: QObject, returnValue: QGenericReturnArgument,... method invoke (line 5952) | def invoke(self, object: QObject, ret: QGenericReturnArgumentHolder, /... method invoke (line 5954) | def invoke(self, object: QObject, connectionType: Qt.ConnectionType, v... method invoke (line 5956) | def invoke(self, object: QObject, val0: QGenericArgument, /, val1: QGe... method invoke (line 5958) | def invoke(self, object: QObject, /, val0: QGenericArgumentHolder = ..... method invokeOnGadget (line 5960) | def invokeOnGadget(self, gadget: int, returnValue: QGenericReturnArgum... method invokeOnGadget (line 5962) | def invokeOnGadget(self, gadget: int, val0: QGenericArgument, /, val1:... method isConst (line 5963) | def isConst(self, /) -> bool: ... method isValid (line 5964) | def isValid(self, /) -> bool: ... method methodIndex (line 5965) | def methodIndex(self, /) -> int: ... method methodSignature (line 5966) | def methodSignature(self, /) -> QByteArray: ... method methodType (line 5967) | def methodType(self, /) -> QMetaMethod.MethodType: ... method name (line 5968) | def name(self, /) -> QByteArray: ... method nameView (line 5969) | def nameView(self, /) -> QByteArray: ... method parameterCount (line 5970) | def parameterCount(self, /) -> int: ... method parameterMetaType (line 5971) | def parameterMetaType(self, index: int, /) -> QMetaType: ... method parameterNames (line 5972) | def parameterNames(self, /) -> List[QByteArray]: ... method parameterType (line 5973) | def parameterType(self, index: int, /) -> int: ... method parameterTypeName (line 5974) | def parameterTypeName(self, index: int, /) -> QByteArray: ... method parameterTypes (line 5975) | def parameterTypes(self, /) -> List[QByteArray]: ... method relativeMethodIndex (line 5976) | def relativeMethodIndex(self, /) -> int: ... method returnMetaType (line 5977) | def returnMetaType(self, /) -> QMetaType: ... method returnType (line 5978) | def returnType(self, /) -> int: ... method revision (line 5979) | def revision(self, /) -> int: ... method tag (line 5980) | def tag(self, /) -> bytes | bytearray | memoryview: ... method typeName (line 5981) | def typeName(self, /) -> bytes | bytearray | memoryview: ... method __copy__ (line 5982) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5983) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5984) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5985) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5986) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5987) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5988) | def __ne__(self, other: object) -> bool: ... class QMetaObject (line 5990) | class QMetaObject(shiboken6.Object): class Call (line 5991) | class Call(enum.Enum): class Connection (line 6004) | class Connection(shiboken6.Object): method __init__ (line 6006) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6008) | def __init__(self, /) -> None: ... method swap (line 6009) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6010) | def __bool__(self) -> bool: ... method __copy__ (line 6011) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6098) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6100) | def __init__(self, /) -> None: ... method swap (line 6101) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6102) | def __bool__(self) -> bool: ... method __copy__ (line 6103) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6012) | def __init__(self, /) -> None: ... method cast (line 6013) | def cast(self, obj: QObject, /) -> QObject: ... method checkConnectArgs (line 6016) | def checkConnectArgs(signal: QMetaMethod, method: QMetaMethod, /) -> b... method checkConnectArgs (line 6019) | def checkConnectArgs(signal: bytes | bytearray | memoryview, method: b... method classInfo (line 6020) | def classInfo(self, index: int, /) -> QMetaClassInfo: ... method classInfoCount (line 6021) | def classInfoCount(self, /) -> int: ... method classInfoOffset (line 6022) | def classInfoOffset(self, /) -> int: ... method className (line 6023) | def className(self, /) -> bytes | bytearray | memoryview: ... method connectSlotsByName (line 6025) | def connectSlotsByName(o: QObject, /) -> None: ... method constructor (line 6026) | def constructor(self, index: int, /) -> QMetaMethod: ... method constructorCount (line 6027) | def constructorCount(self, /) -> int: ... method disconnect (line 6029) | def disconnect(sender: QObject, signal_index: int, receiver: QObject, ... method disconnectOne (line 6031) | def disconnectOne(sender: QObject, signal_index: int, receiver: QObjec... method enumerator (line 6032) | def enumerator(self, index: int, /) -> QMetaEnum: ... method enumeratorCount (line 6033) | def enumeratorCount(self, /) -> int: ... method enumeratorOffset (line 6034) | def enumeratorOffset(self, /) -> int: ... method indexOfClassInfo (line 6035) | def indexOfClassInfo(self, name: str, /) -> int: ... method indexOfConstructor (line 6036) | def indexOfConstructor(self, constructor: str, /) -> int: ... method indexOfEnumerator (line 6037) | def indexOfEnumerator(self, name: str, /) -> int: ... method indexOfMethod (line 6038) | def indexOfMethod(self, method: str, /) -> int: ... method indexOfProperty (line 6039) | def indexOfProperty(self, name: str, /) -> int: ... method indexOfSignal (line 6040) | def indexOfSignal(self, signal: str, /) -> int: ... method indexOfSlot (line 6041) | def indexOfSlot(self, slot: str, /) -> int: ... method inherits (line 6042) | def inherits(self, metaObject: QMetaObject, /) -> bool: ... method invokeMethod (line 6045) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6048) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6051) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6054) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6057) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6060) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6063) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6066) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method metaType (line 6067) | def metaType(self, /) -> QMetaType: ... method method (line 6068) | def method(self, index: int, /) -> QMetaMethod: ... method methodCount (line 6069) | def methodCount(self, /) -> int: ... method methodOffset (line 6070) | def methodOffset(self, /) -> int: ... method newInstance (line 6071) | def newInstance(self, val0: QGenericArgument, /, val1: QGenericArgumen... method normalizedSignature (line 6073) | def normalizedSignature(method: bytes | bytearray | memoryview, /) -> ... method normalizedType (line 6075) | def normalizedType(type: bytes | bytearray | memoryview, /) -> QByteAr... method property (line 6076) | def property(self, index: int, /) -> QMetaProperty: ... method propertyCount (line 6077) | def propertyCount(self, /) -> int: ... method propertyOffset (line 6078) | def propertyOffset(self, /) -> int: ... method superClass (line 6079) | def superClass(self, /) -> QMetaObject: ... method userProperty (line 6080) | def userProperty(self, /) -> QMetaProperty: ... class Call (line 6083) | class Call(enum.Enum): class Connection (line 6096) | class Connection(shiboken6.Object): method __init__ (line 6006) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6008) | def __init__(self, /) -> None: ... method swap (line 6009) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6010) | def __bool__(self) -> bool: ... method __copy__ (line 6011) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6098) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6100) | def __init__(self, /) -> None: ... method swap (line 6101) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6102) | def __bool__(self) -> bool: ... method __copy__ (line 6103) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6104) | def __init__(self, /) -> None: ... method cast (line 6105) | def cast(self, obj: QObject, /) -> QObject: ... method checkConnectArgs (line 6108) | def checkConnectArgs(signal: QMetaMethod, method: QMetaMethod, /) -> b... method checkConnectArgs (line 6111) | def checkConnectArgs(signal: bytes | bytearray | memoryview, method: b... method classInfo (line 6112) | def classInfo(self, index: int, /) -> QMetaClassInfo: ... method classInfoCount (line 6113) | def classInfoCount(self, /) -> int: ... method classInfoOffset (line 6114) | def classInfoOffset(self, /) -> int: ... method className (line 6115) | def className(self, /) -> bytes | bytearray | memoryview: ... method connectSlotsByName (line 6117) | def connectSlotsByName(o: QObject, /) -> None: ... method constructor (line 6118) | def constructor(self, index: int, /) -> QMetaMethod: ... method constructorCount (line 6119) | def constructorCount(self, /) -> int: ... method disconnect (line 6121) | def disconnect(sender: QObject, signal_index: int, receiver: QObject, ... method disconnectOne (line 6123) | def disconnectOne(sender: QObject, signal_index: int, receiver: QObjec... method enumerator (line 6124) | def enumerator(self, index: int, /) -> QMetaEnum: ... method enumeratorCount (line 6125) | def enumeratorCount(self, /) -> int: ... method enumeratorOffset (line 6126) | def enumeratorOffset(self, /) -> int: ... method indexOfClassInfo (line 6127) | def indexOfClassInfo(self, name: str, /) -> int: ... method indexOfConstructor (line 6128) | def indexOfConstructor(self, constructor: str, /) -> int: ... method indexOfEnumerator (line 6129) | def indexOfEnumerator(self, name: str, /) -> int: ... method indexOfMethod (line 6130) | def indexOfMethod(self, method: str, /) -> int: ... method indexOfProperty (line 6131) | def indexOfProperty(self, name: str, /) -> int: ... method indexOfSignal (line 6132) | def indexOfSignal(self, signal: str, /) -> int: ... method indexOfSlot (line 6133) | def indexOfSlot(self, slot: str, /) -> int: ... method inherits (line 6134) | def inherits(self, metaObject: QMetaObject, /) -> bool: ... method invokeMethod (line 6137) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6140) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6143) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6146) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6149) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6152) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6155) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6158) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method metaType (line 6159) | def metaType(self, /) -> QMetaType: ... method method (line 6160) | def method(self, index: int, /) -> QMetaMethod: ... method methodCount (line 6161) | def methodCount(self, /) -> int: ... method methodOffset (line 6162) | def methodOffset(self, /) -> int: ... method newInstance (line 6163) | def newInstance(self, val0: QGenericArgument, /, val1: QGenericArgumen... method normalizedSignature (line 6165) | def normalizedSignature(method: bytes | bytearray | memoryview, /) -> ... method normalizedType (line 6167) | def normalizedType(type: bytes | bytearray | memoryview, /) -> QByteAr... method property (line 6168) | def property(self, index: int, /) -> QMetaProperty: ... method propertyCount (line 6169) | def propertyCount(self, /) -> int: ... method propertyOffset (line 6170) | def propertyOffset(self, /) -> int: ... method superClass (line 6171) | def superClass(self, /) -> QMetaObject: ... method userProperty (line 6172) | def userProperty(self, /) -> QMetaProperty: ... class QMetaObject (line 6082) | class QMetaObject(shiboken6.Object): # type: ignore[no-redef] class Call (line 5991) | class Call(enum.Enum): class Connection (line 6004) | class Connection(shiboken6.Object): method __init__ (line 6006) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6008) | def __init__(self, /) -> None: ... method swap (line 6009) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6010) | def __bool__(self) -> bool: ... method __copy__ (line 6011) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6098) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6100) | def __init__(self, /) -> None: ... method swap (line 6101) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6102) | def __bool__(self) -> bool: ... method __copy__ (line 6103) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6012) | def __init__(self, /) -> None: ... method cast (line 6013) | def cast(self, obj: QObject, /) -> QObject: ... method checkConnectArgs (line 6016) | def checkConnectArgs(signal: QMetaMethod, method: QMetaMethod, /) -> b... method checkConnectArgs (line 6019) | def checkConnectArgs(signal: bytes | bytearray | memoryview, method: b... method classInfo (line 6020) | def classInfo(self, index: int, /) -> QMetaClassInfo: ... method classInfoCount (line 6021) | def classInfoCount(self, /) -> int: ... method classInfoOffset (line 6022) | def classInfoOffset(self, /) -> int: ... method className (line 6023) | def className(self, /) -> bytes | bytearray | memoryview: ... method connectSlotsByName (line 6025) | def connectSlotsByName(o: QObject, /) -> None: ... method constructor (line 6026) | def constructor(self, index: int, /) -> QMetaMethod: ... method constructorCount (line 6027) | def constructorCount(self, /) -> int: ... method disconnect (line 6029) | def disconnect(sender: QObject, signal_index: int, receiver: QObject, ... method disconnectOne (line 6031) | def disconnectOne(sender: QObject, signal_index: int, receiver: QObjec... method enumerator (line 6032) | def enumerator(self, index: int, /) -> QMetaEnum: ... method enumeratorCount (line 6033) | def enumeratorCount(self, /) -> int: ... method enumeratorOffset (line 6034) | def enumeratorOffset(self, /) -> int: ... method indexOfClassInfo (line 6035) | def indexOfClassInfo(self, name: str, /) -> int: ... method indexOfConstructor (line 6036) | def indexOfConstructor(self, constructor: str, /) -> int: ... method indexOfEnumerator (line 6037) | def indexOfEnumerator(self, name: str, /) -> int: ... method indexOfMethod (line 6038) | def indexOfMethod(self, method: str, /) -> int: ... method indexOfProperty (line 6039) | def indexOfProperty(self, name: str, /) -> int: ... method indexOfSignal (line 6040) | def indexOfSignal(self, signal: str, /) -> int: ... method indexOfSlot (line 6041) | def indexOfSlot(self, slot: str, /) -> int: ... method inherits (line 6042) | def inherits(self, metaObject: QMetaObject, /) -> bool: ... method invokeMethod (line 6045) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6048) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6051) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6054) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6057) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6060) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6063) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6066) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method metaType (line 6067) | def metaType(self, /) -> QMetaType: ... method method (line 6068) | def method(self, index: int, /) -> QMetaMethod: ... method methodCount (line 6069) | def methodCount(self, /) -> int: ... method methodOffset (line 6070) | def methodOffset(self, /) -> int: ... method newInstance (line 6071) | def newInstance(self, val0: QGenericArgument, /, val1: QGenericArgumen... method normalizedSignature (line 6073) | def normalizedSignature(method: bytes | bytearray | memoryview, /) -> ... method normalizedType (line 6075) | def normalizedType(type: bytes | bytearray | memoryview, /) -> QByteAr... method property (line 6076) | def property(self, index: int, /) -> QMetaProperty: ... method propertyCount (line 6077) | def propertyCount(self, /) -> int: ... method propertyOffset (line 6078) | def propertyOffset(self, /) -> int: ... method superClass (line 6079) | def superClass(self, /) -> QMetaObject: ... method userProperty (line 6080) | def userProperty(self, /) -> QMetaProperty: ... class Call (line 6083) | class Call(enum.Enum): class Connection (line 6096) | class Connection(shiboken6.Object): method __init__ (line 6006) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6008) | def __init__(self, /) -> None: ... method swap (line 6009) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6010) | def __bool__(self) -> bool: ... method __copy__ (line 6011) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6098) | def __init__(self, other: QMetaObject.Connection, /) -> None: ... method __init__ (line 6100) | def __init__(self, /) -> None: ... method swap (line 6101) | def swap(self, other: QMetaObject.Connection, /) -> None: ... method __bool__ (line 6102) | def __bool__(self) -> bool: ... method __copy__ (line 6103) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 6104) | def __init__(self, /) -> None: ... method cast (line 6105) | def cast(self, obj: QObject, /) -> QObject: ... method checkConnectArgs (line 6108) | def checkConnectArgs(signal: QMetaMethod, method: QMetaMethod, /) -> b... method checkConnectArgs (line 6111) | def checkConnectArgs(signal: bytes | bytearray | memoryview, method: b... method classInfo (line 6112) | def classInfo(self, index: int, /) -> QMetaClassInfo: ... method classInfoCount (line 6113) | def classInfoCount(self, /) -> int: ... method classInfoOffset (line 6114) | def classInfoOffset(self, /) -> int: ... method className (line 6115) | def className(self, /) -> bytes | bytearray | memoryview: ... method connectSlotsByName (line 6117) | def connectSlotsByName(o: QObject, /) -> None: ... method constructor (line 6118) | def constructor(self, index: int, /) -> QMetaMethod: ... method constructorCount (line 6119) | def constructorCount(self, /) -> int: ... method disconnect (line 6121) | def disconnect(sender: QObject, signal_index: int, receiver: QObject, ... method disconnectOne (line 6123) | def disconnectOne(sender: QObject, signal_index: int, receiver: QObjec... method enumerator (line 6124) | def enumerator(self, index: int, /) -> QMetaEnum: ... method enumeratorCount (line 6125) | def enumeratorCount(self, /) -> int: ... method enumeratorOffset (line 6126) | def enumeratorOffset(self, /) -> int: ... method indexOfClassInfo (line 6127) | def indexOfClassInfo(self, name: str, /) -> int: ... method indexOfConstructor (line 6128) | def indexOfConstructor(self, constructor: str, /) -> int: ... method indexOfEnumerator (line 6129) | def indexOfEnumerator(self, name: str, /) -> int: ... method indexOfMethod (line 6130) | def indexOfMethod(self, method: str, /) -> int: ... method indexOfProperty (line 6131) | def indexOfProperty(self, name: str, /) -> int: ... method indexOfSignal (line 6132) | def indexOfSignal(self, signal: str, /) -> int: ... method indexOfSlot (line 6133) | def indexOfSlot(self, slot: str, /) -> int: ... method inherits (line 6134) | def inherits(self, metaObject: QMetaObject, /) -> bool: ... method invokeMethod (line 6137) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6140) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6143) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6146) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6149) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6152) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method invokeMethod (line 6155) | def invokeMethod(object: QObject, member: bytes | bytearray | memoryvi... method invokeMethod (line 6158) | def invokeMethod(obj: QObject, member: bytes | bytearray | memoryview,... method metaType (line 6159) | def metaType(self, /) -> QMetaType: ... method method (line 6160) | def method(self, index: int, /) -> QMetaMethod: ... method methodCount (line 6161) | def methodCount(self, /) -> int: ... method methodOffset (line 6162) | def methodOffset(self, /) -> int: ... method newInstance (line 6163) | def newInstance(self, val0: QGenericArgument, /, val1: QGenericArgumen... method normalizedSignature (line 6165) | def normalizedSignature(method: bytes | bytearray | memoryview, /) -> ... method normalizedType (line 6167) | def normalizedType(type: bytes | bytearray | memoryview, /) -> QByteAr... method property (line 6168) | def property(self, index: int, /) -> QMetaProperty: ... method propertyCount (line 6169) | def propertyCount(self, /) -> int: ... method propertyOffset (line 6170) | def propertyOffset(self, /) -> int: ... method superClass (line 6171) | def superClass(self, /) -> QMetaObject: ... method userProperty (line 6172) | def userProperty(self, /) -> QMetaProperty: ... class QMetaProperty (line 6174) | class QMetaProperty(shiboken6.Object): method __init__ (line 6176) | def __init__(self, QMetaProperty: QMetaProperty, /) -> None: ... method __init__ (line 6178) | def __init__(self, /) -> None: ... method enumerator (line 6179) | def enumerator(self, /) -> QMetaEnum: ... method hasNotifySignal (line 6180) | def hasNotifySignal(self, /) -> bool: ... method hasStdCppSet (line 6181) | def hasStdCppSet(self, /) -> bool: ... method isAlias (line 6182) | def isAlias(self, /) -> bool: ... method isBindable (line 6183) | def isBindable(self, /) -> bool: ... method isConstant (line 6184) | def isConstant(self, /) -> bool: ... method isDesignable (line 6185) | def isDesignable(self, /) -> bool: ... method isEnumType (line 6186) | def isEnumType(self, /) -> bool: ... method isFinal (line 6187) | def isFinal(self, /) -> bool: ... method isFlagType (line 6188) | def isFlagType(self, /) -> bool: ... method isReadable (line 6189) | def isReadable(self, /) -> bool: ... method isRequired (line 6190) | def isRequired(self, /) -> bool: ... method isResettable (line 6191) | def isResettable(self, /) -> bool: ... method isScriptable (line 6192) | def isScriptable(self, /) -> bool: ... method isStored (line 6193) | def isStored(self, /) -> bool: ... method isUser (line 6194) | def isUser(self, /) -> bool: ... method isValid (line 6195) | def isValid(self, /) -> bool: ... method isWritable (line 6196) | def isWritable(self, /) -> bool: ... method metaType (line 6197) | def metaType(self, /) -> QMetaType: ... method name (line 6198) | def name(self, /) -> bytes | bytearray | memoryview: ... method notifySignal (line 6199) | def notifySignal(self, /) -> QMetaMethod: ... method notifySignalIndex (line 6200) | def notifySignalIndex(self, /) -> int: ... method propertyIndex (line 6201) | def propertyIndex(self, /) -> int: ... method read (line 6202) | def read(self, obj: QObject, /) -> Any: ... method readOnGadget (line 6203) | def readOnGadget(self, gadget: int, /) -> Any: ... method relativePropertyIndex (line 6204) | def relativePropertyIndex(self, /) -> int: ... method reset (line 6205) | def reset(self, obj: QObject, /) -> bool: ... method resetOnGadget (line 6206) | def resetOnGadget(self, gadget: int, /) -> bool: ... method revision (line 6207) | def revision(self, /) -> int: ... method typeId (line 6208) | def typeId(self, /) -> int: ... method typeName (line 6209) | def typeName(self, /) -> bytes | bytearray | memoryview: ... method userType (line 6210) | def userType(self, /) -> int: ... method write (line 6211) | def write(self, obj: QObject, value: Any, /) -> bool: ... method writeOnGadget (line 6212) | def writeOnGadget(self, gadget: int, value: Any, /) -> bool: ... method __copy__ (line 6213) | def __copy__(self, /) -> typing_extensions.Self: ... class QMetaType (line 6215) | class QMetaType(shiboken6.Object): class Type (line 6216) | class Type(enum.IntEnum): class TypeFlag (line 6310) | class TypeFlag(enum.Flag): method __init__ (line 6329) | def __init__(self, type: QMetaType.Type, /) -> None: ... method __init__ (line 6331) | def __init__(self, type: int, /) -> None: ... method __init__ (line 6333) | def __init__(self, py_type: type, /) -> None: ... method __init__ (line 6335) | def __init__(self, QMetaType: QMetaType, /) -> None: ... method __init__ (line 6337) | def __init__(self, /) -> None: ... method alignOf (line 6338) | def alignOf(self, /) -> int: ... method canConvert (line 6340) | def canConvert(fromType: QMetaType | QMetaType.Type, toType: QMetaType... method canView (line 6342) | def canView(fromType: QMetaType | QMetaType.Type, toType: QMetaType | ... method compare (line 6344) | def compare(lhs: int, rhs: int, typeId: int, /) -> Tuple[bool, int]: ... method construct (line 6346) | def construct(self) -> typing.Any: ... method convert (line 6349) | def convert(from_: int, fromTypeId: int, to: int, toTypeId: int, /) ->... method convert (line 6352) | def convert(fromType: QMetaType | QMetaType.Type, from_: int, toType: ... method create (line 6354) | def create(self) -> typing.Any: ... method destroy (line 6356) | def destroy(self) -> typing.Any: ... method destruct (line 6358) | def destruct(self) -> typing.Any: ... method equals (line 6360) | def equals(self) -> typing.Any: ... method flags (line 6361) | def flags(self, /) -> QMetaType.TypeFlag: ... method fromName (line 6363) | def fromName(name: QByteArray | bytes | bytearray | memoryview, /) -> ... method hasRegisteredConverterFunction (line 6365) | def hasRegisteredConverterFunction(fromType: QMetaType | QMetaType.Typ... method hasRegisteredDataStreamOperators (line 6366) | def hasRegisteredDataStreamOperators(self, /) -> bool: ... method hasRegisteredDebugStreamOperator (line 6368) | def hasRegisteredDebugStreamOperator(self) -> typing.Any: ... method hasRegisteredMutableViewFunction (line 6370) | def hasRegisteredMutableViewFunction(fromType: QMetaType | QMetaType.T... method id (line 6371) | def id(self, /, arg__1: int | None = ...) -> int: ... method isCopyConstructible (line 6372) | def isCopyConstructible(self, /) -> bool: ... method isDefaultConstructible (line 6373) | def isDefaultConstructible(self, /) -> bool: ... method isDestructible (line 6374) | def isDestructible(self, /) -> bool: ... method isEqualityComparable (line 6375) | def isEqualityComparable(self, /) -> bool: ... method isMoveConstructible (line 6376) | def isMoveConstructible(self, /) -> bool: ... method isOrdered (line 6377) | def isOrdered(self, /) -> bool: ... method isRegistered (line 6379) | def isRegistered(self) -> typing.Any: ... method isValid (line 6380) | def isValid(self, /) -> bool: ... method load (line 6382) | def load(self) -> typing.Any: ... method metaObjectForType (line 6384) | def metaObjectForType(type: int, /) -> QMetaObject: ... method name (line 6385) | def name(self, /) -> bytes | bytearray | memoryview: ... method registerNormalizedTypedef (line 6387) | def registerNormalizedTypedef(normalizedTypeName: QByteArray | bytes |... method registerType (line 6388) | def registerType(self, /) -> None: ... method save (line 6390) | def save(self) -> typing.Any: ... method sizeOf (line 6392) | def sizeOf(self) -> typing.Any: ... method type (line 6395) | def type(typeName: bytes | bytearray | memoryview, /) -> int: ... method type (line 6398) | def type(typeName: QByteArray | bytes | bytearray | memoryview, /) -> ... method typeFlags (line 6400) | def typeFlags(type: int, /) -> QMetaType.TypeFlag: ... method typeName (line 6402) | def typeName(type: int, /) -> bytes | bytearray | memoryview: ... method underlyingType (line 6403) | def underlyingType(self, /) -> QMetaType: ... method unregisterConverterFunction (line 6405) | def unregisterConverterFunction(from_: QMetaType | QMetaType.Type, to:... method unregisterMetaType (line 6407) | def unregisterMetaType(type: QMetaType | QMetaType.Type, /) -> None: ... method unregisterMutableViewFunction (line 6409) | def unregisterMutableViewFunction(from_: QMetaType | QMetaType.Type, t... method view (line 6411) | def view(fromType: QMetaType | QMetaType.Type, from_: int, toType: QMe... method __copy__ (line 6412) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6413) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6414) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6415) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6416) | def __hash__(self, /) -> int: ... method __le__ (line 6417) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6418) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6419) | def __ne__(self, other: object) -> bool: ... class QMicrophonePermission (line 6421) | class QMicrophonePermission(shiboken6.Object): method __init__ (line 6423) | def __init__(self, other: QMicrophonePermission, /) -> None: ... method __init__ (line 6425) | def __init__(self, /) -> None: ... method swap (line 6426) | def swap(self, other: QMicrophonePermission, /) -> None: ... method __copy__ (line 6427) | def __copy__(self, /) -> typing_extensions.Self: ... class QMimeData (line 6429) | class QMimeData(QObject): method __init__ (line 6431) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method clear (line 6432) | def clear(self, /) -> None: ... method colorData (line 6433) | def colorData(self, /) -> Any: ... method data (line 6434) | def data(self, mimetype: str, /) -> QByteArray: ... method formats (line 6435) | def formats(self, /) -> List[str]: ... method hasColor (line 6436) | def hasColor(self, /) -> bool: ... method hasFormat (line 6437) | def hasFormat(self, mimetype: str, /) -> bool: ... method hasHtml (line 6438) | def hasHtml(self, /) -> bool: ... method hasImage (line 6439) | def hasImage(self, /) -> bool: ... method hasText (line 6440) | def hasText(self, /) -> bool: ... method hasUrls (line 6441) | def hasUrls(self, /) -> bool: ... method html (line 6442) | def html(self, /) -> str: ... method imageData (line 6443) | def imageData(self, /) -> Any: ... method removeFormat (line 6444) | def removeFormat(self, mimetype: str, /) -> None: ... method retrieveData (line 6445) | def retrieveData(self, mimetype: str, preferredType: QMetaType | QMeta... method setColorData (line 6446) | def setColorData(self, color: Any, /) -> None: ... method setData (line 6447) | def setData(self, mimetype: str, data: QByteArray | bytes | bytearray ... method setHtml (line 6448) | def setHtml(self, html: str, /) -> None: ... method setImageData (line 6449) | def setImageData(self, image: Any, /) -> None: ... method setText (line 6450) | def setText(self, text: str, /) -> None: ... method setUrls (line 6451) | def setUrls(self, urls: typing.Iterable[QUrl], /) -> None: ... method text (line 6452) | def text(self, /) -> str: ... method urls (line 6453) | def urls(self, /) -> List[QUrl]: ... class QMimeDatabase (line 6455) | class QMimeDatabase(shiboken6.Object): class MatchMode (line 6456) | class MatchMode(enum.Enum): method __init__ (line 6460) | def __init__(self, /) -> None: ... method allMimeTypes (line 6461) | def allMimeTypes(self, /) -> List[QMimeType]: ... method mimeTypeForData (line 6463) | def mimeTypeForData(self, device: QIODevice, /) -> QMimeType: ... method mimeTypeForData (line 6465) | def mimeTypeForData(self, data: QByteArray | bytes | bytearray | memor... method mimeTypeForFile (line 6467) | def mimeTypeForFile(self, fileName: str, /, mode: QMimeDatabase.MatchM... method mimeTypeForFile (line 6469) | def mimeTypeForFile(self, fileInfo: QFileInfo, /, mode: QMimeDatabase.... method mimeTypeForFileNameAndData (line 6471) | def mimeTypeForFileNameAndData(self, fileName: str, device: QIODevice,... method mimeTypeForFileNameAndData (line 6473) | def mimeTypeForFileNameAndData(self, fileName: str, data: QByteArray |... method mimeTypeForName (line 6474) | def mimeTypeForName(self, nameOrAlias: str, /) -> QMimeType: ... method mimeTypeForUrl (line 6475) | def mimeTypeForUrl(self, url: QUrl | str, /) -> QMimeType: ... method mimeTypesForFileName (line 6476) | def mimeTypesForFileName(self, fileName: str, /) -> List[QMimeType]: ... method suffixForFileName (line 6477) | def suffixForFileName(self, fileName: str, /) -> str: ... class QMimeType (line 6479) | class QMimeType(shiboken6.Object): method __init__ (line 6481) | def __init__(self, other: QMimeType, /, *, valid: bool | None = ..., i... method __init__ (line 6483) | def __init__(self, /, *, valid: bool | None = ..., isDefault: bool | N... method aliases (line 6484) | def aliases(self, /) -> List[str]: ... method allAncestors (line 6485) | def allAncestors(self, /) -> List[str]: ... method comment (line 6486) | def comment(self, /) -> str: ... method filterString (line 6487) | def filterString(self, /) -> str: ... method genericIconName (line 6488) | def genericIconName(self, /) -> str: ... method globPatterns (line 6489) | def globPatterns(self, /) -> List[str]: ... method iconName (line 6490) | def iconName(self, /) -> str: ... method inherits (line 6491) | def inherits(self, mimeTypeName: str, /) -> bool: ... method isDefault (line 6492) | def isDefault(self, /) -> bool: ... method isValid (line 6493) | def isValid(self, /) -> bool: ... method name (line 6494) | def name(self, /) -> str: ... method parentMimeTypes (line 6495) | def parentMimeTypes(self, /) -> List[str]: ... method preferredSuffix (line 6496) | def preferredSuffix(self, /) -> str: ... method suffixes (line 6497) | def suffixes(self, /) -> List[str]: ... method swap (line 6498) | def swap(self, other: QMimeType, /) -> None: ... method __copy__ (line 6499) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6500) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6501) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6502) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6503) | def __hash__(self, /) -> int: ... method __le__ (line 6504) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6505) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6506) | def __ne__(self, other: object) -> bool: ... class QModelIndex (line 6508) | class QModelIndex(shiboken6.Object): method __init__ (line 6510) | def __init__(self, QModelIndex: QModelIndex | QPersistentModelIndex, /... method __init__ (line 6512) | def __init__(self, /) -> None: ... method column (line 6513) | def column(self, /) -> int: ... method constInternalPointer (line 6514) | def constInternalPointer(self, /) -> int: ... method data (line 6515) | def data(self, /, role: Qt.ItemDataRole | int = ...) -> Any: ... method flags (line 6516) | def flags(self, /) -> Qt.ItemFlag: ... method internalId (line 6517) | def internalId(self, /) -> int: ... method internalPointer (line 6518) | def internalPointer(self, /) -> Any: ... method isValid (line 6519) | def isValid(self, /) -> bool: ... method model (line 6520) | def model(self, /) -> QAbstractItemModel: ... method multiData (line 6521) | def multiData(self, roleDataSpan: QModelRoleDataSpan | QModelRoleData,... method parent (line 6522) | def parent(self, /) -> QModelIndex: ... method row (line 6523) | def row(self, /) -> int: ... method sibling (line 6524) | def sibling(self, row: int, column: int, /) -> QModelIndex: ... method siblingAtColumn (line 6525) | def siblingAtColumn(self, column: int, /) -> QModelIndex: ... method siblingAtRow (line 6526) | def siblingAtRow(self, row: int, /) -> QModelIndex: ... method __copy__ (line 6527) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6528) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6529) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6530) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6531) | def __hash__(self, /) -> int: ... method __le__ (line 6532) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6533) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6534) | def __ne__(self, other: object) -> bool: ... class QModelRoleData (line 6536) | class QModelRoleData(shiboken6.Object): method __init__ (line 6538) | def __init__(self, role: Qt.ItemDataRole | int, /) -> None: ... method __init__ (line 6540) | def __init__(self, QModelRoleData: QModelRoleData, /) -> None: ... method clearData (line 6541) | def clearData(self, /) -> None: ... method data (line 6542) | def data(self, /) -> Any: ... method role (line 6543) | def role(self, /) -> int: ... method setData (line 6544) | def setData(self, data: Any, /) -> None: ... method __copy__ (line 6545) | def __copy__(self, /) -> typing_extensions.Self: ... class QModelRoleDataSpan (line 6547) | class QModelRoleDataSpan(shiboken6.Object): method __init__ (line 6549) | def __init__(self, modelRoleData: QModelRoleData, len: int, /) -> None... method __init__ (line 6551) | def __init__(self, modelRoleData: QModelRoleData, /) -> None: ... method __init__ (line 6553) | def __init__(self, QModelRoleDataSpan: QModelRoleDataSpan, /) -> None:... method __init__ (line 6555) | def __init__(self, /) -> None: ... method begin (line 6556) | def begin(self, /) -> QModelRoleData: ... method data (line 6557) | def data(self, /) -> QModelRoleData: ... method end (line 6558) | def end(self, /) -> QModelRoleData: ... method length (line 6559) | def length(self, /) -> int: ... method size (line 6560) | def size(self, /) -> int: ... method __copy__ (line 6561) | def __copy__(self, /) -> typing_extensions.Self: ... method __getitem__ (line 6562) | def __getitem__(self, index): ... method __len__ (line 6563) | def __len__(self) -> int: ... class QMutex (line 6565) | class QMutex(QBasicMutex): method __init__ (line 6566) | def __init__(self, /) -> None: ... method tryLock (line 6568) | def tryLock(self, timeout: int, /) -> bool: ... method tryLock (line 6570) | def tryLock(self, timeout: QDeadlineTimer | QDeadlineTimer.ForeverCons... method tryLock (line 6572) | def tryLock(self, /) -> bool: ... method try_lock (line 6573) | def try_lock(self, /) -> bool: ... class QMutexLocker (line 6575) | class QMutexLocker(shiboken6.Object): method __init__ (line 6577) | def __init__(self, m: QMutex, /) -> None: ... method __init__ (line 6579) | def __init__(self, m: QRecursiveMutex, /) -> None: ... method mutex (line 6580) | def mutex(self, /) -> QMutex: ... method recursiveMutex (line 6581) | def recursiveMutex(self, /) -> QRecursiveMutex: ... method relock (line 6582) | def relock(self, /) -> None: ... method unlock (line 6583) | def unlock(self, /) -> None: ... method __enter__ (line 6584) | def __enter__(self, /) -> QMutexLocker: ... method __exit__ (line 6585) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QNativeIpcKey (line 6587) | class QNativeIpcKey(shiboken6.Object): class Type (line 6588) | class Type(enum.Enum): method __init__ (line 6594) | def __init__(self, k: str, /, type: QNativeIpcKey.Type = ...) -> None:... method __init__ (line 6596) | def __init__(self, type: QNativeIpcKey.Type, /) -> None: ... method __init__ (line 6598) | def __init__(self, other: QNativeIpcKey, /) -> None: ... method __init__ (line 6600) | def __init__(self, /) -> None: ... method fromString (line 6602) | def fromString(string: str, /) -> QNativeIpcKey: ... method isEmpty (line 6603) | def isEmpty(self, /) -> bool: ... method isValid (line 6604) | def isValid(self, /) -> bool: ... method legacyDefaultTypeForOs (line 6606) | def legacyDefaultTypeForOs() -> QNativeIpcKey.Type: ... method nativeKey (line 6607) | def nativeKey(self, /) -> str: ... method setNativeKey (line 6608) | def setNativeKey(self, newKey: str, /) -> None: ... method setType (line 6609) | def setType(self, type: QNativeIpcKey.Type, /) -> None: ... method swap (line 6610) | def swap(self, other: QNativeIpcKey | str, /) -> None: ... method toString (line 6611) | def toString(self, /) -> str: ... method type (line 6612) | def type(self, /) -> QNativeIpcKey.Type: ... method __copy__ (line 6613) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6614) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6615) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6616) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6617) | def __hash__(self, /) -> int: ... method __le__ (line 6618) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6619) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6620) | def __ne__(self, other: object) -> bool: ... class QObject (line 6622) | class QObject(shiboken6.Object): method __init__ (line 6626) | def __init__(self, /, parent: QObject | None = ..., *, objectName: str... method blockSignals (line 6627) | def blockSignals(self, b: bool, /) -> bool: ... method childEvent (line 6628) | def childEvent(self, event: QChildEvent, /) -> None: ... method children (line 6629) | def children(self, /) -> List[QObject]: ... method connect (line 6631) | def connect(self) -> typing.Any: ... method connectNotify (line 6632) | def connectNotify(self, signal: QMetaMethod, /) -> None: ... method customEvent (line 6633) | def customEvent(self, event: QEvent, /) -> None: ... method deleteLater (line 6634) | def deleteLater(self, /) -> None: ... method disconnect (line 6636) | def disconnect(self) -> typing.Any: ... method disconnectNotify (line 6637) | def disconnectNotify(self, signal: QMetaMethod, /) -> None: ... method dumpObjectInfo (line 6638) | def dumpObjectInfo(self, /) -> None: ... method dumpObjectTree (line 6639) | def dumpObjectTree(self, /) -> None: ... method dynamicPropertyNames (line 6640) | def dynamicPropertyNames(self, /) -> List[QByteArray]: ... method emit (line 6641) | def emit(self, signal: bytes | bytearray | memoryview, /, *args: None)... method event (line 6642) | def event(self, event: QEvent, /) -> bool: ... method eventFilter (line 6643) | def eventFilter(self, watched: QObject, event: QEvent, /) -> bool: ... method findChild (line 6644) | def findChild(self, type: type[T], /, name: str = ..., options: Qt.Fin... method findChildren (line 6646) | def findChildren(self, type: type[T], pattern: QRegularExpression | st... method findChildren (line 6648) | def findChildren(self, type: type[T], /, name: str = ..., options: Qt.... method inherits (line 6649) | def inherits(self, classname: str, /) -> bool: ... method installEventFilter (line 6650) | def installEventFilter(self, filterObj: QObject, /) -> None: ... method isQuickItemType (line 6651) | def isQuickItemType(self, /) -> bool: ... method isSignalConnected (line 6652) | def isSignalConnected(self, signal: QMetaMethod, /) -> bool: ... method isWidgetType (line 6653) | def isWidgetType(self, /) -> bool: ... method isWindowType (line 6654) | def isWindowType(self, /) -> bool: ... method killTimer (line 6656) | def killTimer(self, id: Qt.TimerId, /) -> None: ... method killTimer (line 6658) | def killTimer(self, id: int, /) -> None: ... method metaObject (line 6659) | def metaObject(self, /) -> QMetaObject: ... method moveToThread (line 6660) | def moveToThread(self, thread: QThread, /) -> bool: ... method objectName (line 6661) | def objectName(self, /) -> str: ... method parent (line 6662) | def parent(self, /) -> QObject: ... method property (line 6663) | def property(self, name: str, /) -> Any: ... method receivers (line 6664) | def receivers(self, signal: str, /) -> int: ... method removeEventFilter (line 6665) | def removeEventFilter(self, obj: QObject, /) -> None: ... method sender (line 6666) | def sender(self, /) -> QObject: ... method senderSignalIndex (line 6667) | def senderSignalIndex(self, /) -> int: ... method setObjectName (line 6668) | def setObjectName(self, name: str, /) -> None: ... method setParent (line 6669) | def setParent(self, parent: QObject | None, /) -> None: ... method setProperty (line 6670) | def setProperty(self, name: str, value: Any, /) -> bool: ... method signalsBlocked (line 6671) | def signalsBlocked(self, /) -> bool: ... method startTimer (line 6672) | def startTimer(self, interval: int, /, timerType: Qt.TimerType = ...) ... method thread (line 6673) | def thread(self, /) -> QThread: ... method timerEvent (line 6674) | def timerEvent(self, event: QTimerEvent, /) -> None: ... method tr (line 6675) | def tr(self, sourceText: str, /, disambiguation: str | None = ..., n: ... class QOperatingSystemVersion (line 6677) | class QOperatingSystemVersion(QOperatingSystemVersionBase): class OSType (line 6678) | class OSType(enum.Enum): method __init__ (line 6730) | def __init__(self, osType: QOperatingSystemVersion.OSType, vmajor: int... method __init__ (line 6732) | def __init__(self, QOperatingSystemVersion: QOperatingSystemVersion, /... method currentType (line 6734) | def currentType() -> QOperatingSystemVersion.OSType: ... method type (line 6735) | def type(self, /) -> QOperatingSystemVersion.OSType: ... method __copy__ (line 6736) | def __copy__(self, /) -> typing_extensions.Self: ... class QOperatingSystemVersionBase (line 6738) | class QOperatingSystemVersionBase(shiboken6.Object): method __init__ (line 6740) | def __init__(self, QOperatingSystemVersionBase: QOperatingSystemVersio... method __init__ (line 6742) | def __init__(self, /) -> None: ... method compare (line 6744) | def compare(v1: QOperatingSystemVersionBase, v2: QOperatingSystemVersi... method current (line 6746) | def current() -> QOperatingSystemVersionBase: ... method majorVersion (line 6747) | def majorVersion(self, /) -> int: ... method microVersion (line 6748) | def microVersion(self, /) -> int: ... method minorVersion (line 6749) | def minorVersion(self, /) -> int: ... method name (line 6751) | def name(self) -> typing.Any: ... method segmentCount (line 6752) | def segmentCount(self, /) -> int: ... method version (line 6753) | def version(self, /) -> QVersionNumber: ... method __copy__ (line 6754) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6755) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6756) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6757) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6758) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6759) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6760) | def __ne__(self, other: object) -> bool: ... class QParallelAnimationGroup (line 6762) | class QParallelAnimationGroup(QAnimationGroup): method __init__ (line 6764) | def __init__(self, /, parent: QObject | None = ..., currentLoop: int =... method duration (line 6765) | def duration(self, /) -> int: ... method event (line 6766) | def event(self, event: QEvent, /) -> bool: ... method updateCurrentTime (line 6767) | def updateCurrentTime(self, currentTime: int, /) -> None: ... method updateDirection (line 6768) | def updateDirection(self, direction: QAbstractAnimation.Direction, /) ... method updateState (line 6769) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QPauseAnimation (line 6771) | class QPauseAnimation(QAbstractAnimation): method __init__ (line 6774) | def __init__(self, msecs: int, /, parent: QObject | None = ..., *, dur... method __init__ (line 6776) | def __init__(self, /, parent: QObject | None = ..., *, duration: int |... method duration (line 6777) | def duration(self, /) -> int: ... method event (line 6778) | def event(self, e: QEvent, /) -> bool: ... method setDuration (line 6779) | def setDuration(self, msecs: int, /) -> None: ... method updateCurrentTime (line 6780) | def updateCurrentTime(self, arg__1: int, /) -> None: ... class QPermission (line 6782) | class QPermission(shiboken6.Object): method __init__ (line 6784) | def __init__(self, QPermission: QPermission, /) -> None: ... method __init__ (line 6786) | def __init__(self, /) -> None: ... method status (line 6787) | def status(self, /) -> Qt.PermissionStatus: ... method type (line 6788) | def type(self, /) -> QMetaType: ... method __copy__ (line 6789) | def __copy__(self, /) -> typing_extensions.Self: ... class QPersistentModelIndex (line 6791) | class QPersistentModelIndex(shiboken6.Object): method __init__ (line 6793) | def __init__(self, other: QPersistentModelIndex, /) -> None: ... method __init__ (line 6795) | def __init__(self, index: QModelIndex | QPersistentModelIndex, /) -> N... method __init__ (line 6797) | def __init__(self, /) -> None: ... method column (line 6798) | def column(self, /) -> int: ... method data (line 6799) | def data(self, /, role: Qt.ItemDataRole | int = ...) -> Any: ... method flags (line 6800) | def flags(self, /) -> Qt.ItemFlag: ... method internalId (line 6801) | def internalId(self, /) -> int: ... method internalPointer (line 6802) | def internalPointer(self, /) -> Any: ... method isValid (line 6803) | def isValid(self, /) -> bool: ... method model (line 6804) | def model(self, /) -> QAbstractItemModel: ... method multiData (line 6805) | def multiData(self, roleDataSpan: QModelRoleDataSpan | QModelRoleData,... method parent (line 6806) | def parent(self, /) -> QModelIndex: ... method row (line 6807) | def row(self, /) -> int: ... method sibling (line 6808) | def sibling(self, row: int, column: int, /) -> QModelIndex: ... method swap (line 6809) | def swap(self, other: QPersistentModelIndex | QModelIndex, /) -> None:... method __copy__ (line 6810) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6811) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6812) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6813) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6814) | def __hash__(self, /) -> int: ... method __le__ (line 6815) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6816) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6817) | def __ne__(self, other: object) -> bool: ... class QPluginLoader (line 6819) | class QPluginLoader(QObject): method __init__ (line 6822) | def __init__(self, fileName: str, /, parent: QObject | None = ..., *, ... method __init__ (line 6824) | def __init__(self, /, parent: QObject | None = ..., *, fileName: str |... method errorString (line 6825) | def errorString(self, /) -> str: ... method fileName (line 6826) | def fileName(self, /) -> str: ... method instance (line 6827) | def instance(self, /) -> QObject: ... method isLoaded (line 6828) | def isLoaded(self, /) -> bool: ... method load (line 6829) | def load(self, /) -> bool: ... method loadHints (line 6830) | def loadHints(self, /) -> QLibrary.LoadHint: ... method metaData (line 6831) | def metaData(self, /) -> Dict[str, QJsonValue]: ... method setFileName (line 6832) | def setFileName(self, fileName: str, /) -> None: ... method setLoadHints (line 6833) | def setLoadHints(self, loadHints: QLibrary.LoadHint, /) -> None: ... method staticInstances (line 6835) | def staticInstances() -> List[QObject]: ... method unload (line 6836) | def unload(self, /) -> bool: ... class QPoint (line 6838) | class QPoint(shiboken6.Object): method __init__ (line 6840) | def __init__(self, xpos: int, ypos: int, /) -> None: ... method __init__ (line 6842) | def __init__(self, QPoint: QPoint, /) -> None: ... method __init__ (line 6844) | def __init__(self, /) -> None: ... method dotProduct (line 6846) | def dotProduct(p1: QPoint, p2: QPoint, /) -> int: ... method isNull (line 6847) | def isNull(self, /) -> bool: ... method manhattanLength (line 6848) | def manhattanLength(self, /) -> int: ... method setX (line 6849) | def setX(self, x: int, /) -> None: ... method setY (line 6850) | def setY(self, y: int, /) -> None: ... method toPointF (line 6851) | def toPointF(self, /) -> QPointF: ... method toTuple (line 6852) | def toTuple(self, /) -> Tuple[int, int]: ... method transposed (line 6853) | def transposed(self, /) -> QPoint: ... method x (line 6854) | def x(self, /) -> int: ... method y (line 6855) | def y(self, /) -> int: ... method __add__ (line 6856) | def __add__(self, p2: QPoint, /) -> QPoint: ... method __bool__ (line 6857) | def __bool__(self) -> bool: ... method __copy__ (line 6858) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6859) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6860) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6861) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6862) | def __hash__(self, /) -> int: ... method __iadd__ (line 6863) | def __iadd__(self, p: QPoint, /) -> QPoint: ... method __imul__ (line 6865) | def __imul__(self, factor: int, /) -> QPoint: ... method __imul__ (line 6867) | def __imul__(self, factor: float, /) -> QPoint: ... method __isub__ (line 6868) | def __isub__(self, p: QPoint, /) -> QPoint: ... method __le__ (line 6869) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6870) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6872) | def __mul__(self, factor: int, /) -> QPoint: ... method __mul__ (line 6874) | def __mul__(self, factor: float, /) -> QPoint: ... method __ne__ (line 6875) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6876) | def __neg__(self, /) -> QPoint: ... method __pos__ (line 6877) | def __pos__(self, /) -> QPoint: ... method __radd__ (line 6878) | def __radd__(self, other): ... method __rmul__ (line 6879) | def __rmul__(self, other): ... method __rsub__ (line 6880) | def __rsub__(self, other): ... method __rtruediv__ (line 6881) | def __rtruediv__(self, other): ... method __sub__ (line 6882) | def __sub__(self, p2: QPoint, /) -> QPoint: ... method __truediv__ (line 6883) | def __truediv__(self, other): ... class QPointF (line 6885) | class QPointF(shiboken6.Object): method __init__ (line 6887) | def __init__(self, xpos: float, ypos: float, /) -> None: ... method __init__ (line 6889) | def __init__(self, p: QPoint, /) -> None: ... method __init__ (line 6891) | def __init__(self, QPointF: QPointF, /) -> None: ... method __init__ (line 6893) | def __init__(self, /) -> None: ... method dotProduct (line 6895) | def dotProduct(p1: QPointF | QPoint, p2: QPointF | QPoint, /) -> float... method isNull (line 6896) | def isNull(self, /) -> bool: ... method manhattanLength (line 6897) | def manhattanLength(self, /) -> float: ... method setX (line 6898) | def setX(self, x: float, /) -> None: ... method setY (line 6899) | def setY(self, y: float, /) -> None: ... method toPoint (line 6900) | def toPoint(self, /) -> QPoint: ... method toTuple (line 6901) | def toTuple(self, /) -> Tuple[float, float]: ... method transposed (line 6902) | def transposed(self, /) -> QPointF: ... method x (line 6903) | def x(self, /) -> float: ... method y (line 6904) | def y(self, /) -> float: ... method __add__ (line 6905) | def __add__(self, p2: QPointF | QPoint, /) -> QPointF: ... method __bool__ (line 6906) | def __bool__(self) -> bool: ... method __copy__ (line 6907) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6908) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6909) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6910) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 6911) | def __iadd__(self, p: QPointF | QPoint, /) -> QPointF: ... method __imul__ (line 6912) | def __imul__(self, c: float, /) -> QPointF: ... method __isub__ (line 6913) | def __isub__(self, p: QPointF | QPoint, /) -> QPointF: ... method __le__ (line 6914) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6915) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6916) | def __mul__(self, c: float, /) -> QPointF: ... method __ne__ (line 6917) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6918) | def __neg__(self, /) -> QPointF: ... method __pos__ (line 6919) | def __pos__(self, /) -> QPointF: ... method __radd__ (line 6920) | def __radd__(self, other): ... method __rmul__ (line 6921) | def __rmul__(self, other): ... method __rsub__ (line 6922) | def __rsub__(self, other): ... method __rtruediv__ (line 6923) | def __rtruediv__(self, other): ... method __sub__ (line 6924) | def __sub__(self, p2: QPointF | QPoint, /) -> QPointF: ... method __truediv__ (line 6925) | def __truediv__(self, other): ... class QPointFList (line 6927) | class QPointFList: method __init__ (line 6929) | def __init__(self, *args, **kwargs) -> None: ... method append (line 6930) | def append(self, *args, **kwargs): ... method capacity (line 6931) | def capacity(self, *args, **kwargs): ... method clear (line 6932) | def clear(self, *args, **kwargs): ... method constData (line 6933) | def constData(self, *args, **kwargs): ... method data (line 6934) | def data(self, *args, **kwargs): ... method pop_back (line 6935) | def pop_back(self, *args, **kwargs): ... method pop_front (line 6936) | def pop_front(self, *args, **kwargs): ... method prepend (line 6937) | def prepend(self, *args, **kwargs): ... method push_back (line 6938) | def push_back(self, *args, **kwargs): ... method push_front (line 6939) | def push_front(self, *args, **kwargs): ... method removeFirst (line 6940) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 6941) | def removeLast(self, *args, **kwargs): ... method reserve (line 6942) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 6943) | def __delitem__(self, other) -> None: ... method __getitem__ (line 6944) | def __getitem__(self, index): ... method __len__ (line 6945) | def __len__(self) -> int: ... method __setitem__ (line 6946) | def __setitem__(self, index, object) -> None: ... class QPointList (line 6948) | class QPointList: method __init__ (line 6950) | def __init__(self, *args, **kwargs) -> None: ... method append (line 6951) | def append(self, *args, **kwargs): ... method capacity (line 6952) | def capacity(self, *args, **kwargs): ... method clear (line 6953) | def clear(self, *args, **kwargs): ... method constData (line 6954) | def constData(self, *args, **kwargs): ... method data (line 6955) | def data(self, *args, **kwargs): ... method pop_back (line 6956) | def pop_back(self, *args, **kwargs): ... method pop_front (line 6957) | def pop_front(self, *args, **kwargs): ... method prepend (line 6958) | def prepend(self, *args, **kwargs): ... method push_back (line 6959) | def push_back(self, *args, **kwargs): ... method push_front (line 6960) | def push_front(self, *args, **kwargs): ... method removeFirst (line 6961) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 6962) | def removeLast(self, *args, **kwargs): ... method reserve (line 6963) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 6964) | def __delitem__(self, other) -> None: ... method __getitem__ (line 6965) | def __getitem__(self, index): ... method __len__ (line 6966) | def __len__(self) -> int: ... method __setitem__ (line 6967) | def __setitem__(self, index, object) -> None: ... class QProcess (line 6969) | class QProcess(QIODevice): class ExitStatus (line 6970) | class ExitStatus(enum.Enum): class InputChannelMode (line 6974) | class InputChannelMode(enum.Enum): class ProcessChannel (line 6978) | class ProcessChannel(enum.Enum): class ProcessChannelMode (line 6982) | class ProcessChannelMode(enum.Enum): class ProcessError (line 6989) | class ProcessError(enum.Enum): class ProcessState (line 6997) | class ProcessState(enum.Enum): class UnixProcessFlag (line 7002) | class UnixProcessFlag(enum.Flag): class UnixProcessParameters (line 7012) | class UnixProcessParameters(shiboken6.Object): method __init__ (line 7016) | def __init__(self, UnixProcessParameters: QProcess.UnixProcessParame... method __init__ (line 7018) | def __init__(self, /) -> None: ... method __copy__ (line 7019) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 7027) | def __init__(self, /, parent: QObject | None = ..., aboutToClose: typi... method arguments (line 7028) | def arguments(self, /) -> List[str]: ... method bytesToWrite (line 7029) | def bytesToWrite(self, /) -> int: ... method close (line 7030) | def close(self, /) -> None: ... method closeReadChannel (line 7031) | def closeReadChannel(self, channel: QProcess.ProcessChannel, /) -> Non... method closeWriteChannel (line 7032) | def closeWriteChannel(self, /) -> None: ... method environment (line 7033) | def environment(self, /) -> List[str]: ... method error (line 7034) | def error(self, /) -> QProcess.ProcessError: ... method execute (line 7036) | def execute(program: str, /, arguments: typing.Iterable[str] = ...) ->... method exitCode (line 7037) | def exitCode(self, /) -> int: ... method exitStatus (line 7038) | def exitStatus(self, /) -> QProcess.ExitStatus: ... method failChildProcessModifier (line 7039) | def failChildProcessModifier(self, description: bytes | bytearray | me... method inputChannelMode (line 7040) | def inputChannelMode(self, /) -> QProcess.InputChannelMode: ... method isSequential (line 7041) | def isSequential(self, /) -> bool: ... method kill (line 7042) | def kill(self, /) -> None: ... method nullDevice (line 7044) | def nullDevice() -> str: ... method open (line 7045) | def open(self, /, mode: QIODeviceBase.OpenModeFlag = ...) -> bool: ... method processChannelMode (line 7046) | def processChannelMode(self, /) -> QProcess.ProcessChannelMode: ... method processEnvironment (line 7047) | def processEnvironment(self, /) -> QProcessEnvironment: ... method processId (line 7048) | def processId(self, /) -> int: ... method program (line 7049) | def program(self, /) -> str: ... method readAllStandardError (line 7050) | def readAllStandardError(self, /) -> QByteArray: ... method readAllStandardOutput (line 7051) | def readAllStandardOutput(self, /) -> QByteArray: ... method readChannel (line 7052) | def readChannel(self, /) -> QProcess.ProcessChannel: ... method readData (line 7053) | def readData(self, maxlen: int, /) -> typing.Any: ... method setArguments (line 7054) | def setArguments(self, arguments: typing.Iterable[str], /) -> None: ... method setEnvironment (line 7055) | def setEnvironment(self, environment: typing.Iterable[str], /) -> None... method setInputChannelMode (line 7056) | def setInputChannelMode(self, mode: QProcess.InputChannelMode, /) -> N... method setProcessChannelMode (line 7057) | def setProcessChannelMode(self, mode: QProcess.ProcessChannelMode, /) ... method setProcessEnvironment (line 7058) | def setProcessEnvironment(self, environment: QProcessEnvironment | QPr... method setProcessState (line 7059) | def setProcessState(self, state: QProcess.ProcessState, /) -> None: ... method setProgram (line 7060) | def setProgram(self, program: str, /) -> None: ... method setReadChannel (line 7061) | def setReadChannel(self, channel: QProcess.ProcessChannel, /) -> None:... method setStandardErrorFile (line 7062) | def setStandardErrorFile(self, fileName: str, /, mode: QIODeviceBase.O... method setStandardInputFile (line 7063) | def setStandardInputFile(self, fileName: str, /) -> None: ... method setStandardOutputFile (line 7064) | def setStandardOutputFile(self, fileName: str, /, mode: QIODeviceBase.... method setStandardOutputProcess (line 7065) | def setStandardOutputProcess(self, destination: QProcess, /) -> None: ... method setUnixProcessParameters (line 7067) | def setUnixProcessParameters(self, params: QProcess.UnixProcessParamet... method setUnixProcessParameters (line 7069) | def setUnixProcessParameters(self, flagsOnly: QProcess.UnixProcessFlag... method setWorkingDirectory (line 7070) | def setWorkingDirectory(self, dir: str, /) -> None: ... method splitCommand (line 7072) | def splitCommand(command: str, /) -> List[str]: ... method start (line 7074) | def start(self, program: str, /, arguments: typing.Iterable[str] = ...... method start (line 7076) | def start(self, /, mode: QIODeviceBase.OpenModeFlag = ...) -> None: ... method startCommand (line 7077) | def startCommand(self, command: str, /, mode: QIODeviceBase.OpenModeFl... method startDetached (line 7079) | def startDetached(self) -> typing.Any: ... method state (line 7080) | def state(self, /) -> QProcess.ProcessState: ... method systemEnvironment (line 7082) | def systemEnvironment() -> List[str]: ... method terminate (line 7083) | def terminate(self, /) -> None: ... method unixProcessParameters (line 7084) | def unixProcessParameters(self, /) -> QProcess.UnixProcessParameters: ... method waitForBytesWritten (line 7085) | def waitForBytesWritten(self, /, msecs: int = ...) -> bool: ... method waitForFinished (line 7086) | def waitForFinished(self, /, msecs: int = ...) -> bool: ... method waitForReadyRead (line 7087) | def waitForReadyRead(self, /, msecs: int = ...) -> bool: ... method waitForStarted (line 7088) | def waitForStarted(self, /, msecs: int = ...) -> bool: ... method workingDirectory (line 7089) | def workingDirectory(self, /) -> str: ... method writeData (line 7090) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QProcessEnvironment (line 7092) | class QProcessEnvironment(shiboken6.Object): class Initialization (line 7093) | class Initialization(enum.Enum): method __init__ (line 7096) | def __init__(self, other: QProcessEnvironment, /) -> None: ... method __init__ (line 7098) | def __init__(self, arg__1: QProcessEnvironment.Initialization, /) -> N... method __init__ (line 7100) | def __init__(self, /) -> None: ... method clear (line 7101) | def clear(self, /) -> None: ... method contains (line 7102) | def contains(self, name: str, /) -> bool: ... method inheritsFromParent (line 7103) | def inheritsFromParent(self, /) -> bool: ... method insert (line 7105) | def insert(self, name: str, value: str, /) -> None: ... method insert (line 7107) | def insert(self, e: QProcessEnvironment | QProcessEnvironment.Initiali... method isEmpty (line 7108) | def isEmpty(self, /) -> bool: ... method keys (line 7109) | def keys(self, /) -> List[str]: ... method remove (line 7110) | def remove(self, name: str, /) -> None: ... method swap (line 7111) | def swap(self, other: QProcessEnvironment | QProcessEnvironment.Initia... method systemEnvironment (line 7113) | def systemEnvironment() -> QProcessEnvironment: ... method toStringList (line 7114) | def toStringList(self, /) -> List[str]: ... method value (line 7115) | def value(self, name: str, /, defaultValue: str = ...) -> str: ... method __copy__ (line 7116) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7117) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7118) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7119) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7120) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7121) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7122) | def __ne__(self, other: object) -> bool: ... class QPropertyAnimation (line 7124) | class QPropertyAnimation(QVariantAnimation): method __init__ (line 7127) | def __init__(self, target: QObject, propertyName: QByteArray | bytes |... method __init__ (line 7129) | def __init__(self, /, parent: QObject | None = ..., *, propertyName: Q... method event (line 7130) | def event(self, event: QEvent, /) -> bool: ... method propertyName (line 7131) | def propertyName(self, /) -> QByteArray: ... method setPropertyName (line 7132) | def setPropertyName(self, propertyName: QByteArray | bytes | bytearray... method setTargetObject (line 7133) | def setTargetObject(self, target: QObject, /) -> None: ... method targetObject (line 7134) | def targetObject(self, /) -> QObject: ... method updateCurrentValue (line 7135) | def updateCurrentValue(self, value: Any, /) -> None: ... method updateState (line 7136) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QRandomGenerator (line 7138) | class QRandomGenerator(shiboken6.Object): method __init__ (line 7140) | def __init__(self, seedBuffer: int, len: int, /) -> None: ... method __init__ (line 7142) | def __init__(self, other: QRandomGenerator, /) -> None: ... method __init__ (line 7144) | def __init__(self, /, seedValue: int = ...) -> None: ... method bounded (line 7146) | def bounded(self, lowest: int, highest: int, /) -> int: ... method bounded (line 7148) | def bounded(self, highest: int, /) -> int: ... method bounded (line 7150) | def bounded(self, highest: float, /) -> float: ... method discard (line 7151) | def discard(self, z: int, /) -> None: ... method generate (line 7152) | def generate(self, /) -> int: ... method generate64 (line 7153) | def generate64(self, /) -> int: ... method generateDouble (line 7154) | def generateDouble(self, /) -> float: ... method global_ (line 7156) | def global_() -> QRandomGenerator: ... method max (line 7158) | def max() -> int: ... method min (line 7160) | def min() -> int: ... method securelySeeded (line 7162) | def securelySeeded() -> QRandomGenerator: ... method seed (line 7163) | def seed(self, /, s: int = ...) -> None: ... method system (line 7165) | def system() -> QRandomGenerator: ... method __eq__ (line 7166) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7167) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7168) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7169) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7170) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7171) | def __ne__(self, other: object) -> bool: ... class QRandomGenerator64 (line 7173) | class QRandomGenerator64(QRandomGenerator): method __init__ (line 7175) | def __init__(self, seedBuffer: int, len: int, /) -> None: ... method __init__ (line 7177) | def __init__(self, other: QRandomGenerator, /) -> None: ... method __init__ (line 7179) | def __init__(self, /, seedValue: int = ...) -> None: ... method discard (line 7180) | def discard(self, z: int, /) -> None: ... method generate (line 7181) | def generate(self, /) -> int: ... method global_ (line 7183) | def global_() -> QRandomGenerator64: ... method max (line 7185) | def max() -> int: ... method min (line 7187) | def min() -> int: ... method securelySeeded (line 7189) | def securelySeeded() -> QRandomGenerator64: ... method system (line 7191) | def system() -> QRandomGenerator64: ... class QRangeModel (line 7193) | class QRangeModel(QAbstractItemModel): class RowCategory (line 7194) | class RowCategory(enum.Enum): method __init__ (line 7200) | def __init__(self, list: collections.abc.Iterable, /, parent: QObject ... method __init__ (line 7202) | def __init__(self, data: typing.Iterable[typing.Any], /, parent: QObje... method buddy (line 7203) | def buddy(self, index: QModelIndex | QPersistentModelIndex, /) -> QMod... method canDropMimeData (line 7204) | def canDropMimeData(self, data: QMimeData, action: Qt.DropAction, row:... method canFetchMore (line 7205) | def canFetchMore(self, parent: QModelIndex | QPersistentModelIndex, /)... method clearItemData (line 7206) | def clearItemData(self, index: QModelIndex | QPersistentModelIndex, /)... method columnCount (line 7207) | def columnCount(self, /, parent: QModelIndex | QPersistentModelIndex =... method data (line 7208) | def data(self, index: QModelIndex | QPersistentModelIndex, /, role: Qt... method dropMimeData (line 7209) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method event (line 7210) | def event(self, arg__1: QEvent, /) -> bool: ... method eventFilter (line 7211) | def eventFilter(self, arg__1: QObject, arg__2: QEvent, /) -> bool: ... method fetchMore (line 7212) | def fetchMore(self, parent: QModelIndex | QPersistentModelIndex, /) ->... method flags (line 7213) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method hasChildren (line 7214) | def hasChildren(self, /, parent: QModelIndex | QPersistentModelIndex =... method headerData (line 7215) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method index (line 7216) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method insertColumns (line 7217) | def insertColumns(self, column: int, count: int, /, parent: QModelInde... method insertRows (line 7218) | def insertRows(self, row: int, count: int, /, parent: QModelIndex | QP... method itemData (line 7219) | def itemData(self, index: QModelIndex | QPersistentModelIndex, /) -> D... method match (line 7220) | def match(self, start: QModelIndex | QPersistentModelIndex, role: Qt.I... method mimeData (line 7221) | def mimeData(self, indexes: typing.Iterable[QModelIndex | QPersistentM... method mimeTypes (line 7222) | def mimeTypes(self, /) -> List[str]: ... method moveColumns (line 7223) | def moveColumns(self, sourceParent: QModelIndex | QPersistentModelInde... method moveRows (line 7224) | def moveRows(self, sourceParent: QModelIndex | QPersistentModelIndex, ... method multiData (line 7225) | def multiData(self, index: QModelIndex | QPersistentModelIndex, roleDa... method parent (line 7227) | def parent(self, child: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 7229) | def parent(self, /) -> QObject: ... method removeColumns (line 7230) | def removeColumns(self, column: int, count: int, /, parent: QModelInde... method removeRows (line 7231) | def removeRows(self, row: int, count: int, /, parent: QModelIndex | QP... method resetInternalData (line 7232) | def resetInternalData(self, /) -> None: ... method resetRoleNames (line 7233) | def resetRoleNames(self, /) -> None: ... method roleNames (line 7234) | def roleNames(self, /) -> Dict[int, QByteArray]: ... method rowCount (line 7235) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setData (line 7236) | def setData(self, index: QModelIndex | QPersistentModelIndex, data: An... method setHeaderData (line 7237) | def setHeaderData(self, section: int, orientation: Qt.Orientation, dat... method setItemData (line 7238) | def setItemData(self, index: QModelIndex | QPersistentModelIndex, data... method setRoleNames (line 7239) | def setRoleNames(self, names: Dict[int, QByteArray], /) -> None: ... method sibling (line 7240) | def sibling(self, row: int, column: int, index: QModelIndex | QPersist... method sort (line 7241) | def sort(self, column: int, /, order: Qt.SortOrder = ...) -> None: ... method span (line 7242) | def span(self, index: QModelIndex | QPersistentModelIndex, /) -> QSize... method supportedDragActions (line 7243) | def supportedDragActions(self, /) -> Qt.DropAction: ... method supportedDropActions (line 7244) | def supportedDropActions(self, /) -> Qt.DropAction: ... class QReadLocker (line 7246) | class QReadLocker(shiboken6.Object): method __init__ (line 7247) | def __init__(self, readWriteLock: QReadWriteLock, /) -> None: ... method readWriteLock (line 7248) | def readWriteLock(self, /) -> QReadWriteLock: ... method relock (line 7249) | def relock(self, /) -> None: ... method unlock (line 7250) | def unlock(self, /) -> None: ... method __enter__ (line 7251) | def __enter__(self, /) -> QReadLocker: ... method __exit__ (line 7252) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QReadWriteLock (line 7254) | class QReadWriteLock(shiboken6.Object): class RecursionMode (line 7255) | class RecursionMode(enum.Enum): method __init__ (line 7258) | def __init__(self, /, recursionMode: QReadWriteLock.RecursionMode = ..... method lockForRead (line 7259) | def lockForRead(self, /) -> None: ... method lockForWrite (line 7260) | def lockForWrite(self, /) -> None: ... method tryLockForRead (line 7262) | def tryLockForRead(self, timeout: int, /) -> bool: ... method tryLockForRead (line 7264) | def tryLockForRead(self, /, timeout: QDeadlineTimer | QDeadlineTimer.F... method tryLockForWrite (line 7266) | def tryLockForWrite(self, timeout: int, /) -> bool: ... method tryLockForWrite (line 7268) | def tryLockForWrite(self, /, timeout: QDeadlineTimer | QDeadlineTimer.... method unlock (line 7269) | def unlock(self, /) -> None: ... class QRect (line 7271) | class QRect(shiboken6.Object): method __init__ (line 7273) | def __init__(self, left: int, top: int, width: int, height: int, /) ->... method __init__ (line 7275) | def __init__(self, topleft: QPoint, size: QSize, /) -> None: ... method __init__ (line 7277) | def __init__(self, topleft: QPoint, bottomright: QPoint, /) -> None: ... method __init__ (line 7279) | def __init__(self, QRect: QRect, /) -> None: ... method __init__ (line 7281) | def __init__(self, /) -> None: ... method adjust (line 7282) | def adjust(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method adjusted (line 7283) | def adjusted(self, x1: int, y1: int, x2: int, y2: int, /) -> QRect: ... method bottom (line 7284) | def bottom(self, /) -> int: ... method bottomLeft (line 7285) | def bottomLeft(self, /) -> QPoint: ... method bottomRight (line 7286) | def bottomRight(self, /) -> QPoint: ... method center (line 7287) | def center(self, /) -> QPoint: ... method contains (line 7289) | def contains(self, x: int, y: int, proper: bool, /) -> bool: ... method contains (line 7291) | def contains(self, x: int, y: int, /) -> bool: ... method contains (line 7293) | def contains(self, r: QRect, /, proper: bool = ...) -> bool: ... method contains (line 7295) | def contains(self, p: QPoint, /, proper: bool = ...) -> bool: ... method getCoords (line 7296) | def getCoords(self, /) -> typing.Any: ... method getRect (line 7297) | def getRect(self, /) -> typing.Any: ... method height (line 7298) | def height(self, /) -> int: ... method intersected (line 7299) | def intersected(self, other: QRect, /) -> QRect: ... method intersects (line 7300) | def intersects(self, r: QRect, /) -> bool: ... method isEmpty (line 7301) | def isEmpty(self, /) -> bool: ... method isNull (line 7302) | def isNull(self, /) -> bool: ... method isValid (line 7303) | def isValid(self, /) -> bool: ... method left (line 7304) | def left(self, /) -> int: ... method marginsAdded (line 7305) | def marginsAdded(self, margins: QMargins, /) -> QRect: ... method marginsRemoved (line 7306) | def marginsRemoved(self, margins: QMargins, /) -> QRect: ... method moveBottom (line 7307) | def moveBottom(self, pos: int, /) -> None: ... method moveBottomLeft (line 7308) | def moveBottomLeft(self, p: QPoint, /) -> None: ... method moveBottomRight (line 7309) | def moveBottomRight(self, p: QPoint, /) -> None: ... method moveCenter (line 7310) | def moveCenter(self, p: QPoint, /) -> None: ... method moveLeft (line 7311) | def moveLeft(self, pos: int, /) -> None: ... method moveRight (line 7312) | def moveRight(self, pos: int, /) -> None: ... method moveTo (line 7314) | def moveTo(self, x: int, t: int, /) -> None: ... method moveTo (line 7316) | def moveTo(self, p: QPoint, /) -> None: ... method moveTop (line 7317) | def moveTop(self, pos: int, /) -> None: ... method moveTopLeft (line 7318) | def moveTopLeft(self, p: QPoint, /) -> None: ... method moveTopRight (line 7319) | def moveTopRight(self, p: QPoint, /) -> None: ... method normalized (line 7320) | def normalized(self, /) -> QRect: ... method right (line 7321) | def right(self, /) -> int: ... method setBottom (line 7322) | def setBottom(self, pos: int, /) -> None: ... method setBottomLeft (line 7323) | def setBottomLeft(self, p: QPoint, /) -> None: ... method setBottomRight (line 7324) | def setBottomRight(self, p: QPoint, /) -> None: ... method setCoords (line 7325) | def setCoords(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method setHeight (line 7326) | def setHeight(self, h: int, /) -> None: ... method setLeft (line 7327) | def setLeft(self, pos: int, /) -> None: ... method setRect (line 7328) | def setRect(self, x: int, y: int, w: int, h: int, /) -> None: ... method setRight (line 7329) | def setRight(self, pos: int, /) -> None: ... method setSize (line 7330) | def setSize(self, s: QSize, /) -> None: ... method setTop (line 7331) | def setTop(self, pos: int, /) -> None: ... method setTopLeft (line 7332) | def setTopLeft(self, p: QPoint, /) -> None: ... method setTopRight (line 7333) | def setTopRight(self, p: QPoint, /) -> None: ... method setWidth (line 7334) | def setWidth(self, w: int, /) -> None: ... method setX (line 7335) | def setX(self, x: int, /) -> None: ... method setY (line 7336) | def setY(self, y: int, /) -> None: ... method size (line 7337) | def size(self, /) -> QSize: ... method span (line 7339) | def span(p1: QPoint, p2: QPoint, /) -> QRect: ... method toRectF (line 7340) | def toRectF(self, /) -> QRectF: ... method top (line 7341) | def top(self, /) -> int: ... method topLeft (line 7342) | def topLeft(self, /) -> QPoint: ... method topRight (line 7343) | def topRight(self, /) -> QPoint: ... method translate (line 7345) | def translate(self, dx: int, dy: int, /) -> None: ... method translate (line 7347) | def translate(self, p: QPoint, /) -> None: ... method translated (line 7349) | def translated(self, dx: int, dy: int, /) -> QRect: ... method translated (line 7351) | def translated(self, p: QPoint, /) -> QRect: ... method transposed (line 7352) | def transposed(self, /) -> QRect: ... method united (line 7353) | def united(self, other: QRect, /) -> QRect: ... method width (line 7354) | def width(self, /) -> int: ... method x (line 7355) | def x(self, /) -> int: ... method y (line 7356) | def y(self, /) -> int: ... method __add__ (line 7357) | def __add__(self, margins: QMargins, /) -> QRect: ... method __and__ (line 7358) | def __and__(self, r: QRect, /) -> QRect: ... method __bool__ (line 7359) | def __bool__(self) -> bool: ... method __copy__ (line 7360) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7361) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7362) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7363) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7364) | def __hash__(self, /) -> int: ... method __iadd__ (line 7365) | def __iadd__(self, margins: QMargins, /) -> QRect: ... method __iand__ (line 7366) | def __iand__(self, r: QRect, /) -> QRect: ... method __ior__ (line 7367) | def __ior__(self, r: QRect, /) -> QRect: ... method __isub__ (line 7368) | def __isub__(self, margins: QMargins, /) -> QRect: ... method __le__ (line 7369) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7370) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7371) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7372) | def __or__(self, r: QRect, /) -> QRect: ... method __radd__ (line 7373) | def __radd__(self, other): ... method __rand__ (line 7374) | def __rand__(self, other): ... method __ror__ (line 7375) | def __ror__(self, other): ... method __rsub__ (line 7376) | def __rsub__(self, other): ... method __sub__ (line 7377) | def __sub__(self, rhs: QMargins, /) -> QRect: ... class QRectF (line 7379) | class QRectF(shiboken6.Object): method __init__ (line 7381) | def __init__(self, left: float, top: float, width: float, height: floa... method __init__ (line 7383) | def __init__(self, topleft: QPointF | QPoint, size: QSizeF | QSize, /)... method __init__ (line 7385) | def __init__(self, topleft: QPointF | QPoint, bottomRight: QPointF | Q... method __init__ (line 7387) | def __init__(self, rect: QRect, /) -> None: ... method __init__ (line 7389) | def __init__(self, QRectF: QRectF, /) -> None: ... method __init__ (line 7391) | def __init__(self, /) -> None: ... method adjust (line 7392) | def adjust(self, x1: float, y1: float, x2: float, y2: float, /) -> Non... method adjusted (line 7393) | def adjusted(self, x1: float, y1: float, x2: float, y2: float, /) -> Q... method bottom (line 7394) | def bottom(self, /) -> float: ... method bottomLeft (line 7395) | def bottomLeft(self, /) -> QPointF: ... method bottomRight (line 7396) | def bottomRight(self, /) -> QPointF: ... method center (line 7397) | def center(self, /) -> QPointF: ... method contains (line 7399) | def contains(self, x: float, y: float, /) -> bool: ... method contains (line 7401) | def contains(self, r: QRectF | QRect, /) -> bool: ... method contains (line 7403) | def contains(self, p: QPointF | QPoint, /) -> bool: ... method getCoords (line 7404) | def getCoords(self, /) -> typing.Any: ... method getRect (line 7405) | def getRect(self, /) -> typing.Any: ... method height (line 7406) | def height(self, /) -> float: ... method intersected (line 7407) | def intersected(self, other: QRectF | QRect, /) -> QRectF: ... method intersects (line 7408) | def intersects(self, r: QRectF | QRect, /) -> bool: ... method isEmpty (line 7409) | def isEmpty(self, /) -> bool: ... method isNull (line 7410) | def isNull(self, /) -> bool: ... method isValid (line 7411) | def isValid(self, /) -> bool: ... method left (line 7412) | def left(self, /) -> float: ... method marginsAdded (line 7413) | def marginsAdded(self, margins: QMarginsF | QMargins, /) -> QRectF: ... method marginsRemoved (line 7414) | def marginsRemoved(self, margins: QMarginsF | QMargins, /) -> QRectF: ... method moveBottom (line 7415) | def moveBottom(self, pos: float, /) -> None: ... method moveBottomLeft (line 7416) | def moveBottomLeft(self, p: QPointF | QPoint, /) -> None: ... method moveBottomRight (line 7417) | def moveBottomRight(self, p: QPointF | QPoint, /) -> None: ... method moveCenter (line 7418) | def moveCenter(self, p: QPointF | QPoint, /) -> None: ... method moveLeft (line 7419) | def moveLeft(self, pos: float, /) -> None: ... method moveRight (line 7420) | def moveRight(self, pos: float, /) -> None: ... method moveTo (line 7422) | def moveTo(self, x: float, y: float, /) -> None: ... method moveTo (line 7424) | def moveTo(self, p: QPointF | QPoint, /) -> None: ... method moveTop (line 7425) | def moveTop(self, pos: float, /) -> None: ... method moveTopLeft (line 7426) | def moveTopLeft(self, p: QPointF | QPoint, /) -> None: ... method moveTopRight (line 7427) | def moveTopRight(self, p: QPointF | QPoint, /) -> None: ... method normalized (line 7428) | def normalized(self, /) -> QRectF: ... method right (line 7429) | def right(self, /) -> float: ... method setBottom (line 7430) | def setBottom(self, pos: float, /) -> None: ... method setBottomLeft (line 7431) | def setBottomLeft(self, p: QPointF | QPoint, /) -> None: ... method setBottomRight (line 7432) | def setBottomRight(self, p: QPointF | QPoint, /) -> None: ... method setCoords (line 7433) | def setCoords(self, x1: float, y1: float, x2: float, y2: float, /) -> ... method setHeight (line 7434) | def setHeight(self, h: float, /) -> None: ... method setLeft (line 7435) | def setLeft(self, pos: float, /) -> None: ... method setRect (line 7436) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRight (line 7437) | def setRight(self, pos: float, /) -> None: ... method setSize (line 7438) | def setSize(self, s: QSizeF | QSize, /) -> None: ... method setTop (line 7439) | def setTop(self, pos: float, /) -> None: ... method setTopLeft (line 7440) | def setTopLeft(self, p: QPointF | QPoint, /) -> None: ... method setTopRight (line 7441) | def setTopRight(self, p: QPointF | QPoint, /) -> None: ... method setWidth (line 7442) | def setWidth(self, w: float, /) -> None: ... method setX (line 7443) | def setX(self, pos: float, /) -> None: ... method setY (line 7444) | def setY(self, pos: float, /) -> None: ... method size (line 7445) | def size(self, /) -> QSizeF: ... method toAlignedRect (line 7446) | def toAlignedRect(self, /) -> QRect: ... method toRect (line 7447) | def toRect(self, /) -> QRect: ... method top (line 7448) | def top(self, /) -> float: ... method topLeft (line 7449) | def topLeft(self, /) -> QPointF: ... method topRight (line 7450) | def topRight(self, /) -> QPointF: ... method translate (line 7452) | def translate(self, dx: float, dy: float, /) -> None: ... method translate (line 7454) | def translate(self, p: QPointF | QPoint, /) -> None: ... method translated (line 7456) | def translated(self, dx: float, dy: float, /) -> QRectF: ... method translated (line 7458) | def translated(self, p: QPointF | QPoint, /) -> QRectF: ... method transposed (line 7459) | def transposed(self, /) -> QRectF: ... method united (line 7460) | def united(self, other: QRectF | QRect, /) -> QRectF: ... method width (line 7461) | def width(self, /) -> float: ... method x (line 7462) | def x(self, /) -> float: ... method y (line 7463) | def y(self, /) -> float: ... method __add__ (line 7464) | def __add__(self, lhs: QMarginsF | QMargins, /) -> QRectF: ... method __and__ (line 7465) | def __and__(self, r: QRectF | QRect, /) -> QRectF: ... method __bool__ (line 7466) | def __bool__(self) -> bool: ... method __copy__ (line 7467) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7468) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7469) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7470) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 7471) | def __iadd__(self, margins: QMarginsF | QMargins, /) -> QRectF: ... method __iand__ (line 7472) | def __iand__(self, r: QRectF | QRect, /) -> QRectF: ... method __ior__ (line 7473) | def __ior__(self, r: QRectF | QRect, /) -> QRectF: ... method __isub__ (line 7474) | def __isub__(self, margins: QMarginsF | QMargins, /) -> QRectF: ... method __le__ (line 7475) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7476) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7477) | def __ne__(self, other: object) -> bool: ... method __or__ (line 7478) | def __or__(self, r: QRectF | QRect, /) -> QRectF: ... method __radd__ (line 7479) | def __radd__(self, other): ... method __rand__ (line 7480) | def __rand__(self, other): ... method __ror__ (line 7481) | def __ror__(self, other): ... method __rsub__ (line 7482) | def __rsub__(self, other): ... method __sub__ (line 7483) | def __sub__(self, rhs: QMarginsF | QMargins, /) -> QRectF: ... class QRecursiveMutex (line 7485) | class QRecursiveMutex(shiboken6.Object): method __init__ (line 7486) | def __init__(self, /) -> None: ... method lock (line 7487) | def lock(self, /) -> None: ... method tryLock (line 7489) | def tryLock(self, timeout: int, /) -> bool: ... method tryLock (line 7491) | def tryLock(self, /, timer: QDeadlineTimer | QDeadlineTimer.ForeverCon... method try_lock (line 7492) | def try_lock(self, /) -> bool: ... method unlock (line 7493) | def unlock(self, /) -> None: ... class QRegularExpression (line 7495) | class QRegularExpression(shiboken6.Object): class MatchOption (line 7496) | class MatchOption(enum.Flag): class MatchType (line 7502) | class MatchType(enum.Enum): class PatternOption (line 7508) | class PatternOption(enum.Flag): class WildcardConversionOption (line 7518) | class WildcardConversionOption(enum.Flag): method __init__ (line 7523) | def __init__(self, pattern: str, /, options: QRegularExpression.Patter... method __init__ (line 7525) | def __init__(self, re: QRegularExpression, /) -> None: ... method __init__ (line 7527) | def __init__(self, /) -> None: ... method anchoredPattern (line 7529) | def anchoredPattern(expression: str, /) -> str: ... method captureCount (line 7530) | def captureCount(self, /) -> int: ... method errorString (line 7531) | def errorString(self, /) -> str: ... method escape (line 7533) | def escape(str: str, /) -> str: ... method fromWildcard (line 7535) | def fromWildcard(pattern: str, /, cs: Qt.CaseSensitivity = ..., option... method globalMatch (line 7536) | def globalMatch(self, subject: str, /, offset: int | None = ..., match... method globalMatchView (line 7537) | def globalMatchView(self, subjectView: str, /, offset: int | None = ..... method isValid (line 7538) | def isValid(self, /) -> bool: ... method match (line 7539) | def match(self, subject: str, /, offset: int | None = ..., matchType: ... method matchView (line 7540) | def matchView(self, subjectView: str, /, offset: int | None = ..., mat... method namedCaptureGroups (line 7541) | def namedCaptureGroups(self, /) -> List[str]: ... method optimize (line 7542) | def optimize(self, /) -> None: ... method pattern (line 7543) | def pattern(self, /) -> str: ... method patternErrorOffset (line 7544) | def patternErrorOffset(self, /) -> int: ... method patternOptions (line 7545) | def patternOptions(self, /) -> QRegularExpression.PatternOption: ... method setPattern (line 7546) | def setPattern(self, pattern: str, /) -> None: ... method setPatternOptions (line 7547) | def setPatternOptions(self, options: QRegularExpression.PatternOption,... method swap (line 7548) | def swap(self, other: QRegularExpression | str, /) -> None: ... method wildcardToRegularExpression (line 7550) | def wildcardToRegularExpression(str: str, /, options: QRegularExpressi... method __copy__ (line 7551) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7552) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7553) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7554) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7555) | def __hash__(self, /) -> int: ... method __le__ (line 7556) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7557) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7558) | def __ne__(self, other: object) -> bool: ... class QRegularExpressionMatch (line 7560) | class QRegularExpressionMatch(shiboken6.Object): method __init__ (line 7562) | def __init__(self, match: QRegularExpressionMatch, /) -> None: ... method __init__ (line 7564) | def __init__(self, /) -> None: ... method captured (line 7566) | def captured(self, name: str, /) -> str: ... method captured (line 7568) | def captured(self, /, nth: int | None = ...) -> str: ... method capturedEnd (line 7570) | def capturedEnd(self, name: str, /) -> int: ... method capturedEnd (line 7572) | def capturedEnd(self, /, nth: int | None = ...) -> int: ... method capturedLength (line 7574) | def capturedLength(self, name: str, /) -> int: ... method capturedLength (line 7576) | def capturedLength(self, /, nth: int | None = ...) -> int: ... method capturedStart (line 7578) | def capturedStart(self, name: str, /) -> int: ... method capturedStart (line 7580) | def capturedStart(self, /, nth: int | None = ...) -> int: ... method capturedTexts (line 7581) | def capturedTexts(self, /) -> List[str]: ... method capturedView (line 7583) | def capturedView(self, name: str, /) -> str: ... method capturedView (line 7585) | def capturedView(self, /, nth: int | None = ...) -> str: ... method hasCaptured (line 7587) | def hasCaptured(self, nth: int, /) -> bool: ... method hasCaptured (line 7589) | def hasCaptured(self, name: str, /) -> bool: ... method hasMatch (line 7590) | def hasMatch(self, /) -> bool: ... method hasPartialMatch (line 7591) | def hasPartialMatch(self, /) -> bool: ... method isValid (line 7592) | def isValid(self, /) -> bool: ... method lastCapturedIndex (line 7593) | def lastCapturedIndex(self, /) -> int: ... method matchOptions (line 7594) | def matchOptions(self, /) -> QRegularExpression.MatchOption: ... method matchType (line 7595) | def matchType(self, /) -> QRegularExpression.MatchType: ... method regularExpression (line 7596) | def regularExpression(self, /) -> QRegularExpression: ... method swap (line 7597) | def swap(self, other: QRegularExpressionMatch, /) -> None: ... method __copy__ (line 7598) | def __copy__(self, /) -> typing_extensions.Self: ... class QRegularExpressionMatchIterator (line 7600) | class QRegularExpressionMatchIterator(shiboken6.Object): method __init__ (line 7602) | def __init__(self, iterator: QRegularExpressionMatchIterator, /) -> No... method __init__ (line 7604) | def __init__(self, /) -> None: ... method hasNext (line 7605) | def hasNext(self, /) -> bool: ... method isValid (line 7606) | def isValid(self, /) -> bool: ... method matchOptions (line 7607) | def matchOptions(self, /) -> QRegularExpression.MatchOption: ... method matchType (line 7608) | def matchType(self, /) -> QRegularExpression.MatchType: ... method next (line 7609) | def next(self, /) -> QRegularExpressionMatch: ... method peekNext (line 7610) | def peekNext(self, /) -> QRegularExpressionMatch: ... method regularExpression (line 7611) | def regularExpression(self, /) -> QRegularExpression: ... method swap (line 7612) | def swap(self, other: QRegularExpressionMatchIterator, /) -> None: ... method __copy__ (line 7613) | def __copy__(self, /) -> typing_extensions.Self: ... class QResource (line 7615) | class QResource(shiboken6.Object): class Compression (line 7616) | class Compression(enum.Enum): method __init__ (line 7620) | def __init__(self, /, file: str = ..., locale: QLocale | QLocale.Langu... method absoluteFilePath (line 7621) | def absoluteFilePath(self, /) -> str: ... method children (line 7622) | def children(self, /) -> List[str]: ... method compressionAlgorithm (line 7623) | def compressionAlgorithm(self, /) -> QResource.Compression: ... method data (line 7624) | def data(self, /) -> typing.Any: ... method fileName (line 7625) | def fileName(self, /) -> str: ... method isDir (line 7626) | def isDir(self, /) -> bool: ... method isFile (line 7627) | def isFile(self, /) -> bool: ... method isValid (line 7628) | def isValid(self, /) -> bool: ... method lastModified (line 7629) | def lastModified(self, /) -> QDateTime: ... method locale (line 7630) | def locale(self, /) -> QLocale: ... method registerResource (line 7632) | def registerResource(rccFilename: str, /, resourceRoot: str = ...) -> ... method registerResourceData (line 7634) | def registerResourceData(rccData: bytes | bytearray | memoryview, /, r... method setFileName (line 7635) | def setFileName(self, file: str, /) -> None: ... method setLocale (line 7636) | def setLocale(self, locale: QLocale | QLocale.Language, /) -> None: ... method size (line 7637) | def size(self, /) -> int: ... method uncompressedData (line 7638) | def uncompressedData(self, /) -> QByteArray: ... method uncompressedSize (line 7639) | def uncompressedSize(self, /) -> int: ... method unregisterResource (line 7641) | def unregisterResource(rccFilename: str, /, resourceRoot: str = ...) -... method unregisterResourceData (line 7643) | def unregisterResourceData(rccData: bytes | bytearray | memoryview, /,... class QRunnable (line 7645) | class QRunnable(shiboken6.Object): method __init__ (line 7646) | def __init__(self, /) -> None: ... method autoDelete (line 7647) | def autoDelete(self, /) -> bool: ... method create (line 7649) | def create(functionToRun: object, /) -> QRunnable: ... method run (line 7650) | def run(self, /) -> None: ... method setAutoDelete (line 7651) | def setAutoDelete(self, autoDelete: bool, /) -> None: ... class QSaveFile (line 7653) | class QSaveFile(QFileDevice): method __init__ (line 7656) | def __init__(self, name: str, parent: QObject | None, /, aboutToClose:... method __init__ (line 7658) | def __init__(self, name: str, /, aboutToClose: typing.Callable = ..., ... method __init__ (line 7660) | def __init__(self, /, parent: QObject | None = ..., aboutToClose: typi... method cancelWriting (line 7661) | def cancelWriting(self, /) -> None: ... method close (line 7662) | def close(self, /) -> None: ... method commit (line 7663) | def commit(self, /) -> bool: ... method directWriteFallback (line 7664) | def directWriteFallback(self, /) -> bool: ... method fileName (line 7665) | def fileName(self, /) -> str: ... method open (line 7666) | def open(self, flags: QIODeviceBase.OpenModeFlag, /) -> bool: ... method setDirectWriteFallback (line 7667) | def setDirectWriteFallback(self, enabled: bool, /) -> None: ... method setFileName (line 7668) | def setFileName(self, name: str, /) -> None: ... method writeData (line 7669) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QSemaphore (line 7671) | class QSemaphore(shiboken6.Object): method __init__ (line 7672) | def __init__(self, /, n: int | None = ...) -> None: ... method acquire (line 7673) | def acquire(self, /, n: int = ...) -> None: ... method available (line 7674) | def available(self, /) -> int: ... method release (line 7675) | def release(self, /, n: int = ...) -> None: ... method tryAcquire (line 7677) | def tryAcquire(self, n: int, timeout: int, /) -> bool: ... method tryAcquire (line 7679) | def tryAcquire(self, n: int, timeout: QDeadlineTimer | QDeadlineTimer.... method tryAcquire (line 7681) | def tryAcquire(self, /, n: int = ...) -> bool: ... class QSemaphoreReleaser (line 7683) | class QSemaphoreReleaser(shiboken6.Object): method __init__ (line 7685) | def __init__(self, sem: QSemaphore, /, n: int = ...) -> None: ... method __init__ (line 7687) | def __init__(self, /) -> None: ... method cancel (line 7688) | def cancel(self, /) -> QSemaphore: ... method semaphore (line 7689) | def semaphore(self, /) -> QSemaphore: ... method swap (line 7690) | def swap(self, other: QSemaphoreReleaser, /) -> None: ... class QSequentialAnimationGroup (line 7692) | class QSequentialAnimationGroup(QAnimationGroup): method __init__ (line 7695) | def __init__(self, /, parent: QObject | None = ..., *, currentAnimatio... method addPause (line 7696) | def addPause(self, msecs: int, /) -> QPauseAnimation: ... method currentAnimation (line 7697) | def currentAnimation(self, /) -> QAbstractAnimation: ... method duration (line 7698) | def duration(self, /) -> int: ... method event (line 7699) | def event(self, event: QEvent, /) -> bool: ... method insertPause (line 7700) | def insertPause(self, index: int, msecs: int, /) -> QPauseAnimation: ... method updateCurrentTime (line 7701) | def updateCurrentTime(self, arg__1: int, /) -> None: ... method updateDirection (line 7702) | def updateDirection(self, direction: QAbstractAnimation.Direction, /) ... method updateState (line 7703) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QSettings (line 7705) | class QSettings(QObject): class Format (line 7706) | class Format(enum.Enum): class Scope (line 7727) | class Scope(enum.Enum): class Status (line 7731) | class Status(enum.Enum): method __init__ (line 7737) | def __init__(self, format: QSettings.Format, scope: QSettings.Scope, o... method __init__ (line 7739) | def __init__(self, scope: QSettings.Scope, organization: str, /, appli... method __init__ (line 7741) | def __init__(self, organization: str, /, application: str = ..., paren... method __init__ (line 7743) | def __init__(self, fileName: str, format: QSettings.Format, /, parent:... method __init__ (line 7745) | def __init__(self, scope: QSettings.Scope, /, parent: QObject | None =... method __init__ (line 7747) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method allKeys (line 7748) | def allKeys(self, /) -> List[str]: ... method applicationName (line 7749) | def applicationName(self, /) -> str: ... method beginGroup (line 7750) | def beginGroup(self, prefix: str, /) -> None: ... method beginReadArray (line 7751) | def beginReadArray(self, prefix: str, /) -> int: ... method beginWriteArray (line 7752) | def beginWriteArray(self, prefix: str, /, size: int = ...) -> None: ... method childGroups (line 7753) | def childGroups(self, /) -> List[str]: ... method childKeys (line 7754) | def childKeys(self, /) -> List[str]: ... method clear (line 7755) | def clear(self, /) -> None: ... method contains (line 7756) | def contains(self, key: str, /) -> bool: ... method defaultFormat (line 7758) | def defaultFormat() -> QSettings.Format: ... method endArray (line 7759) | def endArray(self, /) -> None: ... method endGroup (line 7760) | def endGroup(self, /) -> None: ... method event (line 7761) | def event(self, event: QEvent, /) -> bool: ... method fallbacksEnabled (line 7762) | def fallbacksEnabled(self, /) -> bool: ... method fileName (line 7763) | def fileName(self, /) -> str: ... method format (line 7764) | def format(self, /) -> QSettings.Format: ... method group (line 7765) | def group(self, /) -> str: ... method isAtomicSyncRequired (line 7766) | def isAtomicSyncRequired(self, /) -> bool: ... method isWritable (line 7767) | def isWritable(self, /) -> bool: ... method organizationName (line 7768) | def organizationName(self, /) -> str: ... method remove (line 7769) | def remove(self, key: str, /) -> None: ... method scope (line 7770) | def scope(self, /) -> QSettings.Scope: ... method setArrayIndex (line 7771) | def setArrayIndex(self, i: int, /) -> None: ... method setAtomicSyncRequired (line 7772) | def setAtomicSyncRequired(self, enable: bool, /) -> None: ... method setDefaultFormat (line 7774) | def setDefaultFormat(format: QSettings.Format, /) -> None: ... method setFallbacksEnabled (line 7775) | def setFallbacksEnabled(self, b: bool, /) -> None: ... method setPath (line 7777) | def setPath(format: QSettings.Format, scope: QSettings.Scope, path: st... method setValue (line 7778) | def setValue(self, key: str, value: Any, /) -> None: ... method status (line 7779) | def status(self, /) -> QSettings.Status: ... method sync (line 7780) | def sync(self, /) -> None: ... method value (line 7782) | def value(self, arg__1: str, /, defaultValue: Any = ..., type: object ... method value (line 7784) | def value(self, key: str, /) -> Any: ... # type: ignore[overload-cann... class QSharedMemory (line 7786) | class QSharedMemory(QObject): class AccessMode (line 7787) | class AccessMode(enum.Enum): class SharedMemoryError (line 7791) | class SharedMemoryError(enum.Enum): method __init__ (line 7803) | def __init__(self, key: str, /, parent: QObject | None = ..., destroye... method __init__ (line 7805) | def __init__(self, key: QNativeIpcKey | str, /, parent: QObject | None... method __init__ (line 7807) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method attach (line 7808) | def attach(self, /, mode: QSharedMemory.AccessMode = ...) -> bool: ... method constData (line 7809) | def constData(self, /) -> int: ... method create (line 7810) | def create(self, size: int, /, mode: QSharedMemory.AccessMode = ...) -... method data (line 7811) | def data(self, /) -> int: ... method detach (line 7812) | def detach(self, /) -> bool: ... method error (line 7813) | def error(self, /) -> QSharedMemory.SharedMemoryError: ... method errorString (line 7814) | def errorString(self, /) -> str: ... method isAttached (line 7815) | def isAttached(self, /) -> bool: ... method isKeyTypeSupported (line 7817) | def isKeyTypeSupported(type: QNativeIpcKey.Type, /) -> bool: ... method key (line 7818) | def key(self, /) -> str: ... method legacyNativeKey (line 7820) | def legacyNativeKey(key: str, /, type: QNativeIpcKey.Type = ...) -> QN... method lock (line 7821) | def lock(self, /) -> bool: ... method nativeIpcKey (line 7822) | def nativeIpcKey(self, /) -> QNativeIpcKey: ... method nativeKey (line 7823) | def nativeKey(self, /) -> str: ... method platformSafeKey (line 7825) | def platformSafeKey(key: str, /, type: QNativeIpcKey.Type = ...) -> QN... method setKey (line 7826) | def setKey(self, key: str, /) -> None: ... method setNativeKey (line 7828) | def setNativeKey(self, key: str, /, type: QNativeIpcKey.Type = ...) ->... method setNativeKey (line 7830) | def setNativeKey(self, key: QNativeIpcKey | str, /) -> None: ... method size (line 7831) | def size(self, /) -> int: ... method unlock (line 7832) | def unlock(self, /) -> bool: ... class QSignalBlocker (line 7834) | class QSignalBlocker(shiboken6.Object): method __init__ (line 7835) | def __init__(self, o: QObject, /) -> None: ... method dismiss (line 7836) | def dismiss(self, /) -> None: ... method reblock (line 7837) | def reblock(self, /) -> None: ... method unblock (line 7838) | def unblock(self, /) -> None: ... method __enter__ (line 7839) | def __enter__(self, /) -> QSignalBlocker: ... method __exit__ (line 7840) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QSignalMapper (line 7842) | class QSignalMapper(QObject): method __init__ (line 7847) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method map (line 7849) | def map(self, sender: QObject, /) -> None: ... method map (line 7851) | def map(self, /) -> None: ... method mapping (line 7853) | def mapping(self, text: str, /) -> QObject: ... method mapping (line 7855) | def mapping(self, object: QObject, /) -> QObject: ... method mapping (line 7857) | def mapping(self, id: int, /) -> QObject: ... method removeMappings (line 7858) | def removeMappings(self, sender: QObject, /) -> None: ... method setMapping (line 7860) | def setMapping(self, sender: QObject, text: str, /) -> None: ... method setMapping (line 7862) | def setMapping(self, sender: QObject, object: QObject, /) -> None: ... method setMapping (line 7864) | def setMapping(self, sender: QObject, id: int, /) -> None: ... class QSize (line 7866) | class QSize(shiboken6.Object): method __init__ (line 7868) | def __init__(self, w: int, h: int, /) -> None: ... method __init__ (line 7870) | def __init__(self, QSize: QSize, /) -> None: ... method __init__ (line 7872) | def __init__(self, /) -> None: ... method boundedTo (line 7873) | def boundedTo(self, arg__1: QSize, /) -> QSize: ... method expandedTo (line 7874) | def expandedTo(self, arg__1: QSize, /) -> QSize: ... method grownBy (line 7875) | def grownBy(self, m: QMargins, /) -> QSize: ... method height (line 7876) | def height(self, /) -> int: ... method isEmpty (line 7877) | def isEmpty(self, /) -> bool: ... method isNull (line 7878) | def isNull(self, /) -> bool: ... method isValid (line 7879) | def isValid(self, /) -> bool: ... method scale (line 7881) | def scale(self, w: int, h: int, mode: Qt.AspectRatioMode, /) -> None: ... method scale (line 7883) | def scale(self, s: QSize, mode: Qt.AspectRatioMode, /) -> None: ... method scaled (line 7885) | def scaled(self, w: int, h: int, mode: Qt.AspectRatioMode, /) -> QSize... method scaled (line 7887) | def scaled(self, s: QSize, mode: Qt.AspectRatioMode, /) -> QSize: ... method setHeight (line 7888) | def setHeight(self, h: int, /) -> None: ... method setWidth (line 7889) | def setWidth(self, w: int, /) -> None: ... method shrunkBy (line 7890) | def shrunkBy(self, m: QMargins, /) -> QSize: ... method toSizeF (line 7891) | def toSizeF(self, /) -> QSizeF: ... method toTuple (line 7892) | def toTuple(self, /) -> Tuple[int, int]: ... method transpose (line 7893) | def transpose(self, /) -> None: ... method transposed (line 7894) | def transposed(self, /) -> QSize: ... method width (line 7895) | def width(self, /) -> int: ... method __add__ (line 7896) | def __add__(self, s2: QSize, /) -> QSize: ... method __bool__ (line 7897) | def __bool__(self) -> bool: ... method __copy__ (line 7898) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7899) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7900) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7901) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7902) | def __hash__(self, /) -> int: ... method __iadd__ (line 7903) | def __iadd__(self, arg__1: QSize, /) -> QSize: ... method __imul__ (line 7904) | def __imul__(self, c: float, /) -> QSize: ... method __isub__ (line 7905) | def __isub__(self, arg__1: QSize, /) -> QSize: ... method __le__ (line 7906) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7907) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7908) | def __mul__(self, c: float, /) -> QSize: ... method __ne__ (line 7909) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 7910) | def __radd__(self, other): ... method __rmul__ (line 7911) | def __rmul__(self, other): ... method __rsub__ (line 7912) | def __rsub__(self, other): ... method __rtruediv__ (line 7913) | def __rtruediv__(self, other): ... method __sub__ (line 7914) | def __sub__(self, s2: QSize, /) -> QSize: ... method __truediv__ (line 7915) | def __truediv__(self, other): ... class QSizeF (line 7917) | class QSizeF(shiboken6.Object): method __init__ (line 7919) | def __init__(self, w: float, h: float, /) -> None: ... method __init__ (line 7921) | def __init__(self, sz: QSize, /) -> None: ... method __init__ (line 7923) | def __init__(self, QSizeF: QSizeF, /) -> None: ... method __init__ (line 7925) | def __init__(self, /) -> None: ... method boundedTo (line 7926) | def boundedTo(self, arg__1: QSizeF | QSize, /) -> QSizeF: ... method expandedTo (line 7927) | def expandedTo(self, arg__1: QSizeF | QSize, /) -> QSizeF: ... method grownBy (line 7928) | def grownBy(self, m: QMarginsF | QMargins, /) -> QSizeF: ... method height (line 7929) | def height(self, /) -> float: ... method isEmpty (line 7930) | def isEmpty(self, /) -> bool: ... method isNull (line 7931) | def isNull(self, /) -> bool: ... method isValid (line 7932) | def isValid(self, /) -> bool: ... method scale (line 7934) | def scale(self, w: float, h: float, mode: Qt.AspectRatioMode, /) -> No... method scale (line 7936) | def scale(self, s: QSizeF | QSize, mode: Qt.AspectRatioMode, /) -> Non... method scaled (line 7938) | def scaled(self, w: float, h: float, mode: Qt.AspectRatioMode, /) -> Q... method scaled (line 7940) | def scaled(self, s: QSizeF | QSize, mode: Qt.AspectRatioMode, /) -> QS... method setHeight (line 7941) | def setHeight(self, h: float, /) -> None: ... method setWidth (line 7942) | def setWidth(self, w: float, /) -> None: ... method shrunkBy (line 7943) | def shrunkBy(self, m: QMarginsF | QMargins, /) -> QSizeF: ... method toSize (line 7944) | def toSize(self, /) -> QSize: ... method toTuple (line 7945) | def toTuple(self, /) -> Tuple[float, float]: ... method transpose (line 7946) | def transpose(self, /) -> None: ... method transposed (line 7947) | def transposed(self, /) -> QSizeF: ... method width (line 7948) | def width(self, /) -> float: ... method __add__ (line 7949) | def __add__(self, s2: QSizeF | QSize, /) -> QSizeF: ... method __bool__ (line 7950) | def __bool__(self) -> bool: ... method __copy__ (line 7951) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7952) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7953) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7954) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 7955) | def __iadd__(self, arg__1: QSizeF | QSize, /) -> QSizeF: ... method __imul__ (line 7956) | def __imul__(self, c: float, /) -> QSizeF: ... method __isub__ (line 7957) | def __isub__(self, arg__1: QSizeF | QSize, /) -> QSizeF: ... method __le__ (line 7958) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7959) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 7960) | def __mul__(self, c: float, /) -> QSizeF: ... method __ne__ (line 7961) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 7962) | def __radd__(self, other): ... method __rmul__ (line 7963) | def __rmul__(self, other): ... method __rsub__ (line 7964) | def __rsub__(self, other): ... method __rtruediv__ (line 7965) | def __rtruediv__(self, other): ... method __sub__ (line 7966) | def __sub__(self, s2: QSizeF | QSize, /) -> QSizeF: ... method __truediv__ (line 7967) | def __truediv__(self, other): ... class QSocketDescriptor (line 7969) | class QSocketDescriptor(shiboken6.Object): method __init__ (line 7971) | def __init__(self, QSocketDescriptor: QSocketDescriptor, /) -> None: ... method __init__ (line 7973) | def __init__(self, /, descriptor: int = ...) -> None: ... method isValid (line 7974) | def isValid(self, /) -> bool: ... method __copy__ (line 7975) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7976) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7977) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7978) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7979) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7980) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7981) | def __ne__(self, other: object) -> bool: ... class QSocketNotifier (line 7983) | class QSocketNotifier(QObject): class Type (line 7984) | class Type(enum.Enum): method __init__ (line 7991) | def __init__(self, socket: int, arg__2: QSocketNotifier.Type, /, paren... method __init__ (line 7993) | def __init__(self, arg__1: object, arg__2: QSocketNotifier.Type, /, pa... method __init__ (line 7995) | def __init__(self, arg__1: QSocketNotifier.Type, /, parent: QObject | ... method event (line 7996) | def event(self, arg__1: QEvent, /) -> bool: ... method isEnabled (line 7997) | def isEnabled(self, /) -> bool: ... method isValid (line 7998) | def isValid(self, /) -> bool: ... method setEnabled (line 7999) | def setEnabled(self, arg__1: bool, /) -> None: ... method setSocket (line 8000) | def setSocket(self, socket: int, /) -> None: ... method socket (line 8001) | def socket(self, /) -> int: ... method type (line 8002) | def type(self, /) -> QSocketNotifier.Type: ... class QSortFilterProxyModel (line 8004) | class QSortFilterProxyModel(QAbstractProxyModel): class Direction (line 8005) | class Direction(enum.Flag): method __init__ (line 8018) | def __init__(self, /, parent: QObject | None = ..., *, filterRegularEx... method autoAcceptChildRows (line 8019) | def autoAcceptChildRows(self, /) -> bool: ... method beginFilterChange (line 8020) | def beginFilterChange(self, /) -> None: ... method buddy (line 8021) | def buddy(self, index: QModelIndex | QPersistentModelIndex, /) -> QMod... method canFetchMore (line 8022) | def canFetchMore(self, parent: QModelIndex | QPersistentModelIndex, /)... method columnCount (line 8023) | def columnCount(self, /, parent: QModelIndex | QPersistentModelIndex =... method data (line 8024) | def data(self, index: QModelIndex | QPersistentModelIndex, /, role: Qt... method dropMimeData (line 8025) | def dropMimeData(self, data: QMimeData, action: Qt.DropAction, row: in... method dynamicSortFilter (line 8026) | def dynamicSortFilter(self, /) -> bool: ... method endFilterChange (line 8027) | def endFilterChange(self, /, directions: QSortFilterProxyModel.Directi... method fetchMore (line 8028) | def fetchMore(self, parent: QModelIndex | QPersistentModelIndex, /) ->... method filterAcceptsColumn (line 8029) | def filterAcceptsColumn(self, source_column: int, source_parent: QMode... method filterAcceptsRow (line 8030) | def filterAcceptsRow(self, source_row: int, source_parent: QModelIndex... method filterCaseSensitivity (line 8031) | def filterCaseSensitivity(self, /) -> Qt.CaseSensitivity: ... method filterKeyColumn (line 8032) | def filterKeyColumn(self, /) -> int: ... method filterRegularExpression (line 8033) | def filterRegularExpression(self, /) -> QRegularExpression: ... method filterRole (line 8034) | def filterRole(self, /) -> Qt.ItemDataRole: ... method flags (line 8035) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method hasChildren (line 8036) | def hasChildren(self, /, parent: QModelIndex | QPersistentModelIndex =... method headerData (line 8037) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method index (line 8038) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method insertColumns (line 8039) | def insertColumns(self, column: int, count: int, /, parent: QModelInde... method insertRows (line 8040) | def insertRows(self, row: int, count: int, /, parent: QModelIndex | QP... method invalidate (line 8041) | def invalidate(self, /) -> None: ... method invalidateColumnsFilter (line 8042) | def invalidateColumnsFilter(self, /) -> None: ... method invalidateFilter (line 8043) | def invalidateFilter(self, /) -> None: ... method invalidateRowsFilter (line 8044) | def invalidateRowsFilter(self, /) -> None: ... method isRecursiveFilteringEnabled (line 8045) | def isRecursiveFilteringEnabled(self, /) -> bool: ... method isSortLocaleAware (line 8046) | def isSortLocaleAware(self, /) -> bool: ... method lessThan (line 8047) | def lessThan(self, source_left: QModelIndex | QPersistentModelIndex, s... method mapFromSource (line 8048) | def mapFromSource(self, sourceIndex: QModelIndex | QPersistentModelInd... method mapSelectionFromSource (line 8049) | def mapSelectionFromSource(self, sourceSelection: QItemSelection, /) -... method mapSelectionToSource (line 8050) | def mapSelectionToSource(self, proxySelection: QItemSelection, /) -> Q... method mapToSource (line 8051) | def mapToSource(self, proxyIndex: QModelIndex | QPersistentModelIndex,... method match (line 8052) | def match(self, start: QModelIndex | QPersistentModelIndex, role: Qt.I... method mimeData (line 8053) | def mimeData(self, indexes: typing.Iterable[QModelIndex | QPersistentM... method mimeTypes (line 8054) | def mimeTypes(self, /) -> List[str]: ... method parent (line 8056) | def parent(self, child: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 8058) | def parent(self, /) -> QObject: ... method removeColumns (line 8059) | def removeColumns(self, column: int, count: int, /, parent: QModelInde... method removeRows (line 8060) | def removeRows(self, row: int, count: int, /, parent: QModelIndex | QP... method rowCount (line 8061) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setAutoAcceptChildRows (line 8062) | def setAutoAcceptChildRows(self, accept: bool, /) -> None: ... method setData (line 8063) | def setData(self, index: QModelIndex | QPersistentModelIndex, value: A... method setDynamicSortFilter (line 8064) | def setDynamicSortFilter(self, enable: bool, /) -> None: ... method setFilterCaseSensitivity (line 8065) | def setFilterCaseSensitivity(self, cs: Qt.CaseSensitivity, /) -> None:... method setFilterFixedString (line 8066) | def setFilterFixedString(self, pattern: str, /) -> None: ... method setFilterKeyColumn (line 8067) | def setFilterKeyColumn(self, column: int, /) -> None: ... method setFilterRegularExpression (line 8069) | def setFilterRegularExpression(self, regularExpression: QRegularExpres... method setFilterRegularExpression (line 8071) | def setFilterRegularExpression(self, pattern: str, /) -> None: ... # ... method setFilterRole (line 8072) | def setFilterRole(self, role: Qt.ItemDataRole | int, /) -> None: ... method setFilterWildcard (line 8073) | def setFilterWildcard(self, pattern: str, /) -> None: ... method setHeaderData (line 8074) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setRecursiveFilteringEnabled (line 8075) | def setRecursiveFilteringEnabled(self, recursive: bool, /) -> None: ... method setSortCaseSensitivity (line 8076) | def setSortCaseSensitivity(self, cs: Qt.CaseSensitivity, /) -> None: ... method setSortLocaleAware (line 8077) | def setSortLocaleAware(self, on: bool, /) -> None: ... method setSortRole (line 8078) | def setSortRole(self, role: Qt.ItemDataRole | int, /) -> None: ... method setSourceModel (line 8079) | def setSourceModel(self, sourceModel: QAbstractItemModel, /) -> None: ... method sibling (line 8080) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... method sort (line 8081) | def sort(self, column: int, /, order: Qt.SortOrder = ...) -> None: ... method sortCaseSensitivity (line 8082) | def sortCaseSensitivity(self, /) -> Qt.CaseSensitivity: ... method sortColumn (line 8083) | def sortColumn(self, /) -> int: ... method sortOrder (line 8084) | def sortOrder(self, /) -> Qt.SortOrder: ... method sortRole (line 8085) | def sortRole(self, /) -> int: ... method span (line 8086) | def span(self, index: QModelIndex | QPersistentModelIndex, /) -> QSize... method supportedDropActions (line 8087) | def supportedDropActions(self, /) -> Qt.DropAction: ... class QStandardPaths (line 8089) | class QStandardPaths(shiboken6.Object): class LocateOption (line 8090) | class LocateOption(enum.Flag): class StandardLocation (line 8094) | class StandardLocation(enum.Enum): method __init__ (line 8118) | def __init__(self, *args, **kwargs) -> None: ... method displayName (line 8120) | def displayName(type: QStandardPaths.StandardLocation, /) -> str: ... method findExecutable (line 8122) | def findExecutable(executableName: str, /, paths: typing.Iterable[str]... method isTestModeEnabled (line 8124) | def isTestModeEnabled() -> bool: ... method locate (line 8126) | def locate(type: QStandardPaths.StandardLocation, fileName: str, /, op... method locateAll (line 8128) | def locateAll(type: QStandardPaths.StandardLocation, fileName: str, /,... method setTestModeEnabled (line 8130) | def setTestModeEnabled(testMode: bool, /) -> None: ... method standardLocations (line 8132) | def standardLocations(type: QStandardPaths.StandardLocation, /) -> Lis... method writableLocation (line 8134) | def writableLocation(type: QStandardPaths.StandardLocation, /) -> str:... class QStorageInfo (line 8136) | class QStorageInfo(shiboken6.Object): method __init__ (line 8138) | def __init__(self, path: str, /) -> None: ... method __init__ (line 8140) | def __init__(self, other: QStorageInfo, /) -> None: ... method __init__ (line 8142) | def __init__(self, dir: QDir, /) -> None: ... method __init__ (line 8144) | def __init__(self, /) -> None: ... method blockSize (line 8145) | def blockSize(self, /) -> int: ... method bytesAvailable (line 8146) | def bytesAvailable(self, /) -> int: ... method bytesFree (line 8147) | def bytesFree(self, /) -> int: ... method bytesTotal (line 8148) | def bytesTotal(self, /) -> int: ... method device (line 8149) | def device(self, /) -> QByteArray: ... method displayName (line 8150) | def displayName(self, /) -> str: ... method fileSystemType (line 8151) | def fileSystemType(self, /) -> QByteArray: ... method isReadOnly (line 8152) | def isReadOnly(self, /) -> bool: ... method isReady (line 8153) | def isReady(self, /) -> bool: ... method isRoot (line 8154) | def isRoot(self, /) -> bool: ... method isValid (line 8155) | def isValid(self, /) -> bool: ... method mountedVolumes (line 8157) | def mountedVolumes() -> List[QStorageInfo]: ... method name (line 8158) | def name(self, /) -> str: ... method refresh (line 8159) | def refresh(self, /) -> None: ... method root (line 8161) | def root() -> QStorageInfo: ... method rootPath (line 8162) | def rootPath(self, /) -> str: ... method setPath (line 8163) | def setPath(self, path: str, /) -> None: ... method subvolume (line 8164) | def subvolume(self, /) -> QByteArray: ... method swap (line 8165) | def swap(self, other: QStorageInfo, /) -> None: ... method __copy__ (line 8166) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8167) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8168) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8169) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8170) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8171) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8172) | def __ne__(self, other: object) -> bool: ... class QStringConverter (line 8174) | class QStringConverter(QStringConverterBase): class Encoding (line 8175) | class Encoding(enum.Enum): method __init__ (line 8188) | def __init__(self, name: str, f: QStringConverterBase.Flag, /) -> None... method __init__ (line 8190) | def __init__(self, encoding: QStringConverter.Encoding, f: QStringConv... method __init__ (line 8192) | def __init__(self, /) -> None: ... method availableCodecs (line 8194) | def availableCodecs() -> List[str]: ... method hasError (line 8195) | def hasError(self, /) -> bool: ... method isValid (line 8196) | def isValid(self, /) -> bool: ... method name (line 8197) | def name(self, /) -> bytes | bytearray | memoryview: ... method nameForEncoding (line 8199) | def nameForEncoding(e: QStringConverter.Encoding, /) -> bytes | bytear... method resetState (line 8200) | def resetState(self, /) -> None: ... class QStringConverterBase (line 8202) | class QStringConverterBase(shiboken6.Object): class Flag (line 8203) | class Flag(enum.Flag): class State (line 8211) | class State(shiboken6.Object): method __init__ (line 8216) | def __init__(self, /, f: QStringConverterBase.Flag = ...) -> None: ... method clear (line 8217) | def clear(self, /) -> None: ... method reset (line 8218) | def reset(self, /) -> None: ... method __init__ (line 8219) | def __init__(self, /) -> None: ... class QStringDecoder (line 8221) | class QStringDecoder(QStringConverter): method __init__ (line 8223) | def __init__(self, name: str, /, f: QStringConverterBase.Flag = ...) -... method __init__ (line 8225) | def __init__(self, encoding: QStringConverter.Encoding, /, flags: QStr... method __init__ (line 8227) | def __init__(self, /) -> None: ... method appendToBuffer (line 8228) | def appendToBuffer(self, out: bytes | bytearray | memoryview, ba: QByt... method decoderForHtml (line 8230) | def decoderForHtml(data: QByteArray | bytes | bytearray | memoryview, ... method requiredSpace (line 8231) | def requiredSpace(self, inputLength: int, /) -> int: ... class QStringEncoder (line 8233) | class QStringEncoder(QStringConverter): method __init__ (line 8235) | def __init__(self, name: str, /, flags: QStringConverterBase.Flag = ..... method __init__ (line 8237) | def __init__(self, encoding: QStringConverter.Encoding, /, flags: QStr... method __init__ (line 8239) | def __init__(self, /) -> None: ... method requiredSpace (line 8240) | def requiredSpace(self, inputLength: int, /) -> int: ... class QStringListModel (line 8242) | class QStringListModel(QAbstractListModel): method __init__ (line 8245) | def __init__(self, strings: typing.Iterable[str], /, parent: QObject |... method __init__ (line 8247) | def __init__(self, /, parent: QObject | None = ..., columnsAboutToBeIn... method clearItemData (line 8248) | def clearItemData(self, index: QModelIndex | QPersistentModelIndex, /)... method data (line 8249) | def data(self, index: QModelIndex | QPersistentModelIndex, /, role: Qt... method flags (line 8250) | def flags(self, index: QModelIndex | QPersistentModelIndex, /) -> Qt.I... method insertRows (line 8251) | def insertRows(self, row: int, count: int, /, parent: QModelIndex | QP... method itemData (line 8252) | def itemData(self, index: QModelIndex | QPersistentModelIndex, /) -> D... method moveRows (line 8253) | def moveRows(self, sourceParent: QModelIndex | QPersistentModelIndex, ... method removeRows (line 8254) | def removeRows(self, row: int, count: int, /, parent: QModelIndex | QP... method rowCount (line 8255) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setData (line 8256) | def setData(self, index: QModelIndex | QPersistentModelIndex, value: A... method setItemData (line 8257) | def setItemData(self, index: QModelIndex | QPersistentModelIndex, role... method setStringList (line 8258) | def setStringList(self, strings: typing.Iterable[str], /) -> None: ... method sibling (line 8259) | def sibling(self, row: int, column: int, idx: QModelIndex | QPersisten... method sort (line 8260) | def sort(self, column: int, /, order: Qt.SortOrder = ...) -> None: ... method stringList (line 8261) | def stringList(self, /) -> List[str]: ... method supportedDropActions (line 8262) | def supportedDropActions(self, /) -> Qt.DropAction: ... class QSysInfo (line 8264) | class QSysInfo(shiboken6.Object): class Endian (line 8265) | class Endian(enum.Enum): class Sizes (line 8270) | class Sizes(enum.Enum): method __init__ (line 8272) | def __init__(self, /) -> None: ... method bootUniqueId (line 8274) | def bootUniqueId() -> QByteArray: ... method buildAbi (line 8276) | def buildAbi() -> str: ... method buildCpuArchitecture (line 8278) | def buildCpuArchitecture() -> str: ... method currentCpuArchitecture (line 8280) | def currentCpuArchitecture() -> str: ... method kernelType (line 8282) | def kernelType() -> str: ... method kernelVersion (line 8284) | def kernelVersion() -> str: ... method machineHostName (line 8286) | def machineHostName() -> str: ... method machineUniqueId (line 8288) | def machineUniqueId() -> QByteArray: ... method prettyProductName (line 8290) | def prettyProductName() -> str: ... method productType (line 8292) | def productType() -> str: ... method productVersion (line 8294) | def productVersion() -> str: ... class QSystemSemaphore (line 8296) | class QSystemSemaphore(shiboken6.Object): class AccessMode (line 8297) | class AccessMode(enum.Enum): class SystemSemaphoreError (line 8301) | class SystemSemaphoreError(enum.Enum): method __init__ (line 8310) | def __init__(self, key: str, /, initialValue: int | None = ..., mode: ... method __init__ (line 8312) | def __init__(self, key: QNativeIpcKey | str, /, initialValue: int | No... method acquire (line 8313) | def acquire(self, /) -> bool: ... method error (line 8314) | def error(self, /) -> QSystemSemaphore.SystemSemaphoreError: ... method errorString (line 8315) | def errorString(self, /) -> str: ... method isKeyTypeSupported (line 8317) | def isKeyTypeSupported(type: QNativeIpcKey.Type, /) -> bool: ... method key (line 8318) | def key(self, /) -> str: ... method legacyNativeKey (line 8320) | def legacyNativeKey(key: str, /, type: QNativeIpcKey.Type = ...) -> QN... method nativeIpcKey (line 8321) | def nativeIpcKey(self, /) -> QNativeIpcKey: ... method platformSafeKey (line 8323) | def platformSafeKey(key: str, /, type: QNativeIpcKey.Type = ...) -> QN... method release (line 8324) | def release(self, /, n: int = ...) -> bool: ... method setKey (line 8325) | def setKey(self, key: str, /, initialValue: int | None = ..., mode: QS... method setNativeKey (line 8327) | def setNativeKey(self, key: str, /, initialValue: int | None = ..., mo... method setNativeKey (line 8329) | def setNativeKey(self, key: QNativeIpcKey | str, /, initialValue: int ... class QTemporaryDir (line 8331) | class QTemporaryDir(shiboken6.Object): method __init__ (line 8333) | def __init__(self, templateName: str, /) -> None: ... method __init__ (line 8335) | def __init__(self, /) -> None: ... method autoRemove (line 8336) | def autoRemove(self, /) -> bool: ... method errorString (line 8337) | def errorString(self, /) -> str: ... method filePath (line 8338) | def filePath(self, fileName: str, /) -> str: ... method isValid (line 8339) | def isValid(self, /) -> bool: ... method path (line 8340) | def path(self, /) -> str: ... method remove (line 8341) | def remove(self, /) -> bool: ... method setAutoRemove (line 8342) | def setAutoRemove(self, b: bool, /) -> None: ... method swap (line 8343) | def swap(self, other: QTemporaryDir, /) -> None: ... class QTemporaryFile (line 8345) | class QTemporaryFile(QFile): method __init__ (line 8348) | def __init__(self, templateName: str, parent: QObject | None, /, about... method __init__ (line 8350) | def __init__(self, templateName: str, /, aboutToClose: typing.Callable... method __init__ (line 8352) | def __init__(self, parent: QObject | None, /, aboutToClose: typing.Cal... method __init__ (line 8354) | def __init__(self, /, aboutToClose: typing.Callable = ..., bytesWritte... method autoRemove (line 8355) | def autoRemove(self, /) -> bool: ... method createNativeFile (line 8358) | def createNativeFile(fileName: str, /) -> QTemporaryFile: ... method createNativeFile (line 8361) | def createNativeFile(file: QFile, /) -> QTemporaryFile: ... method fileName (line 8362) | def fileName(self, /) -> str: ... method fileTemplate (line 8363) | def fileTemplate(self, /) -> str: ... method open (line 8365) | def open(self, flags: QIODeviceBase.OpenModeFlag, /) -> bool: ... method open (line 8367) | def open(self, /) -> bool: ... method rename (line 8368) | def rename(self, newName: str | bytes | os.PathLike[str], /) -> bool: ... method setAutoRemove (line 8369) | def setAutoRemove(self, b: bool, /) -> None: ... method setFileTemplate (line 8370) | def setFileTemplate(self, name: str, /) -> None: ... class QTextBoundaryFinder (line 8372) | class QTextBoundaryFinder(shiboken6.Object): class BoundaryReason (line 8373) | class BoundaryReason(enum.Flag): class BoundaryType (line 8381) | class BoundaryType(enum.Enum): method __init__ (line 8387) | def __init__(self, type: QTextBoundaryFinder.BoundaryType, str: str, /... method __init__ (line 8389) | def __init__(self, type: QTextBoundaryFinder.BoundaryType, string: str... method __init__ (line 8391) | def __init__(self, other: QTextBoundaryFinder, /) -> None: ... method __init__ (line 8393) | def __init__(self, /) -> None: ... method boundaryReasons (line 8394) | def boundaryReasons(self, /) -> QTextBoundaryFinder.BoundaryReason: ... method isAtBoundary (line 8395) | def isAtBoundary(self, /) -> bool: ... method isValid (line 8396) | def isValid(self, /) -> bool: ... method position (line 8397) | def position(self, /) -> int: ... method setPosition (line 8398) | def setPosition(self, position: int, /) -> None: ... method string (line 8399) | def string(self, /) -> str: ... method toEnd (line 8400) | def toEnd(self, /) -> None: ... method toNextBoundary (line 8401) | def toNextBoundary(self, /) -> int: ... method toPreviousBoundary (line 8402) | def toPreviousBoundary(self, /) -> int: ... method toStart (line 8403) | def toStart(self, /) -> None: ... method type (line 8404) | def type(self, /) -> QTextBoundaryFinder.BoundaryType: ... method __copy__ (line 8405) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextStream (line 8407) | class QTextStream(QIODeviceBase): class FieldAlignment (line 8408) | class FieldAlignment(enum.Enum): class NumberFlag (line 8414) | class NumberFlag(enum.Flag): class RealNumberNotation (line 8421) | class RealNumberNotation(enum.Enum): class Status (line 8426) | class Status(enum.Enum): method __init__ (line 8432) | def __init__(self, array: QByteArray | bytes | bytearray | memoryview,... method __init__ (line 8434) | def __init__(self, device: QIODevice, /) -> None: ... method __init__ (line 8436) | def __init__(self, /) -> None: ... method atEnd (line 8437) | def atEnd(self, /) -> bool: ... method autoDetectUnicode (line 8438) | def autoDetectUnicode(self, /) -> bool: ... method device (line 8439) | def device(self, /) -> QIODevice: ... method encoding (line 8440) | def encoding(self, /) -> QStringConverter.Encoding: ... method fieldAlignment (line 8441) | def fieldAlignment(self, /) -> QTextStream.FieldAlignment: ... method fieldWidth (line 8442) | def fieldWidth(self, /) -> int: ... method flush (line 8443) | def flush(self, /) -> None: ... method generateByteOrderMark (line 8444) | def generateByteOrderMark(self, /) -> bool: ... method integerBase (line 8445) | def integerBase(self, /) -> int: ... method locale (line 8446) | def locale(self, /) -> QLocale: ... method numberFlags (line 8447) | def numberFlags(self, /) -> QTextStream.NumberFlag: ... method padChar (line 8448) | def padChar(self, /) -> str: ... method pos (line 8449) | def pos(self, /) -> int: ... method read (line 8450) | def read(self, maxlen: int, /) -> str: ... method readAll (line 8451) | def readAll(self, /) -> str: ... method readLine (line 8452) | def readLine(self, /, maxlen: int | None = ...) -> str: ... method readLineInto (line 8453) | def readLineInto(self, /, maxlen: int | None = ...) -> Tuple[bool, str... method realNumberNotation (line 8454) | def realNumberNotation(self, /) -> QTextStream.RealNumberNotation: ... method realNumberPrecision (line 8455) | def realNumberPrecision(self, /) -> int: ... method reset (line 8456) | def reset(self, /) -> None: ... method resetStatus (line 8457) | def resetStatus(self, /) -> None: ... method seek (line 8458) | def seek(self, pos: int, /) -> bool: ... method setAutoDetectUnicode (line 8459) | def setAutoDetectUnicode(self, enabled: bool, /) -> None: ... method setDevice (line 8460) | def setDevice(self, device: QIODevice, /) -> None: ... method setEncoding (line 8461) | def setEncoding(self, encoding: QStringConverter.Encoding, /) -> None:... method setFieldAlignment (line 8462) | def setFieldAlignment(self, alignment: QTextStream.FieldAlignment, /) ... method setFieldWidth (line 8463) | def setFieldWidth(self, width: int, /) -> None: ... method setGenerateByteOrderMark (line 8464) | def setGenerateByteOrderMark(self, generate: bool, /) -> None: ... method setIntegerBase (line 8465) | def setIntegerBase(self, base: int, /) -> None: ... method setLocale (line 8466) | def setLocale(self, locale: QLocale | QLocale.Language, /) -> None: ... method setNumberFlags (line 8467) | def setNumberFlags(self, flags: QTextStream.NumberFlag, /) -> None: ... method setPadChar (line 8468) | def setPadChar(self, ch: str, /) -> None: ... method setRealNumberNotation (line 8469) | def setRealNumberNotation(self, notation: QTextStream.RealNumberNotati... method setRealNumberPrecision (line 8470) | def setRealNumberPrecision(self, precision: int, /) -> None: ... method setStatus (line 8471) | def setStatus(self, status: QTextStream.Status, /) -> None: ... method skipWhiteSpace (line 8472) | def skipWhiteSpace(self, /) -> None: ... method status (line 8473) | def status(self, /) -> QTextStream.Status: ... method string (line 8474) | def string(self, /) -> List[str]: ... method __lshift__ (line 8476) | def __lshift__(self, m: QTextStreamManipulator, /) -> QTextStream: ... method __lshift__ (line 8478) | def __lshift__(self, f: float, /) -> QTextStream: ... method __lshift__ (line 8480) | def __lshift__(self, ch: str, /) -> QTextStream: ... method __lshift__ (line 8482) | def __lshift__(self, ch: int, /) -> QTextStream: ... # type: ignore[o... method __lshift__ (line 8484) | def __lshift__(self, array: QByteArray | bytes | bytearray | memoryvie... method __rlshift__ (line 8485) | def __rlshift__(self, other): ... method __rrshift__ (line 8486) | def __rrshift__(self, other): ... method __rshift__ (line 8487) | def __rshift__(self, array: QByteArray | bytes | bytearray | memoryvie... class QTextStreamManipulator (line 8489) | class QTextStreamManipulator(shiboken6.Object): method __init__ (line 8490) | def __init__(self, QTextStreamManipulator: QTextStreamManipulator, /) ... method exec (line 8491) | def exec(self, s: QTextStream, /) -> None: ... method exec_ (line 8492) | def exec_(self, arg__1: QTextStream, /) -> None: ... method __copy__ (line 8493) | def __copy__(self, /) -> typing_extensions.Self: ... class QThread (line 8495) | class QThread(QObject): class Priority (line 8496) | class Priority(enum.Enum): class QualityOfService (line 8506) | class QualityOfService(enum.Enum): method __init__ (line 8513) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method currentThread (line 8515) | def currentThread() -> QThread: ... method event (line 8516) | def event(self, event: QEvent, /) -> bool: ... method eventDispatcher (line 8517) | def eventDispatcher(self, /) -> QAbstractEventDispatcher: ... method exec (line 8518) | def exec(self, /) -> int: ... method exec_ (line 8519) | def exec_(self, /) -> int: ... method exit (line 8520) | def exit(self, /, retcode: int | None = ...) -> None: ... method idealThreadCount (line 8522) | def idealThreadCount() -> int: ... method isCurrentThread (line 8523) | def isCurrentThread(self, /) -> bool: ... method isFinished (line 8524) | def isFinished(self, /) -> bool: ... method isInterruptionRequested (line 8525) | def isInterruptionRequested(self, /) -> bool: ... method isMainThread (line 8527) | def isMainThread() -> bool: ... method isRunning (line 8528) | def isRunning(self, /) -> bool: ... method loopLevel (line 8529) | def loopLevel(self, /) -> int: ... method msleep (line 8531) | def msleep(arg__1: int, /) -> None: ... method priority (line 8532) | def priority(self, /) -> QThread.Priority: ... method quit (line 8533) | def quit(self, /) -> None: ... method requestInterruption (line 8534) | def requestInterruption(self, /) -> None: ... method run (line 8535) | def run(self, /) -> None: ... method serviceLevel (line 8536) | def serviceLevel(self, /) -> QThread.QualityOfService: ... method setEventDispatcher (line 8537) | def setEventDispatcher(self, eventDispatcher: QAbstractEventDispatcher... method setPriority (line 8538) | def setPriority(self, priority: QThread.Priority, /) -> None: ... method setServiceLevel (line 8539) | def setServiceLevel(self, serviceLevel: QThread.QualityOfService, /) -... method setStackSize (line 8540) | def setStackSize(self, stackSize: int, /) -> None: ... method setTerminationEnabled (line 8542) | def setTerminationEnabled(enabled: bool = ...) -> None: ... method sleep (line 8544) | def sleep(arg__1: int, /) -> None: ... method stackSize (line 8545) | def stackSize(self, /) -> int: ... method start (line 8546) | def start(self, /, priority: QThread.Priority = ...) -> None: ... method terminate (line 8547) | def terminate(self, /) -> None: ... method usleep (line 8549) | def usleep(arg__1: int, /) -> None: ... method wait (line 8551) | def wait(self, time: int, /) -> bool: ... method wait (line 8553) | def wait(self, /, deadline: QDeadlineTimer | QDeadlineTimer.ForeverCon... method yieldCurrentThread (line 8555) | def yieldCurrentThread() -> None: ... class QThreadPool (line 8557) | class QThreadPool(QObject): method __init__ (line 8559) | def __init__(self, /, parent: QObject | None = ..., *, expiryTimeout: ... method activeThreadCount (line 8560) | def activeThreadCount(self, /) -> int: ... method clear (line 8561) | def clear(self, /) -> None: ... method contains (line 8562) | def contains(self, thread: QThread, /) -> bool: ... method expiryTimeout (line 8563) | def expiryTimeout(self, /) -> int: ... method globalInstance (line 8565) | def globalInstance() -> QThreadPool: ... method maxThreadCount (line 8566) | def maxThreadCount(self, /) -> int: ... method releaseThread (line 8567) | def releaseThread(self, /) -> None: ... method reserveThread (line 8568) | def reserveThread(self, /) -> None: ... method serviceLevel (line 8569) | def serviceLevel(self, /) -> QThread.QualityOfService: ... method setExpiryTimeout (line 8570) | def setExpiryTimeout(self, expiryTimeout: int, /) -> None: ... method setMaxThreadCount (line 8571) | def setMaxThreadCount(self, maxThreadCount: int, /) -> None: ... method setServiceLevel (line 8572) | def setServiceLevel(self, serviceLevel: QThread.QualityOfService, /) -... method setStackSize (line 8573) | def setStackSize(self, stackSize: int, /) -> None: ... method setThreadPriority (line 8574) | def setThreadPriority(self, priority: QThread.Priority, /) -> None: ... method stackSize (line 8575) | def stackSize(self, /) -> int: ... method start (line 8577) | def start(self, runnable: QRunnable, /, priority: int | None = ...) ->... method start (line 8579) | def start(self, arg__1: collections.abc.Callable[..., typing.Any], /, ... method startOnReservedThread (line 8580) | def startOnReservedThread(self, runnable: QRunnable, /) -> None: ... method threadPriority (line 8581) | def threadPriority(self, /) -> QThread.Priority: ... method tryStart (line 8583) | def tryStart(self, runnable: QRunnable, /) -> bool: ... method tryStart (line 8585) | def tryStart(self, callable: collections.abc.Callable[..., typing.Any]... method tryTake (line 8586) | def tryTake(self, runnable: QRunnable, /) -> bool: ... method waitForDone (line 8588) | def waitForDone(self, msecs: int, /) -> bool: ... method waitForDone (line 8590) | def waitForDone(self, /, deadline: QDeadlineTimer | QDeadlineTimer.For... class QTime (line 8592) | class QTime(shiboken6.Object): method __init__ (line 8594) | def __init__(self, h: int, m: int, /, s: int | None = ..., ms: int | N... method __init__ (line 8596) | def __init__(self, QTime: QTime, /) -> None: ... method __init__ (line 8598) | def __init__(self, /) -> None: ... method addMSecs (line 8599) | def addMSecs(self, ms: int, /) -> QTime: ... method addSecs (line 8600) | def addSecs(self, secs: int, /) -> QTime: ... method currentTime (line 8602) | def currentTime() -> QTime: ... method fromMSecsSinceStartOfDay (line 8604) | def fromMSecsSinceStartOfDay(msecs: int, /) -> QTime: ... method fromString (line 8607) | def fromString(string: str, format: str, /) -> QTime: ... method fromString (line 8610) | def fromString(string: str, /, format: Qt.DateFormat = ...) -> QTime: ... method hour (line 8611) | def hour(self, /) -> int: ... method isNull (line 8612) | def isNull(self, /) -> bool: ... method isValid (line 8614) | def isValid(self) -> typing.Any: ... method minute (line 8615) | def minute(self, /) -> int: ... method msec (line 8616) | def msec(self, /) -> int: ... method msecsSinceStartOfDay (line 8617) | def msecsSinceStartOfDay(self, /) -> int: ... method msecsTo (line 8618) | def msecsTo(self, t: QTime, /) -> int: ... method second (line 8619) | def second(self, /) -> int: ... method secsTo (line 8620) | def secsTo(self, t: QTime, /) -> int: ... method setHMS (line 8621) | def setHMS(self, h: int, m: int, s: int, /, ms: int | None = ...) -> b... method toPython (line 8622) | def toPython(self, /) -> typing.Any: ... method toString (line 8624) | def toString(self, format: str, /) -> str: ... method toString (line 8626) | def toString(self, /, f: Qt.DateFormat = ...) -> str: ... method __bool__ (line 8627) | def __bool__(self) -> bool: ... method __copy__ (line 8628) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8629) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8630) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8631) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8632) | def __hash__(self, /) -> int: ... method __le__ (line 8633) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8634) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8635) | def __ne__(self, other: object) -> bool: ... class QTimeLine (line 8637) | class QTimeLine(QObject): class Direction (line 8638) | class Direction(enum.Enum): class State (line 8642) | class State(enum.Enum): method __init__ (line 8651) | def __init__(self, /, duration: int = ..., parent: QObject | None = ..... method currentFrame (line 8652) | def currentFrame(self, /) -> int: ... method currentTime (line 8653) | def currentTime(self, /) -> int: ... method currentValue (line 8654) | def currentValue(self, /) -> float: ... method direction (line 8655) | def direction(self, /) -> QTimeLine.Direction: ... method duration (line 8656) | def duration(self, /) -> int: ... method easingCurve (line 8657) | def easingCurve(self, /) -> QEasingCurve: ... method endFrame (line 8658) | def endFrame(self, /) -> int: ... method frameForTime (line 8659) | def frameForTime(self, msec: int, /) -> int: ... method loopCount (line 8660) | def loopCount(self, /) -> int: ... method resume (line 8661) | def resume(self, /) -> None: ... method setCurrentTime (line 8662) | def setCurrentTime(self, msec: int, /) -> None: ... method setDirection (line 8663) | def setDirection(self, direction: QTimeLine.Direction, /) -> None: ... method setDuration (line 8664) | def setDuration(self, duration: int, /) -> None: ... method setEasingCurve (line 8665) | def setEasingCurve(self, curve: QEasingCurve | QEasingCurve.Type, /) -... method setEndFrame (line 8666) | def setEndFrame(self, frame: int, /) -> None: ... method setFrameRange (line 8667) | def setFrameRange(self, startFrame: int, endFrame: int, /) -> None: ... method setLoopCount (line 8668) | def setLoopCount(self, count: int, /) -> None: ... method setPaused (line 8669) | def setPaused(self, paused: bool, /) -> None: ... method setStartFrame (line 8670) | def setStartFrame(self, frame: int, /) -> None: ... method setUpdateInterval (line 8671) | def setUpdateInterval(self, interval: int, /) -> None: ... method start (line 8672) | def start(self, /) -> None: ... method startFrame (line 8673) | def startFrame(self, /) -> int: ... method state (line 8674) | def state(self, /) -> QTimeLine.State: ... method stop (line 8675) | def stop(self, /) -> None: ... method timerEvent (line 8676) | def timerEvent(self, event: QTimerEvent, /) -> None: ... method toggleDirection (line 8677) | def toggleDirection(self, /) -> None: ... method updateInterval (line 8678) | def updateInterval(self, /) -> int: ... method valueForTime (line 8679) | def valueForTime(self, msec: int, /) -> float: ... class QTimeZone (line 8681) | class QTimeZone(shiboken6.Object): class Initialization (line 8682) | class Initialization(enum.Enum): class NameType (line 8686) | class NameType(enum.Enum): class OffsetData (line 8692) | class OffsetData(shiboken6.Object): method __init__ (line 8699) | def __init__(self, OffsetData: QTimeZone.OffsetData, /) -> None: ... method __init__ (line 8701) | def __init__(self, /) -> None: ... method __copy__ (line 8702) | def __copy__(self, /) -> typing_extensions.Self: ... class TimeType (line 8704) | class TimeType(enum.Enum): method __init__ (line 8711) | def __init__(self, zoneId: QByteArray | bytes | bytearray | memoryview... method __init__ (line 8713) | def __init__(self, spec: QTimeZone.Initialization, /) -> None: ... method __init__ (line 8715) | def __init__(self, other: QTimeZone, /) -> None: ... method __init__ (line 8717) | def __init__(self, offsetSeconds: int, /) -> None: ... method __init__ (line 8719) | def __init__(self, ianaId: QByteArray | bytes | bytearray | memoryview... method __init__ (line 8721) | def __init__(self, /) -> None: ... method abbreviation (line 8722) | def abbreviation(self, atDateTime: QDateTime | datetime.datetime, /) -... method asBackendZone (line 8723) | def asBackendZone(self, /) -> QTimeZone: ... method availableTimeZoneIds (line 8726) | def availableTimeZoneIds(territory: QLocale.Country, /) -> List[QByteA... method availableTimeZoneIds (line 8729) | def availableTimeZoneIds(offsetSeconds: int, /) -> List[QByteArray]: ... method availableTimeZoneIds (line 8732) | def availableTimeZoneIds() -> List[QByteArray]: ... method comment (line 8733) | def comment(self, /) -> str: ... method country (line 8734) | def country(self, /) -> QLocale.Country: ... method daylightTimeOffset (line 8735) | def daylightTimeOffset(self, atDateTime: QDateTime | datetime.datetime... method displayName (line 8737) | def displayName(self, timeType: QTimeZone.TimeType, /, nameType: QTime... method displayName (line 8739) | def displayName(self, atDateTime: QDateTime | datetime.datetime, /, na... method fixedSecondsAheadOfUtc (line 8740) | def fixedSecondsAheadOfUtc(self, /) -> int: ... method fromDurationAheadOfUtc (line 8742) | def fromDurationAheadOfUtc(offset: int, /) -> QTimeZone: ... method fromSecondsAheadOfUtc (line 8744) | def fromSecondsAheadOfUtc(offset: int, /) -> QTimeZone: ... method hasAlternativeName (line 8745) | def hasAlternativeName(self, alias: QByteArray | bytes | bytearray | m... method hasDaylightTime (line 8746) | def hasDaylightTime(self, /) -> bool: ... method hasTransitions (line 8747) | def hasTransitions(self, /) -> bool: ... method ianaIdToWindowsId (line 8749) | def ianaIdToWindowsId(ianaId: QByteArray | bytes | bytearray | memoryv... method id (line 8750) | def id(self, /) -> QByteArray: ... method isDaylightTime (line 8751) | def isDaylightTime(self, atDateTime: QDateTime | datetime.datetime, /)... method isTimeZoneIdAvailable (line 8753) | def isTimeZoneIdAvailable(ianaId: QByteArray | bytes | bytearray | mem... method isUtcOrFixedOffset (line 8755) | def isUtcOrFixedOffset(self) -> typing.Any: ... method isValid (line 8756) | def isValid(self, /) -> bool: ... method nextTransition (line 8757) | def nextTransition(self, afterDateTime: QDateTime | datetime.datetime,... method offsetData (line 8758) | def offsetData(self, forDateTime: QDateTime | datetime.datetime, /) ->... method offsetFromUtc (line 8759) | def offsetFromUtc(self, atDateTime: QDateTime | datetime.datetime, /) ... method previousTransition (line 8760) | def previousTransition(self, beforeDateTime: QDateTime | datetime.date... method standardTimeOffset (line 8761) | def standardTimeOffset(self, atDateTime: QDateTime | datetime.datetime... method swap (line 8762) | def swap(self, other: QTimeZone | QTimeZone.Initialization, /) -> None... method systemTimeZone (line 8764) | def systemTimeZone() -> QTimeZone: ... method systemTimeZoneId (line 8766) | def systemTimeZoneId() -> QByteArray: ... method territory (line 8767) | def territory(self, /) -> QLocale.Country: ... method timeSpec (line 8768) | def timeSpec(self, /) -> Qt.TimeSpec: ... method transitions (line 8769) | def transitions(self, fromDateTime: QDateTime | datetime.datetime, toD... method utc (line 8771) | def utc() -> QTimeZone: ... method windowsIdToDefaultIanaId (line 8774) | def windowsIdToDefaultIanaId(windowsId: QByteArray | bytes | bytearray... method windowsIdToDefaultIanaId (line 8777) | def windowsIdToDefaultIanaId(windowsId: QByteArray | bytes | bytearray... method windowsIdToIanaIds (line 8780) | def windowsIdToIanaIds(windowsId: QByteArray | bytes | bytearray | mem... method windowsIdToIanaIds (line 8783) | def windowsIdToIanaIds(windowsId: QByteArray | bytes | bytearray | mem... method __copy__ (line 8784) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8785) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8786) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8787) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8788) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8789) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8790) | def __ne__(self, other: object) -> bool: ... class QTimer (line 8792) | class QTimer(QObject): method __init__ (line 8795) | def __init__(self, /, parent: QObject | None = ..., *, singleShot: boo... method id (line 8796) | def id(self, /) -> Qt.TimerId: ... method interval (line 8797) | def interval(self, /) -> int: ... method intervalAsDuration (line 8798) | def intervalAsDuration(self, /) -> int: ... method isActive (line 8799) | def isActive(self, /) -> bool: ... method isSingleShot (line 8800) | def isSingleShot(self, /) -> bool: ... method killTimer (line 8801) | def killTimer(self, arg__1: int, /) -> None: ... # type: ignore[overr... method remainingTime (line 8802) | def remainingTime(self, /) -> int: ... method remainingTimeAsDuration (line 8803) | def remainingTimeAsDuration(self, /) -> int: ... method setInterval (line 8804) | def setInterval(self, msec: int, /) -> None: ... method setSingleShot (line 8805) | def setSingleShot(self, singleShot: bool, /) -> None: ... method setTimerType (line 8806) | def setTimerType(self, atype: Qt.TimerType, /) -> None: ... method singleShot (line 8809) | def singleShot(msec: int, timerType: Qt.TimerType, receiver: QObject, ... method singleShot (line 8812) | def singleShot(msec: int, receiver: QObject, member: bytes | bytearray... method singleShot (line 8815) | def singleShot(msec: int, context: QObject, functor: collections.abc.C... method singleShot (line 8818) | def singleShot(msec: int, functor: collections.abc.Callable[..., typin... method start (line 8820) | def start(self, msec: int, /) -> None: ... method start (line 8822) | def start(self, /) -> None: ... method stop (line 8823) | def stop(self, /) -> None: ... method timerEvent (line 8824) | def timerEvent(self, arg__1: QTimerEvent, /) -> None: ... method timerId (line 8825) | def timerId(self, /) -> int: ... method timerType (line 8826) | def timerType(self, /) -> Qt.TimerType: ... class QTimerEvent (line 8828) | class QTimerEvent(QEvent): method __init__ (line 8831) | def __init__(self, timerId: Qt.TimerId, /) -> None: ... method __init__ (line 8833) | def __init__(self, timerId: int, /) -> None: ... method __init__ (line 8835) | def __init__(self, arg__1: QTimerEvent, /) -> None: ... method clone (line 8836) | def clone(self, /) -> QTimerEvent: ... method id (line 8837) | def id(self, /) -> Qt.TimerId: ... method matches (line 8838) | def matches(self, timer: QBasicTimer, /) -> bool: ... method timerId (line 8839) | def timerId(self, /) -> int: ... class QTranslator (line 8841) | class QTranslator(QObject): method __init__ (line 8843) | def __init__(self, /, parent: QObject | None = ..., destroyed: typing.... method filePath (line 8844) | def filePath(self, /) -> str: ... method isEmpty (line 8845) | def isEmpty(self, /) -> bool: ... method language (line 8846) | def language(self, /) -> str: ... method load (line 8848) | def load(self, locale: QLocale | QLocale.Language, filename: str, /, p... method load (line 8850) | def load(self, filename: str, /, directory: str = ..., search_delimite... method load (line 8852) | def load(self, data: bytes | bytearray | memoryview, /, directory: str... method translate (line 8853) | def translate(self, context: str, sourceText: str, /, disambiguation: ... class QTransposeProxyModel (line 8855) | class QTransposeProxyModel(QAbstractProxyModel): method __init__ (line 8857) | def __init__(self, /, parent: QObject | None = ..., columnsAboutToBeIn... method columnCount (line 8858) | def columnCount(self, /, parent: QModelIndex | QPersistentModelIndex =... method headerData (line 8859) | def headerData(self, section: int, orientation: Qt.Orientation, /, rol... method index (line 8860) | def index(self, row: int, column: int, /, parent: QModelIndex | QPersi... method insertColumns (line 8861) | def insertColumns(self, column: int, count: int, /, parent: QModelInde... method insertRows (line 8862) | def insertRows(self, row: int, count: int, /, parent: QModelIndex | QP... method itemData (line 8863) | def itemData(self, index: QModelIndex | QPersistentModelIndex, /) -> D... method mapFromSource (line 8864) | def mapFromSource(self, sourceIndex: QModelIndex | QPersistentModelInd... method mapToSource (line 8865) | def mapToSource(self, proxyIndex: QModelIndex | QPersistentModelIndex,... method moveColumns (line 8866) | def moveColumns(self, sourceParent: QModelIndex | QPersistentModelInde... method moveRows (line 8867) | def moveRows(self, sourceParent: QModelIndex | QPersistentModelIndex, ... method parent (line 8869) | def parent(self, index: QModelIndex | QPersistentModelIndex, /) -> QMo... method parent (line 8871) | def parent(self, /) -> QObject: ... method removeColumns (line 8872) | def removeColumns(self, column: int, count: int, /, parent: QModelInde... method removeRows (line 8873) | def removeRows(self, row: int, count: int, /, parent: QModelIndex | QP... method rowCount (line 8874) | def rowCount(self, /, parent: QModelIndex | QPersistentModelIndex = ..... method setHeaderData (line 8875) | def setHeaderData(self, section: int, orientation: Qt.Orientation, val... method setItemData (line 8876) | def setItemData(self, index: QModelIndex | QPersistentModelIndex, role... method setSourceModel (line 8877) | def setSourceModel(self, newSourceModel: QAbstractItemModel, /) -> Non... method sort (line 8878) | def sort(self, column: int, /, order: Qt.SortOrder = ...) -> None: ... method span (line 8879) | def span(self, index: QModelIndex | QPersistentModelIndex, /) -> QSize... class QUrl (line 8881) | class QUrl(shiboken6.Object): class AceProcessingOption (line 8882) | class AceProcessingOption(enum.Flag): class ComponentFormattingOption (line 8886) | class ComponentFormattingOption(enum.IntFlag): class ParsingMode (line 8896) | class ParsingMode(enum.Enum): class UrlFormattingOption (line 8901) | class UrlFormattingOption(enum.IntFlag): class UserInputResolutionOption (line 8916) | class UserInputResolutionOption(enum.Flag): method __init__ (line 8920) | def __init__(self, url: str, /, mode: QUrl.ParsingMode = ...) -> None:... method __init__ (line 8922) | def __init__(self, copy: QUrl, /) -> None: ... method __init__ (line 8924) | def __init__(self, /) -> None: ... method adjusted (line 8925) | def adjusted(self, options: QUrl.ComponentFormattingOption, /) -> QUrl... method authority (line 8926) | def authority(self, /, options: QUrl.ComponentFormattingOption = ...) ... method clear (line 8927) | def clear(self, /) -> None: ... method errorString (line 8928) | def errorString(self, /) -> str: ... method fileName (line 8929) | def fileName(self, /, options: QUrl.ComponentFormattingOption = ...) -... method fragment (line 8930) | def fragment(self, /, options: QUrl.ComponentFormattingOption = ...) -... method fromAce (line 8932) | def fromAce(domain: QByteArray | bytes | bytearray | memoryview, /, op... method fromEncoded (line 8934) | def fromEncoded(input: QByteArray | bytes | bytearray | memoryview, /,... method fromLocalFile (line 8936) | def fromLocalFile(localfile: str | bytes | os.PathLike[str], /) -> QUr... method fromPercentEncoding (line 8938) | def fromPercentEncoding(arg__1: QByteArray | bytes | bytearray | memor... method fromStringList (line 8940) | def fromStringList(uris: typing.Iterable[str], /, mode: QUrl.ParsingMo... method fromUserInput (line 8942) | def fromUserInput(userInput: str, /, workingDirectory: str = ..., opti... method hasFragment (line 8943) | def hasFragment(self, /) -> bool: ... method hasQuery (line 8944) | def hasQuery(self, /) -> bool: ... method host (line 8945) | def host(self, /, arg__1: QUrl.ComponentFormattingOption = ...) -> str... method idnWhitelist (line 8947) | def idnWhitelist() -> List[str]: ... method isEmpty (line 8948) | def isEmpty(self, /) -> bool: ... method isLocalFile (line 8949) | def isLocalFile(self, /) -> bool: ... method isParentOf (line 8950) | def isParentOf(self, url: QUrl | str, /) -> bool: ... method isRelative (line 8951) | def isRelative(self, /) -> bool: ... method isValid (line 8952) | def isValid(self, /) -> bool: ... method matches (line 8953) | def matches(self, url: QUrl | str, options: QUrl.ComponentFormattingOp... method password (line 8954) | def password(self, /, arg__1: QUrl.ComponentFormattingOption = ...) ->... method path (line 8955) | def path(self, /, options: QUrl.ComponentFormattingOption = ...) -> st... method port (line 8956) | def port(self, /, defaultPort: int = ...) -> int: ... method query (line 8957) | def query(self, /, arg__1: QUrl.ComponentFormattingOption = ...) -> st... method resolved (line 8958) | def resolved(self, relative: QUrl | str, /) -> QUrl: ... method scheme (line 8959) | def scheme(self, /) -> str: ... method setAuthority (line 8960) | def setAuthority(self, authority: str, /, mode: QUrl.ParsingMode = ...... method setFragment (line 8961) | def setFragment(self, fragment: str, /, mode: QUrl.ParsingMode = ...) ... method setHost (line 8962) | def setHost(self, host: str, /, mode: QUrl.ParsingMode = ...) -> None:... method setIdnWhitelist (line 8964) | def setIdnWhitelist(arg__1: typing.Iterable[str], /) -> None: ... method setPassword (line 8965) | def setPassword(self, password: str, /, mode: QUrl.ParsingMode = ...) ... method setPath (line 8966) | def setPath(self, path: str, /, mode: QUrl.ParsingMode = ...) -> None:... method setPort (line 8967) | def setPort(self, port: int, /) -> None: ... method setQuery (line 8969) | def setQuery(self, query: str, /, mode: QUrl.ParsingMode = ...) -> Non... method setQuery (line 8971) | def setQuery(self, query: QUrlQuery, /) -> None: ... method setScheme (line 8972) | def setScheme(self, scheme: str, /) -> None: ... method setUrl (line 8973) | def setUrl(self, url: str, /, mode: QUrl.ParsingMode = ...) -> None: ... method setUserInfo (line 8974) | def setUserInfo(self, userInfo: str, /, mode: QUrl.ParsingMode = ...) ... method setUserName (line 8975) | def setUserName(self, userName: str, /, mode: QUrl.ParsingMode = ...) ... method swap (line 8976) | def swap(self, other: QUrl | str, /) -> None: ... method toAce (line 8978) | def toAce(domain: str, /, options: QUrl.AceProcessingOption = ...) -> ... method toDisplayString (line 8979) | def toDisplayString(self, /, options: QUrl.ComponentFormattingOption =... method toEncoded (line 8980) | def toEncoded(self, /, options: QUrl.ComponentFormattingOption = ...) ... method toLocalFile (line 8981) | def toLocalFile(self, /) -> str: ... method toPercentEncoding (line 8983) | def toPercentEncoding(arg__1: str, /, exclude: QByteArray | bytes | by... method toString (line 8984) | def toString(self, /, options: QUrl.ComponentFormattingOption = ...) -... method toStringList (line 8986) | def toStringList(uris: typing.Iterable[QUrl], /, options: QUrl.Compone... method url (line 8987) | def url(self, /, options: QUrl.ComponentFormattingOption = ...) -> str... method userInfo (line 8988) | def userInfo(self, /, options: QUrl.ComponentFormattingOption = ...) -... method userName (line 8989) | def userName(self, /, options: QUrl.ComponentFormattingOption = ...) -... method __copy__ (line 8990) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8991) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8992) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8993) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8994) | def __hash__(self, /) -> int: ... method __le__ (line 8995) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8996) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8997) | def __ne__(self, other: object) -> bool: ... class QUrlQuery (line 8999) | class QUrlQuery(shiboken6.Object): method __init__ (line 9001) | def __init__(self, url: QUrl | str, /) -> None: ... method __init__ (line 9003) | def __init__(self, queryString: str, /) -> None: ... # type: ignore[o... method __init__ (line 9005) | def __init__(self, other: QUrlQuery, /) -> None: ... method __init__ (line 9007) | def __init__(self, /) -> None: ... method addQueryItem (line 9008) | def addQueryItem(self, key: str, value: str, /) -> None: ... method allQueryItemValues (line 9009) | def allQueryItemValues(self, key: str, /, encoding: QUrl.ComponentForm... method clear (line 9010) | def clear(self, /) -> None: ... method hasQueryItem (line 9011) | def hasQueryItem(self, key: str, /) -> bool: ... method isEmpty (line 9012) | def isEmpty(self, /) -> bool: ... method query (line 9013) | def query(self, /, encoding: QUrl.ComponentFormattingOption = ...) -> ... method queryItemValue (line 9014) | def queryItemValue(self, key: str, /, encoding: QUrl.ComponentFormatti... method queryItems (line 9015) | def queryItems(self, /, encoding: QUrl.ComponentFormattingOption = ...... method queryPairDelimiter (line 9016) | def queryPairDelimiter(self, /) -> str: ... method queryValueDelimiter (line 9017) | def queryValueDelimiter(self, /) -> str: ... method removeAllQueryItems (line 9018) | def removeAllQueryItems(self, key: str, /) -> None: ... method removeQueryItem (line 9019) | def removeQueryItem(self, key: str, /) -> None: ... method setQuery (line 9020) | def setQuery(self, queryString: str, /) -> None: ... method setQueryDelimiters (line 9021) | def setQueryDelimiters(self, valueDelimiter: str, pairDelimiter: str, ... method setQueryItems (line 9022) | def setQueryItems(self, query: typing.Iterable[tuple[str, str]], /) ->... method swap (line 9023) | def swap(self, other: QUrlQuery, /) -> None: ... method toString (line 9024) | def toString(self, /, encoding: QUrl.ComponentFormattingOption = ...) ... method __copy__ (line 9025) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9026) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9027) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9028) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9029) | def __hash__(self, /) -> int: ... method __le__ (line 9030) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9031) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9032) | def __ne__(self, other: object) -> bool: ... class QUuid (line 9034) | class QUuid(shiboken6.Object): class StringFormat (line 9035) | class StringFormat(enum.Enum): class Variant (line 9040) | class Variant(enum.Enum): class Version (line 9047) | class Version(enum.Enum): method __init__ (line 9057) | def __init__(self, l: int, w1: int, w2: int, b1: int, b2: int, b3: int... method __init__ (line 9059) | def __init__(self, string: str, /) -> None: ... method __init__ (line 9061) | def __init__(self, QUuid: QUuid, /) -> None: ... method __init__ (line 9063) | def __init__(self, /) -> None: ... method createUuid (line 9065) | def createUuid() -> QUuid: ... method createUuidV3 (line 9067) | def createUuidV3(ns: QUuid, baseData: QByteArray | bytes | bytearray |... method createUuidV5 (line 9069) | def createUuidV5(ns: QUuid, baseData: QByteArray | bytes | bytearray |... method createUuidV7 (line 9071) | def createUuidV7() -> QUuid: ... method fromBytes (line 9073) | def fromBytes(bytes: int, /, order: QSysInfo.Endian = ...) -> QUuid: ... method fromRfc4122 (line 9075) | def fromRfc4122(arg__1: QByteArray | bytes | bytearray | memoryview, /... method fromString (line 9077) | def fromString(string: str, /) -> QUuid: ... method isNull (line 9078) | def isNull(self, /) -> bool: ... method toByteArray (line 9079) | def toByteArray(self, /, mode: QUuid.StringFormat = ...) -> QByteArray... method toRfc4122 (line 9080) | def toRfc4122(self, /) -> QByteArray: ... method toString (line 9081) | def toString(self, /, mode: QUuid.StringFormat = ...) -> str: ... method variant (line 9082) | def variant(self, /) -> QUuid.Variant: ... method version (line 9083) | def version(self, /) -> QUuid.Version: ... method __bool__ (line 9084) | def __bool__(self) -> bool: ... method __copy__ (line 9085) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9086) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9087) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9088) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9089) | def __hash__(self, /) -> int: ... method __le__ (line 9090) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9091) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9092) | def __ne__(self, other: object) -> bool: ... class QVariantAnimation (line 9094) | class QVariantAnimation(QAbstractAnimation): method __init__ (line 9097) | def __init__(self, /, parent: QObject | None = ..., *, startValue: Opt... method currentValue (line 9098) | def currentValue(self, /) -> Any: ... method duration (line 9099) | def duration(self, /) -> int: ... method easingCurve (line 9100) | def easingCurve(self, /) -> QEasingCurve: ... method endValue (line 9101) | def endValue(self, /) -> Any: ... method event (line 9102) | def event(self, event: QEvent, /) -> bool: ... method interpolated (line 9103) | def interpolated(self, from_: Any, to: Any, progress: float, /) -> Any... method keyValueAt (line 9104) | def keyValueAt(self, step: float, /) -> Any: ... method keyValues (line 9105) | def keyValues(self, /) -> List[Tuple[float, Any]]: ... method setDuration (line 9106) | def setDuration(self, msecs: int, /) -> None: ... method setEasingCurve (line 9107) | def setEasingCurve(self, easing: QEasingCurve | QEasingCurve.Type, /) ... method setEndValue (line 9108) | def setEndValue(self, value: Any, /) -> None: ... method setKeyValueAt (line 9109) | def setKeyValueAt(self, step: float, value: Any, /) -> None: ... method setKeyValues (line 9110) | def setKeyValues(self, values: typing.Iterable[tuple[float, typing.Any... method setStartValue (line 9111) | def setStartValue(self, value: Any, /) -> None: ... method startValue (line 9112) | def startValue(self, /) -> Any: ... method updateCurrentTime (line 9113) | def updateCurrentTime(self, arg__1: int, /) -> None: ... method updateCurrentValue (line 9114) | def updateCurrentValue(self, value: Any, /) -> None: ... method updateState (line 9115) | def updateState(self, newState: QAbstractAnimation.State, oldState: QA... class QVersionNumber (line 9117) | class QVersionNumber(shiboken6.Object): method __init__ (line 9119) | def __init__(self, maj: int, min: int, mic: int, /) -> None: ... method __init__ (line 9121) | def __init__(self, maj: int, min: int, /) -> None: ... method __init__ (line 9123) | def __init__(self, maj: int, /) -> None: ... method __init__ (line 9125) | def __init__(self, QVersionNumber: QVersionNumber, /) -> None: ... method __init__ (line 9127) | def __init__(self, /) -> None: ... method commonPrefix (line 9129) | def commonPrefix(v1: QVersionNumber, v2: QVersionNumber, /) -> QVersio... method compare (line 9131) | def compare(v1: QVersionNumber, v2: QVersionNumber, /) -> int: ... method fromString (line 9133) | def fromString(string: str, /) -> QVersionNumber: ... method isNormalized (line 9134) | def isNormalized(self, /) -> bool: ... method isNull (line 9135) | def isNull(self, /) -> bool: ... method isPrefixOf (line 9136) | def isPrefixOf(self, other: QVersionNumber, /) -> bool: ... method majorVersion (line 9137) | def majorVersion(self, /) -> int: ... method microVersion (line 9138) | def microVersion(self, /) -> int: ... method minorVersion (line 9139) | def minorVersion(self, /) -> int: ... method normalized (line 9140) | def normalized(self, /) -> QVersionNumber: ... method segmentAt (line 9141) | def segmentAt(self, index: int, /) -> int: ... method segmentCount (line 9142) | def segmentCount(self, /) -> int: ... method segments (line 9143) | def segments(self, /) -> List[int]: ... method toString (line 9144) | def toString(self, /) -> str: ... method __bool__ (line 9145) | def __bool__(self) -> bool: ... method __copy__ (line 9146) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9147) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9148) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9149) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9150) | def __hash__(self, /) -> int: ... method __le__ (line 9151) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9152) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9153) | def __ne__(self, other: object) -> bool: ... class QWaitCondition (line 9155) | class QWaitCondition(shiboken6.Object): method __init__ (line 9156) | def __init__(self, /) -> None: ... method notify_all (line 9157) | def notify_all(self, /) -> None: ... method notify_one (line 9158) | def notify_one(self, /) -> None: ... method wait (line 9160) | def wait(self, lockedReadWriteLock: QReadWriteLock, time: int, /) -> b... method wait (line 9162) | def wait(self, lockedReadWriteLock: QReadWriteLock, /, deadline: QDead... method wait (line 9164) | def wait(self, lockedMutex: QMutex, time: int, /) -> bool: ... method wait (line 9166) | def wait(self, lockedMutex: QMutex, /, deadline: QDeadlineTimer | QDea... method wakeAll (line 9167) | def wakeAll(self, /) -> None: ... method wakeOne (line 9168) | def wakeOne(self, /) -> None: ... class QWriteLocker (line 9170) | class QWriteLocker(shiboken6.Object): method __init__ (line 9171) | def __init__(self, readWriteLock: QReadWriteLock, /) -> None: ... method readWriteLock (line 9172) | def readWriteLock(self, /) -> QReadWriteLock: ... method relock (line 9173) | def relock(self, /) -> None: ... method unlock (line 9174) | def unlock(self, /) -> None: ... method __enter__ (line 9175) | def __enter__(self, /) -> QWriteLocker: ... method __exit__ (line 9176) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QXmlStreamAttribute (line 9178) | class QXmlStreamAttribute(shiboken6.Object): method __init__ (line 9180) | def __init__(self, namespaceUri: str, name: str, value: str, /) -> Non... method __init__ (line 9182) | def __init__(self, qualifiedName: str, value: str, /) -> None: ... method __init__ (line 9184) | def __init__(self, QXmlStreamAttribute: QXmlStreamAttribute, /) -> Non... method __init__ (line 9186) | def __init__(self, /) -> None: ... method isDefault (line 9187) | def isDefault(self, /) -> bool: ... method name (line 9188) | def name(self, /) -> str: ... method namespaceUri (line 9189) | def namespaceUri(self, /) -> str: ... method prefix (line 9190) | def prefix(self, /) -> str: ... method qualifiedName (line 9191) | def qualifiedName(self, /) -> str: ... method value (line 9192) | def value(self, /) -> str: ... method __copy__ (line 9193) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9194) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9195) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9196) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9197) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9198) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9199) | def __ne__(self, other: object) -> bool: ... class QXmlStreamAttributes (line 9201) | class QXmlStreamAttributes(shiboken6.Object): method __init__ (line 9203) | def __init__(self, QXmlStreamAttributes: QXmlStreamAttributes, /) -> N... method __init__ (line 9205) | def __init__(self, /) -> None: ... method append (line 9207) | def append(self, namespaceUri: str, name: str, value: str, /) -> None:... method append (line 9209) | def append(self, qualifiedName: str, value: str, /) -> None: ... method append (line 9211) | def append(self, l: typing.Iterable[QXmlStreamAttribute], /) -> None: ... method append (line 9213) | def append(self, arg__1: QXmlStreamAttribute, /) -> None: ... method at (line 9214) | def at(self, i: int, /) -> QXmlStreamAttribute: ... method back (line 9215) | def back(self, /) -> QXmlStreamAttribute: ... method capacity (line 9216) | def capacity(self, /) -> int: ... method clear (line 9217) | def clear(self, /) -> None: ... method constData (line 9218) | def constData(self, /) -> QXmlStreamAttribute: ... method constFirst (line 9219) | def constFirst(self, /) -> QXmlStreamAttribute: ... method constLast (line 9220) | def constLast(self, /) -> QXmlStreamAttribute: ... method count (line 9221) | def count(self, /) -> int: ... method data (line 9222) | def data(self, /) -> QXmlStreamAttribute: ... method empty (line 9223) | def empty(self, /) -> bool: ... method first (line 9225) | def first(self, n: int, /) -> List[QXmlStreamAttribute]: ... method first (line 9227) | def first(self, /) -> QXmlStreamAttribute: ... method fromVector (line 9229) | def fromVector(vector: typing.Iterable[QXmlStreamAttribute], /) -> Lis... method front (line 9230) | def front(self, /) -> QXmlStreamAttribute: ... method hasAttribute (line 9232) | def hasAttribute(self, namespaceUri: str, name: str, /) -> bool: ... method hasAttribute (line 9234) | def hasAttribute(self, qualifiedName: str, /) -> bool: ... method insert (line 9235) | def insert(self, arg__1: int, arg__2: QXmlStreamAttribute, /) -> None:... method isEmpty (line 9236) | def isEmpty(self, /) -> bool: ... method isSharedWith (line 9237) | def isSharedWith(self, other: typing.Iterable[QXmlStreamAttribute], /)... method last (line 9239) | def last(self, n: int, /) -> List[QXmlStreamAttribute]: ... method last (line 9241) | def last(self, /) -> QXmlStreamAttribute: ... method length (line 9242) | def length(self, /) -> int: ... method maxSize (line 9244) | def maxSize() -> int: ... method max_size (line 9245) | def max_size(self, /) -> int: ... method mid (line 9246) | def mid(self, pos: int, /, len: int = ...) -> List[QXmlStreamAttribute... method move (line 9247) | def move(self, from_: int, to: int, /) -> None: ... method prepend (line 9248) | def prepend(self, arg__1: QXmlStreamAttribute, /) -> None: ... method push_back (line 9249) | def push_back(self, arg__1: QXmlStreamAttribute, /) -> None: ... method push_front (line 9250) | def push_front(self, arg__1: QXmlStreamAttribute, /) -> None: ... method remove (line 9251) | def remove(self, i: int, /, n: int = ...) -> None: ... method removeAll (line 9252) | def removeAll(self, arg__1: QXmlStreamAttribute, /) -> None: ... method removeAt (line 9253) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 9254) | def removeFirst(self, /) -> None: ... method removeLast (line 9255) | def removeLast(self, /) -> None: ... method removeOne (line 9256) | def removeOne(self, arg__1: QXmlStreamAttribute, /) -> None: ... method reserve (line 9257) | def reserve(self, size: int, /) -> None: ... method resize (line 9258) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 9259) | def resizeForOverwrite(self, size: int, /) -> None: ... method shrink_to_fit (line 9260) | def shrink_to_fit(self, /) -> None: ... method size (line 9261) | def size(self, /) -> int: ... method sliced (line 9263) | def sliced(self, pos: int, n: int, /) -> List[QXmlStreamAttribute]: ... method sliced (line 9265) | def sliced(self, pos: int, /) -> List[QXmlStreamAttribute]: ... method squeeze (line 9266) | def squeeze(self, /) -> None: ... method swap (line 9267) | def swap(self, other: typing.Iterable[QXmlStreamAttribute], /) -> None... method swapItemsAt (line 9268) | def swapItemsAt(self, i: int, j: int, /) -> None: ... method takeAt (line 9269) | def takeAt(self, i: int, /) -> QXmlStreamAttribute: ... method toVector (line 9270) | def toVector(self, /) -> List[QXmlStreamAttribute]: ... method value (line 9272) | def value(self, namespaceUri: str, name: str, /) -> str: ... method value (line 9274) | def value(self, qualifiedName: str, /) -> str: ... method __add__ (line 9275) | def __add__(self, l: typing.Iterable[QXmlStreamAttribute], /) -> List[... method __copy__ (line 9276) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 9277) | def __delitem__(self, other) -> None: ... method __eq__ (line 9278) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9279) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 9280) | def __getitem__(self, index): ... method __gt__ (line 9281) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9282) | def __le__(self, other: object) -> bool: ... method __len__ (line 9283) | def __len__(self) -> int: ... method __lshift__ (line 9284) | def __lshift__(self, l: typing.Iterable[QXmlStreamAttribute], /) -> Li... method __lt__ (line 9285) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9286) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 9287) | def __radd__(self, other): ... method __rlshift__ (line 9288) | def __rlshift__(self, other): ... method __setitem__ (line 9289) | def __setitem__(self, index, object) -> None: ... class QXmlStreamEntityDeclaration (line 9291) | class QXmlStreamEntityDeclaration(shiboken6.Object): method __init__ (line 9293) | def __init__(self, QXmlStreamEntityDeclaration: QXmlStreamEntityDeclar... method __init__ (line 9295) | def __init__(self, /) -> None: ... method name (line 9296) | def name(self, /) -> str: ... method notationName (line 9297) | def notationName(self, /) -> str: ... method publicId (line 9298) | def publicId(self, /) -> str: ... method systemId (line 9299) | def systemId(self, /) -> str: ... method value (line 9300) | def value(self, /) -> str: ... method __copy__ (line 9301) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9302) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9303) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9304) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9305) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9306) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9307) | def __ne__(self, other: object) -> bool: ... class QXmlStreamEntityResolver (line 9309) | class QXmlStreamEntityResolver(shiboken6.Object): method __init__ (line 9310) | def __init__(self, /) -> None: ... method resolveEntity (line 9311) | def resolveEntity(self, publicId: str, systemId: str, /) -> str: ... method resolveUndeclaredEntity (line 9312) | def resolveUndeclaredEntity(self, name: str, /) -> str: ... class QXmlStreamNamespaceDeclaration (line 9314) | class QXmlStreamNamespaceDeclaration(shiboken6.Object): method __init__ (line 9316) | def __init__(self, prefix: str, namespaceUri: str, /) -> None: ... method __init__ (line 9318) | def __init__(self, QXmlStreamNamespaceDeclaration: QXmlStreamNamespace... method __init__ (line 9320) | def __init__(self, /) -> None: ... method namespaceUri (line 9321) | def namespaceUri(self, /) -> str: ... method prefix (line 9322) | def prefix(self, /) -> str: ... method __copy__ (line 9323) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9324) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9325) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9326) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9327) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9328) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9329) | def __ne__(self, other: object) -> bool: ... class QXmlStreamNotationDeclaration (line 9331) | class QXmlStreamNotationDeclaration(shiboken6.Object): method __init__ (line 9333) | def __init__(self, QXmlStreamNotationDeclaration: QXmlStreamNotationDe... method __init__ (line 9335) | def __init__(self, /) -> None: ... method name (line 9336) | def name(self, /) -> str: ... method publicId (line 9337) | def publicId(self, /) -> str: ... method systemId (line 9338) | def systemId(self, /) -> str: ... method __copy__ (line 9339) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9340) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9341) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9342) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9343) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9344) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9345) | def __ne__(self, other: object) -> bool: ... class QXmlStreamReader (line 9347) | class QXmlStreamReader(shiboken6.Object): class Error (line 9348) | class Error(enum.Enum): class ReadElementTextBehaviour (line 9355) | class ReadElementTextBehaviour(enum.Enum): class TokenType (line 9360) | class TokenType(enum.Enum): method __init__ (line 9373) | def __init__(self, device: QIODevice, /) -> None: ... method __init__ (line 9375) | def __init__(self, data: str, /) -> None: ... method __init__ (line 9377) | def __init__(self, /) -> None: ... method addData (line 9378) | def addData(self, data: str, /) -> None: ... method addExtraNamespaceDeclaration (line 9379) | def addExtraNamespaceDeclaration(self, extraNamespaceDeclaraction: QXm... method addExtraNamespaceDeclarations (line 9380) | def addExtraNamespaceDeclarations(self, extraNamespaceDeclaractions: t... method atEnd (line 9381) | def atEnd(self, /) -> bool: ... method attributes (line 9382) | def attributes(self, /) -> QXmlStreamAttributes: ... method characterOffset (line 9383) | def characterOffset(self, /) -> int: ... method clear (line 9384) | def clear(self, /) -> None: ... method columnNumber (line 9385) | def columnNumber(self, /) -> int: ... method device (line 9386) | def device(self, /) -> QIODevice: ... method documentEncoding (line 9387) | def documentEncoding(self, /) -> str: ... method documentVersion (line 9388) | def documentVersion(self, /) -> str: ... method dtdName (line 9389) | def dtdName(self, /) -> str: ... method dtdPublicId (line 9390) | def dtdPublicId(self, /) -> str: ... method dtdSystemId (line 9391) | def dtdSystemId(self, /) -> str: ... method entityDeclarations (line 9392) | def entityDeclarations(self, /) -> List[QXmlStreamEntityDeclaration]: ... method entityExpansionLimit (line 9393) | def entityExpansionLimit(self, /) -> int: ... method entityResolver (line 9394) | def entityResolver(self, /) -> QXmlStreamEntityResolver: ... method error (line 9395) | def error(self, /) -> QXmlStreamReader.Error: ... method errorString (line 9396) | def errorString(self, /) -> str: ... method hasError (line 9397) | def hasError(self, /) -> bool: ... method hasStandaloneDeclaration (line 9398) | def hasStandaloneDeclaration(self, /) -> bool: ... method isCDATA (line 9399) | def isCDATA(self, /) -> bool: ... method isCharacters (line 9400) | def isCharacters(self, /) -> bool: ... method isComment (line 9401) | def isComment(self, /) -> bool: ... method isDTD (line 9402) | def isDTD(self, /) -> bool: ... method isEndDocument (line 9403) | def isEndDocument(self, /) -> bool: ... method isEndElement (line 9404) | def isEndElement(self, /) -> bool: ... method isEntityReference (line 9405) | def isEntityReference(self, /) -> bool: ... method isProcessingInstruction (line 9406) | def isProcessingInstruction(self, /) -> bool: ... method isStandaloneDocument (line 9407) | def isStandaloneDocument(self, /) -> bool: ... method isStartDocument (line 9408) | def isStartDocument(self, /) -> bool: ... method isStartElement (line 9409) | def isStartElement(self, /) -> bool: ... method isWhitespace (line 9410) | def isWhitespace(self, /) -> bool: ... method lineNumber (line 9411) | def lineNumber(self, /) -> int: ... method name (line 9412) | def name(self, /) -> str: ... method namespaceDeclarations (line 9413) | def namespaceDeclarations(self, /) -> List[QXmlStreamNamespaceDeclarat... method namespaceProcessing (line 9414) | def namespaceProcessing(self, /) -> bool: ... method namespaceUri (line 9415) | def namespaceUri(self, /) -> str: ... method notationDeclarations (line 9416) | def notationDeclarations(self, /) -> List[QXmlStreamNotationDeclaratio... method prefix (line 9417) | def prefix(self, /) -> str: ... method processingInstructionData (line 9418) | def processingInstructionData(self, /) -> str: ... method processingInstructionTarget (line 9419) | def processingInstructionTarget(self, /) -> str: ... method qualifiedName (line 9420) | def qualifiedName(self, /) -> str: ... method raiseError (line 9421) | def raiseError(self, /, message: str = ...) -> None: ... method readElementText (line 9422) | def readElementText(self, /, behaviour: QXmlStreamReader.ReadElementTe... method readNext (line 9423) | def readNext(self, /) -> QXmlStreamReader.TokenType: ... method readNextStartElement (line 9424) | def readNextStartElement(self, /) -> bool: ... method readRawInnerData (line 9425) | def readRawInnerData(self, /) -> str: ... method setDevice (line 9426) | def setDevice(self, device: QIODevice, /) -> None: ... method setEntityExpansionLimit (line 9427) | def setEntityExpansionLimit(self, limit: int, /) -> None: ... method setEntityResolver (line 9428) | def setEntityResolver(self, resolver: QXmlStreamEntityResolver, /) -> ... method setNamespaceProcessing (line 9429) | def setNamespaceProcessing(self, arg__1: bool, /) -> None: ... method skipCurrentElement (line 9430) | def skipCurrentElement(self, /) -> None: ... method text (line 9431) | def text(self, /) -> str: ... method tokenString (line 9432) | def tokenString(self, /) -> str: ... method tokenType (line 9433) | def tokenType(self, /) -> QXmlStreamReader.TokenType: ... class QXmlStreamWriter (line 9435) | class QXmlStreamWriter(shiboken6.Object): class Error (line 9436) | class Error(enum.Enum): method __init__ (line 9443) | def __init__(self, device: QIODevice, /) -> None: ... method __init__ (line 9445) | def __init__(self, array: QByteArray | bytes | bytearray | memoryview,... method __init__ (line 9447) | def __init__(self, /) -> None: ... method autoFormatting (line 9448) | def autoFormatting(self, /) -> bool: ... method autoFormattingIndent (line 9449) | def autoFormattingIndent(self, /) -> int: ... method device (line 9450) | def device(self, /) -> QIODevice: ... method error (line 9451) | def error(self, /) -> QXmlStreamWriter.Error: ... method errorString (line 9452) | def errorString(self, /) -> str: ... method hasError (line 9453) | def hasError(self, /) -> bool: ... method raiseError (line 9454) | def raiseError(self, message: str, /) -> None: ... method setAutoFormatting (line 9455) | def setAutoFormatting(self, arg__1: bool, /) -> None: ... method setAutoFormattingIndent (line 9456) | def setAutoFormattingIndent(self, spacesOrTabs: int, /) -> None: ... method setDevice (line 9457) | def setDevice(self, device: QIODevice, /) -> None: ... method setStopWritingOnError (line 9458) | def setStopWritingOnError(self, stop: bool, /) -> None: ... method stopWritingOnError (line 9459) | def stopWritingOnError(self, /) -> bool: ... method writeAttribute (line 9461) | def writeAttribute(self, namespaceUri: str, name: str, value: str, /) ... method writeAttribute (line 9463) | def writeAttribute(self, qualifiedName: str, value: str, /) -> None: ... method writeAttribute (line 9465) | def writeAttribute(self, attribute: QXmlStreamAttribute, /) -> None: ... method writeAttributes (line 9466) | def writeAttributes(self, attributes: QXmlStreamAttributes, /) -> None... method writeCDATA (line 9467) | def writeCDATA(self, text: str, /) -> None: ... method writeCharacters (line 9468) | def writeCharacters(self, text: str, /) -> None: ... method writeComment (line 9469) | def writeComment(self, text: str, /) -> None: ... method writeCurrentToken (line 9470) | def writeCurrentToken(self, reader: QXmlStreamReader, /) -> None: ... method writeDTD (line 9471) | def writeDTD(self, dtd: str, /) -> None: ... method writeDefaultNamespace (line 9472) | def writeDefaultNamespace(self, namespaceUri: str, /) -> None: ... method writeEmptyElement (line 9474) | def writeEmptyElement(self, namespaceUri: str, name: str, /) -> None: ... method writeEmptyElement (line 9476) | def writeEmptyElement(self, qualifiedName: str, /) -> None: ... method writeEndDocument (line 9477) | def writeEndDocument(self, /) -> None: ... method writeEndElement (line 9478) | def writeEndElement(self, /) -> None: ... method writeEntityReference (line 9479) | def writeEntityReference(self, name: str, /) -> None: ... method writeNamespace (line 9480) | def writeNamespace(self, namespaceUri: str, /, prefix: str = ...) -> N... method writeProcessingInstruction (line 9481) | def writeProcessingInstruction(self, target: str, /, data: str = ...) ... method writeStartDocument (line 9483) | def writeStartDocument(self, version: str, standalone: bool, /) -> Non... method writeStartDocument (line 9485) | def writeStartDocument(self, version: str, /) -> None: ... method writeStartDocument (line 9487) | def writeStartDocument(self, /) -> None: ... method writeStartElement (line 9489) | def writeStartElement(self, namespaceUri: str, name: str, /) -> None: ... method writeStartElement (line 9491) | def writeStartElement(self, qualifiedName: str, /) -> None: ... method writeTextElement (line 9493) | def writeTextElement(self, namespaceUri: str, name: str, text: str, /)... method writeTextElement (line 9495) | def writeTextElement(self, qualifiedName: str, text: str, /) -> None: ... class Qt (line 9497) | class Qt(shiboken6.Object): class AlignmentFlag (line 9498) | class AlignmentFlag(enum.IntFlag): class AnchorPoint (line 9514) | class AnchorPoint(enum.Enum): class ApplicationAttribute (line 9522) | class ApplicationAttribute(enum.Enum): class ApplicationState (line 9555) | class ApplicationState(enum.Flag): class ArrowType (line 9561) | class ArrowType(enum.Enum): class AspectRatioMode (line 9568) | class AspectRatioMode(enum.Enum): class Axis (line 9573) | class Axis(enum.Enum): class BGMode (line 9578) | class BGMode(enum.Enum): class BrushStyle (line 9582) | class BrushStyle(enum.Enum): class CaseSensitivity (line 9603) | class CaseSensitivity(enum.Enum): class CheckState (line 9607) | class CheckState(enum.Enum): class ChecksumType (line 9612) | class ChecksumType(enum.Enum): class ClipOperation (line 9616) | class ClipOperation(enum.Enum): class ColorScheme (line 9621) | class ColorScheme(enum.Enum): class ConnectionType (line 9626) | class ConnectionType(enum.Enum): class ContextMenuPolicy (line 9634) | class ContextMenuPolicy(enum.Enum): class ContextMenuTrigger (line 9641) | class ContextMenuTrigger(enum.Enum): class ContrastPreference (line 9645) | class ContrastPreference(enum.Enum): class CoordinateSystem (line 9649) | class CoordinateSystem(enum.Enum): class Corner (line 9653) | class Corner(enum.Enum): class CursorMoveStyle (line 9659) | class CursorMoveStyle(enum.Enum): class CursorShape (line 9663) | class CursorShape(enum.Enum): class DateFormat (line 9690) | class DateFormat(enum.Enum): class DayOfWeek (line 9696) | class DayOfWeek(enum.Enum): class DockWidgetArea (line 9705) | class DockWidgetArea(enum.Flag): class DockWidgetAreaSizes (line 9714) | class DockWidgetAreaSizes(enum.Enum): class DropAction (line 9717) | class DropAction(enum.Flag): class Edge (line 9725) | class Edge(enum.Flag): class EnterKeyType (line 9731) | class EnterKeyType(enum.Enum): class EventPriority (line 9741) | class EventPriority(enum.Enum): class FillRule (line 9746) | class FillRule(enum.Enum): class FindChildOption (line 9750) | class FindChildOption(enum.Flag): class FocusPolicy (line 9754) | class FocusPolicy(enum.IntFlag): class FocusReason (line 9761) | class FocusReason(enum.Enum): class GestureFlag (line 9772) | class GestureFlag(enum.Flag): class GestureState (line 9777) | class GestureState(enum.Enum): class GestureType (line 9784) | class GestureType(enum.IntEnum): class GlobalColor (line 9793) | class GlobalColor(enum.Enum): class HighDpiScaleFactorRoundingPolicy (line 9815) | class HighDpiScaleFactorRoundingPolicy(enum.Enum): class HitTestAccuracy (line 9823) | class HitTestAccuracy(enum.Enum): class ImageConversionFlag (line 9827) | class ImageConversionFlag(enum.Flag): class InputMethodHint (line 9848) | class InputMethodHint(enum.Flag): class InputMethodQuery (line 9873) | class InputMethodQuery(enum.Flag): class ItemDataRole (line 9895) | class ItemDataRole(enum.IntEnum): class ItemFlag (line 9922) | class ItemFlag(enum.Flag): class ItemSelectionMode (line 9934) | class ItemSelectionMode(enum.Enum): class ItemSelectionOperation (line 9940) | class ItemSelectionOperation(enum.Enum): class Key (line 9944) | class Key(enum.IntEnum): class KeyboardModifier (line 10417) | class KeyboardModifier(enum.Flag): class LayoutDirection (line 10431) | class LayoutDirection(enum.Enum): class MaskMode (line 10436) | class MaskMode(enum.Enum): class MatchFlag (line 10440) | class MatchFlag(enum.Flag): class Modifier (line 10453) | class Modifier(enum.Flag): class MouseButton (line 10464) | class MouseButton(enum.Flag): class MouseEventFlag (line 10502) | class MouseEventFlag(enum.Flag): class MouseEventSource (line 10507) | class MouseEventSource(enum.Enum): class NativeGestureType (line 10513) | class NativeGestureType(enum.Enum): class NavigationMode (line 10522) | class NavigationMode(enum.Enum): class Orientation (line 10529) | class Orientation(enum.Flag): class PenCapStyle (line 10533) | class PenCapStyle(enum.Enum): class PenJoinStyle (line 10539) | class PenJoinStyle(enum.Enum): class PenStyle (line 10546) | class PenStyle(enum.Enum): class PermissionStatus (line 10556) | class PermissionStatus(enum.Enum): class ReturnByValueConstant (line 10561) | class ReturnByValueConstant(enum.Enum): class ScreenOrientation (line 10564) | class ScreenOrientation(enum.Flag): class ScrollBarPolicy (line 10571) | class ScrollBarPolicy(enum.Enum): class ScrollPhase (line 10576) | class ScrollPhase(enum.Enum): class ShortcutContext (line 10583) | class ShortcutContext(enum.Enum): class SizeHint (line 10589) | class SizeHint(enum.Enum): class SizeMode (line 10596) | class SizeMode(enum.Enum): class SortOrder (line 10600) | class SortOrder(enum.Enum): class SplitBehaviorFlags (line 10604) | class SplitBehaviorFlags(enum.Flag): class TabFocusBehavior (line 10608) | class TabFocusBehavior(enum.Enum): class TextElideMode (line 10614) | class TextElideMode(enum.Enum): class TextFlag (line 10620) | class TextFlag(enum.IntFlag): class TextFormat (line 10635) | class TextFormat(enum.Enum): class TextInteractionFlag (line 10641) | class TextInteractionFlag(enum.Flag): class TileRule (line 10651) | class TileRule(enum.Enum): class TimeSpec (line 10656) | class TimeSpec(enum.Enum): class TimerId (line 10662) | class TimerId(enum.Enum): class TimerType (line 10665) | class TimerType(enum.Enum): class ToolBarArea (line 10670) | class ToolBarArea(enum.Flag): class ToolBarAreaSizes (line 10679) | class ToolBarAreaSizes(enum.Enum): class ToolButtonStyle (line 10682) | class ToolButtonStyle(enum.Enum): class TouchPointState (line 10689) | class TouchPointState(enum.Flag): class TransformationMode (line 10696) | class TransformationMode(enum.Enum): class UIEffect (line 10700) | class UIEffect(enum.Enum): class WhiteSpaceMode (line 10709) | class WhiteSpaceMode(enum.Enum): class WidgetAttribute (line 10715) | class WidgetAttribute(enum.Enum): class WindowFrameSection (line 10820) | class WindowFrameSection(enum.Enum): class WindowModality (line 10832) | class WindowModality(enum.Enum): class WindowState (line 10837) | class WindowState(enum.Flag): class WindowType (line 10844) | class WindowType(enum.IntFlag): method __init__ (line 10885) | def __init__(self, *args, **kwargs) -> None: ... method beginPropertyUpdateGroup (line 10887) | def beginPropertyUpdateGroup() -> None: ... method bin (line 10889) | def bin(s: QTextStream, /) -> QTextStream: ... method bom (line 10891) | def bom(s: QTextStream, /) -> QTextStream: ... method center (line 10893) | def center(s: QTextStream, /) -> QTextStream: ... method dec (line 10895) | def dec(s: QTextStream, /) -> QTextStream: ... method endPropertyUpdateGroup (line 10897) | def endPropertyUpdateGroup() -> None: ... method endl (line 10899) | def endl(s: QTextStream, /) -> QTextStream: ... method fixed (line 10901) | def fixed(s: QTextStream, /) -> QTextStream: ... method flush (line 10903) | def flush(s: QTextStream, /) -> QTextStream: ... method forcepoint (line 10905) | def forcepoint(s: QTextStream, /) -> QTextStream: ... method forcesign (line 10907) | def forcesign(s: QTextStream, /) -> QTextStream: ... method hex (line 10909) | def hex(s: QTextStream, /) -> QTextStream: ... method left (line 10911) | def left(s: QTextStream, /) -> QTextStream: ... method lowercasebase (line 10913) | def lowercasebase(s: QTextStream, /) -> QTextStream: ... method lowercasedigits (line 10915) | def lowercasedigits(s: QTextStream, /) -> QTextStream: ... method noforcepoint (line 10917) | def noforcepoint(s: QTextStream, /) -> QTextStream: ... method noforcesign (line 10919) | def noforcesign(s: QTextStream, /) -> QTextStream: ... method noshowbase (line 10921) | def noshowbase(s: QTextStream, /) -> QTextStream: ... method oct (line 10923) | def oct(s: QTextStream, /) -> QTextStream: ... method reset (line 10925) | def reset(s: QTextStream, /) -> QTextStream: ... method right (line 10927) | def right(s: QTextStream, /) -> QTextStream: ... method scientific (line 10929) | def scientific(s: QTextStream, /) -> QTextStream: ... method showbase (line 10931) | def showbase(s: QTextStream, /) -> QTextStream: ... method uppercasebase (line 10933) | def uppercasebase(s: QTextStream, /) -> QTextStream: ... method uppercasedigits (line 10935) | def uppercasedigits(s: QTextStream, /) -> QTextStream: ... method ws (line 10937) | def ws(s: QTextStream, /) -> QTextStream: ... class QtMsgType (line 10939) | class QtMsgType(enum.IntEnum): class Signal (line 10947) | class Signal: method __init__ (line 10948) | def __init__(self, /, *types: type, name: str | None = ..., arguments:... method __call__ (line 10949) | def __call__(self, *args, **kwargs): ... method __get__ (line 10951) | def __get__(self, instance: None, owner: type[QObject]) -> Signal: ... method __get__ (line 10953) | def __get__(self, instance: QObject, owner: type[QObject]) -> SignalIn... method __getitem__ (line 10954) | def __getitem__(self, index) -> SignalInstance: ... class SignalInstance (line 10956) | class SignalInstance: method __init__ (line 10958) | def __init__(cls, *args, **kwargs) -> None: ... method connect (line 10959) | def connect(self, slot: typing.Callable, /, type: Qt.ConnectionType = ... method disconnect (line 10960) | def disconnect(self, /, slot: typing.Callable | None = ...) -> bool: ... method emit (line 10961) | def emit(self, /, *args: Any) -> None: ... method __call__ (line 10962) | def __call__(self, *args, **kwargs): ... method __getitem__ (line 10963) | def __getitem__(self, index) -> SignalInstance: ... class Slot (line 10965) | class Slot: method __init__ (line 10966) | def __init__(self, /, *types: type | str, name: str | None = ..., resu... method __call__ (line 10967) | def __call__(self, _func: typing.Callable[P, T]) -> typing.Callable[P,... function QEnum (line 10969) | def QEnum(arg__1: object, /) -> typing.Any: ... function QFlag (line 10970) | def QFlag(arg__1: object, /) -> typing.Any: ... function QT_TRANSLATE_NOOP (line 10971) | def QT_TRANSLATE_NOOP(context: object, message: object, /) -> typing.Any... function QT_TRANSLATE_NOOP3 (line 10972) | def QT_TRANSLATE_NOOP3(context: object, message: object, disambiguation:... function QT_TRANSLATE_NOOP_UTF8 (line 10973) | def QT_TRANSLATE_NOOP_UTF8(message: object, /) -> typing.Any: ... function QT_TR_NOOP (line 10974) | def QT_TR_NOOP(message: object, /) -> typing.Any: ... function QT_TR_NOOP_UTF8 (line 10975) | def QT_TR_NOOP_UTF8(message: object, /) -> typing.Any: ... function Q_ARG (line 10976) | def Q_ARG(type: object, value: object, /) -> QGenericArgumentHolder: ... function Q_RETURN_ARG (line 10977) | def Q_RETURN_ARG(type: object, /) -> QGenericReturnArgumentHolder: ... function SIGNAL (line 10978) | def SIGNAL(signature: str, /) -> str: ... function SLOT (line 10979) | def SLOT(signature: str, /) -> str: ... function __init_feature__ (line 10980) | def __init_feature__() -> None: ... function __moduleShutdown (line 10981) | def __moduleShutdown() -> None: ... function qAbs (line 10982) | def qAbs(arg__1: float, /) -> float: ... function qAddPostRoutine (line 10983) | def qAddPostRoutine(callable: object, /) -> None: ... function qCCritical (line 10984) | def qCCritical(logging_category: QLoggingCategory, message: bytes | byte... function qCDebug (line 10985) | def qCDebug(logging_category: QLoggingCategory, message: bytes | bytearr... function qCInfo (line 10986) | def qCInfo(logging_category: QLoggingCategory, message: bytes | bytearra... function qCWarning (line 10987) | def qCWarning(logging_category: QLoggingCategory, message: bytes | bytea... function qCompress (line 10989) | def qCompress(data: bytes | bytearray | memoryview, nbytes: int, /, comp... function qCompress (line 10991) | def qCompress(data: QByteArray | bytes | bytearray | memoryview, /, comp... function qCritical (line 10992) | def qCritical(message: str, /) -> None: ... function qDebug (line 10993) | def qDebug(message: str, /) -> None: ... function qFastCos (line 10994) | def qFastCos(x: float, /) -> float: ... function qFastSin (line 10995) | def qFastSin(x: float, /) -> float: ... function qFatal (line 10996) | def qFatal(message: str, /) -> None: ... function qFormatLogMessage (line 10997) | def qFormatLogMessage(type: QtMsgType, context: QMessageLogContext, buf:... function qFuzzyCompare (line 10998) | def qFuzzyCompare(p1: float, p2: float, /) -> bool: ... function qFuzzyIsNull (line 10999) | def qFuzzyIsNull(d: float, /) -> bool: ... function qInfo (line 11000) | def qInfo(message: str, /) -> None: ... function qInstallMessageHandler (line 11001) | def qInstallMessageHandler(callable: object, /) -> typing.Any: ... function qIsFinite (line 11002) | def qIsFinite(d: float, /) -> bool: ... function qIsInf (line 11003) | def qIsInf(d: float, /) -> bool: ... function qIsNaN (line 11004) | def qIsNaN(d: float, /) -> bool: ... function qIsNull (line 11005) | def qIsNull(d: float, /) -> bool: ... function qRegisterResourceData (line 11006) | def qRegisterResourceData(arg__1: int, arg__2: bytes | bytearray | memor... function qSetMessagePattern (line 11007) | def qSetMessagePattern(messagePattern: str, /) -> None: ... function qUncompress (line 11009) | def qUncompress(data: bytes | bytearray | memoryview, nbytes: int, /) ->... function qUncompress (line 11011) | def qUncompress(data: QByteArray | bytes | bytearray | memoryview, /) ->... function qUnregisterResourceData (line 11012) | def qUnregisterResourceData(arg__1: int, arg__2: bytes | bytearray | mem... function qVersion (line 11013) | def qVersion() -> str: ... function qWarning (line 11014) | def qWarning(message: str, /) -> None: ... function qtTrId (line 11015) | def qtTrId(id: str, /, n: int = ...) -> str: ... FILE: pyside6/stubs/PySide6-stubs/QtDBus.pyi class QDBus (line 13) | class QDBus(shiboken6.Object): class CallMode (line 14) | class CallMode(enum.Enum): method __init__ (line 19) | def __init__(self, *args, **kwargs) -> None: ... class QDBusAbstractAdaptor (line 21) | class QDBusAbstractAdaptor(PySide6.QtCore.QObject): method __init__ (line 23) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, destroyed... method autoRelaySignals (line 24) | def autoRelaySignals(self, /) -> bool: ... method setAutoRelaySignals (line 25) | def setAutoRelaySignals(self, enable: bool, /) -> None: ... class QDBusAbstractInterface (line 27) | class QDBusAbstractInterface(QDBusAbstractInterfaceBase): method __init__ (line 29) | def __init__(self, service: str, path: str, interface: bytes | bytearr... method asyncCall (line 30) | def asyncCall(self, method: str, /) -> QDBusPendingCall: ... method asyncCallWithArgumentList (line 31) | def asyncCallWithArgumentList(self, method: str, args: typing.Iterable... method call (line 33) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 35) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 37) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 39) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 41) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 43) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 45) | def call(self, arg__1: str, arg__2: Any, arg__3: Any, arg__4: Any, arg... method call (line 47) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, arg__... method call (line 49) | def call(self, arg__1: str, arg__2: Any, arg__3: Any, arg__4: Any, /) ... method call (line 51) | def call(self, arg__1: QDBus.CallMode, arg__2: str, arg__3: Any, /) ->... method call (line 53) | def call(self, arg__1: str, arg__2: Any, arg__3: Any, /) -> QDBusMessa... method call (line 55) | def call(self, mode: QDBus.CallMode, method: str, /) -> QDBusMessage: ... method call (line 57) | def call(self, arg__1: str, arg__2: Any, /) -> QDBusMessage: ... method call (line 59) | def call(self, method: str, /) -> QDBusMessage: ... method callWithArgumentList (line 60) | def callWithArgumentList(self, mode: QDBus.CallMode, method: str, args... method callWithCallback (line 62) | def callWithCallback(self, method: str, args: typing.Iterable[typing.A... method callWithCallback (line 64) | def callWithCallback(self, method: str, args: typing.Iterable[typing.A... method connectNotify (line 65) | def connectNotify(self, signal: PySide6.QtCore.QMetaMethod, /) -> None... method connection (line 66) | def connection(self, /) -> QDBusConnection: ... method disconnectNotify (line 67) | def disconnectNotify(self, signal: PySide6.QtCore.QMetaMethod, /) -> N... method interface (line 68) | def interface(self, /) -> str: ... method internalConstCall (line 69) | def internalConstCall(self, mode: QDBus.CallMode, method: str, /, args... method internalPropGet (line 70) | def internalPropGet(self, propname: bytes | bytearray | memoryview, /)... method internalPropSet (line 71) | def internalPropSet(self, propname: bytes | bytearray | memoryview, va... method isInteractiveAuthorizationAllowed (line 72) | def isInteractiveAuthorizationAllowed(self, /) -> bool: ... method isValid (line 73) | def isValid(self, /) -> bool: ... method lastError (line 74) | def lastError(self, /) -> QDBusError: ... method path (line 75) | def path(self, /) -> str: ... method service (line 76) | def service(self, /) -> str: ... method setInteractiveAuthorizationAllowed (line 77) | def setInteractiveAuthorizationAllowed(self, enable: bool, /) -> None:... method setTimeout (line 78) | def setTimeout(self, timeout: int, /) -> None: ... method timeout (line 79) | def timeout(self, /) -> int: ... class QDBusAbstractInterfaceBase (line 81) | class QDBusAbstractInterfaceBase(PySide6.QtCore.QObject): method __init__ (line 83) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... class QDBusArgument (line 85) | class QDBusArgument(shiboken6.Object): class ElementType (line 86) | class ElementType(enum.Enum): method __init__ (line 95) | def __init__(self, other: QDBusArgument, /) -> None: ... method __init__ (line 97) | def __init__(self, /) -> None: ... method appendVariant (line 98) | def appendVariant(self, v: Any, /) -> None: ... method asVariant (line 99) | def asVariant(self, /) -> Any: ... method atEnd (line 100) | def atEnd(self, /) -> bool: ... method beginArray (line 102) | def beginArray(self, elementMetaTypeId: int, /) -> None: ... method beginArray (line 104) | def beginArray(self, elementMetaType: PySide6.QtCore.QMetaType | PySid... method beginArray (line 106) | def beginArray(self, /) -> None: ... method beginMap (line 108) | def beginMap(self, keyMetaTypeId: int, valueMetaTypeId: int, /) -> Non... method beginMap (line 110) | def beginMap(self, keyMetaType: PySide6.QtCore.QMetaType | PySide6.QtC... method beginMap (line 112) | def beginMap(self, /) -> None: ... method beginMapEntry (line 113) | def beginMapEntry(self, /) -> None: ... method beginStructure (line 114) | def beginStructure(self, /) -> None: ... method currentSignature (line 115) | def currentSignature(self, /) -> str: ... method currentType (line 116) | def currentType(self, /) -> QDBusArgument.ElementType: ... method endArray (line 117) | def endArray(self, /) -> None: ... method endMap (line 118) | def endMap(self, /) -> None: ... method endMapEntry (line 119) | def endMapEntry(self, /) -> None: ... method endStructure (line 120) | def endStructure(self, /) -> None: ... method swap (line 121) | def swap(self, other: QDBusArgument, /) -> None: ... method __copy__ (line 122) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 124) | def __lshift__(self, time: PySide6.QtCore.QTime, /) -> QDBusArgument: ... method __lshift__ (line 126) | def __lshift__(self, size: PySide6.QtCore.QSize, /) -> QDBusArgument: ... method __lshift__ (line 128) | def __lshift__(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSiz... method __lshift__ (line 130) | def __lshift__(self, rect: PySide6.QtCore.QRect, /) -> QDBusArgument: ... method __lshift__ (line 132) | def __lshift__(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method __lshift__ (line 134) | def __lshift__(self, pt: PySide6.QtCore.QPoint, /) -> QDBusArgument: ... method __lshift__ (line 136) | def __lshift__(self, pt: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method __lshift__ (line 138) | def __lshift__(self, map: Dict[str, Any], /) -> QDBusArgument: ... method __lshift__ (line 140) | def __lshift__(self, list: typing.Iterable[typing.Any], /) -> QDBusArg... method __lshift__ (line 142) | def __lshift__(self, line: PySide6.QtCore.QLine, /) -> QDBusArgument: ... method __lshift__ (line 144) | def __lshift__(self, line: PySide6.QtCore.QLineF | PySide6.QtCore.QLin... method __lshift__ (line 146) | def __lshift__(self, dt: PySide6.QtCore.QDateTime | datetime.datetime,... method __lshift__ (line 148) | def __lshift__(self, date: PySide6.QtCore.QDate | datetime.date, /) ->... method __lshift__ (line 150) | def __lshift__(self, arg: QDBusObjectPath, /) -> QDBusArgument: ... method __lshift__ (line 152) | def __lshift__(self, arg: QDBusSignature, /) -> QDBusArgument: ... method __lshift__ (line 154) | def __lshift__(self, arg: QDBusUnixFileDescriptor, /) -> QDBusArgument... method __lshift__ (line 156) | def __lshift__(self, arg: QDBusVariant, /) -> QDBusArgument: ... method __lshift__ (line 158) | def __lshift__(self, arg: str, /) -> QDBusArgument: ... method __lshift__ (line 160) | def __lshift__(self, arg: typing.Iterable[str], /) -> QDBusArgument: ... method __lshift__ (line 162) | def __lshift__(self, arg: PySide6.QtCore.QByteArray | bytes | bytearra... method __lshift__ (line 164) | def __lshift__(self, arg: bool, /) -> QDBusArgument: ... method __lshift__ (line 166) | def __lshift__(self, arg: int, /) -> QDBusArgument: ... method __lshift__ (line 168) | def __lshift__(self, arg: float, /) -> QDBusArgument: ... method __rlshift__ (line 169) | def __rlshift__(self, other): ... method __rrshift__ (line 170) | def __rrshift__(self, other): ... method __rshift__ (line 172) | def __rshift__(self, v: Any, /) -> QDBusArgument: ... method __rshift__ (line 174) | def __rshift__(self, time: PySide6.QtCore.QTime, /) -> QDBusArgument: ... method __rshift__ (line 176) | def __rshift__(self, size: PySide6.QtCore.QSize, /) -> QDBusArgument: ... method __rshift__ (line 178) | def __rshift__(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSiz... method __rshift__ (line 180) | def __rshift__(self, rect: PySide6.QtCore.QRect, /) -> QDBusArgument: ... method __rshift__ (line 182) | def __rshift__(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method __rshift__ (line 184) | def __rshift__(self, pt: PySide6.QtCore.QPoint, /) -> QDBusArgument: .... method __rshift__ (line 186) | def __rshift__(self, pt: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method __rshift__ (line 188) | def __rshift__(self, line: PySide6.QtCore.QLine, /) -> QDBusArgument: ... method __rshift__ (line 190) | def __rshift__(self, line: PySide6.QtCore.QLineF | PySide6.QtCore.QLin... method __rshift__ (line 192) | def __rshift__(self, dt: PySide6.QtCore.QDateTime | datetime.datetime,... method __rshift__ (line 194) | def __rshift__(self, date: PySide6.QtCore.QDate | datetime.date, /) ->... method __rshift__ (line 196) | def __rshift__(self, arg: QDBusObjectPath, /) -> QDBusArgument: ... #... method __rshift__ (line 198) | def __rshift__(self, arg: QDBusSignature, /) -> QDBusArgument: ... # ... method __rshift__ (line 200) | def __rshift__(self, arg: QDBusUnixFileDescriptor, /) -> QDBusArgument... method __rshift__ (line 202) | def __rshift__(self, arg: QDBusVariant, /) -> QDBusArgument: ... # ty... method __rshift__ (line 204) | def __rshift__(self, arg: str, /) -> QDBusArgument: ... # type: ignor... method __rshift__ (line 206) | def __rshift__(self, arg: typing.Iterable[str], /) -> QDBusArgument: .... method __rshift__ (line 208) | def __rshift__(self, arg: PySide6.QtCore.QByteArray | bytes | bytearra... method __rshift__ (line 210) | def __rshift__(self, arg: bool, /) -> QDBusArgument: ... # type: igno... method __rshift__ (line 212) | def __rshift__(self, arg: int, /) -> QDBusArgument: ... # type: ignor... method __rshift__ (line 214) | def __rshift__(self, arg: float, /) -> QDBusArgument: ... # type: ign... class QDBusConnection (line 216) | class QDBusConnection(shiboken6.Object): class BusType (line 217) | class BusType(enum.Enum): class ConnectionCapability (line 222) | class ConnectionCapability(enum.Flag): class RegisterOption (line 225) | class RegisterOption(enum.Flag): class UnregisterMode (line 245) | class UnregisterMode(enum.Enum): class VirtualObjectRegisterOption (line 249) | class VirtualObjectRegisterOption(enum.Flag): method __init__ (line 253) | def __init__(self, other: QDBusConnection, /) -> None: ... method __init__ (line 255) | def __init__(self, name: str, /) -> None: ... method asyncCall (line 256) | def asyncCall(self, message: QDBusMessage, /, timeout: int = ...) -> Q... method baseService (line 257) | def baseService(self, /) -> str: ... method call (line 258) | def call(self, message: QDBusMessage, /, mode: QDBus.CallMode = ..., t... method callWithCallback (line 260) | def callWithCallback(self, message: QDBusMessage, receiver: PySide6.Qt... method callWithCallback (line 262) | def callWithCallback(self, message: QDBusMessage, receiver: PySide6.Qt... method connect (line 264) | def connect(self, service: str, path: str, interface: str, name: str, ... method connect (line 266) | def connect(self, service: str, path: str, interface: str, name: str, ... method connect (line 268) | def connect(self, service: str, path: str, interface: str, name: str, ... method connectToBus (line 271) | def connectToBus(type: QDBusConnection.BusType, name: str, /) -> QDBus... method connectToBus (line 274) | def connectToBus(address: str, name: str, /) -> QDBusConnection: ... method connectToPeer (line 276) | def connectToPeer(address: str, name: str, /) -> QDBusConnection: ... method connectionCapabilities (line 277) | def connectionCapabilities(self, /) -> QDBusConnection.ConnectionCapab... method disconnect (line 279) | def disconnect(self, service: str, path: str, interface: str, name: st... method disconnect (line 281) | def disconnect(self, service: str, path: str, interface: str, name: st... method disconnect (line 283) | def disconnect(self, service: str, path: str, interface: str, name: st... method disconnectFromBus (line 285) | def disconnectFromBus(name: str, /) -> None: ... method disconnectFromPeer (line 287) | def disconnectFromPeer(name: str, /) -> None: ... method interface (line 288) | def interface(self, /) -> QDBusConnectionInterface: ... method internalPointer (line 289) | def internalPointer(self, /) -> int: ... method isConnected (line 290) | def isConnected(self, /) -> bool: ... method lastError (line 291) | def lastError(self, /) -> QDBusError: ... method localMachineId (line 293) | def localMachineId() -> PySide6.QtCore.QByteArray: ... method name (line 294) | def name(self, /) -> str: ... method objectRegisteredAt (line 295) | def objectRegisteredAt(self, path: str, /) -> PySide6.QtCore.QObject: ... method registerObject (line 297) | def registerObject(self, path: str, interface: str, object: PySide6.Qt... method registerObject (line 299) | def registerObject(self, path: str, object: PySide6.QtCore.QObject, /,... method registerService (line 300) | def registerService(self, serviceName: str, /) -> bool: ... method registerVirtualObject (line 301) | def registerVirtualObject(self, path: str, object: QDBusVirtualObject,... method send (line 302) | def send(self, message: QDBusMessage, /) -> bool: ... method sessionBus (line 304) | def sessionBus() -> QDBusConnection: ... method swap (line 305) | def swap(self, other: QDBusConnection, /) -> None: ... method systemBus (line 307) | def systemBus() -> QDBusConnection: ... method unregisterObject (line 308) | def unregisterObject(self, path: str, /, mode: QDBusConnection.Unregis... method unregisterService (line 309) | def unregisterService(self, serviceName: str, /) -> bool: ... method __copy__ (line 310) | def __copy__(self, /) -> typing_extensions.Self: ... class QDBusConnectionInterface (line 312) | class QDBusConnectionInterface(QDBusAbstractInterface): class RegisterServiceReply (line 313) | class RegisterServiceReply(enum.Enum): class ServiceQueueOptions (line 318) | class ServiceQueueOptions(enum.Enum): class ServiceReplacementOptions (line 323) | class ServiceReplacementOptions(enum.Enum): method __init__ (line 334) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method activatableServiceNames (line 335) | def activatableServiceNames(self, /) -> QDBusReply: ... method connectNotify (line 336) | def connectNotify(self, arg__1: PySide6.QtCore.QMetaMethod, /) -> None... method disconnectNotify (line 337) | def disconnectNotify(self, arg__1: PySide6.QtCore.QMetaMethod, /) -> N... method isServiceRegistered (line 338) | def isServiceRegistered(self, arg__1: str, /) -> QDBusReply: ... method registerService (line 339) | def registerService(self, arg__1: str, arg__2: QDBusConnectionInterfac... method registeredServiceNames (line 340) | def registeredServiceNames(self, /) -> QDBusReply: ... method serviceOwner (line 341) | def serviceOwner(self, arg__1: str, /) -> QDBusReply: ... method servicePid (line 342) | def servicePid(self, arg__1: str, /) -> QDBusReply: ... method serviceUid (line 343) | def serviceUid(self, arg__1: str, /) -> QDBusReply: ... method startService (line 344) | def startService(self, arg__1: str, /) -> QDBusReply: ... method unregisterService (line 345) | def unregisterService(self, arg__1: str, /) -> QDBusReply: ... class QDBusContext (line 347) | class QDBusContext(shiboken6.Object): method __init__ (line 349) | def __init__(self, QDBusContext: QDBusContext, /) -> None: ... method __init__ (line 351) | def __init__(self, /) -> None: ... method calledFromDBus (line 352) | def calledFromDBus(self, /) -> bool: ... method connection (line 353) | def connection(self, /) -> QDBusConnection: ... method isDelayedReply (line 354) | def isDelayedReply(self, /) -> bool: ... method message (line 355) | def message(self, /) -> QDBusMessage: ... method sendErrorReply (line 357) | def sendErrorReply(self, type: QDBusError.ErrorType, /, msg: str = ...... method sendErrorReply (line 359) | def sendErrorReply(self, name: str, /, msg: str = ...) -> None: ... method setDelayedReply (line 360) | def setDelayedReply(self, enable: bool, /) -> None: ... method __copy__ (line 361) | def __copy__(self, /) -> typing_extensions.Self: ... class QDBusError (line 363) | class QDBusError(shiboken6.Object): class ErrorType (line 364) | class ErrorType(enum.Enum): method __init__ (line 395) | def __init__(self, error: QDBusError.ErrorType, message: str, /) -> No... method __init__ (line 397) | def __init__(self, other: QDBusError, /) -> None: ... method __init__ (line 399) | def __init__(self, msg: QDBusMessage, /) -> None: ... method __init__ (line 401) | def __init__(self, /) -> None: ... method errorString (line 403) | def errorString(error: QDBusError.ErrorType, /) -> str: ... method isValid (line 404) | def isValid(self, /) -> bool: ... method message (line 405) | def message(self, /) -> str: ... method name (line 406) | def name(self, /) -> str: ... method swap (line 407) | def swap(self, other: QDBusError | QDBusMessage, /) -> None: ... method type (line 408) | def type(self, /) -> QDBusError.ErrorType: ... method __copy__ (line 409) | def __copy__(self, /) -> typing_extensions.Self: ... class QDBusInterface (line 411) | class QDBusInterface(QDBusAbstractInterface): method __init__ (line 413) | def __init__(self, service: str, path: str, /, interface: str = ..., c... class QDBusMessage (line 415) | class QDBusMessage(shiboken6.Object): class MessageType (line 416) | class MessageType(enum.Enum): method __init__ (line 423) | def __init__(self, other: QDBusMessage, /) -> None: ... method __init__ (line 425) | def __init__(self, /) -> None: ... method arguments (line 426) | def arguments(self, /) -> List[Any]: ... method autoStartService (line 427) | def autoStartService(self, /) -> bool: ... method createError (line 430) | def createError(type: QDBusError.ErrorType, msg: str, /) -> QDBusMessa... method createError (line 433) | def createError(name: str, msg: str, /) -> QDBusMessage: ... method createError (line 436) | def createError(err: QDBusError | QDBusMessage, /) -> QDBusMessage: ... method createErrorReply (line 438) | def createErrorReply(self, type: QDBusError.ErrorType, msg: str, /) ->... method createErrorReply (line 440) | def createErrorReply(self, name: str, msg: str, /) -> QDBusMessage: ... method createErrorReply (line 442) | def createErrorReply(self, err: QDBusError | QDBusMessage, /) -> QDBus... method createMethodCall (line 444) | def createMethodCall(destination: str, path: str, interface: str, meth... method createReply (line 446) | def createReply(self, argument: Any, /) -> QDBusMessage: ... method createReply (line 448) | def createReply(self, /, arguments: typing.Iterable[typing.Any] = ...)... method createSignal (line 450) | def createSignal(path: str, interface: str, name: str, /) -> QDBusMess... method createTargetedSignal (line 452) | def createTargetedSignal(service: str, path: str, interface: str, name... method errorMessage (line 453) | def errorMessage(self, /) -> str: ... method errorName (line 454) | def errorName(self, /) -> str: ... method interface (line 455) | def interface(self, /) -> str: ... method isDelayedReply (line 456) | def isDelayedReply(self, /) -> bool: ... method isInteractiveAuthorizationAllowed (line 457) | def isInteractiveAuthorizationAllowed(self, /) -> bool: ... method isReplyRequired (line 458) | def isReplyRequired(self, /) -> bool: ... method member (line 459) | def member(self, /) -> str: ... method path (line 460) | def path(self, /) -> str: ... method service (line 461) | def service(self, /) -> str: ... method setArguments (line 462) | def setArguments(self, arguments: typing.Iterable[typing.Any], /) -> N... method setAutoStartService (line 463) | def setAutoStartService(self, enable: bool, /) -> None: ... method setDelayedReply (line 464) | def setDelayedReply(self, enable: bool, /) -> None: ... method setInteractiveAuthorizationAllowed (line 465) | def setInteractiveAuthorizationAllowed(self, enable: bool, /) -> None:... method signature (line 466) | def signature(self, /) -> str: ... method swap (line 467) | def swap(self, other: QDBusMessage, /) -> None: ... method type (line 468) | def type(self, /) -> QDBusMessage.MessageType: ... method __copy__ (line 469) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 470) | def __lshift__(self, arg: Any, /) -> QDBusMessage: ... method __rlshift__ (line 471) | def __rlshift__(self, other): ... class QDBusObjectPath (line 473) | class QDBusObjectPath(shiboken6.Object): method __init__ (line 475) | def __init__(self, path: str, /) -> None: ... method __init__ (line 477) | def __init__(self, path: bytes | bytearray | memoryview, /) -> None: ... method __init__ (line 479) | def __init__(self, QDBusObjectPath: QDBusObjectPath, /) -> None: ... method __init__ (line 481) | def __init__(self, /) -> None: ... method path (line 482) | def path(self, /) -> str: ... method setPath (line 483) | def setPath(self, path: str, /) -> None: ... method swap (line 484) | def swap(self, other: QDBusObjectPath, /) -> None: ... method __copy__ (line 485) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 486) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 487) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 488) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 489) | def __hash__(self, /) -> int: ... method __le__ (line 490) | def __le__(self, other: object) -> bool: ... method __lt__ (line 491) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 492) | def __ne__(self, other: object) -> bool: ... class QDBusPendingCall (line 494) | class QDBusPendingCall(shiboken6.Object): method __init__ (line 495) | def __init__(self, other: QDBusPendingCall, /) -> None: ... method error (line 496) | def error(self, /) -> QDBusError: ... method fromCompletedCall (line 498) | def fromCompletedCall(message: QDBusMessage, /) -> QDBusPendingCall: ... method fromError (line 500) | def fromError(error: QDBusError | QDBusMessage, /) -> QDBusPendingCall... method isError (line 501) | def isError(self, /) -> bool: ... method isFinished (line 502) | def isFinished(self, /) -> bool: ... method isValid (line 503) | def isValid(self, /) -> bool: ... method reply (line 504) | def reply(self, /) -> QDBusMessage: ... method swap (line 505) | def swap(self, other: QDBusPendingCall, /) -> None: ... method waitForFinished (line 506) | def waitForFinished(self, /) -> None: ... class QDBusPendingCallWatcher (line 508) | class QDBusPendingCallWatcher(PySide6.QtCore.QObject, QDBusPendingCall): method __init__ (line 511) | def __init__(self, call: QDBusPendingCall, /, parent: PySide6.QtCore.Q... method waitForFinished (line 512) | def waitForFinished(self, /) -> None: ... class QDBusReply (line 514) | class QDBusReply(shiboken6.Object): method __init__ (line 516) | def __init__(self, reply: QDBusMessage, /) -> None: ... method __init__ (line 518) | def __init__(self, /) -> None: ... method error (line 519) | def error(self, /) -> QDBusError: ... method isValid (line 520) | def isValid(self, /) -> bool: ... method value (line 521) | def value(self, /) -> Any: ... class QDBusServer (line 523) | class QDBusServer(PySide6.QtCore.QObject): method __init__ (line 527) | def __init__(self, address: str, /, parent: PySide6.QtCore.QObject | N... method __init__ (line 529) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method address (line 530) | def address(self, /) -> str: ... method isAnonymousAuthenticationAllowed (line 531) | def isAnonymousAuthenticationAllowed(self, /) -> bool: ... method isConnected (line 532) | def isConnected(self, /) -> bool: ... method lastError (line 533) | def lastError(self, /) -> QDBusError: ... method setAnonymousAuthenticationAllowed (line 534) | def setAnonymousAuthenticationAllowed(self, value: bool, /) -> None: ... class QDBusServiceWatcher (line 536) | class QDBusServiceWatcher(PySide6.QtCore.QObject): class WatchModeFlag (line 537) | class WatchModeFlag(enum.Flag): method __init__ (line 546) | def __init__(self, service: str, connection: QDBusConnection, /, watch... method __init__ (line 548) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addWatchedService (line 549) | def addWatchedService(self, newService: str, /) -> None: ... method connection (line 550) | def connection(self, /) -> QDBusConnection: ... method removeWatchedService (line 551) | def removeWatchedService(self, service: str, /) -> bool: ... method setConnection (line 552) | def setConnection(self, connection: QDBusConnection, /) -> None: ... method setWatchMode (line 553) | def setWatchMode(self, mode: QDBusServiceWatcher.WatchModeFlag, /) -> ... method setWatchedServices (line 554) | def setWatchedServices(self, services: typing.Iterable[str], /) -> Non... method watchMode (line 555) | def watchMode(self, /) -> QDBusServiceWatcher.WatchModeFlag: ... method watchedServices (line 556) | def watchedServices(self, /) -> List[str]: ... class QDBusSignature (line 558) | class QDBusSignature(shiboken6.Object): method __init__ (line 560) | def __init__(self, signature: str, /) -> None: ... method __init__ (line 562) | def __init__(self, signature: bytes | bytearray | memoryview, /) -> No... method __init__ (line 564) | def __init__(self, /) -> None: ... method setSignature (line 565) | def setSignature(self, signature: str, /) -> None: ... method signature (line 566) | def signature(self, /) -> str: ... method swap (line 567) | def swap(self, other: QDBusSignature, /) -> None: ... method __eq__ (line 568) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 569) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 570) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 571) | def __hash__(self, /) -> int: ... method __le__ (line 572) | def __le__(self, other: object) -> bool: ... method __lt__ (line 573) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 574) | def __ne__(self, other: object) -> bool: ... class QDBusUnixFileDescriptor (line 576) | class QDBusUnixFileDescriptor(shiboken6.Object): method __init__ (line 578) | def __init__(self, other: QDBusUnixFileDescriptor, /) -> None: ... method __init__ (line 580) | def __init__(self, fileDescriptor: int, /) -> None: ... method __init__ (line 582) | def __init__(self, /) -> None: ... method fileDescriptor (line 583) | def fileDescriptor(self, /) -> int: ... method giveFileDescriptor (line 584) | def giveFileDescriptor(self, fileDescriptor: int, /) -> None: ... method isSupported (line 586) | def isSupported() -> bool: ... method isValid (line 587) | def isValid(self, /) -> bool: ... method setFileDescriptor (line 588) | def setFileDescriptor(self, fileDescriptor: int, /) -> None: ... method swap (line 589) | def swap(self, other: QDBusUnixFileDescriptor, /) -> None: ... method takeFileDescriptor (line 590) | def takeFileDescriptor(self, /) -> int: ... method __copy__ (line 591) | def __copy__(self, /) -> typing_extensions.Self: ... class QDBusVariant (line 593) | class QDBusVariant(shiboken6.Object): method __init__ (line 595) | def __init__(self, variant: Any, /) -> None: ... method __init__ (line 597) | def __init__(self, QDBusVariant: QDBusVariant, /) -> None: ... # type... method __init__ (line 599) | def __init__(self, /) -> None: ... method setVariant (line 600) | def setVariant(self, variant: Any, /) -> None: ... method swap (line 601) | def swap(self, other: QDBusVariant, /) -> None: ... method variant (line 602) | def variant(self, /) -> Any: ... method __copy__ (line 603) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 604) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 605) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 606) | def __gt__(self, other: object) -> bool: ... method __le__ (line 607) | def __le__(self, other: object) -> bool: ... method __lt__ (line 608) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 609) | def __ne__(self, other: object) -> bool: ... class QDBusVirtualObject (line 611) | class QDBusVirtualObject(PySide6.QtCore.QObject): method __init__ (line 613) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method handleMessage (line 614) | def handleMessage(self, message: QDBusMessage, connection: QDBusConnec... method introspect (line 615) | def introspect(self, path: str, /) -> str: ... class QIntList (line 617) | class QIntList: method __init__ (line 619) | def __init__(self, *args, **kwargs) -> None: ... method append (line 620) | def append(self, *args, **kwargs): ... method capacity (line 621) | def capacity(self, *args, **kwargs): ... method clear (line 622) | def clear(self, *args, **kwargs): ... method constData (line 623) | def constData(self, *args, **kwargs): ... method data (line 624) | def data(self, *args, **kwargs): ... method pop_back (line 625) | def pop_back(self, *args, **kwargs): ... method pop_front (line 626) | def pop_front(self, *args, **kwargs): ... method prepend (line 627) | def prepend(self, *args, **kwargs): ... method push_back (line 628) | def push_back(self, *args, **kwargs): ... method push_front (line 629) | def push_front(self, *args, **kwargs): ... method removeFirst (line 630) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 631) | def removeLast(self, *args, **kwargs): ... method reserve (line 632) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 633) | def __delitem__(self, other) -> None: ... method __getitem__ (line 634) | def __getitem__(self, index): ... method __len__ (line 635) | def __len__(self) -> int: ... method __setitem__ (line 636) | def __setitem__(self, index, object) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtDataVisualization.pyi class Q3DBars (line 13) | class Q3DBars(QAbstract3DGraph): method __init__ (line 26) | def __init__(self, /, format: PySide6.QtGui.QSurfaceFormat | PySide6.Q... method addAxis (line 27) | def addAxis(self, axis: QAbstract3DAxis, /) -> None: ... method addSeries (line 28) | def addSeries(self, series: QBar3DSeries, /) -> None: ... method axes (line 29) | def axes(self, /) -> List[QAbstract3DAxis]: ... method barSeriesMargin (line 30) | def barSeriesMargin(self, /) -> PySide6.QtCore.QSizeF: ... method barSpacing (line 31) | def barSpacing(self, /) -> PySide6.QtCore.QSizeF: ... method barThickness (line 32) | def barThickness(self, /) -> float: ... method columnAxis (line 33) | def columnAxis(self, /) -> QCategory3DAxis: ... method floorLevel (line 34) | def floorLevel(self, /) -> float: ... method insertSeries (line 35) | def insertSeries(self, index: int, series: QBar3DSeries, /) -> None: ... method isBarSpacingRelative (line 36) | def isBarSpacingRelative(self, /) -> bool: ... method isMultiSeriesUniform (line 37) | def isMultiSeriesUniform(self, /) -> bool: ... method primarySeries (line 38) | def primarySeries(self, /) -> QBar3DSeries: ... method releaseAxis (line 39) | def releaseAxis(self, axis: QAbstract3DAxis, /) -> None: ... method removeSeries (line 40) | def removeSeries(self, series: QBar3DSeries, /) -> None: ... method rowAxis (line 41) | def rowAxis(self, /) -> QCategory3DAxis: ... method selectedSeries (line 42) | def selectedSeries(self, /) -> QBar3DSeries: ... method seriesList (line 43) | def seriesList(self, /) -> List[QBar3DSeries]: ... method setBarSeriesMargin (line 44) | def setBarSeriesMargin(self, margin: PySide6.QtCore.QSizeF | PySide6.Q... method setBarSpacing (line 45) | def setBarSpacing(self, spacing: PySide6.QtCore.QSizeF | PySide6.QtCor... method setBarSpacingRelative (line 46) | def setBarSpacingRelative(self, relative: bool, /) -> None: ... method setBarThickness (line 47) | def setBarThickness(self, thicknessRatio: float, /) -> None: ... method setColumnAxis (line 48) | def setColumnAxis(self, axis: QCategory3DAxis, /) -> None: ... method setFloorLevel (line 49) | def setFloorLevel(self, level: float, /) -> None: ... method setMultiSeriesUniform (line 50) | def setMultiSeriesUniform(self, uniform: bool, /) -> None: ... method setPrimarySeries (line 51) | def setPrimarySeries(self, series: QBar3DSeries, /) -> None: ... method setRowAxis (line 52) | def setRowAxis(self, axis: QCategory3DAxis, /) -> None: ... method setValueAxis (line 53) | def setValueAxis(self, axis: QValue3DAxis, /) -> None: ... method valueAxis (line 54) | def valueAxis(self, /) -> QValue3DAxis: ... class Q3DCamera (line 56) | class Q3DCamera(Q3DObject): class CameraPreset (line 57) | class CameraPreset(enum.Enum): method __init__ (line 93) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method cameraPreset (line 94) | def cameraPreset(self, /) -> Q3DCamera.CameraPreset: ... method copyValuesFrom (line 95) | def copyValuesFrom(self, source: Q3DObject, /) -> None: ... method maxZoomLevel (line 96) | def maxZoomLevel(self, /) -> float: ... method minZoomLevel (line 97) | def minZoomLevel(self, /) -> float: ... method setCameraPosition (line 98) | def setCameraPosition(self, horizontal: float, vertical: float, /, zoo... method setCameraPreset (line 99) | def setCameraPreset(self, preset: Q3DCamera.CameraPreset, /) -> None: ... method setMaxZoomLevel (line 100) | def setMaxZoomLevel(self, zoomLevel: float, /) -> None: ... method setMinZoomLevel (line 101) | def setMinZoomLevel(self, zoomLevel: float, /) -> None: ... method setTarget (line 102) | def setTarget(self, target: PySide6.QtGui.QVector3D, /) -> None: ... method setWrapXRotation (line 103) | def setWrapXRotation(self, isEnabled: bool, /) -> None: ... method setWrapYRotation (line 104) | def setWrapYRotation(self, isEnabled: bool, /) -> None: ... method setXRotation (line 105) | def setXRotation(self, rotation: float, /) -> None: ... method setYRotation (line 106) | def setYRotation(self, rotation: float, /) -> None: ... method setZoomLevel (line 107) | def setZoomLevel(self, zoomLevel: float, /) -> None: ... method target (line 108) | def target(self, /) -> PySide6.QtGui.QVector3D: ... method wrapXRotation (line 109) | def wrapXRotation(self, /) -> bool: ... method wrapYRotation (line 110) | def wrapYRotation(self, /) -> bool: ... method xRotation (line 111) | def xRotation(self, /) -> float: ... method yRotation (line 112) | def yRotation(self, /) -> float: ... method zoomLevel (line 113) | def zoomLevel(self, /) -> float: ... class Q3DInputHandler (line 115) | class Q3DInputHandler(QAbstract3DInputHandler): method __init__ (line 121) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method isRotationEnabled (line 122) | def isRotationEnabled(self, /) -> bool: ... method isSelectionEnabled (line 123) | def isSelectionEnabled(self, /) -> bool: ... method isZoomAtTargetEnabled (line 124) | def isZoomAtTargetEnabled(self, /) -> bool: ... method isZoomEnabled (line 125) | def isZoomEnabled(self, /) -> bool: ... method mouseMoveEvent (line 126) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, mousePos: P... method mousePressEvent (line 127) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, mousePos: ... method mouseReleaseEvent (line 128) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, mousePos... method setRotationEnabled (line 129) | def setRotationEnabled(self, enable: bool, /) -> None: ... method setSelectionEnabled (line 130) | def setSelectionEnabled(self, enable: bool, /) -> None: ... method setZoomAtTargetEnabled (line 131) | def setZoomAtTargetEnabled(self, enable: bool, /) -> None: ... method setZoomEnabled (line 132) | def setZoomEnabled(self, enable: bool, /) -> None: ... method wheelEvent (line 133) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class Q3DLight (line 135) | class Q3DLight(Q3DObject): method __init__ (line 138) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method isAutoPosition (line 139) | def isAutoPosition(self, /) -> bool: ... method setAutoPosition (line 140) | def setAutoPosition(self, enabled: bool, /) -> None: ... class Q3DObject (line 142) | class Q3DObject(PySide6.QtCore.QObject): method __init__ (line 145) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method copyValuesFrom (line 146) | def copyValuesFrom(self, source: Q3DObject, /) -> None: ... method isDirty (line 147) | def isDirty(self, /) -> bool: ... method parentScene (line 148) | def parentScene(self, /) -> Q3DScene: ... method position (line 149) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method setDirty (line 150) | def setDirty(self, dirty: bool, /) -> None: ... method setPosition (line 151) | def setPosition(self, position: PySide6.QtGui.QVector3D, /) -> None: ... class Q3DScatter (line 153) | class Q3DScatter(QAbstract3DGraph): method __init__ (line 159) | def __init__(self, /, format: PySide6.QtGui.QSurfaceFormat | PySide6.Q... method addAxis (line 160) | def addAxis(self, axis: QValue3DAxis, /) -> None: ... method addSeries (line 161) | def addSeries(self, series: QScatter3DSeries, /) -> None: ... method axes (line 162) | def axes(self, /) -> List[QValue3DAxis]: ... method axisX (line 163) | def axisX(self, /) -> QValue3DAxis: ... method axisY (line 164) | def axisY(self, /) -> QValue3DAxis: ... method axisZ (line 165) | def axisZ(self, /) -> QValue3DAxis: ... method releaseAxis (line 166) | def releaseAxis(self, axis: QValue3DAxis, /) -> None: ... method removeSeries (line 167) | def removeSeries(self, series: QScatter3DSeries, /) -> None: ... method selectedSeries (line 168) | def selectedSeries(self, /) -> QScatter3DSeries: ... method seriesList (line 169) | def seriesList(self, /) -> List[QScatter3DSeries]: ... method setAxisX (line 170) | def setAxisX(self, axis: QValue3DAxis, /) -> None: ... method setAxisY (line 171) | def setAxisY(self, axis: QValue3DAxis, /) -> None: ... method setAxisZ (line 172) | def setAxisZ(self, axis: QValue3DAxis, /) -> None: ... class Q3DScene (line 174) | class Q3DScene(PySide6.QtCore.QObject): method __init__ (line 186) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method activeCamera (line 187) | def activeCamera(self, /) -> Q3DCamera: ... method activeLight (line 188) | def activeLight(self, /) -> Q3DLight: ... method devicePixelRatio (line 189) | def devicePixelRatio(self, /) -> float: ... method graphPositionQuery (line 190) | def graphPositionQuery(self, /) -> PySide6.QtCore.QPoint: ... method invalidSelectionPoint (line 192) | def invalidSelectionPoint() -> PySide6.QtCore.QPoint: ... method isPointInPrimarySubView (line 193) | def isPointInPrimarySubView(self, point: PySide6.QtCore.QPoint, /) -> ... method isPointInSecondarySubView (line 194) | def isPointInSecondarySubView(self, point: PySide6.QtCore.QPoint, /) -... method isSecondarySubviewOnTop (line 195) | def isSecondarySubviewOnTop(self, /) -> bool: ... method isSlicingActive (line 196) | def isSlicingActive(self, /) -> bool: ... method primarySubViewport (line 197) | def primarySubViewport(self, /) -> PySide6.QtCore.QRect: ... method secondarySubViewport (line 198) | def secondarySubViewport(self, /) -> PySide6.QtCore.QRect: ... method selectionQueryPosition (line 199) | def selectionQueryPosition(self, /) -> PySide6.QtCore.QPoint: ... method setActiveCamera (line 200) | def setActiveCamera(self, camera: Q3DCamera, /) -> None: ... method setActiveLight (line 201) | def setActiveLight(self, light: Q3DLight, /) -> None: ... method setDevicePixelRatio (line 202) | def setDevicePixelRatio(self, pixelRatio: float, /) -> None: ... method setGraphPositionQuery (line 203) | def setGraphPositionQuery(self, point: PySide6.QtCore.QPoint, /) -> No... method setPrimarySubViewport (line 204) | def setPrimarySubViewport(self, primarySubViewport: PySide6.QtCore.QRe... method setSecondarySubViewport (line 205) | def setSecondarySubViewport(self, secondarySubViewport: PySide6.QtCore... method setSecondarySubviewOnTop (line 206) | def setSecondarySubviewOnTop(self, isSecondaryOnTop: bool, /) -> None:... method setSelectionQueryPosition (line 207) | def setSelectionQueryPosition(self, point: PySide6.QtCore.QPoint, /) -... method setSlicingActive (line 208) | def setSlicingActive(self, isSlicing: bool, /) -> None: ... method viewport (line 209) | def viewport(self, /) -> PySide6.QtCore.QRect: ... class Q3DSurface (line 211) | class Q3DSurface(QAbstract3DGraph): method __init__ (line 218) | def __init__(self, /, format: PySide6.QtGui.QSurfaceFormat | PySide6.Q... method addAxis (line 219) | def addAxis(self, axis: QValue3DAxis, /) -> None: ... method addSeries (line 220) | def addSeries(self, series: QSurface3DSeries, /) -> None: ... method axes (line 221) | def axes(self, /) -> List[QValue3DAxis]: ... method axisX (line 222) | def axisX(self, /) -> QValue3DAxis: ... method axisY (line 223) | def axisY(self, /) -> QValue3DAxis: ... method axisZ (line 224) | def axisZ(self, /) -> QValue3DAxis: ... method flipHorizontalGrid (line 225) | def flipHorizontalGrid(self, /) -> bool: ... method releaseAxis (line 226) | def releaseAxis(self, axis: QValue3DAxis, /) -> None: ... method removeSeries (line 227) | def removeSeries(self, series: QSurface3DSeries, /) -> None: ... method selectedSeries (line 228) | def selectedSeries(self, /) -> QSurface3DSeries: ... method seriesList (line 229) | def seriesList(self, /) -> List[QSurface3DSeries]: ... method setAxisX (line 230) | def setAxisX(self, axis: QValue3DAxis, /) -> None: ... method setAxisY (line 231) | def setAxisY(self, axis: QValue3DAxis, /) -> None: ... method setAxisZ (line 232) | def setAxisZ(self, axis: QValue3DAxis, /) -> None: ... method setFlipHorizontalGrid (line 233) | def setFlipHorizontalGrid(self, flip: bool, /) -> None: ... class Q3DTheme (line 235) | class Q3DTheme(PySide6.QtCore.QObject): class ColorStyle (line 236) | class ColorStyle(enum.Enum): class Theme (line 241) | class Theme(enum.Enum): method __init__ (line 275) | def __init__(self, themeType: Q3DTheme.Theme, /, parent: PySide6.QtCor... method __init__ (line 277) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method ambientLightStrength (line 278) | def ambientLightStrength(self, /) -> float: ... method backgroundColor (line 279) | def backgroundColor(self, /) -> PySide6.QtGui.QColor: ... method baseColors (line 280) | def baseColors(self, /) -> List[PySide6.QtGui.QColor]: ... method baseGradients (line 281) | def baseGradients(self, /) -> List[PySide6.QtGui.QLinearGradient]: ... method colorStyle (line 282) | def colorStyle(self, /) -> Q3DTheme.ColorStyle: ... method font (line 283) | def font(self, /) -> PySide6.QtGui.QFont: ... method gridLineColor (line 284) | def gridLineColor(self, /) -> PySide6.QtGui.QColor: ... method highlightLightStrength (line 285) | def highlightLightStrength(self, /) -> float: ... method isBackgroundEnabled (line 286) | def isBackgroundEnabled(self, /) -> bool: ... method isGridEnabled (line 287) | def isGridEnabled(self, /) -> bool: ... method isLabelBackgroundEnabled (line 288) | def isLabelBackgroundEnabled(self, /) -> bool: ... method isLabelBorderEnabled (line 289) | def isLabelBorderEnabled(self, /) -> bool: ... method labelBackgroundColor (line 290) | def labelBackgroundColor(self, /) -> PySide6.QtGui.QColor: ... method labelTextColor (line 291) | def labelTextColor(self, /) -> PySide6.QtGui.QColor: ... method lightColor (line 292) | def lightColor(self, /) -> PySide6.QtGui.QColor: ... method lightStrength (line 293) | def lightStrength(self, /) -> float: ... method multiHighlightColor (line 294) | def multiHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method multiHighlightGradient (line 295) | def multiHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method setAmbientLightStrength (line 296) | def setAmbientLightStrength(self, strength: float, /) -> None: ... method setBackgroundColor (line 297) | def setBackgroundColor(self, color: Union[PySide6.QtGui.QColor, str, P... method setBackgroundEnabled (line 298) | def setBackgroundEnabled(self, enabled: bool, /) -> None: ... method setBaseColors (line 299) | def setBaseColors(self, colors: typing.Iterable[PySide6.QtGui.QColor],... method setBaseGradients (line 300) | def setBaseGradients(self, gradients: typing.Iterable[PySide6.QtGui.QL... method setColorStyle (line 301) | def setColorStyle(self, style: Q3DTheme.ColorStyle, /) -> None: ... method setFont (line 302) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setGridEnabled (line 303) | def setGridEnabled(self, enabled: bool, /) -> None: ... method setGridLineColor (line 304) | def setGridLineColor(self, color: Union[PySide6.QtGui.QColor, str, PyS... method setHighlightLightStrength (line 305) | def setHighlightLightStrength(self, strength: float, /) -> None: ... method setLabelBackgroundColor (line 306) | def setLabelBackgroundColor(self, color: Union[PySide6.QtGui.QColor, s... method setLabelBackgroundEnabled (line 307) | def setLabelBackgroundEnabled(self, enabled: bool, /) -> None: ... method setLabelBorderEnabled (line 308) | def setLabelBorderEnabled(self, enabled: bool, /) -> None: ... method setLabelTextColor (line 309) | def setLabelTextColor(self, color: Union[PySide6.QtGui.QColor, str, Py... method setLightColor (line 310) | def setLightColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setLightStrength (line 311) | def setLightStrength(self, strength: float, /) -> None: ... method setMultiHighlightColor (line 312) | def setMultiHighlightColor(self, color: Union[PySide6.QtGui.QColor, st... method setMultiHighlightGradient (line 313) | def setMultiHighlightGradient(self, gradient: PySide6.QtGui.QLinearGra... method setSingleHighlightColor (line 314) | def setSingleHighlightColor(self, color: Union[PySide6.QtGui.QColor, s... method setSingleHighlightGradient (line 315) | def setSingleHighlightGradient(self, gradient: PySide6.QtGui.QLinearGr... method setType (line 316) | def setType(self, themeType: Q3DTheme.Theme, /) -> None: ... method setWindowColor (line 317) | def setWindowColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method singleHighlightColor (line 318) | def singleHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method singleHighlightGradient (line 319) | def singleHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient:... method type (line 320) | def type(self, /) -> Q3DTheme.Theme: ... method windowColor (line 321) | def windowColor(self, /) -> PySide6.QtGui.QColor: ... class QAbstract3DAxis (line 323) | class QAbstract3DAxis(PySide6.QtCore.QObject): class AxisOrientation (line 324) | class AxisOrientation(enum.Enum): class AxisType (line 330) | class AxisType(enum.Enum): method __init__ (line 345) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method isAutoAdjustRange (line 346) | def isAutoAdjustRange(self, /) -> bool: ... method isTitleFixed (line 347) | def isTitleFixed(self, /) -> bool: ... method isTitleVisible (line 348) | def isTitleVisible(self, /) -> bool: ... method labelAutoRotation (line 349) | def labelAutoRotation(self, /) -> float: ... method labels (line 350) | def labels(self, /) -> List[str]: ... method max (line 351) | def max(self, /) -> float: ... method min (line 352) | def min(self, /) -> float: ... method orientation (line 353) | def orientation(self, /) -> QAbstract3DAxis.AxisOrientation: ... method setAutoAdjustRange (line 354) | def setAutoAdjustRange(self, autoAdjust: bool, /) -> None: ... method setLabelAutoRotation (line 355) | def setLabelAutoRotation(self, angle: float, /) -> None: ... method setLabels (line 356) | def setLabels(self, labels: typing.Iterable[str], /) -> None: ... method setMax (line 357) | def setMax(self, max: float, /) -> None: ... method setMin (line 358) | def setMin(self, min: float, /) -> None: ... method setRange (line 359) | def setRange(self, min: float, max: float, /) -> None: ... method setTitle (line 360) | def setTitle(self, title: str, /) -> None: ... method setTitleFixed (line 361) | def setTitleFixed(self, fixed: bool, /) -> None: ... method setTitleVisible (line 362) | def setTitleVisible(self, visible: bool, /) -> None: ... method title (line 363) | def title(self, /) -> str: ... method type (line 364) | def type(self, /) -> QAbstract3DAxis.AxisType: ... class QAbstract3DGraph (line 366) | class QAbstract3DGraph(PySide6.QtGui.QWindow): class ElementType (line 367) | class ElementType(enum.Enum): class OptimizationHint (line 375) | class OptimizationHint(enum.Flag): class SelectionFlag (line 379) | class SelectionFlag(enum.Flag): class ShadowQuality (line 391) | class ShadowQuality(enum.Enum): method __init__ (line 418) | def __init__(self, *args, active: bool = ..., activeChanged: typing.Ca... method activeInputHandler (line 419) | def activeInputHandler(self, /) -> QAbstract3DInputHandler: ... method activeTheme (line 420) | def activeTheme(self, /) -> Q3DTheme: ... method addCustomItem (line 421) | def addCustomItem(self, item: QCustom3DItem, /) -> int: ... method addInputHandler (line 422) | def addInputHandler(self, inputHandler: QAbstract3DInputHandler, /) ->... method addTheme (line 423) | def addTheme(self, theme: Q3DTheme, /) -> None: ... method aspectRatio (line 424) | def aspectRatio(self, /) -> float: ... method clearSelection (line 425) | def clearSelection(self, /) -> None: ... method currentFps (line 426) | def currentFps(self, /) -> float: ... method customItems (line 427) | def customItems(self, /) -> List[QCustom3DItem]: ... method event (line 428) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method exposeEvent (line 429) | def exposeEvent(self, event: PySide6.QtGui.QExposeEvent, /) -> None: ... method hasContext (line 430) | def hasContext(self, /) -> bool: ... method hasSeries (line 431) | def hasSeries(self, series: QAbstract3DSeries, /) -> bool: ... method horizontalAspectRatio (line 432) | def horizontalAspectRatio(self, /) -> float: ... method inputHandlers (line 433) | def inputHandlers(self, /) -> List[QAbstract3DInputHandler]: ... method isOrthoProjection (line 434) | def isOrthoProjection(self, /) -> bool: ... method isPolar (line 435) | def isPolar(self, /) -> bool: ... method isReflection (line 436) | def isReflection(self, /) -> bool: ... method locale (line 437) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method margin (line 438) | def margin(self, /) -> float: ... method measureFps (line 439) | def measureFps(self, /) -> bool: ... method mouseDoubleClickEvent (line 440) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseMoveEvent (line 441) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 442) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 443) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method optimizationHints (line 444) | def optimizationHints(self, /) -> QAbstract3DGraph.OptimizationHint: ... method queriedGraphPosition (line 445) | def queriedGraphPosition(self, /) -> PySide6.QtGui.QVector3D: ... method radialLabelOffset (line 446) | def radialLabelOffset(self, /) -> float: ... method reflectivity (line 447) | def reflectivity(self, /) -> float: ... method releaseCustomItem (line 448) | def releaseCustomItem(self, item: QCustom3DItem, /) -> None: ... method releaseInputHandler (line 449) | def releaseInputHandler(self, inputHandler: QAbstract3DInputHandler, /... method releaseTheme (line 450) | def releaseTheme(self, theme: Q3DTheme, /) -> None: ... method removeCustomItem (line 451) | def removeCustomItem(self, item: QCustom3DItem, /) -> None: ... method removeCustomItemAt (line 452) | def removeCustomItemAt(self, position: PySide6.QtGui.QVector3D, /) -> ... method removeCustomItems (line 453) | def removeCustomItems(self, /) -> None: ... method renderToImage (line 454) | def renderToImage(self, /, msaaSamples: int | None = ..., imageSize: P... method resizeEvent (line 455) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method scene (line 456) | def scene(self, /) -> Q3DScene: ... method selectedAxis (line 457) | def selectedAxis(self, /) -> QAbstract3DAxis: ... method selectedCustomItem (line 458) | def selectedCustomItem(self, /) -> QCustom3DItem: ... method selectedCustomItemIndex (line 459) | def selectedCustomItemIndex(self, /) -> int: ... method selectedElement (line 460) | def selectedElement(self, /) -> QAbstract3DGraph.ElementType: ... method selectedLabelIndex (line 461) | def selectedLabelIndex(self, /) -> int: ... method selectionMode (line 462) | def selectionMode(self, /) -> QAbstract3DGraph.SelectionFlag: ... method setActiveInputHandler (line 463) | def setActiveInputHandler(self, inputHandler: QAbstract3DInputHandler,... method setActiveTheme (line 464) | def setActiveTheme(self, theme: Q3DTheme, /) -> None: ... method setAspectRatio (line 465) | def setAspectRatio(self, ratio: float, /) -> None: ... method setHorizontalAspectRatio (line 466) | def setHorizontalAspectRatio(self, ratio: float, /) -> None: ... method setLocale (line 467) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setMargin (line 468) | def setMargin(self, margin: float, /) -> None: ... method setMeasureFps (line 469) | def setMeasureFps(self, enable: bool, /) -> None: ... method setOptimizationHints (line 470) | def setOptimizationHints(self, hints: QAbstract3DGraph.OptimizationHin... method setOrthoProjection (line 471) | def setOrthoProjection(self, enable: bool, /) -> None: ... method setPolar (line 472) | def setPolar(self, enable: bool, /) -> None: ... method setRadialLabelOffset (line 473) | def setRadialLabelOffset(self, offset: float, /) -> None: ... method setReflection (line 474) | def setReflection(self, enable: bool, /) -> None: ... method setReflectivity (line 475) | def setReflectivity(self, reflectivity: float, /) -> None: ... method setSelectionMode (line 476) | def setSelectionMode(self, mode: QAbstract3DGraph.SelectionFlag, /) ->... method setShadowQuality (line 477) | def setShadowQuality(self, quality: QAbstract3DGraph.ShadowQuality, /)... method shadowQuality (line 478) | def shadowQuality(self, /) -> QAbstract3DGraph.ShadowQuality: ... method shadowsSupported (line 479) | def shadowsSupported(self, /) -> bool: ... method themes (line 480) | def themes(self, /) -> List[Q3DTheme]: ... method touchEvent (line 481) | def touchEvent(self, event: PySide6.QtGui.QTouchEvent, /) -> None: ... method wheelEvent (line 482) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class QAbstract3DInputHandler (line 484) | class QAbstract3DInputHandler(PySide6.QtCore.QObject): class InputView (line 485) | class InputView(enum.Enum): method __init__ (line 493) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method inputPosition (line 494) | def inputPosition(self, /) -> PySide6.QtCore.QPoint: ... method inputView (line 495) | def inputView(self, /) -> QAbstract3DInputHandler.InputView: ... method mouseDoubleClickEvent (line 496) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseMoveEvent (line 497) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, mousePos: P... method mousePressEvent (line 498) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, mousePos: ... method mouseReleaseEvent (line 499) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, mousePos... method prevDistance (line 500) | def prevDistance(self, /) -> int: ... method previousInputPos (line 501) | def previousInputPos(self, /) -> PySide6.QtCore.QPoint: ... method scene (line 502) | def scene(self, /) -> Q3DScene: ... method setInputPosition (line 503) | def setInputPosition(self, position: PySide6.QtCore.QPoint, /) -> None... method setInputView (line 504) | def setInputView(self, inputView: QAbstract3DInputHandler.InputView, /... method setPrevDistance (line 505) | def setPrevDistance(self, distance: int, /) -> None: ... method setPreviousInputPos (line 506) | def setPreviousInputPos(self, position: PySide6.QtCore.QPoint, /) -> N... method setScene (line 507) | def setScene(self, scene: Q3DScene, /) -> None: ... method touchEvent (line 508) | def touchEvent(self, event: PySide6.QtGui.QTouchEvent, /) -> None: ... method wheelEvent (line 509) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class QAbstract3DSeries (line 511) | class QAbstract3DSeries(PySide6.QtCore.QObject): class Mesh (line 512) | class Mesh(enum.Enum): class SeriesType (line 526) | class SeriesType(enum.Enum): method __init__ (line 548) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method baseColor (line 549) | def baseColor(self, /) -> PySide6.QtGui.QColor: ... method baseGradient (line 550) | def baseGradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method colorStyle (line 551) | def colorStyle(self, /) -> Q3DTheme.ColorStyle: ... method isItemLabelVisible (line 552) | def isItemLabelVisible(self, /) -> bool: ... method isMeshSmooth (line 553) | def isMeshSmooth(self, /) -> bool: ... method isVisible (line 554) | def isVisible(self, /) -> bool: ... method itemLabel (line 555) | def itemLabel(self, /) -> str: ... method itemLabelFormat (line 556) | def itemLabelFormat(self, /) -> str: ... method mesh (line 557) | def mesh(self, /) -> QAbstract3DSeries.Mesh: ... method meshRotation (line 558) | def meshRotation(self, /) -> PySide6.QtGui.QQuaternion: ... method multiHighlightColor (line 559) | def multiHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method multiHighlightGradient (line 560) | def multiHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method name (line 561) | def name(self, /) -> str: ... method setBaseColor (line 562) | def setBaseColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6... method setBaseGradient (line 563) | def setBaseGradient(self, gradient: PySide6.QtGui.QLinearGradient, /) ... method setColorStyle (line 564) | def setColorStyle(self, style: Q3DTheme.ColorStyle, /) -> None: ... method setItemLabelFormat (line 565) | def setItemLabelFormat(self, format: str, /) -> None: ... method setItemLabelVisible (line 566) | def setItemLabelVisible(self, visible: bool, /) -> None: ... method setMesh (line 567) | def setMesh(self, mesh: QAbstract3DSeries.Mesh, /) -> None: ... method setMeshAxisAndAngle (line 568) | def setMeshAxisAndAngle(self, axis: PySide6.QtGui.QVector3D, angle: fl... method setMeshRotation (line 569) | def setMeshRotation(self, rotation: PySide6.QtGui.QQuaternion, /) -> N... method setMeshSmooth (line 570) | def setMeshSmooth(self, enable: bool, /) -> None: ... method setMultiHighlightColor (line 571) | def setMultiHighlightColor(self, color: Union[PySide6.QtGui.QColor, st... method setMultiHighlightGradient (line 572) | def setMultiHighlightGradient(self, gradient: PySide6.QtGui.QLinearGra... method setName (line 573) | def setName(self, name: str, /) -> None: ... method setSingleHighlightColor (line 574) | def setSingleHighlightColor(self, color: Union[PySide6.QtGui.QColor, s... method setSingleHighlightGradient (line 575) | def setSingleHighlightGradient(self, gradient: PySide6.QtGui.QLinearGr... method setUserDefinedMesh (line 576) | def setUserDefinedMesh(self, fileName: str, /) -> None: ... method setVisible (line 577) | def setVisible(self, visible: bool, /) -> None: ... method singleHighlightColor (line 578) | def singleHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method singleHighlightGradient (line 579) | def singleHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient:... method type (line 580) | def type(self, /) -> QAbstract3DSeries.SeriesType: ... method userDefinedMesh (line 581) | def userDefinedMesh(self, /) -> str: ... class QAbstractDataProxy (line 583) | class QAbstractDataProxy(PySide6.QtCore.QObject): class DataType (line 584) | class DataType(enum.Enum): method __init__ (line 590) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method type (line 591) | def type(self, /) -> QAbstractDataProxy.DataType: ... class QBar3DSeries (line 593) | class QBar3DSeries(QAbstract3DSeries): method __init__ (line 600) | def __init__(self, dataProxy: QBarDataProxy, /, parent: PySide6.QtCore... method __init__ (line 602) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method dataProxy (line 603) | def dataProxy(self, /) -> QBarDataProxy: ... method invalidSelectionPosition (line 605) | def invalidSelectionPosition() -> PySide6.QtCore.QPoint: ... method meshAngle (line 606) | def meshAngle(self, /) -> float: ... method rowColors (line 607) | def rowColors(self, /) -> List[PySide6.QtGui.QColor]: ... method selectedBar (line 608) | def selectedBar(self, /) -> PySide6.QtCore.QPoint: ... method setDataProxy (line 609) | def setDataProxy(self, proxy: QBarDataProxy, /) -> None: ... method setMeshAngle (line 610) | def setMeshAngle(self, angle: float, /) -> None: ... method setRowColors (line 611) | def setRowColors(self, colors: typing.Iterable[PySide6.QtGui.QColor], ... method setSelectedBar (line 612) | def setSelectedBar(self, position: PySide6.QtCore.QPoint, /) -> None: ... class QBarDataItem (line 614) | class QBarDataItem(shiboken6.Object): method __init__ (line 616) | def __init__(self, value: float, angle: float, /) -> None: ... method __init__ (line 618) | def __init__(self, value: float, /) -> None: ... method __init__ (line 620) | def __init__(self, other: QBarDataItem, /) -> None: ... method __init__ (line 622) | def __init__(self, /) -> None: ... method createExtraData (line 623) | def createExtraData(self, /) -> None: ... method rotation (line 624) | def rotation(self, /) -> float: ... method setRotation (line 625) | def setRotation(self, angle: float, /) -> None: ... method setValue (line 626) | def setValue(self, val: float, /) -> None: ... method value (line 627) | def value(self, /) -> float: ... method __copy__ (line 628) | def __copy__(self, /) -> typing_extensions.Self: ... class QBarDataProxy (line 630) | class QBarDataProxy(QAbstractDataProxy): method __init__ (line 642) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addRow (line 644) | def addRow(self, arg__1: typing.Iterable[QBarDataItem], arg__2: str, /... method addRow (line 646) | def addRow(self, arg__1: typing.Iterable[QBarDataItem], /) -> int: ... method addRows (line 648) | def addRows(self, rows: List[List[QBarDataItem]], labels: typing.Itera... method addRows (line 650) | def addRows(self, rows: List[List[QBarDataItem]], /) -> int: ... method array (line 651) | def array(self, /) -> List[List[QBarDataItem]]: ... method columnLabels (line 652) | def columnLabels(self, /) -> List[str]: ... method insertRow (line 654) | def insertRow(self, arg__1: int, arg__2: typing.Iterable[QBarDataItem]... method insertRow (line 656) | def insertRow(self, arg__1: int, arg__2: typing.Iterable[QBarDataItem]... method insertRows (line 658) | def insertRows(self, rowIndex: int, rows: List[List[QBarDataItem]], la... method insertRows (line 660) | def insertRows(self, rowIndex: int, rows: List[List[QBarDataItem]], /)... method itemAt (line 662) | def itemAt(self, rowIndex: int, columnIndex: int, /) -> QBarDataItem: ... method itemAt (line 664) | def itemAt(self, position: PySide6.QtCore.QPoint, /) -> QBarDataItem: ... method removeRows (line 665) | def removeRows(self, rowIndex: int, removeCount: int, /, removeLabels:... method resetArray (line 667) | def resetArray(self, arg__1: List[List[QBarDataItem]], arg__2: typing.... method resetArray (line 669) | def resetArray(self, arg__1: List[List[QBarDataItem]], /) -> None: ... method resetArray (line 671) | def resetArray(self, /) -> None: ... method rowAt (line 672) | def rowAt(self, rowIndex: int, /) -> List[QBarDataItem]: ... method rowCount (line 673) | def rowCount(self, /) -> int: ... method rowLabels (line 674) | def rowLabels(self, /) -> List[str]: ... method series (line 675) | def series(self, /) -> QBar3DSeries: ... method setColumnLabels (line 676) | def setColumnLabels(self, labels: typing.Iterable[str], /) -> None: ... method setItem (line 678) | def setItem(self, rowIndex: int, columnIndex: int, item: QBarDataItem ... method setItem (line 680) | def setItem(self, position: PySide6.QtCore.QPoint, item: QBarDataItem ... method setRow (line 682) | def setRow(self, arg__1: int, arg__2: typing.Iterable[QBarDataItem], a... method setRow (line 684) | def setRow(self, arg__1: int, arg__2: typing.Iterable[QBarDataItem], /... method setRowLabels (line 685) | def setRowLabels(self, labels: typing.Iterable[str], /) -> None: ... method setRows (line 687) | def setRows(self, rowIndex: int, rows: List[List[QBarDataItem]], label... method setRows (line 689) | def setRows(self, rowIndex: int, rows: List[List[QBarDataItem]], /) ->... class QCategory3DAxis (line 691) | class QCategory3DAxis(QAbstract3DAxis): method __init__ (line 694) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method labels (line 695) | def labels(self, /) -> List[str]: ... method setLabels (line 696) | def setLabels(self, labels: typing.Iterable[str], /) -> None: ... class QCustom3DItem (line 698) | class QCustom3DItem(PySide6.QtCore.QObject): method __init__ (line 710) | def __init__(self, meshFile: str, position: PySide6.QtGui.QVector3D, s... method __init__ (line 712) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method isPositionAbsolute (line 713) | def isPositionAbsolute(self, /) -> bool: ... method isScalingAbsolute (line 714) | def isScalingAbsolute(self, /) -> bool: ... method isShadowCasting (line 715) | def isShadowCasting(self, /) -> bool: ... method isVisible (line 716) | def isVisible(self, /) -> bool: ... method meshFile (line 717) | def meshFile(self, /) -> str: ... method position (line 718) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method rotation (line 719) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method scaling (line 720) | def scaling(self, /) -> PySide6.QtGui.QVector3D: ... method setMeshFile (line 721) | def setMeshFile(self, meshFile: str, /) -> None: ... method setPosition (line 722) | def setPosition(self, position: PySide6.QtGui.QVector3D, /) -> None: ... method setPositionAbsolute (line 723) | def setPositionAbsolute(self, positionAbsolute: bool, /) -> None: ... method setRotation (line 724) | def setRotation(self, rotation: PySide6.QtGui.QQuaternion, /) -> None:... method setRotationAxisAndAngle (line 725) | def setRotationAxisAndAngle(self, axis: PySide6.QtGui.QVector3D, angle... method setScaling (line 726) | def setScaling(self, scaling: PySide6.QtGui.QVector3D, /) -> None: ... method setScalingAbsolute (line 727) | def setScalingAbsolute(self, scalingAbsolute: bool, /) -> None: ... method setShadowCasting (line 728) | def setShadowCasting(self, enabled: bool, /) -> None: ... method setTextureFile (line 729) | def setTextureFile(self, textureFile: str, /) -> None: ... method setTextureImage (line 730) | def setTextureImage(self, textureImage: PySide6.QtGui.QImage, /) -> No... method setVisible (line 731) | def setVisible(self, visible: bool, /) -> None: ... method textureFile (line 732) | def textureFile(self, /) -> str: ... class QCustom3DLabel (line 734) | class QCustom3DLabel(QCustom3DItem): method __init__ (line 744) | def __init__(self, text: str, font: PySide6.QtGui.QFont | str | typing... method __init__ (line 746) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method backgroundColor (line 747) | def backgroundColor(self, /) -> PySide6.QtGui.QColor: ... method font (line 748) | def font(self, /) -> PySide6.QtGui.QFont: ... method isBackgroundEnabled (line 749) | def isBackgroundEnabled(self, /) -> bool: ... method isBorderEnabled (line 750) | def isBorderEnabled(self, /) -> bool: ... method isFacingCamera (line 751) | def isFacingCamera(self, /) -> bool: ... method setBackgroundColor (line 752) | def setBackgroundColor(self, color: Union[PySide6.QtGui.QColor, str, P... method setBackgroundEnabled (line 753) | def setBackgroundEnabled(self, enabled: bool, /) -> None: ... method setBorderEnabled (line 754) | def setBorderEnabled(self, enabled: bool, /) -> None: ... method setFacingCamera (line 755) | def setFacingCamera(self, enabled: bool, /) -> None: ... method setFont (line 756) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setText (line 757) | def setText(self, text: str, /) -> None: ... method setTextColor (line 758) | def setTextColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6... method text (line 759) | def text(self, /) -> str: ... method textColor (line 760) | def textColor(self, /) -> PySide6.QtGui.QColor: ... class QCustom3DVolume (line 762) | class QCustom3DVolume(QCustom3DItem): method __init__ (line 783) | def __init__(self, position: PySide6.QtGui.QVector3D, scaling: PySide6... method __init__ (line 785) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method alphaMultiplier (line 786) | def alphaMultiplier(self, /) -> float: ... method colorTable (line 787) | def colorTable(self, /) -> List[int]: ... method createTextureData (line 788) | def createTextureData(self, images: typing.Iterable[PySide6.QtGui.QIma... method drawSliceFrames (line 789) | def drawSliceFrames(self, /) -> bool: ... method drawSlices (line 790) | def drawSlices(self, /) -> bool: ... method preserveOpacity (line 791) | def preserveOpacity(self, /) -> bool: ... method renderSlice (line 792) | def renderSlice(self, axis: PySide6.QtCore.Qt.Axis, index: int, /) -> ... method setAlphaMultiplier (line 793) | def setAlphaMultiplier(self, mult: float, /) -> None: ... method setColorTable (line 794) | def setColorTable(self, colors: typing.Iterable[int], /) -> None: ... method setDrawSliceFrames (line 795) | def setDrawSliceFrames(self, enable: bool, /) -> None: ... method setDrawSlices (line 796) | def setDrawSlices(self, enable: bool, /) -> None: ... method setPreserveOpacity (line 797) | def setPreserveOpacity(self, enable: bool, /) -> None: ... method setSliceFrameColor (line 798) | def setSliceFrameColor(self, color: Union[PySide6.QtGui.QColor, str, P... method setSliceFrameGaps (line 799) | def setSliceFrameGaps(self, values: PySide6.QtGui.QVector3D, /) -> Non... method setSliceFrameThicknesses (line 800) | def setSliceFrameThicknesses(self, values: PySide6.QtGui.QVector3D, /)... method setSliceFrameWidths (line 801) | def setSliceFrameWidths(self, values: PySide6.QtGui.QVector3D, /) -> N... method setSliceIndexX (line 802) | def setSliceIndexX(self, value: int, /) -> None: ... method setSliceIndexY (line 803) | def setSliceIndexY(self, value: int, /) -> None: ... method setSliceIndexZ (line 804) | def setSliceIndexZ(self, value: int, /) -> None: ... method setSliceIndices (line 805) | def setSliceIndices(self, x: int, y: int, z: int, /) -> None: ... method setSubTextureData (line 807) | def setSubTextureData(self, axis: PySide6.QtCore.Qt.Axis, index: int, ... method setSubTextureData (line 809) | def setSubTextureData(self, axis: PySide6.QtCore.Qt.Axis, index: int, ... method setTextureData (line 810) | def setTextureData(self, arg__1: typing.Iterable[int], /) -> None: ... method setTextureDepth (line 811) | def setTextureDepth(self, value: int, /) -> None: ... method setTextureDimensions (line 812) | def setTextureDimensions(self, width: int, height: int, depth: int, /)... method setTextureFormat (line 813) | def setTextureFormat(self, format: PySide6.QtGui.QImage.Format, /) -> ... method setTextureHeight (line 814) | def setTextureHeight(self, value: int, /) -> None: ... method setTextureWidth (line 815) | def setTextureWidth(self, value: int, /) -> None: ... method setUseHighDefShader (line 816) | def setUseHighDefShader(self, enable: bool, /) -> None: ... method sliceFrameColor (line 817) | def sliceFrameColor(self, /) -> PySide6.QtGui.QColor: ... method sliceFrameGaps (line 818) | def sliceFrameGaps(self, /) -> PySide6.QtGui.QVector3D: ... method sliceFrameThicknesses (line 819) | def sliceFrameThicknesses(self, /) -> PySide6.QtGui.QVector3D: ... method sliceFrameWidths (line 820) | def sliceFrameWidths(self, /) -> PySide6.QtGui.QVector3D: ... method sliceIndexX (line 821) | def sliceIndexX(self, /) -> int: ... method sliceIndexY (line 822) | def sliceIndexY(self, /) -> int: ... method sliceIndexZ (line 823) | def sliceIndexZ(self, /) -> int: ... method textureData (line 824) | def textureData(self, /) -> List[int]: ... method textureDataWidth (line 825) | def textureDataWidth(self, /) -> int: ... method textureDepth (line 826) | def textureDepth(self, /) -> int: ... method textureFormat (line 827) | def textureFormat(self, /) -> PySide6.QtGui.QImage.Format: ... method textureHeight (line 828) | def textureHeight(self, /) -> int: ... method textureWidth (line 829) | def textureWidth(self, /) -> int: ... method useHighDefShader (line 830) | def useHighDefShader(self, /) -> bool: ... class QHeightMapSurfaceDataProxy (line 832) | class QHeightMapSurfaceDataProxy(QSurfaceDataProxy): method __init__ (line 844) | def __init__(self, image: PySide6.QtGui.QImage, /, parent: PySide6.QtC... method __init__ (line 846) | def __init__(self, filename: str, /, parent: PySide6.QtCore.QObject | ... method __init__ (line 848) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoScaleY (line 849) | def autoScaleY(self, /) -> bool: ... method heightMap (line 850) | def heightMap(self, /) -> PySide6.QtGui.QImage: ... method heightMapFile (line 851) | def heightMapFile(self, /) -> str: ... method maxXValue (line 852) | def maxXValue(self, /) -> float: ... method maxYValue (line 853) | def maxYValue(self, /) -> float: ... method maxZValue (line 854) | def maxZValue(self, /) -> float: ... method minXValue (line 855) | def minXValue(self, /) -> float: ... method minYValue (line 856) | def minYValue(self, /) -> float: ... method minZValue (line 857) | def minZValue(self, /) -> float: ... method setAutoScaleY (line 858) | def setAutoScaleY(self, enabled: bool, /) -> None: ... method setHeightMap (line 859) | def setHeightMap(self, image: PySide6.QtGui.QImage, /) -> None: ... method setHeightMapFile (line 860) | def setHeightMapFile(self, filename: str, /) -> None: ... method setMaxXValue (line 861) | def setMaxXValue(self, max: float, /) -> None: ... method setMaxYValue (line 862) | def setMaxYValue(self, max: float, /) -> None: ... method setMaxZValue (line 863) | def setMaxZValue(self, max: float, /) -> None: ... method setMinXValue (line 864) | def setMinXValue(self, min: float, /) -> None: ... method setMinYValue (line 865) | def setMinYValue(self, min: float, /) -> None: ... method setMinZValue (line 866) | def setMinZValue(self, min: float, /) -> None: ... method setValueRanges (line 867) | def setValueRanges(self, minX: float, maxX: float, minZ: float, maxZ: ... class QIntList (line 869) | class QIntList: method __init__ (line 871) | def __init__(self, *args, **kwargs) -> None: ... method append (line 872) | def append(self, *args, **kwargs): ... method capacity (line 873) | def capacity(self, *args, **kwargs): ... method clear (line 874) | def clear(self, *args, **kwargs): ... method constData (line 875) | def constData(self, *args, **kwargs): ... method data (line 876) | def data(self, *args, **kwargs): ... method pop_back (line 877) | def pop_back(self, *args, **kwargs): ... method pop_front (line 878) | def pop_front(self, *args, **kwargs): ... method prepend (line 879) | def prepend(self, *args, **kwargs): ... method push_back (line 880) | def push_back(self, *args, **kwargs): ... method push_front (line 881) | def push_front(self, *args, **kwargs): ... method removeFirst (line 882) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 883) | def removeLast(self, *args, **kwargs): ... method reserve (line 884) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 885) | def __delitem__(self, other) -> None: ... method __getitem__ (line 886) | def __getitem__(self, index): ... method __len__ (line 887) | def __len__(self) -> int: ... method __setitem__ (line 888) | def __setitem__(self, index, object) -> None: ... class QItemModelBarDataProxy (line 890) | class QItemModelBarDataProxy(QBarDataProxy): class MultiMatchBehavior (line 891) | class MultiMatchBehavior(enum.Enum): method __init__ (line 917) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, value... method __init__ (line 919) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 921) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 923) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 925) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 927) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, /, pa... method __init__ (line 929) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoColumnCategories (line 930) | def autoColumnCategories(self, /) -> bool: ... method autoRowCategories (line 931) | def autoRowCategories(self, /) -> bool: ... method columnCategories (line 932) | def columnCategories(self, /) -> List[str]: ... method columnCategoryIndex (line 933) | def columnCategoryIndex(self, category: str, /) -> int: ... method columnRole (line 934) | def columnRole(self, /) -> str: ... method columnRolePattern (line 935) | def columnRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method columnRoleReplace (line 936) | def columnRoleReplace(self, /) -> str: ... method itemModel (line 937) | def itemModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method multiMatchBehavior (line 938) | def multiMatchBehavior(self, /) -> QItemModelBarDataProxy.MultiMatchBe... method remap (line 939) | def remap(self, rowRole: str, columnRole: str, valueRole: str, rotatio... method rotationRole (line 940) | def rotationRole(self, /) -> str: ... method rotationRolePattern (line 941) | def rotationRolePattern(self, /) -> PySide6.QtCore.QRegularExpression:... method rotationRoleReplace (line 942) | def rotationRoleReplace(self, /) -> str: ... method rowCategories (line 943) | def rowCategories(self, /) -> List[str]: ... method rowCategoryIndex (line 944) | def rowCategoryIndex(self, category: str, /) -> int: ... method rowRole (line 945) | def rowRole(self, /) -> str: ... method rowRolePattern (line 946) | def rowRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method rowRoleReplace (line 947) | def rowRoleReplace(self, /) -> str: ... method setAutoColumnCategories (line 948) | def setAutoColumnCategories(self, enable: bool, /) -> None: ... method setAutoRowCategories (line 949) | def setAutoRowCategories(self, enable: bool, /) -> None: ... method setColumnCategories (line 950) | def setColumnCategories(self, categories: typing.Iterable[str], /) -> ... method setColumnRole (line 951) | def setColumnRole(self, role: str, /) -> None: ... method setColumnRolePattern (line 952) | def setColumnRolePattern(self, pattern: PySide6.QtCore.QRegularExpress... method setColumnRoleReplace (line 953) | def setColumnRoleReplace(self, replace: str, /) -> None: ... method setItemModel (line 954) | def setItemModel(self, itemModel: PySide6.QtCore.QAbstractItemModel, /... method setMultiMatchBehavior (line 955) | def setMultiMatchBehavior(self, behavior: QItemModelBarDataProxy.Multi... method setRotationRole (line 956) | def setRotationRole(self, role: str, /) -> None: ... method setRotationRolePattern (line 957) | def setRotationRolePattern(self, pattern: PySide6.QtCore.QRegularExpre... method setRotationRoleReplace (line 958) | def setRotationRoleReplace(self, replace: str, /) -> None: ... method setRowCategories (line 959) | def setRowCategories(self, categories: typing.Iterable[str], /) -> Non... method setRowRole (line 960) | def setRowRole(self, role: str, /) -> None: ... method setRowRolePattern (line 961) | def setRowRolePattern(self, pattern: PySide6.QtCore.QRegularExpression... method setRowRoleReplace (line 962) | def setRowRoleReplace(self, replace: str, /) -> None: ... method setUseModelCategories (line 963) | def setUseModelCategories(self, enable: bool, /) -> None: ... method setValueRole (line 964) | def setValueRole(self, role: str, /) -> None: ... method setValueRolePattern (line 965) | def setValueRolePattern(self, pattern: PySide6.QtCore.QRegularExpressi... method setValueRoleReplace (line 966) | def setValueRoleReplace(self, replace: str, /) -> None: ... method useModelCategories (line 967) | def useModelCategories(self, /) -> bool: ... method valueRole (line 968) | def valueRole(self, /) -> str: ... method valueRolePattern (line 969) | def valueRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method valueRoleReplace (line 970) | def valueRoleReplace(self, /) -> str: ... class QItemModelScatterDataProxy (line 972) | class QItemModelScatterDataProxy(QScatterDataProxy): method __init__ (line 988) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, xPosR... method __init__ (line 990) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, xPosR... method __init__ (line 992) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, /, pa... method __init__ (line 994) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method itemModel (line 995) | def itemModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method remap (line 996) | def remap(self, xPosRole: str, yPosRole: str, zPosRole: str, rotationR... method rotationRole (line 997) | def rotationRole(self, /) -> str: ... method rotationRolePattern (line 998) | def rotationRolePattern(self, /) -> PySide6.QtCore.QRegularExpression:... method rotationRoleReplace (line 999) | def rotationRoleReplace(self, /) -> str: ... method setItemModel (line 1000) | def setItemModel(self, itemModel: PySide6.QtCore.QAbstractItemModel, /... method setRotationRole (line 1001) | def setRotationRole(self, role: str, /) -> None: ... method setRotationRolePattern (line 1002) | def setRotationRolePattern(self, pattern: PySide6.QtCore.QRegularExpre... method setRotationRoleReplace (line 1003) | def setRotationRoleReplace(self, replace: str, /) -> None: ... method setXPosRole (line 1004) | def setXPosRole(self, role: str, /) -> None: ... method setXPosRolePattern (line 1005) | def setXPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setXPosRoleReplace (line 1006) | def setXPosRoleReplace(self, replace: str, /) -> None: ... method setYPosRole (line 1007) | def setYPosRole(self, role: str, /) -> None: ... method setYPosRolePattern (line 1008) | def setYPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setYPosRoleReplace (line 1009) | def setYPosRoleReplace(self, replace: str, /) -> None: ... method setZPosRole (line 1010) | def setZPosRole(self, role: str, /) -> None: ... method setZPosRolePattern (line 1011) | def setZPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setZPosRoleReplace (line 1012) | def setZPosRoleReplace(self, replace: str, /) -> None: ... method xPosRole (line 1013) | def xPosRole(self, /) -> str: ... method xPosRolePattern (line 1014) | def xPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method xPosRoleReplace (line 1015) | def xPosRoleReplace(self, /) -> str: ... method yPosRole (line 1016) | def yPosRole(self, /) -> str: ... method yPosRolePattern (line 1017) | def yPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method yPosRoleReplace (line 1018) | def yPosRoleReplace(self, /) -> str: ... method zPosRole (line 1019) | def zPosRole(self, /) -> str: ... method zPosRolePattern (line 1020) | def zPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method zPosRoleReplace (line 1021) | def zPosRoleReplace(self, /) -> str: ... class QItemModelSurfaceDataProxy (line 1023) | class QItemModelSurfaceDataProxy(QSurfaceDataProxy): class MultiMatchBehavior (line 1024) | class MultiMatchBehavior(enum.Enum): method __init__ (line 1053) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, yPosR... method __init__ (line 1055) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1057) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1059) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1061) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1063) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, /, pa... method __init__ (line 1065) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoColumnCategories (line 1066) | def autoColumnCategories(self, /) -> bool: ... method autoRowCategories (line 1067) | def autoRowCategories(self, /) -> bool: ... method columnCategories (line 1068) | def columnCategories(self, /) -> List[str]: ... method columnCategoryIndex (line 1069) | def columnCategoryIndex(self, category: str, /) -> int: ... method columnRole (line 1070) | def columnRole(self, /) -> str: ... method columnRolePattern (line 1071) | def columnRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method columnRoleReplace (line 1072) | def columnRoleReplace(self, /) -> str: ... method itemModel (line 1073) | def itemModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method multiMatchBehavior (line 1074) | def multiMatchBehavior(self, /) -> QItemModelSurfaceDataProxy.MultiMat... method remap (line 1075) | def remap(self, rowRole: str, columnRole: str, xPosRole: str, yPosRole... method rowCategories (line 1076) | def rowCategories(self, /) -> List[str]: ... method rowCategoryIndex (line 1077) | def rowCategoryIndex(self, category: str, /) -> int: ... method rowRole (line 1078) | def rowRole(self, /) -> str: ... method rowRolePattern (line 1079) | def rowRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method rowRoleReplace (line 1080) | def rowRoleReplace(self, /) -> str: ... method setAutoColumnCategories (line 1081) | def setAutoColumnCategories(self, enable: bool, /) -> None: ... method setAutoRowCategories (line 1082) | def setAutoRowCategories(self, enable: bool, /) -> None: ... method setColumnCategories (line 1083) | def setColumnCategories(self, categories: typing.Iterable[str], /) -> ... method setColumnRole (line 1084) | def setColumnRole(self, role: str, /) -> None: ... method setColumnRolePattern (line 1085) | def setColumnRolePattern(self, pattern: PySide6.QtCore.QRegularExpress... method setColumnRoleReplace (line 1086) | def setColumnRoleReplace(self, replace: str, /) -> None: ... method setItemModel (line 1087) | def setItemModel(self, itemModel: PySide6.QtCore.QAbstractItemModel, /... method setMultiMatchBehavior (line 1088) | def setMultiMatchBehavior(self, behavior: QItemModelSurfaceDataProxy.M... method setRowCategories (line 1089) | def setRowCategories(self, categories: typing.Iterable[str], /) -> Non... method setRowRole (line 1090) | def setRowRole(self, role: str, /) -> None: ... method setRowRolePattern (line 1091) | def setRowRolePattern(self, pattern: PySide6.QtCore.QRegularExpression... method setRowRoleReplace (line 1092) | def setRowRoleReplace(self, replace: str, /) -> None: ... method setUseModelCategories (line 1093) | def setUseModelCategories(self, enable: bool, /) -> None: ... method setXPosRole (line 1094) | def setXPosRole(self, role: str, /) -> None: ... method setXPosRolePattern (line 1095) | def setXPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setXPosRoleReplace (line 1096) | def setXPosRoleReplace(self, replace: str, /) -> None: ... method setYPosRole (line 1097) | def setYPosRole(self, role: str, /) -> None: ... method setYPosRolePattern (line 1098) | def setYPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setYPosRoleReplace (line 1099) | def setYPosRoleReplace(self, replace: str, /) -> None: ... method setZPosRole (line 1100) | def setZPosRole(self, role: str, /) -> None: ... method setZPosRolePattern (line 1101) | def setZPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setZPosRoleReplace (line 1102) | def setZPosRoleReplace(self, replace: str, /) -> None: ... method useModelCategories (line 1103) | def useModelCategories(self, /) -> bool: ... method xPosRole (line 1104) | def xPosRole(self, /) -> str: ... method xPosRolePattern (line 1105) | def xPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method xPosRoleReplace (line 1106) | def xPosRoleReplace(self, /) -> str: ... method yPosRole (line 1107) | def yPosRole(self, /) -> str: ... method yPosRolePattern (line 1108) | def yPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method yPosRoleReplace (line 1109) | def yPosRoleReplace(self, /) -> str: ... method zPosRole (line 1110) | def zPosRole(self, /) -> str: ... method zPosRolePattern (line 1111) | def zPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method zPosRoleReplace (line 1112) | def zPosRoleReplace(self, /) -> str: ... class QLogValue3DAxisFormatter (line 1114) | class QLogValue3DAxisFormatter(QValue3DAxisFormatter): method __init__ (line 1119) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoSubGrid (line 1120) | def autoSubGrid(self, /) -> bool: ... method base (line 1121) | def base(self, /) -> float: ... method createNewInstance (line 1122) | def createNewInstance(self, /) -> QValue3DAxisFormatter: ... method populateCopy (line 1123) | def populateCopy(self, copy: QValue3DAxisFormatter, /) -> None: ... method positionAt (line 1124) | def positionAt(self, value: float, /) -> float: ... method recalculate (line 1125) | def recalculate(self, /) -> None: ... method setAutoSubGrid (line 1126) | def setAutoSubGrid(self, enabled: bool, /) -> None: ... method setBase (line 1127) | def setBase(self, base: float, /) -> None: ... method setShowEdgeLabels (line 1128) | def setShowEdgeLabels(self, enabled: bool, /) -> None: ... method showEdgeLabels (line 1129) | def showEdgeLabels(self, /) -> bool: ... method valueAt (line 1130) | def valueAt(self, position: float, /) -> float: ... class QScatter3DSeries (line 1132) | class QScatter3DSeries(QAbstract3DSeries): method __init__ (line 1138) | def __init__(self, dataProxy: QScatterDataProxy, /, parent: PySide6.Qt... method __init__ (line 1140) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method dataProxy (line 1141) | def dataProxy(self, /) -> QScatterDataProxy: ... method invalidSelectionIndex (line 1143) | def invalidSelectionIndex() -> int: ... method itemSize (line 1144) | def itemSize(self, /) -> float: ... method selectedItem (line 1145) | def selectedItem(self, /) -> int: ... method setDataProxy (line 1146) | def setDataProxy(self, proxy: QScatterDataProxy, /) -> None: ... method setItemSize (line 1147) | def setItemSize(self, size: float, /) -> None: ... method setSelectedItem (line 1148) | def setSelectedItem(self, index: int, /) -> None: ... class QScatterDataItem (line 1150) | class QScatterDataItem(shiboken6.Object): method __init__ (line 1152) | def __init__(self, position: PySide6.QtGui.QVector3D, rotation: PySide... method __init__ (line 1154) | def __init__(self, position: PySide6.QtGui.QVector3D, /) -> None: ... method __init__ (line 1156) | def __init__(self, other: QScatterDataItem, /) -> None: ... method __init__ (line 1158) | def __init__(self, /) -> None: ... method createExtraData (line 1159) | def createExtraData(self, /) -> None: ... method position (line 1160) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method rotation (line 1161) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method setPosition (line 1162) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setRotation (line 1163) | def setRotation(self, rot: PySide6.QtGui.QQuaternion, /) -> None: ... method setX (line 1164) | def setX(self, value: float, /) -> None: ... method setY (line 1165) | def setY(self, value: float, /) -> None: ... method setZ (line 1166) | def setZ(self, value: float, /) -> None: ... method x (line 1167) | def x(self, /) -> float: ... method y (line 1168) | def y(self, /) -> float: ... method z (line 1169) | def z(self, /) -> float: ... method __copy__ (line 1170) | def __copy__(self, /) -> typing_extensions.Self: ... class QScatterDataProxy (line 1172) | class QScatterDataProxy(QAbstractDataProxy): method __init__ (line 1181) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addItem (line 1182) | def addItem(self, item: QScatterDataItem | PySide6.QtGui.QVector3D, /)... method addItems (line 1183) | def addItems(self, items: typing.Iterable[QScatterDataItem], /) -> int... method array (line 1184) | def array(self, /) -> List[QScatterDataItem]: ... method insertItem (line 1185) | def insertItem(self, index: int, item: QScatterDataItem | PySide6.QtGu... method insertItems (line 1186) | def insertItems(self, index: int, items: typing.Iterable[QScatterDataI... method itemAt (line 1187) | def itemAt(self, index: int, /) -> QScatterDataItem: ... method itemCount (line 1188) | def itemCount(self, /) -> int: ... method removeItems (line 1189) | def removeItems(self, index: int, removeCount: int, /) -> None: ... method resetArray (line 1190) | def resetArray(self, arg__1: typing.Iterable[QScatterDataItem], /) -> ... method series (line 1191) | def series(self, /) -> QScatter3DSeries: ... method setItem (line 1192) | def setItem(self, index: int, item: QScatterDataItem | PySide6.QtGui.Q... method setItems (line 1193) | def setItems(self, index: int, items: typing.Iterable[QScatterDataItem... class QSurface3DSeries (line 1195) | class QSurface3DSeries(QAbstract3DSeries): class DrawFlag (line 1196) | class DrawFlag(enum.Flag): method __init__ (line 1210) | def __init__(self, dataProxy: QSurfaceDataProxy, /, parent: PySide6.Qt... method __init__ (line 1212) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method dataProxy (line 1213) | def dataProxy(self, /) -> QSurfaceDataProxy: ... method drawMode (line 1214) | def drawMode(self, /) -> QSurface3DSeries.DrawFlag: ... method invalidSelectionPosition (line 1216) | def invalidSelectionPosition() -> PySide6.QtCore.QPoint: ... method isFlatShadingEnabled (line 1217) | def isFlatShadingEnabled(self, /) -> bool: ... method isFlatShadingSupported (line 1218) | def isFlatShadingSupported(self, /) -> bool: ... method selectedPoint (line 1219) | def selectedPoint(self, /) -> PySide6.QtCore.QPoint: ... method setDataProxy (line 1220) | def setDataProxy(self, proxy: QSurfaceDataProxy, /) -> None: ... method setDrawMode (line 1221) | def setDrawMode(self, mode: QSurface3DSeries.DrawFlag, /) -> None: ... method setFlatShadingEnabled (line 1222) | def setFlatShadingEnabled(self, enabled: bool, /) -> None: ... method setSelectedPoint (line 1223) | def setSelectedPoint(self, position: PySide6.QtCore.QPoint, /) -> None... method setTexture (line 1224) | def setTexture(self, texture: PySide6.QtGui.QImage, /) -> None: ... method setTextureFile (line 1225) | def setTextureFile(self, filename: str, /) -> None: ... method setWireframeColor (line 1226) | def setWireframeColor(self, color: Union[PySide6.QtGui.QColor, str, Py... method texture (line 1227) | def texture(self, /) -> PySide6.QtGui.QImage: ... method textureFile (line 1228) | def textureFile(self, /) -> str: ... method wireframeColor (line 1229) | def wireframeColor(self, /) -> PySide6.QtGui.QColor: ... class QSurfaceDataItem (line 1231) | class QSurfaceDataItem(shiboken6.Object): method __init__ (line 1233) | def __init__(self, position: PySide6.QtGui.QVector3D, /) -> None: ... method __init__ (line 1235) | def __init__(self, other: QSurfaceDataItem, /) -> None: ... method __init__ (line 1237) | def __init__(self, /) -> None: ... method createExtraData (line 1238) | def createExtraData(self, /) -> None: ... method position (line 1239) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method setPosition (line 1240) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setX (line 1241) | def setX(self, value: float, /) -> None: ... method setY (line 1242) | def setY(self, value: float, /) -> None: ... method setZ (line 1243) | def setZ(self, value: float, /) -> None: ... method x (line 1244) | def x(self, /) -> float: ... method y (line 1245) | def y(self, /) -> float: ... method z (line 1246) | def z(self, /) -> float: ... method __copy__ (line 1247) | def __copy__(self, /) -> typing_extensions.Self: ... class QSurfaceDataProxy (line 1249) | class QSurfaceDataProxy(QAbstractDataProxy): method __init__ (line 1260) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addRow (line 1261) | def addRow(self, arg__1: typing.Iterable[QSurfaceDataItem], /) -> int:... method addRows (line 1262) | def addRows(self, rows: List[List[QSurfaceDataItem]], /) -> int: ... method array (line 1263) | def array(self, /) -> List[List[QSurfaceDataItem]]: ... method columnCount (line 1264) | def columnCount(self, /) -> int: ... method insertRow (line 1265) | def insertRow(self, arg__1: int, arg__2: typing.Iterable[QSurfaceDataI... method insertRows (line 1266) | def insertRows(self, rowIndex: int, rows: List[List[QSurfaceDataItem]]... method itemAt (line 1268) | def itemAt(self, rowIndex: int, columnIndex: int, /) -> QSurfaceDataIt... method itemAt (line 1270) | def itemAt(self, position: PySide6.QtCore.QPoint, /) -> QSurfaceDataIt... method removeRows (line 1271) | def removeRows(self, rowIndex: int, removeCount: int, /) -> None: ... method resetArray (line 1272) | def resetArray(self, arg__1: List[List[QSurfaceDataItem]], /) -> None:... method resetArrayNp (line 1273) | def resetArrayNp(self, x: float, deltaX: float, z: float, deltaZ: floa... method rowCount (line 1274) | def rowCount(self, /) -> int: ... method series (line 1275) | def series(self, /) -> QSurface3DSeries: ... method setItem (line 1277) | def setItem(self, rowIndex: int, columnIndex: int, item: QSurfaceDataI... method setItem (line 1279) | def setItem(self, position: PySide6.QtCore.QPoint, item: QSurfaceDataI... method setRow (line 1280) | def setRow(self, arg__1: int, arg__2: typing.Iterable[QSurfaceDataItem... method setRows (line 1281) | def setRows(self, rowIndex: int, rows: List[List[QSurfaceDataItem]], /... class QTouch3DInputHandler (line 1283) | class QTouch3DInputHandler(Q3DInputHandler): method __init__ (line 1285) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method touchEvent (line 1286) | def touchEvent(self, event: PySide6.QtGui.QTouchEvent, /) -> None: ... class QValue3DAxis (line 1288) | class QValue3DAxis(QAbstract3DAxis): method __init__ (line 1295) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method formatter (line 1296) | def formatter(self, /) -> QValue3DAxisFormatter: ... method labelFormat (line 1297) | def labelFormat(self, /) -> str: ... method reversed (line 1298) | def reversed(self, /) -> bool: ... method segmentCount (line 1299) | def segmentCount(self, /) -> int: ... method setFormatter (line 1300) | def setFormatter(self, formatter: QValue3DAxisFormatter, /) -> None: ... method setLabelFormat (line 1301) | def setLabelFormat(self, format: str, /) -> None: ... method setReversed (line 1302) | def setReversed(self, enable: bool, /) -> None: ... method setSegmentCount (line 1303) | def setSegmentCount(self, count: int, /) -> None: ... method setSubSegmentCount (line 1304) | def setSubSegmentCount(self, count: int, /) -> None: ... method subSegmentCount (line 1305) | def subSegmentCount(self, /) -> int: ... class QValue3DAxisFormatter (line 1307) | class QValue3DAxisFormatter(PySide6.QtCore.QObject): method __init__ (line 1309) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method allowNegatives (line 1310) | def allowNegatives(self, /) -> bool: ... method allowZero (line 1311) | def allowZero(self, /) -> bool: ... method axis (line 1312) | def axis(self, /) -> QValue3DAxis: ... method createNewInstance (line 1313) | def createNewInstance(self, /) -> QValue3DAxisFormatter: ... method gridPositions (line 1314) | def gridPositions(self, /) -> List[float]: ... method labelPositions (line 1315) | def labelPositions(self, /) -> List[float]: ... method labelStrings (line 1316) | def labelStrings(self, /) -> List[str]: ... method locale (line 1317) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method markDirty (line 1318) | def markDirty(self, /, labelsChange: bool = ...) -> None: ... method populateCopy (line 1319) | def populateCopy(self, copy: QValue3DAxisFormatter, /) -> None: ... method positionAt (line 1320) | def positionAt(self, value: float, /) -> float: ... method recalculate (line 1321) | def recalculate(self, /) -> None: ... method setAllowNegatives (line 1322) | def setAllowNegatives(self, allow: bool, /) -> None: ... method setAllowZero (line 1323) | def setAllowZero(self, allow: bool, /) -> None: ... method setGridPositions (line 1324) | def setGridPositions(self, grid_positions: typing.Iterable[float], /) ... method setLabelPositions (line 1325) | def setLabelPositions(self, label_positions: typing.Iterable[float], /... method setLabelStrings (line 1326) | def setLabelStrings(self, label_strings: typing.Iterable[str], /) -> N... method setLocale (line 1327) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method stringForValue (line 1328) | def stringForValue(self, value: float, format: str, /) -> str: ... method subGridPositions (line 1329) | def subGridPositions(self, /) -> List[float]: ... method valueAt (line 1330) | def valueAt(self, position: float, /) -> float: ... function qDefaultSurfaceFormat (line 1332) | def qDefaultSurfaceFormat(antialias: bool, /) -> PySide6.QtGui.QSurfaceF... FILE: pyside6/stubs/PySide6-stubs/QtDesigner.pyi class QAbstractExtensionFactory (line 14) | class QAbstractExtensionFactory(shiboken6.Object): method __init__ (line 15) | def __init__(self, /) -> None: ... method extension (line 16) | def extension(self, object: PySide6.QtCore.QObject, iid: str, /) -> Py... class QAbstractExtensionManager (line 18) | class QAbstractExtensionManager(shiboken6.Object): method __init__ (line 19) | def __init__(self, /) -> None: ... method extension (line 20) | def extension(self, object: PySide6.QtCore.QObject, iid: str, /) -> Py... method registerExtensions (line 21) | def registerExtensions(self, factory: QAbstractExtensionFactory, iid: ... method unregisterExtensions (line 22) | def unregisterExtensions(self, factory: QAbstractExtensionFactory, iid... class QAbstractFormBuilder (line 24) | class QAbstractFormBuilder(shiboken6.Object): method __init__ (line 25) | def __init__(self, /) -> None: ... method addMenuAction (line 26) | def addMenuAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method applyPropertyInternally (line 27) | def applyPropertyInternally(self, o: PySide6.QtCore.QObject, propertyN... method checkProperty (line 28) | def checkProperty(self, obj: PySide6.QtCore.QObject, prop: str, /) -> ... method createAction (line 29) | def createAction(self, parent: PySide6.QtCore.QObject | None, name: st... method createActionGroup (line 30) | def createActionGroup(self, parent: PySide6.QtCore.QObject | None, nam... method createLayout (line 31) | def createLayout(self, layoutName: str, parent: PySide6.QtCore.QObject... method createWidget (line 32) | def createWidget(self, widgetName: str, parentWidget: PySide6.QtWidget... method errorString (line 33) | def errorString(self, /) -> str: ... method load (line 34) | def load(self, dev: PySide6.QtCore.QIODevice, /, parentWidget: PySide6... method reset (line 35) | def reset(self, /) -> None: ... method save (line 36) | def save(self, dev: PySide6.QtCore.QIODevice, widget: PySide6.QtWidget... method setWorkingDirectory (line 37) | def setWorkingDirectory(self, directory: PySide6.QtCore.QDir, /) -> No... method toolBarAreaMetaEnum (line 39) | def toolBarAreaMetaEnum() -> PySide6.QtCore.QMetaEnum: ... method workingDirectory (line 40) | def workingDirectory(self, /) -> PySide6.QtCore.QDir: ... class QDesignerActionEditorInterface (line 42) | class QDesignerActionEditorInterface(PySide6.QtWidgets.QWidget): method __init__ (line 44) | def __init__(self, parent: PySide6.QtWidgets.QWidget | None, /, flags:... method core (line 45) | def core(self, /) -> QDesignerFormEditorInterface: ... method manageAction (line 46) | def manageAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method setFormWindow (line 47) | def setFormWindow(self, formWindow: QDesignerFormWindowInterface, /) -... method unmanageAction (line 48) | def unmanageAction(self, action: PySide6.QtGui.QAction, /) -> None: ... class QDesignerContainerExtension (line 50) | class QDesignerContainerExtension(shiboken6.Object): method __init__ (line 51) | def __init__(self, /) -> None: ... method addWidget (line 52) | def addWidget(self, widget: PySide6.QtWidgets.QWidget, /) -> None: ... method canAddWidget (line 53) | def canAddWidget(self, /) -> bool: ... method canRemove (line 54) | def canRemove(self, index: int, /) -> bool: ... method count (line 55) | def count(self, /) -> int: ... method currentIndex (line 56) | def currentIndex(self, /) -> int: ... method insertWidget (line 57) | def insertWidget(self, index: int, widget: PySide6.QtWidgets.QWidget, ... method remove (line 58) | def remove(self, index: int, /) -> None: ... method setCurrentIndex (line 59) | def setCurrentIndex(self, index: int, /) -> None: ... method widget (line 60) | def widget(self, index: int, /) -> PySide6.QtWidgets.QWidget: ... class QDesignerCustomWidgetCollectionInterface (line 62) | class QDesignerCustomWidgetCollectionInterface(shiboken6.Object): method __init__ (line 63) | def __init__(self, /) -> None: ... method customWidgets (line 64) | def customWidgets(self, /) -> List[QDesignerCustomWidgetInterface]: ... class QDesignerCustomWidgetInterface (line 66) | class QDesignerCustomWidgetInterface(shiboken6.Object): method __init__ (line 67) | def __init__(self, /) -> None: ... method codeTemplate (line 68) | def codeTemplate(self, /) -> str: ... method createWidget (line 69) | def createWidget(self, parent: PySide6.QtWidgets.QWidget | None, /) ->... method domXml (line 70) | def domXml(self, /) -> str: ... method group (line 71) | def group(self, /) -> str: ... method icon (line 72) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method includeFile (line 73) | def includeFile(self, /) -> str: ... method initialize (line 74) | def initialize(self, core: QDesignerFormEditorInterface, /) -> None: ... method isContainer (line 75) | def isContainer(self, /) -> bool: ... method isInitialized (line 76) | def isInitialized(self, /) -> bool: ... method name (line 77) | def name(self, /) -> str: ... method toolTip (line 78) | def toolTip(self, /) -> str: ... method whatsThis (line 79) | def whatsThis(self, /) -> str: ... class QDesignerDnDItemInterface (line 81) | class QDesignerDnDItemInterface(shiboken6.Object): class DropType (line 82) | class DropType(enum.Enum): method __init__ (line 85) | def __init__(self, /) -> None: ... method decoration (line 86) | def decoration(self, /) -> PySide6.QtWidgets.QWidget: ... method hotSpot (line 87) | def hotSpot(self, /) -> PySide6.QtCore.QPoint: ... method source (line 88) | def source(self, /) -> PySide6.QtWidgets.QWidget: ... method type (line 89) | def type(self, /) -> QDesignerDnDItemInterface.DropType: ... method widget (line 90) | def widget(self, /) -> PySide6.QtWidgets.QWidget: ... class QDesignerDynamicPropertySheetExtension (line 92) | class QDesignerDynamicPropertySheetExtension(shiboken6.Object): method __init__ (line 93) | def __init__(self, /) -> None: ... method addDynamicProperty (line 94) | def addDynamicProperty(self, propertyName: str, value: Any, /) -> int:... method canAddDynamicProperty (line 95) | def canAddDynamicProperty(self, propertyName: str, /) -> bool: ... method dynamicPropertiesAllowed (line 96) | def dynamicPropertiesAllowed(self, /) -> bool: ... method isDynamicProperty (line 97) | def isDynamicProperty(self, index: int, /) -> bool: ... method removeDynamicProperty (line 98) | def removeDynamicProperty(self, index: int, /) -> bool: ... class QDesignerFormEditorInterface (line 100) | class QDesignerFormEditorInterface(PySide6.QtCore.QObject): method __init__ (line 102) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method actionEditor (line 103) | def actionEditor(self, /) -> QDesignerActionEditorInterface: ... method createIcon (line 105) | def createIcon(name: str, /) -> PySide6.QtGui.QIcon: ... method extensionManager (line 106) | def extensionManager(self, /) -> QExtensionManager: ... method formWindowManager (line 107) | def formWindowManager(self, /) -> QDesignerFormWindowManagerInterface:... method objectInspector (line 108) | def objectInspector(self, /) -> QDesignerObjectInspectorInterface: ... method pluginInstances (line 109) | def pluginInstances(self, /) -> List[PySide6.QtCore.QObject]: ... method propertyEditor (line 110) | def propertyEditor(self, /) -> QDesignerPropertyEditorInterface: ... method resourceLocation (line 111) | def resourceLocation(self, /) -> str: ... method setActionEditor (line 112) | def setActionEditor(self, actionEditor: QDesignerActionEditorInterface... method setExtensionManager (line 113) | def setExtensionManager(self, extensionManager: QExtensionManager, /) ... method setFormManager (line 114) | def setFormManager(self, formWindowManager: QDesignerFormWindowManager... method setObjectInspector (line 115) | def setObjectInspector(self, objectInspector: QDesignerObjectInspector... method setPropertyEditor (line 116) | def setPropertyEditor(self, propertyEditor: QDesignerPropertyEditorInt... method setTopLevel (line 117) | def setTopLevel(self, topLevel: PySide6.QtWidgets.QWidget, /) -> None:... method setWidgetBox (line 118) | def setWidgetBox(self, widgetBox: QDesignerWidgetBoxInterface, /) -> N... method topLevel (line 119) | def topLevel(self, /) -> PySide6.QtWidgets.QWidget: ... method widgetBox (line 120) | def widgetBox(self, /) -> QDesignerWidgetBoxInterface: ... class QDesignerFormWindowCursorInterface (line 122) | class QDesignerFormWindowCursorInterface(shiboken6.Object): class MoveMode (line 123) | class MoveMode(enum.Enum): class MoveOperation (line 127) | class MoveOperation(enum.Enum): method __init__ (line 137) | def __init__(self, /) -> None: ... method current (line 138) | def current(self, /) -> PySide6.QtWidgets.QWidget: ... method formWindow (line 139) | def formWindow(self, /) -> QDesignerFormWindowInterface: ... method hasSelection (line 140) | def hasSelection(self, /) -> bool: ... method isWidgetSelected (line 141) | def isWidgetSelected(self, widget: PySide6.QtWidgets.QWidget, /) -> bo... method movePosition (line 142) | def movePosition(self, op: QDesignerFormWindowCursorInterface.MoveOper... method position (line 143) | def position(self, /) -> int: ... method resetWidgetProperty (line 144) | def resetWidgetProperty(self, widget: PySide6.QtWidgets.QWidget, name:... method selectedWidget (line 145) | def selectedWidget(self, index: int, /) -> PySide6.QtWidgets.QWidget: ... method selectedWidgetCount (line 146) | def selectedWidgetCount(self, /) -> int: ... method setPosition (line 147) | def setPosition(self, pos: int, /, mode: QDesignerFormWindowCursorInte... method setProperty (line 148) | def setProperty(self, name: str, value: Any, /) -> None: ... method setWidgetProperty (line 149) | def setWidgetProperty(self, widget: PySide6.QtWidgets.QWidget, name: s... method widget (line 150) | def widget(self, index: int, /) -> PySide6.QtWidgets.QWidget: ... method widgetCount (line 151) | def widgetCount(self, /) -> int: ... class QDesignerFormWindowInterface (line 153) | class QDesignerFormWindowInterface(PySide6.QtWidgets.QWidget): class FeatureFlag (line 154) | class FeatureFlag(enum.Flag): class ResourceFileSaveMode (line 160) | class ResourceFileSaveMode(enum.Enum): method __init__ (line 179) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method absoluteDir (line 180) | def absoluteDir(self, /) -> PySide6.QtCore.QDir: ... method activateResourceFilePaths (line 181) | def activateResourceFilePaths(self, paths: typing.Iterable[str], /) ->... method activeResourceFilePaths (line 182) | def activeResourceFilePaths(self, /) -> List[str]: ... method addResourceFile (line 183) | def addResourceFile(self, path: str, /) -> None: ... method author (line 184) | def author(self, /) -> str: ... method beginCommand (line 185) | def beginCommand(self, description: str, /) -> None: ... method checkContents (line 186) | def checkContents(self, /) -> List[str]: ... method clearSelection (line 187) | def clearSelection(self, /, changePropertyDisplay: bool = ...) -> None... method commandHistory (line 188) | def commandHistory(self, /) -> PySide6.QtGui.QUndoStack: ... method comment (line 189) | def comment(self, /) -> str: ... method contents (line 190) | def contents(self, /) -> str: ... method core (line 191) | def core(self, /) -> QDesignerFormEditorInterface: ... method currentTool (line 192) | def currentTool(self, /) -> int: ... method cursor (line 193) | def cursor(self, /) -> QDesignerFormWindowCursorInterface: ... # type... method editWidgets (line 194) | def editWidgets(self, /) -> None: ... method emitSelectionChanged (line 195) | def emitSelectionChanged(self, /) -> None: ... method endCommand (line 196) | def endCommand(self, /) -> None: ... method ensureUniqueObjectName (line 197) | def ensureUniqueObjectName(self, object: PySide6.QtCore.QObject, /) ->... method exportMacro (line 198) | def exportMacro(self, /) -> str: ... method features (line 199) | def features(self, /) -> QDesignerFormWindowInterface.FeatureFlag: ... method fileName (line 200) | def fileName(self, /) -> str: ... method findFormWindow (line 203) | def findFormWindow(w: PySide6.QtWidgets.QWidget, /) -> QDesignerFormWi... method findFormWindow (line 206) | def findFormWindow(obj: PySide6.QtCore.QObject, /) -> QDesignerFormWin... method formContainer (line 207) | def formContainer(self, /) -> PySide6.QtWidgets.QWidget: ... method grid (line 208) | def grid(self, /) -> PySide6.QtCore.QPoint: ... method hasFeature (line 209) | def hasFeature(self, f: QDesignerFormWindowInterface.FeatureFlag, /) -... method includeHints (line 210) | def includeHints(self, /) -> List[str]: ... method isDirty (line 211) | def isDirty(self, /) -> bool: ... method isManaged (line 212) | def isManaged(self, widget: PySide6.QtWidgets.QWidget, /) -> bool: ... method layoutDefault (line 213) | def layoutDefault(self, /) -> Tuple[int, int]: ... method layoutFunction (line 214) | def layoutFunction(self, /) -> Tuple[str, str]: ... method mainContainer (line 215) | def mainContainer(self, /) -> PySide6.QtWidgets.QWidget: ... method manageWidget (line 216) | def manageWidget(self, widget: PySide6.QtWidgets.QWidget, /) -> None: ... method pixmapFunction (line 217) | def pixmapFunction(self, /) -> str: ... method registerTool (line 218) | def registerTool(self, tool: QDesignerFormWindowToolInterface, /) -> N... method removeResourceFile (line 219) | def removeResourceFile(self, path: str, /) -> None: ... method resourceFileSaveMode (line 220) | def resourceFileSaveMode(self, /) -> QDesignerFormWindowInterface.Reso... method resourceFiles (line 221) | def resourceFiles(self, /) -> List[str]: ... method selectWidget (line 222) | def selectWidget(self, w: PySide6.QtWidgets.QWidget, /, select: bool =... method setAuthor (line 223) | def setAuthor(self, author: str, /) -> None: ... method setComment (line 224) | def setComment(self, comment: str, /) -> None: ... method setContents (line 226) | def setContents(self, dev: PySide6.QtCore.QIODevice, /) -> Tuple[bool,... method setContents (line 228) | def setContents(self, contents: str, /) -> bool: ... method setCurrentTool (line 229) | def setCurrentTool(self, index: int, /) -> None: ... method setDirty (line 230) | def setDirty(self, dirty: bool, /) -> None: ... method setExportMacro (line 231) | def setExportMacro(self, exportMacro: str, /) -> None: ... method setFeatures (line 232) | def setFeatures(self, f: QDesignerFormWindowInterface.FeatureFlag, /) ... method setFileName (line 233) | def setFileName(self, fileName: str, /) -> None: ... method setGrid (line 234) | def setGrid(self, grid: PySide6.QtCore.QPoint, /) -> None: ... method setIncludeHints (line 235) | def setIncludeHints(self, includeHints: typing.Iterable[str], /) -> No... method setLayoutDefault (line 236) | def setLayoutDefault(self, margin: int, spacing: int, /) -> None: ... method setLayoutFunction (line 237) | def setLayoutFunction(self, margin: str, spacing: str, /) -> None: ... method setMainContainer (line 238) | def setMainContainer(self, mainContainer: PySide6.QtWidgets.QWidget, /... method setPixmapFunction (line 239) | def setPixmapFunction(self, pixmapFunction: str, /) -> None: ... method setResourceFileSaveMode (line 240) | def setResourceFileSaveMode(self, behaviour: QDesignerFormWindowInterf... method simplifySelection (line 241) | def simplifySelection(self, widgets: typing.Iterable[PySide6.QtWidgets... method tool (line 242) | def tool(self, index: int, /) -> QDesignerFormWindowToolInterface: ... method toolCount (line 243) | def toolCount(self, /) -> int: ... method unmanageWidget (line 244) | def unmanageWidget(self, widget: PySide6.QtWidgets.QWidget, /) -> None... class QDesignerFormWindowManagerInterface (line 246) | class QDesignerFormWindowManagerInterface(PySide6.QtCore.QObject): class Action (line 247) | class Action(enum.Enum): class ActionGroup (line 269) | class ActionGroup(enum.Enum): method __init__ (line 276) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method action (line 277) | def action(self, action: QDesignerFormWindowManagerInterface.Action, /... method actionAdjustSize (line 278) | def actionAdjustSize(self, /) -> PySide6.QtGui.QAction: ... method actionBreakLayout (line 279) | def actionBreakLayout(self, /) -> PySide6.QtGui.QAction: ... method actionCopy (line 280) | def actionCopy(self, /) -> PySide6.QtGui.QAction: ... method actionCut (line 281) | def actionCut(self, /) -> PySide6.QtGui.QAction: ... method actionDelete (line 282) | def actionDelete(self, /) -> PySide6.QtGui.QAction: ... method actionFormLayout (line 283) | def actionFormLayout(self, /) -> PySide6.QtGui.QAction: ... method actionGridLayout (line 284) | def actionGridLayout(self, /) -> PySide6.QtGui.QAction: ... method actionGroup (line 285) | def actionGroup(self, actionGroup: QDesignerFormWindowManagerInterface... method actionHorizontalLayout (line 286) | def actionHorizontalLayout(self, /) -> PySide6.QtGui.QAction: ... method actionLower (line 287) | def actionLower(self, /) -> PySide6.QtGui.QAction: ... method actionPaste (line 288) | def actionPaste(self, /) -> PySide6.QtGui.QAction: ... method actionRaise (line 289) | def actionRaise(self, /) -> PySide6.QtGui.QAction: ... method actionRedo (line 290) | def actionRedo(self, /) -> PySide6.QtGui.QAction: ... method actionSelectAll (line 291) | def actionSelectAll(self, /) -> PySide6.QtGui.QAction: ... method actionSimplifyLayout (line 292) | def actionSimplifyLayout(self, /) -> PySide6.QtGui.QAction: ... method actionSplitHorizontal (line 293) | def actionSplitHorizontal(self, /) -> PySide6.QtGui.QAction: ... method actionSplitVertical (line 294) | def actionSplitVertical(self, /) -> PySide6.QtGui.QAction: ... method actionUndo (line 295) | def actionUndo(self, /) -> PySide6.QtGui.QAction: ... method actionVerticalLayout (line 296) | def actionVerticalLayout(self, /) -> PySide6.QtGui.QAction: ... method activeFormWindow (line 297) | def activeFormWindow(self, /) -> QDesignerFormWindowInterface: ... method addFormWindow (line 298) | def addFormWindow(self, formWindow: QDesignerFormWindowInterface, /) -... method closeAllPreviews (line 299) | def closeAllPreviews(self, /) -> None: ... method core (line 300) | def core(self, /) -> QDesignerFormEditorInterface: ... method createFormWindow (line 301) | def createFormWindow(self, /, parentWidget: PySide6.QtWidgets.QWidget ... method createPreviewPixmap (line 302) | def createPreviewPixmap(self, /) -> PySide6.QtGui.QPixmap: ... method dragItems (line 303) | def dragItems(self, item_list: typing.Iterable[QDesignerDnDItemInterfa... method formWindow (line 304) | def formWindow(self, index: int, /) -> QDesignerFormWindowInterface: ... method formWindowCount (line 305) | def formWindowCount(self, /) -> int: ... method removeFormWindow (line 306) | def removeFormWindow(self, formWindow: QDesignerFormWindowInterface, /... method setActiveFormWindow (line 307) | def setActiveFormWindow(self, formWindow: QDesignerFormWindowInterface... method showPluginDialog (line 308) | def showPluginDialog(self, /) -> None: ... method showPreview (line 309) | def showPreview(self, /) -> None: ... class QDesignerFormWindowToolInterface (line 311) | class QDesignerFormWindowToolInterface(PySide6.QtCore.QObject): method __init__ (line 313) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method action (line 314) | def action(self, /) -> PySide6.QtGui.QAction: ... method activated (line 315) | def activated(self, /) -> None: ... method core (line 316) | def core(self, /) -> QDesignerFormEditorInterface: ... method deactivated (line 317) | def deactivated(self, /) -> None: ... method editor (line 318) | def editor(self, /) -> PySide6.QtWidgets.QWidget: ... method formWindow (line 319) | def formWindow(self, /) -> QDesignerFormWindowInterface: ... method handleEvent (line 320) | def handleEvent(self, widget: PySide6.QtWidgets.QWidget, managedWidget... class QDesignerMemberSheetExtension (line 322) | class QDesignerMemberSheetExtension(shiboken6.Object): method __init__ (line 323) | def __init__(self, /) -> None: ... method count (line 324) | def count(self, /) -> int: ... method declaredInClass (line 325) | def declaredInClass(self, index: int, /) -> str: ... method indexOf (line 326) | def indexOf(self, name: str, /) -> int: ... method inheritedFromWidget (line 327) | def inheritedFromWidget(self, index: int, /) -> bool: ... method isSignal (line 328) | def isSignal(self, index: int, /) -> bool: ... method isSlot (line 329) | def isSlot(self, index: int, /) -> bool: ... method isVisible (line 330) | def isVisible(self, index: int, /) -> bool: ... method memberGroup (line 331) | def memberGroup(self, index: int, /) -> str: ... method memberName (line 332) | def memberName(self, index: int, /) -> str: ... method parameterNames (line 333) | def parameterNames(self, index: int, /) -> List[PySide6.QtCore.QByteAr... method parameterTypes (line 334) | def parameterTypes(self, index: int, /) -> List[PySide6.QtCore.QByteAr... method setMemberGroup (line 335) | def setMemberGroup(self, index: int, group: str, /) -> None: ... method setVisible (line 336) | def setVisible(self, index: int, b: bool, /) -> None: ... method signature (line 337) | def signature(self, index: int, /) -> str: ... class QDesignerObjectInspectorInterface (line 339) | class QDesignerObjectInspectorInterface(PySide6.QtWidgets.QWidget): method __init__ (line 341) | def __init__(self, parent: PySide6.QtWidgets.QWidget | None, /, flags:... method core (line 342) | def core(self, /) -> QDesignerFormEditorInterface: ... method setFormWindow (line 343) | def setFormWindow(self, formWindow: QDesignerFormWindowInterface, /) -... class QDesignerPropertyEditorInterface (line 345) | class QDesignerPropertyEditorInterface(PySide6.QtWidgets.QWidget): method __init__ (line 348) | def __init__(self, parent: PySide6.QtWidgets.QWidget | None, /, flags:... method core (line 349) | def core(self, /) -> QDesignerFormEditorInterface: ... method currentPropertyName (line 350) | def currentPropertyName(self, /) -> str: ... method isReadOnly (line 351) | def isReadOnly(self, /) -> bool: ... method object (line 352) | def object(self, /) -> PySide6.QtCore.QObject: ... method setObject (line 353) | def setObject(self, object: PySide6.QtCore.QObject, /) -> None: ... method setPropertyValue (line 354) | def setPropertyValue(self, name: str, value: Any, /, changed: bool = .... method setReadOnly (line 355) | def setReadOnly(self, readOnly: bool, /) -> None: ... class QDesignerPropertySheetExtension (line 357) | class QDesignerPropertySheetExtension(shiboken6.Object): method __init__ (line 358) | def __init__(self, /) -> None: ... method count (line 359) | def count(self, /) -> int: ... method hasReset (line 360) | def hasReset(self, index: int, /) -> bool: ... method indexOf (line 361) | def indexOf(self, name: str, /) -> int: ... method isAttribute (line 362) | def isAttribute(self, index: int, /) -> bool: ... method isChanged (line 363) | def isChanged(self, index: int, /) -> bool: ... method isEnabled (line 364) | def isEnabled(self, index: int, /) -> bool: ... method isVisible (line 365) | def isVisible(self, index: int, /) -> bool: ... method property (line 366) | def property(self, index: int, /) -> Any: ... method propertyGroup (line 367) | def propertyGroup(self, index: int, /) -> str: ... method propertyName (line 368) | def propertyName(self, index: int, /) -> str: ... method reset (line 369) | def reset(self, index: int, /) -> bool: ... method setAttribute (line 370) | def setAttribute(self, index: int, b: bool, /) -> None: ... method setChanged (line 371) | def setChanged(self, index: int, changed: bool, /) -> None: ... method setProperty (line 372) | def setProperty(self, index: int, value: Any, /) -> None: ... method setPropertyGroup (line 373) | def setPropertyGroup(self, index: int, group: str, /) -> None: ... method setVisible (line 374) | def setVisible(self, index: int, b: bool, /) -> None: ... class QDesignerTaskMenuExtension (line 376) | class QDesignerTaskMenuExtension(shiboken6.Object): method __init__ (line 377) | def __init__(self, /) -> None: ... method preferredEditAction (line 378) | def preferredEditAction(self, /) -> PySide6.QtGui.QAction: ... method taskActions (line 379) | def taskActions(self, /) -> List[PySide6.QtGui.QAction]: ... class QDesignerWidgetBoxInterface (line 381) | class QDesignerWidgetBoxInterface(PySide6.QtWidgets.QWidget): class Category (line 382) | class Category(shiboken6.Object): class Type (line 383) | class Type(enum.Enum): method __init__ (line 387) | def __init__(self, /, aname: str = ..., atype: QDesignerWidgetBoxInt... method __init__ (line 389) | def __init__(self, Category: QDesignerWidgetBoxInterface.Category, /... method addWidget (line 390) | def addWidget(self, awidget: QDesignerWidgetBoxInterface.Widget, /) ... method isNull (line 391) | def isNull(self, /) -> bool: ... method name (line 392) | def name(self, /) -> str: ... method removeWidget (line 393) | def removeWidget(self, idx: int, /) -> None: ... method setName (line 394) | def setName(self, aname: str, /) -> None: ... method setType (line 395) | def setType(self, atype: QDesignerWidgetBoxInterface.Category.Type, ... method type (line 396) | def type(self, /) -> QDesignerWidgetBoxInterface.Category.Type: ... method widget (line 397) | def widget(self, idx: int, /) -> QDesignerWidgetBoxInterface.Widget:... method widgetCount (line 398) | def widgetCount(self, /) -> int: ... method __bool__ (line 399) | def __bool__(self) -> bool: ... method __copy__ (line 400) | def __copy__(self, /) -> typing_extensions.Self: ... class Widget (line 402) | class Widget(shiboken6.Object): class Type (line 403) | class Type(enum.Enum): method __init__ (line 407) | def __init__(self, /, aname: str = ..., xml: str = ..., icon_name: s... method __init__ (line 409) | def __init__(self, w: QDesignerWidgetBoxInterface.Widget, /) -> None... method domXml (line 410) | def domXml(self, /) -> str: ... method iconName (line 411) | def iconName(self, /) -> str: ... method isNull (line 412) | def isNull(self, /) -> bool: ... method name (line 413) | def name(self, /) -> str: ... method setDomXml (line 414) | def setDomXml(self, xml: str, /) -> None: ... method setIconName (line 415) | def setIconName(self, icon_name: str, /) -> None: ... method setName (line 416) | def setName(self, aname: str, /) -> None: ... method setType (line 417) | def setType(self, atype: QDesignerWidgetBoxInterface.Widget.Type, /)... method type (line 418) | def type(self, /) -> QDesignerWidgetBoxInterface.Widget.Type: ... method __bool__ (line 419) | def __bool__(self) -> bool: ... method __copy__ (line 420) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 422) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method addCategory (line 423) | def addCategory(self, cat: QDesignerWidgetBoxInterface.Category, /) ->... method addWidget (line 424) | def addWidget(self, cat_idx: int, wgt: QDesignerWidgetBoxInterface.Wid... method category (line 425) | def category(self, cat_idx: int, /) -> QDesignerWidgetBoxInterface.Cat... method categoryCount (line 426) | def categoryCount(self, /) -> int: ... method dropWidgets (line 427) | def dropWidgets(self, item_list: typing.Iterable[QDesignerDnDItemInter... method fileName (line 428) | def fileName(self, /) -> str: ... method findOrInsertCategory (line 429) | def findOrInsertCategory(self, categoryName: str, /) -> int: ... method load (line 430) | def load(self, /) -> bool: ... method removeCategory (line 431) | def removeCategory(self, cat_idx: int, /) -> None: ... method removeWidget (line 432) | def removeWidget(self, cat_idx: int, wgt_idx: int, /) -> None: ... method save (line 433) | def save(self, /) -> bool: ... method setFileName (line 434) | def setFileName(self, file_name: str, /) -> None: ... method widget (line 435) | def widget(self, cat_idx: int, wgt_idx: int, /) -> QDesignerWidgetBoxI... method widgetCount (line 436) | def widgetCount(self, cat_idx: int, /) -> int: ... class QExtensionFactory (line 438) | class QExtensionFactory(PySide6.QtCore.QObject, QAbstractExtensionFactory): method __init__ (line 440) | def __init__(self, /, parent: QExtensionManager | None = ..., destroye... method createExtension (line 441) | def createExtension(self, object: PySide6.QtCore.QObject, iid: str, pa... method extension (line 442) | def extension(self, object: PySide6.QtCore.QObject, iid: str, /) -> Py... method extensionManager (line 443) | def extensionManager(self, /) -> QExtensionManager: ... class QExtensionManager (line 445) | class QExtensionManager(PySide6.QtCore.QObject, QAbstractExtensionManager): method __init__ (line 447) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method extension (line 448) | def extension(self, object: PySide6.QtCore.QObject, iid: str, /) -> Py... method registerExtensions (line 449) | def registerExtensions(self, factory: QAbstractExtensionFactory, /, ii... method unregisterExtensions (line 450) | def unregisterExtensions(self, factory: QAbstractExtensionFactory, /, ... class QFormBuilder (line 452) | class QFormBuilder(QAbstractFormBuilder): method __init__ (line 453) | def __init__(self, /) -> None: ... method addPluginPath (line 454) | def addPluginPath(self, pluginPath: str, /) -> None: ... method clearPluginPaths (line 455) | def clearPluginPaths(self, /) -> None: ... method createLayout (line 456) | def createLayout(self, layoutName: str, parent: PySide6.QtCore.QObject... method createWidget (line 457) | def createWidget(self, widgetName: str, parentWidget: PySide6.QtWidget... method customWidgets (line 458) | def customWidgets(self, /) -> List[QDesignerCustomWidgetInterface]: ... method pluginPaths (line 459) | def pluginPaths(self, /) -> List[str]: ... method setPluginPath (line 460) | def setPluginPath(self, pluginPaths: typing.Iterable[str], /) -> None:... method updateCustomWidgets (line 461) | def updateCustomWidgets(self, /) -> None: ... method widgetByName (line 463) | def widgetByName(topLevel: PySide6.QtWidgets.QWidget, name: str, /) ->... class QIntList (line 465) | class QIntList: method __init__ (line 467) | def __init__(self, *args, **kwargs) -> None: ... method append (line 468) | def append(self, *args, **kwargs): ... method capacity (line 469) | def capacity(self, *args, **kwargs): ... method clear (line 470) | def clear(self, *args, **kwargs): ... method constData (line 471) | def constData(self, *args, **kwargs): ... method data (line 472) | def data(self, *args, **kwargs): ... method pop_back (line 473) | def pop_back(self, *args, **kwargs): ... method pop_front (line 474) | def pop_front(self, *args, **kwargs): ... method prepend (line 475) | def prepend(self, *args, **kwargs): ... method push_back (line 476) | def push_back(self, *args, **kwargs): ... method push_front (line 477) | def push_front(self, *args, **kwargs): ... method removeFirst (line 478) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 479) | def removeLast(self, *args, **kwargs): ... method reserve (line 480) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 481) | def __delitem__(self, other) -> None: ... method __getitem__ (line 482) | def __getitem__(self, index): ... method __len__ (line 483) | def __len__(self) -> int: ... method __setitem__ (line 484) | def __setitem__(self, index, object) -> None: ... class QPyDesignerContainerExtension (line 486) | class QPyDesignerContainerExtension(PySide6.QtCore.QObject, QDesignerCon... method __init__ (line 488) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... class QPyDesignerCustomWidgetCollection (line 490) | class QPyDesignerCustomWidgetCollection(QDesignerCustomWidgetCollectionI... method __init__ (line 491) | def __init__(self, *args, **kwargs) -> None: ... method addCustomWidget (line 493) | def addCustomWidget(c: QDesignerCustomWidgetInterface, /) -> None: ... method customWidgets (line 494) | def customWidgets(self, /) -> List[QDesignerCustomWidgetInterface]: ... method instance (line 496) | def instance() -> QPyDesignerCustomWidgetCollection: ... method registerCustomWidget (line 498) | def registerCustomWidget(customWidgetType: object, /, xml: str = ..., ... class QPyDesignerMemberSheetExtension (line 500) | class QPyDesignerMemberSheetExtension(PySide6.QtCore.QObject, QDesignerM... method __init__ (line 502) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... class QPyDesignerPropertySheetExtension (line 504) | class QPyDesignerPropertySheetExtension(PySide6.QtCore.QObject, QDesigne... method __init__ (line 506) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... class QPyDesignerTaskMenuExtension (line 508) | class QPyDesignerTaskMenuExtension(PySide6.QtCore.QObject, QDesignerTask... method __init__ (line 510) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... FILE: pyside6/stubs/PySide6-stubs/QtGraphs.pyi class Q3DScene (line 17) | class Q3DScene(PySide6.QtCore.QObject): method __init__ (line 28) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method devicePixelRatio (line 29) | def devicePixelRatio(self, /) -> float: ... method graphPositionQuery (line 30) | def graphPositionQuery(self, /) -> PySide6.QtCore.QPoint: ... method invalidSelectionPoint (line 31) | def invalidSelectionPoint(self, /) -> PySide6.QtCore.QPoint: ... method isPointInPrimarySubView (line 32) | def isPointInPrimarySubView(self, point: PySide6.QtCore.QPoint, /) -> ... method isPointInSecondarySubView (line 33) | def isPointInSecondarySubView(self, point: PySide6.QtCore.QPoint, /) -... method isSecondarySubviewOnTop (line 34) | def isSecondarySubviewOnTop(self, /) -> bool: ... method isSlicingActive (line 35) | def isSlicingActive(self, /) -> bool: ... method primarySubViewport (line 36) | def primarySubViewport(self, /) -> PySide6.QtCore.QRect: ... method secondarySubViewport (line 37) | def secondarySubViewport(self, /) -> PySide6.QtCore.QRect: ... method selectionQueryPosition (line 38) | def selectionQueryPosition(self, /) -> PySide6.QtCore.QPoint: ... method setDevicePixelRatio (line 39) | def setDevicePixelRatio(self, pixelRatio: float, /) -> None: ... method setGraphPositionQuery (line 40) | def setGraphPositionQuery(self, point: PySide6.QtCore.QPoint, /) -> No... method setPrimarySubViewport (line 41) | def setPrimarySubViewport(self, primarySubViewport: PySide6.QtCore.QRe... method setSecondarySubViewport (line 42) | def setSecondarySubViewport(self, secondarySubViewport: PySide6.QtCore... method setSecondarySubviewOnTop (line 43) | def setSecondarySubviewOnTop(self, isSecondaryOnTop: bool, /) -> None:... method setSelectionQueryPosition (line 44) | def setSelectionQueryPosition(self, point: PySide6.QtCore.QPoint, /) -... method setSlicingActive (line 45) | def setSlicingActive(self, isSlicing: bool, /) -> None: ... method viewport (line 46) | def viewport(self, /) -> PySide6.QtCore.QRect: ... class QAbstract3DAxis (line 48) | class QAbstract3DAxis(PySide6.QtCore.QObject): class AxisOrientation (line 49) | class AxisOrientation(enum.Enum): class AxisType (line 55) | class AxisType(enum.Enum): method __init__ (line 74) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method isAutoAdjustRange (line 75) | def isAutoAdjustRange(self, /) -> bool: ... method isScaleLabelsByCount (line 76) | def isScaleLabelsByCount(self, /) -> bool: ... method isTitleFixed (line 77) | def isTitleFixed(self, /) -> bool: ... method isTitleVisible (line 78) | def isTitleVisible(self, /) -> bool: ... method labelAutoAngle (line 79) | def labelAutoAngle(self, /) -> float: ... method labelSize (line 80) | def labelSize(self, /) -> float: ... method labels (line 81) | def labels(self, /) -> List[str]: ... method labelsVisible (line 82) | def labelsVisible(self, /) -> bool: ... method max (line 83) | def max(self, /) -> float: ... method min (line 84) | def min(self, /) -> float: ... method orientation (line 85) | def orientation(self, /) -> QAbstract3DAxis.AxisOrientation: ... method setAutoAdjustRange (line 86) | def setAutoAdjustRange(self, autoAdjust: bool, /) -> None: ... method setLabelAutoAngle (line 87) | def setLabelAutoAngle(self, degree: float, /) -> None: ... method setLabelSize (line 88) | def setLabelSize(self, size: float, /) -> None: ... method setLabels (line 89) | def setLabels(self, labels: typing.Iterable[str], /) -> None: ... method setLabelsVisible (line 90) | def setLabelsVisible(self, visible: bool, /) -> None: ... method setMax (line 91) | def setMax(self, max: float, /) -> None: ... method setMin (line 92) | def setMin(self, min: float, /) -> None: ... method setRange (line 93) | def setRange(self, min: float, max: float, /) -> None: ... method setScaleLabelsByCount (line 94) | def setScaleLabelsByCount(self, adjust: bool, /) -> None: ... method setTitle (line 95) | def setTitle(self, title: str, /) -> None: ... method setTitleFixed (line 96) | def setTitleFixed(self, fixed: bool, /) -> None: ... method setTitleOffset (line 97) | def setTitleOffset(self, offset: float, /) -> None: ... method setTitleVisible (line 98) | def setTitleVisible(self, visible: bool, /) -> None: ... method title (line 99) | def title(self, /) -> str: ... method titleOffset (line 100) | def titleOffset(self, /) -> float: ... method type (line 101) | def type(self, /) -> QAbstract3DAxis.AxisType: ... class QAbstract3DSeries (line 103) | class QAbstract3DSeries(PySide6.QtCore.QObject): class LightingMode (line 104) | class LightingMode(enum.Enum): class Mesh (line 108) | class Mesh(enum.Enum): class SeriesType (line 122) | class SeriesType(enum.Enum): method __init__ (line 145) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method baseColor (line 146) | def baseColor(self, /) -> PySide6.QtGui.QColor: ... method baseGradient (line 147) | def baseGradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method colorStyle (line 148) | def colorStyle(self, /) -> QGraphsTheme.ColorStyle: ... method isItemLabelVisible (line 149) | def isItemLabelVisible(self, /) -> bool: ... method isMeshSmooth (line 150) | def isMeshSmooth(self, /) -> bool: ... method isVisible (line 151) | def isVisible(self, /) -> bool: ... method itemLabel (line 152) | def itemLabel(self, /) -> str: ... method itemLabelFormat (line 153) | def itemLabelFormat(self, /) -> str: ... method lightingMode (line 154) | def lightingMode(self, /) -> QAbstract3DSeries.LightingMode: ... method mesh (line 155) | def mesh(self, /) -> QAbstract3DSeries.Mesh: ... method meshRotation (line 156) | def meshRotation(self, /) -> PySide6.QtGui.QQuaternion: ... method multiHighlightColor (line 157) | def multiHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method multiHighlightGradient (line 158) | def multiHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method name (line 159) | def name(self, /) -> str: ... method setBaseColor (line 160) | def setBaseColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6... method setBaseGradient (line 161) | def setBaseGradient(self, gradient: PySide6.QtGui.QLinearGradient, /) ... method setColorStyle (line 162) | def setColorStyle(self, style: QGraphsTheme.ColorStyle, /) -> None: ... method setItemLabelFormat (line 163) | def setItemLabelFormat(self, format: str, /) -> None: ... method setItemLabelVisible (line 164) | def setItemLabelVisible(self, visible: bool, /) -> None: ... method setLightingMode (line 165) | def setLightingMode(self, lightingMode: QAbstract3DSeries.LightingMode... method setMesh (line 166) | def setMesh(self, mesh: QAbstract3DSeries.Mesh, /) -> None: ... method setMeshAxisAndAngle (line 167) | def setMeshAxisAndAngle(self, axis: PySide6.QtGui.QVector3D, angle: fl... method setMeshRotation (line 168) | def setMeshRotation(self, rotation: PySide6.QtGui.QQuaternion, /) -> N... method setMeshSmooth (line 169) | def setMeshSmooth(self, enable: bool, /) -> None: ... method setMultiHighlightColor (line 170) | def setMultiHighlightColor(self, color: Union[PySide6.QtGui.QColor, st... method setMultiHighlightGradient (line 171) | def setMultiHighlightGradient(self, gradient: PySide6.QtGui.QLinearGra... method setName (line 172) | def setName(self, name: str, /) -> None: ... method setSingleHighlightColor (line 173) | def setSingleHighlightColor(self, color: Union[PySide6.QtGui.QColor, s... method setSingleHighlightGradient (line 174) | def setSingleHighlightGradient(self, gradient: PySide6.QtGui.QLinearGr... method setUserDefinedMesh (line 175) | def setUserDefinedMesh(self, fileName: str, /) -> None: ... method setVisible (line 176) | def setVisible(self, visible: bool, /) -> None: ... method singleHighlightColor (line 177) | def singleHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method singleHighlightGradient (line 178) | def singleHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient:... method type (line 179) | def type(self, /) -> QAbstract3DSeries.SeriesType: ... method userDefinedMesh (line 180) | def userDefinedMesh(self, /) -> str: ... class QAbstractAxis (line 182) | class QAbstractAxis(PySide6.QtCore.QObject): class AxisType (line 183) | class AxisType(enum.Enum): method __init__ (line 203) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method alignment (line 204) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method hide (line 205) | def hide(self, /) -> None: ... method isGridVisible (line 206) | def isGridVisible(self, /) -> bool: ... method isLineVisible (line 207) | def isLineVisible(self, /) -> bool: ... method isSubGridVisible (line 208) | def isSubGridVisible(self, /) -> bool: ... method isTitleVisible (line 209) | def isTitleVisible(self, /) -> bool: ... method isVisible (line 210) | def isVisible(self, /) -> bool: ... method labelDelegate (line 211) | def labelDelegate(self, /) -> PySide6.QtQml.QQmlComponent: ... method labelsAngle (line 212) | def labelsAngle(self, /) -> float: ... method labelsVisible (line 213) | def labelsVisible(self, /) -> bool: ... method setAlignment (line 214) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setGridVisible (line 215) | def setGridVisible(self, /, visible: bool = ...) -> None: ... method setLabelDelegate (line 216) | def setLabelDelegate(self, newLabelDelegate: PySide6.QtQml.QQmlCompone... method setLabelsAngle (line 217) | def setLabelsAngle(self, angle: float, /) -> None: ... method setLabelsVisible (line 218) | def setLabelsVisible(self, /, visible: bool = ...) -> None: ... method setLineVisible (line 219) | def setLineVisible(self, /, visible: bool = ...) -> None: ... method setMax (line 220) | def setMax(self, max: Any, /) -> None: ... method setMin (line 221) | def setMin(self, min: Any, /) -> None: ... method setRange (line 222) | def setRange(self, min: Any, max: Any, /) -> None: ... method setSubGridVisible (line 223) | def setSubGridVisible(self, /, visible: bool = ...) -> None: ... method setTextElideMode (line 224) | def setTextElideMode(self, elideMode: PySide6.QtCore.Qt.TextElideMode,... method setTitleColor (line 225) | def setTitleColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setTitleFont (line 226) | def setTitleFont(self, font: PySide6.QtGui.QFont | str | typing.Iterab... method setTitleText (line 227) | def setTitleText(self, title: str, /) -> None: ... method setTitleVisible (line 228) | def setTitleVisible(self, /, visible: bool = ...) -> None: ... method setVisible (line 229) | def setVisible(self, /, visible: bool = ...) -> None: ... method show (line 230) | def show(self, /) -> None: ... method textElideMode (line 231) | def textElideMode(self, /) -> PySide6.QtCore.Qt.TextElideMode: ... method titleColor (line 232) | def titleColor(self, /) -> PySide6.QtGui.QColor: ... method titleFont (line 233) | def titleFont(self, /) -> PySide6.QtGui.QFont: ... method titleText (line 234) | def titleText(self, /) -> str: ... method type (line 235) | def type(self, /) -> QAbstractAxis.AxisType: ... class QAbstractDataProxy (line 237) | class QAbstractDataProxy(PySide6.QtCore.QObject): class DataType (line 238) | class DataType(enum.Enum): method __init__ (line 244) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method type (line 245) | def type(self, /) -> QAbstractDataProxy.DataType: ... class QAbstractSeries (line 247) | class QAbstractSeries(PySide6.QtCore.QObject, PySide6.QtQml.QQmlParserSt... class SeriesType (line 248) | class SeriesType(enum.Enum): method __init__ (line 271) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method axisX (line 272) | def axisX(self, /) -> QAbstractAxis: ... method axisY (line 273) | def axisY(self, /) -> QAbstractAxis: ... method classBegin (line 274) | def classBegin(self, /) -> None: ... method componentComplete (line 275) | def componentComplete(self, /) -> None: ... method hasLoaded (line 276) | def hasLoaded(self, /) -> bool: ... method hide (line 277) | def hide(self, /) -> None: ... method isHoverable (line 278) | def isHoverable(self, /) -> bool: ... method isHovered (line 279) | def isHovered(self, /) -> bool: ... method isSelectable (line 280) | def isSelectable(self, /) -> bool: ... method isVisible (line 281) | def isVisible(self, /) -> bool: ... method legendData (line 282) | def legendData(self, /) -> List[QLegendData]: ... method name (line 283) | def name(self, /) -> str: ... method opacity (line 284) | def opacity(self, /) -> float: ... method setAxisX (line 285) | def setAxisX(self, newAxisX: QAbstractAxis, /) -> None: ... method setAxisY (line 286) | def setAxisY(self, newAxisY: QAbstractAxis, /) -> None: ... method setHoverable (line 287) | def setHoverable(self, newHoverable: bool, /) -> None: ... method setHovered (line 288) | def setHovered(self, enabled: bool, /) -> None: ... method setName (line 289) | def setName(self, name: str, /) -> None: ... method setOpacity (line 290) | def setOpacity(self, opacity: float, /) -> None: ... method setSelectable (line 291) | def setSelectable(self, selectable: bool, /) -> None: ... method setValuesMultiplier (line 292) | def setValuesMultiplier(self, valuesMultiplier: float, /) -> None: ... method setVisible (line 293) | def setVisible(self, /, visible: bool = ...) -> None: ... method setZValue (line 294) | def setZValue(self, newDrawOrder: int, /) -> None: ... method show (line 295) | def show(self, /) -> None: ... method type (line 296) | def type(self, /) -> QAbstractSeries.SeriesType: ... method valuesMultiplier (line 297) | def valuesMultiplier(self, /) -> float: ... method zValue (line 298) | def zValue(self, /) -> int: ... class QAreaSeries (line 300) | class QAreaSeries(QAbstractSeries): method __init__ (line 314) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method borderColor (line 315) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method borderWidth (line 316) | def borderWidth(self, /) -> float: ... method color (line 317) | def color(self, /) -> PySide6.QtGui.QColor: ... method isSelected (line 318) | def isSelected(self, /) -> bool: ... method lowerSeries (line 319) | def lowerSeries(self, /) -> QXYSeries: ... method selectedBorderColor (line 320) | def selectedBorderColor(self, /) -> PySide6.QtGui.QColor: ... method selectedColor (line 321) | def selectedColor(self, /) -> PySide6.QtGui.QColor: ... method setBorderColor (line 322) | def setBorderColor(self, newBorderColor: Union[PySide6.QtGui.QColor, s... method setBorderWidth (line 323) | def setBorderWidth(self, newBorderWidth: float, /) -> None: ... method setColor (line 324) | def setColor(self, newColor: Union[PySide6.QtGui.QColor, str, PySide6.... method setLowerSeries (line 325) | def setLowerSeries(self, newLowerSeries: QXYSeries, /) -> None: ... method setSelected (line 326) | def setSelected(self, newSelected: bool, /) -> None: ... method setSelectedBorderColor (line 327) | def setSelectedBorderColor(self, newSelectedBorderColor: Union[PySide6... method setSelectedColor (line 328) | def setSelectedColor(self, newColor: Union[PySide6.QtGui.QColor, str, ... method setUpperSeries (line 329) | def setUpperSeries(self, newUpperSeries: QXYSeries, /) -> None: ... method type (line 330) | def type(self, /) -> QAbstractSeries.SeriesType: ... method upperSeries (line 331) | def upperSeries(self, /) -> QXYSeries: ... class QBar3DSeries (line 333) | class QBar3DSeries(QAbstract3DSeries): method __init__ (line 344) | def __init__(self, dataProxy: QBarDataProxy, /, parent: PySide6.QtCore... method __init__ (line 346) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method clearArray (line 347) | def clearArray(self, /) -> None: ... method clearRow (line 348) | def clearRow(self, rowIndex: int, /) -> None: ... method columnLabels (line 349) | def columnLabels(self, /) -> List[str]: ... method dataArray (line 350) | def dataArray(self, /) -> List[List[QBarDataItem]]: ... method dataProxy (line 351) | def dataProxy(self, /) -> QBarDataProxy: ... method invalidSelectionPosition (line 353) | def invalidSelectionPosition() -> PySide6.QtCore.QPoint: ... method isValueColoringEnabled (line 354) | def isValueColoringEnabled(self, /) -> bool: ... method meshAngle (line 355) | def meshAngle(self, /) -> float: ... method rowColors (line 356) | def rowColors(self, /) -> List[PySide6.QtGui.QColor]: ... method rowLabels (line 357) | def rowLabels(self, /) -> List[str]: ... method selectedBar (line 358) | def selectedBar(self, /) -> PySide6.QtCore.QPoint: ... method setColumnLabels (line 359) | def setColumnLabels(self, labels: typing.Iterable[str], /) -> None: ... method setDataArray (line 360) | def setDataArray(self, newDataArray: typing.Iterable[typing.Iterable[Q... method setDataProxy (line 361) | def setDataProxy(self, proxy: QBarDataProxy, /) -> None: ... method setMeshAngle (line 362) | def setMeshAngle(self, angle: float, /) -> None: ... method setRowColors (line 363) | def setRowColors(self, colors: typing.Iterable[PySide6.QtGui.QColor], ... method setRowLabels (line 364) | def setRowLabels(self, labels: typing.Iterable[str], /) -> None: ... method setSelectedBar (line 365) | def setSelectedBar(self, position: PySide6.QtCore.QPoint, /) -> None: ... method setValueColoringEnabled (line 366) | def setValueColoringEnabled(self, enabled: bool, /) -> None: ... class QBarCategoryAxis (line 368) | class QBarCategoryAxis(QAbstractAxis): method __init__ (line 375) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 377) | def append(self, category: str, /) -> None: ... method append (line 379) | def append(self, categories: typing.Iterable[str], /) -> None: ... method at (line 380) | def at(self, index: int, /) -> str: ... method categories (line 381) | def categories(self, /) -> List[str]: ... method clear (line 382) | def clear(self, /) -> None: ... method count (line 383) | def count(self, /) -> int: ... method insert (line 384) | def insert(self, index: int, category: str, /) -> None: ... method max (line 385) | def max(self, /) -> str: ... method min (line 386) | def min(self, /) -> str: ... method remove (line 388) | def remove(self, index: int, /) -> None: ... method remove (line 390) | def remove(self, category: str, /) -> None: ... method replace (line 391) | def replace(self, oldCategory: str, newCategory: str, /) -> None: ... method setCategories (line 392) | def setCategories(self, categories: typing.Iterable[str], /) -> None: ... method setMax (line 393) | def setMax(self, maxCategory: str, /) -> None: ... method setMin (line 394) | def setMin(self, minCategory: str, /) -> None: ... method setRange (line 395) | def setRange(self, minCategory: str, maxCategory: str, /) -> None: ... method type (line 396) | def type(self, /) -> QAbstractAxis.AxisType: ... class QBarDataItem (line 398) | class QBarDataItem(shiboken6.Object): method __init__ (line 400) | def __init__(self, value: float, angle: float, /) -> None: ... method __init__ (line 402) | def __init__(self, value: float, /) -> None: ... method __init__ (line 404) | def __init__(self, QBarDataItem: QBarDataItem, /) -> None: ... method __init__ (line 406) | def __init__(self, /) -> None: ... method rotation (line 407) | def rotation(self, /) -> float: ... method setRotation (line 408) | def setRotation(self, angle: float, /) -> None: ... method setValue (line 409) | def setValue(self, val: float, /) -> None: ... method value (line 410) | def value(self, /) -> float: ... method __copy__ (line 411) | def __copy__(self, /) -> typing_extensions.Self: ... class QBarDataProxy (line 413) | class QBarDataProxy(QAbstractDataProxy): class RemoveLabels (line 414) | class RemoveLabels(enum.Enum): method __init__ (line 427) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addRow (line 429) | def addRow(self, row: typing.Iterable[QBarDataItem], label: str, /) ->... method addRow (line 431) | def addRow(self, row: typing.Iterable[QBarDataItem], /) -> int: ... method addRows (line 433) | def addRows(self, rows: typing.Iterable[typing.Iterable[QBarDataItem]]... method addRows (line 435) | def addRows(self, rows: typing.Iterable[typing.Iterable[QBarDataItem]]... method colCount (line 436) | def colCount(self, /) -> int: ... method insertRow (line 438) | def insertRow(self, rowIndex: int, row: typing.Iterable[QBarDataItem],... method insertRow (line 440) | def insertRow(self, rowIndex: int, row: typing.Iterable[QBarDataItem],... method insertRows (line 442) | def insertRows(self, rowIndex: int, rows: typing.Iterable[typing.Itera... method insertRows (line 444) | def insertRows(self, rowIndex: int, rows: typing.Iterable[typing.Itera... method itemAt (line 446) | def itemAt(self, rowIndex: int, columnIndex: int, /) -> QBarDataItem: ... method itemAt (line 448) | def itemAt(self, position: PySide6.QtCore.QPoint, /) -> QBarDataItem: ... method removeRows (line 449) | def removeRows(self, rowIndex: int, removeCount: int, /, removeLabels:... method resetArray (line 451) | def resetArray(self, newArray: typing.Iterable[typing.Iterable[QBarDat... method resetArray (line 453) | def resetArray(self, newArray: typing.Iterable[typing.Iterable[QBarDat... method resetArray (line 455) | def resetArray(self, /) -> None: ... method rowAt (line 456) | def rowAt(self, rowIndex: int, /) -> List[QBarDataItem]: ... method rowCount (line 457) | def rowCount(self, /) -> int: ... method series (line 458) | def series(self, /) -> QBar3DSeries: ... method setItem (line 460) | def setItem(self, rowIndex: int, columnIndex: int, item: QBarDataItem,... method setItem (line 462) | def setItem(self, position: PySide6.QtCore.QPoint, item: QBarDataItem,... method setRow (line 464) | def setRow(self, rowIndex: int, row: typing.Iterable[QBarDataItem], la... method setRow (line 466) | def setRow(self, rowIndex: int, row: typing.Iterable[QBarDataItem], /)... method setRows (line 468) | def setRows(self, rowIndex: int, rows: typing.Iterable[typing.Iterable... method setRows (line 470) | def setRows(self, rowIndex: int, rows: typing.Iterable[typing.Iterable... class QBarModelMapper (line 472) | class QBarModelMapper(PySide6.QtCore.QObject): method __init__ (line 481) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method count (line 482) | def count(self, /) -> int: ... method first (line 483) | def first(self, /) -> int: ... method firstBarSetSection (line 484) | def firstBarSetSection(self, /) -> int: ... method lastBarSetSection (line 485) | def lastBarSetSection(self, /) -> int: ... method model (line 486) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 487) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 488) | def series(self, /) -> QBarSeries: ... method setCount (line 489) | def setCount(self, newCount: int, /) -> None: ... method setFirst (line 490) | def setFirst(self, newFirst: int, /) -> None: ... method setFirstBarSetSection (line 491) | def setFirstBarSetSection(self, newFirstBarSetSection: int, /) -> None... method setLastBarSetSection (line 492) | def setLastBarSetSection(self, newLastBarSetSection: int, /) -> None: ... method setModel (line 493) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 494) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 495) | def setSeries(self, series: QBarSeries, /) -> None: ... class QBarSeries (line 497) | class QBarSeries(QAbstractSeries): class BarsType (line 498) | class BarsType(enum.Enum): class LabelsPosition (line 503) | class LabelsPosition(enum.Enum): method __init__ (line 533) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 535) | def append(self, sets: typing.Iterable[QBarSet], /) -> bool: ... method append (line 537) | def append(self, set: QBarSet, /) -> bool: ... method at (line 538) | def at(self, index: int, /) -> QBarSet: ... method barDelegate (line 539) | def barDelegate(self, /) -> PySide6.QtQml.QQmlComponent: ... method barSets (line 540) | def barSets(self, /) -> List[QBarSet]: ... method barWidth (line 541) | def barWidth(self, /) -> float: ... method barsType (line 542) | def barsType(self, /) -> QBarSeries.BarsType: ... method borderColors (line 543) | def borderColors(self, /) -> List[PySide6.QtGui.QColor]: ... method clear (line 544) | def clear(self, /) -> None: ... method componentComplete (line 545) | def componentComplete(self, /) -> None: ... method count (line 546) | def count(self, /) -> int: ... method deselectAll (line 547) | def deselectAll(self, /) -> None: ... method find (line 548) | def find(self, set: QBarSet, /) -> int: ... method insert (line 549) | def insert(self, index: int, set: QBarSet, /) -> bool: ... method labelsAngle (line 550) | def labelsAngle(self, /) -> float: ... method labelsFormat (line 551) | def labelsFormat(self, /) -> str: ... method labelsMargin (line 552) | def labelsMargin(self, /) -> float: ... method labelsPosition (line 553) | def labelsPosition(self, /) -> QBarSeries.LabelsPosition: ... method labelsPrecision (line 554) | def labelsPrecision(self, /) -> int: ... method labelsVisible (line 555) | def labelsVisible(self, /) -> bool: ... method remove (line 557) | def remove(self, set: QBarSet, /) -> bool: ... method remove (line 559) | def remove(self, index: int, /) -> bool: ... method removeMultiple (line 560) | def removeMultiple(self, index: int, count: int, /) -> None: ... method replace (line 562) | def replace(self, oldValue: QBarSet, newValue: QBarSet, /) -> bool: ... method replace (line 564) | def replace(self, index: int, set: QBarSet, /) -> None: ... method replace (line 566) | def replace(self, sets: typing.Iterable[QBarSet], /) -> bool: ... method selectAll (line 567) | def selectAll(self, /) -> None: ... method seriesColors (line 568) | def seriesColors(self, /) -> List[PySide6.QtGui.QColor]: ... method setBarDelegate (line 569) | def setBarDelegate(self, newBarDelegate: PySide6.QtQml.QQmlComponent, ... method setBarWidth (line 570) | def setBarWidth(self, width: float, /) -> None: ... method setBarsType (line 571) | def setBarsType(self, type: QBarSeries.BarsType, /) -> None: ... method setBorderColors (line 572) | def setBorderColors(self, newBorderColors: typing.Iterable[PySide6.QtG... method setLabelsAngle (line 573) | def setLabelsAngle(self, angle: float, /) -> None: ... method setLabelsFormat (line 574) | def setLabelsFormat(self, format: str, /) -> None: ... method setLabelsMargin (line 575) | def setLabelsMargin(self, margin: float, /) -> None: ... method setLabelsPosition (line 576) | def setLabelsPosition(self, position: QBarSeries.LabelsPosition, /) ->... method setLabelsPrecision (line 577) | def setLabelsPrecision(self, precision: int, /) -> None: ... method setLabelsVisible (line 578) | def setLabelsVisible(self, /, visible: bool = ...) -> None: ... method setSeriesColors (line 579) | def setSeriesColors(self, newSeriesColors: typing.Iterable[PySide6.QtG... method take (line 580) | def take(self, set: QBarSet, /) -> bool: ... method type (line 581) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QBarSet (line 583) | class QBarSet(PySide6.QtCore.QObject): method __init__ (line 602) | def __init__(self, label: str, /, parent: PySide6.QtCore.QObject | Non... method __init__ (line 604) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method append (line 606) | def append(self, values: typing.Iterable[float], /) -> None: ... method append (line 608) | def append(self, value: float, /) -> None: ... method at (line 609) | def at(self, index: int, /) -> float: ... method borderColor (line 610) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method borderWidth (line 611) | def borderWidth(self, /) -> float: ... method clear (line 612) | def clear(self, /) -> None: ... method color (line 613) | def color(self, /) -> PySide6.QtGui.QColor: ... method count (line 614) | def count(self, /) -> int: ... method deselectAllBars (line 615) | def deselectAllBars(self, /) -> None: ... method deselectBar (line 616) | def deselectBar(self, index: int, /) -> None: ... method deselectBars (line 617) | def deselectBars(self, indexes: typing.Iterable[int], /) -> None: ... method insert (line 618) | def insert(self, index: int, value: float, /) -> None: ... method isBarSelected (line 619) | def isBarSelected(self, index: int, /) -> bool: ... method label (line 620) | def label(self, /) -> str: ... method labelColor (line 621) | def labelColor(self, /) -> PySide6.QtGui.QColor: ... method remove (line 622) | def remove(self, index: int, /, count: int = ...) -> None: ... method replace (line 623) | def replace(self, index: int, value: float, /) -> None: ... method selectAllBars (line 624) | def selectAllBars(self, /) -> None: ... method selectBar (line 625) | def selectBar(self, index: int, /) -> None: ... method selectBars (line 626) | def selectBars(self, indexes: typing.Iterable[int], /) -> None: ... method selectedBars (line 627) | def selectedBars(self, /) -> List[int]: ... method selectedColor (line 628) | def selectedColor(self, /) -> PySide6.QtGui.QColor: ... method setBarSelected (line 629) | def setBarSelected(self, index: int, selected: bool, /) -> None: ... method setBorderColor (line 630) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBorderWidth (line 631) | def setBorderWidth(self, borderWidth: float, /) -> None: ... method setColor (line 632) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setLabel (line 633) | def setLabel(self, label: str, /) -> None: ... method setLabelColor (line 634) | def setLabelColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setSelectedColor (line 635) | def setSelectedColor(self, color: Union[PySide6.QtGui.QColor, str, PyS... method setValues (line 636) | def setValues(self, values: typing.Iterable[typing.Any], /) -> None: ... method sum (line 637) | def sum(self, /) -> float: ... method toggleSelection (line 638) | def toggleSelection(self, indexes: typing.Iterable[int], /) -> None: ... method values (line 639) | def values(self, /) -> List[Any]: ... method __lshift__ (line 640) | def __lshift__(self, value: float, /) -> QBarSet: ... method __rlshift__ (line 641) | def __rlshift__(self, other): ... class QCategory3DAxis (line 643) | class QCategory3DAxis(QAbstract3DAxis): method __init__ (line 647) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method labels (line 648) | def labels(self, /) -> List[str]: ... method setLabels (line 649) | def setLabels(self, labels: typing.Iterable[str], /) -> None: ... class QCustom3DItem (line 651) | class QCustom3DItem(PySide6.QtCore.QObject): method __init__ (line 664) | def __init__(self, meshFile: str, position: PySide6.QtGui.QVector3D, s... method __init__ (line 666) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method isPositionAbsolute (line 667) | def isPositionAbsolute(self, /) -> bool: ... method isScalingAbsolute (line 668) | def isScalingAbsolute(self, /) -> bool: ... method isShadowCasting (line 669) | def isShadowCasting(self, /) -> bool: ... method isVisible (line 670) | def isVisible(self, /) -> bool: ... method meshFile (line 671) | def meshFile(self, /) -> str: ... method position (line 672) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method rotation (line 673) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method scaling (line 674) | def scaling(self, /) -> PySide6.QtGui.QVector3D: ... method setMeshFile (line 675) | def setMeshFile(self, meshFile: str, /) -> None: ... method setPosition (line 676) | def setPosition(self, position: PySide6.QtGui.QVector3D, /) -> None: ... method setPositionAbsolute (line 677) | def setPositionAbsolute(self, positionAbsolute: bool, /) -> None: ... method setRotation (line 678) | def setRotation(self, rotation: PySide6.QtGui.QQuaternion, /) -> None:... method setRotationAxisAndAngle (line 679) | def setRotationAxisAndAngle(self, axis: PySide6.QtGui.QVector3D, angle... method setScaling (line 680) | def setScaling(self, scaling: PySide6.QtGui.QVector3D, /) -> None: ... method setScalingAbsolute (line 681) | def setScalingAbsolute(self, scalingAbsolute: bool, /) -> None: ... method setShadowCasting (line 682) | def setShadowCasting(self, enabled: bool, /) -> None: ... method setTextureFile (line 683) | def setTextureFile(self, textureFile: str, /) -> None: ... method setTextureImage (line 684) | def setTextureImage(self, textureImage: PySide6.QtGui.QImage, /) -> No... method setVisible (line 685) | def setVisible(self, visible: bool, /) -> None: ... method textureFile (line 686) | def textureFile(self, /) -> str: ... class QCustom3DLabel (line 688) | class QCustom3DLabel(QCustom3DItem): method __init__ (line 698) | def __init__(self, text: str, font: PySide6.QtGui.QFont | str | typing... method __init__ (line 700) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method backgroundColor (line 701) | def backgroundColor(self, /) -> PySide6.QtGui.QColor: ... method font (line 702) | def font(self, /) -> PySide6.QtGui.QFont: ... method isBackgroundVisible (line 703) | def isBackgroundVisible(self, /) -> bool: ... method isBorderVisible (line 704) | def isBorderVisible(self, /) -> bool: ... method isFacingCamera (line 705) | def isFacingCamera(self, /) -> bool: ... method setBackgroundColor (line 706) | def setBackgroundColor(self, color: Union[PySide6.QtGui.QColor, str, P... method setBackgroundVisible (line 707) | def setBackgroundVisible(self, visible: bool, /) -> None: ... method setBorderVisible (line 708) | def setBorderVisible(self, visible: bool, /) -> None: ... method setFacingCamera (line 709) | def setFacingCamera(self, enabled: bool, /) -> None: ... method setFont (line 710) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setText (line 711) | def setText(self, text: str, /) -> None: ... method setTextColor (line 712) | def setTextColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6... method text (line 713) | def text(self, /) -> str: ... method textColor (line 714) | def textColor(self, /) -> PySide6.QtGui.QColor: ... class QCustom3DVolume (line 716) | class QCustom3DVolume(QCustom3DItem): method __init__ (line 737) | def __init__(self, position: PySide6.QtGui.QVector3D, scaling: PySide6... method __init__ (line 739) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method alphaMultiplier (line 740) | def alphaMultiplier(self, /) -> float: ... method colorTable (line 741) | def colorTable(self, /) -> List[int]: ... method createTextureData (line 742) | def createTextureData(self, images: typing.Iterable[PySide6.QtGui.QIma... method drawSliceFrames (line 743) | def drawSliceFrames(self, /) -> bool: ... method drawSlices (line 744) | def drawSlices(self, /) -> bool: ... method preserveOpacity (line 745) | def preserveOpacity(self, /) -> bool: ... method renderSlice (line 746) | def renderSlice(self, axis: PySide6.QtCore.Qt.Axis, index: int, /) -> ... method setAlphaMultiplier (line 747) | def setAlphaMultiplier(self, mult: float, /) -> None: ... method setColorTable (line 748) | def setColorTable(self, colors: typing.Iterable[int], /) -> None: ... method setDrawSliceFrames (line 749) | def setDrawSliceFrames(self, enable: bool, /) -> None: ... method setDrawSlices (line 750) | def setDrawSlices(self, enable: bool, /) -> None: ... method setPreserveOpacity (line 751) | def setPreserveOpacity(self, enable: bool, /) -> None: ... method setSliceFrameColor (line 752) | def setSliceFrameColor(self, color: Union[PySide6.QtGui.QColor, str, P... method setSliceFrameGaps (line 753) | def setSliceFrameGaps(self, values: PySide6.QtGui.QVector3D, /) -> Non... method setSliceFrameThicknesses (line 754) | def setSliceFrameThicknesses(self, values: PySide6.QtGui.QVector3D, /)... method setSliceFrameWidths (line 755) | def setSliceFrameWidths(self, values: PySide6.QtGui.QVector3D, /) -> N... method setSliceIndexX (line 756) | def setSliceIndexX(self, value: int, /) -> None: ... method setSliceIndexY (line 757) | def setSliceIndexY(self, value: int, /) -> None: ... method setSliceIndexZ (line 758) | def setSliceIndexZ(self, value: int, /) -> None: ... method setSliceIndices (line 759) | def setSliceIndices(self, x: int, y: int, z: int, /) -> None: ... method setSubTextureData (line 761) | def setSubTextureData(self, axis: PySide6.QtCore.Qt.Axis, index: int, ... method setSubTextureData (line 763) | def setSubTextureData(self, axis: PySide6.QtCore.Qt.Axis, index: int, ... method setTextureData (line 764) | def setTextureData(self, arg__1: typing.Iterable[int], /) -> None: ... method setTextureDepth (line 765) | def setTextureDepth(self, value: int, /) -> None: ... method setTextureDimensions (line 766) | def setTextureDimensions(self, width: int, height: int, depth: int, /)... method setTextureFormat (line 767) | def setTextureFormat(self, format: PySide6.QtGui.QImage.Format, /) -> ... method setTextureHeight (line 768) | def setTextureHeight(self, value: int, /) -> None: ... method setTextureWidth (line 769) | def setTextureWidth(self, value: int, /) -> None: ... method setUseHighDefShader (line 770) | def setUseHighDefShader(self, enable: bool, /) -> None: ... method sliceFrameColor (line 771) | def sliceFrameColor(self, /) -> PySide6.QtGui.QColor: ... method sliceFrameGaps (line 772) | def sliceFrameGaps(self, /) -> PySide6.QtGui.QVector3D: ... method sliceFrameThicknesses (line 773) | def sliceFrameThicknesses(self, /) -> PySide6.QtGui.QVector3D: ... method sliceFrameWidths (line 774) | def sliceFrameWidths(self, /) -> PySide6.QtGui.QVector3D: ... method sliceIndexX (line 775) | def sliceIndexX(self, /) -> int: ... method sliceIndexY (line 776) | def sliceIndexY(self, /) -> int: ... method sliceIndexZ (line 777) | def sliceIndexZ(self, /) -> int: ... method textureData (line 778) | def textureData(self, /) -> List[int]: ... method textureDataWidth (line 779) | def textureDataWidth(self, /) -> int: ... method textureDepth (line 780) | def textureDepth(self, /) -> int: ... method textureFormat (line 781) | def textureFormat(self, /) -> PySide6.QtGui.QImage.Format: ... method textureHeight (line 782) | def textureHeight(self, /) -> int: ... method textureWidth (line 783) | def textureWidth(self, /) -> int: ... method useHighDefShader (line 784) | def useHighDefShader(self, /) -> bool: ... class QDateTimeAxis (line 786) | class QDateTimeAxis(QAbstractAxis): method __init__ (line 793) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method labelFormat (line 794) | def labelFormat(self, /) -> str: ... method max (line 795) | def max(self, /) -> PySide6.QtCore.QDateTime: ... method min (line 796) | def min(self, /) -> PySide6.QtCore.QDateTime: ... method setLabelFormat (line 797) | def setLabelFormat(self, format: str, /) -> None: ... method setMax (line 798) | def setMax(self, max: PySide6.QtCore.QDateTime | datetime.datetime, /)... method setMin (line 799) | def setMin(self, min: PySide6.QtCore.QDateTime | datetime.datetime, /)... method setSubTickCount (line 800) | def setSubTickCount(self, newSubTickCount: int, /) -> None: ... method setTickInterval (line 801) | def setTickInterval(self, newTickInterval: float, /) -> None: ... method subTickCount (line 802) | def subTickCount(self, /) -> int: ... method tickInterval (line 803) | def tickInterval(self, /) -> float: ... method type (line 804) | def type(self, /) -> QAbstractAxis.AxisType: ... class QGraphsLine (line 806) | class QGraphsLine(shiboken6.Object): method __init__ (line 808) | def __init__(self, other: QGraphsLine, /, *, mainColor: PySide6.QtGui.... method __init__ (line 810) | def __init__(self, /, *, mainColor: PySide6.QtGui.QColor | None = ...,... method labelTextColor (line 811) | def labelTextColor(self, /) -> PySide6.QtGui.QColor: ... method mainColor (line 812) | def mainColor(self, /) -> PySide6.QtGui.QColor: ... method mainWidth (line 813) | def mainWidth(self, /) -> float: ... method setLabelTextColor (line 814) | def setLabelTextColor(self, newColor: Union[PySide6.QtGui.QColor, str,... method setMainColor (line 815) | def setMainColor(self, newColor: Union[PySide6.QtGui.QColor, str, PySi... method setMainWidth (line 816) | def setMainWidth(self, newWidth: float, /) -> None: ... method setSubColor (line 817) | def setSubColor(self, newColor: Union[PySide6.QtGui.QColor, str, PySid... method setSubWidth (line 818) | def setSubWidth(self, newWidth: float, /) -> None: ... method subColor (line 819) | def subColor(self, /) -> PySide6.QtGui.QColor: ... method subWidth (line 820) | def subWidth(self, /) -> float: ... method __copy__ (line 821) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 822) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 823) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 824) | def __gt__(self, other: object) -> bool: ... method __le__ (line 825) | def __le__(self, other: object) -> bool: ... method __lt__ (line 826) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 827) | def __ne__(self, other: object) -> bool: ... class QGraphsTheme (line 829) | class QGraphsTheme(PySide6.QtCore.QObject, PySide6.QtQml.QQmlParserStatus): class ColorScheme (line 830) | class ColorScheme(enum.Enum): class ColorStyle (line 835) | class ColorStyle(enum.Enum): class ForceTheme (line 840) | class ForceTheme(enum.Enum): class Theme (line 844) | class Theme(enum.Enum): method __init__ (line 887) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method axisX (line 888) | def axisX(self, /) -> QGraphsLine: ... method axisXLabelFont (line 889) | def axisXLabelFont(self, /) -> PySide6.QtGui.QFont: ... method axisY (line 890) | def axisY(self, /) -> QGraphsLine: ... method axisYLabelFont (line 891) | def axisYLabelFont(self, /) -> PySide6.QtGui.QFont: ... method axisZ (line 892) | def axisZ(self, /) -> QGraphsLine: ... method axisZLabelFont (line 893) | def axisZLabelFont(self, /) -> PySide6.QtGui.QFont: ... method backgroundColor (line 894) | def backgroundColor(self, /) -> PySide6.QtGui.QColor: ... method borderColors (line 895) | def borderColors(self, /) -> List[PySide6.QtGui.QColor]: ... method borderWidth (line 896) | def borderWidth(self, /) -> float: ... method classBegin (line 897) | def classBegin(self, /) -> None: ... method colorScheme (line 898) | def colorScheme(self, /) -> QGraphsTheme.ColorScheme: ... method colorStyle (line 899) | def colorStyle(self, /) -> QGraphsTheme.ColorStyle: ... method componentComplete (line 900) | def componentComplete(self, /) -> None: ... method dirtyBits (line 901) | def dirtyBits(self, /) -> QGraphsThemeDirtyBitField: ... method grid (line 902) | def grid(self, /) -> QGraphsLine: ... method handleBaseColorUpdate (line 903) | def handleBaseColorUpdate(self, /) -> None: ... method handleBaseGradientUpdate (line 904) | def handleBaseGradientUpdate(self, /) -> None: ... method isBackgroundVisible (line 905) | def isBackgroundVisible(self, /) -> bool: ... method isGridVisible (line 906) | def isGridVisible(self, /) -> bool: ... method isLabelBackgroundVisible (line 907) | def isLabelBackgroundVisible(self, /) -> bool: ... method isLabelBorderVisible (line 908) | def isLabelBorderVisible(self, /) -> bool: ... method isPlotAreaBackgroundVisible (line 909) | def isPlotAreaBackgroundVisible(self, /) -> bool: ... method labelBackgroundColor (line 910) | def labelBackgroundColor(self, /) -> PySide6.QtGui.QColor: ... method labelFont (line 911) | def labelFont(self, /) -> PySide6.QtGui.QFont: ... method labelTextColor (line 912) | def labelTextColor(self, /) -> PySide6.QtGui.QColor: ... method labelsVisible (line 913) | def labelsVisible(self, /) -> bool: ... method multiHighlightColor (line 914) | def multiHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method multiHighlightGradient (line 915) | def multiHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient: ... method plotAreaBackgroundColor (line 916) | def plotAreaBackgroundColor(self, /) -> PySide6.QtGui.QColor: ... method resetColorTheme (line 917) | def resetColorTheme(self, /) -> None: ... method resetDirtyBits (line 918) | def resetDirtyBits(self, /) -> None: ... method resetThemeDirty (line 919) | def resetThemeDirty(self, /) -> None: ... method seriesColors (line 920) | def seriesColors(self, /) -> List[PySide6.QtGui.QColor]: ... method seriesGradients (line 921) | def seriesGradients(self, /) -> List[PySide6.QtGui.QLinearGradient]: ... method setAxisX (line 922) | def setAxisX(self, newAxisX: QGraphsLine, /) -> None: ... method setAxisXLabelFont (line 923) | def setAxisXLabelFont(self, newAxisXLabelFont: PySide6.QtGui.QFont | s... method setAxisY (line 924) | def setAxisY(self, newAxisY: QGraphsLine, /) -> None: ... method setAxisYLabelFont (line 925) | def setAxisYLabelFont(self, newAxisYLabelFont: PySide6.QtGui.QFont | s... method setAxisZ (line 926) | def setAxisZ(self, newAxisZ: QGraphsLine, /) -> None: ... method setAxisZLabelFont (line 927) | def setAxisZLabelFont(self, newAxisZLabelFont: PySide6.QtGui.QFont | s... method setBackgroundColor (line 928) | def setBackgroundColor(self, newBackgroundColor: Union[PySide6.QtGui.Q... method setBackgroundVisible (line 929) | def setBackgroundVisible(self, newBackgroundVisible: bool, /) -> None:... method setBorderColors (line 930) | def setBorderColors(self, newBorderColors: typing.Iterable[PySide6.QtG... method setBorderWidth (line 931) | def setBorderWidth(self, newBorderWidth: float, /) -> None: ... method setColorScheme (line 932) | def setColorScheme(self, newColorScheme: QGraphsTheme.ColorScheme, /) ... method setColorStyle (line 933) | def setColorStyle(self, newColorStyle: QGraphsTheme.ColorStyle, /) -> ... method setGrid (line 934) | def setGrid(self, newGrid: QGraphsLine, /) -> None: ... method setGridVisible (line 935) | def setGridVisible(self, newGridVisibility: bool, /) -> None: ... method setLabelBackgroundColor (line 936) | def setLabelBackgroundColor(self, newLabelBackgroundColor: Union[PySid... method setLabelBackgroundVisible (line 937) | def setLabelBackgroundVisible(self, newLabelBackgroundVisibility: bool... method setLabelBorderVisible (line 938) | def setLabelBorderVisible(self, newLabelBorderVisibility: bool, /) -> ... method setLabelFont (line 939) | def setLabelFont(self, newFont: PySide6.QtGui.QFont | str | typing.Ite... method setLabelTextColor (line 940) | def setLabelTextColor(self, newLabelTextColor: Union[PySide6.QtGui.QCo... method setLabelsVisible (line 941) | def setLabelsVisible(self, newLabelsVisibility: bool, /) -> None: ... method setMultiHighlightColor (line 942) | def setMultiHighlightColor(self, newMultiHighlightColor: Union[PySide6... method setMultiHighlightGradient (line 943) | def setMultiHighlightGradient(self, gradient: PySide6.QtGui.QLinearGra... method setPlotAreaBackgroundColor (line 944) | def setPlotAreaBackgroundColor(self, newBackgroundColor: Union[PySide6... method setPlotAreaBackgroundVisible (line 945) | def setPlotAreaBackgroundVisible(self, newBackgroundVisibility: bool, ... method setSeriesColors (line 946) | def setSeriesColors(self, newSeriesColors: typing.Iterable[PySide6.QtG... method setSeriesGradients (line 947) | def setSeriesGradients(self, newSeriesGradients: typing.Iterable[PySid... method setSingleHighlightColor (line 948) | def setSingleHighlightColor(self, newSingleHighlightColor: Union[PySid... method setSingleHighlightGradient (line 949) | def setSingleHighlightGradient(self, gradient: PySide6.QtGui.QLinearGr... method setTheme (line 950) | def setTheme(self, newTheme: QGraphsTheme.Theme, /, force: QGraphsThem... method singleHighlightColor (line 951) | def singleHighlightColor(self, /) -> PySide6.QtGui.QColor: ... method singleHighlightGradient (line 952) | def singleHighlightGradient(self, /) -> PySide6.QtGui.QLinearGradient:... method theme (line 953) | def theme(self, /) -> QGraphsTheme.Theme: ... method themeDirty (line 954) | def themeDirty(self, /) -> bool: ... class QGraphsThemeDirtyBitField (line 956) | class QGraphsThemeDirtyBitField(shiboken6.Object): method __init__ (line 982) | def __init__(self, QGraphsThemeDirtyBitField: QGraphsThemeDirtyBitFiel... method __init__ (line 984) | def __init__(self, /) -> None: ... method __copy__ (line 985) | def __copy__(self, /) -> typing_extensions.Self: ... class QHeightMapSurfaceDataProxy (line 987) | class QHeightMapSurfaceDataProxy(QSurfaceDataProxy): method __init__ (line 999) | def __init__(self, image: PySide6.QtGui.QImage, /, parent: PySide6.QtC... method __init__ (line 1001) | def __init__(self, filename: str, /, parent: PySide6.QtCore.QObject | ... method __init__ (line 1003) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoScaleY (line 1004) | def autoScaleY(self, /) -> bool: ... method handlePendingResolve (line 1005) | def handlePendingResolve(self, /) -> None: ... method heightMap (line 1006) | def heightMap(self, /) -> PySide6.QtGui.QImage: ... method heightMapFile (line 1007) | def heightMapFile(self, /) -> str: ... method maxXValue (line 1008) | def maxXValue(self, /) -> float: ... method maxYValue (line 1009) | def maxYValue(self, /) -> float: ... method maxZValue (line 1010) | def maxZValue(self, /) -> float: ... method minXValue (line 1011) | def minXValue(self, /) -> float: ... method minYValue (line 1012) | def minYValue(self, /) -> float: ... method minZValue (line 1013) | def minZValue(self, /) -> float: ... method setAutoScaleY (line 1014) | def setAutoScaleY(self, enabled: bool, /) -> None: ... method setHeightMap (line 1015) | def setHeightMap(self, image: PySide6.QtGui.QImage, /) -> None: ... method setHeightMapFile (line 1016) | def setHeightMapFile(self, filename: str, /) -> None: ... method setMaxXValue (line 1017) | def setMaxXValue(self, max: float, /) -> None: ... method setMaxYValue (line 1018) | def setMaxYValue(self, max: float, /) -> None: ... method setMaxZValue (line 1019) | def setMaxZValue(self, max: float, /) -> None: ... method setMinXValue (line 1020) | def setMinXValue(self, min: float, /) -> None: ... method setMinYValue (line 1021) | def setMinYValue(self, min: float, /) -> None: ... method setMinZValue (line 1022) | def setMinZValue(self, min: float, /) -> None: ... method setValueRanges (line 1023) | def setValueRanges(self, minX: float, maxX: float, minZ: float, maxZ: ... class QIntList (line 1025) | class QIntList: method __init__ (line 1027) | def __init__(self, *args, **kwargs) -> None: ... method append (line 1028) | def append(self, *args, **kwargs): ... method capacity (line 1029) | def capacity(self, *args, **kwargs): ... method clear (line 1030) | def clear(self, *args, **kwargs): ... method constData (line 1031) | def constData(self, *args, **kwargs): ... method data (line 1032) | def data(self, *args, **kwargs): ... method pop_back (line 1033) | def pop_back(self, *args, **kwargs): ... method pop_front (line 1034) | def pop_front(self, *args, **kwargs): ... method prepend (line 1035) | def prepend(self, *args, **kwargs): ... method push_back (line 1036) | def push_back(self, *args, **kwargs): ... method push_front (line 1037) | def push_front(self, *args, **kwargs): ... method removeFirst (line 1038) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 1039) | def removeLast(self, *args, **kwargs): ... method reserve (line 1040) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 1041) | def __delitem__(self, other) -> None: ... method __getitem__ (line 1042) | def __getitem__(self, index): ... method __len__ (line 1043) | def __len__(self) -> int: ... method __setitem__ (line 1044) | def __setitem__(self, index, object) -> None: ... class QItemModelBarDataProxy (line 1046) | class QItemModelBarDataProxy(QBarDataProxy): class MultiMatchBehavior (line 1047) | class MultiMatchBehavior(enum.Enum): method __init__ (line 1073) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, value... method __init__ (line 1075) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1077) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1079) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1081) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1083) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, /, pa... method __init__ (line 1085) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoColumnCategories (line 1086) | def autoColumnCategories(self, /) -> bool: ... method autoRowCategories (line 1087) | def autoRowCategories(self, /) -> bool: ... method columnCategories (line 1088) | def columnCategories(self, /) -> List[str]: ... method columnCategoryIndex (line 1089) | def columnCategoryIndex(self, category: str, /) -> int: ... method columnRole (line 1090) | def columnRole(self, /) -> str: ... method columnRolePattern (line 1091) | def columnRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method columnRoleReplace (line 1092) | def columnRoleReplace(self, /) -> str: ... method itemModel (line 1093) | def itemModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method multiMatchBehavior (line 1094) | def multiMatchBehavior(self, /) -> QItemModelBarDataProxy.MultiMatchBe... method remap (line 1095) | def remap(self, rowRole: str, columnRole: str, valueRole: str, rotatio... method rotationRole (line 1096) | def rotationRole(self, /) -> str: ... method rotationRolePattern (line 1097) | def rotationRolePattern(self, /) -> PySide6.QtCore.QRegularExpression:... method rotationRoleReplace (line 1098) | def rotationRoleReplace(self, /) -> str: ... method rowCategories (line 1099) | def rowCategories(self, /) -> List[str]: ... method rowCategoryIndex (line 1100) | def rowCategoryIndex(self, category: str, /) -> int: ... method rowRole (line 1101) | def rowRole(self, /) -> str: ... method rowRolePattern (line 1102) | def rowRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method rowRoleReplace (line 1103) | def rowRoleReplace(self, /) -> str: ... method setAutoColumnCategories (line 1104) | def setAutoColumnCategories(self, enable: bool, /) -> None: ... method setAutoRowCategories (line 1105) | def setAutoRowCategories(self, enable: bool, /) -> None: ... method setColumnCategories (line 1106) | def setColumnCategories(self, categories: typing.Iterable[str], /) -> ... method setColumnRole (line 1107) | def setColumnRole(self, role: str, /) -> None: ... method setColumnRolePattern (line 1108) | def setColumnRolePattern(self, pattern: PySide6.QtCore.QRegularExpress... method setColumnRoleReplace (line 1109) | def setColumnRoleReplace(self, replace: str, /) -> None: ... method setItemModel (line 1110) | def setItemModel(self, itemModel: PySide6.QtCore.QAbstractItemModel, /... method setMultiMatchBehavior (line 1111) | def setMultiMatchBehavior(self, behavior: QItemModelBarDataProxy.Multi... method setRotationRole (line 1112) | def setRotationRole(self, role: str, /) -> None: ... method setRotationRolePattern (line 1113) | def setRotationRolePattern(self, pattern: PySide6.QtCore.QRegularExpre... method setRotationRoleReplace (line 1114) | def setRotationRoleReplace(self, replace: str, /) -> None: ... method setRowCategories (line 1115) | def setRowCategories(self, categories: typing.Iterable[str], /) -> Non... method setRowRole (line 1116) | def setRowRole(self, role: str, /) -> None: ... method setRowRolePattern (line 1117) | def setRowRolePattern(self, pattern: PySide6.QtCore.QRegularExpression... method setRowRoleReplace (line 1118) | def setRowRoleReplace(self, replace: str, /) -> None: ... method setUseModelCategories (line 1119) | def setUseModelCategories(self, enable: bool, /) -> None: ... method setValueRole (line 1120) | def setValueRole(self, role: str, /) -> None: ... method setValueRolePattern (line 1121) | def setValueRolePattern(self, pattern: PySide6.QtCore.QRegularExpressi... method setValueRoleReplace (line 1122) | def setValueRoleReplace(self, replace: str, /) -> None: ... method useModelCategories (line 1123) | def useModelCategories(self, /) -> bool: ... method valueRole (line 1124) | def valueRole(self, /) -> str: ... method valueRolePattern (line 1125) | def valueRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method valueRoleReplace (line 1126) | def valueRoleReplace(self, /) -> str: ... class QItemModelScatterDataProxy (line 1128) | class QItemModelScatterDataProxy(QScatterDataProxy): method __init__ (line 1147) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, xPosR... method __init__ (line 1149) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, xPosR... method __init__ (line 1151) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, /, pa... method __init__ (line 1153) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method itemModel (line 1154) | def itemModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method remap (line 1156) | def remap(self, xPosRole: str, yPosRole: str, zPosRole: str, rotationR... method remap (line 1158) | def remap(self, xPosRole: str, yPosRole: str, zPosRole: str, rotationR... method rotationRole (line 1159) | def rotationRole(self, /) -> str: ... method rotationRolePattern (line 1160) | def rotationRolePattern(self, /) -> PySide6.QtCore.QRegularExpression:... method rotationRoleReplace (line 1161) | def rotationRoleReplace(self, /) -> str: ... method scaleRole (line 1162) | def scaleRole(self, /) -> str: ... method scaleRolePattern (line 1163) | def scaleRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method scaleRoleReplace (line 1164) | def scaleRoleReplace(self, /) -> str: ... method setItemModel (line 1165) | def setItemModel(self, itemModel: PySide6.QtCore.QAbstractItemModel, /... method setRotationRole (line 1166) | def setRotationRole(self, role: str, /) -> None: ... method setRotationRolePattern (line 1167) | def setRotationRolePattern(self, pattern: PySide6.QtCore.QRegularExpre... method setRotationRoleReplace (line 1168) | def setRotationRoleReplace(self, replace: str, /) -> None: ... method setScaleRole (line 1169) | def setScaleRole(self, role: str, /) -> None: ... method setScaleRolePattern (line 1170) | def setScaleRolePattern(self, pattern: PySide6.QtCore.QRegularExpressi... method setScaleRoleReplace (line 1171) | def setScaleRoleReplace(self, replace: str, /) -> None: ... method setXPosRole (line 1172) | def setXPosRole(self, role: str, /) -> None: ... method setXPosRolePattern (line 1173) | def setXPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setXPosRoleReplace (line 1174) | def setXPosRoleReplace(self, replace: str, /) -> None: ... method setYPosRole (line 1175) | def setYPosRole(self, role: str, /) -> None: ... method setYPosRolePattern (line 1176) | def setYPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setYPosRoleReplace (line 1177) | def setYPosRoleReplace(self, replace: str, /) -> None: ... method setZPosRole (line 1178) | def setZPosRole(self, role: str, /) -> None: ... method setZPosRolePattern (line 1179) | def setZPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setZPosRoleReplace (line 1180) | def setZPosRoleReplace(self, replace: str, /) -> None: ... method xPosRole (line 1181) | def xPosRole(self, /) -> str: ... method xPosRolePattern (line 1182) | def xPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method xPosRoleReplace (line 1183) | def xPosRoleReplace(self, /) -> str: ... method yPosRole (line 1184) | def yPosRole(self, /) -> str: ... method yPosRolePattern (line 1185) | def yPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method yPosRoleReplace (line 1186) | def yPosRoleReplace(self, /) -> str: ... method zPosRole (line 1187) | def zPosRole(self, /) -> str: ... method zPosRolePattern (line 1188) | def zPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method zPosRoleReplace (line 1189) | def zPosRoleReplace(self, /) -> str: ... class QItemModelSurfaceDataProxy (line 1191) | class QItemModelSurfaceDataProxy(QSurfaceDataProxy): class MultiMatchBehavior (line 1192) | class MultiMatchBehavior(enum.Enum): method __init__ (line 1221) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, yPosR... method __init__ (line 1223) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1225) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1227) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1229) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, rowRo... method __init__ (line 1231) | def __init__(self, itemModel: PySide6.QtCore.QAbstractItemModel, /, pa... method __init__ (line 1233) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoColumnCategories (line 1234) | def autoColumnCategories(self, /) -> bool: ... method autoRowCategories (line 1235) | def autoRowCategories(self, /) -> bool: ... method columnCategories (line 1236) | def columnCategories(self, /) -> List[str]: ... method columnCategoryIndex (line 1237) | def columnCategoryIndex(self, category: str, /) -> int: ... method columnRole (line 1238) | def columnRole(self, /) -> str: ... method columnRolePattern (line 1239) | def columnRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method columnRoleReplace (line 1240) | def columnRoleReplace(self, /) -> str: ... method itemModel (line 1241) | def itemModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method multiMatchBehavior (line 1242) | def multiMatchBehavior(self, /) -> QItemModelSurfaceDataProxy.MultiMat... method remap (line 1243) | def remap(self, rowRole: str, columnRole: str, xPosRole: str, yPosRole... method rowCategories (line 1244) | def rowCategories(self, /) -> List[str]: ... method rowCategoryIndex (line 1245) | def rowCategoryIndex(self, category: str, /) -> int: ... method rowRole (line 1246) | def rowRole(self, /) -> str: ... method rowRolePattern (line 1247) | def rowRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method rowRoleReplace (line 1248) | def rowRoleReplace(self, /) -> str: ... method setAutoColumnCategories (line 1249) | def setAutoColumnCategories(self, enable: bool, /) -> None: ... method setAutoRowCategories (line 1250) | def setAutoRowCategories(self, enable: bool, /) -> None: ... method setColumnCategories (line 1251) | def setColumnCategories(self, categories: typing.Iterable[str], /) -> ... method setColumnRole (line 1252) | def setColumnRole(self, role: str, /) -> None: ... method setColumnRolePattern (line 1253) | def setColumnRolePattern(self, pattern: PySide6.QtCore.QRegularExpress... method setColumnRoleReplace (line 1254) | def setColumnRoleReplace(self, replace: str, /) -> None: ... method setItemModel (line 1255) | def setItemModel(self, itemModel: PySide6.QtCore.QAbstractItemModel, /... method setMultiMatchBehavior (line 1256) | def setMultiMatchBehavior(self, behavior: QItemModelSurfaceDataProxy.M... method setRowCategories (line 1257) | def setRowCategories(self, categories: typing.Iterable[str], /) -> Non... method setRowRole (line 1258) | def setRowRole(self, role: str, /) -> None: ... method setRowRolePattern (line 1259) | def setRowRolePattern(self, pattern: PySide6.QtCore.QRegularExpression... method setRowRoleReplace (line 1260) | def setRowRoleReplace(self, replace: str, /) -> None: ... method setUseModelCategories (line 1261) | def setUseModelCategories(self, enable: bool, /) -> None: ... method setXPosRole (line 1262) | def setXPosRole(self, role: str, /) -> None: ... method setXPosRolePattern (line 1263) | def setXPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setXPosRoleReplace (line 1264) | def setXPosRoleReplace(self, replace: str, /) -> None: ... method setYPosRole (line 1265) | def setYPosRole(self, role: str, /) -> None: ... method setYPosRolePattern (line 1266) | def setYPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setYPosRoleReplace (line 1267) | def setYPosRoleReplace(self, replace: str, /) -> None: ... method setZPosRole (line 1268) | def setZPosRole(self, role: str, /) -> None: ... method setZPosRolePattern (line 1269) | def setZPosRolePattern(self, pattern: PySide6.QtCore.QRegularExpressio... method setZPosRoleReplace (line 1270) | def setZPosRoleReplace(self, replace: str, /) -> None: ... method useModelCategories (line 1271) | def useModelCategories(self, /) -> bool: ... method xPosRole (line 1272) | def xPosRole(self, /) -> str: ... method xPosRolePattern (line 1273) | def xPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method xPosRoleReplace (line 1274) | def xPosRoleReplace(self, /) -> str: ... method yPosRole (line 1275) | def yPosRole(self, /) -> str: ... method yPosRolePattern (line 1276) | def yPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method yPosRoleReplace (line 1277) | def yPosRoleReplace(self, /) -> str: ... method zPosRole (line 1278) | def zPosRole(self, /) -> str: ... method zPosRolePattern (line 1279) | def zPosRolePattern(self, /) -> PySide6.QtCore.QRegularExpression: ... method zPosRoleReplace (line 1280) | def zPosRoleReplace(self, /) -> str: ... class QLegendData (line 1282) | class QLegendData(shiboken6.Object): method __init__ (line 1287) | def __init__(self, QLegendData: QLegendData, /) -> None: ... method __init__ (line 1289) | def __init__(self, /) -> None: ... method __copy__ (line 1290) | def __copy__(self, /) -> typing_extensions.Self: ... class QLineSeries (line 1292) | class QLineSeries(QXYSeries): method __init__ (line 1296) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method capStyle (line 1297) | def capStyle(self, /) -> PySide6.QtCore.Qt.PenCapStyle: ... method componentComplete (line 1298) | def componentComplete(self, /) -> None: ... method dataPointCoordinatesAt (line 1299) | def dataPointCoordinatesAt(self, x: float, y: float, /) -> PySide6.QtC... method setCapStyle (line 1300) | def setCapStyle(self, newCapStyle: PySide6.QtCore.Qt.PenCapStyle, /) -... method setWidth (line 1301) | def setWidth(self, newWidth: float, /) -> None: ... method type (line 1302) | def type(self, /) -> QAbstractSeries.SeriesType: ... method width (line 1303) | def width(self, /) -> float: ... class QLogValue3DAxisFormatter (line 1305) | class QLogValue3DAxisFormatter(QValue3DAxisFormatter): method __init__ (line 1310) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoSubGrid (line 1311) | def autoSubGrid(self, /) -> bool: ... method base (line 1312) | def base(self, /) -> float: ... method createNewInstance (line 1313) | def createNewInstance(self, /) -> QValue3DAxisFormatter: ... method edgeLabelsVisible (line 1314) | def edgeLabelsVisible(self, /) -> bool: ... method populateCopy (line 1315) | def populateCopy(self, copy: QValue3DAxisFormatter, /) -> None: ... method positionAt (line 1316) | def positionAt(self, value: float, /) -> float: ... method recalculate (line 1317) | def recalculate(self, /) -> None: ... method setAutoSubGrid (line 1318) | def setAutoSubGrid(self, enabled: bool, /) -> None: ... method setBase (line 1319) | def setBase(self, base: float, /) -> None: ... method setEdgeLabelsVisible (line 1320) | def setEdgeLabelsVisible(self, enabled: bool, /) -> None: ... method valueAt (line 1321) | def valueAt(self, position: float, /) -> float: ... class QPieModelMapper (line 1323) | class QPieModelMapper(PySide6.QtCore.QObject): method __init__ (line 1332) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method count (line 1333) | def count(self, /) -> int: ... method first (line 1334) | def first(self, /) -> int: ... method labelsSection (line 1335) | def labelsSection(self, /) -> int: ... method model (line 1336) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method onSliceLabelChanged (line 1337) | def onSliceLabelChanged(self, /) -> None: ... method onSliceValueChanged (line 1338) | def onSliceValueChanged(self, /) -> None: ... method orientation (line 1339) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 1340) | def series(self, /) -> QPieSeries: ... method setCount (line 1341) | def setCount(self, count: int, /) -> None: ... method setFirst (line 1342) | def setFirst(self, first: int, /) -> None: ... method setLabelsSection (line 1343) | def setLabelsSection(self, labelsSection: int, /) -> None: ... method setModel (line 1344) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 1345) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 1346) | def setSeries(self, series: QPieSeries, /) -> None: ... method setValuesSection (line 1347) | def setValuesSection(self, valuesSection: int, /) -> None: ... method valuesSection (line 1348) | def valuesSection(self, /) -> int: ... class QPieSeries (line 1350) | class QPieSeries(QAbstractSeries): class LabelVisibility (line 1351) | class LabelVisibility(enum.Enum): method __init__ (line 1374) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method angleSpanLabelVisibility (line 1375) | def angleSpanLabelVisibility(self, /) -> QPieSeries.LabelVisibility: ... method angleSpanVisibleLimit (line 1376) | def angleSpanVisibleLimit(self, /) -> float: ... method append (line 1378) | def append(self, label: str, value: float, /) -> QPieSlice: ... method append (line 1380) | def append(self, slices: typing.Iterable[QPieSlice], /) -> bool: ... method append (line 1382) | def append(self, slice: QPieSlice, /) -> bool: ... method at (line 1383) | def at(self, index: int, /) -> QPieSlice: ... method clear (line 1384) | def clear(self, /) -> None: ... method componentComplete (line 1385) | def componentComplete(self, /) -> None: ... method count (line 1386) | def count(self, /) -> int: ... method endAngle (line 1387) | def endAngle(self, /) -> float: ... method find (line 1388) | def find(self, label: str, /) -> QPieSlice: ... method handleSliceChange (line 1389) | def handleSliceChange(self, /) -> None: ... method holeSize (line 1390) | def holeSize(self, /) -> float: ... method horizontalPosition (line 1391) | def horizontalPosition(self, /) -> float: ... method insert (line 1392) | def insert(self, index: int, slice: QPieSlice, /) -> bool: ... method isEmpty (line 1393) | def isEmpty(self, /) -> bool: ... method pieSize (line 1394) | def pieSize(self, /) -> float: ... method remove (line 1396) | def remove(self, slice: QPieSlice, /) -> bool: ... method remove (line 1398) | def remove(self, index: int, /) -> bool: ... method removeMultiple (line 1399) | def removeMultiple(self, index: int, count: int, /) -> None: ... method replace (line 1401) | def replace(self, oldSlice: QPieSlice, newSlice: QPieSlice, /) -> bool... method replace (line 1403) | def replace(self, index: int, slice: QPieSlice, /) -> bool: ... method replace (line 1405) | def replace(self, slices: typing.Iterable[QPieSlice], /) -> bool: ... method setAngleSpanLabelVisibility (line 1406) | def setAngleSpanLabelVisibility(self, newAngleSpanVisibleMode: QPieSer... method setAngleSpanVisibleLimit (line 1407) | def setAngleSpanVisibleLimit(self, newAngleSpanVisibleLimit: float, /)... method setEndAngle (line 1408) | def setEndAngle(self, endAngle: float, /) -> None: ... method setHoleSize (line 1409) | def setHoleSize(self, holeSize: float, /) -> None: ... method setHorizontalPosition (line 1410) | def setHorizontalPosition(self, relativePosition: float, /) -> None: ... method setLabelsPosition (line 1411) | def setLabelsPosition(self, position: QPieSlice.LabelPosition, /) -> N... method setLabelsVisible (line 1412) | def setLabelsVisible(self, visible: bool, /) -> None: ... method setPieSize (line 1413) | def setPieSize(self, relativeSize: float, /) -> None: ... method setStartAngle (line 1414) | def setStartAngle(self, startAngle: float, /) -> None: ... method setVerticalPosition (line 1415) | def setVerticalPosition(self, relativePosition: float, /) -> None: ... method slices (line 1416) | def slices(self, /) -> List[QPieSlice]: ... method startAngle (line 1417) | def startAngle(self, /) -> float: ... method sum (line 1418) | def sum(self, /) -> float: ... method take (line 1419) | def take(self, slice: QPieSlice, /) -> bool: ... method type (line 1420) | def type(self, /) -> QAbstractSeries.SeriesType: ... method verticalPosition (line 1421) | def verticalPosition(self, /) -> float: ... method __lshift__ (line 1422) | def __lshift__(self, slice: QPieSlice, /) -> QPieSeries: ... method __rlshift__ (line 1423) | def __rlshift__(self, other): ... class QPieSlice (line 1425) | class QPieSlice(PySide6.QtCore.QObject): class LabelPosition (line 1426) | class LabelPosition(enum.Enum): method __init__ (line 1449) | def __init__(self, label: str, value: float, /, parent: PySide6.QtCore... method __init__ (line 1451) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method angleSpan (line 1452) | def angleSpan(self, /) -> float: ... method borderColor (line 1453) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method borderWidth (line 1454) | def borderWidth(self, /) -> float: ... method color (line 1455) | def color(self, /) -> PySide6.QtGui.QColor: ... method explodeDistanceFactor (line 1456) | def explodeDistanceFactor(self, /) -> float: ... method isExploded (line 1457) | def isExploded(self, /) -> bool: ... method isLabelVisible (line 1458) | def isLabelVisible(self, /) -> bool: ... method label (line 1459) | def label(self, /) -> str: ... method labelArmLengthFactor (line 1460) | def labelArmLengthFactor(self, /) -> float: ... method labelColor (line 1461) | def labelColor(self, /) -> PySide6.QtGui.QColor: ... method labelFont (line 1462) | def labelFont(self, /) -> PySide6.QtGui.QFont: ... method labelPosition (line 1463) | def labelPosition(self, /) -> QPieSlice.LabelPosition: ... method percentage (line 1464) | def percentage(self, /) -> float: ... method series (line 1465) | def series(self, /) -> QPieSeries: ... method setBorderColor (line 1466) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setBorderWidth (line 1467) | def setBorderWidth(self, borderWidth: float, /) -> None: ... method setColor (line 1468) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setExplodeDistanceFactor (line 1469) | def setExplodeDistanceFactor(self, factor: float, /) -> None: ... method setExploded (line 1470) | def setExploded(self, exploded: bool, /) -> None: ... method setLabel (line 1471) | def setLabel(self, label: str, /) -> None: ... method setLabelArmLengthFactor (line 1472) | def setLabelArmLengthFactor(self, factor: float, /) -> None: ... method setLabelColor (line 1473) | def setLabelColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setLabelFont (line 1474) | def setLabelFont(self, font: PySide6.QtGui.QFont | str | typing.Iterab... method setLabelPosition (line 1475) | def setLabelPosition(self, position: QPieSlice.LabelPosition, /) -> No... method setLabelVisible (line 1476) | def setLabelVisible(self, /, visible: bool = ...) -> None: ... method setValue (line 1477) | def setValue(self, value: float, /) -> None: ... method startAngle (line 1478) | def startAngle(self, /) -> float: ... method value (line 1479) | def value(self, /) -> float: ... class QPointFList (line 1481) | class QPointFList: method __init__ (line 1483) | def __init__(self, *args, **kwargs) -> None: ... method append (line 1484) | def append(self, *args, **kwargs): ... method capacity (line 1485) | def capacity(self, *args, **kwargs): ... method clear (line 1486) | def clear(self, *args, **kwargs): ... method constData (line 1487) | def constData(self, *args, **kwargs): ... method data (line 1488) | def data(self, *args, **kwargs): ... method pop_back (line 1489) | def pop_back(self, *args, **kwargs): ... method pop_front (line 1490) | def pop_front(self, *args, **kwargs): ... method prepend (line 1491) | def prepend(self, *args, **kwargs): ... method push_back (line 1492) | def push_back(self, *args, **kwargs): ... method push_front (line 1493) | def push_front(self, *args, **kwargs): ... method removeFirst (line 1494) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 1495) | def removeLast(self, *args, **kwargs): ... method reserve (line 1496) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 1497) | def __delitem__(self, other) -> None: ... method __getitem__ (line 1498) | def __getitem__(self, index): ... method __len__ (line 1499) | def __len__(self) -> int: ... method __setitem__ (line 1500) | def __setitem__(self, index, object) -> None: ... class QScatter3DSeries (line 1502) | class QScatter3DSeries(QAbstract3DSeries): method __init__ (line 1510) | def __init__(self, dataProxy: QScatterDataProxy, /, parent: PySide6.Qt... method __init__ (line 1512) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method clearArray (line 1513) | def clearArray(self, /) -> None: ... method clearScaleArray (line 1514) | def clearScaleArray(self, /) -> None: ... method dataArray (line 1515) | def dataArray(self, /) -> List[QScatterDataItem]: ... method dataProxy (line 1516) | def dataProxy(self, /) -> QScatterDataProxy: ... method invalidSelectionIndex (line 1518) | def invalidSelectionIndex() -> int: ... method itemSize (line 1519) | def itemSize(self, /) -> float: ... method scaleArray (line 1520) | def scaleArray(self, /) -> List[PySide6.QtGui.QVector3D]: ... method selectedItem (line 1521) | def selectedItem(self, /) -> int: ... method setDataArray (line 1522) | def setDataArray(self, newDataArray: typing.Iterable[QScatterDataItem]... method setDataProxy (line 1523) | def setDataProxy(self, proxy: QScatterDataProxy, /) -> None: ... method setItemSize (line 1524) | def setItemSize(self, size: float, /) -> None: ... method setScaleArray (line 1525) | def setScaleArray(self, newScaleArray: typing.Iterable[PySide6.QtGui.Q... method setSelectedItem (line 1526) | def setSelectedItem(self, index: int, /) -> None: ... class QScatterDataItem (line 1528) | class QScatterDataItem(shiboken6.Object): method __init__ (line 1530) | def __init__(self, x: float, y: float, z: float, /) -> None: ... method __init__ (line 1532) | def __init__(self, position: PySide6.QtGui.QVector3D, rotation: PySide... method __init__ (line 1534) | def __init__(self, position: PySide6.QtGui.QVector3D, /) -> None: ... method __init__ (line 1536) | def __init__(self, QScatterDataItem: QScatterDataItem, /) -> None: ... method __init__ (line 1538) | def __init__(self, /) -> None: ... method position (line 1539) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method rotation (line 1540) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method setPosition (line 1541) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setRotation (line 1542) | def setRotation(self, rot: PySide6.QtGui.QQuaternion, /) -> None: ... method setX (line 1543) | def setX(self, value: float, /) -> None: ... method setY (line 1544) | def setY(self, value: float, /) -> None: ... method setZ (line 1545) | def setZ(self, value: float, /) -> None: ... method x (line 1546) | def x(self, /) -> float: ... method y (line 1547) | def y(self, /) -> float: ... method z (line 1548) | def z(self, /) -> float: ... method __copy__ (line 1549) | def __copy__(self, /) -> typing_extensions.Self: ... class QScatterDataProxy (line 1551) | class QScatterDataProxy(QAbstractDataProxy): method __init__ (line 1561) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addItem (line 1562) | def addItem(self, item: QScatterDataItem, /) -> int: ... method addItems (line 1563) | def addItems(self, items: typing.Iterable[QScatterDataItem], /) -> int... method insertItem (line 1564) | def insertItem(self, index: int, item: QScatterDataItem, /) -> None: ... method insertItems (line 1565) | def insertItems(self, index: int, items: typing.Iterable[QScatterDataI... method itemAt (line 1566) | def itemAt(self, index: int, /) -> QScatterDataItem: ... method itemCount (line 1567) | def itemCount(self, /) -> int: ... method removeItems (line 1568) | def removeItems(self, index: int, removeCount: int, /) -> None: ... method resetArray (line 1570) | def resetArray(self, newArray: typing.Iterable[QScatterDataItem], /) -... method resetArray (line 1572) | def resetArray(self, /) -> None: ... method resetScaleArray (line 1573) | def resetScaleArray(self, newArray: typing.Iterable[PySide6.QtGui.QVec... method scaleAt (line 1574) | def scaleAt(self, index: int, /) -> PySide6.QtGui.QVector3D: ... method series (line 1575) | def series(self, /) -> QScatter3DSeries: ... method setItem (line 1576) | def setItem(self, index: int, item: QScatterDataItem, /) -> None: ... method setItems (line 1577) | def setItems(self, index: int, items: typing.Iterable[QScatterDataItem... class QScatterSeries (line 1579) | class QScatterSeries(QXYSeries): method __init__ (line 1581) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., axi... method componentComplete (line 1582) | def componentComplete(self, /) -> None: ... method type (line 1583) | def type(self, /) -> QAbstractSeries.SeriesType: ... class QSpline3DSeries (line 1585) | class QSpline3DSeries(QScatter3DSeries): method __init__ (line 1594) | def __init__(self, dataProxy: QScatterDataProxy, /, parent: PySide6.Qt... method __init__ (line 1596) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method isSplineLooping (line 1597) | def isSplineLooping(self, /) -> bool: ... method isSplineVisible (line 1598) | def isSplineVisible(self, /) -> bool: ... method setSplineColor (line 1599) | def setSplineColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setSplineKnotting (line 1600) | def setSplineKnotting(self, knotting: float, /) -> None: ... method setSplineLooping (line 1601) | def setSplineLooping(self, looping: bool, /) -> None: ... method setSplineResolution (line 1602) | def setSplineResolution(self, resolution: int, /) -> None: ... method setSplineTension (line 1603) | def setSplineTension(self, tension: float, /) -> None: ... method setSplineVisible (line 1604) | def setSplineVisible(self, draw: bool, /) -> None: ... method splineColor (line 1605) | def splineColor(self, /) -> PySide6.QtGui.QColor: ... method splineKnotting (line 1606) | def splineKnotting(self, /) -> float: ... method splineResolution (line 1607) | def splineResolution(self, /) -> int: ... method splineTension (line 1608) | def splineTension(self, /) -> float: ... class QSplineSeries (line 1610) | class QSplineSeries(QXYSeries): method __init__ (line 1614) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method capStyle (line 1615) | def capStyle(self, /) -> PySide6.QtCore.Qt.PenCapStyle: ... method componentComplete (line 1616) | def componentComplete(self, /) -> None: ... method getControlPoints (line 1617) | def getControlPoints(self, /) -> List[PySide6.QtCore.QPointF]: ... method setCapStyle (line 1618) | def setCapStyle(self, newCapStyle: PySide6.QtCore.Qt.PenCapStyle, /) -... method setWidth (line 1619) | def setWidth(self, newWidth: float, /) -> None: ... method type (line 1620) | def type(self, /) -> QAbstractSeries.SeriesType: ... method width (line 1621) | def width(self, /) -> float: ... class QSurface3DSeries (line 1623) | class QSurface3DSeries(QAbstract3DSeries): class DrawFlag (line 1624) | class DrawFlag(enum.Flag): class Shading (line 1630) | class Shading(enum.Enum): method __init__ (line 1644) | def __init__(self, dataProxy: QSurfaceDataProxy, /, parent: PySide6.Qt... method __init__ (line 1646) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method clearArray (line 1647) | def clearArray(self, /) -> None: ... method clearRow (line 1648) | def clearRow(self, rowIndex: int, /) -> None: ... method dataArray (line 1649) | def dataArray(self, /) -> List[List[QSurfaceDataItem]]: ... method dataProxy (line 1650) | def dataProxy(self, /) -> QSurfaceDataProxy: ... method drawMode (line 1651) | def drawMode(self, /) -> QSurface3DSeries.DrawFlag: ... method invalidSelectionPosition (line 1653) | def invalidSelectionPosition() -> PySide6.QtCore.QPoint: ... method isFlatShadingSupported (line 1654) | def isFlatShadingSupported(self, /) -> bool: ... method selectedPoint (line 1655) | def selectedPoint(self, /) -> PySide6.QtCore.QPoint: ... method setDataArray (line 1656) | def setDataArray(self, newDataArray: typing.Iterable[typing.Iterable[Q... method setDataProxy (line 1657) | def setDataProxy(self, proxy: QSurfaceDataProxy, /) -> None: ... method setDrawMode (line 1658) | def setDrawMode(self, mode: QSurface3DSeries.DrawFlag, /) -> None: ... method setSelectedPoint (line 1659) | def setSelectedPoint(self, position: PySide6.QtCore.QPoint, /) -> None... method setShading (line 1660) | def setShading(self, shading: QSurface3DSeries.Shading, /) -> None: ... method setTexture (line 1661) | def setTexture(self, texture: PySide6.QtGui.QImage, /) -> None: ... method setTextureFile (line 1662) | def setTextureFile(self, filename: str, /) -> None: ... method setWireframeColor (line 1663) | def setWireframeColor(self, color: Union[PySide6.QtGui.QColor, str, Py... method shading (line 1664) | def shading(self, /) -> QSurface3DSeries.Shading: ... method texture (line 1665) | def texture(self, /) -> PySide6.QtGui.QImage: ... method textureFile (line 1666) | def textureFile(self, /) -> str: ... method wireframeColor (line 1667) | def wireframeColor(self, /) -> PySide6.QtGui.QColor: ... class QSurfaceDataItem (line 1669) | class QSurfaceDataItem(shiboken6.Object): method __init__ (line 1671) | def __init__(self, x: float, y: float, z: float, /) -> None: ... method __init__ (line 1673) | def __init__(self, position: PySide6.QtGui.QVector3D, /) -> None: ... method __init__ (line 1675) | def __init__(self, QSurfaceDataItem: QSurfaceDataItem, /) -> None: ... method __init__ (line 1677) | def __init__(self, /) -> None: ... method position (line 1678) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method setPosition (line 1679) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setX (line 1680) | def setX(self, value: float, /) -> None: ... method setY (line 1681) | def setY(self, value: float, /) -> None: ... method setZ (line 1682) | def setZ(self, value: float, /) -> None: ... method x (line 1683) | def x(self, /) -> float: ... method y (line 1684) | def y(self, /) -> float: ... method z (line 1685) | def z(self, /) -> float: ... method __copy__ (line 1686) | def __copy__(self, /) -> typing_extensions.Self: ... class QSurfaceDataProxy (line 1688) | class QSurfaceDataProxy(QAbstractDataProxy): method __init__ (line 1699) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addRow (line 1700) | def addRow(self, row: typing.Iterable[QSurfaceDataItem], /) -> int: ... method addRows (line 1701) | def addRows(self, rows: typing.Iterable[typing.Iterable[QSurfaceDataIt... method columnCount (line 1702) | def columnCount(self, /) -> int: ... method insertRow (line 1703) | def insertRow(self, rowIndex: int, row: typing.Iterable[QSurfaceDataIt... method insertRows (line 1704) | def insertRows(self, rowIndex: int, rows: typing.Iterable[typing.Itera... method itemAt (line 1706) | def itemAt(self, rowIndex: int, columnIndex: int, /) -> QSurfaceDataIt... method itemAt (line 1708) | def itemAt(self, position: PySide6.QtCore.QPoint, /) -> QSurfaceDataIt... method removeRows (line 1709) | def removeRows(self, rowIndex: int, removeCount: int, /) -> None: ... method resetArray (line 1711) | def resetArray(self, newArray: typing.Iterable[typing.Iterable[QSurfac... method resetArray (line 1713) | def resetArray(self, /) -> None: ... method resetArrayNp (line 1714) | def resetArrayNp(self, x: float, deltaX: float, z: float, deltaZ: floa... method rowCount (line 1715) | def rowCount(self, /) -> int: ... method series (line 1716) | def series(self, /) -> QSurface3DSeries: ... method setItem (line 1718) | def setItem(self, rowIndex: int, columnIndex: int, item: QSurfaceDataI... method setItem (line 1720) | def setItem(self, position: PySide6.QtCore.QPoint, item: QSurfaceDataI... method setRow (line 1721) | def setRow(self, rowIndex: int, row: typing.Iterable[QSurfaceDataItem]... method setRows (line 1722) | def setRows(self, rowIndex: int, rows: typing.Iterable[typing.Iterable... class QValue3DAxis (line 1724) | class QValue3DAxis(QAbstract3DAxis): method __init__ (line 1732) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method formatter (line 1733) | def formatter(self, /) -> QValue3DAxisFormatter: ... method gridPositionAt (line 1734) | def gridPositionAt(self, gridLine: int, /) -> float: ... method gridSize (line 1735) | def gridSize(self, /) -> int: ... method labelFormat (line 1736) | def labelFormat(self, /) -> str: ... method labelPositionAt (line 1737) | def labelPositionAt(self, index: int, /) -> float: ... method positionAt (line 1738) | def positionAt(self, x: float, /) -> float: ... method recalculate (line 1739) | def recalculate(self, /) -> None: ... method reversed (line 1740) | def reversed(self, /) -> bool: ... method segmentCount (line 1741) | def segmentCount(self, /) -> int: ... method setFormatter (line 1742) | def setFormatter(self, formatter: QValue3DAxisFormatter, /) -> None: ... method setLabelFormat (line 1743) | def setLabelFormat(self, format: str, /) -> None: ... method setReversed (line 1744) | def setReversed(self, enable: bool, /) -> None: ... method setSegmentCount (line 1745) | def setSegmentCount(self, count: int, /) -> None: ... method setSubSegmentCount (line 1746) | def setSubSegmentCount(self, count: int, /) -> None: ... method stringForValue (line 1747) | def stringForValue(self, x: float, /) -> str: ... method subGridPositionAt (line 1748) | def subGridPositionAt(self, gridLine: int, /) -> float: ... method subGridSize (line 1749) | def subGridSize(self, /) -> int: ... method subSegmentCount (line 1750) | def subSegmentCount(self, /) -> int: ... class QValue3DAxisFormatter (line 1752) | class QValue3DAxisFormatter(PySide6.QtCore.QObject): method __init__ (line 1754) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method allowNegatives (line 1755) | def allowNegatives(self, /) -> bool: ... method allowZero (line 1756) | def allowZero(self, /) -> bool: ... method axis (line 1757) | def axis(self, /) -> QValue3DAxis: ... method createNewInstance (line 1758) | def createNewInstance(self, /) -> QValue3DAxisFormatter: ... method gridPositions (line 1759) | def gridPositions(self, /) -> List[float]: ... method labelPositions (line 1760) | def labelPositions(self, /) -> List[float]: ... method labelStrings (line 1761) | def labelStrings(self, /) -> List[str]: ... method locale (line 1762) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method markDirty (line 1763) | def markDirty(self, /, labelsChange: bool = ...) -> None: ... method populateCopy (line 1764) | def populateCopy(self, copy: QValue3DAxisFormatter, /) -> None: ... method positionAt (line 1765) | def positionAt(self, value: float, /) -> float: ... method recalculate (line 1766) | def recalculate(self, /) -> None: ... method setAllowNegatives (line 1767) | def setAllowNegatives(self, allow: bool, /) -> None: ... method setAllowZero (line 1768) | def setAllowZero(self, allow: bool, /) -> None: ... method setAxis (line 1769) | def setAxis(self, axis: QValue3DAxis, /) -> None: ... method setGridPoitions (line 1770) | def setGridPoitions(self, gridPositions: typing.Iterable[float], /) ->... method setLabelStrings (line 1771) | def setLabelStrings(self, labelStrings: typing.Iterable[str], /) -> No... method setLocale (line 1772) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setSubGridPositions (line 1773) | def setSubGridPositions(self, subGridPositions: typing.Iterable[float]... method setlabelPositions (line 1774) | def setlabelPositions(self, labelPositions: typing.Iterable[float], /)... method stringForValue (line 1775) | def stringForValue(self, value: float, format: str, /) -> str: ... method subGridPositions (line 1776) | def subGridPositions(self, /) -> List[float]: ... method valueAt (line 1777) | def valueAt(self, position: float, /) -> float: ... class QValueAxis (line 1779) | class QValueAxis(QAbstractAxis): method __init__ (line 1791) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method labelDecimals (line 1792) | def labelDecimals(self, /) -> int: ... method labelFormat (line 1793) | def labelFormat(self, /) -> str: ... method max (line 1794) | def max(self, /) -> float: ... method min (line 1795) | def min(self, /) -> float: ... method pan (line 1796) | def pan(self, /) -> float: ... method setLabelDecimals (line 1797) | def setLabelDecimals(self, decimals: int, /) -> None: ... method setLabelFormat (line 1798) | def setLabelFormat(self, format: str, /) -> None: ... method setMax (line 1799) | def setMax(self, max: float, /) -> None: ... method setMin (line 1800) | def setMin(self, min: float, /) -> None: ... method setPan (line 1801) | def setPan(self, pan: float, /) -> None: ... method setRange (line 1802) | def setRange(self, min: float, max: float, /) -> None: ... method setSubTickCount (line 1803) | def setSubTickCount(self, count: int, /) -> None: ... method setTickAnchor (line 1804) | def setTickAnchor(self, anchor: float, /) -> None: ... method setTickInterval (line 1805) | def setTickInterval(self, interval: float, /) -> None: ... method setZoom (line 1806) | def setZoom(self, zoom: float, /) -> None: ... method subTickCount (line 1807) | def subTickCount(self, /) -> int: ... method tickAnchor (line 1808) | def tickAnchor(self, /) -> float: ... method tickInterval (line 1809) | def tickInterval(self, /) -> float: ... method type (line 1810) | def type(self, /) -> QAbstractAxis.AxisType: ... method zoom (line 1811) | def zoom(self, /) -> float: ... class QVector3DList (line 1813) | class QVector3DList: method __init__ (line 1815) | def __init__(self, *args, **kwargs) -> None: ... method append (line 1816) | def append(self, *args, **kwargs): ... method capacity (line 1817) | def capacity(self, *args, **kwargs): ... method clear (line 1818) | def clear(self, *args, **kwargs): ... method constData (line 1819) | def constData(self, *args, **kwargs): ... method data (line 1820) | def data(self, *args, **kwargs): ... method pop_back (line 1821) | def pop_back(self, *args, **kwargs): ... method pop_front (line 1822) | def pop_front(self, *args, **kwargs): ... method prepend (line 1823) | def prepend(self, *args, **kwargs): ... method push_back (line 1824) | def push_back(self, *args, **kwargs): ... method push_front (line 1825) | def push_front(self, *args, **kwargs): ... method removeFirst (line 1826) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 1827) | def removeLast(self, *args, **kwargs): ... method reserve (line 1828) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 1829) | def __delitem__(self, other) -> None: ... method __getitem__ (line 1830) | def __getitem__(self, index): ... method __len__ (line 1831) | def __len__(self) -> int: ... method __setitem__ (line 1832) | def __setitem__(self, index, object) -> None: ... class QXYModelMapper (line 1834) | class QXYModelMapper(PySide6.QtCore.QObject): method __init__ (line 1843) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method count (line 1844) | def count(self, /) -> int: ... method first (line 1845) | def first(self, /) -> int: ... method model (line 1846) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 1847) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method series (line 1848) | def series(self, /) -> QXYSeries: ... method setCount (line 1849) | def setCount(self, count: int, /) -> None: ... method setFirst (line 1850) | def setFirst(self, first: int, /) -> None: ... method setModel (line 1851) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 1852) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSeries (line 1853) | def setSeries(self, series: QXYSeries, /) -> None: ... method setXSection (line 1854) | def setXSection(self, xSection: int, /) -> None: ... method setYSection (line 1855) | def setYSection(self, ySection: int, /) -> None: ... method xSection (line 1856) | def xSection(self, /) -> int: ... method ySection (line 1857) | def ySection(self, /) -> int: ... class QXYSeries (line 1859) | class QXYSeries(QAbstractSeries): method __init__ (line 1878) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method append (line 1880) | def append(self, x: float, y: float, /) -> None: ... method append (line 1882) | def append(self, points: typing.Iterable[PySide6.QtCore.QPointF], /) -... method append (line 1884) | def append(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method appendNp (line 1885) | def appendNp(self, x: typing.Iterable[typing.Any], y: typing.Iterable[... method at (line 1886) | def at(self, index: int, /) -> PySide6.QtCore.QPointF: ... method clear (line 1887) | def clear(self, /) -> None: ... method color (line 1888) | def color(self, /) -> PySide6.QtGui.QColor: ... method count (line 1889) | def count(self, /) -> int: ... method deselectAllPoints (line 1890) | def deselectAllPoints(self, /) -> None: ... method deselectPoint (line 1891) | def deselectPoint(self, index: int, /) -> None: ... method deselectPoints (line 1892) | def deselectPoints(self, indexes: typing.Iterable[int], /) -> None: ... method find (line 1893) | def find(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method insert (line 1894) | def insert(self, index: int, point: PySide6.QtCore.QPointF | PySide6.Q... method isDraggable (line 1895) | def isDraggable(self, /) -> bool: ... method isPointSelected (line 1896) | def isPointSelected(self, index: int, /) -> bool: ... method pointDelegate (line 1897) | def pointDelegate(self, /) -> PySide6.QtQml.QQmlComponent: ... method points (line 1898) | def points(self, /) -> List[PySide6.QtCore.QPointF]: ... method qt_qmlMarker_uncreatable (line 1899) | def qt_qmlMarker_uncreatable(self, /) -> None: ... method remove (line 1901) | def remove(self, x: float, y: float, /) -> None: ... method remove (line 1903) | def remove(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method remove (line 1905) | def remove(self, index: int, /) -> None: ... method removeMultiple (line 1906) | def removeMultiple(self, index: int, count: int, /) -> None: ... method replace (line 1908) | def replace(self, oldX: float, oldY: float, newX: float, newY: float, ... method replace (line 1910) | def replace(self, index: int, newX: float, newY: float, /) -> None: ... method replace (line 1912) | def replace(self, oldPoint: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method replace (line 1914) | def replace(self, index: int, newPoint: PySide6.QtCore.QPointF | PySid... method replace (line 1916) | def replace(self, points: typing.Iterable[PySide6.QtCore.QPointF], /) ... method replaceNp (line 1917) | def replaceNp(self, x: typing.Iterable[typing.Any], y: typing.Iterable... method selectAllPoints (line 1918) | def selectAllPoints(self, /) -> None: ... method selectPoint (line 1919) | def selectPoint(self, index: int, /) -> None: ... method selectPoints (line 1920) | def selectPoints(self, indexes: typing.Iterable[int], /) -> None: ... method selectedColor (line 1921) | def selectedColor(self, /) -> PySide6.QtGui.QColor: ... method selectedPoints (line 1922) | def selectedPoints(self, /) -> List[int]: ... method setColor (line 1923) | def setColor(self, newColor: Union[PySide6.QtGui.QColor, str, PySide6.... method setDraggable (line 1924) | def setDraggable(self, newDraggable: bool, /) -> None: ... method setPointDelegate (line 1925) | def setPointDelegate(self, newPointDelegate: PySide6.QtQml.QQmlCompone... method setPointSelected (line 1926) | def setPointSelected(self, index: int, selected: bool, /) -> None: ... method setSelectedColor (line 1927) | def setSelectedColor(self, color: Union[PySide6.QtGui.QColor, str, PyS... method take (line 1928) | def take(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method toggleSelection (line 1929) | def toggleSelection(self, indexes: typing.Iterable[int], /) -> None: ... method __lshift__ (line 1931) | def __lshift__(self, points: typing.Iterable[PySide6.QtCore.QPointF], ... method __lshift__ (line 1933) | def __lshift__(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method __rlshift__ (line 1934) | def __rlshift__(self, other): ... class QtGraphs3D (line 1936) | class QtGraphs3D(shiboken6.Object): class CameraPreset (line 1937) | class CameraPreset(enum.Enum): class ElementType (line 1964) | class ElementType(enum.Enum): class GridLineType (line 1972) | class GridLineType(enum.Enum): class OptimizationHint (line 1976) | class OptimizationHint(enum.Flag): class RenderingMode (line 1980) | class RenderingMode(enum.Enum): class SelectionFlag (line 1984) | class SelectionFlag(enum.Flag): class ShadowQuality (line 1996) | class ShadowQuality(enum.Enum): class SliceCaptureType (line 2005) | class SliceCaptureType(enum.Enum): class TransparencyTechnique (line 2010) | class TransparencyTechnique(enum.Enum): method __init__ (line 2014) | def __init__(self, *args, **kwargs) -> None: ... function qDefaultSurfaceFormat (line 2016) | def qDefaultSurfaceFormat(antialias: bool, /) -> PySide6.QtGui.QSurfaceF... FILE: pyside6/stubs/PySide6-stubs/QtGraphsWidgets.pyi class Q3DBarsWidgetItem (line 15) | class Q3DBarsWidgetItem(Q3DGraphsWidgetItem): method __init__ (line 29) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addAxis (line 30) | def addAxis(self, axis: PySide6.QtGraphs.QAbstract3DAxis, /) -> None: ... method addSeries (line 31) | def addSeries(self, series: PySide6.QtGraphs.QBar3DSeries, /) -> None:... method axes (line 32) | def axes(self, /) -> List[PySide6.QtGraphs.QAbstract3DAxis]: ... method barSeriesMargin (line 33) | def barSeriesMargin(self, /) -> PySide6.QtCore.QSizeF: ... method barSpacing (line 34) | def barSpacing(self, /) -> PySide6.QtCore.QSizeF: ... method barThickness (line 35) | def barThickness(self, /) -> float: ... method columnAxis (line 36) | def columnAxis(self, /) -> PySide6.QtGraphs.QCategory3DAxis: ... method event (line 37) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method floorLevel (line 38) | def floorLevel(self, /) -> float: ... method insertSeries (line 39) | def insertSeries(self, index: int, series: PySide6.QtGraphs.QBar3DSeri... method isBarSpacingRelative (line 40) | def isBarSpacingRelative(self, /) -> bool: ... method isMultiSeriesUniform (line 41) | def isMultiSeriesUniform(self, /) -> bool: ... method primarySeries (line 42) | def primarySeries(self, /) -> PySide6.QtGraphs.QBar3DSeries: ... method releaseAxis (line 43) | def releaseAxis(self, axis: PySide6.QtGraphs.QAbstract3DAxis, /) -> No... method removeSeries (line 44) | def removeSeries(self, series: PySide6.QtGraphs.QBar3DSeries, /) -> No... method renderSliceToImage (line 45) | def renderSliceToImage(self, requestedIndex: int, sliceType: PySide6.Q... method rowAxis (line 46) | def rowAxis(self, /) -> PySide6.QtGraphs.QCategory3DAxis: ... method selectedSeries (line 47) | def selectedSeries(self, /) -> PySide6.QtGraphs.QBar3DSeries: ... method seriesList (line 48) | def seriesList(self, /) -> List[PySide6.QtGraphs.QBar3DSeries]: ... method setBarSeriesMargin (line 49) | def setBarSeriesMargin(self, margin: PySide6.QtCore.QSizeF | PySide6.Q... method setBarSpacing (line 50) | def setBarSpacing(self, spacing: PySide6.QtCore.QSizeF | PySide6.QtCor... method setBarSpacingRelative (line 51) | def setBarSpacingRelative(self, relative: bool, /) -> None: ... method setBarThickness (line 52) | def setBarThickness(self, thicknessRatio: float, /) -> None: ... method setColumnAxis (line 53) | def setColumnAxis(self, axis: PySide6.QtGraphs.QCategory3DAxis, /) -> ... method setFloorLevel (line 54) | def setFloorLevel(self, level: float, /) -> None: ... method setMultiSeriesUniform (line 55) | def setMultiSeriesUniform(self, uniform: bool, /) -> None: ... method setPrimarySeries (line 56) | def setPrimarySeries(self, series: PySide6.QtGraphs.QBar3DSeries, /) -... method setRowAxis (line 57) | def setRowAxis(self, axis: PySide6.QtGraphs.QCategory3DAxis, /) -> Non... method setValueAxis (line 58) | def setValueAxis(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None... method valueAxis (line 59) | def valueAxis(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... class Q3DGraphsWidgetItem (line 61) | class Q3DGraphsWidgetItem(PySide6.QtCore.QObject): method __init__ (line 110) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method activeTheme (line 111) | def activeTheme(self, /) -> PySide6.QtGraphs.QGraphsTheme: ... method addCustomItem (line 112) | def addCustomItem(self, item: PySide6.QtGraphs.QCustom3DItem, /) -> in... method addTheme (line 113) | def addTheme(self, theme: PySide6.QtGraphs.QGraphsTheme, /) -> None: ... method ambientLightStrength (line 114) | def ambientLightStrength(self, /) -> float: ... method aspectRatio (line 115) | def aspectRatio(self, /) -> float: ... method cameraPreset (line 116) | def cameraPreset(self, /) -> PySide6.QtGraphs.QtGraphs3D.CameraPreset:... method cameraTargetPosition (line 117) | def cameraTargetPosition(self, /) -> PySide6.QtGui.QVector3D: ... method cameraXRotation (line 118) | def cameraXRotation(self, /) -> float: ... method cameraYRotation (line 119) | def cameraYRotation(self, /) -> float: ... method cameraZoomLevel (line 120) | def cameraZoomLevel(self, /) -> float: ... method clearSelection (line 121) | def clearSelection(self, /) -> None: ... method currentFps (line 122) | def currentFps(self, /) -> int: ... method customItems (line 123) | def customItems(self, /) -> List[PySide6.QtGraphs.QCustom3DItem]: ... method doPicking (line 124) | def doPicking(self, point: PySide6.QtCore.QPoint, /) -> None: ... method doRayPicking (line 125) | def doRayPicking(self, origin: PySide6.QtGui.QVector3D, direction: PyS... method event (line 126) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 127) | def eventFilter(self, obj: PySide6.QtCore.QObject, event: PySide6.QtCo... method gridLineType (line 128) | def gridLineType(self, /) -> PySide6.QtGraphs.QtGraphs3D.GridLineType:... method hasSeries (line 129) | def hasSeries(self, series: PySide6.QtGraphs.QAbstract3DSeries, /) -> ... method horizontalAspectRatio (line 130) | def horizontalAspectRatio(self, /) -> float: ... method isOrthoProjection (line 131) | def isOrthoProjection(self, /) -> bool: ... method isPolar (line 132) | def isPolar(self, /) -> bool: ... method isRotationEnabled (line 133) | def isRotationEnabled(self, /) -> bool: ... method isSelectionEnabled (line 134) | def isSelectionEnabled(self, /) -> bool: ... method isZoomAtTargetEnabled (line 135) | def isZoomAtTargetEnabled(self, /) -> bool: ... method isZoomEnabled (line 136) | def isZoomEnabled(self, /) -> bool: ... method labelMargin (line 137) | def labelMargin(self, /) -> float: ... method lightColor (line 138) | def lightColor(self, /) -> PySide6.QtGui.QColor: ... method lightStrength (line 139) | def lightStrength(self, /) -> float: ... method locale (line 140) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method margin (line 141) | def margin(self, /) -> float: ... method maxCameraXRotation (line 142) | def maxCameraXRotation(self, /) -> float: ... method maxCameraYRotation (line 143) | def maxCameraYRotation(self, /) -> float: ... method maxCameraZoomLevel (line 144) | def maxCameraZoomLevel(self, /) -> float: ... method measureFps (line 145) | def measureFps(self, /) -> bool: ... method minCameraXRotation (line 146) | def minCameraXRotation(self, /) -> float: ... method minCameraYRotation (line 147) | def minCameraYRotation(self, /) -> float: ... method minCameraZoomLevel (line 148) | def minCameraZoomLevel(self, /) -> float: ... method msaaSamples (line 149) | def msaaSamples(self, /) -> int: ... method optimizationHint (line 150) | def optimizationHint(self, /) -> PySide6.QtGraphs.QtGraphs3D.Optimizat... method queriedGraphPosition (line 151) | def queriedGraphPosition(self, /) -> PySide6.QtGui.QVector3D: ... method radialLabelOffset (line 152) | def radialLabelOffset(self, /) -> float: ... method releaseCustomItem (line 153) | def releaseCustomItem(self, item: PySide6.QtGraphs.QCustom3DItem, /) -... method releaseTheme (line 154) | def releaseTheme(self, theme: PySide6.QtGraphs.QGraphsTheme, /) -> Non... method removeCustomItem (line 155) | def removeCustomItem(self, item: PySide6.QtGraphs.QCustom3DItem, /) ->... method removeCustomItemAt (line 156) | def removeCustomItemAt(self, position: PySide6.QtGui.QVector3D, /) -> ... method removeCustomItems (line 157) | def removeCustomItems(self, /) -> None: ... method renderToImage (line 158) | def renderToImage(self, /, imageSize: PySide6.QtCore.QSize = ...) -> T... method scene (line 159) | def scene(self, /) -> PySide6.QtGraphs.Q3DScene: ... method selectedAxis (line 160) | def selectedAxis(self, /) -> PySide6.QtGraphs.QAbstract3DAxis: ... method selectedCustomItem (line 161) | def selectedCustomItem(self, /) -> PySide6.QtGraphs.QCustom3DItem: ... method selectedCustomItemIndex (line 162) | def selectedCustomItemIndex(self, /) -> int: ... method selectedElement (line 163) | def selectedElement(self, /) -> PySide6.QtGraphs.QtGraphs3D.ElementTyp... method selectedLabelIndex (line 164) | def selectedLabelIndex(self, /) -> int: ... method selectionMode (line 165) | def selectionMode(self, /) -> PySide6.QtGraphs.QtGraphs3D.SelectionFla... method setActiveTheme (line 166) | def setActiveTheme(self, activeTheme: PySide6.QtGraphs.QGraphsTheme, /... method setAmbientLightStrength (line 167) | def setAmbientLightStrength(self, newAmbientLightStrength: float, /) -... method setAspectRatio (line 168) | def setAspectRatio(self, ratio: float, /) -> None: ... method setCameraPosition (line 169) | def setCameraPosition(self, horizontal: float, vertical: float, /, zoo... method setCameraPreset (line 170) | def setCameraPreset(self, preset: PySide6.QtGraphs.QtGraphs3D.CameraPr... method setCameraTargetPosition (line 171) | def setCameraTargetPosition(self, target: PySide6.QtGui.QVector3D, /) ... method setCameraXRotation (line 172) | def setCameraXRotation(self, rotation: float, /) -> None: ... method setCameraYRotation (line 173) | def setCameraYRotation(self, rotation: float, /) -> None: ... method setCameraZoomLevel (line 174) | def setCameraZoomLevel(self, level: float, /) -> None: ... method setDefaultInputHandler (line 175) | def setDefaultInputHandler(self, /) -> None: ... method setDragButton (line 176) | def setDragButton(self, button: PySide6.QtCore.Qt.MouseButton, /) -> N... method setGridLineType (line 177) | def setGridLineType(self, gridLineType: PySide6.QtGraphs.QtGraphs3D.Gr... method setHorizontalAspectRatio (line 178) | def setHorizontalAspectRatio(self, ratio: float, /) -> None: ... method setLabelMargin (line 179) | def setLabelMargin(self, margin: float, /) -> None: ... method setLightColor (line 180) | def setLightColor(self, newLightColor: Union[PySide6.QtGui.QColor, str... method setLightStrength (line 181) | def setLightStrength(self, newLightStrength: float, /) -> None: ... method setLocale (line 182) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setMargin (line 183) | def setMargin(self, margin: float, /) -> None: ... method setMaxCameraXRotation (line 184) | def setMaxCameraXRotation(self, rotation: float, /) -> None: ... method setMaxCameraYRotation (line 185) | def setMaxCameraYRotation(self, rotation: float, /) -> None: ... method setMaxCameraZoomLevel (line 186) | def setMaxCameraZoomLevel(self, level: float, /) -> None: ... method setMeasureFps (line 187) | def setMeasureFps(self, enable: bool, /) -> None: ... method setMinCameraXRotation (line 188) | def setMinCameraXRotation(self, rotation: float, /) -> None: ... method setMinCameraYRotation (line 189) | def setMinCameraYRotation(self, rotation: float, /) -> None: ... method setMinCameraZoomLevel (line 190) | def setMinCameraZoomLevel(self, level: float, /) -> None: ... method setMsaaSamples (line 191) | def setMsaaSamples(self, samples: int, /) -> None: ... method setOptimizationHint (line 192) | def setOptimizationHint(self, hint: PySide6.QtGraphs.QtGraphs3D.Optimi... method setOrthoProjection (line 193) | def setOrthoProjection(self, enable: bool, /) -> None: ... method setPolar (line 194) | def setPolar(self, enable: bool, /) -> None: ... method setRadialLabelOffset (line 195) | def setRadialLabelOffset(self, offset: float, /) -> None: ... method setRotationEnabled (line 196) | def setRotationEnabled(self, enable: bool, /) -> None: ... method setSelectionEnabled (line 197) | def setSelectionEnabled(self, enable: bool, /) -> None: ... method setSelectionMode (line 198) | def setSelectionMode(self, selectionMode: PySide6.QtGraphs.QtGraphs3D.... method setShadowQuality (line 199) | def setShadowQuality(self, shadowQuality: PySide6.QtGraphs.QtGraphs3D.... method setShadowStrength (line 200) | def setShadowStrength(self, newShadowStrength: float, /) -> None: ... method setTransparencyTechnique (line 201) | def setTransparencyTechnique(self, technique: PySide6.QtGraphs.QtGraph... method setWidget (line 202) | def setWidget(self, widget: PySide6.QtQuickWidgets.QQuickWidget, /) ->... method setWrapCameraXRotation (line 203) | def setWrapCameraXRotation(self, wrap: bool, /) -> None: ... method setWrapCameraYRotation (line 204) | def setWrapCameraYRotation(self, wrap: bool, /) -> None: ... method setZoomAtTargetEnabled (line 205) | def setZoomAtTargetEnabled(self, enable: bool, /) -> None: ... method setZoomEnabled (line 206) | def setZoomEnabled(self, enable: bool, /) -> None: ... method shadowQuality (line 207) | def shadowQuality(self, /) -> PySide6.QtGraphs.QtGraphs3D.ShadowQualit... method shadowStrength (line 208) | def shadowStrength(self, /) -> float: ... method themes (line 209) | def themes(self, /) -> List[PySide6.QtGraphs.QGraphsTheme]: ... method transparencyTechnique (line 210) | def transparencyTechnique(self, /) -> PySide6.QtGraphs.QtGraphs3D.Tran... method unsetDefaultDragHandler (line 211) | def unsetDefaultDragHandler(self, /) -> None: ... method unsetDefaultInputHandler (line 212) | def unsetDefaultInputHandler(self, /) -> None: ... method unsetDefaultPinchHandler (line 213) | def unsetDefaultPinchHandler(self, /) -> None: ... method unsetDefaultTapHandler (line 214) | def unsetDefaultTapHandler(self, /) -> None: ... method unsetDefaultWheelHandler (line 215) | def unsetDefaultWheelHandler(self, /) -> None: ... method widget (line 216) | def widget(self, /) -> PySide6.QtQuickWidgets.QQuickWidget: ... method wrapCameraXRotation (line 217) | def wrapCameraXRotation(self, /) -> bool: ... method wrapCameraYRotation (line 218) | def wrapCameraYRotation(self, /) -> bool: ... class Q3DScatterWidgetItem (line 220) | class Q3DScatterWidgetItem(Q3DGraphsWidgetItem): method __init__ (line 226) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addAxis (line 227) | def addAxis(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method addSeries (line 228) | def addSeries(self, series: PySide6.QtGraphs.QScatter3DSeries, /) -> N... method axes (line 229) | def axes(self, /) -> List[PySide6.QtGraphs.QValue3DAxis]: ... method axisX (line 230) | def axisX(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... method axisY (line 231) | def axisY(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... method axisZ (line 232) | def axisZ(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... method event (line 233) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method releaseAxis (line 234) | def releaseAxis(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None:... method removeSeries (line 235) | def removeSeries(self, series: PySide6.QtGraphs.QScatter3DSeries, /) -... method selectedSeries (line 236) | def selectedSeries(self, /) -> PySide6.QtGraphs.QScatter3DSeries: ... method seriesList (line 237) | def seriesList(self, /) -> List[PySide6.QtGraphs.QScatter3DSeries]: ... method setAxisX (line 238) | def setAxisX(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method setAxisY (line 239) | def setAxisY(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method setAxisZ (line 240) | def setAxisZ(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... class Q3DSurfaceWidgetItem (line 242) | class Q3DSurfaceWidgetItem(Q3DGraphsWidgetItem): method __init__ (line 250) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addAxis (line 251) | def addAxis(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method addSeries (line 252) | def addSeries(self, series: PySide6.QtGraphs.QSurface3DSeries, /) -> N... method axes (line 253) | def axes(self, /) -> List[PySide6.QtGraphs.QValue3DAxis]: ... method axisX (line 254) | def axisX(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... method axisY (line 255) | def axisY(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... method axisZ (line 256) | def axisZ(self, /) -> PySide6.QtGraphs.QValue3DAxis: ... method event (line 257) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method flipHorizontalGrid (line 258) | def flipHorizontalGrid(self, /) -> bool: ... method releaseAxis (line 259) | def releaseAxis(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None:... method removeSeries (line 260) | def removeSeries(self, series: PySide6.QtGraphs.QSurface3DSeries, /) -... method renderSliceToImage (line 261) | def renderSliceToImage(self, index: int, requestedIndex: int, sliceTyp... method selectedSeries (line 262) | def selectedSeries(self, /) -> PySide6.QtGraphs.QSurface3DSeries: ... method seriesList (line 263) | def seriesList(self, /) -> List[PySide6.QtGraphs.QSurface3DSeries]: ... method setAxisX (line 264) | def setAxisX(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method setAxisY (line 265) | def setAxisY(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method setAxisZ (line 266) | def setAxisZ(self, axis: PySide6.QtGraphs.QValue3DAxis, /) -> None: ... method setFlipHorizontalGrid (line 267) | def setFlipHorizontalGrid(self, flip: bool, /) -> None: ... class QIntList (line 269) | class QIntList: method __init__ (line 271) | def __init__(self, *args, **kwargs) -> None: ... method append (line 272) | def append(self, *args, **kwargs): ... method capacity (line 273) | def capacity(self, *args, **kwargs): ... method clear (line 274) | def clear(self, *args, **kwargs): ... method constData (line 275) | def constData(self, *args, **kwargs): ... method data (line 276) | def data(self, *args, **kwargs): ... method pop_back (line 277) | def pop_back(self, *args, **kwargs): ... method pop_front (line 278) | def pop_front(self, *args, **kwargs): ... method prepend (line 279) | def prepend(self, *args, **kwargs): ... method push_back (line 280) | def push_back(self, *args, **kwargs): ... method push_front (line 281) | def push_front(self, *args, **kwargs): ... method removeFirst (line 282) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 283) | def removeLast(self, *args, **kwargs): ... method reserve (line 284) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 285) | def __delitem__(self, other) -> None: ... method __getitem__ (line 286) | def __getitem__(self, index): ... method __len__ (line 287) | def __len__(self) -> int: ... method __setitem__ (line 288) | def __setitem__(self, index, object) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtGui.pyi class _add_QImageReader_imageFormat_overloads (line 16) | class _add_QImageReader_imageFormat_overloads: class StaticOverloads (line 23) | class StaticOverloads: class imageFormat (line 24) | class imageFormat: method __call__ (line 27) | def __call__(device: PySide6.QtCore.QIODevice, /) -> PySide6.QtCor... method __call__ (line 30) | def __call__(fileName: str, /) -> PySide6.QtCore.QByteArray: ... class InstanceOverloads (line 32) | class InstanceOverloads: class imageFormat (line 33) | class imageFormat: method __call__ (line 35) | def __call__(self, /) -> QImage.Format: ... method __call__ (line 37) | def __call__(self, device: PySide6.QtCore.QIODevice, /) -> PySide6... method __call__ (line 39) | def __call__(self, fileName: str, /) -> PySide6.QtCore.QByteArray:... method __init__ (line 41) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 44) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 47) | def __get__(self, object: QImageReader, owner: typing.Any) -> Instance... class _add_QPageSize_definitionSize_overloads (line 49) | class _add_QPageSize_definitionSize_overloads: class StaticOverloads (line 56) | class StaticOverloads: class definitionSize (line 57) | class definitionSize: method __call__ (line 59) | def __call__(pageSizeId: QPageSize.PageSizeId, /) -> PySide6.QtCor... class InstanceOverloads (line 61) | class InstanceOverloads: class definitionSize (line 62) | class definitionSize: method __call__ (line 64) | def __call__(self, /) -> PySide6.QtCore.QSizeF: ... method __call__ (line 66) | def __call__(self, pageSizeId: QPageSize.PageSizeId, /) -> PySide6... method __init__ (line 68) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 71) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 74) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_definitionUnits_overloads (line 76) | class _add_QPageSize_definitionUnits_overloads: class StaticOverloads (line 83) | class StaticOverloads: class definitionUnits (line 84) | class definitionUnits: method __call__ (line 86) | def __call__(pageSizeId: QPageSize.PageSizeId, /) -> QPageSize.Uni... class InstanceOverloads (line 88) | class InstanceOverloads: class definitionUnits (line 89) | class definitionUnits: method __call__ (line 91) | def __call__(self, /) -> QPageSize.Unit: ... method __call__ (line 93) | def __call__(self, pageSizeId: QPageSize.PageSizeId, /) -> QPageSi... method __init__ (line 95) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 98) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 101) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_id_overloads (line 103) | class _add_QPageSize_id_overloads: class StaticOverloads (line 110) | class StaticOverloads: class id (line 111) | class id: method __call__ (line 114) | def __call__(pointSize: PySide6.QtCore.QSize, /, matchPolicy: QPag... method __call__ (line 117) | def __call__(size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSize, u... method __call__ (line 120) | def __call__(windowsId: int, /) -> QPageSize.PageSizeId: ... class InstanceOverloads (line 122) | class InstanceOverloads: class id (line 123) | class id: method __call__ (line 125) | def __call__(self, /) -> QPageSize.PageSizeId: ... method __call__ (line 127) | def __call__(self, pointSize: PySide6.QtCore.QSize, /, matchPolicy... method __call__ (line 129) | def __call__(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QS... method __call__ (line 131) | def __call__(self, windowsId: int, /) -> QPageSize.PageSizeId: ... method __init__ (line 133) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 136) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 139) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_key_overloads (line 141) | class _add_QPageSize_key_overloads: class StaticOverloads (line 148) | class StaticOverloads: class key (line 149) | class key: method __call__ (line 151) | def __call__(pageSizeId: QPageSize.PageSizeId, /) -> str: ... class InstanceOverloads (line 153) | class InstanceOverloads: class key (line 154) | class key: method __call__ (line 156) | def __call__(self, /) -> str: ... method __call__ (line 158) | def __call__(self, pageSizeId: QPageSize.PageSizeId, /) -> str: ... method __init__ (line 160) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 163) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 166) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_name_overloads (line 168) | class _add_QPageSize_name_overloads: class StaticOverloads (line 175) | class StaticOverloads: class name (line 176) | class name: method __call__ (line 178) | def __call__(pageSizeId: QPageSize.PageSizeId, /) -> str: ... class InstanceOverloads (line 180) | class InstanceOverloads: class name (line 181) | class name: method __call__ (line 183) | def __call__(self, /) -> str: ... method __call__ (line 185) | def __call__(self, pageSizeId: QPageSize.PageSizeId, /) -> str: ... method __init__ (line 187) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 190) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 193) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_size_overloads (line 195) | class _add_QPageSize_size_overloads: class StaticOverloads (line 202) | class StaticOverloads: class size (line 203) | class size: method __call__ (line 205) | def __call__(pageSizeId: QPageSize.PageSizeId, units: QPageSize.Un... class InstanceOverloads (line 207) | class InstanceOverloads: class size (line 208) | class size: method __call__ (line 210) | def __call__(self, units: QPageSize.Unit, /) -> PySide6.QtCore.QSi... method __call__ (line 212) | def __call__(self, pageSizeId: QPageSize.PageSizeId, units: QPageS... method __init__ (line 214) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 217) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 220) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_sizePixels_overloads (line 222) | class _add_QPageSize_sizePixels_overloads: class StaticOverloads (line 229) | class StaticOverloads: class sizePixels (line 230) | class sizePixels: method __call__ (line 232) | def __call__(pageSizeId: QPageSize.PageSizeId, resolution: int, /)... class InstanceOverloads (line 234) | class InstanceOverloads: class sizePixels (line 235) | class sizePixels: method __call__ (line 237) | def __call__(self, resolution: int, /) -> PySide6.QtCore.QSize: ... method __call__ (line 239) | def __call__(self, pageSizeId: QPageSize.PageSizeId, resolution: i... method __init__ (line 241) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 244) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 247) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_sizePoints_overloads (line 249) | class _add_QPageSize_sizePoints_overloads: class StaticOverloads (line 256) | class StaticOverloads: class sizePoints (line 257) | class sizePoints: method __call__ (line 259) | def __call__(pageSizeId: QPageSize.PageSizeId, /) -> PySide6.QtCor... class InstanceOverloads (line 261) | class InstanceOverloads: class sizePoints (line 262) | class sizePoints: method __call__ (line 264) | def __call__(self, /) -> PySide6.QtCore.QSize: ... method __call__ (line 266) | def __call__(self, pageSizeId: QPageSize.PageSizeId, /) -> PySide6... method __init__ (line 268) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 271) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 274) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPageSize_windowsId_overloads (line 276) | class _add_QPageSize_windowsId_overloads: class StaticOverloads (line 283) | class StaticOverloads: class windowsId (line 284) | class windowsId: method __call__ (line 286) | def __call__(pageSizeId: QPageSize.PageSizeId, /) -> int: ... class InstanceOverloads (line 288) | class InstanceOverloads: class windowsId (line 289) | class windowsId: method __call__ (line 291) | def __call__(self, /) -> int: ... method __call__ (line 293) | def __call__(self, pageSizeId: QPageSize.PageSizeId, /) -> int: ... method __init__ (line 295) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 298) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 301) | def __get__(self, object: QPageSize, owner: typing.Any) -> InstanceOve... class _add_QPixmapCache_find_overloads (line 303) | class _add_QPixmapCache_find_overloads: class StaticOverloads (line 310) | class StaticOverloads: class find (line 311) | class find: method __call__ (line 314) | def __call__(key: QPixmapCache.Key, pixmap: QPixmap | QImage, /) -... method __call__ (line 317) | def __call__(key: str, pixmap: QPixmap | QImage, /) -> bool: ... class InstanceOverloads (line 319) | class InstanceOverloads: class find (line 320) | class find: method __call__ (line 322) | def __call__(self, key: QPixmapCache.Key, /) -> None: ... method __call__ (line 324) | def __call__(self, key: str, /) -> None: ... method __call__ (line 326) | def __call__(self, key: QPixmapCache.Key, pixmap: QPixmap | QImage... method __call__ (line 328) | def __call__(self, key: str, pixmap: QPixmap | QImage, /) -> bool:... method __init__ (line 330) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 333) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 336) | def __get__(self, object: QPixmapCache, owner: typing.Any) -> Instance... class _add_QRhi_backendName_overloads (line 338) | class _add_QRhi_backendName_overloads: class StaticOverloads (line 345) | class StaticOverloads: class backendName (line 346) | class backendName: method __call__ (line 348) | def __call__(impl: QRhi.Implementation, /) -> bytes | bytearray | ... class InstanceOverloads (line 350) | class InstanceOverloads: class backendName (line 351) | class backendName: method __call__ (line 353) | def __call__(self, /) -> bytes | bytearray | memoryview: ... method __call__ (line 355) | def __call__(self, impl: QRhi.Implementation, /) -> bytes | bytear... method __init__ (line 357) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 360) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 363) | def __get__(self, object: QRhi, owner: typing.Any) -> InstanceOverload... class QAbstractFileIconProvider (line 365) | class QAbstractFileIconProvider(shiboken6.Object): class IconType (line 366) | class IconType(enum.Enum): class Option (line 375) | class Option(enum.Flag): method __init__ (line 377) | def __init__(self, /) -> None: ... method icon (line 379) | def icon(self, arg__1: QAbstractFileIconProvider.IconType, /) -> QIcon... method icon (line 381) | def icon(self, arg__1: PySide6.QtCore.QFileInfo, /) -> QIcon: ... method options (line 382) | def options(self, /) -> QAbstractFileIconProvider.Option: ... method setOptions (line 383) | def setOptions(self, arg__1: QAbstractFileIconProvider.Option, /) -> N... method type (line 384) | def type(self, arg__1: PySide6.QtCore.QFileInfo, /) -> str: ... class QAbstractTextDocumentLayout (line 386) | class QAbstractTextDocumentLayout(PySide6.QtCore.QObject): class PaintContext (line 387) | class PaintContext(shiboken6.Object): method __init__ (line 393) | def __init__(self, PaintContext: QAbstractTextDocumentLayout.PaintCo... method __init__ (line 395) | def __init__(self, /) -> None: ... method __copy__ (line 396) | def __copy__(self, /) -> typing_extensions.Self: ... class Selection (line 398) | class Selection(shiboken6.Object): method __init__ (line 402) | def __init__(self, Selection: QAbstractTextDocumentLayout.Selection,... method __init__ (line 404) | def __init__(self, /) -> None: ... method __copy__ (line 405) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 411) | def __init__(self, doc: QTextDocument, /, destroyed: typing.Callable =... method anchorAt (line 412) | def anchorAt(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method blockBoundingRect (line 413) | def blockBoundingRect(self, block: QTextBlock, /) -> PySide6.QtCore.QR... method blockWithMarkerAt (line 414) | def blockWithMarkerAt(self, pos: PySide6.QtCore.QPointF | PySide6.QtCo... method document (line 415) | def document(self, /) -> QTextDocument: ... method documentChanged (line 416) | def documentChanged(self, from_: int, charsRemoved: int, charsAdded: i... method documentSize (line 417) | def documentSize(self, /) -> PySide6.QtCore.QSizeF: ... method draw (line 418) | def draw(self, painter: QPainter, context: QAbstractTextDocumentLayout... method drawInlineObject (line 419) | def drawInlineObject(self, painter: QPainter, rect: PySide6.QtCore.QRe... method format (line 420) | def format(self, pos: int, /) -> QTextCharFormat: ... method formatAt (line 421) | def formatAt(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method formatIndex (line 422) | def formatIndex(self, pos: int, /) -> int: ... method frameBoundingRect (line 423) | def frameBoundingRect(self, frame: QTextFrame, /) -> PySide6.QtCore.QR... method handlerForObject (line 424) | def handlerForObject(self, objectType: int, /) -> QTextObjectInterface... method hitTest (line 425) | def hitTest(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method imageAt (line 426) | def imageAt(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint ... method pageCount (line 427) | def pageCount(self, /) -> int: ... method paintDevice (line 428) | def paintDevice(self, /) -> QPaintDevice: ... method positionInlineObject (line 429) | def positionInlineObject(self, item: QTextInlineObject, posInDocument:... method registerHandler (line 430) | def registerHandler(self, objectType: int, component: PySide6.QtCore.Q... method resizeInlineObject (line 431) | def resizeInlineObject(self, item: QTextInlineObject, posInDocument: i... method setPaintDevice (line 432) | def setPaintDevice(self, device: QPaintDevice, /) -> None: ... method unregisterHandler (line 433) | def unregisterHandler(self, objectType: int, /, component: PySide6.QtC... class QAccessibilityHints (line 435) | class QAccessibilityHints(PySide6.QtCore.QObject): method __init__ (line 438) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method contrastPreference (line 439) | def contrastPreference(self, /) -> PySide6.QtCore.Qt.ContrastPreferenc... method event (line 440) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... class QAccessible (line 442) | class QAccessible(shiboken6.Object): class AnnouncementPoliteness (line 443) | class AnnouncementPoliteness(enum.Enum): class Attribute (line 447) | class Attribute(enum.Enum): class Event (line 452) | class Event(enum.Enum): class InterfaceType (line 525) | class InterfaceType(enum.Enum): class RelationFlag (line 537) | class RelationFlag(enum.Flag): class Role (line 548) | class Role(enum.Enum): class State (line 628) | class State(shiboken6.Object): method __init__ (line 667) | def __init__(self, State: QAccessible.State, /) -> None: ... method __init__ (line 669) | def __init__(self, /) -> None: ... method __copy__ (line 670) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 671) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 672) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 673) | def __gt__(self, other: object) -> bool: ... method __le__ (line 674) | def __le__(self, other: object) -> bool: ... method __lt__ (line 675) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 676) | def __ne__(self, other: object) -> bool: ... class Text (line 678) | class Text(enum.Enum): class TextBoundaryType (line 688) | class TextBoundaryType(enum.Enum): method __init__ (line 695) | def __init__(self, QAccessible: QAccessible, /) -> None: ... method accessibleInterface (line 697) | def accessibleInterface(uniqueId: int, /) -> QAccessibleInterface: ... method cleanup (line 699) | def cleanup() -> None: ... method deleteAccessibleInterface (line 701) | def deleteAccessibleInterface(uniqueId: int, /) -> None: ... method installFactory (line 703) | def installFactory(arg__1: collections.abc.Callable[..., typing.Any], ... method isActive (line 705) | def isActive() -> bool: ... method qAccessibleTextBoundaryHelper (line 707) | def qAccessibleTextBoundaryHelper(cursor: QTextCursor, boundaryType: Q... method queryAccessibleInterface (line 709) | def queryAccessibleInterface(arg__1: PySide6.QtCore.QObject, /) -> QAc... method registerAccessibleInterface (line 711) | def registerAccessibleInterface(iface: QAccessibleInterface, /) -> int... method setActive (line 713) | def setActive(active: bool, /) -> None: ... method setRootObject (line 715) | def setRootObject(object: PySide6.QtCore.QObject, /) -> None: ... method uniqueId (line 717) | def uniqueId(iface: QAccessibleInterface, /) -> int: ... method updateAccessibility (line 719) | def updateAccessibility(event: QAccessibleEvent, /) -> None: ... method __copy__ (line 720) | def __copy__(self, /) -> typing_extensions.Self: ... class QAccessibleActionInterface (line 722) | class QAccessibleActionInterface(shiboken6.Object): method __init__ (line 723) | def __init__(self, /) -> None: ... method actionNames (line 724) | def actionNames(self, /) -> List[str]: ... method decreaseAction (line 726) | def decreaseAction() -> str: ... method doAction (line 727) | def doAction(self, actionName: str, /) -> None: ... method increaseAction (line 729) | def increaseAction() -> str: ... method keyBindingsForAction (line 730) | def keyBindingsForAction(self, actionName: str, /) -> List[str]: ... method localizedActionDescription (line 731) | def localizedActionDescription(self, name: str, /) -> str: ... method localizedActionName (line 732) | def localizedActionName(self, name: str, /) -> str: ... method nextPageAction (line 734) | def nextPageAction() -> str: ... method pressAction (line 736) | def pressAction() -> str: ... method previousPageAction (line 738) | def previousPageAction() -> str: ... method scrollDownAction (line 740) | def scrollDownAction() -> str: ... method scrollLeftAction (line 742) | def scrollLeftAction() -> str: ... method scrollRightAction (line 744) | def scrollRightAction() -> str: ... method scrollUpAction (line 746) | def scrollUpAction() -> str: ... method setFocusAction (line 748) | def setFocusAction() -> str: ... method showMenuAction (line 750) | def showMenuAction() -> str: ... method toggleAction (line 752) | def toggleAction() -> str: ... class QAccessibleAnnouncementEvent (line 754) | class QAccessibleAnnouncementEvent(QAccessibleEvent): method __init__ (line 756) | def __init__(self, object: PySide6.QtCore.QObject, message: str, /) ->... method __init__ (line 758) | def __init__(self, iface: QAccessibleInterface, message: str, /) -> No... method message (line 759) | def message(self, /) -> str: ... method politeness (line 760) | def politeness(self, /) -> QAccessible.AnnouncementPoliteness: ... method setPoliteness (line 761) | def setPoliteness(self, politeness: QAccessible.AnnouncementPoliteness... class QAccessibleAttributesInterface (line 763) | class QAccessibleAttributesInterface(shiboken6.Object): method __init__ (line 764) | def __init__(self, /) -> None: ... method attributeKeys (line 765) | def attributeKeys(self, /) -> List[QAccessible.Attribute]: ... method attributeValue (line 766) | def attributeValue(self, key: QAccessible.Attribute, /) -> Any: ... class QAccessibleEditableTextInterface (line 768) | class QAccessibleEditableTextInterface(shiboken6.Object): method __init__ (line 769) | def __init__(self, /) -> None: ... method deleteText (line 770) | def deleteText(self, startOffset: int, endOffset: int, /) -> None: ... method insertText (line 771) | def insertText(self, offset: int, text: str, /) -> None: ... method replaceText (line 772) | def replaceText(self, startOffset: int, endOffset: int, text: str, /) ... class QAccessibleEvent (line 774) | class QAccessibleEvent(shiboken6.Object): method __init__ (line 776) | def __init__(self, obj: PySide6.QtCore.QObject, typ: QAccessible.Event... method __init__ (line 778) | def __init__(self, iface: QAccessibleInterface, typ: QAccessible.Event... method accessibleInterface (line 779) | def accessibleInterface(self, /) -> QAccessibleInterface: ... method child (line 780) | def child(self, /) -> int: ... method object (line 781) | def object(self, /) -> PySide6.QtCore.QObject: ... method setChild (line 782) | def setChild(self, chld: int, /) -> None: ... method type (line 783) | def type(self, /) -> QAccessible.Event: ... method uniqueId (line 784) | def uniqueId(self, /) -> int: ... class QAccessibleInterface (line 786) | class QAccessibleInterface(shiboken6.Object): method __init__ (line 787) | def __init__(self, /) -> None: ... method actionInterface (line 788) | def actionInterface(self, /) -> QAccessibleActionInterface: ... method attributesInterface (line 789) | def attributesInterface(self, /) -> QAccessibleAttributesInterface: ... method backgroundColor (line 790) | def backgroundColor(self, /) -> QColor: ... method child (line 791) | def child(self, index: int, /) -> QAccessibleInterface: ... method childAt (line 792) | def childAt(self, x: int, y: int, /) -> QAccessibleInterface: ... method childCount (line 793) | def childCount(self, /) -> int: ... method editableTextInterface (line 794) | def editableTextInterface(self, /) -> QAccessibleEditableTextInterface... method focusChild (line 795) | def focusChild(self, /) -> QAccessibleInterface: ... method foregroundColor (line 796) | def foregroundColor(self, /) -> QColor: ... method indexOfChild (line 797) | def indexOfChild(self, arg__1: QAccessibleInterface, /) -> int: ... method interface_cast (line 798) | def interface_cast(self, arg__1: QAccessible.InterfaceType, /) -> int:... method isValid (line 799) | def isValid(self, /) -> bool: ... method object (line 800) | def object(self, /) -> PySide6.QtCore.QObject: ... method parent (line 801) | def parent(self, /) -> QAccessibleInterface: ... method rect (line 802) | def rect(self, /) -> PySide6.QtCore.QRect: ... method relations (line 803) | def relations(self, /, match: QAccessible.RelationFlag = ...) -> List[... method role (line 804) | def role(self, /) -> QAccessible.Role: ... method selectionInterface (line 805) | def selectionInterface(self, /) -> QAccessibleSelectionInterface: ... method setText (line 806) | def setText(self, t: QAccessible.Text, text: str, /) -> None: ... method state (line 807) | def state(self, /) -> QAccessible.State: ... method tableCellInterface (line 808) | def tableCellInterface(self, /) -> QAccessibleTableCellInterface: ... method text (line 809) | def text(self, t: QAccessible.Text, /) -> str: ... method textInterface (line 810) | def textInterface(self, /) -> QAccessibleTextInterface: ... method valueInterface (line 811) | def valueInterface(self, /) -> QAccessibleValueInterface: ... method virtual_hook (line 812) | def virtual_hook(self, id: int, data: int, /) -> None: ... method window (line 813) | def window(self, /) -> QWindow: ... class QAccessibleObject (line 815) | class QAccessibleObject(QAccessibleInterface): method __init__ (line 816) | def __init__(self, object: PySide6.QtCore.QObject, /) -> None: ... method childAt (line 817) | def childAt(self, x: int, y: int, /) -> QAccessibleInterface: ... method isValid (line 818) | def isValid(self, /) -> bool: ... method object (line 819) | def object(self, /) -> PySide6.QtCore.QObject: ... method rect (line 820) | def rect(self, /) -> PySide6.QtCore.QRect: ... method setText (line 821) | def setText(self, t: QAccessible.Text, text: str, /) -> None: ... class QAccessibleSelectionInterface (line 823) | class QAccessibleSelectionInterface(shiboken6.Object): method __init__ (line 824) | def __init__(self, /) -> None: ... method clear (line 825) | def clear(self, /) -> bool: ... method isSelected (line 826) | def isSelected(self, childItem: QAccessibleInterface, /) -> bool: ... method select (line 827) | def select(self, childItem: QAccessibleInterface, /) -> bool: ... method selectAll (line 828) | def selectAll(self, /) -> bool: ... method selectedItem (line 829) | def selectedItem(self, selectionIndex: int, /) -> QAccessibleInterface... method selectedItemCount (line 830) | def selectedItemCount(self, /) -> int: ... method selectedItems (line 831) | def selectedItems(self, /) -> List[QAccessibleInterface]: ... method unselect (line 832) | def unselect(self, childItem: QAccessibleInterface, /) -> bool: ... class QAccessibleStateChangeEvent (line 834) | class QAccessibleStateChangeEvent(QAccessibleEvent): method __init__ (line 836) | def __init__(self, obj: PySide6.QtCore.QObject, state: QAccessible.Sta... method __init__ (line 838) | def __init__(self, iface: QAccessibleInterface, state: QAccessible.Sta... method changedStates (line 839) | def changedStates(self, /) -> QAccessible.State: ... class QAccessibleTableCellInterface (line 841) | class QAccessibleTableCellInterface(shiboken6.Object): method __init__ (line 842) | def __init__(self, /) -> None: ... method columnExtent (line 843) | def columnExtent(self, /) -> int: ... method columnHeaderCells (line 844) | def columnHeaderCells(self, /) -> List[QAccessibleInterface]: ... method columnIndex (line 845) | def columnIndex(self, /) -> int: ... method isSelected (line 846) | def isSelected(self, /) -> bool: ... method rowExtent (line 847) | def rowExtent(self, /) -> int: ... method rowHeaderCells (line 848) | def rowHeaderCells(self, /) -> List[QAccessibleInterface]: ... method rowIndex (line 849) | def rowIndex(self, /) -> int: ... method table (line 850) | def table(self, /) -> QAccessibleInterface: ... class QAccessibleTableModelChangeEvent (line 852) | class QAccessibleTableModelChangeEvent(QAccessibleEvent): class ModelChangeType (line 853) | class ModelChangeType(enum.Enum): method __init__ (line 861) | def __init__(self, obj: PySide6.QtCore.QObject, changeType: QAccessibl... method __init__ (line 863) | def __init__(self, iface: QAccessibleInterface, changeType: QAccessibl... method firstColumn (line 864) | def firstColumn(self, /) -> int: ... method firstRow (line 865) | def firstRow(self, /) -> int: ... method lastColumn (line 866) | def lastColumn(self, /) -> int: ... method lastRow (line 867) | def lastRow(self, /) -> int: ... method modelChangeType (line 868) | def modelChangeType(self, /) -> QAccessibleTableModelChangeEvent.Model... method setFirstColumn (line 869) | def setFirstColumn(self, col: int, /) -> None: ... method setFirstRow (line 870) | def setFirstRow(self, row: int, /) -> None: ... method setLastColumn (line 871) | def setLastColumn(self, col: int, /) -> None: ... method setLastRow (line 872) | def setLastRow(self, row: int, /) -> None: ... method setModelChangeType (line 873) | def setModelChangeType(self, changeType: QAccessibleTableModelChangeEv... class QAccessibleTextCursorEvent (line 875) | class QAccessibleTextCursorEvent(QAccessibleEvent): method __init__ (line 877) | def __init__(self, obj: PySide6.QtCore.QObject, cursorPos: int, /) -> ... method __init__ (line 879) | def __init__(self, iface: QAccessibleInterface, cursorPos: int, /) -> ... method cursorPosition (line 880) | def cursorPosition(self, /) -> int: ... method setCursorPosition (line 881) | def setCursorPosition(self, position: int, /) -> None: ... class QAccessibleTextInsertEvent (line 883) | class QAccessibleTextInsertEvent(QAccessibleTextCursorEvent): method __init__ (line 885) | def __init__(self, obj: PySide6.QtCore.QObject, position: int, text: s... method __init__ (line 887) | def __init__(self, iface: QAccessibleInterface, position: int, text: s... method changePosition (line 888) | def changePosition(self, /) -> int: ... method textInserted (line 889) | def textInserted(self, /) -> str: ... class QAccessibleTextInterface (line 891) | class QAccessibleTextInterface(shiboken6.Object): method __init__ (line 892) | def __init__(self, /) -> None: ... method addSelection (line 893) | def addSelection(self, startOffset: int, endOffset: int, /) -> None: ... method attributes (line 894) | def attributes(self, offset: int, /) -> Tuple[str, int, int]: ... method characterCount (line 895) | def characterCount(self, /) -> int: ... method characterRect (line 896) | def characterRect(self, offset: int, /) -> PySide6.QtCore.QRect: ... method cursorPosition (line 897) | def cursorPosition(self, /) -> int: ... method offsetAtPoint (line 898) | def offsetAtPoint(self, point: PySide6.QtCore.QPoint, /) -> int: ... method removeSelection (line 899) | def removeSelection(self, selectionIndex: int, /) -> None: ... method scrollToSubstring (line 900) | def scrollToSubstring(self, startIndex: int, endIndex: int, /) -> None... method selection (line 901) | def selection(self, selectionIndex: int, /) -> Tuple[int, int]: ... method selectionCount (line 902) | def selectionCount(self, /) -> int: ... method setCursorPosition (line 903) | def setCursorPosition(self, position: int, /) -> None: ... method setSelection (line 904) | def setSelection(self, selectionIndex: int, startOffset: int, endOffse... method text (line 905) | def text(self, startOffset: int, endOffset: int, /) -> str: ... method textAfterOffset (line 906) | def textAfterOffset(self, offset: int, boundaryType: QAccessible.TextB... method textAtOffset (line 907) | def textAtOffset(self, offset: int, boundaryType: QAccessible.TextBoun... method textBeforeOffset (line 908) | def textBeforeOffset(self, offset: int, boundaryType: QAccessible.Text... class QAccessibleTextRemoveEvent (line 910) | class QAccessibleTextRemoveEvent(QAccessibleTextCursorEvent): method __init__ (line 912) | def __init__(self, obj: PySide6.QtCore.QObject, position: int, text: s... method __init__ (line 914) | def __init__(self, iface: QAccessibleInterface, position: int, text: s... method changePosition (line 915) | def changePosition(self, /) -> int: ... method textRemoved (line 916) | def textRemoved(self, /) -> str: ... class QAccessibleTextSelectionEvent (line 918) | class QAccessibleTextSelectionEvent(QAccessibleTextCursorEvent): method __init__ (line 920) | def __init__(self, obj: PySide6.QtCore.QObject, start: int, end: int, ... method __init__ (line 922) | def __init__(self, iface: QAccessibleInterface, start: int, end: int, ... method selectionEnd (line 923) | def selectionEnd(self, /) -> int: ... method selectionStart (line 924) | def selectionStart(self, /) -> int: ... method setSelection (line 925) | def setSelection(self, start: int, end: int, /) -> None: ... class QAccessibleTextUpdateEvent (line 927) | class QAccessibleTextUpdateEvent(QAccessibleTextCursorEvent): method __init__ (line 929) | def __init__(self, obj: PySide6.QtCore.QObject, position: int, oldText... method __init__ (line 931) | def __init__(self, iface: QAccessibleInterface, position: int, oldText... method changePosition (line 932) | def changePosition(self, /) -> int: ... method textInserted (line 933) | def textInserted(self, /) -> str: ... method textRemoved (line 934) | def textRemoved(self, /) -> str: ... class QAccessibleValueChangeEvent (line 936) | class QAccessibleValueChangeEvent(QAccessibleEvent): method __init__ (line 938) | def __init__(self, obj: PySide6.QtCore.QObject, val: Any, /) -> None: ... method __init__ (line 940) | def __init__(self, iface: QAccessibleInterface, val: Any, /) -> None: ... method setValue (line 941) | def setValue(self, val: Any, /) -> None: ... method value (line 942) | def value(self, /) -> Any: ... class QAccessibleValueInterface (line 944) | class QAccessibleValueInterface(shiboken6.Object): method __init__ (line 945) | def __init__(self, /) -> None: ... method currentValue (line 946) | def currentValue(self, /) -> Any: ... method maximumValue (line 947) | def maximumValue(self, /) -> Any: ... method minimumStepSize (line 948) | def minimumStepSize(self, /) -> Any: ... method minimumValue (line 949) | def minimumValue(self, /) -> Any: ... method setCurrentValue (line 950) | def setCurrentValue(self, value: Any, /) -> None: ... class QAction (line 952) | class QAction(PySide6.QtCore.QObject): class ActionEvent (line 953) | class ActionEvent(enum.Enum): class MenuRole (line 957) | class MenuRole(enum.Enum): class Priority (line 966) | class Priority(enum.Enum): method __init__ (line 979) | def __init__(self, text: str, /, parent: PySide6.QtCore.QObject | None... method __init__ (line 981) | def __init__(self, icon: QIcon | QPixmap, text: str, /, parent: PySide... method __init__ (line 983) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method actionGroup (line 984) | def actionGroup(self, /) -> QActionGroup: ... method activate (line 985) | def activate(self, event: QAction.ActionEvent, /) -> None: ... method associatedObjects (line 986) | def associatedObjects(self, /) -> List[PySide6.QtCore.QObject]: ... method autoRepeat (line 987) | def autoRepeat(self, /) -> bool: ... method data (line 988) | def data(self, /) -> Any: ... method event (line 989) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method font (line 990) | def font(self, /) -> QFont: ... method hover (line 991) | def hover(self, /) -> None: ... method icon (line 992) | def icon(self, /) -> QIcon: ... method iconText (line 993) | def iconText(self, /) -> str: ... method isCheckable (line 994) | def isCheckable(self, /) -> bool: ... method isChecked (line 995) | def isChecked(self, /) -> bool: ... method isEnabled (line 996) | def isEnabled(self, /) -> bool: ... method isIconVisibleInMenu (line 997) | def isIconVisibleInMenu(self, /) -> bool: ... method isSeparator (line 998) | def isSeparator(self, /) -> bool: ... method isShortcutVisibleInContextMenu (line 999) | def isShortcutVisibleInContextMenu(self, /) -> bool: ... method isVisible (line 1000) | def isVisible(self, /) -> bool: ... method menu (line 1001) | def menu(self, /) -> PySide6.QtWidgets.QMenu | None: ... method menuRole (line 1002) | def menuRole(self, /) -> QAction.MenuRole: ... method priority (line 1003) | def priority(self, /) -> QAction.Priority: ... method resetEnabled (line 1004) | def resetEnabled(self, /) -> None: ... method setActionGroup (line 1005) | def setActionGroup(self, group: QActionGroup, /) -> None: ... method setAutoRepeat (line 1006) | def setAutoRepeat(self, arg__1: bool, /) -> None: ... method setCheckable (line 1007) | def setCheckable(self, arg__1: bool, /) -> None: ... method setChecked (line 1008) | def setChecked(self, arg__1: bool, /) -> None: ... method setData (line 1009) | def setData(self, var: Any, /) -> None: ... method setDisabled (line 1010) | def setDisabled(self, b: bool, /) -> None: ... method setEnabled (line 1011) | def setEnabled(self, arg__1: bool, /) -> None: ... method setFont (line 1012) | def setFont(self, font: QFont | str | typing.Iterable[str], /) -> None... method setIcon (line 1013) | def setIcon(self, icon: QIcon | QPixmap, /) -> None: ... method setIconText (line 1014) | def setIconText(self, text: str, /) -> None: ... method setIconVisibleInMenu (line 1015) | def setIconVisibleInMenu(self, visible: bool, /) -> None: ... method setMenu (line 1016) | def setMenu(self, arg__1: PySide6.QtCore.QObject, /) -> None: ... method setMenuRole (line 1017) | def setMenuRole(self, menuRole: QAction.MenuRole, /) -> None: ... method setPriority (line 1018) | def setPriority(self, priority: QAction.Priority, /) -> None: ... method setSeparator (line 1019) | def setSeparator(self, b: bool, /) -> None: ... method setShortcut (line 1021) | def setShortcut(self, shortcut: QKeySequence | PySide6.QtCore.QKeyComb... method setShortcut (line 1023) | def setShortcut(self, arg__1: PySide6.QtCore.Qt.Key, /) -> None: ... ... method setShortcutContext (line 1024) | def setShortcutContext(self, context: PySide6.QtCore.Qt.ShortcutContex... method setShortcutVisibleInContextMenu (line 1025) | def setShortcutVisibleInContextMenu(self, show: bool, /) -> None: ... method setShortcuts (line 1027) | def setShortcuts(self, shortcuts: typing.Iterable[QKeySequence], /) ->... method setShortcuts (line 1029) | def setShortcuts(self, arg__1: QKeySequence.StandardKey, /) -> None: ... method setStatusTip (line 1030) | def setStatusTip(self, statusTip: str, /) -> None: ... method setText (line 1031) | def setText(self, text: str, /) -> None: ... method setToolTip (line 1032) | def setToolTip(self, tip: str, /) -> None: ... method setVisible (line 1033) | def setVisible(self, arg__1: bool, /) -> None: ... method setWhatsThis (line 1034) | def setWhatsThis(self, what: str, /) -> None: ... method shortcut (line 1035) | def shortcut(self, /) -> QKeySequence: ... method shortcutContext (line 1036) | def shortcutContext(self, /) -> PySide6.QtCore.Qt.ShortcutContext: ... method shortcuts (line 1037) | def shortcuts(self, /) -> List[QKeySequence]: ... method showStatusText (line 1038) | def showStatusText(self, /, object: PySide6.QtCore.QObject | None = ..... method statusTip (line 1039) | def statusTip(self, /) -> str: ... method text (line 1040) | def text(self, /) -> str: ... method toggle (line 1041) | def toggle(self, /) -> None: ... method toolTip (line 1042) | def toolTip(self, /) -> str: ... method trigger (line 1043) | def trigger(self, /) -> None: ... method whatsThis (line 1044) | def whatsThis(self, /) -> str: ... class QActionEvent (line 1046) | class QActionEvent(PySide6.QtCore.QEvent): method __init__ (line 1048) | def __init__(self, type: int, action: QAction, /, before: QAction | No... method __init__ (line 1050) | def __init__(self, arg__1: QActionEvent, /) -> None: ... method action (line 1051) | def action(self, /) -> QAction: ... method before (line 1052) | def before(self, /) -> QAction: ... method clone (line 1053) | def clone(self, /) -> QActionEvent: ... class QActionGroup (line 1055) | class QActionGroup(PySide6.QtCore.QObject): class ExclusionPolicy (line 1056) | class ExclusionPolicy(enum.Enum): method __init__ (line 1063) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, exclus... method actions (line 1064) | def actions(self, /) -> List[QAction]: ... method addAction (line 1066) | def addAction(self, icon: QIcon | QPixmap, text: str, /) -> QAction: ... method addAction (line 1068) | def addAction(self, text: str, /) -> QAction: ... method addAction (line 1070) | def addAction(self, a: QAction, /) -> QAction: ... method checkedAction (line 1071) | def checkedAction(self, /) -> QAction: ... method exclusionPolicy (line 1072) | def exclusionPolicy(self, /) -> QActionGroup.ExclusionPolicy: ... method isEnabled (line 1073) | def isEnabled(self, /) -> bool: ... method isExclusive (line 1074) | def isExclusive(self, /) -> bool: ... method isVisible (line 1075) | def isVisible(self, /) -> bool: ... method removeAction (line 1076) | def removeAction(self, a: QAction, /) -> None: ... method setDisabled (line 1077) | def setDisabled(self, b: bool, /) -> None: ... method setEnabled (line 1078) | def setEnabled(self, arg__1: bool, /) -> None: ... method setExclusionPolicy (line 1079) | def setExclusionPolicy(self, policy: QActionGroup.ExclusionPolicy, /) ... method setExclusive (line 1080) | def setExclusive(self, arg__1: bool, /) -> None: ... method setVisible (line 1081) | def setVisible(self, arg__1: bool, /) -> None: ... class QBackingStore (line 1083) | class QBackingStore(shiboken6.Object): method __init__ (line 1084) | def __init__(self, window: QWindow, /) -> None: ... method beginPaint (line 1085) | def beginPaint(self, arg__1: QRegion | QBitmap | QPolygon | PySide6.Qt... method endPaint (line 1086) | def endPaint(self, /) -> None: ... method flush (line 1087) | def flush(self, region: QRegion | QBitmap | QPolygon | PySide6.QtCore.... method hasStaticContents (line 1088) | def hasStaticContents(self, /) -> bool: ... method paintDevice (line 1089) | def paintDevice(self, /) -> QPaintDevice: ... method resize (line 1090) | def resize(self, size: PySide6.QtCore.QSize, /) -> None: ... method scroll (line 1091) | def scroll(self, area: QRegion | QBitmap | QPolygon | PySide6.QtCore.Q... method setStaticContents (line 1092) | def setStaticContents(self, region: QRegion | QBitmap | QPolygon | PyS... method size (line 1093) | def size(self, /) -> PySide6.QtCore.QSize: ... method staticContents (line 1094) | def staticContents(self, /) -> QRegion: ... method window (line 1095) | def window(self, /) -> QWindow: ... class QBitmap (line 1097) | class QBitmap(QPixmap): method __init__ (line 1099) | def __init__(self, w: int, h: int, /) -> None: ... method __init__ (line 1101) | def __init__(self, fileName: str, /, format: bytes | bytearray | memor... method __init__ (line 1103) | def __init__(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method __init__ (line 1105) | def __init__(self, arg__1: QPixmap | QImage, /) -> None: ... method __init__ (line 1107) | def __init__(self, QBitmap: QBitmap, /) -> None: ... # type: ignore[o... method __init__ (line 1109) | def __init__(self, /) -> None: ... method clear (line 1110) | def clear(self, /) -> None: ... method fromData (line 1112) | def fromData(size: PySide6.QtCore.QSize, bits: bytes | bytearray | mem... method fromImage (line 1114) | def fromImage(image: QImage, /, flags: PySide6.QtCore.Qt.ImageConversi... method fromPixmap (line 1116) | def fromPixmap(pixmap: QPixmap | QImage, /) -> QBitmap: ... method swap (line 1117) | def swap(self, other: QBitmap | str, /) -> None: ... # type: ignore[o... method transformed (line 1118) | def transformed(self, matrix: QTransform, /) -> QBitmap: ... # type: ... method __copy__ (line 1119) | def __copy__(self, /) -> typing_extensions.Self: ... class QBrush (line 1121) | class QBrush(shiboken6.Object): method __init__ (line 1123) | def __init__(self, color: PySide6.QtCore.Qt.GlobalColor, pixmap: QPixm... method __init__ (line 1125) | def __init__(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtC... method __init__ (line 1127) | def __init__(self, color: PySide6.QtCore.Qt.GlobalColor, /, bs: PySide... method __init__ (line 1129) | def __init__(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtC... method __init__ (line 1131) | def __init__(self, pixmap: QPixmap | QImage, /) -> None: ... method __init__ (line 1133) | def __init__(self, image: QImage, /) -> None: ... # type: ignore[over... method __init__ (line 1135) | def __init__(self, gradient: QGradient | QGradient.Preset, /) -> None:... method __init__ (line 1137) | def __init__(self, bs: PySide6.QtCore.Qt.BrushStyle, /) -> None: ... method __init__ (line 1139) | def __init__(self, brush: QBrush | QColor | PySide6.QtCore.Qt.GlobalCo... method __init__ (line 1141) | def __init__(self, /) -> None: ... method color (line 1142) | def color(self, /) -> QColor: ... method gradient (line 1143) | def gradient(self, /) -> QGradient: ... method isOpaque (line 1144) | def isOpaque(self, /) -> bool: ... method setColor (line 1146) | def setColor(self, color: PySide6.QtCore.Qt.GlobalColor, /) -> None: ... method setColor (line 1148) | def setColor(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtC... method setStyle (line 1149) | def setStyle(self, arg__1: PySide6.QtCore.Qt.BrushStyle, /) -> None: ... method setTexture (line 1150) | def setTexture(self, pixmap: QPixmap | QImage, /) -> None: ... method setTextureImage (line 1151) | def setTextureImage(self, image: QImage, /) -> None: ... method setTransform (line 1152) | def setTransform(self, arg__1: QTransform, /) -> None: ... method style (line 1153) | def style(self, /) -> PySide6.QtCore.Qt.BrushStyle: ... method swap (line 1154) | def swap(self, other: QBrush | PySide6.QtCore.Qt.BrushStyle | PySide6.... method texture (line 1155) | def texture(self, /) -> QPixmap: ... method textureImage (line 1156) | def textureImage(self, /) -> QImage: ... method transform (line 1157) | def transform(self, /) -> QTransform: ... method __copy__ (line 1158) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1159) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1160) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1161) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1162) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1163) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 1164) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1165) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1166) | def __rlshift__(self, other): ... method __rrshift__ (line 1167) | def __rrshift__(self, other): ... method __rshift__ (line 1168) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QChildWindowEvent (line 1170) | class QChildWindowEvent(PySide6.QtCore.QEvent): method __init__ (line 1172) | def __init__(self, type: PySide6.QtCore.QEvent.Type, childWindow: QWin... method __init__ (line 1174) | def __init__(self, arg__1: QChildWindowEvent, /) -> None: ... method child (line 1175) | def child(self, /) -> QWindow: ... method clone (line 1176) | def clone(self, /) -> QChildWindowEvent: ... class QClipboard (line 1178) | class QClipboard(PySide6.QtCore.QObject): class Mode (line 1179) | class Mode(enum.Enum): method __init__ (line 1189) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method clear (line 1190) | def clear(self, /, mode: QClipboard.Mode = ...) -> None: ... method image (line 1191) | def image(self, /, mode: QClipboard.Mode = ...) -> QImage: ... method mimeData (line 1192) | def mimeData(self, /, mode: QClipboard.Mode = ...) -> PySide6.QtCore.Q... method ownsClipboard (line 1193) | def ownsClipboard(self, /) -> bool: ... method ownsFindBuffer (line 1194) | def ownsFindBuffer(self, /) -> bool: ... method ownsSelection (line 1195) | def ownsSelection(self, /) -> bool: ... method pixmap (line 1196) | def pixmap(self, /, mode: QClipboard.Mode = ...) -> QPixmap: ... method setImage (line 1198) | def setImage(self, arg__1: QImage, /, mode: QClipboard.Mode = ...) -> ... method setImage (line 1200) | def setImage(self, path: str | bytes | os.PathLike[str], /) -> None: ... method setMimeData (line 1201) | def setMimeData(self, data: PySide6.QtCore.QMimeData, /, mode: QClipbo... method setPixmap (line 1203) | def setPixmap(self, arg__1: QPixmap, /, mode: QClipboard.Mode = ...) -... method setPixmap (line 1205) | def setPixmap(self, path: str | bytes | os.PathLike[str], /) -> None: ... method setText (line 1206) | def setText(self, arg__1: str, /, mode: QClipboard.Mode = ...) -> None... method supportsFindBuffer (line 1207) | def supportsFindBuffer(self, /) -> bool: ... method supportsSelection (line 1208) | def supportsSelection(self, /) -> bool: ... method text (line 1210) | def text(self, subtype: str, /, mode: QClipboard.Mode = ...) -> Tuple[... method text (line 1212) | def text(self, /, mode: QClipboard.Mode = ...) -> str: ... class QCloseEvent (line 1214) | class QCloseEvent(PySide6.QtCore.QEvent): method __init__ (line 1216) | def __init__(self, arg__1: QCloseEvent, /) -> None: ... method __init__ (line 1218) | def __init__(self, /) -> None: ... method clone (line 1219) | def clone(self, /) -> QCloseEvent: ... class QColor (line 1221) | class QColor(shiboken6.Object): class NameFormat (line 1222) | class NameFormat(enum.Enum): class Spec (line 1226) | class Spec(enum.Enum): method __init__ (line 1234) | def __init__(self, spec: QColor.Spec, a1: int, a2: int, a3: int, a4: i... method __init__ (line 1236) | def __init__(self, r: int, g: int, b: int, /, a: int = ...) -> None: ... method __init__ (line 1238) | def __init__(self, rgba64: QRgba64, /) -> None: ... method __init__ (line 1240) | def __init__(self, rgb: int, /) -> None: ... method __init__ (line 1242) | def __init__(self, name: str, /) -> None: ... method __init__ (line 1244) | def __init__(self, color: PySide6.QtCore.Qt.GlobalColor, /) -> None: ... method __init__ (line 1246) | def __init__(self, color: Any, /) -> None: ... method __init__ (line 1248) | def __init__(self, QColor: QColor | PySide6.QtCore.Qt.GlobalColor | in... method __init__ (line 1250) | def __init__(self, /) -> None: ... method alpha (line 1251) | def alpha(self, /) -> int: ... method alphaF (line 1252) | def alphaF(self, /) -> float: ... method black (line 1253) | def black(self, /) -> int: ... method blackF (line 1254) | def blackF(self, /) -> float: ... method blue (line 1255) | def blue(self, /) -> int: ... method blueF (line 1256) | def blueF(self, /) -> float: ... method colorNames (line 1258) | def colorNames() -> List[str]: ... method convertTo (line 1259) | def convertTo(self, colorSpec: QColor.Spec, /) -> QColor: ... method cyan (line 1260) | def cyan(self, /) -> int: ... method cyanF (line 1261) | def cyanF(self, /) -> float: ... method darker (line 1262) | def darker(self, /, f: int = ...) -> QColor: ... method fromCmyk (line 1264) | def fromCmyk(c: int, m: int, y: int, k: int, /, a: int = ...) -> QColo... method fromCmykF (line 1266) | def fromCmykF(c: float, m: float, y: float, k: float, /, a: float = ..... method fromHsl (line 1268) | def fromHsl(h: int, s: int, l: int, /, a: int = ...) -> QColor: ... method fromHslF (line 1270) | def fromHslF(h: float, s: float, l: float, /, a: float = ...) -> QColo... method fromHsv (line 1272) | def fromHsv(h: int, s: int, v: int, /, a: int = ...) -> QColor: ... method fromHsvF (line 1274) | def fromHsvF(h: float, s: float, v: float, /, a: float = ...) -> QColo... method fromRgb (line 1277) | def fromRgb(r: int, g: int, b: int, /, a: int = ...) -> QColor: ... method fromRgb (line 1280) | def fromRgb(rgb: int, /) -> QColor: ... method fromRgbF (line 1282) | def fromRgbF(r: float, g: float, b: float, /, a: float = ...) -> QColo... method fromRgba (line 1284) | def fromRgba(rgba: int, /) -> QColor: ... method fromRgba64 (line 1287) | def fromRgba64(r: int, g: int, b: int, /, a: int = ...) -> QColor: ... method fromRgba64 (line 1290) | def fromRgba64(rgba: QRgba64, /) -> QColor: ... method fromString (line 1292) | def fromString(name: str, /) -> QColor: ... method getCmyk (line 1293) | def getCmyk(self, /) -> typing.Any: ... method getCmykF (line 1294) | def getCmykF(self, /) -> typing.Any: ... method getHsl (line 1295) | def getHsl(self, /) -> typing.Any: ... method getHslF (line 1296) | def getHslF(self, /) -> typing.Any: ... method getHsv (line 1297) | def getHsv(self, /) -> typing.Any: ... method getHsvF (line 1298) | def getHsvF(self, /) -> typing.Any: ... method getRgb (line 1299) | def getRgb(self, /) -> typing.Any: ... method getRgbF (line 1300) | def getRgbF(self, /) -> typing.Any: ... method green (line 1301) | def green(self, /) -> int: ... method greenF (line 1302) | def greenF(self, /) -> float: ... method hslHue (line 1303) | def hslHue(self, /) -> int: ... method hslHueF (line 1304) | def hslHueF(self, /) -> float: ... method hslSaturation (line 1305) | def hslSaturation(self, /) -> int: ... method hslSaturationF (line 1306) | def hslSaturationF(self, /) -> float: ... method hsvHue (line 1307) | def hsvHue(self, /) -> int: ... method hsvHueF (line 1308) | def hsvHueF(self, /) -> float: ... method hsvSaturation (line 1309) | def hsvSaturation(self, /) -> int: ... method hsvSaturationF (line 1310) | def hsvSaturationF(self, /) -> float: ... method hue (line 1311) | def hue(self, /) -> int: ... method hueF (line 1312) | def hueF(self, /) -> float: ... method isValid (line 1313) | def isValid(self, /) -> bool: ... method isValidColor (line 1315) | def isValidColor(arg__1: str, /) -> bool: ... method isValidColorName (line 1317) | def isValidColorName(arg__1: str, /) -> bool: ... method lighter (line 1318) | def lighter(self, /, f: int = ...) -> QColor: ... method lightness (line 1319) | def lightness(self, /) -> int: ... method lightnessF (line 1320) | def lightnessF(self, /) -> float: ... method magenta (line 1321) | def magenta(self, /) -> int: ... method magentaF (line 1322) | def magentaF(self, /) -> float: ... method name (line 1323) | def name(self, /, format: QColor.NameFormat = ...) -> str: ... method red (line 1324) | def red(self, /) -> int: ... method redF (line 1325) | def redF(self, /) -> float: ... method rgb (line 1326) | def rgb(self, /) -> int: ... method rgba (line 1327) | def rgba(self, /) -> int: ... method rgba64 (line 1328) | def rgba64(self, /) -> QRgba64: ... method saturation (line 1329) | def saturation(self, /) -> int: ... method saturationF (line 1330) | def saturationF(self, /) -> float: ... method setAlpha (line 1331) | def setAlpha(self, alpha: int, /) -> None: ... method setAlphaF (line 1332) | def setAlphaF(self, alpha: float, /) -> None: ... method setBlue (line 1333) | def setBlue(self, blue: int, /) -> None: ... method setBlueF (line 1334) | def setBlueF(self, blue: float, /) -> None: ... method setCmyk (line 1335) | def setCmyk(self, c: int, m: int, y: int, k: int, /, a: int = ...) -> ... method setCmykF (line 1336) | def setCmykF(self, c: float, m: float, y: float, k: float, /, a: float... method setGreen (line 1337) | def setGreen(self, green: int, /) -> None: ... method setGreenF (line 1338) | def setGreenF(self, green: float, /) -> None: ... method setHsl (line 1339) | def setHsl(self, h: int, s: int, l: int, /, a: int = ...) -> None: ... method setHslF (line 1340) | def setHslF(self, h: float, s: float, l: float, /, a: float = ...) -> ... method setHsv (line 1341) | def setHsv(self, h: int, s: int, v: int, /, a: int = ...) -> None: ... method setHsvF (line 1342) | def setHsvF(self, h: float, s: float, v: float, /, a: float = ...) -> ... method setNamedColor (line 1343) | def setNamedColor(self, name: str, /) -> None: ... method setRed (line 1344) | def setRed(self, red: int, /) -> None: ... method setRedF (line 1345) | def setRedF(self, red: float, /) -> None: ... method setRgb (line 1347) | def setRgb(self, r: int, g: int, b: int, /, a: int = ...) -> None: ... method setRgb (line 1349) | def setRgb(self, rgb: int, /) -> None: ... method setRgbF (line 1350) | def setRgbF(self, r: float, g: float, b: float, /, a: float = ...) -> ... method setRgba (line 1351) | def setRgba(self, rgba: int, /) -> None: ... method setRgba64 (line 1352) | def setRgba64(self, rgba: QRgba64, /) -> None: ... method spec (line 1353) | def spec(self, /) -> QColor.Spec: ... method toCmyk (line 1354) | def toCmyk(self, /) -> QColor: ... method toExtendedRgb (line 1355) | def toExtendedRgb(self, /) -> QColor: ... method toHsl (line 1356) | def toHsl(self, /) -> QColor: ... method toHsv (line 1357) | def toHsv(self, /) -> QColor: ... method toRgb (line 1358) | def toRgb(self, /) -> QColor: ... method toTuple (line 1359) | def toTuple(self, /) -> tuple: ... method value (line 1360) | def value(self, /) -> int: ... method valueF (line 1361) | def valueF(self, /) -> float: ... method yellow (line 1362) | def yellow(self, /) -> int: ... method yellowF (line 1363) | def yellowF(self, /) -> float: ... method __copy__ (line 1364) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1365) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1366) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1367) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1368) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1369) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 1370) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1371) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1372) | def __rlshift__(self, other): ... method __rrshift__ (line 1373) | def __rrshift__(self, other): ... method __rshift__ (line 1374) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QColorConstants (line 1376) | class QColorConstants(shiboken6.Object): class Svg (line 1377) | class Svg(shiboken6.Object): method __init__ (line 1525) | def __init__(self, *args, **kwargs) -> None: ... method __init__ (line 1546) | def __init__(self, *args, **kwargs) -> None: ... class QColorSpace (line 1548) | class QColorSpace(shiboken6.Object): class ColorModel (line 1549) | class ColorModel(enum.Enum): class NamedColorSpace (line 1555) | class NamedColorSpace(enum.Enum): class Primaries (line 1565) | class Primaries(enum.Enum): class TransferFunction (line 1573) | class TransferFunction(enum.Enum): class TransformModel (line 1583) | class TransformModel(enum.Enum): method __init__ (line 1587) | def __init__(self, whitePoint: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1589) | def __init__(self, whitePoint: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1591) | def __init__(self, whitePoint: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1593) | def __init__(self, whitePoint: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1595) | def __init__(self, primaries: QColorSpace.Primaries, transferFunction:... method __init__ (line 1597) | def __init__(self, whitePoint: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 1599) | def __init__(self, primaries: QColorSpace.Primaries, transferFunctionT... method __init__ (line 1601) | def __init__(self, primaries: QColorSpace.Primaries, gamma: float, /) ... method __init__ (line 1603) | def __init__(self, namedColorSpace: QColorSpace.NamedColorSpace, /) ->... method __init__ (line 1605) | def __init__(self, colorSpace: QColorSpace, /) -> None: ... method __init__ (line 1607) | def __init__(self, /) -> None: ... method colorModel (line 1608) | def colorModel(self, /) -> QColorSpace.ColorModel: ... method description (line 1609) | def description(self, /) -> str: ... method fromIccProfile (line 1611) | def fromIccProfile(iccProfile: PySide6.QtCore.QByteArray | bytes | byt... method gamma (line 1612) | def gamma(self, /) -> float: ... method iccProfile (line 1613) | def iccProfile(self, /) -> PySide6.QtCore.QByteArray: ... method isValid (line 1614) | def isValid(self, /) -> bool: ... method isValidTarget (line 1615) | def isValidTarget(self, /) -> bool: ... method primaries (line 1616) | def primaries(self, /) -> QColorSpace.Primaries: ... method setDescription (line 1617) | def setDescription(self, description: str, /) -> None: ... method setPrimaries (line 1619) | def setPrimaries(self, whitePoint: PySide6.QtCore.QPointF | PySide6.Qt... method setPrimaries (line 1621) | def setPrimaries(self, primariesId: QColorSpace.Primaries, /) -> None:... method setTransferFunction (line 1623) | def setTransferFunction(self, transferFunction: QColorSpace.TransferFu... method setTransferFunction (line 1625) | def setTransferFunction(self, transferFunctionTable: typing.Iterable[i... method setTransferFunctions (line 1626) | def setTransferFunctions(self, redTransferFunctionTable: typing.Iterab... method setWhitePoint (line 1627) | def setWhitePoint(self, whitePoint: PySide6.QtCore.QPointF | PySide6.Q... method swap (line 1628) | def swap(self, colorSpace: QColorSpace | QColorSpace.NamedColorSpace, ... method transferFunction (line 1629) | def transferFunction(self, /) -> QColorSpace.TransferFunction: ... method transformModel (line 1630) | def transformModel(self, /) -> QColorSpace.TransformModel: ... method transformationToColorSpace (line 1631) | def transformationToColorSpace(self, colorspace: QColorSpace | QColorS... method whitePoint (line 1632) | def whitePoint(self, /) -> PySide6.QtCore.QPointF: ... method withTransferFunction (line 1634) | def withTransferFunction(self, transferFunction: QColorSpace.TransferF... method withTransferFunction (line 1636) | def withTransferFunction(self, transferFunctionTable: typing.Iterable[... method withTransferFunctions (line 1637) | def withTransferFunctions(self, redTransferFunctionTable: typing.Itera... method __copy__ (line 1638) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1639) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1640) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1641) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1642) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1643) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 1644) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1645) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1646) | def __rlshift__(self, other): ... method __rrshift__ (line 1647) | def __rrshift__(self, other): ... method __rshift__ (line 1648) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QColorTransform (line 1650) | class QColorTransform(shiboken6.Object): method __init__ (line 1652) | def __init__(self, colorTransform: QColorTransform, /) -> None: ... method __init__ (line 1654) | def __init__(self, /) -> None: ... method isIdentity (line 1655) | def isIdentity(self, /) -> bool: ... method map (line 1657) | def map(self, rgba64: QRgba64, /) -> QRgba64: ... # type: ignore[over... method map (line 1659) | def map(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtCore.Q... method map (line 1661) | def map(self, argb: int, /) -> int: ... # type: ignore[overload-canno... method swap (line 1662) | def swap(self, other: QColorTransform, /) -> None: ... method __copy__ (line 1663) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1664) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1665) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1666) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1667) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1668) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1669) | def __ne__(self, other: object) -> bool: ... class QConicalGradient (line 1671) | class QConicalGradient(QGradient): method __init__ (line 1673) | def __init__(self, cx: float, cy: float, startAngle: float, /) -> None... method __init__ (line 1675) | def __init__(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method __init__ (line 1677) | def __init__(self, QConicalGradient: QConicalGradient, /) -> None: ... method __init__ (line 1679) | def __init__(self, /) -> None: ... method angle (line 1680) | def angle(self, /) -> float: ... method center (line 1681) | def center(self, /) -> PySide6.QtCore.QPointF: ... method setAngle (line 1682) | def setAngle(self, angle: float, /) -> None: ... method setCenter (line 1684) | def setCenter(self, x: float, y: float, /) -> None: ... method setCenter (line 1686) | def setCenter(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method __copy__ (line 1687) | def __copy__(self, /) -> typing_extensions.Self: ... class QContextMenuEvent (line 1689) | class QContextMenuEvent(QInputEvent): class Reason (line 1690) | class Reason(enum.Enum): method __init__ (line 1695) | def __init__(self, reason: QContextMenuEvent.Reason, pos: PySide6.QtCo... method __init__ (line 1697) | def __init__(self, reason: QContextMenuEvent.Reason, pos: PySide6.QtCo... method __init__ (line 1699) | def __init__(self, arg__1: QContextMenuEvent, /) -> None: ... method clone (line 1700) | def clone(self, /) -> QContextMenuEvent: ... method globalPos (line 1701) | def globalPos(self, /) -> PySide6.QtCore.QPoint: ... method globalX (line 1702) | def globalX(self, /) -> int: ... method globalY (line 1703) | def globalY(self, /) -> int: ... method pos (line 1704) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method reason (line 1705) | def reason(self, /) -> QContextMenuEvent.Reason: ... method x (line 1706) | def x(self, /) -> int: ... method y (line 1707) | def y(self, /) -> int: ... class QCursor (line 1709) | class QCursor(shiboken6.Object): method __init__ (line 1711) | def __init__(self, bitmap: QBitmap | str, mask: QBitmap | str, /, hotX... method __init__ (line 1713) | def __init__(self, pixmap: QPixmap | QImage, /, hotX: int = ..., hotY:... method __init__ (line 1715) | def __init__(self, shape: PySide6.QtCore.Qt.CursorShape, /) -> None: ... method __init__ (line 1717) | def __init__(self, cursor: QCursor | PySide6.QtCore.Qt.CursorShape, /)... method __init__ (line 1719) | def __init__(self, /) -> None: ... method bitmap (line 1721) | def bitmap(self, arg__1: PySide6.QtCore.Qt.ReturnByValueConstant, /) -... method bitmap (line 1723) | def bitmap(self, /) -> QBitmap: ... method hotSpot (line 1724) | def hotSpot(self, /) -> PySide6.QtCore.QPoint: ... method mask (line 1726) | def mask(self, arg__1: PySide6.QtCore.Qt.ReturnByValueConstant, /) -> ... method mask (line 1728) | def mask(self, /) -> QBitmap: ... method pixmap (line 1729) | def pixmap(self, /) -> QPixmap: ... method pos (line 1732) | def pos(screen: QScreen, /) -> PySide6.QtCore.QPoint: ... method pos (line 1735) | def pos() -> PySide6.QtCore.QPoint: ... method setPos (line 1738) | def setPos(screen: QScreen, x: int, y: int, /) -> None: ... method setPos (line 1741) | def setPos(x: int, y: int, /) -> None: ... method setPos (line 1744) | def setPos(screen: QScreen, p: PySide6.QtCore.QPoint, /) -> None: ... method setPos (line 1747) | def setPos(p: PySide6.QtCore.QPoint, /) -> None: ... method setShape (line 1748) | def setShape(self, newShape: PySide6.QtCore.Qt.CursorShape, /) -> None... method shape (line 1749) | def shape(self, /) -> PySide6.QtCore.Qt.CursorShape: ... method swap (line 1750) | def swap(self, other: QCursor | PySide6.QtCore.Qt.CursorShape | QPixma... method __copy__ (line 1751) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1752) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1753) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1754) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1755) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1756) | def __lshift__(self, outS: PySide6.QtCore.QDataStream, /) -> PySide6.Q... method __lt__ (line 1757) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1758) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1759) | def __rlshift__(self, other): ... method __rrshift__ (line 1760) | def __rrshift__(self, other): ... method __rshift__ (line 1761) | def __rshift__(self, inS: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... class QDesktopServices (line 1763) | class QDesktopServices(shiboken6.Object): method __init__ (line 1764) | def __init__(self, /) -> None: ... method openUrl (line 1766) | def openUrl(url: PySide6.QtCore.QUrl | str, /) -> bool: ... method setUrlHandler (line 1768) | def setUrlHandler(scheme: str, receiver: PySide6.QtCore.QObject, metho... method unsetUrlHandler (line 1770) | def unsetUrlHandler(scheme: str, /) -> None: ... class QDoubleValidator (line 1772) | class QDoubleValidator(QValidator): class Notation (line 1773) | class Notation(enum.Enum): method __init__ (line 1782) | def __init__(self, bottom: float, top: float, decimals: int, /, parent... method __init__ (line 1784) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method bottom (line 1785) | def bottom(self, /) -> float: ... method decimals (line 1786) | def decimals(self, /) -> int: ... method fixup (line 1787) | def fixup(self, input: str, /) -> str: ... method notation (line 1788) | def notation(self, /) -> QDoubleValidator.Notation: ... method setBottom (line 1789) | def setBottom(self, arg__1: float, /) -> None: ... method setDecimals (line 1790) | def setDecimals(self, arg__1: int, /) -> None: ... method setNotation (line 1791) | def setNotation(self, arg__1: QDoubleValidator.Notation, /) -> None: ... method setRange (line 1793) | def setRange(self, bottom: float, top: float, decimals: int, /) -> Non... method setRange (line 1795) | def setRange(self, bottom: float, top: float, /) -> None: ... method setTop (line 1796) | def setTop(self, arg__1: float, /) -> None: ... method top (line 1797) | def top(self, /) -> float: ... method validate (line 1798) | def validate(self, arg__1: str, arg__2: int, /) -> typing.Any: ... class QDrag (line 1800) | class QDrag(PySide6.QtCore.QObject): method __init__ (line 1804) | def __init__(self, dragSource: PySide6.QtCore.QObject, /, destroyed: t... method cancel (line 1806) | def cancel() -> None: ... method defaultAction (line 1807) | def defaultAction(self, /) -> PySide6.QtCore.Qt.DropAction: ... method dragCursor (line 1808) | def dragCursor(self, action: PySide6.QtCore.Qt.DropAction, /) -> QPixm... method exec (line 1810) | def exec(self, supportedActions: PySide6.QtCore.Qt.DropAction, default... method exec (line 1812) | def exec(self, /, supportedActions: PySide6.QtCore.Qt.DropAction = ...... method exec_ (line 1814) | def exec_(self, arg__1: PySide6.QtCore.Qt.DropAction, arg__2: PySide6.... method exec_ (line 1816) | def exec_(self, /, supportedActions: PySide6.QtCore.Qt.DropAction = ..... method hotSpot (line 1817) | def hotSpot(self, /) -> PySide6.QtCore.QPoint: ... method mimeData (line 1818) | def mimeData(self, /) -> PySide6.QtCore.QMimeData: ... method pixmap (line 1819) | def pixmap(self, /) -> QPixmap: ... method setDragCursor (line 1820) | def setDragCursor(self, cursor: QPixmap | QImage, action: PySide6.QtCo... method setHotSpot (line 1821) | def setHotSpot(self, hotspot: PySide6.QtCore.QPoint, /) -> None: ... method setMimeData (line 1822) | def setMimeData(self, data: PySide6.QtCore.QMimeData, /) -> None: ... method setPixmap (line 1823) | def setPixmap(self, arg__1: QPixmap | QImage, /) -> None: ... method source (line 1824) | def source(self, /) -> PySide6.QtCore.QObject: ... method supportedActions (line 1825) | def supportedActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method target (line 1826) | def target(self, /) -> PySide6.QtCore.QObject: ... class QDragEnterEvent (line 1828) | class QDragEnterEvent(QDragMoveEvent): method __init__ (line 1830) | def __init__(self, pos: PySide6.QtCore.QPoint, actions: PySide6.QtCore... method __init__ (line 1832) | def __init__(self, arg__1: QDragEnterEvent, /) -> None: ... method clone (line 1833) | def clone(self, /) -> QDragEnterEvent: ... class QDragLeaveEvent (line 1835) | class QDragLeaveEvent(PySide6.QtCore.QEvent): method __init__ (line 1837) | def __init__(self, arg__1: QDragLeaveEvent, /) -> None: ... method __init__ (line 1839) | def __init__(self, /) -> None: ... method clone (line 1840) | def clone(self, /) -> QDragLeaveEvent: ... class QDragMoveEvent (line 1842) | class QDragMoveEvent(QDropEvent): method __init__ (line 1844) | def __init__(self, pos: PySide6.QtCore.QPoint, actions: PySide6.QtCore... method __init__ (line 1846) | def __init__(self, arg__1: QDragMoveEvent, /) -> None: ... method accept (line 1848) | def accept(self, r: PySide6.QtCore.QRect, /) -> None: ... method accept (line 1850) | def accept(self, /) -> None: ... method answerRect (line 1851) | def answerRect(self, /) -> PySide6.QtCore.QRect: ... method clone (line 1852) | def clone(self, /) -> QDragMoveEvent: ... method ignore (line 1854) | def ignore(self, r: PySide6.QtCore.QRect, /) -> None: ... method ignore (line 1856) | def ignore(self, /) -> None: ... class QDropEvent (line 1858) | class QDropEvent(PySide6.QtCore.QEvent): method __init__ (line 1860) | def __init__(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method __init__ (line 1862) | def __init__(self, arg__1: QDropEvent, /) -> None: ... method acceptProposedAction (line 1863) | def acceptProposedAction(self, /) -> None: ... method buttons (line 1864) | def buttons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method clone (line 1865) | def clone(self, /) -> QDropEvent: ... method dropAction (line 1866) | def dropAction(self, /) -> PySide6.QtCore.Qt.DropAction: ... method keyboardModifiers (line 1867) | def keyboardModifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method mimeData (line 1868) | def mimeData(self, /) -> PySide6.QtCore.QMimeData: ... method modifiers (line 1869) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method mouseButtons (line 1870) | def mouseButtons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method pos (line 1871) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method posF (line 1872) | def posF(self, /) -> PySide6.QtCore.QPointF: ... method position (line 1873) | def position(self, /) -> PySide6.QtCore.QPointF: ... method possibleActions (line 1874) | def possibleActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method proposedAction (line 1875) | def proposedAction(self, /) -> PySide6.QtCore.Qt.DropAction: ... method setDropAction (line 1876) | def setDropAction(self, action: PySide6.QtCore.Qt.DropAction, /) -> No... method source (line 1877) | def source(self, /) -> PySide6.QtCore.QObject: ... class QEnterEvent (line 1879) | class QEnterEvent(QSinglePointEvent): method __init__ (line 1881) | def __init__(self, localPos: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method __init__ (line 1883) | def __init__(self, arg__1: QEnterEvent, /) -> None: ... method clone (line 1884) | def clone(self, /) -> QEnterEvent: ... method globalPos (line 1885) | def globalPos(self, /) -> PySide6.QtCore.QPoint: ... method globalX (line 1886) | def globalX(self, /) -> int: ... method globalY (line 1887) | def globalY(self, /) -> int: ... method localPos (line 1888) | def localPos(self, /) -> PySide6.QtCore.QPointF: ... method pos (line 1889) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method screenPos (line 1890) | def screenPos(self, /) -> PySide6.QtCore.QPointF: ... method windowPos (line 1891) | def windowPos(self, /) -> PySide6.QtCore.QPointF: ... method x (line 1892) | def x(self, /) -> int: ... method y (line 1893) | def y(self, /) -> int: ... class QEventPoint (line 1895) | class QEventPoint(shiboken6.Object): class State (line 1896) | class State(enum.Enum): method __init__ (line 1903) | def __init__(self, pointId: int, state: QEventPoint.State, scenePositi... method __init__ (line 1905) | def __init__(self, other: QEventPoint, /, *, accepted: bool | None = .... method __init__ (line 1907) | def __init__(self, /, id: int = ..., device: QPointingDevice | None = ... method device (line 1908) | def device(self, /) -> QPointingDevice: ... method ellipseDiameters (line 1909) | def ellipseDiameters(self, /) -> PySide6.QtCore.QSizeF: ... method globalGrabPosition (line 1910) | def globalGrabPosition(self, /) -> PySide6.QtCore.QPointF: ... method globalLastPosition (line 1911) | def globalLastPosition(self, /) -> PySide6.QtCore.QPointF: ... method globalPosition (line 1912) | def globalPosition(self, /) -> PySide6.QtCore.QPointF: ... method globalPressPosition (line 1913) | def globalPressPosition(self, /) -> PySide6.QtCore.QPointF: ... method grabPosition (line 1914) | def grabPosition(self, /) -> PySide6.QtCore.QPointF: ... method id (line 1915) | def id(self, /) -> int: ... method isAccepted (line 1916) | def isAccepted(self, /) -> bool: ... method lastNormalizedPos (line 1917) | def lastNormalizedPos(self, /) -> PySide6.QtCore.QPointF: ... method lastPos (line 1918) | def lastPos(self, /) -> PySide6.QtCore.QPointF: ... method lastPosition (line 1919) | def lastPosition(self, /) -> PySide6.QtCore.QPointF: ... method lastScenePos (line 1920) | def lastScenePos(self, /) -> PySide6.QtCore.QPointF: ... method lastScreenPos (line 1921) | def lastScreenPos(self, /) -> PySide6.QtCore.QPointF: ... method lastTimestamp (line 1922) | def lastTimestamp(self, /) -> int: ... method normalizedPos (line 1923) | def normalizedPos(self, /) -> PySide6.QtCore.QPointF: ... method normalizedPosition (line 1924) | def normalizedPosition(self, /) -> PySide6.QtCore.QPointF: ... method pos (line 1925) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method position (line 1926) | def position(self, /) -> PySide6.QtCore.QPointF: ... method pressPosition (line 1927) | def pressPosition(self, /) -> PySide6.QtCore.QPointF: ... method pressTimestamp (line 1928) | def pressTimestamp(self, /) -> int: ... method pressure (line 1929) | def pressure(self, /) -> float: ... method rotation (line 1930) | def rotation(self, /) -> float: ... method sceneGrabPosition (line 1931) | def sceneGrabPosition(self, /) -> PySide6.QtCore.QPointF: ... method sceneLastPosition (line 1932) | def sceneLastPosition(self, /) -> PySide6.QtCore.QPointF: ... method scenePos (line 1933) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method scenePosition (line 1934) | def scenePosition(self, /) -> PySide6.QtCore.QPointF: ... method scenePressPosition (line 1935) | def scenePressPosition(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 1936) | def screenPos(self, /) -> PySide6.QtCore.QPointF: ... method setAccepted (line 1937) | def setAccepted(self, /, accepted: bool = ...) -> None: ... method startNormalizedPos (line 1938) | def startNormalizedPos(self, /) -> PySide6.QtCore.QPointF: ... method startPos (line 1939) | def startPos(self, /) -> PySide6.QtCore.QPointF: ... method startScenePos (line 1940) | def startScenePos(self, /) -> PySide6.QtCore.QPointF: ... method startScreenPos (line 1941) | def startScreenPos(self, /) -> PySide6.QtCore.QPointF: ... method state (line 1942) | def state(self, /) -> QEventPoint.State: ... method swap (line 1943) | def swap(self, other: QEventPoint, /) -> None: ... method timeHeld (line 1944) | def timeHeld(self, /) -> float: ... method timestamp (line 1945) | def timestamp(self, /) -> int: ... method uniqueId (line 1946) | def uniqueId(self, /) -> QPointingDeviceUniqueId: ... method velocity (line 1947) | def velocity(self, /) -> QVector2D: ... method __copy__ (line 1948) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1949) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1950) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1951) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1952) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1953) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1954) | def __ne__(self, other: object) -> bool: ... class QExposeEvent (line 1956) | class QExposeEvent(PySide6.QtCore.QEvent): method __init__ (line 1958) | def __init__(self, m_region: QRegion | QBitmap | QPolygon | PySide6.Qt... method __init__ (line 1960) | def __init__(self, arg__1: QExposeEvent, /) -> None: ... method clone (line 1961) | def clone(self, /) -> QExposeEvent: ... method region (line 1962) | def region(self, /) -> QRegion: ... class QFileOpenEvent (line 1964) | class QFileOpenEvent(PySide6.QtCore.QEvent): method __init__ (line 1966) | def __init__(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method __init__ (line 1968) | def __init__(self, file: str, /) -> None: ... # type: ignore[overload... method __init__ (line 1970) | def __init__(self, arg__1: QFileOpenEvent, /) -> None: ... method clone (line 1971) | def clone(self, /) -> QFileOpenEvent: ... method file (line 1972) | def file(self, /) -> str: ... method openFile (line 1973) | def openFile(self, file: PySide6.QtCore.QFile, flags: PySide6.QtCore.Q... method url (line 1974) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QFocusEvent (line 1976) | class QFocusEvent(PySide6.QtCore.QEvent): method __init__ (line 1978) | def __init__(self, type: PySide6.QtCore.QEvent.Type, /, reason: PySide... method __init__ (line 1980) | def __init__(self, arg__1: QFocusEvent, /) -> None: ... method clone (line 1981) | def clone(self, /) -> QFocusEvent: ... method gotFocus (line 1982) | def gotFocus(self, /) -> bool: ... method lostFocus (line 1983) | def lostFocus(self, /) -> bool: ... method reason (line 1984) | def reason(self, /) -> PySide6.QtCore.Qt.FocusReason: ... class QFont (line 1986) | class QFont(shiboken6.Object): class Capitalization (line 1987) | class Capitalization(enum.Enum): class HintingPreference (line 1994) | class HintingPreference(enum.Enum): class SpacingType (line 2000) | class SpacingType(enum.Enum): class Stretch (line 2004) | class Stretch(enum.IntEnum): class Style (line 2016) | class Style(enum.Enum): class StyleHint (line 2021) | class StyleHint(enum.Enum): class StyleStrategy (line 2036) | class StyleStrategy(enum.Flag): class Tag (line 2052) | class Tag(shiboken6.Object): method __init__ (line 2054) | def __init__(self, name: str, /) -> None: ... method __init__ (line 2056) | def __init__(self, Tag: QFont.Tag, /) -> None: ... method __init__ (line 2058) | def __init__(self, /) -> None: ... method fromString (line 2060) | def fromString(name: str, /) -> QFont.Tag: ... method fromValue (line 2062) | def fromValue(value: int, /) -> QFont.Tag: ... method isValid (line 2063) | def isValid(self, /) -> bool: ... method toString (line 2064) | def toString(self, /) -> PySide6.QtCore.QByteArray: ... method value (line 2065) | def value(self, /) -> int: ... method __copy__ (line 2066) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2067) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2068) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2069) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2070) | def __hash__(self, /) -> int: ... method __le__ (line 2071) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2072) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2073) | def __ne__(self, other: object) -> bool: ... class Weight (line 2075) | class Weight(enum.IntEnum): method __init__ (line 2086) | def __init__(self, family: str, /, pointSize: int = ..., weight: typin... method __init__ (line 2088) | def __init__(self, families: typing.Iterable[str], /, pointSize: int =... method __init__ (line 2090) | def __init__(self, font: QFont | str | typing.Iterable[str], pd: QPain... method __init__ (line 2092) | def __init__(self, font: QFont, /) -> None: ... method __init__ (line 2094) | def __init__(self, /) -> None: ... method bold (line 2095) | def bold(self, /) -> bool: ... method cacheStatistics (line 2097) | def cacheStatistics() -> None: ... method capitalization (line 2098) | def capitalization(self, /) -> QFont.Capitalization: ... method cleanup (line 2100) | def cleanup() -> None: ... method clearFeatures (line 2101) | def clearFeatures(self, /) -> None: ... method clearVariableAxes (line 2102) | def clearVariableAxes(self, /) -> None: ... method defaultFamily (line 2103) | def defaultFamily(self, /) -> str: ... method exactMatch (line 2104) | def exactMatch(self, /) -> bool: ... method families (line 2105) | def families(self, /) -> List[str]: ... method family (line 2106) | def family(self, /) -> str: ... method featureTags (line 2107) | def featureTags(self, /) -> List[QFont.Tag]: ... method featureValue (line 2108) | def featureValue(self, tag: QFont.Tag | str, /) -> int: ... method fixedPitch (line 2109) | def fixedPitch(self, /) -> bool: ... method fromString (line 2110) | def fromString(self, arg__1: str, /) -> bool: ... method hintingPreference (line 2111) | def hintingPreference(self, /) -> QFont.HintingPreference: ... method initialize (line 2113) | def initialize() -> None: ... method insertSubstitution (line 2115) | def insertSubstitution(arg__1: str, arg__2: str, /) -> None: ... method insertSubstitutions (line 2117) | def insertSubstitutions(arg__1: str, arg__2: typing.Iterable[str], /) ... method isCopyOf (line 2118) | def isCopyOf(self, arg__1: QFont | str | typing.Iterable[str], /) -> b... method isFeatureSet (line 2119) | def isFeatureSet(self, tag: QFont.Tag | str, /) -> bool: ... method isVariableAxisSet (line 2120) | def isVariableAxisSet(self, tag: QFont.Tag | str, /) -> bool: ... method italic (line 2121) | def italic(self, /) -> bool: ... method kerning (line 2122) | def kerning(self, /) -> bool: ... method key (line 2123) | def key(self, /) -> str: ... method legacyWeight (line 2124) | def legacyWeight(self, /) -> int: ... method letterSpacing (line 2125) | def letterSpacing(self, /) -> float: ... method letterSpacingType (line 2126) | def letterSpacingType(self, /) -> QFont.SpacingType: ... method overline (line 2127) | def overline(self, /) -> bool: ... method pixelSize (line 2128) | def pixelSize(self, /) -> int: ... method pointSize (line 2129) | def pointSize(self, /) -> int: ... method pointSizeF (line 2130) | def pointSizeF(self, /) -> float: ... method removeSubstitutions (line 2132) | def removeSubstitutions(arg__1: str, /) -> None: ... method resolve (line 2133) | def resolve(self, arg__1: QFont | str | typing.Iterable[str], /) -> QF... method resolveMask (line 2134) | def resolveMask(self, /) -> int: ... method setBold (line 2135) | def setBold(self, arg__1: bool, /) -> None: ... method setCapitalization (line 2136) | def setCapitalization(self, arg__1: QFont.Capitalization, /) -> None: ... method setFamilies (line 2137) | def setFamilies(self, arg__1: typing.Iterable[str], /) -> None: ... method setFamily (line 2138) | def setFamily(self, arg__1: str, /) -> None: ... method setFeature (line 2139) | def setFeature(self, tag: QFont.Tag | str, value: int, /) -> None: ... method setFixedPitch (line 2140) | def setFixedPitch(self, arg__1: bool, /) -> None: ... method setHintingPreference (line 2141) | def setHintingPreference(self, hintingPreference: QFont.HintingPrefere... method setItalic (line 2142) | def setItalic(self, b: bool, /) -> None: ... method setKerning (line 2143) | def setKerning(self, arg__1: bool, /) -> None: ... method setLegacyWeight (line 2144) | def setLegacyWeight(self, legacyWeight: int, /) -> None: ... method setLetterSpacing (line 2145) | def setLetterSpacing(self, type: QFont.SpacingType, spacing: float, /)... method setOverline (line 2146) | def setOverline(self, arg__1: bool, /) -> None: ... method setPixelSize (line 2147) | def setPixelSize(self, arg__1: int, /) -> None: ... method setPointSize (line 2148) | def setPointSize(self, arg__1: int, /) -> None: ... method setPointSizeF (line 2149) | def setPointSizeF(self, arg__1: float, /) -> None: ... method setResolveMask (line 2150) | def setResolveMask(self, mask: int, /) -> None: ... method setStretch (line 2151) | def setStretch(self, arg__1: int, /) -> None: ... method setStrikeOut (line 2152) | def setStrikeOut(self, arg__1: bool, /) -> None: ... method setStyle (line 2153) | def setStyle(self, style: QFont.Style, /) -> None: ... method setStyleHint (line 2154) | def setStyleHint(self, arg__1: QFont.StyleHint, /, strategy: QFont.Sty... method setStyleName (line 2155) | def setStyleName(self, arg__1: str, /) -> None: ... method setStyleStrategy (line 2156) | def setStyleStrategy(self, s: QFont.StyleStrategy, /) -> None: ... method setUnderline (line 2157) | def setUnderline(self, arg__1: bool, /) -> None: ... method setVariableAxis (line 2158) | def setVariableAxis(self, tag: QFont.Tag | str, value: float, /) -> No... method setWeight (line 2159) | def setWeight(self, weight: int | QFont.Weight, /) -> None: ... method setWordSpacing (line 2160) | def setWordSpacing(self, spacing: float, /) -> None: ... method stretch (line 2161) | def stretch(self, /) -> int: ... method strikeOut (line 2162) | def strikeOut(self, /) -> bool: ... method style (line 2163) | def style(self, /) -> QFont.Style: ... method styleHint (line 2164) | def styleHint(self, /) -> QFont.StyleHint: ... method styleName (line 2165) | def styleName(self, /) -> str: ... method styleStrategy (line 2166) | def styleStrategy(self, /) -> QFont.StyleStrategy: ... method substitute (line 2168) | def substitute(arg__1: str, /) -> str: ... method substitutes (line 2170) | def substitutes(arg__1: str, /) -> List[str]: ... method substitutions (line 2172) | def substitutions() -> List[str]: ... method swap (line 2173) | def swap(self, other: QFont | str | typing.Iterable[str], /) -> None: ... method toString (line 2174) | def toString(self, /) -> str: ... method underline (line 2175) | def underline(self, /) -> bool: ... method unsetFeature (line 2176) | def unsetFeature(self, tag: QFont.Tag | str, /) -> None: ... method unsetVariableAxis (line 2177) | def unsetVariableAxis(self, tag: QFont.Tag | str, /) -> None: ... method variableAxisTags (line 2178) | def variableAxisTags(self, /) -> List[QFont.Tag]: ... method variableAxisValue (line 2179) | def variableAxisValue(self, tag: QFont.Tag | str, /) -> float: ... method weight (line 2180) | def weight(self, /) -> QFont.Weight: ... method wordSpacing (line 2181) | def wordSpacing(self, /) -> float: ... method __copy__ (line 2182) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2183) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2184) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2185) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2186) | def __hash__(self, /) -> int: ... method __le__ (line 2187) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 2188) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 2189) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2190) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 2191) | def __rlshift__(self, other): ... method __rrshift__ (line 2192) | def __rrshift__(self, other): ... method __rshift__ (line 2193) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QFontDatabase (line 2195) | class QFontDatabase(shiboken6.Object): class SystemFont (line 2196) | class SystemFont(enum.Enum): class WritingSystem (line 2202) | class WritingSystem(enum.Enum): method __init__ (line 2240) | def __init__(self, QFontDatabase: QFontDatabase, /) -> None: ... method __init__ (line 2242) | def __init__(self, /) -> None: ... method addApplicationEmojiFontFamily (line 2244) | def addApplicationEmojiFontFamily(familyName: str, /) -> None: ... method addApplicationFont (line 2246) | def addApplicationFont(fileName: str, /) -> int: ... method addApplicationFontFromData (line 2248) | def addApplicationFontFromData(fontData: PySide6.QtCore.QByteArray | b... method applicationEmojiFontFamilies (line 2250) | def applicationEmojiFontFamilies() -> List[str]: ... method applicationFontFamilies (line 2252) | def applicationFontFamilies(id: int, /) -> List[str]: ... method bold (line 2254) | def bold(family: str, style: str, /) -> bool: ... method families (line 2256) | def families(writingSystem: QFontDatabase.WritingSystem = ...) -> List... method font (line 2258) | def font(family: str, style: str, pointSize: int, /) -> QFont: ... method hasFamily (line 2260) | def hasFamily(family: str, /) -> bool: ... method isBitmapScalable (line 2262) | def isBitmapScalable(family: str, /, style: str = ...) -> bool: ... method isFixedPitch (line 2264) | def isFixedPitch(family: str, /, style: str = ...) -> bool: ... method isPrivateFamily (line 2266) | def isPrivateFamily(family: str, /) -> bool: ... method isScalable (line 2268) | def isScalable(family: str, /, style: str = ...) -> bool: ... method isSmoothlyScalable (line 2270) | def isSmoothlyScalable(family: str, /, style: str = ...) -> bool: ... method italic (line 2272) | def italic(family: str, style: str, /) -> bool: ... method pointSizes (line 2274) | def pointSizes(family: str, /, style: str = ...) -> List[int]: ... method removeAllApplicationFonts (line 2276) | def removeAllApplicationFonts() -> bool: ... method removeApplicationEmojiFontFamily (line 2278) | def removeApplicationEmojiFontFamily(familyName: str, /) -> bool: ... method removeApplicationFont (line 2280) | def removeApplicationFont(id: int, /) -> bool: ... method setApplicationEmojiFontFamilies (line 2282) | def setApplicationEmojiFontFamilies(familyNames: typing.Iterable[str],... method smoothSizes (line 2284) | def smoothSizes(family: str, style: str, /) -> List[int]: ... method standardSizes (line 2286) | def standardSizes() -> List[int]: ... method styleString (line 2289) | def styleString(fontInfo: QFontInfo | QFont, /) -> str: ... method styleString (line 2292) | def styleString(font: QFont | str | typing.Iterable[str], /) -> str: ... method styles (line 2294) | def styles(family: str, /) -> List[str]: ... method systemFont (line 2296) | def systemFont(type: QFontDatabase.SystemFont, /) -> QFont: ... method weight (line 2298) | def weight(family: str, style: str, /) -> int: ... method writingSystemName (line 2300) | def writingSystemName(writingSystem: QFontDatabase.WritingSystem, /) -... method writingSystemSample (line 2302) | def writingSystemSample(writingSystem: QFontDatabase.WritingSystem, /)... method writingSystems (line 2305) | def writingSystems(family: str, /) -> List[QFontDatabase.WritingSystem... method writingSystems (line 2308) | def writingSystems() -> List[QFontDatabase.WritingSystem]: ... method __copy__ (line 2309) | def __copy__(self, /) -> typing_extensions.Self: ... class QFontInfo (line 2311) | class QFontInfo(shiboken6.Object): method __init__ (line 2313) | def __init__(self, arg__1: QFontInfo, /) -> None: ... method __init__ (line 2315) | def __init__(self, arg__1: QFont | str | typing.Iterable[str], /) -> N... method bold (line 2316) | def bold(self, /) -> bool: ... method exactMatch (line 2317) | def exactMatch(self, /) -> bool: ... method family (line 2318) | def family(self, /) -> str: ... method fixedPitch (line 2319) | def fixedPitch(self, /) -> bool: ... method italic (line 2320) | def italic(self, /) -> bool: ... method legacyWeight (line 2321) | def legacyWeight(self, /) -> int: ... method overline (line 2322) | def overline(self, /) -> bool: ... method pixelSize (line 2323) | def pixelSize(self, /) -> int: ... method pointSize (line 2324) | def pointSize(self, /) -> int: ... method pointSizeF (line 2325) | def pointSizeF(self, /) -> float: ... method strikeOut (line 2326) | def strikeOut(self, /) -> bool: ... method style (line 2327) | def style(self, /) -> QFont.Style: ... method styleHint (line 2328) | def styleHint(self, /) -> QFont.StyleHint: ... method styleName (line 2329) | def styleName(self, /) -> str: ... method swap (line 2330) | def swap(self, other: QFontInfo | QFont, /) -> None: ... method underline (line 2331) | def underline(self, /) -> bool: ... method variableAxes (line 2332) | def variableAxes(self, /) -> List[QFontVariableAxis]: ... method weight (line 2333) | def weight(self, /) -> int: ... method __copy__ (line 2334) | def __copy__(self, /) -> typing_extensions.Self: ... class QFontMetrics (line 2336) | class QFontMetrics(shiboken6.Object): method __init__ (line 2338) | def __init__(self, font: QFont | str | typing.Iterable[str], pd: QPain... method __init__ (line 2340) | def __init__(self, arg__1: QFontMetrics, /) -> None: ... method __init__ (line 2342) | def __init__(self, arg__1: QFont | str | typing.Iterable[str], /) -> N... method ascent (line 2343) | def ascent(self, /) -> int: ... method averageCharWidth (line 2344) | def averageCharWidth(self, /) -> int: ... method boundingRect (line 2346) | def boundingRect(self, x: int, y: int, w: int, h: int, flags: typing.S... method boundingRect (line 2348) | def boundingRect(self, r: PySide6.QtCore.QRect, flags: typing.Supports... method boundingRect (line 2350) | def boundingRect(self, text: str, textOption: QTextOption | PySide6.Qt... method boundingRect (line 2352) | def boundingRect(self, text: str, /) -> PySide6.QtCore.QRect: ... method boundingRectChar (line 2353) | def boundingRectChar(self, arg__1: int, /) -> PySide6.QtCore.QRect: ... method capHeight (line 2354) | def capHeight(self, /) -> int: ... method descent (line 2355) | def descent(self, /) -> int: ... method elidedText (line 2356) | def elidedText(self, text: str, mode: PySide6.QtCore.Qt.TextElideMode,... method fontDpi (line 2357) | def fontDpi(self, /) -> float: ... method height (line 2358) | def height(self, /) -> int: ... method horizontalAdvance (line 2360) | def horizontalAdvance(self, arg__1: str, textOption: QTextOption | PyS... method horizontalAdvance (line 2362) | def horizontalAdvance(self, arg__1: str, /, len: int = ...) -> int: ... method horizontalAdvanceChar (line 2363) | def horizontalAdvanceChar(self, arg__1: int, /) -> int: ... method inFont (line 2364) | def inFont(self, arg__1: str, /) -> bool: ... method inFontUcs4 (line 2365) | def inFontUcs4(self, ucs4: int, /) -> bool: ... method leading (line 2366) | def leading(self, /) -> int: ... method leftBearing (line 2367) | def leftBearing(self, arg__1: str, /) -> int: ... method lineSpacing (line 2368) | def lineSpacing(self, /) -> int: ... method lineWidth (line 2369) | def lineWidth(self, /) -> int: ... method maxWidth (line 2370) | def maxWidth(self, /) -> int: ... method minLeftBearing (line 2371) | def minLeftBearing(self, /) -> int: ... method minRightBearing (line 2372) | def minRightBearing(self, /) -> int: ... method overlinePos (line 2373) | def overlinePos(self, /) -> int: ... method rightBearing (line 2374) | def rightBearing(self, arg__1: str, /) -> int: ... method size (line 2375) | def size(self, flags: typing.SupportsInt, str: str, /, tabstops: int |... method strikeOutPos (line 2376) | def strikeOutPos(self, /) -> int: ... method swap (line 2377) | def swap(self, other: QFontMetrics, /) -> None: ... method tightBoundingRect (line 2379) | def tightBoundingRect(self, text: str, textOption: QTextOption | PySid... method tightBoundingRect (line 2381) | def tightBoundingRect(self, text: str, /) -> PySide6.QtCore.QRect: ... method underlinePos (line 2382) | def underlinePos(self, /) -> int: ... method xHeight (line 2383) | def xHeight(self, /) -> int: ... method __copy__ (line 2384) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2385) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2386) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2387) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2388) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2389) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2390) | def __ne__(self, other: object) -> bool: ... class QFontMetricsF (line 2392) | class QFontMetricsF(shiboken6.Object): method __init__ (line 2394) | def __init__(self, font: QFont | str | typing.Iterable[str], pd: QPain... method __init__ (line 2396) | def __init__(self, font: QFont | str | typing.Iterable[str], /) -> Non... method __init__ (line 2398) | def __init__(self, arg__1: QFontMetrics, /) -> None: ... method __init__ (line 2400) | def __init__(self, arg__1: QFontMetricsF, /) -> None: ... method ascent (line 2401) | def ascent(self, /) -> float: ... method averageCharWidth (line 2402) | def averageCharWidth(self, /) -> float: ... method boundingRect (line 2404) | def boundingRect(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method boundingRect (line 2406) | def boundingRect(self, text: str, textOption: QTextOption | PySide6.Qt... method boundingRect (line 2408) | def boundingRect(self, string: str, /) -> PySide6.QtCore.QRectF: ... method boundingRectChar (line 2409) | def boundingRectChar(self, arg__1: int, /) -> PySide6.QtCore.QRectF: ... method capHeight (line 2410) | def capHeight(self, /) -> float: ... method descent (line 2411) | def descent(self, /) -> float: ... method elidedText (line 2412) | def elidedText(self, text: str, mode: PySide6.QtCore.Qt.TextElideMode,... method fontDpi (line 2413) | def fontDpi(self, /) -> float: ... method height (line 2414) | def height(self, /) -> float: ... method horizontalAdvance (line 2416) | def horizontalAdvance(self, string: str, textOption: QTextOption | PyS... method horizontalAdvance (line 2418) | def horizontalAdvance(self, string: str, /, length: int = ...) -> floa... method horizontalAdvanceChar (line 2419) | def horizontalAdvanceChar(self, arg__1: int, /) -> float: ... method inFont (line 2420) | def inFont(self, arg__1: str, /) -> bool: ... method inFontUcs4 (line 2421) | def inFontUcs4(self, ucs4: int, /) -> bool: ... method leading (line 2422) | def leading(self, /) -> float: ... method leftBearing (line 2423) | def leftBearing(self, arg__1: str, /) -> float: ... method lineSpacing (line 2424) | def lineSpacing(self, /) -> float: ... method lineWidth (line 2425) | def lineWidth(self, /) -> float: ... method maxWidth (line 2426) | def maxWidth(self, /) -> float: ... method minLeftBearing (line 2427) | def minLeftBearing(self, /) -> float: ... method minRightBearing (line 2428) | def minRightBearing(self, /) -> float: ... method overlinePos (line 2429) | def overlinePos(self, /) -> float: ... method rightBearing (line 2430) | def rightBearing(self, arg__1: str, /) -> float: ... method size (line 2431) | def size(self, flags: typing.SupportsInt, str: str, /, tabstops: int |... method strikeOutPos (line 2432) | def strikeOutPos(self, /) -> float: ... method swap (line 2433) | def swap(self, other: QFontMetricsF | QFontMetrics, /) -> None: ... method tightBoundingRect (line 2435) | def tightBoundingRect(self, text: str, textOption: QTextOption | PySid... method tightBoundingRect (line 2437) | def tightBoundingRect(self, text: str, /) -> PySide6.QtCore.QRectF: ... method underlinePos (line 2438) | def underlinePos(self, /) -> float: ... method xHeight (line 2439) | def xHeight(self, /) -> float: ... method __copy__ (line 2440) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2441) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2442) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2443) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2444) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2445) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2446) | def __ne__(self, other: object) -> bool: ... class QFontVariableAxis (line 2448) | class QFontVariableAxis(shiboken6.Object): method __init__ (line 2450) | def __init__(self, axis: QFontVariableAxis, /, *, tag: PySide6.QtCore.... method __init__ (line 2452) | def __init__(self, /, *, tag: PySide6.QtCore.QByteArray | bytes | byte... method defaultValue (line 2453) | def defaultValue(self, /) -> float: ... method maximumValue (line 2454) | def maximumValue(self, /) -> float: ... method minimumValue (line 2455) | def minimumValue(self, /) -> float: ... method name (line 2456) | def name(self, /) -> str: ... method setDefaultValue (line 2457) | def setDefaultValue(self, defaultValue: float, /) -> None: ... method setMaximumValue (line 2458) | def setMaximumValue(self, maximumValue: float, /) -> None: ... method setMinimumValue (line 2459) | def setMinimumValue(self, minimumValue: float, /) -> None: ... method setName (line 2460) | def setName(self, name: str, /) -> None: ... method setTag (line 2461) | def setTag(self, tag: QFont.Tag | str, /) -> None: ... method swap (line 2462) | def swap(self, other: QFontVariableAxis, /) -> None: ... method tag (line 2463) | def tag(self, /) -> QFont.Tag: ... method __copy__ (line 2464) | def __copy__(self, /) -> typing_extensions.Self: ... class QGlyphRun (line 2466) | class QGlyphRun(shiboken6.Object): class GlyphRunFlag (line 2467) | class GlyphRunFlag(enum.Flag): method __init__ (line 2474) | def __init__(self, other: QGlyphRun, /) -> None: ... method __init__ (line 2476) | def __init__(self, /) -> None: ... method boundingRect (line 2477) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method clear (line 2478) | def clear(self, /) -> None: ... method flags (line 2479) | def flags(self, /) -> QGlyphRun.GlyphRunFlag: ... method glyphIndexes (line 2480) | def glyphIndexes(self, /) -> List[int]: ... method isEmpty (line 2481) | def isEmpty(self, /) -> bool: ... method isRightToLeft (line 2482) | def isRightToLeft(self, /) -> bool: ... method overline (line 2483) | def overline(self, /) -> bool: ... method positions (line 2484) | def positions(self, /) -> List[PySide6.QtCore.QPointF]: ... method rawFont (line 2485) | def rawFont(self, /) -> QRawFont: ... method setBoundingRect (line 2486) | def setBoundingRect(self, boundingRect: PySide6.QtCore.QRectF | PySide... method setFlag (line 2487) | def setFlag(self, flag: QGlyphRun.GlyphRunFlag, /, enabled: bool = ...... method setFlags (line 2488) | def setFlags(self, flags: QGlyphRun.GlyphRunFlag, /) -> None: ... method setGlyphIndexes (line 2489) | def setGlyphIndexes(self, glyphIndexes: typing.Iterable[int], /) -> No... method setOverline (line 2490) | def setOverline(self, overline: bool, /) -> None: ... method setPositions (line 2491) | def setPositions(self, positions: typing.Iterable[PySide6.QtCore.QPoin... method setRawData (line 2492) | def setRawData(self, glyphIndexArray: int, glyphPositionArray: PySide6... method setRawFont (line 2493) | def setRawFont(self, rawFont: QRawFont, /) -> None: ... method setRightToLeft (line 2494) | def setRightToLeft(self, on: bool, /) -> None: ... method setSourceString (line 2495) | def setSourceString(self, sourceString: str, /) -> None: ... method setStrikeOut (line 2496) | def setStrikeOut(self, strikeOut: bool, /) -> None: ... method setStringIndexes (line 2497) | def setStringIndexes(self, stringIndexes: typing.Iterable[int], /) -> ... method setUnderline (line 2498) | def setUnderline(self, underline: bool, /) -> None: ... method sourceString (line 2499) | def sourceString(self, /) -> str: ... method strikeOut (line 2500) | def strikeOut(self, /) -> bool: ... method stringIndexes (line 2501) | def stringIndexes(self, /) -> List[int]: ... method swap (line 2502) | def swap(self, other: QGlyphRun, /) -> None: ... method underline (line 2503) | def underline(self, /) -> bool: ... method __copy__ (line 2504) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2505) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2506) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2507) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2508) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2509) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2510) | def __ne__(self, other: object) -> bool: ... class QGradient (line 2512) | class QGradient(shiboken6.Object): class CoordinateMode (line 2513) | class CoordinateMode(enum.Enum): class InterpolationMode (line 2519) | class InterpolationMode(enum.Enum): class Preset (line 2523) | class Preset(enum.Enum): class Spread (line 2694) | class Spread(enum.Enum): class Type (line 2699) | class Type(enum.Enum): method __init__ (line 2705) | def __init__(self, arg__1: QGradient.Preset, /) -> None: ... method __init__ (line 2707) | def __init__(self, QGradient: QGradient, /) -> None: ... method __init__ (line 2709) | def __init__(self, /) -> None: ... method coordinateMode (line 2710) | def coordinateMode(self, /) -> QGradient.CoordinateMode: ... method interpolationMode (line 2711) | def interpolationMode(self, /) -> QGradient.InterpolationMode: ... method setColorAt (line 2712) | def setColorAt(self, pos: float, color: Union[QColor, str, QRgba64, An... method setCoordinateMode (line 2713) | def setCoordinateMode(self, mode: QGradient.CoordinateMode, /) -> None... method setInterpolationMode (line 2714) | def setInterpolationMode(self, mode: QGradient.InterpolationMode, /) -... method setSpread (line 2715) | def setSpread(self, spread: QGradient.Spread, /) -> None: ... method setStops (line 2716) | def setStops(self, stops: typing.Iterable[tuple[float, QColor]], /) ->... method spread (line 2717) | def spread(self, /) -> QGradient.Spread: ... method stops (line 2718) | def stops(self, /) -> List[Tuple[float, QColor]]: ... method type (line 2719) | def type(self, /) -> QGradient.Type: ... method __copy__ (line 2720) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2721) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2722) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2723) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2724) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2725) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2726) | def __ne__(self, other: object) -> bool: ... class QGuiApplication (line 2728) | class QGuiApplication(PySide6.QtCore.QCoreApplication): method __init__ (line 2745) | def __init__(self, arguments: typing.Iterable[str], /, *, windowIcon: ... method __init__ (line 2747) | def __init__(self, /, *, windowIcon: QIcon | None = ..., applicationDi... method allWindows (line 2749) | def allWindows() -> List[QWindow]: ... method applicationDisplayName (line 2751) | def applicationDisplayName() -> str: ... method applicationState (line 2753) | def applicationState() -> PySide6.QtCore.Qt.ApplicationState: ... method changeOverrideCursor (line 2755) | def changeOverrideCursor(arg__1: QCursor | PySide6.QtCore.Qt.CursorSha... method clipboard (line 2757) | def clipboard() -> QClipboard: ... method desktopFileName (line 2759) | def desktopFileName() -> str: ... method desktopSettingsAware (line 2761) | def desktopSettingsAware() -> bool: ... method devicePixelRatio (line 2762) | def devicePixelRatio(self, /) -> float: ... method event (line 2763) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method exec (line 2765) | def exec() -> int: ... method exec_ (line 2766) | def exec_(self, /) -> int: ... method focusObject (line 2768) | def focusObject() -> PySide6.QtCore.QObject: ... method focusWindow (line 2770) | def focusWindow() -> QWindow: ... method font (line 2772) | def font() -> QFont: ... method highDpiScaleFactorRoundingPolicy (line 2774) | def highDpiScaleFactorRoundingPolicy() -> PySide6.QtCore.Qt.HighDpiSca... method inputMethod (line 2776) | def inputMethod() -> QInputMethod: ... method isLeftToRight (line 2778) | def isLeftToRight() -> bool: ... method isRightToLeft (line 2780) | def isRightToLeft() -> bool: ... method isSavingSession (line 2781) | def isSavingSession(self, /) -> bool: ... method isSessionRestored (line 2782) | def isSessionRestored(self, /) -> bool: ... method keyboardModifiers (line 2784) | def keyboardModifiers() -> PySide6.QtCore.Qt.KeyboardModifier: ... method layoutDirection (line 2786) | def layoutDirection() -> PySide6.QtCore.Qt.LayoutDirection: ... method modalWindow (line 2788) | def modalWindow() -> QWindow | None: ... method mouseButtons (line 2790) | def mouseButtons() -> PySide6.QtCore.Qt.MouseButton: ... method nativeInterface (line 2791) | def nativeInterface(self, /) -> typing.Any: ... method notify (line 2792) | def notify(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.QtCor... method overrideCursor (line 2794) | def overrideCursor() -> QCursor: ... method palette (line 2796) | def palette() -> QPalette: ... method platformFunction (line 2798) | def platformFunction(function: PySide6.QtCore.QByteArray | bytes | byt... method platformName (line 2800) | def platformName() -> str: ... method primaryScreen (line 2802) | def primaryScreen() -> QScreen: ... method queryKeyboardModifiers (line 2804) | def queryKeyboardModifiers() -> PySide6.QtCore.Qt.KeyboardModifier: ... method quitOnLastWindowClosed (line 2806) | def quitOnLastWindowClosed() -> bool: ... method resolveInterface (line 2807) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method restoreOverrideCursor (line 2809) | def restoreOverrideCursor() -> None: ... method screenAt (line 2811) | def screenAt(point: PySide6.QtCore.QPoint, /) -> QScreen | None: ... method screens (line 2813) | def screens() -> List[QScreen]: ... method sessionId (line 2814) | def sessionId(self, /) -> str: ... method sessionKey (line 2815) | def sessionKey(self, /) -> str: ... method setApplicationDisplayName (line 2817) | def setApplicationDisplayName(name: str, /) -> None: ... method setBadgeNumber (line 2818) | def setBadgeNumber(self, number: int, /) -> None: ... method setDesktopFileName (line 2820) | def setDesktopFileName(name: str, /) -> None: ... method setDesktopSettingsAware (line 2822) | def setDesktopSettingsAware(on: bool, /) -> None: ... method setFont (line 2824) | def setFont(arg__1: QFont | str | typing.Iterable[str], /) -> None: ... method setHighDpiScaleFactorRoundingPolicy (line 2826) | def setHighDpiScaleFactorRoundingPolicy(policy: PySide6.QtCore.Qt.High... method setLayoutDirection (line 2828) | def setLayoutDirection(direction: PySide6.QtCore.Qt.LayoutDirection, /... method setOverrideCursor (line 2830) | def setOverrideCursor(arg__1: QCursor | PySide6.QtCore.Qt.CursorShape ... method setPalette (line 2832) | def setPalette(pal: QPalette | PySide6.QtCore.Qt.GlobalColor | QColor,... method setQuitOnLastWindowClosed (line 2834) | def setQuitOnLastWindowClosed(quit: bool, /) -> None: ... method setWindowIcon (line 2836) | def setWindowIcon(icon: QIcon | QPixmap, /) -> None: ... method styleHints (line 2838) | def styleHints() -> QStyleHints: ... method sync (line 2840) | def sync() -> None: ... method topLevelAt (line 2842) | def topLevelAt(pos: PySide6.QtCore.QPoint, /) -> QWindow: ... method topLevelWindows (line 2844) | def topLevelWindows() -> List[QWindow]: ... method windowIcon (line 2846) | def windowIcon() -> QIcon: ... class QHelpEvent (line 2848) | class QHelpEvent(PySide6.QtCore.QEvent): method __init__ (line 2850) | def __init__(self, type: PySide6.QtCore.QEvent.Type, pos: PySide6.QtCo... method __init__ (line 2852) | def __init__(self, arg__1: QHelpEvent, /) -> None: ... method clone (line 2853) | def clone(self, /) -> QHelpEvent: ... method globalPos (line 2854) | def globalPos(self, /) -> PySide6.QtCore.QPoint: ... method globalX (line 2855) | def globalX(self, /) -> int: ... method globalY (line 2856) | def globalY(self, /) -> int: ... method pos (line 2857) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method x (line 2858) | def x(self, /) -> int: ... method y (line 2859) | def y(self, /) -> int: ... class QHideEvent (line 2861) | class QHideEvent(PySide6.QtCore.QEvent): method __init__ (line 2863) | def __init__(self, arg__1: QHideEvent, /) -> None: ... method __init__ (line 2865) | def __init__(self, /) -> None: ... method clone (line 2866) | def clone(self, /) -> QHideEvent: ... class QHoverEvent (line 2868) | class QHoverEvent(QSinglePointEvent): method __init__ (line 2870) | def __init__(self, type: PySide6.QtCore.QEvent.Type, scenePos: PySide6... method __init__ (line 2872) | def __init__(self, type: PySide6.QtCore.QEvent.Type, pos: PySide6.QtCo... method __init__ (line 2874) | def __init__(self, arg__1: QHoverEvent, /) -> None: ... method clone (line 2875) | def clone(self, /) -> QHoverEvent: ... method isUpdateEvent (line 2876) | def isUpdateEvent(self, /) -> bool: ... method oldPos (line 2877) | def oldPos(self, /) -> PySide6.QtCore.QPoint: ... method oldPosF (line 2878) | def oldPosF(self, /) -> PySide6.QtCore.QPointF: ... method pos (line 2879) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method posF (line 2880) | def posF(self, /) -> PySide6.QtCore.QPointF: ... class QIcon (line 2882) | class QIcon(shiboken6.Object): class Mode (line 2883) | class Mode(enum.Enum): class State (line 2889) | class State(enum.Enum): class ThemeIcon (line 2893) | class ThemeIcon(enum.Enum): method __init__ (line 3046) | def __init__(self, pixmap: QPixmap | QImage, /) -> None: ... method __init__ (line 3048) | def __init__(self, other: QIcon, /) -> None: ... method __init__ (line 3050) | def __init__(self, fileName: str, /) -> None: ... method __init__ (line 3052) | def __init__(self, engine: QIconEngine, /) -> None: ... method __init__ (line 3054) | def __init__(self, /) -> None: ... method actualSize (line 3056) | def actualSize(self, window: QWindow, size: PySide6.QtCore.QSize, /, m... method actualSize (line 3058) | def actualSize(self, size: PySide6.QtCore.QSize, /, mode: QIcon.Mode =... method addFile (line 3059) | def addFile(self, fileName: str, /, size: PySide6.QtCore.QSize = ..., ... method addPixmap (line 3061) | def addPixmap(self, pixmap: QPixmap | QImage, /, mode: QIcon.Mode = ..... method addPixmap (line 3063) | def addPixmap(self, path: str | bytes | os.PathLike[str], /) -> None: ... method availableSizes (line 3064) | def availableSizes(self, /, mode: QIcon.Mode = ..., state: QIcon.State... method cacheKey (line 3065) | def cacheKey(self, /) -> int: ... method fallbackSearchPaths (line 3067) | def fallbackSearchPaths() -> List[str]: ... method fallbackThemeName (line 3069) | def fallbackThemeName() -> str: ... method fromTheme (line 3072) | def fromTheme(name: str, fallback: QIcon | QPixmap, /) -> QIcon: ... method fromTheme (line 3075) | def fromTheme(icon: QIcon.ThemeIcon, fallback: QIcon | QPixmap, /) -> ... method fromTheme (line 3078) | def fromTheme(name: str, /) -> QIcon: ... method fromTheme (line 3081) | def fromTheme(icon: QIcon.ThemeIcon, /) -> QIcon: ... method hasThemeIcon (line 3084) | def hasThemeIcon(name: str, /) -> bool: ... method hasThemeIcon (line 3087) | def hasThemeIcon(icon: QIcon.ThemeIcon, /) -> bool: ... method isMask (line 3088) | def isMask(self, /) -> bool: ... method isNull (line 3089) | def isNull(self, /) -> bool: ... method name (line 3090) | def name(self, /) -> str: ... method paint (line 3092) | def paint(self, painter: QPainter, x: int, y: int, w: int, h: int, /, ... method paint (line 3094) | def paint(self, painter: QPainter, rect: PySide6.QtCore.QRect, /, alig... method pixmap (line 3096) | def pixmap(self, window: QWindow, size: PySide6.QtCore.QSize, /, mode:... method pixmap (line 3098) | def pixmap(self, w: int, h: int, /, mode: QIcon.Mode = ..., state: QIc... method pixmap (line 3100) | def pixmap(self, size: PySide6.QtCore.QSize, devicePixelRatio: float, ... method pixmap (line 3102) | def pixmap(self, size: PySide6.QtCore.QSize, /, mode: QIcon.Mode = ...... method pixmap (line 3104) | def pixmap(self, extent: int, /, mode: QIcon.Mode = ..., state: QIcon.... method setFallbackSearchPaths (line 3106) | def setFallbackSearchPaths(paths: typing.Iterable[str], /) -> None: ... method setFallbackThemeName (line 3108) | def setFallbackThemeName(name: str, /) -> None: ... method setIsMask (line 3109) | def setIsMask(self, isMask: bool, /) -> None: ... method setThemeName (line 3111) | def setThemeName(path: str, /) -> None: ... method setThemeSearchPaths (line 3113) | def setThemeSearchPaths(searchpath: typing.Iterable[str], /) -> None: ... method swap (line 3114) | def swap(self, other: QIcon | QPixmap, /) -> None: ... method themeName (line 3116) | def themeName() -> str: ... method themeSearchPaths (line 3118) | def themeSearchPaths() -> List[str]: ... method __bool__ (line 3119) | def __bool__(self) -> bool: ... method __copy__ (line 3120) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 3121) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 3122) | def __rlshift__(self, other): ... method __rrshift__ (line 3123) | def __rrshift__(self, other): ... method __rshift__ (line 3124) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QIconDragEvent (line 3126) | class QIconDragEvent(PySide6.QtCore.QEvent): method __init__ (line 3128) | def __init__(self, arg__1: QIconDragEvent, /) -> None: ... method __init__ (line 3130) | def __init__(self, /) -> None: ... method clone (line 3131) | def clone(self, /) -> QIconDragEvent: ... class QIconEngine (line 3133) | class QIconEngine(shiboken6.Object): class IconEngineHook (line 3134) | class IconEngineHook(enum.Enum): class ScaledPixmapArgument (line 3138) | class ScaledPixmapArgument(shiboken6.Object): method __init__ (line 3144) | def __init__(self, /) -> None: ... method __init__ (line 3146) | def __init__(self, other: QIconEngine, /) -> None: ... method __init__ (line 3148) | def __init__(self, /) -> None: ... method actualSize (line 3149) | def actualSize(self, size: PySide6.QtCore.QSize, mode: QIcon.Mode, sta... method addFile (line 3150) | def addFile(self, fileName: str, size: PySide6.QtCore.QSize, mode: QIc... method addPixmap (line 3151) | def addPixmap(self, pixmap: QPixmap | QImage, mode: QIcon.Mode, state:... method availableSizes (line 3152) | def availableSizes(self, /, mode: QIcon.Mode = ..., state: QIcon.State... method clone (line 3153) | def clone(self, /) -> QIconEngine: ... method iconName (line 3154) | def iconName(self, /) -> str: ... method isNull (line 3155) | def isNull(self, /) -> bool: ... method key (line 3156) | def key(self, /) -> str: ... method paint (line 3157) | def paint(self, painter: QPainter, rect: PySide6.QtCore.QRect, mode: Q... method pixmap (line 3158) | def pixmap(self, size: PySide6.QtCore.QSize, mode: QIcon.Mode, state: ... method read (line 3159) | def read(self, in_: PySide6.QtCore.QDataStream, /) -> bool: ... method scaledPixmap (line 3160) | def scaledPixmap(self, size: PySide6.QtCore.QSize, mode: QIcon.Mode, s... method write (line 3161) | def write(self, out: PySide6.QtCore.QDataStream, /) -> bool: ... class QImage (line 3163) | class QImage(QPaintDevice): class Format (line 3164) | class Format(enum.Enum): class InvertMode (line 3204) | class InvertMode(enum.Enum): method __init__ (line 3208) | def __init__(self, data: bytes | bytearray | memoryview, width: int, h... method __init__ (line 3210) | def __init__(self, data: bytes | bytearray | memoryview, width: int, h... method __init__ (line 3212) | def __init__(self, arg__1: str, width: int, height: int, bytes_per_lin... method __init__ (line 3214) | def __init__(self, arg__1: str, width: int, height: int, format: QImag... method __init__ (line 3216) | def __init__(self, width: int, height: int, format: QImage.Format, /) ... method __init__ (line 3218) | def __init__(self, size: PySide6.QtCore.QSize, format: QImage.Format, ... method __init__ (line 3220) | def __init__(self, fileName: str | bytes | os.PathLike[str], /, format... method __init__ (line 3222) | def __init__(self, xpm: collections.abc.Iterable, /) -> None: ... method __init__ (line 3224) | def __init__(self, arg__1: QImage, /) -> None: ... method __init__ (line 3226) | def __init__(self, /) -> None: ... method allGray (line 3227) | def allGray(self, /) -> bool: ... method applyColorTransform (line 3229) | def applyColorTransform(self, transform: QColorTransform, format: QIma... method applyColorTransform (line 3231) | def applyColorTransform(self, transform: QColorTransform, /) -> None: ... method bitPlaneCount (line 3232) | def bitPlaneCount(self, /) -> int: ... method bits (line 3233) | def bits(self, /) -> bytes | bytearray | memoryview: ... method bytesPerLine (line 3234) | def bytesPerLine(self, /) -> int: ... method cacheKey (line 3235) | def cacheKey(self, /) -> int: ... method color (line 3236) | def color(self, i: int, /) -> int: ... method colorCount (line 3237) | def colorCount(self, /) -> int: ... method colorSpace (line 3238) | def colorSpace(self, /) -> QColorSpace: ... method colorTable (line 3239) | def colorTable(self, /) -> List[int]: ... method colorTransformed (line 3241) | def colorTransformed(self, transform: QColorTransform, format: QImage.... method colorTransformed (line 3243) | def colorTransformed(self, transform: QColorTransform, /) -> QImage: ... method constBits (line 3244) | def constBits(self, /) -> bytes | bytearray | memoryview: ... method constScanLine (line 3245) | def constScanLine(self, arg__1: int, /) -> typing.Any: ... method convertTo (line 3246) | def convertTo(self, f: QImage.Format, /, flags: PySide6.QtCore.Qt.Imag... method convertToColorSpace (line 3248) | def convertToColorSpace(self, colorSpace: QColorSpace | QColorSpace.Na... method convertToColorSpace (line 3250) | def convertToColorSpace(self, colorSpace: QColorSpace | QColorSpace.Na... method convertToFormat (line 3252) | def convertToFormat(self, f: QImage.Format, colorTable: typing.Iterabl... method convertToFormat (line 3254) | def convertToFormat(self, f: QImage.Format, /, flags: PySide6.QtCore.Q... method convertToFormat_helper (line 3255) | def convertToFormat_helper(self, format: QImage.Format, flags: PySide6... method convertToFormat_inplace (line 3256) | def convertToFormat_inplace(self, format: QImage.Format, flags: PySide... method convertedTo (line 3257) | def convertedTo(self, f: QImage.Format, /, flags: PySide6.QtCore.Qt.Im... method convertedToColorSpace (line 3259) | def convertedToColorSpace(self, colorSpace: QColorSpace | QColorSpace.... method convertedToColorSpace (line 3261) | def convertedToColorSpace(self, colorSpace: QColorSpace | QColorSpace.... method copy (line 3263) | def copy(self, x: int, y: int, w: int, h: int, /) -> QImage: ... method copy (line 3265) | def copy(self, /, rect: PySide6.QtCore.QRect = ...) -> QImage: ... method createAlphaMask (line 3266) | def createAlphaMask(self, /, flags: PySide6.QtCore.Qt.ImageConversionF... method createHeuristicMask (line 3267) | def createHeuristicMask(self, /, clipTight: bool = ...) -> QImage: ... method createMaskFromColor (line 3268) | def createMaskFromColor(self, color: int, /, mode: PySide6.QtCore.Qt.M... method depth (line 3269) | def depth(self, /) -> int: ... method detachMetadata (line 3270) | def detachMetadata(self, /, invalidateCache: bool = ...) -> None: ... method devType (line 3271) | def devType(self, /) -> int: ... method deviceIndependentSize (line 3272) | def deviceIndependentSize(self, /) -> PySide6.QtCore.QSizeF: ... method devicePixelRatio (line 3273) | def devicePixelRatio(self, /) -> float: ... method dotsPerMeterX (line 3274) | def dotsPerMeterX(self, /) -> int: ... method dotsPerMeterY (line 3275) | def dotsPerMeterY(self, /) -> int: ... method fill (line 3277) | def fill(self, pixel: int, /) -> None: ... method fill (line 3279) | def fill(self, color: PySide6.QtCore.Qt.GlobalColor, /) -> None: ... method fill (line 3281) | def fill(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtCore.... method flip (line 3282) | def flip(self, /, orient: PySide6.QtCore.Qt.Orientation = ...) -> None... method flipped (line 3283) | def flipped(self, /, orient: PySide6.QtCore.Qt.Orientation = ...) -> Q... method format (line 3284) | def format(self, /) -> QImage.Format: ... method fromData (line 3286) | def fromData(data: PySide6.QtCore.QByteArray | bytes | bytearray | mem... method hasAlphaChannel (line 3287) | def hasAlphaChannel(self, /) -> bool: ... method height (line 3288) | def height(self, /) -> int: ... method invertPixels (line 3289) | def invertPixels(self, /, mode: QImage.InvertMode = ...) -> None: ... method isGrayscale (line 3290) | def isGrayscale(self, /) -> bool: ... method isNull (line 3291) | def isNull(self, /) -> bool: ... method load (line 3293) | def load(self, fileName: str, /, format: bytes | bytearray | memoryvie... method load (line 3295) | def load(self, device: PySide6.QtCore.QIODevice, format: bytes | bytea... method loadFromData (line 3296) | def loadFromData(self, data: PySide6.QtCore.QByteArray | bytes | bytea... method metric (line 3297) | def metric(self, metric: QPaintDevice.PaintDeviceMetric, /) -> int: ... method mirror (line 3298) | def mirror(self, /, horizontally: bool = ..., vertically: bool = ...) ... method mirrored (line 3299) | def mirrored(self, /, horizontally: bool = ..., vertically: bool = ...... method mirrored_helper (line 3300) | def mirrored_helper(self, horizontal: bool, vertical: bool, /) -> QIma... method mirrored_inplace (line 3301) | def mirrored_inplace(self, horizontal: bool, vertical: bool, /) -> Non... method offset (line 3302) | def offset(self, /) -> PySide6.QtCore.QPoint: ... method paintEngine (line 3303) | def paintEngine(self, /) -> QPaintEngine: ... method pixel (line 3305) | def pixel(self, x: int, y: int, /) -> int: ... method pixel (line 3307) | def pixel(self, pt: PySide6.QtCore.QPoint, /) -> int: ... method pixelColor (line 3309) | def pixelColor(self, x: int, y: int, /) -> QColor: ... method pixelColor (line 3311) | def pixelColor(self, pt: PySide6.QtCore.QPoint, /) -> QColor: ... method pixelFormat (line 3312) | def pixelFormat(self, /) -> QPixelFormat: ... method pixelIndex (line 3314) | def pixelIndex(self, x: int, y: int, /) -> int: ... method pixelIndex (line 3316) | def pixelIndex(self, pt: PySide6.QtCore.QPoint, /) -> int: ... method rect (line 3317) | def rect(self, /) -> PySide6.QtCore.QRect: ... method reinterpretAsFormat (line 3318) | def reinterpretAsFormat(self, f: QImage.Format, /) -> bool: ... method rgbSwap (line 3319) | def rgbSwap(self, /) -> None: ... method rgbSwapped (line 3320) | def rgbSwapped(self, /) -> QImage: ... method rgbSwapped_helper (line 3321) | def rgbSwapped_helper(self, /) -> QImage: ... method rgbSwapped_inplace (line 3322) | def rgbSwapped_inplace(self, /) -> None: ... method save (line 3324) | def save(self, fileName: str, /, format: bytes | bytearray | memoryvie... method save (line 3326) | def save(self, device: PySide6.QtCore.QIODevice, /, format: bytes | by... method scaled (line 3328) | def scaled(self, w: int, h: int, /, aspectMode: PySide6.QtCore.Qt.Aspe... method scaled (line 3330) | def scaled(self, s: PySide6.QtCore.QSize, /, aspectMode: PySide6.QtCor... method scaledToHeight (line 3331) | def scaledToHeight(self, h: int, /, mode: PySide6.QtCore.Qt.Transforma... method scaledToWidth (line 3332) | def scaledToWidth(self, w: int, /, mode: PySide6.QtCore.Qt.Transformat... method scanLine (line 3333) | def scanLine(self, arg__1: int, /) -> typing.Any: ... method setAlphaChannel (line 3334) | def setAlphaChannel(self, alphaChannel: QImage, /) -> None: ... method setColor (line 3335) | def setColor(self, i: int, c: int, /) -> None: ... method setColorCount (line 3336) | def setColorCount(self, arg__1: int, /) -> None: ... method setColorSpace (line 3337) | def setColorSpace(self, colorSpace: QColorSpace | QColorSpace.NamedCol... method setColorTable (line 3338) | def setColorTable(self, colors: typing.Iterable[int], /) -> None: ... method setDevicePixelRatio (line 3339) | def setDevicePixelRatio(self, scaleFactor: float, /) -> None: ... method setDotsPerMeterX (line 3340) | def setDotsPerMeterX(self, arg__1: int, /) -> None: ... method setDotsPerMeterY (line 3341) | def setDotsPerMeterY(self, arg__1: int, /) -> None: ... method setOffset (line 3342) | def setOffset(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method setPixel (line 3344) | def setPixel(self, x: int, y: int, index_or_rgb: int, /) -> None: ... method setPixel (line 3346) | def setPixel(self, pt: PySide6.QtCore.QPoint, index_or_rgb: int, /) ->... method setPixelColor (line 3348) | def setPixelColor(self, x: int, y: int, c: Union[QColor, str, QRgba64,... method setPixelColor (line 3350) | def setPixelColor(self, pt: PySide6.QtCore.QPoint, c: Union[QColor, st... method setText (line 3351) | def setText(self, key: str, value: str, /) -> None: ... method size (line 3352) | def size(self, /) -> PySide6.QtCore.QSize: ... method sizeInBytes (line 3353) | def sizeInBytes(self, /) -> int: ... method smoothScaled (line 3354) | def smoothScaled(self, w: int, h: int, /) -> QImage: ... method swap (line 3355) | def swap(self, other: QImage, /) -> None: ... method text (line 3356) | def text(self, /, key: str = ...) -> str: ... method textKeys (line 3357) | def textKeys(self, /) -> List[str]: ... method toImageFormat (line 3359) | def toImageFormat(format: QPixelFormat, /) -> QImage.Format: ... method toPixelFormat (line 3361) | def toPixelFormat(format: QImage.Format, /) -> QPixelFormat: ... method transformed (line 3362) | def transformed(self, matrix: QTransform, /, mode: PySide6.QtCore.Qt.T... method trueMatrix (line 3364) | def trueMatrix(arg__1: QTransform, w: int, h: int, /) -> QTransform: ... method valid (line 3366) | def valid(self, x: int, y: int, /) -> bool: ... method valid (line 3368) | def valid(self, pt: PySide6.QtCore.QPoint, /) -> bool: ... method width (line 3369) | def width(self, /) -> int: ... method __bool__ (line 3370) | def __bool__(self) -> bool: ... method __copy__ (line 3371) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3372) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3373) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3374) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3375) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 3376) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 3377) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3378) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 3379) | def __rlshift__(self, other): ... method __rrshift__ (line 3380) | def __rrshift__(self, other): ... method __rshift__ (line 3381) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QImageIOHandler (line 3383) | class QImageIOHandler(shiboken6.Object): class ImageOption (line 3384) | class ImageOption(enum.Enum): class Transformation (line 3405) | class Transformation(enum.Flag): method __init__ (line 3414) | def __init__(self, /) -> None: ... method allocateImage (line 3416) | def allocateImage(size: PySide6.QtCore.QSize, format: QImage.Format, i... method canRead (line 3417) | def canRead(self, /) -> bool: ... method currentImageNumber (line 3418) | def currentImageNumber(self, /) -> int: ... method currentImageRect (line 3419) | def currentImageRect(self, /) -> PySide6.QtCore.QRect: ... method device (line 3420) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method format (line 3421) | def format(self, /) -> PySide6.QtCore.QByteArray: ... method imageCount (line 3422) | def imageCount(self, /) -> int: ... method jumpToImage (line 3423) | def jumpToImage(self, imageNumber: int, /) -> bool: ... method jumpToNextImage (line 3424) | def jumpToNextImage(self, /) -> bool: ... method loopCount (line 3425) | def loopCount(self, /) -> int: ... method nextImageDelay (line 3426) | def nextImageDelay(self, /) -> int: ... method option (line 3427) | def option(self, option: QImageIOHandler.ImageOption, /) -> Any: ... method read (line 3428) | def read(self, image: QImage, /) -> bool: ... method setDevice (line 3429) | def setDevice(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method setFormat (line 3430) | def setFormat(self, format: PySide6.QtCore.QByteArray | bytes | bytear... method setOption (line 3431) | def setOption(self, option: QImageIOHandler.ImageOption, value: Any, /... method supportsOption (line 3432) | def supportsOption(self, option: QImageIOHandler.ImageOption, /) -> bo... method write (line 3433) | def write(self, image: QImage, /) -> bool: ... class QImageReader (line 3435) | class QImageReader(shiboken6.Object): class ImageReaderError (line 3436) | class ImageReaderError(enum.Enum): method __init__ (line 3443) | def __init__(self, fileName: str, /, format: PySide6.QtCore.QByteArray... method __init__ (line 3445) | def __init__(self, device: PySide6.QtCore.QIODevice, /, format: PySide... method __init__ (line 3447) | def __init__(self, /) -> None: ... method allocationLimit (line 3449) | def allocationLimit() -> int: ... method autoDetectImageFormat (line 3450) | def autoDetectImageFormat(self, /) -> bool: ... method autoTransform (line 3451) | def autoTransform(self, /) -> bool: ... method backgroundColor (line 3452) | def backgroundColor(self, /) -> QColor: ... method canRead (line 3453) | def canRead(self, /) -> bool: ... method clipRect (line 3454) | def clipRect(self, /) -> PySide6.QtCore.QRect: ... method currentImageNumber (line 3455) | def currentImageNumber(self, /) -> int: ... method currentImageRect (line 3456) | def currentImageRect(self, /) -> PySide6.QtCore.QRect: ... method decideFormatFromContent (line 3457) | def decideFormatFromContent(self, /) -> bool: ... method device (line 3458) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method error (line 3459) | def error(self, /) -> QImageReader.ImageReaderError: ... method errorString (line 3460) | def errorString(self, /) -> str: ... method fileName (line 3461) | def fileName(self, /) -> str: ... method format (line 3462) | def format(self, /) -> PySide6.QtCore.QByteArray: ... method imageCount (line 3463) | def imageCount(self, /) -> int: ... method imageFormat (line 3465) | def imageFormat(self) -> typing.Any: ... method imageFormatsForMimeType (line 3467) | def imageFormatsForMimeType(mimeType: PySide6.QtCore.QByteArray | byte... method jumpToImage (line 3468) | def jumpToImage(self, imageNumber: int, /) -> bool: ... method jumpToNextImage (line 3469) | def jumpToNextImage(self, /) -> bool: ... method loopCount (line 3470) | def loopCount(self, /) -> int: ... method nextImageDelay (line 3471) | def nextImageDelay(self, /) -> int: ... method quality (line 3472) | def quality(self, /) -> int: ... method read (line 3473) | def read(self, /) -> QImage: ... method scaledClipRect (line 3474) | def scaledClipRect(self, /) -> PySide6.QtCore.QRect: ... method scaledSize (line 3475) | def scaledSize(self, /) -> PySide6.QtCore.QSize: ... method setAllocationLimit (line 3477) | def setAllocationLimit(mbLimit: int, /) -> None: ... method setAutoDetectImageFormat (line 3478) | def setAutoDetectImageFormat(self, enabled: bool, /) -> None: ... method setAutoTransform (line 3479) | def setAutoTransform(self, enabled: bool, /) -> None: ... method setBackgroundColor (line 3480) | def setBackgroundColor(self, color: Union[QColor, str, QRgba64, Any, P... method setClipRect (line 3481) | def setClipRect(self, rect: PySide6.QtCore.QRect, /) -> None: ... method setDecideFormatFromContent (line 3482) | def setDecideFormatFromContent(self, ignored: bool, /) -> None: ... method setDevice (line 3483) | def setDevice(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method setFileName (line 3484) | def setFileName(self, fileName: str, /) -> None: ... method setFormat (line 3485) | def setFormat(self, format: PySide6.QtCore.QByteArray | bytes | bytear... method setQuality (line 3486) | def setQuality(self, quality: int, /) -> None: ... method setScaledClipRect (line 3487) | def setScaledClipRect(self, rect: PySide6.QtCore.QRect, /) -> None: ... method setScaledSize (line 3488) | def setScaledSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method size (line 3489) | def size(self, /) -> PySide6.QtCore.QSize: ... method subType (line 3490) | def subType(self, /) -> PySide6.QtCore.QByteArray: ... method supportedImageFormats (line 3492) | def supportedImageFormats() -> List[PySide6.QtCore.QByteArray]: ... method supportedMimeTypes (line 3494) | def supportedMimeTypes() -> List[PySide6.QtCore.QByteArray]: ... method supportedSubTypes (line 3495) | def supportedSubTypes(self, /) -> List[PySide6.QtCore.QByteArray]: ... method supportsAnimation (line 3496) | def supportsAnimation(self, /) -> bool: ... method supportsOption (line 3497) | def supportsOption(self, option: QImageIOHandler.ImageOption, /) -> bo... method text (line 3498) | def text(self, key: str, /) -> str: ... method textKeys (line 3499) | def textKeys(self, /) -> List[str]: ... method transformation (line 3500) | def transformation(self, /) -> QImageIOHandler.Transformation: ... class QImageWriter (line 3502) | class QImageWriter(shiboken6.Object): class ImageWriterError (line 3503) | class ImageWriterError(enum.Enum): method __init__ (line 3509) | def __init__(self, fileName: str, /, format: PySide6.QtCore.QByteArray... method __init__ (line 3511) | def __init__(self, device: PySide6.QtCore.QIODevice, format: PySide6.Q... method __init__ (line 3513) | def __init__(self, /) -> None: ... method canWrite (line 3514) | def canWrite(self, /) -> bool: ... method compression (line 3515) | def compression(self, /) -> int: ... method device (line 3516) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method error (line 3517) | def error(self, /) -> QImageWriter.ImageWriterError: ... method errorString (line 3518) | def errorString(self, /) -> str: ... method fileName (line 3519) | def fileName(self, /) -> str: ... method format (line 3520) | def format(self, /) -> PySide6.QtCore.QByteArray: ... method imageFormatsForMimeType (line 3522) | def imageFormatsForMimeType(mimeType: PySide6.QtCore.QByteArray | byte... method optimizedWrite (line 3523) | def optimizedWrite(self, /) -> bool: ... method progressiveScanWrite (line 3524) | def progressiveScanWrite(self, /) -> bool: ... method quality (line 3525) | def quality(self, /) -> int: ... method setCompression (line 3526) | def setCompression(self, compression: int, /) -> None: ... method setDevice (line 3527) | def setDevice(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method setFileName (line 3528) | def setFileName(self, fileName: str, /) -> None: ... method setFormat (line 3529) | def setFormat(self, format: PySide6.QtCore.QByteArray | bytes | bytear... method setOptimizedWrite (line 3530) | def setOptimizedWrite(self, optimize: bool, /) -> None: ... method setProgressiveScanWrite (line 3531) | def setProgressiveScanWrite(self, progressive: bool, /) -> None: ... method setQuality (line 3532) | def setQuality(self, quality: int, /) -> None: ... method setSubType (line 3533) | def setSubType(self, type: PySide6.QtCore.QByteArray | bytes | bytearr... method setText (line 3534) | def setText(self, key: str, text: str, /) -> None: ... method setTransformation (line 3535) | def setTransformation(self, orientation: QImageIOHandler.Transformatio... method subType (line 3536) | def subType(self, /) -> PySide6.QtCore.QByteArray: ... method supportedImageFormats (line 3538) | def supportedImageFormats() -> List[PySide6.QtCore.QByteArray]: ... method supportedMimeTypes (line 3540) | def supportedMimeTypes() -> List[PySide6.QtCore.QByteArray]: ... method supportedSubTypes (line 3541) | def supportedSubTypes(self, /) -> List[PySide6.QtCore.QByteArray]: ... method supportsOption (line 3542) | def supportsOption(self, option: QImageIOHandler.ImageOption, /) -> bo... method transformation (line 3543) | def transformation(self, /) -> QImageIOHandler.Transformation: ... method write (line 3544) | def write(self, image: QImage, /) -> bool: ... class QInputDevice (line 3546) | class QInputDevice(PySide6.QtCore.QObject): class Capability (line 3547) | class Capability(enum.Flag): class DeviceType (line 3565) | class DeviceType(enum.Flag): method __init__ (line 3579) | def __init__(self, name: str, systemId: int, type: QInputDevice.Device... method __init__ (line 3581) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method availableVirtualGeometry (line 3582) | def availableVirtualGeometry(self, /) -> PySide6.QtCore.QRect: ... method capabilities (line 3583) | def capabilities(self, /) -> QInputDevice.Capability: ... method devices (line 3585) | def devices() -> List[QInputDevice]: ... method hasCapability (line 3586) | def hasCapability(self, cap: QInputDevice.Capability, /) -> bool: ... method name (line 3587) | def name(self, /) -> str: ... method primaryKeyboard (line 3589) | def primaryKeyboard(seatName: str = ...) -> QInputDevice: ... method seatName (line 3590) | def seatName(self, /) -> str: ... method seatNames (line 3592) | def seatNames() -> List[str]: ... method systemId (line 3593) | def systemId(self, /) -> int: ... method type (line 3594) | def type(self, /) -> QInputDevice.DeviceType: ... method __eq__ (line 3595) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3596) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3597) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3598) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3599) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3600) | def __ne__(self, other: object) -> bool: ... class QInputEvent (line 3602) | class QInputEvent(PySide6.QtCore.QEvent): method __init__ (line 3604) | def __init__(self, type: PySide6.QtCore.QEvent.Type, m_dev: QInputDevi... method __init__ (line 3606) | def __init__(self, arg__1: QInputEvent, /) -> None: ... method clone (line 3607) | def clone(self, /) -> QInputEvent: ... method device (line 3608) | def device(self, /) -> QInputDevice: ... method deviceType (line 3609) | def deviceType(self, /) -> QInputDevice.DeviceType: ... method modifiers (line 3610) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method setModifiers (line 3611) | def setModifiers(self, modifiers: PySide6.QtCore.Qt.KeyboardModifier, ... method setTimestamp (line 3612) | def setTimestamp(self, timestamp: int, /) -> None: ... method timestamp (line 3613) | def timestamp(self, /) -> int: ... class QInputMethod (line 3615) | class QInputMethod(PySide6.QtCore.QObject): class Action (line 3616) | class Action(enum.Enum): method __init__ (line 3628) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method anchorRectangle (line 3629) | def anchorRectangle(self, /) -> PySide6.QtCore.QRectF: ... method commit (line 3630) | def commit(self, /) -> None: ... method cursorRectangle (line 3631) | def cursorRectangle(self, /) -> PySide6.QtCore.QRectF: ... method hide (line 3632) | def hide(self, /) -> None: ... method inputDirection (line 3633) | def inputDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method inputItemClipRectangle (line 3634) | def inputItemClipRectangle(self, /) -> PySide6.QtCore.QRectF: ... method inputItemRectangle (line 3635) | def inputItemRectangle(self, /) -> PySide6.QtCore.QRectF: ... method inputItemTransform (line 3636) | def inputItemTransform(self, /) -> QTransform: ... method invokeAction (line 3637) | def invokeAction(self, a: QInputMethod.Action, cursorPosition: int, /)... method isAnimating (line 3638) | def isAnimating(self, /) -> bool: ... method isVisible (line 3639) | def isVisible(self, /) -> bool: ... method keyboardRectangle (line 3640) | def keyboardRectangle(self, /) -> PySide6.QtCore.QRectF: ... method locale (line 3641) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method queryFocusObject (line 3643) | def queryFocusObject(query: PySide6.QtCore.Qt.InputMethodQuery, argume... method reset (line 3644) | def reset(self, /) -> None: ... method setInputItemRectangle (line 3645) | def setInputItemRectangle(self, rect: PySide6.QtCore.QRectF | PySide6.... method setInputItemTransform (line 3646) | def setInputItemTransform(self, transform: QTransform, /) -> None: ... method setVisible (line 3647) | def setVisible(self, visible: bool, /) -> None: ... method show (line 3648) | def show(self, /) -> None: ... method update (line 3649) | def update(self, queries: PySide6.QtCore.Qt.InputMethodQuery, /) -> No... class QInputMethodEvent (line 3651) | class QInputMethodEvent(PySide6.QtCore.QEvent): class Attribute (line 3652) | class Attribute(shiboken6.Object): method __init__ (line 3658) | def __init__(self, typ: QInputMethodEvent.AttributeType, s: int, l: ... method __init__ (line 3660) | def __init__(self, typ: QInputMethodEvent.AttributeType, s: int, l: ... method __init__ (line 3662) | def __init__(self, Attribute: QInputMethodEvent.Attribute, /) -> Non... method __copy__ (line 3663) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3664) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3665) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3666) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3667) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3668) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3669) | def __ne__(self, other: object) -> bool: ... class AttributeType (line 3671) | class AttributeType(enum.Enum): method __init__ (line 3679) | def __init__(self, preeditText: str, attributes: typing.Iterable[QInpu... method __init__ (line 3681) | def __init__(self, arg__1: QInputMethodEvent, /) -> None: ... method __init__ (line 3683) | def __init__(self, /) -> None: ... method attributes (line 3684) | def attributes(self, /) -> List[QInputMethodEvent.Attribute]: ... method clone (line 3685) | def clone(self, /) -> QInputMethodEvent: ... method commitString (line 3686) | def commitString(self, /) -> str: ... method preeditString (line 3687) | def preeditString(self, /) -> str: ... method replacementLength (line 3688) | def replacementLength(self, /) -> int: ... method replacementStart (line 3689) | def replacementStart(self, /) -> int: ... method setCommitString (line 3690) | def setCommitString(self, commitString: str, /, replaceFrom: int | Non... class QInputMethodQueryEvent (line 3692) | class QInputMethodQueryEvent(PySide6.QtCore.QEvent): method __init__ (line 3694) | def __init__(self, queries: PySide6.QtCore.Qt.InputMethodQuery, /) -> ... method __init__ (line 3696) | def __init__(self, arg__1: QInputMethodQueryEvent, /) -> None: ... method clone (line 3697) | def clone(self, /) -> QInputMethodQueryEvent: ... method queries (line 3698) | def queries(self, /) -> PySide6.QtCore.Qt.InputMethodQuery: ... method setValue (line 3699) | def setValue(self, query: PySide6.QtCore.Qt.InputMethodQuery, value: A... method value (line 3700) | def value(self, query: PySide6.QtCore.Qt.InputMethodQuery, /) -> Any: ... class QIntList (line 3702) | class QIntList: method __init__ (line 3704) | def __init__(self, *args, **kwargs) -> None: ... method append (line 3705) | def append(self, *args, **kwargs): ... method capacity (line 3706) | def capacity(self, *args, **kwargs): ... method clear (line 3707) | def clear(self, *args, **kwargs): ... method constData (line 3708) | def constData(self, *args, **kwargs): ... method data (line 3709) | def data(self, *args, **kwargs): ... method pop_back (line 3710) | def pop_back(self, *args, **kwargs): ... method pop_front (line 3711) | def pop_front(self, *args, **kwargs): ... method prepend (line 3712) | def prepend(self, *args, **kwargs): ... method push_back (line 3713) | def push_back(self, *args, **kwargs): ... method push_front (line 3714) | def push_front(self, *args, **kwargs): ... method removeFirst (line 3715) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 3716) | def removeLast(self, *args, **kwargs): ... method reserve (line 3717) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 3718) | def __delitem__(self, other) -> None: ... method __getitem__ (line 3719) | def __getitem__(self, index): ... method __len__ (line 3720) | def __len__(self) -> int: ... method __setitem__ (line 3721) | def __setitem__(self, index, object) -> None: ... class QIntValidator (line 3723) | class QIntValidator(QValidator): method __init__ (line 3728) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method __init__ (line 3730) | def __init__(self, bottom: int, top: int, /, parent: PySide6.QtCore.QO... method bottom (line 3731) | def bottom(self, /) -> int: ... method fixup (line 3732) | def fixup(self, input: str, /) -> str: ... method setBottom (line 3733) | def setBottom(self, arg__1: int, /) -> None: ... method setRange (line 3734) | def setRange(self, bottom: int, top: int, /) -> None: ... method setTop (line 3735) | def setTop(self, arg__1: int, /) -> None: ... method top (line 3736) | def top(self, /) -> int: ... method validate (line 3737) | def validate(self, arg__1: str, arg__2: int, /) -> typing.Any: ... class QKeyEvent (line 3739) | class QKeyEvent(QInputEvent): method __init__ (line 3741) | def __init__(self, type: PySide6.QtCore.QEvent.Type, key: int, modifie... method __init__ (line 3743) | def __init__(self, type: PySide6.QtCore.QEvent.Type, key: int, modifie... method __init__ (line 3745) | def __init__(self, arg__1: QKeyEvent, /) -> None: ... method clone (line 3746) | def clone(self, /) -> QKeyEvent: ... method count (line 3747) | def count(self, /) -> int: ... method isAutoRepeat (line 3748) | def isAutoRepeat(self, /) -> bool: ... method key (line 3749) | def key(self, /) -> int: ... method keyCombination (line 3750) | def keyCombination(self, /) -> PySide6.QtCore.QKeyCombination: ... method matches (line 3751) | def matches(self, key: QKeySequence.StandardKey, /) -> bool: ... method modifiers (line 3752) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method nativeModifiers (line 3753) | def nativeModifiers(self, /) -> int: ... method nativeScanCode (line 3754) | def nativeScanCode(self, /) -> int: ... method nativeVirtualKey (line 3755) | def nativeVirtualKey(self, /) -> int: ... method text (line 3756) | def text(self, /) -> str: ... method __eq__ (line 3757) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3758) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3759) | def __gt__(self, other: object) -> bool: ... method __le__ (line 3760) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3761) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3762) | def __ne__(self, other: object) -> bool: ... class QKeySequence (line 3764) | class QKeySequence(shiboken6.Object): class SequenceFormat (line 3765) | class SequenceFormat(enum.Enum): class SequenceMatch (line 3769) | class SequenceMatch(enum.Enum): class StandardKey (line 3774) | class StandardKey(enum.Enum): method __init__ (line 3847) | def __init__(self, k1: PySide6.QtCore.QKeyCombination | PySide6.QtCore... method __init__ (line 3849) | def __init__(self, k1: int, /, k2: int | None = ..., k3: int | None = ... method __init__ (line 3851) | def __init__(self, key: str, /, format: QKeySequence.SequenceFormat = ... method __init__ (line 3853) | def __init__(self, ks: QKeySequence | str, /) -> None: ... method __init__ (line 3855) | def __init__(self, key: QKeySequence.StandardKey, /) -> None: ... method __init__ (line 3857) | def __init__(self, /) -> None: ... method count (line 3858) | def count(self, /) -> int: ... method fromString (line 3860) | def fromString(str: str, /, format: QKeySequence.SequenceFormat = ...)... method isEmpty (line 3861) | def isEmpty(self, /) -> bool: ... method keyBindings (line 3863) | def keyBindings(key: QKeySequence.StandardKey, /) -> List[QKeySequence... method listFromString (line 3865) | def listFromString(str: str, /, format: QKeySequence.SequenceFormat = ... method listToString (line 3867) | def listToString(list: typing.Iterable[QKeySequence], /, format: QKeyS... method matches (line 3868) | def matches(self, seq: QKeySequence | PySide6.QtCore.QKeyCombination |... method mnemonic (line 3870) | def mnemonic(text: str, /) -> QKeySequence: ... method swap (line 3871) | def swap(self, other: QKeySequence | PySide6.QtCore.QKeyCombination | ... method toString (line 3872) | def toString(self, /, format: QKeySequence.SequenceFormat = ...) -> st... method __copy__ (line 3873) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3874) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3875) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 3876) | def __getitem__(self, index): ... method __gt__ (line 3877) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3878) | def __hash__(self, /) -> int: ... method __le__ (line 3879) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 3880) | def __lshift__(self, in_: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... method __lt__ (line 3881) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3882) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 3883) | def __rlshift__(self, other): ... method __rrshift__ (line 3884) | def __rrshift__(self, other): ... method __rshift__ (line 3885) | def __rshift__(self, out: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... class QLinearGradient (line 3887) | class QLinearGradient(QGradient): method __init__ (line 3889) | def __init__(self, xStart: float, yStart: float, xFinalStop: float, yF... method __init__ (line 3891) | def __init__(self, start: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method __init__ (line 3893) | def __init__(self, QLinearGradient: QLinearGradient, /) -> None: ... method __init__ (line 3895) | def __init__(self, /) -> None: ... method finalStop (line 3896) | def finalStop(self, /) -> PySide6.QtCore.QPointF: ... method setFinalStop (line 3898) | def setFinalStop(self, x: float, y: float, /) -> None: ... method setFinalStop (line 3900) | def setFinalStop(self, stop: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method setStart (line 3902) | def setStart(self, x: float, y: float, /) -> None: ... method setStart (line 3904) | def setStart(self, start: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method start (line 3905) | def start(self, /) -> PySide6.QtCore.QPointF: ... method __copy__ (line 3906) | def __copy__(self, /) -> typing_extensions.Self: ... class QMatrix2x2 (line 3908) | class QMatrix2x2(shiboken6.Object): method __init__ (line 3910) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 3912) | def __init__(self, QMatrix2x2: QMatrix2x2, /) -> None: ... method __init__ (line 3914) | def __init__(self, /) -> None: ... method data (line 3915) | def data(self, /) -> float: ... method fill (line 3916) | def fill(self, value: float, /) -> None: ... method isIdentity (line 3917) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 3918) | def setToIdentity(self, /) -> None: ... method transposed (line 3919) | def transposed(self, /) -> QMatrix2x2: ... method __call__ (line 3920) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 3921) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3922) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3923) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3924) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 3925) | def __iadd__(self, other: QMatrix2x2, /) -> QMatrix2x2: ... method __imul__ (line 3926) | def __imul__(self, factor: float, /) -> QMatrix2x2: ... method __isub__ (line 3927) | def __isub__(self, other: QMatrix2x2, /) -> QMatrix2x2: ... method __le__ (line 3928) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3929) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3930) | def __ne__(self, other: object) -> bool: ... class QMatrix2x3 (line 3932) | class QMatrix2x3(shiboken6.Object): method __init__ (line 3934) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 3936) | def __init__(self, QMatrix2x3: QMatrix2x3, /) -> None: ... method __init__ (line 3938) | def __init__(self, /) -> None: ... method data (line 3939) | def data(self, /) -> float: ... method fill (line 3940) | def fill(self, value: float, /) -> None: ... method isIdentity (line 3941) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 3942) | def setToIdentity(self, /) -> None: ... method transposed (line 3943) | def transposed(self, /) -> QMatrix3x2: ... method __call__ (line 3944) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 3945) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3946) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3947) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3948) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 3949) | def __iadd__(self, other: QMatrix2x3, /) -> QMatrix2x3: ... method __imul__ (line 3950) | def __imul__(self, factor: float, /) -> QMatrix2x3: ... method __isub__ (line 3951) | def __isub__(self, other: QMatrix2x3, /) -> QMatrix2x3: ... method __le__ (line 3952) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3953) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3954) | def __ne__(self, other: object) -> bool: ... class QMatrix2x4 (line 3956) | class QMatrix2x4(shiboken6.Object): method __init__ (line 3958) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 3960) | def __init__(self, QMatrix2x4: QMatrix2x4, /) -> None: ... method __init__ (line 3962) | def __init__(self, /) -> None: ... method data (line 3963) | def data(self, /) -> float: ... method fill (line 3964) | def fill(self, value: float, /) -> None: ... method isIdentity (line 3965) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 3966) | def setToIdentity(self, /) -> None: ... method transposed (line 3967) | def transposed(self, /) -> QMatrix4x2: ... method __call__ (line 3968) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 3969) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3970) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3971) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3972) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 3973) | def __iadd__(self, other: QMatrix2x4, /) -> QMatrix2x4: ... method __imul__ (line 3974) | def __imul__(self, factor: float, /) -> QMatrix2x4: ... method __isub__ (line 3975) | def __isub__(self, other: QMatrix2x4, /) -> QMatrix2x4: ... method __le__ (line 3976) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3977) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3978) | def __ne__(self, other: object) -> bool: ... class QMatrix3x2 (line 3980) | class QMatrix3x2(shiboken6.Object): method __init__ (line 3982) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 3984) | def __init__(self, QMatrix3x2: QMatrix3x2, /) -> None: ... method __init__ (line 3986) | def __init__(self, /) -> None: ... method data (line 3987) | def data(self, /) -> float: ... method fill (line 3988) | def fill(self, value: float, /) -> None: ... method isIdentity (line 3989) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 3990) | def setToIdentity(self, /) -> None: ... method transposed (line 3991) | def transposed(self, /) -> QMatrix2x3: ... method __call__ (line 3992) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 3993) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 3994) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3995) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3996) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 3997) | def __iadd__(self, other: QMatrix3x2, /) -> QMatrix3x2: ... method __imul__ (line 3998) | def __imul__(self, factor: float, /) -> QMatrix3x2: ... method __isub__ (line 3999) | def __isub__(self, other: QMatrix3x2, /) -> QMatrix3x2: ... method __le__ (line 4000) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4001) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4002) | def __ne__(self, other: object) -> bool: ... class QMatrix3x3 (line 4004) | class QMatrix3x3(shiboken6.Object): method __init__ (line 4006) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 4008) | def __init__(self, QMatrix3x3: QMatrix3x3, /) -> None: ... method __init__ (line 4010) | def __init__(self, /) -> None: ... method data (line 4011) | def data(self, /) -> float: ... method fill (line 4012) | def fill(self, value: float, /) -> None: ... method isIdentity (line 4013) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 4014) | def setToIdentity(self, /) -> None: ... method transposed (line 4015) | def transposed(self, /) -> QMatrix3x3: ... method __call__ (line 4016) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 4017) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4018) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4019) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4020) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 4021) | def __iadd__(self, other: QMatrix3x3, /) -> QMatrix3x3: ... method __imul__ (line 4022) | def __imul__(self, factor: float, /) -> QMatrix3x3: ... method __isub__ (line 4023) | def __isub__(self, other: QMatrix3x3, /) -> QMatrix3x3: ... method __le__ (line 4024) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4025) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4026) | def __ne__(self, other: object) -> bool: ... class QMatrix3x4 (line 4028) | class QMatrix3x4(shiboken6.Object): method __init__ (line 4030) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 4032) | def __init__(self, QMatrix3x4: QMatrix3x4, /) -> None: ... method __init__ (line 4034) | def __init__(self, /) -> None: ... method data (line 4035) | def data(self, /) -> float: ... method fill (line 4036) | def fill(self, value: float, /) -> None: ... method isIdentity (line 4037) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 4038) | def setToIdentity(self, /) -> None: ... method transposed (line 4039) | def transposed(self, /) -> QMatrix4x3: ... method __call__ (line 4040) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 4041) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4042) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4043) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4044) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 4045) | def __iadd__(self, other: QMatrix3x4, /) -> QMatrix3x4: ... method __imul__ (line 4046) | def __imul__(self, factor: float, /) -> QMatrix3x4: ... method __isub__ (line 4047) | def __isub__(self, other: QMatrix3x4, /) -> QMatrix3x4: ... method __le__ (line 4048) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4049) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4050) | def __ne__(self, other: object) -> bool: ... class QMatrix4x2 (line 4052) | class QMatrix4x2(shiboken6.Object): method __init__ (line 4054) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 4056) | def __init__(self, QMatrix4x2: QMatrix4x2, /) -> None: ... method __init__ (line 4058) | def __init__(self, /) -> None: ... method data (line 4059) | def data(self, /) -> float: ... method fill (line 4060) | def fill(self, value: float, /) -> None: ... method isIdentity (line 4061) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 4062) | def setToIdentity(self, /) -> None: ... method transposed (line 4063) | def transposed(self, /) -> QMatrix2x4: ... method __call__ (line 4064) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 4065) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4066) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4067) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4068) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 4069) | def __iadd__(self, other: QMatrix4x2, /) -> QMatrix4x2: ... method __imul__ (line 4070) | def __imul__(self, factor: float, /) -> QMatrix4x2: ... method __isub__ (line 4071) | def __isub__(self, other: QMatrix4x2, /) -> QMatrix4x2: ... method __le__ (line 4072) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4073) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4074) | def __ne__(self, other: object) -> bool: ... class QMatrix4x3 (line 4076) | class QMatrix4x3(shiboken6.Object): method __init__ (line 4078) | def __init__(self, elements: collections.abc.Iterable, /) -> None: ... method __init__ (line 4080) | def __init__(self, QMatrix4x3: QMatrix4x3, /) -> None: ... method __init__ (line 4082) | def __init__(self, /) -> None: ... method data (line 4083) | def data(self, /) -> float: ... method fill (line 4084) | def fill(self, value: float, /) -> None: ... method isIdentity (line 4085) | def isIdentity(self, /) -> bool: ... method setToIdentity (line 4086) | def setToIdentity(self, /) -> None: ... method transposed (line 4087) | def transposed(self, /) -> QMatrix3x4: ... method __call__ (line 4088) | def __call__(self, row: int, column: int, /) -> float: ... method __copy__ (line 4089) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4090) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4091) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4092) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 4093) | def __iadd__(self, other: QMatrix4x3, /) -> QMatrix4x3: ... method __imul__ (line 4094) | def __imul__(self, factor: float, /) -> QMatrix4x3: ... method __isub__ (line 4095) | def __isub__(self, other: QMatrix4x3, /) -> QMatrix4x3: ... method __le__ (line 4096) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4097) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4098) | def __ne__(self, other: object) -> bool: ... class QMatrix4x4 (line 4100) | class QMatrix4x4(shiboken6.Object): class Flag (line 4101) | class Flag(enum.Flag): method __init__ (line 4110) | def __init__(self, m11: float, m12: float, m13: float, m14: float, m21... method __init__ (line 4112) | def __init__(self, values: collections.abc.Iterable, /) -> None: ... method __init__ (line 4114) | def __init__(self, transform: QTransform, /) -> None: ... method __init__ (line 4116) | def __init__(self, QMatrix4x4: QMatrix4x4, /) -> None: ... method __init__ (line 4118) | def __init__(self, /) -> None: ... method __dummy (line 4119) | def __dummy(self, arg__1: typing.Iterable[float], /) -> None: ... method column (line 4120) | def column(self, index: int, /) -> QVector4D: ... method copyDataTo (line 4121) | def copyDataTo(self, /) -> Tuple: ... method data (line 4122) | def data(self, /) -> List[float]: ... method determinant (line 4123) | def determinant(self, /) -> float: ... method fill (line 4124) | def fill(self, value: float, /) -> None: ... method flags (line 4125) | def flags(self, /) -> QMatrix4x4.Flag: ... method flipCoordinates (line 4126) | def flipCoordinates(self, /) -> None: ... method frustum (line 4127) | def frustum(self, left: float, right: float, bottom: float, top: float... method inverted (line 4128) | def inverted(self, /) -> Tuple[QMatrix4x4, bool]: ... method isAffine (line 4129) | def isAffine(self, /) -> bool: ... method isIdentity (line 4130) | def isIdentity(self, /) -> bool: ... method lookAt (line 4131) | def lookAt(self, eye: QVector3D, center: QVector3D, up: QVector3D, /) ... method map (line 4133) | def map(self, point: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QPoin... method map (line 4135) | def map(self, point: QVector3D, /) -> QVector3D: ... method map (line 4137) | def map(self, point: QVector4D, /) -> QVector4D: ... method map (line 4139) | def map(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | ... method mapRect (line 4141) | def mapRect(self, rect: PySide6.QtCore.QRect, /) -> PySide6.QtCore.QRe... method mapRect (line 4143) | def mapRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method mapVector (line 4144) | def mapVector(self, vector: QVector3D, /) -> QVector3D: ... method normalMatrix (line 4145) | def normalMatrix(self, /) -> QMatrix3x3: ... method optimize (line 4146) | def optimize(self, /) -> None: ... method ortho (line 4148) | def ortho(self, left: float, right: float, bottom: float, top: float, ... method ortho (line 4150) | def ortho(self, rect: PySide6.QtCore.QRect, /) -> None: ... method ortho (line 4152) | def ortho(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, /)... method perspective (line 4153) | def perspective(self, verticalAngle: float, aspectRatio: float, nearPl... method projectedRotate (line 4155) | def projectedRotate(self, angle: float, x: float, y: float, z: float, ... method projectedRotate (line 4157) | def projectedRotate(self, angle: float, x: float, y: float, z: float, ... method rotate (line 4159) | def rotate(self, angle: float, x: float, y: float, /, z: float = ...) ... method rotate (line 4161) | def rotate(self, angle: float, vector: QVector3D, /) -> None: ... method rotate (line 4163) | def rotate(self, quaternion: QQuaternion, /) -> None: ... method row (line 4164) | def row(self, index: int, /) -> QVector4D: ... method scale (line 4166) | def scale(self, x: float, y: float, z: float, /) -> None: ... method scale (line 4168) | def scale(self, x: float, y: float, /) -> None: ... method scale (line 4170) | def scale(self, vector: QVector3D, /) -> None: ... method scale (line 4172) | def scale(self, factor: float, /) -> None: ... method setColumn (line 4173) | def setColumn(self, index: int, value: QVector4D, /) -> None: ... method setRow (line 4174) | def setRow(self, index: int, value: QVector4D, /) -> None: ... method setToIdentity (line 4175) | def setToIdentity(self, /) -> None: ... method toTransform (line 4177) | def toTransform(self, distanceToPlane: float, /) -> QTransform: ... method toTransform (line 4179) | def toTransform(self, /) -> QTransform: ... method translate (line 4181) | def translate(self, x: float, y: float, z: float, /) -> None: ... method translate (line 4183) | def translate(self, x: float, y: float, /) -> None: ... method translate (line 4185) | def translate(self, vector: QVector3D, /) -> None: ... method transposed (line 4186) | def transposed(self, /) -> QMatrix4x4: ... method viewport (line 4188) | def viewport(self, left: float, bottom: float, width: float, height: f... method viewport (line 4190) | def viewport(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method __add__ (line 4191) | def __add__(self, m2: QMatrix4x4 | QTransform, /) -> QMatrix4x4: ... method __copy__ (line 4192) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4193) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4194) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 4195) | def __getitem__(self, index): ... method __gt__ (line 4196) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 4197) | def __iadd__(self, other: QMatrix4x4 | QTransform, /) -> QMatrix4x4: ... method __imul__ (line 4199) | def __imul__(self, other: QMatrix4x4 | QTransform, /) -> QMatrix4x4: ... method __imul__ (line 4201) | def __imul__(self, factor: float, /) -> QMatrix4x4: ... method __isub__ (line 4202) | def __isub__(self, other: QMatrix4x4 | QTransform, /) -> QMatrix4x4: ... method __le__ (line 4203) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4204) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 4205) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 4207) | def __mul__(self, point: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.Q... method __mul__ (line 4209) | def __mul__(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method __mul__ (line 4211) | def __mul__(self, m2: QMatrix4x4 | QTransform, /) -> QMatrix4x4: ... method __mul__ (line 4213) | def __mul__(self, factor: float, /) -> QMatrix4x4: ... method __ne__ (line 4214) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4215) | def __neg__(self, /) -> QMatrix4x4: ... method __radd__ (line 4216) | def __radd__(self, other): ... method __rlshift__ (line 4217) | def __rlshift__(self, other): ... method __rmul__ (line 4218) | def __rmul__(self, other): ... method __rrshift__ (line 4219) | def __rrshift__(self, other): ... method __rshift__ (line 4220) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 4221) | def __rsub__(self, other): ... method __rtruediv__ (line 4222) | def __rtruediv__(self, other): ... method __sub__ (line 4223) | def __sub__(self, m2: QMatrix4x4 | QTransform, /) -> QMatrix4x4: ... method __truediv__ (line 4224) | def __truediv__(self, other): ... class QMouseEvent (line 4226) | class QMouseEvent(QSinglePointEvent): method __init__ (line 4228) | def __init__(self, type: PySide6.QtCore.QEvent.Type, localPos: PySide6... method __init__ (line 4230) | def __init__(self, type: PySide6.QtCore.QEvent.Type, localPos: PySide6... method __init__ (line 4232) | def __init__(self, type: PySide6.QtCore.QEvent.Type, localPos: PySide6... method __init__ (line 4234) | def __init__(self, type: PySide6.QtCore.QEvent.Type, localPos: PySide6... method __init__ (line 4236) | def __init__(self, arg__1: QMouseEvent, /) -> None: ... method clone (line 4237) | def clone(self, /) -> QMouseEvent: ... method flags (line 4238) | def flags(self, /) -> PySide6.QtCore.Qt.MouseEventFlag: ... method globalPos (line 4239) | def globalPos(self, /) -> PySide6.QtCore.QPoint: ... method globalX (line 4240) | def globalX(self, /) -> int: ... method globalY (line 4241) | def globalY(self, /) -> int: ... method localPos (line 4242) | def localPos(self, /) -> PySide6.QtCore.QPointF: ... method pos (line 4243) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method screenPos (line 4244) | def screenPos(self, /) -> PySide6.QtCore.QPointF: ... method source (line 4245) | def source(self, /) -> PySide6.QtCore.Qt.MouseEventSource: ... method windowPos (line 4246) | def windowPos(self, /) -> PySide6.QtCore.QPointF: ... method x (line 4247) | def x(self, /) -> int: ... method y (line 4248) | def y(self, /) -> int: ... class QMoveEvent (line 4250) | class QMoveEvent(PySide6.QtCore.QEvent): method __init__ (line 4252) | def __init__(self, pos: PySide6.QtCore.QPoint, oldPos: PySide6.QtCore.... method __init__ (line 4254) | def __init__(self, arg__1: QMoveEvent, /) -> None: ... method clone (line 4255) | def clone(self, /) -> QMoveEvent: ... method oldPos (line 4256) | def oldPos(self, /) -> PySide6.QtCore.QPoint: ... method pos (line 4257) | def pos(self, /) -> PySide6.QtCore.QPoint: ... class QMovie (line 4259) | class QMovie(PySide6.QtCore.QObject): class CacheMode (line 4260) | class CacheMode(enum.Enum): class MovieState (line 4264) | class MovieState(enum.Enum): method __init__ (line 4277) | def __init__(self, fileName: str, /, format: PySide6.QtCore.QByteArray... method __init__ (line 4279) | def __init__(self, device: PySide6.QtCore.QIODevice, /, format: PySide... method __init__ (line 4281) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method backgroundColor (line 4282) | def backgroundColor(self, /) -> QColor: ... method cacheMode (line 4283) | def cacheMode(self, /) -> QMovie.CacheMode: ... method currentFrameNumber (line 4284) | def currentFrameNumber(self, /) -> int: ... method currentImage (line 4285) | def currentImage(self, /) -> QImage: ... method currentPixmap (line 4286) | def currentPixmap(self, /) -> QPixmap: ... method device (line 4287) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method fileName (line 4288) | def fileName(self, /) -> str: ... method format (line 4289) | def format(self, /) -> PySide6.QtCore.QByteArray: ... method frameCount (line 4290) | def frameCount(self, /) -> int: ... method frameRect (line 4291) | def frameRect(self, /) -> PySide6.QtCore.QRect: ... method isValid (line 4292) | def isValid(self, /) -> bool: ... method jumpToFrame (line 4293) | def jumpToFrame(self, frameNumber: int, /) -> bool: ... method jumpToNextFrame (line 4294) | def jumpToNextFrame(self, /) -> bool: ... method lastError (line 4295) | def lastError(self, /) -> QImageReader.ImageReaderError: ... method lastErrorString (line 4296) | def lastErrorString(self, /) -> str: ... method loopCount (line 4297) | def loopCount(self, /) -> int: ... method nextFrameDelay (line 4298) | def nextFrameDelay(self, /) -> int: ... method scaledSize (line 4299) | def scaledSize(self, /) -> PySide6.QtCore.QSize: ... method setBackgroundColor (line 4300) | def setBackgroundColor(self, color: Union[QColor, str, QRgba64, Any, P... method setCacheMode (line 4301) | def setCacheMode(self, mode: QMovie.CacheMode, /) -> None: ... method setDevice (line 4302) | def setDevice(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method setFileName (line 4303) | def setFileName(self, fileName: str, /) -> None: ... method setFormat (line 4304) | def setFormat(self, format: PySide6.QtCore.QByteArray | bytes | bytear... method setPaused (line 4305) | def setPaused(self, paused: bool, /) -> None: ... method setScaledSize (line 4306) | def setScaledSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setSpeed (line 4307) | def setSpeed(self, percentSpeed: int, /) -> None: ... method speed (line 4308) | def speed(self, /) -> int: ... method start (line 4309) | def start(self, /) -> None: ... method state (line 4310) | def state(self, /) -> QMovie.MovieState: ... method stop (line 4311) | def stop(self, /) -> None: ... method supportedFormats (line 4313) | def supportedFormats() -> List[PySide6.QtCore.QByteArray]: ... class QNativeGestureEvent (line 4315) | class QNativeGestureEvent(QSinglePointEvent): method __init__ (line 4317) | def __init__(self, type: PySide6.QtCore.Qt.NativeGestureType, dev: QPo... method __init__ (line 4319) | def __init__(self, type: PySide6.QtCore.Qt.NativeGestureType, dev: QPo... method __init__ (line 4321) | def __init__(self, arg__1: QNativeGestureEvent, /) -> None: ... method clone (line 4322) | def clone(self, /) -> QNativeGestureEvent: ... method delta (line 4323) | def delta(self, /) -> PySide6.QtCore.QPointF: ... method fingerCount (line 4324) | def fingerCount(self, /) -> int: ... method gestureType (line 4325) | def gestureType(self, /) -> PySide6.QtCore.Qt.NativeGestureType: ... method globalPos (line 4326) | def globalPos(self, /) -> PySide6.QtCore.QPoint: ... method localPos (line 4327) | def localPos(self, /) -> PySide6.QtCore.QPointF: ... method pos (line 4328) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method screenPos (line 4329) | def screenPos(self, /) -> PySide6.QtCore.QPointF: ... method value (line 4330) | def value(self, /) -> float: ... method windowPos (line 4331) | def windowPos(self, /) -> PySide6.QtCore.QPointF: ... class QNativeInterface (line 4333) | class QNativeInterface(shiboken6.Object): method __init__ (line 4334) | def __init__(self, *args, **kwargs) -> None: ... class QOffscreenSurface (line 4336) | class QOffscreenSurface(PySide6.QtCore.QObject, QSurface): method __init__ (line 4339) | def __init__(self, /, screen: QScreen | None = ..., parent: PySide6.Qt... method create (line 4340) | def create(self, /) -> None: ... method destroy (line 4341) | def destroy(self, /) -> None: ... method format (line 4342) | def format(self, /) -> QSurfaceFormat: ... method isValid (line 4343) | def isValid(self, /) -> bool: ... method requestedFormat (line 4344) | def requestedFormat(self, /) -> QSurfaceFormat: ... method resolveInterface (line 4345) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method screen (line 4346) | def screen(self, /) -> QScreen: ... method setFormat (line 4347) | def setFormat(self, format: QSurfaceFormat | QSurfaceFormat.FormatOpti... method setScreen (line 4348) | def setScreen(self, screen: QScreen, /) -> None: ... method size (line 4349) | def size(self, /) -> PySide6.QtCore.QSize: ... method surfaceHandle (line 4350) | def surfaceHandle(self, /) -> int: ... method surfaceType (line 4351) | def surfaceType(self, /) -> QSurface.SurfaceType: ... class QOpenGLContext (line 4353) | class QOpenGLContext(PySide6.QtCore.QObject): class OpenGLModuleType (line 4354) | class OpenGLModuleType(enum.Enum): method __init__ (line 4359) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method areSharing (line 4361) | def areSharing(first: QOpenGLContext, second: QOpenGLContext, /) -> bo... method create (line 4362) | def create(self, /) -> bool: ... method currentContext (line 4364) | def currentContext() -> QOpenGLContext: ... method defaultFramebufferObject (line 4365) | def defaultFramebufferObject(self, /) -> int: ... method doneCurrent (line 4366) | def doneCurrent(self, /) -> None: ... method extensions (line 4367) | def extensions(self, /) -> Set[PySide6.QtCore.QByteArray]: ... method extraFunctions (line 4368) | def extraFunctions(self, /) -> QOpenGLExtraFunctions: ... method format (line 4369) | def format(self, /) -> QSurfaceFormat: ... method functions (line 4370) | def functions(self, /) -> QOpenGLFunctions: ... method getProcAddress (line 4372) | def getProcAddress(self, procName: bytes | bytearray | memoryview, /) ... method getProcAddress (line 4374) | def getProcAddress(self, procName: PySide6.QtCore.QByteArray | bytes |... method globalShareContext (line 4376) | def globalShareContext() -> QOpenGLContext: ... method hasExtension (line 4377) | def hasExtension(self, extension: PySide6.QtCore.QByteArray | bytes | ... method isOpenGLES (line 4378) | def isOpenGLES(self, /) -> bool: ... method isValid (line 4379) | def isValid(self, /) -> bool: ... method makeCurrent (line 4380) | def makeCurrent(self, surface: QSurface, /) -> bool: ... method openGLModuleType (line 4382) | def openGLModuleType() -> QOpenGLContext.OpenGLModuleType: ... method resolveInterface (line 4383) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method screen (line 4384) | def screen(self, /) -> QScreen: ... method setFormat (line 4385) | def setFormat(self, format: QSurfaceFormat | QSurfaceFormat.FormatOpti... method setScreen (line 4386) | def setScreen(self, screen: QScreen, /) -> None: ... method setShareContext (line 4387) | def setShareContext(self, shareContext: QOpenGLContext, /) -> None: ... method shareContext (line 4388) | def shareContext(self, /) -> QOpenGLContext: ... method shareGroup (line 4389) | def shareGroup(self, /) -> QOpenGLContextGroup: ... method supportsThreadedOpenGL (line 4391) | def supportsThreadedOpenGL() -> bool: ... method surface (line 4392) | def surface(self, /) -> QSurface: ... method swapBuffers (line 4393) | def swapBuffers(self, surface: QSurface, /) -> None: ... class QOpenGLContextGroup (line 4395) | class QOpenGLContextGroup(PySide6.QtCore.QObject): method __init__ (line 4397) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method currentContextGroup (line 4399) | def currentContextGroup() -> QOpenGLContextGroup: ... method shares (line 4400) | def shares(self, /) -> List[QOpenGLContext]: ... class QOpenGLExtraFunctions (line 4402) | class QOpenGLExtraFunctions(QOpenGLFunctions): method __init__ (line 4404) | def __init__(self, context: QOpenGLContext, /) -> None: ... method __init__ (line 4406) | def __init__(self, /) -> None: ... method glActiveShaderProgram (line 4407) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glBeginQuery (line 4408) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 4409) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindBufferBase (line 4410) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindImageTexture (line 4411) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 4412) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindSampler (line 4413) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTransformFeedback (line 4414) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 4415) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendBarrier (line 4416) | def glBlendBarrier(self, /) -> None: ... method glBlendEquationSeparatei (line 4417) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 4418) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFuncSeparatei (line 4419) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 4420) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 4421) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glClearBufferfi (line 4422) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 4423) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 4424) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 4425) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glColorMaski (line 4426) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompressedTexImage3D (line 4427) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage3D (line 4428) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyImageSubData (line 4429) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexSubImage3D (line 4430) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glDebugMessageControl (line 4431) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 4432) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteProgramPipelines (line 4433) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 4434) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteSamplers (line 4435) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteTransformFeedbacks (line 4436) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 4437) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDisablei (line 4438) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 4439) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArraysIndirect (line 4440) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 4441) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffers (line 4442) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElementsBaseVertex (line 4443) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 4444) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 4445) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 4446) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 4447) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 4448) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEnablei (line 4449) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndQuery (line 4450) | def glEndQuery(self, target: int, /) -> None: ... method glFramebufferParameteri (line 4451) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferTexture (line 4452) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTextureLayer (line 4453) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glGenProgramPipelines (line 4454) | def glGenProgramPipelines(self, n: int, pipelines: typing.Iterable[int... method glGenQueries (line 4455) | def glGenQueries(self, n: int, ids: typing.Iterable[int], /) -> None: ... method glGenSamplers (line 4456) | def glGenSamplers(self, count: int, samplers: typing.Iterable[int], /)... method glGenTransformFeedbacks (line 4457) | def glGenTransformFeedbacks(self, n: int, ids: typing.Iterable[int], /... method glGenVertexArrays (line 4458) | def glGenVertexArrays(self, n: int, arrays: typing.Iterable[int], /) -... method glGetActiveUniformBlockiv (line 4459) | def glGetActiveUniformBlockiv(self, program: int, uniformBlockIndex: i... method glGetActiveUniformsiv (line 4460) | def glGetActiveUniformsiv(self, program: int, uniformCount: int, unifo... method glGetBooleani_v (line 4461) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetFragDataLocation (line 4462) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetFramebufferParameteriv (line 4463) | def glGetFramebufferParameteriv(self, target: int, pname: int, params:... method glGetGraphicsResetStatus (line 4464) | def glGetGraphicsResetStatus(self, /) -> int: ... method glGetIntegeri_v (line 4466) | def glGetIntegeri_v(self, target: int, index: int, data: typing.Iterab... method glGetIntegeri_v (line 4468) | def glGetIntegeri_v(self, arg__1: int, arg__2: int, /) -> Union[int, L... method glGetInternalformativ (line 4469) | def glGetInternalformativ(self, target: int, internalformat: int, pnam... method glGetMultisamplefv (line 4470) | def glGetMultisamplefv(self, pname: int, index: int, val: typing.Itera... method glGetProgramInterfaceiv (line 4471) | def glGetProgramInterfaceiv(self, program: int, programInterface: int,... method glGetProgramPipelineiv (line 4472) | def glGetProgramPipelineiv(self, pipeline: int, pname: int, params: ty... method glGetProgramResourceIndex (line 4473) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 4474) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceiv (line 4475) | def glGetProgramResourceiv(self, program: int, programInterface: int, ... method glGetQueryObjectuiv (line 4476) | def glGetQueryObjectuiv(self, id: int, pname: int, params: typing.Iter... method glGetQueryiv (line 4477) | def glGetQueryiv(self, target: int, pname: int, params: typing.Iterabl... method glGetSamplerParameterIiv (line 4478) | def glGetSamplerParameterIiv(self, sampler: int, pname: int, params: t... method glGetSamplerParameterIuiv (line 4479) | def glGetSamplerParameterIuiv(self, sampler: int, pname: int, params: ... method glGetSamplerParameterfv (line 4480) | def glGetSamplerParameterfv(self, sampler: int, pname: int, params: ty... method glGetSamplerParameteriv (line 4481) | def glGetSamplerParameteriv(self, sampler: int, pname: int, params: ty... method glGetStringi (line 4482) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexLevelParameterfv (line 4483) | def glGetTexLevelParameterfv(self, target: int, level: int, pname: int... method glGetTexLevelParameteriv (line 4484) | def glGetTexLevelParameteriv(self, target: int, level: int, pname: int... method glGetTexParameterIiv (line 4485) | def glGetTexParameterIiv(self, target: int, pname: int, params: typing... method glGetTexParameterIuiv (line 4486) | def glGetTexParameterIuiv(self, target: int, pname: int, params: typin... method glGetUniformBlockIndex (line 4487) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformuiv (line 4488) | def glGetUniformuiv(self, program: int, location: int, params: typing.... method glGetVertexAttribIiv (line 4489) | def glGetVertexAttribIiv(self, index: int, pname: int, params: typing.... method glGetVertexAttribIuiv (line 4490) | def glGetVertexAttribIuiv(self, index: int, pname: int, params: typing... method glGetnUniformfv (line 4491) | def glGetnUniformfv(self, program: int, location: int, bufSize: int, /... method glGetnUniformiv (line 4492) | def glGetnUniformiv(self, program: int, location: int, bufSize: int, p... method glGetnUniformuiv (line 4493) | def glGetnUniformuiv(self, program: int, location: int, bufSize: int, ... method glInvalidateFramebuffer (line 4494) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 4495) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glIsEnabledi (line 4496) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsProgramPipeline (line 4497) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 4498) | def glIsQuery(self, id: int, /) -> int: ... method glIsSampler (line 4499) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsTransformFeedback (line 4500) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 4501) | def glIsVertexArray(self, array: int, /) -> int: ... method glMemoryBarrier (line 4502) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMemoryBarrierByRegion (line 4503) | def glMemoryBarrierByRegion(self, barriers: int, /) -> None: ... method glMinSampleShading (line 4504) | def glMinSampleShading(self, value: float, /) -> None: ... method glObjectLabel (line 4505) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 4506) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes | bytea... method glPatchParameteri (line 4507) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPopDebugGroup (line 4508) | def glPopDebugGroup(self, /) -> None: ... method glPrimitiveBoundingBox (line 4509) | def glPrimitiveBoundingBox(self, minX: float, minY: float, minZ: float... method glProgramBinary (line 4510) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 4511) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1f (line 4512) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 4513) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 4514) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 4515) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 4516) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 4517) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2f (line 4518) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 4519) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 4520) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 4521) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 4522) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 4523) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3f (line 4524) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 4525) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 4526) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 4527) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 4528) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 4529) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4f (line 4530) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 4531) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 4532) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 4533) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 4534) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 4535) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2fv (line 4536) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3fv (line 4537) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 4538) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3fv (line 4539) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2fv (line 4540) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 4541) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4fv (line 4542) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2fv (line 4543) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 4544) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glPushDebugGroup (line 4545) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glReadBuffer (line 4546) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadnPixels (line 4547) | def glReadnPixels(self, x: int, y: int, width: int, height: int, forma... method glRenderbufferStorageMultisample (line 4548) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleMaski (line 4549) | def glSampleMaski(self, maskNumber: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 4550) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 4551) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 4552) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 4553) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 4554) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 4555) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glTexBuffer (line 4556) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage3D (line 4557) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterIiv (line 4558) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 4559) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexStorage2D (line 4560) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 4561) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 4562) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 4563) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage3D (line 4564) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1ui (line 4565) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 4566) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2ui (line 4567) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 4568) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3ui (line 4569) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 4570) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4ui (line 4571) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 4572) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 4573) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2x3fv (line 4574) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 4575) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 4576) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 4577) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 4578) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 4579) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 4580) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgramStages (line 4581) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgramPipeline (line 4582) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertexAttribBinding (line 4583) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 4584) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 4585) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI4i (line 4586) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 4587) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ui (line 4588) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 4589) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIFormat (line 4590) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 4591) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexBindingDivisor (line 4592) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... class QOpenGLFunctions (line 4594) | class QOpenGLFunctions(shiboken6.Object): class OpenGLFeature (line 4595) | class OpenGLFeature(enum.Flag): method __init__ (line 4615) | def __init__(self, context: QOpenGLContext, /) -> None: ... method __init__ (line 4617) | def __init__(self, /) -> None: ... method glActiveTexture (line 4618) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 4619) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBindAttribLocation (line 4620) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 4621) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindFramebuffer (line 4622) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 4623) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindTexture (line 4624) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 4625) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 4626) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 4627) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 4628) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 4629) | def glBlendFuncSeparate(self, srcRGB: int, dstRGB: int, srcAlpha: int,... method glCheckFramebufferStatus (line 4630) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClear (line 4631) | def glClear(self, mask: int, /) -> None: ... method glClearColor (line 4632) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepthf (line 4633) | def glClearDepthf(self, depth: float, /) -> None: ... method glClearStencil (line 4634) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 4635) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glCompileShader (line 4636) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage2D (line 4637) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexSubImage2D (line 4638) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCopyTexImage2D (line 4639) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage2D (line 4640) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4641) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 4642) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 4643) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 4644) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 4645) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 4646) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteRenderbuffers (line 4647) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 4648) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 4649) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 4650) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 4651) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRangef (line 4652) | def glDepthRangef(self, zNear: float, zFar: float, /) -> None: ... method glDetachShader (line 4653) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 4654) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 4655) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDrawArrays (line 4656) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawElements (line 4657) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glEnable (line 4658) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 4659) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glFinish (line 4660) | def glFinish(self, /) -> None: ... method glFlush (line 4661) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 4662) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture2D (line 4663) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFrontFace (line 4664) | def glFrontFace(self, mode: int, /) -> None: ... method glGenBuffers (line 4665) | def glGenBuffers(self, n: int, buffers: typing.Iterable[int], /) -> No... method glGenFramebuffers (line 4666) | def glGenFramebuffers(self, n: int, framebuffers: typing.Iterable[int]... method glGenRenderbuffers (line 4667) | def glGenRenderbuffers(self, n: int, renderbuffers: typing.Iterable[in... method glGenTextures (line 4668) | def glGenTextures(self, n: int, textures: typing.Iterable[int], /) -> ... method glGenerateMipmap (line 4669) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttachedShaders (line 4670) | def glGetAttachedShaders(self, program: int, maxcount: int, count: typ... method glGetAttribLocation (line 4671) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleanv (line 4672) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetBufferParameteriv (line 4673) | def glGetBufferParameteriv(self, target: int, pname: int, params: typi... method glGetError (line 4674) | def glGetError(self, /) -> int: ... method glGetFloatv (line 4676) | def glGetFloatv(self, pname: int, params: typing.Iterable[float], /) -... method glGetFloatv (line 4678) | def glGetFloatv(self, arg__1: int, /) -> Union[float, List[Any]]: ... method glGetFramebufferAttachmentParameteriv (line 4679) | def glGetFramebufferAttachmentParameteriv(self, target: int, attachmen... method glGetIntegerv (line 4681) | def glGetIntegerv(self, pname: int, params: typing.Iterable[int], /) -... method glGetIntegerv (line 4683) | def glGetIntegerv(self, arg__1: int, /) -> Union[int, List[Any]]: ... method glGetProgramiv (line 4684) | def glGetProgramiv(self, program: int, pname: int, params: typing.Iter... method glGetRenderbufferParameteriv (line 4685) | def glGetRenderbufferParameteriv(self, target: int, pname: int, params... method glGetShaderPrecisionFormat (line 4686) | def glGetShaderPrecisionFormat(self, shadertype: int, precisiontype: i... method glGetShaderSource (line 4687) | def glGetShaderSource(self, shader: int, /) -> bytes | bytearray | mem... method glGetShaderiv (line 4688) | def glGetShaderiv(self, shader: int, pname: int, params: typing.Iterab... method glGetString (line 4689) | def glGetString(self, name: int, /) -> str: ... method glGetTexParameterfv (line 4690) | def glGetTexParameterfv(self, target: int, pname: int, params: typing.... method glGetTexParameteriv (line 4691) | def glGetTexParameteriv(self, target: int, pname: int, params: typing.... method glGetUniformLocation (line 4692) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glGetUniformfv (line 4693) | def glGetUniformfv(self, program: int, location: int, params: typing.I... method glGetUniformiv (line 4694) | def glGetUniformiv(self, program: int, location: int, params: typing.I... method glGetVertexAttribfv (line 4695) | def glGetVertexAttribfv(self, index: int, pname: int, params: typing.I... method glGetVertexAttribiv (line 4696) | def glGetVertexAttribiv(self, index: int, pname: int, params: typing.I... method glHint (line 4697) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 4698) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 4699) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsFramebuffer (line 4700) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 4701) | def glIsProgram(self, program: int, /) -> int: ... method glIsRenderbuffer (line 4702) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsShader (line 4703) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 4704) | def glIsTexture(self, texture: int, /) -> int: ... method glLineWidth (line 4705) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 4706) | def glLinkProgram(self, program: int, /) -> None: ... method glPixelStorei (line 4707) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPolygonOffset (line 4708) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glReadPixels (line 4709) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 4710) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderbufferStorage (line 4711) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glSampleCoverage (line 4712) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScissor (line 4713) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glShaderBinary (line 4714) | def glShaderBinary(self, n: int, shaders: typing.Iterable[int], binary... method glShaderSource (line 4715) | def glShaderSource(self, shader: int, source: str, /) -> None: ... method glStencilFunc (line 4716) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 4717) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 4718) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 4719) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 4720) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 4721) | def glStencilOpSeparate(self, face: int, fail: int, zfail: int, zpass:... method glTexImage2D (line 4722) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 4723) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 4724) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 4725) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 4726) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage2D (line 4727) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 4728) | def glUniform1f(self, location: int, x: float, /) -> None: ... method glUniform1fv (line 4729) | def glUniform1fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform1i (line 4730) | def glUniform1i(self, location: int, x: int, /) -> None: ... method glUniform1iv (line 4731) | def glUniform1iv(self, location: int, count: int, v: typing.Iterable[i... method glUniform2f (line 4732) | def glUniform2f(self, location: int, x: float, y: float, /) -> None: ... method glUniform2fv (line 4733) | def glUniform2fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform2i (line 4734) | def glUniform2i(self, location: int, x: int, y: int, /) -> None: ... method glUniform2iv (line 4735) | def glUniform2iv(self, location: int, count: int, v: typing.Iterable[i... method glUniform3f (line 4736) | def glUniform3f(self, location: int, x: float, y: float, z: float, /) ... method glUniform3fv (line 4737) | def glUniform3fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform3i (line 4738) | def glUniform3i(self, location: int, x: int, y: int, z: int, /) -> Non... method glUniform3iv (line 4739) | def glUniform3iv(self, location: int, count: int, v: typing.Iterable[i... method glUniform4f (line 4740) | def glUniform4f(self, location: int, x: float, y: float, z: float, w: ... method glUniform4fv (line 4741) | def glUniform4fv(self, location: int, count: int, v: typing.Iterable[f... method glUniform4i (line 4742) | def glUniform4i(self, location: int, x: int, y: int, z: int, w: int, /... method glUniform4iv (line 4743) | def glUniform4iv(self, location: int, count: int, v: typing.Iterable[i... method glUniformMatrix2fv (line 4744) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 4745) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 4746) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUseProgram (line 4747) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 4748) | def glValidateProgram(self, program: int, /) -> None: ... method glVertexAttrib1f (line 4749) | def glVertexAttrib1f(self, indx: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 4750) | def glVertexAttrib1fv(self, indx: int, values: typing.Iterable[float],... method glVertexAttrib2f (line 4751) | def glVertexAttrib2f(self, indx: int, x: float, y: float, /) -> None: ... method glVertexAttrib2fv (line 4752) | def glVertexAttrib2fv(self, indx: int, values: typing.Iterable[float],... method glVertexAttrib3f (line 4753) | def glVertexAttrib3f(self, indx: int, x: float, y: float, z: float, /)... method glVertexAttrib3fv (line 4754) | def glVertexAttrib3fv(self, indx: int, values: typing.Iterable[float],... method glVertexAttrib4f (line 4755) | def glVertexAttrib4f(self, indx: int, x: float, y: float, z: float, w:... method glVertexAttrib4fv (line 4756) | def glVertexAttrib4fv(self, indx: int, values: typing.Iterable[float],... method glVertexAttribPointer (line 4757) | def glVertexAttribPointer(self, indx: int, size: int, type: int, norma... method glViewport (line 4758) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method hasOpenGLFeature (line 4759) | def hasOpenGLFeature(self, feature: QOpenGLFunctions.OpenGLFeature, /)... method initializeOpenGLFunctions (line 4760) | def initializeOpenGLFunctions(self, /) -> None: ... method openGLFeatures (line 4761) | def openGLFeatures(self, /) -> QOpenGLFunctions.OpenGLFeature: ... class QOverrideCursorGuard (line 4763) | class QOverrideCursorGuard(shiboken6.Object): method __init__ (line 4764) | def __init__(self, /) -> None: ... method restoreOverrideCursor (line 4765) | def restoreOverrideCursor(self, /) -> None: ... method __enter__ (line 4766) | def __enter__(self, /) -> QOverrideCursorGuard: ... method __exit__ (line 4767) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QPageLayout (line 4769) | class QPageLayout(shiboken6.Object): class Mode (line 4770) | class Mode(enum.Enum): class Orientation (line 4774) | class Orientation(enum.Enum): class OutOfBoundsPolicy (line 4778) | class OutOfBoundsPolicy(enum.Enum): class Unit (line 4782) | class Unit(enum.Enum): method __init__ (line 4790) | def __init__(self, pageSize: QPageSize | QPageSize.PageSizeId | PySide... method __init__ (line 4792) | def __init__(self, other: QPageLayout, /) -> None: ... method __init__ (line 4794) | def __init__(self, /) -> None: ... method fullRect (line 4796) | def fullRect(self, units: QPageLayout.Unit, /) -> PySide6.QtCore.QRect... method fullRect (line 4798) | def fullRect(self, /) -> PySide6.QtCore.QRectF: ... method fullRectPixels (line 4799) | def fullRectPixels(self, resolution: int, /) -> PySide6.QtCore.QRect: ... method fullRectPoints (line 4800) | def fullRectPoints(self, /) -> PySide6.QtCore.QRect: ... method isEquivalentTo (line 4801) | def isEquivalentTo(self, other: QPageLayout, /) -> bool: ... method isValid (line 4802) | def isValid(self, /) -> bool: ... method margins (line 4804) | def margins(self, units: QPageLayout.Unit, /) -> PySide6.QtCore.QMargi... method margins (line 4806) | def margins(self, /) -> PySide6.QtCore.QMarginsF: ... method marginsPixels (line 4807) | def marginsPixels(self, resolution: int, /) -> PySide6.QtCore.QMargins... method marginsPoints (line 4808) | def marginsPoints(self, /) -> PySide6.QtCore.QMargins: ... method maximumMargins (line 4809) | def maximumMargins(self, /) -> PySide6.QtCore.QMarginsF: ... method minimumMargins (line 4810) | def minimumMargins(self, /) -> PySide6.QtCore.QMarginsF: ... method mode (line 4811) | def mode(self, /) -> QPageLayout.Mode: ... method orientation (line 4812) | def orientation(self, /) -> QPageLayout.Orientation: ... method pageSize (line 4813) | def pageSize(self, /) -> QPageSize: ... method paintRect (line 4815) | def paintRect(self, units: QPageLayout.Unit, /) -> PySide6.QtCore.QRec... method paintRect (line 4817) | def paintRect(self, /) -> PySide6.QtCore.QRectF: ... method paintRectPixels (line 4818) | def paintRectPixels(self, resolution: int, /) -> PySide6.QtCore.QRect:... method paintRectPoints (line 4819) | def paintRectPoints(self, /) -> PySide6.QtCore.QRect: ... method setBottomMargin (line 4820) | def setBottomMargin(self, bottomMargin: float, /, outOfBoundsPolicy: Q... method setLeftMargin (line 4821) | def setLeftMargin(self, leftMargin: float, /, outOfBoundsPolicy: QPage... method setMargins (line 4822) | def setMargins(self, margins: PySide6.QtCore.QMarginsF | PySide6.QtCor... method setMinimumMargins (line 4823) | def setMinimumMargins(self, minMargins: PySide6.QtCore.QMarginsF | PyS... method setMode (line 4824) | def setMode(self, mode: QPageLayout.Mode, /) -> None: ... method setOrientation (line 4825) | def setOrientation(self, orientation: QPageLayout.Orientation, /) -> N... method setPageSize (line 4826) | def setPageSize(self, pageSize: QPageSize | QPageSize.PageSizeId | PyS... method setRightMargin (line 4827) | def setRightMargin(self, rightMargin: float, /, outOfBoundsPolicy: QPa... method setTopMargin (line 4828) | def setTopMargin(self, topMargin: float, /, outOfBoundsPolicy: QPageLa... method setUnits (line 4829) | def setUnits(self, units: QPageLayout.Unit, /) -> None: ... method swap (line 4830) | def swap(self, other: QPageLayout, /) -> None: ... method units (line 4831) | def units(self, /) -> QPageLayout.Unit: ... method __copy__ (line 4832) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4833) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4834) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4835) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4836) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4837) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4838) | def __ne__(self, other: object) -> bool: ... class QPageRanges (line 4840) | class QPageRanges(shiboken6.Object): class Range (line 4841) | class Range(shiboken6.Object): method __init__ (line 4845) | def __init__(self, Range: QPageRanges.Range, /) -> None: ... method __init__ (line 4847) | def __init__(self, /) -> None: ... method contains (line 4848) | def contains(self, pageNumber: int, /) -> bool: ... method __copy__ (line 4849) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4850) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4851) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4852) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4853) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4854) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4855) | def __ne__(self, other: object) -> bool: ... method __init__ (line 4857) | def __init__(self, other: QPageRanges, /) -> None: ... method __init__ (line 4859) | def __init__(self, /) -> None: ... method addPage (line 4860) | def addPage(self, pageNumber: int, /) -> None: ... method addRange (line 4861) | def addRange(self, from_: int, to: int, /) -> None: ... method clear (line 4862) | def clear(self, /) -> None: ... method contains (line 4863) | def contains(self, pageNumber: int, /) -> bool: ... method firstPage (line 4864) | def firstPage(self, /) -> int: ... method fromString (line 4866) | def fromString(ranges: str, /) -> QPageRanges: ... method isEmpty (line 4867) | def isEmpty(self, /) -> bool: ... method lastPage (line 4868) | def lastPage(self, /) -> int: ... method swap (line 4869) | def swap(self, other: QPageRanges, /) -> None: ... method toRangeList (line 4870) | def toRangeList(self, /) -> List[QPageRanges.Range]: ... method toString (line 4871) | def toString(self, /) -> str: ... method __copy__ (line 4872) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 4873) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4874) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4875) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4876) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4877) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 4878) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4879) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 4880) | def __rlshift__(self, other): ... method __rrshift__ (line 4881) | def __rrshift__(self, other): ... method __rshift__ (line 4882) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QPageSize (line 4884) | class QPageSize(shiboken6.Object): class PageSizeId (line 4885) | class PageSizeId(enum.Enum): class SizeMatchPolicy (line 5012) | class SizeMatchPolicy(enum.Enum): class Unit (line 5017) | class Unit(enum.Enum): method __init__ (line 5025) | def __init__(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSize,... method __init__ (line 5027) | def __init__(self, pointSize: PySide6.QtCore.QSize, /, name: str = ...... method __init__ (line 5029) | def __init__(self, pageSizeId: QPageSize.PageSizeId, /) -> None: ... method __init__ (line 5031) | def __init__(self, other: QPageSize, /) -> None: ... method __init__ (line 5033) | def __init__(self, /) -> None: ... method definitionSize (line 5035) | def definitionSize(self) -> typing.Any: ... method definitionUnits (line 5037) | def definitionUnits(self) -> typing.Any: ... method id (line 5039) | def id(self) -> typing.Any: ... method isEquivalentTo (line 5040) | def isEquivalentTo(self, other: QPageSize | QPageSize.PageSizeId | PyS... method isValid (line 5041) | def isValid(self, /) -> bool: ... method key (line 5043) | def key(self) -> typing.Any: ... method name (line 5045) | def name(self) -> typing.Any: ... method rect (line 5046) | def rect(self, units: QPageSize.Unit, /) -> PySide6.QtCore.QRectF: ... method rectPixels (line 5047) | def rectPixels(self, resolution: int, /) -> PySide6.QtCore.QRect: ... method rectPoints (line 5048) | def rectPoints(self, /) -> PySide6.QtCore.QRect: ... method size (line 5050) | def size(self) -> typing.Any: ... method sizePixels (line 5052) | def sizePixels(self) -> typing.Any: ... method sizePoints (line 5054) | def sizePoints(self) -> typing.Any: ... method swap (line 5055) | def swap(self, other: QPageSize | QPageSize.PageSizeId | PySide6.QtCor... method windowsId (line 5057) | def windowsId(self) -> typing.Any: ... method __copy__ (line 5058) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5059) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5060) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5061) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5062) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5063) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5064) | def __ne__(self, other: object) -> bool: ... class QPagedPaintDevice (line 5066) | class QPagedPaintDevice(QPaintDevice): class PdfVersion (line 5067) | class PdfVersion(enum.Enum): method __init__ (line 5072) | def __init__(self, *args, **kwargs) -> None: ... method newPage (line 5073) | def newPage(self, /) -> bool: ... method pageLayout (line 5074) | def pageLayout(self, /) -> QPageLayout: ... method pageRanges (line 5075) | def pageRanges(self, /) -> QPageRanges: ... method setPageLayout (line 5076) | def setPageLayout(self, pageLayout: QPageLayout, /) -> bool: ... method setPageMargins (line 5077) | def setPageMargins(self, margins: PySide6.QtCore.QMarginsF | PySide6.Q... method setPageOrientation (line 5078) | def setPageOrientation(self, orientation: QPageLayout.Orientation, /) ... method setPageRanges (line 5079) | def setPageRanges(self, ranges: QPageRanges, /) -> None: ... method setPageSize (line 5080) | def setPageSize(self, pageSize: QPageSize | QPageSize.PageSizeId | PyS... class QPaintDevice (line 5082) | class QPaintDevice(shiboken6.Object): class PaintDeviceMetric (line 5083) | class PaintDeviceMetric(enum.Enum): method __init__ (line 5099) | def __init__(self, /) -> None: ... method colorCount (line 5100) | def colorCount(self, /) -> int: ... method depth (line 5101) | def depth(self, /) -> int: ... method devType (line 5102) | def devType(self, /) -> int: ... method devicePixelRatio (line 5103) | def devicePixelRatio(self, /) -> float: ... method devicePixelRatioF (line 5104) | def devicePixelRatioF(self, /) -> float: ... method devicePixelRatioFScale (line 5106) | def devicePixelRatioFScale() -> float: ... method encodeMetricF (line 5108) | def encodeMetricF(metric: QPaintDevice.PaintDeviceMetric, value: float... method height (line 5109) | def height(self, /) -> int: ... method heightMM (line 5110) | def heightMM(self, /) -> int: ... method initPainter (line 5111) | def initPainter(self, painter: QPainter, /) -> None: ... method logicalDpiX (line 5112) | def logicalDpiX(self, /) -> int: ... method logicalDpiY (line 5113) | def logicalDpiY(self, /) -> int: ... method metric (line 5114) | def metric(self, metric: QPaintDevice.PaintDeviceMetric, /) -> int: ... method paintEngine (line 5115) | def paintEngine(self, /) -> QPaintEngine: ... method paintingActive (line 5116) | def paintingActive(self, /) -> bool: ... method physicalDpiX (line 5117) | def physicalDpiX(self, /) -> int: ... method physicalDpiY (line 5118) | def physicalDpiY(self, /) -> int: ... method redirected (line 5119) | def redirected(self, offset: PySide6.QtCore.QPoint, /) -> QPaintDevice... method sharedPainter (line 5120) | def sharedPainter(self, /) -> QPainter: ... method width (line 5121) | def width(self, /) -> int: ... method widthMM (line 5122) | def widthMM(self, /) -> int: ... class QPaintDeviceWindow (line 5124) | class QPaintDeviceWindow(QWindow, QPaintDevice): method __init__ (line 5126) | def __init__(self, *args, active: bool = ..., activeChanged: typing.Ca... method event (line 5127) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method exposeEvent (line 5128) | def exposeEvent(self, arg__1: QExposeEvent, /) -> None: ... method metric (line 5129) | def metric(self, metric: QPaintDevice.PaintDeviceMetric, /) -> int: ... method paintEngine (line 5130) | def paintEngine(self, /) -> QPaintEngine: ... method paintEvent (line 5131) | def paintEvent(self, event: QPaintEvent, /) -> None: ... method update (line 5133) | def update(self, region: QRegion | QBitmap | QPolygon | PySide6.QtCore... method update (line 5135) | def update(self, rect: PySide6.QtCore.QRect, /) -> None: ... # type: ... method update (line 5137) | def update(self, /) -> None: ... class QPaintEngine (line 5139) | class QPaintEngine(shiboken6.Object): class DirtyFlag (line 5140) | class DirtyFlag(enum.Flag): class PaintEngineFeature (line 5156) | class PaintEngineFeature(enum.Flag): class PolygonDrawMode (line 5178) | class PolygonDrawMode(enum.Enum): class Type (line 5184) | class Type(enum.Enum): method __init__ (line 5209) | def __init__(self, /, features: QPaintEngine.PaintEngineFeature = ...)... method begin (line 5210) | def begin(self, pdev: QPaintDevice, /) -> bool: ... method clearDirty (line 5211) | def clearDirty(self, df: QPaintEngine.DirtyFlag, /) -> None: ... method coordinateOffset (line 5212) | def coordinateOffset(self, /) -> PySide6.QtCore.QPoint: ... method createPixmap (line 5213) | def createPixmap(self, size: PySide6.QtCore.QSize, /) -> QPixmap: ... method createPixmapFromImage (line 5214) | def createPixmapFromImage(self, image: QImage, /, flags: PySide6.QtCor... method drawEllipse (line 5216) | def drawEllipse(self, r: PySide6.QtCore.QRect, /) -> None: ... method drawEllipse (line 5218) | def drawEllipse(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method drawImage (line 5219) | def drawImage(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, p... method drawLines (line 5220) | def drawLines(self, lines: collections.abc.Iterable, /) -> None: ... method drawPath (line 5221) | def drawPath(self, path: QPainterPath, /) -> None: ... method drawPixmap (line 5222) | def drawPixmap(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method drawPoints (line 5223) | def drawPoints(self, points: collections.abc.Iterable, /) -> None: ... method drawPolygon (line 5224) | def drawPolygon(self, points: collections.abc.Iterable, mode: QPaintEn... method drawRects (line 5225) | def drawRects(self, rects: collections.abc.Iterable, /) -> None: ... method drawTextItem (line 5226) | def drawTextItem(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method drawTiledPixmap (line 5227) | def drawTiledPixmap(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method end (line 5228) | def end(self, /) -> bool: ... method hasFeature (line 5229) | def hasFeature(self, feature: QPaintEngine.PaintEngineFeature, /) -> b... method isActive (line 5230) | def isActive(self, /) -> bool: ... method isExtended (line 5231) | def isExtended(self, /) -> bool: ... method paintDevice (line 5232) | def paintDevice(self, /) -> QPaintDevice: ... method painter (line 5233) | def painter(self, /) -> QPainter: ... method setActive (line 5234) | def setActive(self, newState: bool, /) -> None: ... method setDirty (line 5235) | def setDirty(self, df: QPaintEngine.DirtyFlag, /) -> None: ... method setSystemClip (line 5236) | def setSystemClip(self, baseClip: QRegion | QBitmap | QPolygon | PySid... method setSystemRect (line 5237) | def setSystemRect(self, rect: PySide6.QtCore.QRect, /) -> None: ... method syncState (line 5238) | def syncState(self, /) -> None: ... method systemClip (line 5239) | def systemClip(self, /) -> QRegion: ... method systemRect (line 5240) | def systemRect(self, /) -> PySide6.QtCore.QRect: ... method testDirty (line 5241) | def testDirty(self, df: QPaintEngine.DirtyFlag, /) -> bool: ... method type (line 5242) | def type(self, /) -> QPaintEngine.Type: ... method updateState (line 5243) | def updateState(self, state: QPaintEngineState, /) -> None: ... class QPaintEngineState (line 5245) | class QPaintEngineState(shiboken6.Object): method __init__ (line 5247) | def __init__(self, /) -> None: ... method backgroundBrush (line 5248) | def backgroundBrush(self, /) -> QBrush: ... method backgroundMode (line 5249) | def backgroundMode(self, /) -> PySide6.QtCore.Qt.BGMode: ... method brush (line 5250) | def brush(self, /) -> QBrush: ... method brushNeedsResolving (line 5251) | def brushNeedsResolving(self, /) -> bool: ... method brushOrigin (line 5252) | def brushOrigin(self, /) -> PySide6.QtCore.QPointF: ... method clipOperation (line 5253) | def clipOperation(self, /) -> PySide6.QtCore.Qt.ClipOperation: ... method clipPath (line 5254) | def clipPath(self, /) -> QPainterPath: ... method clipRegion (line 5255) | def clipRegion(self, /) -> QRegion: ... method compositionMode (line 5256) | def compositionMode(self, /) -> QPainter.CompositionMode: ... method font (line 5257) | def font(self, /) -> QFont: ... method isClipEnabled (line 5258) | def isClipEnabled(self, /) -> bool: ... method opacity (line 5259) | def opacity(self, /) -> float: ... method painter (line 5260) | def painter(self, /) -> QPainter: ... method pen (line 5261) | def pen(self, /) -> QPen: ... method penNeedsResolving (line 5262) | def penNeedsResolving(self, /) -> bool: ... method renderHints (line 5263) | def renderHints(self, /) -> QPainter.RenderHint: ... method state (line 5264) | def state(self, /) -> QPaintEngine.DirtyFlag: ... method transform (line 5265) | def transform(self, /) -> QTransform: ... class QPaintEvent (line 5267) | class QPaintEvent(PySide6.QtCore.QEvent): method __init__ (line 5269) | def __init__(self, paintRegion: QRegion | QBitmap | QPolygon | PySide6... method __init__ (line 5271) | def __init__(self, paintRect: PySide6.QtCore.QRect, /) -> None: ... #... method __init__ (line 5273) | def __init__(self, arg__1: QPaintEvent, /) -> None: ... method clone (line 5274) | def clone(self, /) -> QPaintEvent: ... method rect (line 5275) | def rect(self, /) -> PySide6.QtCore.QRect: ... method region (line 5276) | def region(self, /) -> QRegion: ... class QPainter (line 5278) | class QPainter(shiboken6.Object): class CompositionMode (line 5279) | class CompositionMode(enum.Enum): class PixmapFragment (line 5320) | class PixmapFragment(shiboken6.Object): method __init__ (line 5332) | def __init__(self, PixmapFragment: QPainter.PixmapFragment, /) -> No... method __init__ (line 5334) | def __init__(self, /) -> None: ... method create (line 5336) | def create(pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | QPa... method __copy__ (line 5337) | def __copy__(self, /) -> typing_extensions.Self: ... class PixmapFragmentHint (line 5339) | class PixmapFragmentHint(enum.Flag): class RenderHint (line 5342) | class RenderHint(enum.Flag): method __init__ (line 5350) | def __init__(self, arg__1: QPaintDevice, /) -> None: ... method __init__ (line 5352) | def __init__(self, /) -> None: ... method background (line 5353) | def background(self, /) -> QBrush: ... method backgroundMode (line 5354) | def backgroundMode(self, /) -> PySide6.QtCore.Qt.BGMode: ... method begin (line 5355) | def begin(self, arg__1: QPaintDevice, /) -> bool: ... method beginNativePainting (line 5356) | def beginNativePainting(self, /) -> None: ... method boundingRect (line 5358) | def boundingRect(self, x: int, y: int, w: int, h: int, flags: typing.S... method boundingRect (line 5360) | def boundingRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method boundingRect (line 5362) | def boundingRect(self, rect: PySide6.QtCore.QRect, flags: typing.Suppo... method boundingRect (line 5364) | def boundingRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method brush (line 5365) | def brush(self, /) -> QBrush: ... method brushOrigin (line 5366) | def brushOrigin(self, /) -> PySide6.QtCore.QPoint: ... method clipBoundingRect (line 5367) | def clipBoundingRect(self, /) -> PySide6.QtCore.QRectF: ... method clipPath (line 5368) | def clipPath(self, /) -> QPainterPath: ... method clipRegion (line 5369) | def clipRegion(self, /) -> QRegion: ... method combinedTransform (line 5370) | def combinedTransform(self, /) -> QTransform: ... method compositionMode (line 5371) | def compositionMode(self, /) -> QPainter.CompositionMode: ... method device (line 5372) | def device(self, /) -> QPaintDevice: ... method deviceTransform (line 5373) | def deviceTransform(self, /) -> QTransform: ... method drawArc (line 5375) | def drawArc(self, x: int, y: int, w: int, h: int, a: int, alen: int, /... method drawArc (line 5377) | def drawArc(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method drawArc (line 5379) | def drawArc(self, arg__1: PySide6.QtCore.QRect, a: int, alen: int, /) ... method drawChord (line 5381) | def drawChord(self, x: int, y: int, w: int, h: int, a: int, alen: int,... method drawChord (line 5383) | def drawChord(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method drawChord (line 5385) | def drawChord(self, arg__1: PySide6.QtCore.QRect, a: int, alen: int, /... method drawConvexPolygon (line 5387) | def drawConvexPolygon(self, polygon: QPolygon | typing.Iterable[PySide... method drawConvexPolygon (line 5389) | def drawConvexPolygon(self, polygon: QPolygonF | typing.Iterable[PySid... method drawConvexPolygon (line 5391) | def drawConvexPolygon(self, points: typing.Iterable[PySide6.QtCore.QPo... method drawConvexPolygon (line 5393) | def drawConvexPolygon(self, points: typing.Iterable[PySide6.QtCore.QPo... method drawEllipse (line 5395) | def drawEllipse(self, x: int, y: int, w: int, h: int, /) -> None: ... method drawEllipse (line 5397) | def drawEllipse(self, center: PySide6.QtCore.QPoint, rx: int, ry: int,... method drawEllipse (line 5399) | def drawEllipse(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.... method drawEllipse (line 5401) | def drawEllipse(self, r: PySide6.QtCore.QRect, /) -> None: ... method drawEllipse (line 5403) | def drawEllipse(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method drawGlyphRun (line 5404) | def drawGlyphRun(self, position: PySide6.QtCore.QPointF | PySide6.QtCo... method drawImage (line 5406) | def drawImage(self, x: int, y: int, image: QImage, /, sx: int | None =... method drawImage (line 5408) | def drawImage(self, targetRect: PySide6.QtCore.QRect, image: QImage, s... method drawImage (line 5410) | def drawImage(self, targetRect: PySide6.QtCore.QRectF | PySide6.QtCore... method drawImage (line 5412) | def drawImage(self, p: PySide6.QtCore.QPoint, image: QImage, sr: PySid... method drawImage (line 5414) | def drawImage(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint ... method drawImage (line 5416) | def drawImage(self, r: PySide6.QtCore.QRect, image: QImage, /) -> None... method drawImage (line 5418) | def drawImage(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, i... method drawImage (line 5420) | def drawImage(self, p: PySide6.QtCore.QPoint, image: QImage, /) -> Non... method drawImage (line 5422) | def drawImage(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint ... method drawLine (line 5424) | def drawLine(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method drawLine (line 5426) | def drawLine(self, p1: PySide6.QtCore.QPoint, p2: PySide6.QtCore.QPoin... method drawLine (line 5428) | def drawLine(self, p1: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint ... method drawLine (line 5430) | def drawLine(self, line: PySide6.QtCore.QLine, /) -> None: ... method drawLine (line 5432) | def drawLine(self, line: PySide6.QtCore.QLineF | PySide6.QtCore.QLine,... method drawLines (line 5434) | def drawLines(self, pointPairs: PySide6.QtCore.QPoint, lineCount: int,... method drawLines (line 5436) | def drawLines(self, pointPairs: PySide6.QtCore.QPointF | PySide6.QtCor... method drawLines (line 5438) | def drawLines(self, lines: PySide6.QtCore.QLine, lineCount: int, /) ->... method drawLines (line 5440) | def drawLines(self, lines: PySide6.QtCore.QLineF | PySide6.QtCore.QLin... method drawLines (line 5442) | def drawLines(self, pointPairs: typing.Iterable[PySide6.QtCore.QPoint]... method drawLines (line 5444) | def drawLines(self, pointPairs: typing.Iterable[PySide6.QtCore.QPointF... method drawLines (line 5446) | def drawLines(self, lines: typing.Iterable[PySide6.QtCore.QLine], /) -... method drawLines (line 5448) | def drawLines(self, lines: typing.Iterable[PySide6.QtCore.QLineF], /) ... method drawPath (line 5449) | def drawPath(self, path: QPainterPath, /) -> None: ... method drawPicture (line 5451) | def drawPicture(self, x: int, y: int, picture: QPicture | int, /) -> N... method drawPicture (line 5453) | def drawPicture(self, p: PySide6.QtCore.QPoint, picture: QPicture | in... method drawPicture (line 5455) | def drawPicture(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method drawPie (line 5457) | def drawPie(self, x: int, y: int, w: int, h: int, a: int, alen: int, /... method drawPie (line 5459) | def drawPie(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method drawPie (line 5461) | def drawPie(self, arg__1: PySide6.QtCore.QRect, a: int, alen: int, /) ... method drawPixmap (line 5463) | def drawPixmap(self, x: int, y: int, w: int, h: int, pm: QPixmap | QIm... method drawPixmap (line 5465) | def drawPixmap(self, x: int, y: int, pm: QPixmap | QImage, sx: int, sy... method drawPixmap (line 5467) | def drawPixmap(self, x: int, y: int, w: int, h: int, pm: QPixmap | QIm... method drawPixmap (line 5469) | def drawPixmap(self, x: int, y: int, pm: QPixmap | QImage, /) -> None:... method drawPixmap (line 5471) | def drawPixmap(self, targetRect: PySide6.QtCore.QRect, pixmap: QPixmap... method drawPixmap (line 5473) | def drawPixmap(self, targetRect: PySide6.QtCore.QRectF | PySide6.QtCor... method drawPixmap (line 5475) | def drawPixmap(self, p: PySide6.QtCore.QPoint, pm: QPixmap | QImage, s... method drawPixmap (line 5477) | def drawPixmap(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method drawPixmap (line 5479) | def drawPixmap(self, r: PySide6.QtCore.QRect, pm: QPixmap | QImage, /)... method drawPixmap (line 5481) | def drawPixmap(self, p: PySide6.QtCore.QPoint, pm: QPixmap | QImage, /... method drawPixmap (line 5483) | def drawPixmap(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method drawPixmapFragments (line 5484) | def drawPixmapFragments(self, fragments: QPainter.PixmapFragment, frag... method drawPoint (line 5486) | def drawPoint(self, x: int, y: int, /) -> None: ... method drawPoint (line 5488) | def drawPoint(self, pt: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method drawPoint (line 5490) | def drawPoint(self, p: PySide6.QtCore.QPoint, /) -> None: ... # type:... method drawPoints (line 5492) | def drawPoints(self, points: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method drawPoints (line 5494) | def drawPoints(self, points: typing.Iterable[PySide6.QtCore.QPoint], /... method drawPoints (line 5496) | def drawPoints(self, points: typing.Iterable[PySide6.QtCore.QPointF], ... method drawPoints (line 5498) | def drawPoints(self, points: QPolygon | typing.Iterable[PySide6.QtCore... method drawPoints (line 5500) | def drawPoints(self, points: QPolygonF | typing.Iterable[PySide6.QtCor... method drawPointsNp (line 5501) | def drawPointsNp(self, x: typing.Iterable[typing.Any], y: typing.Itera... method drawPolygon (line 5503) | def drawPolygon(self, polygon: QPolygon | typing.Iterable[PySide6.QtCo... method drawPolygon (line 5505) | def drawPolygon(self, polygon: QPolygonF | typing.Iterable[PySide6.QtC... method drawPolygon (line 5507) | def drawPolygon(self, points: typing.Iterable[PySide6.QtCore.QPoint], ... method drawPolygon (line 5509) | def drawPolygon(self, points: typing.Iterable[PySide6.QtCore.QPointF],... method drawPolyline (line 5511) | def drawPolyline(self, polyline: QPolygonF | typing.Iterable[PySide6.Q... method drawPolyline (line 5513) | def drawPolyline(self, polygon: QPolygon | typing.Iterable[PySide6.QtC... method drawPolyline (line 5515) | def drawPolyline(self, points: typing.Iterable[PySide6.QtCore.QPoint],... method drawPolyline (line 5517) | def drawPolyline(self, points: typing.Iterable[PySide6.QtCore.QPointF]... method drawRect (line 5519) | def drawRect(self, x1: int, y1: int, w: int, h: int, /) -> None: ... method drawRect (line 5521) | def drawRect(self, rect: PySide6.QtCore.QRect, /) -> None: ... method drawRect (line 5523) | def drawRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method drawRects (line 5525) | def drawRects(self, rects: PySide6.QtCore.QRect, rectCount: int, /) ->... method drawRects (line 5527) | def drawRects(self, rects: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method drawRects (line 5529) | def drawRects(self, rectangles: typing.Iterable[PySide6.QtCore.QRect],... method drawRects (line 5531) | def drawRects(self, rectangles: typing.Iterable[PySide6.QtCore.QRectF]... method drawRoundedRect (line 5533) | def drawRoundedRect(self, x: int, y: int, w: int, h: int, xRadius: flo... method drawRoundedRect (line 5535) | def drawRoundedRect(self, rect: PySide6.QtCore.QRect, xRadius: float, ... method drawRoundedRect (line 5537) | def drawRoundedRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore... method drawStaticText (line 5539) | def drawStaticText(self, left: int, top: int, staticText: QStaticText,... method drawStaticText (line 5541) | def drawStaticText(self, topLeftPosition: PySide6.QtCore.QPoint, stati... method drawStaticText (line 5543) | def drawStaticText(self, topLeftPosition: PySide6.QtCore.QPointF | PyS... method drawText (line 5545) | def drawText(self, x: int, y: int, w: int, h: int, flags: typing.Suppo... method drawText (line 5547) | def drawText(self, x: int, y: int, s: str, /) -> None: ... method drawText (line 5549) | def drawText(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, te... method drawText (line 5551) | def drawText(self, r: PySide6.QtCore.QRect, flags: typing.SupportsInt,... method drawText (line 5553) | def drawText(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, fl... method drawText (line 5555) | def drawText(self, p: PySide6.QtCore.QPoint, s: str, /) -> None: ... method drawText (line 5557) | def drawText(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method drawTextItem (line 5559) | def drawTextItem(self, x: int, y: int, ti: QTextItem, /) -> None: ... method drawTextItem (line 5561) | def drawTextItem(self, p: PySide6.QtCore.QPoint, ti: QTextItem, /) -> ... method drawTextItem (line 5563) | def drawTextItem(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method drawTiledPixmap (line 5565) | def drawTiledPixmap(self, x: int, y: int, w: int, h: int, arg__5: QPix... method drawTiledPixmap (line 5567) | def drawTiledPixmap(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore... method drawTiledPixmap (line 5569) | def drawTiledPixmap(self, arg__1: PySide6.QtCore.QRect, arg__2: QPixma... method end (line 5570) | def end(self, /) -> bool: ... method endNativePainting (line 5571) | def endNativePainting(self, /) -> None: ... method eraseRect (line 5573) | def eraseRect(self, x: int, y: int, w: int, h: int, /) -> None: ... method eraseRect (line 5575) | def eraseRect(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method eraseRect (line 5577) | def eraseRect(self, arg__1: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method fillPath (line 5578) | def fillPath(self, path: QPainterPath, brush: QBrush | PySide6.QtCore.... method fillRect (line 5580) | def fillRect(self, x: int, y: int, w: int, h: int, style: PySide6.QtCo... method fillRect (line 5582) | def fillRect(self, x: int, y: int, w: int, h: int, preset: QGradient.P... method fillRect (line 5584) | def fillRect(self, x: int, y: int, w: int, h: int, color: Union[QColor... method fillRect (line 5586) | def fillRect(self, x: int, y: int, w: int, h: int, c: PySide6.QtCore.Q... method fillRect (line 5588) | def fillRect(self, x: int, y: int, w: int, h: int, arg__5: QBrush | Py... method fillRect (line 5590) | def fillRect(self, r: PySide6.QtCore.QRect, style: PySide6.QtCore.Qt.B... method fillRect (line 5592) | def fillRect(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, st... method fillRect (line 5594) | def fillRect(self, r: PySide6.QtCore.QRect, preset: QGradient.Preset, ... method fillRect (line 5596) | def fillRect(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, pr... method fillRect (line 5598) | def fillRect(self, r: PySide6.QtCore.QRect, c: PySide6.QtCore.Qt.Globa... method fillRect (line 5600) | def fillRect(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, c:... method fillRect (line 5602) | def fillRect(self, arg__1: PySide6.QtCore.QRect, color: Union[QColor, ... method fillRect (line 5604) | def fillRect(self, arg__1: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method fillRect (line 5606) | def fillRect(self, arg__1: PySide6.QtCore.QRect, arg__2: QBrush | PySi... method fillRect (line 5608) | def fillRect(self, arg__1: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method font (line 5609) | def font(self, /) -> QFont: ... method fontInfo (line 5610) | def fontInfo(self, /) -> QFontInfo: ... method fontMetrics (line 5611) | def fontMetrics(self, /) -> QFontMetrics: ... method hasClipping (line 5612) | def hasClipping(self, /) -> bool: ... method isActive (line 5613) | def isActive(self, /) -> bool: ... method layoutDirection (line 5614) | def layoutDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method opacity (line 5615) | def opacity(self, /) -> float: ... method paintEngine (line 5616) | def paintEngine(self, /) -> QPaintEngine: ... method pen (line 5617) | def pen(self, /) -> QPen: ... method renderHints (line 5618) | def renderHints(self, /) -> QPainter.RenderHint: ... method resetTransform (line 5619) | def resetTransform(self, /) -> None: ... method restore (line 5620) | def restore(self, /) -> None: ... method rotate (line 5621) | def rotate(self, a: float, /) -> None: ... method save (line 5622) | def save(self, /) -> None: ... method scale (line 5623) | def scale(self, sx: float, sy: float, /) -> None: ... method setBackground (line 5624) | def setBackground(self, bg: QBrush | PySide6.QtCore.Qt.BrushStyle | Py... method setBackgroundMode (line 5625) | def setBackgroundMode(self, mode: PySide6.QtCore.Qt.BGMode, /) -> None... method setBrush (line 5627) | def setBrush(self, style: PySide6.QtCore.Qt.BrushStyle, /) -> None: ... method setBrush (line 5629) | def setBrush(self, color: PySide6.QtCore.Qt.GlobalColor, /) -> None: ... method setBrush (line 5631) | def setBrush(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtC... method setBrush (line 5633) | def setBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle | PySi... method setBrushOrigin (line 5635) | def setBrushOrigin(self, x: int, y: int, /) -> None: ... method setBrushOrigin (line 5637) | def setBrushOrigin(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method setBrushOrigin (line 5639) | def setBrushOrigin(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCo... method setClipPath (line 5640) | def setClipPath(self, path: QPainterPath, /, op: PySide6.QtCore.Qt.Cli... method setClipRect (line 5642) | def setClipRect(self, x: int, y: int, w: int, h: int, /, op: PySide6.Q... method setClipRect (line 5644) | def setClipRect(self, arg__1: PySide6.QtCore.QRect, /, op: PySide6.QtC... method setClipRect (line 5646) | def setClipRect(self, arg__1: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method setClipRegion (line 5647) | def setClipRegion(self, arg__1: QRegion | QBitmap | QPolygon | PySide6... method setClipping (line 5648) | def setClipping(self, enable: bool, /) -> None: ... method setCompositionMode (line 5649) | def setCompositionMode(self, mode: QPainter.CompositionMode, /) -> Non... method setFont (line 5650) | def setFont(self, f: QFont | str | typing.Iterable[str], /) -> None: ... method setLayoutDirection (line 5651) | def setLayoutDirection(self, direction: PySide6.QtCore.Qt.LayoutDirect... method setOpacity (line 5652) | def setOpacity(self, opacity: float, /) -> None: ... method setPen (line 5654) | def setPen(self, style: PySide6.QtCore.Qt.PenStyle, /) -> None: ... method setPen (line 5656) | def setPen(self, pen: QPen | PySide6.QtCore.Qt.PenStyle | QColor, /) -... method setPen (line 5658) | def setPen(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtCor... method setRenderHint (line 5659) | def setRenderHint(self, hint: QPainter.RenderHint, /, on: bool = ...) ... method setRenderHints (line 5660) | def setRenderHints(self, hints: QPainter.RenderHint, /, on: bool = ...... method setTransform (line 5661) | def setTransform(self, transform: QTransform, /, combine: bool = ...) ... method setViewTransformEnabled (line 5662) | def setViewTransformEnabled(self, enable: bool, /) -> None: ... method setViewport (line 5664) | def setViewport(self, x: int, y: int, w: int, h: int, /) -> None: ... method setViewport (line 5666) | def setViewport(self, viewport: PySide6.QtCore.QRect, /) -> None: ... method setWindow (line 5668) | def setWindow(self, x: int, y: int, w: int, h: int, /) -> None: ... method setWindow (line 5670) | def setWindow(self, window: PySide6.QtCore.QRect, /) -> None: ... method setWorldMatrixEnabled (line 5671) | def setWorldMatrixEnabled(self, enabled: bool, /) -> None: ... method setWorldTransform (line 5672) | def setWorldTransform(self, matrix: QTransform, /, combine: bool = ...... method shear (line 5673) | def shear(self, sh: float, sv: float, /) -> None: ... method strokePath (line 5674) | def strokePath(self, path: QPainterPath, pen: QPen | PySide6.QtCore.Qt... method testRenderHint (line 5675) | def testRenderHint(self, hint: QPainter.RenderHint, /) -> bool: ... method transform (line 5676) | def transform(self, /) -> QTransform: ... method translate (line 5678) | def translate(self, dx: float, dy: float, /) -> None: ... method translate (line 5680) | def translate(self, offset: PySide6.QtCore.QPoint, /) -> None: ... method translate (line 5682) | def translate(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method viewTransformEnabled (line 5683) | def viewTransformEnabled(self, /) -> bool: ... method viewport (line 5684) | def viewport(self, /) -> PySide6.QtCore.QRect: ... method window (line 5685) | def window(self, /) -> PySide6.QtCore.QRect: ... method worldMatrixEnabled (line 5686) | def worldMatrixEnabled(self, /) -> bool: ... method worldTransform (line 5687) | def worldTransform(self, /) -> QTransform: ... method __enter__ (line 5688) | def __enter__(self, /) -> QPainter: ... method __exit__ (line 5689) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QPainterPath (line 5691) | class QPainterPath(shiboken6.Object): class Element (line 5692) | class Element(shiboken6.Object): method __init__ (line 5697) | def __init__(self, Element: QPainterPath.Element, /) -> None: ... method __init__ (line 5699) | def __init__(self, /) -> None: ... method isCurveTo (line 5700) | def isCurveTo(self, /) -> bool: ... method isLineTo (line 5701) | def isLineTo(self, /) -> bool: ... method isMoveTo (line 5702) | def isMoveTo(self, /) -> bool: ... method __copy__ (line 5703) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5704) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5705) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5706) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5707) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5708) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5709) | def __ne__(self, other: object) -> bool: ... class ElementType (line 5711) | class ElementType(enum.Enum): method __init__ (line 5717) | def __init__(self, startPoint: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 5719) | def __init__(self, other: QPainterPath, /) -> None: ... method __init__ (line 5721) | def __init__(self, /) -> None: ... method addEllipse (line 5723) | def addEllipse(self, x: float, y: float, w: float, h: float, /) -> Non... method addEllipse (line 5725) | def addEllipse(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method addEllipse (line 5727) | def addEllipse(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method addPath (line 5728) | def addPath(self, path: QPainterPath, /) -> None: ... method addPolygon (line 5729) | def addPolygon(self, polygon: QPolygonF | typing.Iterable[PySide6.QtCo... method addRect (line 5731) | def addRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method addRect (line 5733) | def addRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method addRegion (line 5734) | def addRegion(self, region: QRegion | QBitmap | QPolygon | PySide6.QtC... method addRoundedRect (line 5736) | def addRoundedRect(self, x: float, y: float, w: float, h: float, xRadi... method addRoundedRect (line 5738) | def addRoundedRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.... method addText (line 5740) | def addText(self, x: float, y: float, f: QFont | str | typing.Iterable... method addText (line 5742) | def addText(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method angleAtPercent (line 5743) | def angleAtPercent(self, t: float, /) -> float: ... method arcMoveTo (line 5745) | def arcMoveTo(self, x: float, y: float, w: float, h: float, angle: flo... method arcMoveTo (line 5747) | def arcMoveTo(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method arcTo (line 5749) | def arcTo(self, x: float, y: float, w: float, h: float, startAngle: fl... method arcTo (line 5751) | def arcTo(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, st... method boundingRect (line 5752) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method capacity (line 5753) | def capacity(self, /) -> int: ... method clear (line 5754) | def clear(self, /) -> None: ... method closeSubpath (line 5755) | def closeSubpath(self, /) -> None: ... method connectPath (line 5756) | def connectPath(self, path: QPainterPath, /) -> None: ... method contains (line 5758) | def contains(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method contains (line 5760) | def contains(self, pt: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint ... method contains (line 5762) | def contains(self, p: QPainterPath, /) -> bool: ... method controlPointRect (line 5763) | def controlPointRect(self, /) -> PySide6.QtCore.QRectF: ... method cubicTo (line 5765) | def cubicTo(self, ctrlPt1x: float, ctrlPt1y: float, ctrlPt2x: float, c... method cubicTo (line 5767) | def cubicTo(self, ctrlPt1: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method currentPosition (line 5768) | def currentPosition(self, /) -> PySide6.QtCore.QPointF: ... method elementAt (line 5769) | def elementAt(self, i: int, /) -> QPainterPath.Element: ... method elementCount (line 5770) | def elementCount(self, /) -> int: ... method fillRule (line 5771) | def fillRule(self, /) -> PySide6.QtCore.Qt.FillRule: ... method intersected (line 5772) | def intersected(self, r: QPainterPath, /) -> QPainterPath: ... method intersects (line 5774) | def intersects(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method intersects (line 5776) | def intersects(self, p: QPainterPath, /) -> bool: ... method isCachingEnabled (line 5777) | def isCachingEnabled(self, /) -> bool: ... method isEmpty (line 5778) | def isEmpty(self, /) -> bool: ... method length (line 5779) | def length(self, /) -> float: ... method lineTo (line 5781) | def lineTo(self, x: float, y: float, /) -> None: ... method lineTo (line 5783) | def lineTo(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | Q... method moveTo (line 5785) | def moveTo(self, x: float, y: float, /) -> None: ... method moveTo (line 5787) | def moveTo(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | Q... method percentAtLength (line 5788) | def percentAtLength(self, len: float, /) -> float: ... method pointAtPercent (line 5789) | def pointAtPercent(self, t: float, /) -> PySide6.QtCore.QPointF: ... method quadTo (line 5791) | def quadTo(self, ctrlPtx: float, ctrlPty: float, endPtx: float, endPty... method quadTo (line 5793) | def quadTo(self, ctrlPt: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method reserve (line 5794) | def reserve(self, size: int, /) -> None: ... method setCachingEnabled (line 5795) | def setCachingEnabled(self, enabled: bool, /) -> None: ... method setElementPositionAt (line 5796) | def setElementPositionAt(self, i: int, x: float, y: float, /) -> None:... method setFillRule (line 5797) | def setFillRule(self, fillRule: PySide6.QtCore.Qt.FillRule, /) -> None... method simplified (line 5798) | def simplified(self, /) -> QPainterPath: ... method slopeAtPercent (line 5799) | def slopeAtPercent(self, t: float, /) -> float: ... method subtracted (line 5800) | def subtracted(self, r: QPainterPath, /) -> QPainterPath: ... method swap (line 5801) | def swap(self, other: QPainterPath, /) -> None: ... method toFillPolygon (line 5802) | def toFillPolygon(self, /, matrix: QTransform = ...) -> QPolygonF: ... method toFillPolygons (line 5803) | def toFillPolygons(self, /, matrix: QTransform = ...) -> List[QPolygon... method toReversed (line 5804) | def toReversed(self, /) -> QPainterPath: ... method toSubpathPolygons (line 5805) | def toSubpathPolygons(self, /, matrix: QTransform = ...) -> List[QPoly... method translate (line 5807) | def translate(self, dx: float, dy: float, /) -> None: ... method translate (line 5809) | def translate(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method translated (line 5811) | def translated(self, dx: float, dy: float, /) -> QPainterPath: ... method translated (line 5813) | def translated(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method trimmed (line 5814) | def trimmed(self, fromFraction: float, toFraction: float, /, offset: f... method united (line 5815) | def united(self, r: QPainterPath, /) -> QPainterPath: ... method __add__ (line 5816) | def __add__(self, other: QPainterPath, /) -> QPainterPath: ... method __and__ (line 5817) | def __and__(self, other: QPainterPath, /) -> QPainterPath: ... method __copy__ (line 5818) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5819) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5820) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5821) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 5822) | def __iadd__(self, other: QPainterPath, /) -> QPainterPath: ... method __iand__ (line 5823) | def __iand__(self, other: QPainterPath, /) -> QPainterPath: ... method __ior__ (line 5824) | def __ior__(self, other: QPainterPath, /) -> QPainterPath: ... method __isub__ (line 5825) | def __isub__(self, other: QPainterPath, /) -> QPainterPath: ... method __le__ (line 5826) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 5827) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 5828) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5829) | def __mul__(self, m: QTransform, /) -> QPainterPath: ... method __ne__ (line 5830) | def __ne__(self, other: object) -> bool: ... method __or__ (line 5831) | def __or__(self, other: QPainterPath, /) -> QPainterPath: ... method __radd__ (line 5832) | def __radd__(self, other): ... method __rand__ (line 5833) | def __rand__(self, other): ... method __rlshift__ (line 5834) | def __rlshift__(self, other): ... method __rmul__ (line 5835) | def __rmul__(self, other): ... method __ror__ (line 5836) | def __ror__(self, other): ... method __rrshift__ (line 5837) | def __rrshift__(self, other): ... method __rshift__ (line 5838) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 5839) | def __rsub__(self, other): ... method __sub__ (line 5840) | def __sub__(self, other: QPainterPath, /) -> QPainterPath: ... class QPainterPathStroker (line 5842) | class QPainterPathStroker(shiboken6.Object): method __init__ (line 5844) | def __init__(self, pen: QPen | PySide6.QtCore.Qt.PenStyle | QColor, /)... method __init__ (line 5846) | def __init__(self, /) -> None: ... method capStyle (line 5847) | def capStyle(self, /) -> PySide6.QtCore.Qt.PenCapStyle: ... method createStroke (line 5848) | def createStroke(self, path: QPainterPath, /) -> QPainterPath: ... method curveThreshold (line 5849) | def curveThreshold(self, /) -> float: ... method dashOffset (line 5850) | def dashOffset(self, /) -> float: ... method dashPattern (line 5851) | def dashPattern(self, /) -> List[float]: ... method joinStyle (line 5852) | def joinStyle(self, /) -> PySide6.QtCore.Qt.PenJoinStyle: ... method miterLimit (line 5853) | def miterLimit(self, /) -> float: ... method setCapStyle (line 5854) | def setCapStyle(self, style: PySide6.QtCore.Qt.PenCapStyle, /) -> None... method setCurveThreshold (line 5855) | def setCurveThreshold(self, threshold: float, /) -> None: ... method setDashOffset (line 5856) | def setDashOffset(self, offset: float, /) -> None: ... method setDashPattern (line 5858) | def setDashPattern(self, dashPattern: typing.Iterable[float], /) -> No... method setDashPattern (line 5860) | def setDashPattern(self, arg__1: PySide6.QtCore.Qt.PenStyle, /) -> Non... method setJoinStyle (line 5861) | def setJoinStyle(self, style: PySide6.QtCore.Qt.PenJoinStyle, /) -> No... method setMiterLimit (line 5862) | def setMiterLimit(self, length: float, /) -> None: ... method setWidth (line 5863) | def setWidth(self, width: float, /) -> None: ... method width (line 5864) | def width(self, /) -> float: ... class QPainterStateGuard (line 5866) | class QPainterStateGuard(shiboken6.Object): class InitialState (line 5867) | class InitialState(enum.Enum): method __init__ (line 5870) | def __init__(self, painter: QPainter, /, state: QPainterStateGuard.Ini... method restore (line 5871) | def restore(self, /) -> None: ... method save (line 5872) | def save(self, /) -> None: ... method swap (line 5873) | def swap(self, other: QPainterStateGuard, /) -> None: ... method __enter__ (line 5874) | def __enter__(self, /) -> QPainterStateGuard: ... method __exit__ (line 5875) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /) ... class QPalette (line 5877) | class QPalette(shiboken6.Object): class ColorGroup (line 5878) | class ColorGroup(enum.Enum): class ColorRole (line 5887) | class ColorRole(enum.Enum): method __init__ (line 5912) | def __init__(self, windowText: QBrush | PySide6.QtCore.Qt.BrushStyle |... method __init__ (line 5914) | def __init__(self, windowText: Union[QColor, str, QRgba64, Any, PySide... method __init__ (line 5916) | def __init__(self, button: Union[QColor, str, QRgba64, Any, PySide6.Qt... method __init__ (line 5918) | def __init__(self, palette: QPalette, /) -> None: ... method __init__ (line 5920) | def __init__(self, button: PySide6.QtCore.Qt.GlobalColor, /) -> None: ... method __init__ (line 5922) | def __init__(self, button: Union[QColor, str, QRgba64, Any, PySide6.Qt... method __init__ (line 5924) | def __init__(self, /) -> None: ... method accent (line 5925) | def accent(self, /) -> QBrush: ... method alternateBase (line 5926) | def alternateBase(self, /) -> QBrush: ... method base (line 5927) | def base(self, /) -> QBrush: ... method brightText (line 5928) | def brightText(self, /) -> QBrush: ... method brush (line 5930) | def brush(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, /) ->... method brush (line 5932) | def brush(self, cr: QPalette.ColorRole, /) -> QBrush: ... method button (line 5933) | def button(self, /) -> QBrush: ... method buttonText (line 5934) | def buttonText(self, /) -> QBrush: ... method cacheKey (line 5935) | def cacheKey(self, /) -> int: ... method color (line 5937) | def color(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, /) ->... method color (line 5939) | def color(self, cr: QPalette.ColorRole, /) -> QColor: ... method currentColorGroup (line 5940) | def currentColorGroup(self, /) -> QPalette.ColorGroup: ... method dark (line 5941) | def dark(self, /) -> QBrush: ... method highlight (line 5942) | def highlight(self, /) -> QBrush: ... method highlightedText (line 5943) | def highlightedText(self, /) -> QBrush: ... method isBrushSet (line 5944) | def isBrushSet(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, ... method isCopyOf (line 5945) | def isCopyOf(self, p: QPalette | PySide6.QtCore.Qt.GlobalColor | QColo... method isEqual (line 5946) | def isEqual(self, cr1: QPalette.ColorGroup, cr2: QPalette.ColorGroup, ... method light (line 5947) | def light(self, /) -> QBrush: ... method link (line 5948) | def link(self, /) -> QBrush: ... method linkVisited (line 5949) | def linkVisited(self, /) -> QBrush: ... method mid (line 5950) | def mid(self, /) -> QBrush: ... method midlight (line 5951) | def midlight(self, /) -> QBrush: ... method placeholderText (line 5952) | def placeholderText(self, /) -> QBrush: ... method resolve (line 5953) | def resolve(self, other: QPalette | PySide6.QtCore.Qt.GlobalColor | QC... method resolveMask (line 5954) | def resolveMask(self, /) -> int: ... method setBrush (line 5956) | def setBrush(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, br... method setBrush (line 5958) | def setBrush(self, cr: QPalette.ColorRole, brush: QBrush | PySide6.QtC... method setColor (line 5960) | def setColor(self, cg: QPalette.ColorGroup, cr: QPalette.ColorRole, co... method setColor (line 5962) | def setColor(self, cr: QPalette.ColorRole, color: Union[QColor, str, Q... method setColorGroup (line 5963) | def setColorGroup(self, cr: QPalette.ColorGroup, windowText: QBrush | ... method setCurrentColorGroup (line 5964) | def setCurrentColorGroup(self, cg: QPalette.ColorGroup, /) -> None: ... method setResolveMask (line 5965) | def setResolveMask(self, mask: int, /) -> None: ... method shadow (line 5966) | def shadow(self, /) -> QBrush: ... method swap (line 5967) | def swap(self, other: QPalette | PySide6.QtCore.Qt.GlobalColor | QColo... method text (line 5968) | def text(self, /) -> QBrush: ... method toolTipBase (line 5969) | def toolTipBase(self, /) -> QBrush: ... method toolTipText (line 5970) | def toolTipText(self, /) -> QBrush: ... method window (line 5971) | def window(self, /) -> QBrush: ... method windowText (line 5972) | def windowText(self, /) -> QBrush: ... method __copy__ (line 5973) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5974) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5975) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5976) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5977) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 5978) | def __lshift__(self, ds: PySide6.QtCore.QDataStream, /) -> PySide6.QtC... method __lt__ (line 5979) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5980) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 5981) | def __rlshift__(self, other): ... method __rrshift__ (line 5982) | def __rrshift__(self, other): ... method __rshift__ (line 5983) | def __rshift__(self, ds: PySide6.QtCore.QDataStream, /) -> PySide6.QtC... class QPdfOutputIntent (line 5985) | class QPdfOutputIntent(shiboken6.Object): method __init__ (line 5987) | def __init__(self, other: QPdfOutputIntent, /) -> None: ... method __init__ (line 5989) | def __init__(self, /) -> None: ... method outputCondition (line 5990) | def outputCondition(self, /) -> str: ... method outputConditionIdentifier (line 5991) | def outputConditionIdentifier(self, /) -> str: ... method outputProfile (line 5992) | def outputProfile(self, /) -> QColorSpace: ... method registryName (line 5993) | def registryName(self, /) -> PySide6.QtCore.QUrl: ... method setOutputCondition (line 5994) | def setOutputCondition(self, condition: str, /) -> None: ... method setOutputConditionIdentifier (line 5995) | def setOutputConditionIdentifier(self, identifier: str, /) -> None: ... method setOutputProfile (line 5996) | def setOutputProfile(self, profile: QColorSpace | QColorSpace.NamedCol... method setRegistryName (line 5997) | def setRegistryName(self, name: PySide6.QtCore.QUrl | str, /) -> None:... method swap (line 5998) | def swap(self, other: QPdfOutputIntent, /) -> None: ... method __copy__ (line 5999) | def __copy__(self, /) -> typing_extensions.Self: ... class QPdfWriter (line 6001) | class QPdfWriter(PySide6.QtCore.QObject, QPagedPaintDevice): class ColorModel (line 6002) | class ColorModel(enum.Enum): method __init__ (line 6009) | def __init__(self, filename: str, /, destroyed: typing.Callable = ...,... method __init__ (line 6011) | def __init__(self, device: PySide6.QtCore.QIODevice, /, destroyed: typ... method addFileAttachment (line 6012) | def addFileAttachment(self, fileName: str, data: PySide6.QtCore.QByteA... method author (line 6013) | def author(self, /) -> str: ... method colorModel (line 6014) | def colorModel(self, /) -> QPdfWriter.ColorModel: ... method creator (line 6015) | def creator(self, /) -> str: ... method documentId (line 6016) | def documentId(self, /) -> PySide6.QtCore.QUuid: ... method documentXmpMetadata (line 6017) | def documentXmpMetadata(self, /) -> PySide6.QtCore.QByteArray: ... method metric (line 6018) | def metric(self, id: QPaintDevice.PaintDeviceMetric, /) -> int: ... method newPage (line 6019) | def newPage(self, /) -> bool: ... method outputIntent (line 6020) | def outputIntent(self, /) -> QPdfOutputIntent: ... method paintEngine (line 6021) | def paintEngine(self, /) -> QPaintEngine: ... method pdfVersion (line 6022) | def pdfVersion(self, /) -> QPagedPaintDevice.PdfVersion: ... method resolution (line 6023) | def resolution(self, /) -> int: ... method setAuthor (line 6024) | def setAuthor(self, author: str, /) -> None: ... method setColorModel (line 6025) | def setColorModel(self, model: QPdfWriter.ColorModel, /) -> None: ... method setCreator (line 6026) | def setCreator(self, creator: str, /) -> None: ... method setDocumentId (line 6027) | def setDocumentId(self, documentId: PySide6.QtCore.QUuid, /) -> None: ... method setDocumentXmpMetadata (line 6028) | def setDocumentXmpMetadata(self, xmpMetadata: PySide6.QtCore.QByteArra... method setOutputIntent (line 6029) | def setOutputIntent(self, intent: QPdfOutputIntent, /) -> None: ... method setPdfVersion (line 6030) | def setPdfVersion(self, version: QPagedPaintDevice.PdfVersion, /) -> N... method setResolution (line 6031) | def setResolution(self, resolution: int, /) -> None: ... method setTitle (line 6032) | def setTitle(self, title: str, /) -> None: ... method title (line 6033) | def title(self, /) -> str: ... class QPen (line 6035) | class QPen(shiboken6.Object): method __init__ (line 6037) | def __init__(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle | PySi... method __init__ (line 6039) | def __init__(self, pen: QPen, /) -> None: ... method __init__ (line 6041) | def __init__(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtC... method __init__ (line 6043) | def __init__(self, arg__1: PySide6.QtCore.Qt.PenStyle, /) -> None: ... method __init__ (line 6045) | def __init__(self, /) -> None: ... method brush (line 6046) | def brush(self, /) -> QBrush: ... method capStyle (line 6047) | def capStyle(self, /) -> PySide6.QtCore.Qt.PenCapStyle: ... method color (line 6048) | def color(self, /) -> QColor: ... method dashOffset (line 6049) | def dashOffset(self, /) -> float: ... method dashPattern (line 6050) | def dashPattern(self, /) -> List[float]: ... method isCosmetic (line 6051) | def isCosmetic(self, /) -> bool: ... method isSolid (line 6052) | def isSolid(self, /) -> bool: ... method joinStyle (line 6053) | def joinStyle(self, /) -> PySide6.QtCore.Qt.PenJoinStyle: ... method miterLimit (line 6054) | def miterLimit(self, /) -> float: ... method setBrush (line 6055) | def setBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle | PySi... method setCapStyle (line 6056) | def setCapStyle(self, pcs: PySide6.QtCore.Qt.PenCapStyle, /) -> None: ... method setColor (line 6057) | def setColor(self, color: Union[QColor, str, QRgba64, Any, PySide6.QtC... method setCosmetic (line 6058) | def setCosmetic(self, cosmetic: bool, /) -> None: ... method setDashOffset (line 6059) | def setDashOffset(self, doffset: float, /) -> None: ... method setDashPattern (line 6060) | def setDashPattern(self, pattern: typing.Iterable[float], /) -> None: ... method setJoinStyle (line 6061) | def setJoinStyle(self, pcs: PySide6.QtCore.Qt.PenJoinStyle, /) -> None... method setMiterLimit (line 6062) | def setMiterLimit(self, limit: float, /) -> None: ... method setStyle (line 6063) | def setStyle(self, arg__1: PySide6.QtCore.Qt.PenStyle, /) -> None: ... method setWidth (line 6064) | def setWidth(self, width: int, /) -> None: ... method setWidthF (line 6065) | def setWidthF(self, width: float, /) -> None: ... method style (line 6066) | def style(self, /) -> PySide6.QtCore.Qt.PenStyle: ... method swap (line 6067) | def swap(self, other: QPen | PySide6.QtCore.Qt.PenStyle | QColor, /) -... method width (line 6068) | def width(self, /) -> int: ... method widthF (line 6069) | def widthF(self, /) -> float: ... method __copy__ (line 6070) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6071) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6072) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6073) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6074) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 6075) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 6076) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6077) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 6078) | def __rlshift__(self, other): ... method __rrshift__ (line 6079) | def __rrshift__(self, other): ... method __rshift__ (line 6080) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QPicture (line 6082) | class QPicture(QPaintDevice): method __init__ (line 6084) | def __init__(self, arg__1: QPicture, /) -> None: ... method __init__ (line 6086) | def __init__(self, /, formatVersion: int = ...) -> None: ... method boundingRect (line 6087) | def boundingRect(self, /) -> PySide6.QtCore.QRect: ... method data (line 6088) | def data(self, /) -> typing.Any: ... method devType (line 6089) | def devType(self, /) -> int: ... method isNull (line 6090) | def isNull(self, /) -> bool: ... method load (line 6092) | def load(self, fileName: str, /) -> bool: ... method load (line 6094) | def load(self, dev: PySide6.QtCore.QIODevice, /) -> bool: ... method metric (line 6095) | def metric(self, m: QPaintDevice.PaintDeviceMetric, /) -> int: ... method paintEngine (line 6096) | def paintEngine(self, /) -> QPaintEngine: ... method play (line 6097) | def play(self, p: QPainter, /) -> bool: ... method save (line 6099) | def save(self, fileName: str, /) -> bool: ... method save (line 6101) | def save(self, dev: PySide6.QtCore.QIODevice, /) -> bool: ... method setBoundingRect (line 6102) | def setBoundingRect(self, r: PySide6.QtCore.QRect, /) -> None: ... method setData (line 6103) | def setData(self, data: bytes | bytearray | memoryview, /) -> None: ... method size (line 6104) | def size(self, /) -> int: ... method swap (line 6105) | def swap(self, other: QPicture | int, /) -> None: ... method __bool__ (line 6106) | def __bool__(self) -> bool: ... method __copy__ (line 6107) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 6108) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 6109) | def __rlshift__(self, other): ... method __rrshift__ (line 6110) | def __rrshift__(self, other): ... method __rshift__ (line 6111) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QPixelFormat (line 6113) | class QPixelFormat(shiboken6.Object): class AlphaPosition (line 6114) | class AlphaPosition(enum.Enum): class AlphaPremultiplied (line 6118) | class AlphaPremultiplied(enum.Enum): class AlphaUsage (line 6122) | class AlphaUsage(enum.Enum): class ByteOrder (line 6126) | class ByteOrder(enum.Enum): class ColorModel (line 6131) | class ColorModel(enum.Enum): class TypeInterpretation (line 6142) | class TypeInterpretation(enum.Enum): class YUVLayout (line 6148) | class YUVLayout(enum.Enum): method __init__ (line 6166) | def __init__(self, colorModel: QPixelFormat.ColorModel, firstSize: int... method __init__ (line 6168) | def __init__(self, QPixelFormat: QPixelFormat, /) -> None: ... method __init__ (line 6170) | def __init__(self, /) -> None: ... method alphaPosition (line 6171) | def alphaPosition(self, /) -> QPixelFormat.AlphaPosition: ... method alphaSize (line 6172) | def alphaSize(self, /) -> int: ... method alphaUsage (line 6173) | def alphaUsage(self, /) -> QPixelFormat.AlphaUsage: ... method bitsPerPixel (line 6174) | def bitsPerPixel(self, /) -> int: ... method blackSize (line 6175) | def blackSize(self, /) -> int: ... method blueSize (line 6176) | def blueSize(self, /) -> int: ... method brightnessSize (line 6177) | def brightnessSize(self, /) -> int: ... method byteOrder (line 6178) | def byteOrder(self, /) -> QPixelFormat.ByteOrder: ... method channelCount (line 6179) | def channelCount(self, /) -> int: ... method colorModel (line 6180) | def colorModel(self, /) -> QPixelFormat.ColorModel: ... method cyanSize (line 6181) | def cyanSize(self, /) -> int: ... method greenSize (line 6182) | def greenSize(self, /) -> int: ... method hueSize (line 6183) | def hueSize(self, /) -> int: ... method lightnessSize (line 6184) | def lightnessSize(self, /) -> int: ... method magentaSize (line 6185) | def magentaSize(self, /) -> int: ... method premultiplied (line 6186) | def premultiplied(self, /) -> QPixelFormat.AlphaPremultiplied: ... method redSize (line 6187) | def redSize(self, /) -> int: ... method saturationSize (line 6188) | def saturationSize(self, /) -> int: ... method subEnum (line 6189) | def subEnum(self, /) -> int: ... method typeInterpretation (line 6190) | def typeInterpretation(self, /) -> QPixelFormat.TypeInterpretation: ... method yellowSize (line 6191) | def yellowSize(self, /) -> int: ... method yuvLayout (line 6192) | def yuvLayout(self, /) -> QPixelFormat.YUVLayout: ... method __copy__ (line 6193) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6194) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6195) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6196) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6197) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6198) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6199) | def __ne__(self, other: object) -> bool: ... class QPixmap (line 6201) | class QPixmap(QPaintDevice): method __init__ (line 6203) | def __init__(self, fileName: str | bytes | os.PathLike[str], /, format... method __init__ (line 6205) | def __init__(self, w: int, h: int, /) -> None: ... method __init__ (line 6207) | def __init__(self, xpm: collections.abc.Iterable, /) -> None: ... method __init__ (line 6209) | def __init__(self, image: QImage, /) -> None: ... method __init__ (line 6211) | def __init__(self, arg__1: QPixmap, /) -> None: ... method __init__ (line 6213) | def __init__(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method __init__ (line 6215) | def __init__(self, /) -> None: ... method cacheKey (line 6216) | def cacheKey(self, /) -> int: ... method convertFromImage (line 6217) | def convertFromImage(self, img: QImage, /, flags: PySide6.QtCore.Qt.Im... method copy (line 6219) | def copy(self, x: int, y: int, width: int, height: int, /) -> QPixmap:... method copy (line 6221) | def copy(self, /, rect: PySide6.QtCore.QRect = ...) -> QPixmap: ... method createHeuristicMask (line 6222) | def createHeuristicMask(self, /, clipTight: bool = ...) -> QBitmap: ... method createMaskFromColor (line 6223) | def createMaskFromColor(self, maskColor: Union[QColor, str, QRgba64, A... method defaultDepth (line 6225) | def defaultDepth() -> int: ... method depth (line 6226) | def depth(self, /) -> int: ... method devType (line 6227) | def devType(self, /) -> int: ... method deviceIndependentSize (line 6228) | def deviceIndependentSize(self, /) -> PySide6.QtCore.QSizeF: ... method devicePixelRatio (line 6229) | def devicePixelRatio(self, /) -> float: ... method fill (line 6230) | def fill(self, /, fillColor: Union[QColor, str, QRgba64, Any, PySide6.... method fromImage (line 6232) | def fromImage(image: QImage, /, flags: PySide6.QtCore.Qt.ImageConversi... method fromImageInPlace (line 6234) | def fromImageInPlace(image: QImage, /, flags: PySide6.QtCore.Qt.ImageC... method fromImageReader (line 6236) | def fromImageReader(imageReader: QImageReader, /, flags: PySide6.QtCor... method hasAlpha (line 6237) | def hasAlpha(self, /) -> bool: ... method hasAlphaChannel (line 6238) | def hasAlphaChannel(self, /) -> bool: ... method height (line 6239) | def height(self, /) -> int: ... method isNull (line 6240) | def isNull(self, /) -> bool: ... method isQBitmap (line 6241) | def isQBitmap(self, /) -> bool: ... method load (line 6242) | def load(self, fileName: str, /, format: bytes | bytearray | memoryvie... method loadFromData (line 6244) | def loadFromData(self, data: PySide6.QtCore.QByteArray | bytes | bytea... method loadFromData (line 6246) | def loadFromData(self, buf: bytes | bytearray | memoryview, /, format:... method mask (line 6247) | def mask(self, /) -> QBitmap: ... method metric (line 6248) | def metric(self, arg__1: QPaintDevice.PaintDeviceMetric, /) -> int: ... method paintEngine (line 6249) | def paintEngine(self, /) -> QPaintEngine: ... method rect (line 6250) | def rect(self, /) -> PySide6.QtCore.QRect: ... method save (line 6252) | def save(self, fileName: str, /, format: str | None = ..., quality: in... method save (line 6254) | def save(self, device: PySide6.QtCore.QIODevice, /, format: str | None... method scaled (line 6256) | def scaled(self, w: int, h: int, /, aspectMode: PySide6.QtCore.Qt.Aspe... method scaled (line 6258) | def scaled(self, s: PySide6.QtCore.QSize, /, aspectMode: PySide6.QtCor... method scaledToHeight (line 6259) | def scaledToHeight(self, h: int, /, mode: PySide6.QtCore.Qt.Transforma... method scaledToWidth (line 6260) | def scaledToWidth(self, w: int, /, mode: PySide6.QtCore.Qt.Transformat... method scroll (line 6262) | def scroll(self, dx: int, dy: int, x: int, y: int, width: int, height:... method scroll (line 6264) | def scroll(self, dx: int, dy: int, rect: PySide6.QtCore.QRect, /, expo... method setDevicePixelRatio (line 6265) | def setDevicePixelRatio(self, scaleFactor: float, /) -> None: ... method setMask (line 6266) | def setMask(self, arg__1: QBitmap | str, /) -> None: ... method size (line 6267) | def size(self, /) -> PySide6.QtCore.QSize: ... method swap (line 6268) | def swap(self, other: QPixmap | QImage, /) -> None: ... method toImage (line 6269) | def toImage(self, /) -> QImage: ... method transformed (line 6270) | def transformed(self, arg__1: QTransform, /, mode: PySide6.QtCore.Qt.T... method trueMatrix (line 6272) | def trueMatrix(m: QTransform, w: int, h: int, /) -> QTransform: ... method width (line 6273) | def width(self, /) -> int: ... method __bool__ (line 6274) | def __bool__(self) -> bool: ... method __copy__ (line 6275) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 6276) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 6277) | def __rlshift__(self, other): ... method __rrshift__ (line 6278) | def __rrshift__(self, other): ... method __rshift__ (line 6279) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QPixmapCache (line 6281) | class QPixmapCache(shiboken6.Object): class Key (line 6282) | class Key(shiboken6.Object): method __init__ (line 6284) | def __init__(self, other: QPixmapCache.Key, /) -> None: ... method __init__ (line 6286) | def __init__(self, /) -> None: ... method isValid (line 6287) | def isValid(self, /) -> bool: ... method swap (line 6288) | def swap(self, other: QPixmapCache.Key, /) -> None: ... method __copy__ (line 6289) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6290) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6291) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6292) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6293) | def __hash__(self, /) -> int: ... method __le__ (line 6294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6295) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6296) | def __ne__(self, other: object) -> bool: ... method __init__ (line 6297) | def __init__(self, /) -> None: ... method cacheLimit (line 6299) | def cacheLimit() -> int: ... method clear (line 6301) | def clear() -> None: ... method find (line 6303) | def find(self) -> typing.Any: ... method insert (line 6306) | def insert(key: str, pixmap: QPixmap | QImage, /) -> bool: ... method insert (line 6309) | def insert(pixmap: QPixmap | QImage, /) -> QPixmapCache.Key: ... method remove (line 6312) | def remove(key: QPixmapCache.Key, /) -> None: ... method remove (line 6315) | def remove(key: str, /) -> None: ... method replace (line 6317) | def replace(key: QPixmapCache.Key, pixmap: QPixmap | QImage, /) -> boo... method setCacheLimit (line 6319) | def setCacheLimit(arg__1: int, /) -> None: ... class QPlatformSurfaceEvent (line 6321) | class QPlatformSurfaceEvent(PySide6.QtCore.QEvent): class SurfaceEventType (line 6322) | class SurfaceEventType(enum.Enum): method __init__ (line 6325) | def __init__(self, arg__1: QPlatformSurfaceEvent, /) -> None: ... method clone (line 6326) | def clone(self, /) -> QPlatformSurfaceEvent: ... method surfaceEventType (line 6327) | def surfaceEventType(self, /) -> QPlatformSurfaceEvent.SurfaceEventTyp... class QPointFList (line 6329) | class QPointFList: method __init__ (line 6331) | def __init__(self, *args, **kwargs) -> None: ... method append (line 6332) | def append(self, *args, **kwargs): ... method capacity (line 6333) | def capacity(self, *args, **kwargs): ... method clear (line 6334) | def clear(self, *args, **kwargs): ... method constData (line 6335) | def constData(self, *args, **kwargs): ... method data (line 6336) | def data(self, *args, **kwargs): ... method pop_back (line 6337) | def pop_back(self, *args, **kwargs): ... method pop_front (line 6338) | def pop_front(self, *args, **kwargs): ... method prepend (line 6339) | def prepend(self, *args, **kwargs): ... method push_back (line 6340) | def push_back(self, *args, **kwargs): ... method push_front (line 6341) | def push_front(self, *args, **kwargs): ... method removeFirst (line 6342) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 6343) | def removeLast(self, *args, **kwargs): ... method reserve (line 6344) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 6345) | def __delitem__(self, other) -> None: ... method __getitem__ (line 6346) | def __getitem__(self, index): ... method __len__ (line 6347) | def __len__(self) -> int: ... method __setitem__ (line 6348) | def __setitem__(self, index, object) -> None: ... class QPointList (line 6350) | class QPointList: method __init__ (line 6352) | def __init__(self, *args, **kwargs) -> None: ... method append (line 6353) | def append(self, *args, **kwargs): ... method capacity (line 6354) | def capacity(self, *args, **kwargs): ... method clear (line 6355) | def clear(self, *args, **kwargs): ... method constData (line 6356) | def constData(self, *args, **kwargs): ... method data (line 6357) | def data(self, *args, **kwargs): ... method pop_back (line 6358) | def pop_back(self, *args, **kwargs): ... method pop_front (line 6359) | def pop_front(self, *args, **kwargs): ... method prepend (line 6360) | def prepend(self, *args, **kwargs): ... method push_back (line 6361) | def push_back(self, *args, **kwargs): ... method push_front (line 6362) | def push_front(self, *args, **kwargs): ... method removeFirst (line 6363) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 6364) | def removeLast(self, *args, **kwargs): ... method reserve (line 6365) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 6366) | def __delitem__(self, other) -> None: ... method __getitem__ (line 6367) | def __getitem__(self, index): ... method __len__ (line 6368) | def __len__(self) -> int: ... method __setitem__ (line 6369) | def __setitem__(self, index, object) -> None: ... class QPointerEvent (line 6371) | class QPointerEvent(QInputEvent): method __init__ (line 6373) | def __init__(self, type: PySide6.QtCore.QEvent.Type, dev: QPointingDev... method __init__ (line 6375) | def __init__(self, arg__1: QPointerEvent, /) -> None: ... method addPassiveGrabber (line 6376) | def addPassiveGrabber(self, point: QEventPoint, grabber: PySide6.QtCor... method allPointsAccepted (line 6377) | def allPointsAccepted(self, /) -> bool: ... method allPointsGrabbed (line 6378) | def allPointsGrabbed(self, /) -> bool: ... method clearPassiveGrabbers (line 6379) | def clearPassiveGrabbers(self, point: QEventPoint, /) -> None: ... method clone (line 6380) | def clone(self, /) -> QPointerEvent: ... method exclusiveGrabber (line 6381) | def exclusiveGrabber(self, point: QEventPoint, /) -> PySide6.QtCore.QO... method isBeginEvent (line 6382) | def isBeginEvent(self, /) -> bool: ... method isEndEvent (line 6383) | def isEndEvent(self, /) -> bool: ... method isUpdateEvent (line 6384) | def isUpdateEvent(self, /) -> bool: ... method point (line 6385) | def point(self, i: int, /) -> QEventPoint: ... method pointById (line 6386) | def pointById(self, id: int, /) -> QEventPoint: ... method pointCount (line 6387) | def pointCount(self, /) -> int: ... method pointerType (line 6388) | def pointerType(self, /) -> QPointingDevice.PointerType: ... method pointingDevice (line 6389) | def pointingDevice(self, /) -> QPointingDevice: ... method points (line 6390) | def points(self, /) -> List[QEventPoint]: ... method removePassiveGrabber (line 6391) | def removePassiveGrabber(self, point: QEventPoint, grabber: PySide6.Qt... method setAccepted (line 6392) | def setAccepted(self, accepted: bool, /) -> None: ... method setExclusiveGrabber (line 6393) | def setExclusiveGrabber(self, point: QEventPoint, exclusiveGrabber: Py... method setTimestamp (line 6394) | def setTimestamp(self, timestamp: int, /) -> None: ... class QPointingDevice (line 6396) | class QPointingDevice(QInputDevice): class GrabTransition (line 6397) | class GrabTransition(enum.Enum): class PointerType (line 6406) | class PointerType(enum.Flag): method __init__ (line 6417) | def __init__(self, name: str, systemId: int, devType: QInputDevice.Dev... method __init__ (line 6419) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method buttonCount (line 6420) | def buttonCount(self, /) -> int: ... method maximumPoints (line 6421) | def maximumPoints(self, /) -> int: ... method pointerType (line 6422) | def pointerType(self, /) -> QPointingDevice.PointerType: ... method primaryPointingDevice (line 6424) | def primaryPointingDevice(seatName: str = ...) -> QPointingDevice: ... method setCapabilities (line 6425) | def setCapabilities(self, caps: QInputDevice.Capability, /) -> None: ... method setMaximumTouchPoints (line 6426) | def setMaximumTouchPoints(self, c: int, /) -> None: ... method setType (line 6427) | def setType(self, devType: QInputDevice.DeviceType, /) -> None: ... method uniqueId (line 6428) | def uniqueId(self, /) -> QPointingDeviceUniqueId: ... method __eq__ (line 6429) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6430) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6431) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6432) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6433) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6434) | def __ne__(self, other: object) -> bool: ... class QPointingDeviceUniqueId (line 6436) | class QPointingDeviceUniqueId(shiboken6.Object): method __init__ (line 6438) | def __init__(self, QPointingDeviceUniqueId: QPointingDeviceUniqueId, /... method __init__ (line 6440) | def __init__(self, /, *, numericId: int | None = ...) -> None: ... method fromNumericId (line 6442) | def fromNumericId(id: int, /) -> QPointingDeviceUniqueId: ... method isValid (line 6443) | def isValid(self, /) -> bool: ... method numericId (line 6444) | def numericId(self, /) -> int: ... method __copy__ (line 6445) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6446) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6447) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6448) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6449) | def __hash__(self, /) -> int: ... method __le__ (line 6450) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6451) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6452) | def __ne__(self, other: object) -> bool: ... class QPolygon (line 6454) | class QPolygon(shiboken6.Object): method __init__ (line 6456) | def __init__(self, r: PySide6.QtCore.QRect, /, closed: bool = ...) -> ... method __init__ (line 6458) | def __init__(self, v: typing.Iterable[PySide6.QtCore.QPoint], /) -> No... method __init__ (line 6460) | def __init__(self, QPolygon: QPolygon, /) -> None: ... method __init__ (line 6462) | def __init__(self, /) -> None: ... method append (line 6464) | def append(self, l: typing.Iterable[PySide6.QtCore.QPoint], /) -> None... method append (line 6466) | def append(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method at (line 6467) | def at(self, i: int, /) -> PySide6.QtCore.QPoint: ... method back (line 6468) | def back(self, /) -> PySide6.QtCore.QPoint: ... method boundingRect (line 6469) | def boundingRect(self, /) -> PySide6.QtCore.QRect: ... method capacity (line 6470) | def capacity(self, /) -> int: ... method clear (line 6471) | def clear(self, /) -> None: ... method constData (line 6472) | def constData(self, /) -> PySide6.QtCore.QPoint: ... method constFirst (line 6473) | def constFirst(self, /) -> PySide6.QtCore.QPoint: ... method constLast (line 6474) | def constLast(self, /) -> PySide6.QtCore.QPoint: ... method containsPoint (line 6475) | def containsPoint(self, pt: PySide6.QtCore.QPoint, fillRule: PySide6.Q... method count (line 6476) | def count(self, /) -> int: ... method data (line 6477) | def data(self, /) -> PySide6.QtCore.QPoint: ... method empty (line 6478) | def empty(self, /) -> bool: ... method first (line 6480) | def first(self, n: int, /) -> List[PySide6.QtCore.QPoint]: ... method first (line 6482) | def first(self, /) -> PySide6.QtCore.QPoint: ... method fromList (line 6484) | def fromList(list: typing.Iterable[PySide6.QtCore.QPoint], /) -> List[... method fromVector (line 6486) | def fromVector(vector: typing.Iterable[PySide6.QtCore.QPoint], /) -> L... method front (line 6487) | def front(self, /) -> PySide6.QtCore.QPoint: ... method insert (line 6488) | def insert(self, arg__1: int, arg__2: PySide6.QtCore.QPoint, /) -> Non... method intersected (line 6489) | def intersected(self, r: QPolygon | typing.Iterable[PySide6.QtCore.QPo... method intersects (line 6490) | def intersects(self, r: QPolygon | typing.Iterable[PySide6.QtCore.QPoi... method isEmpty (line 6491) | def isEmpty(self, /) -> bool: ... method isSharedWith (line 6492) | def isSharedWith(self, other: typing.Iterable[PySide6.QtCore.QPoint], ... method last (line 6494) | def last(self, n: int, /) -> List[PySide6.QtCore.QPoint]: ... method last (line 6496) | def last(self, /) -> PySide6.QtCore.QPoint: ... method length (line 6497) | def length(self, /) -> int: ... method maxSize (line 6499) | def maxSize() -> int: ... method max_size (line 6500) | def max_size(self, /) -> int: ... method mid (line 6501) | def mid(self, pos: int, /, len: int = ...) -> List[PySide6.QtCore.QPoi... method move (line 6502) | def move(self, from_: int, to: int, /) -> None: ... method pop_back (line 6503) | def pop_back(self, /) -> None: ... method pop_front (line 6504) | def pop_front(self, /) -> None: ... method prepend (line 6505) | def prepend(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method push_back (line 6506) | def push_back(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method push_front (line 6507) | def push_front(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method remove (line 6508) | def remove(self, i: int, /, n: int = ...) -> None: ... method removeAll (line 6509) | def removeAll(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method removeAt (line 6510) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 6511) | def removeFirst(self, /) -> None: ... method removeLast (line 6512) | def removeLast(self, /) -> None: ... method removeOne (line 6513) | def removeOne(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method reserve (line 6514) | def reserve(self, size: int, /) -> None: ... method resize (line 6515) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 6516) | def resizeForOverwrite(self, size: int, /) -> None: ... method shrink_to_fit (line 6517) | def shrink_to_fit(self, /) -> None: ... method size (line 6518) | def size(self, /) -> int: ... method sliced (line 6520) | def sliced(self, pos: int, n: int, /) -> List[PySide6.QtCore.QPoint]: ... method sliced (line 6522) | def sliced(self, pos: int, /) -> List[PySide6.QtCore.QPoint]: ... method squeeze (line 6523) | def squeeze(self, /) -> None: ... method subtracted (line 6524) | def subtracted(self, r: QPolygon | typing.Iterable[PySide6.QtCore.QPoi... method swap (line 6525) | def swap(self, other: QPolygon | typing.Iterable[PySide6.QtCore.QPoint... method swapItemsAt (line 6526) | def swapItemsAt(self, i: int, j: int, /) -> None: ... method takeAt (line 6527) | def takeAt(self, i: int, /) -> PySide6.QtCore.QPoint: ... method toList (line 6528) | def toList(self, /) -> List[PySide6.QtCore.QPoint]: ... method toPolygonF (line 6529) | def toPolygonF(self, /) -> QPolygonF: ... method toVector (line 6530) | def toVector(self, /) -> List[PySide6.QtCore.QPoint]: ... method translate (line 6532) | def translate(self, dx: int, dy: int, /) -> None: ... method translate (line 6534) | def translate(self, offset: PySide6.QtCore.QPoint, /) -> None: ... method translated (line 6536) | def translated(self, dx: int, dy: int, /) -> QPolygon: ... method translated (line 6538) | def translated(self, offset: PySide6.QtCore.QPoint, /) -> QPolygon: ... method united (line 6539) | def united(self, r: QPolygon | typing.Iterable[PySide6.QtCore.QPoint] ... method value (line 6540) | def value(self, i: int, /) -> PySide6.QtCore.QPoint: ... method __add__ (line 6541) | def __add__(self, l: typing.Iterable[PySide6.QtCore.QPoint], /) -> Lis... method __copy__ (line 6542) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 6543) | def __delitem__(self, other) -> None: ... method __eq__ (line 6544) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6545) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 6546) | def __getitem__(self, index): ... method __gt__ (line 6547) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6548) | def __le__(self, other: object) -> bool: ... method __len__ (line 6549) | def __len__(self) -> int: ... method __lshift__ (line 6551) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lshift__ (line 6553) | def __lshift__(self, arg__1: PySide6.QtCore.QPoint, /) -> QPolygon: ... method __lshift__ (line 6555) | def __lshift__(self, arg__1: typing.Iterable[PySide6.QtCore.QPoint], /... method __lt__ (line 6556) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6557) | def __mul__(self, m: QTransform, /) -> QPolygon: ... method __ne__ (line 6558) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 6559) | def __radd__(self, other): ... method __rlshift__ (line 6560) | def __rlshift__(self, other): ... method __rmul__ (line 6561) | def __rmul__(self, other): ... method __rrshift__ (line 6562) | def __rrshift__(self, other): ... method __rshift__ (line 6563) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __setitem__ (line 6564) | def __setitem__(self, index, object) -> None: ... class QPolygonF (line 6566) | class QPolygonF(shiboken6.Object): method __init__ (line 6568) | def __init__(self, v: typing.Iterable[PySide6.QtCore.QPointF], /) -> N... method __init__ (line 6570) | def __init__(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, /)... method __init__ (line 6572) | def __init__(self, a: QPolygon | typing.Iterable[PySide6.QtCore.QPoint... method __init__ (line 6574) | def __init__(self, QPolygonF: QPolygonF, /) -> None: ... method __init__ (line 6576) | def __init__(self, /) -> None: ... method append (line 6578) | def append(self, l: typing.Iterable[PySide6.QtCore.QPointF], /) -> Non... method append (line 6580) | def append(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method at (line 6581) | def at(self, i: int, /) -> PySide6.QtCore.QPointF: ... method back (line 6582) | def back(self, /) -> PySide6.QtCore.QPointF: ... method boundingRect (line 6583) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method capacity (line 6584) | def capacity(self, /) -> int: ... method clear (line 6585) | def clear(self, /) -> None: ... method constData (line 6586) | def constData(self, /) -> PySide6.QtCore.QPointF: ... method constFirst (line 6587) | def constFirst(self, /) -> PySide6.QtCore.QPointF: ... method constLast (line 6588) | def constLast(self, /) -> PySide6.QtCore.QPointF: ... method containsPoint (line 6589) | def containsPoint(self, pt: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method count (line 6590) | def count(self, /) -> int: ... method data (line 6591) | def data(self, /) -> PySide6.QtCore.QPointF: ... method empty (line 6592) | def empty(self, /) -> bool: ... method first (line 6594) | def first(self, n: int, /) -> List[PySide6.QtCore.QPointF]: ... method first (line 6596) | def first(self, /) -> PySide6.QtCore.QPointF: ... method fromList (line 6598) | def fromList(list: typing.Iterable[PySide6.QtCore.QPointF], /) -> List... method fromVector (line 6600) | def fromVector(vector: typing.Iterable[PySide6.QtCore.QPointF], /) -> ... method front (line 6601) | def front(self, /) -> PySide6.QtCore.QPointF: ... method insert (line 6602) | def insert(self, arg__1: int, arg__2: PySide6.QtCore.QPointF | PySide6... method intersected (line 6603) | def intersected(self, r: QPolygonF | typing.Iterable[PySide6.QtCore.QP... method intersects (line 6604) | def intersects(self, r: QPolygonF | typing.Iterable[PySide6.QtCore.QPo... method isClosed (line 6605) | def isClosed(self, /) -> bool: ... method isEmpty (line 6606) | def isEmpty(self, /) -> bool: ... method isSharedWith (line 6607) | def isSharedWith(self, other: typing.Iterable[PySide6.QtCore.QPointF],... method last (line 6609) | def last(self, n: int, /) -> List[PySide6.QtCore.QPointF]: ... method last (line 6611) | def last(self, /) -> PySide6.QtCore.QPointF: ... method length (line 6612) | def length(self, /) -> int: ... method maxSize (line 6614) | def maxSize() -> int: ... method max_size (line 6615) | def max_size(self, /) -> int: ... method mid (line 6616) | def mid(self, pos: int, /, len: int = ...) -> List[PySide6.QtCore.QPoi... method move (line 6617) | def move(self, from_: int, to: int, /) -> None: ... method pop_back (line 6618) | def pop_back(self, /) -> None: ... method pop_front (line 6619) | def pop_front(self, /) -> None: ... method prepend (line 6620) | def prepend(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method push_back (line 6621) | def push_back(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method push_front (line 6622) | def push_front(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method remove (line 6623) | def remove(self, i: int, /, n: int = ...) -> None: ... method removeAll (line 6624) | def removeAll(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method removeAt (line 6625) | def removeAt(self, i: int, /) -> None: ... method removeFirst (line 6626) | def removeFirst(self, /) -> None: ... method removeLast (line 6627) | def removeLast(self, /) -> None: ... method removeOne (line 6628) | def removeOne(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method reserve (line 6629) | def reserve(self, size: int, /) -> None: ... method resize (line 6630) | def resize(self, size: int, /) -> None: ... method resizeForOverwrite (line 6631) | def resizeForOverwrite(self, size: int, /) -> None: ... method shrink_to_fit (line 6632) | def shrink_to_fit(self, /) -> None: ... method size (line 6633) | def size(self, /) -> int: ... method sliced (line 6635) | def sliced(self, pos: int, n: int, /) -> List[PySide6.QtCore.QPointF]:... method sliced (line 6637) | def sliced(self, pos: int, /) -> List[PySide6.QtCore.QPointF]: ... method squeeze (line 6638) | def squeeze(self, /) -> None: ... method subtracted (line 6639) | def subtracted(self, r: QPolygonF | typing.Iterable[PySide6.QtCore.QPo... method swap (line 6640) | def swap(self, other: QPolygonF | typing.Iterable[PySide6.QtCore.QPoin... method swapItemsAt (line 6641) | def swapItemsAt(self, i: int, j: int, /) -> None: ... method takeAt (line 6642) | def takeAt(self, i: int, /) -> PySide6.QtCore.QPointF: ... method toList (line 6643) | def toList(self, /) -> List[PySide6.QtCore.QPointF]: ... method toPolygon (line 6644) | def toPolygon(self, /) -> QPolygon: ... method toVector (line 6645) | def toVector(self, /) -> List[PySide6.QtCore.QPointF]: ... method translate (line 6647) | def translate(self, dx: float, dy: float, /) -> None: ... method translate (line 6649) | def translate(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method translated (line 6651) | def translated(self, dx: float, dy: float, /) -> QPolygonF: ... method translated (line 6653) | def translated(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method united (line 6654) | def united(self, r: QPolygonF | typing.Iterable[PySide6.QtCore.QPointF... method value (line 6655) | def value(self, i: int, /) -> PySide6.QtCore.QPointF: ... method __add__ (line 6656) | def __add__(self, l: typing.Iterable[PySide6.QtCore.QPointF], /) -> Li... method __copy__ (line 6657) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 6658) | def __delitem__(self, other) -> None: ... method __eq__ (line 6659) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6660) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 6661) | def __getitem__(self, index): ... method __gt__ (line 6662) | def __gt__(self, other: object) -> bool: ... method __le__ (line 6663) | def __le__(self, other: object) -> bool: ... method __len__ (line 6664) | def __len__(self) -> int: ... method __lshift__ (line 6666) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lshift__ (line 6668) | def __lshift__(self, arg__1: typing.Iterable[PySide6.QtCore.QPointF], ... method __lshift__ (line 6670) | def __lshift__(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method __lt__ (line 6671) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6672) | def __mul__(self, m: QTransform, /) -> QPolygonF: ... method __ne__ (line 6673) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 6674) | def __radd__(self, other): ... method __rlshift__ (line 6675) | def __rlshift__(self, other): ... method __rmul__ (line 6676) | def __rmul__(self, other): ... method __rrshift__ (line 6677) | def __rrshift__(self, other): ... method __rshift__ (line 6678) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __setitem__ (line 6679) | def __setitem__(self, index, object) -> None: ... class QPyTextObject (line 6681) | class QPyTextObject(PySide6.QtCore.QObject, QTextObjectInterface): method __init__ (line 6683) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... class QQuaternion (line 6685) | class QQuaternion(shiboken6.Object): method __init__ (line 6687) | def __init__(self, scalar: float, xpos: float, ypos: float, zpos: floa... method __init__ (line 6689) | def __init__(self, scalar: float, vector: QVector3D, /) -> None: ... method __init__ (line 6691) | def __init__(self, vector: QVector4D, /) -> None: ... method __init__ (line 6693) | def __init__(self, QQuaternion: QQuaternion, /) -> None: ... method __init__ (line 6695) | def __init__(self, /) -> None: ... method conjugated (line 6696) | def conjugated(self, /) -> QQuaternion: ... method dotProduct (line 6698) | def dotProduct(q1: QQuaternion, q2: QQuaternion, /) -> float: ... method fromAxes (line 6700) | def fromAxes(xAxis: QVector3D, yAxis: QVector3D, zAxis: QVector3D, /) ... method fromAxisAndAngle (line 6703) | def fromAxisAndAngle(x: float, y: float, z: float, angle: float, /) ->... method fromAxisAndAngle (line 6706) | def fromAxisAndAngle(axis: QVector3D, angle: float, /) -> QQuaternion:... method fromDirection (line 6708) | def fromDirection(direction: QVector3D, up: QVector3D, /) -> QQuaterni... method fromEulerAngles (line 6711) | def fromEulerAngles(pitch: float, yaw: float, roll: float, /) -> QQuat... method fromEulerAngles (line 6714) | def fromEulerAngles(angles: QVector3D, /) -> QQuaternion: ... method fromRotationMatrix (line 6716) | def fromRotationMatrix(rot3x3: QMatrix3x3, /) -> QQuaternion: ... method getAxes (line 6717) | def getAxes(self, xAxis: QVector3D, yAxis: QVector3D, zAxis: QVector3D... method getAxisAndAngle (line 6718) | def getAxisAndAngle(self, /) -> Tuple[QVector3D, float]: ... method getEulerAngles (line 6719) | def getEulerAngles(self, /) -> Tuple[float, float, float]: ... method inverted (line 6720) | def inverted(self, /) -> QQuaternion: ... method isIdentity (line 6721) | def isIdentity(self, /) -> bool: ... method isNull (line 6722) | def isNull(self, /) -> bool: ... method length (line 6723) | def length(self, /) -> float: ... method lengthSquared (line 6724) | def lengthSquared(self, /) -> float: ... method nlerp (line 6726) | def nlerp(q1: QQuaternion, q2: QQuaternion, t: float, /) -> QQuaternio... method normalize (line 6727) | def normalize(self, /) -> None: ... method normalized (line 6728) | def normalized(self, /) -> QQuaternion: ... method rotatedVector (line 6729) | def rotatedVector(self, vector: QVector3D, /) -> QVector3D: ... method rotationTo (line 6731) | def rotationTo(from_: QVector3D, to: QVector3D, /) -> QQuaternion: ... method scalar (line 6732) | def scalar(self, /) -> float: ... method setScalar (line 6733) | def setScalar(self, scalar: float, /) -> None: ... method setVector (line 6735) | def setVector(self, x: float, y: float, z: float, /) -> None: ... method setVector (line 6737) | def setVector(self, vector: QVector3D, /) -> None: ... method setX (line 6738) | def setX(self, x: float, /) -> None: ... method setY (line 6739) | def setY(self, y: float, /) -> None: ... method setZ (line 6740) | def setZ(self, z: float, /) -> None: ... method slerp (line 6742) | def slerp(q1: QQuaternion, q2: QQuaternion, t: float, /) -> QQuaternio... method toEulerAngles (line 6743) | def toEulerAngles(self, /) -> QVector3D: ... method toRotationMatrix (line 6744) | def toRotationMatrix(self, /) -> QMatrix3x3: ... method toVector4D (line 6745) | def toVector4D(self, /) -> QVector4D: ... method vector (line 6746) | def vector(self, /) -> QVector3D: ... method x (line 6747) | def x(self, /) -> float: ... method y (line 6748) | def y(self, /) -> float: ... method z (line 6749) | def z(self, /) -> float: ... method __add__ (line 6750) | def __add__(self, q2: QQuaternion, /) -> QQuaternion: ... method __bool__ (line 6751) | def __bool__(self) -> bool: ... method __copy__ (line 6752) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6753) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6754) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6755) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 6756) | def __iadd__(self, quaternion: QQuaternion, /) -> QQuaternion: ... method __imul__ (line 6758) | def __imul__(self, quaternion: QQuaternion, /) -> QQuaternion: ... method __imul__ (line 6760) | def __imul__(self, factor: float, /) -> QQuaternion: ... method __isub__ (line 6761) | def __isub__(self, quaternion: QQuaternion, /) -> QQuaternion: ... method __le__ (line 6762) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 6763) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 6764) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6766) | def __mul__(self, q2: QQuaternion, /) -> QQuaternion: ... method __mul__ (line 6768) | def __mul__(self, factor: float, /) -> QQuaternion: ... method __ne__ (line 6769) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6770) | def __neg__(self, /) -> QQuaternion: ... method __radd__ (line 6771) | def __radd__(self, other): ... method __rlshift__ (line 6772) | def __rlshift__(self, other): ... method __rmul__ (line 6773) | def __rmul__(self, other): ... method __rrshift__ (line 6774) | def __rrshift__(self, other): ... method __rshift__ (line 6775) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 6776) | def __rsub__(self, other): ... method __rtruediv__ (line 6777) | def __rtruediv__(self, other): ... method __sub__ (line 6778) | def __sub__(self, q2: QQuaternion, /) -> QQuaternion: ... method __truediv__ (line 6779) | def __truediv__(self, other): ... class QRadialGradient (line 6781) | class QRadialGradient(QGradient): method __init__ (line 6783) | def __init__(self, cx: float, cy: float, centerRadius: float, fx: floa... method __init__ (line 6785) | def __init__(self, cx: float, cy: float, radius: float, fx: float, fy:... method __init__ (line 6787) | def __init__(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method __init__ (line 6789) | def __init__(self, cx: float, cy: float, radius: float, /) -> None: ... method __init__ (line 6791) | def __init__(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method __init__ (line 6793) | def __init__(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method __init__ (line 6795) | def __init__(self, QRadialGradient: QRadialGradient, /) -> None: ... method __init__ (line 6797) | def __init__(self, /) -> None: ... method center (line 6798) | def center(self, /) -> PySide6.QtCore.QPointF: ... method centerRadius (line 6799) | def centerRadius(self, /) -> float: ... method focalPoint (line 6800) | def focalPoint(self, /) -> PySide6.QtCore.QPointF: ... method focalRadius (line 6801) | def focalRadius(self, /) -> float: ... method radius (line 6802) | def radius(self, /) -> float: ... method setCenter (line 6804) | def setCenter(self, x: float, y: float, /) -> None: ... method setCenter (line 6806) | def setCenter(self, center: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method setCenterRadius (line 6807) | def setCenterRadius(self, radius: float, /) -> None: ... method setFocalPoint (line 6809) | def setFocalPoint(self, x: float, y: float, /) -> None: ... method setFocalPoint (line 6811) | def setFocalPoint(self, focalPoint: PySide6.QtCore.QPointF | PySide6.Q... method setFocalRadius (line 6812) | def setFocalRadius(self, radius: float, /) -> None: ... method setRadius (line 6813) | def setRadius(self, radius: float, /) -> None: ... method __copy__ (line 6814) | def __copy__(self, /) -> typing_extensions.Self: ... class QRasterWindow (line 6816) | class QRasterWindow(QPaintDeviceWindow): method __init__ (line 6818) | def __init__(self, /, parent: QWindow | None = ..., active: bool = ...... method metric (line 6819) | def metric(self, metric: QPaintDevice.PaintDeviceMetric, /) -> int: ... method redirected (line 6820) | def redirected(self, arg__1: PySide6.QtCore.QPoint, /) -> QPaintDevice... method resizeEvent (line 6821) | def resizeEvent(self, event: QResizeEvent, /) -> None: ... class QRawFont (line 6823) | class QRawFont(shiboken6.Object): class AntialiasingType (line 6824) | class AntialiasingType(enum.Enum): class LayoutFlag (line 6828) | class LayoutFlag(enum.Flag): method __init__ (line 6833) | def __init__(self, fontData: PySide6.QtCore.QByteArray | bytes | bytea... method __init__ (line 6835) | def __init__(self, fileName: str, pixelSize: float, /, hintingPreferen... method __init__ (line 6837) | def __init__(self, other: QRawFont, /) -> None: ... method __init__ (line 6839) | def __init__(self, /) -> None: ... method advancesForGlyphIndexes (line 6841) | def advancesForGlyphIndexes(self, glyphIndexes: typing.Iterable[int], ... method advancesForGlyphIndexes (line 6843) | def advancesForGlyphIndexes(self, glyphIndexes: typing.Iterable[int], ... method alphaMapForGlyph (line 6844) | def alphaMapForGlyph(self, glyphIndex: int, /, antialiasingType: QRawF... method ascent (line 6845) | def ascent(self, /) -> float: ... method averageCharWidth (line 6846) | def averageCharWidth(self, /) -> float: ... method boundingRect (line 6847) | def boundingRect(self, glyphIndex: int, /) -> PySide6.QtCore.QRectF: ... method capHeight (line 6848) | def capHeight(self, /) -> float: ... method descent (line 6849) | def descent(self, /) -> float: ... method familyName (line 6850) | def familyName(self, /) -> str: ... method fontTable (line 6852) | def fontTable(self, tagName: bytes | bytearray | memoryview, /) -> PyS... method fontTable (line 6854) | def fontTable(self, tag: QFont.Tag | str, /) -> PySide6.QtCore.QByteAr... method fromFont (line 6856) | def fromFont(font: QFont | str | typing.Iterable[str], /, writingSyste... method glyphIndexesForString (line 6857) | def glyphIndexesForString(self, text: str, /) -> List[int]: ... method hintingPreference (line 6858) | def hintingPreference(self, /) -> QFont.HintingPreference: ... method isValid (line 6859) | def isValid(self, /) -> bool: ... method leading (line 6860) | def leading(self, /) -> float: ... method lineThickness (line 6861) | def lineThickness(self, /) -> float: ... method loadFromData (line 6862) | def loadFromData(self, fontData: PySide6.QtCore.QByteArray | bytes | b... method loadFromFile (line 6863) | def loadFromFile(self, fileName: str, pixelSize: float, hintingPrefere... method maxCharWidth (line 6864) | def maxCharWidth(self, /) -> float: ... method pathForGlyph (line 6865) | def pathForGlyph(self, glyphIndex: int, /) -> QPainterPath: ... method pixelSize (line 6866) | def pixelSize(self, /) -> float: ... method setPixelSize (line 6867) | def setPixelSize(self, pixelSize: float, /) -> None: ... method style (line 6868) | def style(self, /) -> QFont.Style: ... method styleName (line 6869) | def styleName(self, /) -> str: ... method supportedWritingSystems (line 6870) | def supportedWritingSystems(self, /) -> List[QFontDatabase.WritingSyst... method supportsCharacter (line 6872) | def supportsCharacter(self, ucs4: int, /) -> bool: ... method supportsCharacter (line 6874) | def supportsCharacter(self, character: str, /) -> bool: ... method swap (line 6875) | def swap(self, other: QRawFont, /) -> None: ... method underlinePosition (line 6876) | def underlinePosition(self, /) -> float: ... method unitsPerEm (line 6877) | def unitsPerEm(self, /) -> float: ... method weight (line 6878) | def weight(self, /) -> int: ... method xHeight (line 6879) | def xHeight(self, /) -> float: ... method __copy__ (line 6880) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6881) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6882) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 6883) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 6884) | def __hash__(self, /) -> int: ... method __le__ (line 6885) | def __le__(self, other: object) -> bool: ... method __lt__ (line 6886) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 6887) | def __ne__(self, other: object) -> bool: ... class QRegion (line 6889) | class QRegion(shiboken6.Object): class RegionType (line 6890) | class RegionType(enum.Enum): method __init__ (line 6894) | def __init__(self, x: int, y: int, w: int, h: int, /, t: QRegion.Regio... method __init__ (line 6896) | def __init__(self, r: PySide6.QtCore.QRect, /, t: QRegion.RegionType =... method __init__ (line 6898) | def __init__(self, pa: QPolygon | typing.Iterable[PySide6.QtCore.QPoin... method __init__ (line 6900) | def __init__(self, region: QRegion, /) -> None: ... method __init__ (line 6902) | def __init__(self, bitmap: QBitmap | str, /) -> None: ... method __init__ (line 6904) | def __init__(self, /) -> None: ... method begin (line 6905) | def begin(self, /) -> PySide6.QtCore.QRect: ... method boundingRect (line 6906) | def boundingRect(self, /) -> PySide6.QtCore.QRect: ... method cbegin (line 6907) | def cbegin(self, /) -> PySide6.QtCore.QRect: ... method cend (line 6908) | def cend(self, /) -> PySide6.QtCore.QRect: ... method contains (line 6910) | def contains(self, r: PySide6.QtCore.QRect, /) -> bool: ... method contains (line 6912) | def contains(self, p: PySide6.QtCore.QPoint, /) -> bool: ... method end (line 6913) | def end(self, /) -> PySide6.QtCore.QRect: ... method intersected (line 6915) | def intersected(self, r: PySide6.QtCore.QRect, /) -> QRegion: ... method intersected (line 6917) | def intersected(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore... method intersects (line 6919) | def intersects(self, r: PySide6.QtCore.QRect, /) -> bool: ... method intersects (line 6921) | def intersects(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.... method isEmpty (line 6922) | def isEmpty(self, /) -> bool: ... method isNull (line 6923) | def isNull(self, /) -> bool: ... method rectCount (line 6924) | def rectCount(self, /) -> int: ... method setRects (line 6925) | def setRects(self, rect: PySide6.QtCore.QRect, num: int, /) -> None: ... method subtracted (line 6926) | def subtracted(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.... method swap (line 6927) | def swap(self, other: QRegion | QBitmap | QPolygon | PySide6.QtCore.QR... method translate (line 6929) | def translate(self, dx: int, dy: int, /) -> None: ... method translate (line 6931) | def translate(self, p: PySide6.QtCore.QPoint, /) -> None: ... method translated (line 6933) | def translated(self, dx: int, dy: int, /) -> QRegion: ... method translated (line 6935) | def translated(self, p: PySide6.QtCore.QPoint, /) -> QRegion: ... method united (line 6937) | def united(self, r: PySide6.QtCore.QRect, /) -> QRegion: ... method united (line 6939) | def united(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRec... method xored (line 6940) | def xored(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRect... method __add__ (line 6942) | def __add__(self, r: PySide6.QtCore.QRect, /) -> QRegion: ... method __add__ (line 6944) | def __add__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRe... method __and__ (line 6946) | def __and__(self, r: PySide6.QtCore.QRect, /) -> QRegion: ... method __and__ (line 6948) | def __and__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRe... method __bool__ (line 6949) | def __bool__(self) -> bool: ... method __copy__ (line 6950) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 6951) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 6952) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 6953) | def __getitem__(self, index): ... method __gt__ (line 6954) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 6956) | def __iadd__(self, r: PySide6.QtCore.QRect, /) -> QRegion: ... method __iadd__ (line 6958) | def __iadd__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QR... method __ior__ (line 6959) | def __ior__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRe... method __isub__ (line 6960) | def __isub__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QR... method __ixor__ (line 6961) | def __ixor__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QR... method __le__ (line 6962) | def __le__(self, other: object) -> bool: ... method __len__ (line 6963) | def __len__(self) -> int: ... method __lshift__ (line 6964) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 6965) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 6966) | def __mul__(self, m: QTransform, /) -> QRegion: ... method __ne__ (line 6967) | def __ne__(self, other: object) -> bool: ... method __or__ (line 6968) | def __or__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRec... method __radd__ (line 6969) | def __radd__(self, other): ... method __rand__ (line 6970) | def __rand__(self, other): ... method __rlshift__ (line 6971) | def __rlshift__(self, other): ... method __rmul__ (line 6972) | def __rmul__(self, other): ... method __ror__ (line 6973) | def __ror__(self, other): ... method __rrshift__ (line 6974) | def __rrshift__(self, other): ... method __rshift__ (line 6975) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 6976) | def __rsub__(self, other): ... method __rxor__ (line 6977) | def __rxor__(self, other): ... method __sub__ (line 6978) | def __sub__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRe... method __xor__ (line 6979) | def __xor__(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRe... class QRegularExpressionValidator (line 6981) | class QRegularExpressionValidator(QValidator): method __init__ (line 6985) | def __init__(self, re: PySide6.QtCore.QRegularExpression | str, /, par... method __init__ (line 6987) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method regularExpression (line 6988) | def regularExpression(self, /) -> PySide6.QtCore.QRegularExpression: ... method setRegularExpression (line 6989) | def setRegularExpression(self, re: PySide6.QtCore.QRegularExpression |... method validate (line 6990) | def validate(self, input: str, pos: int, /) -> typing.Any: ... class QResizeEvent (line 6992) | class QResizeEvent(PySide6.QtCore.QEvent): method __init__ (line 6994) | def __init__(self, size: PySide6.QtCore.QSize, oldSize: PySide6.QtCore... method __init__ (line 6996) | def __init__(self, arg__1: QResizeEvent, /) -> None: ... method clone (line 6997) | def clone(self, /) -> QResizeEvent: ... method oldSize (line 6998) | def oldSize(self, /) -> PySide6.QtCore.QSize: ... method size (line 6999) | def size(self, /) -> PySide6.QtCore.QSize: ... class QRgba64 (line 7001) | class QRgba64(shiboken6.Object): method __init__ (line 7003) | def __init__(self, QRgba64: QRgba64, /) -> None: ... method __init__ (line 7005) | def __init__(self, /) -> None: ... method alpha (line 7006) | def alpha(self, /) -> int: ... method alpha8 (line 7007) | def alpha8(self, /) -> int: ... method blue (line 7008) | def blue(self, /) -> int: ... method blue8 (line 7009) | def blue8(self, /) -> int: ... method fromArgb32 (line 7011) | def fromArgb32(rgb: int, /) -> QRgba64: ... method fromRgba (line 7013) | def fromRgba(red: int, green: int, blue: int, alpha: int, /) -> QRgba6... method fromRgba64 (line 7016) | def fromRgba64(red: int, green: int, blue: int, alpha: int, /) -> QRgb... method fromRgba64 (line 7019) | def fromRgba64(c: int, /) -> QRgba64: ... method green (line 7020) | def green(self, /) -> int: ... method green8 (line 7021) | def green8(self, /) -> int: ... method isOpaque (line 7022) | def isOpaque(self, /) -> bool: ... method isTransparent (line 7023) | def isTransparent(self, /) -> bool: ... method premultiplied (line 7024) | def premultiplied(self, /) -> QRgba64: ... method red (line 7025) | def red(self, /) -> int: ... method red8 (line 7026) | def red8(self, /) -> int: ... method setAlpha (line 7027) | def setAlpha(self, _alpha: int, /) -> None: ... method setBlue (line 7028) | def setBlue(self, _blue: int, /) -> None: ... method setGreen (line 7029) | def setGreen(self, _green: int, /) -> None: ... method setRed (line 7030) | def setRed(self, _red: int, /) -> None: ... method toArgb32 (line 7031) | def toArgb32(self, /) -> int: ... method toRgb16 (line 7032) | def toRgb16(self, /) -> int: ... method unpremultiplied (line 7033) | def unpremultiplied(self, /) -> QRgba64: ... method __copy__ (line 7034) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhi (line 7036) | class QRhi(shiboken6.Object): class BeginFrameFlag (line 7037) | class BeginFrameFlag(enum.Flag): ... # type: ignore[misc] class EndFrameFlag (line 7038) | class EndFrameFlag(enum.Flag): class Feature (line 7041) | class Feature(enum.Enum): class Flag (line 7091) | class Flag(enum.Flag): class FrameOpResult (line 7098) | class FrameOpResult(enum.Enum): class Implementation (line 7104) | class Implementation(enum.Enum): class ResourceLimit (line 7112) | class ResourceLimit(enum.Enum): method __init__ (line 7129) | def __init__(self, /) -> None: ... method backend (line 7130) | def backend(self, /) -> QRhi.Implementation: ... method backendName (line 7132) | def backendName(self) -> typing.Any: ... method beginFrame (line 7133) | def beginFrame(self, swapChain: QRhiSwapChain, /, flags: QRhi.BeginFra... method beginOffscreenFrame (line 7134) | def beginOffscreenFrame(self, cb: QRhiCommandBuffer, /, flags: QRhi.Be... method clipSpaceCorrMatrix (line 7135) | def clipSpaceCorrMatrix(self, /) -> QMatrix4x4: ... method create (line 7138) | def create(impl: QRhi.Implementation, params: QRhiInitParams, flags: Q... method create (line 7141) | def create(impl: QRhi.Implementation, params: QRhiInitParams, /, flags... method currentFrameSlot (line 7142) | def currentFrameSlot(self, /) -> int: ... method driverInfo (line 7143) | def driverInfo(self, /) -> QRhiDriverInfo: ... method endFrame (line 7144) | def endFrame(self, swapChain: QRhiSwapChain, /, flags: QRhi.EndFrameFl... method endOffscreenFrame (line 7145) | def endOffscreenFrame(self, /, flags: QRhi.EndFrameFlag = ...) -> QRhi... method enumerateAdapters (line 7147) | def enumerateAdapters(impl: QRhi.Implementation, params: QRhiInitParam... method finish (line 7148) | def finish(self, /) -> QRhi.FrameOpResult: ... method isClipDepthZeroToOne (line 7149) | def isClipDepthZeroToOne(self, /) -> bool: ... method isDeviceLost (line 7150) | def isDeviceLost(self, /) -> bool: ... method isFeatureSupported (line 7151) | def isFeatureSupported(self, feature: QRhi.Feature, /) -> bool: ... method isRecordingFrame (line 7152) | def isRecordingFrame(self, /) -> bool: ... method isTextureFormatSupported (line 7153) | def isTextureFormatSupported(self, format: QRhiTexture.Format, /, flag... method isYUpInFramebuffer (line 7154) | def isYUpInFramebuffer(self, /) -> bool: ... method isYUpInNDC (line 7155) | def isYUpInNDC(self, /) -> bool: ... method makeThreadLocalNativeContextCurrent (line 7156) | def makeThreadLocalNativeContextCurrent(self, /) -> bool: ... method mipLevelsForSize (line 7158) | def mipLevelsForSize(size: PySide6.QtCore.QSize, /) -> int: ... method nativeHandles (line 7159) | def nativeHandles(self, /) -> QRhiNativeHandles: ... method newBuffer (line 7160) | def newBuffer(self, type: QRhiBuffer.Type, usage: QRhiBuffer.UsageFlag... method newComputePipeline (line 7161) | def newComputePipeline(self, /) -> QRhiComputePipeline: ... method newGraphicsPipeline (line 7162) | def newGraphicsPipeline(self, /) -> QRhiGraphicsPipeline: ... method newRenderBuffer (line 7163) | def newRenderBuffer(self, type: QRhiRenderBuffer.Type, pixelSize: PySi... method newSampler (line 7164) | def newSampler(self, magFilter: QRhiSampler.Filter, minFilter: QRhiSam... method newShaderResourceBindings (line 7165) | def newShaderResourceBindings(self, /) -> QRhiShaderResourceBindings: ... method newSwapChain (line 7166) | def newSwapChain(self, /) -> QRhiSwapChain: ... method newTexture (line 7168) | def newTexture(self, format: QRhiTexture.Format, width: int, height: i... method newTexture (line 7170) | def newTexture(self, format: QRhiTexture.Format, pixelSize: PySide6.Qt... method newTextureArray (line 7171) | def newTextureArray(self, format: QRhiTexture.Format, arraySize: int, ... method newTextureRenderTarget (line 7172) | def newTextureRenderTarget(self, desc: QRhiTextureRenderTargetDescript... method nextResourceUpdateBatch (line 7173) | def nextResourceUpdateBatch(self, /) -> QRhiResourceUpdateBatch: ... method pipelineCacheData (line 7174) | def pipelineCacheData(self, /) -> PySide6.QtCore.QByteArray: ... method probe (line 7176) | def probe(impl: QRhi.Implementation, params: QRhiInitParams, /) -> boo... method releaseCachedResources (line 7177) | def releaseCachedResources(self, /) -> None: ... method removeCleanupCallback (line 7178) | def removeCleanupCallback(self, key: int, /) -> None: ... method resourceLimit (line 7179) | def resourceLimit(self, limit: QRhi.ResourceLimit, /) -> int: ... method setPipelineCacheData (line 7180) | def setPipelineCacheData(self, data: PySide6.QtCore.QByteArray | bytes... method setQueueSubmitParams (line 7181) | def setQueueSubmitParams(self, params: QRhiNativeHandles, /) -> None: ... method sizeForMipLevel (line 7183) | def sizeForMipLevel(mipLevel: int, baseLevelSize: PySide6.QtCore.QSize... method statistics (line 7184) | def statistics(self, /) -> QRhiStats: ... method supportedSampleCounts (line 7185) | def supportedSampleCounts(self, /) -> List[int]: ... method supportedShadingRates (line 7186) | def supportedShadingRates(self, sampleCount: int, /) -> List[PySide6.Q... method thread (line 7187) | def thread(self, /) -> PySide6.QtCore.QThread: ... method ubufAligned (line 7188) | def ubufAligned(self, v: int, /) -> int: ... method ubufAlignment (line 7189) | def ubufAlignment(self, /) -> int: ... class QRhiAdapter (line 7191) | class QRhiAdapter(shiboken6.Object): method __init__ (line 7192) | def __init__(self, /) -> None: ... method info (line 7193) | def info(self, /) -> QRhiDriverInfo: ... class QRhiBuffer (line 7195) | class QRhiBuffer(QRhiResource): class Type (line 7196) | class Type(enum.Enum): class UsageFlag (line 7201) | class UsageFlag(enum.Flag): method __init__ (line 7209) | def __init__(self, *args, **kwargs) -> None: ... method create (line 7210) | def create(self, /) -> bool: ... method endFullDynamicBufferUpdateForCurrentFrame (line 7211) | def endFullDynamicBufferUpdateForCurrentFrame(self, /) -> None: ... method fullDynamicBufferUpdateForCurrentFrame (line 7212) | def fullDynamicBufferUpdateForCurrentFrame(self, data: int, /, size: i... method resourceType (line 7213) | def resourceType(self, /) -> QRhiResource.Type: ... method setSize (line 7214) | def setSize(self, sz: int, /) -> None: ... method setType (line 7215) | def setType(self, t: QRhiBuffer.Type, /) -> None: ... method setUsage (line 7216) | def setUsage(self, u: QRhiBuffer.UsageFlag, /) -> None: ... method size (line 7217) | def size(self, /) -> int: ... method type (line 7218) | def type(self, /) -> QRhiBuffer.Type: ... method usage (line 7219) | def usage(self, /) -> QRhiBuffer.UsageFlag: ... class QRhiColorAttachment (line 7221) | class QRhiColorAttachment(shiboken6.Object): method __init__ (line 7223) | def __init__(self, texture: QRhiTexture, /) -> None: ... method __init__ (line 7225) | def __init__(self, renderBuffer: QRhiRenderBuffer, /) -> None: ... method __init__ (line 7227) | def __init__(self, QRhiColorAttachment: QRhiColorAttachment, /) -> Non... method __init__ (line 7229) | def __init__(self, /) -> None: ... method layer (line 7230) | def layer(self, /) -> int: ... method level (line 7231) | def level(self, /) -> int: ... method multiViewCount (line 7232) | def multiViewCount(self, /) -> int: ... method renderBuffer (line 7233) | def renderBuffer(self, /) -> QRhiRenderBuffer: ... method resolveLayer (line 7234) | def resolveLayer(self, /) -> int: ... method resolveLevel (line 7235) | def resolveLevel(self, /) -> int: ... method resolveTexture (line 7236) | def resolveTexture(self, /) -> QRhiTexture: ... method setLayer (line 7237) | def setLayer(self, layer: int, /) -> None: ... method setLevel (line 7238) | def setLevel(self, level: int, /) -> None: ... method setMultiViewCount (line 7239) | def setMultiViewCount(self, count: int, /) -> None: ... method setRenderBuffer (line 7240) | def setRenderBuffer(self, rb: QRhiRenderBuffer, /) -> None: ... method setResolveLayer (line 7241) | def setResolveLayer(self, layer: int, /) -> None: ... method setResolveLevel (line 7242) | def setResolveLevel(self, level: int, /) -> None: ... method setResolveTexture (line 7243) | def setResolveTexture(self, tex: QRhiTexture, /) -> None: ... method setTexture (line 7244) | def setTexture(self, tex: QRhiTexture, /) -> None: ... method texture (line 7245) | def texture(self, /) -> QRhiTexture: ... method __copy__ (line 7246) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiCommandBuffer (line 7248) | class QRhiCommandBuffer(QRhiResource): class BeginPassFlag (line 7249) | class BeginPassFlag(enum.Flag): class IndexFormat (line 7253) | class IndexFormat(enum.Enum): method __init__ (line 7256) | def __init__(self, *args, **kwargs) -> None: ... method beginComputePass (line 7257) | def beginComputePass(self, /, resourceUpdates: QRhiResourceUpdateBatch... method beginExternal (line 7258) | def beginExternal(self, /) -> None: ... method beginPass (line 7259) | def beginPass(self, rt: QRhiRenderTarget, colorClearValue: Union[QColo... method debugMarkBegin (line 7260) | def debugMarkBegin(self, name: PySide6.QtCore.QByteArray | bytes | byt... method debugMarkEnd (line 7261) | def debugMarkEnd(self, /) -> None: ... method debugMarkMsg (line 7262) | def debugMarkMsg(self, msg: PySide6.QtCore.QByteArray | bytes | bytear... method dispatch (line 7263) | def dispatch(self, x: int, y: int, z: int, /) -> None: ... method draw (line 7264) | def draw(self, vertexCount: int, /, instanceCount: int = ..., firstVer... method drawIndexed (line 7265) | def drawIndexed(self, indexCount: int, /, instanceCount: int = ..., fi... method endComputePass (line 7266) | def endComputePass(self, /, resourceUpdates: QRhiResourceUpdateBatch |... method endExternal (line 7267) | def endExternal(self, /) -> None: ... method endPass (line 7268) | def endPass(self, /, resourceUpdates: QRhiResourceUpdateBatch | None =... method lastCompletedGpuTime (line 7269) | def lastCompletedGpuTime(self, /) -> float: ... method nativeHandles (line 7270) | def nativeHandles(self, /) -> QRhiNativeHandles: ... method resourceType (line 7271) | def resourceType(self, /) -> QRhiResource.Type: ... method resourceUpdate (line 7272) | def resourceUpdate(self, resourceUpdates: QRhiResourceUpdateBatch, /) ... method setBlendConstants (line 7273) | def setBlendConstants(self, c: Union[QColor, str, QRgba64, Any, PySide... method setComputePipeline (line 7274) | def setComputePipeline(self, ps: QRhiComputePipeline, /) -> None: ... method setGraphicsPipeline (line 7275) | def setGraphicsPipeline(self, ps: QRhiGraphicsPipeline, /) -> None: ... method setScissor (line 7276) | def setScissor(self, scissor: QRhiScissor, /) -> None: ... method setShaderResources (line 7277) | def setShaderResources(self, /, srb: QRhiShaderResourceBindings | None... method setShadingRate (line 7278) | def setShadingRate(self, coarsePixelSize: PySide6.QtCore.QSize, /) -> ... method setStencilRef (line 7279) | def setStencilRef(self, refValue: int, /) -> None: ... method setVertexInput (line 7280) | def setVertexInput(self, startBinding: int, bindings: typing.Iterable[... method setViewport (line 7281) | def setViewport(self, viewport: QRhiViewport, /) -> None: ... class QRhiComputePipeline (line 7283) | class QRhiComputePipeline(QRhiResource): class Flag (line 7284) | class Flag(enum.Flag): method __init__ (line 7289) | def __init__(self, *args, **kwargs) -> None: ... method create (line 7290) | def create(self, /) -> bool: ... method flags (line 7291) | def flags(self, /) -> QRhiComputePipeline.Flag: ... method resourceType (line 7292) | def resourceType(self, /) -> QRhiResource.Type: ... method setFlags (line 7293) | def setFlags(self, f: QRhiComputePipeline.Flag, /) -> None: ... method setShaderResourceBindings (line 7294) | def setShaderResourceBindings(self, srb: QRhiShaderResourceBindings, /... method setShaderStage (line 7295) | def setShaderStage(self, stage: QRhiShaderStage, /) -> None: ... method shaderResourceBindings (line 7296) | def shaderResourceBindings(self, /) -> QRhiShaderResourceBindings: ... method shaderStage (line 7297) | def shaderStage(self, /) -> QRhiShaderStage: ... class QRhiDepthStencilClearValue (line 7299) | class QRhiDepthStencilClearValue(shiboken6.Object): method __init__ (line 7301) | def __init__(self, d: float, s: int, /) -> None: ... method __init__ (line 7303) | def __init__(self, QRhiDepthStencilClearValue: QRhiDepthStencilClearVa... method __init__ (line 7305) | def __init__(self, /) -> None: ... method depthClearValue (line 7306) | def depthClearValue(self, /) -> float: ... method setDepthClearValue (line 7307) | def setDepthClearValue(self, d: float, /) -> None: ... method setStencilClearValue (line 7308) | def setStencilClearValue(self, s: int, /) -> None: ... method stencilClearValue (line 7309) | def stencilClearValue(self, /) -> int: ... method __copy__ (line 7310) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7311) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7312) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7313) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7314) | def __hash__(self, /) -> int: ... method __le__ (line 7315) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7316) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7317) | def __ne__(self, other: object) -> bool: ... class QRhiDriverInfo (line 7319) | class QRhiDriverInfo(shiboken6.Object): class DeviceType (line 7320) | class DeviceType(enum.Enum): method __init__ (line 7332) | def __init__(self, QRhiDriverInfo: QRhiDriverInfo, /) -> None: ... method __init__ (line 7334) | def __init__(self, /) -> None: ... method __copy__ (line 7335) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiGles2InitParams (line 7337) | class QRhiGles2InitParams(QRhiInitParams): method __init__ (line 7343) | def __init__(self, QRhiGles2InitParams: QRhiGles2InitParams, /) -> Non... method __init__ (line 7345) | def __init__(self, /) -> None: ... method newFallbackSurface (line 7347) | def newFallbackSurface(format: QSurfaceFormat | QSurfaceFormat.FormatO... method __copy__ (line 7348) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiGles2NativeHandles (line 7350) | class QRhiGles2NativeHandles(QRhiNativeHandles): method __init__ (line 7353) | def __init__(self, QRhiGles2NativeHandles: QRhiGles2NativeHandles, /) ... method __init__ (line 7355) | def __init__(self, /) -> None: ... method __copy__ (line 7356) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiGraphicsPipeline (line 7358) | class QRhiGraphicsPipeline(QRhiResource): class BlendFactor (line 7359) | class BlendFactor(enum.Enum): class BlendOp (line 7380) | class BlendOp(enum.Enum): class ColorMaskComponent (line 7387) | class ColorMaskComponent(enum.Flag): class CompareOp (line 7393) | class CompareOp(enum.Enum): class CullMode (line 7403) | class CullMode(enum.Enum): class Flag (line 7408) | class Flag(enum.Flag): class FrontFace (line 7415) | class FrontFace(enum.Enum): class PolygonMode (line 7419) | class PolygonMode(enum.Enum): class StencilOp (line 7423) | class StencilOp(enum.Enum): class StencilOpState (line 7433) | class StencilOpState(shiboken6.Object): method __init__ (line 7439) | def __init__(self, StencilOpState: QRhiGraphicsPipeline.StencilOpSta... method __init__ (line 7441) | def __init__(self, /) -> None: ... method __copy__ (line 7442) | def __copy__(self, /) -> typing_extensions.Self: ... class TargetBlend (line 7444) | class TargetBlend(shiboken6.Object): method __init__ (line 7454) | def __init__(self, TargetBlend: QRhiGraphicsPipeline.TargetBlend, /)... method __init__ (line 7456) | def __init__(self, /) -> None: ... method __copy__ (line 7457) | def __copy__(self, /) -> typing_extensions.Self: ... class Topology (line 7459) | class Topology(enum.Enum): method __init__ (line 7489) | def __init__(self, *args, **kwargs) -> None: ... method cbeginShaderStages (line 7490) | def cbeginShaderStages(self, /) -> QRhiShaderStage: ... method cbeginTargetBlends (line 7491) | def cbeginTargetBlends(self, /) -> QRhiGraphicsPipeline.TargetBlend: ... method cendShaderStages (line 7492) | def cendShaderStages(self, /) -> QRhiShaderStage: ... method cendTargetBlends (line 7493) | def cendTargetBlends(self, /) -> QRhiGraphicsPipeline.TargetBlend: ... method create (line 7494) | def create(self, /) -> bool: ... method cullMode (line 7495) | def cullMode(self, /) -> QRhiGraphicsPipeline.CullMode: ... method depthBias (line 7496) | def depthBias(self, /) -> int: ... method depthOp (line 7497) | def depthOp(self, /) -> QRhiGraphicsPipeline.CompareOp: ... method flags (line 7498) | def flags(self, /) -> QRhiGraphicsPipeline.Flag: ... method frontFace (line 7499) | def frontFace(self, /) -> QRhiGraphicsPipeline.FrontFace: ... method hasDepthTest (line 7500) | def hasDepthTest(self, /) -> bool: ... method hasDepthWrite (line 7501) | def hasDepthWrite(self, /) -> bool: ... method hasStencilTest (line 7502) | def hasStencilTest(self, /) -> bool: ... method lineWidth (line 7503) | def lineWidth(self, /) -> float: ... method multiViewCount (line 7504) | def multiViewCount(self, /) -> int: ... method patchControlPointCount (line 7505) | def patchControlPointCount(self, /) -> int: ... method polygonMode (line 7506) | def polygonMode(self, /) -> QRhiGraphicsPipeline.PolygonMode: ... method renderPassDescriptor (line 7507) | def renderPassDescriptor(self, /) -> QRhiRenderPassDescriptor: ... method resourceType (line 7508) | def resourceType(self, /) -> QRhiResource.Type: ... method sampleCount (line 7509) | def sampleCount(self, /) -> int: ... method setCullMode (line 7510) | def setCullMode(self, mode: QRhiGraphicsPipeline.CullMode, /) -> None:... method setDepthBias (line 7511) | def setDepthBias(self, bias: int, /) -> None: ... method setDepthOp (line 7512) | def setDepthOp(self, op: QRhiGraphicsPipeline.CompareOp, /) -> None: ... method setDepthTest (line 7513) | def setDepthTest(self, enable: bool, /) -> None: ... method setDepthWrite (line 7514) | def setDepthWrite(self, enable: bool, /) -> None: ... method setFlags (line 7515) | def setFlags(self, f: QRhiGraphicsPipeline.Flag, /) -> None: ... method setFrontFace (line 7516) | def setFrontFace(self, f: QRhiGraphicsPipeline.FrontFace, /) -> None: ... method setLineWidth (line 7517) | def setLineWidth(self, width: float, /) -> None: ... method setMultiViewCount (line 7518) | def setMultiViewCount(self, count: int, /) -> None: ... method setPatchControlPointCount (line 7519) | def setPatchControlPointCount(self, count: int, /) -> None: ... method setPolygonMode (line 7520) | def setPolygonMode(self, mode: QRhiGraphicsPipeline.PolygonMode, /) ->... method setRenderPassDescriptor (line 7521) | def setRenderPassDescriptor(self, desc: QRhiRenderPassDescriptor, /) -... method setSampleCount (line 7522) | def setSampleCount(self, s: int, /) -> None: ... method setShaderResourceBindings (line 7523) | def setShaderResourceBindings(self, srb: QRhiShaderResourceBindings, /... method setShaderStages (line 7524) | def setShaderStages(self, stages: typing.Iterable[QRhiShaderStage], /)... method setSlopeScaledDepthBias (line 7525) | def setSlopeScaledDepthBias(self, bias: float, /) -> None: ... method setStencilBack (line 7526) | def setStencilBack(self, state: QRhiGraphicsPipeline.StencilOpState, /... method setStencilFront (line 7527) | def setStencilFront(self, state: QRhiGraphicsPipeline.StencilOpState, ... method setStencilReadMask (line 7528) | def setStencilReadMask(self, mask: int, /) -> None: ... method setStencilTest (line 7529) | def setStencilTest(self, enable: bool, /) -> None: ... method setStencilWriteMask (line 7530) | def setStencilWriteMask(self, mask: int, /) -> None: ... method setTargetBlends (line 7531) | def setTargetBlends(self, blends: typing.Iterable[QRhiGraphicsPipeline... method setTopology (line 7532) | def setTopology(self, t: QRhiGraphicsPipeline.Topology, /) -> None: ... method setVertexInputLayout (line 7533) | def setVertexInputLayout(self, layout: QRhiVertexInputLayout, /) -> No... method shaderResourceBindings (line 7534) | def shaderResourceBindings(self, /) -> QRhiShaderResourceBindings: ... method shaderStageAt (line 7535) | def shaderStageAt(self, index: int, /) -> QRhiShaderStage: ... method shaderStageCount (line 7536) | def shaderStageCount(self, /) -> int: ... method slopeScaledDepthBias (line 7537) | def slopeScaledDepthBias(self, /) -> float: ... method stencilBack (line 7538) | def stencilBack(self, /) -> QRhiGraphicsPipeline.StencilOpState: ... method stencilFront (line 7539) | def stencilFront(self, /) -> QRhiGraphicsPipeline.StencilOpState: ... method stencilReadMask (line 7540) | def stencilReadMask(self, /) -> int: ... method stencilWriteMask (line 7541) | def stencilWriteMask(self, /) -> int: ... method targetBlendAt (line 7542) | def targetBlendAt(self, index: int, /) -> QRhiGraphicsPipeline.TargetB... method targetBlendCount (line 7543) | def targetBlendCount(self, /) -> int: ... method topology (line 7544) | def topology(self, /) -> QRhiGraphicsPipeline.Topology: ... method vertexInputLayout (line 7545) | def vertexInputLayout(self, /) -> QRhiVertexInputLayout: ... class QRhiInitParams (line 7547) | class QRhiInitParams(shiboken6.Object): method __init__ (line 7549) | def __init__(self, QRhiInitParams: QRhiInitParams, /) -> None: ... method __init__ (line 7551) | def __init__(self, /) -> None: ... method __copy__ (line 7552) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiMetalInitParams (line 7554) | class QRhiMetalInitParams(QRhiInitParams): method __init__ (line 7556) | def __init__(self, QRhiMetalInitParams: QRhiMetalInitParams, /) -> Non... method __init__ (line 7558) | def __init__(self, /) -> None: ... method __copy__ (line 7559) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiNativeHandles (line 7561) | class QRhiNativeHandles(shiboken6.Object): method __init__ (line 7563) | def __init__(self, QRhiNativeHandles: QRhiNativeHandles, /) -> None: ... method __init__ (line 7565) | def __init__(self, /) -> None: ... method __copy__ (line 7566) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiNullInitParams (line 7568) | class QRhiNullInitParams(QRhiInitParams): method __init__ (line 7570) | def __init__(self, QRhiNullInitParams: QRhiNullInitParams, /) -> None:... method __init__ (line 7572) | def __init__(self, /) -> None: ... method __copy__ (line 7573) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiReadbackDescription (line 7575) | class QRhiReadbackDescription(shiboken6.Object): method __init__ (line 7577) | def __init__(self, texture: QRhiTexture, /) -> None: ... method __init__ (line 7579) | def __init__(self, QRhiReadbackDescription: QRhiReadbackDescription, /... method __init__ (line 7581) | def __init__(self, /) -> None: ... method layer (line 7582) | def layer(self, /) -> int: ... method level (line 7583) | def level(self, /) -> int: ... method rect (line 7584) | def rect(self, /) -> PySide6.QtCore.QRect: ... method setLayer (line 7585) | def setLayer(self, layer: int, /) -> None: ... method setLevel (line 7586) | def setLevel(self, level: int, /) -> None: ... method setRect (line 7587) | def setRect(self, rectangle: PySide6.QtCore.QRect, /) -> None: ... method setTexture (line 7588) | def setTexture(self, tex: QRhiTexture, /) -> None: ... method texture (line 7589) | def texture(self, /) -> QRhiTexture: ... method __copy__ (line 7590) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiReadbackResult (line 7592) | class QRhiReadbackResult(shiboken6.Object): method __init__ (line 7597) | def __init__(self, QRhiReadbackResult: QRhiReadbackResult, /) -> None:... method __init__ (line 7599) | def __init__(self, /) -> None: ... method __copy__ (line 7600) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiRenderBuffer (line 7602) | class QRhiRenderBuffer(QRhiResource): class Flag (line 7603) | class Flag(enum.Flag): class Type (line 7606) | class Type(enum.Enum): method __init__ (line 7614) | def __init__(self, *args, **kwargs) -> None: ... method backingFormat (line 7615) | def backingFormat(self, /) -> QRhiTexture.Format: ... method create (line 7616) | def create(self, /) -> bool: ... method flags (line 7617) | def flags(self, /) -> QRhiRenderBuffer.Flag: ... method pixelSize (line 7618) | def pixelSize(self, /) -> PySide6.QtCore.QSize: ... method resourceType (line 7619) | def resourceType(self, /) -> QRhiResource.Type: ... method sampleCount (line 7620) | def sampleCount(self, /) -> int: ... method setFlags (line 7621) | def setFlags(self, f: QRhiRenderBuffer.Flag, /) -> None: ... method setPixelSize (line 7622) | def setPixelSize(self, sz: PySide6.QtCore.QSize, /) -> None: ... method setSampleCount (line 7623) | def setSampleCount(self, s: int, /) -> None: ... method setType (line 7624) | def setType(self, t: QRhiRenderBuffer.Type, /) -> None: ... method type (line 7625) | def type(self, /) -> QRhiRenderBuffer.Type: ... class QRhiRenderPassDescriptor (line 7627) | class QRhiRenderPassDescriptor(QRhiResource): method __init__ (line 7628) | def __init__(self, *args, **kwargs) -> None: ... method isCompatible (line 7629) | def isCompatible(self, other: QRhiRenderPassDescriptor, /) -> bool: ... method nativeHandles (line 7630) | def nativeHandles(self, /) -> QRhiNativeHandles: ... method newCompatibleRenderPassDescriptor (line 7631) | def newCompatibleRenderPassDescriptor(self, /) -> QRhiRenderPassDescri... method resourceType (line 7632) | def resourceType(self, /) -> QRhiResource.Type: ... method serializedFormat (line 7633) | def serializedFormat(self, /) -> List[int]: ... class QRhiRenderTarget (line 7635) | class QRhiRenderTarget(QRhiResource): method __init__ (line 7637) | def __init__(self, *args, **kwargs) -> None: ... method devicePixelRatio (line 7638) | def devicePixelRatio(self, /) -> float: ... method pixelSize (line 7639) | def pixelSize(self, /) -> PySide6.QtCore.QSize: ... method renderPassDescriptor (line 7640) | def renderPassDescriptor(self, /) -> QRhiRenderPassDescriptor: ... method sampleCount (line 7641) | def sampleCount(self, /) -> int: ... method setRenderPassDescriptor (line 7642) | def setRenderPassDescriptor(self, desc: QRhiRenderPassDescriptor, /) -... class QRhiResource (line 7644) | class QRhiResource(shiboken6.Object): class Type (line 7645) | class Type(enum.Enum): method __init__ (line 7661) | def __init__(self, *args, **kwargs) -> None: ... method deleteLater (line 7662) | def deleteLater(self, /) -> None: ... method destroy (line 7663) | def destroy(self, /) -> None: ... method globalResourceId (line 7664) | def globalResourceId(self, /) -> int: ... method name (line 7665) | def name(self, /) -> PySide6.QtCore.QByteArray: ... method resourceType (line 7666) | def resourceType(self, /) -> QRhiResource.Type: ... method rhi (line 7667) | def rhi(self, /) -> QRhi: ... method setName (line 7668) | def setName(self, name: PySide6.QtCore.QByteArray | bytes | bytearray ... class QRhiResourceUpdateBatch (line 7670) | class QRhiResourceUpdateBatch(shiboken6.Object): method __init__ (line 7671) | def __init__(self, *args, **kwargs) -> None: ... method copyTexture (line 7672) | def copyTexture(self, dst: QRhiTexture, src: QRhiTexture, /, desc: QRh... method generateMips (line 7673) | def generateMips(self, tex: QRhiTexture, /) -> None: ... method hasOptimalCapacity (line 7674) | def hasOptimalCapacity(self, /) -> bool: ... method merge (line 7675) | def merge(self, other: QRhiResourceUpdateBatch, /) -> None: ... method readBackBuffer (line 7676) | def readBackBuffer(self, buf: QRhiBuffer, offset: int, size: int, resu... method readBackTexture (line 7677) | def readBackTexture(self, rb: QRhiReadbackDescription | QRhiTexture, r... method release (line 7678) | def release(self, /) -> None: ... method updateDynamicBuffer (line 7680) | def updateDynamicBuffer(self, buf: QRhiBuffer, offset: int, size: int,... method updateDynamicBuffer (line 7682) | def updateDynamicBuffer(self, buf: QRhiBuffer, offset: int, data: PySi... method uploadStaticBuffer (line 7684) | def uploadStaticBuffer(self, buf: QRhiBuffer, offset: int, size: int, ... method uploadStaticBuffer (line 7686) | def uploadStaticBuffer(self, buf: QRhiBuffer, offset: int, data: PySid... method uploadStaticBuffer (line 7688) | def uploadStaticBuffer(self, buf: QRhiBuffer, data: PySide6.QtCore.QBy... method uploadStaticBuffer (line 7690) | def uploadStaticBuffer(self, buf: QRhiBuffer, data: int, /) -> None: ... method uploadTexture (line 7692) | def uploadTexture(self, tex: QRhiTexture, image: QImage, /) -> None: ... method uploadTexture (line 7694) | def uploadTexture(self, tex: QRhiTexture, desc: QRhiTextureUploadDescr... class QRhiSampler (line 7696) | class QRhiSampler(QRhiResource): class AddressMode (line 7697) | class AddressMode(enum.Enum): class CompareOp (line 7702) | class CompareOp(enum.Enum): class Filter (line 7712) | class Filter(enum.Enum): method __init__ (line 7723) | def __init__(self, *args, **kwargs) -> None: ... method addressU (line 7724) | def addressU(self, /) -> QRhiSampler.AddressMode: ... method addressV (line 7725) | def addressV(self, /) -> QRhiSampler.AddressMode: ... method addressW (line 7726) | def addressW(self, /) -> QRhiSampler.AddressMode: ... method create (line 7727) | def create(self, /) -> bool: ... method magFilter (line 7728) | def magFilter(self, /) -> QRhiSampler.Filter: ... method minFilter (line 7729) | def minFilter(self, /) -> QRhiSampler.Filter: ... method mipmapMode (line 7730) | def mipmapMode(self, /) -> QRhiSampler.Filter: ... method resourceType (line 7731) | def resourceType(self, /) -> QRhiResource.Type: ... method setAddressU (line 7732) | def setAddressU(self, mode: QRhiSampler.AddressMode, /) -> None: ... method setAddressV (line 7733) | def setAddressV(self, mode: QRhiSampler.AddressMode, /) -> None: ... method setAddressW (line 7734) | def setAddressW(self, mode: QRhiSampler.AddressMode, /) -> None: ... method setMagFilter (line 7735) | def setMagFilter(self, f: QRhiSampler.Filter, /) -> None: ... method setMinFilter (line 7736) | def setMinFilter(self, f: QRhiSampler.Filter, /) -> None: ... method setMipmapMode (line 7737) | def setMipmapMode(self, f: QRhiSampler.Filter, /) -> None: ... method setTextureCompareOp (line 7738) | def setTextureCompareOp(self, op: QRhiSampler.CompareOp, /) -> None: ... method textureCompareOp (line 7739) | def textureCompareOp(self, /) -> QRhiSampler.CompareOp: ... class QRhiScissor (line 7741) | class QRhiScissor(shiboken6.Object): method __init__ (line 7743) | def __init__(self, x: int, y: int, w: int, h: int, /) -> None: ... method __init__ (line 7745) | def __init__(self, QRhiScissor: QRhiScissor, /) -> None: ... method __init__ (line 7747) | def __init__(self, /) -> None: ... method scissor (line 7748) | def scissor(self, /) -> List[int]: ... method setScissor (line 7749) | def setScissor(self, x: int, y: int, w: int, h: int, /) -> None: ... method __copy__ (line 7750) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7751) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7752) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7753) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7754) | def __hash__(self, /) -> int: ... method __le__ (line 7755) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7756) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7757) | def __ne__(self, other: object) -> bool: ... class QRhiShaderResourceBinding (line 7759) | class QRhiShaderResourceBinding(shiboken6.Object): class Data (line 7760) | class Data(shiboken6.Object): class StorageBufferData (line 7761) | class StorageBufferData(shiboken6.Object): method __init__ (line 7766) | def __init__(self, StorageBufferData: QRhiShaderResourceBinding.Da... method __init__ (line 7768) | def __init__(self, /) -> None: ... method __copy__ (line 7769) | def __copy__(self, /) -> typing_extensions.Self: ... class StorageImageData (line 7771) | class StorageImageData(shiboken6.Object): method __init__ (line 7775) | def __init__(self, StorageImageData: QRhiShaderResourceBinding.Dat... method __init__ (line 7777) | def __init__(self, /) -> None: ... method __copy__ (line 7778) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 7784) | def __init__(self, Data: QRhiShaderResourceBinding.Data, /) -> None:... method __init__ (line 7786) | def __init__(self, /) -> None: ... method arraySize (line 7787) | def arraySize(self, /) -> int: ... method __copy__ (line 7788) | def __copy__(self, /) -> typing_extensions.Self: ... class StageFlag (line 7790) | class StageFlag(enum.Flag): class TextureAndSampler (line 7798) | class TextureAndSampler(shiboken6.Object): method __init__ (line 7802) | def __init__(self, TextureAndSampler: QRhiShaderResourceBinding.Text... method __init__ (line 7804) | def __init__(self, /) -> None: ... method __copy__ (line 7805) | def __copy__(self, /) -> typing_extensions.Self: ... class Type (line 7807) | class Type(enum.Enum): method __init__ (line 7820) | def __init__(self, QRhiShaderResourceBinding: QRhiShaderResourceBindin... method __init__ (line 7822) | def __init__(self, /) -> None: ... method bufferLoad (line 7825) | def bufferLoad(binding: int, stage: QRhiShaderResourceBinding.StageFla... method bufferLoad (line 7828) | def bufferLoad(binding: int, stage: QRhiShaderResourceBinding.StageFla... method bufferLoadStore (line 7831) | def bufferLoadStore(binding: int, stage: QRhiShaderResourceBinding.Sta... method bufferLoadStore (line 7834) | def bufferLoadStore(binding: int, stage: QRhiShaderResourceBinding.Sta... method bufferStore (line 7837) | def bufferStore(binding: int, stage: QRhiShaderResourceBinding.StageFl... method bufferStore (line 7840) | def bufferStore(binding: int, stage: QRhiShaderResourceBinding.StageFl... method imageLoad (line 7842) | def imageLoad(binding: int, stage: QRhiShaderResourceBinding.StageFlag... method imageLoadStore (line 7844) | def imageLoadStore(binding: int, stage: QRhiShaderResourceBinding.Stag... method imageStore (line 7846) | def imageStore(binding: int, stage: QRhiShaderResourceBinding.StageFla... method isLayoutCompatible (line 7847) | def isLayoutCompatible(self, other: QRhiShaderResourceBinding, /) -> b... method sampledTexture (line 7849) | def sampledTexture(binding: int, stage: QRhiShaderResourceBinding.Stag... method sampledTextures (line 7851) | def sampledTextures(binding: int, stage: QRhiShaderResourceBinding.Sta... method sampler (line 7853) | def sampler(binding: int, stage: QRhiShaderResourceBinding.StageFlag, ... method texture (line 7855) | def texture(binding: int, stage: QRhiShaderResourceBinding.StageFlag, ... method textures (line 7857) | def textures(binding: int, stage: QRhiShaderResourceBinding.StageFlag,... method uniformBuffer (line 7860) | def uniformBuffer(binding: int, stage: QRhiShaderResourceBinding.Stage... method uniformBuffer (line 7863) | def uniformBuffer(binding: int, stage: QRhiShaderResourceBinding.Stage... method uniformBufferWithDynamicOffset (line 7865) | def uniformBufferWithDynamicOffset(binding: int, stage: QRhiShaderReso... method __copy__ (line 7866) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7867) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7868) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7869) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7870) | def __hash__(self, /) -> int: ... method __le__ (line 7871) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7872) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7873) | def __ne__(self, other: object) -> bool: ... class QRhiShaderResourceBindings (line 7875) | class QRhiShaderResourceBindings(QRhiResource): class UpdateFlag (line 7876) | class UpdateFlag(enum.Flag): method __init__ (line 7880) | def __init__(self, *args, **kwargs) -> None: ... method bindingAt (line 7881) | def bindingAt(self, index: int, /) -> QRhiShaderResourceBinding: ... method bindingCount (line 7882) | def bindingCount(self, /) -> int: ... method cbeginBindings (line 7883) | def cbeginBindings(self, /) -> QRhiShaderResourceBinding: ... method cendBindings (line 7884) | def cendBindings(self, /) -> QRhiShaderResourceBinding: ... method create (line 7885) | def create(self, /) -> bool: ... method isLayoutCompatible (line 7886) | def isLayoutCompatible(self, other: QRhiShaderResourceBindings, /) -> ... method resourceType (line 7887) | def resourceType(self, /) -> QRhiResource.Type: ... method serializedLayoutDescription (line 7888) | def serializedLayoutDescription(self, /) -> List[int]: ... method setBindings (line 7889) | def setBindings(self, bindings: typing.Iterable[QRhiShaderResourceBind... method updateResources (line 7890) | def updateResources(self, /, flags: QRhiShaderResourceBindings.UpdateF... class QRhiShaderStage (line 7892) | class QRhiShaderStage(shiboken6.Object): class Type (line 7893) | class Type(enum.Enum): method __init__ (line 7901) | def __init__(self, type: QRhiShaderStage.Type, shader: QShader, /, v: ... method __init__ (line 7903) | def __init__(self, QRhiShaderStage: QRhiShaderStage, /) -> None: ... method __init__ (line 7905) | def __init__(self, /) -> None: ... method setShader (line 7906) | def setShader(self, s: QShader, /) -> None: ... method setShaderVariant (line 7907) | def setShaderVariant(self, v: QShader.Variant, /) -> None: ... method setType (line 7908) | def setType(self, t: QRhiShaderStage.Type, /) -> None: ... method shader (line 7909) | def shader(self, /) -> QShader: ... method shaderVariant (line 7910) | def shaderVariant(self, /) -> QShader.Variant: ... method type (line 7911) | def type(self, /) -> QRhiShaderStage.Type: ... method __copy__ (line 7912) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7913) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7914) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7915) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 7916) | def __hash__(self, /) -> int: ... method __le__ (line 7917) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7918) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7919) | def __ne__(self, other: object) -> bool: ... class QRhiStats (line 7921) | class QRhiStats(shiboken6.Object): method __init__ (line 7929) | def __init__(self, QRhiStats: QRhiStats, /) -> None: ... method __init__ (line 7931) | def __init__(self, /) -> None: ... method __copy__ (line 7932) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiSwapChain (line 7934) | class QRhiSwapChain(QRhiResource): class Flag (line 7935) | class Flag(enum.Flag): class Format (line 7943) | class Format(enum.Enum): class StereoTargetBuffer (line 7949) | class StereoTargetBuffer(enum.Enum): method __init__ (line 7959) | def __init__(self, *args, **kwargs) -> None: ... method createOrResize (line 7960) | def createOrResize(self, /) -> bool: ... method currentFrameCommandBuffer (line 7961) | def currentFrameCommandBuffer(self, /) -> QRhiCommandBuffer: ... method currentFrameRenderTarget (line 7963) | def currentFrameRenderTarget(self, targetBuffer: QRhiSwapChain.StereoT... method currentFrameRenderTarget (line 7965) | def currentFrameRenderTarget(self, /) -> QRhiRenderTarget: ... method currentPixelSize (line 7966) | def currentPixelSize(self, /) -> PySide6.QtCore.QSize: ... method depthStencil (line 7967) | def depthStencil(self, /) -> QRhiRenderBuffer: ... method flags (line 7968) | def flags(self, /) -> QRhiSwapChain.Flag: ... method format (line 7969) | def format(self, /) -> QRhiSwapChain.Format: ... method isFormatSupported (line 7970) | def isFormatSupported(self, f: QRhiSwapChain.Format, /) -> bool: ... method newCompatibleRenderPassDescriptor (line 7971) | def newCompatibleRenderPassDescriptor(self, /) -> QRhiRenderPassDescri... method renderPassDescriptor (line 7972) | def renderPassDescriptor(self, /) -> QRhiRenderPassDescriptor: ... method resourceType (line 7973) | def resourceType(self, /) -> QRhiResource.Type: ... method sampleCount (line 7974) | def sampleCount(self, /) -> int: ... method setDepthStencil (line 7975) | def setDepthStencil(self, ds: QRhiRenderBuffer, /) -> None: ... method setFlags (line 7976) | def setFlags(self, f: QRhiSwapChain.Flag, /) -> None: ... method setFormat (line 7977) | def setFormat(self, f: QRhiSwapChain.Format, /) -> None: ... method setRenderPassDescriptor (line 7978) | def setRenderPassDescriptor(self, desc: QRhiRenderPassDescriptor, /) -... method setSampleCount (line 7979) | def setSampleCount(self, samples: int, /) -> None: ... method setWindow (line 7980) | def setWindow(self, window: QWindow, /) -> None: ... method surfacePixelSize (line 7981) | def surfacePixelSize(self, /) -> PySide6.QtCore.QSize: ... method window (line 7982) | def window(self, /) -> QWindow: ... class QRhiSwapChainRenderTarget (line 7984) | class QRhiSwapChainRenderTarget(QRhiRenderTarget): method __init__ (line 7986) | def __init__(self, *args, **kwargs) -> None: ... method resourceType (line 7987) | def resourceType(self, /) -> QRhiResource.Type: ... method swapChain (line 7988) | def swapChain(self, /) -> QRhiSwapChain: ... class QRhiTexture (line 7990) | class QRhiTexture(QRhiResource): class Flag (line 7991) | class Flag(enum.Flag): class Format (line 8007) | class Format(enum.Enum): class ViewFormat (line 8059) | class ViewFormat(shiboken6.Object): method __init__ (line 8063) | def __init__(self, ViewFormat: QRhiTexture.ViewFormat, /) -> None: ... method __init__ (line 8065) | def __init__(self, /) -> None: ... method __copy__ (line 8066) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 8077) | def __init__(self, *args, **kwargs) -> None: ... method arrayRangeLength (line 8078) | def arrayRangeLength(self, /) -> int: ... method arrayRangeStart (line 8079) | def arrayRangeStart(self, /) -> int: ... method arraySize (line 8080) | def arraySize(self, /) -> int: ... method create (line 8081) | def create(self, /) -> bool: ... method depth (line 8082) | def depth(self, /) -> int: ... method flags (line 8083) | def flags(self, /) -> QRhiTexture.Flag: ... method format (line 8084) | def format(self, /) -> QRhiTexture.Format: ... method pixelSize (line 8085) | def pixelSize(self, /) -> PySide6.QtCore.QSize: ... method readViewFormat (line 8086) | def readViewFormat(self, /) -> QRhiTexture.ViewFormat: ... method resourceType (line 8087) | def resourceType(self, /) -> QRhiResource.Type: ... method sampleCount (line 8088) | def sampleCount(self, /) -> int: ... method setArrayRange (line 8089) | def setArrayRange(self, startIndex: int, count: int, /) -> None: ... method setArraySize (line 8090) | def setArraySize(self, arraySize: int, /) -> None: ... method setDepth (line 8091) | def setDepth(self, depth: int, /) -> None: ... method setFlags (line 8092) | def setFlags(self, f: QRhiTexture.Flag, /) -> None: ... method setFormat (line 8093) | def setFormat(self, fmt: QRhiTexture.Format, /) -> None: ... method setNativeLayout (line 8094) | def setNativeLayout(self, layout: int, /) -> None: ... method setPixelSize (line 8095) | def setPixelSize(self, sz: PySide6.QtCore.QSize, /) -> None: ... method setReadViewFormat (line 8096) | def setReadViewFormat(self, fmt: QRhiTexture.ViewFormat, /) -> None: ... method setSampleCount (line 8097) | def setSampleCount(self, s: int, /) -> None: ... method setWriteViewFormat (line 8098) | def setWriteViewFormat(self, fmt: QRhiTexture.ViewFormat, /) -> None: ... method writeViewFormat (line 8099) | def writeViewFormat(self, /) -> QRhiTexture.ViewFormat: ... class QRhiTextureCopyDescription (line 8101) | class QRhiTextureCopyDescription(shiboken6.Object): method __init__ (line 8103) | def __init__(self, QRhiTextureCopyDescription: QRhiTextureCopyDescript... method __init__ (line 8105) | def __init__(self, /) -> None: ... method destinationLayer (line 8106) | def destinationLayer(self, /) -> int: ... method destinationLevel (line 8107) | def destinationLevel(self, /) -> int: ... method destinationTopLeft (line 8108) | def destinationTopLeft(self, /) -> PySide6.QtCore.QPoint: ... method pixelSize (line 8109) | def pixelSize(self, /) -> PySide6.QtCore.QSize: ... method setDestinationLayer (line 8110) | def setDestinationLayer(self, layer: int, /) -> None: ... method setDestinationLevel (line 8111) | def setDestinationLevel(self, level: int, /) -> None: ... method setDestinationTopLeft (line 8112) | def setDestinationTopLeft(self, p: PySide6.QtCore.QPoint, /) -> None: ... method setPixelSize (line 8113) | def setPixelSize(self, sz: PySide6.QtCore.QSize, /) -> None: ... method setSourceLayer (line 8114) | def setSourceLayer(self, layer: int, /) -> None: ... method setSourceLevel (line 8115) | def setSourceLevel(self, level: int, /) -> None: ... method setSourceTopLeft (line 8116) | def setSourceTopLeft(self, p: PySide6.QtCore.QPoint, /) -> None: ... method sourceLayer (line 8117) | def sourceLayer(self, /) -> int: ... method sourceLevel (line 8118) | def sourceLevel(self, /) -> int: ... method sourceTopLeft (line 8119) | def sourceTopLeft(self, /) -> PySide6.QtCore.QPoint: ... method __copy__ (line 8120) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiTextureRenderTarget (line 8122) | class QRhiTextureRenderTarget(QRhiRenderTarget): class Flag (line 8123) | class Flag(enum.Flag): method __init__ (line 8129) | def __init__(self, *args, **kwargs) -> None: ... method create (line 8130) | def create(self, /) -> bool: ... method description (line 8131) | def description(self, /) -> QRhiTextureRenderTargetDescription: ... method flags (line 8132) | def flags(self, /) -> QRhiTextureRenderTarget.Flag: ... method newCompatibleRenderPassDescriptor (line 8133) | def newCompatibleRenderPassDescriptor(self, /) -> QRhiRenderPassDescri... method resourceType (line 8134) | def resourceType(self, /) -> QRhiResource.Type: ... method setDescription (line 8135) | def setDescription(self, desc: QRhiTextureRenderTargetDescription | QR... method setFlags (line 8136) | def setFlags(self, f: QRhiTextureRenderTarget.Flag, /) -> None: ... class QRhiTextureRenderTargetDescription (line 8138) | class QRhiTextureRenderTargetDescription(shiboken6.Object): method __init__ (line 8140) | def __init__(self, colorAttachment: QRhiColorAttachment | QRhiRenderBu... method __init__ (line 8142) | def __init__(self, colorAttachment: QRhiColorAttachment | QRhiRenderBu... method __init__ (line 8144) | def __init__(self, colorAttachment: QRhiColorAttachment | QRhiRenderBu... method __init__ (line 8146) | def __init__(self, QRhiTextureRenderTargetDescription: QRhiTextureRend... method __init__ (line 8148) | def __init__(self, /) -> None: ... method cbeginColorAttachments (line 8149) | def cbeginColorAttachments(self, /) -> QRhiColorAttachment: ... method cendColorAttachments (line 8150) | def cendColorAttachments(self, /) -> QRhiColorAttachment: ... method colorAttachmentAt (line 8151) | def colorAttachmentAt(self, index: int, /) -> QRhiColorAttachment: ... method colorAttachmentCount (line 8152) | def colorAttachmentCount(self, /) -> int: ... method depthResolveTexture (line 8153) | def depthResolveTexture(self, /) -> QRhiTexture: ... method depthStencilBuffer (line 8154) | def depthStencilBuffer(self, /) -> QRhiRenderBuffer: ... method depthTexture (line 8155) | def depthTexture(self, /) -> QRhiTexture: ... method setColorAttachments (line 8156) | def setColorAttachments(self, bcolor_attachments: typing.Iterable[QRhi... method setDepthResolveTexture (line 8157) | def setDepthResolveTexture(self, tex: QRhiTexture, /) -> None: ... method setDepthStencilBuffer (line 8158) | def setDepthStencilBuffer(self, renderBuffer: QRhiRenderBuffer, /) -> ... method setDepthTexture (line 8159) | def setDepthTexture(self, texture: QRhiTexture, /) -> None: ... method __copy__ (line 8160) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiTextureSubresourceUploadDescription (line 8162) | class QRhiTextureSubresourceUploadDescription(shiboken6.Object): method __init__ (line 8164) | def __init__(self, data: int, size: int, /) -> None: ... method __init__ (line 8166) | def __init__(self, image: QImage, /) -> None: ... method __init__ (line 8168) | def __init__(self, data: PySide6.QtCore.QByteArray | bytes | bytearray... method __init__ (line 8170) | def __init__(self, QRhiTextureSubresourceUploadDescription: QRhiTextur... method __init__ (line 8172) | def __init__(self, /) -> None: ... method data (line 8173) | def data(self, /) -> PySide6.QtCore.QByteArray: ... method dataStride (line 8174) | def dataStride(self, /) -> int: ... method destinationTopLeft (line 8175) | def destinationTopLeft(self, /) -> PySide6.QtCore.QPoint: ... method image (line 8176) | def image(self, /) -> QImage: ... method setData (line 8177) | def setData(self, data: PySide6.QtCore.QByteArray | bytes | bytearray ... method setDataStride (line 8178) | def setDataStride(self, stride: int, /) -> None: ... method setDestinationTopLeft (line 8179) | def setDestinationTopLeft(self, p: PySide6.QtCore.QPoint, /) -> None: ... method setImage (line 8180) | def setImage(self, image: QImage, /) -> None: ... method setSourceSize (line 8181) | def setSourceSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setSourceTopLeft (line 8182) | def setSourceTopLeft(self, p: PySide6.QtCore.QPoint, /) -> None: ... method sourceSize (line 8183) | def sourceSize(self, /) -> PySide6.QtCore.QSize: ... method sourceTopLeft (line 8184) | def sourceTopLeft(self, /) -> PySide6.QtCore.QPoint: ... method __copy__ (line 8185) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiTextureUploadDescription (line 8187) | class QRhiTextureUploadDescription(shiboken6.Object): method __init__ (line 8189) | def __init__(self, entry: QRhiTextureUploadEntry, /) -> None: ... method __init__ (line 8191) | def __init__(self, QRhiTextureUploadDescription: QRhiTextureUploadDesc... method __init__ (line 8193) | def __init__(self, /) -> None: ... method cbeginEntries (line 8194) | def cbeginEntries(self, /) -> QRhiTextureUploadEntry: ... method cendEntries (line 8195) | def cendEntries(self, /) -> QRhiTextureUploadEntry: ... method entryAt (line 8196) | def entryAt(self, index: int, /) -> QRhiTextureUploadEntry: ... method entryCount (line 8197) | def entryCount(self, /) -> int: ... method setEntries (line 8198) | def setEntries(self, entries: typing.Iterable[QRhiTextureUploadEntry],... method __copy__ (line 8199) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiTextureUploadEntry (line 8201) | class QRhiTextureUploadEntry(shiboken6.Object): method __init__ (line 8203) | def __init__(self, layer: int, level: int, desc: QRhiTextureSubresourc... method __init__ (line 8205) | def __init__(self, QRhiTextureUploadEntry: QRhiTextureUploadEntry, /) ... method __init__ (line 8207) | def __init__(self, /) -> None: ... method description (line 8208) | def description(self, /) -> QRhiTextureSubresourceUploadDescription: ... method layer (line 8209) | def layer(self, /) -> int: ... method level (line 8210) | def level(self, /) -> int: ... method setDescription (line 8211) | def setDescription(self, desc: QRhiTextureSubresourceUploadDescription... method setLayer (line 8212) | def setLayer(self, layer: int, /) -> None: ... method setLevel (line 8213) | def setLevel(self, level: int, /) -> None: ... method __copy__ (line 8214) | def __copy__(self, /) -> typing_extensions.Self: ... class QRhiVertexInputAttribute (line 8216) | class QRhiVertexInputAttribute(shiboken6.Object): class Format (line 8217) | class Format(enum.Enum): method __init__ (line 8246) | def __init__(self, binding: int, location: int, format: QRhiVertexInpu... method __init__ (line 8248) | def __init__(self, QRhiVertexInputAttribute: QRhiVertexInputAttribute,... method __init__ (line 8250) | def __init__(self, /) -> None: ... method binding (line 8251) | def binding(self, /) -> int: ... method format (line 8252) | def format(self, /) -> QRhiVertexInputAttribute.Format: ... method location (line 8253) | def location(self, /) -> int: ... method matrixSlice (line 8254) | def matrixSlice(self, /) -> int: ... method offset (line 8255) | def offset(self, /) -> int: ... method setBinding (line 8256) | def setBinding(self, b: int, /) -> None: ... method setFormat (line 8257) | def setFormat(self, f: QRhiVertexInputAttribute.Format, /) -> None: ... method setLocation (line 8258) | def setLocation(self, loc: int, /) -> None: ... method setMatrixSlice (line 8259) | def setMatrixSlice(self, slice: int, /) -> None: ... method setOffset (line 8260) | def setOffset(self, ofs: int, /) -> None: ... method __copy__ (line 8261) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8262) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8263) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8264) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8265) | def __hash__(self, /) -> int: ... method __le__ (line 8266) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8267) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8268) | def __ne__(self, other: object) -> bool: ... class QRhiVertexInputBinding (line 8270) | class QRhiVertexInputBinding(shiboken6.Object): class Classification (line 8271) | class Classification(enum.Enum): method __init__ (line 8275) | def __init__(self, stride: int, /, cls: QRhiVertexInputBinding.Classif... method __init__ (line 8277) | def __init__(self, QRhiVertexInputBinding: QRhiVertexInputBinding, /) ... method __init__ (line 8279) | def __init__(self, /) -> None: ... method classification (line 8280) | def classification(self, /) -> QRhiVertexInputBinding.Classification: ... method instanceStepRate (line 8281) | def instanceStepRate(self, /) -> int: ... method setClassification (line 8282) | def setClassification(self, c: QRhiVertexInputBinding.Classification, ... method setInstanceStepRate (line 8283) | def setInstanceStepRate(self, rate: int, /) -> None: ... method setStride (line 8284) | def setStride(self, s: int, /) -> None: ... method stride (line 8285) | def stride(self, /) -> int: ... method __copy__ (line 8286) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8287) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8288) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8289) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8290) | def __hash__(self, /) -> int: ... method __le__ (line 8291) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8292) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8293) | def __ne__(self, other: object) -> bool: ... class QRhiVertexInputLayout (line 8295) | class QRhiVertexInputLayout(shiboken6.Object): method __init__ (line 8297) | def __init__(self, QRhiVertexInputLayout: QRhiVertexInputLayout, /) ->... method __init__ (line 8299) | def __init__(self, /) -> None: ... method attributeAt (line 8300) | def attributeAt(self, index: int, /) -> QRhiVertexInputAttribute: ... method attributeCount (line 8301) | def attributeCount(self, /) -> int: ... method bindingAt (line 8302) | def bindingAt(self, index: int, /) -> QRhiVertexInputBinding: ... method bindingCount (line 8303) | def bindingCount(self, /) -> int: ... method cbeginAttributes (line 8304) | def cbeginAttributes(self, /) -> QRhiVertexInputAttribute: ... method cbeginBindings (line 8305) | def cbeginBindings(self, /) -> QRhiVertexInputBinding: ... method cendAttributes (line 8306) | def cendAttributes(self, /) -> QRhiVertexInputAttribute: ... method cendBindings (line 8307) | def cendBindings(self, /) -> QRhiVertexInputBinding: ... method setAttributes (line 8308) | def setAttributes(self, attributes: typing.Iterable[QRhiVertexInputAtt... method setBindings (line 8309) | def setBindings(self, bindings: typing.Iterable[QRhiVertexInputBinding... method __copy__ (line 8310) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8311) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8312) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8313) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8314) | def __hash__(self, /) -> int: ... method __le__ (line 8315) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8316) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8317) | def __ne__(self, other: object) -> bool: ... class QRhiViewport (line 8319) | class QRhiViewport(shiboken6.Object): method __init__ (line 8321) | def __init__(self, x: float, y: float, w: float, h: float, /, minDepth... method __init__ (line 8323) | def __init__(self, QRhiViewport: QRhiViewport, /) -> None: ... method __init__ (line 8325) | def __init__(self, /) -> None: ... method maxDepth (line 8326) | def maxDepth(self, /) -> float: ... method minDepth (line 8327) | def minDepth(self, /) -> float: ... method setMaxDepth (line 8328) | def setMaxDepth(self, maxDepth: float, /) -> None: ... method setMinDepth (line 8329) | def setMinDepth(self, minDepth: float, /) -> None: ... method setViewport (line 8330) | def setViewport(self, x: float, y: float, w: float, h: float, /) -> No... method viewport (line 8331) | def viewport(self, /) -> List[float]: ... method __copy__ (line 8332) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8333) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8334) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8335) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8336) | def __hash__(self, /) -> int: ... method __le__ (line 8337) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8338) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8339) | def __ne__(self, other: object) -> bool: ... class QScreen (line 8341) | class QScreen(PySide6.QtCore.QObject): method __init__ (line 8352) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method angleBetween (line 8353) | def angleBetween(self, a: PySide6.QtCore.Qt.ScreenOrientation, b: PySi... method availableGeometry (line 8354) | def availableGeometry(self, /) -> PySide6.QtCore.QRect: ... method availableSize (line 8355) | def availableSize(self, /) -> PySide6.QtCore.QSize: ... method availableVirtualGeometry (line 8356) | def availableVirtualGeometry(self, /) -> PySide6.QtCore.QRect: ... method availableVirtualSize (line 8357) | def availableVirtualSize(self, /) -> PySide6.QtCore.QSize: ... method depth (line 8358) | def depth(self, /) -> int: ... method devicePixelRatio (line 8359) | def devicePixelRatio(self, /) -> float: ... method geometry (line 8360) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method grabWindow (line 8361) | def grabWindow(self, /, window: int | None = ..., x: int | None = ...,... method isLandscape (line 8362) | def isLandscape(self, orientation: PySide6.QtCore.Qt.ScreenOrientation... method isPortrait (line 8363) | def isPortrait(self, orientation: PySide6.QtCore.Qt.ScreenOrientation,... method logicalDotsPerInch (line 8364) | def logicalDotsPerInch(self, /) -> float: ... method logicalDotsPerInchX (line 8365) | def logicalDotsPerInchX(self, /) -> float: ... method logicalDotsPerInchY (line 8366) | def logicalDotsPerInchY(self, /) -> float: ... method manufacturer (line 8367) | def manufacturer(self, /) -> str: ... method mapBetween (line 8368) | def mapBetween(self, a: PySide6.QtCore.Qt.ScreenOrientation, b: PySide... method model (line 8369) | def model(self, /) -> str: ... method name (line 8370) | def name(self, /) -> str: ... method nativeInterface (line 8371) | def nativeInterface(self, /) -> typing.Any: ... method nativeOrientation (line 8372) | def nativeOrientation(self, /) -> PySide6.QtCore.Qt.ScreenOrientation:... method orientation (line 8373) | def orientation(self, /) -> PySide6.QtCore.Qt.ScreenOrientation: ... method physicalDotsPerInch (line 8374) | def physicalDotsPerInch(self, /) -> float: ... method physicalDotsPerInchX (line 8375) | def physicalDotsPerInchX(self, /) -> float: ... method physicalDotsPerInchY (line 8376) | def physicalDotsPerInchY(self, /) -> float: ... method physicalSize (line 8377) | def physicalSize(self, /) -> PySide6.QtCore.QSizeF: ... method primaryOrientation (line 8378) | def primaryOrientation(self, /) -> PySide6.QtCore.Qt.ScreenOrientation... method refreshRate (line 8379) | def refreshRate(self, /) -> float: ... method resolveInterface (line 8380) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method serialNumber (line 8381) | def serialNumber(self, /) -> str: ... method size (line 8382) | def size(self, /) -> PySide6.QtCore.QSize: ... method transformBetween (line 8383) | def transformBetween(self, a: PySide6.QtCore.Qt.ScreenOrientation, b: ... method virtualGeometry (line 8384) | def virtualGeometry(self, /) -> PySide6.QtCore.QRect: ... method virtualSiblingAt (line 8385) | def virtualSiblingAt(self, point: PySide6.QtCore.QPoint, /) -> QScreen... method virtualSiblings (line 8386) | def virtualSiblings(self, /) -> List[QScreen]: ... method virtualSize (line 8387) | def virtualSize(self, /) -> PySide6.QtCore.QSize: ... class QScrollEvent (line 8389) | class QScrollEvent(PySide6.QtCore.QEvent): class ScrollState (line 8390) | class ScrollState(enum.Enum): method __init__ (line 8395) | def __init__(self, contentPos: PySide6.QtCore.QPointF | PySide6.QtCore... method __init__ (line 8397) | def __init__(self, arg__1: QScrollEvent, /) -> None: ... method clone (line 8398) | def clone(self, /) -> QScrollEvent: ... method contentPos (line 8399) | def contentPos(self, /) -> PySide6.QtCore.QPointF: ... method overshootDistance (line 8400) | def overshootDistance(self, /) -> PySide6.QtCore.QPointF: ... method scrollState (line 8401) | def scrollState(self, /) -> QScrollEvent.ScrollState: ... class QScrollPrepareEvent (line 8403) | class QScrollPrepareEvent(PySide6.QtCore.QEvent): method __init__ (line 8405) | def __init__(self, startPos: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method __init__ (line 8407) | def __init__(self, arg__1: QScrollPrepareEvent, /) -> None: ... method clone (line 8408) | def clone(self, /) -> QScrollPrepareEvent: ... method contentPos (line 8409) | def contentPos(self, /) -> PySide6.QtCore.QPointF: ... method contentPosRange (line 8410) | def contentPosRange(self, /) -> PySide6.QtCore.QRectF: ... method setContentPos (line 8411) | def setContentPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method setContentPosRange (line 8412) | def setContentPosRange(self, rect: PySide6.QtCore.QRectF | PySide6.QtC... method setViewportSize (line 8413) | def setViewportSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore... method startPos (line 8414) | def startPos(self, /) -> PySide6.QtCore.QPointF: ... method viewportSize (line 8415) | def viewportSize(self, /) -> PySide6.QtCore.QSizeF: ... class QSessionManager (line 8417) | class QSessionManager(PySide6.QtCore.QObject): class RestartHint (line 8418) | class RestartHint(enum.Enum): method __init__ (line 8424) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method allowsErrorInteraction (line 8425) | def allowsErrorInteraction(self, /) -> bool: ... method allowsInteraction (line 8426) | def allowsInteraction(self, /) -> bool: ... method cancel (line 8427) | def cancel(self, /) -> None: ... method discardCommand (line 8428) | def discardCommand(self, /) -> List[str]: ... method isPhase2 (line 8429) | def isPhase2(self, /) -> bool: ... method release (line 8430) | def release(self, /) -> None: ... method requestPhase2 (line 8431) | def requestPhase2(self, /) -> None: ... method restartCommand (line 8432) | def restartCommand(self, /) -> List[str]: ... method restartHint (line 8433) | def restartHint(self, /) -> QSessionManager.RestartHint: ... method sessionId (line 8434) | def sessionId(self, /) -> str: ... method sessionKey (line 8435) | def sessionKey(self, /) -> str: ... method setDiscardCommand (line 8436) | def setDiscardCommand(self, arg__1: typing.Iterable[str], /) -> None: ... method setManagerProperty (line 8438) | def setManagerProperty(self, name: str, value: str, /) -> None: ... method setManagerProperty (line 8440) | def setManagerProperty(self, name: str, value: typing.Iterable[str], /... method setRestartCommand (line 8441) | def setRestartCommand(self, arg__1: typing.Iterable[str], /) -> None: ... method setRestartHint (line 8442) | def setRestartHint(self, arg__1: QSessionManager.RestartHint, /) -> No... class QShader (line 8444) | class QShader(shiboken6.Object): class SerializedFormatVersion (line 8445) | class SerializedFormatVersion(enum.Enum): class Source (line 8450) | class Source(enum.Enum): class Stage (line 8460) | class Stage(enum.Enum): class Variant (line 8468) | class Variant(enum.Enum): method __init__ (line 8476) | def __init__(self, other: QShader, /) -> None: ... method __init__ (line 8478) | def __init__(self, /) -> None: ... method availableShaders (line 8479) | def availableShaders(self, /) -> List[QShaderKey]: ... method fromSerialized (line 8481) | def fromSerialized(data: PySide6.QtCore.QByteArray | bytes | bytearray... method isValid (line 8482) | def isValid(self, /) -> bool: ... method nativeResourceBindingMap (line 8483) | def nativeResourceBindingMap(self, key: QShaderKey, /) -> Dict[int, Tu... method removeNativeShaderInfo (line 8484) | def removeNativeShaderInfo(self, key: QShaderKey, /) -> None: ... method removeResourceBindingMap (line 8485) | def removeResourceBindingMap(self, key: QShaderKey, /) -> None: ... method removeSeparateToCombinedImageSamplerMappingList (line 8486) | def removeSeparateToCombinedImageSamplerMappingList(self, key: QShader... method removeShader (line 8487) | def removeShader(self, key: QShaderKey, /) -> None: ... method serialized (line 8488) | def serialized(self, /, version: QShader.SerializedFormatVersion = ...... method setResourceBindingMap (line 8489) | def setResourceBindingMap(self, key: QShaderKey, map: Dict[int, Tuple[... method setShader (line 8490) | def setShader(self, key: QShaderKey, shader: QShaderCode | PySide6.QtC... method setStage (line 8491) | def setStage(self, stage: QShader.Stage, /) -> None: ... method shader (line 8492) | def shader(self, key: QShaderKey, /) -> QShaderCode: ... method stage (line 8493) | def stage(self, /) -> QShader.Stage: ... method swap (line 8494) | def swap(self, other: QShader, /) -> None: ... method __copy__ (line 8495) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8496) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8497) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8498) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8499) | def __hash__(self, /) -> int: ... method __le__ (line 8500) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8501) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8502) | def __ne__(self, other: object) -> bool: ... class QShaderCode (line 8504) | class QShaderCode(shiboken6.Object): method __init__ (line 8506) | def __init__(self, code: PySide6.QtCore.QByteArray | bytes | bytearray... method __init__ (line 8508) | def __init__(self, QShaderCode: QShaderCode, /) -> None: ... method __init__ (line 8510) | def __init__(self, /) -> None: ... method entryPoint (line 8511) | def entryPoint(self, /) -> PySide6.QtCore.QByteArray: ... method setEntryPoint (line 8512) | def setEntryPoint(self, entry: PySide6.QtCore.QByteArray | bytes | byt... method setShader (line 8513) | def setShader(self, code: PySide6.QtCore.QByteArray | bytes | bytearra... method shader (line 8514) | def shader(self, /) -> PySide6.QtCore.QByteArray: ... method __copy__ (line 8515) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8516) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8517) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8518) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8519) | def __hash__(self, /) -> int: ... method __le__ (line 8520) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8521) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8522) | def __ne__(self, other: object) -> bool: ... class QShaderKey (line 8524) | class QShaderKey(shiboken6.Object): method __init__ (line 8526) | def __init__(self, s: QShader.Source, sver: QShaderVersion | int, /, s... method __init__ (line 8528) | def __init__(self, QShaderKey: QShaderKey, /) -> None: ... method __init__ (line 8530) | def __init__(self, /) -> None: ... method setSource (line 8531) | def setSource(self, s: QShader.Source, /) -> None: ... method setSourceVariant (line 8532) | def setSourceVariant(self, svar: QShader.Variant, /) -> None: ... method setSourceVersion (line 8533) | def setSourceVersion(self, sver: QShaderVersion | int, /) -> None: ... method source (line 8534) | def source(self, /) -> QShader.Source: ... method sourceVariant (line 8535) | def sourceVariant(self, /) -> QShader.Variant: ... method sourceVersion (line 8536) | def sourceVersion(self, /) -> QShaderVersion: ... method __copy__ (line 8537) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8538) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8539) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8540) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8541) | def __hash__(self, /) -> int: ... method __le__ (line 8542) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8543) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8544) | def __ne__(self, other: object) -> bool: ... class QShaderVersion (line 8546) | class QShaderVersion(shiboken6.Object): class Flag (line 8547) | class Flag(enum.Flag): method __init__ (line 8550) | def __init__(self, v: int, /, f: QShaderVersion.Flag = ...) -> None: ... method __init__ (line 8552) | def __init__(self, QShaderVersion: QShaderVersion, /) -> None: ... method __init__ (line 8554) | def __init__(self, /) -> None: ... method flags (line 8555) | def flags(self, /) -> QShaderVersion.Flag: ... method setFlags (line 8556) | def setFlags(self, f: QShaderVersion.Flag, /) -> None: ... method setVersion (line 8557) | def setVersion(self, v: int, /) -> None: ... method version (line 8558) | def version(self, /) -> int: ... method __copy__ (line 8559) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8560) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8561) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8562) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8563) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8564) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8565) | def __ne__(self, other: object) -> bool: ... class QShortcut (line 8567) | class QShortcut(PySide6.QtCore.QObject): method __init__ (line 8572) | def __init__(self, standard_key: QKeySequence.StandardKey, parent: PyS... method __init__ (line 8574) | def __init__(self, key: QKeySequence.StandardKey, parent: PySide6.QtCo... method __init__ (line 8576) | def __init__(self, key: QKeySequence | PySide6.QtCore.QKeyCombination ... method __init__ (line 8578) | def __init__(self, key: QKeySequence | PySide6.QtCore.QKeyCombination ... method __init__ (line 8580) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, key: Q... method autoRepeat (line 8581) | def autoRepeat(self, /) -> bool: ... method context (line 8582) | def context(self, /) -> PySide6.QtCore.Qt.ShortcutContext: ... method event (line 8583) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method id (line 8584) | def id(self, /) -> int: ... method isEnabled (line 8585) | def isEnabled(self, /) -> bool: ... method key (line 8586) | def key(self, /) -> QKeySequence: ... method keys (line 8587) | def keys(self, /) -> List[QKeySequence]: ... method setAutoRepeat (line 8588) | def setAutoRepeat(self, on: bool, /) -> None: ... method setContext (line 8589) | def setContext(self, context: PySide6.QtCore.Qt.ShortcutContext, /) ->... method setEnabled (line 8590) | def setEnabled(self, enable: bool, /) -> None: ... method setKey (line 8591) | def setKey(self, key: QKeySequence | PySide6.QtCore.QKeyCombination | ... method setKeys (line 8593) | def setKeys(self, keys: typing.Iterable[QKeySequence], /) -> None: ... method setKeys (line 8595) | def setKeys(self, key: QKeySequence.StandardKey, /) -> None: ... method setWhatsThis (line 8596) | def setWhatsThis(self, text: str, /) -> None: ... method whatsThis (line 8597) | def whatsThis(self, /) -> str: ... class QShortcutEvent (line 8599) | class QShortcutEvent(PySide6.QtCore.QEvent): method __init__ (line 8601) | def __init__(self, key: QKeySequence | PySide6.QtCore.QKeyCombination ... method __init__ (line 8603) | def __init__(self, key: QKeySequence | PySide6.QtCore.QKeyCombination ... method __init__ (line 8605) | def __init__(self, arg__1: QShortcutEvent, /) -> None: ... method clone (line 8606) | def clone(self, /) -> QShortcutEvent: ... method isAmbiguous (line 8607) | def isAmbiguous(self, /) -> bool: ... method key (line 8608) | def key(self, /) -> QKeySequence: ... method shortcutId (line 8609) | def shortcutId(self, /) -> int: ... class QShowEvent (line 8611) | class QShowEvent(PySide6.QtCore.QEvent): method __init__ (line 8613) | def __init__(self, arg__1: QShowEvent, /) -> None: ... method __init__ (line 8615) | def __init__(self, /) -> None: ... method clone (line 8616) | def clone(self, /) -> QShowEvent: ... class QSinglePointEvent (line 8618) | class QSinglePointEvent(QPointerEvent): method __init__ (line 8620) | def __init__(self, type: PySide6.QtCore.QEvent.Type, dev: QPointingDev... method __init__ (line 8622) | def __init__(self, type: PySide6.QtCore.QEvent.Type, dev: QPointingDev... method __init__ (line 8624) | def __init__(self, arg__1: QSinglePointEvent, /, *, exclusivePointGrab... method button (line 8625) | def button(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method buttons (line 8626) | def buttons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method clone (line 8627) | def clone(self, /) -> QSinglePointEvent: ... method exclusivePointGrabber (line 8628) | def exclusivePointGrabber(self, /) -> PySide6.QtCore.QObject: ... method globalPosition (line 8629) | def globalPosition(self, /) -> PySide6.QtCore.QPointF: ... method isBeginEvent (line 8630) | def isBeginEvent(self, /) -> bool: ... method isEndEvent (line 8631) | def isEndEvent(self, /) -> bool: ... method isUpdateEvent (line 8632) | def isUpdateEvent(self, /) -> bool: ... method position (line 8633) | def position(self, /) -> PySide6.QtCore.QPointF: ... method scenePosition (line 8634) | def scenePosition(self, /) -> PySide6.QtCore.QPointF: ... method setExclusivePointGrabber (line 8635) | def setExclusivePointGrabber(self, exclusiveGrabber: PySide6.QtCore.QO... class QStandardItem (line 8637) | class QStandardItem(shiboken6.Object): class ItemType (line 8638) | class ItemType(enum.Enum): method __init__ (line 8642) | def __init__(self, rows: int, /, columns: int = ...) -> None: ... method __init__ (line 8644) | def __init__(self, icon: QIcon | QPixmap, text: str, /) -> None: ... method __init__ (line 8646) | def __init__(self, text: str, /) -> None: ... method __init__ (line 8648) | def __init__(self, other: QStandardItem, /) -> None: ... method __init__ (line 8650) | def __init__(self, /) -> None: ... method accessibleDescription (line 8651) | def accessibleDescription(self, /) -> str: ... method accessibleText (line 8652) | def accessibleText(self, /) -> str: ... method appendColumn (line 8653) | def appendColumn(self, items: typing.Iterable[QStandardItem], /) -> No... method appendRow (line 8655) | def appendRow(self, items: typing.Iterable[QStandardItem], /) -> None:... method appendRow (line 8657) | def appendRow(self, item: QStandardItem, /) -> None: ... method appendRows (line 8658) | def appendRows(self, items: typing.Iterable[QStandardItem], /) -> None... method background (line 8659) | def background(self, /) -> QBrush: ... method checkState (line 8660) | def checkState(self, /) -> PySide6.QtCore.Qt.CheckState: ... method child (line 8661) | def child(self, row: int, /, column: int | None = ...) -> QStandardIte... method clearData (line 8662) | def clearData(self, /) -> None: ... method clone (line 8663) | def clone(self, /) -> QStandardItem: ... method column (line 8664) | def column(self, /) -> int: ... method columnCount (line 8665) | def columnCount(self, /) -> int: ... method data (line 8666) | def data(self, /, role: PySide6.QtCore.Qt.ItemDataRole | int = ...) ->... method emitDataChanged (line 8667) | def emitDataChanged(self, /) -> None: ... method flags (line 8668) | def flags(self, /) -> PySide6.QtCore.Qt.ItemFlag: ... method font (line 8669) | def font(self, /) -> QFont: ... method foreground (line 8670) | def foreground(self, /) -> QBrush: ... method hasChildren (line 8671) | def hasChildren(self, /) -> bool: ... method icon (line 8672) | def icon(self, /) -> QIcon: ... method index (line 8673) | def index(self, /) -> PySide6.QtCore.QModelIndex: ... method insertColumn (line 8674) | def insertColumn(self, column: int, items: typing.Iterable[QStandardIt... method insertColumns (line 8675) | def insertColumns(self, column: int, count: int, /) -> None: ... method insertRow (line 8677) | def insertRow(self, row: int, items: typing.Iterable[QStandardItem], /... method insertRow (line 8679) | def insertRow(self, row: int, item: QStandardItem, /) -> None: ... method insertRows (line 8681) | def insertRows(self, row: int, items: typing.Iterable[QStandardItem], ... method insertRows (line 8683) | def insertRows(self, row: int, count: int, /) -> None: ... method isAutoTristate (line 8684) | def isAutoTristate(self, /) -> bool: ... method isCheckable (line 8685) | def isCheckable(self, /) -> bool: ... method isDragEnabled (line 8686) | def isDragEnabled(self, /) -> bool: ... method isDropEnabled (line 8687) | def isDropEnabled(self, /) -> bool: ... method isEditable (line 8688) | def isEditable(self, /) -> bool: ... method isEnabled (line 8689) | def isEnabled(self, /) -> bool: ... method isSelectable (line 8690) | def isSelectable(self, /) -> bool: ... method isUserTristate (line 8691) | def isUserTristate(self, /) -> bool: ... method model (line 8692) | def model(self, /) -> QStandardItemModel: ... method multiData (line 8693) | def multiData(self, roleDataSpan: PySide6.QtCore.QModelRoleDataSpan | ... method parent (line 8694) | def parent(self, /) -> QStandardItem: ... method read (line 8695) | def read(self, in_: PySide6.QtCore.QDataStream, /) -> None: ... method removeColumn (line 8696) | def removeColumn(self, column: int, /) -> None: ... method removeColumns (line 8697) | def removeColumns(self, column: int, count: int, /) -> None: ... method removeRow (line 8698) | def removeRow(self, row: int, /) -> None: ... method removeRows (line 8699) | def removeRows(self, row: int, count: int, /) -> None: ... method row (line 8700) | def row(self, /) -> int: ... method rowCount (line 8701) | def rowCount(self, /) -> int: ... method setAccessibleDescription (line 8702) | def setAccessibleDescription(self, accessibleDescription: str, /) -> N... method setAccessibleText (line 8703) | def setAccessibleText(self, accessibleText: str, /) -> None: ... method setAutoTristate (line 8704) | def setAutoTristate(self, tristate: bool, /) -> None: ... method setBackground (line 8705) | def setBackground(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle |... method setCheckState (line 8706) | def setCheckState(self, checkState: PySide6.QtCore.Qt.CheckState, /) -... method setCheckable (line 8707) | def setCheckable(self, checkable: bool, /) -> None: ... method setChild (line 8709) | def setChild(self, row: int, column: int, item: QStandardItem, /) -> N... method setChild (line 8711) | def setChild(self, row: int, item: QStandardItem, /) -> None: ... method setColumnCount (line 8712) | def setColumnCount(self, columns: int, /) -> None: ... method setData (line 8713) | def setData(self, value: Any, /, role: PySide6.QtCore.Qt.ItemDataRole ... method setDragEnabled (line 8714) | def setDragEnabled(self, dragEnabled: bool, /) -> None: ... method setDropEnabled (line 8715) | def setDropEnabled(self, dropEnabled: bool, /) -> None: ... method setEditable (line 8716) | def setEditable(self, editable: bool, /) -> None: ... method setEnabled (line 8717) | def setEnabled(self, enabled: bool, /) -> None: ... method setFlags (line 8718) | def setFlags(self, flags: PySide6.QtCore.Qt.ItemFlag, /) -> None: ... method setFont (line 8719) | def setFont(self, font: QFont | str | typing.Iterable[str], /) -> None... method setForeground (line 8720) | def setForeground(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle |... method setIcon (line 8721) | def setIcon(self, icon: QIcon | QPixmap, /) -> None: ... method setRowCount (line 8722) | def setRowCount(self, rows: int, /) -> None: ... method setSelectable (line 8723) | def setSelectable(self, selectable: bool, /) -> None: ... method setSizeHint (line 8724) | def setSizeHint(self, sizeHint: PySide6.QtCore.QSize, /) -> None: ... method setStatusTip (line 8725) | def setStatusTip(self, statusTip: str, /) -> None: ... method setText (line 8726) | def setText(self, text: str, /) -> None: ... method setTextAlignment (line 8727) | def setTextAlignment(self, textAlignment: PySide6.QtCore.Qt.AlignmentF... method setToolTip (line 8728) | def setToolTip(self, toolTip: str, /) -> None: ... method setUserTristate (line 8729) | def setUserTristate(self, tristate: bool, /) -> None: ... method setWhatsThis (line 8730) | def setWhatsThis(self, whatsThis: str, /) -> None: ... method sizeHint (line 8731) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sortChildren (line 8732) | def sortChildren(self, column: int, /, order: PySide6.QtCore.Qt.SortOr... method statusTip (line 8733) | def statusTip(self, /) -> str: ... method takeChild (line 8734) | def takeChild(self, row: int, /, column: int | None = ...) -> QStandar... method takeColumn (line 8735) | def takeColumn(self, column: int, /) -> List[QStandardItem]: ... method takeRow (line 8736) | def takeRow(self, row: int, /) -> List[QStandardItem]: ... method text (line 8737) | def text(self, /) -> str: ... method textAlignment (line 8738) | def textAlignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method toolTip (line 8739) | def toolTip(self, /) -> str: ... method type (line 8740) | def type(self, /) -> QStandardItem.ItemType: ... method whatsThis (line 8741) | def whatsThis(self, /) -> str: ... method write (line 8742) | def write(self, out: PySide6.QtCore.QDataStream, /) -> None: ... method __eq__ (line 8743) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8744) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8745) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8746) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 8747) | def __lshift__(self, out: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... method __lt__ (line 8748) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8749) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 8750) | def __rlshift__(self, other): ... method __rrshift__ (line 8751) | def __rrshift__(self, other): ... method __rshift__ (line 8752) | def __rshift__(self, in_: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... class QStandardItemModel (line 8754) | class QStandardItemModel(PySide6.QtCore.QAbstractItemModel): method __init__ (line 8758) | def __init__(self, rows: int, columns: int, /, parent: PySide6.QtCore.... method __init__ (line 8760) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method appendColumn (line 8761) | def appendColumn(self, items: typing.Iterable[QStandardItem], /) -> No... method appendRow (line 8763) | def appendRow(self, items: typing.Iterable[QStandardItem], /) -> None:... method appendRow (line 8765) | def appendRow(self, item: QStandardItem, /) -> None: ... method clear (line 8766) | def clear(self, /) -> None: ... method clearItemData (line 8767) | def clearItemData(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method columnCount (line 8768) | def columnCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method data (line 8769) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method dropMimeData (line 8770) | def dropMimeData(self, data: PySide6.QtCore.QMimeData, action: PySide6... method findItems (line 8771) | def findItems(self, text: str, /, flags: PySide6.QtCore.Qt.MatchFlag =... method flags (line 8772) | def flags(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPe... method hasChildren (line 8773) | def hasChildren(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method headerData (line 8774) | def headerData(self, section: int, orientation: PySide6.QtCore.Qt.Orie... method horizontalHeaderItem (line 8775) | def horizontalHeaderItem(self, column: int, /) -> QStandardItem: ... method index (line 8776) | def index(self, row: int, column: int, /, parent: PySide6.QtCore.QMode... method indexFromItem (line 8777) | def indexFromItem(self, item: QStandardItem, /) -> PySide6.QtCore.QMod... method insertColumn (line 8779) | def insertColumn(self, column: int, items: typing.Iterable[QStandardIt... method insertColumn (line 8781) | def insertColumn(self, column: int, /, parent: PySide6.QtCore.QModelIn... method insertColumns (line 8782) | def insertColumns(self, column: int, count: int, /, parent: PySide6.Qt... method insertRow (line 8784) | def insertRow(self, row: int, items: typing.Iterable[QStandardItem], /... method insertRow (line 8786) | def insertRow(self, row: int, item: QStandardItem, /) -> None: ... method insertRow (line 8788) | def insertRow(self, row: int, /, parent: PySide6.QtCore.QModelIndex | ... method insertRows (line 8789) | def insertRows(self, row: int, count: int, /, parent: PySide6.QtCore.Q... method invisibleRootItem (line 8790) | def invisibleRootItem(self, /) -> QStandardItem: ... method item (line 8791) | def item(self, row: int, /, column: int | None = ...) -> QStandardItem... method itemData (line 8792) | def itemData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method itemFromIndex (line 8793) | def itemFromIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method itemPrototype (line 8794) | def itemPrototype(self, /) -> QStandardItem: ... method mimeData (line 8795) | def mimeData(self, indexes: list[PySide6.QtCore.QModelIndex], /) -> Py... method mimeTypes (line 8796) | def mimeTypes(self, /) -> List[str]: ... method multiData (line 8797) | def multiData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore... method parent (line 8799) | def parent(self, child: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method parent (line 8801) | def parent(self, /) -> PySide6.QtCore.QObject: ... method removeColumns (line 8802) | def removeColumns(self, column: int, count: int, /, parent: PySide6.Qt... method removeRows (line 8803) | def removeRows(self, row: int, count: int, /, parent: PySide6.QtCore.Q... method roleNames (line 8804) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rowCount (line 8805) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method setColumnCount (line 8806) | def setColumnCount(self, columns: int, /) -> None: ... method setData (line 8807) | def setData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.Q... method setHeaderData (line 8808) | def setHeaderData(self, section: int, orientation: PySide6.QtCore.Qt.O... method setHorizontalHeaderItem (line 8809) | def setHorizontalHeaderItem(self, column: int, item: QStandardItem, /)... method setHorizontalHeaderLabels (line 8810) | def setHorizontalHeaderLabels(self, labels: typing.Iterable[str], /) -... method setItem (line 8812) | def setItem(self, row: int, column: int, item: QStandardItem, /) -> No... method setItem (line 8814) | def setItem(self, row: int, item: QStandardItem, /) -> None: ... method setItemData (line 8815) | def setItemData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCo... method setItemPrototype (line 8816) | def setItemPrototype(self, item: QStandardItem, /) -> None: ... method setItemRoleNames (line 8817) | def setItemRoleNames(self, roleNames: Dict[int, PySide6.QtCore.QByteAr... method setRowCount (line 8818) | def setRowCount(self, rows: int, /) -> None: ... method setSortRole (line 8819) | def setSortRole(self, role: PySide6.QtCore.Qt.ItemDataRole | int, /) -... method setVerticalHeaderItem (line 8820) | def setVerticalHeaderItem(self, row: int, item: QStandardItem, /) -> N... method setVerticalHeaderLabels (line 8821) | def setVerticalHeaderLabels(self, labels: typing.Iterable[str], /) -> ... method sort (line 8822) | def sort(self, column: int, /, order: PySide6.QtCore.Qt.SortOrder = ..... method sortRole (line 8823) | def sortRole(self, /) -> int: ... method supportedDropActions (line 8824) | def supportedDropActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method takeColumn (line 8825) | def takeColumn(self, column: int, /) -> List[QStandardItem]: ... method takeHorizontalHeaderItem (line 8826) | def takeHorizontalHeaderItem(self, column: int, /) -> QStandardItem: ... method takeItem (line 8827) | def takeItem(self, row: int, /, column: int | None = ...) -> QStandard... method takeRow (line 8828) | def takeRow(self, row: int, /) -> List[QStandardItem]: ... method takeVerticalHeaderItem (line 8829) | def takeVerticalHeaderItem(self, row: int, /) -> QStandardItem: ... method verticalHeaderItem (line 8830) | def verticalHeaderItem(self, row: int, /) -> QStandardItem: ... class QStaticText (line 8832) | class QStaticText(shiboken6.Object): class PerformanceHint (line 8833) | class PerformanceHint(enum.Enum): method __init__ (line 8837) | def __init__(self, text: str, /) -> None: ... method __init__ (line 8839) | def __init__(self, other: QStaticText, /) -> None: ... method __init__ (line 8841) | def __init__(self, /) -> None: ... method performanceHint (line 8842) | def performanceHint(self, /) -> QStaticText.PerformanceHint: ... method prepare (line 8843) | def prepare(self, /, matrix: QTransform = ..., font: QFont | str | typ... method setPerformanceHint (line 8844) | def setPerformanceHint(self, performanceHint: QStaticText.PerformanceH... method setText (line 8845) | def setText(self, text: str, /) -> None: ... method setTextFormat (line 8846) | def setTextFormat(self, textFormat: PySide6.QtCore.Qt.TextFormat, /) -... method setTextOption (line 8847) | def setTextOption(self, textOption: QTextOption | PySide6.QtCore.Qt.Al... method setTextWidth (line 8848) | def setTextWidth(self, textWidth: float, /) -> None: ... method size (line 8849) | def size(self, /) -> PySide6.QtCore.QSizeF: ... method swap (line 8850) | def swap(self, other: QStaticText, /) -> None: ... method text (line 8851) | def text(self, /) -> str: ... method textFormat (line 8852) | def textFormat(self, /) -> PySide6.QtCore.Qt.TextFormat: ... method textOption (line 8853) | def textOption(self, /) -> QTextOption: ... method textWidth (line 8854) | def textWidth(self, /) -> float: ... method __copy__ (line 8855) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 8856) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8857) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8858) | def __gt__(self, other: object) -> bool: ... method __le__ (line 8859) | def __le__(self, other: object) -> bool: ... method __lt__ (line 8860) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8861) | def __ne__(self, other: object) -> bool: ... class QStatusTipEvent (line 8863) | class QStatusTipEvent(PySide6.QtCore.QEvent): method __init__ (line 8865) | def __init__(self, tip: str, /) -> None: ... method __init__ (line 8867) | def __init__(self, arg__1: QStatusTipEvent, /) -> None: ... method clone (line 8868) | def clone(self, /) -> QStatusTipEvent: ... method tip (line 8869) | def tip(self, /) -> str: ... class QStyleHints (line 8871) | class QStyleHints(PySide6.QtCore.QObject): method __init__ (line 8886) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method accessibility (line 8887) | def accessibility(self, /) -> QAccessibilityHints: ... method colorScheme (line 8888) | def colorScheme(self, /) -> PySide6.QtCore.Qt.ColorScheme: ... method contextMenuTrigger (line 8889) | def contextMenuTrigger(self, /) -> PySide6.QtCore.Qt.ContextMenuTrigge... method cursorFlashTime (line 8890) | def cursorFlashTime(self, /) -> int: ... method fontSmoothingGamma (line 8891) | def fontSmoothingGamma(self, /) -> float: ... method keyboardAutoRepeatRate (line 8892) | def keyboardAutoRepeatRate(self, /) -> int: ... method keyboardAutoRepeatRateF (line 8893) | def keyboardAutoRepeatRateF(self, /) -> float: ... method keyboardInputInterval (line 8894) | def keyboardInputInterval(self, /) -> int: ... method menuSelectionWraps (line 8895) | def menuSelectionWraps(self, /) -> bool: ... method mouseDoubleClickDistance (line 8896) | def mouseDoubleClickDistance(self, /) -> int: ... method mouseDoubleClickInterval (line 8897) | def mouseDoubleClickInterval(self, /) -> int: ... method mousePressAndHoldInterval (line 8898) | def mousePressAndHoldInterval(self, /) -> int: ... method mouseQuickSelectionThreshold (line 8899) | def mouseQuickSelectionThreshold(self, /) -> int: ... method passwordMaskCharacter (line 8900) | def passwordMaskCharacter(self, /) -> str: ... method passwordMaskDelay (line 8901) | def passwordMaskDelay(self, /) -> int: ... method setColorScheme (line 8902) | def setColorScheme(self, scheme: PySide6.QtCore.Qt.ColorScheme, /) -> ... method setContextMenuTrigger (line 8903) | def setContextMenuTrigger(self, contextMenuTrigger: PySide6.QtCore.Qt.... method setCursorFlashTime (line 8904) | def setCursorFlashTime(self, cursorFlashTime: int, /) -> None: ... method setFocusOnTouchRelease (line 8905) | def setFocusOnTouchRelease(self, /) -> bool: ... method setKeyboardInputInterval (line 8906) | def setKeyboardInputInterval(self, keyboardInputInterval: int, /) -> N... method setMouseDoubleClickInterval (line 8907) | def setMouseDoubleClickInterval(self, mouseDoubleClickInterval: int, /... method setMousePressAndHoldInterval (line 8908) | def setMousePressAndHoldInterval(self, mousePressAndHoldInterval: int,... method setMouseQuickSelectionThreshold (line 8909) | def setMouseQuickSelectionThreshold(self, threshold: int, /) -> None: ... method setShowShortcutsInContextMenus (line 8910) | def setShowShortcutsInContextMenus(self, showShortcutsInContextMenus: ... method setStartDragDistance (line 8911) | def setStartDragDistance(self, startDragDistance: int, /) -> None: ... method setStartDragTime (line 8912) | def setStartDragTime(self, startDragTime: int, /) -> None: ... method setTabFocusBehavior (line 8913) | def setTabFocusBehavior(self, tabFocusBehavior: PySide6.QtCore.Qt.TabF... method setUseHoverEffects (line 8914) | def setUseHoverEffects(self, useHoverEffects: bool, /) -> None: ... method setWheelScrollLines (line 8915) | def setWheelScrollLines(self, scrollLines: int, /) -> None: ... method showIsFullScreen (line 8916) | def showIsFullScreen(self, /) -> bool: ... method showIsMaximized (line 8917) | def showIsMaximized(self, /) -> bool: ... method showShortcutsInContextMenus (line 8918) | def showShortcutsInContextMenus(self, /) -> bool: ... method singleClickActivation (line 8919) | def singleClickActivation(self, /) -> bool: ... method startDragDistance (line 8920) | def startDragDistance(self, /) -> int: ... method startDragTime (line 8921) | def startDragTime(self, /) -> int: ... method startDragVelocity (line 8922) | def startDragVelocity(self, /) -> int: ... method tabFocusBehavior (line 8923) | def tabFocusBehavior(self, /) -> PySide6.QtCore.Qt.TabFocusBehavior: ... method touchDoubleTapDistance (line 8924) | def touchDoubleTapDistance(self, /) -> int: ... method unsetColorScheme (line 8925) | def unsetColorScheme(self, /) -> None: ... method useHoverEffects (line 8926) | def useHoverEffects(self, /) -> bool: ... method useRtlExtensions (line 8927) | def useRtlExtensions(self, /) -> bool: ... method wheelScrollLines (line 8928) | def wheelScrollLines(self, /) -> int: ... class QSurface (line 8930) | class QSurface(shiboken6.Object): class SurfaceClass (line 8931) | class SurfaceClass(enum.Enum): class SurfaceType (line 8935) | class SurfaceType(enum.Enum): method __init__ (line 8944) | def __init__(self, type: QSurface.SurfaceClass, /) -> None: ... method format (line 8945) | def format(self, /) -> QSurfaceFormat: ... method size (line 8946) | def size(self, /) -> PySide6.QtCore.QSize: ... method supportsOpenGL (line 8947) | def supportsOpenGL(self, /) -> bool: ... method surfaceClass (line 8948) | def surfaceClass(self, /) -> QSurface.SurfaceClass: ... method surfaceHandle (line 8949) | def surfaceHandle(self, /) -> int: ... method surfaceType (line 8950) | def surfaceType(self, /) -> QSurface.SurfaceType: ... class QSurfaceFormat (line 8952) | class QSurfaceFormat(shiboken6.Object): class ColorSpace (line 8953) | class ColorSpace(enum.Enum): class FormatOption (line 8957) | class FormatOption(enum.Flag): class OpenGLContextProfile (line 8964) | class OpenGLContextProfile(enum.Enum): class RenderableType (line 8969) | class RenderableType(enum.Enum): class SwapBehavior (line 8975) | class SwapBehavior(enum.Enum): method __init__ (line 8981) | def __init__(self, other: QSurfaceFormat, /) -> None: ... method __init__ (line 8983) | def __init__(self, options: QSurfaceFormat.FormatOption, /) -> None: ... method __init__ (line 8985) | def __init__(self, /) -> None: ... method alphaBufferSize (line 8986) | def alphaBufferSize(self, /) -> int: ... method blueBufferSize (line 8987) | def blueBufferSize(self, /) -> int: ... method colorSpace (line 8988) | def colorSpace(self, /) -> QColorSpace: ... method defaultFormat (line 8990) | def defaultFormat() -> QSurfaceFormat: ... method depthBufferSize (line 8991) | def depthBufferSize(self, /) -> int: ... method greenBufferSize (line 8992) | def greenBufferSize(self, /) -> int: ... method hasAlpha (line 8993) | def hasAlpha(self, /) -> bool: ... method majorVersion (line 8994) | def majorVersion(self, /) -> int: ... method minorVersion (line 8995) | def minorVersion(self, /) -> int: ... method options (line 8996) | def options(self, /) -> QSurfaceFormat.FormatOption: ... method profile (line 8997) | def profile(self, /) -> QSurfaceFormat.OpenGLContextProfile: ... method redBufferSize (line 8998) | def redBufferSize(self, /) -> int: ... method renderableType (line 8999) | def renderableType(self, /) -> QSurfaceFormat.RenderableType: ... method samples (line 9000) | def samples(self, /) -> int: ... method setAlphaBufferSize (line 9001) | def setAlphaBufferSize(self, size: int, /) -> None: ... method setBlueBufferSize (line 9002) | def setBlueBufferSize(self, size: int, /) -> None: ... method setColorSpace (line 9004) | def setColorSpace(self, colorSpace: QSurfaceFormat.ColorSpace, /) -> N... method setColorSpace (line 9006) | def setColorSpace(self, colorSpace: QColorSpace | QColorSpace.NamedCol... method setDefaultFormat (line 9008) | def setDefaultFormat(format: QSurfaceFormat | QSurfaceFormat.FormatOpt... method setDepthBufferSize (line 9009) | def setDepthBufferSize(self, size: int, /) -> None: ... method setGreenBufferSize (line 9010) | def setGreenBufferSize(self, size: int, /) -> None: ... method setMajorVersion (line 9011) | def setMajorVersion(self, majorVersion: int, /) -> None: ... method setMinorVersion (line 9012) | def setMinorVersion(self, minorVersion: int, /) -> None: ... method setOption (line 9013) | def setOption(self, option: QSurfaceFormat.FormatOption, /, on: bool =... method setOptions (line 9014) | def setOptions(self, options: QSurfaceFormat.FormatOption, /) -> None:... method setProfile (line 9015) | def setProfile(self, profile: QSurfaceFormat.OpenGLContextProfile, /) ... method setRedBufferSize (line 9016) | def setRedBufferSize(self, size: int, /) -> None: ... method setRenderableType (line 9017) | def setRenderableType(self, type: QSurfaceFormat.RenderableType, /) ->... method setSamples (line 9018) | def setSamples(self, numSamples: int, /) -> None: ... method setStencilBufferSize (line 9019) | def setStencilBufferSize(self, size: int, /) -> None: ... method setStereo (line 9020) | def setStereo(self, enable: bool, /) -> None: ... method setSwapBehavior (line 9021) | def setSwapBehavior(self, behavior: QSurfaceFormat.SwapBehavior, /) ->... method setSwapInterval (line 9022) | def setSwapInterval(self, interval: int, /) -> None: ... method setVersion (line 9023) | def setVersion(self, major: int, minor: int, /) -> None: ... method stencilBufferSize (line 9024) | def stencilBufferSize(self, /) -> int: ... method stereo (line 9025) | def stereo(self, /) -> bool: ... method swapBehavior (line 9026) | def swapBehavior(self, /) -> QSurfaceFormat.SwapBehavior: ... method swapInterval (line 9027) | def swapInterval(self, /) -> int: ... method testOption (line 9028) | def testOption(self, option: QSurfaceFormat.FormatOption, /) -> bool: ... method version (line 9029) | def version(self, /) -> Tuple[int, int]: ... method __copy__ (line 9030) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9031) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9032) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9033) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9034) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9035) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9036) | def __ne__(self, other: object) -> bool: ... class QSyntaxHighlighter (line 9038) | class QSyntaxHighlighter(PySide6.QtCore.QObject): method __init__ (line 9041) | def __init__(self, parent: QTextDocument, /, destroyed: typing.Callabl... method __init__ (line 9043) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, destroyed... method currentBlock (line 9044) | def currentBlock(self, /) -> QTextBlock: ... method currentBlockState (line 9045) | def currentBlockState(self, /) -> int: ... method currentBlockUserData (line 9046) | def currentBlockUserData(self, /) -> QTextBlockUserData: ... method document (line 9047) | def document(self, /) -> QTextDocument: ... method format (line 9048) | def format(self, pos: int, /) -> QTextCharFormat: ... method highlightBlock (line 9049) | def highlightBlock(self, text: str, /) -> None: ... method previousBlockState (line 9050) | def previousBlockState(self, /) -> int: ... method rehighlight (line 9051) | def rehighlight(self, /) -> None: ... method rehighlightBlock (line 9052) | def rehighlightBlock(self, block: QTextBlock, /) -> None: ... method setCurrentBlockState (line 9053) | def setCurrentBlockState(self, newState: int, /) -> None: ... method setCurrentBlockUserData (line 9054) | def setCurrentBlockUserData(self, data: QTextBlockUserData, /) -> None... method setDocument (line 9055) | def setDocument(self, doc: QTextDocument | None, /) -> None: ... method setFormat (line 9057) | def setFormat(self, start: int, count: int, format: QTextCharFormat, /... method setFormat (line 9059) | def setFormat(self, start: int, count: int, font: QFont | str | typing... method setFormat (line 9061) | def setFormat(self, start: int, count: int, color: Union[QColor, str, ... class QTabletEvent (line 9063) | class QTabletEvent(QSinglePointEvent): method __init__ (line 9065) | def __init__(self, t: PySide6.QtCore.QEvent.Type, device: QPointingDev... method __init__ (line 9067) | def __init__(self, arg__1: QTabletEvent, /) -> None: ... method clone (line 9068) | def clone(self, /) -> QTabletEvent: ... method globalPos (line 9069) | def globalPos(self, /) -> PySide6.QtCore.QPoint: ... method globalPosF (line 9070) | def globalPosF(self, /) -> PySide6.QtCore.QPointF: ... method globalX (line 9071) | def globalX(self, /) -> int: ... method globalY (line 9072) | def globalY(self, /) -> int: ... method hiResGlobalX (line 9073) | def hiResGlobalX(self, /) -> float: ... method hiResGlobalY (line 9074) | def hiResGlobalY(self, /) -> float: ... method pos (line 9075) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method posF (line 9076) | def posF(self, /) -> PySide6.QtCore.QPointF: ... method pressure (line 9077) | def pressure(self, /) -> float: ... method rotation (line 9078) | def rotation(self, /) -> float: ... method tangentialPressure (line 9079) | def tangentialPressure(self, /) -> float: ... method uniqueId (line 9080) | def uniqueId(self, /) -> int: ... method x (line 9081) | def x(self, /) -> int: ... method xTilt (line 9082) | def xTilt(self, /) -> float: ... method y (line 9083) | def y(self, /) -> int: ... method yTilt (line 9084) | def yTilt(self, /) -> float: ... method z (line 9085) | def z(self, /) -> float: ... class QTextBlock (line 9087) | class QTextBlock(shiboken6.Object): class iterator (line 9088) | class iterator(shiboken6.Object): method __init__ (line 9090) | def __init__(self, iterator: QTextBlock.iterator, /) -> None: ... method __init__ (line 9092) | def __init__(self, /) -> None: ... method atEnd (line 9093) | def atEnd(self, /) -> bool: ... method fragment (line 9094) | def fragment(self, /) -> QTextFragment: ... method __copy__ (line 9095) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9096) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9097) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9098) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 9099) | def __iadd__(self, arg__1: int, /) -> QTextBlock.iterator: ... method __isub__ (line 9100) | def __isub__(self, arg__1: int, /) -> QTextBlock.iterator: ... method __iter__ (line 9101) | def __iter__(self, /) -> typing.Iterator: ... method __le__ (line 9102) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9103) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9104) | def __ne__(self, other: object) -> bool: ... method __next__ (line 9105) | def __next__(self, /) -> typing.Any: ... method __init__ (line 9107) | def __init__(self, o: QTextBlock, /) -> None: ... method __init__ (line 9109) | def __init__(self, /) -> None: ... method begin (line 9110) | def begin(self, /) -> QTextBlock.iterator: ... method blockFormat (line 9111) | def blockFormat(self, /) -> QTextBlockFormat: ... method blockFormatIndex (line 9112) | def blockFormatIndex(self, /) -> int: ... method blockNumber (line 9113) | def blockNumber(self, /) -> int: ... method charFormat (line 9114) | def charFormat(self, /) -> QTextCharFormat: ... method charFormatIndex (line 9115) | def charFormatIndex(self, /) -> int: ... method clearLayout (line 9116) | def clearLayout(self, /) -> None: ... method contains (line 9117) | def contains(self, position: int, /) -> bool: ... method document (line 9118) | def document(self, /) -> QTextDocument: ... method end (line 9119) | def end(self, /) -> QTextBlock.iterator: ... method firstLineNumber (line 9120) | def firstLineNumber(self, /) -> int: ... method fragmentIndex (line 9121) | def fragmentIndex(self, /) -> int: ... method isValid (line 9122) | def isValid(self, /) -> bool: ... method isVisible (line 9123) | def isVisible(self, /) -> bool: ... method layout (line 9124) | def layout(self, /) -> QTextLayout: ... method length (line 9125) | def length(self, /) -> int: ... method lineCount (line 9126) | def lineCount(self, /) -> int: ... method next (line 9127) | def next(self, /) -> QTextBlock: ... method position (line 9128) | def position(self, /) -> int: ... method previous (line 9129) | def previous(self, /) -> QTextBlock: ... method revision (line 9130) | def revision(self, /) -> int: ... method setLineCount (line 9131) | def setLineCount(self, count: int, /) -> None: ... method setRevision (line 9132) | def setRevision(self, rev: int, /) -> None: ... method setUserData (line 9133) | def setUserData(self, data: QTextBlockUserData, /) -> None: ... method setUserState (line 9134) | def setUserState(self, state: int, /) -> None: ... method setVisible (line 9135) | def setVisible(self, visible: bool, /) -> None: ... method text (line 9136) | def text(self, /) -> str: ... method textDirection (line 9137) | def textDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method textFormats (line 9138) | def textFormats(self, /) -> List[QTextLayout.FormatRange]: ... method textList (line 9139) | def textList(self, /) -> QTextList: ... method userData (line 9140) | def userData(self, /) -> QTextBlockUserData: ... method userState (line 9141) | def userState(self, /) -> int: ... method __copy__ (line 9142) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9143) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9144) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9145) | def __gt__(self, other: object) -> bool: ... method __iter__ (line 9146) | def __iter__(self, /) -> typing.Iterator: ... method __le__ (line 9147) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9148) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9149) | def __ne__(self, other: object) -> bool: ... class QTextBlockFormat (line 9151) | class QTextBlockFormat(QTextFormat): class LineHeightTypes (line 9152) | class LineHeightTypes(enum.Enum): class MarkerType (line 9159) | class MarkerType(enum.Enum): method __init__ (line 9164) | def __init__(self, fmt: QTextFormat, /) -> None: ... method __init__ (line 9166) | def __init__(self, QTextBlockFormat: QTextBlockFormat, /) -> None: ...... method __init__ (line 9168) | def __init__(self, /) -> None: ... method alignment (line 9169) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method bottomMargin (line 9170) | def bottomMargin(self, /) -> float: ... method headingLevel (line 9171) | def headingLevel(self, /) -> int: ... method indent (line 9172) | def indent(self, /) -> int: ... method isValid (line 9173) | def isValid(self, /) -> bool: ... method leftMargin (line 9174) | def leftMargin(self, /) -> float: ... method lineHeight (line 9176) | def lineHeight(self, scriptLineHeight: float, scaling: float, /) -> fl... method lineHeight (line 9178) | def lineHeight(self, /) -> float: ... method lineHeightType (line 9179) | def lineHeightType(self, /) -> int: ... method marker (line 9180) | def marker(self, /) -> QTextBlockFormat.MarkerType: ... method nonBreakableLines (line 9181) | def nonBreakableLines(self, /) -> bool: ... method pageBreakPolicy (line 9182) | def pageBreakPolicy(self, /) -> QTextFormat.PageBreakFlag: ... method rightMargin (line 9183) | def rightMargin(self, /) -> float: ... method setAlignment (line 9184) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setBottomMargin (line 9185) | def setBottomMargin(self, margin: float, /) -> None: ... method setHeadingLevel (line 9186) | def setHeadingLevel(self, alevel: int, /) -> None: ... method setIndent (line 9187) | def setIndent(self, indent: int, /) -> None: ... method setLeftMargin (line 9188) | def setLeftMargin(self, margin: float, /) -> None: ... method setLineHeight (line 9189) | def setLineHeight(self, height: float, heightType: int, /) -> None: ... method setMarker (line 9190) | def setMarker(self, marker: QTextBlockFormat.MarkerType, /) -> None: ... method setNonBreakableLines (line 9191) | def setNonBreakableLines(self, b: bool, /) -> None: ... method setPageBreakPolicy (line 9192) | def setPageBreakPolicy(self, flags: QTextFormat.PageBreakFlag, /) -> N... method setRightMargin (line 9193) | def setRightMargin(self, margin: float, /) -> None: ... method setTabPositions (line 9194) | def setTabPositions(self, tabs: typing.Iterable[QTextOption.Tab], /) -... method setTextIndent (line 9195) | def setTextIndent(self, aindent: float, /) -> None: ... method setTopMargin (line 9196) | def setTopMargin(self, margin: float, /) -> None: ... method tabPositions (line 9197) | def tabPositions(self, /) -> List[QTextOption.Tab]: ... method textIndent (line 9198) | def textIndent(self, /) -> float: ... method topMargin (line 9199) | def topMargin(self, /) -> float: ... method __copy__ (line 9200) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextBlockGroup (line 9202) | class QTextBlockGroup(QTextObject): method __init__ (line 9204) | def __init__(self, doc: QTextDocument, /, destroyed: typing.Callable =... method blockFormatChanged (line 9205) | def blockFormatChanged(self, block: QTextBlock, /) -> None: ... method blockInserted (line 9206) | def blockInserted(self, block: QTextBlock, /) -> None: ... method blockList (line 9207) | def blockList(self, /) -> List[QTextBlock]: ... method blockRemoved (line 9208) | def blockRemoved(self, block: QTextBlock, /) -> None: ... class QTextBlockUserData (line 9210) | class QTextBlockUserData(shiboken6.Object): method __init__ (line 9211) | def __init__(self, /) -> None: ... class QTextCharFormat (line 9213) | class QTextCharFormat(QTextFormat): class FontPropertiesInheritanceBehavior (line 9214) | class FontPropertiesInheritanceBehavior(enum.Enum): class UnderlineStyle (line 9218) | class UnderlineStyle(enum.Enum): class VerticalAlignment (line 9228) | class VerticalAlignment(enum.Enum): method __init__ (line 9237) | def __init__(self, fmt: QTextFormat, /) -> None: ... method __init__ (line 9239) | def __init__(self, QTextCharFormat: QTextCharFormat, /) -> None: ... ... method __init__ (line 9241) | def __init__(self, /) -> None: ... method anchorHref (line 9242) | def anchorHref(self, /) -> str: ... method anchorNames (line 9243) | def anchorNames(self, /) -> List[str]: ... method baselineOffset (line 9244) | def baselineOffset(self, /) -> float: ... method font (line 9245) | def font(self, /) -> QFont: ... method fontCapitalization (line 9246) | def fontCapitalization(self, /) -> QFont.Capitalization: ... method fontFamilies (line 9247) | def fontFamilies(self, /) -> Any: ... method fontFamily (line 9248) | def fontFamily(self, /) -> str: ... method fontFixedPitch (line 9249) | def fontFixedPitch(self, /) -> bool: ... method fontHintingPreference (line 9250) | def fontHintingPreference(self, /) -> QFont.HintingPreference: ... method fontItalic (line 9251) | def fontItalic(self, /) -> bool: ... method fontKerning (line 9252) | def fontKerning(self, /) -> bool: ... method fontLetterSpacing (line 9253) | def fontLetterSpacing(self, /) -> float: ... method fontLetterSpacingType (line 9254) | def fontLetterSpacingType(self, /) -> QFont.SpacingType: ... method fontOverline (line 9255) | def fontOverline(self, /) -> bool: ... method fontPointSize (line 9256) | def fontPointSize(self, /) -> float: ... method fontStretch (line 9257) | def fontStretch(self, /) -> int: ... method fontStrikeOut (line 9258) | def fontStrikeOut(self, /) -> bool: ... method fontStyleHint (line 9259) | def fontStyleHint(self, /) -> QFont.StyleHint: ... method fontStyleName (line 9260) | def fontStyleName(self, /) -> Any: ... method fontStyleStrategy (line 9261) | def fontStyleStrategy(self, /) -> QFont.StyleStrategy: ... method fontUnderline (line 9262) | def fontUnderline(self, /) -> bool: ... method fontWeight (line 9263) | def fontWeight(self, /) -> int: ... method fontWordSpacing (line 9264) | def fontWordSpacing(self, /) -> float: ... method isAnchor (line 9265) | def isAnchor(self, /) -> bool: ... method isValid (line 9266) | def isValid(self, /) -> bool: ... method setAnchor (line 9267) | def setAnchor(self, anchor: bool, /) -> None: ... method setAnchorHref (line 9268) | def setAnchorHref(self, value: str, /) -> None: ... method setAnchorNames (line 9269) | def setAnchorNames(self, names: typing.Iterable[str], /) -> None: ... method setBaselineOffset (line 9270) | def setBaselineOffset(self, baseline: float, /) -> None: ... method setFont (line 9271) | def setFont(self, font: QFont | str | typing.Iterable[str], /, behavio... method setFontCapitalization (line 9272) | def setFontCapitalization(self, capitalization: QFont.Capitalization, ... method setFontFamilies (line 9273) | def setFontFamilies(self, families: typing.Iterable[str], /) -> None: ... method setFontFamily (line 9274) | def setFontFamily(self, family: str, /) -> None: ... method setFontFixedPitch (line 9275) | def setFontFixedPitch(self, fixedPitch: bool, /) -> None: ... method setFontHintingPreference (line 9276) | def setFontHintingPreference(self, hintingPreference: QFont.HintingPre... method setFontItalic (line 9277) | def setFontItalic(self, italic: bool, /) -> None: ... method setFontKerning (line 9278) | def setFontKerning(self, enable: bool, /) -> None: ... method setFontLetterSpacing (line 9279) | def setFontLetterSpacing(self, spacing: float, /) -> None: ... method setFontLetterSpacingType (line 9280) | def setFontLetterSpacingType(self, letterSpacingType: QFont.SpacingTyp... method setFontOverline (line 9281) | def setFontOverline(self, overline: bool, /) -> None: ... method setFontPointSize (line 9282) | def setFontPointSize(self, size: float, /) -> None: ... method setFontStretch (line 9283) | def setFontStretch(self, factor: int, /) -> None: ... method setFontStrikeOut (line 9284) | def setFontStrikeOut(self, strikeOut: bool, /) -> None: ... method setFontStyleHint (line 9285) | def setFontStyleHint(self, hint: QFont.StyleHint, /, strategy: QFont.S... method setFontStyleName (line 9286) | def setFontStyleName(self, styleName: str, /) -> None: ... method setFontStyleStrategy (line 9287) | def setFontStyleStrategy(self, strategy: QFont.StyleStrategy, /) -> No... method setFontUnderline (line 9288) | def setFontUnderline(self, underline: bool, /) -> None: ... method setFontWeight (line 9289) | def setFontWeight(self, weight: typing.SupportsInt, /) -> None: ... method setFontWordSpacing (line 9290) | def setFontWordSpacing(self, spacing: float, /) -> None: ... method setSubScriptBaseline (line 9291) | def setSubScriptBaseline(self, baseline: float, /) -> None: ... method setSuperScriptBaseline (line 9292) | def setSuperScriptBaseline(self, baseline: float, /) -> None: ... method setTableCellColumnSpan (line 9293) | def setTableCellColumnSpan(self, tableCellColumnSpan: int, /) -> None:... method setTableCellRowSpan (line 9294) | def setTableCellRowSpan(self, tableCellRowSpan: int, /) -> None: ... method setTextOutline (line 9295) | def setTextOutline(self, pen: QPen | PySide6.QtCore.Qt.PenStyle | QCol... method setToolTip (line 9296) | def setToolTip(self, tip: str, /) -> None: ... method setUnderlineColor (line 9297) | def setUnderlineColor(self, color: Union[QColor, str, QRgba64, Any, Py... method setUnderlineStyle (line 9298) | def setUnderlineStyle(self, style: QTextCharFormat.UnderlineStyle, /) ... method setVerticalAlignment (line 9299) | def setVerticalAlignment(self, alignment: QTextCharFormat.VerticalAlig... method subScriptBaseline (line 9300) | def subScriptBaseline(self, /) -> float: ... method superScriptBaseline (line 9301) | def superScriptBaseline(self, /) -> float: ... method tableCellColumnSpan (line 9302) | def tableCellColumnSpan(self, /) -> int: ... method tableCellRowSpan (line 9303) | def tableCellRowSpan(self, /) -> int: ... method textOutline (line 9304) | def textOutline(self, /) -> QPen: ... method toolTip (line 9305) | def toolTip(self, /) -> str: ... method underlineColor (line 9306) | def underlineColor(self, /) -> QColor: ... method underlineStyle (line 9307) | def underlineStyle(self, /) -> QTextCharFormat.UnderlineStyle: ... method verticalAlignment (line 9308) | def verticalAlignment(self, /) -> QTextCharFormat.VerticalAlignment: ... method __copy__ (line 9309) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextCursor (line 9311) | class QTextCursor(shiboken6.Object): class MoveMode (line 9312) | class MoveMode(enum.Enum): class MoveOperation (line 9316) | class MoveOperation(enum.Enum): class SelectionType (line 9343) | class SelectionType(enum.Enum): method __init__ (line 9349) | def __init__(self, frame: QTextFrame, /) -> None: ... method __init__ (line 9351) | def __init__(self, document: QTextDocument, /) -> None: ... method __init__ (line 9353) | def __init__(self, cursor: QTextCursor, /) -> None: ... method __init__ (line 9355) | def __init__(self, block: QTextBlock, /) -> None: ... method __init__ (line 9357) | def __init__(self, /) -> None: ... method anchor (line 9358) | def anchor(self, /) -> int: ... method atBlockEnd (line 9359) | def atBlockEnd(self, /) -> bool: ... method atBlockStart (line 9360) | def atBlockStart(self, /) -> bool: ... method atEnd (line 9361) | def atEnd(self, /) -> bool: ... method atStart (line 9362) | def atStart(self, /) -> bool: ... method beginEditBlock (line 9363) | def beginEditBlock(self, /) -> None: ... method block (line 9364) | def block(self, /) -> QTextBlock: ... method blockCharFormat (line 9365) | def blockCharFormat(self, /) -> QTextCharFormat: ... method blockFormat (line 9366) | def blockFormat(self, /) -> QTextBlockFormat: ... method blockNumber (line 9367) | def blockNumber(self, /) -> int: ... method charFormat (line 9368) | def charFormat(self, /) -> QTextCharFormat: ... method clearSelection (line 9369) | def clearSelection(self, /) -> None: ... method columnNumber (line 9370) | def columnNumber(self, /) -> int: ... method createList (line 9372) | def createList(self, style: QTextListFormat.Style, /) -> QTextList: ... method createList (line 9374) | def createList(self, format: QTextListFormat, /) -> QTextList: ... method currentFrame (line 9375) | def currentFrame(self, /) -> QTextFrame: ... method currentList (line 9376) | def currentList(self, /) -> QTextList: ... method currentTable (line 9377) | def currentTable(self, /) -> QTextTable: ... method deleteChar (line 9378) | def deleteChar(self, /) -> None: ... method deletePreviousChar (line 9379) | def deletePreviousChar(self, /) -> None: ... method document (line 9380) | def document(self, /) -> QTextDocument: ... method endEditBlock (line 9381) | def endEditBlock(self, /) -> None: ... method hasComplexSelection (line 9382) | def hasComplexSelection(self, /) -> bool: ... method hasSelection (line 9383) | def hasSelection(self, /) -> bool: ... method insertBlock (line 9385) | def insertBlock(self, format: QTextBlockFormat, charFormat: QTextCharF... method insertBlock (line 9387) | def insertBlock(self, format: QTextBlockFormat, /) -> None: ... method insertBlock (line 9389) | def insertBlock(self, /) -> None: ... method insertFragment (line 9390) | def insertFragment(self, fragment: QTextDocumentFragment, /) -> None: ... method insertFrame (line 9391) | def insertFrame(self, format: QTextFrameFormat, /) -> QTextFrame: ... method insertHtml (line 9392) | def insertHtml(self, html: str, /) -> None: ... method insertImage (line 9394) | def insertImage(self, image: QImage, /, name: str = ...) -> None: ... method insertImage (line 9396) | def insertImage(self, format: QTextImageFormat, alignment: QTextFrameF... method insertImage (line 9398) | def insertImage(self, name: str, /) -> None: ... method insertImage (line 9400) | def insertImage(self, format: QTextImageFormat, /) -> None: ... method insertList (line 9402) | def insertList(self, style: QTextListFormat.Style, /) -> QTextList: ... method insertList (line 9404) | def insertList(self, format: QTextListFormat, /) -> QTextList: ... method insertMarkdown (line 9405) | def insertMarkdown(self, markdown: str, /, features: QTextDocument.Mar... method insertTable (line 9407) | def insertTable(self, rows: int, cols: int, format: QTextTableFormat, ... method insertTable (line 9409) | def insertTable(self, rows: int, cols: int, /) -> QTextTable: ... method insertText (line 9411) | def insertText(self, text: str, format: QTextCharFormat, /) -> None: ... method insertText (line 9413) | def insertText(self, text: str, /) -> None: ... method isCopyOf (line 9414) | def isCopyOf(self, other: QTextCursor, /) -> bool: ... method isNull (line 9415) | def isNull(self, /) -> bool: ... method joinPreviousEditBlock (line 9416) | def joinPreviousEditBlock(self, /) -> None: ... method keepPositionOnInsert (line 9417) | def keepPositionOnInsert(self, /) -> bool: ... method mergeBlockCharFormat (line 9418) | def mergeBlockCharFormat(self, modifier: QTextCharFormat, /) -> None: ... method mergeBlockFormat (line 9419) | def mergeBlockFormat(self, modifier: QTextBlockFormat, /) -> None: ... method mergeCharFormat (line 9420) | def mergeCharFormat(self, modifier: QTextCharFormat, /) -> None: ... method movePosition (line 9421) | def movePosition(self, op: QTextCursor.MoveOperation, /, arg__2: QText... method position (line 9422) | def position(self, /) -> int: ... method positionInBlock (line 9423) | def positionInBlock(self, /) -> int: ... method removeSelectedText (line 9424) | def removeSelectedText(self, /) -> None: ... method select (line 9425) | def select(self, selection: QTextCursor.SelectionType, /) -> None: ... method selectedTableCells (line 9426) | def selectedTableCells(self, /) -> typing.Any: ... method selectedText (line 9427) | def selectedText(self, /) -> str: ... method selection (line 9428) | def selection(self, /) -> QTextDocumentFragment: ... method selectionEnd (line 9429) | def selectionEnd(self, /) -> int: ... method selectionStart (line 9430) | def selectionStart(self, /) -> int: ... method setBlockCharFormat (line 9431) | def setBlockCharFormat(self, format: QTextCharFormat, /) -> None: ... method setBlockFormat (line 9432) | def setBlockFormat(self, format: QTextBlockFormat, /) -> None: ... method setCharFormat (line 9433) | def setCharFormat(self, format: QTextCharFormat, /) -> None: ... method setKeepPositionOnInsert (line 9434) | def setKeepPositionOnInsert(self, b: bool, /) -> None: ... method setPosition (line 9435) | def setPosition(self, pos: int, /, mode: QTextCursor.MoveMode = ...) -... method setVerticalMovementX (line 9436) | def setVerticalMovementX(self, x: int, /) -> None: ... method setVisualNavigation (line 9437) | def setVisualNavigation(self, b: bool, /) -> None: ... method swap (line 9438) | def swap(self, other: QTextCursor, /) -> None: ... method verticalMovementX (line 9439) | def verticalMovementX(self, /) -> int: ... method visualNavigation (line 9440) | def visualNavigation(self, /) -> bool: ... method __bool__ (line 9441) | def __bool__(self) -> bool: ... method __copy__ (line 9442) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9443) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9444) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9445) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9446) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9447) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9448) | def __ne__(self, other: object) -> bool: ... class QTextDocument (line 9450) | class QTextDocument(PySide6.QtCore.QObject): class FindFlag (line 9451) | class FindFlag(enum.Flag): class MarkdownFeature (line 9456) | class MarkdownFeature(enum.Flag): class MetaInformation (line 9461) | class MetaInformation(enum.Enum): class ResourceType (line 9467) | class ResourceType(enum.IntEnum): class Stacks (line 9475) | class Stacks(enum.Enum): method __init__ (line 9491) | def __init__(self, text: str, /, parent: PySide6.QtCore.QObject | None... method __init__ (line 9493) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addResource (line 9494) | def addResource(self, type: int, name: PySide6.QtCore.QUrl | str, reso... method adjustSize (line 9495) | def adjustSize(self, /) -> None: ... method allFormats (line 9496) | def allFormats(self, /) -> List[QTextFormat]: ... method availableRedoSteps (line 9497) | def availableRedoSteps(self, /) -> int: ... method availableUndoSteps (line 9498) | def availableUndoSteps(self, /) -> int: ... method baseUrl (line 9499) | def baseUrl(self, /) -> PySide6.QtCore.QUrl: ... method baselineOffset (line 9500) | def baselineOffset(self, /) -> float: ... method begin (line 9501) | def begin(self, /) -> QTextBlock: ... method blockCount (line 9502) | def blockCount(self, /) -> int: ... method characterAt (line 9503) | def characterAt(self, pos: int, /) -> str: ... method characterCount (line 9504) | def characterCount(self, /) -> int: ... method clear (line 9505) | def clear(self, /) -> None: ... method clearUndoRedoStacks (line 9506) | def clearUndoRedoStacks(self, /, historyToClear: QTextDocument.Stacks ... method clone (line 9507) | def clone(self, /, parent: PySide6.QtCore.QObject | None = ...) -> QTe... method createObject (line 9508) | def createObject(self, f: QTextFormat, /) -> QTextObject: ... method defaultCursorMoveStyle (line 9509) | def defaultCursorMoveStyle(self, /) -> PySide6.QtCore.Qt.CursorMoveSty... method defaultFont (line 9510) | def defaultFont(self, /) -> QFont: ... method defaultStyleSheet (line 9511) | def defaultStyleSheet(self, /) -> str: ... method defaultTextOption (line 9512) | def defaultTextOption(self, /) -> QTextOption: ... method documentLayout (line 9513) | def documentLayout(self, /) -> QAbstractTextDocumentLayout: ... method documentMargin (line 9514) | def documentMargin(self, /) -> float: ... method drawContents (line 9515) | def drawContents(self, painter: QPainter, /, rect: PySide6.QtCore.QRec... method end (line 9516) | def end(self, /) -> QTextBlock: ... method find (line 9518) | def find(self, subString: str, cursor: QTextCursor, /, options: QTextD... method find (line 9520) | def find(self, subString: str, /, from_: int | None = ..., options: QT... method find (line 9522) | def find(self, expr: PySide6.QtCore.QRegularExpression | str, cursor: ... method find (line 9524) | def find(self, expr: PySide6.QtCore.QRegularExpression | str, /, from_... method findBlock (line 9525) | def findBlock(self, pos: int, /) -> QTextBlock: ... method findBlockByLineNumber (line 9526) | def findBlockByLineNumber(self, blockNumber: int, /) -> QTextBlock: ... method findBlockByNumber (line 9527) | def findBlockByNumber(self, blockNumber: int, /) -> QTextBlock: ... method firstBlock (line 9528) | def firstBlock(self, /) -> QTextBlock: ... method frameAt (line 9529) | def frameAt(self, pos: int, /) -> QTextFrame: ... method idealWidth (line 9530) | def idealWidth(self, /) -> float: ... method indentWidth (line 9531) | def indentWidth(self, /) -> float: ... method isEmpty (line 9532) | def isEmpty(self, /) -> bool: ... method isLayoutEnabled (line 9533) | def isLayoutEnabled(self, /) -> bool: ... method isModified (line 9534) | def isModified(self, /) -> bool: ... method isRedoAvailable (line 9535) | def isRedoAvailable(self, /) -> bool: ... method isUndoAvailable (line 9536) | def isUndoAvailable(self, /) -> bool: ... method isUndoRedoEnabled (line 9537) | def isUndoRedoEnabled(self, /) -> bool: ... method lastBlock (line 9538) | def lastBlock(self, /) -> QTextBlock: ... method lineCount (line 9539) | def lineCount(self, /) -> int: ... method loadResource (line 9540) | def loadResource(self, type: int, name: PySide6.QtCore.QUrl | str, /) ... method markContentsDirty (line 9541) | def markContentsDirty(self, from_: int, length: int, /) -> None: ... method maximumBlockCount (line 9542) | def maximumBlockCount(self, /) -> int: ... method metaInformation (line 9543) | def metaInformation(self, info: QTextDocument.MetaInformation, /) -> s... method object (line 9544) | def object(self, objectIndex: int, /) -> QTextObject: ... method objectForFormat (line 9545) | def objectForFormat(self, arg__1: QTextFormat, /) -> QTextObject: ... method pageCount (line 9546) | def pageCount(self, /) -> int: ... method pageSize (line 9547) | def pageSize(self, /) -> PySide6.QtCore.QSizeF: ... method print_ (line 9548) | def print_(self, printer: QPagedPaintDevice, /) -> None: ... method redo (line 9550) | def redo(self, cursor: QTextCursor, /) -> None: ... method redo (line 9552) | def redo(self, /) -> None: ... method resource (line 9553) | def resource(self, type: int, name: PySide6.QtCore.QUrl | str, /) -> A... method revision (line 9554) | def revision(self, /) -> int: ... method rootFrame (line 9555) | def rootFrame(self, /) -> QTextFrame: ... method setBaseUrl (line 9556) | def setBaseUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setBaselineOffset (line 9557) | def setBaselineOffset(self, baseline: float, /) -> None: ... method setDefaultCursorMoveStyle (line 9558) | def setDefaultCursorMoveStyle(self, style: PySide6.QtCore.Qt.CursorMov... method setDefaultFont (line 9559) | def setDefaultFont(self, font: QFont | str | typing.Iterable[str], /) ... method setDefaultStyleSheet (line 9560) | def setDefaultStyleSheet(self, sheet: str, /) -> None: ... method setDefaultTextOption (line 9561) | def setDefaultTextOption(self, option: QTextOption | PySide6.QtCore.Qt... method setDocumentLayout (line 9562) | def setDocumentLayout(self, layout: QAbstractTextDocumentLayout, /) ->... method setDocumentMargin (line 9563) | def setDocumentMargin(self, margin: float, /) -> None: ... method setHtml (line 9564) | def setHtml(self, html: str, /) -> None: ... method setIndentWidth (line 9565) | def setIndentWidth(self, width: float, /) -> None: ... method setLayoutEnabled (line 9566) | def setLayoutEnabled(self, b: bool, /) -> None: ... method setMarkdown (line 9567) | def setMarkdown(self, markdown: str, /, features: QTextDocument.Markdo... method setMaximumBlockCount (line 9568) | def setMaximumBlockCount(self, maximum: int, /) -> None: ... method setMetaInformation (line 9569) | def setMetaInformation(self, info: QTextDocument.MetaInformation, arg_... method setModified (line 9570) | def setModified(self, /, m: bool = ...) -> None: ... method setPageSize (line 9571) | def setPageSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSi... method setPlainText (line 9572) | def setPlainText(self, text: str, /) -> None: ... method setSubScriptBaseline (line 9573) | def setSubScriptBaseline(self, baseline: float, /) -> None: ... method setSuperScriptBaseline (line 9574) | def setSuperScriptBaseline(self, baseline: float, /) -> None: ... method setTextWidth (line 9575) | def setTextWidth(self, width: float, /) -> None: ... method setUndoRedoEnabled (line 9576) | def setUndoRedoEnabled(self, enable: bool, /) -> None: ... method setUseDesignMetrics (line 9577) | def setUseDesignMetrics(self, b: bool, /) -> None: ... method size (line 9578) | def size(self, /) -> PySide6.QtCore.QSizeF: ... method subScriptBaseline (line 9579) | def subScriptBaseline(self, /) -> float: ... method superScriptBaseline (line 9580) | def superScriptBaseline(self, /) -> float: ... method textWidth (line 9581) | def textWidth(self, /) -> float: ... method toHtml (line 9582) | def toHtml(self, /) -> str: ... method toMarkdown (line 9583) | def toMarkdown(self, /, features: QTextDocument.MarkdownFeature = ...)... method toPlainText (line 9584) | def toPlainText(self, /) -> str: ... method toRawText (line 9585) | def toRawText(self, /) -> str: ... method undo (line 9587) | def undo(self, cursor: QTextCursor, /) -> None: ... method undo (line 9589) | def undo(self, /) -> None: ... method useDesignMetrics (line 9590) | def useDesignMetrics(self, /) -> bool: ... class QTextDocumentFragment (line 9592) | class QTextDocumentFragment(shiboken6.Object): method __init__ (line 9594) | def __init__(self, rhs: QTextDocumentFragment, /) -> None: ... method __init__ (line 9596) | def __init__(self, range: QTextCursor, /) -> None: ... method __init__ (line 9598) | def __init__(self, document: QTextDocument, /) -> None: ... method __init__ (line 9600) | def __init__(self, /) -> None: ... method fromHtml (line 9602) | def fromHtml(html: str, /, resourceProvider: QTextDocument | None = ..... method fromMarkdown (line 9604) | def fromMarkdown(markdown: str, /, features: QTextDocument.MarkdownFea... method fromPlainText (line 9606) | def fromPlainText(plainText: str, /) -> QTextDocumentFragment: ... method isEmpty (line 9607) | def isEmpty(self, /) -> bool: ... method toHtml (line 9608) | def toHtml(self, /) -> str: ... method toMarkdown (line 9609) | def toMarkdown(self, /, features: QTextDocument.MarkdownFeature = ...)... method toPlainText (line 9610) | def toPlainText(self, /) -> str: ... method toRawText (line 9611) | def toRawText(self, /) -> str: ... method __copy__ (line 9612) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextDocumentWriter (line 9614) | class QTextDocumentWriter(shiboken6.Object): method __init__ (line 9616) | def __init__(self, fileName: str, /, format: PySide6.QtCore.QByteArray... method __init__ (line 9618) | def __init__(self, device: PySide6.QtCore.QIODevice, format: PySide6.Q... method __init__ (line 9620) | def __init__(self, /) -> None: ... method device (line 9621) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method fileName (line 9622) | def fileName(self, /) -> str: ... method format (line 9623) | def format(self, /) -> PySide6.QtCore.QByteArray: ... method setDevice (line 9624) | def setDevice(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method setFileName (line 9625) | def setFileName(self, fileName: str, /) -> None: ... method setFormat (line 9626) | def setFormat(self, format: PySide6.QtCore.QByteArray | bytes | bytear... method supportedDocumentFormats (line 9628) | def supportedDocumentFormats() -> List[PySide6.QtCore.QByteArray]: ... method write (line 9630) | def write(self, fragment: QTextDocumentFragment, /) -> bool: ... method write (line 9632) | def write(self, document: QTextDocument, /) -> bool: ... class QTextFormat (line 9634) | class QTextFormat(shiboken6.Object): class FormatType (line 9635) | class FormatType(enum.IntEnum): class ObjectTypes (line 9643) | class ObjectTypes(enum.IntEnum): class PageBreakFlag (line 9650) | class PageBreakFlag(enum.Flag): class Property (line 9655) | class Property(enum.IntEnum): method __init__ (line 9771) | def __init__(self, type: int, /) -> None: ... method __init__ (line 9773) | def __init__(self, rhs: QTextFormat, /) -> None: ... method __init__ (line 9775) | def __init__(self, /) -> None: ... method background (line 9776) | def background(self, /) -> QBrush: ... method boolProperty (line 9777) | def boolProperty(self, propertyId: int, /) -> bool: ... method brushProperty (line 9778) | def brushProperty(self, propertyId: int, /) -> QBrush: ... method clearBackground (line 9779) | def clearBackground(self, /) -> None: ... method clearForeground (line 9780) | def clearForeground(self, /) -> None: ... method clearProperty (line 9781) | def clearProperty(self, propertyId: int, /) -> None: ... method colorProperty (line 9782) | def colorProperty(self, propertyId: int, /) -> QColor: ... method doubleProperty (line 9783) | def doubleProperty(self, propertyId: int, /) -> float: ... method foreground (line 9784) | def foreground(self, /) -> QBrush: ... method hasProperty (line 9785) | def hasProperty(self, propertyId: int, /) -> bool: ... method intProperty (line 9786) | def intProperty(self, propertyId: int, /) -> int: ... method isBlockFormat (line 9787) | def isBlockFormat(self, /) -> bool: ... method isCharFormat (line 9788) | def isCharFormat(self, /) -> bool: ... method isEmpty (line 9789) | def isEmpty(self, /) -> bool: ... method isFrameFormat (line 9790) | def isFrameFormat(self, /) -> bool: ... method isImageFormat (line 9791) | def isImageFormat(self, /) -> bool: ... method isListFormat (line 9792) | def isListFormat(self, /) -> bool: ... method isTableCellFormat (line 9793) | def isTableCellFormat(self, /) -> bool: ... method isTableFormat (line 9794) | def isTableFormat(self, /) -> bool: ... method isValid (line 9795) | def isValid(self, /) -> bool: ... method layoutDirection (line 9796) | def layoutDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method lengthProperty (line 9797) | def lengthProperty(self, propertyId: int, /) -> QTextLength: ... method lengthVectorProperty (line 9798) | def lengthVectorProperty(self, propertyId: int, /) -> List[QTextLength... method merge (line 9799) | def merge(self, other: QTextFormat, /) -> None: ... method objectIndex (line 9800) | def objectIndex(self, /) -> int: ... method objectType (line 9801) | def objectType(self, /) -> int: ... method penProperty (line 9802) | def penProperty(self, propertyId: int, /) -> QPen: ... method properties (line 9803) | def properties(self, /) -> Dict[int, Any]: ... method property (line 9804) | def property(self, propertyId: int, /) -> Any: ... method propertyCount (line 9805) | def propertyCount(self, /) -> int: ... method setBackground (line 9806) | def setBackground(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle |... method setForeground (line 9807) | def setForeground(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle |... method setLayoutDirection (line 9808) | def setLayoutDirection(self, direction: PySide6.QtCore.Qt.LayoutDirect... method setObjectIndex (line 9809) | def setObjectIndex(self, object: int, /) -> None: ... method setObjectType (line 9810) | def setObjectType(self, type: int, /) -> None: ... method setProperty (line 9812) | def setProperty(self, propertyId: int, value: Any, /) -> None: ... method setProperty (line 9814) | def setProperty(self, propertyId: int, lengths: typing.Iterable[QTextL... method stringProperty (line 9815) | def stringProperty(self, propertyId: int, /) -> str: ... method swap (line 9816) | def swap(self, other: QTextFormat, /) -> None: ... method toBlockFormat (line 9817) | def toBlockFormat(self, /) -> QTextBlockFormat: ... method toCharFormat (line 9818) | def toCharFormat(self, /) -> QTextCharFormat: ... method toFrameFormat (line 9819) | def toFrameFormat(self, /) -> QTextFrameFormat: ... method toImageFormat (line 9820) | def toImageFormat(self, /) -> QTextImageFormat: ... method toListFormat (line 9821) | def toListFormat(self, /) -> QTextListFormat: ... method toTableCellFormat (line 9822) | def toTableCellFormat(self, /) -> QTextTableCellFormat: ... method toTableFormat (line 9823) | def toTableFormat(self, /) -> QTextTableFormat: ... method type (line 9824) | def type(self, /) -> int: ... method __copy__ (line 9825) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9826) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9827) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9828) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9829) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9830) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9831) | def __ne__(self, other: object) -> bool: ... class QTextFragment (line 9833) | class QTextFragment(shiboken6.Object): method __init__ (line 9835) | def __init__(self, o: QTextFragment, /) -> None: ... method __init__ (line 9837) | def __init__(self, /) -> None: ... method charFormat (line 9838) | def charFormat(self, /) -> QTextCharFormat: ... method charFormatIndex (line 9839) | def charFormatIndex(self, /) -> int: ... method contains (line 9840) | def contains(self, position: int, /) -> bool: ... method glyphRuns (line 9841) | def glyphRuns(self, /, from_: int = ..., length: int = ...) -> List[QG... method isValid (line 9842) | def isValid(self, /) -> bool: ... method length (line 9843) | def length(self, /) -> int: ... method position (line 9844) | def position(self, /) -> int: ... method text (line 9845) | def text(self, /) -> str: ... method __copy__ (line 9846) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9847) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9848) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9849) | def __gt__(self, other: object) -> bool: ... method __le__ (line 9850) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9851) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9852) | def __ne__(self, other: object) -> bool: ... class QTextFrame (line 9854) | class QTextFrame(QTextObject): class iterator (line 9855) | class iterator(shiboken6.Object): method __init__ (line 9857) | def __init__(self, iterator: QTextFrame.iterator, /) -> None: ... method __init__ (line 9859) | def __init__(self, /) -> None: ... method atEnd (line 9860) | def atEnd(self, /) -> bool: ... method currentBlock (line 9861) | def currentBlock(self, /) -> QTextBlock: ... method currentFrame (line 9862) | def currentFrame(self, /) -> QTextFrame: ... method parentFrame (line 9863) | def parentFrame(self, /) -> QTextFrame: ... method __copy__ (line 9864) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 9865) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9866) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9867) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 9868) | def __iadd__(self, arg__1: int, /) -> QTextFrame.iterator: ... method __isub__ (line 9869) | def __isub__(self, arg__1: int, /) -> QTextFrame.iterator: ... method __iter__ (line 9870) | def __iter__(self, /) -> typing.Iterator: ... method __le__ (line 9871) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9872) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9873) | def __ne__(self, other: object) -> bool: ... method __next__ (line 9874) | def __next__(self, /) -> typing.Any: ... method __init__ (line 9876) | def __init__(self, doc: QTextDocument, /, destroyed: typing.Callable =... method begin (line 9877) | def begin(self, /) -> QTextFrame.iterator: ... method childFrames (line 9878) | def childFrames(self, /) -> List[QTextFrame]: ... method end (line 9879) | def end(self, /) -> QTextFrame.iterator: ... method firstCursorPosition (line 9880) | def firstCursorPosition(self, /) -> QTextCursor: ... method firstPosition (line 9881) | def firstPosition(self, /) -> int: ... method frameFormat (line 9882) | def frameFormat(self, /) -> QTextFrameFormat: ... method lastCursorPosition (line 9883) | def lastCursorPosition(self, /) -> QTextCursor: ... method lastPosition (line 9884) | def lastPosition(self, /) -> int: ... method parentFrame (line 9885) | def parentFrame(self, /) -> QTextFrame: ... method setFrameFormat (line 9886) | def setFrameFormat(self, format: QTextFrameFormat, /) -> None: ... method __iter__ (line 9887) | def __iter__(self, /) -> typing.Iterator: ... class QTextFrameFormat (line 9889) | class QTextFrameFormat(QTextFormat): class BorderStyle (line 9890) | class BorderStyle(enum.Enum): class Position (line 9903) | class Position(enum.Enum): method __init__ (line 9908) | def __init__(self, fmt: QTextFormat, /) -> None: ... method __init__ (line 9910) | def __init__(self, QTextFrameFormat: QTextFrameFormat, /) -> None: ...... method __init__ (line 9912) | def __init__(self, /) -> None: ... method border (line 9913) | def border(self, /) -> float: ... method borderBrush (line 9914) | def borderBrush(self, /) -> QBrush: ... method borderStyle (line 9915) | def borderStyle(self, /) -> QTextFrameFormat.BorderStyle: ... method bottomMargin (line 9916) | def bottomMargin(self, /) -> float: ... method height (line 9917) | def height(self, /) -> QTextLength: ... method isValid (line 9918) | def isValid(self, /) -> bool: ... method leftMargin (line 9919) | def leftMargin(self, /) -> float: ... method margin (line 9920) | def margin(self, /) -> float: ... method padding (line 9921) | def padding(self, /) -> float: ... method pageBreakPolicy (line 9922) | def pageBreakPolicy(self, /) -> QTextFormat.PageBreakFlag: ... method position (line 9923) | def position(self, /) -> QTextFrameFormat.Position: ... method rightMargin (line 9924) | def rightMargin(self, /) -> float: ... method setBorder (line 9925) | def setBorder(self, border: float, /) -> None: ... method setBorderBrush (line 9926) | def setBorderBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle ... method setBorderStyle (line 9927) | def setBorderStyle(self, style: QTextFrameFormat.BorderStyle, /) -> No... method setBottomMargin (line 9928) | def setBottomMargin(self, margin: float, /) -> None: ... method setHeight (line 9930) | def setHeight(self, height: QTextLength, /) -> None: ... method setHeight (line 9932) | def setHeight(self, height: float, /) -> None: ... method setLeftMargin (line 9933) | def setLeftMargin(self, margin: float, /) -> None: ... method setMargin (line 9934) | def setMargin(self, margin: float, /) -> None: ... method setPadding (line 9935) | def setPadding(self, padding: float, /) -> None: ... method setPageBreakPolicy (line 9936) | def setPageBreakPolicy(self, flags: QTextFormat.PageBreakFlag, /) -> N... method setPosition (line 9937) | def setPosition(self, f: QTextFrameFormat.Position, /) -> None: ... method setRightMargin (line 9938) | def setRightMargin(self, margin: float, /) -> None: ... method setTopMargin (line 9939) | def setTopMargin(self, margin: float, /) -> None: ... method setWidth (line 9941) | def setWidth(self, width: float, /) -> None: ... method setWidth (line 9943) | def setWidth(self, length: QTextLength, /) -> None: ... method topMargin (line 9944) | def topMargin(self, /) -> float: ... method width (line 9945) | def width(self, /) -> QTextLength: ... method __copy__ (line 9946) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextImageFormat (line 9948) | class QTextImageFormat(QTextCharFormat): method __init__ (line 9950) | def __init__(self, format: QTextFormat, /) -> None: ... method __init__ (line 9952) | def __init__(self, QTextImageFormat: QTextImageFormat, /) -> None: ...... method __init__ (line 9954) | def __init__(self, /) -> None: ... method height (line 9955) | def height(self, /) -> float: ... method isValid (line 9956) | def isValid(self, /) -> bool: ... method maximumWidth (line 9957) | def maximumWidth(self, /) -> QTextLength: ... method name (line 9958) | def name(self, /) -> str: ... method quality (line 9959) | def quality(self, /) -> int: ... method setHeight (line 9960) | def setHeight(self, height: float, /) -> None: ... method setMaximumWidth (line 9961) | def setMaximumWidth(self, maxWidth: QTextLength, /) -> None: ... method setName (line 9962) | def setName(self, name: str, /) -> None: ... method setQuality (line 9964) | def setQuality(self, quality: int, /) -> None: ... method setQuality (line 9966) | def setQuality(self, /) -> None: ... method setWidth (line 9967) | def setWidth(self, width: float, /) -> None: ... method width (line 9968) | def width(self, /) -> float: ... method __copy__ (line 9969) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextInlineObject (line 9971) | class QTextInlineObject(shiboken6.Object): method __init__ (line 9973) | def __init__(self, QTextInlineObject: QTextInlineObject, /) -> None: ... method __init__ (line 9975) | def __init__(self, /) -> None: ... method ascent (line 9976) | def ascent(self, /) -> float: ... method descent (line 9977) | def descent(self, /) -> float: ... method format (line 9978) | def format(self, /) -> QTextFormat: ... method formatIndex (line 9979) | def formatIndex(self, /) -> int: ... method height (line 9980) | def height(self, /) -> float: ... method isValid (line 9981) | def isValid(self, /) -> bool: ... method rect (line 9982) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setAscent (line 9983) | def setAscent(self, a: float, /) -> None: ... method setDescent (line 9984) | def setDescent(self, d: float, /) -> None: ... method setWidth (line 9985) | def setWidth(self, w: float, /) -> None: ... method textDirection (line 9986) | def textDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method textPosition (line 9987) | def textPosition(self, /) -> int: ... method width (line 9988) | def width(self, /) -> float: ... method __copy__ (line 9989) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextItem (line 9991) | class QTextItem(shiboken6.Object): class RenderFlag (line 9992) | class RenderFlag(enum.Flag): method __init__ (line 9998) | def __init__(self, /) -> None: ... method ascent (line 9999) | def ascent(self, /) -> float: ... method descent (line 10000) | def descent(self, /) -> float: ... method font (line 10001) | def font(self, /) -> QFont: ... method renderFlags (line 10002) | def renderFlags(self, /) -> QTextItem.RenderFlag: ... method text (line 10003) | def text(self, /) -> str: ... method width (line 10004) | def width(self, /) -> float: ... class QTextLayout (line 10006) | class QTextLayout(shiboken6.Object): class CursorMode (line 10007) | class CursorMode(enum.Enum): class FormatRange (line 10011) | class FormatRange(shiboken6.Object): method __init__ (line 10016) | def __init__(self, FormatRange: QTextLayout.FormatRange, /) -> None:... method __init__ (line 10018) | def __init__(self, /) -> None: ... method __copy__ (line 10019) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10020) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10021) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10022) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10023) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10024) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10025) | def __ne__(self, other: object) -> bool: ... class GlyphRunRetrievalFlag (line 10027) | class GlyphRunRetrievalFlag(enum.Flag): method __init__ (line 10035) | def __init__(self, text: str, font: QFont | str | typing.Iterable[str]... method __init__ (line 10037) | def __init__(self, text: str, /) -> None: ... method __init__ (line 10039) | def __init__(self, b: QTextBlock, /) -> None: ... method __init__ (line 10041) | def __init__(self, /) -> None: ... method beginLayout (line 10042) | def beginLayout(self, /) -> None: ... method boundingRect (line 10043) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method cacheEnabled (line 10044) | def cacheEnabled(self, /) -> bool: ... method clearFormats (line 10045) | def clearFormats(self, /) -> None: ... method clearLayout (line 10046) | def clearLayout(self, /) -> None: ... method createLine (line 10047) | def createLine(self, /) -> QTextLine: ... method cursorMoveStyle (line 10048) | def cursorMoveStyle(self, /) -> PySide6.QtCore.Qt.CursorMoveStyle: ... method draw (line 10049) | def draw(self, p: QPainter, pos: PySide6.QtCore.QPointF | PySide6.QtCo... method drawCursor (line 10051) | def drawCursor(self, p: QPainter, pos: PySide6.QtCore.QPointF | PySide... method drawCursor (line 10053) | def drawCursor(self, p: QPainter, pos: PySide6.QtCore.QPointF | PySide... method endLayout (line 10054) | def endLayout(self, /) -> None: ... method font (line 10055) | def font(self, /) -> QFont: ... method formats (line 10056) | def formats(self, /) -> List[QTextLayout.FormatRange]: ... method glyphRuns (line 10058) | def glyphRuns(self, from_: int, length: int, flags: QTextLayout.GlyphR... method glyphRuns (line 10060) | def glyphRuns(self, /, from_: int = ..., length: int = ...) -> List[QG... method isValidCursorPosition (line 10061) | def isValidCursorPosition(self, pos: int, /) -> bool: ... method leftCursorPosition (line 10062) | def leftCursorPosition(self, oldPos: int, /) -> int: ... method lineAt (line 10063) | def lineAt(self, i: int, /) -> QTextLine: ... method lineCount (line 10064) | def lineCount(self, /) -> int: ... method lineForTextPosition (line 10065) | def lineForTextPosition(self, pos: int, /) -> QTextLine: ... method maximumWidth (line 10066) | def maximumWidth(self, /) -> float: ... method minimumWidth (line 10067) | def minimumWidth(self, /) -> float: ... method nextCursorPosition (line 10068) | def nextCursorPosition(self, oldPos: int, /, mode: QTextLayout.CursorM... method position (line 10069) | def position(self, /) -> PySide6.QtCore.QPointF: ... method preeditAreaPosition (line 10070) | def preeditAreaPosition(self, /) -> int: ... method preeditAreaText (line 10071) | def preeditAreaText(self, /) -> str: ... method previousCursorPosition (line 10072) | def previousCursorPosition(self, oldPos: int, /, mode: QTextLayout.Cur... method rightCursorPosition (line 10073) | def rightCursorPosition(self, oldPos: int, /) -> int: ... method setCacheEnabled (line 10074) | def setCacheEnabled(self, enable: bool, /) -> None: ... method setCursorMoveStyle (line 10075) | def setCursorMoveStyle(self, style: PySide6.QtCore.Qt.CursorMoveStyle,... method setFlags (line 10076) | def setFlags(self, flags: typing.SupportsInt, /) -> None: ... method setFont (line 10077) | def setFont(self, f: QFont | str | typing.Iterable[str], /) -> None: ... method setFormats (line 10078) | def setFormats(self, overrides: typing.Iterable[QTextLayout.FormatRang... method setPosition (line 10079) | def setPosition(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method setPreeditArea (line 10080) | def setPreeditArea(self, position: int, text: str, /) -> None: ... method setRawFont (line 10081) | def setRawFont(self, rawFont: QRawFont, /) -> None: ... method setText (line 10082) | def setText(self, string: str, /) -> None: ... method setTextOption (line 10083) | def setTextOption(self, option: QTextOption | PySide6.QtCore.Qt.Alignm... method text (line 10084) | def text(self, /) -> str: ... method textOption (line 10085) | def textOption(self, /) -> QTextOption: ... class QTextLength (line 10087) | class QTextLength(shiboken6.Object): class Type (line 10088) | class Type(enum.Enum): method __init__ (line 10093) | def __init__(self, type: QTextLength.Type, value: float, /) -> None: ... method __init__ (line 10095) | def __init__(self, QTextLength: QTextLength, /) -> None: ... method __init__ (line 10097) | def __init__(self, /) -> None: ... method rawValue (line 10098) | def rawValue(self, /) -> float: ... method type (line 10099) | def type(self, /) -> QTextLength.Type: ... method value (line 10100) | def value(self, maximumLength: float, /) -> float: ... method __copy__ (line 10101) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10102) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10103) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10104) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10105) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10106) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10107) | def __ne__(self, other: object) -> bool: ... class QTextLine (line 10109) | class QTextLine(shiboken6.Object): class CursorPosition (line 10110) | class CursorPosition(enum.Enum): class Edge (line 10114) | class Edge(enum.Enum): method __init__ (line 10118) | def __init__(self, QTextLine: QTextLine, /) -> None: ... method __init__ (line 10120) | def __init__(self, /) -> None: ... method ascent (line 10121) | def ascent(self, /) -> float: ... method cursorToX (line 10122) | def cursorToX(self, cursorPos: int, /, edge: QTextLine.Edge = ...) -> ... method descent (line 10123) | def descent(self, /) -> float: ... method draw (line 10124) | def draw(self, painter: QPainter, position: PySide6.QtCore.QPointF | P... method glyphRuns (line 10126) | def glyphRuns(self, from_: int, length: int, flags: QTextLayout.GlyphR... method glyphRuns (line 10128) | def glyphRuns(self, /, from_: int = ..., length: int = ...) -> List[QG... method height (line 10129) | def height(self, /) -> float: ... method horizontalAdvance (line 10130) | def horizontalAdvance(self, /) -> float: ... method isValid (line 10131) | def isValid(self, /) -> bool: ... method leading (line 10132) | def leading(self, /) -> float: ... method leadingIncluded (line 10133) | def leadingIncluded(self, /) -> bool: ... method lineNumber (line 10134) | def lineNumber(self, /) -> int: ... method naturalTextRect (line 10135) | def naturalTextRect(self, /) -> PySide6.QtCore.QRectF: ... method naturalTextWidth (line 10136) | def naturalTextWidth(self, /) -> float: ... method position (line 10137) | def position(self, /) -> PySide6.QtCore.QPointF: ... method rect (line 10138) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setLeadingIncluded (line 10139) | def setLeadingIncluded(self, included: bool, /) -> None: ... method setLineWidth (line 10140) | def setLineWidth(self, width: float, /) -> None: ... method setNumColumns (line 10142) | def setNumColumns(self, columns: int, alignmentWidth: float, /) -> Non... method setNumColumns (line 10144) | def setNumColumns(self, columns: int, /) -> None: ... method setPosition (line 10145) | def setPosition(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method textLength (line 10146) | def textLength(self, /) -> int: ... method textStart (line 10147) | def textStart(self, /) -> int: ... method width (line 10148) | def width(self, /) -> float: ... method x (line 10149) | def x(self, /) -> float: ... method xToCursor (line 10150) | def xToCursor(self, x: float, /, edge: QTextLine.CursorPosition = ...)... method y (line 10151) | def y(self, /) -> float: ... method __copy__ (line 10152) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextList (line 10154) | class QTextList(QTextBlockGroup): method __init__ (line 10156) | def __init__(self, doc: QTextDocument, /, destroyed: typing.Callable =... method add (line 10157) | def add(self, block: QTextBlock, /) -> None: ... method count (line 10158) | def count(self, /) -> int: ... method format (line 10159) | def format(self, /) -> QTextListFormat: ... method item (line 10160) | def item(self, i: int, /) -> QTextBlock: ... method itemNumber (line 10161) | def itemNumber(self, arg__1: QTextBlock, /) -> int: ... method itemText (line 10162) | def itemText(self, arg__1: QTextBlock, /) -> str: ... method remove (line 10163) | def remove(self, arg__1: QTextBlock, /) -> None: ... method removeItem (line 10164) | def removeItem(self, i: int, /) -> None: ... method setFormat (line 10165) | def setFormat(self, format: QTextListFormat, /) -> None: ... # type: ... class QTextListFormat (line 10167) | class QTextListFormat(QTextFormat): class Style (line 10168) | class Style(enum.Enum): method __init__ (line 10179) | def __init__(self, fmt: QTextFormat, /) -> None: ... method __init__ (line 10181) | def __init__(self, QTextListFormat: QTextListFormat, /) -> None: ... ... method __init__ (line 10183) | def __init__(self, /) -> None: ... method indent (line 10184) | def indent(self, /) -> int: ... method isValid (line 10185) | def isValid(self, /) -> bool: ... method numberPrefix (line 10186) | def numberPrefix(self, /) -> str: ... method numberSuffix (line 10187) | def numberSuffix(self, /) -> str: ... method setIndent (line 10188) | def setIndent(self, indent: int, /) -> None: ... method setNumberPrefix (line 10189) | def setNumberPrefix(self, numberPrefix: str, /) -> None: ... method setNumberSuffix (line 10190) | def setNumberSuffix(self, numberSuffix: str, /) -> None: ... method setStart (line 10191) | def setStart(self, indent: int, /) -> None: ... method setStyle (line 10192) | def setStyle(self, style: QTextListFormat.Style, /) -> None: ... method start (line 10193) | def start(self, /) -> int: ... method style (line 10194) | def style(self, /) -> QTextListFormat.Style: ... method __copy__ (line 10195) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextObject (line 10197) | class QTextObject(PySide6.QtCore.QObject): method __init__ (line 10199) | def __init__(self, doc: QTextDocument, /, destroyed: typing.Callable =... method document (line 10200) | def document(self, /) -> QTextDocument: ... method format (line 10201) | def format(self, /) -> QTextFormat: ... method formatIndex (line 10202) | def formatIndex(self, /) -> int: ... method objectIndex (line 10203) | def objectIndex(self, /) -> int: ... method setFormat (line 10204) | def setFormat(self, format: QTextFormat, /) -> None: ... class QTextObjectInterface (line 10206) | class QTextObjectInterface(shiboken6.Object): method __init__ (line 10207) | def __init__(self, /) -> None: ... method drawObject (line 10208) | def drawObject(self, painter: QPainter, rect: PySide6.QtCore.QRectF | ... method intrinsicSize (line 10209) | def intrinsicSize(self, doc: QTextDocument, posInDocument: int, format... class QTextOption (line 10211) | class QTextOption(shiboken6.Object): class Flag (line 10212) | class Flag(enum.Flag): class Tab (line 10222) | class Tab(shiboken6.Object): method __init__ (line 10227) | def __init__(self, pos: float, tabType: QTextOption.TabType, /, deli... method __init__ (line 10229) | def __init__(self, Tab: QTextOption.Tab, /) -> None: ... method __init__ (line 10231) | def __init__(self, /) -> None: ... method __copy__ (line 10232) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10233) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10234) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10235) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10236) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10237) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10238) | def __ne__(self, other: object) -> bool: ... class TabType (line 10240) | class TabType(enum.Enum): class WrapMode (line 10246) | class WrapMode(enum.Enum): method __init__ (line 10253) | def __init__(self, o: QTextOption, /) -> None: ... method __init__ (line 10255) | def __init__(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) -> N... method __init__ (line 10257) | def __init__(self, /) -> None: ... method alignment (line 10258) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method flags (line 10259) | def flags(self, /) -> QTextOption.Flag: ... method setAlignment (line 10260) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setFlags (line 10261) | def setFlags(self, flags: QTextOption.Flag, /) -> None: ... method setTabArray (line 10262) | def setTabArray(self, tabStops: typing.Iterable[float], /) -> None: ... method setTabStopDistance (line 10263) | def setTabStopDistance(self, tabStopDistance: float, /) -> None: ... method setTabs (line 10264) | def setTabs(self, tabStops: typing.Iterable[QTextOption.Tab], /) -> No... method setTextDirection (line 10265) | def setTextDirection(self, aDirection: PySide6.QtCore.Qt.LayoutDirecti... method setUseDesignMetrics (line 10266) | def setUseDesignMetrics(self, b: bool, /) -> None: ... method setWrapMode (line 10267) | def setWrapMode(self, wrap: QTextOption.WrapMode, /) -> None: ... method tabArray (line 10268) | def tabArray(self, /) -> List[float]: ... method tabStopDistance (line 10269) | def tabStopDistance(self, /) -> float: ... method tabs (line 10270) | def tabs(self, /) -> List[QTextOption.Tab]: ... method textDirection (line 10271) | def textDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method useDesignMetrics (line 10272) | def useDesignMetrics(self, /) -> bool: ... method wrapMode (line 10273) | def wrapMode(self, /) -> QTextOption.WrapMode: ... method __copy__ (line 10274) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextTable (line 10276) | class QTextTable(QTextFrame): method __init__ (line 10278) | def __init__(self, doc: QTextDocument, /, destroyed: typing.Callable =... method appendColumns (line 10279) | def appendColumns(self, count: int, /) -> None: ... method appendRows (line 10280) | def appendRows(self, count: int, /) -> None: ... method cellAt (line 10282) | def cellAt(self, row: int, col: int, /) -> QTextTableCell: ... method cellAt (line 10284) | def cellAt(self, position: int, /) -> QTextTableCell: ... method cellAt (line 10286) | def cellAt(self, c: QTextCursor, /) -> QTextTableCell: ... method columns (line 10287) | def columns(self, /) -> int: ... method format (line 10288) | def format(self, /) -> QTextTableFormat: ... method insertColumns (line 10289) | def insertColumns(self, pos: int, num: int, /) -> None: ... method insertRows (line 10290) | def insertRows(self, pos: int, num: int, /) -> None: ... method mergeCells (line 10292) | def mergeCells(self, row: int, col: int, numRows: int, numCols: int, /... method mergeCells (line 10294) | def mergeCells(self, cursor: QTextCursor, /) -> None: ... method removeColumns (line 10295) | def removeColumns(self, pos: int, num: int, /) -> None: ... method removeRows (line 10296) | def removeRows(self, pos: int, num: int, /) -> None: ... method resize (line 10297) | def resize(self, rows: int, cols: int, /) -> None: ... method rowEnd (line 10298) | def rowEnd(self, c: QTextCursor, /) -> QTextCursor: ... method rowStart (line 10299) | def rowStart(self, c: QTextCursor, /) -> QTextCursor: ... method rows (line 10300) | def rows(self, /) -> int: ... method setFormat (line 10301) | def setFormat(self, format: QTextTableFormat, /) -> None: ... # type:... method splitCell (line 10302) | def splitCell(self, row: int, col: int, numRows: int, numCols: int, /)... class QTextTableCell (line 10304) | class QTextTableCell(shiboken6.Object): method __init__ (line 10306) | def __init__(self, o: QTextTableCell, /) -> None: ... method __init__ (line 10308) | def __init__(self, /) -> None: ... method begin (line 10309) | def begin(self, /) -> QTextFrame.iterator: ... method column (line 10310) | def column(self, /) -> int: ... method columnSpan (line 10311) | def columnSpan(self, /) -> int: ... method end (line 10312) | def end(self, /) -> QTextFrame.iterator: ... method firstCursorPosition (line 10313) | def firstCursorPosition(self, /) -> QTextCursor: ... method firstPosition (line 10314) | def firstPosition(self, /) -> int: ... method format (line 10315) | def format(self, /) -> QTextCharFormat: ... method isValid (line 10316) | def isValid(self, /) -> bool: ... method lastCursorPosition (line 10317) | def lastCursorPosition(self, /) -> QTextCursor: ... method lastPosition (line 10318) | def lastPosition(self, /) -> int: ... method row (line 10319) | def row(self, /) -> int: ... method rowSpan (line 10320) | def rowSpan(self, /) -> int: ... method setFormat (line 10321) | def setFormat(self, format: QTextCharFormat, /) -> None: ... method tableCellFormatIndex (line 10322) | def tableCellFormatIndex(self, /) -> int: ... method __copy__ (line 10323) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10324) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10325) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10326) | def __gt__(self, other: object) -> bool: ... method __le__ (line 10327) | def __le__(self, other: object) -> bool: ... method __lt__ (line 10328) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 10329) | def __ne__(self, other: object) -> bool: ... class QTextTableCellFormat (line 10331) | class QTextTableCellFormat(QTextCharFormat): method __init__ (line 10333) | def __init__(self, fmt: QTextFormat, /) -> None: ... method __init__ (line 10335) | def __init__(self, QTextTableCellFormat: QTextTableCellFormat, /) -> N... method __init__ (line 10337) | def __init__(self, /) -> None: ... method bottomBorder (line 10338) | def bottomBorder(self, /) -> float: ... method bottomBorderBrush (line 10339) | def bottomBorderBrush(self, /) -> QBrush: ... method bottomBorderStyle (line 10340) | def bottomBorderStyle(self, /) -> QTextFrameFormat.BorderStyle: ... method bottomPadding (line 10341) | def bottomPadding(self, /) -> float: ... method isValid (line 10342) | def isValid(self, /) -> bool: ... method leftBorder (line 10343) | def leftBorder(self, /) -> float: ... method leftBorderBrush (line 10344) | def leftBorderBrush(self, /) -> QBrush: ... method leftBorderStyle (line 10345) | def leftBorderStyle(self, /) -> QTextFrameFormat.BorderStyle: ... method leftPadding (line 10346) | def leftPadding(self, /) -> float: ... method rightBorder (line 10347) | def rightBorder(self, /) -> float: ... method rightBorderBrush (line 10348) | def rightBorderBrush(self, /) -> QBrush: ... method rightBorderStyle (line 10349) | def rightBorderStyle(self, /) -> QTextFrameFormat.BorderStyle: ... method rightPadding (line 10350) | def rightPadding(self, /) -> float: ... method setBorder (line 10351) | def setBorder(self, width: float, /) -> None: ... method setBorderBrush (line 10352) | def setBorderBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushStyle ... method setBorderStyle (line 10353) | def setBorderStyle(self, style: QTextFrameFormat.BorderStyle, /) -> No... method setBottomBorder (line 10354) | def setBottomBorder(self, width: float, /) -> None: ... method setBottomBorderBrush (line 10355) | def setBottomBorderBrush(self, brush: QBrush | PySide6.QtCore.Qt.Brush... method setBottomBorderStyle (line 10356) | def setBottomBorderStyle(self, style: QTextFrameFormat.BorderStyle, /)... method setBottomPadding (line 10357) | def setBottomPadding(self, padding: float, /) -> None: ... method setLeftBorder (line 10358) | def setLeftBorder(self, width: float, /) -> None: ... method setLeftBorderBrush (line 10359) | def setLeftBorderBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushSt... method setLeftBorderStyle (line 10360) | def setLeftBorderStyle(self, style: QTextFrameFormat.BorderStyle, /) -... method setLeftPadding (line 10361) | def setLeftPadding(self, padding: float, /) -> None: ... method setPadding (line 10362) | def setPadding(self, padding: float, /) -> None: ... method setRightBorder (line 10363) | def setRightBorder(self, width: float, /) -> None: ... method setRightBorderBrush (line 10364) | def setRightBorderBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushS... method setRightBorderStyle (line 10365) | def setRightBorderStyle(self, style: QTextFrameFormat.BorderStyle, /) ... method setRightPadding (line 10366) | def setRightPadding(self, padding: float, /) -> None: ... method setTopBorder (line 10367) | def setTopBorder(self, width: float, /) -> None: ... method setTopBorderBrush (line 10368) | def setTopBorderBrush(self, brush: QBrush | PySide6.QtCore.Qt.BrushSty... method setTopBorderStyle (line 10369) | def setTopBorderStyle(self, style: QTextFrameFormat.BorderStyle, /) ->... method setTopPadding (line 10370) | def setTopPadding(self, padding: float, /) -> None: ... method topBorder (line 10371) | def topBorder(self, /) -> float: ... method topBorderBrush (line 10372) | def topBorderBrush(self, /) -> QBrush: ... method topBorderStyle (line 10373) | def topBorderStyle(self, /) -> QTextFrameFormat.BorderStyle: ... method topPadding (line 10374) | def topPadding(self, /) -> float: ... method __copy__ (line 10375) | def __copy__(self, /) -> typing_extensions.Self: ... class QTextTableFormat (line 10377) | class QTextTableFormat(QTextFrameFormat): method __init__ (line 10379) | def __init__(self, fmt: QTextFormat, /) -> None: ... method __init__ (line 10381) | def __init__(self, QTextTableFormat: QTextTableFormat, /) -> None: ...... method __init__ (line 10383) | def __init__(self, /) -> None: ... method alignment (line 10384) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method borderCollapse (line 10385) | def borderCollapse(self, /) -> bool: ... method cellPadding (line 10386) | def cellPadding(self, /) -> float: ... method cellSpacing (line 10387) | def cellSpacing(self, /) -> float: ... method clearColumnWidthConstraints (line 10388) | def clearColumnWidthConstraints(self, /) -> None: ... method columnWidthConstraints (line 10389) | def columnWidthConstraints(self, /) -> List[QTextLength]: ... method columns (line 10390) | def columns(self, /) -> int: ... method headerRowCount (line 10391) | def headerRowCount(self, /) -> int: ... method isValid (line 10392) | def isValid(self, /) -> bool: ... method setAlignment (line 10393) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setBorderCollapse (line 10394) | def setBorderCollapse(self, borderCollapse: bool, /) -> None: ... method setCellPadding (line 10395) | def setCellPadding(self, padding: float, /) -> None: ... method setCellSpacing (line 10396) | def setCellSpacing(self, spacing: float, /) -> None: ... method setColumnWidthConstraints (line 10397) | def setColumnWidthConstraints(self, constraints: typing.Iterable[QText... method setColumns (line 10398) | def setColumns(self, columns: int, /) -> None: ... method setHeaderRowCount (line 10399) | def setHeaderRowCount(self, count: int, /) -> None: ... method __copy__ (line 10400) | def __copy__(self, /) -> typing_extensions.Self: ... class QToolBarChangeEvent (line 10402) | class QToolBarChangeEvent(PySide6.QtCore.QEvent): method __init__ (line 10404) | def __init__(self, t: bool, /) -> None: ... method __init__ (line 10406) | def __init__(self, arg__1: QToolBarChangeEvent, /) -> None: ... method clone (line 10407) | def clone(self, /) -> QToolBarChangeEvent: ... method toggle (line 10408) | def toggle(self, /) -> bool: ... class QTouchEvent (line 10410) | class QTouchEvent(QPointerEvent): method __init__ (line 10412) | def __init__(self, eventType: PySide6.QtCore.QEvent.Type, /, device: Q... method __init__ (line 10414) | def __init__(self, arg__1: QTouchEvent, /) -> None: ... method clone (line 10415) | def clone(self, /) -> QTouchEvent: ... method isBeginEvent (line 10416) | def isBeginEvent(self, /) -> bool: ... method isEndEvent (line 10417) | def isEndEvent(self, /) -> bool: ... method isUpdateEvent (line 10418) | def isUpdateEvent(self, /) -> bool: ... method target (line 10419) | def target(self, /) -> PySide6.QtCore.QObject: ... method touchPoints (line 10420) | def touchPoints(self, /) -> List[QEventPoint]: ... class QTransform (line 10422) | class QTransform(shiboken6.Object): class TransformationType (line 10423) | class TransformationType(enum.Enum): method __init__ (line 10431) | def __init__(self, h11: float, h12: float, h13: float, h21: float, h22... method __init__ (line 10433) | def __init__(self, h11: float, h12: float, h21: float, h22: float, dx:... method __init__ (line 10435) | def __init__(self, other: QTransform, /) -> None: ... method __init__ (line 10437) | def __init__(self, /) -> None: ... method adjoint (line 10438) | def adjoint(self, /) -> QTransform: ... method determinant (line 10439) | def determinant(self, /) -> float: ... method dx (line 10440) | def dx(self, /) -> float: ... method dy (line 10441) | def dy(self, /) -> float: ... method fromScale (line 10443) | def fromScale(dx: float, dy: float, /) -> QTransform: ... method fromTranslate (line 10445) | def fromTranslate(dx: float, dy: float, /) -> QTransform: ... method inverted (line 10446) | def inverted(self, /) -> Tuple[QTransform, bool]: ... method isAffine (line 10447) | def isAffine(self, /) -> bool: ... method isIdentity (line 10448) | def isIdentity(self, /) -> bool: ... method isInvertible (line 10449) | def isInvertible(self, /) -> bool: ... method isRotating (line 10450) | def isRotating(self, /) -> bool: ... method isScaling (line 10451) | def isScaling(self, /) -> bool: ... method isTranslating (line 10452) | def isTranslating(self, /) -> bool: ... method m11 (line 10453) | def m11(self, /) -> float: ... method m12 (line 10454) | def m12(self, /) -> float: ... method m13 (line 10455) | def m13(self, /) -> float: ... method m21 (line 10456) | def m21(self, /) -> float: ... method m22 (line 10457) | def m22(self, /) -> float: ... method m23 (line 10458) | def m23(self, /) -> float: ... method m31 (line 10459) | def m31(self, /) -> float: ... method m32 (line 10460) | def m32(self, /) -> float: ... method m33 (line 10461) | def m33(self, /) -> float: ... method map (line 10463) | def map(self, x: float, y: float, /) -> typing.Any: ... method map (line 10465) | def map(self, r: QRegion | QBitmap | QPolygon | PySide6.QtCore.QRect, ... method map (line 10467) | def map(self, p: QPainterPath, /) -> QPainterPath: ... method map (line 10469) | def map(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QPoint: .... method map (line 10471) | def map(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | QPai... method map (line 10473) | def map(self, l: PySide6.QtCore.QLine, /) -> PySide6.QtCore.QLine: ...... method map (line 10475) | def map(self, l: PySide6.QtCore.QLineF | PySide6.QtCore.QLine, /) -> P... method map (line 10477) | def map(self, a: QPolygon | typing.Iterable[PySide6.QtCore.QPoint] | P... method map (line 10479) | def map(self, a: QPolygonF | typing.Iterable[PySide6.QtCore.QPointF] |... method mapRect (line 10481) | def mapRect(self, arg__1: PySide6.QtCore.QRect, /) -> PySide6.QtCore.Q... method mapRect (line 10483) | def mapRect(self, arg__1: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method mapToPolygon (line 10484) | def mapToPolygon(self, r: PySide6.QtCore.QRect, /) -> QPolygon: ... method quadToQuad (line 10487) | def quadToQuad(one: QPolygonF | typing.Iterable[PySide6.QtCore.QPointF... method quadToQuad (line 10490) | def quadToQuad(one: QPolygonF | typing.Iterable[PySide6.QtCore.QPointF... method quadToSquare (line 10493) | def quadToSquare(quad: QPolygonF | typing.Iterable[PySide6.QtCore.QPoi... method quadToSquare (line 10496) | def quadToSquare(arg__1: QPolygonF | typing.Iterable[PySide6.QtCore.QP... method reset (line 10497) | def reset(self, /) -> None: ... method rotate (line 10499) | def rotate(self, a: float, axis: PySide6.QtCore.Qt.Axis, distanceToPla... method rotate (line 10501) | def rotate(self, a: float, /, axis: PySide6.QtCore.Qt.Axis = ...) -> Q... method rotateRadians (line 10503) | def rotateRadians(self, a: float, axis: PySide6.QtCore.Qt.Axis, distan... method rotateRadians (line 10505) | def rotateRadians(self, a: float, /, axis: PySide6.QtCore.Qt.Axis = ..... method scale (line 10506) | def scale(self, sx: float, sy: float, /) -> QTransform: ... method setMatrix (line 10507) | def setMatrix(self, m11: float, m12: float, m13: float, m21: float, m2... method shear (line 10508) | def shear(self, sh: float, sv: float, /) -> QTransform: ... method squareToQuad (line 10511) | def squareToQuad(square: QPolygonF | typing.Iterable[PySide6.QtCore.QP... method squareToQuad (line 10514) | def squareToQuad(arg__1: QPolygonF | typing.Iterable[PySide6.QtCore.QP... method translate (line 10515) | def translate(self, dx: float, dy: float, /) -> QTransform: ... method transposed (line 10516) | def transposed(self, /) -> QTransform: ... method type (line 10517) | def type(self, /) -> QTransform.TransformationType: ... method __add__ (line 10518) | def __add__(self, n: float, /) -> QTransform: ... method __copy__ (line 10519) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10520) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10521) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10522) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 10523) | def __hash__(self, /) -> int: ... method __iadd__ (line 10524) | def __iadd__(self, div: float, /) -> QTransform: ... method __imul__ (line 10526) | def __imul__(self, div: float, /) -> QTransform: ... method __imul__ (line 10528) | def __imul__(self, arg__1: QTransform, /) -> QTransform: ... method __isub__ (line 10529) | def __isub__(self, div: float, /) -> QTransform: ... method __le__ (line 10530) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10531) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 10532) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10534) | def __mul__(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QPoin... method __mul__ (line 10536) | def __mul__(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | ... method __mul__ (line 10538) | def __mul__(self, o: QTransform, /) -> QTransform: ... method __mul__ (line 10540) | def __mul__(self, n: float, /) -> QTransform: ... method __mul__ (line 10542) | def __mul__(self, l: PySide6.QtCore.QLine, /) -> PySide6.QtCore.QLine:... method __mul__ (line 10544) | def __mul__(self, l: PySide6.QtCore.QLineF | PySide6.QtCore.QLine, /) ... method __ne__ (line 10545) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 10546) | def __radd__(self, other): ... method __rlshift__ (line 10547) | def __rlshift__(self, other): ... method __rmul__ (line 10548) | def __rmul__(self, other): ... method __rrshift__ (line 10549) | def __rrshift__(self, other): ... method __rshift__ (line 10550) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 10551) | def __rsub__(self, other): ... method __rtruediv__ (line 10552) | def __rtruediv__(self, other): ... method __sub__ (line 10553) | def __sub__(self, n: float, /) -> QTransform: ... method __truediv__ (line 10554) | def __truediv__(self, other): ... class QUndoCommand (line 10556) | class QUndoCommand(shiboken6.Object): method __init__ (line 10558) | def __init__(self, text: str, /, parent: QUndoCommand | None = ...) ->... method __init__ (line 10560) | def __init__(self, /, parent: QUndoCommand | None = ...) -> None: ... method actionText (line 10561) | def actionText(self, /) -> str: ... method child (line 10562) | def child(self, index: int, /) -> QUndoCommand: ... method childCount (line 10563) | def childCount(self, /) -> int: ... method id (line 10564) | def id(self, /) -> int: ... method isObsolete (line 10565) | def isObsolete(self, /) -> bool: ... method mergeWith (line 10566) | def mergeWith(self, other: QUndoCommand, /) -> bool: ... method redo (line 10567) | def redo(self, /) -> None: ... method setObsolete (line 10568) | def setObsolete(self, obsolete: bool, /) -> None: ... method setText (line 10569) | def setText(self, text: str, /) -> None: ... method text (line 10570) | def text(self, /) -> str: ... method undo (line 10571) | def undo(self, /) -> None: ... class QUndoGroup (line 10573) | class QUndoGroup(PySide6.QtCore.QObject): method __init__ (line 10582) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method activeStack (line 10583) | def activeStack(self, /) -> QUndoStack: ... method addStack (line 10584) | def addStack(self, stack: QUndoStack, /) -> None: ... method canRedo (line 10585) | def canRedo(self, /) -> bool: ... method canUndo (line 10586) | def canUndo(self, /) -> bool: ... method createRedoAction (line 10587) | def createRedoAction(self, parent: PySide6.QtCore.QObject | None, /, p... method createUndoAction (line 10588) | def createUndoAction(self, parent: PySide6.QtCore.QObject | None, /, p... method isClean (line 10589) | def isClean(self, /) -> bool: ... method redo (line 10590) | def redo(self, /) -> None: ... method redoText (line 10591) | def redoText(self, /) -> str: ... method removeStack (line 10592) | def removeStack(self, stack: QUndoStack, /) -> None: ... method setActiveStack (line 10593) | def setActiveStack(self, stack: QUndoStack, /) -> None: ... method stacks (line 10594) | def stacks(self, /) -> List[QUndoStack]: ... method undo (line 10595) | def undo(self, /) -> None: ... method undoText (line 10596) | def undoText(self, /) -> str: ... class QUndoStack (line 10598) | class QUndoStack(PySide6.QtCore.QObject): method __init__ (line 10606) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method beginMacro (line 10607) | def beginMacro(self, text: str, /) -> None: ... method canRedo (line 10608) | def canRedo(self, /) -> bool: ... method canUndo (line 10609) | def canUndo(self, /) -> bool: ... method cleanIndex (line 10610) | def cleanIndex(self, /) -> int: ... method clear (line 10611) | def clear(self, /) -> None: ... method command (line 10612) | def command(self, index: int, /) -> QUndoCommand: ... method count (line 10613) | def count(self, /) -> int: ... method createRedoAction (line 10614) | def createRedoAction(self, parent: PySide6.QtCore.QObject | None, /, p... method createUndoAction (line 10615) | def createUndoAction(self, parent: PySide6.QtCore.QObject | None, /, p... method endMacro (line 10616) | def endMacro(self, /) -> None: ... method index (line 10617) | def index(self, /) -> int: ... method isActive (line 10618) | def isActive(self, /) -> bool: ... method isClean (line 10619) | def isClean(self, /) -> bool: ... method push (line 10620) | def push(self, cmd: QUndoCommand, /) -> None: ... method redo (line 10621) | def redo(self, /) -> None: ... method redoText (line 10622) | def redoText(self, /) -> str: ... method resetClean (line 10623) | def resetClean(self, /) -> None: ... method setActive (line 10624) | def setActive(self, /, active: bool = ...) -> None: ... method setClean (line 10625) | def setClean(self, /) -> None: ... method setIndex (line 10626) | def setIndex(self, idx: int, /) -> None: ... method setUndoLimit (line 10627) | def setUndoLimit(self, limit: int, /) -> None: ... method text (line 10628) | def text(self, idx: int, /) -> str: ... method undo (line 10629) | def undo(self, /) -> None: ... method undoLimit (line 10630) | def undoLimit(self, /) -> int: ... method undoText (line 10631) | def undoText(self, /) -> str: ... class QValidator (line 10633) | class QValidator(PySide6.QtCore.QObject): class State (line 10634) | class State(enum.Enum): method __init__ (line 10640) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method fixup (line 10641) | def fixup(self, arg__1: str, /) -> str: ... method locale (line 10642) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method setLocale (line 10643) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method validate (line 10644) | def validate(self, arg__1: str, arg__2: int, /) -> typing.Any: ... class QVector2D (line 10646) | class QVector2D(shiboken6.Object): method __init__ (line 10648) | def __init__(self, xpos: float, ypos: float, /) -> None: ... method __init__ (line 10650) | def __init__(self, vector: QVector3D, /) -> None: ... method __init__ (line 10652) | def __init__(self, vector: QVector4D, /) -> None: ... method __init__ (line 10654) | def __init__(self, point: PySide6.QtCore.QPoint, /) -> None: ... method __init__ (line 10656) | def __init__(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method __init__ (line 10658) | def __init__(self, QVector2D: QVector2D, /) -> None: ... method __init__ (line 10660) | def __init__(self, /) -> None: ... method distanceToLine (line 10661) | def distanceToLine(self, point: QVector2D, direction: QVector2D, /) ->... method distanceToPoint (line 10662) | def distanceToPoint(self, point: QVector2D, /) -> float: ... method dotProduct (line 10664) | def dotProduct(v1: QVector2D, v2: QVector2D, /) -> float: ... method isNull (line 10665) | def isNull(self, /) -> bool: ... method length (line 10666) | def length(self, /) -> float: ... method lengthSquared (line 10667) | def lengthSquared(self, /) -> float: ... method normalize (line 10668) | def normalize(self, /) -> None: ... method normalized (line 10669) | def normalized(self, /) -> QVector2D: ... method setX (line 10670) | def setX(self, x: float, /) -> None: ... method setY (line 10671) | def setY(self, y: float, /) -> None: ... method toPoint (line 10672) | def toPoint(self, /) -> PySide6.QtCore.QPoint: ... method toPointF (line 10673) | def toPointF(self, /) -> PySide6.QtCore.QPointF: ... method toTuple (line 10674) | def toTuple(self, /) -> tuple: ... method toVector3D (line 10675) | def toVector3D(self, /) -> QVector3D: ... method toVector4D (line 10676) | def toVector4D(self, /) -> QVector4D: ... method x (line 10677) | def x(self, /) -> float: ... method y (line 10678) | def y(self, /) -> float: ... method __add__ (line 10679) | def __add__(self, v2: QVector2D, /) -> QVector2D: ... method __bool__ (line 10680) | def __bool__(self) -> bool: ... method __copy__ (line 10681) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10682) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10683) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10684) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 10685) | def __iadd__(self, vector: QVector2D, /) -> QVector2D: ... method __imul__ (line 10687) | def __imul__(self, vector: QVector2D, /) -> QVector2D: ... method __imul__ (line 10689) | def __imul__(self, factor: float, /) -> QVector2D: ... method __isub__ (line 10690) | def __isub__(self, vector: QVector2D, /) -> QVector2D: ... method __le__ (line 10691) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10692) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 10693) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10695) | def __mul__(self, v2: QVector2D, /) -> QVector2D: ... method __mul__ (line 10697) | def __mul__(self, factor: float, /) -> QVector2D: ... method __ne__ (line 10698) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 10699) | def __neg__(self, /) -> QVector2D: ... method __radd__ (line 10700) | def __radd__(self, other): ... method __rlshift__ (line 10701) | def __rlshift__(self, other): ... method __rmul__ (line 10702) | def __rmul__(self, other): ... method __rrshift__ (line 10703) | def __rrshift__(self, other): ... method __rshift__ (line 10704) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 10705) | def __rsub__(self, other): ... method __rtruediv__ (line 10706) | def __rtruediv__(self, other): ... method __sub__ (line 10707) | def __sub__(self, v2: QVector2D, /) -> QVector2D: ... method __truediv__ (line 10708) | def __truediv__(self, other): ... class QVector2DList (line 10710) | class QVector2DList: method __init__ (line 10712) | def __init__(self, *args, **kwargs) -> None: ... method append (line 10713) | def append(self, *args, **kwargs): ... method capacity (line 10714) | def capacity(self, *args, **kwargs): ... method clear (line 10715) | def clear(self, *args, **kwargs): ... method constData (line 10716) | def constData(self, *args, **kwargs): ... method data (line 10717) | def data(self, *args, **kwargs): ... method pop_back (line 10718) | def pop_back(self, *args, **kwargs): ... method pop_front (line 10719) | def pop_front(self, *args, **kwargs): ... method prepend (line 10720) | def prepend(self, *args, **kwargs): ... method push_back (line 10721) | def push_back(self, *args, **kwargs): ... method push_front (line 10722) | def push_front(self, *args, **kwargs): ... method removeFirst (line 10723) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 10724) | def removeLast(self, *args, **kwargs): ... method reserve (line 10725) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 10726) | def __delitem__(self, other) -> None: ... method __getitem__ (line 10727) | def __getitem__(self, index): ... method __len__ (line 10728) | def __len__(self) -> int: ... method __setitem__ (line 10729) | def __setitem__(self, index, object) -> None: ... class QVector3D (line 10731) | class QVector3D(shiboken6.Object): method __init__ (line 10733) | def __init__(self, xpos: float, ypos: float, zpos: float, /) -> None: ... method __init__ (line 10735) | def __init__(self, vector: QVector2D, zpos: float, /) -> None: ... method __init__ (line 10737) | def __init__(self, vector: QVector2D, /) -> None: ... method __init__ (line 10739) | def __init__(self, vector: QVector4D, /) -> None: ... method __init__ (line 10741) | def __init__(self, point: PySide6.QtCore.QPoint, /) -> None: ... method __init__ (line 10743) | def __init__(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method __init__ (line 10745) | def __init__(self, QVector3D: QVector3D, /) -> None: ... method __init__ (line 10747) | def __init__(self, /) -> None: ... method crossProduct (line 10749) | def crossProduct(v1: QVector3D, v2: QVector3D, /) -> QVector3D: ... method distanceToLine (line 10750) | def distanceToLine(self, point: QVector3D, direction: QVector3D, /) ->... method distanceToPlane (line 10752) | def distanceToPlane(self, plane1: QVector3D, plane2: QVector3D, plane3... method distanceToPlane (line 10754) | def distanceToPlane(self, plane: QVector3D, normal: QVector3D, /) -> f... method distanceToPoint (line 10755) | def distanceToPoint(self, point: QVector3D, /) -> float: ... method dotProduct (line 10757) | def dotProduct(v1: QVector3D, v2: QVector3D, /) -> float: ... method isNull (line 10758) | def isNull(self, /) -> bool: ... method length (line 10759) | def length(self, /) -> float: ... method lengthSquared (line 10760) | def lengthSquared(self, /) -> float: ... method normal (line 10763) | def normal(v1: QVector3D, v2: QVector3D, v3: QVector3D, /) -> QVector3... method normal (line 10766) | def normal(v1: QVector3D, v2: QVector3D, /) -> QVector3D: ... method normalize (line 10767) | def normalize(self, /) -> None: ... method normalized (line 10768) | def normalized(self, /) -> QVector3D: ... method project (line 10769) | def project(self, modelView: QMatrix4x4 | QTransform, projection: QMat... method setX (line 10770) | def setX(self, x: float, /) -> None: ... method setY (line 10771) | def setY(self, y: float, /) -> None: ... method setZ (line 10772) | def setZ(self, z: float, /) -> None: ... method toPoint (line 10773) | def toPoint(self, /) -> PySide6.QtCore.QPoint: ... method toPointF (line 10774) | def toPointF(self, /) -> PySide6.QtCore.QPointF: ... method toTuple (line 10775) | def toTuple(self, /) -> tuple: ... method toVector2D (line 10776) | def toVector2D(self, /) -> QVector2D: ... method toVector4D (line 10777) | def toVector4D(self, /) -> QVector4D: ... method unproject (line 10778) | def unproject(self, modelView: QMatrix4x4 | QTransform, projection: QM... method x (line 10779) | def x(self, /) -> float: ... method y (line 10780) | def y(self, /) -> float: ... method z (line 10781) | def z(self, /) -> float: ... method __add__ (line 10782) | def __add__(self, v2: QVector3D, /) -> QVector3D: ... method __bool__ (line 10783) | def __bool__(self) -> bool: ... method __copy__ (line 10784) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10785) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10786) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10787) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 10788) | def __iadd__(self, vector: QVector3D, /) -> QVector3D: ... method __imul__ (line 10790) | def __imul__(self, vector: QVector3D, /) -> QVector3D: ... method __imul__ (line 10792) | def __imul__(self, factor: float, /) -> QVector3D: ... method __isub__ (line 10793) | def __isub__(self, vector: QVector3D, /) -> QVector3D: ... method __le__ (line 10794) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10795) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 10796) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10798) | def __mul__(self, v2: QVector3D, /) -> QVector3D: ... method __mul__ (line 10800) | def __mul__(self, quaternion: QQuaternion, /) -> QVector3D: ... method __mul__ (line 10802) | def __mul__(self, matrix: QMatrix4x4 | QTransform, /) -> QVector3D: ... method __mul__ (line 10804) | def __mul__(self, factor: float, /) -> QVector3D: ... method __ne__ (line 10805) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 10806) | def __neg__(self, /) -> QVector3D: ... method __radd__ (line 10807) | def __radd__(self, other): ... method __rlshift__ (line 10808) | def __rlshift__(self, other): ... method __rmul__ (line 10809) | def __rmul__(self, other): ... method __rrshift__ (line 10810) | def __rrshift__(self, other): ... method __rshift__ (line 10811) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 10812) | def __rsub__(self, other): ... method __rtruediv__ (line 10813) | def __rtruediv__(self, other): ... method __sub__ (line 10814) | def __sub__(self, v2: QVector3D, /) -> QVector3D: ... method __truediv__ (line 10815) | def __truediv__(self, other): ... class QVector3DList (line 10817) | class QVector3DList: method __init__ (line 10819) | def __init__(self, *args, **kwargs) -> None: ... method append (line 10820) | def append(self, *args, **kwargs): ... method capacity (line 10821) | def capacity(self, *args, **kwargs): ... method clear (line 10822) | def clear(self, *args, **kwargs): ... method constData (line 10823) | def constData(self, *args, **kwargs): ... method data (line 10824) | def data(self, *args, **kwargs): ... method pop_back (line 10825) | def pop_back(self, *args, **kwargs): ... method pop_front (line 10826) | def pop_front(self, *args, **kwargs): ... method prepend (line 10827) | def prepend(self, *args, **kwargs): ... method push_back (line 10828) | def push_back(self, *args, **kwargs): ... method push_front (line 10829) | def push_front(self, *args, **kwargs): ... method removeFirst (line 10830) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 10831) | def removeLast(self, *args, **kwargs): ... method reserve (line 10832) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 10833) | def __delitem__(self, other) -> None: ... method __getitem__ (line 10834) | def __getitem__(self, index): ... method __len__ (line 10835) | def __len__(self) -> int: ... method __setitem__ (line 10836) | def __setitem__(self, index, object) -> None: ... class QVector4D (line 10838) | class QVector4D(shiboken6.Object): method __init__ (line 10840) | def __init__(self, xpos: float, ypos: float, zpos: float, wpos: float,... method __init__ (line 10842) | def __init__(self, vector: QVector2D, zpos: float, wpos: float, /) -> ... method __init__ (line 10844) | def __init__(self, vector: QVector3D, wpos: float, /) -> None: ... method __init__ (line 10846) | def __init__(self, vector: QVector2D, /) -> None: ... method __init__ (line 10848) | def __init__(self, vector: QVector3D, /) -> None: ... method __init__ (line 10850) | def __init__(self, point: PySide6.QtCore.QPoint, /) -> None: ... method __init__ (line 10852) | def __init__(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method __init__ (line 10854) | def __init__(self, QVector4D: QVector4D, /) -> None: ... method __init__ (line 10856) | def __init__(self, /) -> None: ... method dotProduct (line 10858) | def dotProduct(v1: QVector4D, v2: QVector4D, /) -> float: ... method isNull (line 10859) | def isNull(self, /) -> bool: ... method length (line 10860) | def length(self, /) -> float: ... method lengthSquared (line 10861) | def lengthSquared(self, /) -> float: ... method normalize (line 10862) | def normalize(self, /) -> None: ... method normalized (line 10863) | def normalized(self, /) -> QVector4D: ... method setW (line 10864) | def setW(self, w: float, /) -> None: ... method setX (line 10865) | def setX(self, x: float, /) -> None: ... method setY (line 10866) | def setY(self, y: float, /) -> None: ... method setZ (line 10867) | def setZ(self, z: float, /) -> None: ... method toPoint (line 10868) | def toPoint(self, /) -> PySide6.QtCore.QPoint: ... method toPointF (line 10869) | def toPointF(self, /) -> PySide6.QtCore.QPointF: ... method toTuple (line 10870) | def toTuple(self, /) -> tuple: ... method toVector2D (line 10871) | def toVector2D(self, /) -> QVector2D: ... method toVector2DAffine (line 10872) | def toVector2DAffine(self, /) -> QVector2D: ... method toVector3D (line 10873) | def toVector3D(self, /) -> QVector3D: ... method toVector3DAffine (line 10874) | def toVector3DAffine(self, /) -> QVector3D: ... method w (line 10875) | def w(self, /) -> float: ... method x (line 10876) | def x(self, /) -> float: ... method y (line 10877) | def y(self, /) -> float: ... method z (line 10878) | def z(self, /) -> float: ... method __add__ (line 10879) | def __add__(self, v2: QVector4D, /) -> QVector4D: ... method __bool__ (line 10880) | def __bool__(self) -> bool: ... method __copy__ (line 10881) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 10882) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 10883) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 10884) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 10885) | def __iadd__(self, vector: QVector4D, /) -> QVector4D: ... method __imul__ (line 10887) | def __imul__(self, vector: QVector4D, /) -> QVector4D: ... method __imul__ (line 10889) | def __imul__(self, factor: float, /) -> QVector4D: ... method __isub__ (line 10890) | def __isub__(self, vector: QVector4D, /) -> QVector4D: ... method __le__ (line 10891) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 10892) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 10893) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 10895) | def __mul__(self, v2: QVector4D, /) -> QVector4D: ... method __mul__ (line 10897) | def __mul__(self, matrix: QMatrix4x4 | QTransform, /) -> QVector4D: ... method __mul__ (line 10899) | def __mul__(self, factor: float, /) -> QVector4D: ... method __ne__ (line 10900) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 10901) | def __neg__(self, /) -> QVector4D: ... method __radd__ (line 10902) | def __radd__(self, other): ... method __rlshift__ (line 10903) | def __rlshift__(self, other): ... method __rmul__ (line 10904) | def __rmul__(self, other): ... method __rrshift__ (line 10905) | def __rrshift__(self, other): ... method __rshift__ (line 10906) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rsub__ (line 10907) | def __rsub__(self, other): ... method __rtruediv__ (line 10908) | def __rtruediv__(self, other): ... method __sub__ (line 10909) | def __sub__(self, v2: QVector4D, /) -> QVector4D: ... method __truediv__ (line 10910) | def __truediv__(self, other): ... class QVector4DList (line 10912) | class QVector4DList: method __init__ (line 10914) | def __init__(self, *args, **kwargs) -> None: ... method append (line 10915) | def append(self, *args, **kwargs): ... method capacity (line 10916) | def capacity(self, *args, **kwargs): ... method clear (line 10917) | def clear(self, *args, **kwargs): ... method constData (line 10918) | def constData(self, *args, **kwargs): ... method data (line 10919) | def data(self, *args, **kwargs): ... method pop_back (line 10920) | def pop_back(self, *args, **kwargs): ... method pop_front (line 10921) | def pop_front(self, *args, **kwargs): ... method prepend (line 10922) | def prepend(self, *args, **kwargs): ... method push_back (line 10923) | def push_back(self, *args, **kwargs): ... method push_front (line 10924) | def push_front(self, *args, **kwargs): ... method removeFirst (line 10925) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 10926) | def removeLast(self, *args, **kwargs): ... method reserve (line 10927) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 10928) | def __delitem__(self, other) -> None: ... method __getitem__ (line 10929) | def __getitem__(self, index): ... method __len__ (line 10930) | def __len__(self) -> int: ... method __setitem__ (line 10931) | def __setitem__(self, index, object) -> None: ... class QWhatsThisClickedEvent (line 10933) | class QWhatsThisClickedEvent(PySide6.QtCore.QEvent): method __init__ (line 10935) | def __init__(self, href: str, /) -> None: ... method __init__ (line 10937) | def __init__(self, arg__1: QWhatsThisClickedEvent, /) -> None: ... method clone (line 10938) | def clone(self, /) -> QWhatsThisClickedEvent: ... method href (line 10939) | def href(self, /) -> str: ... class QWheelEvent (line 10941) | class QWheelEvent(QSinglePointEvent): method __init__ (line 10943) | def __init__(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method __init__ (line 10945) | def __init__(self, arg__1: QWheelEvent, /, *, device: QPointingDevice ... method angleDelta (line 10946) | def angleDelta(self, /) -> PySide6.QtCore.QPoint: ... method clone (line 10947) | def clone(self, /) -> QWheelEvent: ... method hasPixelDelta (line 10948) | def hasPixelDelta(self, /) -> bool: ... method inverted (line 10949) | def inverted(self, /) -> bool: ... method isBeginEvent (line 10950) | def isBeginEvent(self, /) -> bool: ... method isEndEvent (line 10951) | def isEndEvent(self, /) -> bool: ... method isInverted (line 10952) | def isInverted(self, /) -> bool: ... method isUpdateEvent (line 10953) | def isUpdateEvent(self, /) -> bool: ... method phase (line 10954) | def phase(self, /) -> PySide6.QtCore.Qt.ScrollPhase: ... method pixelDelta (line 10955) | def pixelDelta(self, /) -> PySide6.QtCore.QPoint: ... method source (line 10956) | def source(self, /) -> PySide6.QtCore.Qt.MouseEventSource: ... class QWindow (line 10958) | class QWindow(PySide6.QtCore.QObject, QSurface): class AncestorMode (line 10959) | class AncestorMode(enum.Enum): class Visibility (line 10963) | class Visibility(enum.Enum): method __init__ (line 10993) | def __init__(self, parent: QWindow, /, *, title: str | None = ..., mod... method __init__ (line 10995) | def __init__(self, /, screen: QScreen | None = ..., *, title: str | No... method accessibleRoot (line 10996) | def accessibleRoot(self, /) -> QAccessibleInterface: ... method alert (line 10997) | def alert(self, msec: int, /) -> None: ... method baseSize (line 10998) | def baseSize(self, /) -> PySide6.QtCore.QSize: ... method close (line 10999) | def close(self, /) -> bool: ... method closeEvent (line 11000) | def closeEvent(self, arg__1: QCloseEvent, /) -> None: ... method contentOrientation (line 11001) | def contentOrientation(self, /) -> PySide6.QtCore.Qt.ScreenOrientation... method create (line 11002) | def create(self, /) -> None: ... method cursor (line 11003) | def cursor(self, /) -> QCursor: ... method destroy (line 11004) | def destroy(self, /) -> None: ... method devicePixelRatio (line 11005) | def devicePixelRatio(self, /) -> float: ... method event (line 11006) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method exposeEvent (line 11007) | def exposeEvent(self, arg__1: QExposeEvent, /) -> None: ... method filePath (line 11008) | def filePath(self, /) -> str: ... method flags (line 11009) | def flags(self, /) -> PySide6.QtCore.Qt.WindowType: ... method focusInEvent (line 11010) | def focusInEvent(self, arg__1: QFocusEvent, /) -> None: ... method focusObject (line 11011) | def focusObject(self, /) -> PySide6.QtCore.QObject: ... method focusOutEvent (line 11012) | def focusOutEvent(self, arg__1: QFocusEvent, /) -> None: ... method format (line 11013) | def format(self, /) -> QSurfaceFormat: ... method frameGeometry (line 11014) | def frameGeometry(self, /) -> PySide6.QtCore.QRect: ... method frameMargins (line 11015) | def frameMargins(self, /) -> PySide6.QtCore.QMargins: ... method framePosition (line 11016) | def framePosition(self, /) -> PySide6.QtCore.QPoint: ... method fromWinId (line 11018) | def fromWinId(id: int, /) -> QWindow: ... method geometry (line 11019) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method height (line 11020) | def height(self, /) -> int: ... method hide (line 11021) | def hide(self, /) -> None: ... method hideEvent (line 11022) | def hideEvent(self, arg__1: QHideEvent, /) -> None: ... method icon (line 11023) | def icon(self, /) -> QIcon: ... method isActive (line 11024) | def isActive(self, /) -> bool: ... method isAncestorOf (line 11025) | def isAncestorOf(self, child: QWindow, /, mode: QWindow.AncestorMode =... method isExposed (line 11026) | def isExposed(self, /) -> bool: ... method isModal (line 11027) | def isModal(self, /) -> bool: ... method isTopLevel (line 11028) | def isTopLevel(self, /) -> bool: ... method isVisible (line 11029) | def isVisible(self, /) -> bool: ... method keyPressEvent (line 11030) | def keyPressEvent(self, arg__1: QKeyEvent, /) -> None: ... method keyReleaseEvent (line 11031) | def keyReleaseEvent(self, arg__1: QKeyEvent, /) -> None: ... method lower (line 11032) | def lower(self, /) -> None: ... method mapFromGlobal (line 11034) | def mapFromGlobal(self, pos: PySide6.QtCore.QPoint, /) -> PySide6.QtCo... method mapFromGlobal (line 11036) | def mapFromGlobal(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method mapToGlobal (line 11038) | def mapToGlobal(self, pos: PySide6.QtCore.QPoint, /) -> PySide6.QtCore... method mapToGlobal (line 11040) | def mapToGlobal(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method mask (line 11041) | def mask(self, /) -> QRegion: ... method maximumHeight (line 11042) | def maximumHeight(self, /) -> int: ... method maximumSize (line 11043) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method maximumWidth (line 11044) | def maximumWidth(self, /) -> int: ... method minimumHeight (line 11045) | def minimumHeight(self, /) -> int: ... method minimumSize (line 11046) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumWidth (line 11047) | def minimumWidth(self, /) -> int: ... method modality (line 11048) | def modality(self, /) -> PySide6.QtCore.Qt.WindowModality: ... method mouseDoubleClickEvent (line 11049) | def mouseDoubleClickEvent(self, arg__1: QMouseEvent, /) -> None: ... method mouseMoveEvent (line 11050) | def mouseMoveEvent(self, arg__1: QMouseEvent, /) -> None: ... method mousePressEvent (line 11051) | def mousePressEvent(self, arg__1: QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 11052) | def mouseReleaseEvent(self, arg__1: QMouseEvent, /) -> None: ... method moveEvent (line 11053) | def moveEvent(self, arg__1: QMoveEvent, /) -> None: ... method nativeEvent (line 11054) | def nativeEvent(self, eventType: PySide6.QtCore.QByteArray | bytes | b... method opacity (line 11055) | def opacity(self, /) -> float: ... method paintEvent (line 11056) | def paintEvent(self, arg__1: QPaintEvent, /) -> None: ... method parent (line 11057) | def parent(self, /, mode: QWindow.AncestorMode = ...) -> QWindow: ... method position (line 11058) | def position(self, /) -> PySide6.QtCore.QPoint: ... method raise_ (line 11059) | def raise_(self, /) -> None: ... method reportContentOrientationChange (line 11060) | def reportContentOrientationChange(self, orientation: PySide6.QtCore.Q... method requestActivate (line 11061) | def requestActivate(self, /) -> None: ... method requestUpdate (line 11062) | def requestUpdate(self, /) -> None: ... method requestedFormat (line 11063) | def requestedFormat(self, /) -> QSurfaceFormat: ... method resize (line 11065) | def resize(self, w: int, h: int, /) -> None: ... method resize (line 11067) | def resize(self, newSize: PySide6.QtCore.QSize, /) -> None: ... method resizeEvent (line 11068) | def resizeEvent(self, arg__1: QResizeEvent, /) -> None: ... method resolveInterface (line 11069) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method safeAreaMargins (line 11070) | def safeAreaMargins(self, /) -> PySide6.QtCore.QMargins: ... method screen (line 11071) | def screen(self, /) -> QScreen: ... method setBaseSize (line 11072) | def setBaseSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setCursor (line 11073) | def setCursor(self, arg__1: QCursor | PySide6.QtCore.Qt.CursorShape | ... method setFilePath (line 11074) | def setFilePath(self, filePath: str, /) -> None: ... method setFlag (line 11075) | def setFlag(self, arg__1: PySide6.QtCore.Qt.WindowType, /, on: bool = ... method setFlags (line 11076) | def setFlags(self, flags: PySide6.QtCore.Qt.WindowType, /) -> None: ... method setFormat (line 11077) | def setFormat(self, format: QSurfaceFormat | QSurfaceFormat.FormatOpti... method setFramePosition (line 11078) | def setFramePosition(self, point: PySide6.QtCore.QPoint, /) -> None: ... method setGeometry (line 11080) | def setGeometry(self, posx: int, posy: int, w: int, h: int, /) -> None... method setGeometry (line 11082) | def setGeometry(self, rect: PySide6.QtCore.QRect, /) -> None: ... method setHeight (line 11083) | def setHeight(self, arg: int, /) -> None: ... method setIcon (line 11084) | def setIcon(self, icon: QIcon | QPixmap, /) -> None: ... method setKeyboardGrabEnabled (line 11085) | def setKeyboardGrabEnabled(self, grab: bool, /) -> bool: ... method setMask (line 11086) | def setMask(self, region: QRegion | QBitmap | QPolygon | PySide6.QtCor... method setMaximumHeight (line 11087) | def setMaximumHeight(self, h: int, /) -> None: ... method setMaximumSize (line 11088) | def setMaximumSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setMaximumWidth (line 11089) | def setMaximumWidth(self, w: int, /) -> None: ... method setMinimumHeight (line 11090) | def setMinimumHeight(self, h: int, /) -> None: ... method setMinimumSize (line 11091) | def setMinimumSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setMinimumWidth (line 11092) | def setMinimumWidth(self, w: int, /) -> None: ... method setModality (line 11093) | def setModality(self, modality: PySide6.QtCore.Qt.WindowModality, /) -... method setMouseGrabEnabled (line 11094) | def setMouseGrabEnabled(self, grab: bool, /) -> bool: ... method setOpacity (line 11095) | def setOpacity(self, level: float, /) -> None: ... method setParent (line 11096) | def setParent(self, parent: QWindow | None, /) -> None: ... # type: i... method setPosition (line 11098) | def setPosition(self, posx: int, posy: int, /) -> None: ... method setPosition (line 11100) | def setPosition(self, pt: PySide6.QtCore.QPoint, /) -> None: ... method setScreen (line 11101) | def setScreen(self, screen: QScreen, /) -> None: ... method setSizeIncrement (line 11102) | def setSizeIncrement(self, size: PySide6.QtCore.QSize, /) -> None: ... method setSurfaceType (line 11103) | def setSurfaceType(self, surfaceType: QSurface.SurfaceType, /) -> None... method setTitle (line 11104) | def setTitle(self, arg__1: str, /) -> None: ... method setTransientParent (line 11105) | def setTransientParent(self, parent: QWindow, /) -> None: ... method setVisibility (line 11106) | def setVisibility(self, v: QWindow.Visibility, /) -> None: ... method setVisible (line 11107) | def setVisible(self, visible: bool, /) -> None: ... method setWidth (line 11108) | def setWidth(self, arg: int, /) -> None: ... method setWindowState (line 11109) | def setWindowState(self, state: PySide6.QtCore.Qt.WindowState, /) -> N... method setWindowStates (line 11110) | def setWindowStates(self, states: PySide6.QtCore.Qt.WindowState, /) ->... method setX (line 11111) | def setX(self, arg: int, /) -> None: ... method setY (line 11112) | def setY(self, arg: int, /) -> None: ... method show (line 11113) | def show(self, /) -> None: ... method showEvent (line 11114) | def showEvent(self, arg__1: QShowEvent, /) -> None: ... method showFullScreen (line 11115) | def showFullScreen(self, /) -> None: ... method showMaximized (line 11116) | def showMaximized(self, /) -> None: ... method showMinimized (line 11117) | def showMinimized(self, /) -> None: ... method showNormal (line 11118) | def showNormal(self, /) -> None: ... method size (line 11119) | def size(self, /) -> PySide6.QtCore.QSize: ... method sizeIncrement (line 11120) | def sizeIncrement(self, /) -> PySide6.QtCore.QSize: ... method startSystemMove (line 11121) | def startSystemMove(self, /) -> bool: ... method startSystemResize (line 11122) | def startSystemResize(self, edges: PySide6.QtCore.Qt.Edge, /) -> bool:... method surfaceHandle (line 11123) | def surfaceHandle(self, /) -> int: ... method surfaceType (line 11124) | def surfaceType(self, /) -> QSurface.SurfaceType: ... method tabletEvent (line 11125) | def tabletEvent(self, arg__1: QTabletEvent, /) -> None: ... method title (line 11126) | def title(self, /) -> str: ... method touchEvent (line 11127) | def touchEvent(self, arg__1: QTouchEvent, /) -> None: ... method transientParent (line 11128) | def transientParent(self, /) -> QWindow: ... method type (line 11129) | def type(self, /) -> PySide6.QtCore.Qt.WindowType: ... method unsetCursor (line 11130) | def unsetCursor(self, /) -> None: ... method visibility (line 11131) | def visibility(self, /) -> QWindow.Visibility: ... method wheelEvent (line 11132) | def wheelEvent(self, arg__1: QWheelEvent, /) -> None: ... method width (line 11133) | def width(self, /) -> int: ... method winId (line 11134) | def winId(self, /) -> int: ... method windowState (line 11135) | def windowState(self, /) -> PySide6.QtCore.Qt.WindowState: ... method windowStates (line 11136) | def windowStates(self, /) -> PySide6.QtCore.Qt.WindowState: ... method x (line 11137) | def x(self, /) -> int: ... method y (line 11138) | def y(self, /) -> int: ... class QWindowStateChangeEvent (line 11140) | class QWindowStateChangeEvent(PySide6.QtCore.QEvent): method __init__ (line 11142) | def __init__(self, oldState: PySide6.QtCore.Qt.WindowState, /, isOverr... method __init__ (line 11144) | def __init__(self, arg__1: QWindowStateChangeEvent, /) -> None: ... method clone (line 11145) | def clone(self, /) -> QWindowStateChangeEvent: ... method isOverride (line 11146) | def isOverride(self, /) -> bool: ... method oldState (line 11147) | def oldState(self, /) -> PySide6.QtCore.Qt.WindowState: ... class Qt (line 11149) | class Qt(PySide6.QtCore.Qt): method __init__ (line 11150) | def __init__(self, *args, **kwargs) -> None: ... method convertFromPlainText (line 11152) | def convertFromPlainText(plain: str, /, mode: PySide6.QtCore.Qt.WhiteS... method mightBeRichText (line 11154) | def mightBeRichText(arg__1: str, /) -> bool: ... function qAlpha (line 11156) | def qAlpha(rgb: int, /) -> int: ... function qBlue (line 11157) | def qBlue(rgb: int, /) -> int: ... function qFuzzyCompare (line 11159) | def qFuzzyCompare(arg__1: QQuaternion, arg__2: QQuaternion, /) -> bool: ... function qFuzzyCompare (line 11161) | def qFuzzyCompare(arg__1: QTransform, arg__2: QTransform, /) -> bool: ... function qFuzzyCompare (line 11163) | def qFuzzyCompare(arg__1: QVector2D, arg__2: QVector2D, /) -> bool: ... function qFuzzyCompare (line 11165) | def qFuzzyCompare(arg__1: QVector3D, arg__2: QVector3D, /) -> bool: ... function qFuzzyCompare (line 11167) | def qFuzzyCompare(arg__1: QVector4D, arg__2: QVector4D, /) -> bool: ... function qFuzzyCompare (line 11169) | def qFuzzyCompare(arg__1: QMatrix4x4 | QTransform, arg__2: QMatrix4x4 | ... function qGray (line 11171) | def qGray(r: int, g: int, b: int, /) -> int: ... function qGray (line 11173) | def qGray(rgb: int, /) -> int: ... function qGreen (line 11174) | def qGreen(rgb: int, /) -> int: ... function qIsGray (line 11175) | def qIsGray(rgb: int, /) -> bool: ... function qPixelFormatAlpha (line 11176) | def qPixelFormatAlpha(channelSize: int, /, typeInt: QPixelFormat.TypeInt... function qPixelFormatCmyk (line 11177) | def qPixelFormatCmyk(channelSize: int, /, alfa: int | None = ..., usage:... function qPixelFormatGrayscale (line 11178) | def qPixelFormatGrayscale(channelSize: int, /, typeInt: QPixelFormat.Typ... function qPixelFormatHsl (line 11179) | def qPixelFormatHsl(channelSize: int, /, alfa: int | None = ..., usage: ... function qPixelFormatHsv (line 11180) | def qPixelFormatHsv(channelSize: int, /, alfa: int | None = ..., usage: ... function qPixelFormatRgba (line 11181) | def qPixelFormatRgba(red: int, green: int, blue: int, alfa: int, usage: ... function qPixelFormatYuv (line 11182) | def qPixelFormatYuv(layout: QPixelFormat.YUVLayout, /, alfa: int | None ... function qRed (line 11183) | def qRed(rgb: int, /) -> int: ... function qRgb (line 11184) | def qRgb(r: int, g: int, b: int, /) -> int: ... function qRgba (line 11185) | def qRgba(r: int, g: int, b: int, a: int, /) -> int: ... function qt_set_sequence_auto_mnemonic (line 11186) | def qt_set_sequence_auto_mnemonic(b: bool, /) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtHelp.pyi class QCompressedHelpInfo (line 14) | class QCompressedHelpInfo(shiboken6.Object): method __init__ (line 16) | def __init__(self, other: QCompressedHelpInfo, /) -> None: ... method __init__ (line 18) | def __init__(self, /) -> None: ... method component (line 19) | def component(self, /) -> str: ... method fromCompressedHelpFile (line 21) | def fromCompressedHelpFile(documentationFileName: str, /) -> QCompress... method isNull (line 22) | def isNull(self, /) -> bool: ... method namespaceName (line 23) | def namespaceName(self, /) -> str: ... method swap (line 24) | def swap(self, other: QCompressedHelpInfo, /) -> None: ... method version (line 25) | def version(self, /) -> PySide6.QtCore.QVersionNumber: ... method __bool__ (line 26) | def __bool__(self) -> bool: ... method __copy__ (line 27) | def __copy__(self, /) -> typing_extensions.Self: ... class QHelpContentItem (line 29) | class QHelpContentItem(shiboken6.Object): method __init__ (line 30) | def __init__(self, *args, **kwargs) -> None: ... method child (line 31) | def child(self, row: int, /) -> QHelpContentItem: ... method childCount (line 32) | def childCount(self, /) -> int: ... method childPosition (line 33) | def childPosition(self, child: QHelpContentItem, /) -> int: ... method parent (line 34) | def parent(self, /) -> QHelpContentItem: ... method row (line 35) | def row(self, /) -> int: ... method title (line 36) | def title(self, /) -> str: ... method url (line 37) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QHelpContentModel (line 39) | class QHelpContentModel(PySide6.QtCore.QAbstractItemModel): method __init__ (line 43) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method columnCount (line 44) | def columnCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method contentItemAt (line 45) | def contentItemAt(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method createContents (line 46) | def createContents(self, customFilterName: str, /) -> None: ... method createContentsForCurrentFilter (line 47) | def createContentsForCurrentFilter(self, /) -> None: ... method data (line 48) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method index (line 49) | def index(self, row: int, column: int, /, parent: PySide6.QtCore.QMode... method isCreatingContents (line 50) | def isCreatingContents(self, /) -> bool: ... method parent (line 52) | def parent(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method parent (line 54) | def parent(self, /) -> PySide6.QtCore.QObject: ... method rowCount (line 55) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... class QHelpContentWidget (line 57) | class QHelpContentWidget(PySide6.QtWidgets.QTreeView): method __init__ (line 60) | def __init__(self, *args, acceptDrops: bool = ..., accessibleDescripti... method indexOf (line 61) | def indexOf(self, link: PySide6.QtCore.QUrl | str, /) -> PySide6.QtCor... class QHelpEngine (line 63) | class QHelpEngine(QHelpEngineCore): method __init__ (line 65) | def __init__(self, collectionFile: str, /, parent: PySide6.QtCore.QObj... method contentModel (line 66) | def contentModel(self, /) -> QHelpContentModel: ... method contentWidget (line 67) | def contentWidget(self, /) -> QHelpContentWidget: ... method indexModel (line 68) | def indexModel(self, /) -> QHelpIndexModel: ... method indexWidget (line 69) | def indexWidget(self, /) -> QHelpIndexWidget: ... method searchEngine (line 70) | def searchEngine(self, /) -> QHelpSearchEngine: ... class QHelpEngineCore (line 72) | class QHelpEngineCore(PySide6.QtCore.QObject): method __init__ (line 79) | def __init__(self, collectionFile: str, /, parent: PySide6.QtCore.QObj... method addCustomFilter (line 80) | def addCustomFilter(self, filterName: str, attributes: typing.Iterable... method autoSaveFilter (line 81) | def autoSaveFilter(self, /) -> bool: ... method collectionFile (line 82) | def collectionFile(self, /) -> str: ... method copyCollectionFile (line 83) | def copyCollectionFile(self, fileName: str, /) -> bool: ... method currentFilter (line 84) | def currentFilter(self, /) -> str: ... method customFilters (line 85) | def customFilters(self, /) -> List[str]: ... method customValue (line 86) | def customValue(self, key: str, /, defaultValue: Any = ...) -> Any: ... method documentationFileName (line 87) | def documentationFileName(self, namespaceName: str, /) -> str: ... method documentsForIdentifier (line 89) | def documentsForIdentifier(self, id: str, filterName: str, /) -> List[... method documentsForIdentifier (line 91) | def documentsForIdentifier(self, id: str, /) -> List[QHelpLink]: ... method documentsForKeyword (line 93) | def documentsForKeyword(self, keyword: str, filterName: str, /) -> Lis... method documentsForKeyword (line 95) | def documentsForKeyword(self, keyword: str, /) -> List[QHelpLink]: ... method error (line 96) | def error(self, /) -> str: ... method fileData (line 97) | def fileData(self, url: PySide6.QtCore.QUrl | str, /) -> PySide6.QtCor... method files (line 99) | def files(self, namespaceName: str, filterName: str, /, extensionFilte... method files (line 101) | def files(self, namespaceName: str, filterAttributes: typing.Iterable[... method filterAttributeSets (line 102) | def filterAttributeSets(self, namespaceName: str, /) -> List[List[str]... method filterAttributes (line 104) | def filterAttributes(self, filterName: str, /) -> List[str]: ... method filterAttributes (line 106) | def filterAttributes(self, /) -> List[str]: ... method filterEngine (line 107) | def filterEngine(self, /) -> QHelpFilterEngine: ... method findFile (line 108) | def findFile(self, url: PySide6.QtCore.QUrl | str, /) -> PySide6.QtCor... method isReadOnly (line 109) | def isReadOnly(self, /) -> bool: ... method metaData (line 111) | def metaData(documentationFileName: str, name: str, /) -> Any: ... method namespaceName (line 113) | def namespaceName(documentationFileName: str, /) -> str: ... method registerDocumentation (line 114) | def registerDocumentation(self, documentationFileName: str, /) -> bool... method registeredDocumentations (line 115) | def registeredDocumentations(self, /) -> List[str]: ... method removeCustomFilter (line 116) | def removeCustomFilter(self, filterName: str, /) -> bool: ... method removeCustomValue (line 117) | def removeCustomValue(self, key: str, /) -> bool: ... method setAutoSaveFilter (line 118) | def setAutoSaveFilter(self, save: bool, /) -> None: ... method setCollectionFile (line 119) | def setCollectionFile(self, fileName: str, /) -> None: ... method setCurrentFilter (line 120) | def setCurrentFilter(self, filterName: str, /) -> None: ... method setCustomValue (line 121) | def setCustomValue(self, key: str, value: Any, /) -> bool: ... method setReadOnly (line 122) | def setReadOnly(self, enable: bool, /) -> None: ... method setUsesFilterEngine (line 123) | def setUsesFilterEngine(self, uses: bool, /) -> None: ... method setupData (line 124) | def setupData(self, /) -> bool: ... method unregisterDocumentation (line 125) | def unregisterDocumentation(self, namespaceName: str, /) -> bool: ... method usesFilterEngine (line 126) | def usesFilterEngine(self, /) -> bool: ... class QHelpFilterData (line 128) | class QHelpFilterData(shiboken6.Object): method __init__ (line 130) | def __init__(self, other: QHelpFilterData, /) -> None: ... method __init__ (line 132) | def __init__(self, /) -> None: ... method components (line 133) | def components(self, /) -> List[str]: ... method setComponents (line 134) | def setComponents(self, components: typing.Iterable[str], /) -> None: ... method setVersions (line 135) | def setVersions(self, versions: typing.Iterable[PySide6.QtCore.QVersio... method swap (line 136) | def swap(self, other: QHelpFilterData, /) -> None: ... method versions (line 137) | def versions(self, /) -> List[PySide6.QtCore.QVersionNumber]: ... method __copy__ (line 138) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 139) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 140) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 141) | def __gt__(self, other: object) -> bool: ... method __le__ (line 142) | def __le__(self, other: object) -> bool: ... method __lt__ (line 143) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 144) | def __ne__(self, other: object) -> bool: ... class QHelpFilterEngine (line 146) | class QHelpFilterEngine(PySide6.QtCore.QObject): method __init__ (line 149) | def __init__(self, helpEngine: QHelpEngineCore, /, destroyed: typing.C... method activeFilter (line 150) | def activeFilter(self, /) -> str: ... method availableComponents (line 151) | def availableComponents(self, /) -> List[str]: ... method availableVersions (line 152) | def availableVersions(self, /) -> List[PySide6.QtCore.QVersionNumber]:... method filterData (line 153) | def filterData(self, filterName: str, /) -> QHelpFilterData: ... method filters (line 154) | def filters(self, /) -> List[str]: ... method indices (line 156) | def indices(self, filterName: str, /) -> List[str]: ... method indices (line 158) | def indices(self, /) -> List[str]: ... method namespaceToComponent (line 159) | def namespaceToComponent(self, /) -> Dict[str, str]: ... method namespaceToVersion (line 160) | def namespaceToVersion(self, /) -> Dict[str, PySide6.QtCore.QVersionNu... method namespacesForFilter (line 161) | def namespacesForFilter(self, filterName: str, /) -> List[str]: ... method removeFilter (line 162) | def removeFilter(self, filterName: str, /) -> bool: ... method setActiveFilter (line 163) | def setActiveFilter(self, filterName: str, /) -> bool: ... method setFilterData (line 164) | def setFilterData(self, filterName: str, filterData: QHelpFilterData, ... class QHelpFilterSettingsWidget (line 166) | class QHelpFilterSettingsWidget(PySide6.QtWidgets.QWidget): method __init__ (line 168) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method applySettings (line 169) | def applySettings(self, filterEngine: QHelpFilterEngine, /) -> bool: ... method readSettings (line 170) | def readSettings(self, filterEngine: QHelpFilterEngine, /) -> None: ... method setAvailableComponents (line 171) | def setAvailableComponents(self, components: typing.Iterable[str], /) ... method setAvailableVersions (line 172) | def setAvailableVersions(self, versions: typing.Iterable[PySide6.QtCor... class QHelpGlobal (line 174) | class QHelpGlobal(shiboken6.Object): method __init__ (line 176) | def __init__(self, QHelpGlobal: QHelpGlobal, /) -> None: ... method __init__ (line 178) | def __init__(self, /) -> None: ... method documentTitle (line 180) | def documentTitle(content: str, /) -> str: ... method uniquifyConnectionName (line 182) | def uniquifyConnectionName(name: str, pointer: int, /) -> str: ... method __copy__ (line 183) | def __copy__(self, /) -> typing_extensions.Self: ... class QHelpIndexModel (line 185) | class QHelpIndexModel(PySide6.QtCore.QStringListModel): method __init__ (line 189) | def __init__(self, *args, columnsAboutToBeInserted: typing.Callable = ... method createIndex (line 190) | def createIndex(self, customFilterName: str, /) -> None: ... # type: ... method createIndexForCurrentFilter (line 191) | def createIndexForCurrentFilter(self, /) -> None: ... method filter (line 192) | def filter(self, filter: str, /, wildcard: str = ...) -> PySide6.QtCor... method helpEngine (line 193) | def helpEngine(self, /) -> QHelpEngineCore: ... method isCreatingIndex (line 194) | def isCreatingIndex(self, /) -> bool: ... class QHelpIndexWidget (line 196) | class QHelpIndexWidget(PySide6.QtWidgets.QListView): method __init__ (line 202) | def __init__(self, *args, acceptDrops: bool = ..., accessibleDescripti... method activateCurrentItem (line 203) | def activateCurrentItem(self, /) -> None: ... method filterIndices (line 204) | def filterIndices(self, filter: str, /, wildcard: str = ...) -> None: ... class QHelpLink (line 206) | class QHelpLink(shiboken6.Object): method __init__ (line 210) | def __init__(self, QHelpLink: QHelpLink, /) -> None: ... method __init__ (line 212) | def __init__(self, /) -> None: ... method __copy__ (line 213) | def __copy__(self, /) -> typing_extensions.Self: ... class QHelpSearchEngine (line 215) | class QHelpSearchEngine(PySide6.QtCore.QObject): method __init__ (line 221) | def __init__(self, helpEngine: QHelpEngineCore, /, parent: PySide6.QtC... method cancelIndexing (line 222) | def cancelIndexing(self, /) -> None: ... method cancelSearching (line 223) | def cancelSearching(self, /) -> None: ... method hitCount (line 224) | def hitCount(self, /) -> int: ... method hits (line 225) | def hits(self, start: int, end: int, /) -> List[Tuple[str, str]]: ... method hitsCount (line 226) | def hitsCount(self, /) -> int: ... method query (line 227) | def query(self, /) -> List[QHelpSearchQuery]: ... method queryWidget (line 228) | def queryWidget(self, /) -> QHelpSearchQueryWidget: ... method reindexDocumentation (line 229) | def reindexDocumentation(self, /) -> None: ... method resultWidget (line 230) | def resultWidget(self, /) -> QHelpSearchResultWidget: ... method scheduleIndexDocumentation (line 231) | def scheduleIndexDocumentation(self, /) -> None: ... method search (line 233) | def search(self, searchInput: str, /) -> None: ... method search (line 235) | def search(self, queryList: typing.Iterable[QHelpSearchQuery], /) -> N... method searchInput (line 236) | def searchInput(self, /) -> str: ... method searchResultCount (line 237) | def searchResultCount(self, /) -> int: ... method searchResults (line 238) | def searchResults(self, start: int, end: int, /) -> List[QHelpSearchRe... class QHelpSearchEngineCore (line 240) | class QHelpSearchEngineCore(PySide6.QtCore.QObject): method __init__ (line 246) | def __init__(self, helpEngine: QHelpEngineCore, /, parent: PySide6.QtC... method cancelIndexing (line 247) | def cancelIndexing(self, /) -> None: ... method cancelSearching (line 248) | def cancelSearching(self, /) -> None: ... method reindexDocumentation (line 249) | def reindexDocumentation(self, /) -> None: ... method scheduleIndexDocumentation (line 250) | def scheduleIndexDocumentation(self, /) -> None: ... method search (line 251) | def search(self, searchInput: str, /) -> None: ... method searchInput (line 252) | def searchInput(self, /) -> str: ... method searchResultCount (line 253) | def searchResultCount(self, /) -> int: ... method searchResults (line 254) | def searchResults(self, start: int, end: int, /) -> List[QHelpSearchRe... class QHelpSearchQuery (line 256) | class QHelpSearchQuery(shiboken6.Object): class FieldName (line 257) | class FieldName(enum.Enum): method __init__ (line 267) | def __init__(self, field: QHelpSearchQuery.FieldName, wordList_: typin... method __init__ (line 269) | def __init__(self, QHelpSearchQuery: QHelpSearchQuery, /) -> None: ... method __init__ (line 271) | def __init__(self, /) -> None: ... method __copy__ (line 272) | def __copy__(self, /) -> typing_extensions.Self: ... class QHelpSearchQueryWidget (line 274) | class QHelpSearchQueryWidget(PySide6.QtWidgets.QWidget): method __init__ (line 277) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method changeEvent (line 278) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method collapseExtendedSearch (line 279) | def collapseExtendedSearch(self, /) -> None: ... method expandExtendedSearch (line 280) | def expandExtendedSearch(self, /) -> None: ... method focusInEvent (line 281) | def focusInEvent(self, focusEvent: PySide6.QtGui.QFocusEvent, /) -> No... method isCompactMode (line 282) | def isCompactMode(self, /) -> bool: ... method query (line 283) | def query(self, /) -> List[QHelpSearchQuery]: ... method searchInput (line 284) | def searchInput(self, /) -> str: ... method setCompactMode (line 285) | def setCompactMode(self, on: bool, /) -> None: ... method setQuery (line 286) | def setQuery(self, queryList: typing.Iterable[QHelpSearchQuery], /) ->... method setSearchInput (line 287) | def setSearchInput(self, searchInput: str, /) -> None: ... class QHelpSearchResult (line 289) | class QHelpSearchResult(shiboken6.Object): method __init__ (line 291) | def __init__(self, url: PySide6.QtCore.QUrl | str, title: str, snippet... method __init__ (line 293) | def __init__(self, other: QHelpSearchResult, /) -> None: ... method __init__ (line 295) | def __init__(self, /) -> None: ... method snippet (line 296) | def snippet(self, /) -> str: ... method title (line 297) | def title(self, /) -> str: ... method url (line 298) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QHelpSearchResultWidget (line 300) | class QHelpSearchResultWidget(PySide6.QtWidgets.QWidget): method __init__ (line 303) | def __init__(self, *args, acceptDrops: bool = ..., accessibleDescripti... method changeEvent (line 304) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method linkAt (line 305) | def linkAt(self, point: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QU... class QIntList (line 307) | class QIntList: method __init__ (line 309) | def __init__(self, *args, **kwargs) -> None: ... method append (line 310) | def append(self, *args, **kwargs): ... method capacity (line 311) | def capacity(self, *args, **kwargs): ... method clear (line 312) | def clear(self, *args, **kwargs): ... method constData (line 313) | def constData(self, *args, **kwargs): ... method data (line 314) | def data(self, *args, **kwargs): ... method pop_back (line 315) | def pop_back(self, *args, **kwargs): ... method pop_front (line 316) | def pop_front(self, *args, **kwargs): ... method prepend (line 317) | def prepend(self, *args, **kwargs): ... method push_back (line 318) | def push_back(self, *args, **kwargs): ... method push_front (line 319) | def push_front(self, *args, **kwargs): ... method removeFirst (line 320) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 321) | def removeLast(self, *args, **kwargs): ... method reserve (line 322) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 323) | def __delitem__(self, other) -> None: ... method __getitem__ (line 324) | def __getitem__(self, index): ... method __len__ (line 325) | def __len__(self) -> int: ... method __setitem__ (line 326) | def __setitem__(self, index, object) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtHttpServer.pyi class QAbstractHttpServer (line 14) | class QAbstractHttpServer(PySide6.QtCore.QObject): method __init__ (line 16) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method bind (line 18) | def bind(self, server: PySide6.QtNetwork.QLocalServer, /) -> bool: ... method bind (line 20) | def bind(self, server: PySide6.QtNetwork.QTcpServer, /) -> bool: ... method http2Configuration (line 21) | def http2Configuration(self, /) -> PySide6.QtNetwork.QHttp2Configurati... method localServers (line 22) | def localServers(self, /) -> List[PySide6.QtNetwork.QLocalServer]: ... method serverPorts (line 23) | def serverPorts(self, /) -> List[int]: ... method servers (line 24) | def servers(self, /) -> List[PySide6.QtNetwork.QTcpServer]: ... method setHttp2Configuration (line 25) | def setHttp2Configuration(self, configuration: PySide6.QtNetwork.QHttp... class QFutureHttpServerResponse (line 27) | class QFutureHttpServerResponse(shiboken6.Object): method __init__ (line 29) | def __init__(self, QFutureHttpServerResponse: QFutureHttpServerRespons... method __init__ (line 31) | def __init__(self, /) -> None: ... method cancel (line 32) | def cancel(self, /) -> None: ... method cancelChain (line 33) | def cancelChain(self, /) -> None: ... method isCanceled (line 34) | def isCanceled(self, /) -> bool: ... method isFinished (line 35) | def isFinished(self, /) -> bool: ... method isPaused (line 36) | def isPaused(self, /) -> bool: ... method isRunning (line 37) | def isRunning(self, /) -> bool: ... method isStarted (line 38) | def isStarted(self, /) -> bool: ... method isSuspended (line 39) | def isSuspended(self, /) -> bool: ... method isSuspending (line 40) | def isSuspending(self, /) -> bool: ... method isValid (line 41) | def isValid(self, /) -> bool: ... method pause (line 42) | def pause(self, /) -> None: ... method progressMaximum (line 43) | def progressMaximum(self, /) -> int: ... method progressMinimum (line 44) | def progressMinimum(self, /) -> int: ... method progressText (line 45) | def progressText(self, /) -> str: ... method progressValue (line 46) | def progressValue(self, /) -> int: ... method resultCount (line 47) | def resultCount(self, /) -> int: ... method resume (line 48) | def resume(self, /) -> None: ... method setPaused (line 49) | def setPaused(self, paused: bool, /) -> None: ... method setSuspended (line 50) | def setSuspended(self, suspend: bool, /) -> None: ... method suspend (line 51) | def suspend(self, /) -> None: ... method togglePaused (line 52) | def togglePaused(self, /) -> None: ... method toggleSuspended (line 53) | def toggleSuspended(self, /) -> None: ... method waitForFinished (line 54) | def waitForFinished(self, /) -> None: ... method __copy__ (line 55) | def __copy__(self, /) -> typing_extensions.Self: ... class QHttpServer (line 57) | class QHttpServer(QAbstractHttpServer): method __init__ (line 59) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method addAfterRequestHandler (line 60) | def addAfterRequestHandler(self, context: PySide6.QtCore.QObject, call... method clearMissingHandler (line 61) | def clearMissingHandler(self, /) -> None: ... method handleRequest (line 62) | def handleRequest(self, request: QHttpServerRequest, responder: QHttpS... method missingHandler (line 63) | def missingHandler(self, request: QHttpServerRequest, responder: QHttp... method route (line 64) | def route(self, rule: str, callback: collections.abc.Callable[..., typ... method router (line 65) | def router(self, /) -> QHttpServerRouter: ... class QHttpServerRequest (line 67) | class QHttpServerRequest(shiboken6.Object): class Method (line 68) | class Method(enum.Flag): method __init__ (line 81) | def __init__(self, other: QHttpServerRequest, /) -> None: ... method __init__ (line 83) | def __init__(self, /) -> None: ... method body (line 84) | def body(self, /) -> PySide6.QtCore.QByteArray: ... method headers (line 85) | def headers(self, /) -> PySide6.QtNetwork.QHttpHeaders: ... method localAddress (line 86) | def localAddress(self, /) -> PySide6.QtNetwork.QHostAddress: ... method localPort (line 87) | def localPort(self, /) -> int: ... method method (line 88) | def method(self, /) -> QHttpServerRequest.Method: ... method query (line 89) | def query(self, /) -> PySide6.QtCore.QUrlQuery: ... method remoteAddress (line 90) | def remoteAddress(self, /) -> PySide6.QtNetwork.QHostAddress: ... method remotePort (line 91) | def remotePort(self, /) -> int: ... method sslConfiguration (line 92) | def sslConfiguration(self, /) -> PySide6.QtNetwork.QSslConfiguration: ... method swap (line 93) | def swap(self, other: QHttpServerRequest, /) -> None: ... method url (line 94) | def url(self, /) -> PySide6.QtCore.QUrl: ... method value (line 95) | def value(self, key: PySide6.QtCore.QByteArray | bytes | bytearray | m... class QHttpServerResponder (line 97) | class QHttpServerResponder(shiboken6.Object): class StatusCode (line 98) | class StatusCode(enum.Enum): method __init__ (line 160) | def __init__(self, *args, **kwargs) -> None: ... method sendResponse (line 161) | def sendResponse(self, response: QHttpServerResponse, /) -> None: ... method swap (line 162) | def swap(self, other: QHttpServerResponder, /) -> None: ... method write (line 164) | def write(self, document: PySide6.QtCore.QJsonDocument, headers: PySid... method write (line 166) | def write(self, data: PySide6.QtCore.QIODevice, mimeType: PySide6.QtCo... method write (line 168) | def write(self, data: PySide6.QtCore.QByteArray | bytes | bytearray | ... method write (line 170) | def write(self, data: PySide6.QtCore.QIODevice, headers: PySide6.QtNet... method write (line 172) | def write(self, data: PySide6.QtCore.QByteArray | bytes | bytearray | ... method write (line 174) | def write(self, headers: PySide6.QtNetwork.QHttpHeaders, /, status: QH... method write (line 176) | def write(self, document: PySide6.QtCore.QJsonDocument, /, status: QHt... method write (line 178) | def write(self, /, status: QHttpServerResponder.StatusCode = ...) -> N... method writeBeginChunked (line 180) | def writeBeginChunked(self, headers: PySide6.QtNetwork.QHttpHeaders, t... method writeBeginChunked (line 182) | def writeBeginChunked(self, mimeType: PySide6.QtCore.QByteArray | byte... method writeBeginChunked (line 184) | def writeBeginChunked(self, headers: PySide6.QtNetwork.QHttpHeaders, /... method writeChunk (line 185) | def writeChunk(self, data: PySide6.QtCore.QByteArray | bytes | bytearr... method writeEndChunked (line 187) | def writeEndChunked(self, data: PySide6.QtCore.QByteArray | bytes | by... method writeEndChunked (line 189) | def writeEndChunked(self, data: PySide6.QtCore.QByteArray | bytes | by... class QHttpServerResponse (line 191) | class QHttpServerResponse(shiboken6.Object): method __init__ (line 193) | def __init__(self, mimeType: PySide6.QtCore.QByteArray | bytes | bytea... method __init__ (line 195) | def __init__(self, data: PySide6.QtCore.QJsonArray, /, status: QHttpSe... method __init__ (line 197) | def __init__(self, data: str, /, status: QHttpServerResponder.StatusCo... method __init__ (line 199) | def __init__(self, data: Dict[str, PySide6.QtCore.QJsonValue], /, stat... method __init__ (line 201) | def __init__(self, data: bytes | bytearray | memoryview, /, status: QH... method __init__ (line 203) | def __init__(self, data: PySide6.QtCore.QByteArray | bytes | bytearray... method __init__ (line 205) | def __init__(self, statusCode: QHttpServerResponder.StatusCode, /) -> ... method data (line 206) | def data(self, /) -> PySide6.QtCore.QByteArray: ... method fromFile (line 208) | def fromFile(fileName: str, /) -> QHttpServerResponse: ... method headers (line 209) | def headers(self, /) -> PySide6.QtNetwork.QHttpHeaders: ... method mimeType (line 210) | def mimeType(self, /) -> PySide6.QtCore.QByteArray: ... method setHeaders (line 211) | def setHeaders(self, newHeaders: PySide6.QtNetwork.QHttpHeaders, /) ->... method statusCode (line 212) | def statusCode(self, /) -> QHttpServerResponder.StatusCode: ... method swap (line 213) | def swap(self, other: QHttpServerResponse, /) -> None: ... class QHttpServerRouter (line 215) | class QHttpServerRouter(shiboken6.Object): method __init__ (line 216) | def __init__(self, server: QAbstractHttpServer, /) -> None: ... method addConverter (line 217) | def addConverter(self, metaType: PySide6.QtCore.QMetaType | PySide6.Qt... method clearConverters (line 218) | def clearConverters(self, /) -> None: ... method converters (line 219) | def converters(self, /) -> Dict[PySide6.QtCore.QMetaType, str]: ... method handleRequest (line 220) | def handleRequest(self, request: QHttpServerRequest, responder: QHttpS... method removeConverter (line 221) | def removeConverter(self, metaType: PySide6.QtCore.QMetaType | PySide6... class QHttpServerRouterRule (line 223) | class QHttpServerRouterRule(shiboken6.Object): method __init__ (line 224) | def __init__(self, *args, **kwargs) -> None: ... method contextObject (line 225) | def contextObject(self, /) -> PySide6.QtCore.QObject: ... method exec (line 226) | def exec(self, request: QHttpServerRequest, responder: QHttpServerResp... method hasValidMethods (line 227) | def hasValidMethods(self, /) -> bool: ... method matches (line 228) | def matches(self, request: QHttpServerRequest, match: PySide6.QtCore.Q... class QHttpServerWebSocketUpgradeResponse (line 230) | class QHttpServerWebSocketUpgradeResponse(shiboken6.Object): class ResponseType (line 231) | class ResponseType(enum.Enum): method __init__ (line 235) | def __init__(self, other: QHttpServerWebSocketUpgradeResponse, /) -> N... method accept (line 237) | def accept() -> QHttpServerWebSocketUpgradeResponse: ... method deny (line 240) | def deny(status: int, message: PySide6.QtCore.QByteArray | bytes | byt... method deny (line 243) | def deny() -> QHttpServerWebSocketUpgradeResponse: ... method denyMessage (line 244) | def denyMessage(self, /) -> PySide6.QtCore.QByteArray: ... method denyStatus (line 245) | def denyStatus(self, /) -> int: ... method passToNext (line 247) | def passToNext() -> QHttpServerWebSocketUpgradeResponse: ... method swap (line 248) | def swap(self, other: QHttpServerWebSocketUpgradeResponse, /) -> None:... method type (line 249) | def type(self, /) -> QHttpServerWebSocketUpgradeResponse.ResponseType:... class QIntList (line 251) | class QIntList: method __init__ (line 253) | def __init__(self, *args, **kwargs) -> None: ... method append (line 254) | def append(self, *args, **kwargs): ... method capacity (line 255) | def capacity(self, *args, **kwargs): ... method clear (line 256) | def clear(self, *args, **kwargs): ... method constData (line 257) | def constData(self, *args, **kwargs): ... method data (line 258) | def data(self, *args, **kwargs): ... method pop_back (line 259) | def pop_back(self, *args, **kwargs): ... method pop_front (line 260) | def pop_front(self, *args, **kwargs): ... method prepend (line 261) | def prepend(self, *args, **kwargs): ... method push_back (line 262) | def push_back(self, *args, **kwargs): ... method push_front (line 263) | def push_front(self, *args, **kwargs): ... method removeFirst (line 264) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 265) | def removeLast(self, *args, **kwargs): ... method reserve (line 266) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 267) | def __delitem__(self, other) -> None: ... method __getitem__ (line 268) | def __getitem__(self, index): ... method __len__ (line 269) | def __len__(self) -> int: ... method __setitem__ (line 270) | def __setitem__(self, index, object) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtLocation.pyi class QGeoCodeReply (line 14) | class QGeoCodeReply(PySide6.QtCore.QObject): class Error (line 15) | class Error(enum.Enum): method __init__ (line 28) | def __init__(self, error: QGeoCodeReply.Error, errorString: str, /, pa... method __init__ (line 30) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method abort (line 31) | def abort(self, /) -> None: ... method addLocation (line 32) | def addLocation(self, location: PySide6.QtPositioning.QGeoLocation, /)... method error (line 33) | def error(self, /) -> QGeoCodeReply.Error: ... method errorString (line 34) | def errorString(self, /) -> str: ... method isFinished (line 35) | def isFinished(self, /) -> bool: ... method limit (line 36) | def limit(self, /) -> int: ... method locations (line 37) | def locations(self, /) -> List[PySide6.QtPositioning.QGeoLocation]: ... method offset (line 38) | def offset(self, /) -> int: ... method setError (line 39) | def setError(self, error: QGeoCodeReply.Error, errorString: str, /) ->... method setFinished (line 40) | def setFinished(self, finished: bool, /) -> None: ... method setLimit (line 41) | def setLimit(self, limit: int, /) -> None: ... method setLocations (line 42) | def setLocations(self, locations: typing.Iterable[PySide6.QtPositionin... method setOffset (line 43) | def setOffset(self, offset: int, /) -> None: ... method setViewport (line 44) | def setViewport(self, viewport: PySide6.QtPositioning.QGeoShape, /) ->... method viewport (line 45) | def viewport(self, /) -> PySide6.QtPositioning.QGeoShape: ... class QGeoCodingManager (line 47) | class QGeoCodingManager(PySide6.QtCore.QObject): method __init__ (line 51) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method geocode (line 53) | def geocode(self, searchString: str, /, limit: int = ..., offset: int ... method geocode (line 55) | def geocode(self, address: PySide6.QtPositioning.QGeoAddress, /, bound... method locale (line 56) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method managerName (line 57) | def managerName(self, /) -> str: ... method managerVersion (line 58) | def managerVersion(self, /) -> int: ... method reverseGeocode (line 59) | def reverseGeocode(self, coordinate: PySide6.QtPositioning.QGeoCoordin... method setLocale (line 60) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... class QGeoCodingManagerEngine (line 62) | class QGeoCodingManagerEngine(PySide6.QtCore.QObject): method __init__ (line 66) | def __init__(self, parameters: Dict[str, Any], /, parent: PySide6.QtCo... method geocode (line 68) | def geocode(self, address: str, limit: int, offset: int, bounds: PySid... method geocode (line 70) | def geocode(self, address: PySide6.QtPositioning.QGeoAddress, bounds: ... method locale (line 71) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method managerName (line 72) | def managerName(self, /) -> str: ... method managerVersion (line 73) | def managerVersion(self, /) -> int: ... method reverseGeocode (line 74) | def reverseGeocode(self, coordinate: PySide6.QtPositioning.QGeoCoordin... method setLocale (line 75) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... class QGeoManeuver (line 77) | class QGeoManeuver(shiboken6.Object): class InstructionDirection (line 78) | class InstructionDirection(enum.Enum): method __init__ (line 92) | def __init__(self, other: QGeoManeuver, /, *, valid: bool | None = ...... method __init__ (line 94) | def __init__(self, /, *, valid: bool | None = ..., position: PySide6.Q... method direction (line 95) | def direction(self, /) -> QGeoManeuver.InstructionDirection: ... method distanceToNextInstruction (line 96) | def distanceToNextInstruction(self, /) -> float: ... method extendedAttributes (line 97) | def extendedAttributes(self, /) -> Dict[str, Any]: ... method instructionText (line 98) | def instructionText(self, /) -> str: ... method isValid (line 99) | def isValid(self, /) -> bool: ... method position (line 100) | def position(self, /) -> PySide6.QtPositioning.QGeoCoordinate: ... method setDirection (line 101) | def setDirection(self, direction: QGeoManeuver.InstructionDirection, /... method setDistanceToNextInstruction (line 102) | def setDistanceToNextInstruction(self, distance: float, /) -> None: ... method setExtendedAttributes (line 103) | def setExtendedAttributes(self, extendedAttributes: Dict[str, Any], /)... method setInstructionText (line 104) | def setInstructionText(self, instructionText: str, /) -> None: ... method setPosition (line 105) | def setPosition(self, position: PySide6.QtPositioning.QGeoCoordinate, ... method setTimeToNextInstruction (line 106) | def setTimeToNextInstruction(self, secs: int, /) -> None: ... method setWaypoint (line 107) | def setWaypoint(self, coordinate: PySide6.QtPositioning.QGeoCoordinate... method swap (line 108) | def swap(self, other: QGeoManeuver, /) -> None: ... method timeToNextInstruction (line 109) | def timeToNextInstruction(self, /) -> int: ... method waypoint (line 110) | def waypoint(self, /) -> PySide6.QtPositioning.QGeoCoordinate: ... method __copy__ (line 111) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 112) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 113) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 114) | def __gt__(self, other: object) -> bool: ... method __le__ (line 115) | def __le__(self, other: object) -> bool: ... method __lt__ (line 116) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 117) | def __ne__(self, other: object) -> bool: ... class QGeoRoute (line 119) | class QGeoRoute(shiboken6.Object): method __init__ (line 121) | def __init__(self, other: QGeoRoute, /, *, routeId: str | None = ..., ... method __init__ (line 123) | def __init__(self, /, *, routeId: str | None = ..., bounds: PySide6.Qt... method bounds (line 124) | def bounds(self, /) -> PySide6.QtPositioning.QGeoRectangle: ... method distance (line 125) | def distance(self, /) -> float: ... method extendedAttributes (line 126) | def extendedAttributes(self, /) -> Dict[str, Any]: ... method firstRouteSegment (line 127) | def firstRouteSegment(self, /) -> QGeoRouteSegment: ... method legIndex (line 128) | def legIndex(self, /) -> int: ... method overallRoute (line 129) | def overallRoute(self, /) -> QGeoRoute: ... method path (line 130) | def path(self, /) -> List[PySide6.QtPositioning.QGeoCoordinate]: ... method request (line 131) | def request(self, /) -> QGeoRouteRequest: ... method routeId (line 132) | def routeId(self, /) -> str: ... method routeLegs (line 133) | def routeLegs(self, /) -> List[QGeoRoute]: ... method segments (line 134) | def segments(self, /) -> List[QGeoRouteSegment]: ... method segmentsCount (line 135) | def segmentsCount(self, /) -> int: ... method setBounds (line 136) | def setBounds(self, bounds: PySide6.QtPositioning.QGeoRectangle | PySi... method setDistance (line 137) | def setDistance(self, distance: float, /) -> None: ... method setExtendedAttributes (line 138) | def setExtendedAttributes(self, extendedAttributes: Dict[str, Any], /)... method setFirstRouteSegment (line 139) | def setFirstRouteSegment(self, routeSegment: QGeoRouteSegment, /) -> N... method setLegIndex (line 140) | def setLegIndex(self, idx: int, /) -> None: ... method setOverallRoute (line 141) | def setOverallRoute(self, route: QGeoRoute, /) -> None: ... method setPath (line 142) | def setPath(self, path: typing.Iterable[PySide6.QtPositioning.QGeoCoor... method setRequest (line 143) | def setRequest(self, request: QGeoRouteRequest, /) -> None: ... method setRouteId (line 144) | def setRouteId(self, id: str, /) -> None: ... method setRouteLegs (line 145) | def setRouteLegs(self, legs: typing.Iterable[QGeoRoute], /) -> None: ... method setTravelMode (line 146) | def setTravelMode(self, mode: QGeoRouteRequest.TravelMode, /) -> None:... method setTravelTime (line 147) | def setTravelTime(self, secs: int, /) -> None: ... method swap (line 148) | def swap(self, other: QGeoRoute, /) -> None: ... method travelMode (line 149) | def travelMode(self, /) -> QGeoRouteRequest.TravelMode: ... method travelTime (line 150) | def travelTime(self, /) -> int: ... method __copy__ (line 151) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 152) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 153) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 154) | def __gt__(self, other: object) -> bool: ... method __le__ (line 155) | def __le__(self, other: object) -> bool: ... method __lt__ (line 156) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 157) | def __ne__(self, other: object) -> bool: ... class QGeoRouteReply (line 159) | class QGeoRouteReply(PySide6.QtCore.QObject): class Error (line 160) | class Error(enum.Enum): method __init__ (line 172) | def __init__(self, error: QGeoRouteReply.Error, errorString: str, /, p... method __init__ (line 174) | def __init__(self, request: QGeoRouteRequest, /, parent: PySide6.QtCor... method abort (line 175) | def abort(self, /) -> None: ... method addRoutes (line 176) | def addRoutes(self, routes: typing.Iterable[QGeoRoute], /) -> None: ... method error (line 177) | def error(self, /) -> QGeoRouteReply.Error: ... method errorString (line 178) | def errorString(self, /) -> str: ... method isFinished (line 179) | def isFinished(self, /) -> bool: ... method request (line 180) | def request(self, /) -> QGeoRouteRequest: ... method routes (line 181) | def routes(self, /) -> List[QGeoRoute]: ... method setError (line 182) | def setError(self, error: QGeoRouteReply.Error, errorString: str, /) -... method setFinished (line 183) | def setFinished(self, finished: bool, /) -> None: ... method setRoutes (line 184) | def setRoutes(self, routes: typing.Iterable[QGeoRoute], /) -> None: ... class QGeoRouteRequest (line 186) | class QGeoRouteRequest(shiboken6.Object): class FeatureType (line 187) | class FeatureType(enum.Flag): class FeatureWeight (line 199) | class FeatureWeight(enum.Flag): class ManeuverDetail (line 206) | class ManeuverDetail(enum.Flag): class RouteOptimization (line 210) | class RouteOptimization(enum.Flag): class SegmentDetail (line 216) | class SegmentDetail(enum.Flag): class TravelMode (line 220) | class TravelMode(enum.Flag): method __init__ (line 227) | def __init__(self, origin: PySide6.QtPositioning.QGeoCoordinate, desti... method __init__ (line 229) | def __init__(self, other: QGeoRouteRequest, /) -> None: ... method __init__ (line 231) | def __init__(self, /, waypoints: typing.Iterable[PySide6.QtPositioning... method departureTime (line 232) | def departureTime(self, /) -> PySide6.QtCore.QDateTime: ... method excludeAreas (line 233) | def excludeAreas(self, /) -> List[PySide6.QtPositioning.QGeoRectangle]... method featureTypes (line 234) | def featureTypes(self, /) -> List[QGeoRouteRequest.FeatureType]: ... method featureWeight (line 235) | def featureWeight(self, featureType: QGeoRouteRequest.FeatureType, /) ... method maneuverDetail (line 236) | def maneuverDetail(self, /) -> QGeoRouteRequest.ManeuverDetail: ... method numberAlternativeRoutes (line 237) | def numberAlternativeRoutes(self, /) -> int: ... method routeOptimization (line 238) | def routeOptimization(self, /) -> QGeoRouteRequest.RouteOptimization: ... method segmentDetail (line 239) | def segmentDetail(self, /) -> QGeoRouteRequest.SegmentDetail: ... method setDepartureTime (line 240) | def setDepartureTime(self, departureTime: PySide6.QtCore.QDateTime | d... method setExcludeAreas (line 241) | def setExcludeAreas(self, areas: typing.Iterable[PySide6.QtPositioning... method setFeatureWeight (line 242) | def setFeatureWeight(self, featureType: QGeoRouteRequest.FeatureType, ... method setManeuverDetail (line 243) | def setManeuverDetail(self, maneuverDetail: QGeoRouteRequest.ManeuverD... method setNumberAlternativeRoutes (line 244) | def setNumberAlternativeRoutes(self, alternatives: int, /) -> None: ... method setRouteOptimization (line 245) | def setRouteOptimization(self, optimization: QGeoRouteRequest.RouteOpt... method setSegmentDetail (line 246) | def setSegmentDetail(self, segmentDetail: QGeoRouteRequest.SegmentDeta... method setTravelModes (line 247) | def setTravelModes(self, travelModes: QGeoRouteRequest.TravelMode, /) ... method setWaypoints (line 248) | def setWaypoints(self, waypoints: typing.Iterable[PySide6.QtPositionin... method swap (line 249) | def swap(self, other: QGeoRouteRequest, /) -> None: ... method travelModes (line 250) | def travelModes(self, /) -> QGeoRouteRequest.TravelMode: ... method waypoints (line 251) | def waypoints(self, /) -> List[PySide6.QtPositioning.QGeoCoordinate]: ... method __eq__ (line 252) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 253) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 254) | def __gt__(self, other: object) -> bool: ... method __le__ (line 255) | def __le__(self, other: object) -> bool: ... method __lt__ (line 256) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 257) | def __ne__(self, other: object) -> bool: ... class QGeoRouteSegment (line 259) | class QGeoRouteSegment(shiboken6.Object): method __init__ (line 261) | def __init__(self, other: QGeoRouteSegment, /, *, travelTime: int | No... method __init__ (line 263) | def __init__(self, /, *, travelTime: int | None = ..., distance: float... method distance (line 264) | def distance(self, /) -> float: ... method isLegLastSegment (line 265) | def isLegLastSegment(self, /) -> bool: ... method isValid (line 266) | def isValid(self, /) -> bool: ... method maneuver (line 267) | def maneuver(self, /) -> QGeoManeuver: ... method nextRouteSegment (line 268) | def nextRouteSegment(self, /) -> QGeoRouteSegment: ... method path (line 269) | def path(self, /) -> List[PySide6.QtPositioning.QGeoCoordinate]: ... method setDistance (line 270) | def setDistance(self, distance: float, /) -> None: ... method setManeuver (line 271) | def setManeuver(self, maneuver: QGeoManeuver, /) -> None: ... method setNextRouteSegment (line 272) | def setNextRouteSegment(self, routeSegment: QGeoRouteSegment, /) -> No... method setPath (line 273) | def setPath(self, path: typing.Iterable[PySide6.QtPositioning.QGeoCoor... method setTravelTime (line 274) | def setTravelTime(self, secs: int, /) -> None: ... method swap (line 275) | def swap(self, other: QGeoRouteSegment, /) -> None: ... method travelTime (line 276) | def travelTime(self, /) -> int: ... method __copy__ (line 277) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 278) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 279) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 280) | def __gt__(self, other: object) -> bool: ... method __le__ (line 281) | def __le__(self, other: object) -> bool: ... method __lt__ (line 282) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 283) | def __ne__(self, other: object) -> bool: ... class QGeoRoutingManager (line 285) | class QGeoRoutingManager(PySide6.QtCore.QObject): method __init__ (line 289) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method calculateRoute (line 290) | def calculateRoute(self, request: QGeoRouteRequest, /) -> QGeoRouteRep... method locale (line 291) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method managerName (line 292) | def managerName(self, /) -> str: ... method managerVersion (line 293) | def managerVersion(self, /) -> int: ... method measurementSystem (line 294) | def measurementSystem(self, /) -> PySide6.QtCore.QLocale.MeasurementSy... method setLocale (line 295) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setMeasurementSystem (line 296) | def setMeasurementSystem(self, system: PySide6.QtCore.QLocale.Measurem... method supportedFeatureTypes (line 297) | def supportedFeatureTypes(self, /) -> QGeoRouteRequest.FeatureType: ... method supportedFeatureWeights (line 298) | def supportedFeatureWeights(self, /) -> QGeoRouteRequest.FeatureWeight... method supportedManeuverDetails (line 299) | def supportedManeuverDetails(self, /) -> QGeoRouteRequest.ManeuverDeta... method supportedRouteOptimizations (line 300) | def supportedRouteOptimizations(self, /) -> QGeoRouteRequest.RouteOpti... method supportedSegmentDetails (line 301) | def supportedSegmentDetails(self, /) -> QGeoRouteRequest.SegmentDetail... method supportedTravelModes (line 302) | def supportedTravelModes(self, /) -> QGeoRouteRequest.TravelMode: ... method updateRoute (line 303) | def updateRoute(self, route: QGeoRoute, position: PySide6.QtPositionin... class QGeoRoutingManagerEngine (line 305) | class QGeoRoutingManagerEngine(PySide6.QtCore.QObject): method __init__ (line 309) | def __init__(self, parameters: Dict[str, Any], /, parent: PySide6.QtCo... method calculateRoute (line 310) | def calculateRoute(self, request: QGeoRouteRequest, /) -> QGeoRouteRep... method locale (line 311) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method managerName (line 312) | def managerName(self, /) -> str: ... method managerVersion (line 313) | def managerVersion(self, /) -> int: ... method measurementSystem (line 314) | def measurementSystem(self, /) -> PySide6.QtCore.QLocale.MeasurementSy... method setLocale (line 315) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setMeasurementSystem (line 316) | def setMeasurementSystem(self, system: PySide6.QtCore.QLocale.Measurem... method setSupportedFeatureTypes (line 317) | def setSupportedFeatureTypes(self, featureTypes: QGeoRouteRequest.Feat... method setSupportedFeatureWeights (line 318) | def setSupportedFeatureWeights(self, featureWeights: QGeoRouteRequest.... method setSupportedManeuverDetails (line 319) | def setSupportedManeuverDetails(self, maneuverDetails: QGeoRouteReques... method setSupportedRouteOptimizations (line 320) | def setSupportedRouteOptimizations(self, optimizations: QGeoRouteReque... method setSupportedSegmentDetails (line 321) | def setSupportedSegmentDetails(self, segmentDetails: QGeoRouteRequest.... method setSupportedTravelModes (line 322) | def setSupportedTravelModes(self, travelModes: QGeoRouteRequest.Travel... method supportedFeatureTypes (line 323) | def supportedFeatureTypes(self, /) -> QGeoRouteRequest.FeatureType: ... method supportedFeatureWeights (line 324) | def supportedFeatureWeights(self, /) -> QGeoRouteRequest.FeatureWeight... method supportedManeuverDetails (line 325) | def supportedManeuverDetails(self, /) -> QGeoRouteRequest.ManeuverDeta... method supportedRouteOptimizations (line 326) | def supportedRouteOptimizations(self, /) -> QGeoRouteRequest.RouteOpti... method supportedSegmentDetails (line 327) | def supportedSegmentDetails(self, /) -> QGeoRouteRequest.SegmentDetail... method supportedTravelModes (line 328) | def supportedTravelModes(self, /) -> QGeoRouteRequest.TravelMode: ... method updateRoute (line 329) | def updateRoute(self, route: QGeoRoute, position: PySide6.QtPositionin... class QGeoServiceProvider (line 331) | class QGeoServiceProvider(PySide6.QtCore.QObject): class Error (line 332) | class Error(enum.Enum): class GeocodingFeature (line 340) | class GeocodingFeature(enum.Flag): class MappingFeature (line 348) | class MappingFeature(enum.Flag): class NavigationFeature (line 355) | class NavigationFeature(enum.Flag): class PlacesFeature (line 361) | class PlacesFeature(enum.Flag): class RoutingFeature (line 376) | class RoutingFeature(enum.Flag): method __init__ (line 386) | def __init__(self, providerName: str, /, parameters: Dict[str, Any] = ... method availableServiceProviders (line 388) | def availableServiceProviders() -> List[str]: ... method error (line 389) | def error(self, /) -> QGeoServiceProvider.Error: ... method errorString (line 390) | def errorString(self, /) -> str: ... method geocodingError (line 391) | def geocodingError(self, /) -> QGeoServiceProvider.Error: ... method geocodingErrorString (line 392) | def geocodingErrorString(self, /) -> str: ... method geocodingFeatures (line 393) | def geocodingFeatures(self, /) -> QGeoServiceProvider.GeocodingFeature... method geocodingManager (line 394) | def geocodingManager(self, /) -> QGeoCodingManager: ... method mappingError (line 395) | def mappingError(self, /) -> QGeoServiceProvider.Error: ... method mappingErrorString (line 396) | def mappingErrorString(self, /) -> str: ... method mappingFeatures (line 397) | def mappingFeatures(self, /) -> QGeoServiceProvider.MappingFeature: ... method navigationError (line 398) | def navigationError(self, /) -> QGeoServiceProvider.Error: ... method navigationErrorString (line 399) | def navigationErrorString(self, /) -> str: ... method navigationFeatures (line 400) | def navigationFeatures(self, /) -> QGeoServiceProvider.NavigationFeatu... method placeManager (line 401) | def placeManager(self, /) -> QPlaceManager: ... method placesError (line 402) | def placesError(self, /) -> QGeoServiceProvider.Error: ... method placesErrorString (line 403) | def placesErrorString(self, /) -> str: ... method placesFeatures (line 404) | def placesFeatures(self, /) -> QGeoServiceProvider.PlacesFeature: ... method routingError (line 405) | def routingError(self, /) -> QGeoServiceProvider.Error: ... method routingErrorString (line 406) | def routingErrorString(self, /) -> str: ... method routingFeatures (line 407) | def routingFeatures(self, /) -> QGeoServiceProvider.RoutingFeature: ... method routingManager (line 408) | def routingManager(self, /) -> QGeoRoutingManager: ... method setAllowExperimental (line 409) | def setAllowExperimental(self, allow: bool, /) -> None: ... method setLocale (line 410) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setParameters (line 411) | def setParameters(self, parameters: Dict[str, Any], /) -> None: ... class QGeoServiceProviderFactory (line 413) | class QGeoServiceProviderFactory(shiboken6.Object): method __init__ (line 414) | def __init__(self, /) -> None: ... method createGeocodingManagerEngine (line 415) | def createGeocodingManagerEngine(self, parameters: Dict[str, Any], err... method createPlaceManagerEngine (line 416) | def createPlaceManagerEngine(self, parameters: Dict[str, Any], error: ... method createRoutingManagerEngine (line 417) | def createRoutingManagerEngine(self, parameters: Dict[str, Any], error... class QIntList (line 419) | class QIntList: method __init__ (line 421) | def __init__(self, *args, **kwargs) -> None: ... method append (line 422) | def append(self, *args, **kwargs): ... method capacity (line 423) | def capacity(self, *args, **kwargs): ... method clear (line 424) | def clear(self, *args, **kwargs): ... method constData (line 425) | def constData(self, *args, **kwargs): ... method data (line 426) | def data(self, *args, **kwargs): ... method pop_back (line 427) | def pop_back(self, *args, **kwargs): ... method pop_front (line 428) | def pop_front(self, *args, **kwargs): ... method prepend (line 429) | def prepend(self, *args, **kwargs): ... method push_back (line 430) | def push_back(self, *args, **kwargs): ... method push_front (line 431) | def push_front(self, *args, **kwargs): ... method removeFirst (line 432) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 433) | def removeLast(self, *args, **kwargs): ... method reserve (line 434) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 435) | def __delitem__(self, other) -> None: ... method __getitem__ (line 436) | def __getitem__(self, index): ... method __len__ (line 437) | def __len__(self) -> int: ... method __setitem__ (line 438) | def __setitem__(self, index, object) -> None: ... class QLocation (line 440) | class QLocation(shiboken6.Object): class Visibility (line 441) | class Visibility(enum.Flag): method __init__ (line 446) | def __init__(self, *args, **kwargs) -> None: ... class QPlace (line 448) | class QPlace(shiboken6.Object): method __init__ (line 450) | def __init__(self, other: QPlace, /) -> None: ... method __init__ (line 452) | def __init__(self, /) -> None: ... method appendContactDetail (line 453) | def appendContactDetail(self, contactType: str, detail: QPlaceContactD... method attribution (line 454) | def attribution(self, /) -> str: ... method categories (line 455) | def categories(self, /) -> List[QPlaceCategory]: ... method contactDetails (line 456) | def contactDetails(self, contactType: str, /) -> List[QPlaceContactDet... method contactTypes (line 457) | def contactTypes(self, /) -> List[str]: ... method content (line 458) | def content(self, type: QPlaceContent.Type, /) -> Dict[int, QPlaceCont... method detailsFetched (line 459) | def detailsFetched(self, /) -> bool: ... method extendedAttribute (line 460) | def extendedAttribute(self, attributeType: str, /) -> QPlaceAttribute:... method extendedAttributeTypes (line 461) | def extendedAttributeTypes(self, /) -> List[str]: ... method icon (line 462) | def icon(self, /) -> QPlaceIcon: ... method insertContent (line 463) | def insertContent(self, type: QPlaceContent.Type, content: Dict[int, Q... method isEmpty (line 464) | def isEmpty(self, /) -> bool: ... method location (line 465) | def location(self, /) -> PySide6.QtPositioning.QGeoLocation: ... method name (line 466) | def name(self, /) -> str: ... method placeId (line 467) | def placeId(self, /) -> str: ... method primaryEmail (line 468) | def primaryEmail(self, /) -> str: ... method primaryFax (line 469) | def primaryFax(self, /) -> str: ... method primaryPhone (line 470) | def primaryPhone(self, /) -> str: ... method primaryWebsite (line 471) | def primaryWebsite(self, /) -> PySide6.QtCore.QUrl: ... method ratings (line 472) | def ratings(self, /) -> QPlaceRatings: ... method removeContactDetails (line 473) | def removeContactDetails(self, contactType: str, /) -> None: ... method removeExtendedAttribute (line 474) | def removeExtendedAttribute(self, attributeType: str, /) -> None: ... method setAttribution (line 475) | def setAttribution(self, attribution: str, /) -> None: ... method setCategories (line 476) | def setCategories(self, categories: typing.Iterable[QPlaceCategory], /... method setCategory (line 477) | def setCategory(self, category: QPlaceCategory, /) -> None: ... method setContactDetails (line 478) | def setContactDetails(self, contactType: str, details: typing.Iterable... method setContent (line 479) | def setContent(self, type: QPlaceContent.Type, content: Dict[int, QPla... method setDetailsFetched (line 480) | def setDetailsFetched(self, fetched: bool, /) -> None: ... method setExtendedAttribute (line 481) | def setExtendedAttribute(self, attributeType: str, attribute: QPlaceAt... method setIcon (line 482) | def setIcon(self, icon: QPlaceIcon, /) -> None: ... method setLocation (line 483) | def setLocation(self, location: PySide6.QtPositioning.QGeoLocation, /)... method setName (line 484) | def setName(self, name: str, /) -> None: ... method setPlaceId (line 485) | def setPlaceId(self, identifier: str, /) -> None: ... method setRatings (line 486) | def setRatings(self, ratings: QPlaceRatings, /) -> None: ... method setSupplier (line 487) | def setSupplier(self, supplier: QPlaceSupplier, /) -> None: ... method setTotalContentCount (line 488) | def setTotalContentCount(self, type: QPlaceContent.Type, total: int, /... method setVisibility (line 489) | def setVisibility(self, visibility: QLocation.Visibility, /) -> None: ... method supplier (line 490) | def supplier(self, /) -> QPlaceSupplier: ... method swap (line 491) | def swap(self, other: QPlace, /) -> None: ... method totalContentCount (line 492) | def totalContentCount(self, type: QPlaceContent.Type, /) -> int: ... method visibility (line 493) | def visibility(self, /) -> QLocation.Visibility: ... method __copy__ (line 494) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 495) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 496) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 497) | def __gt__(self, other: object) -> bool: ... method __le__ (line 498) | def __le__(self, other: object) -> bool: ... method __lt__ (line 499) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 500) | def __ne__(self, other: object) -> bool: ... class QPlaceAttribute (line 502) | class QPlaceAttribute(shiboken6.Object): method __init__ (line 507) | def __init__(self, other: QPlaceAttribute, /, *, label: str | None = .... method __init__ (line 509) | def __init__(self, /, *, label: str | None = ..., text: str | None = .... method isEmpty (line 510) | def isEmpty(self, /) -> bool: ... method label (line 511) | def label(self, /) -> str: ... method setLabel (line 512) | def setLabel(self, label: str, /) -> None: ... method setText (line 513) | def setText(self, text: str, /) -> None: ... method swap (line 514) | def swap(self, other: QPlaceAttribute, /) -> None: ... method text (line 515) | def text(self, /) -> str: ... method __copy__ (line 516) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 517) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 518) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 519) | def __gt__(self, other: object) -> bool: ... method __le__ (line 520) | def __le__(self, other: object) -> bool: ... method __lt__ (line 521) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 522) | def __ne__(self, other: object) -> bool: ... class QPlaceCategory (line 524) | class QPlaceCategory(shiboken6.Object): method __init__ (line 526) | def __init__(self, other: QPlaceCategory, /) -> None: ... method __init__ (line 528) | def __init__(self, /) -> None: ... method categoryId (line 529) | def categoryId(self, /) -> str: ... method icon (line 530) | def icon(self, /) -> QPlaceIcon: ... method isEmpty (line 531) | def isEmpty(self, /) -> bool: ... method name (line 532) | def name(self, /) -> str: ... method setCategoryId (line 533) | def setCategoryId(self, identifier: str, /) -> None: ... method setIcon (line 534) | def setIcon(self, icon: QPlaceIcon, /) -> None: ... method setName (line 535) | def setName(self, name: str, /) -> None: ... method setVisibility (line 536) | def setVisibility(self, visibility: QLocation.Visibility, /) -> None: ... method swap (line 537) | def swap(self, other: QPlaceCategory, /) -> None: ... method visibility (line 538) | def visibility(self, /) -> QLocation.Visibility: ... method __copy__ (line 539) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 540) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 541) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 542) | def __gt__(self, other: object) -> bool: ... method __le__ (line 543) | def __le__(self, other: object) -> bool: ... method __lt__ (line 544) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 545) | def __ne__(self, other: object) -> bool: ... class QPlaceContactDetail (line 547) | class QPlaceContactDetail(shiboken6.Object): method __init__ (line 553) | def __init__(self, other: QPlaceContactDetail, /, *, label: str | None... method __init__ (line 555) | def __init__(self, /, *, label: str | None = ..., value: str | None = ... method clear (line 556) | def clear(self, /) -> None: ... method label (line 557) | def label(self, /) -> str: ... method setLabel (line 558) | def setLabel(self, label: str, /) -> None: ... method setValue (line 559) | def setValue(self, value: str, /) -> None: ... method swap (line 560) | def swap(self, other: QPlaceContactDetail, /) -> None: ... method value (line 561) | def value(self, /) -> str: ... method __copy__ (line 562) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 563) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 564) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 565) | def __gt__(self, other: object) -> bool: ... method __le__ (line 566) | def __le__(self, other: object) -> bool: ... method __lt__ (line 567) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 568) | def __ne__(self, other: object) -> bool: ... class QPlaceContent (line 570) | class QPlaceContent(shiboken6.Object): class DataTag (line 571) | class DataTag(enum.Enum): class Type (line 589) | class Type(enum.Enum): method __init__ (line 596) | def __init__(self, other: QPlaceContent, /) -> None: ... method __init__ (line 598) | def __init__(self, /, type: QPlaceContent.Type = ...) -> None: ... method attribution (line 599) | def attribution(self, /) -> str: ... method dataTags (line 600) | def dataTags(self, /) -> List[QPlaceContent.DataTag]: ... method setAttribution (line 601) | def setAttribution(self, attribution: str, /) -> None: ... method setSupplier (line 602) | def setSupplier(self, supplier: QPlaceSupplier, /) -> None: ... method setUser (line 603) | def setUser(self, user: QPlaceUser, /) -> None: ... method setValue (line 604) | def setValue(self, tag: QPlaceContent.DataTag, arg__2: Any, /) -> None... method supplier (line 605) | def supplier(self, /) -> QPlaceSupplier: ... method swap (line 606) | def swap(self, other: QPlaceContent | QPlaceContent.Type, /) -> None: ... method type (line 607) | def type(self, /) -> QPlaceContent.Type: ... method user (line 608) | def user(self, /) -> QPlaceUser: ... method value (line 609) | def value(self, tag: QPlaceContent.DataTag, /) -> Any: ... method __copy__ (line 610) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 611) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 612) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 613) | def __gt__(self, other: object) -> bool: ... method __le__ (line 614) | def __le__(self, other: object) -> bool: ... method __lt__ (line 615) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 616) | def __ne__(self, other: object) -> bool: ... class QPlaceContentReply (line 618) | class QPlaceContentReply(QPlaceReply): method __init__ (line 620) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method content (line 621) | def content(self, /) -> Dict[int, QPlaceContent]: ... method nextPageRequest (line 622) | def nextPageRequest(self, /) -> QPlaceContentRequest: ... method previousPageRequest (line 623) | def previousPageRequest(self, /) -> QPlaceContentRequest: ... method request (line 624) | def request(self, /) -> QPlaceContentRequest: ... method setContent (line 625) | def setContent(self, content: Dict[int, QPlaceContent], /) -> None: ... method setNextPageRequest (line 626) | def setNextPageRequest(self, next: QPlaceContentRequest, /) -> None: ... method setPreviousPageRequest (line 627) | def setPreviousPageRequest(self, previous: QPlaceContentRequest, /) ->... method setRequest (line 628) | def setRequest(self, request: QPlaceContentRequest, /) -> None: ... method setTotalCount (line 629) | def setTotalCount(self, total: int, /) -> None: ... method totalCount (line 630) | def totalCount(self, /) -> int: ... method type (line 631) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceContentRequest (line 633) | class QPlaceContentRequest(shiboken6.Object): method __init__ (line 635) | def __init__(self, other: QPlaceContentRequest, /) -> None: ... method __init__ (line 637) | def __init__(self, /) -> None: ... method clear (line 638) | def clear(self, /) -> None: ... method contentContext (line 639) | def contentContext(self, /) -> Any: ... method contentType (line 640) | def contentType(self, /) -> QPlaceContent.Type: ... method limit (line 641) | def limit(self, /) -> int: ... method placeId (line 642) | def placeId(self, /) -> str: ... method setContentContext (line 643) | def setContentContext(self, context: Any, /) -> None: ... method setContentType (line 644) | def setContentType(self, type: QPlaceContent.Type, /) -> None: ... method setLimit (line 645) | def setLimit(self, limit: int, /) -> None: ... method setPlaceId (line 646) | def setPlaceId(self, identifier: str, /) -> None: ... method swap (line 647) | def swap(self, other: QPlaceContentRequest, /) -> None: ... method __copy__ (line 648) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 649) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 650) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 651) | def __gt__(self, other: object) -> bool: ... method __le__ (line 652) | def __le__(self, other: object) -> bool: ... method __lt__ (line 653) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 654) | def __ne__(self, other: object) -> bool: ... class QPlaceDetailsReply (line 656) | class QPlaceDetailsReply(QPlaceReply): method __init__ (line 658) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method place (line 659) | def place(self, /) -> QPlace: ... method setPlace (line 660) | def setPlace(self, place: QPlace, /) -> None: ... method type (line 661) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceIcon (line 663) | class QPlaceIcon(shiboken6.Object): method __init__ (line 666) | def __init__(self, other: QPlaceIcon, /, *, parameters: Optional[Dict[... method __init__ (line 668) | def __init__(self, /, *, parameters: Optional[Dict[str, Any]] = ..., m... method isEmpty (line 669) | def isEmpty(self, /) -> bool: ... method manager (line 670) | def manager(self, /) -> QPlaceManager: ... method parameters (line 671) | def parameters(self, /) -> Dict[str, Any]: ... method setManager (line 672) | def setManager(self, manager: QPlaceManager, /) -> None: ... method setParameters (line 673) | def setParameters(self, parameters: Dict[str, Any], /) -> None: ... method swap (line 674) | def swap(self, other: QPlaceIcon, /) -> None: ... method url (line 675) | def url(self, /, size: PySide6.QtCore.QSize = ...) -> PySide6.QtCore.Q... method __copy__ (line 676) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 677) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 678) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 679) | def __gt__(self, other: object) -> bool: ... method __le__ (line 680) | def __le__(self, other: object) -> bool: ... method __lt__ (line 681) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 682) | def __ne__(self, other: object) -> bool: ... class QPlaceIdReply (line 684) | class QPlaceIdReply(QPlaceReply): class OperationType (line 685) | class OperationType(enum.Enum): method __init__ (line 691) | def __init__(self, operationType: QPlaceIdReply.OperationType, /, pare... method id (line 692) | def id(self, /) -> str: ... method operationType (line 693) | def operationType(self, /) -> QPlaceIdReply.OperationType: ... method setId (line 694) | def setId(self, identifier: str, /) -> None: ... method type (line 695) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceManager (line 697) | class QPlaceManager(PySide6.QtCore.QObject): method __init__ (line 708) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method category (line 709) | def category(self, categoryId: str, /) -> QPlaceCategory: ... method childCategories (line 710) | def childCategories(self, /, parentId: str = ...) -> List[QPlaceCatego... method childCategoryIds (line 711) | def childCategoryIds(self, /, parentId: str = ...) -> List[str]: ... method compatiblePlace (line 712) | def compatiblePlace(self, place: QPlace, /) -> QPlace: ... method getPlaceContent (line 713) | def getPlaceContent(self, request: QPlaceContentRequest, /) -> QPlaceC... method getPlaceDetails (line 714) | def getPlaceDetails(self, placeId: str, /) -> QPlaceDetailsReply: ... method initializeCategories (line 715) | def initializeCategories(self, /) -> QPlaceReply: ... method locales (line 716) | def locales(self, /) -> List[PySide6.QtCore.QLocale]: ... method managerName (line 717) | def managerName(self, /) -> str: ... method managerVersion (line 718) | def managerVersion(self, /) -> int: ... method matchingPlaces (line 719) | def matchingPlaces(self, request: QPlaceMatchRequest, /) -> QPlaceMatc... method parentCategoryId (line 720) | def parentCategoryId(self, categoryId: str, /) -> str: ... method removeCategory (line 721) | def removeCategory(self, categoryId: str, /) -> QPlaceIdReply: ... method removePlace (line 722) | def removePlace(self, placeId: str, /) -> QPlaceIdReply: ... method saveCategory (line 723) | def saveCategory(self, category: QPlaceCategory, /, parentId: str = ..... method savePlace (line 724) | def savePlace(self, place: QPlace, /) -> QPlaceIdReply: ... method search (line 725) | def search(self, query: QPlaceSearchRequest, /) -> QPlaceSearchReply: ... method searchSuggestions (line 726) | def searchSuggestions(self, request: QPlaceSearchRequest, /) -> QPlace... method setLocale (line 727) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setLocales (line 728) | def setLocales(self, locale: typing.Iterable[PySide6.QtCore.QLocale], ... class QPlaceManagerEngine (line 730) | class QPlaceManagerEngine(PySide6.QtCore.QObject): method __init__ (line 741) | def __init__(self, parameters: Dict[str, Any], /, parent: PySide6.QtCo... method category (line 742) | def category(self, categoryId: str, /) -> QPlaceCategory: ... method childCategories (line 743) | def childCategories(self, parentId: str, /) -> List[QPlaceCategory]: ... method childCategoryIds (line 744) | def childCategoryIds(self, categoryId: str, /) -> List[str]: ... method compatiblePlace (line 745) | def compatiblePlace(self, original: QPlace, /) -> QPlace: ... method constructIconUrl (line 746) | def constructIconUrl(self, icon: QPlaceIcon, size: PySide6.QtCore.QSiz... method getPlaceContent (line 747) | def getPlaceContent(self, request: QPlaceContentRequest, /) -> QPlaceC... method getPlaceDetails (line 748) | def getPlaceDetails(self, placeId: str, /) -> QPlaceDetailsReply: ... method initializeCategories (line 749) | def initializeCategories(self, /) -> QPlaceReply: ... method locales (line 750) | def locales(self, /) -> List[PySide6.QtCore.QLocale]: ... method manager (line 751) | def manager(self, /) -> QPlaceManager: ... method managerName (line 752) | def managerName(self, /) -> str: ... method managerVersion (line 753) | def managerVersion(self, /) -> int: ... method matchingPlaces (line 754) | def matchingPlaces(self, request: QPlaceMatchRequest, /) -> QPlaceMatc... method parentCategoryId (line 755) | def parentCategoryId(self, categoryId: str, /) -> str: ... method removeCategory (line 756) | def removeCategory(self, categoryId: str, /) -> QPlaceIdReply: ... method removePlace (line 757) | def removePlace(self, placeId: str, /) -> QPlaceIdReply: ... method saveCategory (line 758) | def saveCategory(self, category: QPlaceCategory, parentId: str, /) -> ... method savePlace (line 759) | def savePlace(self, place: QPlace, /) -> QPlaceIdReply: ... method search (line 760) | def search(self, request: QPlaceSearchRequest, /) -> QPlaceSearchReply... method searchSuggestions (line 761) | def searchSuggestions(self, request: QPlaceSearchRequest, /) -> QPlace... method setLocales (line 762) | def setLocales(self, locales: typing.Iterable[PySide6.QtCore.QLocale],... class QPlaceMatchReply (line 764) | class QPlaceMatchReply(QPlaceReply): method __init__ (line 766) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method places (line 767) | def places(self, /) -> List[QPlace]: ... method request (line 768) | def request(self, /) -> QPlaceMatchRequest: ... method setPlaces (line 769) | def setPlaces(self, results: typing.Iterable[QPlace], /) -> None: ... method setRequest (line 770) | def setRequest(self, request: QPlaceMatchRequest, /) -> None: ... method type (line 771) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceMatchRequest (line 773) | class QPlaceMatchRequest(shiboken6.Object): method __init__ (line 776) | def __init__(self, other: QPlaceMatchRequest, /) -> None: ... method __init__ (line 778) | def __init__(self, /) -> None: ... method clear (line 779) | def clear(self, /) -> None: ... method parameters (line 780) | def parameters(self, /) -> Dict[str, Any]: ... method places (line 781) | def places(self, /) -> List[QPlace]: ... method setParameters (line 782) | def setParameters(self, parameters: Dict[str, Any], /) -> None: ... method setPlaces (line 783) | def setPlaces(self, places: typing.Iterable[QPlace], /) -> None: ... method setResults (line 784) | def setResults(self, results: typing.Iterable[QPlaceSearchResult], /) ... method swap (line 785) | def swap(self, other: QPlaceMatchRequest, /) -> None: ... method __copy__ (line 786) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 787) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 788) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 789) | def __gt__(self, other: object) -> bool: ... method __le__ (line 790) | def __le__(self, other: object) -> bool: ... method __lt__ (line 791) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 792) | def __ne__(self, other: object) -> bool: ... class QPlaceProposedSearchResult (line 794) | class QPlaceProposedSearchResult(QPlaceSearchResult): method __init__ (line 796) | def __init__(self, other: QPlaceSearchResult, /) -> None: ... method __init__ (line 798) | def __init__(self, /) -> None: ... method searchRequest (line 799) | def searchRequest(self, /) -> QPlaceSearchRequest: ... method setSearchRequest (line 800) | def setSearchRequest(self, request: QPlaceSearchRequest, /) -> None: ... class QPlaceRatings (line 802) | class QPlaceRatings(shiboken6.Object): method __init__ (line 804) | def __init__(self, other: QPlaceRatings, /, *, average: float | None =... method __init__ (line 806) | def __init__(self, /, *, average: float | None = ..., maximum: float |... method average (line 807) | def average(self, /) -> float: ... method count (line 808) | def count(self, /) -> int: ... method isEmpty (line 809) | def isEmpty(self, /) -> bool: ... method maximum (line 810) | def maximum(self, /) -> float: ... method setAverage (line 811) | def setAverage(self, average: float, /) -> None: ... method setCount (line 812) | def setCount(self, count: int, /) -> None: ... method setMaximum (line 813) | def setMaximum(self, max: float, /) -> None: ... method swap (line 814) | def swap(self, other: QPlaceRatings, /) -> None: ... method __copy__ (line 815) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 816) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 817) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 818) | def __gt__(self, other: object) -> bool: ... method __le__ (line 819) | def __le__(self, other: object) -> bool: ... method __lt__ (line 820) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 821) | def __ne__(self, other: object) -> bool: ... class QPlaceReply (line 823) | class QPlaceReply(PySide6.QtCore.QObject): class Error (line 824) | class Error(enum.Enum): class Type (line 836) | class Type(enum.Enum): method __init__ (line 849) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method abort (line 850) | def abort(self, /) -> None: ... method error (line 851) | def error(self, /) -> QPlaceReply.Error: ... method errorString (line 852) | def errorString(self, /) -> str: ... method isFinished (line 853) | def isFinished(self, /) -> bool: ... method setError (line 854) | def setError(self, error: QPlaceReply.Error, errorString: str, /) -> N... method setFinished (line 855) | def setFinished(self, finished: bool, /) -> None: ... method type (line 856) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceResult (line 858) | class QPlaceResult(QPlaceSearchResult): method __init__ (line 860) | def __init__(self, other: QPlaceSearchResult, /) -> None: ... method __init__ (line 862) | def __init__(self, /) -> None: ... method distance (line 863) | def distance(self, /) -> float: ... method isSponsored (line 864) | def isSponsored(self, /) -> bool: ... method place (line 865) | def place(self, /) -> QPlace: ... method setDistance (line 866) | def setDistance(self, distance: float, /) -> None: ... method setPlace (line 867) | def setPlace(self, place: QPlace, /) -> None: ... method setSponsored (line 868) | def setSponsored(self, sponsored: bool, /) -> None: ... class QPlaceSearchReply (line 870) | class QPlaceSearchReply(QPlaceReply): method __init__ (line 872) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method nextPageRequest (line 873) | def nextPageRequest(self, /) -> QPlaceSearchRequest: ... method previousPageRequest (line 874) | def previousPageRequest(self, /) -> QPlaceSearchRequest: ... method request (line 875) | def request(self, /) -> QPlaceSearchRequest: ... method results (line 876) | def results(self, /) -> List[QPlaceSearchResult]: ... method setNextPageRequest (line 877) | def setNextPageRequest(self, next: QPlaceSearchRequest, /) -> None: ... method setPreviousPageRequest (line 878) | def setPreviousPageRequest(self, previous: QPlaceSearchRequest, /) -> ... method setRequest (line 879) | def setRequest(self, request: QPlaceSearchRequest, /) -> None: ... method setResults (line 880) | def setResults(self, results: typing.Iterable[QPlaceSearchResult], /) ... method type (line 881) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceSearchRequest (line 883) | class QPlaceSearchRequest(shiboken6.Object): class RelevanceHint (line 884) | class RelevanceHint(enum.Enum): method __init__ (line 889) | def __init__(self, other: QPlaceSearchRequest, /) -> None: ... method __init__ (line 891) | def __init__(self, /) -> None: ... method categories (line 892) | def categories(self, /) -> List[QPlaceCategory]: ... method clear (line 893) | def clear(self, /) -> None: ... method limit (line 894) | def limit(self, /) -> int: ... method recommendationId (line 895) | def recommendationId(self, /) -> str: ... method relevanceHint (line 896) | def relevanceHint(self, /) -> QPlaceSearchRequest.RelevanceHint: ... method searchArea (line 897) | def searchArea(self, /) -> PySide6.QtPositioning.QGeoShape: ... method searchContext (line 898) | def searchContext(self, /) -> Any: ... method searchTerm (line 899) | def searchTerm(self, /) -> str: ... method setCategories (line 900) | def setCategories(self, categories: typing.Iterable[QPlaceCategory], /... method setCategory (line 901) | def setCategory(self, category: QPlaceCategory, /) -> None: ... method setLimit (line 902) | def setLimit(self, limit: int, /) -> None: ... method setRecommendationId (line 903) | def setRecommendationId(self, recommendationId: str, /) -> None: ... method setRelevanceHint (line 904) | def setRelevanceHint(self, hint: QPlaceSearchRequest.RelevanceHint, /)... method setSearchArea (line 905) | def setSearchArea(self, area: PySide6.QtPositioning.QGeoShape, /) -> N... method setSearchContext (line 906) | def setSearchContext(self, context: Any, /) -> None: ... method setSearchTerm (line 907) | def setSearchTerm(self, term: str, /) -> None: ... method setVisibilityScope (line 908) | def setVisibilityScope(self, visibilityScopes: QLocation.Visibility, /... method swap (line 909) | def swap(self, other: QPlaceSearchRequest, /) -> None: ... method visibilityScope (line 910) | def visibilityScope(self, /) -> QLocation.Visibility: ... method __eq__ (line 911) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 912) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 913) | def __gt__(self, other: object) -> bool: ... method __le__ (line 914) | def __le__(self, other: object) -> bool: ... method __lt__ (line 915) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 916) | def __ne__(self, other: object) -> bool: ... class QPlaceSearchResult (line 918) | class QPlaceSearchResult(shiboken6.Object): class SearchResultType (line 919) | class SearchResultType(enum.Enum): method __init__ (line 924) | def __init__(self, other: QPlaceSearchResult, /) -> None: ... method __init__ (line 926) | def __init__(self, /) -> None: ... method icon (line 927) | def icon(self, /) -> QPlaceIcon: ... method setIcon (line 928) | def setIcon(self, icon: QPlaceIcon, /) -> None: ... method setTitle (line 929) | def setTitle(self, title: str, /) -> None: ... method title (line 930) | def title(self, /) -> str: ... method type (line 931) | def type(self, /) -> QPlaceSearchResult.SearchResultType: ... method __eq__ (line 932) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 933) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 934) | def __gt__(self, other: object) -> bool: ... method __le__ (line 935) | def __le__(self, other: object) -> bool: ... method __lt__ (line 936) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 937) | def __ne__(self, other: object) -> bool: ... class QPlaceSearchSuggestionReply (line 939) | class QPlaceSearchSuggestionReply(QPlaceReply): method __init__ (line 941) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method setSuggestions (line 942) | def setSuggestions(self, suggestions: typing.Iterable[str], /) -> None... method suggestions (line 943) | def suggestions(self, /) -> List[str]: ... method type (line 944) | def type(self, /) -> QPlaceReply.Type: ... class QPlaceSupplier (line 946) | class QPlaceSupplier(shiboken6.Object): method __init__ (line 948) | def __init__(self, other: QPlaceSupplier, /, *, name: str | None = ...... method __init__ (line 950) | def __init__(self, /, *, name: str | None = ..., supplierId: str | Non... method icon (line 951) | def icon(self, /) -> QPlaceIcon: ... method isEmpty (line 952) | def isEmpty(self, /) -> bool: ... method name (line 953) | def name(self, /) -> str: ... method setIcon (line 954) | def setIcon(self, icon: QPlaceIcon, /) -> None: ... method setName (line 955) | def setName(self, data: str, /) -> None: ... method setSupplierId (line 956) | def setSupplierId(self, identifier: str, /) -> None: ... method setUrl (line 957) | def setUrl(self, data: PySide6.QtCore.QUrl | str, /) -> None: ... method supplierId (line 958) | def supplierId(self, /) -> str: ... method swap (line 959) | def swap(self, other: QPlaceSupplier, /) -> None: ... method url (line 960) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 961) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 962) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 963) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 964) | def __gt__(self, other: object) -> bool: ... method __le__ (line 965) | def __le__(self, other: object) -> bool: ... method __lt__ (line 966) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 967) | def __ne__(self, other: object) -> bool: ... class QPlaceUser (line 969) | class QPlaceUser(shiboken6.Object): method __init__ (line 971) | def __init__(self, other: QPlaceUser, /, *, userId: str | None = ..., ... method __init__ (line 973) | def __init__(self, /, *, userId: str | None = ..., name: str | None = ... method name (line 974) | def name(self, /) -> str: ... method setName (line 975) | def setName(self, name: str, /) -> None: ... method setUserId (line 976) | def setUserId(self, identifier: str, /) -> None: ... method swap (line 977) | def swap(self, other: QPlaceUser, /) -> None: ... method userId (line 978) | def userId(self, /) -> str: ... method __copy__ (line 979) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 980) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 981) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 982) | def __gt__(self, other: object) -> bool: ... method __le__ (line 983) | def __le__(self, other: object) -> bool: ... method __lt__ (line 984) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 985) | def __ne__(self, other: object) -> bool: ... FILE: pyside6/stubs/PySide6-stubs/QtMultimedia.pyi class QAbstractVideoBuffer (line 13) | class QAbstractVideoBuffer(shiboken6.Object): class MapData (line 14) | class MapData(shiboken6.Object): method __init__ (line 17) | def __init__(self, MapData: QAbstractVideoBuffer.MapData, /) -> None... method __init__ (line 19) | def __init__(self, /) -> None: ... method __copy__ (line 20) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 21) | def __init__(self, /) -> None: ... method format (line 22) | def format(self, /) -> QVideoFrameFormat: ... method map (line 23) | def map(self, mode: QVideoFrame.MapMode, /) -> QAbstractVideoBuffer.Ma... method unmap (line 24) | def unmap(self, /) -> None: ... class QAudio (line 26) | class QAudio(shiboken6.Object): class Error (line 27) | class Error(enum.Enum): class State (line 34) | class State(enum.Enum): class VolumeScale (line 40) | class VolumeScale(enum.Enum): method __init__ (line 45) | def __init__(self, *args, **kwargs) -> None: ... method convertVolume (line 47) | def convertVolume(volume: float, from_: QAudio.VolumeScale, to: QAudio... class QAudioBuffer (line 49) | class QAudioBuffer(shiboken6.Object): method __init__ (line 51) | def __init__(self, numFrames: int, format: QAudioFormat, /, startTime:... method __init__ (line 53) | def __init__(self, data: PySide6.QtCore.QByteArray | bytes | bytearray... method __init__ (line 55) | def __init__(self, other: QAudioBuffer, /) -> None: ... method __init__ (line 57) | def __init__(self, /) -> None: ... method byteCount (line 58) | def byteCount(self, /) -> int: ... method constData (line 59) | def constData(self, /) -> bytes | bytearray | memoryview: ... method data (line 60) | def data(self, /) -> bytes | bytearray | memoryview: ... method duration (line 61) | def duration(self, /) -> int: ... method format (line 62) | def format(self, /) -> QAudioFormat: ... method frameCount (line 63) | def frameCount(self, /) -> int: ... method isValid (line 64) | def isValid(self, /) -> bool: ... method sampleCount (line 65) | def sampleCount(self, /) -> int: ... method startTime (line 66) | def startTime(self, /) -> int: ... method swap (line 67) | def swap(self, other: QAudioBuffer, /) -> None: ... method __copy__ (line 68) | def __copy__(self, /) -> typing_extensions.Self: ... class QAudioBufferInput (line 70) | class QAudioBufferInput(PySide6.QtCore.QObject): method __init__ (line 74) | def __init__(self, format: QAudioFormat, /, parent: PySide6.QtCore.QOb... method __init__ (line 76) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method captureSession (line 77) | def captureSession(self, /) -> QMediaCaptureSession: ... method format (line 78) | def format(self, /) -> QAudioFormat: ... method sendAudioBuffer (line 79) | def sendAudioBuffer(self, audioBuffer: QAudioBuffer, /) -> bool: ... class QAudioBufferOutput (line 81) | class QAudioBufferOutput(PySide6.QtCore.QObject): method __init__ (line 85) | def __init__(self, format: QAudioFormat, /, parent: PySide6.QtCore.QOb... method __init__ (line 87) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., aud... method format (line 88) | def format(self, /) -> QAudioFormat: ... class QAudioDecoder (line 90) | class QAudioDecoder(PySide6.QtCore.QObject): class Error (line 91) | class Error(enum.Enum): method __init__ (line 107) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method audioFormat (line 108) | def audioFormat(self, /) -> QAudioFormat: ... method bufferAvailable (line 109) | def bufferAvailable(self, /) -> bool: ... method duration (line 110) | def duration(self, /) -> int: ... method errorString (line 111) | def errorString(self, /) -> str: ... method isDecoding (line 112) | def isDecoding(self, /) -> bool: ... method isSupported (line 113) | def isSupported(self, /) -> bool: ... method position (line 114) | def position(self, /) -> int: ... method read (line 115) | def read(self, /) -> QAudioBuffer: ... method setAudioFormat (line 116) | def setAudioFormat(self, format: QAudioFormat, /) -> None: ... method setSource (line 117) | def setSource(self, fileName: PySide6.QtCore.QUrl | str, /) -> None: ... method setSourceDevice (line 118) | def setSourceDevice(self, device: PySide6.QtCore.QIODevice, /) -> None... method source (line 119) | def source(self, /) -> PySide6.QtCore.QUrl: ... method sourceDevice (line 120) | def sourceDevice(self, /) -> PySide6.QtCore.QIODevice: ... method start (line 121) | def start(self, /) -> None: ... method stop (line 122) | def stop(self, /) -> None: ... class QAudioDevice (line 124) | class QAudioDevice(shiboken6.Object): class Mode (line 125) | class Mode(enum.Enum): method __init__ (line 130) | def __init__(self, other: QAudioDevice, /, *, id: PySide6.QtCore.QByte... method __init__ (line 132) | def __init__(self, /, *, id: PySide6.QtCore.QByteArray | bytes | bytea... method channelConfiguration (line 133) | def channelConfiguration(self, /) -> QAudioFormat.ChannelConfig: ... method description (line 134) | def description(self, /) -> str: ... method id (line 135) | def id(self, /) -> PySide6.QtCore.QByteArray: ... method isDefault (line 136) | def isDefault(self, /) -> bool: ... method isFormatSupported (line 137) | def isFormatSupported(self, format: QAudioFormat, /) -> bool: ... method isNull (line 138) | def isNull(self, /) -> bool: ... method maximumChannelCount (line 139) | def maximumChannelCount(self, /) -> int: ... method maximumSampleRate (line 140) | def maximumSampleRate(self, /) -> int: ... method minimumChannelCount (line 141) | def minimumChannelCount(self, /) -> int: ... method minimumSampleRate (line 142) | def minimumSampleRate(self, /) -> int: ... method mode (line 143) | def mode(self, /) -> QAudioDevice.Mode: ... method preferredFormat (line 144) | def preferredFormat(self, /) -> QAudioFormat: ... method supportedSampleFormats (line 145) | def supportedSampleFormats(self, /) -> List[QAudioFormat.SampleFormat]... method swap (line 146) | def swap(self, other: QAudioDevice, /) -> None: ... method __bool__ (line 147) | def __bool__(self) -> bool: ... method __copy__ (line 148) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 149) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 150) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 151) | def __gt__(self, other: object) -> bool: ... method __le__ (line 152) | def __le__(self, other: object) -> bool: ... method __lt__ (line 153) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 154) | def __ne__(self, other: object) -> bool: ... class QAudioFormat (line 156) | class QAudioFormat(shiboken6.Object): class AudioChannelPosition (line 157) | class AudioChannelPosition(enum.Enum): class ChannelConfig (line 184) | class ChannelConfig(enum.Enum): class SampleFormat (line 196) | class SampleFormat(enum.Enum): method __init__ (line 205) | def __init__(self, QAudioFormat: QAudioFormat, /) -> None: ... method __init__ (line 207) | def __init__(self, /) -> None: ... method bytesForDuration (line 208) | def bytesForDuration(self, microseconds: int, /) -> int: ... method bytesForFrames (line 209) | def bytesForFrames(self, frameCount: int, /) -> int: ... method bytesPerFrame (line 210) | def bytesPerFrame(self, /) -> int: ... method bytesPerSample (line 211) | def bytesPerSample(self, /) -> int: ... method channelConfig (line 212) | def channelConfig(self, /) -> QAudioFormat.ChannelConfig: ... method channelCount (line 213) | def channelCount(self, /) -> int: ... method channelOffset (line 214) | def channelOffset(self, channel: QAudioFormat.AudioChannelPosition, /)... method defaultChannelConfigForChannelCount (line 216) | def defaultChannelConfigForChannelCount(channelCount: int, /) -> QAudi... method durationForBytes (line 217) | def durationForBytes(self, byteCount: int, /) -> int: ... method durationForFrames (line 218) | def durationForFrames(self, frameCount: int, /) -> int: ... method framesForBytes (line 219) | def framesForBytes(self, byteCount: int, /) -> int: ... method framesForDuration (line 220) | def framesForDuration(self, microseconds: int, /) -> int: ... method isValid (line 221) | def isValid(self, /) -> bool: ... method normalizedSampleValue (line 222) | def normalizedSampleValue(self, sample: bytes | bytearray | memoryview... method sampleFormat (line 223) | def sampleFormat(self, /) -> QAudioFormat.SampleFormat: ... method sampleRate (line 224) | def sampleRate(self, /) -> int: ... method setChannelConfig (line 225) | def setChannelConfig(self, config: QAudioFormat.ChannelConfig, /) -> N... method setChannelCount (line 226) | def setChannelCount(self, channelCount: int, /) -> None: ... method setSampleFormat (line 227) | def setSampleFormat(self, f: QAudioFormat.SampleFormat, /) -> None: ... method setSampleRate (line 228) | def setSampleRate(self, sampleRate: int, /) -> None: ... method __copy__ (line 229) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 230) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 231) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 232) | def __gt__(self, other: object) -> bool: ... method __le__ (line 233) | def __le__(self, other: object) -> bool: ... method __lt__ (line 234) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 235) | def __ne__(self, other: object) -> bool: ... class QAudioInput (line 237) | class QAudioInput(PySide6.QtCore.QObject): method __init__ (line 243) | def __init__(self, deviceInfo: QAudioDevice, /, parent: PySide6.QtCore... method __init__ (line 245) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method device (line 246) | def device(self, /) -> QAudioDevice: ... method isMuted (line 247) | def isMuted(self, /) -> bool: ... method setDevice (line 248) | def setDevice(self, device: QAudioDevice, /) -> None: ... method setMuted (line 249) | def setMuted(self, muted: bool, /) -> None: ... method setVolume (line 250) | def setVolume(self, volume: float, /) -> None: ... method volume (line 251) | def volume(self, /) -> float: ... class QAudioOutput (line 253) | class QAudioOutput(PySide6.QtCore.QObject): method __init__ (line 259) | def __init__(self, device: QAudioDevice, /, parent: PySide6.QtCore.QOb... method __init__ (line 261) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method device (line 262) | def device(self, /) -> QAudioDevice: ... method isMuted (line 263) | def isMuted(self, /) -> bool: ... method setDevice (line 264) | def setDevice(self, device: QAudioDevice, /) -> None: ... method setMuted (line 265) | def setMuted(self, muted: bool, /) -> None: ... method setVolume (line 266) | def setVolume(self, volume: float, /) -> None: ... method volume (line 267) | def volume(self, /) -> float: ... class QAudioSink (line 269) | class QAudioSink(PySide6.QtCore.QObject): method __init__ (line 273) | def __init__(self, audioDeviceInfo: QAudioDevice, /, format: QAudioFor... method __init__ (line 275) | def __init__(self, /, format: QAudioFormat = ..., parent: PySide6.QtCo... method bufferFrameCount (line 276) | def bufferFrameCount(self, /) -> int: ... method bufferSize (line 277) | def bufferSize(self, /) -> int: ... method bytesFree (line 278) | def bytesFree(self, /) -> int: ... method elapsedUSecs (line 279) | def elapsedUSecs(self, /) -> int: ... method error (line 280) | def error(self, /) -> QtAudio.Error: ... method format (line 281) | def format(self, /) -> QAudioFormat: ... method framesFree (line 282) | def framesFree(self, /) -> int: ... method isNull (line 283) | def isNull(self, /) -> bool: ... method processedUSecs (line 284) | def processedUSecs(self, /) -> int: ... method reset (line 285) | def reset(self, /) -> None: ... method resume (line 286) | def resume(self, /) -> None: ... method setBufferFrameCount (line 287) | def setBufferFrameCount(self, framesCount: int, /) -> None: ... method setBufferSize (line 288) | def setBufferSize(self, bytes: int, /) -> None: ... method setVolume (line 289) | def setVolume(self, arg__1: float, /) -> None: ... method start (line 291) | def start(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method start (line 293) | def start(self, /) -> PySide6.QtCore.QIODevice: ... method state (line 294) | def state(self, /) -> QtAudio.State: ... method stop (line 295) | def stop(self, /) -> None: ... method suspend (line 296) | def suspend(self, /) -> None: ... method volume (line 297) | def volume(self, /) -> float: ... method __bool__ (line 298) | def __bool__(self) -> bool: ... class QAudioSource (line 300) | class QAudioSource(PySide6.QtCore.QObject): method __init__ (line 304) | def __init__(self, audioDeviceInfo: QAudioDevice, /, format: QAudioFor... method __init__ (line 306) | def __init__(self, /, format: QAudioFormat = ..., parent: PySide6.QtCo... method bufferFrameCount (line 307) | def bufferFrameCount(self, /) -> int: ... method bufferSize (line 308) | def bufferSize(self, /) -> int: ... method bytesAvailable (line 309) | def bytesAvailable(self, /) -> int: ... method elapsedUSecs (line 310) | def elapsedUSecs(self, /) -> int: ... method error (line 311) | def error(self, /) -> QtAudio.Error: ... method format (line 312) | def format(self, /) -> QAudioFormat: ... method framesAvailable (line 313) | def framesAvailable(self, /) -> int: ... method isNull (line 314) | def isNull(self, /) -> bool: ... method processedUSecs (line 315) | def processedUSecs(self, /) -> int: ... method reset (line 316) | def reset(self, /) -> None: ... method resume (line 317) | def resume(self, /) -> None: ... method setBufferFrameCount (line 318) | def setBufferFrameCount(self, frames: int, /) -> None: ... method setBufferSize (line 319) | def setBufferSize(self, bytes: int, /) -> None: ... method setVolume (line 320) | def setVolume(self, volume: float, /) -> None: ... method start (line 322) | def start(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method start (line 324) | def start(self, /) -> PySide6.QtCore.QIODevice: ... method state (line 325) | def state(self, /) -> QtAudio.State: ... method stop (line 326) | def stop(self, /) -> None: ... method suspend (line 327) | def suspend(self, /) -> None: ... method volume (line 328) | def volume(self, /) -> float: ... method __bool__ (line 329) | def __bool__(self) -> bool: ... class QCamera (line 331) | class QCamera(PySide6.QtCore.QObject): class Error (line 332) | class Error(enum.Enum): class ExposureMode (line 336) | class ExposureMode(enum.Enum): class Feature (line 355) | class Feature(enum.Flag): class FlashMode (line 363) | class FlashMode(enum.Enum): class FocusMode (line 368) | class FocusMode(enum.Enum): class TorchMode (line 376) | class TorchMode(enum.Enum): class WhiteBalanceMode (line 381) | class WhiteBalanceMode(enum.Enum): method __init__ (line 421) | def __init__(self, position: QCameraDevice.Position, /, parent: PySide... method __init__ (line 423) | def __init__(self, cameraDevice: QCameraDevice, /, parent: PySide6.QtC... method __init__ (line 425) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method cameraDevice (line 426) | def cameraDevice(self, /) -> QCameraDevice: ... method cameraFormat (line 427) | def cameraFormat(self, /) -> QCameraFormat: ... method captureSession (line 428) | def captureSession(self, /) -> QMediaCaptureSession: ... method colorTemperature (line 429) | def colorTemperature(self, /) -> int: ... method customFocusPoint (line 430) | def customFocusPoint(self, /) -> PySide6.QtCore.QPointF: ... method error (line 431) | def error(self, /) -> QCamera.Error: ... method errorString (line 432) | def errorString(self, /) -> str: ... method exposureCompensation (line 433) | def exposureCompensation(self, /) -> float: ... method exposureMode (line 434) | def exposureMode(self, /) -> QCamera.ExposureMode: ... method exposureTime (line 435) | def exposureTime(self, /) -> float: ... method flashMode (line 436) | def flashMode(self, /) -> QCamera.FlashMode: ... method focusDistance (line 437) | def focusDistance(self, /) -> float: ... method focusMode (line 438) | def focusMode(self, /) -> QCamera.FocusMode: ... method focusPoint (line 439) | def focusPoint(self, /) -> PySide6.QtCore.QPointF: ... method isActive (line 440) | def isActive(self, /) -> bool: ... method isAvailable (line 441) | def isAvailable(self, /) -> bool: ... method isExposureModeSupported (line 442) | def isExposureModeSupported(self, mode: QCamera.ExposureMode, /) -> bo... method isFlashModeSupported (line 443) | def isFlashModeSupported(self, mode: QCamera.FlashMode, /) -> bool: ... method isFlashReady (line 444) | def isFlashReady(self, /) -> bool: ... method isFocusModeSupported (line 445) | def isFocusModeSupported(self, mode: QCamera.FocusMode, /) -> bool: ... method isTorchModeSupported (line 446) | def isTorchModeSupported(self, mode: QCamera.TorchMode, /) -> bool: ... method isWhiteBalanceModeSupported (line 447) | def isWhiteBalanceModeSupported(self, mode: QCamera.WhiteBalanceMode, ... method isoSensitivity (line 448) | def isoSensitivity(self, /) -> int: ... method manualExposureTime (line 449) | def manualExposureTime(self, /) -> float: ... method manualIsoSensitivity (line 450) | def manualIsoSensitivity(self, /) -> int: ... method maximumExposureTime (line 451) | def maximumExposureTime(self, /) -> float: ... method maximumIsoSensitivity (line 452) | def maximumIsoSensitivity(self, /) -> int: ... method maximumZoomFactor (line 453) | def maximumZoomFactor(self, /) -> float: ... method minimumExposureTime (line 454) | def minimumExposureTime(self, /) -> float: ... method minimumIsoSensitivity (line 455) | def minimumIsoSensitivity(self, /) -> int: ... method minimumZoomFactor (line 456) | def minimumZoomFactor(self, /) -> float: ... method setActive (line 457) | def setActive(self, active: bool, /) -> None: ... method setAutoExposureTime (line 458) | def setAutoExposureTime(self, /) -> None: ... method setAutoIsoSensitivity (line 459) | def setAutoIsoSensitivity(self, /) -> None: ... method setCameraDevice (line 460) | def setCameraDevice(self, cameraDevice: QCameraDevice, /) -> None: ... method setCameraFormat (line 461) | def setCameraFormat(self, format: QCameraFormat, /) -> None: ... method setColorTemperature (line 462) | def setColorTemperature(self, colorTemperature: int, /) -> None: ... method setCustomFocusPoint (line 463) | def setCustomFocusPoint(self, point: PySide6.QtCore.QPointF | PySide6.... method setExposureCompensation (line 464) | def setExposureCompensation(self, ev: float, /) -> None: ... method setExposureMode (line 465) | def setExposureMode(self, mode: QCamera.ExposureMode, /) -> None: ... method setFlashMode (line 466) | def setFlashMode(self, mode: QCamera.FlashMode, /) -> None: ... method setFocusDistance (line 467) | def setFocusDistance(self, d: float, /) -> None: ... method setFocusMode (line 468) | def setFocusMode(self, mode: QCamera.FocusMode, /) -> None: ... method setManualExposureTime (line 469) | def setManualExposureTime(self, seconds: float, /) -> None: ... method setManualIsoSensitivity (line 470) | def setManualIsoSensitivity(self, iso: int, /) -> None: ... method setTorchMode (line 471) | def setTorchMode(self, mode: QCamera.TorchMode, /) -> None: ... method setWhiteBalanceMode (line 472) | def setWhiteBalanceMode(self, mode: QCamera.WhiteBalanceMode, /) -> No... method setZoomFactor (line 473) | def setZoomFactor(self, factor: float, /) -> None: ... method start (line 474) | def start(self, /) -> None: ... method stop (line 475) | def stop(self, /) -> None: ... method supportedFeatures (line 476) | def supportedFeatures(self, /) -> QCamera.Feature: ... method torchMode (line 477) | def torchMode(self, /) -> QCamera.TorchMode: ... method whiteBalanceMode (line 478) | def whiteBalanceMode(self, /) -> QCamera.WhiteBalanceMode: ... method zoomFactor (line 479) | def zoomFactor(self, /) -> float: ... method zoomTo (line 480) | def zoomTo(self, zoom: float, rate: float, /) -> None: ... class QCameraDevice (line 482) | class QCameraDevice(shiboken6.Object): class Position (line 483) | class Position(enum.Enum): method __init__ (line 488) | def __init__(self, other: QCameraDevice, /, *, id: PySide6.QtCore.QByt... method __init__ (line 490) | def __init__(self, /, *, id: PySide6.QtCore.QByteArray | bytes | bytea... method correctionAngle (line 491) | def correctionAngle(self, /) -> QtVideo.Rotation: ... method description (line 492) | def description(self, /) -> str: ... method id (line 493) | def id(self, /) -> PySide6.QtCore.QByteArray: ... method isDefault (line 494) | def isDefault(self, /) -> bool: ... method isNull (line 495) | def isNull(self, /) -> bool: ... method photoResolutions (line 496) | def photoResolutions(self, /) -> List[PySide6.QtCore.QSize]: ... method position (line 497) | def position(self, /) -> QCameraDevice.Position: ... method videoFormats (line 498) | def videoFormats(self, /) -> List[QCameraFormat]: ... method __bool__ (line 499) | def __bool__(self) -> bool: ... method __copy__ (line 500) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 501) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 502) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 503) | def __gt__(self, other: object) -> bool: ... method __le__ (line 504) | def __le__(self, other: object) -> bool: ... method __lt__ (line 505) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 506) | def __ne__(self, other: object) -> bool: ... class QCameraFormat (line 508) | class QCameraFormat(shiboken6.Object): method __init__ (line 510) | def __init__(self, other: QCameraFormat, /, *, resolution: PySide6.QtC... method __init__ (line 512) | def __init__(self, /, *, resolution: PySide6.QtCore.QSize | None = ...... method isNull (line 513) | def isNull(self, /) -> bool: ... method maxFrameRate (line 514) | def maxFrameRate(self, /) -> float: ... method minFrameRate (line 515) | def minFrameRate(self, /) -> float: ... method pixelFormat (line 516) | def pixelFormat(self, /) -> QVideoFrameFormat.PixelFormat: ... method resolution (line 517) | def resolution(self, /) -> PySide6.QtCore.QSize: ... method __bool__ (line 518) | def __bool__(self) -> bool: ... method __copy__ (line 519) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 520) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 521) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 522) | def __gt__(self, other: object) -> bool: ... method __le__ (line 523) | def __le__(self, other: object) -> bool: ... method __lt__ (line 524) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 525) | def __ne__(self, other: object) -> bool: ... class QCapturableWindow (line 527) | class QCapturableWindow(shiboken6.Object): method __init__ (line 529) | def __init__(self, window: PySide6.QtGui.QWindow, /, *, description: s... method __init__ (line 531) | def __init__(self, other: QCapturableWindow, /, *, description: str | ... method __init__ (line 533) | def __init__(self, /, *, description: str | None = ..., isValid: bool ... method description (line 534) | def description(self, /) -> str: ... method isValid (line 535) | def isValid(self, /) -> bool: ... method swap (line 536) | def swap(self, other: QCapturableWindow, /) -> None: ... method __copy__ (line 537) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 538) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 539) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 540) | def __gt__(self, other: object) -> bool: ... method __le__ (line 541) | def __le__(self, other: object) -> bool: ... method __lt__ (line 542) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 543) | def __ne__(self, other: object) -> bool: ... class QImageCapture (line 545) | class QImageCapture(PySide6.QtCore.QObject): class Error (line 546) | class Error(enum.Enum): class FileFormat (line 554) | class FileFormat(enum.Enum): class Quality (line 562) | class Quality(enum.Enum): method __init__ (line 581) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addMetaData (line 582) | def addMetaData(self, metaData: QMediaMetaData, /) -> None: ... method capture (line 583) | def capture(self, /) -> int: ... method captureSession (line 584) | def captureSession(self, /) -> QMediaCaptureSession: ... method captureToFile (line 585) | def captureToFile(self, /, location: str = ...) -> int: ... method error (line 586) | def error(self, /) -> QImageCapture.Error: ... method errorString (line 587) | def errorString(self, /) -> str: ... method fileFormat (line 588) | def fileFormat(self, /) -> QImageCapture.FileFormat: ... method fileFormatDescription (line 590) | def fileFormatDescription(c: QImageCapture.FileFormat, /) -> str: ... method fileFormatName (line 592) | def fileFormatName(c: QImageCapture.FileFormat, /) -> str: ... method isAvailable (line 593) | def isAvailable(self, /) -> bool: ... method isReadyForCapture (line 594) | def isReadyForCapture(self, /) -> bool: ... method metaData (line 595) | def metaData(self, /) -> QMediaMetaData: ... method quality (line 596) | def quality(self, /) -> QImageCapture.Quality: ... method resolution (line 597) | def resolution(self, /) -> PySide6.QtCore.QSize: ... method setFileFormat (line 598) | def setFileFormat(self, format: QImageCapture.FileFormat, /) -> None: ... method setMetaData (line 599) | def setMetaData(self, metaData: QMediaMetaData, /) -> None: ... method setQuality (line 600) | def setQuality(self, quality: QImageCapture.Quality, /) -> None: ... method setResolution (line 602) | def setResolution(self, width: int, height: int, /) -> None: ... method setResolution (line 604) | def setResolution(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method supportedFormats (line 606) | def supportedFormats() -> List[QImageCapture.FileFormat]: ... class QIntList (line 608) | class QIntList: method __init__ (line 610) | def __init__(self, *args, **kwargs) -> None: ... method append (line 611) | def append(self, *args, **kwargs): ... method capacity (line 612) | def capacity(self, *args, **kwargs): ... method clear (line 613) | def clear(self, *args, **kwargs): ... method constData (line 614) | def constData(self, *args, **kwargs): ... method data (line 615) | def data(self, *args, **kwargs): ... method pop_back (line 616) | def pop_back(self, *args, **kwargs): ... method pop_front (line 617) | def pop_front(self, *args, **kwargs): ... method prepend (line 618) | def prepend(self, *args, **kwargs): ... method push_back (line 619) | def push_back(self, *args, **kwargs): ... method push_front (line 620) | def push_front(self, *args, **kwargs): ... method removeFirst (line 621) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 622) | def removeLast(self, *args, **kwargs): ... method reserve (line 623) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 624) | def __delitem__(self, other) -> None: ... method __getitem__ (line 625) | def __getitem__(self, index): ... method __len__ (line 626) | def __len__(self) -> int: ... method __setitem__ (line 627) | def __setitem__(self, index, object) -> None: ... class QMediaCaptureSession (line 629) | class QMediaCaptureSession(PySide6.QtCore.QObject): method __init__ (line 641) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method audioBufferInput (line 642) | def audioBufferInput(self, /) -> QAudioBufferInput: ... method audioInput (line 643) | def audioInput(self, /) -> QAudioInput: ... method audioOutput (line 644) | def audioOutput(self, /) -> QAudioOutput: ... method camera (line 645) | def camera(self, /) -> QCamera: ... method imageCapture (line 646) | def imageCapture(self, /) -> QImageCapture: ... method recorder (line 647) | def recorder(self, /) -> QMediaRecorder: ... method screenCapture (line 648) | def screenCapture(self, /) -> QScreenCapture: ... method setAudioBufferInput (line 649) | def setAudioBufferInput(self, input: QAudioBufferInput, /) -> None: ... method setAudioInput (line 650) | def setAudioInput(self, input: QAudioInput, /) -> None: ... method setAudioOutput (line 651) | def setAudioOutput(self, output: QAudioOutput, /) -> None: ... method setCamera (line 652) | def setCamera(self, camera: QCamera, /) -> None: ... method setImageCapture (line 653) | def setImageCapture(self, imageCapture: QImageCapture, /) -> None: ... method setRecorder (line 654) | def setRecorder(self, recorder: QMediaRecorder, /) -> None: ... method setScreenCapture (line 655) | def setScreenCapture(self, screenCapture: QScreenCapture, /) -> None: ... method setVideoFrameInput (line 656) | def setVideoFrameInput(self, input: QVideoFrameInput, /) -> None: ... method setVideoOutput (line 657) | def setVideoOutput(self, output: PySide6.QtCore.QObject, /) -> None: ... method setVideoSink (line 658) | def setVideoSink(self, sink: QVideoSink, /) -> None: ... method setWindowCapture (line 659) | def setWindowCapture(self, windowCapture: QWindowCapture, /) -> None: ... method videoFrameInput (line 660) | def videoFrameInput(self, /) -> QVideoFrameInput: ... method videoOutput (line 661) | def videoOutput(self, /) -> PySide6.QtCore.QObject: ... method videoSink (line 662) | def videoSink(self, /) -> QVideoSink: ... method windowCapture (line 663) | def windowCapture(self, /) -> QWindowCapture: ... class QMediaDevices (line 665) | class QMediaDevices(PySide6.QtCore.QObject): method __init__ (line 670) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method audioInputs (line 672) | def audioInputs() -> List[QAudioDevice]: ... method audioOutputs (line 674) | def audioOutputs() -> List[QAudioDevice]: ... method connectNotify (line 675) | def connectNotify(self, signal: PySide6.QtCore.QMetaMethod, /) -> None... method defaultAudioInput (line 677) | def defaultAudioInput() -> QAudioDevice: ... method defaultAudioOutput (line 679) | def defaultAudioOutput() -> QAudioDevice: ... method defaultVideoInput (line 681) | def defaultVideoInput() -> QCameraDevice: ... method videoInputs (line 683) | def videoInputs() -> List[QCameraDevice]: ... class QMediaFormat (line 685) | class QMediaFormat(shiboken6.Object): class AudioCodec (line 686) | class AudioCodec(enum.Enum): class ConversionMode (line 701) | class ConversionMode(enum.Enum): class FileFormat (line 705) | class FileFormat(enum.Enum): class ResolveFlags (line 722) | class ResolveFlags(enum.Enum): class VideoCodec (line 726) | class VideoCodec(enum.Enum): method __init__ (line 744) | def __init__(self, other: QMediaFormat, /, *, fileFormat: QMediaFormat... method __init__ (line 746) | def __init__(self, /, format: QMediaFormat.FileFormat = ..., *, fileFo... method audioCodec (line 747) | def audioCodec(self, /) -> QMediaFormat.AudioCodec: ... method audioCodecDescription (line 749) | def audioCodecDescription(codec: QMediaFormat.AudioCodec, /) -> str: ... method audioCodecName (line 751) | def audioCodecName(codec: QMediaFormat.AudioCodec, /) -> str: ... method fileFormat (line 752) | def fileFormat(self, /) -> QMediaFormat.FileFormat: ... method fileFormatDescription (line 754) | def fileFormatDescription(fileFormat: QMediaFormat.FileFormat, /) -> s... method fileFormatName (line 756) | def fileFormatName(fileFormat: QMediaFormat.FileFormat, /) -> str: ... method isSupported (line 757) | def isSupported(self, mode: QMediaFormat.ConversionMode, /) -> bool: ... method mimeType (line 758) | def mimeType(self, /) -> PySide6.QtCore.QMimeType: ... method resolveForEncoding (line 759) | def resolveForEncoding(self, flags: QMediaFormat.ResolveFlags, /) -> N... method setAudioCodec (line 760) | def setAudioCodec(self, codec: QMediaFormat.AudioCodec, /) -> None: ... method setFileFormat (line 761) | def setFileFormat(self, f: QMediaFormat.FileFormat, /) -> None: ... method setVideoCodec (line 762) | def setVideoCodec(self, codec: QMediaFormat.VideoCodec, /) -> None: ... method supportedAudioCodecs (line 763) | def supportedAudioCodecs(self, m: QMediaFormat.ConversionMode, /) -> L... method supportedFileFormats (line 764) | def supportedFileFormats(self, m: QMediaFormat.ConversionMode, /) -> L... method supportedVideoCodecs (line 765) | def supportedVideoCodecs(self, m: QMediaFormat.ConversionMode, /) -> L... method swap (line 766) | def swap(self, other: QMediaFormat | QMediaFormat.FileFormat, /) -> No... method videoCodec (line 767) | def videoCodec(self, /) -> QMediaFormat.VideoCodec: ... method videoCodecDescription (line 769) | def videoCodecDescription(codec: QMediaFormat.VideoCodec, /) -> str: ... method videoCodecName (line 771) | def videoCodecName(codec: QMediaFormat.VideoCodec, /) -> str: ... method __copy__ (line 772) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 773) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 774) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 775) | def __gt__(self, other: object) -> bool: ... method __le__ (line 776) | def __le__(self, other: object) -> bool: ... method __lt__ (line 777) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 778) | def __ne__(self, other: object) -> bool: ... class QMediaMetaData (line 780) | class QMediaMetaData(shiboken6.Object): class Key (line 781) | class Key(enum.Enum): method __init__ (line 814) | def __init__(self, QMediaMetaData: QMediaMetaData, /) -> None: ... method __init__ (line 816) | def __init__(self, /) -> None: ... method clear (line 817) | def clear(self, /) -> None: ... method insert (line 818) | def insert(self, k: QMediaMetaData.Key, value: Any, /) -> None: ... method isEmpty (line 819) | def isEmpty(self, /) -> bool: ... method keyType (line 821) | def keyType(key: QMediaMetaData.Key, /) -> PySide6.QtCore.QMetaType: ... method keys (line 822) | def keys(self, /) -> List[QMediaMetaData.Key]: ... method metaDataKeyToString (line 824) | def metaDataKeyToString(k: QMediaMetaData.Key, /) -> str: ... method remove (line 825) | def remove(self, k: QMediaMetaData.Key, /) -> None: ... method stringValue (line 826) | def stringValue(self, k: QMediaMetaData.Key, /) -> str: ... method value (line 827) | def value(self, k: QMediaMetaData.Key, /) -> Any: ... method __copy__ (line 828) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 829) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 830) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 831) | def __gt__(self, other: object) -> bool: ... method __le__ (line 832) | def __le__(self, other: object) -> bool: ... method __lt__ (line 833) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 834) | def __ne__(self, other: object) -> bool: ... class QMediaPlayer (line 836) | class QMediaPlayer(PySide6.QtCore.QObject): class Error (line 837) | class Error(enum.Enum): class Loops (line 844) | class Loops(enum.IntEnum): class MediaStatus (line 848) | class MediaStatus(enum.Enum): class PitchCompensationAvailability (line 858) | class PitchCompensationAvailability(enum.Enum): class PlaybackState (line 863) | class PlaybackState(enum.Enum): method __init__ (line 890) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method activeAudioTrack (line 891) | def activeAudioTrack(self, /) -> int: ... method activeSubtitleTrack (line 892) | def activeSubtitleTrack(self, /) -> int: ... method activeVideoTrack (line 893) | def activeVideoTrack(self, /) -> int: ... method audioBufferOutput (line 894) | def audioBufferOutput(self, /) -> QAudioBufferOutput: ... method audioOutput (line 895) | def audioOutput(self, /) -> QAudioOutput: ... method audioTracks (line 896) | def audioTracks(self, /) -> List[QMediaMetaData]: ... method bufferProgress (line 897) | def bufferProgress(self, /) -> float: ... method bufferedTimeRange (line 898) | def bufferedTimeRange(self, /) -> QMediaTimeRange: ... method duration (line 899) | def duration(self, /) -> int: ... method error (line 900) | def error(self, /) -> QMediaPlayer.Error: ... method errorString (line 901) | def errorString(self, /) -> str: ... method hasAudio (line 902) | def hasAudio(self, /) -> bool: ... method hasVideo (line 903) | def hasVideo(self, /) -> bool: ... method isAvailable (line 904) | def isAvailable(self, /) -> bool: ... method isPlaying (line 905) | def isPlaying(self, /) -> bool: ... method isSeekable (line 906) | def isSeekable(self, /) -> bool: ... method loops (line 907) | def loops(self, /) -> int: ... method mediaStatus (line 908) | def mediaStatus(self, /) -> QMediaPlayer.MediaStatus: ... method metaData (line 909) | def metaData(self, /) -> QMediaMetaData: ... method pause (line 910) | def pause(self, /) -> None: ... method pitchCompensation (line 911) | def pitchCompensation(self, /) -> bool: ... method pitchCompensationAvailability (line 912) | def pitchCompensationAvailability(self, /) -> QMediaPlayer.PitchCompen... method play (line 913) | def play(self, /) -> None: ... method playbackOptions (line 914) | def playbackOptions(self, /) -> QPlaybackOptions: ... method playbackRate (line 915) | def playbackRate(self, /) -> float: ... method playbackState (line 916) | def playbackState(self, /) -> QMediaPlayer.PlaybackState: ... method position (line 917) | def position(self, /) -> int: ... method resetPlaybackOptions (line 918) | def resetPlaybackOptions(self, /) -> None: ... method setActiveAudioTrack (line 919) | def setActiveAudioTrack(self, index: int, /) -> None: ... method setActiveSubtitleTrack (line 920) | def setActiveSubtitleTrack(self, index: int, /) -> None: ... method setActiveVideoTrack (line 921) | def setActiveVideoTrack(self, index: int, /) -> None: ... method setAudioBufferOutput (line 922) | def setAudioBufferOutput(self, output: QAudioBufferOutput, /) -> None:... method setAudioOutput (line 923) | def setAudioOutput(self, output: QAudioOutput, /) -> None: ... method setLoops (line 924) | def setLoops(self, loops: int, /) -> None: ... method setPitchCompensation (line 925) | def setPitchCompensation(self, arg__1: bool, /) -> None: ... method setPlaybackOptions (line 926) | def setPlaybackOptions(self, options: QPlaybackOptions, /) -> None: ... method setPlaybackRate (line 927) | def setPlaybackRate(self, rate: float, /) -> None: ... method setPosition (line 928) | def setPosition(self, position: int, /) -> None: ... method setSource (line 929) | def setSource(self, source: PySide6.QtCore.QUrl | str, /) -> None: ... method setSourceDevice (line 930) | def setSourceDevice(self, device: PySide6.QtCore.QIODevice, /, sourceU... method setVideoOutput (line 931) | def setVideoOutput(self, arg__1: PySide6.QtCore.QObject, /) -> None: ... method setVideoSink (line 932) | def setVideoSink(self, sink: QVideoSink, /) -> None: ... method source (line 933) | def source(self, /) -> PySide6.QtCore.QUrl: ... method sourceDevice (line 934) | def sourceDevice(self, /) -> PySide6.QtCore.QIODevice: ... method stop (line 935) | def stop(self, /) -> None: ... method subtitleTracks (line 936) | def subtitleTracks(self, /) -> List[QMediaMetaData]: ... method videoOutput (line 937) | def videoOutput(self, /) -> PySide6.QtCore.QObject: ... method videoSink (line 938) | def videoSink(self, /) -> QVideoSink: ... method videoTracks (line 939) | def videoTracks(self, /) -> List[QMediaMetaData]: ... class QMediaRecorder (line 941) | class QMediaRecorder(PySide6.QtCore.QObject): class EncodingMode (line 942) | class EncodingMode(enum.Enum): class Error (line 948) | class Error(enum.Enum): class Quality (line 955) | class Quality(enum.Enum): class RecorderState (line 962) | class RecorderState(enum.Enum): method __init__ (line 984) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method actualLocation (line 985) | def actualLocation(self, /) -> PySide6.QtCore.QUrl: ... method addMetaData (line 986) | def addMetaData(self, metaData: QMediaMetaData, /) -> None: ... method audioBitRate (line 987) | def audioBitRate(self, /) -> int: ... method audioChannelCount (line 988) | def audioChannelCount(self, /) -> int: ... method audioSampleRate (line 989) | def audioSampleRate(self, /) -> int: ... method autoStop (line 990) | def autoStop(self, /) -> bool: ... method captureSession (line 991) | def captureSession(self, /) -> QMediaCaptureSession: ... method duration (line 992) | def duration(self, /) -> int: ... method encodingMode (line 993) | def encodingMode(self, /) -> QMediaRecorder.EncodingMode: ... method error (line 994) | def error(self, /) -> QMediaRecorder.Error: ... method errorString (line 995) | def errorString(self, /) -> str: ... method isAvailable (line 996) | def isAvailable(self, /) -> bool: ... method mediaFormat (line 997) | def mediaFormat(self, /) -> QMediaFormat: ... method metaData (line 998) | def metaData(self, /) -> QMediaMetaData: ... method outputDevice (line 999) | def outputDevice(self, /) -> PySide6.QtCore.QIODevice: ... method outputLocation (line 1000) | def outputLocation(self, /) -> PySide6.QtCore.QUrl: ... method pause (line 1001) | def pause(self, /) -> None: ... method quality (line 1002) | def quality(self, /) -> QMediaRecorder.Quality: ... method record (line 1003) | def record(self, /) -> None: ... method recorderState (line 1004) | def recorderState(self, /) -> QMediaRecorder.RecorderState: ... method setAudioBitRate (line 1005) | def setAudioBitRate(self, bitRate: int, /) -> None: ... method setAudioChannelCount (line 1006) | def setAudioChannelCount(self, channels: int, /) -> None: ... method setAudioSampleRate (line 1007) | def setAudioSampleRate(self, sampleRate: int, /) -> None: ... method setAutoStop (line 1008) | def setAutoStop(self, autoStop: bool, /) -> None: ... method setEncodingMode (line 1009) | def setEncodingMode(self, arg__1: QMediaRecorder.EncodingMode, /) -> N... method setMediaFormat (line 1010) | def setMediaFormat(self, format: QMediaFormat | QMediaFormat.FileForma... method setMetaData (line 1011) | def setMetaData(self, metaData: QMediaMetaData, /) -> None: ... method setOutputDevice (line 1012) | def setOutputDevice(self, device: PySide6.QtCore.QIODevice, /) -> None... method setOutputLocation (line 1013) | def setOutputLocation(self, location: PySide6.QtCore.QUrl | str, /) ->... method setQuality (line 1014) | def setQuality(self, quality: QMediaRecorder.Quality, /) -> None: ... method setVideoBitRate (line 1015) | def setVideoBitRate(self, bitRate: int, /) -> None: ... method setVideoFrameRate (line 1016) | def setVideoFrameRate(self, frameRate: float, /) -> None: ... method setVideoResolution (line 1018) | def setVideoResolution(self, width: int, height: int, /) -> None: ... method setVideoResolution (line 1020) | def setVideoResolution(self, arg__1: PySide6.QtCore.QSize, /) -> None:... method stop (line 1021) | def stop(self, /) -> None: ... method videoBitRate (line 1022) | def videoBitRate(self, /) -> int: ... method videoFrameRate (line 1023) | def videoFrameRate(self, /) -> float: ... method videoResolution (line 1024) | def videoResolution(self, /) -> PySide6.QtCore.QSize: ... class QMediaTimeRange (line 1026) | class QMediaTimeRange(shiboken6.Object): class Interval (line 1027) | class Interval(shiboken6.Object): method __init__ (line 1029) | def __init__(self, start: int, end: int, /) -> None: ... method __init__ (line 1031) | def __init__(self, Interval: QMediaTimeRange.Interval, /) -> None: ... method __init__ (line 1033) | def __init__(self, /) -> None: ... method contains (line 1034) | def contains(self, time: int, /) -> bool: ... method end (line 1035) | def end(self, /) -> int: ... method isNormal (line 1036) | def isNormal(self, /) -> bool: ... method normalized (line 1037) | def normalized(self, /) -> QMediaTimeRange.Interval: ... method start (line 1038) | def start(self, /) -> int: ... method translated (line 1039) | def translated(self, offset: int, /) -> QMediaTimeRange.Interval: ... method __copy__ (line 1040) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1041) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1042) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1043) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1044) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1045) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1046) | def __ne__(self, other: object) -> bool: ... method __init__ (line 1048) | def __init__(self, start: int, end: int, /) -> None: ... method __init__ (line 1050) | def __init__(self, range: QMediaTimeRange, /) -> None: ... method __init__ (line 1052) | def __init__(self, arg__1: QMediaTimeRange.Interval, /) -> None: ... method __init__ (line 1054) | def __init__(self, /) -> None: ... method addInterval (line 1056) | def addInterval(self, start: int, end: int, /) -> None: ... method addInterval (line 1058) | def addInterval(self, interval: QMediaTimeRange.Interval, /) -> None: ... method addTimeRange (line 1059) | def addTimeRange(self, arg__1: QMediaTimeRange | QMediaTimeRange.Inter... method clear (line 1060) | def clear(self, /) -> None: ... method contains (line 1061) | def contains(self, time: int, /) -> bool: ... method earliestTime (line 1062) | def earliestTime(self, /) -> int: ... method intervals (line 1063) | def intervals(self, /) -> List[QMediaTimeRange.Interval]: ... method isContinuous (line 1064) | def isContinuous(self, /) -> bool: ... method isEmpty (line 1065) | def isEmpty(self, /) -> bool: ... method latestTime (line 1066) | def latestTime(self, /) -> int: ... method removeInterval (line 1068) | def removeInterval(self, start: int, end: int, /) -> None: ... method removeInterval (line 1070) | def removeInterval(self, interval: QMediaTimeRange.Interval, /) -> Non... method removeTimeRange (line 1071) | def removeTimeRange(self, arg__1: QMediaTimeRange | QMediaTimeRange.In... method swap (line 1072) | def swap(self, other: QMediaTimeRange | QMediaTimeRange.Interval, /) -... method __add__ (line 1073) | def __add__(self, r2: QMediaTimeRange | QMediaTimeRange.Interval, /) -... method __copy__ (line 1074) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1075) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1076) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1077) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 1079) | def __iadd__(self, arg__1: QMediaTimeRange.Interval, /) -> QMediaTimeR... method __iadd__ (line 1081) | def __iadd__(self, arg__1: QMediaTimeRange | QMediaTimeRange.Interval,... method __isub__ (line 1083) | def __isub__(self, arg__1: QMediaTimeRange.Interval, /) -> QMediaTimeR... method __isub__ (line 1085) | def __isub__(self, arg__1: QMediaTimeRange | QMediaTimeRange.Interval,... method __le__ (line 1086) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1087) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1088) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 1089) | def __radd__(self, other): ... method __rsub__ (line 1090) | def __rsub__(self, other): ... method __sub__ (line 1091) | def __sub__(self, r2: QMediaTimeRange | QMediaTimeRange.Interval, /) -... class QPlaybackOptions (line 1093) | class QPlaybackOptions(shiboken6.Object): class PlaybackIntent (line 1094) | class PlaybackIntent(enum.Enum): method __init__ (line 1098) | def __init__(self, arg__1: QPlaybackOptions, /, *, networkTimeout: int... method __init__ (line 1100) | def __init__(self, /, *, networkTimeout: int | None = ..., playbackInt... method networkTimeout (line 1101) | def networkTimeout(self, /) -> int: ... method playbackIntent (line 1102) | def playbackIntent(self, /) -> QPlaybackOptions.PlaybackIntent: ... method probeSize (line 1103) | def probeSize(self, /) -> int: ... method resetNetworkTimeout (line 1104) | def resetNetworkTimeout(self, /) -> None: ... method resetPlaybackIntent (line 1105) | def resetPlaybackIntent(self, /) -> None: ... method resetProbeSize (line 1106) | def resetProbeSize(self, /) -> None: ... method setNetworkTimeout (line 1107) | def setNetworkTimeout(self, timeout: int, /) -> None: ... method setPlaybackIntent (line 1108) | def setPlaybackIntent(self, intent: QPlaybackOptions.PlaybackIntent, /... method setProbeSize (line 1109) | def setProbeSize(self, probeSizeBytes: int, /) -> None: ... method swap (line 1110) | def swap(self, other: QPlaybackOptions, /) -> None: ... method __copy__ (line 1111) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1112) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1113) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1114) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1115) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1116) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1117) | def __ne__(self, other: object) -> bool: ... class QScreenCapture (line 1119) | class QScreenCapture(PySide6.QtCore.QObject): class Error (line 1120) | class Error(enum.Enum): method __init__ (line 1131) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method captureSession (line 1132) | def captureSession(self, /) -> QMediaCaptureSession: ... method error (line 1133) | def error(self, /) -> QScreenCapture.Error: ... method errorString (line 1134) | def errorString(self, /) -> str: ... method isActive (line 1135) | def isActive(self, /) -> bool: ... method screen (line 1136) | def screen(self, /) -> PySide6.QtGui.QScreen: ... method setActive (line 1137) | def setActive(self, active: bool, /) -> None: ... method setScreen (line 1138) | def setScreen(self, screen: PySide6.QtGui.QScreen, /) -> None: ... method start (line 1139) | def start(self, /) -> None: ... method stop (line 1140) | def stop(self, /) -> None: ... class QSoundEffect (line 1142) | class QSoundEffect(PySide6.QtCore.QObject): class Loop (line 1143) | class Loop(enum.Enum): class Status (line 1146) | class Status(enum.Enum): method __init__ (line 1162) | def __init__(self, audioDevice: QAudioDevice, /, parent: PySide6.QtCor... method __init__ (line 1164) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method audioDevice (line 1165) | def audioDevice(self, /) -> QAudioDevice: ... method isLoaded (line 1166) | def isLoaded(self, /) -> bool: ... method isMuted (line 1167) | def isMuted(self, /) -> bool: ... method isPlaying (line 1168) | def isPlaying(self, /) -> bool: ... method loopCount (line 1169) | def loopCount(self, /) -> int: ... method loopsRemaining (line 1170) | def loopsRemaining(self, /) -> int: ... method play (line 1171) | def play(self, /) -> None: ... method setAudioDevice (line 1172) | def setAudioDevice(self, device: QAudioDevice, /) -> None: ... method setLoopCount (line 1173) | def setLoopCount(self, loopCount: int, /) -> None: ... method setMuted (line 1174) | def setMuted(self, muted: bool, /) -> None: ... method setSource (line 1175) | def setSource(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setVolume (line 1176) | def setVolume(self, volume: float, /) -> None: ... method source (line 1177) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 1178) | def status(self, /) -> QSoundEffect.Status: ... method stop (line 1179) | def stop(self, /) -> None: ... method supportedMimeTypes (line 1181) | def supportedMimeTypes() -> List[str]: ... method volume (line 1182) | def volume(self, /) -> float: ... class QVideoFrame (line 1184) | class QVideoFrame(shiboken6.Object): class HandleType (line 1185) | class HandleType(enum.Enum): class MapMode (line 1189) | class MapMode(enum.Enum): class PaintOptions (line 1195) | class PaintOptions(shiboken6.Object): class PaintFlag (line 1196) | class PaintFlag(enum.Flag): method __init__ (line 1202) | def __init__(self, PaintOptions: QVideoFrame.PaintOptions, /) -> Non... method __init__ (line 1204) | def __init__(self, /) -> None: ... method __copy__ (line 1205) | def __copy__(self, /) -> typing_extensions.Self: ... class RotationAngle (line 1207) | class RotationAngle(enum.Enum): method __init__ (line 1213) | def __init__(self, buffer: QAbstractVideoBuffer, format: QVideoFrameFo... method __init__ (line 1215) | def __init__(self, other: QVideoFrame, /) -> None: ... method __init__ (line 1217) | def __init__(self, image: PySide6.QtGui.QImage, /) -> None: ... method __init__ (line 1219) | def __init__(self, format: QVideoFrameFormat, /) -> None: ... method __init__ (line 1221) | def __init__(self, /) -> None: ... method bits (line 1222) | def bits(self, plane: int, /) -> bytes | bytearray | memoryview: ... method bytesPerLine (line 1223) | def bytesPerLine(self, plane: int, /) -> int: ... method endTime (line 1224) | def endTime(self, /) -> int: ... method handleType (line 1225) | def handleType(self, /) -> QVideoFrame.HandleType: ... method height (line 1226) | def height(self, /) -> int: ... method isMapped (line 1227) | def isMapped(self, /) -> bool: ... method isReadable (line 1228) | def isReadable(self, /) -> bool: ... method isValid (line 1229) | def isValid(self, /) -> bool: ... method isWritable (line 1230) | def isWritable(self, /) -> bool: ... method map (line 1231) | def map(self, mode: QVideoFrame.MapMode, /) -> bool: ... method mapMode (line 1232) | def mapMode(self, /) -> QVideoFrame.MapMode: ... method mappedBytes (line 1233) | def mappedBytes(self, plane: int, /) -> int: ... method mirrored (line 1234) | def mirrored(self, /) -> bool: ... method paint (line 1235) | def paint(self, painter: PySide6.QtGui.QPainter, rect: PySide6.QtCore.... method pixelFormat (line 1236) | def pixelFormat(self, /) -> QVideoFrameFormat.PixelFormat: ... method planeCount (line 1237) | def planeCount(self, /) -> int: ... method rotation (line 1238) | def rotation(self, /) -> QtVideo.Rotation: ... method rotationAngle (line 1239) | def rotationAngle(self, /) -> QVideoFrame.RotationAngle: ... method setEndTime (line 1240) | def setEndTime(self, time: int, /) -> None: ... method setMirrored (line 1241) | def setMirrored(self, arg__1: bool, /) -> None: ... method setRotation (line 1242) | def setRotation(self, angle: QtVideo.Rotation, /) -> None: ... method setRotationAngle (line 1243) | def setRotationAngle(self, angle: QVideoFrame.RotationAngle, /) -> Non... method setStartTime (line 1244) | def setStartTime(self, time: int, /) -> None: ... method setStreamFrameRate (line 1245) | def setStreamFrameRate(self, rate: float, /) -> None: ... method setSubtitleText (line 1246) | def setSubtitleText(self, text: str, /) -> None: ... method size (line 1247) | def size(self, /) -> PySide6.QtCore.QSize: ... method startTime (line 1248) | def startTime(self, /) -> int: ... method streamFrameRate (line 1249) | def streamFrameRate(self, /) -> float: ... method subtitleText (line 1250) | def subtitleText(self, /) -> str: ... method surfaceFormat (line 1251) | def surfaceFormat(self, /) -> QVideoFrameFormat: ... method swap (line 1252) | def swap(self, other: QVideoFrame | QVideoFrameFormat, /) -> None: ... method toImage (line 1253) | def toImage(self, /) -> PySide6.QtGui.QImage: ... method unmap (line 1254) | def unmap(self, /) -> None: ... method videoBuffer (line 1255) | def videoBuffer(self, /) -> QAbstractVideoBuffer: ... method width (line 1256) | def width(self, /) -> int: ... method __copy__ (line 1257) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1258) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1259) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1260) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1261) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1262) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1263) | def __ne__(self, other: object) -> bool: ... class QVideoFrameFormat (line 1265) | class QVideoFrameFormat(shiboken6.Object): class ColorRange (line 1266) | class ColorRange(enum.Enum): class ColorSpace (line 1271) | class ColorSpace(enum.Enum): class ColorTransfer (line 1278) | class ColorTransfer(enum.Enum): class Direction (line 1288) | class Direction(enum.Enum): class PixelFormat (line 1292) | class PixelFormat(enum.Enum): class YCbCrColorSpace (line 1326) | class YCbCrColorSpace(enum.Enum): method __init__ (line 1336) | def __init__(self, size: PySide6.QtCore.QSize, pixelFormat: QVideoFram... method __init__ (line 1338) | def __init__(self, format: QVideoFrameFormat, /) -> None: ... method __init__ (line 1340) | def __init__(self, /) -> None: ... method colorRange (line 1341) | def colorRange(self, /) -> QVideoFrameFormat.ColorRange: ... method colorSpace (line 1342) | def colorSpace(self, /) -> QVideoFrameFormat.ColorSpace: ... method colorTransfer (line 1343) | def colorTransfer(self, /) -> QVideoFrameFormat.ColorTransfer: ... method fragmentShaderFileName (line 1344) | def fragmentShaderFileName(self, /) -> str: ... method frameHeight (line 1345) | def frameHeight(self, /) -> int: ... method frameRate (line 1346) | def frameRate(self, /) -> float: ... method frameSize (line 1347) | def frameSize(self, /) -> PySide6.QtCore.QSize: ... method frameWidth (line 1348) | def frameWidth(self, /) -> int: ... method imageFormatFromPixelFormat (line 1350) | def imageFormatFromPixelFormat(format: QVideoFrameFormat.PixelFormat, ... method isMirrored (line 1351) | def isMirrored(self, /) -> bool: ... method isValid (line 1352) | def isValid(self, /) -> bool: ... method maxLuminance (line 1353) | def maxLuminance(self, /) -> float: ... method pixelFormat (line 1354) | def pixelFormat(self, /) -> QVideoFrameFormat.PixelFormat: ... method pixelFormatFromImageFormat (line 1356) | def pixelFormatFromImageFormat(format: PySide6.QtGui.QImage.Format, /)... method pixelFormatToString (line 1358) | def pixelFormatToString(pixelFormat: QVideoFrameFormat.PixelFormat, /)... method planeCount (line 1359) | def planeCount(self, /) -> int: ... method rotation (line 1360) | def rotation(self, /) -> QtVideo.Rotation: ... method scanLineDirection (line 1361) | def scanLineDirection(self, /) -> QVideoFrameFormat.Direction: ... method setColorRange (line 1362) | def setColorRange(self, range: QVideoFrameFormat.ColorRange, /) -> Non... method setColorSpace (line 1363) | def setColorSpace(self, colorSpace: QVideoFrameFormat.ColorSpace, /) -... method setColorTransfer (line 1364) | def setColorTransfer(self, colorTransfer: QVideoFrameFormat.ColorTrans... method setFrameRate (line 1365) | def setFrameRate(self, rate: float, /) -> None: ... method setFrameSize (line 1367) | def setFrameSize(self, width: int, height: int, /) -> None: ... method setFrameSize (line 1369) | def setFrameSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setMaxLuminance (line 1370) | def setMaxLuminance(self, lum: float, /) -> None: ... method setMirrored (line 1371) | def setMirrored(self, mirrored: bool, /) -> None: ... method setRotation (line 1372) | def setRotation(self, rotation: QtVideo.Rotation, /) -> None: ... method setScanLineDirection (line 1373) | def setScanLineDirection(self, direction: QVideoFrameFormat.Direction,... method setStreamFrameRate (line 1374) | def setStreamFrameRate(self, rate: float, /) -> None: ... method setViewport (line 1375) | def setViewport(self, viewport: PySide6.QtCore.QRect, /) -> None: ... method setYCbCrColorSpace (line 1376) | def setYCbCrColorSpace(self, colorSpace: QVideoFrameFormat.YCbCrColorS... method streamFrameRate (line 1377) | def streamFrameRate(self, /) -> float: ... method swap (line 1378) | def swap(self, other: QVideoFrameFormat, /) -> None: ... method updateUniformData (line 1379) | def updateUniformData(self, dst: PySide6.QtCore.QByteArray | bytes | b... method vertexShaderFileName (line 1380) | def vertexShaderFileName(self, /) -> str: ... method viewport (line 1381) | def viewport(self, /) -> PySide6.QtCore.QRect: ... method yCbCrColorSpace (line 1382) | def yCbCrColorSpace(self, /) -> QVideoFrameFormat.YCbCrColorSpace: ... method __copy__ (line 1383) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1384) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1385) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1386) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1387) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1388) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1389) | def __ne__(self, other: object) -> bool: ... class QVideoFrameInput (line 1391) | class QVideoFrameInput(PySide6.QtCore.QObject): method __init__ (line 1395) | def __init__(self, format: QVideoFrameFormat, /, parent: PySide6.QtCor... method __init__ (line 1397) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method captureSession (line 1398) | def captureSession(self, /) -> QMediaCaptureSession: ... method format (line 1399) | def format(self, /) -> QVideoFrameFormat: ... method sendVideoFrame (line 1400) | def sendVideoFrame(self, frame: QVideoFrame | QVideoFrameFormat, /) ->... class QVideoSink (line 1402) | class QVideoSink(PySide6.QtCore.QObject): method __init__ (line 1407) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method rhi (line 1408) | def rhi(self, /) -> PySide6.QtGui.QRhi: ... method setRhi (line 1409) | def setRhi(self, rhi: PySide6.QtGui.QRhi, /) -> None: ... method setSubtitleText (line 1410) | def setSubtitleText(self, subtitle: str, /) -> None: ... method setVideoFrame (line 1411) | def setVideoFrame(self, frame: QVideoFrame | QVideoFrameFormat, /) -> ... method subtitleText (line 1412) | def subtitleText(self, /) -> str: ... method videoFrame (line 1413) | def videoFrame(self, /) -> QVideoFrame: ... method videoSize (line 1414) | def videoSize(self, /) -> PySide6.QtCore.QSize: ... class QWaveDecoder (line 1416) | class QWaveDecoder(PySide6.QtCore.QIODevice): method __init__ (line 1421) | def __init__(self, device: PySide6.QtCore.QIODevice, format: QAudioFor... method __init__ (line 1423) | def __init__(self, device: PySide6.QtCore.QIODevice, /, parent: PySide... method audioFormat (line 1424) | def audioFormat(self, /) -> QAudioFormat: ... method bytesAvailable (line 1425) | def bytesAvailable(self, /) -> int: ... method close (line 1426) | def close(self, /) -> None: ... method duration (line 1427) | def duration(self, /) -> int: ... method getDevice (line 1428) | def getDevice(self, /) -> PySide6.QtCore.QIODevice: ... method headerLength (line 1430) | def headerLength() -> int: ... method isSequential (line 1431) | def isSequential(self, /) -> bool: ... method open (line 1432) | def open(self, mode: PySide6.QtCore.QIODeviceBase.OpenModeFlag, /) -> ... method pos (line 1433) | def pos(self, /) -> int: ... method readData (line 1434) | def readData(self, maxlen: int, /) -> typing.Any: ... method seek (line 1435) | def seek(self, pos: int, /) -> bool: ... method size (line 1436) | def size(self, /) -> int: ... method writeData (line 1437) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QWindowCapture (line 1439) | class QWindowCapture(PySide6.QtCore.QObject): class Error (line 1440) | class Error(enum.Enum): method __init__ (line 1451) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method capturableWindows (line 1453) | def capturableWindows() -> List[QCapturableWindow]: ... method captureSession (line 1454) | def captureSession(self, /) -> QMediaCaptureSession: ... method error (line 1455) | def error(self, /) -> QWindowCapture.Error: ... method errorString (line 1456) | def errorString(self, /) -> str: ... method isActive (line 1457) | def isActive(self, /) -> bool: ... method setActive (line 1458) | def setActive(self, active: bool, /) -> None: ... method setWindow (line 1459) | def setWindow(self, window: QCapturableWindow, /) -> None: ... method start (line 1460) | def start(self, /) -> None: ... method stop (line 1461) | def stop(self, /) -> None: ... method window (line 1462) | def window(self, /) -> QCapturableWindow: ... class QtAudio (line 1464) | class QtAudio(shiboken6.Object): class Error (line 1465) | class Error(enum.Enum): class State (line 1472) | class State(enum.Enum): class VolumeScale (line 1478) | class VolumeScale(enum.Enum): method __init__ (line 1483) | def __init__(self, *args, **kwargs) -> None: ... method convertVolume (line 1485) | def convertVolume(volume: float, from_: QtAudio.VolumeScale, to: QtAud... class QtVideo (line 1487) | class QtVideo(shiboken6.Object): class Rotation (line 1488) | class Rotation(enum.Enum): method __init__ (line 1493) | def __init__(self, *args, **kwargs) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtMultimediaWidgets.pyi class QGraphicsVideoItem (line 13) | class QGraphicsVideoItem(PySide6.QtWidgets.QGraphicsObject): method __init__ (line 16) | def __init__(self, /, parent: PySide6.QtWidgets.QGraphicsItem | None =... method aspectRatioMode (line 17) | def aspectRatioMode(self, /) -> PySide6.QtCore.Qt.AspectRatioMode: ... method boundingRect (line 18) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method itemChange (line 19) | def itemChange(self, change: PySide6.QtWidgets.QGraphicsItem.GraphicsI... method nativeSize (line 20) | def nativeSize(self, /) -> PySide6.QtCore.QSizeF: ... method offset (line 21) | def offset(self, /) -> PySide6.QtCore.QPointF: ... method paint (line 22) | def paint(self, painter: PySide6.QtGui.QPainter, option: PySide6.QtWid... method setAspectRatioMode (line 23) | def setAspectRatioMode(self, mode: PySide6.QtCore.Qt.AspectRatioMode, ... method setOffset (line 24) | def setOffset(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method setSize (line 25) | def setSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSize, ... method size (line 26) | def size(self, /) -> PySide6.QtCore.QSizeF: ... method timerEvent (line 27) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method type (line 28) | def type(self, /) -> int: ... method videoSink (line 29) | def videoSink(self, /) -> PySide6.QtMultimedia.QVideoSink: ... class QIntList (line 31) | class QIntList: method __init__ (line 33) | def __init__(self, *args, **kwargs) -> None: ... method append (line 34) | def append(self, *args, **kwargs): ... method capacity (line 35) | def capacity(self, *args, **kwargs): ... method clear (line 36) | def clear(self, *args, **kwargs): ... method constData (line 37) | def constData(self, *args, **kwargs): ... method data (line 38) | def data(self, *args, **kwargs): ... method pop_back (line 39) | def pop_back(self, *args, **kwargs): ... method pop_front (line 40) | def pop_front(self, *args, **kwargs): ... method prepend (line 41) | def prepend(self, *args, **kwargs): ... method push_back (line 42) | def push_back(self, *args, **kwargs): ... method push_front (line 43) | def push_front(self, *args, **kwargs): ... method removeFirst (line 44) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 45) | def removeLast(self, *args, **kwargs): ... method reserve (line 46) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 47) | def __delitem__(self, other) -> None: ... method __getitem__ (line 48) | def __getitem__(self, index): ... method __len__ (line 49) | def __len__(self) -> int: ... method __setitem__ (line 50) | def __setitem__(self, index, object) -> None: ... class QVideoWidget (line 52) | class QVideoWidget(PySide6.QtWidgets.QWidget): method __init__ (line 56) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method aspectRatioMode (line 57) | def aspectRatioMode(self, /) -> PySide6.QtCore.Qt.AspectRatioMode: ... method event (line 58) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method hideEvent (line 59) | def hideEvent(self, event: PySide6.QtGui.QHideEvent, /) -> None: ... method moveEvent (line 60) | def moveEvent(self, event: PySide6.QtGui.QMoveEvent, /) -> None: ... method resizeEvent (line 61) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method setAspectRatioMode (line 62) | def setAspectRatioMode(self, mode: PySide6.QtCore.Qt.AspectRatioMode, ... method setFullScreen (line 63) | def setFullScreen(self, fullScreen: bool, /) -> None: ... method showEvent (line 64) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 65) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method videoSink (line 66) | def videoSink(self, /) -> PySide6.QtMultimedia.QVideoSink: ... FILE: pyside6/stubs/PySide6-stubs/QtNetwork.pyi class _add_QHostInfo_lookupHost_overloads (line 15) | class _add_QHostInfo_lookupHost_overloads: class StaticOverloads (line 22) | class StaticOverloads: class lookupHost (line 23) | class lookupHost: method __call__ (line 25) | def __call__(name: str, receiver: PySide6.QtCore.QObject, member: ... class InstanceOverloads (line 27) | class InstanceOverloads: class lookupHost (line 28) | class lookupHost: method __call__ (line 30) | def __call__(self, name: str, callable: collections.abc.Callable[.... method __call__ (line 32) | def __call__(self, name: str, receiver: PySide6.QtCore.QObject, me... method __init__ (line 34) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 37) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 40) | def __get__(self, object: QHostInfo, owner: typing.Any) -> InstanceOve... class QAbstractNetworkCache (line 42) | class QAbstractNetworkCache(PySide6.QtCore.QObject): method __init__ (line 44) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method cacheSize (line 45) | def cacheSize(self, /) -> int: ... method clear (line 46) | def clear(self, /) -> None: ... method data (line 47) | def data(self, url: PySide6.QtCore.QUrl | str, /) -> PySide6.QtCore.QI... method insert (line 48) | def insert(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method metaData (line 49) | def metaData(self, url: PySide6.QtCore.QUrl | str, /) -> QNetworkCache... method prepare (line 50) | def prepare(self, metaData: QNetworkCacheMetaData, /) -> PySide6.QtCor... method remove (line 51) | def remove(self, url: PySide6.QtCore.QUrl | str, /) -> bool: ... method updateMetaData (line 52) | def updateMetaData(self, metaData: QNetworkCacheMetaData, /) -> None: ... class QAbstractSocket (line 54) | class QAbstractSocket(PySide6.QtCore.QIODevice): class BindFlag (line 55) | class BindFlag(enum.Flag): class NetworkLayerProtocol (line 61) | class NetworkLayerProtocol(enum.Enum): class PauseMode (line 67) | class PauseMode(enum.Flag): class SocketError (line 71) | class SocketError(enum.Enum): class SocketOption (line 97) | class SocketOption(enum.Enum): class SocketState (line 107) | class SocketState(enum.Enum): class SocketType (line 116) | class SocketType(enum.Enum): method __init__ (line 128) | def __init__(self, socketType: QAbstractSocket.SocketType, parent: PyS... method abort (line 129) | def abort(self, /) -> None: ... method bind (line 131) | def bind(self, address: QHostAddress | QHostAddress.SpecialAddress, /,... method bind (line 133) | def bind(self, /, port: int | None = ..., mode: QAbstractSocket.BindFl... method bytesAvailable (line 134) | def bytesAvailable(self, /) -> int: ... method bytesToWrite (line 135) | def bytesToWrite(self, /) -> int: ... method close (line 136) | def close(self, /) -> None: ... method connectToHost (line 138) | def connectToHost(self, hostName: str, port: int, /, mode: PySide6.QtC... method connectToHost (line 140) | def connectToHost(self, address: QHostAddress | QHostAddress.SpecialAd... method disconnectFromHost (line 141) | def disconnectFromHost(self, /) -> None: ... method error (line 142) | def error(self, /) -> QAbstractSocket.SocketError: ... method flush (line 143) | def flush(self, /) -> bool: ... method isSequential (line 144) | def isSequential(self, /) -> bool: ... method isValid (line 145) | def isValid(self, /) -> bool: ... method localAddress (line 146) | def localAddress(self, /) -> QHostAddress: ... method localPort (line 147) | def localPort(self, /) -> int: ... method pauseMode (line 148) | def pauseMode(self, /) -> QAbstractSocket.PauseMode: ... method peerAddress (line 149) | def peerAddress(self, /) -> QHostAddress: ... method peerName (line 150) | def peerName(self, /) -> str: ... method peerPort (line 151) | def peerPort(self, /) -> int: ... method protocolTag (line 152) | def protocolTag(self, /) -> str: ... method proxy (line 153) | def proxy(self, /) -> QNetworkProxy: ... method readBufferSize (line 154) | def readBufferSize(self, /) -> int: ... method readData (line 155) | def readData(self, maxlen: int, /) -> typing.Any: ... method readLineData (line 156) | def readLineData(self, maxlen: int, /) -> typing.Any: ... method resume (line 157) | def resume(self, /) -> None: ... method setLocalAddress (line 158) | def setLocalAddress(self, address: QHostAddress | QHostAddress.Special... method setLocalPort (line 159) | def setLocalPort(self, port: int, /) -> None: ... method setPauseMode (line 160) | def setPauseMode(self, pauseMode: QAbstractSocket.PauseMode, /) -> Non... method setPeerAddress (line 161) | def setPeerAddress(self, address: QHostAddress | QHostAddress.SpecialA... method setPeerName (line 162) | def setPeerName(self, name: str, /) -> None: ... method setPeerPort (line 163) | def setPeerPort(self, port: int, /) -> None: ... method setProtocolTag (line 164) | def setProtocolTag(self, tag: str, /) -> None: ... method setProxy (line 165) | def setProxy(self, networkProxy: QNetworkProxy | QNetworkProxy.ProxyTy... method setReadBufferSize (line 166) | def setReadBufferSize(self, size: int, /) -> None: ... method setSocketDescriptor (line 167) | def setSocketDescriptor(self, socketDescriptor: int, /, state: QAbstra... method setSocketError (line 168) | def setSocketError(self, socketError: QAbstractSocket.SocketError, /) ... method setSocketOption (line 169) | def setSocketOption(self, option: QAbstractSocket.SocketOption, value:... method setSocketState (line 170) | def setSocketState(self, state: QAbstractSocket.SocketState, /) -> Non... method skipData (line 171) | def skipData(self, maxSize: int, /) -> int: ... method socketDescriptor (line 172) | def socketDescriptor(self, /) -> int: ... method socketOption (line 173) | def socketOption(self, option: QAbstractSocket.SocketOption, /) -> Any... method socketType (line 174) | def socketType(self, /) -> QAbstractSocket.SocketType: ... method state (line 175) | def state(self, /) -> QAbstractSocket.SocketState: ... method waitForBytesWritten (line 176) | def waitForBytesWritten(self, /, msecs: int = ...) -> bool: ... method waitForConnected (line 177) | def waitForConnected(self, /, msecs: int = ...) -> bool: ... method waitForDisconnected (line 178) | def waitForDisconnected(self, /, msecs: int = ...) -> bool: ... method waitForReadyRead (line 179) | def waitForReadyRead(self, /, msecs: int = ...) -> bool: ... method writeData (line 180) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QAuthenticator (line 182) | class QAuthenticator(shiboken6.Object): method __init__ (line 184) | def __init__(self, other: QAuthenticator, /) -> None: ... method __init__ (line 186) | def __init__(self, /) -> None: ... method isNull (line 187) | def isNull(self, /) -> bool: ... method option (line 188) | def option(self, opt: str, /) -> Any: ... method options (line 189) | def options(self, /) -> Dict[str, Any]: ... method password (line 190) | def password(self, /) -> str: ... method realm (line 191) | def realm(self, /) -> str: ... method setOption (line 192) | def setOption(self, opt: str, value: Any, /) -> None: ... method setPassword (line 193) | def setPassword(self, password: str, /) -> None: ... method setRealm (line 194) | def setRealm(self, realm: str, /) -> None: ... method setUser (line 195) | def setUser(self, user: str, /) -> None: ... method user (line 196) | def user(self, /) -> str: ... method __bool__ (line 197) | def __bool__(self) -> bool: ... method __copy__ (line 198) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 199) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 200) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 201) | def __gt__(self, other: object) -> bool: ... method __le__ (line 202) | def __le__(self, other: object) -> bool: ... method __lt__ (line 203) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 204) | def __ne__(self, other: object) -> bool: ... class QDnsDomainNameRecord (line 206) | class QDnsDomainNameRecord(shiboken6.Object): method __init__ (line 208) | def __init__(self, other: QDnsDomainNameRecord, /) -> None: ... method __init__ (line 210) | def __init__(self, /) -> None: ... method name (line 211) | def name(self, /) -> str: ... method swap (line 212) | def swap(self, other: QDnsDomainNameRecord, /) -> None: ... method timeToLive (line 213) | def timeToLive(self, /) -> int: ... method value (line 214) | def value(self, /) -> str: ... method __copy__ (line 215) | def __copy__(self, /) -> typing_extensions.Self: ... class QDnsHostAddressRecord (line 217) | class QDnsHostAddressRecord(shiboken6.Object): method __init__ (line 219) | def __init__(self, other: QDnsHostAddressRecord, /) -> None: ... method __init__ (line 221) | def __init__(self, /) -> None: ... method name (line 222) | def name(self, /) -> str: ... method swap (line 223) | def swap(self, other: QDnsHostAddressRecord, /) -> None: ... method timeToLive (line 224) | def timeToLive(self, /) -> int: ... method value (line 225) | def value(self, /) -> QHostAddress: ... method __copy__ (line 226) | def __copy__(self, /) -> typing_extensions.Self: ... class QDnsLookup (line 228) | class QDnsLookup(PySide6.QtCore.QObject): class Error (line 229) | class Error(enum.Enum): class Protocol (line 240) | class Protocol(enum.Enum): class Type (line 244) | class Type(enum.Enum): method __init__ (line 263) | def __init__(self, type: QDnsLookup.Type, name: str, protocol: QDnsLoo... method __init__ (line 265) | def __init__(self, type: QDnsLookup.Type, name: str, nameserver: QHost... method __init__ (line 267) | def __init__(self, type: QDnsLookup.Type, name: str, nameserver: QHost... method __init__ (line 269) | def __init__(self, type: QDnsLookup.Type, name: str, /, parent: PySide... method __init__ (line 271) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method abort (line 272) | def abort(self, /) -> None: ... method canonicalNameRecords (line 273) | def canonicalNameRecords(self, /) -> List[QDnsDomainNameRecord]: ... method defaultPortForProtocol (line 275) | def defaultPortForProtocol(protocol: QDnsLookup.Protocol, /) -> int: ... method error (line 276) | def error(self, /) -> QDnsLookup.Error: ... method errorString (line 277) | def errorString(self, /) -> str: ... method hostAddressRecords (line 278) | def hostAddressRecords(self, /) -> List[QDnsHostAddressRecord]: ... method isAuthenticData (line 279) | def isAuthenticData(self, /) -> bool: ... method isFinished (line 280) | def isFinished(self, /) -> bool: ... method isProtocolSupported (line 282) | def isProtocolSupported(protocol: QDnsLookup.Protocol, /) -> bool: ... method lookup (line 283) | def lookup(self, /) -> None: ... method mailExchangeRecords (line 284) | def mailExchangeRecords(self, /) -> List[QDnsMailExchangeRecord]: ... method name (line 285) | def name(self, /) -> str: ... method nameServerRecords (line 286) | def nameServerRecords(self, /) -> List[QDnsDomainNameRecord]: ... method nameserver (line 287) | def nameserver(self, /) -> QHostAddress: ... method nameserverPort (line 288) | def nameserverPort(self, /) -> int: ... method nameserverProtocol (line 289) | def nameserverProtocol(self, /) -> QDnsLookup.Protocol: ... method pointerRecords (line 290) | def pointerRecords(self, /) -> List[QDnsDomainNameRecord]: ... method serviceRecords (line 291) | def serviceRecords(self, /) -> List[QDnsServiceRecord]: ... method setName (line 292) | def setName(self, name: str, /) -> None: ... method setNameserver (line 294) | def setNameserver(self, protocol: QDnsLookup.Protocol, nameserver: QHo... method setNameserver (line 296) | def setNameserver(self, nameserver: QHostAddress | QHostAddress.Specia... method setNameserver (line 298) | def setNameserver(self, nameserver: QHostAddress | QHostAddress.Specia... method setNameserverPort (line 299) | def setNameserverPort(self, port: int, /) -> None: ... method setNameserverProtocol (line 300) | def setNameserverProtocol(self, protocol: QDnsLookup.Protocol, /) -> N... method setSslConfiguration (line 301) | def setSslConfiguration(self, sslConfiguration: QSslConfiguration, /) ... method setType (line 302) | def setType(self, arg__1: QDnsLookup.Type, /) -> None: ... method sslConfiguration (line 303) | def sslConfiguration(self, /) -> QSslConfiguration: ... method textRecords (line 304) | def textRecords(self, /) -> List[QDnsTextRecord]: ... method tlsAssociationRecords (line 305) | def tlsAssociationRecords(self, /) -> List[QDnsTlsAssociationRecord]: ... method type (line 306) | def type(self, /) -> QDnsLookup.Type: ... class QDnsMailExchangeRecord (line 308) | class QDnsMailExchangeRecord(shiboken6.Object): method __init__ (line 310) | def __init__(self, other: QDnsMailExchangeRecord, /) -> None: ... method __init__ (line 312) | def __init__(self, /) -> None: ... method exchange (line 313) | def exchange(self, /) -> str: ... method name (line 314) | def name(self, /) -> str: ... method preference (line 315) | def preference(self, /) -> int: ... method swap (line 316) | def swap(self, other: QDnsMailExchangeRecord, /) -> None: ... method timeToLive (line 317) | def timeToLive(self, /) -> int: ... method __copy__ (line 318) | def __copy__(self, /) -> typing_extensions.Self: ... class QDnsServiceRecord (line 320) | class QDnsServiceRecord(shiboken6.Object): method __init__ (line 322) | def __init__(self, other: QDnsServiceRecord, /) -> None: ... method __init__ (line 324) | def __init__(self, /) -> None: ... method name (line 325) | def name(self, /) -> str: ... method port (line 326) | def port(self, /) -> int: ... method priority (line 327) | def priority(self, /) -> int: ... method swap (line 328) | def swap(self, other: QDnsServiceRecord, /) -> None: ... method target (line 329) | def target(self, /) -> str: ... method timeToLive (line 330) | def timeToLive(self, /) -> int: ... method weight (line 331) | def weight(self, /) -> int: ... method __copy__ (line 332) | def __copy__(self, /) -> typing_extensions.Self: ... class QDnsTextRecord (line 334) | class QDnsTextRecord(shiboken6.Object): method __init__ (line 336) | def __init__(self, other: QDnsTextRecord, /) -> None: ... method __init__ (line 338) | def __init__(self, /) -> None: ... method name (line 339) | def name(self, /) -> str: ... method swap (line 340) | def swap(self, other: QDnsTextRecord, /) -> None: ... method timeToLive (line 341) | def timeToLive(self, /) -> int: ... method values (line 342) | def values(self, /) -> List[PySide6.QtCore.QByteArray]: ... method __copy__ (line 343) | def __copy__(self, /) -> typing_extensions.Self: ... class QDnsTlsAssociationRecord (line 345) | class QDnsTlsAssociationRecord(shiboken6.Object): class CertificateUsage (line 346) | class CertificateUsage(enum.Enum): class MatchingType (line 358) | class MatchingType(enum.Enum): class Selector (line 365) | class Selector(enum.Enum): method __init__ (line 373) | def __init__(self, other: QDnsTlsAssociationRecord, /) -> None: ... method __init__ (line 375) | def __init__(self, /) -> None: ... method matchType (line 376) | def matchType(self, /) -> QDnsTlsAssociationRecord.MatchingType: ... method name (line 377) | def name(self, /) -> str: ... method selector (line 378) | def selector(self, /) -> QDnsTlsAssociationRecord.Selector: ... method swap (line 379) | def swap(self, other: QDnsTlsAssociationRecord, /) -> None: ... method timeToLive (line 380) | def timeToLive(self, /) -> int: ... method usage (line 381) | def usage(self, /) -> QDnsTlsAssociationRecord.CertificateUsage: ... method value (line 382) | def value(self, /) -> PySide6.QtCore.QByteArray: ... method __copy__ (line 383) | def __copy__(self, /) -> typing_extensions.Self: ... class QDtls (line 385) | class QDtls(PySide6.QtCore.QObject): class HandshakeState (line 386) | class HandshakeState(enum.Enum): method __init__ (line 394) | def __init__(self, mode: QSslSocket.SslMode, /, parent: PySide6.QtCore... method abortHandshake (line 395) | def abortHandshake(self, socket: QUdpSocket, /) -> bool: ... method cookieGeneratorParameters (line 396) | def cookieGeneratorParameters(self, /) -> QDtlsClientVerifier.Generato... method decryptDatagram (line 397) | def decryptDatagram(self, socket: QUdpSocket, dgram: PySide6.QtCore.QB... method doHandshake (line 398) | def doHandshake(self, socket: QUdpSocket, /, dgram: PySide6.QtCore.QBy... method dtlsConfiguration (line 399) | def dtlsConfiguration(self, /) -> QSslConfiguration: ... method dtlsError (line 400) | def dtlsError(self, /) -> QDtlsError: ... method dtlsErrorString (line 401) | def dtlsErrorString(self, /) -> str: ... method handleTimeout (line 402) | def handleTimeout(self, socket: QUdpSocket, /) -> bool: ... method handshakeState (line 403) | def handshakeState(self, /) -> QDtls.HandshakeState: ... method ignoreVerificationErrors (line 404) | def ignoreVerificationErrors(self, errorsToIgnore: typing.Iterable[QSs... method isConnectionEncrypted (line 405) | def isConnectionEncrypted(self, /) -> bool: ... method mtuHint (line 406) | def mtuHint(self, /) -> int: ... method peerAddress (line 407) | def peerAddress(self, /) -> QHostAddress: ... method peerPort (line 408) | def peerPort(self, /) -> int: ... method peerVerificationErrors (line 409) | def peerVerificationErrors(self, /) -> List[QSslError]: ... method peerVerificationName (line 410) | def peerVerificationName(self, /) -> str: ... method resumeHandshake (line 411) | def resumeHandshake(self, socket: QUdpSocket, /) -> bool: ... method sessionCipher (line 412) | def sessionCipher(self, /) -> QSslCipher: ... method sessionProtocol (line 413) | def sessionProtocol(self, /) -> QSsl.SslProtocol: ... method setCookieGeneratorParameters (line 414) | def setCookieGeneratorParameters(self, params: QDtlsClientVerifier.Gen... method setDtlsConfiguration (line 415) | def setDtlsConfiguration(self, configuration: QSslConfiguration, /) ->... method setMtuHint (line 416) | def setMtuHint(self, mtuHint: int, /) -> None: ... method setPeer (line 417) | def setPeer(self, address: QHostAddress | QHostAddress.SpecialAddress,... method setPeerVerificationName (line 418) | def setPeerVerificationName(self, name: str, /) -> bool: ... method shutdown (line 419) | def shutdown(self, socket: QUdpSocket, /) -> bool: ... method sslMode (line 420) | def sslMode(self, /) -> QSslSocket.SslMode: ... method writeDatagramEncrypted (line 421) | def writeDatagramEncrypted(self, socket: QUdpSocket, dgram: PySide6.Qt... class QDtlsClientVerifier (line 423) | class QDtlsClientVerifier(PySide6.QtCore.QObject): class GeneratorParameters (line 424) | class GeneratorParameters(shiboken6.Object): method __init__ (line 428) | def __init__(self, a: PySide6.QtCore.QCryptographicHash.Algorithm, s... method __init__ (line 430) | def __init__(self, GeneratorParameters: QDtlsClientVerifier.Generato... method __init__ (line 432) | def __init__(self, /) -> None: ... method __copy__ (line 433) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 435) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method cookieGeneratorParameters (line 436) | def cookieGeneratorParameters(self, /) -> QDtlsClientVerifier.Generato... method dtlsError (line 437) | def dtlsError(self, /) -> QDtlsError: ... method dtlsErrorString (line 438) | def dtlsErrorString(self, /) -> str: ... method setCookieGeneratorParameters (line 439) | def setCookieGeneratorParameters(self, params: QDtlsClientVerifier.Gen... method verifiedHello (line 440) | def verifiedHello(self, /) -> PySide6.QtCore.QByteArray: ... method verifyClient (line 441) | def verifyClient(self, socket: QUdpSocket, dgram: PySide6.QtCore.QByte... class QDtlsError (line 443) | class QDtlsError(enum.Enum): class QFormDataBuilder (line 454) | class QFormDataBuilder(shiboken6.Object): class Option (line 455) | class Option(enum.Flag): method __init__ (line 461) | def __init__(self, /) -> None: ... method part (line 462) | def part(self, name: str, /) -> QFormDataPartBuilder: ... method swap (line 463) | def swap(self, other: QFormDataBuilder, /) -> None: ... class QFormDataPartBuilder (line 465) | class QFormDataPartBuilder(shiboken6.Object): method __init__ (line 466) | def __init__(self, /) -> None: ... method setBody (line 467) | def setBody(self, data: PySide6.QtCore.QByteArray | bytes | bytearray ... method setBodyDevice (line 468) | def setBodyDevice(self, body: PySide6.QtCore.QIODevice, /, fileName: s... method setHeaders (line 469) | def setHeaders(self, headers: QHttpHeaders, /) -> QFormDataPartBuilder... method swap (line 470) | def swap(self, other: QFormDataPartBuilder, /) -> None: ... class QHostAddress (line 472) | class QHostAddress(shiboken6.Object): class ConversionModeFlag (line 473) | class ConversionModeFlag(enum.Flag): class SpecialAddress (line 481) | class SpecialAddress(enum.Enum): method __init__ (line 494) | def __init__(self, ip6Addr: QIPv6Address, /) -> None: ... method __init__ (line 496) | def __init__(self, ip4Addr: int, /) -> None: ... method __init__ (line 498) | def __init__(self, copy: QHostAddress, /) -> None: ... method __init__ (line 500) | def __init__(self, address: QHostAddress.SpecialAddress, /) -> None: ... method __init__ (line 502) | def __init__(self, address: str, /) -> None: ... method __init__ (line 504) | def __init__(self, /) -> None: ... method clear (line 505) | def clear(self, /) -> None: ... method isBroadcast (line 506) | def isBroadcast(self, /) -> bool: ... method isEqual (line 507) | def isEqual(self, address: QHostAddress | QHostAddress.SpecialAddress,... method isGlobal (line 508) | def isGlobal(self, /) -> bool: ... method isInSubnet (line 510) | def isInSubnet(self, subnet: QHostAddress | QHostAddress.SpecialAddres... method isInSubnet (line 512) | def isInSubnet(self, subnet: Tuple[QHostAddress, int], /) -> bool: ... method isLinkLocal (line 513) | def isLinkLocal(self, /) -> bool: ... method isLoopback (line 514) | def isLoopback(self, /) -> bool: ... method isMulticast (line 515) | def isMulticast(self, /) -> bool: ... method isNull (line 516) | def isNull(self, /) -> bool: ... method isPrivateUse (line 517) | def isPrivateUse(self, /) -> bool: ... method isSiteLocal (line 518) | def isSiteLocal(self, /) -> bool: ... method isUniqueLocalUnicast (line 519) | def isUniqueLocalUnicast(self, /) -> bool: ... method parseSubnet (line 521) | def parseSubnet(subnet: str, /) -> Tuple[QHostAddress, int]: ... method protocol (line 522) | def protocol(self, /) -> QAbstractSocket.NetworkLayerProtocol: ... method scopeId (line 523) | def scopeId(self, /) -> str: ... method setAddress (line 525) | def setAddress(self, ip6Addr: QIPv6Address, /) -> None: ... method setAddress (line 527) | def setAddress(self, ip4Addr: int, /) -> None: ... method setAddress (line 529) | def setAddress(self, address: QHostAddress.SpecialAddress, /) -> None:... method setAddress (line 531) | def setAddress(self, address: str, /) -> bool: ... method setScopeId (line 532) | def setScopeId(self, id: str, /) -> None: ... method swap (line 533) | def swap(self, other: QHostAddress | QHostAddress.SpecialAddress, /) -... method toIPv4Address (line 534) | def toIPv4Address(self, /) -> Tuple[int, bool]: ... method toIPv6Address (line 535) | def toIPv6Address(self, /) -> QIPv6Address: ... method toString (line 536) | def toString(self, /) -> str: ... method __bool__ (line 537) | def __bool__(self) -> bool: ... method __copy__ (line 538) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 539) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 540) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 541) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 542) | def __hash__(self, /) -> int: ... method __le__ (line 543) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 544) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 545) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 546) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 547) | def __rlshift__(self, other): ... method __rrshift__ (line 548) | def __rrshift__(self, other): ... method __rshift__ (line 549) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QHostInfo (line 551) | class QHostInfo(shiboken6.Object): class HostInfoError (line 552) | class HostInfoError(enum.Enum): method __init__ (line 557) | def __init__(self, d: QHostInfo, /) -> None: ... method __init__ (line 559) | def __init__(self, /, lookupId: int = ...) -> None: ... method abortHostLookup (line 561) | def abortHostLookup(lookupId: int, /) -> None: ... method addresses (line 562) | def addresses(self, /) -> List[QHostAddress]: ... method error (line 563) | def error(self, /) -> QHostInfo.HostInfoError: ... method errorString (line 564) | def errorString(self, /) -> str: ... method fromName (line 566) | def fromName(name: str, /) -> QHostInfo: ... method hostName (line 567) | def hostName(self, /) -> str: ... method localDomainName (line 569) | def localDomainName() -> str: ... method localHostName (line 571) | def localHostName() -> str: ... method lookupHost (line 573) | def lookupHost(self) -> typing.Any: ... method lookupId (line 574) | def lookupId(self, /) -> int: ... method setAddresses (line 575) | def setAddresses(self, addresses: typing.Iterable[QHostAddress], /) ->... method setError (line 576) | def setError(self, error: QHostInfo.HostInfoError, /) -> None: ... method setErrorString (line 577) | def setErrorString(self, errorString: str, /) -> None: ... method setHostName (line 578) | def setHostName(self, name: str, /) -> None: ... method setLookupId (line 579) | def setLookupId(self, id: int, /) -> None: ... method swap (line 580) | def swap(self, other: QHostInfo | int, /) -> None: ... method __copy__ (line 581) | def __copy__(self, /) -> typing_extensions.Self: ... class QHstsPolicy (line 583) | class QHstsPolicy(shiboken6.Object): class PolicyFlag (line 584) | class PolicyFlag(enum.Flag): method __init__ (line 587) | def __init__(self, expiry: PySide6.QtCore.QDateTime | datetime.datetim... method __init__ (line 589) | def __init__(self, rhs: QHstsPolicy, /) -> None: ... method __init__ (line 591) | def __init__(self, /) -> None: ... method expiry (line 592) | def expiry(self, /) -> PySide6.QtCore.QDateTime: ... method host (line 593) | def host(self, /, options: PySide6.QtCore.QUrl.ComponentFormattingOpti... method includesSubDomains (line 594) | def includesSubDomains(self, /) -> bool: ... method isExpired (line 595) | def isExpired(self, /) -> bool: ... method setExpiry (line 596) | def setExpiry(self, expiry: PySide6.QtCore.QDateTime | datetime.dateti... method setHost (line 597) | def setHost(self, host: str, /, mode: PySide6.QtCore.QUrl.ParsingMode ... method setIncludesSubDomains (line 598) | def setIncludesSubDomains(self, include: bool, /) -> None: ... method swap (line 599) | def swap(self, other: QHstsPolicy, /) -> None: ... method __copy__ (line 600) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 601) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 602) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 603) | def __gt__(self, other: object) -> bool: ... method __le__ (line 604) | def __le__(self, other: object) -> bool: ... method __lt__ (line 605) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 606) | def __ne__(self, other: object) -> bool: ... class QHttp1Configuration (line 608) | class QHttp1Configuration(shiboken6.Object): method __init__ (line 610) | def __init__(self, other: QHttp1Configuration, /) -> None: ... method __init__ (line 612) | def __init__(self, /) -> None: ... method numberOfConnectionsPerHost (line 613) | def numberOfConnectionsPerHost(self, /) -> int: ... method setNumberOfConnectionsPerHost (line 614) | def setNumberOfConnectionsPerHost(self, amount: int, /) -> None: ... method swap (line 615) | def swap(self, other: QHttp1Configuration, /) -> None: ... method __copy__ (line 616) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 617) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 618) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 619) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 620) | def __hash__(self, /) -> int: ... method __le__ (line 621) | def __le__(self, other: object) -> bool: ... method __lt__ (line 622) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 623) | def __ne__(self, other: object) -> bool: ... class QHttp2Configuration (line 625) | class QHttp2Configuration(shiboken6.Object): method __init__ (line 627) | def __init__(self, other: QHttp2Configuration, /) -> None: ... method __init__ (line 629) | def __init__(self, /) -> None: ... method huffmanCompressionEnabled (line 630) | def huffmanCompressionEnabled(self, /) -> bool: ... method maxConcurrentStreams (line 631) | def maxConcurrentStreams(self, /) -> int: ... method maxFrameSize (line 632) | def maxFrameSize(self, /) -> int: ... method serverPushEnabled (line 633) | def serverPushEnabled(self, /) -> bool: ... method sessionReceiveWindowSize (line 634) | def sessionReceiveWindowSize(self, /) -> int: ... method setHuffmanCompressionEnabled (line 635) | def setHuffmanCompressionEnabled(self, enable: bool, /) -> None: ... method setMaxConcurrentStreams (line 636) | def setMaxConcurrentStreams(self, value: int, /) -> None: ... method setMaxFrameSize (line 637) | def setMaxFrameSize(self, size: int, /) -> bool: ... method setServerPushEnabled (line 638) | def setServerPushEnabled(self, enable: bool, /) -> None: ... method setSessionReceiveWindowSize (line 639) | def setSessionReceiveWindowSize(self, size: int, /) -> bool: ... method setStreamReceiveWindowSize (line 640) | def setStreamReceiveWindowSize(self, size: int, /) -> bool: ... method streamReceiveWindowSize (line 641) | def streamReceiveWindowSize(self, /) -> int: ... method swap (line 642) | def swap(self, other: QHttp2Configuration, /) -> None: ... method __copy__ (line 643) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 644) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 645) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 646) | def __gt__(self, other: object) -> bool: ... method __le__ (line 647) | def __le__(self, other: object) -> bool: ... method __lt__ (line 648) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 649) | def __ne__(self, other: object) -> bool: ... class QHttpHeaders (line 651) | class QHttpHeaders(shiboken6.Object): class WellKnownHeader (line 652) | class WellKnownHeader(enum.Enum): method __init__ (line 831) | def __init__(self, other: QHttpHeaders, /) -> None: ... method __init__ (line 833) | def __init__(self, /) -> None: ... method append (line 835) | def append(self, name: QHttpHeaders.WellKnownHeader, value: str, /) ->... method append (line 837) | def append(self, name: str, value: str, /) -> bool: ... method clear (line 838) | def clear(self, /) -> None: ... method combinedValue (line 840) | def combinedValue(self, name: QHttpHeaders.WellKnownHeader, /) -> PySi... method combinedValue (line 842) | def combinedValue(self, name: str, /) -> PySide6.QtCore.QByteArray: ... method contains (line 844) | def contains(self, name: QHttpHeaders.WellKnownHeader, /) -> bool: ... method contains (line 846) | def contains(self, name: str, /) -> bool: ... method fromListOfPairs (line 848) | def fromListOfPairs(headers: typing.Iterable[tuple[PySide6.QtCore.QByt... method fromMultiHash (line 850) | def fromMultiHash(headers: Dict[PySide6.QtCore.QByteArray, PySide6.QtC... method fromMultiMap (line 852) | def fromMultiMap(headers: Dict[PySide6.QtCore.QByteArray, PySide6.QtCo... method insert (line 854) | def insert(self, i: int, name: QHttpHeaders.WellKnownHeader, value: st... method insert (line 856) | def insert(self, i: int, name: str, value: str, /) -> bool: ... method isEmpty (line 857) | def isEmpty(self, /) -> bool: ... method nameAt (line 858) | def nameAt(self, i: int, /) -> str: ... method removeAll (line 860) | def removeAll(self, name: QHttpHeaders.WellKnownHeader, /) -> None: ... method removeAll (line 862) | def removeAll(self, name: str, /) -> None: ... method removeAt (line 863) | def removeAt(self, i: int, /) -> None: ... method replace (line 865) | def replace(self, i: int, name: QHttpHeaders.WellKnownHeader, newValue... method replace (line 867) | def replace(self, i: int, name: str, newValue: str, /) -> bool: ... method replaceOrAppend (line 869) | def replaceOrAppend(self, name: QHttpHeaders.WellKnownHeader, newValue... method replaceOrAppend (line 871) | def replaceOrAppend(self, name: str, newValue: str, /) -> bool: ... method reserve (line 872) | def reserve(self, size: int, /) -> None: ... method setDateTimeValue (line 874) | def setDateTimeValue(self, name: QHttpHeaders.WellKnownHeader, dateTim... method setDateTimeValue (line 876) | def setDateTimeValue(self, name: str, dateTime: PySide6.QtCore.QDateTi... method size (line 877) | def size(self, /) -> int: ... method swap (line 878) | def swap(self, other: QHttpHeaders, /) -> None: ... method toListOfPairs (line 879) | def toListOfPairs(self, /) -> List[Tuple[PySide6.QtCore.QByteArray, Py... method toMultiHash (line 880) | def toMultiHash(self, /) -> Dict[PySide6.QtCore.QByteArray, PySide6.Qt... method toMultiMap (line 881) | def toMultiMap(self, /) -> Dict[PySide6.QtCore.QByteArray, PySide6.QtC... method value (line 883) | def value(self, name: QHttpHeaders.WellKnownHeader, /, defaultValue: P... method value (line 885) | def value(self, name: str, /, defaultValue: PySide6.QtCore.QByteArray ... method valueAt (line 886) | def valueAt(self, i: int, /) -> PySide6.QtCore.QByteArray: ... method values (line 888) | def values(self, name: QHttpHeaders.WellKnownHeader, /) -> List[PySide... method values (line 890) | def values(self, name: str, /) -> List[PySide6.QtCore.QByteArray]: ... method wellKnownHeaderName (line 892) | def wellKnownHeaderName(name: QHttpHeaders.WellKnownHeader, /) -> PySi... method __copy__ (line 893) | def __copy__(self, /) -> typing_extensions.Self: ... class QHttpMultiPart (line 895) | class QHttpMultiPart(PySide6.QtCore.QObject): class ContentType (line 896) | class ContentType(enum.Enum): method __init__ (line 903) | def __init__(self, contentType: QHttpMultiPart.ContentType, /, parent:... method __init__ (line 905) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method append (line 906) | def append(self, httpPart: QHttpPart, /) -> None: ... method boundary (line 907) | def boundary(self, /) -> PySide6.QtCore.QByteArray: ... method setBoundary (line 908) | def setBoundary(self, boundary: PySide6.QtCore.QByteArray | bytes | by... method setContentType (line 909) | def setContentType(self, contentType: QHttpMultiPart.ContentType, /) -... class QHttpPart (line 911) | class QHttpPart(shiboken6.Object): method __init__ (line 913) | def __init__(self, other: QHttpPart, /) -> None: ... method __init__ (line 915) | def __init__(self, /) -> None: ... method setBody (line 916) | def setBody(self, body: PySide6.QtCore.QByteArray | bytes | bytearray ... method setBodyDevice (line 917) | def setBodyDevice(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method setHeader (line 918) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: Any, ... method setRawHeader (line 919) | def setRawHeader(self, headerName: PySide6.QtCore.QByteArray | bytes |... method swap (line 920) | def swap(self, other: QHttpPart, /) -> None: ... method __copy__ (line 921) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 922) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 923) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 924) | def __gt__(self, other: object) -> bool: ... method __le__ (line 925) | def __le__(self, other: object) -> bool: ... method __lt__ (line 926) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 927) | def __ne__(self, other: object) -> bool: ... class QIPv6Address (line 929) | class QIPv6Address(shiboken6.Object): method __init__ (line 931) | def __init__(self, QIPv6Address: QIPv6Address, /) -> None: ... method __init__ (line 933) | def __init__(self, /) -> None: ... method __copy__ (line 934) | def __copy__(self, /) -> typing_extensions.Self: ... method __delitem__ (line 935) | def __delitem__(self, other) -> None: ... method __getitem__ (line 936) | def __getitem__(self, index): ... method __len__ (line 937) | def __len__(self) -> int: ... method __setitem__ (line 938) | def __setitem__(self, index, object) -> None: ... class QIntList (line 940) | class QIntList: method __init__ (line 942) | def __init__(self, *args, **kwargs) -> None: ... method append (line 943) | def append(self, *args, **kwargs): ... method capacity (line 944) | def capacity(self, *args, **kwargs): ... method clear (line 945) | def clear(self, *args, **kwargs): ... method constData (line 946) | def constData(self, *args, **kwargs): ... method data (line 947) | def data(self, *args, **kwargs): ... method pop_back (line 948) | def pop_back(self, *args, **kwargs): ... method pop_front (line 949) | def pop_front(self, *args, **kwargs): ... method prepend (line 950) | def prepend(self, *args, **kwargs): ... method push_back (line 951) | def push_back(self, *args, **kwargs): ... method push_front (line 952) | def push_front(self, *args, **kwargs): ... method removeFirst (line 953) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 954) | def removeLast(self, *args, **kwargs): ... method reserve (line 955) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 956) | def __delitem__(self, other) -> None: ... method __getitem__ (line 957) | def __getitem__(self, index): ... method __len__ (line 958) | def __len__(self) -> int: ... method __setitem__ (line 959) | def __setitem__(self, index, object) -> None: ... class QLocalServer (line 961) | class QLocalServer(PySide6.QtCore.QObject): class SocketOption (line 962) | class SocketOption(enum.Flag): method __init__ (line 971) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addPendingConnection (line 972) | def addPendingConnection(self, socket: QLocalSocket, /) -> None: ... method close (line 973) | def close(self, /) -> None: ... method errorString (line 974) | def errorString(self, /) -> str: ... method fullServerName (line 975) | def fullServerName(self, /) -> str: ... method hasPendingConnections (line 976) | def hasPendingConnections(self, /) -> bool: ... method incomingConnection (line 977) | def incomingConnection(self, socketDescriptor: int, /) -> None: ... method isListening (line 978) | def isListening(self, /) -> bool: ... method listen (line 980) | def listen(self, socketDescriptor: int, /) -> bool: ... method listen (line 982) | def listen(self, name: str, /) -> bool: ... method listenBacklogSize (line 983) | def listenBacklogSize(self, /) -> int: ... method maxPendingConnections (line 984) | def maxPendingConnections(self, /) -> int: ... method nextPendingConnection (line 985) | def nextPendingConnection(self, /) -> QLocalSocket: ... method removeServer (line 987) | def removeServer(name: str, /) -> bool: ... method serverError (line 988) | def serverError(self, /) -> QAbstractSocket.SocketError: ... method serverName (line 989) | def serverName(self, /) -> str: ... method setListenBacklogSize (line 990) | def setListenBacklogSize(self, size: int, /) -> None: ... method setMaxPendingConnections (line 991) | def setMaxPendingConnections(self, numConnections: int, /) -> None: ... method setSocketOptions (line 992) | def setSocketOptions(self, options: QLocalServer.SocketOption, /) -> N... method socketDescriptor (line 993) | def socketDescriptor(self, /) -> int: ... method socketOptions (line 994) | def socketOptions(self, /) -> QLocalServer.SocketOption: ... method waitForNewConnection (line 995) | def waitForNewConnection(self, msec: int, /) -> Tuple[bool, bool]: ... class QLocalSocket (line 997) | class QLocalSocket(PySide6.QtCore.QIODevice): class LocalSocketError (line 998) | class LocalSocketError(enum.Enum): class LocalSocketState (line 1011) | class LocalSocketState(enum.Enum): class SocketOption (line 1017) | class SocketOption(enum.Flag): method __init__ (line 1025) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method abort (line 1026) | def abort(self, /) -> None: ... method bytesAvailable (line 1027) | def bytesAvailable(self, /) -> int: ... method bytesToWrite (line 1028) | def bytesToWrite(self, /) -> int: ... method canReadLine (line 1029) | def canReadLine(self, /) -> bool: ... method close (line 1030) | def close(self, /) -> None: ... method connectToServer (line 1032) | def connectToServer(self, name: str, /, openMode: PySide6.QtCore.QIODe... method connectToServer (line 1034) | def connectToServer(self, /, openMode: PySide6.QtCore.QIODeviceBase.Op... method disconnectFromServer (line 1035) | def disconnectFromServer(self, /) -> None: ... method error (line 1036) | def error(self, /) -> QLocalSocket.LocalSocketError: ... method flush (line 1037) | def flush(self, /) -> bool: ... method fullServerName (line 1038) | def fullServerName(self, /) -> str: ... method isSequential (line 1039) | def isSequential(self, /) -> bool: ... method isValid (line 1040) | def isValid(self, /) -> bool: ... method open (line 1041) | def open(self, /, openMode: PySide6.QtCore.QIODeviceBase.OpenModeFlag ... method readBufferSize (line 1042) | def readBufferSize(self, /) -> int: ... method readData (line 1043) | def readData(self, arg__2: int, /) -> typing.Any: ... method readLineData (line 1044) | def readLineData(self, maxSize: int, /) -> typing.Any: ... method serverName (line 1045) | def serverName(self, /) -> str: ... method setReadBufferSize (line 1046) | def setReadBufferSize(self, size: int, /) -> None: ... method setServerName (line 1047) | def setServerName(self, name: str, /) -> None: ... method setSocketDescriptor (line 1048) | def setSocketDescriptor(self, socketDescriptor: int, /, socketState: Q... method setSocketOptions (line 1049) | def setSocketOptions(self, option: QLocalSocket.SocketOption, /) -> No... method skipData (line 1050) | def skipData(self, maxSize: int, /) -> int: ... method socketDescriptor (line 1051) | def socketDescriptor(self, /) -> int: ... method socketOptions (line 1052) | def socketOptions(self, /) -> QLocalSocket.SocketOption: ... method state (line 1053) | def state(self, /) -> QLocalSocket.LocalSocketState: ... method waitForBytesWritten (line 1054) | def waitForBytesWritten(self, /, msecs: int = ...) -> bool: ... method waitForConnected (line 1055) | def waitForConnected(self, /, msecs: int = ...) -> bool: ... method waitForDisconnected (line 1056) | def waitForDisconnected(self, /, msecs: int = ...) -> bool: ... method waitForReadyRead (line 1057) | def waitForReadyRead(self, /, msecs: int = ...) -> bool: ... method writeData (line 1058) | def writeData(self, arg__1: bytes | bytearray | memoryview, arg__2: in... class QNetworkAccessManager (line 1060) | class QNetworkAccessManager(PySide6.QtCore.QObject): class Operation (line 1061) | class Operation(enum.Enum): method __init__ (line 1076) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., aut... method addStrictTransportSecurityHosts (line 1077) | def addStrictTransportSecurityHosts(self, knownHosts: typing.Iterable[... method autoDeleteReplies (line 1078) | def autoDeleteReplies(self, /) -> bool: ... method cache (line 1079) | def cache(self, /) -> QAbstractNetworkCache: ... method clearAccessCache (line 1080) | def clearAccessCache(self, /) -> None: ... method clearConnectionCache (line 1081) | def clearConnectionCache(self, /) -> None: ... method connectToHost (line 1082) | def connectToHost(self, hostName: str, /, port: int = ...) -> None: ... method connectToHostEncrypted (line 1084) | def connectToHostEncrypted(self, hostName: str, port: int, sslConfigur... method connectToHostEncrypted (line 1086) | def connectToHostEncrypted(self, hostName: str, /, port: int = ..., ss... method cookieJar (line 1087) | def cookieJar(self, /) -> QNetworkCookieJar: ... method createRequest (line 1088) | def createRequest(self, op: QNetworkAccessManager.Operation, request: ... method deleteResource (line 1089) | def deleteResource(self, request: QNetworkRequest, /) -> QNetworkReply... method enableStrictTransportSecurityStore (line 1090) | def enableStrictTransportSecurityStore(self, enabled: bool, /, storeDi... method get (line 1092) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevice... method get (line 1094) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArra... method get (line 1096) | def get(self, request: QNetworkRequest, /) -> QNetworkReply: ... method head (line 1097) | def head(self, request: QNetworkRequest, /) -> QNetworkReply: ... method isStrictTransportSecurityEnabled (line 1098) | def isStrictTransportSecurityEnabled(self, /) -> bool: ... method isStrictTransportSecurityStoreEnabled (line 1099) | def isStrictTransportSecurityStoreEnabled(self, /) -> bool: ... method post (line 1101) | def post(self, request: QNetworkRequest, multiPart: QHttpMultiPart, /)... method post (line 1103) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevic... method post (line 1105) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArr... method proxy (line 1106) | def proxy(self, /) -> QNetworkProxy: ... method proxyFactory (line 1107) | def proxyFactory(self, /) -> QNetworkProxyFactory: ... method put (line 1109) | def put(self, request: QNetworkRequest, multiPart: QHttpMultiPart, /) ... method put (line 1111) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevice... method put (line 1113) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArra... method redirectPolicy (line 1114) | def redirectPolicy(self, /) -> QNetworkRequest.RedirectPolicy: ... method sendCustomRequest (line 1116) | def sendCustomRequest(self, request: QNetworkRequest, verb: PySide6.Qt... method sendCustomRequest (line 1118) | def sendCustomRequest(self, request: QNetworkRequest, verb: PySide6.Qt... method sendCustomRequest (line 1120) | def sendCustomRequest(self, request: QNetworkRequest, verb: PySide6.Qt... method setAutoDeleteReplies (line 1121) | def setAutoDeleteReplies(self, autoDelete: bool, /) -> None: ... method setCache (line 1122) | def setCache(self, cache: QAbstractNetworkCache, /) -> None: ... method setCookieJar (line 1123) | def setCookieJar(self, cookieJar: QNetworkCookieJar, /) -> None: ... method setProxy (line 1124) | def setProxy(self, proxy: QNetworkProxy | QNetworkProxy.ProxyType, /) ... method setProxyFactory (line 1125) | def setProxyFactory(self, factory: QNetworkProxyFactory, /) -> None: ... method setRedirectPolicy (line 1126) | def setRedirectPolicy(self, policy: QNetworkRequest.RedirectPolicy, /)... method setStrictTransportSecurityEnabled (line 1127) | def setStrictTransportSecurityEnabled(self, enabled: bool, /) -> None:... method setTransferTimeout (line 1128) | def setTransferTimeout(self, timeout: int, /) -> None: ... method strictTransportSecurityHosts (line 1129) | def strictTransportSecurityHosts(self, /) -> List[QHstsPolicy]: ... method supportedSchemes (line 1130) | def supportedSchemes(self, /) -> List[str]: ... method supportedSchemesImplementation (line 1131) | def supportedSchemesImplementation(self, /) -> List[str]: ... method transferTimeout (line 1132) | def transferTimeout(self, /) -> int: ... method transferTimeoutAsDuration (line 1133) | def transferTimeoutAsDuration(self, /) -> int: ... class QNetworkAddressEntry (line 1135) | class QNetworkAddressEntry(shiboken6.Object): class DnsEligibilityStatus (line 1136) | class DnsEligibilityStatus(enum.Enum): method __init__ (line 1141) | def __init__(self, other: QNetworkAddressEntry, /) -> None: ... method __init__ (line 1143) | def __init__(self, /) -> None: ... method broadcast (line 1144) | def broadcast(self, /) -> QHostAddress: ... method clearAddressLifetime (line 1145) | def clearAddressLifetime(self, /) -> None: ... method dnsEligibility (line 1146) | def dnsEligibility(self, /) -> QNetworkAddressEntry.DnsEligibilityStat... method ip (line 1147) | def ip(self, /) -> QHostAddress: ... method isLifetimeKnown (line 1148) | def isLifetimeKnown(self, /) -> bool: ... method isPermanent (line 1149) | def isPermanent(self, /) -> bool: ... method isTemporary (line 1150) | def isTemporary(self, /) -> bool: ... method netmask (line 1151) | def netmask(self, /) -> QHostAddress: ... method preferredLifetime (line 1152) | def preferredLifetime(self, /) -> PySide6.QtCore.QDeadlineTimer: ... method prefixLength (line 1153) | def prefixLength(self, /) -> int: ... method setAddressLifetime (line 1154) | def setAddressLifetime(self, preferred: PySide6.QtCore.QDeadlineTimer ... method setBroadcast (line 1155) | def setBroadcast(self, newBroadcast: QHostAddress | QHostAddress.Speci... method setDnsEligibility (line 1156) | def setDnsEligibility(self, status: QNetworkAddressEntry.DnsEligibilit... method setIp (line 1157) | def setIp(self, newIp: QHostAddress | QHostAddress.SpecialAddress, /) ... method setNetmask (line 1158) | def setNetmask(self, newNetmask: QHostAddress | QHostAddress.SpecialAd... method setPrefixLength (line 1159) | def setPrefixLength(self, length: int, /) -> None: ... method swap (line 1160) | def swap(self, other: QNetworkAddressEntry, /) -> None: ... method validityLifetime (line 1161) | def validityLifetime(self, /) -> PySide6.QtCore.QDeadlineTimer: ... method __copy__ (line 1162) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1163) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1164) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1165) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1166) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1167) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1168) | def __ne__(self, other: object) -> bool: ... class QNetworkCacheMetaData (line 1170) | class QNetworkCacheMetaData(shiboken6.Object): method __init__ (line 1172) | def __init__(self, other: QNetworkCacheMetaData, /) -> None: ... method __init__ (line 1174) | def __init__(self, /) -> None: ... method attributes (line 1175) | def attributes(self, /) -> Dict[QNetworkRequest.Attribute, Any]: ... method expirationDate (line 1176) | def expirationDate(self, /) -> PySide6.QtCore.QDateTime: ... method headers (line 1177) | def headers(self, /) -> QHttpHeaders: ... method isValid (line 1178) | def isValid(self, /) -> bool: ... method lastModified (line 1179) | def lastModified(self, /) -> PySide6.QtCore.QDateTime: ... method rawHeaders (line 1180) | def rawHeaders(self, /) -> List[Tuple[PySide6.QtCore.QByteArray, PySid... method saveToDisk (line 1181) | def saveToDisk(self, /) -> bool: ... method setAttributes (line 1182) | def setAttributes(self, attributes: Dict[QNetworkRequest.Attribute, An... method setExpirationDate (line 1183) | def setExpirationDate(self, dateTime: PySide6.QtCore.QDateTime | datet... method setHeaders (line 1184) | def setHeaders(self, headers: QHttpHeaders, /) -> None: ... method setLastModified (line 1185) | def setLastModified(self, dateTime: PySide6.QtCore.QDateTime | datetim... method setRawHeaders (line 1186) | def setRawHeaders(self, headers: typing.Iterable[tuple[PySide6.QtCore.... method setSaveToDisk (line 1187) | def setSaveToDisk(self, allow: bool, /) -> None: ... method setUrl (line 1188) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method swap (line 1189) | def swap(self, other: QNetworkCacheMetaData, /) -> None: ... method url (line 1190) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 1191) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1192) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1193) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1194) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1195) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 1196) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 1197) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1198) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 1199) | def __rlshift__(self, other): ... method __rrshift__ (line 1200) | def __rrshift__(self, other): ... method __rshift__ (line 1201) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QNetworkCookie (line 1203) | class QNetworkCookie(shiboken6.Object): class RawForm (line 1204) | class RawForm(enum.Enum): class SameSite (line 1208) | class SameSite(enum.Enum): method __init__ (line 1214) | def __init__(self, /, name: PySide6.QtCore.QByteArray | bytes | bytear... method __init__ (line 1216) | def __init__(self, other: QNetworkCookie, /) -> None: ... method domain (line 1217) | def domain(self, /) -> str: ... method expirationDate (line 1218) | def expirationDate(self, /) -> PySide6.QtCore.QDateTime: ... method hasSameIdentifier (line 1219) | def hasSameIdentifier(self, other: QNetworkCookie, /) -> bool: ... method isHttpOnly (line 1220) | def isHttpOnly(self, /) -> bool: ... method isSecure (line 1221) | def isSecure(self, /) -> bool: ... method isSessionCookie (line 1222) | def isSessionCookie(self, /) -> bool: ... method name (line 1223) | def name(self, /) -> PySide6.QtCore.QByteArray: ... method normalize (line 1224) | def normalize(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method parseCookies (line 1226) | def parseCookies(cookieString: PySide6.QtCore.QByteArray | bytes | byt... method path (line 1227) | def path(self, /) -> str: ... method sameSitePolicy (line 1228) | def sameSitePolicy(self, /) -> QNetworkCookie.SameSite: ... method setDomain (line 1229) | def setDomain(self, domain: str, /) -> None: ... method setExpirationDate (line 1230) | def setExpirationDate(self, date: PySide6.QtCore.QDateTime | datetime.... method setHttpOnly (line 1231) | def setHttpOnly(self, enable: bool, /) -> None: ... method setName (line 1232) | def setName(self, cookieName: PySide6.QtCore.QByteArray | bytes | byte... method setPath (line 1233) | def setPath(self, path: str, /) -> None: ... method setSameSitePolicy (line 1234) | def setSameSitePolicy(self, sameSite: QNetworkCookie.SameSite, /) -> N... method setSecure (line 1235) | def setSecure(self, enable: bool, /) -> None: ... method setValue (line 1236) | def setValue(self, value: PySide6.QtCore.QByteArray | bytes | bytearra... method swap (line 1237) | def swap(self, other: QNetworkCookie, /) -> None: ... method toRawForm (line 1238) | def toRawForm(self, /, form: QNetworkCookie.RawForm = ...) -> PySide6.... method value (line 1239) | def value(self, /) -> PySide6.QtCore.QByteArray: ... method __copy__ (line 1240) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1241) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1242) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1243) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1244) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1245) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1246) | def __ne__(self, other: object) -> bool: ... class QNetworkCookieJar (line 1248) | class QNetworkCookieJar(PySide6.QtCore.QObject): method __init__ (line 1250) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method allCookies (line 1251) | def allCookies(self, /) -> List[QNetworkCookie]: ... method cookiesForUrl (line 1252) | def cookiesForUrl(self, url: PySide6.QtCore.QUrl | str, /) -> List[QNe... method deleteCookie (line 1253) | def deleteCookie(self, cookie: QNetworkCookie, /) -> bool: ... method insertCookie (line 1254) | def insertCookie(self, cookie: QNetworkCookie, /) -> bool: ... method setAllCookies (line 1255) | def setAllCookies(self, cookieList: typing.Iterable[QNetworkCookie], /... method setCookiesFromUrl (line 1256) | def setCookiesFromUrl(self, cookieList: typing.Iterable[QNetworkCookie... method updateCookie (line 1257) | def updateCookie(self, cookie: QNetworkCookie, /) -> bool: ... method validateCookie (line 1258) | def validateCookie(self, cookie: QNetworkCookie, url: PySide6.QtCore.Q... class QNetworkDatagram (line 1260) | class QNetworkDatagram(shiboken6.Object): method __init__ (line 1262) | def __init__(self, data: PySide6.QtCore.QByteArray | bytes | bytearray... method __init__ (line 1264) | def __init__(self, other: QNetworkDatagram, /) -> None: ... method __init__ (line 1266) | def __init__(self, /) -> None: ... method clear (line 1267) | def clear(self, /) -> None: ... method data (line 1268) | def data(self, /) -> PySide6.QtCore.QByteArray: ... method destinationAddress (line 1269) | def destinationAddress(self, /) -> QHostAddress: ... method destinationPort (line 1270) | def destinationPort(self, /) -> int: ... method hopLimit (line 1271) | def hopLimit(self, /) -> int: ... method interfaceIndex (line 1272) | def interfaceIndex(self, /) -> int: ... method isNull (line 1273) | def isNull(self, /) -> bool: ... method isValid (line 1274) | def isValid(self, /) -> bool: ... method makeReply (line 1275) | def makeReply(self, payload: PySide6.QtCore.QByteArray | bytes | bytea... method senderAddress (line 1276) | def senderAddress(self, /) -> QHostAddress: ... method senderPort (line 1277) | def senderPort(self, /) -> int: ... method setData (line 1278) | def setData(self, data: PySide6.QtCore.QByteArray | bytes | bytearray ... method setDestination (line 1279) | def setDestination(self, address: QHostAddress | QHostAddress.SpecialA... method setHopLimit (line 1280) | def setHopLimit(self, count: int, /) -> None: ... method setInterfaceIndex (line 1281) | def setInterfaceIndex(self, index: int, /) -> None: ... method setSender (line 1282) | def setSender(self, address: QHostAddress | QHostAddress.SpecialAddres... method swap (line 1283) | def swap(self, other: QNetworkDatagram | PySide6.QtCore.QByteArray, /)... method __bool__ (line 1284) | def __bool__(self) -> bool: ... method __copy__ (line 1285) | def __copy__(self, /) -> typing_extensions.Self: ... class QNetworkDiskCache (line 1287) | class QNetworkDiskCache(QAbstractNetworkCache): method __init__ (line 1289) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method cacheDirectory (line 1290) | def cacheDirectory(self, /) -> str: ... method cacheSize (line 1291) | def cacheSize(self, /) -> int: ... method clear (line 1292) | def clear(self, /) -> None: ... method data (line 1293) | def data(self, url: PySide6.QtCore.QUrl | str, /) -> PySide6.QtCore.QI... method expire (line 1294) | def expire(self, /) -> int: ... method fileMetaData (line 1295) | def fileMetaData(self, fileName: str, /) -> QNetworkCacheMetaData: ... method insert (line 1296) | def insert(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method maximumCacheSize (line 1297) | def maximumCacheSize(self, /) -> int: ... method metaData (line 1298) | def metaData(self, url: PySide6.QtCore.QUrl | str, /) -> QNetworkCache... method prepare (line 1299) | def prepare(self, metaData: QNetworkCacheMetaData, /) -> PySide6.QtCor... method remove (line 1300) | def remove(self, url: PySide6.QtCore.QUrl | str, /) -> bool: ... method setCacheDirectory (line 1301) | def setCacheDirectory(self, cacheDir: str, /) -> None: ... method setMaximumCacheSize (line 1302) | def setMaximumCacheSize(self, size: int, /) -> None: ... method updateMetaData (line 1303) | def updateMetaData(self, metaData: QNetworkCacheMetaData, /) -> None: ... class QNetworkInformation (line 1305) | class QNetworkInformation(PySide6.QtCore.QObject): class Feature (line 1306) | class Feature(enum.Flag): class Reachability (line 1312) | class Reachability(enum.Enum): class TransportMedium (line 1319) | class TransportMedium(enum.Enum): method __init__ (line 1330) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method availableBackends (line 1332) | def availableBackends() -> List[str]: ... method backendName (line 1333) | def backendName(self, /) -> str: ... method instance (line 1335) | def instance() -> QNetworkInformation: ... method isBehindCaptivePortal (line 1336) | def isBehindCaptivePortal(self, /) -> bool: ... method isMetered (line 1337) | def isMetered(self, /) -> bool: ... method load (line 1340) | def load(features: QNetworkInformation.Feature, /) -> bool: ... method load (line 1343) | def load(backend: str, /) -> bool: ... method loadBackendByFeatures (line 1345) | def loadBackendByFeatures(features: QNetworkInformation.Feature, /) ->... method loadBackendByName (line 1347) | def loadBackendByName(backend: str, /) -> bool: ... method loadDefaultBackend (line 1349) | def loadDefaultBackend() -> bool: ... method reachability (line 1350) | def reachability(self, /) -> QNetworkInformation.Reachability: ... method supportedFeatures (line 1351) | def supportedFeatures(self, /) -> QNetworkInformation.Feature: ... method supports (line 1352) | def supports(self, features: QNetworkInformation.Feature, /) -> bool: ... method transportMedium (line 1353) | def transportMedium(self, /) -> QNetworkInformation.TransportMedium: ... class QNetworkInterface (line 1355) | class QNetworkInterface(shiboken6.Object): class InterfaceFlag (line 1356) | class InterfaceFlag(enum.Flag): class InterfaceType (line 1364) | class InterfaceType(enum.Enum): method __init__ (line 1381) | def __init__(self, other: QNetworkInterface, /) -> None: ... method __init__ (line 1383) | def __init__(self, /) -> None: ... method addressEntries (line 1384) | def addressEntries(self, /) -> List[QNetworkAddressEntry]: ... method allAddresses (line 1386) | def allAddresses() -> List[QHostAddress]: ... method allInterfaces (line 1388) | def allInterfaces() -> List[QNetworkInterface]: ... method flags (line 1389) | def flags(self, /) -> QNetworkInterface.InterfaceFlag: ... method hardwareAddress (line 1390) | def hardwareAddress(self, /) -> str: ... method humanReadableName (line 1391) | def humanReadableName(self, /) -> str: ... method index (line 1392) | def index(self, /) -> int: ... method interfaceFromIndex (line 1394) | def interfaceFromIndex(index: int, /) -> QNetworkInterface: ... method interfaceFromName (line 1396) | def interfaceFromName(name: str, /) -> QNetworkInterface: ... method interfaceIndexFromName (line 1398) | def interfaceIndexFromName(name: str, /) -> int: ... method interfaceNameFromIndex (line 1400) | def interfaceNameFromIndex(index: int, /) -> str: ... method isValid (line 1401) | def isValid(self, /) -> bool: ... method maximumTransmissionUnit (line 1402) | def maximumTransmissionUnit(self, /) -> int: ... method name (line 1403) | def name(self, /) -> str: ... method swap (line 1404) | def swap(self, other: QNetworkInterface, /) -> None: ... method type (line 1405) | def type(self, /) -> QNetworkInterface.InterfaceType: ... method __copy__ (line 1406) | def __copy__(self, /) -> typing_extensions.Self: ... class QNetworkProxy (line 1408) | class QNetworkProxy(shiboken6.Object): class Capability (line 1409) | class Capability(enum.Flag): class ProxyType (line 1418) | class ProxyType(enum.Enum): method __init__ (line 1426) | def __init__(self, type: QNetworkProxy.ProxyType, /, hostName: str = .... method __init__ (line 1428) | def __init__(self, other: QNetworkProxy, /) -> None: ... method __init__ (line 1430) | def __init__(self, /) -> None: ... method applicationProxy (line 1432) | def applicationProxy() -> QNetworkProxy: ... method capabilities (line 1433) | def capabilities(self, /) -> QNetworkProxy.Capability: ... method hasRawHeader (line 1434) | def hasRawHeader(self, headerName: PySide6.QtCore.QByteArray | bytes |... method header (line 1435) | def header(self, header: QNetworkRequest.KnownHeaders, /) -> Any: ... method headers (line 1436) | def headers(self, /) -> QHttpHeaders: ... method hostName (line 1437) | def hostName(self, /) -> str: ... method isCachingProxy (line 1438) | def isCachingProxy(self, /) -> bool: ... method isTransparentProxy (line 1439) | def isTransparentProxy(self, /) -> bool: ... method password (line 1440) | def password(self, /) -> str: ... method port (line 1441) | def port(self, /) -> int: ... method rawHeader (line 1442) | def rawHeader(self, headerName: PySide6.QtCore.QByteArray | bytes | by... method rawHeaderList (line 1443) | def rawHeaderList(self, /) -> List[PySide6.QtCore.QByteArray]: ... method setApplicationProxy (line 1445) | def setApplicationProxy(proxy: QNetworkProxy | QNetworkProxy.ProxyType... method setCapabilities (line 1446) | def setCapabilities(self, capab: QNetworkProxy.Capability, /) -> None:... method setHeader (line 1447) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: Any, ... method setHeaders (line 1448) | def setHeaders(self, newHeaders: QHttpHeaders, /) -> None: ... method setHostName (line 1449) | def setHostName(self, hostName: str, /) -> None: ... method setPassword (line 1450) | def setPassword(self, password: str, /) -> None: ... method setPort (line 1451) | def setPort(self, port: int, /) -> None: ... method setRawHeader (line 1452) | def setRawHeader(self, headerName: PySide6.QtCore.QByteArray | bytes |... method setType (line 1453) | def setType(self, type: QNetworkProxy.ProxyType, /) -> None: ... method setUser (line 1454) | def setUser(self, userName: str, /) -> None: ... method swap (line 1455) | def swap(self, other: QNetworkProxy | QNetworkProxy.ProxyType, /) -> N... method type (line 1456) | def type(self, /) -> QNetworkProxy.ProxyType: ... method user (line 1457) | def user(self, /) -> str: ... method __copy__ (line 1458) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1459) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1460) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1461) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1462) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1463) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1464) | def __ne__(self, other: object) -> bool: ... class QNetworkProxyFactory (line 1466) | class QNetworkProxyFactory(shiboken6.Object): method __init__ (line 1467) | def __init__(self, /) -> None: ... method proxyForQuery (line 1469) | def proxyForQuery(query: QNetworkProxyQuery | PySide6.QtCore.QUrl | in... method queryProxy (line 1470) | def queryProxy(self, /, query: QNetworkProxyQuery | PySide6.QtCore.QUr... method setApplicationProxyFactory (line 1472) | def setApplicationProxyFactory(factory: QNetworkProxyFactory, /) -> No... method setUseSystemConfiguration (line 1474) | def setUseSystemConfiguration(enable: bool, /) -> None: ... method systemProxyForQuery (line 1476) | def systemProxyForQuery(query: QNetworkProxyQuery | PySide6.QtCore.QUr... method usesSystemConfiguration (line 1478) | def usesSystemConfiguration() -> bool: ... class QNetworkProxyQuery (line 1480) | class QNetworkProxyQuery(shiboken6.Object): class QueryType (line 1481) | class QueryType(enum.Enum): method __init__ (line 1489) | def __init__(self, hostname: str, port: int, /, protocolTag: str = ...... method __init__ (line 1491) | def __init__(self, bindPort: int, /, protocolTag: str = ..., queryType... method __init__ (line 1493) | def __init__(self, requestUrl: PySide6.QtCore.QUrl | str, /, queryType... method __init__ (line 1495) | def __init__(self, other: QNetworkProxyQuery, /) -> None: ... method __init__ (line 1497) | def __init__(self, /) -> None: ... method localPort (line 1498) | def localPort(self, /) -> int: ... method peerHostName (line 1499) | def peerHostName(self, /) -> str: ... method peerPort (line 1500) | def peerPort(self, /) -> int: ... method protocolTag (line 1501) | def protocolTag(self, /) -> str: ... method queryType (line 1502) | def queryType(self, /) -> QNetworkProxyQuery.QueryType: ... method setLocalPort (line 1503) | def setLocalPort(self, port: int, /) -> None: ... method setPeerHostName (line 1504) | def setPeerHostName(self, hostname: str, /) -> None: ... method setPeerPort (line 1505) | def setPeerPort(self, port: int, /) -> None: ... method setProtocolTag (line 1506) | def setProtocolTag(self, protocolTag: str, /) -> None: ... method setQueryType (line 1507) | def setQueryType(self, type: QNetworkProxyQuery.QueryType, /) -> None:... method setUrl (line 1508) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method swap (line 1509) | def swap(self, other: QNetworkProxyQuery | PySide6.QtCore.QUrl | int, ... method url (line 1510) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 1511) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1512) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1513) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1514) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1515) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1516) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1517) | def __ne__(self, other: object) -> bool: ... class QNetworkReply (line 1519) | class QNetworkReply(PySide6.QtCore.QIODevice): class NetworkError (line 1520) | class NetworkError(enum.Enum): method __init__ (line 1568) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method abort (line 1569) | def abort(self, /) -> None: ... method attribute (line 1570) | def attribute(self, code: QNetworkRequest.Attribute, /) -> Any: ... method close (line 1571) | def close(self, /) -> None: ... method error (line 1572) | def error(self, /) -> QNetworkReply.NetworkError: ... method hasRawHeader (line 1573) | def hasRawHeader(self, headerName: str, /) -> bool: ... method header (line 1574) | def header(self, header: QNetworkRequest.KnownHeaders, /) -> Any: ... method headers (line 1575) | def headers(self, /) -> QHttpHeaders: ... method ignoreSslErrors (line 1577) | def ignoreSslErrors(self, errors: typing.Iterable[QSslError], /) -> No... method ignoreSslErrors (line 1579) | def ignoreSslErrors(self, /) -> None: ... method ignoreSslErrorsImplementation (line 1580) | def ignoreSslErrorsImplementation(self, arg__1: typing.Iterable[QSslEr... method isFinished (line 1581) | def isFinished(self, /) -> bool: ... method isRunning (line 1582) | def isRunning(self, /) -> bool: ... method isSequential (line 1583) | def isSequential(self, /) -> bool: ... method manager (line 1584) | def manager(self, /) -> QNetworkAccessManager: ... method operation (line 1585) | def operation(self, /) -> QNetworkAccessManager.Operation: ... method rawHeader (line 1586) | def rawHeader(self, headerName: str, /) -> PySide6.QtCore.QByteArray: ... method rawHeaderList (line 1587) | def rawHeaderList(self, /) -> List[PySide6.QtCore.QByteArray]: ... method rawHeaderPairs (line 1588) | def rawHeaderPairs(self, /) -> List[Tuple[PySide6.QtCore.QByteArray, P... method readBufferSize (line 1589) | def readBufferSize(self, /) -> int: ... method request (line 1590) | def request(self, /) -> QNetworkRequest: ... method setAttribute (line 1591) | def setAttribute(self, code: QNetworkRequest.Attribute, value: Any, /)... method setError (line 1592) | def setError(self, errorCode: QNetworkReply.NetworkError, errorString:... method setFinished (line 1593) | def setFinished(self, arg__1: bool, /) -> None: ... method setHeader (line 1594) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: Any, ... method setHeaders (line 1595) | def setHeaders(self, newHeaders: QHttpHeaders, /) -> None: ... method setOperation (line 1596) | def setOperation(self, operation: QNetworkAccessManager.Operation, /) ... method setRawHeader (line 1597) | def setRawHeader(self, headerName: PySide6.QtCore.QByteArray | bytes |... method setReadBufferSize (line 1598) | def setReadBufferSize(self, size: int, /) -> None: ... method setRequest (line 1599) | def setRequest(self, request: QNetworkRequest, /) -> None: ... method setSslConfiguration (line 1600) | def setSslConfiguration(self, configuration: QSslConfiguration, /) -> ... method setSslConfigurationImplementation (line 1601) | def setSslConfigurationImplementation(self, arg__1: QSslConfiguration,... method setUrl (line 1602) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setWellKnownHeader (line 1603) | def setWellKnownHeader(self, name: QHttpHeaders.WellKnownHeader, value... method sslConfiguration (line 1604) | def sslConfiguration(self, /) -> QSslConfiguration: ... method sslConfigurationImplementation (line 1605) | def sslConfigurationImplementation(self, arg__1: QSslConfiguration, /)... method url (line 1606) | def url(self, /) -> PySide6.QtCore.QUrl: ... method writeData (line 1607) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QNetworkRequest (line 1609) | class QNetworkRequest(shiboken6.Object): class Attribute (line 1610) | class Attribute(enum.Enum): class CacheLoadControl (line 1644) | class CacheLoadControl(enum.Enum): class KnownHeaders (line 1650) | class KnownHeaders(enum.Enum): class LoadControl (line 1666) | class LoadControl(enum.Enum): class Priority (line 1670) | class Priority(enum.Enum): class RedirectPolicy (line 1675) | class RedirectPolicy(enum.Enum): class TransferTimeoutConstant (line 1681) | class TransferTimeoutConstant(enum.Enum): method __init__ (line 1685) | def __init__(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method __init__ (line 1687) | def __init__(self, other: QNetworkRequest, /) -> None: ... method __init__ (line 1689) | def __init__(self, /) -> None: ... method attribute (line 1690) | def attribute(self, code: QNetworkRequest.Attribute, /, defaultValue: ... method decompressedSafetyCheckThreshold (line 1691) | def decompressedSafetyCheckThreshold(self, /) -> int: ... method hasRawHeader (line 1692) | def hasRawHeader(self, headerName: str, /) -> bool: ... method header (line 1693) | def header(self, header: QNetworkRequest.KnownHeaders, /) -> Any: ... method headers (line 1694) | def headers(self, /) -> QHttpHeaders: ... method http1Configuration (line 1695) | def http1Configuration(self, /) -> QHttp1Configuration: ... method http2Configuration (line 1696) | def http2Configuration(self, /) -> QHttp2Configuration: ... method maximumRedirectsAllowed (line 1697) | def maximumRedirectsAllowed(self, /) -> int: ... method originatingObject (line 1698) | def originatingObject(self, /) -> PySide6.QtCore.QObject: ... method peerVerifyName (line 1699) | def peerVerifyName(self, /) -> str: ... method priority (line 1700) | def priority(self, /) -> QNetworkRequest.Priority: ... method rawHeader (line 1701) | def rawHeader(self, headerName: str, /) -> PySide6.QtCore.QByteArray: ... method rawHeaderList (line 1702) | def rawHeaderList(self, /) -> List[PySide6.QtCore.QByteArray]: ... method setAttribute (line 1703) | def setAttribute(self, code: QNetworkRequest.Attribute, value: Any, /)... method setDecompressedSafetyCheckThreshold (line 1704) | def setDecompressedSafetyCheckThreshold(self, threshold: int, /) -> No... method setHeader (line 1705) | def setHeader(self, header: QNetworkRequest.KnownHeaders, value: Any, ... method setHeaders (line 1706) | def setHeaders(self, newHeaders: QHttpHeaders, /) -> None: ... method setHttp1Configuration (line 1707) | def setHttp1Configuration(self, configuration: QHttp1Configuration, /)... method setHttp2Configuration (line 1708) | def setHttp2Configuration(self, configuration: QHttp2Configuration, /)... method setMaximumRedirectsAllowed (line 1709) | def setMaximumRedirectsAllowed(self, maximumRedirectsAllowed: int, /) ... method setOriginatingObject (line 1710) | def setOriginatingObject(self, object: PySide6.QtCore.QObject, /) -> N... method setPeerVerifyName (line 1711) | def setPeerVerifyName(self, peerName: str, /) -> None: ... method setPriority (line 1712) | def setPriority(self, priority: QNetworkRequest.Priority, /) -> None: ... method setRawHeader (line 1713) | def setRawHeader(self, headerName: PySide6.QtCore.QByteArray | bytes |... method setSslConfiguration (line 1714) | def setSslConfiguration(self, configuration: QSslConfiguration, /) -> ... method setTransferTimeout (line 1715) | def setTransferTimeout(self, timeout: int, /) -> None: ... method setUrl (line 1716) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method sslConfiguration (line 1717) | def sslConfiguration(self, /) -> QSslConfiguration: ... method swap (line 1718) | def swap(self, other: QNetworkRequest, /) -> None: ... method transferTimeout (line 1719) | def transferTimeout(self, /) -> int: ... method transferTimeoutAsDuration (line 1720) | def transferTimeoutAsDuration(self, /) -> int: ... method url (line 1721) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 1722) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1723) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1724) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1725) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1726) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1727) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1728) | def __ne__(self, other: object) -> bool: ... class QNetworkRequestFactory (line 1730) | class QNetworkRequestFactory(shiboken6.Object): method __init__ (line 1732) | def __init__(self, other: QNetworkRequestFactory, /) -> None: ... method __init__ (line 1734) | def __init__(self, baseUrl: PySide6.QtCore.QUrl | str, /) -> None: ... method __init__ (line 1736) | def __init__(self, /) -> None: ... method attribute (line 1738) | def attribute(self, attribute: QNetworkRequest.Attribute, defaultValue... method attribute (line 1740) | def attribute(self, attribute: QNetworkRequest.Attribute, /) -> Any: ... method baseUrl (line 1741) | def baseUrl(self, /) -> PySide6.QtCore.QUrl: ... method bearerToken (line 1742) | def bearerToken(self, /) -> PySide6.QtCore.QByteArray: ... method clearAttribute (line 1743) | def clearAttribute(self, attribute: QNetworkRequest.Attribute, /) -> N... method clearAttributes (line 1744) | def clearAttributes(self, /) -> None: ... method clearBearerToken (line 1745) | def clearBearerToken(self, /) -> None: ... method clearCommonHeaders (line 1746) | def clearCommonHeaders(self, /) -> None: ... method clearPassword (line 1747) | def clearPassword(self, /) -> None: ... method clearQueryParameters (line 1748) | def clearQueryParameters(self, /) -> None: ... method clearUserName (line 1749) | def clearUserName(self, /) -> None: ... method commonHeaders (line 1750) | def commonHeaders(self, /) -> QHttpHeaders: ... method createRequest (line 1752) | def createRequest(self, path: str, query: PySide6.QtCore.QUrlQuery, /)... method createRequest (line 1754) | def createRequest(self, query: PySide6.QtCore.QUrlQuery, /) -> QNetwor... method createRequest (line 1756) | def createRequest(self, path: str, /) -> QNetworkRequest: ... method createRequest (line 1758) | def createRequest(self, /) -> QNetworkRequest: ... method password (line 1759) | def password(self, /) -> str: ... method priority (line 1760) | def priority(self, /) -> QNetworkRequest.Priority: ... method queryParameters (line 1761) | def queryParameters(self, /) -> PySide6.QtCore.QUrlQuery: ... method setAttribute (line 1762) | def setAttribute(self, attribute: QNetworkRequest.Attribute, value: An... method setBaseUrl (line 1763) | def setBaseUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setBearerToken (line 1764) | def setBearerToken(self, token: PySide6.QtCore.QByteArray | bytes | by... method setCommonHeaders (line 1765) | def setCommonHeaders(self, headers: QHttpHeaders, /) -> None: ... method setPassword (line 1766) | def setPassword(self, password: str, /) -> None: ... method setPriority (line 1767) | def setPriority(self, priority: QNetworkRequest.Priority, /) -> None: ... method setQueryParameters (line 1768) | def setQueryParameters(self, query: PySide6.QtCore.QUrlQuery, /) -> No... method setSslConfiguration (line 1769) | def setSslConfiguration(self, configuration: QSslConfiguration, /) -> ... method setTransferTimeout (line 1770) | def setTransferTimeout(self, timeout: int, /) -> None: ... method setUserName (line 1771) | def setUserName(self, userName: str, /) -> None: ... method sslConfiguration (line 1772) | def sslConfiguration(self, /) -> QSslConfiguration: ... method swap (line 1773) | def swap(self, other: QNetworkRequestFactory, /) -> None: ... method transferTimeout (line 1774) | def transferTimeout(self, /) -> int: ... method userName (line 1775) | def userName(self, /) -> str: ... method __copy__ (line 1776) | def __copy__(self, /) -> typing_extensions.Self: ... class QOcspCertificateStatus (line 1778) | class QOcspCertificateStatus(enum.Enum): class QOcspResponse (line 1783) | class QOcspResponse(shiboken6.Object): method __init__ (line 1785) | def __init__(self, other: QOcspResponse, /) -> None: ... method __init__ (line 1787) | def __init__(self, /) -> None: ... method certificateStatus (line 1788) | def certificateStatus(self, /) -> QOcspCertificateStatus: ... method responder (line 1789) | def responder(self, /) -> QSslCertificate: ... method revocationReason (line 1790) | def revocationReason(self, /) -> QOcspRevocationReason: ... method subject (line 1791) | def subject(self, /) -> QSslCertificate: ... method swap (line 1792) | def swap(self, other: QOcspResponse, /) -> None: ... method __copy__ (line 1793) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1794) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1795) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1796) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1797) | def __hash__(self, /) -> int: ... method __le__ (line 1798) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1799) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1800) | def __ne__(self, other: object) -> bool: ... class QOcspRevocationReason (line 1802) | class QOcspRevocationReason(enum.Enum): class QPasswordDigestor (line 1813) | class QPasswordDigestor(shiboken6.Object): method __init__ (line 1814) | def __init__(self, *args, **kwargs) -> None: ... method deriveKeyPbkdf1 (line 1816) | def deriveKeyPbkdf1(algorithm: PySide6.QtCore.QCryptographicHash.Algor... method deriveKeyPbkdf2 (line 1818) | def deriveKeyPbkdf2(algorithm: PySide6.QtCore.QCryptographicHash.Algor... class QRestAccessManager (line 1820) | class QRestAccessManager(PySide6.QtCore.QObject): method __init__ (line 1822) | def __init__(self, manager: QNetworkAccessManager, /, parent: PySide6.... method deleteResource (line 1824) | def deleteResource(self, request: QNetworkRequest, context: PySide6.Qt... method deleteResource (line 1826) | def deleteResource(self, request: QNetworkRequest, /) -> QNetworkReply... method get (line 1828) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevice... method get (line 1830) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDocu... method get (line 1832) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArra... method get (line 1834) | def get(self, request: QNetworkRequest, context: PySide6.QtCore.QObjec... method get (line 1836) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevice... method get (line 1838) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDocu... method get (line 1840) | def get(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArra... method get (line 1842) | def get(self, request: QNetworkRequest, /) -> QNetworkReply: ... method head (line 1844) | def head(self, request: QNetworkRequest, context: PySide6.QtCore.QObje... method head (line 1846) | def head(self, request: QNetworkRequest, /) -> QNetworkReply: ... method networkAccessManager (line 1847) | def networkAccessManager(self, /) -> QNetworkAccessManager: ... method patch (line 1849) | def patch(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevi... method patch (line 1851) | def patch(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDo... method patch (line 1853) | def patch(self, request: QNetworkRequest, data: Dict[str, Any], contex... method patch (line 1855) | def patch(self, request: QNetworkRequest, data: PySide6.QtCore.QByteAr... method patch (line 1857) | def patch(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevi... method patch (line 1859) | def patch(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDo... method patch (line 1861) | def patch(self, request: QNetworkRequest, data: Dict[str, Any], /) -> ... method patch (line 1863) | def patch(self, request: QNetworkRequest, data: PySide6.QtCore.QByteAr... method post (line 1865) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevic... method post (line 1867) | def post(self, request: QNetworkRequest, data: QHttpMultiPart, context... method post (line 1869) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDoc... method post (line 1871) | def post(self, request: QNetworkRequest, data: Dict[str, Any], context... method post (line 1873) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArr... method post (line 1875) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevic... method post (line 1877) | def post(self, request: QNetworkRequest, data: QHttpMultiPart, /) -> Q... method post (line 1879) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDoc... method post (line 1881) | def post(self, request: QNetworkRequest, data: Dict[str, Any], /) -> Q... method post (line 1883) | def post(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArr... method put (line 1885) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevice... method put (line 1887) | def put(self, request: QNetworkRequest, data: QHttpMultiPart, context:... method put (line 1889) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDocu... method put (line 1891) | def put(self, request: QNetworkRequest, data: Dict[str, Any], context:... method put (line 1893) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArra... method put (line 1895) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QIODevice... method put (line 1897) | def put(self, request: QNetworkRequest, data: QHttpMultiPart, /) -> QN... method put (line 1899) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QJsonDocu... method put (line 1901) | def put(self, request: QNetworkRequest, data: Dict[str, Any], /) -> QN... method put (line 1903) | def put(self, request: QNetworkRequest, data: PySide6.QtCore.QByteArra... method sendCustomRequest (line 1905) | def sendCustomRequest(self, request: QNetworkRequest, method: PySide6.... method sendCustomRequest (line 1907) | def sendCustomRequest(self, request: QNetworkRequest, method: PySide6.... method sendCustomRequest (line 1909) | def sendCustomRequest(self, request: QNetworkRequest, method: PySide6.... method sendCustomRequest (line 1911) | def sendCustomRequest(self, request: QNetworkRequest, method: PySide6.... method sendCustomRequest (line 1913) | def sendCustomRequest(self, request: QNetworkRequest, method: PySide6.... method sendCustomRequest (line 1915) | def sendCustomRequest(self, request: QNetworkRequest, method: PySide6.... class QRestReply (line 1917) | class QRestReply(shiboken6.Object): method __init__ (line 1918) | def __init__(self, reply: QNetworkReply, /) -> None: ... method error (line 1919) | def error(self, /) -> QNetworkReply.NetworkError: ... method errorString (line 1920) | def errorString(self, /) -> str: ... method hasError (line 1921) | def hasError(self, /) -> bool: ... method httpStatus (line 1922) | def httpStatus(self, /) -> int: ... method isHttpStatusSuccess (line 1923) | def isHttpStatusSuccess(self, /) -> bool: ... method isSuccess (line 1924) | def isSuccess(self, /) -> bool: ... method networkReply (line 1925) | def networkReply(self, /) -> QNetworkReply: ... method readBody (line 1926) | def readBody(self, /) -> PySide6.QtCore.QByteArray: ... method readJson (line 1927) | def readJson(self, /) -> Tuple[Optional[PySide6.QtCore.QJsonDocument],... method readText (line 1928) | def readText(self, /) -> str: ... method swap (line 1929) | def swap(self, other: QRestReply, /) -> None: ... class QSsl (line 1931) | class QSsl(shiboken6.Object): class AlertLevel (line 1932) | class AlertLevel(enum.Enum): class AlertType (line 1937) | class AlertType(enum.Enum): class AlternativeNameEntryType (line 1973) | class AlternativeNameEntryType(enum.Enum): class EncodingFormat (line 1978) | class EncodingFormat(enum.Enum): class ImplementedClass (line 1982) | class ImplementedClass(enum.Enum): class KeyAlgorithm (line 1991) | class KeyAlgorithm(enum.Enum): class KeyType (line 1998) | class KeyType(enum.Enum): class SslOption (line 2002) | class SslOption(enum.Flag): class SslProtocol (line 2012) | class SslProtocol(enum.Enum): class SupportedFeature (line 2029) | class SupportedFeature(enum.Enum): method __init__ (line 2037) | def __init__(self, *args, **kwargs) -> None: ... class QSslCertificate (line 2039) | class QSslCertificate(shiboken6.Object): class PatternSyntax (line 2040) | class PatternSyntax(enum.Enum): class SubjectInfo (line 2045) | class SubjectInfo(enum.Enum): method __init__ (line 2056) | def __init__(self, device: PySide6.QtCore.QIODevice, /, format: QSsl.E... method __init__ (line 2058) | def __init__(self, /, data: PySide6.QtCore.QByteArray | bytes | bytear... method __init__ (line 2060) | def __init__(self, other: QSslCertificate, /) -> None: ... method clear (line 2061) | def clear(self, /) -> None: ... method digest (line 2062) | def digest(self, /, algorithm: PySide6.QtCore.QCryptographicHash.Algor... method effectiveDate (line 2063) | def effectiveDate(self, /) -> PySide6.QtCore.QDateTime: ... method expiryDate (line 2064) | def expiryDate(self, /) -> PySide6.QtCore.QDateTime: ... method extensions (line 2065) | def extensions(self, /) -> List[QSslCertificateExtension]: ... method fromData (line 2067) | def fromData(data: PySide6.QtCore.QByteArray | bytes | bytearray | mem... method fromDevice (line 2069) | def fromDevice(device: PySide6.QtCore.QIODevice, /, format: QSsl.Encod... method fromFile (line 2071) | def fromFile(filePath: str, /, format: QSsl.EncodingFormat = ...) -> L... method fromPath (line 2073) | def fromPath(path: str, /, format: QSsl.EncodingFormat = ..., syntax: ... method handle (line 2074) | def handle(self, /) -> int: ... method importPkcs12 (line 2076) | def importPkcs12(device: PySide6.QtCore.QIODevice, key: QSslKey | int,... method isBlacklisted (line 2077) | def isBlacklisted(self, /) -> bool: ... method isNull (line 2078) | def isNull(self, /) -> bool: ... method isSelfSigned (line 2079) | def isSelfSigned(self, /) -> bool: ... method issuerDisplayName (line 2080) | def issuerDisplayName(self, /) -> str: ... method issuerInfo (line 2082) | def issuerInfo(self, info: QSslCertificate.SubjectInfo, /) -> List[str... method issuerInfo (line 2084) | def issuerInfo(self, attribute: PySide6.QtCore.QByteArray | bytes | by... method issuerInfoAttributes (line 2085) | def issuerInfoAttributes(self, /) -> List[PySide6.QtCore.QByteArray]: ... method publicKey (line 2086) | def publicKey(self, /) -> QSslKey: ... method serialNumber (line 2087) | def serialNumber(self, /) -> PySide6.QtCore.QByteArray: ... method subjectAlternativeNames (line 2088) | def subjectAlternativeNames(self, /) -> OrderedDict[QSsl.AlternativeNa... method subjectDisplayName (line 2089) | def subjectDisplayName(self, /) -> str: ... method subjectInfo (line 2091) | def subjectInfo(self, info: QSslCertificate.SubjectInfo, /) -> List[st... method subjectInfo (line 2093) | def subjectInfo(self, attribute: PySide6.QtCore.QByteArray | bytes | b... method subjectInfoAttributes (line 2094) | def subjectInfoAttributes(self, /) -> List[PySide6.QtCore.QByteArray]:... method swap (line 2095) | def swap(self, other: QSslCertificate | PySide6.QtCore.QIODevice, /) -... method toDer (line 2096) | def toDer(self, /) -> PySide6.QtCore.QByteArray: ... method toPem (line 2097) | def toPem(self, /) -> PySide6.QtCore.QByteArray: ... method toText (line 2098) | def toText(self, /) -> str: ... method verify (line 2100) | def verify(certificateChain: typing.Iterable[QSslCertificate], /, host... method version (line 2101) | def version(self, /) -> PySide6.QtCore.QByteArray: ... method __bool__ (line 2102) | def __bool__(self) -> bool: ... method __copy__ (line 2103) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2104) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2105) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2106) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2107) | def __hash__(self, /) -> int: ... method __le__ (line 2108) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2109) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2110) | def __ne__(self, other: object) -> bool: ... class QSslCertificateExtension (line 2112) | class QSslCertificateExtension(shiboken6.Object): method __init__ (line 2114) | def __init__(self, other: QSslCertificateExtension, /) -> None: ... method __init__ (line 2116) | def __init__(self, /) -> None: ... method isCritical (line 2117) | def isCritical(self, /) -> bool: ... method isSupported (line 2118) | def isSupported(self, /) -> bool: ... method name (line 2119) | def name(self, /) -> str: ... method oid (line 2120) | def oid(self, /) -> str: ... method swap (line 2121) | def swap(self, other: QSslCertificateExtension, /) -> None: ... method value (line 2122) | def value(self, /) -> Any: ... method __copy__ (line 2123) | def __copy__(self, /) -> typing_extensions.Self: ... class QSslCipher (line 2125) | class QSslCipher(shiboken6.Object): method __init__ (line 2127) | def __init__(self, name: str, protocol: QSsl.SslProtocol, /) -> None: ... method __init__ (line 2129) | def __init__(self, other: QSslCipher, /) -> None: ... method __init__ (line 2131) | def __init__(self, name: str, /) -> None: ... method __init__ (line 2133) | def __init__(self, /) -> None: ... method authenticationMethod (line 2134) | def authenticationMethod(self, /) -> str: ... method encryptionMethod (line 2135) | def encryptionMethod(self, /) -> str: ... method isNull (line 2136) | def isNull(self, /) -> bool: ... method keyExchangeMethod (line 2137) | def keyExchangeMethod(self, /) -> str: ... method name (line 2138) | def name(self, /) -> str: ... method protocol (line 2139) | def protocol(self, /) -> QSsl.SslProtocol: ... method protocolString (line 2140) | def protocolString(self, /) -> str: ... method supportedBits (line 2141) | def supportedBits(self, /) -> int: ... method swap (line 2142) | def swap(self, other: QSslCipher, /) -> None: ... method usedBits (line 2143) | def usedBits(self, /) -> int: ... method __bool__ (line 2144) | def __bool__(self) -> bool: ... method __copy__ (line 2145) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2146) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2147) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2148) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2149) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2150) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2151) | def __ne__(self, other: object) -> bool: ... class QSslConfiguration (line 2153) | class QSslConfiguration(shiboken6.Object): class NextProtocolNegotiationStatus (line 2154) | class NextProtocolNegotiationStatus(enum.Enum): method __init__ (line 2161) | def __init__(self, other: QSslConfiguration, /) -> None: ... method __init__ (line 2163) | def __init__(self, /) -> None: ... method addCaCertificate (line 2164) | def addCaCertificate(self, certificate: QSslCertificate | PySide6.QtCo... method addCaCertificates (line 2166) | def addCaCertificates(self, path: str, /, format: QSsl.EncodingFormat ... method addCaCertificates (line 2168) | def addCaCertificates(self, certificates: typing.Iterable[QSslCertific... method allowedNextProtocols (line 2169) | def allowedNextProtocols(self, /) -> List[PySide6.QtCore.QByteArray]: ... method backendConfiguration (line 2170) | def backendConfiguration(self, /) -> Dict[PySide6.QtCore.QByteArray, A... method caCertificates (line 2171) | def caCertificates(self, /) -> List[QSslCertificate]: ... method ciphers (line 2172) | def ciphers(self, /) -> List[QSslCipher]: ... method defaultConfiguration (line 2174) | def defaultConfiguration() -> QSslConfiguration: ... method defaultDtlsConfiguration (line 2176) | def defaultDtlsConfiguration() -> QSslConfiguration: ... method diffieHellmanParameters (line 2177) | def diffieHellmanParameters(self, /) -> QSslDiffieHellmanParameters: ... method dtlsCookieVerificationEnabled (line 2178) | def dtlsCookieVerificationEnabled(self, /) -> bool: ... method ellipticCurves (line 2179) | def ellipticCurves(self, /) -> List[QSslEllipticCurve]: ... method ephemeralServerKey (line 2180) | def ephemeralServerKey(self, /) -> QSslKey: ... method handshakeMustInterruptOnError (line 2181) | def handshakeMustInterruptOnError(self, /) -> bool: ... method isNull (line 2182) | def isNull(self, /) -> bool: ... method localCertificate (line 2183) | def localCertificate(self, /) -> QSslCertificate: ... method localCertificateChain (line 2184) | def localCertificateChain(self, /) -> List[QSslCertificate]: ... method missingCertificateIsFatal (line 2185) | def missingCertificateIsFatal(self, /) -> bool: ... method nextNegotiatedProtocol (line 2186) | def nextNegotiatedProtocol(self, /) -> PySide6.QtCore.QByteArray: ... method nextProtocolNegotiationStatus (line 2187) | def nextProtocolNegotiationStatus(self, /) -> QSslConfiguration.NextPr... method ocspStaplingEnabled (line 2188) | def ocspStaplingEnabled(self, /) -> bool: ... method peerCertificate (line 2189) | def peerCertificate(self, /) -> QSslCertificate: ... method peerCertificateChain (line 2190) | def peerCertificateChain(self, /) -> List[QSslCertificate]: ... method peerVerifyDepth (line 2191) | def peerVerifyDepth(self, /) -> int: ... method peerVerifyMode (line 2192) | def peerVerifyMode(self, /) -> QSslSocket.PeerVerifyMode: ... method preSharedKeyIdentityHint (line 2193) | def preSharedKeyIdentityHint(self, /) -> PySide6.QtCore.QByteArray: ... method privateKey (line 2194) | def privateKey(self, /) -> QSslKey: ... method protocol (line 2195) | def protocol(self, /) -> QSsl.SslProtocol: ... method sessionCipher (line 2196) | def sessionCipher(self, /) -> QSslCipher: ... method sessionProtocol (line 2197) | def sessionProtocol(self, /) -> QSsl.SslProtocol: ... method sessionTicket (line 2198) | def sessionTicket(self, /) -> PySide6.QtCore.QByteArray: ... method sessionTicketLifeTimeHint (line 2199) | def sessionTicketLifeTimeHint(self, /) -> int: ... method setAllowedNextProtocols (line 2200) | def setAllowedNextProtocols(self, protocols: typing.Iterable[PySide6.Q... method setBackendConfiguration (line 2201) | def setBackendConfiguration(self, /, backendConfiguration: Dict[PySide... method setBackendConfigurationOption (line 2202) | def setBackendConfigurationOption(self, name: PySide6.QtCore.QByteArra... method setCaCertificates (line 2203) | def setCaCertificates(self, certificates: typing.Iterable[QSslCertific... method setCiphers (line 2205) | def setCiphers(self, ciphers: str, /) -> None: ... method setCiphers (line 2207) | def setCiphers(self, ciphers: typing.Iterable[QSslCipher], /) -> None:... method setDefaultConfiguration (line 2209) | def setDefaultConfiguration(configuration: QSslConfiguration, /) -> No... method setDefaultDtlsConfiguration (line 2211) | def setDefaultDtlsConfiguration(configuration: QSslConfiguration, /) -... method setDiffieHellmanParameters (line 2212) | def setDiffieHellmanParameters(self, dhparams: QSslDiffieHellmanParame... method setDtlsCookieVerificationEnabled (line 2213) | def setDtlsCookieVerificationEnabled(self, enable: bool, /) -> None: ... method setEllipticCurves (line 2214) | def setEllipticCurves(self, curves: typing.Iterable[QSslEllipticCurve]... method setHandshakeMustInterruptOnError (line 2215) | def setHandshakeMustInterruptOnError(self, interrupt: bool, /) -> None... method setLocalCertificate (line 2216) | def setLocalCertificate(self, certificate: QSslCertificate | PySide6.Q... method setLocalCertificateChain (line 2217) | def setLocalCertificateChain(self, localChain: typing.Iterable[QSslCer... method setMissingCertificateIsFatal (line 2218) | def setMissingCertificateIsFatal(self, cannotRecover: bool, /) -> None... method setOcspStaplingEnabled (line 2219) | def setOcspStaplingEnabled(self, enable: bool, /) -> None: ... method setPeerVerifyDepth (line 2220) | def setPeerVerifyDepth(self, depth: int, /) -> None: ... method setPeerVerifyMode (line 2221) | def setPeerVerifyMode(self, mode: QSslSocket.PeerVerifyMode, /) -> Non... method setPreSharedKeyIdentityHint (line 2222) | def setPreSharedKeyIdentityHint(self, hint: PySide6.QtCore.QByteArray ... method setPrivateKey (line 2223) | def setPrivateKey(self, key: QSslKey | int, /) -> None: ... method setProtocol (line 2224) | def setProtocol(self, protocol: QSsl.SslProtocol, /) -> None: ... method setSessionTicket (line 2225) | def setSessionTicket(self, sessionTicket: PySide6.QtCore.QByteArray | ... method setSslOption (line 2226) | def setSslOption(self, option: QSsl.SslOption, on: bool, /) -> None: ... method supportedCiphers (line 2228) | def supportedCiphers() -> List[QSslCipher]: ... method supportedEllipticCurves (line 2230) | def supportedEllipticCurves() -> List[QSslEllipticCurve]: ... method swap (line 2231) | def swap(self, other: QSslConfiguration, /) -> None: ... method systemCaCertificates (line 2233) | def systemCaCertificates() -> List[QSslCertificate]: ... method testSslOption (line 2234) | def testSslOption(self, option: QSsl.SslOption, /) -> bool: ... method __bool__ (line 2235) | def __bool__(self) -> bool: ... method __copy__ (line 2236) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2237) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2238) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2239) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2240) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2241) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2242) | def __ne__(self, other: object) -> bool: ... class QSslDiffieHellmanParameters (line 2244) | class QSslDiffieHellmanParameters(shiboken6.Object): class Error (line 2245) | class Error(enum.Enum): method __init__ (line 2250) | def __init__(self, other: QSslDiffieHellmanParameters, /) -> None: ... method __init__ (line 2252) | def __init__(self, /) -> None: ... method defaultParameters (line 2254) | def defaultParameters() -> QSslDiffieHellmanParameters: ... method error (line 2255) | def error(self, /) -> QSslDiffieHellmanParameters.Error: ... method errorString (line 2256) | def errorString(self, /) -> str: ... method fromEncoded (line 2259) | def fromEncoded(encoded: PySide6.QtCore.QByteArray | bytes | bytearray... method fromEncoded (line 2262) | def fromEncoded(device: PySide6.QtCore.QIODevice, /, format: QSsl.Enco... method isEmpty (line 2263) | def isEmpty(self, /) -> bool: ... method isValid (line 2264) | def isValid(self, /) -> bool: ... method swap (line 2265) | def swap(self, other: QSslDiffieHellmanParameters, /) -> None: ... method __copy__ (line 2266) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2267) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2268) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2269) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2270) | def __hash__(self, /) -> int: ... method __le__ (line 2271) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2272) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2273) | def __ne__(self, other: object) -> bool: ... class QSslEllipticCurve (line 2275) | class QSslEllipticCurve(shiboken6.Object): method __init__ (line 2277) | def __init__(self, QSslEllipticCurve: QSslEllipticCurve, /) -> None: ... method __init__ (line 2279) | def __init__(self, /) -> None: ... method fromLongName (line 2281) | def fromLongName(name: str, /) -> QSslEllipticCurve: ... method fromShortName (line 2283) | def fromShortName(name: str, /) -> QSslEllipticCurve: ... method isTlsNamedCurve (line 2284) | def isTlsNamedCurve(self, /) -> bool: ... method isValid (line 2285) | def isValid(self, /) -> bool: ... method longName (line 2286) | def longName(self, /) -> str: ... method shortName (line 2287) | def shortName(self, /) -> str: ... method __copy__ (line 2288) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2289) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2290) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2291) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2292) | def __hash__(self, /) -> int: ... method __le__ (line 2293) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2294) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2295) | def __ne__(self, other: object) -> bool: ... class QSslError (line 2297) | class QSslError(shiboken6.Object): class SslError (line 2298) | class SslError(enum.Enum): method __init__ (line 2338) | def __init__(self, error: QSslError.SslError, certificate: QSslCertifi... method __init__ (line 2340) | def __init__(self, other: QSslError, /) -> None: ... method __init__ (line 2342) | def __init__(self, error: QSslError.SslError, /) -> None: ... method __init__ (line 2344) | def __init__(self, /) -> None: ... method certificate (line 2345) | def certificate(self, /) -> QSslCertificate: ... method error (line 2346) | def error(self, /) -> QSslError.SslError: ... method errorString (line 2347) | def errorString(self, /) -> str: ... method swap (line 2348) | def swap(self, other: QSslError, /) -> None: ... method __copy__ (line 2349) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2350) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2351) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2352) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 2353) | def __hash__(self, /) -> int: ... method __le__ (line 2354) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2355) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2356) | def __ne__(self, other: object) -> bool: ... class QSslKey (line 2358) | class QSslKey(shiboken6.Object): method __init__ (line 2360) | def __init__(self, encoded: PySide6.QtCore.QByteArray | bytes | bytear... method __init__ (line 2362) | def __init__(self, device: PySide6.QtCore.QIODevice, algorithm: QSsl.K... method __init__ (line 2364) | def __init__(self, handle: int, /, type: QSsl.KeyType = ...) -> None: ... method __init__ (line 2366) | def __init__(self, other: QSslKey, /) -> None: ... method __init__ (line 2368) | def __init__(self, /) -> None: ... method algorithm (line 2369) | def algorithm(self, /) -> QSsl.KeyAlgorithm: ... method clear (line 2370) | def clear(self, /) -> None: ... method handle (line 2371) | def handle(self, /) -> int: ... method isNull (line 2372) | def isNull(self, /) -> bool: ... method length (line 2373) | def length(self, /) -> int: ... method swap (line 2374) | def swap(self, other: QSslKey | int, /) -> None: ... method toDer (line 2375) | def toDer(self, /, passPhrase: PySide6.QtCore.QByteArray | bytes | byt... method toPem (line 2376) | def toPem(self, /, passPhrase: PySide6.QtCore.QByteArray | bytes | byt... method type (line 2377) | def type(self, /) -> QSsl.KeyType: ... method __bool__ (line 2378) | def __bool__(self) -> bool: ... method __copy__ (line 2379) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2380) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2381) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2382) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2383) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2384) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2385) | def __ne__(self, other: object) -> bool: ... class QSslPreSharedKeyAuthenticator (line 2387) | class QSslPreSharedKeyAuthenticator(shiboken6.Object): method __init__ (line 2389) | def __init__(self, authenticator: QSslPreSharedKeyAuthenticator, /) ->... method __init__ (line 2391) | def __init__(self, /) -> None: ... method identity (line 2392) | def identity(self, /) -> PySide6.QtCore.QByteArray: ... method identityHint (line 2393) | def identityHint(self, /) -> PySide6.QtCore.QByteArray: ... method maximumIdentityLength (line 2394) | def maximumIdentityLength(self, /) -> int: ... method maximumPreSharedKeyLength (line 2395) | def maximumPreSharedKeyLength(self, /) -> int: ... method preSharedKey (line 2396) | def preSharedKey(self, /) -> PySide6.QtCore.QByteArray: ... method setIdentity (line 2397) | def setIdentity(self, identity: PySide6.QtCore.QByteArray | bytes | by... method setPreSharedKey (line 2398) | def setPreSharedKey(self, preSharedKey: PySide6.QtCore.QByteArray | by... method swap (line 2399) | def swap(self, other: QSslPreSharedKeyAuthenticator, /) -> None: ... method __copy__ (line 2400) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 2401) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2402) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 2403) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2404) | def __le__(self, other: object) -> bool: ... method __lt__ (line 2405) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2406) | def __ne__(self, other: object) -> bool: ... class QSslServer (line 2408) | class QSslServer(QTcpServer): method __init__ (line 2418) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., acc... method handshakeTimeout (line 2419) | def handshakeTimeout(self, /) -> int: ... method incomingConnection (line 2420) | def incomingConnection(self, socket: int, /) -> None: ... method setHandshakeTimeout (line 2421) | def setHandshakeTimeout(self, timeout: int, /) -> None: ... method setSslConfiguration (line 2422) | def setSslConfiguration(self, sslConfiguration: QSslConfiguration, /) ... method sslConfiguration (line 2423) | def sslConfiguration(self, /) -> QSslConfiguration: ... class QSslSocket (line 2425) | class QSslSocket(QTcpSocket): class PeerVerifyMode (line 2426) | class PeerVerifyMode(enum.Enum): class SslMode (line 2432) | class SslMode(enum.Enum): method __init__ (line 2447) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method activeBackend (line 2449) | def activeBackend() -> str: ... method atEnd (line 2450) | def atEnd(self, /) -> bool: ... method availableBackends (line 2452) | def availableBackends() -> List[str]: ... method bytesAvailable (line 2453) | def bytesAvailable(self, /) -> int: ... method bytesToWrite (line 2454) | def bytesToWrite(self, /) -> int: ... method canReadLine (line 2455) | def canReadLine(self, /) -> bool: ... method close (line 2456) | def close(self, /) -> None: ... method connectToHost (line 2458) | def connectToHost(self, hostName: str, port: int, /, openMode: PySide6... method connectToHost (line 2460) | def connectToHost(self, address: QHostAddress | QHostAddress.SpecialAd... method connectToHostEncrypted (line 2462) | def connectToHostEncrypted(self, hostName: str, port: int, sslPeerName... method connectToHostEncrypted (line 2464) | def connectToHostEncrypted(self, hostName: str, port: int, /, mode: Py... method continueInterruptedHandshake (line 2465) | def continueInterruptedHandshake(self, /) -> None: ... method disconnectFromHost (line 2466) | def disconnectFromHost(self, /) -> None: ... method encryptedBytesAvailable (line 2467) | def encryptedBytesAvailable(self, /) -> int: ... method encryptedBytesToWrite (line 2468) | def encryptedBytesToWrite(self, /) -> int: ... method ignoreSslErrors (line 2470) | def ignoreSslErrors(self, errors: typing.Iterable[QSslError], /) -> No... method ignoreSslErrors (line 2472) | def ignoreSslErrors(self, /) -> None: ... method implementedClasses (line 2474) | def implementedClasses(backendName: str = ...) -> List[QSsl.Implemente... method isClassImplemented (line 2476) | def isClassImplemented(cl: QSsl.ImplementedClass, /, backendName: str ... method isEncrypted (line 2477) | def isEncrypted(self, /) -> bool: ... method isFeatureSupported (line 2479) | def isFeatureSupported(feat: QSsl.SupportedFeature, /, backendName: st... method isProtocolSupported (line 2481) | def isProtocolSupported(protocol: QSsl.SslProtocol, /, backendName: st... method localCertificate (line 2482) | def localCertificate(self, /) -> QSslCertificate: ... method localCertificateChain (line 2483) | def localCertificateChain(self, /) -> List[QSslCertificate]: ... method mode (line 2484) | def mode(self, /) -> QSslSocket.SslMode: ... method ocspResponses (line 2485) | def ocspResponses(self, /) -> List[QOcspResponse]: ... method peerCertificate (line 2486) | def peerCertificate(self, /) -> QSslCertificate: ... method peerCertificateChain (line 2487) | def peerCertificateChain(self, /) -> List[QSslCertificate]: ... method peerVerifyDepth (line 2488) | def peerVerifyDepth(self, /) -> int: ... method peerVerifyMode (line 2489) | def peerVerifyMode(self, /) -> QSslSocket.PeerVerifyMode: ... method peerVerifyName (line 2490) | def peerVerifyName(self, /) -> str: ... method privateKey (line 2491) | def privateKey(self, /) -> QSslKey: ... method protocol (line 2492) | def protocol(self, /) -> QSsl.SslProtocol: ... method readData (line 2493) | def readData(self, maxlen: int, /) -> typing.Any: ... method resume (line 2494) | def resume(self, /) -> None: ... method sessionCipher (line 2495) | def sessionCipher(self, /) -> QSslCipher: ... method sessionProtocol (line 2496) | def sessionProtocol(self, /) -> QSsl.SslProtocol: ... method setActiveBackend (line 2498) | def setActiveBackend(backendName: str, /) -> bool: ... method setLocalCertificate (line 2500) | def setLocalCertificate(self, fileName: str, /, format: QSsl.EncodingF... method setLocalCertificate (line 2502) | def setLocalCertificate(self, certificate: QSslCertificate | PySide6.Q... method setLocalCertificateChain (line 2503) | def setLocalCertificateChain(self, localChain: typing.Iterable[QSslCer... method setPeerVerifyDepth (line 2504) | def setPeerVerifyDepth(self, depth: int, /) -> None: ... method setPeerVerifyMode (line 2505) | def setPeerVerifyMode(self, mode: QSslSocket.PeerVerifyMode, /) -> Non... method setPeerVerifyName (line 2506) | def setPeerVerifyName(self, hostName: str, /) -> None: ... method setPrivateKey (line 2508) | def setPrivateKey(self, fileName: str, /, algorithm: QSsl.KeyAlgorithm... method setPrivateKey (line 2510) | def setPrivateKey(self, key: QSslKey | int, /) -> None: ... method setProtocol (line 2511) | def setProtocol(self, protocol: QSsl.SslProtocol, /) -> None: ... method setReadBufferSize (line 2512) | def setReadBufferSize(self, size: int, /) -> None: ... method setSocketDescriptor (line 2513) | def setSocketDescriptor(self, socketDescriptor: int, /, state: QAbstra... method setSocketOption (line 2514) | def setSocketOption(self, option: QAbstractSocket.SocketOption, value:... method setSslConfiguration (line 2515) | def setSslConfiguration(self, config: QSslConfiguration, /) -> None: ... method skipData (line 2516) | def skipData(self, maxSize: int, /) -> int: ... method socketOption (line 2517) | def socketOption(self, option: QAbstractSocket.SocketOption, /) -> Any... method sslConfiguration (line 2518) | def sslConfiguration(self, /) -> QSslConfiguration: ... method sslHandshakeErrors (line 2519) | def sslHandshakeErrors(self, /) -> List[QSslError]: ... method sslLibraryBuildVersionNumber (line 2521) | def sslLibraryBuildVersionNumber() -> int: ... method sslLibraryBuildVersionString (line 2523) | def sslLibraryBuildVersionString() -> str: ... method sslLibraryVersionNumber (line 2525) | def sslLibraryVersionNumber() -> int: ... method sslLibraryVersionString (line 2527) | def sslLibraryVersionString() -> str: ... method startClientEncryption (line 2528) | def startClientEncryption(self, /) -> None: ... method startServerEncryption (line 2529) | def startServerEncryption(self, /) -> None: ... method supportedFeatures (line 2531) | def supportedFeatures(backendName: str = ...) -> List[QSsl.SupportedFe... method supportedProtocols (line 2533) | def supportedProtocols(backendName: str = ...) -> List[QSsl.SslProtoco... method supportsSsl (line 2535) | def supportsSsl() -> bool: ... method waitForBytesWritten (line 2536) | def waitForBytesWritten(self, /, msecs: int = ...) -> bool: ... method waitForConnected (line 2537) | def waitForConnected(self, /, msecs: int = ...) -> bool: ... method waitForDisconnected (line 2538) | def waitForDisconnected(self, /, msecs: int = ...) -> bool: ... method waitForEncrypted (line 2539) | def waitForEncrypted(self, /, msecs: int = ...) -> bool: ... method waitForReadyRead (line 2540) | def waitForReadyRead(self, /, msecs: int = ...) -> bool: ... method writeData (line 2541) | def writeData(self, data: bytes | bytearray | memoryview, len: int, /)... class QTcpServer (line 2543) | class QTcpServer(PySide6.QtCore.QObject): method __init__ (line 2548) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., acc... method addPendingConnection (line 2549) | def addPendingConnection(self, socket: QTcpSocket, /) -> None: ... method close (line 2550) | def close(self, /) -> None: ... method errorString (line 2551) | def errorString(self, /) -> str: ... method hasPendingConnections (line 2552) | def hasPendingConnections(self, /) -> bool: ... method incomingConnection (line 2553) | def incomingConnection(self, handle: int, /) -> None: ... method isListening (line 2554) | def isListening(self, /) -> bool: ... method listen (line 2555) | def listen(self, /, address: QHostAddress | QHostAddress.SpecialAddres... method listenBacklogSize (line 2556) | def listenBacklogSize(self, /) -> int: ... method maxPendingConnections (line 2557) | def maxPendingConnections(self, /) -> int: ... method nextPendingConnection (line 2558) | def nextPendingConnection(self, /) -> QTcpSocket: ... method pauseAccepting (line 2559) | def pauseAccepting(self, /) -> None: ... method proxy (line 2560) | def proxy(self, /) -> QNetworkProxy: ... method resumeAccepting (line 2561) | def resumeAccepting(self, /) -> None: ... method serverAddress (line 2562) | def serverAddress(self, /) -> QHostAddress: ... method serverError (line 2563) | def serverError(self, /) -> QAbstractSocket.SocketError: ... method serverPort (line 2564) | def serverPort(self, /) -> int: ... method setListenBacklogSize (line 2565) | def setListenBacklogSize(self, size: int, /) -> None: ... method setMaxPendingConnections (line 2566) | def setMaxPendingConnections(self, numConnections: int, /) -> None: ... method setProxy (line 2567) | def setProxy(self, networkProxy: QNetworkProxy | QNetworkProxy.ProxyTy... method setSocketDescriptor (line 2568) | def setSocketDescriptor(self, socketDescriptor: int, /) -> bool: ... method socketDescriptor (line 2569) | def socketDescriptor(self, /) -> int: ... method waitForNewConnection (line 2570) | def waitForNewConnection(self, msec: int, /) -> Tuple[bool, bool]: ... class QTcpSocket (line 2572) | class QTcpSocket(QAbstractSocket): method __init__ (line 2574) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method bind (line 2576) | def bind(self, address: QHostAddress | QHostAddress.SpecialAddress, /,... method bind (line 2578) | def bind(self, addr: QHostAddress.SpecialAddress, /, port: int | None ... method bind (line 2580) | def bind(self, /, port: int | None = ..., mode: QAbstractSocket.BindFl... class QUdpSocket (line 2582) | class QUdpSocket(QAbstractSocket): method __init__ (line 2584) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., abo... method bind (line 2586) | def bind(self, address: QHostAddress | QHostAddress.SpecialAddress, /,... method bind (line 2588) | def bind(self, addr: QHostAddress.SpecialAddress, /, port: int | None ... method bind (line 2590) | def bind(self, /, port: int | None = ..., mode: QAbstractSocket.BindFl... method hasPendingDatagrams (line 2591) | def hasPendingDatagrams(self, /) -> bool: ... method joinMulticastGroup (line 2593) | def joinMulticastGroup(self, groupAddress: QHostAddress | QHostAddress... method joinMulticastGroup (line 2595) | def joinMulticastGroup(self, groupAddress: QHostAddress | QHostAddress... method leaveMulticastGroup (line 2597) | def leaveMulticastGroup(self, groupAddress: QHostAddress | QHostAddres... method leaveMulticastGroup (line 2599) | def leaveMulticastGroup(self, groupAddress: QHostAddress | QHostAddres... method multicastInterface (line 2600) | def multicastInterface(self, /) -> QNetworkInterface: ... method pendingDatagramSize (line 2601) | def pendingDatagramSize(self, /) -> int: ... method readDatagram (line 2602) | def readDatagram(self, maxlen: int, /) -> Tuple[PySide6.QtCore.QByteAr... method receiveDatagram (line 2603) | def receiveDatagram(self, /, maxSize: int = ...) -> QNetworkDatagram: ... method setMulticastInterface (line 2604) | def setMulticastInterface(self, iface: QNetworkInterface, /) -> None: ... method writeDatagram (line 2606) | def writeDatagram(self, datagram: PySide6.QtCore.QByteArray | bytes | ... method writeDatagram (line 2608) | def writeDatagram(self, datagram: QNetworkDatagram | PySide6.QtCore.QB... FILE: pyside6/stubs/PySide6-stubs/QtNetworkAuth.pyi class _add_QOAuth1Signature_plainText_overloads (line 14) | class _add_QOAuth1Signature_plainText_overloads: class StaticOverloads (line 21) | class StaticOverloads: class plainText (line 22) | class plainText: method __call__ (line 24) | def __call__(clientSharedSecret: str, tokenSecret: str, /) -> PySi... class InstanceOverloads (line 26) | class InstanceOverloads: class plainText (line 27) | class plainText: method __call__ (line 29) | def __call__(self, /) -> PySide6.QtCore.QByteArray: ... method __call__ (line 31) | def __call__(self, clientSharedSecret: str, tokenSecret: str, /) -... method __init__ (line 33) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 36) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 39) | def __get__(self, object: QOAuth1Signature, owner: typing.Any) -> Inst... class QAbstractOAuth (line 41) | class QAbstractOAuth(PySide6.QtCore.QObject): class ContentType (line 42) | class ContentType(enum.Enum): class Error (line 46) | class Error(enum.Enum): class Stage (line 56) | class Stage(enum.Enum): class Status (line 62) | class Status(enum.Enum): method __init__ (line 79) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method authorizationUrl (line 80) | def authorizationUrl(self, /) -> PySide6.QtCore.QUrl: ... method callback (line 81) | def callback(self, /) -> str: ... method clientIdentifier (line 82) | def clientIdentifier(self, /) -> str: ... method contentType (line 83) | def contentType(self, /) -> QAbstractOAuth.ContentType: ... method deleteResource (line 84) | def deleteResource(self, url: PySide6.QtCore.QUrl | str, /, parameters... method extraTokens (line 85) | def extraTokens(self, /) -> Dict[str, Any]: ... method generateRandomString (line 87) | def generateRandomString(length: int, /) -> PySide6.QtCore.QByteArray:... method get (line 88) | def get(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str,... method grant (line 89) | def grant(self, /) -> None: ... method head (line 90) | def head(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str... method networkAccessManager (line 91) | def networkAccessManager(self, /) -> PySide6.QtNetwork.QNetworkAccessM... method post (line 92) | def post(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str... method prepareRequest (line 93) | def prepareRequest(self, request: PySide6.QtNetwork.QNetworkRequest, v... method put (line 94) | def put(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str,... method replyHandler (line 95) | def replyHandler(self, /) -> QAbstractOAuthReplyHandler: ... method resourceOwnerAuthorization (line 96) | def resourceOwnerAuthorization(self, url: PySide6.QtCore.QUrl | str, p... method setAuthorizationUrl (line 97) | def setAuthorizationUrl(self, url: PySide6.QtCore.QUrl | str, /) -> No... method setClientIdentifier (line 98) | def setClientIdentifier(self, clientIdentifier: str, /) -> None: ... method setContentType (line 99) | def setContentType(self, contentType: QAbstractOAuth.ContentType, /) -... method setModifyParametersFunction (line 100) | def setModifyParametersFunction(self, modifyParametersFunction: object... method setNetworkAccessManager (line 101) | def setNetworkAccessManager(self, networkAccessManager: PySide6.QtNetw... method setReplyHandler (line 102) | def setReplyHandler(self, handler: QAbstractOAuthReplyHandler, /) -> N... method setStatus (line 103) | def setStatus(self, status: QAbstractOAuth.Status, /) -> None: ... method setToken (line 104) | def setToken(self, token: str, /) -> None: ... method status (line 105) | def status(self, /) -> QAbstractOAuth.Status: ... method token (line 106) | def token(self, /) -> str: ... class QAbstractOAuth2 (line 108) | class QAbstractOAuth2(QAbstractOAuth): class NonceMode (line 109) | class NonceMode(enum.Enum): method __init__ (line 135) | def __init__(self, manager: PySide6.QtNetwork.QNetworkAccessManager, /... method __init__ (line 137) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method autoRefresh (line 138) | def autoRefresh(self, /) -> bool: ... method clearNetworkRequestModifier (line 139) | def clearNetworkRequestModifier(self, /) -> None: ... method clientIdentifierSharedKey (line 140) | def clientIdentifierSharedKey(self, /) -> str: ... method createAuthenticatedUrl (line 141) | def createAuthenticatedUrl(self, url: PySide6.QtCore.QUrl | str, /, pa... method deleteResource (line 142) | def deleteResource(self, url: PySide6.QtCore.QUrl | str, /, parameters... method expirationAt (line 143) | def expirationAt(self, /) -> PySide6.QtCore.QDateTime: ... method get (line 144) | def get(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str,... method grantedScopeTokens (line 145) | def grantedScopeTokens(self, /) -> Set[PySide6.QtCore.QByteArray]: ... method head (line 146) | def head(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str... method idToken (line 147) | def idToken(self, /) -> str: ... method nonce (line 148) | def nonce(self, /) -> str: ... method nonceMode (line 149) | def nonceMode(self, /) -> QAbstractOAuth2.NonceMode: ... method post (line 151) | def post(self, url: PySide6.QtCore.QUrl | str, multiPart: PySide6.QtNe... method post (line 153) | def post(self, url: PySide6.QtCore.QUrl | str, data: PySide6.QtCore.QB... method post (line 155) | def post(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str... method prepareRequest (line 156) | def prepareRequest(self, request: PySide6.QtNetwork.QNetworkRequest, v... method put (line 158) | def put(self, url: PySide6.QtCore.QUrl | str, multiPart: PySide6.QtNet... method put (line 160) | def put(self, url: PySide6.QtCore.QUrl | str, data: PySide6.QtCore.QBy... method put (line 162) | def put(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str,... method refreshLeadTime (line 163) | def refreshLeadTime(self, /) -> int: ... method refreshToken (line 164) | def refreshToken(self, /) -> str: ... method refreshTokens (line 165) | def refreshTokens(self, /) -> None: ... method refreshTokensImplementation (line 166) | def refreshTokensImplementation(self, /) -> None: ... method requestedScopeTokens (line 167) | def requestedScopeTokens(self, /) -> Set[PySide6.QtCore.QByteArray]: ... method responseType (line 168) | def responseType(self, /) -> str: ... method scope (line 169) | def scope(self, /) -> str: ... method setAutoRefresh (line 170) | def setAutoRefresh(self, enable: bool, /) -> None: ... method setClientIdentifierSharedKey (line 171) | def setClientIdentifierSharedKey(self, clientIdentifierSharedKey: str,... method setNonce (line 172) | def setNonce(self, nonce: str, /) -> None: ... method setNonceMode (line 173) | def setNonceMode(self, mode: QAbstractOAuth2.NonceMode, /) -> None: ... method setRefreshLeadTime (line 174) | def setRefreshLeadTime(self, leadTime: int, /) -> None: ... method setRefreshToken (line 175) | def setRefreshToken(self, refreshToken: str, /) -> None: ... method setRequestedScopeTokens (line 176) | def setRequestedScopeTokens(self, tokens: Set[PySide6.QtCore.QByteArra... method setResponseType (line 177) | def setResponseType(self, responseType: str, /) -> None: ... method setScope (line 178) | def setScope(self, scope: str, /) -> None: ... method setSslConfiguration (line 179) | def setSslConfiguration(self, configuration: PySide6.QtNetwork.QSslCon... method setState (line 180) | def setState(self, state: str, /) -> None: ... method setTokenUrl (line 181) | def setTokenUrl(self, tokenUrl: PySide6.QtCore.QUrl | str, /) -> None:... method setUserAgent (line 182) | def setUserAgent(self, userAgent: str, /) -> None: ... method sslConfiguration (line 183) | def sslConfiguration(self, /) -> PySide6.QtNetwork.QSslConfiguration: ... method state (line 184) | def state(self, /) -> str: ... method tokenUrl (line 185) | def tokenUrl(self, /) -> PySide6.QtCore.QUrl: ... method userAgent (line 186) | def userAgent(self, /) -> str: ... class QAbstractOAuthReplyHandler (line 188) | class QAbstractOAuthReplyHandler(PySide6.QtCore.QObject): method __init__ (line 195) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method callback (line 196) | def callback(self, /) -> str: ... method networkReplyFinished (line 197) | def networkReplyFinished(self, reply: PySide6.QtNetwork.QNetworkReply,... class QIntList (line 199) | class QIntList: method __init__ (line 201) | def __init__(self, *args, **kwargs) -> None: ... method append (line 202) | def append(self, *args, **kwargs): ... method capacity (line 203) | def capacity(self, *args, **kwargs): ... method clear (line 204) | def clear(self, *args, **kwargs): ... method constData (line 205) | def constData(self, *args, **kwargs): ... method data (line 206) | def data(self, *args, **kwargs): ... method pop_back (line 207) | def pop_back(self, *args, **kwargs): ... method pop_front (line 208) | def pop_front(self, *args, **kwargs): ... method prepend (line 209) | def prepend(self, *args, **kwargs): ... method push_back (line 210) | def push_back(self, *args, **kwargs): ... method push_front (line 211) | def push_front(self, *args, **kwargs): ... method removeFirst (line 212) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 213) | def removeLast(self, *args, **kwargs): ... method reserve (line 214) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 215) | def __delitem__(self, other) -> None: ... method __getitem__ (line 216) | def __getitem__(self, index): ... method __len__ (line 217) | def __len__(self) -> int: ... method __setitem__ (line 218) | def __setitem__(self, index, object) -> None: ... class QOAuth1 (line 220) | class QOAuth1(QAbstractOAuth): class SignatureMethod (line 221) | class SignatureMethod(enum.Enum): method __init__ (line 232) | def __init__(self, clientIdentifier: str, clientSharedSecret: str, man... method __init__ (line 234) | def __init__(self, manager: PySide6.QtNetwork.QNetworkAccessManager, /... method __init__ (line 236) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., aut... method clientCredentials (line 237) | def clientCredentials(self, /) -> Tuple[str, str]: ... method clientSharedSecret (line 238) | def clientSharedSecret(self, /) -> str: ... method continueGrantWithVerifier (line 239) | def continueGrantWithVerifier(self, verifier: str, /) -> None: ... method deleteResource (line 240) | def deleteResource(self, url: PySide6.QtCore.QUrl | str, /, parameters... method generateAuthorizationHeader (line 242) | def generateAuthorizationHeader(oauthParams: Dict[str, Any], /) -> PyS... method get (line 243) | def get(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str,... method grant (line 244) | def grant(self, /) -> None: ... method head (line 245) | def head(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str... method nonce (line 247) | def nonce() -> PySide6.QtCore.QByteArray: ... method post (line 248) | def post(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str... method prepareRequest (line 249) | def prepareRequest(self, request: PySide6.QtNetwork.QNetworkRequest, v... method put (line 250) | def put(self, url: PySide6.QtCore.QUrl | str, /, parameters: Dict[str,... method requestTemporaryCredentials (line 251) | def requestTemporaryCredentials(self, operation: PySide6.QtNetwork.QNe... method requestTokenCredentials (line 252) | def requestTokenCredentials(self, operation: PySide6.QtNetwork.QNetwor... method setClientCredentials (line 254) | def setClientCredentials(self, clientIdentifier: str, clientSharedSecr... method setClientCredentials (line 256) | def setClientCredentials(self, clientCredentials: Tuple[str, str], /) ... method setClientSharedSecret (line 257) | def setClientSharedSecret(self, clientSharedSecret: str, /) -> None: ... method setSignatureMethod (line 258) | def setSignatureMethod(self, value: QOAuth1.SignatureMethod, /) -> Non... method setTemporaryCredentialsUrl (line 259) | def setTemporaryCredentialsUrl(self, url: PySide6.QtCore.QUrl | str, /... method setTokenCredentials (line 261) | def setTokenCredentials(self, token: str, tokenSecret: str, /) -> None... method setTokenCredentials (line 263) | def setTokenCredentials(self, tokenCredentials: Tuple[str, str], /) ->... method setTokenCredentialsUrl (line 264) | def setTokenCredentialsUrl(self, url: PySide6.QtCore.QUrl | str, /) ->... method setTokenSecret (line 265) | def setTokenSecret(self, tokenSecret: str, /) -> None: ... method setup (line 267) | def setup(self, request: PySide6.QtNetwork.QNetworkRequest, signingPar... method setup (line 269) | def setup(self, request: PySide6.QtNetwork.QNetworkRequest, signingPar... method signatureMethod (line 270) | def signatureMethod(self, /) -> QOAuth1.SignatureMethod: ... method temporaryCredentialsUrl (line 271) | def temporaryCredentialsUrl(self, /) -> PySide6.QtCore.QUrl: ... method tokenCredentials (line 272) | def tokenCredentials(self, /) -> Tuple[str, str]: ... method tokenCredentialsUrl (line 273) | def tokenCredentialsUrl(self, /) -> PySide6.QtCore.QUrl: ... method tokenSecret (line 274) | def tokenSecret(self, /) -> str: ... class QOAuth1Signature (line 276) | class QOAuth1Signature(shiboken6.Object): class HttpRequestMethod (line 277) | class HttpRequestMethod(enum.Enum): method __init__ (line 286) | def __init__(self, url: PySide6.QtCore.QUrl | str, clientSharedKey: st... method __init__ (line 288) | def __init__(self, /, url: PySide6.QtCore.QUrl | str = ..., method: QO... method __init__ (line 290) | def __init__(self, other: QOAuth1Signature, /) -> None: ... method addRequestBody (line 291) | def addRequestBody(self, body: PySide6.QtCore.QUrlQuery, /) -> None: ... method clientSharedKey (line 292) | def clientSharedKey(self, /) -> str: ... method customMethodString (line 293) | def customMethodString(self, /) -> PySide6.QtCore.QByteArray: ... method hmacSha1 (line 294) | def hmacSha1(self, /) -> PySide6.QtCore.QByteArray: ... method httpRequestMethod (line 295) | def httpRequestMethod(self, /) -> QOAuth1Signature.HttpRequestMethod: ... method insert (line 296) | def insert(self, key: str, value: Any, /) -> None: ... method keys (line 297) | def keys(self, /) -> List[str]: ... method parameters (line 298) | def parameters(self, /) -> Dict[str, Any]: ... method plainText (line 300) | def plainText(self) -> typing.Any: ... method rsaSha1 (line 301) | def rsaSha1(self, /) -> PySide6.QtCore.QByteArray: ... method setClientSharedKey (line 302) | def setClientSharedKey(self, secret: str, /) -> None: ... method setCustomMethodString (line 303) | def setCustomMethodString(self, verb: PySide6.QtCore.QByteArray | byte... method setHttpRequestMethod (line 304) | def setHttpRequestMethod(self, method: QOAuth1Signature.HttpRequestMet... method setParameters (line 305) | def setParameters(self, parameters: Dict[str, Any], /) -> None: ... method setTokenSecret (line 306) | def setTokenSecret(self, secret: str, /) -> None: ... method setUrl (line 307) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method swap (line 308) | def swap(self, other: QOAuth1Signature, /) -> None: ... method take (line 309) | def take(self, key: str, /) -> Any: ... method tokenSecret (line 310) | def tokenSecret(self, /) -> str: ... method url (line 311) | def url(self, /) -> PySide6.QtCore.QUrl: ... method value (line 312) | def value(self, key: str, /, defaultValue: Any = ...) -> Any: ... method __copy__ (line 313) | def __copy__(self, /) -> typing_extensions.Self: ... class QOAuth2AuthorizationCodeFlow (line 315) | class QOAuth2AuthorizationCodeFlow(QAbstractOAuth2): class PkceMethod (line 316) | class PkceMethod(enum.Enum): method __init__ (line 323) | def __init__(self, manager: PySide6.QtNetwork.QNetworkAccessManager, /... method __init__ (line 325) | def __init__(self, clientIdentifier: str, manager: PySide6.QtNetwork.Q... method __init__ (line 327) | def __init__(self, clientIdentifier: str, authorizationUrl: PySide6.Qt... method __init__ (line 329) | def __init__(self, authorizationUrl: PySide6.QtCore.QUrl | str, access... method __init__ (line 331) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method accessTokenUrl (line 332) | def accessTokenUrl(self, /) -> PySide6.QtCore.QUrl: ... method buildAuthenticateUrl (line 333) | def buildAuthenticateUrl(self, /, parameters: Dict[str, Any] = ...) ->... method grant (line 334) | def grant(self, /) -> None: ... method pkceMethod (line 335) | def pkceMethod(self, /) -> QOAuth2AuthorizationCodeFlow.PkceMethod: ... method refreshAccessToken (line 336) | def refreshAccessToken(self, /) -> None: ... method refreshTokensImplementation (line 337) | def refreshTokensImplementation(self, /) -> None: ... method requestAccessToken (line 338) | def requestAccessToken(self, code: str, /) -> None: ... method resourceOwnerAuthorization (line 339) | def resourceOwnerAuthorization(self, url: PySide6.QtCore.QUrl | str, /... method setAccessTokenUrl (line 340) | def setAccessTokenUrl(self, accessTokenUrl: PySide6.QtCore.QUrl | str,... method setPkceMethod (line 341) | def setPkceMethod(self, method: QOAuth2AuthorizationCodeFlow.PkceMetho... class QOAuth2DeviceAuthorizationFlow (line 343) | class QOAuth2DeviceAuthorizationFlow(QAbstractOAuth2): method __init__ (line 352) | def __init__(self, manager: PySide6.QtNetwork.QNetworkAccessManager, /... method __init__ (line 354) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, userCo... method __init__ (line 356) | def __init__(self, /, *, userCode: str | None = ..., verificationUrl: ... method completeVerificationUrl (line 357) | def completeVerificationUrl(self, /) -> PySide6.QtCore.QUrl: ... method event (line 358) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method grant (line 359) | def grant(self, /) -> None: ... method isPolling (line 360) | def isPolling(self, /) -> bool: ... method refreshTokensImplementation (line 361) | def refreshTokensImplementation(self, /) -> None: ... method startTokenPolling (line 362) | def startTokenPolling(self, /) -> bool: ... method stopTokenPolling (line 363) | def stopTokenPolling(self, /) -> None: ... method userCode (line 364) | def userCode(self, /) -> str: ... method userCodeExpirationAt (line 365) | def userCodeExpirationAt(self, /) -> PySide6.QtCore.QDateTime: ... method verificationUrl (line 366) | def verificationUrl(self, /) -> PySide6.QtCore.QUrl: ... class QOAuthHttpServerReplyHandler (line 368) | class QOAuthHttpServerReplyHandler(QOAuthOobReplyHandler): method __init__ (line 371) | def __init__(self, address: PySide6.QtNetwork.QHostAddress | PySide6.Q... method __init__ (line 373) | def __init__(self, port: int, /, parent: PySide6.QtCore.QObject | None... method __init__ (line 375) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., cal... method callback (line 376) | def callback(self, /) -> str: ... method callbackHost (line 377) | def callbackHost(self, /) -> str: ... method callbackPath (line 378) | def callbackPath(self, /) -> str: ... method callbackText (line 379) | def callbackText(self, /) -> str: ... method close (line 380) | def close(self, /) -> None: ... method isListening (line 381) | def isListening(self, /) -> bool: ... method listen (line 383) | def listen(self, configuration: PySide6.QtNetwork.QSslConfiguration, /... method listen (line 385) | def listen(self, /, address: PySide6.QtNetwork.QHostAddress | PySide6.... method port (line 386) | def port(self, /) -> int: ... method setCallbackHost (line 387) | def setCallbackHost(self, path: str, /) -> None: ... method setCallbackPath (line 388) | def setCallbackPath(self, path: str, /) -> None: ... method setCallbackText (line 389) | def setCallbackText(self, text: str, /) -> None: ... class QOAuthOobReplyHandler (line 391) | class QOAuthOobReplyHandler(QAbstractOAuthReplyHandler): method __init__ (line 393) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., cal... method callback (line 394) | def callback(self, /) -> str: ... method networkReplyFinished (line 395) | def networkReplyFinished(self, reply: PySide6.QtNetwork.QNetworkReply,... class QOAuthUriSchemeReplyHandler (line 397) | class QOAuthUriSchemeReplyHandler(QOAuthOobReplyHandler): method __init__ (line 401) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, redire... method __init__ (line 403) | def __init__(self, redirectUrl: PySide6.QtCore.QUrl | str, /, parent: ... method __init__ (line 405) | def __init__(self, /, *, redirectUrl: PySide6.QtCore.QUrl | None = ...... method callback (line 406) | def callback(self, /) -> str: ... method close (line 407) | def close(self, /) -> None: ... method handleAuthorizationRedirect (line 408) | def handleAuthorizationRedirect(self, url: PySide6.QtCore.QUrl | str, ... method isListening (line 409) | def isListening(self, /) -> bool: ... method listen (line 410) | def listen(self, /) -> bool: ... method redirectUrl (line 411) | def redirectUrl(self, /) -> PySide6.QtCore.QUrl: ... method setRedirectUrl (line 412) | def setRedirectUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtNfc.pyi class QIntList (line 9) | class QIntList: method __init__ (line 11) | def __init__(self, *args, **kwargs) -> None: ... method append (line 12) | def append(self, *args, **kwargs): ... method capacity (line 13) | def capacity(self, *args, **kwargs): ... method clear (line 14) | def clear(self, *args, **kwargs): ... method constData (line 15) | def constData(self, *args, **kwargs): ... method data (line 16) | def data(self, *args, **kwargs): ... method pop_back (line 17) | def pop_back(self, *args, **kwargs): ... method pop_front (line 18) | def pop_front(self, *args, **kwargs): ... method prepend (line 19) | def prepend(self, *args, **kwargs): ... method push_back (line 20) | def push_back(self, *args, **kwargs): ... method push_front (line 21) | def push_front(self, *args, **kwargs): ... method removeFirst (line 22) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 23) | def removeLast(self, *args, **kwargs): ... method reserve (line 24) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 25) | def __delitem__(self, other) -> None: ... method __getitem__ (line 26) | def __getitem__(self, index): ... method __len__ (line 27) | def __len__(self) -> int: ... method __setitem__ (line 28) | def __setitem__(self, index, object) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtOpenGL.pyi class _add_QOpenGLBuffer_release_overloads (line 13) | class _add_QOpenGLBuffer_release_overloads: class StaticOverloads (line 20) | class StaticOverloads: class release (line 21) | class release: method __call__ (line 23) | def __call__(type: QOpenGLBuffer.Type, /) -> None: ... class InstanceOverloads (line 25) | class InstanceOverloads: class release (line 26) | class release: method __call__ (line 28) | def __call__(self, /) -> None: ... method __call__ (line 30) | def __call__(self, type: QOpenGLBuffer.Type, /) -> None: ... method __init__ (line 32) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 35) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 38) | def __get__(self, object: QOpenGLBuffer, owner: typing.Any) -> Instanc... class QAbstractOpenGLFunctions (line 40) | class QAbstractOpenGLFunctions(shiboken6.Object): method __init__ (line 41) | def __init__(self, /) -> None: ... method initializeOpenGLFunctions (line 42) | def initializeOpenGLFunctions(self, /) -> bool: ... method isInitialized (line 43) | def isInitialized(self, /) -> bool: ... method owningContext (line 44) | def owningContext(self, /) -> PySide6.QtGui.QOpenGLContext: ... method setOwningContext (line 45) | def setOwningContext(self, context: PySide6.QtGui.QOpenGLContext, /) -... class QIntList (line 47) | class QIntList: method __init__ (line 49) | def __init__(self, *args, **kwargs) -> None: ... method append (line 50) | def append(self, *args, **kwargs): ... method capacity (line 51) | def capacity(self, *args, **kwargs): ... method clear (line 52) | def clear(self, *args, **kwargs): ... method constData (line 53) | def constData(self, *args, **kwargs): ... method data (line 54) | def data(self, *args, **kwargs): ... method pop_back (line 55) | def pop_back(self, *args, **kwargs): ... method pop_front (line 56) | def pop_front(self, *args, **kwargs): ... method prepend (line 57) | def prepend(self, *args, **kwargs): ... method push_back (line 58) | def push_back(self, *args, **kwargs): ... method push_front (line 59) | def push_front(self, *args, **kwargs): ... method removeFirst (line 60) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 61) | def removeLast(self, *args, **kwargs): ... method reserve (line 62) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 63) | def __delitem__(self, other) -> None: ... method __getitem__ (line 64) | def __getitem__(self, index): ... method __len__ (line 65) | def __len__(self) -> int: ... method __setitem__ (line 66) | def __setitem__(self, index, object) -> None: ... class QOpenGLBuffer (line 68) | class QOpenGLBuffer(shiboken6.Object): class Access (line 69) | class Access(enum.Enum): class RangeAccessFlag (line 74) | class RangeAccessFlag(enum.Flag): class Type (line 82) | class Type(enum.Enum): class UsagePattern (line 88) | class UsagePattern(enum.Enum): method __init__ (line 99) | def __init__(self, type: QOpenGLBuffer.Type, /) -> None: ... method __init__ (line 101) | def __init__(self, other: QOpenGLBuffer, /) -> None: ... method __init__ (line 103) | def __init__(self, /) -> None: ... method allocate (line 105) | def allocate(self, data: bytes, count: int, /) -> None: ... method allocate (line 107) | def allocate(self, count: int, /) -> None: ... method bind (line 108) | def bind(self, /) -> bool: ... method bufferId (line 109) | def bufferId(self, /) -> int: ... method create (line 110) | def create(self, /) -> bool: ... method destroy (line 111) | def destroy(self, /) -> None: ... method isCreated (line 112) | def isCreated(self, /) -> bool: ... method map (line 113) | def map(self, access: QOpenGLBuffer.Access, /) -> int: ... method mapRange (line 114) | def mapRange(self, offset: int, count: int, access: QOpenGLBuffer.Rang... method read (line 115) | def read(self, offset: int, data: int, count: int, /) -> bool: ... method release (line 117) | def release(self) -> typing.Any: ... method setUsagePattern (line 118) | def setUsagePattern(self, value: QOpenGLBuffer.UsagePattern, /) -> Non... method size (line 119) | def size(self, /) -> int: ... method swap (line 120) | def swap(self, other: QOpenGLBuffer, /) -> None: ... method type (line 121) | def type(self, /) -> QOpenGLBuffer.Type: ... method unmap (line 122) | def unmap(self, /) -> bool: ... method usagePattern (line 123) | def usagePattern(self, /) -> QOpenGLBuffer.UsagePattern: ... method write (line 124) | def write(self, offset: int, data: int, count: int, /) -> None: ... class QOpenGLDebugLogger (line 126) | class QOpenGLDebugLogger(PySide6.QtCore.QObject): class LoggingMode (line 127) | class LoggingMode(enum.Enum): method __init__ (line 132) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method disableMessages (line 134) | def disableMessages(self, ids: typing.Iterable[int], /, sources: QOpen... method disableMessages (line 136) | def disableMessages(self, /, sources: QOpenGLDebugMessage.Source = ...... method enableMessages (line 138) | def enableMessages(self, ids: typing.Iterable[int], /, sources: QOpenG... method enableMessages (line 140) | def enableMessages(self, /, sources: QOpenGLDebugMessage.Source = ...,... method initialize (line 141) | def initialize(self, /) -> bool: ... method isLogging (line 142) | def isLogging(self, /) -> bool: ... method logMessage (line 143) | def logMessage(self, debugMessage: QOpenGLDebugMessage, /) -> None: ... method loggedMessages (line 144) | def loggedMessages(self, /) -> List[QOpenGLDebugMessage]: ... method loggingMode (line 145) | def loggingMode(self, /) -> QOpenGLDebugLogger.LoggingMode: ... method maximumMessageLength (line 146) | def maximumMessageLength(self, /) -> int: ... method popGroup (line 147) | def popGroup(self, /) -> None: ... method pushGroup (line 148) | def pushGroup(self, name: str, /, id: int | None = ..., source: QOpenG... method startLogging (line 149) | def startLogging(self, /, loggingMode: QOpenGLDebugLogger.LoggingMode ... method stopLogging (line 150) | def stopLogging(self, /) -> None: ... class QOpenGLDebugMessage (line 152) | class QOpenGLDebugMessage(shiboken6.Object): class Severity (line 153) | class Severity(enum.Flag): class Source (line 162) | class Source(enum.Flag): class Type (line 173) | class Type(enum.Flag): method __init__ (line 187) | def __init__(self, debugMessage: QOpenGLDebugMessage, /) -> None: ... method __init__ (line 189) | def __init__(self, /) -> None: ... method createApplicationMessage (line 191) | def createApplicationMessage(text: str, /, id: int | None = ..., sever... method createThirdPartyMessage (line 193) | def createThirdPartyMessage(text: str, /, id: int | None = ..., severi... method id (line 194) | def id(self, /) -> int: ... method message (line 195) | def message(self, /) -> str: ... method severity (line 196) | def severity(self, /) -> QOpenGLDebugMessage.Severity: ... method source (line 197) | def source(self, /) -> QOpenGLDebugMessage.Source: ... method swap (line 198) | def swap(self, other: QOpenGLDebugMessage, /) -> None: ... method type (line 199) | def type(self, /) -> QOpenGLDebugMessage.Type: ... method __copy__ (line 200) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 201) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 202) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 203) | def __gt__(self, other: object) -> bool: ... method __le__ (line 204) | def __le__(self, other: object) -> bool: ... method __lt__ (line 205) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 206) | def __ne__(self, other: object) -> bool: ... class QOpenGLFramebufferObject (line 208) | class QOpenGLFramebufferObject(shiboken6.Object): class Attachment (line 209) | class Attachment(enum.Enum): class FramebufferRestorePolicy (line 214) | class FramebufferRestorePolicy(enum.Enum): method __init__ (line 219) | def __init__(self, width: int, height: int, attachment: QOpenGLFramebu... method __init__ (line 221) | def __init__(self, size: PySide6.QtCore.QSize, attachment: QOpenGLFram... method __init__ (line 223) | def __init__(self, width: int, height: int, format: QOpenGLFramebuffer... method __init__ (line 225) | def __init__(self, width: int, height: int, /, target: int = ...) -> N... method __init__ (line 227) | def __init__(self, size: PySide6.QtCore.QSize, format: QOpenGLFramebuf... method __init__ (line 229) | def __init__(self, size: PySide6.QtCore.QSize, /, target: int = ...) -... method addColorAttachment (line 231) | def addColorAttachment(self, width: int, height: int, /, internalForma... method addColorAttachment (line 233) | def addColorAttachment(self, size: PySide6.QtCore.QSize, /, internalFo... method attachment (line 234) | def attachment(self, /) -> QOpenGLFramebufferObject.Attachment: ... method bind (line 235) | def bind(self, /) -> bool: ... method bindDefault (line 237) | def bindDefault() -> bool: ... method blitFramebuffer (line 240) | def blitFramebuffer(target: QOpenGLFramebufferObject, targetRect: PySi... method blitFramebuffer (line 243) | def blitFramebuffer(target: QOpenGLFramebufferObject, targetRect: PySi... method blitFramebuffer (line 246) | def blitFramebuffer(target: QOpenGLFramebufferObject, targetRect: PySi... method blitFramebuffer (line 249) | def blitFramebuffer(target: QOpenGLFramebufferObject, source: QOpenGLF... method format (line 250) | def format(self, /) -> QOpenGLFramebufferObjectFormat: ... method handle (line 251) | def handle(self, /) -> int: ... method hasOpenGLFramebufferBlit (line 253) | def hasOpenGLFramebufferBlit() -> bool: ... method hasOpenGLFramebufferObjects (line 255) | def hasOpenGLFramebufferObjects() -> bool: ... method height (line 256) | def height(self, /) -> int: ... method isBound (line 257) | def isBound(self, /) -> bool: ... method isValid (line 258) | def isValid(self, /) -> bool: ... method release (line 259) | def release(self, /) -> bool: ... method setAttachment (line 260) | def setAttachment(self, attachment: QOpenGLFramebufferObject.Attachmen... method size (line 261) | def size(self, /) -> PySide6.QtCore.QSize: ... method sizes (line 262) | def sizes(self, /) -> List[PySide6.QtCore.QSize]: ... method takeTexture (line 264) | def takeTexture(self, colorAttachmentIndex: int, /) -> int: ... method takeTexture (line 266) | def takeTexture(self, /) -> int: ... method texture (line 267) | def texture(self, /) -> int: ... method textures (line 268) | def textures(self, /) -> List[int]: ... method toImage (line 270) | def toImage(self, flipped: bool, colorAttachmentIndex: int, /) -> PySi... method toImage (line 272) | def toImage(self, /, flipped: bool = ...) -> PySide6.QtGui.QImage: ... method width (line 273) | def width(self, /) -> int: ... class QOpenGLFramebufferObjectFormat (line 275) | class QOpenGLFramebufferObjectFormat(shiboken6.Object): method __init__ (line 277) | def __init__(self, other: QOpenGLFramebufferObjectFormat, /) -> None: ... method __init__ (line 279) | def __init__(self, /) -> None: ... method attachment (line 280) | def attachment(self, /) -> QOpenGLFramebufferObject.Attachment: ... method internalTextureFormat (line 281) | def internalTextureFormat(self, /) -> int: ... method mipmap (line 282) | def mipmap(self, /) -> bool: ... method samples (line 283) | def samples(self, /) -> int: ... method setAttachment (line 284) | def setAttachment(self, attachment: QOpenGLFramebufferObject.Attachmen... method setInternalTextureFormat (line 285) | def setInternalTextureFormat(self, internalTextureFormat: int, /) -> N... method setMipmap (line 286) | def setMipmap(self, enabled: bool, /) -> None: ... method setSamples (line 287) | def setSamples(self, samples: int, /) -> None: ... method setTextureTarget (line 288) | def setTextureTarget(self, target: int, /) -> None: ... method textureTarget (line 289) | def textureTarget(self, /) -> int: ... method __copy__ (line 290) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 291) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 292) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 293) | def __gt__(self, other: object) -> bool: ... method __le__ (line 294) | def __le__(self, other: object) -> bool: ... method __lt__ (line 295) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 296) | def __ne__(self, other: object) -> bool: ... class QOpenGLFunctions_1_0 (line 298) | class QOpenGLFunctions_1_0(QAbstractOpenGLFunctions): method __init__ (line 299) | def __init__(self, /) -> None: ... method glAccum (line 300) | def glAccum(self, op: int, value: float, /) -> None: ... method glAlphaFunc (line 301) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glBegin (line 302) | def glBegin(self, mode: int, /) -> None: ... method glBlendFunc (line 303) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glCallList (line 304) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 305) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 306) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 307) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 308) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 309) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 310) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 311) | def glClearStencil(self, s: int, /) -> None: ... method glClipPlane (line 312) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 313) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 314) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 315) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 316) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 317) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 318) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 319) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 320) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 321) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 322) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 323) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 324) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 325) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 326) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 327) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 328) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 329) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 330) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 331) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 332) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 333) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 334) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 335) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 336) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 337) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 338) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 339) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 340) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 341) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 342) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 343) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 344) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 345) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 346) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glCopyPixels (line 347) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCullFace (line 348) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteLists (line 349) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDepthFunc (line 350) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 351) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 352) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDisable (line 353) | def glDisable(self, cap: int, /) -> None: ... method glDrawBuffer (line 354) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawPixels (line 355) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glEdgeFlag (line 356) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEnable (line 357) | def glEnable(self, cap: int, /) -> None: ... method glEnd (line 358) | def glEnd(self, /) -> None: ... method glEndList (line 359) | def glEndList(self, /) -> None: ... method glEvalCoord1d (line 360) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 361) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 362) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 363) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 364) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 365) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 366) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 367) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 368) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 369) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 370) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 371) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 372) | def glFinish(self, /) -> None: ... method glFlush (line 373) | def glFlush(self, /) -> None: ... method glFogf (line 374) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 375) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 376) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 377) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 378) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 379) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 380) | def glGenLists(self, range: int, /) -> int: ... method glGetBooleanv (line 381) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetDoublev (line 382) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 383) | def glGetError(self, /) -> int: ... method glGetFloatv (line 384) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetIntegerv (line 385) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 386) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 387) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glHint (line 388) | def glHint(self, target: int, mode: int, /) -> None: ... method glIndexMask (line 389) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexd (line 390) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 391) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 392) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 393) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 394) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 395) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 396) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 397) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 398) | def glInitNames(self, /) -> None: ... method glIsEnabled (line 399) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 400) | def glIsList(self, list: int, /) -> int: ... method glLightModelf (line 401) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 402) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 403) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 404) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 405) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 406) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 407) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 408) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 409) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 410) | def glLineWidth(self, width: float, /) -> None: ... method glListBase (line 411) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 412) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 413) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 414) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 415) | def glLoadName(self, name: int, /) -> None: ... method glLogicOp (line 416) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 417) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 418) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 419) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 420) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 421) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 422) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 423) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 424) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 425) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 426) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 427) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 428) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 429) | def glMatrixMode(self, mode: int, /) -> None: ... method glMultMatrixd (line 430) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 431) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glNewList (line 432) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 433) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 434) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 435) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 436) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 437) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 438) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 439) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 440) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 441) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 442) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glOrtho (line 443) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 444) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 445) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 446) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 447) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 448) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 449) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 450) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 451) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 452) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointSize (line 453) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 454) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPopAttrib (line 455) | def glPopAttrib(self, /) -> None: ... method glPopMatrix (line 456) | def glPopMatrix(self, /) -> None: ... method glPopName (line 457) | def glPopName(self, /) -> None: ... method glPushAttrib (line 458) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 459) | def glPushMatrix(self, /) -> None: ... method glPushName (line 460) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 461) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 462) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 463) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 464) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 465) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 466) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 467) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 468) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 469) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 470) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 471) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 472) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 473) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 474) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 475) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 476) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 477) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 478) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 479) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 480) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 481) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 482) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 483) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 484) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 485) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 486) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 487) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 488) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 489) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 490) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 491) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 492) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 493) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 494) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 495) | def glRenderMode(self, mode: int, /) -> int: ... method glRotated (line 496) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 497) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glScaled (line 498) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 499) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 500) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glShadeModel (line 501) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 502) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilMask (line 503) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilOp (line 504) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glTexCoord1d (line 505) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 506) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 507) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 508) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 509) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 510) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 511) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 512) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 513) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 514) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 515) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 516) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 517) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 518) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 519) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 520) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 521) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 522) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 523) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 524) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 525) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 526) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 527) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 528) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 529) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 530) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 531) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 532) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 533) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 534) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 535) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 536) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexEnvf (line 537) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 538) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 539) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 540) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 541) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 542) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 543) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 544) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 545) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 546) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 547) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 548) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 549) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 550) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 551) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 552) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTranslated (line 553) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 554) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glVertex2d (line 555) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 556) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 557) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 558) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 559) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 560) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 561) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 562) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 563) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 564) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 565) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 566) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 567) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 568) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 569) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 570) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 571) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 572) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 573) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 574) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 575) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 576) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 577) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 578) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glViewport (line 579) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 580) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_1_1 (line 582) | class QOpenGLFunctions_1_1(QAbstractOpenGLFunctions): method __init__ (line 583) | def __init__(self, /) -> None: ... method glAccum (line 584) | def glAccum(self, op: int, value: float, /) -> None: ... method glAlphaFunc (line 585) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 586) | def glArrayElement(self, i: int, /) -> None: ... method glBegin (line 587) | def glBegin(self, mode: int, /) -> None: ... method glBindTexture (line 588) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendFunc (line 589) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glCallList (line 590) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 591) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 592) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 593) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 594) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 595) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 596) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 597) | def glClearStencil(self, s: int, /) -> None: ... method glClipPlane (line 598) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 599) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 600) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 601) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 602) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 603) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 604) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 605) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 606) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 607) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 608) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 609) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 610) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 611) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 612) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 613) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 614) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 615) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 616) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 617) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 618) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 619) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 620) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 621) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 622) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 623) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 624) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 625) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 626) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 627) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 628) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 629) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 630) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 631) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 632) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 633) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glCopyPixels (line 634) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 635) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 636) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 637) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 638) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 639) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteLists (line 640) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteTextures (line 641) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 642) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 643) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 644) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDisable (line 645) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 646) | def glDisableClientState(self, array: int, /) -> None: ... method glDrawArrays (line 647) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 648) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawElements (line 649) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 650) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glEdgeFlag (line 651) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 652) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 653) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 654) | def glEnableClientState(self, array: int, /) -> None: ... method glEnd (line 655) | def glEnd(self, /) -> None: ... method glEndList (line 656) | def glEndList(self, /) -> None: ... method glEvalCoord1d (line 657) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 658) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 659) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 660) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 661) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 662) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 663) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 664) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 665) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 666) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 667) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 668) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 669) | def glFinish(self, /) -> None: ... method glFlush (line 670) | def glFlush(self, /) -> None: ... method glFogf (line 671) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 672) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 673) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 674) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 675) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 676) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 677) | def glGenLists(self, range: int, /) -> int: ... method glGetBooleanv (line 678) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetDoublev (line 679) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 680) | def glGetError(self, /) -> int: ... method glGetFloatv (line 681) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetIntegerv (line 682) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 683) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 684) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glHint (line 685) | def glHint(self, target: int, mode: int, /) -> None: ... method glIndexMask (line 686) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 687) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 688) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 689) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 690) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 691) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 692) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 693) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 694) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 695) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 696) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 697) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 698) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 699) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsEnabled (line 700) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 701) | def glIsList(self, list: int, /) -> int: ... method glIsTexture (line 702) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 703) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 704) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 705) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 706) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 707) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 708) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 709) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 710) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 711) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 712) | def glLineWidth(self, width: float, /) -> None: ... method glListBase (line 713) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 714) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 715) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 716) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 717) | def glLoadName(self, name: int, /) -> None: ... method glLogicOp (line 718) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 719) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 720) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 721) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 722) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 723) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 724) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 725) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 726) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 727) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 728) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 729) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 730) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 731) | def glMatrixMode(self, mode: int, /) -> None: ... method glMultMatrixd (line 732) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 733) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glNewList (line 734) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 735) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 736) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 737) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 738) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 739) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 740) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 741) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 742) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 743) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 744) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 745) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 746) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 747) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 748) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 749) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 750) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 751) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 752) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 753) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 754) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 755) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointSize (line 756) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 757) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 758) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 759) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 760) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 761) | def glPopMatrix(self, /) -> None: ... method glPopName (line 762) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 763) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 764) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 765) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 766) | def glPushMatrix(self, /) -> None: ... method glPushName (line 767) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 768) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 769) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 770) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 771) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 772) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 773) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 774) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 775) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 776) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 777) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 778) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 779) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 780) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 781) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 782) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 783) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 784) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 785) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 786) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 787) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 788) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 789) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 790) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 791) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 792) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 793) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 794) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 795) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 796) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 797) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 798) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 799) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 800) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 801) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 802) | def glRenderMode(self, mode: int, /) -> int: ... method glRotated (line 803) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 804) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glScaled (line 805) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 806) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 807) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glShadeModel (line 808) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 809) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilMask (line 810) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilOp (line 811) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glTexCoord1d (line 812) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 813) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 814) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 815) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 816) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 817) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 818) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 819) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 820) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 821) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 822) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 823) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 824) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 825) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 826) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 827) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 828) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 829) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 830) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 831) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 832) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 833) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 834) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 835) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 836) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 837) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 838) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 839) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 840) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 841) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 842) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 843) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 844) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 845) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 846) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 847) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 848) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 849) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 850) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 851) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 852) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 853) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 854) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 855) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 856) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 857) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 858) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 859) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 860) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 861) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 862) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 863) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 864) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glVertex2d (line 865) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 866) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 867) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 868) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 869) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 870) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 871) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 872) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 873) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 874) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 875) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 876) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 877) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 878) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 879) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 880) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 881) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 882) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 883) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 884) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 885) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 886) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 887) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 888) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexPointer (line 889) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 890) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 891) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_1_2 (line 893) | class QOpenGLFunctions_1_2(QAbstractOpenGLFunctions): method __init__ (line 894) | def __init__(self, /) -> None: ... method glAccum (line 895) | def glAccum(self, op: int, value: float, /) -> None: ... method glAlphaFunc (line 896) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 897) | def glArrayElement(self, i: int, /) -> None: ... method glBegin (line 898) | def glBegin(self, mode: int, /) -> None: ... method glBindTexture (line 899) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 900) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 901) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendFunc (line 902) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glCallList (line 903) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 904) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 905) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 906) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 907) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 908) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 909) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 910) | def glClearStencil(self, s: int, /) -> None: ... method glClipPlane (line 911) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 912) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 913) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 914) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 915) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 916) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 917) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 918) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 919) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 920) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 921) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 922) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 923) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 924) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 925) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 926) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 927) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 928) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 929) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 930) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 931) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 932) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 933) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 934) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 935) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 936) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 937) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 938) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 939) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 940) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 941) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 942) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 943) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 944) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 945) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 946) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 947) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 948) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 949) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 950) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glConvolutionFilter1D (line 951) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 952) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 953) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 954) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 955) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 956) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 957) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 958) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 959) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 960) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 961) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 962) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 963) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 964) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 965) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 966) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 967) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteLists (line 968) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteTextures (line 969) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 970) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 971) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 972) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDisable (line 973) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 974) | def glDisableClientState(self, array: int, /) -> None: ... method glDrawArrays (line 975) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 976) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawElements (line 977) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 978) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 979) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 980) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 981) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 982) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 983) | def glEnableClientState(self, array: int, /) -> None: ... method glEnd (line 984) | def glEnd(self, /) -> None: ... method glEndList (line 985) | def glEndList(self, /) -> None: ... method glEvalCoord1d (line 986) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 987) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 988) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 989) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 990) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 991) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 992) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 993) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 994) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 995) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 996) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 997) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 998) | def glFinish(self, /) -> None: ... method glFlush (line 999) | def glFlush(self, /) -> None: ... method glFogf (line 1000) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 1001) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 1002) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 1003) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 1004) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 1005) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 1006) | def glGenLists(self, range: int, /) -> int: ... method glGetBooleanv (line 1007) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 1008) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetConvolutionFilter (line 1009) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 1010) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 1011) | def glGetError(self, /) -> int: ... method glGetFloatv (line 1012) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetHistogram (line 1013) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegerv (line 1014) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 1015) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 1016) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 1017) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 1018) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glHint (line 1019) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 1020) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 1021) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 1022) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 1023) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 1024) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 1025) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 1026) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 1027) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 1028) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 1029) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 1030) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 1031) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 1032) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 1033) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 1034) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsEnabled (line 1035) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 1036) | def glIsList(self, list: int, /) -> int: ... method glIsTexture (line 1037) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 1038) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 1039) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 1040) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 1041) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 1042) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 1043) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 1044) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 1045) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 1046) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 1047) | def glLineWidth(self, width: float, /) -> None: ... method glListBase (line 1048) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 1049) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 1050) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 1051) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 1052) | def glLoadName(self, name: int, /) -> None: ... method glLogicOp (line 1053) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 1054) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 1055) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 1056) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 1057) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 1058) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 1059) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 1060) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 1061) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 1062) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 1063) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 1064) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 1065) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 1066) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 1067) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 1068) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 1069) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glNewList (line 1070) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 1071) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 1072) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 1073) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 1074) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 1075) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 1076) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 1077) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 1078) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 1079) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 1080) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 1081) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 1082) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 1083) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 1084) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 1085) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 1086) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 1087) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 1088) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 1089) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 1090) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 1091) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointSize (line 1092) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 1093) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 1094) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 1095) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 1096) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 1097) | def glPopMatrix(self, /) -> None: ... method glPopName (line 1098) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 1099) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 1100) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 1101) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 1102) | def glPushMatrix(self, /) -> None: ... method glPushName (line 1103) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 1104) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 1105) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 1106) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 1107) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 1108) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 1109) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 1110) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 1111) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 1112) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 1113) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 1114) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 1115) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 1116) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 1117) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 1118) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 1119) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 1120) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 1121) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 1122) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 1123) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 1124) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 1125) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 1126) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 1127) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 1128) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 1129) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 1130) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 1131) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 1132) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 1133) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 1134) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 1135) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 1136) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 1137) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 1138) | def glRenderMode(self, mode: int, /) -> int: ... method glResetHistogram (line 1139) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 1140) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 1141) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 1142) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glScaled (line 1143) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 1144) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 1145) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSeparableFilter2D (line 1146) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 1147) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 1148) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilMask (line 1149) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilOp (line 1150) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glTexCoord1d (line 1151) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 1152) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 1153) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 1154) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 1155) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 1156) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 1157) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 1158) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 1159) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 1160) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 1161) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 1162) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 1163) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 1164) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 1165) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 1166) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 1167) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 1168) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 1169) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 1170) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 1171) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 1172) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 1173) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 1174) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 1175) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 1176) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 1177) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 1178) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 1179) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 1180) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 1181) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 1182) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 1183) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 1184) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 1185) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 1186) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 1187) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 1188) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 1189) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 1190) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 1191) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 1192) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 1193) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 1194) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 1195) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 1196) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 1197) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 1198) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 1199) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 1200) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 1201) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 1202) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 1203) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 1204) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 1205) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glVertex2d (line 1206) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 1207) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 1208) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 1209) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 1210) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 1211) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 1212) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 1213) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 1214) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 1215) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 1216) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 1217) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 1218) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 1219) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 1220) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 1221) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 1222) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 1223) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 1224) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 1225) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 1226) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 1227) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 1228) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 1229) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexPointer (line 1230) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 1231) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 1232) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_1_3 (line 1234) | class QOpenGLFunctions_1_3(QAbstractOpenGLFunctions): method __init__ (line 1235) | def __init__(self, /) -> None: ... method glAccum (line 1236) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 1237) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 1238) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 1239) | def glArrayElement(self, i: int, /) -> None: ... method glBegin (line 1240) | def glBegin(self, mode: int, /) -> None: ... method glBindTexture (line 1241) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 1242) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 1243) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendFunc (line 1244) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glCallList (line 1245) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 1246) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 1247) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 1248) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 1249) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 1250) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 1251) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 1252) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 1253) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 1254) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 1255) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 1256) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 1257) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 1258) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 1259) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 1260) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 1261) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 1262) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 1263) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 1264) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 1265) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 1266) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 1267) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 1268) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 1269) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 1270) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 1271) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 1272) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 1273) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 1274) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 1275) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 1276) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 1277) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 1278) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 1279) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 1280) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 1281) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 1282) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 1283) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 1284) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 1285) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 1286) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 1287) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 1288) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 1289) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 1290) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 1291) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 1292) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 1293) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompressedTexImage1D (line 1294) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 1295) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 1296) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 1297) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 1298) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 1299) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 1300) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 1301) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 1302) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 1303) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 1304) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 1305) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 1306) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 1307) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 1308) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 1309) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 1310) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 1311) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 1312) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 1313) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 1314) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 1315) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 1316) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteLists (line 1317) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteTextures (line 1318) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 1319) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 1320) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 1321) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDisable (line 1322) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 1323) | def glDisableClientState(self, array: int, /) -> None: ... method glDrawArrays (line 1324) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 1325) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawElements (line 1326) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 1327) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 1328) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 1329) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 1330) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 1331) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 1332) | def glEnableClientState(self, array: int, /) -> None: ... method glEnd (line 1333) | def glEnd(self, /) -> None: ... method glEndList (line 1334) | def glEndList(self, /) -> None: ... method glEvalCoord1d (line 1335) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 1336) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 1337) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 1338) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 1339) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 1340) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 1341) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 1342) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 1343) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 1344) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 1345) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 1346) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 1347) | def glFinish(self, /) -> None: ... method glFlush (line 1348) | def glFlush(self, /) -> None: ... method glFogf (line 1349) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 1350) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 1351) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 1352) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 1353) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 1354) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 1355) | def glGenLists(self, range: int, /) -> int: ... method glGetBooleanv (line 1356) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 1357) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 1358) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 1359) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 1360) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 1361) | def glGetError(self, /) -> int: ... method glGetFloatv (line 1362) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetHistogram (line 1363) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegerv (line 1364) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 1365) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 1366) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 1367) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 1368) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glHint (line 1369) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 1370) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 1371) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 1372) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 1373) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 1374) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 1375) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 1376) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 1377) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 1378) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 1379) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 1380) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 1381) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 1382) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 1383) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 1384) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsEnabled (line 1385) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 1386) | def glIsList(self, list: int, /) -> int: ... method glIsTexture (line 1387) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 1388) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 1389) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 1390) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 1391) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 1392) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 1393) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 1394) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 1395) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 1396) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 1397) | def glLineWidth(self, width: float, /) -> None: ... method glListBase (line 1398) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 1399) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 1400) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 1401) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 1402) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 1403) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 1404) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 1405) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 1406) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 1407) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 1408) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 1409) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 1410) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 1411) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 1412) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 1413) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 1414) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 1415) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 1416) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 1417) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 1418) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 1419) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 1420) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 1421) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 1422) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 1423) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiTexCoord1d (line 1424) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 1425) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 1426) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 1427) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 1428) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 1429) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 1430) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 1431) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 1432) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 1433) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 1434) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 1435) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 1436) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 1437) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 1438) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 1439) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 1440) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 1441) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 1442) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 1443) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 1444) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 1445) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 1446) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 1447) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 1448) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 1449) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 1450) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 1451) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 1452) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 1453) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 1454) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 1455) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 1456) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 1457) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 1458) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 1459) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 1460) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 1461) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 1462) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 1463) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 1464) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 1465) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 1466) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 1467) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 1468) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 1469) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 1470) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 1471) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 1472) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 1473) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 1474) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 1475) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 1476) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 1477) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointSize (line 1478) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 1479) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 1480) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 1481) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 1482) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 1483) | def glPopMatrix(self, /) -> None: ... method glPopName (line 1484) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 1485) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 1486) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 1487) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 1488) | def glPushMatrix(self, /) -> None: ... method glPushName (line 1489) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 1490) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 1491) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 1492) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 1493) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 1494) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 1495) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 1496) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 1497) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 1498) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 1499) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 1500) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 1501) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 1502) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 1503) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 1504) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 1505) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 1506) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 1507) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 1508) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 1509) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 1510) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 1511) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 1512) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 1513) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 1514) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 1515) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 1516) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 1517) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 1518) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 1519) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 1520) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 1521) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 1522) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 1523) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 1524) | def glRenderMode(self, mode: int, /) -> int: ... method glResetHistogram (line 1525) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 1526) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 1527) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 1528) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 1529) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScaled (line 1530) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 1531) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 1532) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSeparableFilter2D (line 1533) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 1534) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 1535) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilMask (line 1536) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilOp (line 1537) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glTexCoord1d (line 1538) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 1539) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 1540) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 1541) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 1542) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 1543) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 1544) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 1545) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 1546) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 1547) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 1548) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 1549) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 1550) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 1551) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 1552) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 1553) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 1554) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 1555) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 1556) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 1557) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 1558) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 1559) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 1560) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 1561) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 1562) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 1563) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 1564) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 1565) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 1566) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 1567) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 1568) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 1569) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 1570) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 1571) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 1572) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 1573) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 1574) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 1575) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 1576) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 1577) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 1578) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 1579) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 1580) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 1581) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 1582) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 1583) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 1584) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 1585) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 1586) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 1587) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 1588) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 1589) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 1590) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 1591) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 1592) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glVertex2d (line 1593) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 1594) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 1595) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 1596) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 1597) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 1598) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 1599) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 1600) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 1601) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 1602) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 1603) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 1604) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 1605) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 1606) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 1607) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 1608) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 1609) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 1610) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 1611) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 1612) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 1613) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 1614) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 1615) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 1616) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexPointer (line 1617) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 1618) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 1619) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_1_4 (line 1621) | class QOpenGLFunctions_1_4(QAbstractOpenGLFunctions): method __init__ (line 1622) | def __init__(self, /) -> None: ... method glAccum (line 1623) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 1624) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 1625) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 1626) | def glArrayElement(self, i: int, /) -> None: ... method glBegin (line 1627) | def glBegin(self, mode: int, /) -> None: ... method glBindTexture (line 1628) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 1629) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 1630) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendFunc (line 1631) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 1632) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 1633) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 1634) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 1635) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 1636) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 1637) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 1638) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 1639) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 1640) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 1641) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 1642) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 1643) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 1644) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 1645) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 1646) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 1647) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 1648) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 1649) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 1650) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 1651) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 1652) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 1653) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 1654) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 1655) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 1656) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 1657) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 1658) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 1659) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 1660) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 1661) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 1662) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 1663) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 1664) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 1665) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 1666) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 1667) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 1668) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 1669) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 1670) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 1671) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 1672) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 1673) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 1674) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 1675) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 1676) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 1677) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 1678) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 1679) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 1680) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 1681) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompressedTexImage1D (line 1682) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 1683) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 1684) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 1685) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 1686) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 1687) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 1688) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 1689) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 1690) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 1691) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 1692) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 1693) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 1694) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 1695) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 1696) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 1697) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 1698) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 1699) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 1700) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 1701) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 1702) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 1703) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 1704) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteLists (line 1705) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteTextures (line 1706) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 1707) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 1708) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 1709) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDisable (line 1710) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 1711) | def glDisableClientState(self, array: int, /) -> None: ... method glDrawArrays (line 1712) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 1713) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawElements (line 1714) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 1715) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 1716) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 1717) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 1718) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 1719) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 1720) | def glEnableClientState(self, array: int, /) -> None: ... method glEnd (line 1721) | def glEnd(self, /) -> None: ... method glEndList (line 1722) | def glEndList(self, /) -> None: ... method glEvalCoord1d (line 1723) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 1724) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 1725) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 1726) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 1727) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 1728) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 1729) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 1730) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 1731) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 1732) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 1733) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 1734) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 1735) | def glFinish(self, /) -> None: ... method glFlush (line 1736) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 1737) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 1738) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 1739) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 1740) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 1741) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 1742) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 1743) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 1744) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 1745) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 1746) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 1747) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 1748) | def glGenLists(self, range: int, /) -> int: ... method glGetBooleanv (line 1749) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 1750) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 1751) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 1752) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 1753) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 1754) | def glGetError(self, /) -> int: ... method glGetFloatv (line 1755) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetHistogram (line 1756) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegerv (line 1757) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 1758) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 1759) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 1760) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 1761) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glHint (line 1762) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 1763) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 1764) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 1765) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 1766) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 1767) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 1768) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 1769) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 1770) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 1771) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 1772) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 1773) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 1774) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 1775) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 1776) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 1777) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsEnabled (line 1778) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 1779) | def glIsList(self, list: int, /) -> int: ... method glIsTexture (line 1780) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 1781) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 1782) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 1783) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 1784) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 1785) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 1786) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 1787) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 1788) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 1789) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 1790) | def glLineWidth(self, width: float, /) -> None: ... method glListBase (line 1791) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 1792) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 1793) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 1794) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 1795) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 1796) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 1797) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 1798) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 1799) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 1800) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 1801) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 1802) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapGrid1d (line 1803) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 1804) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 1805) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 1806) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 1807) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 1808) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 1809) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 1810) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 1811) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 1812) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 1813) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 1814) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 1815) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 1816) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 1817) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 1818) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 1819) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 1820) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 1821) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 1822) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 1823) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 1824) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 1825) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 1826) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 1827) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 1828) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 1829) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 1830) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 1831) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 1832) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 1833) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 1834) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 1835) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 1836) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 1837) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 1838) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 1839) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 1840) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 1841) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 1842) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 1843) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 1844) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 1845) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 1846) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 1847) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 1848) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 1849) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 1850) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 1851) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 1852) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 1853) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 1854) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 1855) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 1856) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 1857) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 1858) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 1859) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 1860) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 1861) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 1862) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 1863) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 1864) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 1865) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 1866) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 1867) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 1868) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 1869) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 1870) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 1871) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 1872) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 1873) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 1874) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 1875) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 1876) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 1877) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 1878) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 1879) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 1880) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 1881) | def glPopMatrix(self, /) -> None: ... method glPopName (line 1882) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 1883) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 1884) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 1885) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 1886) | def glPushMatrix(self, /) -> None: ... method glPushName (line 1887) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 1888) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 1889) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 1890) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 1891) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 1892) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 1893) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 1894) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 1895) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 1896) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 1897) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 1898) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 1899) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 1900) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 1901) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 1902) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 1903) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 1904) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 1905) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 1906) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 1907) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 1908) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 1909) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 1910) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 1911) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 1912) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 1913) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 1914) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 1915) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 1916) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 1917) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 1918) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 1919) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 1920) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 1921) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 1922) | def glRenderMode(self, mode: int, /) -> int: ... method glResetHistogram (line 1923) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 1924) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 1925) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 1926) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 1927) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScaled (line 1928) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 1929) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 1930) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 1931) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 1932) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 1933) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 1934) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 1935) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 1936) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 1937) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 1938) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 1939) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 1940) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 1941) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 1942) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 1943) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 1944) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 1945) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 1946) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorPointer (line 1947) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 1948) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 1949) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 1950) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilMask (line 1951) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilOp (line 1952) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glTexCoord1d (line 1953) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 1954) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 1955) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 1956) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 1957) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 1958) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 1959) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 1960) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 1961) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 1962) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 1963) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 1964) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 1965) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 1966) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 1967) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 1968) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 1969) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 1970) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 1971) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 1972) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 1973) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 1974) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 1975) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 1976) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 1977) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 1978) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 1979) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 1980) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 1981) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 1982) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 1983) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 1984) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 1985) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 1986) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 1987) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 1988) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 1989) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 1990) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 1991) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 1992) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 1993) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 1994) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 1995) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 1996) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 1997) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 1998) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 1999) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 2000) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 2001) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 2002) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 2003) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 2004) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 2005) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 2006) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 2007) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glVertex2d (line 2008) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 2009) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 2010) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 2011) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 2012) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 2013) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 2014) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 2015) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 2016) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 2017) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 2018) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 2019) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 2020) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 2021) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 2022) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 2023) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 2024) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 2025) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 2026) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 2027) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 2028) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 2029) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 2030) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 2031) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexPointer (line 2032) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 2033) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 2034) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 2035) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 2036) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 2037) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 2038) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 2039) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 2040) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 2041) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 2042) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 2043) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 2044) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 2045) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 2046) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 2047) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 2048) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 2049) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 2050) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_1_5 (line 2052) | class QOpenGLFunctions_1_5(QAbstractOpenGLFunctions): method __init__ (line 2053) | def __init__(self, /) -> None: ... method glAccum (line 2054) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 2055) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 2056) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 2057) | def glArrayElement(self, i: int, /) -> None: ... method glBegin (line 2058) | def glBegin(self, mode: int, /) -> None: ... method glBeginQuery (line 2059) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBindBuffer (line 2060) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindTexture (line 2061) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 2062) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 2063) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendFunc (line 2064) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 2065) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 2066) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 2067) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 2068) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 2069) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 2070) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 2071) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 2072) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 2073) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 2074) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 2075) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 2076) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 2077) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 2078) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 2079) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 2080) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 2081) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 2082) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 2083) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 2084) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 2085) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 2086) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 2087) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 2088) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 2089) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 2090) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 2091) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 2092) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 2093) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 2094) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 2095) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 2096) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 2097) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 2098) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 2099) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 2100) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 2101) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 2102) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 2103) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 2104) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 2105) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 2106) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 2107) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 2108) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 2109) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 2110) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 2111) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 2112) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 2113) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 2114) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompressedTexImage1D (line 2115) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 2116) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 2117) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 2118) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 2119) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 2120) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 2121) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 2122) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 2123) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 2124) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 2125) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 2126) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 2127) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 2128) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 2129) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 2130) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 2131) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 2132) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 2133) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 2134) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 2135) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 2136) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCullFace (line 2137) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 2138) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteLists (line 2139) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteQueries (line 2140) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteTextures (line 2141) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 2142) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 2143) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 2144) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDisable (line 2145) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 2146) | def glDisableClientState(self, array: int, /) -> None: ... method glDrawArrays (line 2147) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 2148) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawElements (line 2149) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 2150) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 2151) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 2152) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 2153) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 2154) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 2155) | def glEnableClientState(self, array: int, /) -> None: ... method glEnd (line 2156) | def glEnd(self, /) -> None: ... method glEndList (line 2157) | def glEndList(self, /) -> None: ... method glEndQuery (line 2158) | def glEndQuery(self, target: int, /) -> None: ... method glEvalCoord1d (line 2159) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 2160) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 2161) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 2162) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 2163) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 2164) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 2165) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 2166) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 2167) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 2168) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 2169) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 2170) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 2171) | def glFinish(self, /) -> None: ... method glFlush (line 2172) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 2173) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 2174) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 2175) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 2176) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 2177) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 2178) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 2179) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 2180) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 2181) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 2182) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 2183) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 2184) | def glGenLists(self, range: int, /) -> int: ... method glGetBooleanv (line 2185) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 2186) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 2187) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 2188) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 2189) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 2190) | def glGetError(self, /) -> int: ... method glGetFloatv (line 2191) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetHistogram (line 2192) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegerv (line 2193) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 2194) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 2195) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 2196) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 2197) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glHint (line 2198) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 2199) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 2200) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 2201) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 2202) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 2203) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 2204) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 2205) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 2206) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 2207) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 2208) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 2209) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 2210) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 2211) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 2212) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 2213) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 2214) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 2215) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 2216) | def glIsList(self, list: int, /) -> int: ... method glIsQuery (line 2217) | def glIsQuery(self, id: int, /) -> int: ... method glIsTexture (line 2218) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 2219) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 2220) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 2221) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 2222) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 2223) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 2224) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 2225) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 2226) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 2227) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 2228) | def glLineWidth(self, width: float, /) -> None: ... method glListBase (line 2229) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 2230) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 2231) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 2232) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 2233) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 2234) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 2235) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 2236) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 2237) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 2238) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 2239) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 2240) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 2241) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 2242) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 2243) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 2244) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 2245) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 2246) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 2247) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 2248) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 2249) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 2250) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 2251) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 2252) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 2253) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 2254) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 2255) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 2256) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 2257) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 2258) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 2259) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 2260) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 2261) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 2262) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 2263) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 2264) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 2265) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 2266) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 2267) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 2268) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 2269) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 2270) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 2271) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 2272) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 2273) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 2274) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 2275) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 2276) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 2277) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 2278) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 2279) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 2280) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 2281) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 2282) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 2283) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 2284) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 2285) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 2286) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 2287) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 2288) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 2289) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 2290) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 2291) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 2292) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 2293) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 2294) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 2295) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 2296) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 2297) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 2298) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 2299) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 2300) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 2301) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 2302) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 2303) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 2304) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 2305) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 2306) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 2307) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 2308) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 2309) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 2310) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 2311) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 2312) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 2313) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 2314) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 2315) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 2316) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 2317) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 2318) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 2319) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 2320) | def glPopMatrix(self, /) -> None: ... method glPopName (line 2321) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 2322) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 2323) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 2324) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 2325) | def glPushMatrix(self, /) -> None: ... method glPushName (line 2326) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 2327) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 2328) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 2329) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 2330) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 2331) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 2332) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 2333) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 2334) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 2335) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 2336) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 2337) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 2338) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 2339) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 2340) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 2341) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 2342) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 2343) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 2344) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 2345) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 2346) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 2347) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 2348) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 2349) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 2350) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 2351) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 2352) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 2353) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 2354) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 2355) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 2356) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 2357) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 2358) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 2359) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 2360) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 2361) | def glRenderMode(self, mode: int, /) -> int: ... method glResetHistogram (line 2362) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 2363) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 2364) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 2365) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 2366) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScaled (line 2367) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 2368) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 2369) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 2370) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 2371) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 2372) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 2373) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 2374) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 2375) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 2376) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 2377) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 2378) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 2379) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 2380) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 2381) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 2382) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 2383) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 2384) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 2385) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorPointer (line 2386) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 2387) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 2388) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 2389) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilMask (line 2390) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilOp (line 2391) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glTexCoord1d (line 2392) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 2393) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 2394) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 2395) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 2396) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 2397) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 2398) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 2399) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 2400) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 2401) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 2402) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 2403) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 2404) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 2405) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 2406) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 2407) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 2408) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 2409) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 2410) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 2411) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 2412) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 2413) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 2414) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 2415) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 2416) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 2417) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 2418) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 2419) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 2420) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 2421) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 2422) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 2423) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 2424) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 2425) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 2426) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 2427) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 2428) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 2429) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 2430) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 2431) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 2432) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 2433) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 2434) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 2435) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 2436) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 2437) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 2438) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 2439) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 2440) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 2441) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 2442) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 2443) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 2444) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 2445) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 2446) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUnmapBuffer (line 2447) | def glUnmapBuffer(self, target: int, /) -> int: ... method glVertex2d (line 2448) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 2449) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 2450) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 2451) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 2452) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 2453) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 2454) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 2455) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 2456) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 2457) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 2458) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 2459) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 2460) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 2461) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 2462) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 2463) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 2464) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 2465) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 2466) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 2467) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 2468) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 2469) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 2470) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 2471) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexPointer (line 2472) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 2473) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 2474) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 2475) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 2476) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 2477) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 2478) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 2479) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 2480) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 2481) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 2482) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 2483) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 2484) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 2485) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 2486) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 2487) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 2488) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 2489) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 2490) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_2_0 (line 2492) | class QOpenGLFunctions_2_0(QAbstractOpenGLFunctions): method __init__ (line 2493) | def __init__(self, /) -> None: ... method glAccum (line 2494) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 2495) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 2496) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 2497) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 2498) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 2499) | def glBegin(self, mode: int, /) -> None: ... method glBeginQuery (line 2500) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBindAttribLocation (line 2501) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 2502) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindTexture (line 2503) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 2504) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 2505) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 2506) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 2507) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 2508) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 2509) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 2510) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 2511) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 2512) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 2513) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 2514) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 2515) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 2516) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 2517) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 2518) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 2519) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 2520) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 2521) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 2522) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 2523) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 2524) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 2525) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 2526) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 2527) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 2528) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 2529) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 2530) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 2531) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 2532) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 2533) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 2534) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 2535) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 2536) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 2537) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 2538) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 2539) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 2540) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 2541) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 2542) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 2543) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 2544) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 2545) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 2546) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 2547) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 2548) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 2549) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 2550) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 2551) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 2552) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 2553) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 2554) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 2555) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 2556) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 2557) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 2558) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 2559) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 2560) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 2561) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 2562) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 2563) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 2564) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 2565) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 2566) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 2567) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 2568) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 2569) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 2570) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 2571) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 2572) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 2573) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 2574) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 2575) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 2576) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 2577) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 2578) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 2579) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 2580) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 2581) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 2582) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 2583) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 2584) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteLists (line 2585) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 2586) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 2587) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteShader (line 2588) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 2589) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 2590) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 2591) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 2592) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 2593) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 2594) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 2595) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 2596) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDrawArrays (line 2597) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 2598) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 2599) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 2600) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 2601) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 2602) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 2603) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 2604) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 2605) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 2606) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 2607) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnd (line 2608) | def glEnd(self, /) -> None: ... method glEndList (line 2609) | def glEndList(self, /) -> None: ... method glEndQuery (line 2610) | def glEndQuery(self, target: int, /) -> None: ... method glEvalCoord1d (line 2611) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 2612) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 2613) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 2614) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 2615) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 2616) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 2617) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 2618) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 2619) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 2620) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 2621) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 2622) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 2623) | def glFinish(self, /) -> None: ... method glFlush (line 2624) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 2625) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 2626) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 2627) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 2628) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 2629) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 2630) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 2631) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 2632) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 2633) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 2634) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 2635) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 2636) | def glGenLists(self, range: int, /) -> int: ... method glGetAttribLocation (line 2637) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleanv (line 2638) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 2639) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 2640) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 2641) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 2642) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 2643) | def glGetError(self, /) -> int: ... method glGetFloatv (line 2644) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetHistogram (line 2645) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegerv (line 2646) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 2647) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 2648) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 2649) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 2650) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformLocation (line 2651) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 2652) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 2653) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 2654) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 2655) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 2656) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 2657) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 2658) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 2659) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 2660) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 2661) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 2662) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 2663) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 2664) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 2665) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 2666) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 2667) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 2668) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 2669) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 2670) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 2671) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 2672) | def glIsQuery(self, id: int, /) -> int: ... method glIsShader (line 2673) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 2674) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 2675) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 2676) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 2677) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 2678) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 2679) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 2680) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 2681) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 2682) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 2683) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 2684) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 2685) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 2686) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 2687) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 2688) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 2689) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 2690) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 2691) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 2692) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 2693) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 2694) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 2695) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 2696) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 2697) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 2698) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 2699) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 2700) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 2701) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 2702) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 2703) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 2704) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 2705) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 2706) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 2707) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 2708) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 2709) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 2710) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 2711) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 2712) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 2713) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 2714) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 2715) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 2716) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 2717) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 2718) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 2719) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 2720) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 2721) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 2722) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 2723) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 2724) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 2725) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 2726) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 2727) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 2728) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 2729) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 2730) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 2731) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 2732) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 2733) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 2734) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 2735) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 2736) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 2737) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 2738) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 2739) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 2740) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 2741) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 2742) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 2743) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 2744) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 2745) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 2746) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 2747) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 2748) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 2749) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 2750) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 2751) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 2752) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 2753) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 2754) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 2755) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 2756) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 2757) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 2758) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 2759) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 2760) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 2761) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 2762) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 2763) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 2764) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 2765) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 2766) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 2767) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 2768) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 2769) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 2770) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 2771) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 2772) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 2773) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 2774) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 2775) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 2776) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 2777) | def glPopMatrix(self, /) -> None: ... method glPopName (line 2778) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 2779) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 2780) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 2781) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 2782) | def glPushMatrix(self, /) -> None: ... method glPushName (line 2783) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 2784) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 2785) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 2786) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 2787) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 2788) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 2789) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 2790) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 2791) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 2792) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 2793) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 2794) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 2795) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 2796) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 2797) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 2798) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 2799) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 2800) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 2801) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 2802) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 2803) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 2804) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 2805) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 2806) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 2807) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 2808) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 2809) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 2810) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 2811) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 2812) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 2813) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 2814) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 2815) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 2816) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 2817) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 2818) | def glRenderMode(self, mode: int, /) -> int: ... method glResetHistogram (line 2819) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 2820) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 2821) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 2822) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 2823) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScaled (line 2824) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 2825) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 2826) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 2827) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 2828) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 2829) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 2830) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 2831) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 2832) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 2833) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 2834) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 2835) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 2836) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 2837) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 2838) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 2839) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 2840) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 2841) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 2842) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorPointer (line 2843) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 2844) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 2845) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 2846) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 2847) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 2848) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 2849) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 2850) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 2851) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexCoord1d (line 2852) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 2853) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 2854) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 2855) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 2856) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 2857) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 2858) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 2859) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 2860) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 2861) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 2862) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 2863) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 2864) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 2865) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 2866) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 2867) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 2868) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 2869) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 2870) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 2871) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 2872) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 2873) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 2874) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 2875) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 2876) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 2877) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 2878) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 2879) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 2880) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 2881) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 2882) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 2883) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 2884) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 2885) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 2886) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 2887) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 2888) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 2889) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 2890) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 2891) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 2892) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 2893) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 2894) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 2895) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 2896) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 2897) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 2898) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 2899) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 2900) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 2901) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 2902) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 2903) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 2904) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 2905) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 2906) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1f (line 2907) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 2908) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 2909) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 2910) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 2911) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 2912) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 2913) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 2914) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 2915) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 2916) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 2917) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 2918) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 2919) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 2920) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 2921) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 2922) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniformMatrix2fv (line 2923) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 2924) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 2925) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUnmapBuffer (line 2926) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 2927) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 2928) | def glValidateProgram(self, program: int, /) -> None: ... method glVertex2d (line 2929) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 2930) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 2931) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 2932) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 2933) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 2934) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 2935) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 2936) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 2937) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 2938) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 2939) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 2940) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 2941) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 2942) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 2943) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 2944) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 2945) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 2946) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 2947) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 2948) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 2949) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 2950) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 2951) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 2952) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 2953) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 2954) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 2955) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 2956) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 2957) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 2958) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 2959) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 2960) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 2961) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 2962) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 2963) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 2964) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 2965) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 2966) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 2967) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 2968) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 2969) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 2970) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 2971) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 2972) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 2973) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 2974) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 2975) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 2976) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 2977) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 2978) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 2979) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 2980) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 2981) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 2982) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 2983) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 2984) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 2985) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 2986) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 2987) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 2988) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribPointer (line 2989) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 2990) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 2991) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 2992) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 2993) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 2994) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 2995) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 2996) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 2997) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 2998) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 2999) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 3000) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 3001) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 3002) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 3003) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 3004) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 3005) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 3006) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 3007) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 3008) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_2_1 (line 3010) | class QOpenGLFunctions_2_1(QAbstractOpenGLFunctions): method __init__ (line 3011) | def __init__(self, /) -> None: ... method glAccum (line 3012) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 3013) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 3014) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 3015) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 3016) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 3017) | def glBegin(self, mode: int, /) -> None: ... method glBeginQuery (line 3018) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBindAttribLocation (line 3019) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 3020) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindTexture (line 3021) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBlendColor (line 3022) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 3023) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 3024) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 3025) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 3026) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glCallList (line 3027) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 3028) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glClear (line 3029) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 3030) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearColor (line 3031) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 3032) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 3033) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 3034) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 3035) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 3036) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 3037) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 3038) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 3039) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 3040) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 3041) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 3042) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 3043) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 3044) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 3045) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 3046) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 3047) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 3048) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 3049) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 3050) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 3051) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 3052) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 3053) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 3054) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 3055) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 3056) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 3057) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 3058) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 3059) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 3060) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 3061) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 3062) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 3063) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 3064) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 3065) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 3066) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 3067) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 3068) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 3069) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaterial (line 3070) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 3071) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 3072) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 3073) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 3074) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 3075) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 3076) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 3077) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 3078) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 3079) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 3080) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 3081) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 3082) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 3083) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 3084) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 3085) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 3086) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 3087) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 3088) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 3089) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 3090) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 3091) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 3092) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 3093) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 3094) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 3095) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 3096) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 3097) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 3098) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 3099) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 3100) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 3101) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 3102) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteLists (line 3103) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 3104) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 3105) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteShader (line 3106) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 3107) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDepthFunc (line 3108) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 3109) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 3110) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 3111) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 3112) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 3113) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 3114) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDrawArrays (line 3115) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 3116) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 3117) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 3118) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 3119) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 3120) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 3121) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 3122) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 3123) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 3124) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 3125) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnd (line 3126) | def glEnd(self, /) -> None: ... method glEndList (line 3127) | def glEndList(self, /) -> None: ... method glEndQuery (line 3128) | def glEndQuery(self, target: int, /) -> None: ... method glEvalCoord1d (line 3129) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 3130) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 3131) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 3132) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 3133) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 3134) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 3135) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 3136) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 3137) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 3138) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 3139) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 3140) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 3141) | def glFinish(self, /) -> None: ... method glFlush (line 3142) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 3143) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 3144) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 3145) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 3146) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 3147) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 3148) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 3149) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 3150) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 3151) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFrontFace (line 3152) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 3153) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 3154) | def glGenLists(self, range: int, /) -> int: ... method glGetAttribLocation (line 3155) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleanv (line 3156) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 3157) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 3158) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 3159) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 3160) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 3161) | def glGetError(self, /) -> int: ... method glGetFloatv (line 3162) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetHistogram (line 3163) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegerv (line 3164) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 3165) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 3166) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 3167) | def glGetString(self, name: int, /) -> str: ... method glGetTexImage (line 3168) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformLocation (line 3169) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 3170) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 3171) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 3172) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 3173) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 3174) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 3175) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 3176) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 3177) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 3178) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 3179) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 3180) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 3181) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 3182) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 3183) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 3184) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 3185) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 3186) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 3187) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsList (line 3188) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 3189) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 3190) | def glIsQuery(self, id: int, /) -> int: ... method glIsShader (line 3191) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 3192) | def glIsTexture(self, texture: int, /) -> int: ... method glLightModelf (line 3193) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 3194) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 3195) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 3196) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 3197) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 3198) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 3199) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 3200) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 3201) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 3202) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 3203) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 3204) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 3205) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 3206) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 3207) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 3208) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 3209) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 3210) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 3211) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 3212) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 3213) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 3214) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 3215) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 3216) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 3217) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 3218) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 3219) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 3220) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 3221) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 3222) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 3223) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 3224) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 3225) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 3226) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 3227) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 3228) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 3229) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 3230) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 3231) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 3232) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 3233) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 3234) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 3235) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 3236) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 3237) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 3238) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 3239) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 3240) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 3241) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 3242) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 3243) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 3244) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 3245) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 3246) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 3247) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 3248) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 3249) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 3250) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 3251) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 3252) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 3253) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 3254) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 3255) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 3256) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 3257) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 3258) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 3259) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 3260) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 3261) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 3262) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 3263) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 3264) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 3265) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 3266) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 3267) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 3268) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 3269) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 3270) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 3271) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 3272) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 3273) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 3274) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 3275) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 3276) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 3277) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 3278) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 3279) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 3280) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 3281) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 3282) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 3283) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 3284) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 3285) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 3286) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 3287) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 3288) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 3289) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 3290) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 3291) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 3292) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 3293) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 3294) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 3295) | def glPopMatrix(self, /) -> None: ... method glPopName (line 3296) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 3297) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 3298) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 3299) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 3300) | def glPushMatrix(self, /) -> None: ... method glPushName (line 3301) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 3302) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 3303) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 3304) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 3305) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 3306) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 3307) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 3308) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 3309) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 3310) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 3311) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 3312) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 3313) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 3314) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 3315) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 3316) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 3317) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 3318) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 3319) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 3320) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 3321) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 3322) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 3323) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 3324) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 3325) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 3326) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 3327) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 3328) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 3329) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 3330) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 3331) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 3332) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 3333) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 3334) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 3335) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 3336) | def glRenderMode(self, mode: int, /) -> int: ... method glResetHistogram (line 3337) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 3338) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 3339) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 3340) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 3341) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScaled (line 3342) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 3343) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 3344) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 3345) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 3346) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 3347) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 3348) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 3349) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 3350) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 3351) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 3352) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 3353) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 3354) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 3355) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 3356) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 3357) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 3358) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 3359) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 3360) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorPointer (line 3361) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 3362) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 3363) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 3364) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 3365) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 3366) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 3367) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 3368) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 3369) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexCoord1d (line 3370) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 3371) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 3372) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 3373) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 3374) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 3375) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 3376) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 3377) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 3378) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 3379) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 3380) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 3381) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 3382) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 3383) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 3384) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 3385) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 3386) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 3387) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 3388) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 3389) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 3390) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 3391) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 3392) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 3393) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 3394) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 3395) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 3396) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 3397) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 3398) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 3399) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 3400) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 3401) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 3402) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 3403) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 3404) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 3405) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 3406) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 3407) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 3408) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 3409) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 3410) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 3411) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 3412) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 3413) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 3414) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 3415) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterf (line 3416) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 3417) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 3418) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 3419) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 3420) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 3421) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 3422) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 3423) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 3424) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1f (line 3425) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 3426) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 3427) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 3428) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 3429) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 3430) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 3431) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 3432) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 3433) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 3434) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 3435) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 3436) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 3437) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 3438) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 3439) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 3440) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniformMatrix2fv (line 3441) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 3442) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 3443) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 3444) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 3445) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 3446) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 3447) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 3448) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 3449) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 3450) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 3451) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 3452) | def glValidateProgram(self, program: int, /) -> None: ... method glVertex2d (line 3453) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 3454) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 3455) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 3456) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 3457) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 3458) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 3459) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 3460) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 3461) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 3462) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 3463) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 3464) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 3465) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 3466) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 3467) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 3468) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 3469) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 3470) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 3471) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 3472) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 3473) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 3474) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 3475) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 3476) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 3477) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 3478) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 3479) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 3480) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 3481) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 3482) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 3483) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 3484) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 3485) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 3486) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 3487) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 3488) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 3489) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 3490) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 3491) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 3492) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 3493) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 3494) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 3495) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 3496) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 3497) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 3498) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 3499) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 3500) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 3501) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 3502) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 3503) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 3504) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 3505) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 3506) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 3507) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 3508) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 3509) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 3510) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 3511) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 3512) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribPointer (line 3513) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 3514) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 3515) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 3516) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 3517) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 3518) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 3519) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 3520) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 3521) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 3522) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 3523) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 3524) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 3525) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 3526) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 3527) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 3528) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 3529) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 3530) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 3531) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 3532) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_3_0 (line 3534) | class QOpenGLFunctions_3_0(QAbstractOpenGLFunctions): method __init__ (line 3535) | def __init__(self, /) -> None: ... method glAccum (line 3536) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 3537) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 3538) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 3539) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 3540) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 3541) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 3542) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 3543) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 3544) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 3545) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 3546) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 3547) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 3548) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 3549) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 3550) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindTexture (line 3551) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindVertexArray (line 3552) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 3553) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 3554) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 3555) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 3556) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 3557) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 3558) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 3559) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 3560) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 3561) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 3562) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 3563) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 3564) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 3565) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 3566) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 3567) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 3568) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 3569) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 3570) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 3571) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 3572) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 3573) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 3574) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 3575) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 3576) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 3577) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 3578) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 3579) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 3580) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 3581) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 3582) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 3583) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 3584) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 3585) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 3586) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 3587) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 3588) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 3589) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 3590) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 3591) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 3592) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 3593) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 3594) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 3595) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 3596) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 3597) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 3598) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 3599) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 3600) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 3601) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 3602) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 3603) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 3604) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 3605) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 3606) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 3607) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 3608) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 3609) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 3610) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 3611) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 3612) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 3613) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 3614) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 3615) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 3616) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 3617) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 3618) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 3619) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 3620) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 3621) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 3622) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 3623) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 3624) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 3625) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 3626) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 3627) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 3628) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 3629) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 3630) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 3631) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 3632) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 3633) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 3634) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 3635) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 3636) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 3637) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 3638) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 3639) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 3640) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 3641) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 3642) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 3643) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 3644) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 3645) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 3646) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 3647) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 3648) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteVertexArrays (line 3649) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 3650) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 3651) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 3652) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 3653) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 3654) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 3655) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 3656) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 3657) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 3658) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawBuffer (line 3659) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 3660) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 3661) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawPixels (line 3662) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 3663) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEdgeFlag (line 3664) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 3665) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 3666) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 3667) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 3668) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 3669) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 3670) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 3671) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 3672) | def glEndList(self, /) -> None: ... method glEndQuery (line 3673) | def glEndQuery(self, target: int, /) -> None: ... method glEndTransformFeedback (line 3674) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 3675) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 3676) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 3677) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 3678) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 3679) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 3680) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 3681) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 3682) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 3683) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 3684) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 3685) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 3686) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 3687) | def glFinish(self, /) -> None: ... method glFlush (line 3688) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 3689) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 3690) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 3691) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 3692) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 3693) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 3694) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 3695) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 3696) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 3697) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferRenderbuffer (line 3698) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture1D (line 3699) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 3700) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 3701) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 3702) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 3703) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 3704) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 3705) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 3706) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 3707) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 3708) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 3709) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 3710) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 3711) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 3712) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 3713) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 3714) | def glGetError(self, /) -> int: ... method glGetFloatv (line 3715) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataLocation (line 3716) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 3717) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 3718) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 3719) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 3720) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 3721) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 3722) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 3723) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexImage (line 3724) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformLocation (line 3725) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 3726) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 3727) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 3728) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 3729) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 3730) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 3731) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 3732) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 3733) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 3734) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 3735) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 3736) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 3737) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 3738) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 3739) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 3740) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 3741) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 3742) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 3743) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 3744) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 3745) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 3746) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 3747) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 3748) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 3749) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsShader (line 3750) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 3751) | def glIsTexture(self, texture: int, /) -> int: ... method glIsVertexArray (line 3752) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 3753) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 3754) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 3755) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 3756) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 3757) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 3758) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 3759) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 3760) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 3761) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 3762) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 3763) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 3764) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 3765) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 3766) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 3767) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 3768) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 3769) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 3770) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 3771) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 3772) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 3773) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 3774) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 3775) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 3776) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 3777) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 3778) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 3779) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 3780) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 3781) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 3782) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 3783) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 3784) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 3785) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 3786) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 3787) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 3788) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 3789) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 3790) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 3791) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 3792) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 3793) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 3794) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 3795) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 3796) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 3797) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 3798) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 3799) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 3800) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 3801) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 3802) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 3803) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 3804) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 3805) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 3806) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 3807) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 3808) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 3809) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 3810) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 3811) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 3812) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 3813) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 3814) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 3815) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 3816) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 3817) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 3818) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 3819) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 3820) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 3821) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 3822) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 3823) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 3824) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 3825) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 3826) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 3827) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 3828) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 3829) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 3830) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 3831) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 3832) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 3833) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 3834) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 3835) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 3836) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 3837) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 3838) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 3839) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 3840) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 3841) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 3842) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 3843) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 3844) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 3845) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 3846) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 3847) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 3848) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 3849) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 3850) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 3851) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 3852) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 3853) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 3854) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 3855) | def glPopMatrix(self, /) -> None: ... method glPopName (line 3856) | def glPopName(self, /) -> None: ... method glPrioritizeTextures (line 3857) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glPushAttrib (line 3858) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 3859) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 3860) | def glPushMatrix(self, /) -> None: ... method glPushName (line 3861) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 3862) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 3863) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 3864) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 3865) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 3866) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 3867) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 3868) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 3869) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 3870) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 3871) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 3872) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 3873) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 3874) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 3875) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 3876) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 3877) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 3878) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 3879) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 3880) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 3881) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 3882) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 3883) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 3884) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 3885) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 3886) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 3887) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 3888) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 3889) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 3890) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 3891) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 3892) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 3893) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 3894) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 3895) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 3896) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 3897) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 3898) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 3899) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 3900) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 3901) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 3902) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 3903) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScaled (line 3904) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 3905) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 3906) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 3907) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 3908) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 3909) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 3910) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 3911) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 3912) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 3913) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 3914) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 3915) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 3916) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 3917) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 3918) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 3919) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 3920) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 3921) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 3922) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorPointer (line 3923) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 3924) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 3925) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 3926) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 3927) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 3928) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 3929) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 3930) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 3931) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexCoord1d (line 3932) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 3933) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 3934) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 3935) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 3936) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 3937) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 3938) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 3939) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 3940) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 3941) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 3942) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 3943) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 3944) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 3945) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 3946) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 3947) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 3948) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 3949) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 3950) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 3951) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 3952) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 3953) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 3954) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 3955) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 3956) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 3957) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 3958) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 3959) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 3960) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 3961) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 3962) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 3963) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 3964) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 3965) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 3966) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 3967) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 3968) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 3969) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 3970) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 3971) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 3972) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 3973) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 3974) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 3975) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 3976) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 3977) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterIiv (line 3978) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 3979) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 3980) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 3981) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 3982) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 3983) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 3984) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 3985) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 3986) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 3987) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 3988) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1f (line 3989) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 3990) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 3991) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 3992) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 3993) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 3994) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 3995) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 3996) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 3997) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 3998) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 3999) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 4000) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 4001) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 4002) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 4003) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 4004) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 4005) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 4006) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 4007) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 4008) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 4009) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 4010) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 4011) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 4012) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformMatrix2fv (line 4013) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 4014) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 4015) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 4016) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 4017) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 4018) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 4019) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 4020) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 4021) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 4022) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 4023) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 4024) | def glValidateProgram(self, program: int, /) -> None: ... method glVertex2d (line 4025) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 4026) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 4027) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 4028) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 4029) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 4030) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 4031) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 4032) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 4033) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 4034) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 4035) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 4036) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 4037) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 4038) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 4039) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 4040) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 4041) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 4042) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 4043) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 4044) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 4045) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 4046) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 4047) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 4048) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 4049) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 4050) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 4051) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 4052) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 4053) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 4054) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 4055) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 4056) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 4057) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 4058) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 4059) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 4060) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 4061) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 4062) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 4063) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 4064) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 4065) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 4066) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 4067) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 4068) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 4069) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 4070) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 4071) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 4072) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 4073) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 4074) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 4075) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 4076) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 4077) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 4078) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 4079) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 4080) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 4081) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 4082) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 4083) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 4084) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1i (line 4085) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 4086) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 4087) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 4088) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 4089) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 4090) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 4091) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 4092) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 4093) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 4094) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 4095) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 4096) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 4097) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 4098) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 4099) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 4100) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 4101) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 4102) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 4103) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 4104) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIPointer (line 4105) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 4106) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 4107) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 4108) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 4109) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 4110) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 4111) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 4112) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 4113) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 4114) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 4115) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 4116) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 4117) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 4118) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 4119) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 4120) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 4121) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 4122) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 4123) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 4124) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 4125) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_3_1 (line 4127) | class QOpenGLFunctions_3_1(QAbstractOpenGLFunctions): method __init__ (line 4128) | def __init__(self, /) -> None: ... method glActiveTexture (line 4129) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 4130) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 4131) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 4132) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 4133) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 4134) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 4135) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 4136) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 4137) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 4138) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 4139) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindTexture (line 4140) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindVertexArray (line 4141) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 4142) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 4143) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 4144) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 4145) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 4146) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 4147) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 4148) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 4149) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 4150) | def glClear(self, mask: int, /) -> None: ... method glClearBufferfi (line 4151) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 4152) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 4153) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 4154) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 4155) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 4156) | def glClearDepth(self, depth: float, /) -> None: ... method glClearStencil (line 4157) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 4158) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 4159) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 4160) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 4161) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 4162) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 4163) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 4164) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 4165) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 4166) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 4167) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 4168) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 4169) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 4170) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 4171) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4172) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 4173) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 4174) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 4175) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 4176) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 4177) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 4178) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 4179) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 4180) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 4181) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteVertexArrays (line 4182) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 4183) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 4184) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 4185) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 4186) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 4187) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 4188) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 4189) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 4190) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysInstanced (line 4191) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 4192) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 4193) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 4194) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsInstanced (line 4195) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawRangeElements (line 4196) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glEnable (line 4197) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 4198) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 4199) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 4200) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 4201) | def glEndQuery(self, target: int, /) -> None: ... method glEndTransformFeedback (line 4202) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 4203) | def glFinish(self, /) -> None: ... method glFlush (line 4204) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 4205) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture1D (line 4206) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 4207) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 4208) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 4209) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 4210) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 4211) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 4212) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 4213) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 4214) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 4215) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublev (line 4216) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 4217) | def glGetError(self, /) -> int: ... method glGetFloatv (line 4218) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataLocation (line 4219) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 4220) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 4221) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 4222) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 4223) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexImage (line 4224) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 4225) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 4226) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 4227) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 4228) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 4229) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 4230) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 4231) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 4232) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 4233) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 4234) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsShader (line 4235) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 4236) | def glIsTexture(self, texture: int, /) -> int: ... method glIsVertexArray (line 4237) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 4238) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 4239) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 4240) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 4241) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMultiDrawArrays (line 4242) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPixelStoref (line 4243) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 4244) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 4245) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 4246) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 4247) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 4248) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 4249) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 4250) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 4251) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 4252) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glReadBuffer (line 4253) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 4254) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRenderbufferStorage (line 4255) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 4256) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleCoverage (line 4257) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glScissor (line 4258) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glStencilFunc (line 4259) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 4260) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 4261) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 4262) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 4263) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 4264) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 4265) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 4266) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 4267) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage3D (line 4268) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexParameterIiv (line 4269) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 4270) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 4271) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 4272) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 4273) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 4274) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 4275) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 4276) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 4277) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 4278) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 4279) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 4280) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 4281) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 4282) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 4283) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 4284) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 4285) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 4286) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 4287) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 4288) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 4289) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 4290) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 4291) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 4292) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 4293) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 4294) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 4295) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 4296) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 4297) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 4298) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 4299) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 4300) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 4301) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 4302) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 4303) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 4304) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 4305) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 4306) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 4307) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 4308) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 4309) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 4310) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 4311) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 4312) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 4313) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 4314) | def glValidateProgram(self, program: int, /) -> None: ... method glVertexAttribIPointer (line 4315) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 4316) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 4317) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 4318) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_3_2_Compatibility (line 4320) | class QOpenGLFunctions_3_2_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 4321) | def __init__(self, /) -> None: ... method glAccum (line 4322) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 4323) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 4324) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 4325) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 4326) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 4327) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 4328) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 4329) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 4330) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 4331) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 4332) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 4333) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 4334) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 4335) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 4336) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindTexture (line 4337) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindVertexArray (line 4338) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 4339) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 4340) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 4341) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 4342) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 4343) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 4344) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 4345) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 4346) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 4347) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 4348) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 4349) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 4350) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 4351) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 4352) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 4353) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 4354) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 4355) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 4356) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 4357) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 4358) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 4359) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 4360) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 4361) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 4362) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 4363) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 4364) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 4365) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 4366) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 4367) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 4368) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 4369) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 4370) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 4371) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 4372) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 4373) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 4374) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 4375) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 4376) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 4377) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 4378) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 4379) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 4380) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 4381) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 4382) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 4383) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 4384) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 4385) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 4386) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 4387) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 4388) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 4389) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 4390) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 4391) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 4392) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 4393) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 4394) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 4395) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorPointer (line 4396) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 4397) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 4398) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 4399) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 4400) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 4401) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 4402) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 4403) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 4404) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 4405) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 4406) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 4407) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 4408) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 4409) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 4410) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 4411) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 4412) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 4413) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 4414) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 4415) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 4416) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 4417) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 4418) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 4419) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 4420) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 4421) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 4422) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 4423) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4424) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 4425) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 4426) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 4427) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 4428) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 4429) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 4430) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 4431) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 4432) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 4433) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 4434) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteVertexArrays (line 4435) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 4436) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 4437) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 4438) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 4439) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 4440) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 4441) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 4442) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 4443) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 4444) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysInstanced (line 4445) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 4446) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 4447) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 4448) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 4449) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 4450) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 4451) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 4452) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 4453) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 4454) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEdgeFlag (line 4455) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 4456) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 4457) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 4458) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 4459) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 4460) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 4461) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 4462) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 4463) | def glEndList(self, /) -> None: ... method glEndQuery (line 4464) | def glEndQuery(self, target: int, /) -> None: ... method glEndTransformFeedback (line 4465) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 4466) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 4467) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 4468) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 4469) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 4470) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 4471) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 4472) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 4473) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 4474) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 4475) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 4476) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 4477) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 4478) | def glFinish(self, /) -> None: ... method glFlush (line 4479) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 4480) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 4481) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 4482) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 4483) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 4484) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 4485) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 4486) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 4487) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 4488) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferRenderbuffer (line 4489) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 4490) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 4491) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 4492) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 4493) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 4494) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 4495) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 4496) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 4497) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 4498) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 4499) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 4500) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 4501) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 4502) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 4503) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 4504) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 4505) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 4506) | def glGetError(self, /) -> int: ... method glGetFloatv (line 4507) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataLocation (line 4508) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 4509) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 4510) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 4511) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 4512) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 4513) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 4514) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 4515) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexImage (line 4516) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 4517) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 4518) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 4519) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 4520) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 4521) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 4522) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 4523) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 4524) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 4525) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 4526) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 4527) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 4528) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 4529) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 4530) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 4531) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 4532) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 4533) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 4534) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 4535) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 4536) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 4537) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 4538) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 4539) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 4540) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 4541) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 4542) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsShader (line 4543) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 4544) | def glIsTexture(self, texture: int, /) -> int: ... method glIsVertexArray (line 4545) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 4546) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 4547) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 4548) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 4549) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 4550) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 4551) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 4552) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 4553) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 4554) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 4555) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 4556) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 4557) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 4558) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 4559) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 4560) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 4561) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 4562) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 4563) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 4564) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 4565) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 4566) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 4567) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 4568) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 4569) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 4570) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 4571) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 4572) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 4573) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 4574) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 4575) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 4576) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 4577) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 4578) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 4579) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 4580) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 4581) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 4582) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 4583) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 4584) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 4585) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 4586) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 4587) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 4588) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 4589) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 4590) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 4591) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 4592) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 4593) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 4594) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 4595) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 4596) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 4597) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 4598) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 4599) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 4600) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 4601) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 4602) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 4603) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 4604) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 4605) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 4606) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 4607) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 4608) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 4609) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 4610) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 4611) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 4612) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 4613) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 4614) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 4615) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 4616) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glNewList (line 4617) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 4618) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 4619) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 4620) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 4621) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 4622) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 4623) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 4624) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 4625) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 4626) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 4627) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalPointer (line 4628) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 4629) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 4630) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 4631) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 4632) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 4633) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 4634) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 4635) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 4636) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 4637) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 4638) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 4639) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 4640) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 4641) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 4642) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 4643) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 4644) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 4645) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 4646) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 4647) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 4648) | def glPopMatrix(self, /) -> None: ... method glPopName (line 4649) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 4650) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 4651) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProvokingVertex (line 4652) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 4653) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 4654) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 4655) | def glPushMatrix(self, /) -> None: ... method glPushName (line 4656) | def glPushName(self, name: int, /) -> None: ... method glRasterPos2d (line 4657) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 4658) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 4659) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 4660) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 4661) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 4662) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 4663) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 4664) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 4665) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 4666) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 4667) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 4668) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 4669) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 4670) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 4671) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 4672) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 4673) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 4674) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 4675) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 4676) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 4677) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 4678) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 4679) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 4680) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 4681) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 4682) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 4683) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 4684) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 4685) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 4686) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 4687) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 4688) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 4689) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 4690) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 4691) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 4692) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 4693) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 4694) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 4695) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 4696) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 4697) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 4698) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 4699) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glScaled (line 4700) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 4701) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 4702) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 4703) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 4704) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 4705) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 4706) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 4707) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 4708) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 4709) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 4710) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 4711) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 4712) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 4713) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 4714) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 4715) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 4716) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 4717) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 4718) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorPointer (line 4719) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 4720) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 4721) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 4722) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 4723) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 4724) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 4725) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 4726) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 4727) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 4728) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 4729) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 4730) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 4731) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 4732) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 4733) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 4734) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 4735) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 4736) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 4737) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 4738) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 4739) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 4740) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 4741) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 4742) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 4743) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 4744) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 4745) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 4746) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 4747) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 4748) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 4749) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 4750) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 4751) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 4752) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 4753) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 4754) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 4755) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 4756) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 4757) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 4758) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 4759) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 4760) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordPointer (line 4761) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 4762) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 4763) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 4764) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 4765) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 4766) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 4767) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 4768) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 4769) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 4770) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 4771) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 4772) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 4773) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 4774) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 4775) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 4776) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 4777) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 4778) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 4779) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 4780) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 4781) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 4782) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 4783) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 4784) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 4785) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 4786) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 4787) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1f (line 4788) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 4789) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 4790) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 4791) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 4792) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 4793) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 4794) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 4795) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 4796) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 4797) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 4798) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 4799) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 4800) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 4801) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 4802) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 4803) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 4804) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 4805) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 4806) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 4807) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 4808) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 4809) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 4810) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 4811) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 4812) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 4813) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 4814) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 4815) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 4816) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 4817) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 4818) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 4819) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 4820) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 4821) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 4822) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 4823) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 4824) | def glValidateProgram(self, program: int, /) -> None: ... method glVertex2d (line 4825) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 4826) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 4827) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 4828) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 4829) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 4830) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 4831) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 4832) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 4833) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 4834) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 4835) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 4836) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 4837) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 4838) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 4839) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 4840) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 4841) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 4842) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 4843) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 4844) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 4845) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 4846) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 4847) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 4848) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 4849) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 4850) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 4851) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 4852) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 4853) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 4854) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 4855) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 4856) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 4857) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 4858) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 4859) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 4860) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 4861) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 4862) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 4863) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 4864) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 4865) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 4866) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 4867) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 4868) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 4869) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 4870) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 4871) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 4872) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 4873) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 4874) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 4875) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 4876) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 4877) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 4878) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 4879) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 4880) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 4881) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 4882) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 4883) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 4884) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1i (line 4885) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 4886) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 4887) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 4888) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 4889) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 4890) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 4891) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 4892) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 4893) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 4894) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 4895) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 4896) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 4897) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 4898) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 4899) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 4900) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 4901) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 4902) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 4903) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 4904) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIPointer (line 4905) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 4906) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexPointer (line 4907) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 4908) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 4909) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 4910) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 4911) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 4912) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 4913) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 4914) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 4915) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 4916) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 4917) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 4918) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 4919) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 4920) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 4921) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 4922) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 4923) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 4924) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 4925) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_3_2_Core (line 4927) | class QOpenGLFunctions_3_2_Core(QAbstractOpenGLFunctions): method __init__ (line 4928) | def __init__(self, /) -> None: ... method glActiveTexture (line 4929) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 4930) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 4931) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 4932) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 4933) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 4934) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 4935) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 4936) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 4937) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFramebuffer (line 4938) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 4939) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindTexture (line 4940) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindVertexArray (line 4941) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 4942) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 4943) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 4944) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 4945) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 4946) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 4947) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 4948) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 4949) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 4950) | def glClear(self, mask: int, /) -> None: ... method glClearBufferfi (line 4951) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 4952) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 4953) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 4954) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 4955) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 4956) | def glClearDepth(self, depth: float, /) -> None: ... method glClearStencil (line 4957) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 4958) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 4959) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 4960) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 4961) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 4962) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 4963) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 4964) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 4965) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 4966) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 4967) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 4968) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 4969) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 4970) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 4971) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 4972) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 4973) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 4974) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 4975) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 4976) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 4977) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 4978) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 4979) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteShader (line 4980) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 4981) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteVertexArrays (line 4982) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 4983) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 4984) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 4985) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 4986) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 4987) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 4988) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 4989) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 4990) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysInstanced (line 4991) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 4992) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 4993) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 4994) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 4995) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 4996) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 4997) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 4998) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 4999) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEnable (line 5000) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 5001) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 5002) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 5003) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 5004) | def glEndQuery(self, target: int, /) -> None: ... method glEndTransformFeedback (line 5005) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 5006) | def glFinish(self, /) -> None: ... method glFlush (line 5007) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 5008) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 5009) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 5010) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 5011) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 5012) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 5013) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 5014) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 5015) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 5016) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 5017) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 5018) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 5019) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublev (line 5020) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 5021) | def glGetError(self, /) -> int: ... method glGetFloatv (line 5022) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataLocation (line 5023) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 5024) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 5025) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 5026) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 5027) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexImage (line 5028) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 5029) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 5030) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 5031) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 5032) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 5033) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 5034) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 5035) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 5036) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 5037) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 5038) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsShader (line 5039) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 5040) | def glIsTexture(self, texture: int, /) -> int: ... method glIsVertexArray (line 5041) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 5042) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 5043) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 5044) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 5045) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMultiDrawArrays (line 5046) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPixelStoref (line 5047) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 5048) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 5049) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 5050) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 5051) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 5052) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 5053) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 5054) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 5055) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 5056) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProvokingVertex (line 5057) | def glProvokingVertex(self, mode: int, /) -> None: ... method glReadBuffer (line 5058) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 5059) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRenderbufferStorage (line 5060) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 5061) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleCoverage (line 5062) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 5063) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glScissor (line 5064) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glStencilFunc (line 5065) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 5066) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 5067) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 5068) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 5069) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 5070) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 5071) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 5072) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 5073) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 5074) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 5075) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 5076) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 5077) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 5078) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 5079) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 5080) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 5081) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 5082) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 5083) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 5084) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 5085) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 5086) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 5087) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 5088) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 5089) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 5090) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 5091) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 5092) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 5093) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 5094) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 5095) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 5096) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 5097) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 5098) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 5099) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 5100) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 5101) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 5102) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 5103) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 5104) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 5105) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 5106) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 5107) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 5108) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 5109) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 5110) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 5111) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 5112) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 5113) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 5114) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 5115) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 5116) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 5117) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 5118) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 5119) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 5120) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 5121) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 5122) | def glValidateProgram(self, program: int, /) -> None: ... method glVertexAttribIPointer (line 5123) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribPointer (line 5124) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 5125) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 5126) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_3_3_Compatibility (line 5128) | class QOpenGLFunctions_3_3_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 5129) | def __init__(self, /) -> None: ... method glAccum (line 5130) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 5131) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 5132) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 5133) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 5134) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 5135) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 5136) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 5137) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 5138) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 5139) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 5140) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 5141) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 5142) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 5143) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 5144) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 5145) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 5146) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 5147) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindVertexArray (line 5148) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 5149) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 5150) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 5151) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 5152) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 5153) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 5154) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 5155) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 5156) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 5157) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 5158) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 5159) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 5160) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 5161) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 5162) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 5163) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 5164) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 5165) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 5166) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 5167) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 5168) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 5169) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 5170) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 5171) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 5172) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 5173) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 5174) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 5175) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 5176) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 5177) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 5178) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 5179) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 5180) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 5181) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 5182) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 5183) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 5184) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 5185) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 5186) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 5187) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 5188) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 5189) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 5190) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 5191) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 5192) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 5193) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 5194) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 5195) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 5196) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 5197) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 5198) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 5199) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 5200) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 5201) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 5202) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 5203) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 5204) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 5205) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 5206) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 5207) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 5208) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 5209) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 5210) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 5211) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 5212) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 5213) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 5214) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 5215) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 5216) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 5217) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 5218) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 5219) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 5220) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 5221) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 5222) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 5223) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 5224) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 5225) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 5226) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 5227) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 5228) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 5229) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 5230) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 5231) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 5232) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 5233) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 5234) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 5235) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 5236) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 5237) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 5238) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 5239) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 5240) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 5241) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 5242) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 5243) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 5244) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 5245) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 5246) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 5247) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 5248) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 5249) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteVertexArrays (line 5250) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 5251) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 5252) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 5253) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 5254) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 5255) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 5256) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 5257) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 5258) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 5259) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysInstanced (line 5260) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 5261) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 5262) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 5263) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 5264) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 5265) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 5266) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 5267) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 5268) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 5269) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEdgeFlag (line 5270) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 5271) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 5272) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 5273) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 5274) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 5275) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 5276) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 5277) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 5278) | def glEndList(self, /) -> None: ... method glEndQuery (line 5279) | def glEndQuery(self, target: int, /) -> None: ... method glEndTransformFeedback (line 5280) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 5281) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 5282) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 5283) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 5284) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 5285) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 5286) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 5287) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 5288) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 5289) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 5290) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 5291) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 5292) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 5293) | def glFinish(self, /) -> None: ... method glFlush (line 5294) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 5295) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 5296) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 5297) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 5298) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 5299) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 5300) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 5301) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 5302) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 5303) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferRenderbuffer (line 5304) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 5305) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 5306) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 5307) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 5308) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 5309) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 5310) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 5311) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 5312) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 5313) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 5314) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 5315) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 5316) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 5317) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 5318) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 5319) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 5320) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 5321) | def glGetError(self, /) -> int: ... method glGetFloatv (line 5322) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 5323) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 5324) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 5325) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 5326) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 5327) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 5328) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 5329) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 5330) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 5331) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexImage (line 5332) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 5333) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 5334) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 5335) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 5336) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 5337) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 5338) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 5339) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 5340) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 5341) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 5342) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 5343) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 5344) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 5345) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 5346) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 5347) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 5348) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 5349) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 5350) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 5351) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 5352) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 5353) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 5354) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 5355) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 5356) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 5357) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 5358) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 5359) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 5360) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 5361) | def glIsTexture(self, texture: int, /) -> int: ... method glIsVertexArray (line 5362) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 5363) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 5364) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 5365) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 5366) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 5367) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 5368) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 5369) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 5370) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 5371) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 5372) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 5373) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 5374) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 5375) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 5376) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 5377) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 5378) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 5379) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 5380) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 5381) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 5382) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 5383) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 5384) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 5385) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 5386) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 5387) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 5388) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 5389) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 5390) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 5391) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 5392) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 5393) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 5394) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 5395) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinmax (line 5396) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 5397) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 5398) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 5399) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 5400) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 5401) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 5402) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 5403) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 5404) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 5405) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 5406) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 5407) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 5408) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 5409) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 5410) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 5411) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 5412) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 5413) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 5414) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 5415) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 5416) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 5417) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 5418) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 5419) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 5420) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 5421) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 5422) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 5423) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 5424) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 5425) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 5426) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 5427) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 5428) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 5429) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 5430) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 5431) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 5432) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 5433) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 5434) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 5435) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 5436) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 5437) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 5438) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 5439) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 5440) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 5441) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 5442) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 5443) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 5444) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 5445) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 5446) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 5447) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 5448) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 5449) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 5450) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 5451) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 5452) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 5453) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 5454) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 5455) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 5456) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 5457) | def glPassThrough(self, token: float, /) -> None: ... method glPixelMapfv (line 5458) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 5459) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 5460) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 5461) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 5462) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 5463) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 5464) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 5465) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 5466) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 5467) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 5468) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 5469) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 5470) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 5471) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 5472) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 5473) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 5474) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 5475) | def glPopMatrix(self, /) -> None: ... method glPopName (line 5476) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 5477) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 5478) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProvokingVertex (line 5479) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 5480) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 5481) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 5482) | def glPushMatrix(self, /) -> None: ... method glPushName (line 5483) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 5484) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 5485) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 5486) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 5487) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 5488) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 5489) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 5490) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 5491) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 5492) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 5493) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 5494) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 5495) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 5496) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 5497) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 5498) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 5499) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 5500) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 5501) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 5502) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 5503) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 5504) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 5505) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 5506) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 5507) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 5508) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 5509) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 5510) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 5511) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 5512) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 5513) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 5514) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 5515) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 5516) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 5517) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 5518) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 5519) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 5520) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 5521) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 5522) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 5523) | def glResetMinmax(self, target: int, /) -> None: ... method glRotated (line 5524) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 5525) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 5526) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 5527) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 5528) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 5529) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 5530) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 5531) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 5532) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 5533) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 5534) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 5535) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 5536) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 5537) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 5538) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 5539) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 5540) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 5541) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 5542) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 5543) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 5544) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 5545) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 5546) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 5547) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 5548) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 5549) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 5550) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 5551) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 5552) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 5553) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 5554) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 5555) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 5556) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 5557) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 5558) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 5559) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 5560) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 5561) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 5562) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 5563) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 5564) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 5565) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 5566) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 5567) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 5568) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 5569) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 5570) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 5571) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 5572) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 5573) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 5574) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 5575) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 5576) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 5577) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 5578) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 5579) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 5580) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 5581) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 5582) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 5583) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 5584) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 5585) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 5586) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 5587) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 5588) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 5589) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 5590) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 5591) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 5592) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 5593) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 5594) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 5595) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 5596) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 5597) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 5598) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 5599) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 5600) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 5601) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 5602) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 5603) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 5604) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 5605) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 5606) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 5607) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 5608) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 5609) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 5610) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 5611) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 5612) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 5613) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 5614) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 5615) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 5616) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 5617) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 5618) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 5619) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 5620) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 5621) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 5622) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 5623) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 5624) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 5625) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 5626) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 5627) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 5628) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 5629) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 5630) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 5631) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1f (line 5632) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 5633) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 5634) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 5635) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 5636) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 5637) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 5638) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 5639) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 5640) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 5641) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 5642) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 5643) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 5644) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 5645) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 5646) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 5647) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 5648) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 5649) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 5650) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 5651) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 5652) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 5653) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 5654) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 5655) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 5656) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 5657) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 5658) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 5659) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 5660) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 5661) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 5662) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 5663) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 5664) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 5665) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 5666) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 5667) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 5668) | def glValidateProgram(self, program: int, /) -> None: ... method glVertex2d (line 5669) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 5670) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 5671) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 5672) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 5673) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 5674) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 5675) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 5676) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 5677) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 5678) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 5679) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 5680) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 5681) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 5682) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 5683) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 5684) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 5685) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 5686) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 5687) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 5688) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 5689) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 5690) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 5691) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 5692) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 5693) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 5694) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 5695) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 5696) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 5697) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 5698) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 5699) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 5700) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 5701) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 5702) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 5703) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 5704) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 5705) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 5706) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 5707) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 5708) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 5709) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 5710) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 5711) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 5712) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 5713) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 5714) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 5715) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 5716) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 5717) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 5718) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 5719) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 5720) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 5721) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 5722) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 5723) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 5724) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 5725) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 5726) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 5727) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 5728) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribDivisor (line 5729) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribI1i (line 5730) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 5731) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 5732) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 5733) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 5734) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 5735) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 5736) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 5737) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 5738) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 5739) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 5740) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 5741) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 5742) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 5743) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 5744) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 5745) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 5746) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 5747) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 5748) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 5749) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIPointer (line 5750) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 5751) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 5752) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 5753) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 5754) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 5755) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 5756) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 5757) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 5758) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 5759) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 5760) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 5761) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 5762) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 5763) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 5764) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 5765) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 5766) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 5767) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 5768) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 5769) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 5770) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 5771) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 5772) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 5773) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 5774) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 5775) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 5776) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 5777) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 5778) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 5779) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 5780) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 5781) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 5782) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 5783) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 5784) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_3_3_Core (line 5786) | class QOpenGLFunctions_3_3_Core(QAbstractOpenGLFunctions): method __init__ (line 5787) | def __init__(self, /) -> None: ... method glActiveTexture (line 5788) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 5789) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 5790) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 5791) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginTransformFeedback (line 5792) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 5793) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 5794) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 5795) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 5796) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 5797) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 5798) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 5799) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 5800) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 5801) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindVertexArray (line 5802) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 5803) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 5804) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 5805) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendFunc (line 5806) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 5807) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlitFramebuffer (line 5808) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 5809) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 5810) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 5811) | def glClear(self, mask: int, /) -> None: ... method glClearBufferfi (line 5812) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 5813) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 5814) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 5815) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 5816) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 5817) | def glClearDepth(self, depth: float, /) -> None: ... method glClearStencil (line 5818) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 5819) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 5820) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 5821) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 5822) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 5823) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 5824) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 5825) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 5826) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 5827) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 5828) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 5829) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 5830) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 5831) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 5832) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 5833) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 5834) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 5835) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 5836) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 5837) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 5838) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 5839) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 5840) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 5841) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 5842) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 5843) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteVertexArrays (line 5844) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 5845) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 5846) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 5847) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 5848) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 5849) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 5850) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 5851) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 5852) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysInstanced (line 5853) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 5854) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 5855) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 5856) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 5857) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsInstanced (line 5858) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 5859) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 5860) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 5861) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glEnable (line 5862) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 5863) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 5864) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 5865) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 5866) | def glEndQuery(self, target: int, /) -> None: ... method glEndTransformFeedback (line 5867) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 5868) | def glFinish(self, /) -> None: ... method glFlush (line 5869) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 5870) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 5871) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 5872) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 5873) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 5874) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 5875) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 5876) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 5877) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 5878) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 5879) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 5880) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 5881) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublev (line 5882) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 5883) | def glGetError(self, /) -> int: ... method glGetFloatv (line 5884) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 5885) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 5886) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 5887) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 5888) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 5889) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 5890) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetTexImage (line 5891) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 5892) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 5893) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 5894) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 5895) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 5896) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 5897) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 5898) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 5899) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 5900) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 5901) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 5902) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 5903) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 5904) | def glIsTexture(self, texture: int, /) -> int: ... method glIsVertexArray (line 5905) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 5906) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 5907) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 5908) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 5909) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMultiDrawArrays (line 5910) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPixelStoref (line 5911) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 5912) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 5913) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 5914) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 5915) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 5916) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 5917) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 5918) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 5919) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 5920) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProvokingVertex (line 5921) | def glProvokingVertex(self, mode: int, /) -> None: ... method glQueryCounter (line 5922) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 5923) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 5924) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRenderbufferStorage (line 5925) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 5926) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glSampleCoverage (line 5927) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 5928) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 5929) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 5930) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 5931) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 5932) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 5933) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 5934) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 5935) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glStencilFunc (line 5936) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 5937) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 5938) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 5939) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 5940) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 5941) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 5942) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 5943) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 5944) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 5945) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 5946) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 5947) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 5948) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 5949) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 5950) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 5951) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 5952) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 5953) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 5954) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 5955) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 5956) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1f (line 5957) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 5958) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 5959) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 5960) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 5961) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 5962) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2f (line 5963) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 5964) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 5965) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 5966) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 5967) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 5968) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3f (line 5969) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 5970) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 5971) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 5972) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 5973) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 5974) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4f (line 5975) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 5976) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 5977) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 5978) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 5979) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 5980) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 5981) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2fv (line 5982) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3fv (line 5983) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 5984) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3fv (line 5985) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2fv (line 5986) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 5987) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4fv (line 5988) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2fv (line 5989) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 5990) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUnmapBuffer (line 5991) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 5992) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 5993) | def glValidateProgram(self, program: int, /) -> None: ... method glVertexAttribDivisor (line 5994) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribIPointer (line 5995) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 5996) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 5997) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 5998) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 5999) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 6000) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 6001) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 6002) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 6003) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 6004) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 6005) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 6006) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_0_Compatibility (line 6008) | class QOpenGLFunctions_4_0_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 6009) | def __init__(self, /) -> None: ... method glAccum (line 6010) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveTexture (line 6011) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 6012) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 6013) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 6014) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 6015) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 6016) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 6017) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 6018) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 6019) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 6020) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 6021) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 6022) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 6023) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 6024) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 6025) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 6026) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 6027) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 6028) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 6029) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 6030) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 6031) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 6032) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 6033) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 6034) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 6035) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 6036) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 6037) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 6038) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 6039) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 6040) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 6041) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 6042) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 6043) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 6044) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 6045) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 6046) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 6047) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 6048) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 6049) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 6050) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 6051) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 6052) | def glClearDepth(self, depth: float, /) -> None: ... method glClearIndex (line 6053) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 6054) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 6055) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 6056) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 6057) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 6058) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 6059) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 6060) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 6061) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 6062) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 6063) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 6064) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 6065) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 6066) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 6067) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 6068) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 6069) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 6070) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 6071) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 6072) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 6073) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 6074) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 6075) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 6076) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 6077) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 6078) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 6079) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 6080) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 6081) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 6082) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 6083) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 6084) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 6085) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 6086) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 6087) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 6088) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 6089) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 6090) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 6091) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 6092) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 6093) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 6094) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 6095) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 6096) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 6097) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 6098) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 6099) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 6100) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 6101) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 6102) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 6103) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 6104) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 6105) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 6106) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 6107) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 6108) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 6109) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 6110) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 6111) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 6112) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 6113) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 6114) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 6115) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 6116) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 6117) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 6118) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 6119) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 6120) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 6121) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 6122) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 6123) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 6124) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 6125) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 6126) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 6127) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 6128) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 6129) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 6130) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 6131) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 6132) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 6133) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 6134) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 6135) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 6136) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 6137) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 6138) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 6139) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 6140) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 6141) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 6142) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 6143) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 6144) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 6145) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 6146) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 6147) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 6148) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 6149) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 6150) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 6151) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 6152) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 6153) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 6154) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 6155) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 6156) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 6157) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 6158) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 6159) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackStream (line 6160) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEdgeFlag (line 6161) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 6162) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 6163) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 6164) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 6165) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 6166) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 6167) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 6168) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 6169) | def glEndList(self, /) -> None: ... method glEndQuery (line 6170) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 6171) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 6172) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 6173) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 6174) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 6175) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 6176) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 6177) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 6178) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 6179) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 6180) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 6181) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 6182) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 6183) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 6184) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 6185) | def glFinish(self, /) -> None: ... method glFlush (line 6186) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 6187) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 6188) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 6189) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 6190) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 6191) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 6192) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 6193) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 6194) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 6195) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferRenderbuffer (line 6196) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 6197) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 6198) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 6199) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 6200) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 6201) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 6202) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 6203) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 6204) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 6205) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 6206) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 6207) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 6208) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 6209) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 6210) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 6211) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublev (line 6212) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 6213) | def glGetError(self, /) -> int: ... method glGetFloatv (line 6214) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 6215) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 6216) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 6217) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 6218) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 6219) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 6220) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 6221) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 6222) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 6223) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 6224) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 6225) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 6226) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 6227) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 6228) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 6229) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 6230) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 6231) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 6232) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 6233) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 6234) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 6235) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 6236) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 6237) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 6238) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 6239) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 6240) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 6241) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 6242) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 6243) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 6244) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 6245) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 6246) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 6247) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 6248) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 6249) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 6250) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 6251) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 6252) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 6253) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 6254) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 6255) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 6256) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 6257) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 6258) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 6259) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 6260) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 6261) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 6262) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 6263) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 6264) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 6265) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 6266) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 6267) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 6268) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 6269) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 6270) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 6271) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 6272) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 6273) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 6274) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 6275) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 6276) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 6277) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 6278) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 6279) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 6280) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 6281) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 6282) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 6283) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 6284) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 6285) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 6286) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 6287) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 6288) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 6289) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 6290) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinSampleShading (line 6291) | def glMinSampleShading(self, value: float, /) -> None: ... method glMinmax (line 6292) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 6293) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 6294) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 6295) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 6296) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 6297) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 6298) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 6299) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 6300) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 6301) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 6302) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 6303) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 6304) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 6305) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 6306) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 6307) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 6308) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 6309) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 6310) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 6311) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 6312) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 6313) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 6314) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 6315) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 6316) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 6317) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 6318) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 6319) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 6320) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 6321) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 6322) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 6323) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 6324) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 6325) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 6326) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 6327) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 6328) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 6329) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 6330) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 6331) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 6332) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 6333) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 6334) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 6335) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 6336) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 6337) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 6338) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 6339) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 6340) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 6341) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 6342) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 6343) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 6344) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 6345) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 6346) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 6347) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 6348) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 6349) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 6350) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 6351) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 6352) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 6353) | def glPassThrough(self, token: float, /) -> None: ... method glPatchParameterfv (line 6354) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 6355) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 6356) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelMapfv (line 6357) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 6358) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 6359) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 6360) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 6361) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 6362) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 6363) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 6364) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 6365) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 6366) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 6367) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 6368) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 6369) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 6370) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 6371) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 6372) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 6373) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 6374) | def glPopMatrix(self, /) -> None: ... method glPopName (line 6375) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 6376) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 6377) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProvokingVertex (line 6378) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 6379) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 6380) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 6381) | def glPushMatrix(self, /) -> None: ... method glPushName (line 6382) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 6383) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 6384) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 6385) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 6386) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 6387) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 6388) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 6389) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 6390) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 6391) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 6392) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 6393) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 6394) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 6395) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 6396) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 6397) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 6398) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 6399) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 6400) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 6401) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 6402) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 6403) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 6404) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 6405) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 6406) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 6407) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 6408) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 6409) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 6410) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 6411) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 6412) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 6413) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 6414) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 6415) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 6416) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 6417) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRenderMode (line 6418) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 6419) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 6420) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 6421) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 6422) | def glResetMinmax(self, target: int, /) -> None: ... method glResumeTransformFeedback (line 6423) | def glResumeTransformFeedback(self, /) -> None: ... method glRotated (line 6424) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 6425) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 6426) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 6427) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 6428) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 6429) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 6430) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 6431) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 6432) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 6433) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 6434) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 6435) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 6436) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glSecondaryColor3b (line 6437) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 6438) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 6439) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 6440) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 6441) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 6442) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 6443) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 6444) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 6445) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 6446) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 6447) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 6448) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 6449) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 6450) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 6451) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 6452) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 6453) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 6454) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 6455) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 6456) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 6457) | def glShadeModel(self, mode: int, /) -> None: ... method glStencilFunc (line 6458) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 6459) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 6460) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 6461) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 6462) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 6463) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 6464) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 6465) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 6466) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 6467) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 6468) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 6469) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 6470) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 6471) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 6472) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 6473) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 6474) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 6475) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 6476) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 6477) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 6478) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 6479) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 6480) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 6481) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 6482) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 6483) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 6484) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 6485) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 6486) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 6487) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 6488) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 6489) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 6490) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 6491) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 6492) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 6493) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 6494) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 6495) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 6496) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 6497) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 6498) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 6499) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 6500) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 6501) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 6502) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 6503) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 6504) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 6505) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 6506) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 6507) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 6508) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 6509) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 6510) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 6511) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 6512) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 6513) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 6514) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 6515) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 6516) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 6517) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 6518) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 6519) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 6520) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 6521) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 6522) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 6523) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 6524) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 6525) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 6526) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 6527) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 6528) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 6529) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 6530) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 6531) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1d (line 6532) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 6533) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 6534) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 6535) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 6536) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 6537) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 6538) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 6539) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 6540) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 6541) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 6542) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 6543) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 6544) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 6545) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 6546) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 6547) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 6548) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 6549) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 6550) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 6551) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 6552) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 6553) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 6554) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 6555) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 6556) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 6557) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 6558) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 6559) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 6560) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 6561) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 6562) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 6563) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 6564) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 6565) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 6566) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 6567) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 6568) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 6569) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 6570) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 6571) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 6572) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 6573) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 6574) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 6575) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 6576) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 6577) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 6578) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 6579) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 6580) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 6581) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 6582) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 6583) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 6584) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 6585) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 6586) | def glValidateProgram(self, program: int, /) -> None: ... method glVertex2d (line 6587) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 6588) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 6589) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 6590) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 6591) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 6592) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 6593) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 6594) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 6595) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 6596) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 6597) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 6598) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 6599) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 6600) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 6601) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 6602) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 6603) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 6604) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 6605) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 6606) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 6607) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 6608) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 6609) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 6610) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 6611) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 6612) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 6613) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 6614) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 6615) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 6616) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 6617) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 6618) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 6619) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 6620) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 6621) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 6622) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 6623) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 6624) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 6625) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 6626) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 6627) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 6628) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 6629) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 6630) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 6631) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 6632) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 6633) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 6634) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 6635) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 6636) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 6637) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 6638) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 6639) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 6640) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 6641) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 6642) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 6643) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 6644) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 6645) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 6646) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribDivisor (line 6647) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribI1i (line 6648) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 6649) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 6650) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 6651) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 6652) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 6653) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 6654) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 6655) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 6656) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 6657) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 6658) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 6659) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 6660) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 6661) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 6662) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 6663) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 6664) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 6665) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 6666) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 6667) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIPointer (line 6668) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 6669) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 6670) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 6671) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 6672) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 6673) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 6674) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 6675) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 6676) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 6677) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 6678) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 6679) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 6680) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 6681) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 6682) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 6683) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 6684) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 6685) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glWindowPos2d (line 6686) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 6687) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 6688) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 6689) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 6690) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 6691) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 6692) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 6693) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 6694) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 6695) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 6696) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 6697) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 6698) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 6699) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 6700) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 6701) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 6702) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_0_Core (line 6704) | class QOpenGLFunctions_4_0_Core(QAbstractOpenGLFunctions): method __init__ (line 6705) | def __init__(self, /) -> None: ... method glActiveTexture (line 6706) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 6707) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 6708) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 6709) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 6710) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 6711) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 6712) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 6713) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 6714) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 6715) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 6716) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 6717) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindRenderbuffer (line 6718) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 6719) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 6720) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 6721) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 6722) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 6723) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 6724) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 6725) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 6726) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 6727) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 6728) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 6729) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 6730) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 6731) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 6732) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 6733) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 6734) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 6735) | def glClear(self, mask: int, /) -> None: ... method glClearBufferfi (line 6736) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 6737) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 6738) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 6739) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 6740) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 6741) | def glClearDepth(self, depth: float, /) -> None: ... method glClearStencil (line 6742) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 6743) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 6744) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 6745) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 6746) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 6747) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 6748) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 6749) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 6750) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 6751) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 6752) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 6753) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 6754) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 6755) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 6756) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 6757) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 6758) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 6759) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 6760) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 6761) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 6762) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteQueries (line 6763) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 6764) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 6765) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 6766) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 6767) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 6768) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 6769) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 6770) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 6771) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 6772) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDetachShader (line 6773) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 6774) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 6775) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 6776) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 6777) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 6778) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 6779) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 6780) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 6781) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 6782) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 6783) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 6784) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 6785) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 6786) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 6787) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 6788) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 6789) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackStream (line 6790) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEnable (line 6791) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 6792) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 6793) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 6794) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 6795) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 6796) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 6797) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 6798) | def glFinish(self, /) -> None: ... method glFlush (line 6799) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 6800) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 6801) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 6802) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 6803) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 6804) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 6805) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 6806) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 6807) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 6808) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 6809) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 6810) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 6811) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublev (line 6812) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 6813) | def glGetError(self, /) -> int: ... method glGetFloatv (line 6814) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 6815) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 6816) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 6817) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 6818) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 6819) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 6820) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 6821) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 6822) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 6823) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 6824) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 6825) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 6826) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 6827) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 6828) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 6829) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 6830) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 6831) | def glIsProgram(self, program: int, /) -> int: ... method glIsQuery (line 6832) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 6833) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 6834) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 6835) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 6836) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 6837) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 6838) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 6839) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 6840) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 6841) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 6842) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMinSampleShading (line 6843) | def glMinSampleShading(self, value: float, /) -> None: ... method glMultiDrawArrays (line 6844) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPatchParameterfv (line 6845) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 6846) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 6847) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelStoref (line 6848) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 6849) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 6850) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 6851) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 6852) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 6853) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 6854) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 6855) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 6856) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 6857) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProvokingVertex (line 6858) | def glProvokingVertex(self, mode: int, /) -> None: ... method glQueryCounter (line 6859) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 6860) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 6861) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRenderbufferStorage (line 6862) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 6863) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 6864) | def glResumeTransformFeedback(self, /) -> None: ... method glSampleCoverage (line 6865) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 6866) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 6867) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 6868) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 6869) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 6870) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 6871) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 6872) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 6873) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glStencilFunc (line 6874) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 6875) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 6876) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 6877) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 6878) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 6879) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 6880) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 6881) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 6882) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 6883) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 6884) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 6885) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 6886) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 6887) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 6888) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 6889) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 6890) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 6891) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 6892) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 6893) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 6894) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1d (line 6895) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 6896) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 6897) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 6898) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 6899) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 6900) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 6901) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 6902) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 6903) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 6904) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 6905) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 6906) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 6907) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 6908) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 6909) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 6910) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 6911) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 6912) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 6913) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 6914) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 6915) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 6916) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 6917) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 6918) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 6919) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 6920) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 6921) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 6922) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 6923) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 6924) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 6925) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 6926) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 6927) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 6928) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 6929) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 6930) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 6931) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 6932) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 6933) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 6934) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 6935) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 6936) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 6937) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 6938) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 6939) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 6940) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 6941) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 6942) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 6943) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 6944) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 6945) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 6946) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 6947) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 6948) | def glUseProgram(self, program: int, /) -> None: ... method glValidateProgram (line 6949) | def glValidateProgram(self, program: int, /) -> None: ... method glVertexAttribDivisor (line 6950) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribIPointer (line 6951) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 6952) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 6953) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 6954) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 6955) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 6956) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 6957) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 6958) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 6959) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 6960) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 6961) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method initializeOpenGLFunctions (line 6962) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_1_Compatibility (line 6964) | class QOpenGLFunctions_4_1_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 6965) | def __init__(self, /) -> None: ... method glAccum (line 6966) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveShaderProgram (line 6967) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 6968) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 6969) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 6970) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 6971) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 6972) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 6973) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 6974) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 6975) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 6976) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 6977) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 6978) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 6979) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 6980) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 6981) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 6982) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindProgramPipeline (line 6983) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 6984) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 6985) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 6986) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 6987) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 6988) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 6989) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 6990) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 6991) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 6992) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 6993) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 6994) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 6995) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 6996) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 6997) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 6998) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 6999) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 7000) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 7001) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 7002) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 7003) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 7004) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 7005) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 7006) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 7007) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 7008) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 7009) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 7010) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 7011) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearIndex (line 7012) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 7013) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 7014) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 7015) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 7016) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 7017) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 7018) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 7019) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 7020) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 7021) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 7022) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 7023) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 7024) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 7025) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 7026) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 7027) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 7028) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 7029) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 7030) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 7031) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 7032) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 7033) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 7034) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 7035) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 7036) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 7037) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 7038) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 7039) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 7040) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 7041) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 7042) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 7043) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 7044) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 7045) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 7046) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 7047) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 7048) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 7049) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 7050) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 7051) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 7052) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 7053) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 7054) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 7055) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 7056) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 7057) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 7058) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 7059) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 7060) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 7061) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 7062) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 7063) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 7064) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 7065) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 7066) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 7067) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 7068) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 7069) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 7070) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 7071) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 7072) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 7073) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 7074) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 7075) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 7076) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 7077) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 7078) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 7079) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 7080) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 7081) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 7082) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 7083) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 7084) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 7085) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 7086) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 7087) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 7088) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 7089) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 7090) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 7091) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 7092) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 7093) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 7094) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 7095) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 7096) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 7097) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 7098) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 7099) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 7100) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 7101) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 7102) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 7103) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 7104) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 7105) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 7106) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 7107) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 7108) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 7109) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 7110) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 7111) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 7112) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 7113) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 7114) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 7115) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 7116) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 7117) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 7118) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawPixels (line 7119) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 7120) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 7121) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 7122) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackStream (line 7123) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEdgeFlag (line 7124) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 7125) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 7126) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 7127) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 7128) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 7129) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 7130) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 7131) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 7132) | def glEndList(self, /) -> None: ... method glEndQuery (line 7133) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 7134) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 7135) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 7136) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 7137) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 7138) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 7139) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 7140) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 7141) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 7142) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 7143) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 7144) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 7145) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 7146) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 7147) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 7148) | def glFinish(self, /) -> None: ... method glFlush (line 7149) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 7150) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 7151) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 7152) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 7153) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 7154) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 7155) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 7156) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 7157) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 7158) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferRenderbuffer (line 7159) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 7160) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 7161) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 7162) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 7163) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 7164) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 7165) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 7166) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 7167) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 7168) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 7169) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 7170) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 7171) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 7172) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 7173) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 7174) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublei_v (line 7175) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 7176) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 7177) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 7178) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 7179) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 7180) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 7181) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 7182) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 7183) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 7184) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 7185) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 7186) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 7187) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 7188) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 7189) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 7190) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 7191) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 7192) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 7193) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 7194) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 7195) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 7196) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 7197) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 7198) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 7199) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 7200) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 7201) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 7202) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 7203) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 7204) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 7205) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 7206) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 7207) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 7208) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 7209) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 7210) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 7211) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 7212) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 7213) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 7214) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 7215) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 7216) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 7217) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 7218) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 7219) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 7220) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 7221) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 7222) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 7223) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 7224) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 7225) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 7226) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 7227) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 7228) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 7229) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 7230) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 7231) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 7232) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 7233) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 7234) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 7235) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 7236) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 7237) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 7238) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 7239) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 7240) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 7241) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 7242) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 7243) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 7244) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 7245) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 7246) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 7247) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 7248) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 7249) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 7250) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 7251) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 7252) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 7253) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 7254) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 7255) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 7256) | def glMatrixMode(self, mode: int, /) -> None: ... method glMinSampleShading (line 7257) | def glMinSampleShading(self, value: float, /) -> None: ... method glMinmax (line 7258) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 7259) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 7260) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 7261) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 7262) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 7263) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 7264) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 7265) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 7266) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 7267) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 7268) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 7269) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 7270) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 7271) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 7272) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 7273) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 7274) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 7275) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 7276) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 7277) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 7278) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 7279) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 7280) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 7281) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 7282) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 7283) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 7284) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 7285) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 7286) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 7287) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 7288) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 7289) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 7290) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 7291) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 7292) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 7293) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 7294) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 7295) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 7296) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 7297) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 7298) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 7299) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 7300) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 7301) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 7302) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 7303) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 7304) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 7305) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 7306) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 7307) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 7308) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 7309) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 7310) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 7311) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 7312) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 7313) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 7314) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 7315) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 7316) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 7317) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 7318) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 7319) | def glPassThrough(self, token: float, /) -> None: ... method glPatchParameterfv (line 7320) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 7321) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 7322) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelMapfv (line 7323) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 7324) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 7325) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 7326) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 7327) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 7328) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 7329) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 7330) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 7331) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 7332) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 7333) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 7334) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 7335) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 7336) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 7337) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 7338) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 7339) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 7340) | def glPopMatrix(self, /) -> None: ... method glPopName (line 7341) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 7342) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 7343) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 7344) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 7345) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 7346) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 7347) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 7348) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 7349) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 7350) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 7351) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 7352) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 7353) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 7354) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 7355) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 7356) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 7357) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 7358) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 7359) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 7360) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 7361) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 7362) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 7363) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 7364) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 7365) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 7366) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 7367) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 7368) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 7369) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 7370) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 7371) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 7372) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 7373) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 7374) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 7375) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 7376) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 7377) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 7378) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 7379) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 7380) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 7381) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 7382) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 7383) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 7384) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 7385) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 7386) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 7387) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 7388) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 7389) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 7390) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 7391) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 7392) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 7393) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 7394) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 7395) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 7396) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 7397) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 7398) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 7399) | def glPushMatrix(self, /) -> None: ... method glPushName (line 7400) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 7401) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 7402) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 7403) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 7404) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 7405) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 7406) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 7407) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 7408) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 7409) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 7410) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 7411) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 7412) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 7413) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 7414) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 7415) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 7416) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 7417) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 7418) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 7419) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 7420) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 7421) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 7422) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 7423) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 7424) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 7425) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 7426) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 7427) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 7428) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 7429) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 7430) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 7431) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 7432) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 7433) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 7434) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 7435) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glReleaseShaderCompiler (line 7436) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderMode (line 7437) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 7438) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 7439) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 7440) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 7441) | def glResetMinmax(self, target: int, /) -> None: ... method glResumeTransformFeedback (line 7442) | def glResumeTransformFeedback(self, /) -> None: ... method glRotated (line 7443) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 7444) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 7445) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 7446) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 7447) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 7448) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 7449) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 7450) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 7451) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 7452) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 7453) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 7454) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 7455) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 7456) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 7457) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 7458) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glSecondaryColor3b (line 7459) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 7460) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 7461) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 7462) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 7463) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 7464) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 7465) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 7466) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 7467) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 7468) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 7469) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 7470) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 7471) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 7472) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 7473) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 7474) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 7475) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 7476) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 7477) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 7478) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 7479) | def glShadeModel(self, mode: int, /) -> None: ... method glShaderBinary (line 7480) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 7481) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 7482) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 7483) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 7484) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 7485) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 7486) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 7487) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 7488) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 7489) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 7490) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 7491) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 7492) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 7493) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 7494) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 7495) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 7496) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 7497) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 7498) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 7499) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 7500) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 7501) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 7502) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 7503) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 7504) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 7505) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 7506) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 7507) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 7508) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 7509) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 7510) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 7511) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 7512) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 7513) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 7514) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 7515) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 7516) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 7517) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 7518) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 7519) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 7520) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 7521) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 7522) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 7523) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 7524) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 7525) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 7526) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 7527) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 7528) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 7529) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 7530) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 7531) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 7532) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 7533) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 7534) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 7535) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 7536) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 7537) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 7538) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 7539) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 7540) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 7541) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 7542) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 7543) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 7544) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 7545) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 7546) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 7547) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 7548) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 7549) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 7550) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 7551) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 7552) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 7553) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 7554) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1d (line 7555) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 7556) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 7557) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 7558) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 7559) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 7560) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 7561) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 7562) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 7563) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 7564) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 7565) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 7566) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 7567) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 7568) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 7569) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 7570) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 7571) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 7572) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 7573) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 7574) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 7575) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 7576) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 7577) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 7578) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 7579) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 7580) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 7581) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 7582) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 7583) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 7584) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 7585) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 7586) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 7587) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 7588) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 7589) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 7590) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 7591) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 7592) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 7593) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 7594) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 7595) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 7596) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 7597) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 7598) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 7599) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 7600) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 7601) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 7602) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 7603) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 7604) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 7605) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 7606) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 7607) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 7608) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 7609) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 7610) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 7611) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertex2d (line 7612) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 7613) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 7614) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 7615) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 7616) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 7617) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 7618) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 7619) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 7620) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 7621) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 7622) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 7623) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 7624) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 7625) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 7626) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 7627) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 7628) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 7629) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 7630) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 7631) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 7632) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 7633) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 7634) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 7635) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 7636) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 7637) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 7638) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 7639) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 7640) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 7641) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 7642) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 7643) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 7644) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 7645) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 7646) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 7647) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 7648) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 7649) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 7650) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 7651) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 7652) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 7653) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 7654) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 7655) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 7656) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 7657) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 7658) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 7659) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 7660) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 7661) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 7662) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 7663) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 7664) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 7665) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 7666) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 7667) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 7668) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 7669) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 7670) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 7671) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribDivisor (line 7672) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribI1i (line 7673) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 7674) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 7675) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 7676) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 7677) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 7678) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 7679) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 7680) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 7681) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 7682) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 7683) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 7684) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 7685) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 7686) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 7687) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 7688) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 7689) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 7690) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 7691) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 7692) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIPointer (line 7693) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 7694) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 7695) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 7696) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 7697) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 7698) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 7699) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 7700) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 7701) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLPointer (line 7702) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 7703) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 7704) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 7705) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 7706) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 7707) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 7708) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 7709) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 7710) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 7711) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 7712) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 7713) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 7714) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 7715) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 7716) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 7717) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 7718) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 7719) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 7720) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 7721) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 7722) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method glWindowPos2d (line 7723) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 7724) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 7725) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 7726) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 7727) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 7728) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 7729) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 7730) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 7731) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 7732) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 7733) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 7734) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 7735) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 7736) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 7737) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 7738) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 7739) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_1_Core (line 7741) | class QOpenGLFunctions_4_1_Core(QAbstractOpenGLFunctions): method __init__ (line 7742) | def __init__(self, /) -> None: ... method glActiveShaderProgram (line 7743) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 7744) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 7745) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 7746) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 7747) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 7748) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 7749) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 7750) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 7751) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 7752) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 7753) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 7754) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 7755) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindProgramPipeline (line 7756) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 7757) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 7758) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 7759) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 7760) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 7761) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 7762) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 7763) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 7764) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 7765) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 7766) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 7767) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 7768) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 7769) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 7770) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 7771) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 7772) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 7773) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 7774) | def glClear(self, mask: int, /) -> None: ... method glClearBufferfi (line 7775) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 7776) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 7777) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 7778) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 7779) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 7780) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 7781) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearStencil (line 7782) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 7783) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 7784) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 7785) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 7786) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 7787) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 7788) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 7789) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 7790) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 7791) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 7792) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 7793) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 7794) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 7795) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 7796) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 7797) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 7798) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 7799) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 7800) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 7801) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 7802) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 7803) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 7804) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 7805) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 7806) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 7807) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 7808) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 7809) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 7810) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 7811) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 7812) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 7813) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 7814) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 7815) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 7816) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 7817) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 7818) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 7819) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 7820) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 7821) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 7822) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 7823) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawBuffer (line 7824) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 7825) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 7826) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 7827) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 7828) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 7829) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseVertex (line 7830) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawRangeElements (line 7831) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 7832) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 7833) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackStream (line 7834) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glEnable (line 7835) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 7836) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 7837) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 7838) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 7839) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 7840) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 7841) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 7842) | def glFinish(self, /) -> None: ... method glFlush (line 7843) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 7844) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 7845) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 7846) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 7847) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 7848) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 7849) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 7850) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 7851) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 7852) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 7853) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 7854) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 7855) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublei_v (line 7856) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 7857) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 7858) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 7859) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 7860) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 7861) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 7862) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 7863) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 7864) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 7865) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 7866) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 7867) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 7868) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 7869) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 7870) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 7871) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 7872) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 7873) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 7874) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 7875) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 7876) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 7877) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 7878) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 7879) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 7880) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 7881) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 7882) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 7883) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 7884) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 7885) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 7886) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 7887) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 7888) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 7889) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMinSampleShading (line 7890) | def glMinSampleShading(self, value: float, /) -> None: ... method glMultiDrawArrays (line 7891) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPatchParameterfv (line 7892) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 7893) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 7894) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelStoref (line 7895) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 7896) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 7897) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 7898) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 7899) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 7900) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 7901) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 7902) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 7903) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 7904) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProgramBinary (line 7905) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 7906) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 7907) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 7908) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 7909) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 7910) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 7911) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 7912) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 7913) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 7914) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 7915) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 7916) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 7917) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 7918) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 7919) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 7920) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 7921) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 7922) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 7923) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 7924) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 7925) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 7926) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 7927) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 7928) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 7929) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 7930) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 7931) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 7932) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 7933) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 7934) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 7935) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 7936) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 7937) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 7938) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 7939) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 7940) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 7941) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 7942) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 7943) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 7944) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 7945) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 7946) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 7947) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 7948) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 7949) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 7950) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 7951) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 7952) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 7953) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 7954) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 7955) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 7956) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 7957) | def glProvokingVertex(self, mode: int, /) -> None: ... method glQueryCounter (line 7958) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 7959) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 7960) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 7961) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderbufferStorage (line 7962) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 7963) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 7964) | def glResumeTransformFeedback(self, /) -> None: ... method glSampleCoverage (line 7965) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 7966) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 7967) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 7968) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 7969) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 7970) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 7971) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 7972) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 7973) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 7974) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 7975) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 7976) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glShaderBinary (line 7977) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 7978) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 7979) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 7980) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 7981) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 7982) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 7983) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 7984) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 7985) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 7986) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 7987) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 7988) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 7989) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 7990) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 7991) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 7992) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 7993) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 7994) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 7995) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexSubImage1D (line 7996) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 7997) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 7998) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1d (line 7999) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 8000) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 8001) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 8002) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 8003) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 8004) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 8005) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 8006) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 8007) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 8008) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 8009) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 8010) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 8011) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 8012) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 8013) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 8014) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 8015) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 8016) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 8017) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 8018) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 8019) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 8020) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 8021) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 8022) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 8023) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 8024) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 8025) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 8026) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 8027) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 8028) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 8029) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 8030) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 8031) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 8032) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 8033) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 8034) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 8035) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 8036) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 8037) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 8038) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 8039) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 8040) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 8041) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 8042) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 8043) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 8044) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 8045) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 8046) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 8047) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 8048) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 8049) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 8050) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 8051) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 8052) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 8053) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 8054) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 8055) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertexAttribDivisor (line 8056) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribIPointer (line 8057) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 8058) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 8059) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 8060) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 8061) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 8062) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 8063) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 8064) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 8065) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLPointer (line 8066) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 8067) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 8068) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 8069) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 8070) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 8071) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 8072) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 8073) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 8074) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 8075) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 8076) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 8077) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 8078) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 8079) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method initializeOpenGLFunctions (line 8080) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_2_Compatibility (line 8082) | class QOpenGLFunctions_4_2_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 8083) | def __init__(self, /) -> None: ... method glAccum (line 8084) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveShaderProgram (line 8085) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 8086) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 8087) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 8088) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 8089) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 8090) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 8091) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 8092) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 8093) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 8094) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 8095) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 8096) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 8097) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 8098) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 8099) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 8100) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 8101) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 8102) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 8103) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 8104) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 8105) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 8106) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 8107) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 8108) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 8109) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 8110) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 8111) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 8112) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 8113) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 8114) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 8115) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 8116) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 8117) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 8118) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 8119) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 8120) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 8121) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 8122) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 8123) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferfi (line 8124) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 8125) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 8126) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 8127) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 8128) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 8129) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 8130) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearIndex (line 8131) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 8132) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 8133) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 8134) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 8135) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 8136) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 8137) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 8138) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 8139) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 8140) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 8141) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 8142) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 8143) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 8144) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 8145) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 8146) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 8147) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 8148) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 8149) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 8150) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 8151) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 8152) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 8153) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 8154) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 8155) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 8156) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 8157) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 8158) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 8159) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 8160) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 8161) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 8162) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 8163) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 8164) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 8165) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 8166) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 8167) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 8168) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 8169) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 8170) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 8171) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 8172) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 8173) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 8174) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 8175) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 8176) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 8177) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 8178) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 8179) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 8180) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 8181) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 8182) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 8183) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 8184) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 8185) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 8186) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 8187) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 8188) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 8189) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 8190) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 8191) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 8192) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 8193) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 8194) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 8195) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyPixels (line 8196) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 8197) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 8198) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 8199) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 8200) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 8201) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 8202) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 8203) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 8204) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 8205) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 8206) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 8207) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 8208) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 8209) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 8210) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 8211) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 8212) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 8213) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 8214) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 8215) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 8216) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 8217) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 8218) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 8219) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 8220) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 8221) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 8222) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 8223) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 8224) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 8225) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 8226) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 8227) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 8228) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 8229) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 8230) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 8231) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 8232) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 8233) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 8234) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 8235) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 8236) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 8237) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 8238) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 8239) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 8240) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 8241) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 8242) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 8243) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 8244) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 8245) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 8246) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 8247) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 8248) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 8249) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 8250) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 8251) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 8252) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 8253) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 8254) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 8255) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 8256) | def glEndList(self, /) -> None: ... method glEndQuery (line 8257) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 8258) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 8259) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 8260) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 8261) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 8262) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 8263) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 8264) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 8265) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 8266) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 8267) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 8268) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 8269) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 8270) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 8271) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 8272) | def glFinish(self, /) -> None: ... method glFlush (line 8273) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 8274) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 8275) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 8276) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 8277) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 8278) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 8279) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 8280) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 8281) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 8282) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferRenderbuffer (line 8283) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 8284) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 8285) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 8286) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 8287) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 8288) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 8289) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 8290) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 8291) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 8292) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 8293) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 8294) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 8295) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 8296) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 8297) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 8298) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublei_v (line 8299) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 8300) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 8301) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 8302) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 8303) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 8304) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 8305) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 8306) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 8307) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 8308) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 8309) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetSeparableFilter (line 8310) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 8311) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 8312) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 8313) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 8314) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 8315) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 8316) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 8317) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 8318) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 8319) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 8320) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 8321) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 8322) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 8323) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 8324) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 8325) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 8326) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 8327) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 8328) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 8329) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 8330) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 8331) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 8332) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 8333) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glIsBuffer (line 8334) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 8335) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 8336) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 8337) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 8338) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 8339) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 8340) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 8341) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 8342) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 8343) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 8344) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 8345) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 8346) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 8347) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 8348) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 8349) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 8350) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 8351) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 8352) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 8353) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 8354) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 8355) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 8356) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 8357) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 8358) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 8359) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 8360) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 8361) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 8362) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 8363) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 8364) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 8365) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 8366) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 8367) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 8368) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 8369) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 8370) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 8371) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 8372) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 8373) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 8374) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 8375) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 8376) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 8377) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 8378) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 8379) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 8380) | def glMatrixMode(self, mode: int, /) -> None: ... method glMemoryBarrier (line 8381) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMinSampleShading (line 8382) | def glMinSampleShading(self, value: float, /) -> None: ... method glMinmax (line 8383) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 8384) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 8385) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 8386) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 8387) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 8388) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiTexCoord1d (line 8389) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 8390) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 8391) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 8392) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 8393) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 8394) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 8395) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 8396) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 8397) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 8398) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 8399) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 8400) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 8401) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 8402) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 8403) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 8404) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 8405) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 8406) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 8407) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 8408) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 8409) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 8410) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 8411) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 8412) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 8413) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 8414) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 8415) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 8416) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 8417) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 8418) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 8419) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 8420) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 8421) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 8422) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 8423) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 8424) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 8425) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 8426) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 8427) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 8428) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 8429) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 8430) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 8431) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 8432) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 8433) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 8434) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 8435) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 8436) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 8437) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 8438) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 8439) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 8440) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 8441) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 8442) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 8443) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 8444) | def glPassThrough(self, token: float, /) -> None: ... method glPatchParameterfv (line 8445) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 8446) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 8447) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelMapfv (line 8448) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 8449) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 8450) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 8451) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 8452) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 8453) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 8454) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 8455) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 8456) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 8457) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 8458) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 8459) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 8460) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 8461) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 8462) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 8463) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 8464) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 8465) | def glPopMatrix(self, /) -> None: ... method glPopName (line 8466) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 8467) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 8468) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 8469) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 8470) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 8471) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 8472) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 8473) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 8474) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 8475) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 8476) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 8477) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 8478) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 8479) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 8480) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 8481) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 8482) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 8483) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 8484) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 8485) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 8486) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 8487) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 8488) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 8489) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 8490) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 8491) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 8492) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 8493) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 8494) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 8495) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 8496) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 8497) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 8498) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 8499) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 8500) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 8501) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 8502) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 8503) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 8504) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 8505) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 8506) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 8507) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 8508) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 8509) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 8510) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 8511) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 8512) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 8513) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 8514) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 8515) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 8516) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 8517) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 8518) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 8519) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 8520) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 8521) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 8522) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 8523) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 8524) | def glPushMatrix(self, /) -> None: ... method glPushName (line 8525) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 8526) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 8527) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 8528) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 8529) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 8530) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 8531) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 8532) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 8533) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 8534) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 8535) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 8536) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 8537) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 8538) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 8539) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 8540) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 8541) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 8542) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 8543) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 8544) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 8545) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 8546) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 8547) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 8548) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 8549) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 8550) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 8551) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 8552) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 8553) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 8554) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 8555) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 8556) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 8557) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 8558) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 8559) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 8560) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glReleaseShaderCompiler (line 8561) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderMode (line 8562) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 8563) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 8564) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 8565) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 8566) | def glResetMinmax(self, target: int, /) -> None: ... method glResumeTransformFeedback (line 8567) | def glResumeTransformFeedback(self, /) -> None: ... method glRotated (line 8568) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 8569) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 8570) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 8571) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 8572) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 8573) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 8574) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 8575) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 8576) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 8577) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 8578) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 8579) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 8580) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 8581) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 8582) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 8583) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glSecondaryColor3b (line 8584) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 8585) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 8586) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 8587) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 8588) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 8589) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 8590) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 8591) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 8592) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 8593) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 8594) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 8595) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 8596) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 8597) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 8598) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 8599) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 8600) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 8601) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 8602) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 8603) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 8604) | def glShadeModel(self, mode: int, /) -> None: ... method glShaderBinary (line 8605) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 8606) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 8607) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 8608) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 8609) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 8610) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 8611) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 8612) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 8613) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 8614) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 8615) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 8616) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 8617) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 8618) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 8619) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 8620) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 8621) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 8622) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 8623) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 8624) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 8625) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 8626) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 8627) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 8628) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 8629) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 8630) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 8631) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 8632) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 8633) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 8634) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 8635) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 8636) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 8637) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 8638) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 8639) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 8640) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 8641) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 8642) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 8643) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 8644) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 8645) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 8646) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 8647) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 8648) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 8649) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 8650) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 8651) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 8652) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 8653) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 8654) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 8655) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 8656) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 8657) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 8658) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 8659) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 8660) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 8661) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 8662) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 8663) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 8664) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 8665) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 8666) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 8667) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 8668) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 8669) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 8670) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 8671) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 8672) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 8673) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 8674) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 8675) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 8676) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage3D (line 8677) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexSubImage1D (line 8678) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 8679) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 8680) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTranslated (line 8681) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 8682) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1d (line 8683) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 8684) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 8685) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 8686) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 8687) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 8688) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 8689) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 8690) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 8691) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 8692) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 8693) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 8694) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 8695) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 8696) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 8697) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 8698) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 8699) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 8700) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 8701) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 8702) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 8703) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 8704) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 8705) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 8706) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 8707) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 8708) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 8709) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 8710) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 8711) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 8712) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 8713) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 8714) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 8715) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 8716) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 8717) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 8718) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 8719) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 8720) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 8721) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 8722) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 8723) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 8724) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 8725) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 8726) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 8727) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 8728) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 8729) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 8730) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 8731) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 8732) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 8733) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 8734) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 8735) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 8736) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 8737) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 8738) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 8739) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertex2d (line 8740) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 8741) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 8742) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 8743) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 8744) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 8745) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 8746) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 8747) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 8748) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 8749) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 8750) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 8751) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 8752) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 8753) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 8754) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 8755) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 8756) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 8757) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 8758) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 8759) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 8760) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 8761) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 8762) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 8763) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 8764) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 8765) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 8766) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 8767) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 8768) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 8769) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 8770) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 8771) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 8772) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 8773) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 8774) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 8775) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 8776) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 8777) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 8778) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 8779) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 8780) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 8781) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 8782) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 8783) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 8784) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 8785) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 8786) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 8787) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 8788) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 8789) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 8790) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 8791) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 8792) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 8793) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 8794) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 8795) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 8796) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 8797) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 8798) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 8799) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribDivisor (line 8800) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribI1i (line 8801) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 8802) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 8803) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 8804) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 8805) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 8806) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 8807) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 8808) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 8809) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 8810) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 8811) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 8812) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 8813) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 8814) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 8815) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 8816) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 8817) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 8818) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 8819) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 8820) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIPointer (line 8821) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 8822) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 8823) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 8824) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 8825) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 8826) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 8827) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 8828) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 8829) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLPointer (line 8830) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 8831) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 8832) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 8833) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 8834) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 8835) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 8836) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 8837) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 8838) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 8839) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexP2ui (line 8840) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 8841) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 8842) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 8843) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 8844) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 8845) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 8846) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 8847) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 8848) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 8849) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 8850) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method glWindowPos2d (line 8851) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 8852) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 8853) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 8854) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 8855) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 8856) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 8857) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 8858) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 8859) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 8860) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 8861) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 8862) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 8863) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 8864) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 8865) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 8866) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 8867) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_2_Core (line 8869) | class QOpenGLFunctions_4_2_Core(QAbstractOpenGLFunctions): method __init__ (line 8870) | def __init__(self, /) -> None: ... method glActiveShaderProgram (line 8871) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 8872) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 8873) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 8874) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 8875) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 8876) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 8877) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 8878) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 8879) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 8880) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 8881) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 8882) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 8883) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 8884) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 8885) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 8886) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 8887) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 8888) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 8889) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 8890) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 8891) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 8892) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 8893) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 8894) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 8895) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 8896) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 8897) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 8898) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 8899) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 8900) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 8901) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 8902) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 8903) | def glClear(self, mask: int, /) -> None: ... method glClearBufferfi (line 8904) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 8905) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 8906) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 8907) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 8908) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 8909) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 8910) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearStencil (line 8911) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 8912) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 8913) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 8914) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 8915) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 8916) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 8917) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 8918) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 8919) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 8920) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyTexImage1D (line 8921) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 8922) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 8923) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 8924) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 8925) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 8926) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 8927) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 8928) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 8929) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 8930) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 8931) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 8932) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 8933) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 8934) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 8935) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 8936) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 8937) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 8938) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 8939) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 8940) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 8941) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 8942) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 8943) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 8944) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 8945) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 8946) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 8947) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 8948) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 8949) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDrawArrays (line 8950) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 8951) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 8952) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 8953) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 8954) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 8955) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 8956) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 8957) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 8958) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 8959) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 8960) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 8961) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 8962) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 8963) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 8964) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 8965) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 8966) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 8967) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 8968) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 8969) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 8970) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 8971) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 8972) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 8973) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 8974) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 8975) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 8976) | def glFinish(self, /) -> None: ... method glFlush (line 8977) | def glFlush(self, /) -> None: ... method glFramebufferRenderbuffer (line 8978) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 8979) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 8980) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 8981) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 8982) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 8983) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 8984) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 8985) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 8986) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 8987) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 8988) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 8989) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublei_v (line 8990) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 8991) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 8992) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 8993) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 8994) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 8995) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 8996) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 8997) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 8998) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetString (line 8999) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 9000) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 9001) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 9002) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 9003) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 9004) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 9005) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 9006) | def glHint(self, target: int, mode: int, /) -> None: ... method glIsBuffer (line 9007) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 9008) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 9009) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 9010) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 9011) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 9012) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 9013) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 9014) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 9015) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 9016) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 9017) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 9018) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 9019) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 9020) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 9021) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 9022) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 9023) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMemoryBarrier (line 9024) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMinSampleShading (line 9025) | def glMinSampleShading(self, value: float, /) -> None: ... method glMultiDrawArrays (line 9026) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glPatchParameterfv (line 9027) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 9028) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 9029) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelStoref (line 9030) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 9031) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 9032) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 9033) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 9034) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 9035) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 9036) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 9037) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 9038) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 9039) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProgramBinary (line 9040) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 9041) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 9042) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 9043) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 9044) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 9045) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 9046) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 9047) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 9048) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 9049) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 9050) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 9051) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 9052) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 9053) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 9054) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 9055) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 9056) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 9057) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 9058) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 9059) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 9060) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 9061) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 9062) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 9063) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 9064) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 9065) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 9066) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 9067) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 9068) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 9069) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 9070) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 9071) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 9072) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 9073) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 9074) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 9075) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 9076) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 9077) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 9078) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 9079) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 9080) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 9081) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 9082) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 9083) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 9084) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 9085) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 9086) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 9087) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 9088) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 9089) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 9090) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 9091) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 9092) | def glProvokingVertex(self, mode: int, /) -> None: ... method glQueryCounter (line 9093) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 9094) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 9095) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 9096) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderbufferStorage (line 9097) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 9098) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 9099) | def glResumeTransformFeedback(self, /) -> None: ... method glSampleCoverage (line 9100) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 9101) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 9102) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 9103) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 9104) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 9105) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 9106) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 9107) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 9108) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 9109) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 9110) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 9111) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glShaderBinary (line 9112) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glStencilFunc (line 9113) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 9114) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 9115) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 9116) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 9117) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 9118) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 9119) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 9120) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 9121) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 9122) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 9123) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 9124) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 9125) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 9126) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 9127) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 9128) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 9129) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 9130) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 9131) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 9132) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage3D (line 9133) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexSubImage1D (line 9134) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 9135) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 9136) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glUniform1d (line 9137) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 9138) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 9139) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 9140) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 9141) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 9142) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 9143) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 9144) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 9145) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 9146) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 9147) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 9148) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 9149) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 9150) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 9151) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 9152) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 9153) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 9154) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 9155) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 9156) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 9157) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 9158) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 9159) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 9160) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 9161) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 9162) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 9163) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 9164) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 9165) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 9166) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 9167) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 9168) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 9169) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 9170) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 9171) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 9172) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 9173) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 9174) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 9175) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 9176) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 9177) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 9178) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 9179) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 9180) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 9181) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 9182) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 9183) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 9184) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 9185) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 9186) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 9187) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 9188) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 9189) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 9190) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 9191) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 9192) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 9193) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertexAttribDivisor (line 9194) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribIPointer (line 9195) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 9196) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 9197) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 9198) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 9199) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 9200) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 9201) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 9202) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 9203) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLPointer (line 9204) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 9205) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 9206) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 9207) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 9208) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 9209) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 9210) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 9211) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 9212) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 9213) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glViewport (line 9214) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 9215) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 9216) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 9217) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method initializeOpenGLFunctions (line 9218) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_3_Compatibility (line 9220) | class QOpenGLFunctions_4_3_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 9221) | def __init__(self, /) -> None: ... method glAccum (line 9222) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveShaderProgram (line 9223) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 9224) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 9225) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 9226) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 9227) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 9228) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 9229) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 9230) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 9231) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 9232) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 9233) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 9234) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 9235) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 9236) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 9237) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 9238) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 9239) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 9240) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 9241) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 9242) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 9243) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 9244) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 9245) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 9246) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 9247) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 9248) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 9249) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 9250) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 9251) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 9252) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 9253) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 9254) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 9255) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 9256) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 9257) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 9258) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 9259) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 9260) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 9261) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferData (line 9262) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 9263) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 9264) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 9265) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 9266) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 9267) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 9268) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 9269) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearIndex (line 9270) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 9271) | def glClearStencil(self, s: int, /) -> None: ... method glClientActiveTexture (line 9272) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 9273) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 9274) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 9275) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 9276) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 9277) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 9278) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 9279) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 9280) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 9281) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 9282) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 9283) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 9284) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 9285) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 9286) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 9287) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 9288) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 9289) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 9290) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 9291) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 9292) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 9293) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 9294) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 9295) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 9296) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 9297) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 9298) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 9299) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 9300) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 9301) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 9302) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 9303) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 9304) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 9305) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 9306) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 9307) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 9308) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 9309) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 9310) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 9311) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 9312) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 9313) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 9314) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 9315) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 9316) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 9317) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 9318) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 9319) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 9320) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 9321) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 9322) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 9323) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 9324) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 9325) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 9326) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 9327) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 9328) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 9329) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 9330) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 9331) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 9332) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 9333) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 9334) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyImageSubData (line 9335) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyPixels (line 9336) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 9337) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 9338) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 9339) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 9340) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 9341) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 9342) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 9343) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 9344) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 9345) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 9346) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 9347) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 9348) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 9349) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 9350) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 9351) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 9352) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 9353) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 9354) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 9355) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 9356) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 9357) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 9358) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 9359) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 9360) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 9361) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 9362) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 9363) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 9364) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 9365) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 9366) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 9367) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 9368) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 9369) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 9370) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 9371) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 9372) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 9373) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 9374) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 9375) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 9376) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 9377) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 9378) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 9379) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 9380) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 9381) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 9382) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 9383) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 9384) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 9385) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 9386) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 9387) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 9388) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 9389) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 9390) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 9391) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 9392) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 9393) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 9394) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 9395) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 9396) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 9397) | def glEndList(self, /) -> None: ... method glEndQuery (line 9398) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 9399) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 9400) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 9401) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 9402) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 9403) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 9404) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 9405) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 9406) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 9407) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 9408) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 9409) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 9410) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 9411) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 9412) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 9413) | def glFinish(self, /) -> None: ... method glFlush (line 9414) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 9415) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 9416) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 9417) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 9418) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 9419) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 9420) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 9421) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 9422) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 9423) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferParameteri (line 9424) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferRenderbuffer (line 9425) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 9426) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 9427) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 9428) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 9429) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 9430) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 9431) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 9432) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 9433) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 9434) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 9435) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 9436) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 9437) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 9438) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 9439) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 9440) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublei_v (line 9441) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 9442) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 9443) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 9444) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 9445) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 9446) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 9447) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 9448) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 9449) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 9450) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 9451) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetProgramResourceIndex (line 9452) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 9453) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 9454) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetSeparableFilter (line 9455) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 9456) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 9457) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 9458) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 9459) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 9460) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 9461) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 9462) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 9463) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 9464) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 9465) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 9466) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 9467) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 9468) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 9469) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 9470) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 9471) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 9472) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 9473) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 9474) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 9475) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 9476) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 9477) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 9478) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glInvalidateBufferData (line 9479) | def glInvalidateBufferData(self, buffer: int, /) -> None: ... method glInvalidateFramebuffer (line 9480) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 9481) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 9482) | def glInvalidateTexImage(self, texture: int, level: int, /) -> None: ... method glInvalidateTexSubImage (line 9483) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 9484) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 9485) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 9486) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 9487) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 9488) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 9489) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 9490) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 9491) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 9492) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 9493) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 9494) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 9495) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 9496) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 9497) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 9498) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 9499) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 9500) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 9501) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 9502) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 9503) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 9504) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 9505) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 9506) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 9507) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 9508) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 9509) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 9510) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 9511) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 9512) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 9513) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 9514) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 9515) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 9516) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 9517) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 9518) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 9519) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 9520) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 9521) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 9522) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 9523) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 9524) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 9525) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 9526) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 9527) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 9528) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 9529) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 9530) | def glMatrixMode(self, mode: int, /) -> None: ... method glMemoryBarrier (line 9531) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMinSampleShading (line 9532) | def glMinSampleShading(self, value: float, /) -> None: ... method glMinmax (line 9533) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 9534) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 9535) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 9536) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 9537) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 9538) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 9539) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoord1d (line 9540) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 9541) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 9542) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 9543) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 9544) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 9545) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 9546) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 9547) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 9548) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 9549) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 9550) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 9551) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 9552) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 9553) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 9554) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 9555) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 9556) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 9557) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 9558) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 9559) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 9560) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 9561) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 9562) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 9563) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 9564) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 9565) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 9566) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 9567) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 9568) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 9569) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 9570) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 9571) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 9572) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 9573) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 9574) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 9575) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 9576) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 9577) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 9578) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 9579) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 9580) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 9581) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 9582) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 9583) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 9584) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 9585) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 9586) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 9587) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 9588) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 9589) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 9590) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 9591) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 9592) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 9593) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glOrtho (line 9594) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 9595) | def glPassThrough(self, token: float, /) -> None: ... method glPatchParameterfv (line 9596) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 9597) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 9598) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelMapfv (line 9599) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 9600) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 9601) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 9602) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 9603) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 9604) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 9605) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 9606) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 9607) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 9608) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 9609) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 9610) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 9611) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 9612) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 9613) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 9614) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 9615) | def glPopClientAttrib(self, /) -> None: ... method glPopMatrix (line 9616) | def glPopMatrix(self, /) -> None: ... method glPopName (line 9617) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 9618) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 9619) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 9620) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 9621) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 9622) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 9623) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 9624) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 9625) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 9626) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 9627) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 9628) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 9629) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 9630) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 9631) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 9632) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 9633) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 9634) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 9635) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 9636) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 9637) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 9638) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 9639) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 9640) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 9641) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 9642) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 9643) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 9644) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 9645) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 9646) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 9647) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 9648) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 9649) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 9650) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 9651) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 9652) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 9653) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 9654) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 9655) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 9656) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 9657) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 9658) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 9659) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 9660) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 9661) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 9662) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 9663) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 9664) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 9665) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 9666) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 9667) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 9668) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 9669) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 9670) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 9671) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 9672) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 9673) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 9674) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushMatrix (line 9675) | def glPushMatrix(self, /) -> None: ... method glPushName (line 9676) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 9677) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 9678) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 9679) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 9680) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 9681) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 9682) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 9683) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 9684) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 9685) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 9686) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 9687) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 9688) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 9689) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 9690) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 9691) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 9692) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 9693) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 9694) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 9695) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 9696) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 9697) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 9698) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 9699) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 9700) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 9701) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 9702) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 9703) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 9704) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 9705) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 9706) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 9707) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 9708) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 9709) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 9710) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 9711) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glReleaseShaderCompiler (line 9712) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderMode (line 9713) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 9714) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 9715) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 9716) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 9717) | def glResetMinmax(self, target: int, /) -> None: ... method glResumeTransformFeedback (line 9718) | def glResumeTransformFeedback(self, /) -> None: ... method glRotated (line 9719) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 9720) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 9721) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 9722) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 9723) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 9724) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 9725) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 9726) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 9727) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 9728) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 9729) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 9730) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 9731) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 9732) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 9733) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 9734) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glSecondaryColor3b (line 9735) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 9736) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 9737) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 9738) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 9739) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 9740) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 9741) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 9742) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 9743) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 9744) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 9745) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 9746) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 9747) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 9748) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 9749) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 9750) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 9751) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 9752) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 9753) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 9754) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 9755) | def glShadeModel(self, mode: int, /) -> None: ... method glShaderBinary (line 9756) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 9757) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 9758) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 9759) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 9760) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 9761) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 9762) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 9763) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 9764) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 9765) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 9766) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 9767) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 9768) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 9769) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 9770) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 9771) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 9772) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 9773) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 9774) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 9775) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 9776) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 9777) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 9778) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 9779) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 9780) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 9781) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 9782) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 9783) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 9784) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 9785) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 9786) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 9787) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 9788) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 9789) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 9790) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 9791) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 9792) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 9793) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 9794) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 9795) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 9796) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 9797) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 9798) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 9799) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 9800) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 9801) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 9802) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 9803) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 9804) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 9805) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 9806) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 9807) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 9808) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 9809) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 9810) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 9811) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 9812) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 9813) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 9814) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 9815) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 9816) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 9817) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 9818) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 9819) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 9820) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 9821) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 9822) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 9823) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 9824) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 9825) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 9826) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 9827) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 9828) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 9829) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 9830) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 9831) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 9832) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 9833) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 9834) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 9835) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTranslated (line 9836) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 9837) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1d (line 9838) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 9839) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 9840) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 9841) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 9842) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 9843) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 9844) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 9845) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 9846) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 9847) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 9848) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 9849) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 9850) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 9851) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 9852) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 9853) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 9854) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 9855) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 9856) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 9857) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 9858) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 9859) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 9860) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 9861) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 9862) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 9863) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 9864) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 9865) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 9866) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 9867) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 9868) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 9869) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 9870) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 9871) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 9872) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 9873) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 9874) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 9875) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 9876) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 9877) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 9878) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 9879) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 9880) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 9881) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 9882) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 9883) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 9884) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 9885) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 9886) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 9887) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 9888) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 9889) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 9890) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 9891) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 9892) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 9893) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 9894) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertex2d (line 9895) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 9896) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 9897) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 9898) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 9899) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 9900) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 9901) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 9902) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 9903) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 9904) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 9905) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 9906) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 9907) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 9908) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 9909) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 9910) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 9911) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 9912) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 9913) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 9914) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 9915) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 9916) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 9917) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 9918) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 9919) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 9920) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 9921) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 9922) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 9923) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 9924) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 9925) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 9926) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 9927) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 9928) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 9929) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 9930) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 9931) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 9932) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 9933) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 9934) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 9935) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 9936) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 9937) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 9938) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 9939) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 9940) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 9941) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 9942) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 9943) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 9944) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 9945) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 9946) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 9947) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 9948) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 9949) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 9950) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 9951) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 9952) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 9953) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 9954) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribBinding (line 9955) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 9956) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 9957) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 9958) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 9959) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 9960) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 9961) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 9962) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 9963) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 9964) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 9965) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 9966) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 9967) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 9968) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 9969) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 9970) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 9971) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 9972) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 9973) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 9974) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 9975) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 9976) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 9977) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIFormat (line 9978) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 9979) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 9980) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 9981) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 9982) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 9983) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 9984) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 9985) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 9986) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 9987) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLFormat (line 9988) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 9989) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 9990) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 9991) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 9992) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 9993) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 9994) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 9995) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 9996) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 9997) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 9998) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 9999) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... method glVertexP2ui (line 10000) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 10001) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 10002) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 10003) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 10004) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 10005) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 10006) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 10007) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 10008) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 10009) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 10010) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method glWindowPos2d (line 10011) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 10012) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 10013) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 10014) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 10015) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 10016) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 10017) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 10018) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 10019) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 10020) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 10021) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 10022) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 10023) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 10024) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 10025) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 10026) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 10027) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_3_Core (line 10029) | class QOpenGLFunctions_4_3_Core(QAbstractOpenGLFunctions): method __init__ (line 10030) | def __init__(self, /) -> None: ... method glActiveShaderProgram (line 10031) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 10032) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 10033) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 10034) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 10035) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 10036) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 10037) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 10038) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 10039) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 10040) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindFragDataLocation (line 10041) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 10042) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 10043) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 10044) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindProgramPipeline (line 10045) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 10046) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 10047) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindTexture (line 10048) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTransformFeedback (line 10049) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 10050) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 10051) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 10052) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 10053) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 10054) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 10055) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 10056) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 10057) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 10058) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 10059) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 10060) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 10061) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 10062) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 10063) | def glClear(self, mask: int, /) -> None: ... method glClearBufferData (line 10064) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 10065) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 10066) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 10067) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 10068) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 10069) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 10070) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 10071) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearStencil (line 10072) | def glClearStencil(self, s: int, /) -> None: ... method glColorMask (line 10073) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 10074) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 10075) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 10076) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 10077) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 10078) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 10079) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 10080) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 10081) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyImageSubData (line 10082) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexImage1D (line 10083) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 10084) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 10085) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 10086) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 10087) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 10088) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 10089) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 10090) | def glCullFace(self, mode: int, /) -> None: ... method glDeleteBuffers (line 10091) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 10092) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 10093) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 10094) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 10095) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 10096) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 10097) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 10098) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 10099) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 10100) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 10101) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 10102) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 10103) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 10104) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 10105) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 10106) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 10107) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 10108) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 10109) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 10110) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 10111) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 10112) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 10113) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 10114) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 10115) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 10116) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 10117) | def glDrawBuffer(self, mode: int, /) -> None: ... method glDrawBuffers (line 10118) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 10119) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 10120) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 10121) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 10122) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 10123) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 10124) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 10125) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 10126) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 10127) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 10128) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 10129) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 10130) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 10131) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 10132) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 10133) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 10134) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 10135) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 10136) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 10137) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 10138) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 10139) | def glFinish(self, /) -> None: ... method glFlush (line 10140) | def glFlush(self, /) -> None: ... method glFramebufferParameteri (line 10141) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferRenderbuffer (line 10142) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 10143) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 10144) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 10145) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 10146) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 10147) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 10148) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 10149) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 10150) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 10151) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 10152) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 10153) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublei_v (line 10154) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 10155) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 10156) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 10157) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 10158) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 10159) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 10160) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 10161) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 10162) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetProgramResourceIndex (line 10163) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 10164) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 10165) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 10166) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 10167) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 10168) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 10169) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 10170) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 10171) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 10172) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 10173) | def glHint(self, target: int, mode: int, /) -> None: ... method glInvalidateBufferData (line 10174) | def glInvalidateBufferData(self, buffer: int, /) -> None: ... method glInvalidateFramebuffer (line 10175) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 10176) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 10177) | def glInvalidateTexImage(self, texture: int, level: int, /) -> None: ... method glInvalidateTexSubImage (line 10178) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 10179) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 10180) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 10181) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 10182) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 10183) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 10184) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 10185) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 10186) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 10187) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 10188) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 10189) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 10190) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 10191) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 10192) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 10193) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 10194) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 10195) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMemoryBarrier (line 10196) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMinSampleShading (line 10197) | def glMinSampleShading(self, value: float, /) -> None: ... method glMultiDrawArrays (line 10198) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 10199) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glPatchParameterfv (line 10200) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 10201) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 10202) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelStoref (line 10203) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 10204) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 10205) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 10206) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 10207) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 10208) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 10209) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 10210) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 10211) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPrimitiveRestartIndex (line 10212) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProgramBinary (line 10213) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 10214) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 10215) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 10216) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 10217) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 10218) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 10219) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 10220) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 10221) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 10222) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 10223) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 10224) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 10225) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 10226) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 10227) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 10228) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 10229) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 10230) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 10231) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 10232) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 10233) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 10234) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 10235) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 10236) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 10237) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 10238) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 10239) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 10240) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 10241) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 10242) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 10243) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 10244) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 10245) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 10246) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 10247) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 10248) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 10249) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 10250) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 10251) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 10252) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 10253) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 10254) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 10255) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 10256) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 10257) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 10258) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 10259) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 10260) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 10261) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 10262) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 10263) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 10264) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 10265) | def glProvokingVertex(self, mode: int, /) -> None: ... method glQueryCounter (line 10266) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 10267) | def glReadBuffer(self, mode: int, /) -> None: ... method glReadPixels (line 10268) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 10269) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderbufferStorage (line 10270) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 10271) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 10272) | def glResumeTransformFeedback(self, /) -> None: ... method glSampleCoverage (line 10273) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 10274) | def glSampleMaski(self, index: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 10275) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 10276) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 10277) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 10278) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 10279) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 10280) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 10281) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 10282) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 10283) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 10284) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glShaderBinary (line 10285) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 10286) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 10287) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 10288) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 10289) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 10290) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 10291) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 10292) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 10293) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 10294) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 10295) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 10296) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 10297) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 10298) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 10299) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 10300) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 10301) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 10302) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 10303) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 10304) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 10305) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 10306) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 10307) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 10308) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 10309) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 10310) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 10311) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 10312) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 10313) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glUniform1d (line 10314) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 10315) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 10316) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 10317) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 10318) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 10319) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 10320) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 10321) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 10322) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 10323) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 10324) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 10325) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 10326) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 10327) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 10328) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 10329) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 10330) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 10331) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 10332) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 10333) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 10334) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 10335) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 10336) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 10337) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 10338) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 10339) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 10340) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 10341) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 10342) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 10343) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 10344) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 10345) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 10346) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 10347) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 10348) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 10349) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 10350) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 10351) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 10352) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 10353) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 10354) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 10355) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 10356) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 10357) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 10358) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 10359) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 10360) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 10361) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 10362) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 10363) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 10364) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 10365) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 10366) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 10367) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 10368) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 10369) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 10370) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertexAttribBinding (line 10371) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 10372) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 10373) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribIFormat (line 10374) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 10375) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 10376) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 10377) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 10378) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 10379) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 10380) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 10381) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 10382) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 10383) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLFormat (line 10384) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 10385) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 10386) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 10387) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 10388) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 10389) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 10390) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 10391) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 10392) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 10393) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 10394) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 10395) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... method glViewport (line 10396) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 10397) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 10398) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 10399) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method initializeOpenGLFunctions (line 10400) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_4_Compatibility (line 10402) | class QOpenGLFunctions_4_4_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 10403) | def __init__(self, /) -> None: ... method glAccum (line 10404) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveShaderProgram (line 10405) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 10406) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 10407) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 10408) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 10409) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 10410) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 10411) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 10412) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 10413) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 10414) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 10415) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 10416) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 10417) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindBuffersBase (line 10418) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 10419) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 10420) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 10421) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 10422) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 10423) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 10424) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 10425) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 10426) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindSamplers (line 10427) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 10428) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTextures (line 10429) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 10430) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 10431) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 10432) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 10433) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 10434) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 10435) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 10436) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 10437) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 10438) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 10439) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 10440) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 10441) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCallList (line 10442) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 10443) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 10444) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 10445) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 10446) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 10447) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferData (line 10448) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 10449) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 10450) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 10451) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 10452) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 10453) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 10454) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 10455) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearIndex (line 10456) | def glClearIndex(self, c: float, /) -> None: ... method glClearStencil (line 10457) | def glClearStencil(self, s: int, /) -> None: ... method glClearTexImage (line 10458) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 10459) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glClientActiveTexture (line 10460) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipPlane (line 10461) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 10462) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 10463) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 10464) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 10465) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 10466) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 10467) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 10468) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 10469) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 10470) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 10471) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 10472) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 10473) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 10474) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 10475) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 10476) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 10477) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 10478) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 10479) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 10480) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 10481) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 10482) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 10483) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 10484) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 10485) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 10486) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 10487) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 10488) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 10489) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 10490) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 10491) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 10492) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 10493) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 10494) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 10495) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 10496) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 10497) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 10498) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 10499) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 10500) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 10501) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 10502) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 10503) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 10504) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 10505) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 10506) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 10507) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 10508) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 10509) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 10510) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 10511) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 10512) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glConvolutionFilter1D (line 10513) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 10514) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 10515) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 10516) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 10517) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 10518) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 10519) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 10520) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 10521) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 10522) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyImageSubData (line 10523) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyPixels (line 10524) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 10525) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 10526) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 10527) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 10528) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 10529) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 10530) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 10531) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 10532) | def glCullFace(self, mode: int, /) -> None: ... method glDebugMessageControl (line 10533) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 10534) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 10535) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 10536) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 10537) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 10538) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 10539) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 10540) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 10541) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 10542) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 10543) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 10544) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 10545) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 10546) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 10547) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 10548) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 10549) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 10550) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 10551) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 10552) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 10553) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 10554) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 10555) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexAttribArray (line 10556) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 10557) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 10558) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 10559) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 10560) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 10561) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 10562) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 10563) | def glDrawBuffer(self, buf: int, /) -> None: ... method glDrawBuffers (line 10564) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 10565) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 10566) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 10567) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 10568) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 10569) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 10570) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 10571) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 10572) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 10573) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 10574) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 10575) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 10576) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 10577) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 10578) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 10579) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 10580) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 10581) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 10582) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexAttribArray (line 10583) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 10584) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 10585) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 10586) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 10587) | def glEndList(self, /) -> None: ... method glEndQuery (line 10588) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 10589) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 10590) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 10591) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 10592) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 10593) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 10594) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 10595) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 10596) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 10597) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 10598) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 10599) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 10600) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 10601) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 10602) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 10603) | def glFinish(self, /) -> None: ... method glFlush (line 10604) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 10605) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 10606) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 10607) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 10608) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 10609) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 10610) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 10611) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 10612) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 10613) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferParameteri (line 10614) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferRenderbuffer (line 10615) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 10616) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 10617) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 10618) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 10619) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 10620) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 10621) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 10622) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 10623) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 10624) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 10625) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 10626) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 10627) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 10628) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 10629) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetConvolutionFilter (line 10630) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublei_v (line 10631) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 10632) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 10633) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 10634) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 10635) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 10636) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 10637) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetHistogram (line 10638) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 10639) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 10640) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 10641) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetProgramResourceIndex (line 10642) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 10643) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 10644) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetSeparableFilter (line 10645) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 10646) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 10647) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 10648) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 10649) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 10650) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 10651) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 10652) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 10653) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 10654) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 10655) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 10656) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 10657) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 10658) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 10659) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 10660) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 10661) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 10662) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 10663) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 10664) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 10665) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 10666) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 10667) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 10668) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glInvalidateBufferData (line 10669) | def glInvalidateBufferData(self, buffer: int, /) -> None: ... method glInvalidateFramebuffer (line 10670) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 10671) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 10672) | def glInvalidateTexImage(self, texture: int, level: int, /) -> None: ... method glInvalidateTexSubImage (line 10673) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 10674) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 10675) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 10676) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 10677) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 10678) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 10679) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 10680) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 10681) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 10682) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 10683) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 10684) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 10685) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 10686) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 10687) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 10688) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 10689) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 10690) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 10691) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 10692) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 10693) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 10694) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 10695) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 10696) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 10697) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 10698) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 10699) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 10700) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 10701) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 10702) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 10703) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 10704) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 10705) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 10706) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 10707) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 10708) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 10709) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 10710) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 10711) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 10712) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 10713) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 10714) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 10715) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMaterialf (line 10716) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 10717) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 10718) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 10719) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 10720) | def glMatrixMode(self, mode: int, /) -> None: ... method glMemoryBarrier (line 10721) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMinSampleShading (line 10722) | def glMinSampleShading(self, value: float, /) -> None: ... method glMinmax (line 10723) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 10724) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 10725) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 10726) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 10727) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 10728) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 10729) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoord1d (line 10730) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 10731) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 10732) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 10733) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 10734) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 10735) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 10736) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 10737) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 10738) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 10739) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 10740) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 10741) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 10742) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 10743) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 10744) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 10745) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 10746) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 10747) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 10748) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 10749) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 10750) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 10751) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 10752) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 10753) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 10754) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 10755) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 10756) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 10757) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 10758) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 10759) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 10760) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 10761) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 10762) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 10763) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 10764) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 10765) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 10766) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 10767) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 10768) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 10769) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNewList (line 10770) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 10771) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 10772) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 10773) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 10774) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 10775) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 10776) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 10777) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 10778) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 10779) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 10780) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 10781) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 10782) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 10783) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glObjectLabel (line 10784) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 10785) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes | bytea... method glOrtho (line 10786) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 10787) | def glPassThrough(self, token: float, /) -> None: ... method glPatchParameterfv (line 10788) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 10789) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 10790) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelMapfv (line 10791) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 10792) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 10793) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 10794) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 10795) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 10796) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 10797) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 10798) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 10799) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 10800) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 10801) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 10802) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 10803) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 10804) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 10805) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 10806) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 10807) | def glPopClientAttrib(self, /) -> None: ... method glPopDebugGroup (line 10808) | def glPopDebugGroup(self, /) -> None: ... method glPopMatrix (line 10809) | def glPopMatrix(self, /) -> None: ... method glPopName (line 10810) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 10811) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 10812) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 10813) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 10814) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 10815) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 10816) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 10817) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 10818) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 10819) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 10820) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 10821) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 10822) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 10823) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 10824) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 10825) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 10826) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 10827) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 10828) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 10829) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 10830) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 10831) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 10832) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 10833) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 10834) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 10835) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 10836) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 10837) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 10838) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 10839) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 10840) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 10841) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 10842) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 10843) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 10844) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 10845) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 10846) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 10847) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 10848) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 10849) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 10850) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 10851) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 10852) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 10853) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 10854) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 10855) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 10856) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 10857) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 10858) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 10859) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 10860) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 10861) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 10862) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 10863) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 10864) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 10865) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 10866) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 10867) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushDebugGroup (line 10868) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glPushMatrix (line 10869) | def glPushMatrix(self, /) -> None: ... method glPushName (line 10870) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 10871) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 10872) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 10873) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 10874) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 10875) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 10876) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 10877) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 10878) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 10879) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 10880) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 10881) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 10882) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 10883) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 10884) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 10885) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 10886) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 10887) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 10888) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 10889) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 10890) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 10891) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 10892) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 10893) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 10894) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 10895) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 10896) | def glReadBuffer(self, src: int, /) -> None: ... method glReadPixels (line 10897) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glRectd (line 10898) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 10899) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 10900) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 10901) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 10902) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 10903) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 10904) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 10905) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glReleaseShaderCompiler (line 10906) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderMode (line 10907) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 10908) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 10909) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 10910) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 10911) | def glResetMinmax(self, target: int, /) -> None: ... method glResumeTransformFeedback (line 10912) | def glResumeTransformFeedback(self, /) -> None: ... method glRotated (line 10913) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 10914) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 10915) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 10916) | def glSampleMaski(self, maskNumber: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 10917) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 10918) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 10919) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 10920) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 10921) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 10922) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 10923) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 10924) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 10925) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 10926) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 10927) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 10928) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glSecondaryColor3b (line 10929) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 10930) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 10931) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 10932) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 10933) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 10934) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 10935) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 10936) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 10937) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 10938) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 10939) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 10940) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 10941) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 10942) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 10943) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 10944) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 10945) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 10946) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 10947) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 10948) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 10949) | def glShadeModel(self, mode: int, /) -> None: ... method glShaderBinary (line 10950) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 10951) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 10952) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 10953) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 10954) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 10955) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 10956) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 10957) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 10958) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 10959) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 10960) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 10961) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 10962) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 10963) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 10964) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 10965) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 10966) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 10967) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 10968) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 10969) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 10970) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 10971) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 10972) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 10973) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 10974) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 10975) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 10976) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 10977) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 10978) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 10979) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 10980) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 10981) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 10982) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 10983) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 10984) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 10985) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 10986) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 10987) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 10988) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 10989) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 10990) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 10991) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 10992) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 10993) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 10994) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 10995) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 10996) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 10997) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 10998) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 10999) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 11000) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 11001) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 11002) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 11003) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 11004) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 11005) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 11006) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 11007) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 11008) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 11009) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 11010) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 11011) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 11012) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 11013) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 11014) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 11015) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 11016) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 11017) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 11018) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 11019) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 11020) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 11021) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 11022) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 11023) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 11024) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 11025) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 11026) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 11027) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 11028) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 11029) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTranslated (line 11030) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 11031) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1d (line 11032) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 11033) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 11034) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 11035) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 11036) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 11037) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 11038) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 11039) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 11040) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 11041) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 11042) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 11043) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 11044) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 11045) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 11046) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 11047) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 11048) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 11049) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 11050) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 11051) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 11052) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 11053) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 11054) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 11055) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 11056) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 11057) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 11058) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 11059) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 11060) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 11061) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 11062) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 11063) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 11064) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 11065) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 11066) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 11067) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 11068) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 11069) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 11070) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 11071) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 11072) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 11073) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 11074) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 11075) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 11076) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 11077) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 11078) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 11079) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 11080) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 11081) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 11082) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 11083) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 11084) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 11085) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 11086) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 11087) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 11088) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertex2d (line 11089) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 11090) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 11091) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 11092) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 11093) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 11094) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 11095) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 11096) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 11097) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 11098) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 11099) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 11100) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 11101) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 11102) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 11103) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 11104) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 11105) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 11106) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 11107) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 11108) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 11109) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 11110) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 11111) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 11112) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexAttrib1d (line 11113) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 11114) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 11115) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 11116) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 11117) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 11118) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 11119) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 11120) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 11121) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 11122) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 11123) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 11124) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 11125) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 11126) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 11127) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 11128) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 11129) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 11130) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 11131) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 11132) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 11133) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 11134) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 11135) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 11136) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 11137) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 11138) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 11139) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 11140) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 11141) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 11142) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 11143) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 11144) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 11145) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 11146) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 11147) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 11148) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribBinding (line 11149) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 11150) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 11151) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 11152) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 11153) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 11154) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 11155) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 11156) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 11157) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 11158) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 11159) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 11160) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 11161) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 11162) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 11163) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 11164) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 11165) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 11166) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 11167) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 11168) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 11169) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 11170) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 11171) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIFormat (line 11172) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 11173) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 11174) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 11175) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 11176) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 11177) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 11178) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 11179) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 11180) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 11181) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLFormat (line 11182) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 11183) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 11184) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 11185) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 11186) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 11187) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 11188) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 11189) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 11190) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 11191) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 11192) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 11193) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... method glVertexP2ui (line 11194) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 11195) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 11196) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 11197) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 11198) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 11199) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 11200) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 11201) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 11202) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 11203) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 11204) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method glWindowPos2d (line 11205) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 11206) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 11207) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 11208) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 11209) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 11210) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 11211) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 11212) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 11213) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 11214) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 11215) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 11216) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 11217) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 11218) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 11219) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 11220) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 11221) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_4_Core (line 11223) | class QOpenGLFunctions_4_4_Core(QAbstractOpenGLFunctions): method __init__ (line 11224) | def __init__(self, /) -> None: ... method glActiveShaderProgram (line 11225) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 11226) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 11227) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 11228) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 11229) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 11230) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 11231) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 11232) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 11233) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 11234) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindBuffersBase (line 11235) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 11236) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 11237) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 11238) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 11239) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 11240) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 11241) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 11242) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 11243) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindSamplers (line 11244) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 11245) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTextures (line 11246) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 11247) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 11248) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 11249) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 11250) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 11251) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 11252) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 11253) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 11254) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 11255) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 11256) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 11257) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 11258) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glCheckFramebufferStatus (line 11259) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glClampColor (line 11260) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 11261) | def glClear(self, mask: int, /) -> None: ... method glClearBufferData (line 11262) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 11263) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 11264) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 11265) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 11266) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 11267) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 11268) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 11269) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearStencil (line 11270) | def glClearStencil(self, s: int, /) -> None: ... method glClearTexImage (line 11271) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 11272) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glColorMask (line 11273) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 11274) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 11275) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 11276) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 11277) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 11278) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 11279) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 11280) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 11281) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCopyImageSubData (line 11282) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexImage1D (line 11283) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 11284) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 11285) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 11286) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 11287) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCreateProgram (line 11288) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 11289) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 11290) | def glCullFace(self, mode: int, /) -> None: ... method glDebugMessageControl (line 11291) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 11292) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 11293) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 11294) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 11295) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 11296) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 11297) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 11298) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 11299) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 11300) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 11301) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 11302) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 11303) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 11304) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 11305) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 11306) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 11307) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 11308) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 11309) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 11310) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 11311) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexAttribArray (line 11312) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 11313) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 11314) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 11315) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 11316) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 11317) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 11318) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 11319) | def glDrawBuffer(self, buf: int, /) -> None: ... method glDrawBuffers (line 11320) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 11321) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 11322) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 11323) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 11324) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 11325) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 11326) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 11327) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 11328) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 11329) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 11330) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 11331) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 11332) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 11333) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 11334) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexAttribArray (line 11335) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 11336) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 11337) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 11338) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 11339) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 11340) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 11341) | def glFinish(self, /) -> None: ... method glFlush (line 11342) | def glFlush(self, /) -> None: ... method glFramebufferParameteri (line 11343) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferRenderbuffer (line 11344) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 11345) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 11346) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 11347) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 11348) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 11349) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 11350) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 11351) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGetAttribLocation (line 11352) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 11353) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 11354) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 11355) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetDoublei_v (line 11356) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 11357) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 11358) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 11359) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 11360) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 11361) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 11362) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetIntegeri_v (line 11363) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 11364) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetProgramResourceIndex (line 11365) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 11366) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 11367) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 11368) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 11369) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 11370) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 11371) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 11372) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetUniformBlockIndex (line 11373) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 11374) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glHint (line 11375) | def glHint(self, target: int, mode: int, /) -> None: ... method glInvalidateBufferData (line 11376) | def glInvalidateBufferData(self, buffer: int, /) -> None: ... method glInvalidateFramebuffer (line 11377) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateSubFramebuffer (line 11378) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 11379) | def glInvalidateTexImage(self, texture: int, level: int, /) -> None: ... method glInvalidateTexSubImage (line 11380) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 11381) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 11382) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 11383) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 11384) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 11385) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 11386) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 11387) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 11388) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 11389) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 11390) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 11391) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 11392) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 11393) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 11394) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 11395) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 11396) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 11397) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMemoryBarrier (line 11398) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMinSampleShading (line 11399) | def glMinSampleShading(self, value: float, /) -> None: ... method glMultiDrawArrays (line 11400) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 11401) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glObjectLabel (line 11402) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 11403) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes | bytea... method glPatchParameterfv (line 11404) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 11405) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 11406) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelStoref (line 11407) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 11408) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 11409) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 11410) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 11411) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 11412) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 11413) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 11414) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 11415) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopDebugGroup (line 11416) | def glPopDebugGroup(self, /) -> None: ... method glPrimitiveRestartIndex (line 11417) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProgramBinary (line 11418) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 11419) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 11420) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 11421) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 11422) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 11423) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 11424) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 11425) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 11426) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 11427) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 11428) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 11429) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 11430) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 11431) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 11432) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 11433) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 11434) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 11435) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 11436) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 11437) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 11438) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 11439) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 11440) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 11441) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 11442) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 11443) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 11444) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 11445) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 11446) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 11447) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 11448) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 11449) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 11450) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 11451) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 11452) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 11453) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 11454) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 11455) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 11456) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 11457) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 11458) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 11459) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 11460) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 11461) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 11462) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 11463) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 11464) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 11465) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 11466) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 11467) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 11468) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 11469) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 11470) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushDebugGroup (line 11471) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glQueryCounter (line 11472) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 11473) | def glReadBuffer(self, src: int, /) -> None: ... method glReadPixels (line 11474) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReleaseShaderCompiler (line 11475) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderbufferStorage (line 11476) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 11477) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 11478) | def glResumeTransformFeedback(self, /) -> None: ... method glSampleCoverage (line 11479) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 11480) | def glSampleMaski(self, maskNumber: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 11481) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 11482) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 11483) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 11484) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 11485) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 11486) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 11487) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 11488) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 11489) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 11490) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glShaderBinary (line 11491) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 11492) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 11493) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 11494) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 11495) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 11496) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 11497) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 11498) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 11499) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 11500) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 11501) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 11502) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 11503) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 11504) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 11505) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 11506) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 11507) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 11508) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 11509) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 11510) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 11511) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 11512) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 11513) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 11514) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 11515) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 11516) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 11517) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 11518) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureView (line 11519) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glUniform1d (line 11520) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 11521) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 11522) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 11523) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 11524) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 11525) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 11526) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 11527) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 11528) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 11529) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 11530) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 11531) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 11532) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 11533) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 11534) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 11535) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 11536) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 11537) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 11538) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 11539) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 11540) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 11541) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 11542) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 11543) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 11544) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 11545) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 11546) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 11547) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 11548) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 11549) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 11550) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 11551) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 11552) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 11553) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 11554) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 11555) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 11556) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 11557) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 11558) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 11559) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 11560) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 11561) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 11562) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 11563) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 11564) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 11565) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 11566) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 11567) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 11568) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 11569) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 11570) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 11571) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 11572) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUseProgram (line 11573) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 11574) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 11575) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 11576) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertexAttrib1d (line 11577) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 11578) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 11579) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 11580) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 11581) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 11582) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 11583) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 11584) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 11585) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 11586) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 11587) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 11588) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 11589) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 11590) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 11591) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 11592) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 11593) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 11594) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 11595) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 11596) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 11597) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 11598) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 11599) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 11600) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 11601) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 11602) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 11603) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 11604) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 11605) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 11606) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 11607) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 11608) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 11609) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 11610) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 11611) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 11612) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribBinding (line 11613) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 11614) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 11615) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 11616) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 11617) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 11618) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 11619) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 11620) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 11621) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 11622) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 11623) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 11624) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 11625) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 11626) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 11627) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 11628) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 11629) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 11630) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 11631) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 11632) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 11633) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 11634) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 11635) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIFormat (line 11636) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 11637) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 11638) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 11639) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 11640) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 11641) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 11642) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 11643) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 11644) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 11645) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLFormat (line 11646) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 11647) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 11648) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 11649) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 11650) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 11651) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 11652) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 11653) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 11654) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 11655) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 11656) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 11657) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... method glViewport (line 11658) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 11659) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 11660) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 11661) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method initializeOpenGLFunctions (line 11662) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_5_Compatibility (line 11664) | class QOpenGLFunctions_4_5_Compatibility(QAbstractOpenGLFunctions): method __init__ (line 11665) | def __init__(self, /) -> None: ... method glAccum (line 11666) | def glAccum(self, op: int, value: float, /) -> None: ... method glActiveShaderProgram (line 11667) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 11668) | def glActiveTexture(self, texture: int, /) -> None: ... method glAlphaFunc (line 11669) | def glAlphaFunc(self, func: int, ref: float, /) -> None: ... method glArrayElement (line 11670) | def glArrayElement(self, i: int, /) -> None: ... method glAttachShader (line 11671) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBegin (line 11672) | def glBegin(self, mode: int, /) -> None: ... method glBeginConditionalRender (line 11673) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 11674) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 11675) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 11676) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 11677) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 11678) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 11679) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindBuffersBase (line 11680) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 11681) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 11682) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 11683) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 11684) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 11685) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 11686) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 11687) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 11688) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindSamplers (line 11689) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 11690) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTextureUnit (line 11691) | def glBindTextureUnit(self, unit: int, texture: int, /) -> None: ... method glBindTextures (line 11692) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 11693) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 11694) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 11695) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 11696) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 11697) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 11698) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 11699) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 11700) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 11701) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 11702) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 11703) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 11704) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glBlitNamedFramebuffer (line 11705) | def glBlitNamedFramebuffer(self, readFramebuffer: int, drawFramebuffer... method glCallList (line 11706) | def glCallList(self, list: int, /) -> None: ... method glCallLists (line 11707) | def glCallLists(self, n: int, type: int, lists: int, /) -> None: ... method glCheckFramebufferStatus (line 11708) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glCheckNamedFramebufferStatus (line 11709) | def glCheckNamedFramebufferStatus(self, framebuffer: int, target: int,... method glClampColor (line 11710) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 11711) | def glClear(self, mask: int, /) -> None: ... method glClearAccum (line 11712) | def glClearAccum(self, red: float, green: float, blue: float, alpha: f... method glClearBufferData (line 11713) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 11714) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 11715) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 11716) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 11717) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 11718) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 11719) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 11720) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearIndex (line 11721) | def glClearIndex(self, c: float, /) -> None: ... method glClearNamedBufferData (line 11722) | def glClearNamedBufferData(self, buffer: int, internalformat: int, for... method glClearNamedFramebufferfi (line 11723) | def glClearNamedFramebufferfi(self, framebuffer: int, buffer: int, dep... method glClearNamedFramebufferfv (line 11724) | def glClearNamedFramebufferfv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferiv (line 11725) | def glClearNamedFramebufferiv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferuiv (line 11726) | def glClearNamedFramebufferuiv(self, framebuffer: int, buffer: int, dr... method glClearStencil (line 11727) | def glClearStencil(self, s: int, /) -> None: ... method glClearTexImage (line 11728) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 11729) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glClientActiveTexture (line 11730) | def glClientActiveTexture(self, texture: int, /) -> None: ... method glClipControl (line 11731) | def glClipControl(self, origin: int, depth: int, /) -> None: ... method glClipPlane (line 11732) | def glClipPlane(self, plane: int, equation: typing.Iterable[float], /)... method glColor3b (line 11733) | def glColor3b(self, red: int, green: int, blue: int, /) -> None: ... method glColor3bv (line 11734) | def glColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glColor3d (line 11735) | def glColor3d(self, red: float, green: float, blue: float, /) -> None:... method glColor3dv (line 11736) | def glColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glColor3f (line 11737) | def glColor3f(self, red: float, green: float, blue: float, /) -> None:... method glColor3fv (line 11738) | def glColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glColor3i (line 11739) | def glColor3i(self, red: int, green: int, blue: int, /) -> None: ... method glColor3iv (line 11740) | def glColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glColor3s (line 11741) | def glColor3s(self, red: int, green: int, blue: int, /) -> None: ... method glColor3sv (line 11742) | def glColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ub (line 11743) | def glColor3ub(self, red: int, green: int, blue: int, /) -> None: ... method glColor3ubv (line 11744) | def glColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor3ui (line 11745) | def glColor3ui(self, red: int, green: int, blue: int, /) -> None: ... method glColor3uiv (line 11746) | def glColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor3us (line 11747) | def glColor3us(self, red: int, green: int, blue: int, /) -> None: ... method glColor3usv (line 11748) | def glColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glColor4b (line 11749) | def glColor4b(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4bv (line 11750) | def glColor4bv(self, v: typing.Iterable[int], /) -> None: ... method glColor4d (line 11751) | def glColor4d(self, red: float, green: float, blue: float, alpha: floa... method glColor4dv (line 11752) | def glColor4dv(self, v: typing.Iterable[float], /) -> None: ... method glColor4f (line 11753) | def glColor4f(self, red: float, green: float, blue: float, alpha: floa... method glColor4fv (line 11754) | def glColor4fv(self, v: typing.Iterable[float], /) -> None: ... method glColor4i (line 11755) | def glColor4i(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4iv (line 11756) | def glColor4iv(self, v: typing.Iterable[int], /) -> None: ... method glColor4s (line 11757) | def glColor4s(self, red: int, green: int, blue: int, alpha: int, /) ->... method glColor4sv (line 11758) | def glColor4sv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ub (line 11759) | def glColor4ub(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4ubv (line 11760) | def glColor4ubv(self, v: typing.Iterable[int], /) -> None: ... method glColor4ui (line 11761) | def glColor4ui(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4uiv (line 11762) | def glColor4uiv(self, v: typing.Iterable[int], /) -> None: ... method glColor4us (line 11763) | def glColor4us(self, red: int, green: int, blue: int, alpha: int, /) -... method glColor4usv (line 11764) | def glColor4usv(self, v: typing.Iterable[int], /) -> None: ... method glColorMask (line 11765) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 11766) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glColorMaterial (line 11767) | def glColorMaterial(self, face: int, mode: int, /) -> None: ... method glColorP3ui (line 11768) | def glColorP3ui(self, type: int, color: int, /) -> None: ... method glColorP3uiv (line 11769) | def glColorP3uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorP4ui (line 11770) | def glColorP4ui(self, type: int, color: int, /) -> None: ... method glColorP4uiv (line 11771) | def glColorP4uiv(self, type: int, color: typing.Iterable[int], /) -> N... method glColorPointer (line 11772) | def glColorPointer(self, size: int, type: int, stride: int, pointer: i... method glColorSubTable (line 11773) | def glColorSubTable(self, target: int, start: int, count: int, format:... method glColorTable (line 11774) | def glColorTable(self, target: int, internalformat: int, width: int, f... method glColorTableParameterfv (line 11775) | def glColorTableParameterfv(self, target: int, pname: int, params: typ... method glColorTableParameteriv (line 11776) | def glColorTableParameteriv(self, target: int, pname: int, params: typ... method glCompileShader (line 11777) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 11778) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 11779) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 11780) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 11781) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 11782) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 11783) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCompressedTextureSubImage1D (line 11784) | def glCompressedTextureSubImage1D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage2D (line 11785) | def glCompressedTextureSubImage2D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage3D (line 11786) | def glCompressedTextureSubImage3D(self, texture: int, level: int, xoff... method glConvolutionFilter1D (line 11787) | def glConvolutionFilter1D(self, target: int, internalformat: int, widt... method glConvolutionFilter2D (line 11788) | def glConvolutionFilter2D(self, target: int, internalformat: int, widt... method glConvolutionParameterf (line 11789) | def glConvolutionParameterf(self, target: int, pname: int, params: flo... method glConvolutionParameterfv (line 11790) | def glConvolutionParameterfv(self, target: int, pname: int, params: ty... method glConvolutionParameteri (line 11791) | def glConvolutionParameteri(self, target: int, pname: int, params: int... method glConvolutionParameteriv (line 11792) | def glConvolutionParameteriv(self, target: int, pname: int, params: ty... method glCopyColorSubTable (line 11793) | def glCopyColorSubTable(self, target: int, start: int, x: int, y: int,... method glCopyColorTable (line 11794) | def glCopyColorTable(self, target: int, internalformat: int, x: int, y... method glCopyConvolutionFilter1D (line 11795) | def glCopyConvolutionFilter1D(self, target: int, internalformat: int, ... method glCopyConvolutionFilter2D (line 11796) | def glCopyConvolutionFilter2D(self, target: int, internalformat: int, ... method glCopyImageSubData (line 11797) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyPixels (line 11798) | def glCopyPixels(self, x: int, y: int, width: int, height: int, type: ... method glCopyTexImage1D (line 11799) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 11800) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 11801) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 11802) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 11803) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCopyTextureSubImage1D (line 11804) | def glCopyTextureSubImage1D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage2D (line 11805) | def glCopyTextureSubImage2D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage3D (line 11806) | def glCopyTextureSubImage3D(self, texture: int, level: int, xoffset: i... method glCreateProgram (line 11807) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 11808) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 11809) | def glCullFace(self, mode: int, /) -> None: ... method glDebugMessageControl (line 11810) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 11811) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 11812) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 11813) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteLists (line 11814) | def glDeleteLists(self, list: int, range: int, /) -> None: ... method glDeleteProgram (line 11815) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 11816) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 11817) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 11818) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 11819) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 11820) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 11821) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 11822) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 11823) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 11824) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 11825) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 11826) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 11827) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 11828) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 11829) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 11830) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 11831) | def glDisable(self, cap: int, /) -> None: ... method glDisableClientState (line 11832) | def glDisableClientState(self, array: int, /) -> None: ... method glDisableVertexArrayAttrib (line 11833) | def glDisableVertexArrayAttrib(self, vaobj: int, index: int, /) -> Non... method glDisableVertexAttribArray (line 11834) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 11835) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 11836) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 11837) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 11838) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 11839) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 11840) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 11841) | def glDrawBuffer(self, buf: int, /) -> None: ... method glDrawBuffers (line 11842) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 11843) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 11844) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 11845) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 11846) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 11847) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 11848) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 11849) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawPixels (line 11850) | def glDrawPixels(self, width: int, height: int, format: int, type: int... method glDrawRangeElements (line 11851) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 11852) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 11853) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 11854) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 11855) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 11856) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEdgeFlag (line 11857) | def glEdgeFlag(self, flag: int, /) -> None: ... method glEdgeFlagPointer (line 11858) | def glEdgeFlagPointer(self, stride: int, pointer: int, /) -> None: ... method glEnable (line 11859) | def glEnable(self, cap: int, /) -> None: ... method glEnableClientState (line 11860) | def glEnableClientState(self, array: int, /) -> None: ... method glEnableVertexArrayAttrib (line 11861) | def glEnableVertexArrayAttrib(self, vaobj: int, index: int, /) -> None... method glEnableVertexAttribArray (line 11862) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 11863) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEnd (line 11864) | def glEnd(self, /) -> None: ... method glEndConditionalRender (line 11865) | def glEndConditionalRender(self, /) -> None: ... method glEndList (line 11866) | def glEndList(self, /) -> None: ... method glEndQuery (line 11867) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 11868) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 11869) | def glEndTransformFeedback(self, /) -> None: ... method glEvalCoord1d (line 11870) | def glEvalCoord1d(self, u: float, /) -> None: ... method glEvalCoord1dv (line 11871) | def glEvalCoord1dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord1f (line 11872) | def glEvalCoord1f(self, u: float, /) -> None: ... method glEvalCoord1fv (line 11873) | def glEvalCoord1fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2d (line 11874) | def glEvalCoord2d(self, u: float, v: float, /) -> None: ... method glEvalCoord2dv (line 11875) | def glEvalCoord2dv(self, u: typing.Iterable[float], /) -> None: ... method glEvalCoord2f (line 11876) | def glEvalCoord2f(self, u: float, v: float, /) -> None: ... method glEvalCoord2fv (line 11877) | def glEvalCoord2fv(self, u: typing.Iterable[float], /) -> None: ... method glEvalMesh1 (line 11878) | def glEvalMesh1(self, mode: int, i1: int, i2: int, /) -> None: ... method glEvalMesh2 (line 11879) | def glEvalMesh2(self, mode: int, i1: int, i2: int, j1: int, j2: int, /... method glEvalPoint1 (line 11880) | def glEvalPoint1(self, i: int, /) -> None: ... method glEvalPoint2 (line 11881) | def glEvalPoint2(self, i: int, j: int, /) -> None: ... method glFinish (line 11882) | def glFinish(self, /) -> None: ... method glFlush (line 11883) | def glFlush(self, /) -> None: ... method glFogCoordPointer (line 11884) | def glFogCoordPointer(self, type: int, stride: int, pointer: int, /) -... method glFogCoordd (line 11885) | def glFogCoordd(self, coord: float, /) -> None: ... method glFogCoorddv (line 11886) | def glFogCoorddv(self, coord: typing.Iterable[float], /) -> None: ... method glFogCoordf (line 11887) | def glFogCoordf(self, coord: float, /) -> None: ... method glFogCoordfv (line 11888) | def glFogCoordfv(self, coord: typing.Iterable[float], /) -> None: ... method glFogf (line 11889) | def glFogf(self, pname: int, param: float, /) -> None: ... method glFogfv (line 11890) | def glFogfv(self, pname: int, params: typing.Iterable[float], /) -> No... method glFogi (line 11891) | def glFogi(self, pname: int, param: int, /) -> None: ... method glFogiv (line 11892) | def glFogiv(self, pname: int, params: typing.Iterable[int], /) -> None... method glFramebufferParameteri (line 11893) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferRenderbuffer (line 11894) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 11895) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 11896) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 11897) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 11898) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 11899) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 11900) | def glFrontFace(self, mode: int, /) -> None: ... method glFrustum (line 11901) | def glFrustum(self, left: float, right: float, bottom: float, top: flo... method glGenLists (line 11902) | def glGenLists(self, range: int, /) -> int: ... method glGenerateMipmap (line 11903) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGenerateTextureMipmap (line 11904) | def glGenerateTextureMipmap(self, texture: int, /) -> None: ... method glGetAttribLocation (line 11905) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 11906) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 11907) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetColorTable (line 11908) | def glGetColorTable(self, target: int, format: int, type: int, table: ... method glGetCompressedTexImage (line 11909) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetCompressedTextureImage (line 11910) | def glGetCompressedTextureImage(self, texture: int, level: int, bufSiz... method glGetCompressedTextureSubImage (line 11911) | def glGetCompressedTextureSubImage(self, texture: int, level: int, xof... method glGetConvolutionFilter (line 11912) | def glGetConvolutionFilter(self, target: int, format: int, type: int, ... method glGetDoublei_v (line 11913) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 11914) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 11915) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 11916) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 11917) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 11918) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 11919) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetGraphicsResetStatus (line 11920) | def glGetGraphicsResetStatus(self, /) -> int: ... method glGetHistogram (line 11921) | def glGetHistogram(self, target: int, reset: int, format: int, type: i... method glGetIntegeri_v (line 11922) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 11923) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetMinmax (line 11924) | def glGetMinmax(self, target: int, reset: int, format: int, type: int,... method glGetProgramResourceIndex (line 11925) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 11926) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 11927) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetSeparableFilter (line 11928) | def glGetSeparableFilter(self, target: int, format: int, type: int, ro... method glGetString (line 11929) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 11930) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 11931) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 11932) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 11933) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetTextureImage (line 11934) | def glGetTextureImage(self, texture: int, level: int, format: int, typ... method glGetTextureSubImage (line 11935) | def glGetTextureSubImage(self, texture: int, level: int, xoffset: int,... method glGetUniformBlockIndex (line 11936) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 11937) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glGetnColorTable (line 11938) | def glGetnColorTable(self, target: int, format: int, type: int, bufSiz... method glGetnCompressedTexImage (line 11939) | def glGetnCompressedTexImage(self, target: int, lod: int, bufSize: int... method glGetnConvolutionFilter (line 11940) | def glGetnConvolutionFilter(self, target: int, format: int, type: int,... method glGetnHistogram (line 11941) | def glGetnHistogram(self, target: int, reset: int, format: int, type: ... method glGetnMinmax (line 11942) | def glGetnMinmax(self, target: int, reset: int, format: int, type: int... method glGetnSeparableFilter (line 11943) | def glGetnSeparableFilter(self, target: int, format: int, type: int, r... method glGetnTexImage (line 11944) | def glGetnTexImage(self, target: int, level: int, format: int, type: i... method glHint (line 11945) | def glHint(self, target: int, mode: int, /) -> None: ... method glHistogram (line 11946) | def glHistogram(self, target: int, width: int, internalformat: int, si... method glIndexMask (line 11947) | def glIndexMask(self, mask: int, /) -> None: ... method glIndexPointer (line 11948) | def glIndexPointer(self, type: int, stride: int, pointer: int, /) -> N... method glIndexd (line 11949) | def glIndexd(self, c: float, /) -> None: ... method glIndexdv (line 11950) | def glIndexdv(self, c: typing.Iterable[float], /) -> None: ... method glIndexf (line 11951) | def glIndexf(self, c: float, /) -> None: ... method glIndexfv (line 11952) | def glIndexfv(self, c: typing.Iterable[float], /) -> None: ... method glIndexi (line 11953) | def glIndexi(self, c: int, /) -> None: ... method glIndexiv (line 11954) | def glIndexiv(self, c: typing.Iterable[int], /) -> None: ... method glIndexs (line 11955) | def glIndexs(self, c: int, /) -> None: ... method glIndexsv (line 11956) | def glIndexsv(self, c: typing.Iterable[int], /) -> None: ... method glIndexub (line 11957) | def glIndexub(self, c: int, /) -> None: ... method glIndexubv (line 11958) | def glIndexubv(self, c: typing.Iterable[int], /) -> None: ... method glInitNames (line 11959) | def glInitNames(self, /) -> None: ... method glInterleavedArrays (line 11960) | def glInterleavedArrays(self, format: int, stride: int, pointer: int, ... method glInvalidateBufferData (line 11961) | def glInvalidateBufferData(self, buffer: int, /) -> None: ... method glInvalidateFramebuffer (line 11962) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateNamedFramebufferData (line 11963) | def glInvalidateNamedFramebufferData(self, framebuffer: int, numAttach... method glInvalidateNamedFramebufferSubData (line 11964) | def glInvalidateNamedFramebufferSubData(self, framebuffer: int, numAtt... method glInvalidateSubFramebuffer (line 11965) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 11966) | def glInvalidateTexImage(self, texture: int, level: int, /) -> None: ... method glInvalidateTexSubImage (line 11967) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 11968) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 11969) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 11970) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 11971) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsList (line 11972) | def glIsList(self, list: int, /) -> int: ... method glIsProgram (line 11973) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 11974) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 11975) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 11976) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 11977) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 11978) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 11979) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 11980) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 11981) | def glIsVertexArray(self, array: int, /) -> int: ... method glLightModelf (line 11982) | def glLightModelf(self, pname: int, param: float, /) -> None: ... method glLightModelfv (line 11983) | def glLightModelfv(self, pname: int, params: typing.Iterable[float], /... method glLightModeli (line 11984) | def glLightModeli(self, pname: int, param: int, /) -> None: ... method glLightModeliv (line 11985) | def glLightModeliv(self, pname: int, params: typing.Iterable[int], /) ... method glLightf (line 11986) | def glLightf(self, light: int, pname: int, param: float, /) -> None: ... method glLightfv (line 11987) | def glLightfv(self, light: int, pname: int, params: typing.Iterable[fl... method glLighti (line 11988) | def glLighti(self, light: int, pname: int, param: int, /) -> None: ... method glLightiv (line 11989) | def glLightiv(self, light: int, pname: int, params: typing.Iterable[in... method glLineStipple (line 11990) | def glLineStipple(self, factor: int, pattern: int, /) -> None: ... method glLineWidth (line 11991) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 11992) | def glLinkProgram(self, program: int, /) -> None: ... method glListBase (line 11993) | def glListBase(self, base: int, /) -> None: ... method glLoadIdentity (line 11994) | def glLoadIdentity(self, /) -> None: ... method glLoadMatrixd (line 11995) | def glLoadMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glLoadMatrixf (line 11996) | def glLoadMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glLoadName (line 11997) | def glLoadName(self, name: int, /) -> None: ... method glLoadTransposeMatrixd (line 11998) | def glLoadTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glLoadTransposeMatrixf (line 11999) | def glLoadTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glLogicOp (line 12000) | def glLogicOp(self, opcode: int, /) -> None: ... method glMap1d (line 12001) | def glMap1d(self, target: int, u1: float, u2: float, stride: int, orde... method glMap1f (line 12002) | def glMap1f(self, target: int, u1: float, u2: float, stride: int, orde... method glMap2d (line 12003) | def glMap2d(self, target: int, u1: float, u2: float, ustride: int, uor... method glMap2f (line 12004) | def glMap2f(self, target: int, u1: float, u2: float, ustride: int, uor... method glMapBuffer (line 12005) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapGrid1d (line 12006) | def glMapGrid1d(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid1f (line 12007) | def glMapGrid1f(self, un: int, u1: float, u2: float, /) -> None: ... method glMapGrid2d (line 12008) | def glMapGrid2d(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapGrid2f (line 12009) | def glMapGrid2f(self, un: int, u1: float, u2: float, vn: int, v1: floa... method glMapNamedBuffer (line 12010) | def glMapNamedBuffer(self, buffer: int, access: int, /) -> int: ... method glMaterialf (line 12011) | def glMaterialf(self, face: int, pname: int, param: float, /) -> None:... method glMaterialfv (line 12012) | def glMaterialfv(self, face: int, pname: int, params: typing.Iterable[... method glMateriali (line 12013) | def glMateriali(self, face: int, pname: int, param: int, /) -> None: ... method glMaterialiv (line 12014) | def glMaterialiv(self, face: int, pname: int, params: typing.Iterable[... method glMatrixMode (line 12015) | def glMatrixMode(self, mode: int, /) -> None: ... method glMemoryBarrier (line 12016) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMemoryBarrierByRegion (line 12017) | def glMemoryBarrierByRegion(self, barriers: int, /) -> None: ... method glMinSampleShading (line 12018) | def glMinSampleShading(self, value: float, /) -> None: ... method glMinmax (line 12019) | def glMinmax(self, target: int, internalformat: int, sink: int, /) -> ... method glMultMatrixd (line 12020) | def glMultMatrixd(self, m: typing.Iterable[float], /) -> None: ... method glMultMatrixf (line 12021) | def glMultMatrixf(self, m: typing.Iterable[float], /) -> None: ... method glMultTransposeMatrixd (line 12022) | def glMultTransposeMatrixd(self, m: typing.Iterable[float], /) -> None... method glMultTransposeMatrixf (line 12023) | def glMultTransposeMatrixf(self, m: typing.Iterable[float], /) -> None... method glMultiDrawArrays (line 12024) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 12025) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glMultiTexCoord1d (line 12026) | def glMultiTexCoord1d(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1dv (line 12027) | def glMultiTexCoord1dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1f (line 12028) | def glMultiTexCoord1f(self, target: int, s: float, /) -> None: ... method glMultiTexCoord1fv (line 12029) | def glMultiTexCoord1fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord1i (line 12030) | def glMultiTexCoord1i(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1iv (line 12031) | def glMultiTexCoord1iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord1s (line 12032) | def glMultiTexCoord1s(self, target: int, s: int, /) -> None: ... method glMultiTexCoord1sv (line 12033) | def glMultiTexCoord1sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2d (line 12034) | def glMultiTexCoord2d(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2dv (line 12035) | def glMultiTexCoord2dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2f (line 12036) | def glMultiTexCoord2f(self, target: int, s: float, t: float, /) -> Non... method glMultiTexCoord2fv (line 12037) | def glMultiTexCoord2fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord2i (line 12038) | def glMultiTexCoord2i(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2iv (line 12039) | def glMultiTexCoord2iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord2s (line 12040) | def glMultiTexCoord2s(self, target: int, s: int, t: int, /) -> None: ... method glMultiTexCoord2sv (line 12041) | def glMultiTexCoord2sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3d (line 12042) | def glMultiTexCoord3d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3dv (line 12043) | def glMultiTexCoord3dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3f (line 12044) | def glMultiTexCoord3f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord3fv (line 12045) | def glMultiTexCoord3fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord3i (line 12046) | def glMultiTexCoord3i(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3iv (line 12047) | def glMultiTexCoord3iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord3s (line 12048) | def glMultiTexCoord3s(self, target: int, s: int, t: int, r: int, /) ->... method glMultiTexCoord3sv (line 12049) | def glMultiTexCoord3sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4d (line 12050) | def glMultiTexCoord4d(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4dv (line 12051) | def glMultiTexCoord4dv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4f (line 12052) | def glMultiTexCoord4f(self, target: int, s: float, t: float, r: float,... method glMultiTexCoord4fv (line 12053) | def glMultiTexCoord4fv(self, target: int, v: typing.Iterable[float], /... method glMultiTexCoord4i (line 12054) | def glMultiTexCoord4i(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4iv (line 12055) | def glMultiTexCoord4iv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoord4s (line 12056) | def glMultiTexCoord4s(self, target: int, s: int, t: int, r: int, q: in... method glMultiTexCoord4sv (line 12057) | def glMultiTexCoord4sv(self, target: int, v: typing.Iterable[int], /) ... method glMultiTexCoordP1ui (line 12058) | def glMultiTexCoordP1ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP1uiv (line 12059) | def glMultiTexCoordP1uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP2ui (line 12060) | def glMultiTexCoordP2ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP2uiv (line 12061) | def glMultiTexCoordP2uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP3ui (line 12062) | def glMultiTexCoordP3ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP3uiv (line 12063) | def glMultiTexCoordP3uiv(self, texture: int, type: int, coords: typing... method glMultiTexCoordP4ui (line 12064) | def glMultiTexCoordP4ui(self, texture: int, type: int, coords: int, /)... method glMultiTexCoordP4uiv (line 12065) | def glMultiTexCoordP4uiv(self, texture: int, type: int, coords: typing... method glNamedFramebufferDrawBuffer (line 12066) | def glNamedFramebufferDrawBuffer(self, framebuffer: int, buf: int, /) ... method glNamedFramebufferDrawBuffers (line 12067) | def glNamedFramebufferDrawBuffers(self, framebuffer: int, n: int, bufs... method glNamedFramebufferParameteri (line 12068) | def glNamedFramebufferParameteri(self, framebuffer: int, pname: int, p... method glNamedFramebufferReadBuffer (line 12069) | def glNamedFramebufferReadBuffer(self, framebuffer: int, src: int, /) ... method glNamedFramebufferRenderbuffer (line 12070) | def glNamedFramebufferRenderbuffer(self, framebuffer: int, attachment:... method glNamedFramebufferTexture (line 12071) | def glNamedFramebufferTexture(self, framebuffer: int, attachment: int,... method glNamedFramebufferTextureLayer (line 12072) | def glNamedFramebufferTextureLayer(self, framebuffer: int, attachment:... method glNamedRenderbufferStorage (line 12073) | def glNamedRenderbufferStorage(self, renderbuffer: int, internalformat... method glNamedRenderbufferStorageMultisample (line 12074) | def glNamedRenderbufferStorageMultisample(self, renderbuffer: int, sam... method glNewList (line 12075) | def glNewList(self, list: int, mode: int, /) -> None: ... method glNormal3b (line 12076) | def glNormal3b(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3bv (line 12077) | def glNormal3bv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3d (line 12078) | def glNormal3d(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3dv (line 12079) | def glNormal3dv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3f (line 12080) | def glNormal3f(self, nx: float, ny: float, nz: float, /) -> None: ... method glNormal3fv (line 12081) | def glNormal3fv(self, v: typing.Iterable[float], /) -> None: ... method glNormal3i (line 12082) | def glNormal3i(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3iv (line 12083) | def glNormal3iv(self, v: typing.Iterable[int], /) -> None: ... method glNormal3s (line 12084) | def glNormal3s(self, nx: int, ny: int, nz: int, /) -> None: ... method glNormal3sv (line 12085) | def glNormal3sv(self, v: typing.Iterable[int], /) -> None: ... method glNormalP3ui (line 12086) | def glNormalP3ui(self, type: int, coords: int, /) -> None: ... method glNormalP3uiv (line 12087) | def glNormalP3uiv(self, type: int, coords: typing.Iterable[int], /) ->... method glNormalPointer (line 12088) | def glNormalPointer(self, type: int, stride: int, pointer: int, /) -> ... method glObjectLabel (line 12089) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 12090) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes | bytea... method glOrtho (line 12091) | def glOrtho(self, left: float, right: float, bottom: float, top: float... method glPassThrough (line 12092) | def glPassThrough(self, token: float, /) -> None: ... method glPatchParameterfv (line 12093) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 12094) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 12095) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelMapfv (line 12096) | def glPixelMapfv(self, map: int, mapsize: int, values: typing.Iterable... method glPixelMapuiv (line 12097) | def glPixelMapuiv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelMapusv (line 12098) | def glPixelMapusv(self, map: int, mapsize: int, values: typing.Iterabl... method glPixelStoref (line 12099) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 12100) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPixelTransferf (line 12101) | def glPixelTransferf(self, pname: int, param: float, /) -> None: ... method glPixelTransferi (line 12102) | def glPixelTransferi(self, pname: int, param: int, /) -> None: ... method glPixelZoom (line 12103) | def glPixelZoom(self, xfactor: float, yfactor: float, /) -> None: ... method glPointParameterf (line 12104) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 12105) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 12106) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 12107) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 12108) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 12109) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 12110) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopAttrib (line 12111) | def glPopAttrib(self, /) -> None: ... method glPopClientAttrib (line 12112) | def glPopClientAttrib(self, /) -> None: ... method glPopDebugGroup (line 12113) | def glPopDebugGroup(self, /) -> None: ... method glPopMatrix (line 12114) | def glPopMatrix(self, /) -> None: ... method glPopName (line 12115) | def glPopName(self, /) -> None: ... method glPrimitiveRestartIndex (line 12116) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glPrioritizeTextures (line 12117) | def glPrioritizeTextures(self, n: int, textures: typing.Iterable[int],... method glProgramBinary (line 12118) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 12119) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 12120) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 12121) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 12122) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 12123) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 12124) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 12125) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 12126) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 12127) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 12128) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 12129) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 12130) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 12131) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 12132) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 12133) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 12134) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 12135) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 12136) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 12137) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 12138) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 12139) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 12140) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 12141) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 12142) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 12143) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 12144) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 12145) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 12146) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 12147) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 12148) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 12149) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 12150) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 12151) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 12152) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 12153) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 12154) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 12155) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 12156) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 12157) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 12158) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 12159) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 12160) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 12161) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 12162) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 12163) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 12164) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 12165) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 12166) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 12167) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 12168) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 12169) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 12170) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushAttrib (line 12171) | def glPushAttrib(self, mask: int, /) -> None: ... method glPushClientAttrib (line 12172) | def glPushClientAttrib(self, mask: int, /) -> None: ... method glPushDebugGroup (line 12173) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glPushMatrix (line 12174) | def glPushMatrix(self, /) -> None: ... method glPushName (line 12175) | def glPushName(self, name: int, /) -> None: ... method glQueryCounter (line 12176) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glRasterPos2d (line 12177) | def glRasterPos2d(self, x: float, y: float, /) -> None: ... method glRasterPos2dv (line 12178) | def glRasterPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2f (line 12179) | def glRasterPos2f(self, x: float, y: float, /) -> None: ... method glRasterPos2fv (line 12180) | def glRasterPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos2i (line 12181) | def glRasterPos2i(self, x: int, y: int, /) -> None: ... method glRasterPos2iv (line 12182) | def glRasterPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos2s (line 12183) | def glRasterPos2s(self, x: int, y: int, /) -> None: ... method glRasterPos2sv (line 12184) | def glRasterPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3d (line 12185) | def glRasterPos3d(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3dv (line 12186) | def glRasterPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3f (line 12187) | def glRasterPos3f(self, x: float, y: float, z: float, /) -> None: ... method glRasterPos3fv (line 12188) | def glRasterPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos3i (line 12189) | def glRasterPos3i(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3iv (line 12190) | def glRasterPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos3s (line 12191) | def glRasterPos3s(self, x: int, y: int, z: int, /) -> None: ... method glRasterPos3sv (line 12192) | def glRasterPos3sv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4d (line 12193) | def glRasterPos4d(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4dv (line 12194) | def glRasterPos4dv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4f (line 12195) | def glRasterPos4f(self, x: float, y: float, z: float, w: float, /) -> ... method glRasterPos4fv (line 12196) | def glRasterPos4fv(self, v: typing.Iterable[float], /) -> None: ... method glRasterPos4i (line 12197) | def glRasterPos4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4iv (line 12198) | def glRasterPos4iv(self, v: typing.Iterable[int], /) -> None: ... method glRasterPos4s (line 12199) | def glRasterPos4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glRasterPos4sv (line 12200) | def glRasterPos4sv(self, v: typing.Iterable[int], /) -> None: ... method glReadBuffer (line 12201) | def glReadBuffer(self, src: int, /) -> None: ... method glReadPixels (line 12202) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReadnPixels (line 12203) | def glReadnPixels(self, x: int, y: int, width: int, height: int, forma... method glRectd (line 12204) | def glRectd(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectdv (line 12205) | def glRectdv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRectf (line 12206) | def glRectf(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method glRectfv (line 12207) | def glRectfv(self, v1: typing.Iterable[float], v2: typing.Iterable[flo... method glRecti (line 12208) | def glRecti(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectiv (line 12209) | def glRectiv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glRects (line 12210) | def glRects(self, x1: int, y1: int, x2: int, y2: int, /) -> None: ... method glRectsv (line 12211) | def glRectsv(self, v1: typing.Iterable[int], v2: typing.Iterable[int],... method glReleaseShaderCompiler (line 12212) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderMode (line 12213) | def glRenderMode(self, mode: int, /) -> int: ... method glRenderbufferStorage (line 12214) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 12215) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResetHistogram (line 12216) | def glResetHistogram(self, target: int, /) -> None: ... method glResetMinmax (line 12217) | def glResetMinmax(self, target: int, /) -> None: ... method glResumeTransformFeedback (line 12218) | def glResumeTransformFeedback(self, /) -> None: ... method glRotated (line 12219) | def glRotated(self, angle: float, x: float, y: float, z: float, /) -> ... method glRotatef (line 12220) | def glRotatef(self, angle: float, x: float, y: float, z: float, /) -> ... method glSampleCoverage (line 12221) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 12222) | def glSampleMaski(self, maskNumber: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 12223) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 12224) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 12225) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 12226) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 12227) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 12228) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScaled (line 12229) | def glScaled(self, x: float, y: float, z: float, /) -> None: ... method glScalef (line 12230) | def glScalef(self, x: float, y: float, z: float, /) -> None: ... method glScissor (line 12231) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 12232) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 12233) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 12234) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glSecondaryColor3b (line 12235) | def glSecondaryColor3b(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3bv (line 12236) | def glSecondaryColor3bv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3d (line 12237) | def glSecondaryColor3d(self, red: float, green: float, blue: float, /)... method glSecondaryColor3dv (line 12238) | def glSecondaryColor3dv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3f (line 12239) | def glSecondaryColor3f(self, red: float, green: float, blue: float, /)... method glSecondaryColor3fv (line 12240) | def glSecondaryColor3fv(self, v: typing.Iterable[float], /) -> None: ... method glSecondaryColor3i (line 12241) | def glSecondaryColor3i(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3iv (line 12242) | def glSecondaryColor3iv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3s (line 12243) | def glSecondaryColor3s(self, red: int, green: int, blue: int, /) -> No... method glSecondaryColor3sv (line 12244) | def glSecondaryColor3sv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ub (line 12245) | def glSecondaryColor3ub(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3ubv (line 12246) | def glSecondaryColor3ubv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3ui (line 12247) | def glSecondaryColor3ui(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3uiv (line 12248) | def glSecondaryColor3uiv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColor3us (line 12249) | def glSecondaryColor3us(self, red: int, green: int, blue: int, /) -> N... method glSecondaryColor3usv (line 12250) | def glSecondaryColor3usv(self, v: typing.Iterable[int], /) -> None: ... method glSecondaryColorP3ui (line 12251) | def glSecondaryColorP3ui(self, type: int, color: int, /) -> None: ... method glSecondaryColorP3uiv (line 12252) | def glSecondaryColorP3uiv(self, type: int, color: typing.Iterable[int]... method glSecondaryColorPointer (line 12253) | def glSecondaryColorPointer(self, size: int, type: int, stride: int, p... method glSeparableFilter2D (line 12254) | def glSeparableFilter2D(self, target: int, internalformat: int, width:... method glShadeModel (line 12255) | def glShadeModel(self, mode: int, /) -> None: ... method glShaderBinary (line 12256) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 12257) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 12258) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 12259) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 12260) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 12261) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 12262) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 12263) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 12264) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexCoord1d (line 12265) | def glTexCoord1d(self, s: float, /) -> None: ... method glTexCoord1dv (line 12266) | def glTexCoord1dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1f (line 12267) | def glTexCoord1f(self, s: float, /) -> None: ... method glTexCoord1fv (line 12268) | def glTexCoord1fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord1i (line 12269) | def glTexCoord1i(self, s: int, /) -> None: ... method glTexCoord1iv (line 12270) | def glTexCoord1iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord1s (line 12271) | def glTexCoord1s(self, s: int, /) -> None: ... method glTexCoord1sv (line 12272) | def glTexCoord1sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2d (line 12273) | def glTexCoord2d(self, s: float, t: float, /) -> None: ... method glTexCoord2dv (line 12274) | def glTexCoord2dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2f (line 12275) | def glTexCoord2f(self, s: float, t: float, /) -> None: ... method glTexCoord2fv (line 12276) | def glTexCoord2fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord2i (line 12277) | def glTexCoord2i(self, s: int, t: int, /) -> None: ... method glTexCoord2iv (line 12278) | def glTexCoord2iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord2s (line 12279) | def glTexCoord2s(self, s: int, t: int, /) -> None: ... method glTexCoord2sv (line 12280) | def glTexCoord2sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3d (line 12281) | def glTexCoord3d(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3dv (line 12282) | def glTexCoord3dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3f (line 12283) | def glTexCoord3f(self, s: float, t: float, r: float, /) -> None: ... method glTexCoord3fv (line 12284) | def glTexCoord3fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord3i (line 12285) | def glTexCoord3i(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3iv (line 12286) | def glTexCoord3iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord3s (line 12287) | def glTexCoord3s(self, s: int, t: int, r: int, /) -> None: ... method glTexCoord3sv (line 12288) | def glTexCoord3sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4d (line 12289) | def glTexCoord4d(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4dv (line 12290) | def glTexCoord4dv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4f (line 12291) | def glTexCoord4f(self, s: float, t: float, r: float, q: float, /) -> N... method glTexCoord4fv (line 12292) | def glTexCoord4fv(self, v: typing.Iterable[float], /) -> None: ... method glTexCoord4i (line 12293) | def glTexCoord4i(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4iv (line 12294) | def glTexCoord4iv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoord4s (line 12295) | def glTexCoord4s(self, s: int, t: int, r: int, q: int, /) -> None: ... method glTexCoord4sv (line 12296) | def glTexCoord4sv(self, v: typing.Iterable[int], /) -> None: ... method glTexCoordP1ui (line 12297) | def glTexCoordP1ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP1uiv (line 12298) | def glTexCoordP1uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP2ui (line 12299) | def glTexCoordP2ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP2uiv (line 12300) | def glTexCoordP2uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP3ui (line 12301) | def glTexCoordP3ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP3uiv (line 12302) | def glTexCoordP3uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordP4ui (line 12303) | def glTexCoordP4ui(self, type: int, coords: int, /) -> None: ... method glTexCoordP4uiv (line 12304) | def glTexCoordP4uiv(self, type: int, coords: typing.Iterable[int], /) ... method glTexCoordPointer (line 12305) | def glTexCoordPointer(self, size: int, type: int, stride: int, pointer... method glTexEnvf (line 12306) | def glTexEnvf(self, target: int, pname: int, param: float, /) -> None:... method glTexEnvfv (line 12307) | def glTexEnvfv(self, target: int, pname: int, params: typing.Iterable[... method glTexEnvi (line 12308) | def glTexEnvi(self, target: int, pname: int, param: int, /) -> None: ... method glTexEnviv (line 12309) | def glTexEnviv(self, target: int, pname: int, params: typing.Iterable[... method glTexGend (line 12310) | def glTexGend(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGendv (line 12311) | def glTexGendv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGenf (line 12312) | def glTexGenf(self, coord: int, pname: int, param: float, /) -> None: ... method glTexGenfv (line 12313) | def glTexGenfv(self, coord: int, pname: int, params: typing.Iterable[f... method glTexGeni (line 12314) | def glTexGeni(self, coord: int, pname: int, param: int, /) -> None: ... method glTexGeniv (line 12315) | def glTexGeniv(self, coord: int, pname: int, params: typing.Iterable[i... method glTexImage1D (line 12316) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 12317) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 12318) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 12319) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 12320) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 12321) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 12322) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 12323) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 12324) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 12325) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 12326) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 12327) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 12328) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 12329) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 12330) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 12331) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 12332) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 12333) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 12334) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureBarrier (line 12335) | def glTextureBarrier(self, /) -> None: ... method glTextureBuffer (line 12336) | def glTextureBuffer(self, texture: int, internalformat: int, buffer: i... method glTextureParameterIiv (line 12337) | def glTextureParameterIiv(self, texture: int, pname: int, params: typi... method glTextureParameterIuiv (line 12338) | def glTextureParameterIuiv(self, texture: int, pname: int, params: typ... method glTextureParameterf (line 12339) | def glTextureParameterf(self, texture: int, pname: int, param: float, ... method glTextureParameterfv (line 12340) | def glTextureParameterfv(self, texture: int, pname: int, param: typing... method glTextureParameteri (line 12341) | def glTextureParameteri(self, texture: int, pname: int, param: int, /)... method glTextureParameteriv (line 12342) | def glTextureParameteriv(self, texture: int, pname: int, param: typing... method glTextureStorage1D (line 12343) | def glTextureStorage1D(self, texture: int, levels: int, internalformat... method glTextureStorage2D (line 12344) | def glTextureStorage2D(self, texture: int, levels: int, internalformat... method glTextureStorage2DMultisample (line 12345) | def glTextureStorage2DMultisample(self, texture: int, samples: int, in... method glTextureStorage3D (line 12346) | def glTextureStorage3D(self, texture: int, levels: int, internalformat... method glTextureStorage3DMultisample (line 12347) | def glTextureStorage3DMultisample(self, texture: int, samples: int, in... method glTextureSubImage1D (line 12348) | def glTextureSubImage1D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage2D (line 12349) | def glTextureSubImage2D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage3D (line 12350) | def glTextureSubImage3D(self, texture: int, level: int, xoffset: int, ... method glTextureView (line 12351) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTransformFeedbackBufferBase (line 12352) | def glTransformFeedbackBufferBase(self, xfb: int, index: int, buffer: ... method glTranslated (line 12353) | def glTranslated(self, x: float, y: float, z: float, /) -> None: ... method glTranslatef (line 12354) | def glTranslatef(self, x: float, y: float, z: float, /) -> None: ... method glUniform1d (line 12355) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 12356) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 12357) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 12358) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 12359) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 12360) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 12361) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 12362) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 12363) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 12364) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 12365) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 12366) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 12367) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 12368) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 12369) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 12370) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 12371) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 12372) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 12373) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 12374) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 12375) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 12376) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 12377) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 12378) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 12379) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 12380) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 12381) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 12382) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 12383) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 12384) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 12385) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 12386) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 12387) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 12388) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 12389) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 12390) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 12391) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 12392) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 12393) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 12394) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 12395) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 12396) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 12397) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 12398) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 12399) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 12400) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 12401) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 12402) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 12403) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 12404) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 12405) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 12406) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 12407) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUnmapNamedBuffer (line 12408) | def glUnmapNamedBuffer(self, buffer: int, /) -> int: ... method glUseProgram (line 12409) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 12410) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 12411) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 12412) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertex2d (line 12413) | def glVertex2d(self, x: float, y: float, /) -> None: ... method glVertex2dv (line 12414) | def glVertex2dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2f (line 12415) | def glVertex2f(self, x: float, y: float, /) -> None: ... method glVertex2fv (line 12416) | def glVertex2fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex2i (line 12417) | def glVertex2i(self, x: int, y: int, /) -> None: ... method glVertex2iv (line 12418) | def glVertex2iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex2s (line 12419) | def glVertex2s(self, x: int, y: int, /) -> None: ... method glVertex2sv (line 12420) | def glVertex2sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3d (line 12421) | def glVertex3d(self, x: float, y: float, z: float, /) -> None: ... method glVertex3dv (line 12422) | def glVertex3dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3f (line 12423) | def glVertex3f(self, x: float, y: float, z: float, /) -> None: ... method glVertex3fv (line 12424) | def glVertex3fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex3i (line 12425) | def glVertex3i(self, x: int, y: int, z: int, /) -> None: ... method glVertex3iv (line 12426) | def glVertex3iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex3s (line 12427) | def glVertex3s(self, x: int, y: int, z: int, /) -> None: ... method glVertex3sv (line 12428) | def glVertex3sv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4d (line 12429) | def glVertex4d(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4dv (line 12430) | def glVertex4dv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4f (line 12431) | def glVertex4f(self, x: float, y: float, z: float, w: float, /) -> Non... method glVertex4fv (line 12432) | def glVertex4fv(self, v: typing.Iterable[float], /) -> None: ... method glVertex4i (line 12433) | def glVertex4i(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4iv (line 12434) | def glVertex4iv(self, v: typing.Iterable[int], /) -> None: ... method glVertex4s (line 12435) | def glVertex4s(self, x: int, y: int, z: int, w: int, /) -> None: ... method glVertex4sv (line 12436) | def glVertex4sv(self, v: typing.Iterable[int], /) -> None: ... method glVertexArrayAttribBinding (line 12437) | def glVertexArrayAttribBinding(self, vaobj: int, attribindex: int, bin... method glVertexArrayAttribFormat (line 12438) | def glVertexArrayAttribFormat(self, vaobj: int, attribindex: int, size... method glVertexArrayAttribIFormat (line 12439) | def glVertexArrayAttribIFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayAttribLFormat (line 12440) | def glVertexArrayAttribLFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayBindingDivisor (line 12441) | def glVertexArrayBindingDivisor(self, vaobj: int, bindingindex: int, d... method glVertexArrayElementBuffer (line 12442) | def glVertexArrayElementBuffer(self, vaobj: int, buffer: int, /) -> No... method glVertexAttrib1d (line 12443) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 12444) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 12445) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 12446) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 12447) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 12448) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 12449) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 12450) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 12451) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 12452) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 12453) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 12454) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 12455) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 12456) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 12457) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 12458) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 12459) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 12460) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 12461) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 12462) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 12463) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 12464) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 12465) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 12466) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 12467) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 12468) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 12469) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 12470) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 12471) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 12472) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 12473) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 12474) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 12475) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 12476) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 12477) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 12478) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribBinding (line 12479) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 12480) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 12481) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 12482) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 12483) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 12484) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 12485) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 12486) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 12487) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 12488) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 12489) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 12490) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 12491) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 12492) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 12493) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 12494) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 12495) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 12496) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 12497) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 12498) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 12499) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 12500) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 12501) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIFormat (line 12502) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 12503) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 12504) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 12505) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 12506) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 12507) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 12508) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 12509) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 12510) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 12511) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLFormat (line 12512) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 12513) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 12514) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 12515) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 12516) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 12517) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 12518) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 12519) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 12520) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 12521) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 12522) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 12523) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... method glVertexP2ui (line 12524) | def glVertexP2ui(self, type: int, value: int, /) -> None: ... method glVertexP2uiv (line 12525) | def glVertexP2uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP3ui (line 12526) | def glVertexP3ui(self, type: int, value: int, /) -> None: ... method glVertexP3uiv (line 12527) | def glVertexP3uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexP4ui (line 12528) | def glVertexP4ui(self, type: int, value: int, /) -> None: ... method glVertexP4uiv (line 12529) | def glVertexP4uiv(self, type: int, value: typing.Iterable[int], /) -> ... method glVertexPointer (line 12530) | def glVertexPointer(self, size: int, type: int, stride: int, pointer: ... method glViewport (line 12531) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 12532) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 12533) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 12534) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method glWindowPos2d (line 12535) | def glWindowPos2d(self, x: float, y: float, /) -> None: ... method glWindowPos2dv (line 12536) | def glWindowPos2dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2f (line 12537) | def glWindowPos2f(self, x: float, y: float, /) -> None: ... method glWindowPos2fv (line 12538) | def glWindowPos2fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos2i (line 12539) | def glWindowPos2i(self, x: int, y: int, /) -> None: ... method glWindowPos2iv (line 12540) | def glWindowPos2iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos2s (line 12541) | def glWindowPos2s(self, x: int, y: int, /) -> None: ... method glWindowPos2sv (line 12542) | def glWindowPos2sv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3d (line 12543) | def glWindowPos3d(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3dv (line 12544) | def glWindowPos3dv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3f (line 12545) | def glWindowPos3f(self, x: float, y: float, z: float, /) -> None: ... method glWindowPos3fv (line 12546) | def glWindowPos3fv(self, v: typing.Iterable[float], /) -> None: ... method glWindowPos3i (line 12547) | def glWindowPos3i(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3iv (line 12548) | def glWindowPos3iv(self, v: typing.Iterable[int], /) -> None: ... method glWindowPos3s (line 12549) | def glWindowPos3s(self, x: int, y: int, z: int, /) -> None: ... method glWindowPos3sv (line 12550) | def glWindowPos3sv(self, v: typing.Iterable[int], /) -> None: ... method initializeOpenGLFunctions (line 12551) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLFunctions_4_5_Core (line 12553) | class QOpenGLFunctions_4_5_Core(QAbstractOpenGLFunctions): method __init__ (line 12554) | def __init__(self, /) -> None: ... method glActiveShaderProgram (line 12555) | def glActiveShaderProgram(self, pipeline: int, program: int, /) -> Non... method glActiveTexture (line 12556) | def glActiveTexture(self, texture: int, /) -> None: ... method glAttachShader (line 12557) | def glAttachShader(self, program: int, shader: int, /) -> None: ... method glBeginConditionalRender (line 12558) | def glBeginConditionalRender(self, id: int, mode: int, /) -> None: ... method glBeginQuery (line 12559) | def glBeginQuery(self, target: int, id: int, /) -> None: ... method glBeginQueryIndexed (line 12560) | def glBeginQueryIndexed(self, target: int, index: int, id: int, /) -> ... method glBeginTransformFeedback (line 12561) | def glBeginTransformFeedback(self, primitiveMode: int, /) -> None: ... method glBindAttribLocation (line 12562) | def glBindAttribLocation(self, program: int, index: int, name: bytes |... method glBindBuffer (line 12563) | def glBindBuffer(self, target: int, buffer: int, /) -> None: ... method glBindBufferBase (line 12564) | def glBindBufferBase(self, target: int, index: int, buffer: int, /) ->... method glBindBuffersBase (line 12565) | def glBindBuffersBase(self, target: int, first: int, count: int, buffe... method glBindFragDataLocation (line 12566) | def glBindFragDataLocation(self, program: int, color: int, name: bytes... method glBindFragDataLocationIndexed (line 12567) | def glBindFragDataLocationIndexed(self, program: int, colorNumber: int... method glBindFramebuffer (line 12568) | def glBindFramebuffer(self, target: int, framebuffer: int, /) -> None:... method glBindImageTexture (line 12569) | def glBindImageTexture(self, unit: int, texture: int, level: int, laye... method glBindImageTextures (line 12570) | def glBindImageTextures(self, first: int, count: int, textures: typing... method glBindProgramPipeline (line 12571) | def glBindProgramPipeline(self, pipeline: int, /) -> None: ... method glBindRenderbuffer (line 12572) | def glBindRenderbuffer(self, target: int, renderbuffer: int, /) -> Non... method glBindSampler (line 12573) | def glBindSampler(self, unit: int, sampler: int, /) -> None: ... method glBindSamplers (line 12574) | def glBindSamplers(self, first: int, count: int, samplers: typing.Iter... method glBindTexture (line 12575) | def glBindTexture(self, target: int, texture: int, /) -> None: ... method glBindTextureUnit (line 12576) | def glBindTextureUnit(self, unit: int, texture: int, /) -> None: ... method glBindTextures (line 12577) | def glBindTextures(self, first: int, count: int, textures: typing.Iter... method glBindTransformFeedback (line 12578) | def glBindTransformFeedback(self, target: int, id: int, /) -> None: ... method glBindVertexArray (line 12579) | def glBindVertexArray(self, array: int, /) -> None: ... method glBlendColor (line 12580) | def glBlendColor(self, red: float, green: float, blue: float, alpha: f... method glBlendEquation (line 12581) | def glBlendEquation(self, mode: int, /) -> None: ... method glBlendEquationSeparate (line 12582) | def glBlendEquationSeparate(self, modeRGB: int, modeAlpha: int, /) -> ... method glBlendEquationSeparatei (line 12583) | def glBlendEquationSeparatei(self, buf: int, modeRGB: int, modeAlpha: ... method glBlendEquationi (line 12584) | def glBlendEquationi(self, buf: int, mode: int, /) -> None: ... method glBlendFunc (line 12585) | def glBlendFunc(self, sfactor: int, dfactor: int, /) -> None: ... method glBlendFuncSeparate (line 12586) | def glBlendFuncSeparate(self, sfactorRGB: int, dfactorRGB: int, sfacto... method glBlendFuncSeparatei (line 12587) | def glBlendFuncSeparatei(self, buf: int, srcRGB: int, dstRGB: int, src... method glBlendFunci (line 12588) | def glBlendFunci(self, buf: int, src: int, dst: int, /) -> None: ... method glBlitFramebuffer (line 12589) | def glBlitFramebuffer(self, srcX0: int, srcY0: int, srcX1: int, srcY1:... method glBlitNamedFramebuffer (line 12590) | def glBlitNamedFramebuffer(self, readFramebuffer: int, drawFramebuffer... method glCheckFramebufferStatus (line 12591) | def glCheckFramebufferStatus(self, target: int, /) -> int: ... method glCheckNamedFramebufferStatus (line 12592) | def glCheckNamedFramebufferStatus(self, framebuffer: int, target: int,... method glClampColor (line 12593) | def glClampColor(self, target: int, clamp: int, /) -> None: ... method glClear (line 12594) | def glClear(self, mask: int, /) -> None: ... method glClearBufferData (line 12595) | def glClearBufferData(self, target: int, internalformat: int, format: ... method glClearBufferfi (line 12596) | def glClearBufferfi(self, buffer: int, drawbuffer: int, depth: float, ... method glClearBufferfv (line 12597) | def glClearBufferfv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferiv (line 12598) | def glClearBufferiv(self, buffer: int, drawbuffer: int, value: typing.... method glClearBufferuiv (line 12599) | def glClearBufferuiv(self, buffer: int, drawbuffer: int, value: typing... method glClearColor (line 12600) | def glClearColor(self, red: float, green: float, blue: float, alpha: f... method glClearDepth (line 12601) | def glClearDepth(self, depth: float, /) -> None: ... method glClearDepthf (line 12602) | def glClearDepthf(self, dd: float, /) -> None: ... method glClearNamedBufferData (line 12603) | def glClearNamedBufferData(self, buffer: int, internalformat: int, for... method glClearNamedFramebufferfi (line 12604) | def glClearNamedFramebufferfi(self, framebuffer: int, buffer: int, dep... method glClearNamedFramebufferfv (line 12605) | def glClearNamedFramebufferfv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferiv (line 12606) | def glClearNamedFramebufferiv(self, framebuffer: int, buffer: int, dra... method glClearNamedFramebufferuiv (line 12607) | def glClearNamedFramebufferuiv(self, framebuffer: int, buffer: int, dr... method glClearStencil (line 12608) | def glClearStencil(self, s: int, /) -> None: ... method glClearTexImage (line 12609) | def glClearTexImage(self, texture: int, level: int, format: int, type:... method glClearTexSubImage (line 12610) | def glClearTexSubImage(self, texture: int, level: int, xoffset: int, y... method glClipControl (line 12611) | def glClipControl(self, origin: int, depth: int, /) -> None: ... method glColorMask (line 12612) | def glColorMask(self, red: int, green: int, blue: int, alpha: int, /) ... method glColorMaski (line 12613) | def glColorMaski(self, index: int, r: int, g: int, b: int, a: int, /) ... method glCompileShader (line 12614) | def glCompileShader(self, shader: int, /) -> None: ... method glCompressedTexImage1D (line 12615) | def glCompressedTexImage1D(self, target: int, level: int, internalform... method glCompressedTexImage2D (line 12616) | def glCompressedTexImage2D(self, target: int, level: int, internalform... method glCompressedTexImage3D (line 12617) | def glCompressedTexImage3D(self, target: int, level: int, internalform... method glCompressedTexSubImage1D (line 12618) | def glCompressedTexSubImage1D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage2D (line 12619) | def glCompressedTexSubImage2D(self, target: int, level: int, xoffset: ... method glCompressedTexSubImage3D (line 12620) | def glCompressedTexSubImage3D(self, target: int, level: int, xoffset: ... method glCompressedTextureSubImage1D (line 12621) | def glCompressedTextureSubImage1D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage2D (line 12622) | def glCompressedTextureSubImage2D(self, texture: int, level: int, xoff... method glCompressedTextureSubImage3D (line 12623) | def glCompressedTextureSubImage3D(self, texture: int, level: int, xoff... method glCopyImageSubData (line 12624) | def glCopyImageSubData(self, srcName: int, srcTarget: int, srcLevel: i... method glCopyTexImage1D (line 12625) | def glCopyTexImage1D(self, target: int, level: int, internalformat: in... method glCopyTexImage2D (line 12626) | def glCopyTexImage2D(self, target: int, level: int, internalformat: in... method glCopyTexSubImage1D (line 12627) | def glCopyTexSubImage1D(self, target: int, level: int, xoffset: int, x... method glCopyTexSubImage2D (line 12628) | def glCopyTexSubImage2D(self, target: int, level: int, xoffset: int, y... method glCopyTexSubImage3D (line 12629) | def glCopyTexSubImage3D(self, target: int, level: int, xoffset: int, y... method glCopyTextureSubImage1D (line 12630) | def glCopyTextureSubImage1D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage2D (line 12631) | def glCopyTextureSubImage2D(self, texture: int, level: int, xoffset: i... method glCopyTextureSubImage3D (line 12632) | def glCopyTextureSubImage3D(self, texture: int, level: int, xoffset: i... method glCreateProgram (line 12633) | def glCreateProgram(self, /) -> int: ... method glCreateShader (line 12634) | def glCreateShader(self, type: int, /) -> int: ... method glCullFace (line 12635) | def glCullFace(self, mode: int, /) -> None: ... method glDebugMessageControl (line 12636) | def glDebugMessageControl(self, source: int, type: int, severity: int,... method glDebugMessageInsert (line 12637) | def glDebugMessageInsert(self, source: int, type: int, id: int, severi... method glDeleteBuffers (line 12638) | def glDeleteBuffers(self, n: int, buffers: typing.Iterable[int], /) ->... method glDeleteFramebuffers (line 12639) | def glDeleteFramebuffers(self, n: int, framebuffers: typing.Iterable[i... method glDeleteProgram (line 12640) | def glDeleteProgram(self, program: int, /) -> None: ... method glDeleteProgramPipelines (line 12641) | def glDeleteProgramPipelines(self, n: int, pipelines: typing.Iterable[... method glDeleteQueries (line 12642) | def glDeleteQueries(self, n: int, ids: typing.Iterable[int], /) -> Non... method glDeleteRenderbuffers (line 12643) | def glDeleteRenderbuffers(self, n: int, renderbuffers: typing.Iterable... method glDeleteSamplers (line 12644) | def glDeleteSamplers(self, count: int, samplers: typing.Iterable[int],... method glDeleteShader (line 12645) | def glDeleteShader(self, shader: int, /) -> None: ... method glDeleteTextures (line 12646) | def glDeleteTextures(self, n: int, textures: typing.Iterable[int], /) ... method glDeleteTransformFeedbacks (line 12647) | def glDeleteTransformFeedbacks(self, n: int, ids: typing.Iterable[int]... method glDeleteVertexArrays (line 12648) | def glDeleteVertexArrays(self, n: int, arrays: typing.Iterable[int], /... method glDepthFunc (line 12649) | def glDepthFunc(self, func: int, /) -> None: ... method glDepthMask (line 12650) | def glDepthMask(self, flag: int, /) -> None: ... method glDepthRange (line 12651) | def glDepthRange(self, nearVal: float, farVal: float, /) -> None: ... method glDepthRangeArrayv (line 12652) | def glDepthRangeArrayv(self, first: int, count: int, v: typing.Iterabl... method glDepthRangeIndexed (line 12653) | def glDepthRangeIndexed(self, index: int, n: float, f: float, /) -> No... method glDepthRangef (line 12654) | def glDepthRangef(self, n: float, f: float, /) -> None: ... method glDetachShader (line 12655) | def glDetachShader(self, program: int, shader: int, /) -> None: ... method glDisable (line 12656) | def glDisable(self, cap: int, /) -> None: ... method glDisableVertexArrayAttrib (line 12657) | def glDisableVertexArrayAttrib(self, vaobj: int, index: int, /) -> Non... method glDisableVertexAttribArray (line 12658) | def glDisableVertexAttribArray(self, index: int, /) -> None: ... method glDisablei (line 12659) | def glDisablei(self, target: int, index: int, /) -> None: ... method glDispatchCompute (line 12660) | def glDispatchCompute(self, num_groups_x: int, num_groups_y: int, num_... method glDrawArrays (line 12661) | def glDrawArrays(self, mode: int, first: int, count: int, /) -> None: ... method glDrawArraysIndirect (line 12662) | def glDrawArraysIndirect(self, mode: int, indirect: int, /) -> None: ... method glDrawArraysInstanced (line 12663) | def glDrawArraysInstanced(self, mode: int, first: int, count: int, ins... method glDrawArraysInstancedBaseInstance (line 12664) | def glDrawArraysInstancedBaseInstance(self, mode: int, first: int, cou... method glDrawBuffer (line 12665) | def glDrawBuffer(self, buf: int, /) -> None: ... method glDrawBuffers (line 12666) | def glDrawBuffers(self, n: int, bufs: typing.Iterable[int], /) -> None... method glDrawElements (line 12667) | def glDrawElements(self, mode: int, count: int, type: int, indices: in... method glDrawElementsBaseVertex (line 12668) | def glDrawElementsBaseVertex(self, mode: int, count: int, type: int, i... method glDrawElementsIndirect (line 12669) | def glDrawElementsIndirect(self, mode: int, type: int, indirect: int, ... method glDrawElementsInstanced (line 12670) | def glDrawElementsInstanced(self, mode: int, count: int, type: int, in... method glDrawElementsInstancedBaseInstance (line 12671) | def glDrawElementsInstancedBaseInstance(self, mode: int, count: int, t... method glDrawElementsInstancedBaseVertex (line 12672) | def glDrawElementsInstancedBaseVertex(self, mode: int, count: int, typ... method glDrawElementsInstancedBaseVertexBaseInstance (line 12673) | def glDrawElementsInstancedBaseVertexBaseInstance(self, mode: int, cou... method glDrawRangeElements (line 12674) | def glDrawRangeElements(self, mode: int, start: int, end: int, count: ... method glDrawRangeElementsBaseVertex (line 12675) | def glDrawRangeElementsBaseVertex(self, mode: int, start: int, end: in... method glDrawTransformFeedback (line 12676) | def glDrawTransformFeedback(self, mode: int, id: int, /) -> None: ... method glDrawTransformFeedbackInstanced (line 12677) | def glDrawTransformFeedbackInstanced(self, mode: int, id: int, instanc... method glDrawTransformFeedbackStream (line 12678) | def glDrawTransformFeedbackStream(self, mode: int, id: int, stream: in... method glDrawTransformFeedbackStreamInstanced (line 12679) | def glDrawTransformFeedbackStreamInstanced(self, mode: int, id: int, s... method glEnable (line 12680) | def glEnable(self, cap: int, /) -> None: ... method glEnableVertexArrayAttrib (line 12681) | def glEnableVertexArrayAttrib(self, vaobj: int, index: int, /) -> None... method glEnableVertexAttribArray (line 12682) | def glEnableVertexAttribArray(self, index: int, /) -> None: ... method glEnablei (line 12683) | def glEnablei(self, target: int, index: int, /) -> None: ... method glEndConditionalRender (line 12684) | def glEndConditionalRender(self, /) -> None: ... method glEndQuery (line 12685) | def glEndQuery(self, target: int, /) -> None: ... method glEndQueryIndexed (line 12686) | def glEndQueryIndexed(self, target: int, index: int, /) -> None: ... method glEndTransformFeedback (line 12687) | def glEndTransformFeedback(self, /) -> None: ... method glFinish (line 12688) | def glFinish(self, /) -> None: ... method glFlush (line 12689) | def glFlush(self, /) -> None: ... method glFramebufferParameteri (line 12690) | def glFramebufferParameteri(self, target: int, pname: int, param: int,... method glFramebufferRenderbuffer (line 12691) | def glFramebufferRenderbuffer(self, target: int, attachment: int, rend... method glFramebufferTexture (line 12692) | def glFramebufferTexture(self, target: int, attachment: int, texture: ... method glFramebufferTexture1D (line 12693) | def glFramebufferTexture1D(self, target: int, attachment: int, textarg... method glFramebufferTexture2D (line 12694) | def glFramebufferTexture2D(self, target: int, attachment: int, textarg... method glFramebufferTexture3D (line 12695) | def glFramebufferTexture3D(self, target: int, attachment: int, textarg... method glFramebufferTextureLayer (line 12696) | def glFramebufferTextureLayer(self, target: int, attachment: int, text... method glFrontFace (line 12697) | def glFrontFace(self, mode: int, /) -> None: ... method glGenerateMipmap (line 12698) | def glGenerateMipmap(self, target: int, /) -> None: ... method glGenerateTextureMipmap (line 12699) | def glGenerateTextureMipmap(self, texture: int, /) -> None: ... method glGetAttribLocation (line 12700) | def glGetAttribLocation(self, program: int, name: bytes | bytearray | ... method glGetBooleani_v (line 12701) | def glGetBooleani_v(self, target: int, index: int, /) -> Union[bool, L... method glGetBooleanv (line 12702) | def glGetBooleanv(self, pname: int, /) -> Union[bool, List[Any]]: ... method glGetCompressedTexImage (line 12703) | def glGetCompressedTexImage(self, target: int, level: int, img: int, /... method glGetCompressedTextureImage (line 12704) | def glGetCompressedTextureImage(self, texture: int, level: int, bufSiz... method glGetCompressedTextureSubImage (line 12705) | def glGetCompressedTextureSubImage(self, texture: int, level: int, xof... method glGetDoublei_v (line 12706) | def glGetDoublei_v(self, target: int, index: int, /) -> Union[float, L... method glGetDoublev (line 12707) | def glGetDoublev(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetError (line 12708) | def glGetError(self, /) -> int: ... method glGetFloati_v (line 12709) | def glGetFloati_v(self, target: int, index: int, /) -> Union[float, Li... method glGetFloatv (line 12710) | def glGetFloatv(self, pname: int, /) -> Union[float, List[Any]]: ... method glGetFragDataIndex (line 12711) | def glGetFragDataIndex(self, program: int, name: bytes | bytearray | m... method glGetFragDataLocation (line 12712) | def glGetFragDataLocation(self, program: int, name: bytes | bytearray ... method glGetGraphicsResetStatus (line 12713) | def glGetGraphicsResetStatus(self, /) -> int: ... method glGetIntegeri_v (line 12714) | def glGetIntegeri_v(self, target: int, index: int, /) -> Union[int, Li... method glGetIntegerv (line 12715) | def glGetIntegerv(self, pname: int, /) -> Union[int, List[Any]]: ... method glGetProgramResourceIndex (line 12716) | def glGetProgramResourceIndex(self, program: int, programInterface: in... method glGetProgramResourceLocation (line 12717) | def glGetProgramResourceLocation(self, program: int, programInterface:... method glGetProgramResourceLocationIndex (line 12718) | def glGetProgramResourceLocationIndex(self, program: int, programInter... method glGetString (line 12719) | def glGetString(self, name: int, /) -> str: ... method glGetStringi (line 12720) | def glGetStringi(self, name: int, index: int, /) -> str: ... method glGetSubroutineIndex (line 12721) | def glGetSubroutineIndex(self, program: int, shadertype: int, name: by... method glGetSubroutineUniformLocation (line 12722) | def glGetSubroutineUniformLocation(self, program: int, shadertype: int... method glGetTexImage (line 12723) | def glGetTexImage(self, target: int, level: int, format: int, type: in... method glGetTextureImage (line 12724) | def glGetTextureImage(self, texture: int, level: int, format: int, typ... method glGetTextureSubImage (line 12725) | def glGetTextureSubImage(self, texture: int, level: int, xoffset: int,... method glGetUniformBlockIndex (line 12726) | def glGetUniformBlockIndex(self, program: int, uniformBlockName: bytes... method glGetUniformLocation (line 12727) | def glGetUniformLocation(self, program: int, name: bytes | bytearray |... method glGetnCompressedTexImage (line 12728) | def glGetnCompressedTexImage(self, target: int, lod: int, bufSize: int... method glGetnTexImage (line 12729) | def glGetnTexImage(self, target: int, level: int, format: int, type: i... method glHint (line 12730) | def glHint(self, target: int, mode: int, /) -> None: ... method glInvalidateBufferData (line 12731) | def glInvalidateBufferData(self, buffer: int, /) -> None: ... method glInvalidateFramebuffer (line 12732) | def glInvalidateFramebuffer(self, target: int, numAttachments: int, at... method glInvalidateNamedFramebufferData (line 12733) | def glInvalidateNamedFramebufferData(self, framebuffer: int, numAttach... method glInvalidateNamedFramebufferSubData (line 12734) | def glInvalidateNamedFramebufferSubData(self, framebuffer: int, numAtt... method glInvalidateSubFramebuffer (line 12735) | def glInvalidateSubFramebuffer(self, target: int, numAttachments: int,... method glInvalidateTexImage (line 12736) | def glInvalidateTexImage(self, texture: int, level: int, /) -> None: ... method glInvalidateTexSubImage (line 12737) | def glInvalidateTexSubImage(self, texture: int, level: int, xoffset: i... method glIsBuffer (line 12738) | def glIsBuffer(self, buffer: int, /) -> int: ... method glIsEnabled (line 12739) | def glIsEnabled(self, cap: int, /) -> int: ... method glIsEnabledi (line 12740) | def glIsEnabledi(self, target: int, index: int, /) -> int: ... method glIsFramebuffer (line 12741) | def glIsFramebuffer(self, framebuffer: int, /) -> int: ... method glIsProgram (line 12742) | def glIsProgram(self, program: int, /) -> int: ... method glIsProgramPipeline (line 12743) | def glIsProgramPipeline(self, pipeline: int, /) -> int: ... method glIsQuery (line 12744) | def glIsQuery(self, id: int, /) -> int: ... method glIsRenderbuffer (line 12745) | def glIsRenderbuffer(self, renderbuffer: int, /) -> int: ... method glIsSampler (line 12746) | def glIsSampler(self, sampler: int, /) -> int: ... method glIsShader (line 12747) | def glIsShader(self, shader: int, /) -> int: ... method glIsTexture (line 12748) | def glIsTexture(self, texture: int, /) -> int: ... method glIsTransformFeedback (line 12749) | def glIsTransformFeedback(self, id: int, /) -> int: ... method glIsVertexArray (line 12750) | def glIsVertexArray(self, array: int, /) -> int: ... method glLineWidth (line 12751) | def glLineWidth(self, width: float, /) -> None: ... method glLinkProgram (line 12752) | def glLinkProgram(self, program: int, /) -> None: ... method glLogicOp (line 12753) | def glLogicOp(self, opcode: int, /) -> None: ... method glMapBuffer (line 12754) | def glMapBuffer(self, target: int, access: int, /) -> int: ... method glMapNamedBuffer (line 12755) | def glMapNamedBuffer(self, buffer: int, access: int, /) -> int: ... method glMemoryBarrier (line 12756) | def glMemoryBarrier(self, barriers: int, /) -> None: ... method glMemoryBarrierByRegion (line 12757) | def glMemoryBarrierByRegion(self, barriers: int, /) -> None: ... method glMinSampleShading (line 12758) | def glMinSampleShading(self, value: float, /) -> None: ... method glMultiDrawArrays (line 12759) | def glMultiDrawArrays(self, mode: int, first: typing.Iterable[int], co... method glMultiDrawArraysIndirect (line 12760) | def glMultiDrawArraysIndirect(self, mode: int, indirect: int, drawcoun... method glNamedFramebufferDrawBuffer (line 12761) | def glNamedFramebufferDrawBuffer(self, framebuffer: int, buf: int, /) ... method glNamedFramebufferDrawBuffers (line 12762) | def glNamedFramebufferDrawBuffers(self, framebuffer: int, n: int, bufs... method glNamedFramebufferParameteri (line 12763) | def glNamedFramebufferParameteri(self, framebuffer: int, pname: int, p... method glNamedFramebufferReadBuffer (line 12764) | def glNamedFramebufferReadBuffer(self, framebuffer: int, src: int, /) ... method glNamedFramebufferRenderbuffer (line 12765) | def glNamedFramebufferRenderbuffer(self, framebuffer: int, attachment:... method glNamedFramebufferTexture (line 12766) | def glNamedFramebufferTexture(self, framebuffer: int, attachment: int,... method glNamedFramebufferTextureLayer (line 12767) | def glNamedFramebufferTextureLayer(self, framebuffer: int, attachment:... method glNamedRenderbufferStorage (line 12768) | def glNamedRenderbufferStorage(self, renderbuffer: int, internalformat... method glNamedRenderbufferStorageMultisample (line 12769) | def glNamedRenderbufferStorageMultisample(self, renderbuffer: int, sam... method glObjectLabel (line 12770) | def glObjectLabel(self, identifier: int, name: int, length: int, label... method glObjectPtrLabel (line 12771) | def glObjectPtrLabel(self, ptr: int, length: int, label: bytes | bytea... method glPatchParameterfv (line 12772) | def glPatchParameterfv(self, pname: int, values: typing.Iterable[float... method glPatchParameteri (line 12773) | def glPatchParameteri(self, pname: int, value: int, /) -> None: ... method glPauseTransformFeedback (line 12774) | def glPauseTransformFeedback(self, /) -> None: ... method glPixelStoref (line 12775) | def glPixelStoref(self, pname: int, param: float, /) -> None: ... method glPixelStorei (line 12776) | def glPixelStorei(self, pname: int, param: int, /) -> None: ... method glPointParameterf (line 12777) | def glPointParameterf(self, pname: int, param: float, /) -> None: ... method glPointParameterfv (line 12778) | def glPointParameterfv(self, pname: int, params: typing.Iterable[float... method glPointParameteri (line 12779) | def glPointParameteri(self, pname: int, param: int, /) -> None: ... method glPointParameteriv (line 12780) | def glPointParameteriv(self, pname: int, params: typing.Iterable[int],... method glPointSize (line 12781) | def glPointSize(self, size: float, /) -> None: ... method glPolygonMode (line 12782) | def glPolygonMode(self, face: int, mode: int, /) -> None: ... method glPolygonOffset (line 12783) | def glPolygonOffset(self, factor: float, units: float, /) -> None: ... method glPopDebugGroup (line 12784) | def glPopDebugGroup(self, /) -> None: ... method glPrimitiveRestartIndex (line 12785) | def glPrimitiveRestartIndex(self, index: int, /) -> None: ... method glProgramBinary (line 12786) | def glProgramBinary(self, program: int, binaryFormat: int, binary: int... method glProgramParameteri (line 12787) | def glProgramParameteri(self, program: int, pname: int, value: int, /)... method glProgramUniform1d (line 12788) | def glProgramUniform1d(self, program: int, location: int, v0: float, /... method glProgramUniform1dv (line 12789) | def glProgramUniform1dv(self, program: int, location: int, count: int,... method glProgramUniform1f (line 12790) | def glProgramUniform1f(self, program: int, location: int, v0: float, /... method glProgramUniform1fv (line 12791) | def glProgramUniform1fv(self, program: int, location: int, count: int,... method glProgramUniform1i (line 12792) | def glProgramUniform1i(self, program: int, location: int, v0: int, /) ... method glProgramUniform1iv (line 12793) | def glProgramUniform1iv(self, program: int, location: int, count: int,... method glProgramUniform1ui (line 12794) | def glProgramUniform1ui(self, program: int, location: int, v0: int, /)... method glProgramUniform1uiv (line 12795) | def glProgramUniform1uiv(self, program: int, location: int, count: int... method glProgramUniform2d (line 12796) | def glProgramUniform2d(self, program: int, location: int, v0: float, v... method glProgramUniform2dv (line 12797) | def glProgramUniform2dv(self, program: int, location: int, count: int,... method glProgramUniform2f (line 12798) | def glProgramUniform2f(self, program: int, location: int, v0: float, v... method glProgramUniform2fv (line 12799) | def glProgramUniform2fv(self, program: int, location: int, count: int,... method glProgramUniform2i (line 12800) | def glProgramUniform2i(self, program: int, location: int, v0: int, v1:... method glProgramUniform2iv (line 12801) | def glProgramUniform2iv(self, program: int, location: int, count: int,... method glProgramUniform2ui (line 12802) | def glProgramUniform2ui(self, program: int, location: int, v0: int, v1... method glProgramUniform2uiv (line 12803) | def glProgramUniform2uiv(self, program: int, location: int, count: int... method glProgramUniform3d (line 12804) | def glProgramUniform3d(self, program: int, location: int, v0: float, v... method glProgramUniform3dv (line 12805) | def glProgramUniform3dv(self, program: int, location: int, count: int,... method glProgramUniform3f (line 12806) | def glProgramUniform3f(self, program: int, location: int, v0: float, v... method glProgramUniform3fv (line 12807) | def glProgramUniform3fv(self, program: int, location: int, count: int,... method glProgramUniform3i (line 12808) | def glProgramUniform3i(self, program: int, location: int, v0: int, v1:... method glProgramUniform3iv (line 12809) | def glProgramUniform3iv(self, program: int, location: int, count: int,... method glProgramUniform3ui (line 12810) | def glProgramUniform3ui(self, program: int, location: int, v0: int, v1... method glProgramUniform3uiv (line 12811) | def glProgramUniform3uiv(self, program: int, location: int, count: int... method glProgramUniform4d (line 12812) | def glProgramUniform4d(self, program: int, location: int, v0: float, v... method glProgramUniform4dv (line 12813) | def glProgramUniform4dv(self, program: int, location: int, count: int,... method glProgramUniform4f (line 12814) | def glProgramUniform4f(self, program: int, location: int, v0: float, v... method glProgramUniform4fv (line 12815) | def glProgramUniform4fv(self, program: int, location: int, count: int,... method glProgramUniform4i (line 12816) | def glProgramUniform4i(self, program: int, location: int, v0: int, v1:... method glProgramUniform4iv (line 12817) | def glProgramUniform4iv(self, program: int, location: int, count: int,... method glProgramUniform4ui (line 12818) | def glProgramUniform4ui(self, program: int, location: int, v0: int, v1... method glProgramUniform4uiv (line 12819) | def glProgramUniform4uiv(self, program: int, location: int, count: int... method glProgramUniformMatrix2dv (line 12820) | def glProgramUniformMatrix2dv(self, program: int, location: int, count... method glProgramUniformMatrix2fv (line 12821) | def glProgramUniformMatrix2fv(self, program: int, location: int, count... method glProgramUniformMatrix2x3dv (line 12822) | def glProgramUniformMatrix2x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x3fv (line 12823) | def glProgramUniformMatrix2x3fv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4dv (line 12824) | def glProgramUniformMatrix2x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix2x4fv (line 12825) | def glProgramUniformMatrix2x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix3dv (line 12826) | def glProgramUniformMatrix3dv(self, program: int, location: int, count... method glProgramUniformMatrix3fv (line 12827) | def glProgramUniformMatrix3fv(self, program: int, location: int, count... method glProgramUniformMatrix3x2dv (line 12828) | def glProgramUniformMatrix3x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x2fv (line 12829) | def glProgramUniformMatrix3x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4dv (line 12830) | def glProgramUniformMatrix3x4dv(self, program: int, location: int, cou... method glProgramUniformMatrix3x4fv (line 12831) | def glProgramUniformMatrix3x4fv(self, program: int, location: int, cou... method glProgramUniformMatrix4dv (line 12832) | def glProgramUniformMatrix4dv(self, program: int, location: int, count... method glProgramUniformMatrix4fv (line 12833) | def glProgramUniformMatrix4fv(self, program: int, location: int, count... method glProgramUniformMatrix4x2dv (line 12834) | def glProgramUniformMatrix4x2dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x2fv (line 12835) | def glProgramUniformMatrix4x2fv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3dv (line 12836) | def glProgramUniformMatrix4x3dv(self, program: int, location: int, cou... method glProgramUniformMatrix4x3fv (line 12837) | def glProgramUniformMatrix4x3fv(self, program: int, location: int, cou... method glProvokingVertex (line 12838) | def glProvokingVertex(self, mode: int, /) -> None: ... method glPushDebugGroup (line 12839) | def glPushDebugGroup(self, source: int, id: int, length: int, message:... method glQueryCounter (line 12840) | def glQueryCounter(self, id: int, target: int, /) -> None: ... method glReadBuffer (line 12841) | def glReadBuffer(self, src: int, /) -> None: ... method glReadPixels (line 12842) | def glReadPixels(self, x: int, y: int, width: int, height: int, format... method glReadnPixels (line 12843) | def glReadnPixels(self, x: int, y: int, width: int, height: int, forma... method glReleaseShaderCompiler (line 12844) | def glReleaseShaderCompiler(self, /) -> None: ... method glRenderbufferStorage (line 12845) | def glRenderbufferStorage(self, target: int, internalformat: int, widt... method glRenderbufferStorageMultisample (line 12846) | def glRenderbufferStorageMultisample(self, target: int, samples: int, ... method glResumeTransformFeedback (line 12847) | def glResumeTransformFeedback(self, /) -> None: ... method glSampleCoverage (line 12848) | def glSampleCoverage(self, value: float, invert: int, /) -> None: ... method glSampleMaski (line 12849) | def glSampleMaski(self, maskNumber: int, mask: int, /) -> None: ... method glSamplerParameterIiv (line 12850) | def glSamplerParameterIiv(self, sampler: int, pname: int, param: typin... method glSamplerParameterIuiv (line 12851) | def glSamplerParameterIuiv(self, sampler: int, pname: int, param: typi... method glSamplerParameterf (line 12852) | def glSamplerParameterf(self, sampler: int, pname: int, param: float, ... method glSamplerParameterfv (line 12853) | def glSamplerParameterfv(self, sampler: int, pname: int, param: typing... method glSamplerParameteri (line 12854) | def glSamplerParameteri(self, sampler: int, pname: int, param: int, /)... method glSamplerParameteriv (line 12855) | def glSamplerParameteriv(self, sampler: int, pname: int, param: typing... method glScissor (line 12856) | def glScissor(self, x: int, y: int, width: int, height: int, /) -> Non... method glScissorArrayv (line 12857) | def glScissorArrayv(self, first: int, count: int, v: typing.Iterable[i... method glScissorIndexed (line 12858) | def glScissorIndexed(self, index: int, left: int, bottom: int, width: ... method glScissorIndexedv (line 12859) | def glScissorIndexedv(self, index: int, v: typing.Iterable[int], /) ->... method glShaderBinary (line 12860) | def glShaderBinary(self, count: int, shaders: typing.Iterable[int], bi... method glShaderStorageBlockBinding (line 12861) | def glShaderStorageBlockBinding(self, program: int, storageBlockIndex:... method glStencilFunc (line 12862) | def glStencilFunc(self, func: int, ref: int, mask: int, /) -> None: ... method glStencilFuncSeparate (line 12863) | def glStencilFuncSeparate(self, face: int, func: int, ref: int, mask: ... method glStencilMask (line 12864) | def glStencilMask(self, mask: int, /) -> None: ... method glStencilMaskSeparate (line 12865) | def glStencilMaskSeparate(self, face: int, mask: int, /) -> None: ... method glStencilOp (line 12866) | def glStencilOp(self, fail: int, zfail: int, zpass: int, /) -> None: ... method glStencilOpSeparate (line 12867) | def glStencilOpSeparate(self, face: int, sfail: int, dpfail: int, dppa... method glTexBuffer (line 12868) | def glTexBuffer(self, target: int, internalformat: int, buffer: int, /... method glTexImage1D (line 12869) | def glTexImage1D(self, target: int, level: int, internalformat: int, w... method glTexImage2D (line 12870) | def glTexImage2D(self, target: int, level: int, internalformat: int, w... method glTexImage2DMultisample (line 12871) | def glTexImage2DMultisample(self, target: int, samples: int, internalf... method glTexImage3D (line 12872) | def glTexImage3D(self, target: int, level: int, internalformat: int, w... method glTexImage3DMultisample (line 12873) | def glTexImage3DMultisample(self, target: int, samples: int, internalf... method glTexParameterIiv (line 12874) | def glTexParameterIiv(self, target: int, pname: int, params: typing.It... method glTexParameterIuiv (line 12875) | def glTexParameterIuiv(self, target: int, pname: int, params: typing.I... method glTexParameterf (line 12876) | def glTexParameterf(self, target: int, pname: int, param: float, /) ->... method glTexParameterfv (line 12877) | def glTexParameterfv(self, target: int, pname: int, params: typing.Ite... method glTexParameteri (line 12878) | def glTexParameteri(self, target: int, pname: int, param: int, /) -> N... method glTexParameteriv (line 12879) | def glTexParameteriv(self, target: int, pname: int, params: typing.Ite... method glTexStorage1D (line 12880) | def glTexStorage1D(self, target: int, levels: int, internalformat: int... method glTexStorage2D (line 12881) | def glTexStorage2D(self, target: int, levels: int, internalformat: int... method glTexStorage2DMultisample (line 12882) | def glTexStorage2DMultisample(self, target: int, samples: int, interna... method glTexStorage3D (line 12883) | def glTexStorage3D(self, target: int, levels: int, internalformat: int... method glTexStorage3DMultisample (line 12884) | def glTexStorage3DMultisample(self, target: int, samples: int, interna... method glTexSubImage1D (line 12885) | def glTexSubImage1D(self, target: int, level: int, xoffset: int, width... method glTexSubImage2D (line 12886) | def glTexSubImage2D(self, target: int, level: int, xoffset: int, yoffs... method glTexSubImage3D (line 12887) | def glTexSubImage3D(self, target: int, level: int, xoffset: int, yoffs... method glTextureBarrier (line 12888) | def glTextureBarrier(self, /) -> None: ... method glTextureBuffer (line 12889) | def glTextureBuffer(self, texture: int, internalformat: int, buffer: i... method glTextureParameterIiv (line 12890) | def glTextureParameterIiv(self, texture: int, pname: int, params: typi... method glTextureParameterIuiv (line 12891) | def glTextureParameterIuiv(self, texture: int, pname: int, params: typ... method glTextureParameterf (line 12892) | def glTextureParameterf(self, texture: int, pname: int, param: float, ... method glTextureParameterfv (line 12893) | def glTextureParameterfv(self, texture: int, pname: int, param: typing... method glTextureParameteri (line 12894) | def glTextureParameteri(self, texture: int, pname: int, param: int, /)... method glTextureParameteriv (line 12895) | def glTextureParameteriv(self, texture: int, pname: int, param: typing... method glTextureStorage1D (line 12896) | def glTextureStorage1D(self, texture: int, levels: int, internalformat... method glTextureStorage2D (line 12897) | def glTextureStorage2D(self, texture: int, levels: int, internalformat... method glTextureStorage2DMultisample (line 12898) | def glTextureStorage2DMultisample(self, texture: int, samples: int, in... method glTextureStorage3D (line 12899) | def glTextureStorage3D(self, texture: int, levels: int, internalformat... method glTextureStorage3DMultisample (line 12900) | def glTextureStorage3DMultisample(self, texture: int, samples: int, in... method glTextureSubImage1D (line 12901) | def glTextureSubImage1D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage2D (line 12902) | def glTextureSubImage2D(self, texture: int, level: int, xoffset: int, ... method glTextureSubImage3D (line 12903) | def glTextureSubImage3D(self, texture: int, level: int, xoffset: int, ... method glTextureView (line 12904) | def glTextureView(self, texture: int, target: int, origtexture: int, i... method glTransformFeedbackBufferBase (line 12905) | def glTransformFeedbackBufferBase(self, xfb: int, index: int, buffer: ... method glUniform1d (line 12906) | def glUniform1d(self, location: int, x: float, /) -> None: ... method glUniform1dv (line 12907) | def glUniform1dv(self, location: int, count: int, value: typing.Iterab... method glUniform1f (line 12908) | def glUniform1f(self, location: int, v0: float, /) -> None: ... method glUniform1fv (line 12909) | def glUniform1fv(self, location: int, count: int, value: typing.Iterab... method glUniform1i (line 12910) | def glUniform1i(self, location: int, v0: int, /) -> None: ... method glUniform1iv (line 12911) | def glUniform1iv(self, location: int, count: int, value: typing.Iterab... method glUniform1ui (line 12912) | def glUniform1ui(self, location: int, v0: int, /) -> None: ... method glUniform1uiv (line 12913) | def glUniform1uiv(self, location: int, count: int, value: typing.Itera... method glUniform2d (line 12914) | def glUniform2d(self, location: int, x: float, y: float, /) -> None: ... method glUniform2dv (line 12915) | def glUniform2dv(self, location: int, count: int, value: typing.Iterab... method glUniform2f (line 12916) | def glUniform2f(self, location: int, v0: float, v1: float, /) -> None:... method glUniform2fv (line 12917) | def glUniform2fv(self, location: int, count: int, value: typing.Iterab... method glUniform2i (line 12918) | def glUniform2i(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2iv (line 12919) | def glUniform2iv(self, location: int, count: int, value: typing.Iterab... method glUniform2ui (line 12920) | def glUniform2ui(self, location: int, v0: int, v1: int, /) -> None: ... method glUniform2uiv (line 12921) | def glUniform2uiv(self, location: int, count: int, value: typing.Itera... method glUniform3d (line 12922) | def glUniform3d(self, location: int, x: float, y: float, z: float, /) ... method glUniform3dv (line 12923) | def glUniform3dv(self, location: int, count: int, value: typing.Iterab... method glUniform3f (line 12924) | def glUniform3f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform3fv (line 12925) | def glUniform3fv(self, location: int, count: int, value: typing.Iterab... method glUniform3i (line 12926) | def glUniform3i(self, location: int, v0: int, v1: int, v2: int, /) -> ... method glUniform3iv (line 12927) | def glUniform3iv(self, location: int, count: int, value: typing.Iterab... method glUniform3ui (line 12928) | def glUniform3ui(self, location: int, v0: int, v1: int, v2: int, /) ->... method glUniform3uiv (line 12929) | def glUniform3uiv(self, location: int, count: int, value: typing.Itera... method glUniform4d (line 12930) | def glUniform4d(self, location: int, x: float, y: float, z: float, w: ... method glUniform4dv (line 12931) | def glUniform4dv(self, location: int, count: int, value: typing.Iterab... method glUniform4f (line 12932) | def glUniform4f(self, location: int, v0: float, v1: float, v2: float, ... method glUniform4fv (line 12933) | def glUniform4fv(self, location: int, count: int, value: typing.Iterab... method glUniform4i (line 12934) | def glUniform4i(self, location: int, v0: int, v1: int, v2: int, v3: in... method glUniform4iv (line 12935) | def glUniform4iv(self, location: int, count: int, value: typing.Iterab... method glUniform4ui (line 12936) | def glUniform4ui(self, location: int, v0: int, v1: int, v2: int, v3: i... method glUniform4uiv (line 12937) | def glUniform4uiv(self, location: int, count: int, value: typing.Itera... method glUniformBlockBinding (line 12938) | def glUniformBlockBinding(self, program: int, uniformBlockIndex: int, ... method glUniformMatrix2dv (line 12939) | def glUniformMatrix2dv(self, location: int, count: int, transpose: int... method glUniformMatrix2fv (line 12940) | def glUniformMatrix2fv(self, location: int, count: int, transpose: int... method glUniformMatrix2x3dv (line 12941) | def glUniformMatrix2x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x3fv (line 12942) | def glUniformMatrix2x3fv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4dv (line 12943) | def glUniformMatrix2x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix2x4fv (line 12944) | def glUniformMatrix2x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix3dv (line 12945) | def glUniformMatrix3dv(self, location: int, count: int, transpose: int... method glUniformMatrix3fv (line 12946) | def glUniformMatrix3fv(self, location: int, count: int, transpose: int... method glUniformMatrix3x2dv (line 12947) | def glUniformMatrix3x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x2fv (line 12948) | def glUniformMatrix3x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4dv (line 12949) | def glUniformMatrix3x4dv(self, location: int, count: int, transpose: i... method glUniformMatrix3x4fv (line 12950) | def glUniformMatrix3x4fv(self, location: int, count: int, transpose: i... method glUniformMatrix4dv (line 12951) | def glUniformMatrix4dv(self, location: int, count: int, transpose: int... method glUniformMatrix4fv (line 12952) | def glUniformMatrix4fv(self, location: int, count: int, transpose: int... method glUniformMatrix4x2dv (line 12953) | def glUniformMatrix4x2dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x2fv (line 12954) | def glUniformMatrix4x2fv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3dv (line 12955) | def glUniformMatrix4x3dv(self, location: int, count: int, transpose: i... method glUniformMatrix4x3fv (line 12956) | def glUniformMatrix4x3fv(self, location: int, count: int, transpose: i... method glUniformSubroutinesuiv (line 12957) | def glUniformSubroutinesuiv(self, shadertype: int, count: int, indices... method glUnmapBuffer (line 12958) | def glUnmapBuffer(self, target: int, /) -> int: ... method glUnmapNamedBuffer (line 12959) | def glUnmapNamedBuffer(self, buffer: int, /) -> int: ... method glUseProgram (line 12960) | def glUseProgram(self, program: int, /) -> None: ... method glUseProgramStages (line 12961) | def glUseProgramStages(self, pipeline: int, stages: int, program: int,... method glValidateProgram (line 12962) | def glValidateProgram(self, program: int, /) -> None: ... method glValidateProgramPipeline (line 12963) | def glValidateProgramPipeline(self, pipeline: int, /) -> None: ... method glVertexArrayAttribBinding (line 12964) | def glVertexArrayAttribBinding(self, vaobj: int, attribindex: int, bin... method glVertexArrayAttribFormat (line 12965) | def glVertexArrayAttribFormat(self, vaobj: int, attribindex: int, size... method glVertexArrayAttribIFormat (line 12966) | def glVertexArrayAttribIFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayAttribLFormat (line 12967) | def glVertexArrayAttribLFormat(self, vaobj: int, attribindex: int, siz... method glVertexArrayBindingDivisor (line 12968) | def glVertexArrayBindingDivisor(self, vaobj: int, bindingindex: int, d... method glVertexArrayElementBuffer (line 12969) | def glVertexArrayElementBuffer(self, vaobj: int, buffer: int, /) -> No... method glVertexAttrib1d (line 12970) | def glVertexAttrib1d(self, index: int, x: float, /) -> None: ... method glVertexAttrib1dv (line 12971) | def glVertexAttrib1dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1f (line 12972) | def glVertexAttrib1f(self, index: int, x: float, /) -> None: ... method glVertexAttrib1fv (line 12973) | def glVertexAttrib1fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib1s (line 12974) | def glVertexAttrib1s(self, index: int, x: int, /) -> None: ... method glVertexAttrib1sv (line 12975) | def glVertexAttrib1sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib2d (line 12976) | def glVertexAttrib2d(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2dv (line 12977) | def glVertexAttrib2dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2f (line 12978) | def glVertexAttrib2f(self, index: int, x: float, y: float, /) -> None:... method glVertexAttrib2fv (line 12979) | def glVertexAttrib2fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib2s (line 12980) | def glVertexAttrib2s(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttrib2sv (line 12981) | def glVertexAttrib2sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib3d (line 12982) | def glVertexAttrib3d(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3dv (line 12983) | def glVertexAttrib3dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3f (line 12984) | def glVertexAttrib3f(self, index: int, x: float, y: float, z: float, /... method glVertexAttrib3fv (line 12985) | def glVertexAttrib3fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib3s (line 12986) | def glVertexAttrib3s(self, index: int, x: int, y: int, z: int, /) -> N... method glVertexAttrib3sv (line 12987) | def glVertexAttrib3sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4Nbv (line 12988) | def glVertexAttrib4Nbv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Niv (line 12989) | def glVertexAttrib4Niv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nsv (line 12990) | def glVertexAttrib4Nsv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4Nub (line 12991) | def glVertexAttrib4Nub(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttrib4Nubv (line 12992) | def glVertexAttrib4Nubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nuiv (line 12993) | def glVertexAttrib4Nuiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4Nusv (line 12994) | def glVertexAttrib4Nusv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttrib4bv (line 12995) | def glVertexAttrib4bv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4d (line 12996) | def glVertexAttrib4d(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4dv (line 12997) | def glVertexAttrib4dv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4f (line 12998) | def glVertexAttrib4f(self, index: int, x: float, y: float, z: float, w... method glVertexAttrib4fv (line 12999) | def glVertexAttrib4fv(self, index: int, v: typing.Iterable[float], /) ... method glVertexAttrib4iv (line 13000) | def glVertexAttrib4iv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4s (line 13001) | def glVertexAttrib4s(self, index: int, x: int, y: int, z: int, w: int,... method glVertexAttrib4sv (line 13002) | def glVertexAttrib4sv(self, index: int, v: typing.Iterable[int], /) ->... method glVertexAttrib4ubv (line 13003) | def glVertexAttrib4ubv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4uiv (line 13004) | def glVertexAttrib4uiv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttrib4usv (line 13005) | def glVertexAttrib4usv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribBinding (line 13006) | def glVertexAttribBinding(self, attribindex: int, bindingindex: int, /... method glVertexAttribDivisor (line 13007) | def glVertexAttribDivisor(self, index: int, divisor: int, /) -> None: ... method glVertexAttribFormat (line 13008) | def glVertexAttribFormat(self, attribindex: int, size: int, type: int,... method glVertexAttribI1i (line 13009) | def glVertexAttribI1i(self, index: int, x: int, /) -> None: ... method glVertexAttribI1iv (line 13010) | def glVertexAttribI1iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI1ui (line 13011) | def glVertexAttribI1ui(self, index: int, x: int, /) -> None: ... method glVertexAttribI1uiv (line 13012) | def glVertexAttribI1uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI2i (line 13013) | def glVertexAttribI2i(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2iv (line 13014) | def glVertexAttribI2iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI2ui (line 13015) | def glVertexAttribI2ui(self, index: int, x: int, y: int, /) -> None: ... method glVertexAttribI2uiv (line 13016) | def glVertexAttribI2uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI3i (line 13017) | def glVertexAttribI3i(self, index: int, x: int, y: int, z: int, /) -> ... method glVertexAttribI3iv (line 13018) | def glVertexAttribI3iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI3ui (line 13019) | def glVertexAttribI3ui(self, index: int, x: int, y: int, z: int, /) ->... method glVertexAttribI3uiv (line 13020) | def glVertexAttribI3uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4bv (line 13021) | def glVertexAttribI4bv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4i (line 13022) | def glVertexAttribI4i(self, index: int, x: int, y: int, z: int, w: int... method glVertexAttribI4iv (line 13023) | def glVertexAttribI4iv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4sv (line 13024) | def glVertexAttribI4sv(self, index: int, v: typing.Iterable[int], /) -... method glVertexAttribI4ubv (line 13025) | def glVertexAttribI4ubv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4ui (line 13026) | def glVertexAttribI4ui(self, index: int, x: int, y: int, z: int, w: in... method glVertexAttribI4uiv (line 13027) | def glVertexAttribI4uiv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribI4usv (line 13028) | def glVertexAttribI4usv(self, index: int, v: typing.Iterable[int], /) ... method glVertexAttribIFormat (line 13029) | def glVertexAttribIFormat(self, attribindex: int, size: int, type: int... method glVertexAttribIPointer (line 13030) | def glVertexAttribIPointer(self, index: int, size: int, type: int, str... method glVertexAttribL1d (line 13031) | def glVertexAttribL1d(self, index: int, x: float, /) -> None: ... method glVertexAttribL1dv (line 13032) | def glVertexAttribL1dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL2d (line 13033) | def glVertexAttribL2d(self, index: int, x: float, y: float, /) -> None... method glVertexAttribL2dv (line 13034) | def glVertexAttribL2dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL3d (line 13035) | def glVertexAttribL3d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL3dv (line 13036) | def glVertexAttribL3dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribL4d (line 13037) | def glVertexAttribL4d(self, index: int, x: float, y: float, z: float, ... method glVertexAttribL4dv (line 13038) | def glVertexAttribL4dv(self, index: int, v: typing.Iterable[float], /)... method glVertexAttribLFormat (line 13039) | def glVertexAttribLFormat(self, attribindex: int, size: int, type: int... method glVertexAttribLPointer (line 13040) | def glVertexAttribLPointer(self, index: int, size: int, type: int, str... method glVertexAttribP1ui (line 13041) | def glVertexAttribP1ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP1uiv (line 13042) | def glVertexAttribP1uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP2ui (line 13043) | def glVertexAttribP2ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP2uiv (line 13044) | def glVertexAttribP2uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP3ui (line 13045) | def glVertexAttribP3ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP3uiv (line 13046) | def glVertexAttribP3uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribP4ui (line 13047) | def glVertexAttribP4ui(self, index: int, type: int, normalized: int, v... method glVertexAttribP4uiv (line 13048) | def glVertexAttribP4uiv(self, index: int, type: int, normalized: int, ... method glVertexAttribPointer (line 13049) | def glVertexAttribPointer(self, index: int, size: int, type: int, norm... method glVertexBindingDivisor (line 13050) | def glVertexBindingDivisor(self, bindingindex: int, divisor: int, /) -... method glViewport (line 13051) | def glViewport(self, x: int, y: int, width: int, height: int, /) -> No... method glViewportArrayv (line 13052) | def glViewportArrayv(self, first: int, count: int, v: typing.Iterable[... method glViewportIndexedf (line 13053) | def glViewportIndexedf(self, index: int, x: float, y: float, w: float,... method glViewportIndexedfv (line 13054) | def glViewportIndexedfv(self, index: int, v: typing.Iterable[float], /... method initializeOpenGLFunctions (line 13055) | def initializeOpenGLFunctions(self, /) -> bool: ... class QOpenGLPaintDevice (line 13057) | class QOpenGLPaintDevice(PySide6.QtGui.QPaintDevice): method __init__ (line 13059) | def __init__(self, width: int, height: int, /) -> None: ... method __init__ (line 13061) | def __init__(self, size: PySide6.QtCore.QSize, /) -> None: ... method __init__ (line 13063) | def __init__(self, /) -> None: ... method context (line 13064) | def context(self, /) -> PySide6.QtGui.QOpenGLContext: ... method devType (line 13065) | def devType(self, /) -> int: ... method dotsPerMeterX (line 13066) | def dotsPerMeterX(self, /) -> float: ... method dotsPerMeterY (line 13067) | def dotsPerMeterY(self, /) -> float: ... method ensureActiveTarget (line 13068) | def ensureActiveTarget(self, /) -> None: ... method metric (line 13069) | def metric(self, metric: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method paintEngine (line 13070) | def paintEngine(self, /) -> PySide6.QtGui.QPaintEngine: ... method paintFlipped (line 13071) | def paintFlipped(self, /) -> bool: ... method setDevicePixelRatio (line 13072) | def setDevicePixelRatio(self, devicePixelRatio: float, /) -> None: ... method setDotsPerMeterX (line 13073) | def setDotsPerMeterX(self, arg__1: float, /) -> None: ... method setDotsPerMeterY (line 13074) | def setDotsPerMeterY(self, arg__1: float, /) -> None: ... method setPaintFlipped (line 13075) | def setPaintFlipped(self, flipped: bool, /) -> None: ... method setSize (line 13076) | def setSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method size (line 13077) | def size(self, /) -> PySide6.QtCore.QSize: ... class QOpenGLPixelTransferOptions (line 13079) | class QOpenGLPixelTransferOptions(shiboken6.Object): method __init__ (line 13081) | def __init__(self, arg__1: QOpenGLPixelTransferOptions, /) -> None: ... method __init__ (line 13083) | def __init__(self, /) -> None: ... method alignment (line 13084) | def alignment(self, /) -> int: ... method imageHeight (line 13085) | def imageHeight(self, /) -> int: ... method isLeastSignificantBitFirst (line 13086) | def isLeastSignificantBitFirst(self, /) -> bool: ... method isSwapBytesEnabled (line 13087) | def isSwapBytesEnabled(self, /) -> bool: ... method rowLength (line 13088) | def rowLength(self, /) -> int: ... method setAlignment (line 13089) | def setAlignment(self, alignment: int, /) -> None: ... method setImageHeight (line 13090) | def setImageHeight(self, imageHeight: int, /) -> None: ... method setLeastSignificantByteFirst (line 13091) | def setLeastSignificantByteFirst(self, lsbFirst: bool, /) -> None: ... method setRowLength (line 13092) | def setRowLength(self, rowLength: int, /) -> None: ... method setSkipImages (line 13093) | def setSkipImages(self, skipImages: int, /) -> None: ... method setSkipPixels (line 13094) | def setSkipPixels(self, skipPixels: int, /) -> None: ... method setSkipRows (line 13095) | def setSkipRows(self, skipRows: int, /) -> None: ... method setSwapBytesEnabled (line 13096) | def setSwapBytesEnabled(self, swapBytes: bool, /) -> None: ... method skipImages (line 13097) | def skipImages(self, /) -> int: ... method skipPixels (line 13098) | def skipPixels(self, /) -> int: ... method skipRows (line 13099) | def skipRows(self, /) -> int: ... method swap (line 13100) | def swap(self, other: QOpenGLPixelTransferOptions, /) -> None: ... method __copy__ (line 13101) | def __copy__(self, /) -> typing_extensions.Self: ... class QOpenGLShader (line 13103) | class QOpenGLShader(PySide6.QtCore.QObject): class ShaderTypeBit (line 13104) | class ShaderTypeBit(enum.Flag): method __init__ (line 13112) | def __init__(self, type: QOpenGLShader.ShaderTypeBit, /, parent: PySid... method compileSourceCode (line 13114) | def compileSourceCode(self, source: str, /) -> bool: ... method compileSourceCode (line 13116) | def compileSourceCode(self, source: bytes | bytearray | memoryview, /)... method compileSourceCode (line 13118) | def compileSourceCode(self, source: PySide6.QtCore.QByteArray | bytes ... method compileSourceFile (line 13119) | def compileSourceFile(self, fileName: str, /) -> bool: ... method hasOpenGLShaders (line 13121) | def hasOpenGLShaders(type: QOpenGLShader.ShaderTypeBit, /, context: Py... method isCompiled (line 13122) | def isCompiled(self, /) -> bool: ... method log (line 13123) | def log(self, /) -> str: ... method shaderId (line 13124) | def shaderId(self, /) -> int: ... method shaderType (line 13125) | def shaderType(self, /) -> QOpenGLShader.ShaderTypeBit: ... method sourceCode (line 13126) | def sourceCode(self, /) -> PySide6.QtCore.QByteArray: ... class QOpenGLShaderProgram (line 13128) | class QOpenGLShaderProgram(PySide6.QtCore.QObject): method __init__ (line 13130) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method addCacheableShaderFromSourceCode (line 13132) | def addCacheableShaderFromSourceCode(self, type: QOpenGLShader.ShaderT... method addCacheableShaderFromSourceCode (line 13134) | def addCacheableShaderFromSourceCode(self, type: QOpenGLShader.ShaderT... method addCacheableShaderFromSourceCode (line 13136) | def addCacheableShaderFromSourceCode(self, type: QOpenGLShader.ShaderT... method addCacheableShaderFromSourceFile (line 13137) | def addCacheableShaderFromSourceFile(self, type: QOpenGLShader.ShaderT... method addShader (line 13138) | def addShader(self, shader: QOpenGLShader, /) -> bool: ... method addShaderFromSourceCode (line 13140) | def addShaderFromSourceCode(self, type: QOpenGLShader.ShaderTypeBit, s... method addShaderFromSourceCode (line 13142) | def addShaderFromSourceCode(self, type: QOpenGLShader.ShaderTypeBit, s... method addShaderFromSourceCode (line 13144) | def addShaderFromSourceCode(self, type: QOpenGLShader.ShaderTypeBit, s... method addShaderFromSourceFile (line 13145) | def addShaderFromSourceFile(self, type: QOpenGLShader.ShaderTypeBit, f... method attributeLocation (line 13147) | def attributeLocation(self, name: str, /) -> int: ... method attributeLocation (line 13149) | def attributeLocation(self, name: bytes | bytearray | memoryview, /) -... method attributeLocation (line 13151) | def attributeLocation(self, name: PySide6.QtCore.QByteArray | bytes | ... method bind (line 13152) | def bind(self, /) -> bool: ... method bindAttributeLocation (line 13154) | def bindAttributeLocation(self, name: str, location: int, /) -> None: ... method bindAttributeLocation (line 13156) | def bindAttributeLocation(self, name: bytes | bytearray | memoryview, ... method bindAttributeLocation (line 13158) | def bindAttributeLocation(self, name: PySide6.QtCore.QByteArray | byte... method create (line 13159) | def create(self, /) -> bool: ... method defaultInnerTessellationLevels (line 13160) | def defaultInnerTessellationLevels(self, /) -> List[float]: ... method defaultOuterTessellationLevels (line 13161) | def defaultOuterTessellationLevels(self, /) -> List[float]: ... method disableAttributeArray (line 13163) | def disableAttributeArray(self, name: bytes | bytearray | memoryview, ... method disableAttributeArray (line 13165) | def disableAttributeArray(self, location: int, /) -> None: ... method enableAttributeArray (line 13167) | def enableAttributeArray(self, name: bytes | bytearray | memoryview, /... method enableAttributeArray (line 13169) | def enableAttributeArray(self, location: int, /) -> None: ... method hasOpenGLShaderPrograms (line 13171) | def hasOpenGLShaderPrograms(context: PySide6.QtGui.QOpenGLContext | No... method isLinked (line 13172) | def isLinked(self, /) -> bool: ... method link (line 13173) | def link(self, /) -> bool: ... method log (line 13174) | def log(self, /) -> str: ... method maxGeometryOutputVertices (line 13175) | def maxGeometryOutputVertices(self, /) -> int: ... method patchVertexCount (line 13176) | def patchVertexCount(self, /) -> int: ... method programId (line 13177) | def programId(self, /) -> int: ... method release (line 13178) | def release(self, /) -> None: ... method removeAllShaders (line 13179) | def removeAllShaders(self, /) -> None: ... method removeShader (line 13180) | def removeShader(self, shader: QOpenGLShader, /) -> None: ... method setAttributeArray (line 13182) | def setAttributeArray(self, name: bytes | bytearray | memoryview, type... method setAttributeArray (line 13184) | def setAttributeArray(self, location: int, type: int, values: int, tup... method setAttributeArray (line 13186) | def setAttributeArray(self, name: bytes | bytearray | memoryview, valu... method setAttributeArray (line 13188) | def setAttributeArray(self, location: int, values: typing.Iterable[flo... method setAttributeBuffer (line 13190) | def setAttributeBuffer(self, name: bytes | bytearray | memoryview, typ... method setAttributeBuffer (line 13192) | def setAttributeBuffer(self, location: int, type: int, offset: int, tu... method setAttributeValue (line 13194) | def setAttributeValue(self, name: bytes | bytearray | memoryview, x: f... method setAttributeValue (line 13196) | def setAttributeValue(self, location: int, x: float, y: float, z: floa... method setAttributeValue (line 13198) | def setAttributeValue(self, name: bytes | bytearray | memoryview, x: f... method setAttributeValue (line 13200) | def setAttributeValue(self, name: bytes | bytearray | memoryview, valu... method setAttributeValue (line 13202) | def setAttributeValue(self, location: int, x: float, y: float, z: floa... method setAttributeValue (line 13204) | def setAttributeValue(self, location: int, values: typing.Iterable[flo... method setAttributeValue (line 13206) | def setAttributeValue(self, name: bytes | bytearray | memoryview, x: f... method setAttributeValue (line 13208) | def setAttributeValue(self, location: int, x: float, y: float, /) -> N... method setAttributeValue (line 13210) | def setAttributeValue(self, name: bytes | bytearray | memoryview, valu... method setAttributeValue (line 13212) | def setAttributeValue(self, name: bytes | bytearray | memoryview, valu... method setAttributeValue (line 13214) | def setAttributeValue(self, name: bytes | bytearray | memoryview, valu... method setAttributeValue (line 13216) | def setAttributeValue(self, name: bytes | bytearray | memoryview, valu... method setAttributeValue (line 13218) | def setAttributeValue(self, name: bytes | bytearray | memoryview, valu... method setAttributeValue (line 13220) | def setAttributeValue(self, location: int, value: PySide6.QtGui.QVecto... method setAttributeValue (line 13222) | def setAttributeValue(self, location: int, value: PySide6.QtGui.QVecto... method setAttributeValue (line 13224) | def setAttributeValue(self, location: int, value: PySide6.QtGui.QVecto... method setAttributeValue (line 13226) | def setAttributeValue(self, location: int, value: float, /) -> None: ... method setAttributeValue (line 13228) | def setAttributeValue(self, location: int, value: Union[PySide6.QtGui.... method setDefaultInnerTessellationLevels (line 13229) | def setDefaultInnerTessellationLevels(self, levels: typing.Iterable[fl... method setDefaultOuterTessellationLevels (line 13230) | def setDefaultOuterTessellationLevels(self, levels: typing.Iterable[fl... method setPatchVertexCount (line 13231) | def setPatchVertexCount(self, count: int, /) -> None: ... method setUniformValue (line 13233) | def setUniformValue(self, name: bytes | bytearray | memoryview, x: flo... method setUniformValue (line 13235) | def setUniformValue(self, location: int, x: float, y: float, z: float,... method setUniformValue (line 13237) | def setUniformValue(self, name: bytes | bytearray | memoryview, x: flo... method setUniformValue (line 13239) | def setUniformValue(self, location: int, x: float, y: float, z: float,... method setUniformValue (line 13241) | def setUniformValue(self, name: bytes | bytearray | memoryview, x: flo... method setUniformValue (line 13243) | def setUniformValue(self, location: int, x: float, y: float, /) -> Non... method setUniformValue (line 13245) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13247) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13249) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13251) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13253) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13255) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13257) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13259) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13261) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13263) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13265) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13267) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13269) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13271) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13273) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13275) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13277) | def setUniformValue(self, name: bytes | bytearray | memoryview, value:... method setUniformValue (line 13279) | def setUniformValue(self, name: bytes | bytearray | memoryview, size: ... method setUniformValue (line 13281) | def setUniformValue(self, name: bytes | bytearray | memoryview, size: ... method setUniformValue (line 13283) | def setUniformValue(self, name: bytes | bytearray | memoryview, point:... method setUniformValue (line 13285) | def setUniformValue(self, name: bytes | bytearray | memoryview, point:... method setUniformValue (line 13287) | def setUniformValue(self, name: bytes | bytearray | memoryview, color:... method setUniformValue (line 13289) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix2... method setUniformValue (line 13291) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix2... method setUniformValue (line 13293) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix2... method setUniformValue (line 13295) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix3... method setUniformValue (line 13297) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix3... method setUniformValue (line 13299) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix3... method setUniformValue (line 13301) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix4... method setUniformValue (line 13303) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix4... method setUniformValue (line 13305) | def setUniformValue(self, location: int, value: PySide6.QtGui.QTransfo... method setUniformValue (line 13307) | def setUniformValue(self, location: int, value: PySide6.QtGui.QVector2... method setUniformValue (line 13309) | def setUniformValue(self, location: int, value: PySide6.QtGui.QVector3... method setUniformValue (line 13311) | def setUniformValue(self, location: int, value: PySide6.QtGui.QVector4... method setUniformValue (line 13313) | def setUniformValue(self, location: int, value: PySide6.QtGui.QMatrix4... method setUniformValue (line 13315) | def setUniformValue(self, location: int, value: Tuple[Tuple[float, flo... method setUniformValue (line 13317) | def setUniformValue(self, location: int, value: Tuple[Tuple[float, flo... method setUniformValue (line 13319) | def setUniformValue(self, location: int, value: Tuple[Tuple[float, flo... method setUniformValue (line 13321) | def setUniformValue(self, location: int, value: int, /) -> None: ... method setUniformValue (line 13323) | def setUniformValue(self, location: int, value: float, /) -> None: ... method setUniformValue (line 13325) | def setUniformValue(self, location: int, size: PySide6.QtCore.QSize, /... method setUniformValue (line 13327) | def setUniformValue(self, location: int, size: PySide6.QtCore.QSizeF |... method setUniformValue (line 13329) | def setUniformValue(self, location: int, point: PySide6.QtCore.QPoint,... method setUniformValue (line 13331) | def setUniformValue(self, location: int, point: PySide6.QtCore.QPointF... method setUniformValue (line 13333) | def setUniformValue(self, location: int, color: Union[PySide6.QtGui.QC... method setUniformValue1f (line 13335) | def setUniformValue1f(self, arg__1: bytes | bytearray | memoryview, ar... method setUniformValue1f (line 13337) | def setUniformValue1f(self, arg__1: int, arg__2: float, /) -> None: ... method setUniformValue1i (line 13339) | def setUniformValue1i(self, arg__1: bytes | bytearray | memoryview, ar... method setUniformValue1i (line 13341) | def setUniformValue1i(self, arg__1: int, arg__2: int, /) -> None: ... method setUniformValueArray (line 13343) | def setUniformValueArray(self, name: bytes | bytearray | memoryview, v... method setUniformValueArray (line 13345) | def setUniformValueArray(self, location: int, values: typing.Iterable[... method setUniformValueArray (line 13347) | def setUniformValueArray(self, name: bytes | bytearray | memoryview, v... method setUniformValueArray (line 13349) | def setUniformValueArray(self, location: int, values: typing.Iterable[... method shaders (line 13350) | def shaders(self, /) -> List[QOpenGLShader]: ... method uniformLocation (line 13352) | def uniformLocation(self, name: str, /) -> int: ... method uniformLocation (line 13354) | def uniformLocation(self, name: bytes | bytearray | memoryview, /) -> ... method uniformLocation (line 13356) | def uniformLocation(self, name: PySide6.QtCore.QByteArray | bytes | by... class QOpenGLTexture (line 13358) | class QOpenGLTexture(shiboken6.Object): class BindingTarget (line 13359) | class BindingTarget(enum.Enum): class ComparisonFunction (line 13372) | class ComparisonFunction(enum.Enum): class ComparisonMode (line 13383) | class ComparisonMode(enum.Enum): class CoordinateDirection (line 13387) | class CoordinateDirection(enum.Enum): class CubeMapFace (line 13392) | class CubeMapFace(enum.Enum): class DepthStencilMode (line 13400) | class DepthStencilMode(enum.Enum): class Feature (line 13404) | class Feature(enum.Flag): class Filter (line 13423) | class Filter(enum.Enum): class MipMapGeneration (line 13431) | class MipMapGeneration(enum.Enum): class PixelFormat (line 13435) | class PixelFormat(enum.Enum): class PixelType (line 13456) | class PixelType(enum.Enum): class SwizzleComponent (line 13484) | class SwizzleComponent(enum.Enum): class SwizzleValue (line 13490) | class SwizzleValue(enum.Enum): class Target (line 13498) | class Target(enum.Enum): class TextureFormat (line 13511) | class TextureFormat(enum.Enum): class TextureFormatClass (line 13639) | class TextureFormatClass(enum.Enum): class TextureUnitReset (line 13659) | class TextureUnitReset(enum.Enum): class WrapMode (line 13663) | class WrapMode(enum.Enum): method __init__ (line 13669) | def __init__(self, image: PySide6.QtGui.QImage, /, genMipMaps: QOpenGL... method __init__ (line 13671) | def __init__(self, target: QOpenGLTexture.Target, /) -> None: ... method allocateStorage (line 13673) | def allocateStorage(self, pixelFormat: QOpenGLTexture.PixelFormat, pix... method allocateStorage (line 13675) | def allocateStorage(self, /) -> None: ... method bind (line 13677) | def bind(self, unit: int, /, reset: QOpenGLTexture.TextureUnitReset = ... method bind (line 13679) | def bind(self, /) -> None: ... method borderColor (line 13680) | def borderColor(self, /) -> PySide6.QtGui.QColor: ... method boundTextureId (line 13683) | def boundTextureId(unit: int, target: QOpenGLTexture.BindingTarget, /)... method boundTextureId (line 13686) | def boundTextureId(target: QOpenGLTexture.BindingTarget, /) -> int: ... method comparisonFunction (line 13687) | def comparisonFunction(self, /) -> QOpenGLTexture.ComparisonFunction: ... method comparisonMode (line 13688) | def comparisonMode(self, /) -> QOpenGLTexture.ComparisonMode: ... method create (line 13689) | def create(self, /) -> bool: ... method createTextureView (line 13690) | def createTextureView(self, target: QOpenGLTexture.Target, viewFormat:... method depth (line 13691) | def depth(self, /) -> int: ... method depthStencilMode (line 13692) | def depthStencilMode(self, /) -> QOpenGLTexture.DepthStencilMode: ... method destroy (line 13693) | def destroy(self, /) -> None: ... method faces (line 13694) | def faces(self, /) -> int: ... method format (line 13695) | def format(self, /) -> QOpenGLTexture.TextureFormat: ... method generateMipMaps (line 13697) | def generateMipMaps(self, baseLevel: int, /, resetBaseLevel: bool = ..... method generateMipMaps (line 13699) | def generateMipMaps(self, /) -> None: ... method hasFeature (line 13701) | def hasFeature(feature: QOpenGLTexture.Feature, /) -> bool: ... method height (line 13702) | def height(self, /) -> int: ... method isAutoMipMapGenerationEnabled (line 13703) | def isAutoMipMapGenerationEnabled(self, /) -> bool: ... method isBound (line 13705) | def isBound(self, unit: int, /) -> bool: ... method isBound (line 13707) | def isBound(self, /) -> bool: ... method isCreated (line 13708) | def isCreated(self, /) -> bool: ... method isFixedSamplePositions (line 13709) | def isFixedSamplePositions(self, /) -> bool: ... method isStorageAllocated (line 13710) | def isStorageAllocated(self, /) -> bool: ... method isTextureView (line 13711) | def isTextureView(self, /) -> bool: ... method layers (line 13712) | def layers(self, /) -> int: ... method levelOfDetailRange (line 13713) | def levelOfDetailRange(self, /) -> Tuple[float, float]: ... method levelofDetailBias (line 13714) | def levelofDetailBias(self, /) -> float: ... method magnificationFilter (line 13715) | def magnificationFilter(self, /) -> QOpenGLTexture.Filter: ... method maximumAnisotropy (line 13716) | def maximumAnisotropy(self, /) -> float: ... method maximumLevelOfDetail (line 13717) | def maximumLevelOfDetail(self, /) -> float: ... method maximumMipLevels (line 13718) | def maximumMipLevels(self, /) -> int: ... method minMagFilters (line 13719) | def minMagFilters(self, /) -> Tuple[QOpenGLTexture.Filter, QOpenGLText... method minificationFilter (line 13720) | def minificationFilter(self, /) -> QOpenGLTexture.Filter: ... method minimumLevelOfDetail (line 13721) | def minimumLevelOfDetail(self, /) -> float: ... method mipBaseLevel (line 13722) | def mipBaseLevel(self, /) -> int: ... method mipLevelRange (line 13723) | def mipLevelRange(self, /) -> Tuple[int, int]: ... method mipLevels (line 13724) | def mipLevels(self, /) -> int: ... method mipMaxLevel (line 13725) | def mipMaxLevel(self, /) -> int: ... method release (line 13727) | def release(self, unit: int, /, reset: QOpenGLTexture.TextureUnitReset... method release (line 13729) | def release(self, /) -> None: ... method samples (line 13730) | def samples(self, /) -> int: ... method setAutoMipMapGenerationEnabled (line 13731) | def setAutoMipMapGenerationEnabled(self, enabled: bool, /) -> None: ... method setBorderColor (line 13733) | def setBorderColor(self, r: int, g: int, b: int, a: int, /) -> None: ... method setBorderColor (line 13735) | def setBorderColor(self, r: float, g: float, b: float, a: float, /) ->... method setBorderColor (line 13737) | def setBorderColor(self, color: Union[PySide6.QtGui.QColor, str, PySid... method setComparisonFunction (line 13738) | def setComparisonFunction(self, function: QOpenGLTexture.ComparisonFun... method setComparisonMode (line 13739) | def setComparisonMode(self, mode: QOpenGLTexture.ComparisonMode, /) ->... method setCompressedData (line 13741) | def setCompressedData(self, mipLevel: int, layer: int, layerCount: int... method setCompressedData (line 13743) | def setCompressedData(self, mipLevel: int, layer: int, cubeFace: QOpen... method setCompressedData (line 13745) | def setCompressedData(self, mipLevel: int, layer: int, dataSize: int, ... method setCompressedData (line 13747) | def setCompressedData(self, mipLevel: int, dataSize: int, data: int, /... method setCompressedData (line 13749) | def setCompressedData(self, dataSize: int, data: int, /, options: QOpe... method setData (line 13751) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 13753) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 13755) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 13757) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 13759) | def setData(self, xOffset: int, yOffset: int, zOffset: int, width: int... method setData (line 13761) | def setData(self, mipLevel: int, layer: int, layerCount: int, cubeFace... method setData (line 13763) | def setData(self, mipLevel: int, layer: int, cubeFace: QOpenGLTexture.... method setData (line 13765) | def setData(self, mipLevel: int, layer: int, sourceFormat: QOpenGLText... method setData (line 13767) | def setData(self, mipLevel: int, sourceFormat: QOpenGLTexture.PixelFor... method setData (line 13769) | def setData(self, sourceFormat: QOpenGLTexture.PixelFormat, sourceType... method setData (line 13771) | def setData(self, image: PySide6.QtGui.QImage, /, genMipMaps: QOpenGLT... method setDepthStencilMode (line 13772) | def setDepthStencilMode(self, mode: QOpenGLTexture.DepthStencilMode, /... method setFixedSamplePositions (line 13773) | def setFixedSamplePositions(self, fixed: bool, /) -> None: ... method setFormat (line 13774) | def setFormat(self, format: QOpenGLTexture.TextureFormat, /) -> None: ... method setLayers (line 13775) | def setLayers(self, layers: int, /) -> None: ... method setLevelOfDetailRange (line 13776) | def setLevelOfDetailRange(self, min: float, max: float, /) -> None: ... method setLevelofDetailBias (line 13777) | def setLevelofDetailBias(self, bias: float, /) -> None: ... method setMagnificationFilter (line 13778) | def setMagnificationFilter(self, filter: QOpenGLTexture.Filter, /) -> ... method setMaximumAnisotropy (line 13779) | def setMaximumAnisotropy(self, anisotropy: float, /) -> None: ... method setMaximumLevelOfDetail (line 13780) | def setMaximumLevelOfDetail(self, value: float, /) -> None: ... method setMinMagFilters (line 13781) | def setMinMagFilters(self, minificationFilter: QOpenGLTexture.Filter, ... method setMinificationFilter (line 13782) | def setMinificationFilter(self, filter: QOpenGLTexture.Filter, /) -> N... method setMinimumLevelOfDetail (line 13783) | def setMinimumLevelOfDetail(self, value: float, /) -> None: ... method setMipBaseLevel (line 13784) | def setMipBaseLevel(self, baseLevel: int, /) -> None: ... method setMipLevelRange (line 13785) | def setMipLevelRange(self, baseLevel: int, maxLevel: int, /) -> None: ... method setMipLevels (line 13786) | def setMipLevels(self, levels: int, /) -> None: ... method setMipMaxLevel (line 13787) | def setMipMaxLevel(self, maxLevel: int, /) -> None: ... method setSamples (line 13788) | def setSamples(self, samples: int, /) -> None: ... method setSize (line 13789) | def setSize(self, width: int, /, height: int = ..., depth: int = ...) ... method setSwizzleMask (line 13791) | def setSwizzleMask(self, r: QOpenGLTexture.SwizzleValue, g: QOpenGLTex... method setSwizzleMask (line 13793) | def setSwizzleMask(self, component: QOpenGLTexture.SwizzleComponent, v... method setWrapMode (line 13795) | def setWrapMode(self, direction: QOpenGLTexture.CoordinateDirection, m... method setWrapMode (line 13797) | def setWrapMode(self, mode: QOpenGLTexture.WrapMode, /) -> None: ... method swizzleMask (line 13798) | def swizzleMask(self, component: QOpenGLTexture.SwizzleComponent, /) -... method target (line 13799) | def target(self, /) -> QOpenGLTexture.Target: ... method textureId (line 13800) | def textureId(self, /) -> int: ... method width (line 13801) | def width(self, /) -> int: ... method wrapMode (line 13802) | def wrapMode(self, direction: QOpenGLTexture.CoordinateDirection, /) -... class QOpenGLTextureBlitter (line 13804) | class QOpenGLTextureBlitter(shiboken6.Object): class Origin (line 13805) | class Origin(enum.Enum): method __init__ (line 13808) | def __init__(self, /) -> None: ... method bind (line 13809) | def bind(self, /, target: int = ...) -> None: ... method blit (line 13811) | def blit(self, texture: int, targetTransform: PySide6.QtGui.QMatrix4x4... method blit (line 13813) | def blit(self, texture: int, targetTransform: PySide6.QtGui.QMatrix4x4... method create (line 13814) | def create(self, /) -> bool: ... method destroy (line 13815) | def destroy(self, /) -> None: ... method isCreated (line 13816) | def isCreated(self, /) -> bool: ... method release (line 13817) | def release(self, /) -> None: ... method setOpacity (line 13818) | def setOpacity(self, opacity: float, /) -> None: ... method setRedBlueSwizzle (line 13819) | def setRedBlueSwizzle(self, swizzle: bool, /) -> None: ... method sourceTransform (line 13821) | def sourceTransform(subTexture: PySide6.QtCore.QRectF | PySide6.QtCore... method supportsExternalOESTarget (line 13822) | def supportsExternalOESTarget(self, /) -> bool: ... method supportsRectangleTarget (line 13823) | def supportsRectangleTarget(self, /) -> bool: ... method targetTransform (line 13825) | def targetTransform(target: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... class QOpenGLTimeMonitor (line 13827) | class QOpenGLTimeMonitor(PySide6.QtCore.QObject): method __init__ (line 13829) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method create (line 13830) | def create(self, /) -> bool: ... method destroy (line 13831) | def destroy(self, /) -> None: ... method isCreated (line 13832) | def isCreated(self, /) -> bool: ... method isResultAvailable (line 13833) | def isResultAvailable(self, /) -> bool: ... method objectIds (line 13834) | def objectIds(self, /) -> List[int]: ... method recordSample (line 13835) | def recordSample(self, /) -> int: ... method reset (line 13836) | def reset(self, /) -> None: ... method sampleCount (line 13837) | def sampleCount(self, /) -> int: ... method setSampleCount (line 13838) | def setSampleCount(self, sampleCount: int, /) -> None: ... method waitForIntervals (line 13839) | def waitForIntervals(self, /) -> List[int]: ... method waitForSamples (line 13840) | def waitForSamples(self, /) -> List[int]: ... class QOpenGLTimerQuery (line 13842) | class QOpenGLTimerQuery(PySide6.QtCore.QObject): method __init__ (line 13844) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method begin (line 13845) | def begin(self, /) -> None: ... method create (line 13846) | def create(self, /) -> bool: ... method destroy (line 13847) | def destroy(self, /) -> None: ... method end (line 13848) | def end(self, /) -> None: ... method isCreated (line 13849) | def isCreated(self, /) -> bool: ... method isResultAvailable (line 13850) | def isResultAvailable(self, /) -> bool: ... method objectId (line 13851) | def objectId(self, /) -> int: ... method recordTimestamp (line 13852) | def recordTimestamp(self, /) -> None: ... method waitForResult (line 13853) | def waitForResult(self, /) -> int: ... method waitForTimestamp (line 13854) | def waitForTimestamp(self, /) -> int: ... class QOpenGLVersionFunctionsFactory (line 13856) | class QOpenGLVersionFunctionsFactory(shiboken6.Object): method __init__ (line 13857) | def __init__(self, /) -> None: ... method get (line 13859) | def get(versionProfile: QOpenGLVersionProfile = ..., context: PySide6.... class QOpenGLVersionProfile (line 13861) | class QOpenGLVersionProfile(shiboken6.Object): method __init__ (line 13863) | def __init__(self, other: QOpenGLVersionProfile, /) -> None: ... method __init__ (line 13865) | def __init__(self, format: PySide6.QtGui.QSurfaceFormat | PySide6.QtGu... method __init__ (line 13867) | def __init__(self, /) -> None: ... method hasProfiles (line 13868) | def hasProfiles(self, /) -> bool: ... method isLegacyVersion (line 13869) | def isLegacyVersion(self, /) -> bool: ... method isValid (line 13870) | def isValid(self, /) -> bool: ... method profile (line 13871) | def profile(self, /) -> PySide6.QtGui.QSurfaceFormat.OpenGLContextProf... method setProfile (line 13872) | def setProfile(self, profile: PySide6.QtGui.QSurfaceFormat.OpenGLConte... method setVersion (line 13873) | def setVersion(self, majorVersion: int, minorVersion: int, /) -> None:... method version (line 13874) | def version(self, /) -> Tuple[int, int]: ... method __copy__ (line 13875) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 13876) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 13877) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 13878) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 13879) | def __hash__(self, /) -> int: ... method __le__ (line 13880) | def __le__(self, other: object) -> bool: ... method __lt__ (line 13881) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 13882) | def __ne__(self, other: object) -> bool: ... class QOpenGLVertexArrayObject (line 13884) | class QOpenGLVertexArrayObject(PySide6.QtCore.QObject): class Binder (line 13885) | class Binder(shiboken6.Object): method __init__ (line 13886) | def __init__(self, v: QOpenGLVertexArrayObject, /) -> None: ... method rebind (line 13887) | def rebind(self, /) -> None: ... method release (line 13888) | def release(self, /) -> None: ... method __enter__ (line 13889) | def __enter__(self, /) -> QOpenGLVertexArrayObject.Binder: ... method __exit__ (line 13890) | def __exit__(self, arg__1: object, arg__2: object, arg__3: object, /... method __init__ (line 13892) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method bind (line 13893) | def bind(self, /) -> None: ... method create (line 13894) | def create(self, /) -> bool: ... method destroy (line 13895) | def destroy(self, /) -> None: ... method isCreated (line 13896) | def isCreated(self, /) -> bool: ... method objectId (line 13897) | def objectId(self, /) -> int: ... method release (line 13898) | def release(self, /) -> None: ... class QOpenGLWindow (line 13900) | class QOpenGLWindow(PySide6.QtGui.QPaintDeviceWindow): class UpdateBehavior (line 13901) | class UpdateBehavior(enum.Enum): method __init__ (line 13908) | def __init__(self, shareContext: PySide6.QtGui.QOpenGLContext, /, upda... method __init__ (line 13910) | def __init__(self, /, updateBehavior: QOpenGLWindow.UpdateBehavior = .... method context (line 13911) | def context(self, /) -> PySide6.QtGui.QOpenGLContext: ... method defaultFramebufferObject (line 13912) | def defaultFramebufferObject(self, /) -> int: ... method doneCurrent (line 13913) | def doneCurrent(self, /) -> None: ... method grabFramebuffer (line 13914) | def grabFramebuffer(self, /) -> PySide6.QtGui.QImage: ... method initializeGL (line 13915) | def initializeGL(self, /) -> None: ... method isValid (line 13916) | def isValid(self, /) -> bool: ... method makeCurrent (line 13917) | def makeCurrent(self, /) -> None: ... method metric (line 13918) | def metric(self, metric: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method paintEvent (line 13919) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method paintGL (line 13920) | def paintGL(self, /) -> None: ... method paintOverGL (line 13921) | def paintOverGL(self, /) -> None: ... method paintUnderGL (line 13922) | def paintUnderGL(self, /) -> None: ... method redirected (line 13923) | def redirected(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.QtGu... method resizeEvent (line 13924) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method resizeGL (line 13925) | def resizeGL(self, w: int, h: int, /) -> None: ... method shareContext (line 13926) | def shareContext(self, /) -> PySide6.QtGui.QOpenGLContext: ... method updateBehavior (line 13927) | def updateBehavior(self, /) -> QOpenGLWindow.UpdateBehavior: ... FILE: pyside6/stubs/PySide6-stubs/QtOpenGLWidgets.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QOpenGLWidget (line 34) | class QOpenGLWidget(PySide6.QtWidgets.QWidget): class TargetBuffer (line 35) | class TargetBuffer(enum.Enum): class UpdateBehavior (line 39) | class UpdateBehavior(enum.Enum): method __init__ (line 47) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method context (line 48) | def context(self, /) -> PySide6.QtGui.QOpenGLContext: ... method currentTargetBuffer (line 49) | def currentTargetBuffer(self, /) -> QOpenGLWidget.TargetBuffer: ... method defaultFramebufferObject (line 51) | def defaultFramebufferObject(self, targetBuffer: QOpenGLWidget.TargetB... method defaultFramebufferObject (line 53) | def defaultFramebufferObject(self, /) -> int: ... method doneCurrent (line 54) | def doneCurrent(self, /) -> None: ... method event (line 55) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method format (line 56) | def format(self, /) -> PySide6.QtGui.QSurfaceFormat: ... method grabFramebuffer (line 58) | def grabFramebuffer(self, targetBuffer: QOpenGLWidget.TargetBuffer, /)... method grabFramebuffer (line 60) | def grabFramebuffer(self, /) -> PySide6.QtGui.QImage: ... method initializeGL (line 61) | def initializeGL(self, /) -> None: ... method isValid (line 62) | def isValid(self, /) -> bool: ... method makeCurrent (line 64) | def makeCurrent(self, targetBuffer: QOpenGLWidget.TargetBuffer, /) -> ... method makeCurrent (line 66) | def makeCurrent(self, /) -> None: ... method metric (line 67) | def metric(self, metric: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method paintEngine (line 68) | def paintEngine(self, /) -> PySide6.QtGui.QPaintEngine: ... method paintEvent (line 69) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method paintGL (line 70) | def paintGL(self, /) -> None: ... method redirected (line 71) | def redirected(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtGui.QPa... method resizeEvent (line 72) | def resizeEvent(self, e: PySide6.QtGui.QResizeEvent, /) -> None: ... method resizeGL (line 73) | def resizeGL(self, w: int, h: int, /) -> None: ... method setFormat (line 74) | def setFormat(self, format: PySide6.QtGui.QSurfaceFormat | PySide6.QtG... method setTextureFormat (line 75) | def setTextureFormat(self, texFormat: int, /) -> None: ... method setUpdateBehavior (line 76) | def setUpdateBehavior(self, updateBehavior: QOpenGLWidget.UpdateBehavi... method textureFormat (line 77) | def textureFormat(self, /) -> int: ... method updateBehavior (line 78) | def updateBehavior(self, /) -> QOpenGLWidget.UpdateBehavior: ... FILE: pyside6/stubs/PySide6-stubs/QtPdf.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QPdfBookmarkModel (line 34) | class QPdfBookmarkModel(PySide6.QtCore.QAbstractItemModel): class Role (line 35) | class Role(enum.IntEnum): method __init__ (line 45) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, docume... method __init__ (line 47) | def __init__(self, /, *, document: QPdfDocument | None = ..., columnsA... method columnCount (line 48) | def columnCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method data (line 49) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method document (line 50) | def document(self, /) -> QPdfDocument: ... method index (line 51) | def index(self, row: int, column: int, /, parent: PySide6.QtCore.QMode... method parent (line 53) | def parent(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method parent (line 55) | def parent(self, /) -> PySide6.QtCore.QObject: ... method roleNames (line 56) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rowCount (line 57) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method setDocument (line 58) | def setDocument(self, document: QPdfDocument, /) -> None: ... class QPdfDocument (line 60) | class QPdfDocument(PySide6.QtCore.QObject): class Error (line 61) | class Error(enum.Enum): class MetaDataField (line 70) | class MetaDataField(enum.Enum): class PageModelRole (line 80) | class PageModelRole(enum.Enum): class Status (line 85) | class Status(enum.Enum): method __init__ (line 98) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, pageCo... method __init__ (line 100) | def __init__(self, /, *, pageCount: int | None = ..., password: str | ... method close (line 101) | def close(self, /) -> None: ... method error (line 102) | def error(self, /) -> QPdfDocument.Error: ... method getAllText (line 103) | def getAllText(self, page: int, /) -> QPdfSelection: ... method getSelection (line 104) | def getSelection(self, page: int, start: PySide6.QtCore.QPointF | PySi... method getSelectionAtIndex (line 105) | def getSelectionAtIndex(self, page: int, startIndex: int, maxLength: i... method load (line 107) | def load(self, fileName: str, /) -> QPdfDocument.Error: ... method load (line 109) | def load(self, device: PySide6.QtCore.QIODevice, /) -> None: ... method metaData (line 110) | def metaData(self, field: QPdfDocument.MetaDataField, /) -> Any: ... method pageCount (line 111) | def pageCount(self, /) -> int: ... method pageIndexForLabel (line 112) | def pageIndexForLabel(self, label: str, /) -> int: ... method pageLabel (line 113) | def pageLabel(self, page: int, /) -> str: ... method pageModel (line 114) | def pageModel(self, /) -> PySide6.QtCore.QAbstractListModel: ... method pagePointSize (line 115) | def pagePointSize(self, page: int, /) -> PySide6.QtCore.QSizeF: ... method password (line 116) | def password(self, /) -> str: ... method render (line 117) | def render(self, page: int, imageSize: PySide6.QtCore.QSize, /, option... method setPassword (line 118) | def setPassword(self, password: str, /) -> None: ... method status (line 119) | def status(self, /) -> QPdfDocument.Status: ... class QPdfDocumentRenderOptions (line 121) | class QPdfDocumentRenderOptions(shiboken6.Object): class RenderFlag (line 122) | class RenderFlag(enum.Flag): class Rotation (line 132) | class Rotation(enum.Enum): method __init__ (line 138) | def __init__(self, QPdfDocumentRenderOptions: QPdfDocumentRenderOption... method __init__ (line 140) | def __init__(self, /) -> None: ... method renderFlags (line 141) | def renderFlags(self, /) -> QPdfDocumentRenderOptions.RenderFlag: ... method rotation (line 142) | def rotation(self, /) -> QPdfDocumentRenderOptions.Rotation: ... method scaledClipRect (line 143) | def scaledClipRect(self, /) -> PySide6.QtCore.QRect: ... method scaledSize (line 144) | def scaledSize(self, /) -> PySide6.QtCore.QSize: ... method setRenderFlags (line 145) | def setRenderFlags(self, r: QPdfDocumentRenderOptions.RenderFlag, /) -... method setRotation (line 146) | def setRotation(self, r: QPdfDocumentRenderOptions.Rotation, /) -> Non... method setScaledClipRect (line 147) | def setScaledClipRect(self, r: PySide6.QtCore.QRect, /) -> None: ... method setScaledSize (line 148) | def setScaledSize(self, s: PySide6.QtCore.QSize, /) -> None: ... method __copy__ (line 149) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 150) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 151) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 152) | def __gt__(self, other: object) -> bool: ... method __le__ (line 153) | def __le__(self, other: object) -> bool: ... method __lt__ (line 154) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 155) | def __ne__(self, other: object) -> bool: ... class QPdfLink (line 157) | class QPdfLink(shiboken6.Object): method __init__ (line 159) | def __init__(self, other: QPdfLink, /, *, valid: bool | None = ..., pa... method __init__ (line 161) | def __init__(self, /, *, valid: bool | None = ..., page: int | None = ... method contextAfter (line 162) | def contextAfter(self, /) -> str: ... method contextBefore (line 163) | def contextBefore(self, /) -> str: ... method copyToClipboard (line 164) | def copyToClipboard(self, /, mode: PySide6.QtGui.QClipboard.Mode = ...... method isValid (line 165) | def isValid(self, /) -> bool: ... method location (line 166) | def location(self, /) -> PySide6.QtCore.QPointF: ... method page (line 167) | def page(self, /) -> int: ... method rectangles (line 168) | def rectangles(self, /) -> List[PySide6.QtCore.QRectF]: ... method swap (line 169) | def swap(self, other: QPdfLink, /) -> None: ... method toString (line 170) | def toString(self, /) -> str: ... method url (line 171) | def url(self, /) -> PySide6.QtCore.QUrl: ... method zoom (line 172) | def zoom(self, /) -> float: ... method __copy__ (line 173) | def __copy__(self, /) -> typing_extensions.Self: ... class QPdfLinkModel (line 175) | class QPdfLinkModel(PySide6.QtCore.QAbstractListModel): class Role (line 176) | class Role(enum.Enum): method __init__ (line 187) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method data (line 188) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method document (line 189) | def document(self, /) -> QPdfDocument: ... method linkAt (line 190) | def linkAt(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method page (line 191) | def page(self, /) -> int: ... method roleNames (line 192) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rowCount (line 193) | def rowCount(self, parent: PySide6.QtCore.QModelIndex | PySide6.QtCore... method setDocument (line 194) | def setDocument(self, document: QPdfDocument, /) -> None: ... method setPage (line 195) | def setPage(self, page: int, /) -> None: ... class QPdfPageNavigator (line 197) | class QPdfPageNavigator(PySide6.QtCore.QObject): method __init__ (line 206) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, curren... method __init__ (line 208) | def __init__(self, /, *, currentPage: int | None = ..., currentLocatio... method back (line 209) | def back(self, /) -> None: ... method backAvailable (line 210) | def backAvailable(self, /) -> bool: ... method clear (line 211) | def clear(self, /) -> None: ... method currentLink (line 212) | def currentLink(self, /) -> QPdfLink: ... method currentLocation (line 213) | def currentLocation(self, /) -> PySide6.QtCore.QPointF: ... method currentPage (line 214) | def currentPage(self, /) -> int: ... method currentZoom (line 215) | def currentZoom(self, /) -> float: ... method forward (line 216) | def forward(self, /) -> None: ... method forwardAvailable (line 217) | def forwardAvailable(self, /) -> bool: ... method jump (line 219) | def jump(self, page: int, location: PySide6.QtCore.QPointF | PySide6.Q... method jump (line 221) | def jump(self, destination: QPdfLink, /) -> None: ... method update (line 222) | def update(self, page: int, location: PySide6.QtCore.QPointF | PySide6... class QPdfPageRenderer (line 224) | class QPdfPageRenderer(PySide6.QtCore.QObject): class RenderMode (line 225) | class RenderMode(enum.Enum): method __init__ (line 233) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, docume... method __init__ (line 235) | def __init__(self, /, *, document: QPdfDocument | None = ..., renderMo... method document (line 236) | def document(self, /) -> QPdfDocument: ... method renderMode (line 237) | def renderMode(self, /) -> QPdfPageRenderer.RenderMode: ... method requestPage (line 238) | def requestPage(self, pageNumber: int, imageSize: PySide6.QtCore.QSize... method setDocument (line 239) | def setDocument(self, document: QPdfDocument, /) -> None: ... method setRenderMode (line 240) | def setRenderMode(self, mode: QPdfPageRenderer.RenderMode, /) -> None:... class QPdfSearchModel (line 242) | class QPdfSearchModel(PySide6.QtCore.QAbstractListModel): class Role (line 243) | class Role(enum.Enum): method __init__ (line 255) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, docume... method __init__ (line 257) | def __init__(self, /, *, document: QPdfDocument | None = ..., searchSt... method count (line 258) | def count(self, /) -> int: ... method data (line 259) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method document (line 260) | def document(self, /) -> QPdfDocument: ... method resultAtIndex (line 261) | def resultAtIndex(self, index: int, /) -> QPdfLink: ... method resultsOnPage (line 262) | def resultsOnPage(self, page: int, /) -> List[QPdfLink]: ... method roleNames (line 263) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rowCount (line 264) | def rowCount(self, parent: PySide6.QtCore.QModelIndex | PySide6.QtCore... method searchString (line 265) | def searchString(self, /) -> str: ... method setDocument (line 266) | def setDocument(self, document: QPdfDocument, /) -> None: ... method setSearchString (line 267) | def setSearchString(self, searchString: str, /) -> None: ... method timerEvent (line 268) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method updatePage (line 269) | def updatePage(self, page: int, /) -> None: ... class QPdfSelection (line 271) | class QPdfSelection(shiboken6.Object): method __init__ (line 272) | def __init__(self, other: QPdfSelection, /, *, valid: bool | None = ..... method boundingRectangle (line 273) | def boundingRectangle(self, /) -> PySide6.QtCore.QRectF: ... method bounds (line 274) | def bounds(self, /) -> List[PySide6.QtGui.QPolygonF]: ... method copyToClipboard (line 275) | def copyToClipboard(self, /, mode: PySide6.QtGui.QClipboard.Mode = ...... method endIndex (line 276) | def endIndex(self, /) -> int: ... method isValid (line 277) | def isValid(self, /) -> bool: ... method startIndex (line 278) | def startIndex(self, /) -> int: ... method swap (line 279) | def swap(self, other: QPdfSelection, /) -> None: ... method text (line 280) | def text(self, /) -> str: ... FILE: pyside6/stubs/PySide6-stubs/QtPdfWidgets.pyi class QIntList (line 14) | class QIntList: method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method append (line 17) | def append(self, *args, **kwargs): ... method capacity (line 18) | def capacity(self, *args, **kwargs): ... method clear (line 19) | def clear(self, *args, **kwargs): ... method constData (line 20) | def constData(self, *args, **kwargs): ... method data (line 21) | def data(self, *args, **kwargs): ... method pop_back (line 22) | def pop_back(self, *args, **kwargs): ... method pop_front (line 23) | def pop_front(self, *args, **kwargs): ... method prepend (line 24) | def prepend(self, *args, **kwargs): ... method push_back (line 25) | def push_back(self, *args, **kwargs): ... method push_front (line 26) | def push_front(self, *args, **kwargs): ... method removeFirst (line 27) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 28) | def removeLast(self, *args, **kwargs): ... method reserve (line 29) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 30) | def __delitem__(self, other) -> None: ... method __getitem__ (line 31) | def __getitem__(self, index): ... method __len__ (line 32) | def __len__(self) -> int: ... method __setitem__ (line 33) | def __setitem__(self, index, object) -> None: ... class QPdfPageSelector (line 35) | class QPdfPageSelector(PySide6.QtWidgets.QWidget): method __init__ (line 41) | def __init__(self, parent: PySide6.QtWidgets.QWidget | None, /, *, doc... method __init__ (line 43) | def __init__(self, /, *, document: PySide6.QtPdf.QPdfDocument | None =... method currentPage (line 44) | def currentPage(self, /) -> int: ... method currentPageLabel (line 45) | def currentPageLabel(self, /) -> str: ... method document (line 46) | def document(self, /) -> PySide6.QtPdf.QPdfDocument: ... method setCurrentPage (line 47) | def setCurrentPage(self, index: int, /) -> None: ... method setDocument (line 48) | def setDocument(self, document: PySide6.QtPdf.QPdfDocument, /) -> None... class QPdfView (line 50) | class QPdfView(PySide6.QtWidgets.QAbstractScrollArea): class PageMode (line 51) | class PageMode(enum.Enum): class ZoomMode (line 55) | class ZoomMode(enum.Enum): method __init__ (line 69) | def __init__(self, parent: PySide6.QtWidgets.QWidget | None, /, *, doc... method __init__ (line 71) | def __init__(self, /, *, document: PySide6.QtPdf.QPdfDocument | None =... method currentSearchResultIndex (line 72) | def currentSearchResultIndex(self, /) -> int: ... method document (line 73) | def document(self, /) -> PySide6.QtPdf.QPdfDocument: ... method documentMargins (line 74) | def documentMargins(self, /) -> PySide6.QtCore.QMargins: ... method mouseMoveEvent (line 75) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 76) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 77) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method pageMode (line 78) | def pageMode(self, /) -> QPdfView.PageMode: ... method pageNavigator (line 79) | def pageNavigator(self, /) -> PySide6.QtPdf.QPdfPageNavigator: ... method pageSpacing (line 80) | def pageSpacing(self, /) -> int: ... method paintEvent (line 81) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 82) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method scrollContentsBy (line 83) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method searchModel (line 84) | def searchModel(self, /) -> PySide6.QtPdf.QPdfSearchModel: ... method setCurrentSearchResultIndex (line 85) | def setCurrentSearchResultIndex(self, currentResult: int, /) -> None: ... method setDocument (line 86) | def setDocument(self, document: PySide6.QtPdf.QPdfDocument, /) -> None... method setDocumentMargins (line 87) | def setDocumentMargins(self, margins: PySide6.QtCore.QMargins, /) -> N... method setPageMode (line 88) | def setPageMode(self, mode: QPdfView.PageMode, /) -> None: ... method setPageSpacing (line 89) | def setPageSpacing(self, spacing: int, /) -> None: ... method setSearchModel (line 90) | def setSearchModel(self, searchModel: PySide6.QtPdf.QPdfSearchModel, /... method setZoomFactor (line 91) | def setZoomFactor(self, factor: float, /) -> None: ... method setZoomMode (line 92) | def setZoomMode(self, mode: QPdfView.ZoomMode, /) -> None: ... method zoomFactor (line 93) | def zoomFactor(self, /) -> float: ... method zoomMode (line 94) | def zoomMode(self, /) -> QPdfView.ZoomMode: ... FILE: pyside6/stubs/PySide6-stubs/QtPositioning.pyi class QGeoAddress (line 13) | class QGeoAddress(shiboken6.Object): method __init__ (line 15) | def __init__(self, other: QGeoAddress, /) -> None: ... method __init__ (line 17) | def __init__(self, /) -> None: ... method city (line 18) | def city(self, /) -> str: ... method clear (line 19) | def clear(self, /) -> None: ... method country (line 20) | def country(self, /) -> str: ... method countryCode (line 21) | def countryCode(self, /) -> str: ... method county (line 22) | def county(self, /) -> str: ... method district (line 23) | def district(self, /) -> str: ... method isEmpty (line 24) | def isEmpty(self, /) -> bool: ... method isTextGenerated (line 25) | def isTextGenerated(self, /) -> bool: ... method postalCode (line 26) | def postalCode(self, /) -> str: ... method setCity (line 27) | def setCity(self, city: str, /) -> None: ... method setCountry (line 28) | def setCountry(self, country: str, /) -> None: ... method setCountryCode (line 29) | def setCountryCode(self, countryCode: str, /) -> None: ... method setCounty (line 30) | def setCounty(self, county: str, /) -> None: ... method setDistrict (line 31) | def setDistrict(self, district: str, /) -> None: ... method setPostalCode (line 32) | def setPostalCode(self, postalCode: str, /) -> None: ... method setState (line 33) | def setState(self, state: str, /) -> None: ... method setStreet (line 34) | def setStreet(self, street: str, /) -> None: ... method setStreetNumber (line 35) | def setStreetNumber(self, streetNumber: str, /) -> None: ... method setText (line 36) | def setText(self, text: str, /) -> None: ... method state (line 37) | def state(self, /) -> str: ... method street (line 38) | def street(self, /) -> str: ... method streetNumber (line 39) | def streetNumber(self, /) -> str: ... method swap (line 40) | def swap(self, other: QGeoAddress, /) -> None: ... method text (line 41) | def text(self, /) -> str: ... method __copy__ (line 42) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 43) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 44) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 45) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 46) | def __hash__(self, /) -> int: ... method __le__ (line 47) | def __le__(self, other: object) -> bool: ... method __lt__ (line 48) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 49) | def __ne__(self, other: object) -> bool: ... class QGeoAreaMonitorInfo (line 51) | class QGeoAreaMonitorInfo(shiboken6.Object): method __init__ (line 53) | def __init__(self, other: QGeoAreaMonitorInfo, /) -> None: ... method __init__ (line 55) | def __init__(self, /, name: str = ...) -> None: ... method area (line 56) | def area(self, /) -> QGeoShape: ... method expiration (line 57) | def expiration(self, /) -> PySide6.QtCore.QDateTime: ... method identifier (line 58) | def identifier(self, /) -> str: ... method isPersistent (line 59) | def isPersistent(self, /) -> bool: ... method isValid (line 60) | def isValid(self, /) -> bool: ... method name (line 61) | def name(self, /) -> str: ... method notificationParameters (line 62) | def notificationParameters(self, /) -> Dict[str, Any]: ... method setArea (line 63) | def setArea(self, newShape: QGeoShape, /) -> None: ... method setExpiration (line 64) | def setExpiration(self, expiry: PySide6.QtCore.QDateTime | datetime.da... method setName (line 65) | def setName(self, name: str, /) -> None: ... method setNotificationParameters (line 66) | def setNotificationParameters(self, parameters: Dict[str, Any], /) -> ... method setPersistent (line 67) | def setPersistent(self, isPersistent: bool, /) -> None: ... method swap (line 68) | def swap(self, other: QGeoAreaMonitorInfo | str, /) -> None: ... method __copy__ (line 69) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 70) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 71) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 72) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 73) | def __hash__(self, /) -> int: ... method __le__ (line 74) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 75) | def __lshift__(self, ds: PySide6.QtCore.QDataStream, /) -> PySide6.QtC... method __lt__ (line 76) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 77) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 78) | def __rlshift__(self, other): ... method __rrshift__ (line 79) | def __rrshift__(self, other): ... method __rshift__ (line 80) | def __rshift__(self, ds: PySide6.QtCore.QDataStream, /) -> PySide6.QtC... class QGeoAreaMonitorSource (line 82) | class QGeoAreaMonitorSource(PySide6.QtCore.QObject): class AreaMonitorFeature (line 83) | class AreaMonitorFeature(enum.Flag): class Error (line 87) | class Error(enum.Enum): method __init__ (line 97) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, destroyed... method activeMonitors (line 99) | def activeMonitors(self, lookupArea: QGeoShape, /) -> List[QGeoAreaMon... method activeMonitors (line 101) | def activeMonitors(self, /) -> List[QGeoAreaMonitorInfo]: ... method availableSources (line 103) | def availableSources() -> List[str]: ... method backendProperty (line 104) | def backendProperty(self, name: str, /) -> Any: ... method createDefaultSource (line 106) | def createDefaultSource(parent: PySide6.QtCore.QObject | None, /) -> Q... method createSource (line 108) | def createSource(sourceName: str, parent: PySide6.QtCore.QObject | Non... method error (line 109) | def error(self, /) -> QGeoAreaMonitorSource.Error: ... method positionInfoSource (line 110) | def positionInfoSource(self, /) -> QGeoPositionInfoSource: ... method requestUpdate (line 111) | def requestUpdate(self, monitor: QGeoAreaMonitorInfo | str, signal: by... method setBackendProperty (line 112) | def setBackendProperty(self, name: str, value: Any, /) -> bool: ... method setPositionInfoSource (line 113) | def setPositionInfoSource(self, source: QGeoPositionInfoSource, /) -> ... method sourceName (line 114) | def sourceName(self, /) -> str: ... method startMonitoring (line 115) | def startMonitoring(self, monitor: QGeoAreaMonitorInfo | str, /) -> bo... method stopMonitoring (line 116) | def stopMonitoring(self, monitor: QGeoAreaMonitorInfo | str, /) -> boo... method supportedAreaMonitorFeatures (line 117) | def supportedAreaMonitorFeatures(self, /) -> QGeoAreaMonitorSource.Are... class QGeoCircle (line 119) | class QGeoCircle(QGeoShape): method __init__ (line 121) | def __init__(self, other: QGeoCircle, /, *, center: QGeoCoordinate | N... method __init__ (line 123) | def __init__(self, other: QGeoShape, /, *, center: QGeoCoordinate | No... method __init__ (line 125) | def __init__(self, /, *, center: QGeoCoordinate | None = ..., radius: ... method __init__ (line 127) | def __init__(self, center: QGeoCoordinate, /, radius: float = ...) -> ... method center (line 128) | def center(self, /) -> QGeoCoordinate: ... method extendCircle (line 129) | def extendCircle(self, coordinate: QGeoCoordinate, /) -> None: ... method radius (line 130) | def radius(self, /) -> float: ... method setCenter (line 131) | def setCenter(self, center: QGeoCoordinate, /) -> None: ... method setRadius (line 132) | def setRadius(self, radius: float, /) -> None: ... method toString (line 133) | def toString(self, /) -> str: ... method translate (line 134) | def translate(self, degreesLatitude: float, degreesLongitude: float, /... method translated (line 135) | def translated(self, degreesLatitude: float, degreesLongitude: float, ... method __copy__ (line 136) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 137) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 138) | def __rlshift__(self, other): ... method __rrshift__ (line 139) | def __rrshift__(self, other): ... method __rshift__ (line 140) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoCoordinate (line 142) | class QGeoCoordinate(shiboken6.Object): class CoordinateFormat (line 143) | class CoordinateFormat(enum.Enum): class CoordinateType (line 151) | class CoordinateType(enum.Enum): method __init__ (line 156) | def __init__(self, other: QGeoCoordinate, /, *, latitude: float | None... method __init__ (line 158) | def __init__(self, latitude: float, longitude: float, altitude: float,... method __init__ (line 160) | def __init__(self, latitude: float, longitude: float, /, *, altitude: ... method __init__ (line 162) | def __init__(self, /, *, latitude: float | None = ..., longitude: floa... method altitude (line 163) | def altitude(self, /) -> float: ... method atDistanceAndAzimuth (line 164) | def atDistanceAndAzimuth(self, distance: float, azimuth: float, /, dis... method azimuthTo (line 165) | def azimuthTo(self, other: QGeoCoordinate, /) -> float: ... method distanceTo (line 166) | def distanceTo(self, other: QGeoCoordinate, /) -> float: ... method isValid (line 167) | def isValid(self, /) -> bool: ... method latitude (line 168) | def latitude(self, /) -> float: ... method longitude (line 169) | def longitude(self, /) -> float: ... method setAltitude (line 170) | def setAltitude(self, altitude: float, /) -> None: ... method setLatitude (line 171) | def setLatitude(self, latitude: float, /) -> None: ... method setLongitude (line 172) | def setLongitude(self, longitude: float, /) -> None: ... method swap (line 173) | def swap(self, other: QGeoCoordinate, /) -> None: ... method toString (line 174) | def toString(self, /, format: QGeoCoordinate.CoordinateFormat = ...) -... method type (line 175) | def type(self, /) -> QGeoCoordinate.CoordinateType: ... method __copy__ (line 176) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 177) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 178) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 179) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 180) | def __hash__(self, /) -> int: ... method __le__ (line 181) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 182) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 183) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 184) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 185) | def __rlshift__(self, other): ... method __rrshift__ (line 186) | def __rrshift__(self, other): ... method __rshift__ (line 187) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoLocation (line 189) | class QGeoLocation(shiboken6.Object): method __init__ (line 191) | def __init__(self, other: QGeoLocation, /) -> None: ... method __init__ (line 193) | def __init__(self, /) -> None: ... method address (line 194) | def address(self, /) -> QGeoAddress: ... method boundingShape (line 195) | def boundingShape(self, /) -> QGeoShape: ... method coordinate (line 196) | def coordinate(self, /) -> QGeoCoordinate: ... method extendedAttributes (line 197) | def extendedAttributes(self, /) -> Dict[str, Any]: ... method isEmpty (line 198) | def isEmpty(self, /) -> bool: ... method setAddress (line 199) | def setAddress(self, address: QGeoAddress, /) -> None: ... method setBoundingShape (line 200) | def setBoundingShape(self, shape: QGeoShape, /) -> None: ... method setCoordinate (line 201) | def setCoordinate(self, position: QGeoCoordinate, /) -> None: ... method setExtendedAttributes (line 202) | def setExtendedAttributes(self, data: Dict[str, Any], /) -> None: ... method swap (line 203) | def swap(self, other: QGeoLocation, /) -> None: ... method __copy__ (line 204) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 205) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 206) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 207) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 208) | def __hash__(self, /) -> int: ... method __le__ (line 209) | def __le__(self, other: object) -> bool: ... method __lt__ (line 210) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 211) | def __ne__(self, other: object) -> bool: ... class QGeoPath (line 213) | class QGeoPath(QGeoShape): method __init__ (line 215) | def __init__(self, other: QGeoPath, /, *, path: typing.Iterable[typing... method __init__ (line 217) | def __init__(self, other: QGeoShape, /, *, path: typing.Iterable[typin... method __init__ (line 219) | def __init__(self, /, *, path: typing.Iterable[typing.Any] | None = ..... method __init__ (line 221) | def __init__(self, path: typing.Iterable[QGeoCoordinate], /, width: fl... method addCoordinate (line 222) | def addCoordinate(self, coordinate: QGeoCoordinate, /) -> None: ... method clearPath (line 223) | def clearPath(self, /) -> None: ... method containsCoordinate (line 224) | def containsCoordinate(self, coordinate: QGeoCoordinate, /) -> bool: ... method coordinateAt (line 225) | def coordinateAt(self, index: int, /) -> QGeoCoordinate: ... method insertCoordinate (line 226) | def insertCoordinate(self, index: int, coordinate: QGeoCoordinate, /) ... method length (line 227) | def length(self, /, indexFrom: int | None = ..., indexTo: int = ...) -... method path (line 228) | def path(self, /) -> List[QGeoCoordinate]: ... method removeCoordinate (line 230) | def removeCoordinate(self, index: int, /) -> None: ... method removeCoordinate (line 232) | def removeCoordinate(self, coordinate: QGeoCoordinate, /) -> None: ... method replaceCoordinate (line 233) | def replaceCoordinate(self, index: int, coordinate: QGeoCoordinate, /)... method setPath (line 234) | def setPath(self, path: typing.Iterable[QGeoCoordinate], /) -> None: ... method setVariantPath (line 235) | def setVariantPath(self, path: typing.Iterable[typing.Any], /) -> None... method setWidth (line 236) | def setWidth(self, width: float, /) -> None: ... method size (line 237) | def size(self, /) -> int: ... method toString (line 238) | def toString(self, /) -> str: ... method translate (line 239) | def translate(self, degreesLatitude: float, degreesLongitude: float, /... method translated (line 240) | def translated(self, degreesLatitude: float, degreesLongitude: float, ... method variantPath (line 241) | def variantPath(self, /) -> List[Any]: ... method width (line 242) | def width(self, /) -> float: ... method __copy__ (line 243) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 244) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 245) | def __rlshift__(self, other): ... method __rrshift__ (line 246) | def __rrshift__(self, other): ... method __rshift__ (line 247) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoPolygon (line 249) | class QGeoPolygon(QGeoShape): method __init__ (line 251) | def __init__(self, path: typing.Iterable[QGeoCoordinate], /, *, perime... method __init__ (line 253) | def __init__(self, other: QGeoPolygon, /, *, perimeter: typing.Iterabl... method __init__ (line 255) | def __init__(self, other: QGeoShape, /, *, perimeter: typing.Iterable[... method __init__ (line 257) | def __init__(self, /, *, perimeter: typing.Iterable[QGeoCoordinate] | ... method addCoordinate (line 258) | def addCoordinate(self, coordinate: QGeoCoordinate, /) -> None: ... method addHole (line 260) | def addHole(self, holePath: typing.Iterable[QGeoCoordinate], /) -> Non... method addHole (line 262) | def addHole(self, holePath: Any, /) -> None: ... method containsCoordinate (line 263) | def containsCoordinate(self, coordinate: QGeoCoordinate, /) -> bool: ... method coordinateAt (line 264) | def coordinateAt(self, index: int, /) -> QGeoCoordinate: ... method hole (line 265) | def hole(self, index: int, /) -> List[Any]: ... method holePath (line 266) | def holePath(self, index: int, /) -> List[QGeoCoordinate]: ... method holesCount (line 267) | def holesCount(self, /) -> int: ... method insertCoordinate (line 268) | def insertCoordinate(self, index: int, coordinate: QGeoCoordinate, /) ... method length (line 269) | def length(self, /, indexFrom: int | None = ..., indexTo: int = ...) -... method perimeter (line 270) | def perimeter(self, /) -> List[QGeoCoordinate]: ... method removeCoordinate (line 272) | def removeCoordinate(self, index: int, /) -> None: ... method removeCoordinate (line 274) | def removeCoordinate(self, coordinate: QGeoCoordinate, /) -> None: ... method removeHole (line 275) | def removeHole(self, index: int, /) -> None: ... method replaceCoordinate (line 276) | def replaceCoordinate(self, index: int, coordinate: QGeoCoordinate, /)... method setPerimeter (line 277) | def setPerimeter(self, path: typing.Iterable[QGeoCoordinate], /) -> No... method size (line 278) | def size(self, /) -> int: ... method toString (line 279) | def toString(self, /) -> str: ... method translate (line 280) | def translate(self, degreesLatitude: float, degreesLongitude: float, /... method translated (line 281) | def translated(self, degreesLatitude: float, degreesLongitude: float, ... method __copy__ (line 282) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 283) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 284) | def __rlshift__(self, other): ... method __rrshift__ (line 285) | def __rrshift__(self, other): ... method __rshift__ (line 286) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoPositionInfo (line 288) | class QGeoPositionInfo(shiboken6.Object): class Attribute (line 289) | class Attribute(enum.Enum): method __init__ (line 298) | def __init__(self, coordinate: QGeoCoordinate, updateTime: PySide6.QtC... method __init__ (line 300) | def __init__(self, other: QGeoPositionInfo, /) -> None: ... method __init__ (line 302) | def __init__(self, /) -> None: ... method attribute (line 303) | def attribute(self, attribute: QGeoPositionInfo.Attribute, /) -> float... method coordinate (line 304) | def coordinate(self, /) -> QGeoCoordinate: ... method hasAttribute (line 305) | def hasAttribute(self, attribute: QGeoPositionInfo.Attribute, /) -> bo... method isValid (line 306) | def isValid(self, /) -> bool: ... method removeAttribute (line 307) | def removeAttribute(self, attribute: QGeoPositionInfo.Attribute, /) ->... method setAttribute (line 308) | def setAttribute(self, attribute: QGeoPositionInfo.Attribute, value: f... method setCoordinate (line 309) | def setCoordinate(self, coordinate: QGeoCoordinate, /) -> None: ... method setTimestamp (line 310) | def setTimestamp(self, timestamp: PySide6.QtCore.QDateTime | datetime.... method swap (line 311) | def swap(self, other: QGeoPositionInfo, /) -> None: ... method timestamp (line 312) | def timestamp(self, /) -> PySide6.QtCore.QDateTime: ... method __copy__ (line 313) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 314) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 315) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 316) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 317) | def __hash__(self, /) -> int: ... method __le__ (line 318) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 319) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 320) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 321) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 322) | def __rlshift__(self, other): ... method __rrshift__ (line 323) | def __rrshift__(self, other): ... method __rshift__ (line 324) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoPositionInfoSource (line 326) | class QGeoPositionInfoSource(PySide6.QtCore.QObject): class Error (line 327) | class Error(enum.Enum): class PositioningMethod (line 334) | class PositioningMethod(enum.Flag): method __init__ (line 343) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, update... method availableSources (line 345) | def availableSources() -> List[str]: ... method backendProperty (line 346) | def backendProperty(self, name: str, /) -> Any: ... method createDefaultSource (line 349) | def createDefaultSource(parameters: Dict[str, Any], parent: PySide6.Qt... method createDefaultSource (line 352) | def createDefaultSource(parent: PySide6.QtCore.QObject | None, /) -> Q... method createSource (line 355) | def createSource(sourceName: str, parameters: Dict[str, Any], parent: ... method createSource (line 358) | def createSource(sourceName: str, parent: PySide6.QtCore.QObject | Non... method error (line 359) | def error(self, /) -> QGeoPositionInfoSource.Error: ... method lastKnownPosition (line 360) | def lastKnownPosition(self, /, fromSatellitePositioningMethodsOnly: bo... method minimumUpdateInterval (line 361) | def minimumUpdateInterval(self, /) -> int: ... method preferredPositioningMethods (line 362) | def preferredPositioningMethods(self, /) -> QGeoPositionInfoSource.Pos... method requestUpdate (line 363) | def requestUpdate(self, /, timeout: int | None = ...) -> None: ... method setBackendProperty (line 364) | def setBackendProperty(self, name: str, value: Any, /) -> bool: ... method setPreferredPositioningMethods (line 365) | def setPreferredPositioningMethods(self, methods: QGeoPositionInfoSour... method setUpdateInterval (line 366) | def setUpdateInterval(self, msec: int, /) -> None: ... method sourceName (line 367) | def sourceName(self, /) -> str: ... method startUpdates (line 368) | def startUpdates(self, /) -> None: ... method stopUpdates (line 369) | def stopUpdates(self, /) -> None: ... method supportedPositioningMethods (line 370) | def supportedPositioningMethods(self, /) -> QGeoPositionInfoSource.Pos... method updateInterval (line 371) | def updateInterval(self, /) -> int: ... class QGeoPositionInfoSourceFactory (line 373) | class QGeoPositionInfoSourceFactory(shiboken6.Object): method __init__ (line 374) | def __init__(self, /) -> None: ... method areaMonitor (line 375) | def areaMonitor(self, parent: PySide6.QtCore.QObject | None, parameter... method positionInfoSource (line 376) | def positionInfoSource(self, parent: PySide6.QtCore.QObject | None, pa... method satelliteInfoSource (line 377) | def satelliteInfoSource(self, parent: PySide6.QtCore.QObject | None, p... class QGeoRectangle (line 379) | class QGeoRectangle(QGeoShape): method __init__ (line 381) | def __init__(self, center: QGeoCoordinate, degreesWidth: float, degree... method __init__ (line 383) | def __init__(self, other: QGeoRectangle, /, *, bottomLeft: QGeoCoordin... method __init__ (line 385) | def __init__(self, other: QGeoShape, /, *, bottomLeft: QGeoCoordinate ... method __init__ (line 387) | def __init__(self, coordinates: typing.Iterable[QGeoCoordinate], /, *,... method __init__ (line 389) | def __init__(self, topLeft: QGeoCoordinate, bottomRight: QGeoCoordinat... method __init__ (line 391) | def __init__(self, /, *, bottomLeft: QGeoCoordinate | None = ..., bott... method bottomLeft (line 392) | def bottomLeft(self, /) -> QGeoCoordinate: ... method bottomRight (line 393) | def bottomRight(self, /) -> QGeoCoordinate: ... method center (line 394) | def center(self, /) -> QGeoCoordinate: ... method contains (line 396) | def contains(self, rectangle: QGeoRectangle | QGeoShape | typing.Itera... method contains (line 398) | def contains(self, coordinate: QGeoCoordinate, /) -> bool: ... method extendRectangle (line 399) | def extendRectangle(self, coordinate: QGeoCoordinate, /) -> None: ... method height (line 400) | def height(self, /) -> float: ... method intersects (line 401) | def intersects(self, rectangle: QGeoRectangle | QGeoShape | typing.Ite... method setBottomLeft (line 402) | def setBottomLeft(self, bottomLeft: QGeoCoordinate, /) -> None: ... method setBottomRight (line 403) | def setBottomRight(self, bottomRight: QGeoCoordinate, /) -> None: ... method setCenter (line 404) | def setCenter(self, center: QGeoCoordinate, /) -> None: ... method setHeight (line 405) | def setHeight(self, degreesHeight: float, /) -> None: ... method setTopLeft (line 406) | def setTopLeft(self, topLeft: QGeoCoordinate, /) -> None: ... method setTopRight (line 407) | def setTopRight(self, topRight: QGeoCoordinate, /) -> None: ... method setWidth (line 408) | def setWidth(self, degreesWidth: float, /) -> None: ... method toString (line 409) | def toString(self, /) -> str: ... method topLeft (line 410) | def topLeft(self, /) -> QGeoCoordinate: ... method topRight (line 411) | def topRight(self, /) -> QGeoCoordinate: ... method translate (line 412) | def translate(self, degreesLatitude: float, degreesLongitude: float, /... method translated (line 413) | def translated(self, degreesLatitude: float, degreesLongitude: float, ... method united (line 414) | def united(self, rectangle: QGeoRectangle | QGeoShape | typing.Iterabl... method width (line 415) | def width(self, /) -> float: ... method __copy__ (line 416) | def __copy__(self, /) -> typing_extensions.Self: ... method __ior__ (line 417) | def __ior__(self, rectangle: QGeoRectangle | QGeoShape | typing.Iterab... method __lshift__ (line 418) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __or__ (line 419) | def __or__(self, rectangle: QGeoRectangle | QGeoShape | typing.Iterabl... method __rlshift__ (line 420) | def __rlshift__(self, other): ... method __ror__ (line 421) | def __ror__(self, other): ... method __rrshift__ (line 422) | def __rrshift__(self, other): ... method __rshift__ (line 423) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoSatelliteInfo (line 425) | class QGeoSatelliteInfo(shiboken6.Object): class Attribute (line 426) | class Attribute(enum.Enum): class SatelliteSystem (line 430) | class SatelliteSystem(enum.Enum): method __init__ (line 440) | def __init__(self, other: QGeoSatelliteInfo, /, *, satelliteSystem: QG... method __init__ (line 442) | def __init__(self, /, *, satelliteSystem: QGeoSatelliteInfo.SatelliteS... method attribute (line 443) | def attribute(self, attribute: QGeoSatelliteInfo.Attribute, /) -> floa... method hasAttribute (line 444) | def hasAttribute(self, attribute: QGeoSatelliteInfo.Attribute, /) -> b... method removeAttribute (line 445) | def removeAttribute(self, attribute: QGeoSatelliteInfo.Attribute, /) -... method satelliteIdentifier (line 446) | def satelliteIdentifier(self, /) -> int: ... method satelliteSystem (line 447) | def satelliteSystem(self, /) -> QGeoSatelliteInfo.SatelliteSystem: ... method setAttribute (line 448) | def setAttribute(self, attribute: QGeoSatelliteInfo.Attribute, value: ... method setSatelliteIdentifier (line 449) | def setSatelliteIdentifier(self, satId: int, /) -> None: ... method setSatelliteSystem (line 450) | def setSatelliteSystem(self, system: QGeoSatelliteInfo.SatelliteSystem... method setSignalStrength (line 451) | def setSignalStrength(self, signalStrength: int, /) -> None: ... method signalStrength (line 452) | def signalStrength(self, /) -> int: ... method swap (line 453) | def swap(self, other: QGeoSatelliteInfo, /) -> None: ... method __copy__ (line 454) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 455) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 456) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 457) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 458) | def __hash__(self, /) -> int: ... method __le__ (line 459) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 460) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 461) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 462) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 463) | def __rlshift__(self, other): ... method __rrshift__ (line 464) | def __rrshift__(self, other): ... method __rshift__ (line 465) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QGeoSatelliteInfoSource (line 467) | class QGeoSatelliteInfoSource(PySide6.QtCore.QObject): class Error (line 468) | class Error(enum.Enum): method __init__ (line 478) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, update... method availableSources (line 480) | def availableSources() -> List[str]: ... method backendProperty (line 481) | def backendProperty(self, name: str, /) -> Any: ... method createDefaultSource (line 484) | def createDefaultSource(parameters: Dict[str, Any], parent: PySide6.Qt... method createDefaultSource (line 487) | def createDefaultSource(parent: PySide6.QtCore.QObject | None, /) -> Q... method createSource (line 490) | def createSource(sourceName: str, parameters: Dict[str, Any], parent: ... method createSource (line 493) | def createSource(sourceName: str, parent: PySide6.QtCore.QObject | Non... method error (line 494) | def error(self, /) -> QGeoSatelliteInfoSource.Error: ... method minimumUpdateInterval (line 495) | def minimumUpdateInterval(self, /) -> int: ... method requestUpdate (line 496) | def requestUpdate(self, /, timeout: int | None = ...) -> None: ... method setBackendProperty (line 497) | def setBackendProperty(self, name: str, value: Any, /) -> bool: ... method setUpdateInterval (line 498) | def setUpdateInterval(self, msec: int, /) -> None: ... method sourceName (line 499) | def sourceName(self, /) -> str: ... method startUpdates (line 500) | def startUpdates(self, /) -> None: ... method stopUpdates (line 501) | def stopUpdates(self, /) -> None: ... method updateInterval (line 502) | def updateInterval(self, /) -> int: ... class QGeoShape (line 504) | class QGeoShape(shiboken6.Object): class ShapeType (line 505) | class ShapeType(enum.Enum): method __init__ (line 512) | def __init__(self, other: QGeoShape, /, *, type: QGeoShape.ShapeType |... method __init__ (line 514) | def __init__(self, /, *, type: QGeoShape.ShapeType | None = ..., isVal... method boundingGeoRectangle (line 515) | def boundingGeoRectangle(self, /) -> QGeoRectangle: ... method center (line 516) | def center(self, /) -> QGeoCoordinate: ... method contains (line 517) | def contains(self, coordinate: QGeoCoordinate, /) -> bool: ... method isEmpty (line 518) | def isEmpty(self, /) -> bool: ... method isValid (line 519) | def isValid(self, /) -> bool: ... method toString (line 520) | def toString(self, /) -> str: ... method type (line 521) | def type(self, /) -> QGeoShape.ShapeType: ... method __copy__ (line 522) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 523) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 524) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 525) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 526) | def __hash__(self, /) -> int: ... method __le__ (line 527) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 528) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 529) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 530) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 531) | def __rlshift__(self, other): ... method __rrshift__ (line 532) | def __rrshift__(self, other): ... method __rshift__ (line 533) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QIntList (line 535) | class QIntList: method __init__ (line 537) | def __init__(self, *args, **kwargs) -> None: ... method append (line 538) | def append(self, *args, **kwargs): ... method capacity (line 539) | def capacity(self, *args, **kwargs): ... method clear (line 540) | def clear(self, *args, **kwargs): ... method constData (line 541) | def constData(self, *args, **kwargs): ... method data (line 542) | def data(self, *args, **kwargs): ... method pop_back (line 543) | def pop_back(self, *args, **kwargs): ... method pop_front (line 544) | def pop_front(self, *args, **kwargs): ... method prepend (line 545) | def prepend(self, *args, **kwargs): ... method push_back (line 546) | def push_back(self, *args, **kwargs): ... method push_front (line 547) | def push_front(self, *args, **kwargs): ... method removeFirst (line 548) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 549) | def removeLast(self, *args, **kwargs): ... method reserve (line 550) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 551) | def __delitem__(self, other) -> None: ... method __getitem__ (line 552) | def __getitem__(self, index): ... method __len__ (line 553) | def __len__(self) -> int: ... method __setitem__ (line 554) | def __setitem__(self, index, object) -> None: ... class QNmeaPositionInfoSource (line 556) | class QNmeaPositionInfoSource(QGeoPositionInfoSource): class UpdateMode (line 557) | class UpdateMode(enum.Enum): method __init__ (line 561) | def __init__(self, updateMode: QNmeaPositionInfoSource.UpdateMode, /, ... method device (line 562) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method error (line 563) | def error(self, /) -> QGeoPositionInfoSource.Error: ... method lastKnownPosition (line 564) | def lastKnownPosition(self, /, fromSatellitePositioningMethodsOnly: bo... method minimumUpdateInterval (line 565) | def minimumUpdateInterval(self, /) -> int: ... method parsePosInfoFromNmeaData (line 567) | def parsePosInfoFromNmeaData(self, data: bytes | bytearray | memoryvie... method parsePosInfoFromNmeaData (line 569) | def parsePosInfoFromNmeaData(self, data: PySide6.QtCore.QByteArray | b... method requestUpdate (line 570) | def requestUpdate(self, /, timeout: int | None = ...) -> None: ... method setDevice (line 571) | def setDevice(self, source: PySide6.QtCore.QIODevice, /) -> None: ... method setError (line 572) | def setError(self, positionError: QGeoPositionInfoSource.Error, /) -> ... method setUpdateInterval (line 573) | def setUpdateInterval(self, msec: int, /) -> None: ... method setUserEquivalentRangeError (line 574) | def setUserEquivalentRangeError(self, uere: float, /) -> None: ... method startUpdates (line 575) | def startUpdates(self, /) -> None: ... method stopUpdates (line 576) | def stopUpdates(self, /) -> None: ... method supportedPositioningMethods (line 577) | def supportedPositioningMethods(self, /) -> QGeoPositionInfoSource.Pos... method updateMode (line 578) | def updateMode(self, /) -> QNmeaPositionInfoSource.UpdateMode: ... method userEquivalentRangeError (line 579) | def userEquivalentRangeError(self, /) -> float: ... class QNmeaSatelliteInfoSource (line 581) | class QNmeaSatelliteInfoSource(QGeoSatelliteInfoSource): class SatelliteInfoParseStatus (line 582) | class SatelliteInfoParseStatus(enum.Enum): class UpdateMode (line 587) | class UpdateMode(enum.Enum): method __init__ (line 592) | def __init__(self, mode: QNmeaSatelliteInfoSource.UpdateMode, /, paren... method backendProperty (line 593) | def backendProperty(self, name: str, /) -> Any: ... method device (line 594) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method error (line 595) | def error(self, /) -> QGeoSatelliteInfoSource.Error: ... method minimumUpdateInterval (line 596) | def minimumUpdateInterval(self, /) -> int: ... method parseSatelliteInfoFromNmea (line 598) | def parseSatelliteInfoFromNmea(self, data: bytes | bytearray | memoryv... method parseSatelliteInfoFromNmea (line 600) | def parseSatelliteInfoFromNmea(self, data: PySide6.QtCore.QByteArray |... method parseSatellitesInUseFromNmea (line 602) | def parseSatellitesInUseFromNmea(self, data: bytes | bytearray | memor... method parseSatellitesInUseFromNmea (line 604) | def parseSatellitesInUseFromNmea(self, data: PySide6.QtCore.QByteArray... method requestUpdate (line 605) | def requestUpdate(self, /, timeout: int | None = ...) -> None: ... method setBackendProperty (line 606) | def setBackendProperty(self, name: str, value: Any, /) -> bool: ... method setDevice (line 607) | def setDevice(self, source: PySide6.QtCore.QIODevice, /) -> None: ... method setError (line 608) | def setError(self, satelliteError: QGeoSatelliteInfoSource.Error, /) -... method setUpdateInterval (line 609) | def setUpdateInterval(self, msec: int, /) -> None: ... method startUpdates (line 610) | def startUpdates(self, /) -> None: ... method stopUpdates (line 611) | def stopUpdates(self, /) -> None: ... method updateMode (line 612) | def updateMode(self, /) -> QNmeaSatelliteInfoSource.UpdateMode: ... FILE: pyside6/stubs/PySide6-stubs/QtPrintSupport.pyi class QAbstractPrintDialog (line 14) | class QAbstractPrintDialog(PySide6.QtWidgets.QDialog): class PrintDialogOption (line 15) | class PrintDialogOption(enum.Flag): class PrintRange (line 23) | class PrintRange(enum.Enum): method __init__ (line 29) | def __init__(self, printer: QPrinter, /, parent: PySide6.QtWidgets.QWi... method fromPage (line 30) | def fromPage(self, /) -> int: ... method maxPage (line 31) | def maxPage(self, /) -> int: ... method minPage (line 32) | def minPage(self, /) -> int: ... method printRange (line 33) | def printRange(self, /) -> QAbstractPrintDialog.PrintRange: ... method printer (line 34) | def printer(self, /) -> QPrinter: ... method setFromTo (line 35) | def setFromTo(self, fromPage: int, toPage: int, /) -> None: ... method setMinMax (line 36) | def setMinMax(self, min: int, max: int, /) -> None: ... method setOptionTabs (line 37) | def setOptionTabs(self, tabs: typing.Iterable[PySide6.QtWidgets.QWidge... method setPrintRange (line 38) | def setPrintRange(self, range: QAbstractPrintDialog.PrintRange, /) -> ... method toPage (line 39) | def toPage(self, /) -> int: ... class QIntList (line 41) | class QIntList: method __init__ (line 43) | def __init__(self, *args, **kwargs) -> None: ... method append (line 44) | def append(self, *args, **kwargs): ... method capacity (line 45) | def capacity(self, *args, **kwargs): ... method clear (line 46) | def clear(self, *args, **kwargs): ... method constData (line 47) | def constData(self, *args, **kwargs): ... method data (line 48) | def data(self, *args, **kwargs): ... method pop_back (line 49) | def pop_back(self, *args, **kwargs): ... method pop_front (line 50) | def pop_front(self, *args, **kwargs): ... method prepend (line 51) | def prepend(self, *args, **kwargs): ... method push_back (line 52) | def push_back(self, *args, **kwargs): ... method push_front (line 53) | def push_front(self, *args, **kwargs): ... method removeFirst (line 54) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 55) | def removeLast(self, *args, **kwargs): ... method reserve (line 56) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 57) | def __delitem__(self, other) -> None: ... method __getitem__ (line 58) | def __getitem__(self, index): ... method __len__ (line 59) | def __len__(self) -> int: ... method __setitem__ (line 60) | def __setitem__(self, index, object) -> None: ... class QPageSetupDialog (line 62) | class QPageSetupDialog(PySide6.QtWidgets.QDialog): method __init__ (line 65) | def __init__(self, printer: QPrinter, /, parent: PySide6.QtWidgets.QWi... method __init__ (line 67) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method done (line 68) | def done(self, result: int, /) -> None: ... method exec (line 69) | def exec(self, /) -> int: ... method exec_ (line 70) | def exec_(self, /) -> int: ... method open (line 72) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 74) | def open(self, /) -> None: ... method printer (line 75) | def printer(self, /) -> QPrinter: ... method setVisible (line 76) | def setVisible(self, visible: bool, /) -> None: ... class QPrintDialog (line 78) | class QPrintDialog(QAbstractPrintDialog): method __init__ (line 82) | def __init__(self, printer: QPrinter, /, parent: PySide6.QtWidgets.QWi... method __init__ (line 84) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method done (line 85) | def done(self, result: int, /) -> None: ... method exec (line 86) | def exec(self, /) -> int: ... method exec_ (line 87) | def exec_(self, /) -> int: ... method open (line 88) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method options (line 89) | def options(self, /) -> QAbstractPrintDialog.PrintDialogOption: ... method setOption (line 90) | def setOption(self, option: QAbstractPrintDialog.PrintDialogOption, /,... method setOptions (line 91) | def setOptions(self, options: QAbstractPrintDialog.PrintDialogOption, ... method setVisible (line 92) | def setVisible(self, visible: bool, /) -> None: ... method testOption (line 93) | def testOption(self, option: QAbstractPrintDialog.PrintDialogOption, /... class QPrintEngine (line 95) | class QPrintEngine(shiboken6.Object): class PrintEnginePropertyKey (line 96) | class PrintEnginePropertyKey(enum.Enum): method __init__ (line 129) | def __init__(self, /) -> None: ... method abort (line 130) | def abort(self, /) -> bool: ... method metric (line 131) | def metric(self, arg__1: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method newPage (line 132) | def newPage(self, /) -> bool: ... method printerState (line 133) | def printerState(self, /) -> QPrinter.PrinterState: ... method property (line 134) | def property(self, key: QPrintEngine.PrintEnginePropertyKey, /) -> Any... method setProperty (line 135) | def setProperty(self, key: QPrintEngine.PrintEnginePropertyKey, value:... class QPrintPreviewDialog (line 137) | class QPrintPreviewDialog(PySide6.QtWidgets.QDialog): method __init__ (line 141) | def __init__(self, printer: QPrinter, /, parent: PySide6.QtWidgets.QWi... method __init__ (line 143) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method done (line 144) | def done(self, result: int, /) -> None: ... method open (line 146) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 148) | def open(self, /) -> None: ... method printer (line 149) | def printer(self, /) -> QPrinter: ... method setVisible (line 150) | def setVisible(self, visible: bool, /) -> None: ... class QPrintPreviewWidget (line 152) | class QPrintPreviewWidget(PySide6.QtWidgets.QWidget): class ViewMode (line 153) | class ViewMode(enum.Enum): class ZoomMode (line 158) | class ZoomMode(enum.Enum): method __init__ (line 166) | def __init__(self, printer: QPrinter, /, parent: PySide6.QtWidgets.QWi... method __init__ (line 168) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method currentPage (line 169) | def currentPage(self, /) -> int: ... method fitInView (line 170) | def fitInView(self, /) -> None: ... method fitToWidth (line 171) | def fitToWidth(self, /) -> None: ... method orientation (line 172) | def orientation(self, /) -> PySide6.QtGui.QPageLayout.Orientation: ... method pageCount (line 173) | def pageCount(self, /) -> int: ... method print_ (line 174) | def print_(self, /) -> None: ... method setAllPagesViewMode (line 175) | def setAllPagesViewMode(self, /) -> None: ... method setCurrentPage (line 176) | def setCurrentPage(self, pageNumber: int, /) -> None: ... method setFacingPagesViewMode (line 177) | def setFacingPagesViewMode(self, /) -> None: ... method setLandscapeOrientation (line 178) | def setLandscapeOrientation(self, /) -> None: ... method setOrientation (line 179) | def setOrientation(self, orientation: PySide6.QtGui.QPageLayout.Orient... method setPortraitOrientation (line 180) | def setPortraitOrientation(self, /) -> None: ... method setSinglePageViewMode (line 181) | def setSinglePageViewMode(self, /) -> None: ... method setViewMode (line 182) | def setViewMode(self, viewMode: QPrintPreviewWidget.ViewMode, /) -> No... method setVisible (line 183) | def setVisible(self, visible: bool, /) -> None: ... method setZoomFactor (line 184) | def setZoomFactor(self, zoomFactor: float, /) -> None: ... method setZoomMode (line 185) | def setZoomMode(self, zoomMode: QPrintPreviewWidget.ZoomMode, /) -> No... method updatePreview (line 186) | def updatePreview(self, /) -> None: ... method viewMode (line 187) | def viewMode(self, /) -> QPrintPreviewWidget.ViewMode: ... method zoomFactor (line 188) | def zoomFactor(self, /) -> float: ... method zoomIn (line 189) | def zoomIn(self, /, zoom: float = ...) -> None: ... method zoomMode (line 190) | def zoomMode(self, /) -> QPrintPreviewWidget.ZoomMode: ... method zoomOut (line 191) | def zoomOut(self, /, zoom: float = ...) -> None: ... class QPrinter (line 193) | class QPrinter(PySide6.QtGui.QPagedPaintDevice): class ColorMode (line 194) | class ColorMode(enum.Enum): class DuplexMode (line 198) | class DuplexMode(enum.Enum): class OutputFormat (line 204) | class OutputFormat(enum.Enum): class PageOrder (line 208) | class PageOrder(enum.Enum): class PaperSource (line 212) | class PaperSource(enum.Enum): class PrintRange (line 231) | class PrintRange(enum.Enum): class PrinterMode (line 237) | class PrinterMode(enum.Enum): class PrinterState (line 242) | class PrinterState(enum.Enum): class Unit (line 248) | class Unit(enum.Enum): method __init__ (line 257) | def __init__(self, printer: QPrinterInfo, /, mode: QPrinter.PrinterMod... method __init__ (line 259) | def __init__(self, /, mode: QPrinter.PrinterMode = ...) -> None: ... method abort (line 260) | def abort(self, /) -> bool: ... method collateCopies (line 261) | def collateCopies(self, /) -> bool: ... method colorMode (line 262) | def colorMode(self, /) -> QPrinter.ColorMode: ... method copyCount (line 263) | def copyCount(self, /) -> int: ... method creator (line 264) | def creator(self, /) -> str: ... method devType (line 265) | def devType(self, /) -> int: ... method docName (line 266) | def docName(self, /) -> str: ... method duplex (line 267) | def duplex(self, /) -> QPrinter.DuplexMode: ... method fontEmbeddingEnabled (line 268) | def fontEmbeddingEnabled(self, /) -> bool: ... method fromPage (line 269) | def fromPage(self, /) -> int: ... method fullPage (line 270) | def fullPage(self, /) -> bool: ... method isValid (line 271) | def isValid(self, /) -> bool: ... method metric (line 272) | def metric(self, arg__1: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method newPage (line 273) | def newPage(self, /) -> bool: ... method outputFileName (line 274) | def outputFileName(self, /) -> str: ... method outputFormat (line 275) | def outputFormat(self, /) -> QPrinter.OutputFormat: ... method pageOrder (line 276) | def pageOrder(self, /) -> QPrinter.PageOrder: ... method pageRect (line 277) | def pageRect(self, arg__1: QPrinter.Unit, /) -> PySide6.QtCore.QRectF:... method paintEngine (line 278) | def paintEngine(self, /) -> PySide6.QtGui.QPaintEngine: ... method paperRect (line 279) | def paperRect(self, arg__1: QPrinter.Unit, /) -> PySide6.QtCore.QRectF... method paperSource (line 280) | def paperSource(self, /) -> QPrinter.PaperSource: ... method pdfVersion (line 281) | def pdfVersion(self, /) -> PySide6.QtGui.QPagedPaintDevice.PdfVersion:... method printEngine (line 282) | def printEngine(self, /) -> QPrintEngine: ... method printProgram (line 283) | def printProgram(self, /) -> str: ... method printRange (line 284) | def printRange(self, /) -> QPrinter.PrintRange: ... method printerName (line 285) | def printerName(self, /) -> str: ... method printerSelectionOption (line 286) | def printerSelectionOption(self, /) -> str: ... method printerState (line 287) | def printerState(self, /) -> QPrinter.PrinterState: ... method resolution (line 288) | def resolution(self, /) -> int: ... method setCollateCopies (line 289) | def setCollateCopies(self, collate: bool, /) -> None: ... method setColorMode (line 290) | def setColorMode(self, arg__1: QPrinter.ColorMode, /) -> None: ... method setCopyCount (line 291) | def setCopyCount(self, arg__1: int, /) -> None: ... method setCreator (line 292) | def setCreator(self, arg__1: str, /) -> None: ... method setDocName (line 293) | def setDocName(self, arg__1: str, /) -> None: ... method setDuplex (line 294) | def setDuplex(self, duplex: QPrinter.DuplexMode, /) -> None: ... method setEngines (line 295) | def setEngines(self, printEngine: QPrintEngine, paintEngine: PySide6.Q... method setFontEmbeddingEnabled (line 296) | def setFontEmbeddingEnabled(self, enable: bool, /) -> None: ... method setFromTo (line 297) | def setFromTo(self, fromPage: int, toPage: int, /) -> None: ... method setFullPage (line 298) | def setFullPage(self, arg__1: bool, /) -> None: ... method setOutputFileName (line 299) | def setOutputFileName(self, arg__1: str, /) -> None: ... method setOutputFormat (line 300) | def setOutputFormat(self, format: QPrinter.OutputFormat, /) -> None: ... method setPageOrder (line 301) | def setPageOrder(self, arg__1: QPrinter.PageOrder, /) -> None: ... method setPageSize (line 302) | def setPageSize(self, size: PySide6.QtGui.QPageSize | PySide6.QtGui.QP... method setPaperSource (line 303) | def setPaperSource(self, arg__1: QPrinter.PaperSource, /) -> None: ... method setPdfVersion (line 304) | def setPdfVersion(self, version: PySide6.QtGui.QPagedPaintDevice.PdfVe... method setPrintProgram (line 305) | def setPrintProgram(self, arg__1: str, /) -> None: ... method setPrintRange (line 306) | def setPrintRange(self, range: QPrinter.PrintRange, /) -> None: ... method setPrinterName (line 307) | def setPrinterName(self, arg__1: str, /) -> None: ... method setPrinterSelectionOption (line 308) | def setPrinterSelectionOption(self, arg__1: str, /) -> None: ... method setResolution (line 309) | def setResolution(self, arg__1: int, /) -> None: ... method supportedResolutions (line 310) | def supportedResolutions(self, /) -> List[int]: ... method supportsMultipleCopies (line 311) | def supportsMultipleCopies(self, /) -> bool: ... method toPage (line 312) | def toPage(self, /) -> int: ... class QPrinterInfo (line 314) | class QPrinterInfo(shiboken6.Object): method __init__ (line 316) | def __init__(self, printer: QPrinter, /) -> None: ... method __init__ (line 318) | def __init__(self, other: QPrinterInfo, /) -> None: ... method __init__ (line 320) | def __init__(self, /) -> None: ... method availablePrinterNames (line 322) | def availablePrinterNames() -> List[str]: ... method availablePrinters (line 324) | def availablePrinters() -> List[QPrinterInfo]: ... method defaultColorMode (line 325) | def defaultColorMode(self, /) -> QPrinter.ColorMode: ... method defaultDuplexMode (line 326) | def defaultDuplexMode(self, /) -> QPrinter.DuplexMode: ... method defaultPageSize (line 327) | def defaultPageSize(self, /) -> PySide6.QtGui.QPageSize: ... method defaultPrinter (line 329) | def defaultPrinter() -> QPrinterInfo: ... method defaultPrinterName (line 331) | def defaultPrinterName() -> str: ... method description (line 332) | def description(self, /) -> str: ... method isDefault (line 333) | def isDefault(self, /) -> bool: ... method isNull (line 334) | def isNull(self, /) -> bool: ... method isRemote (line 335) | def isRemote(self, /) -> bool: ... method location (line 336) | def location(self, /) -> str: ... method makeAndModel (line 337) | def makeAndModel(self, /) -> str: ... method maximumPhysicalPageSize (line 338) | def maximumPhysicalPageSize(self, /) -> PySide6.QtGui.QPageSize: ... method minimumPhysicalPageSize (line 339) | def minimumPhysicalPageSize(self, /) -> PySide6.QtGui.QPageSize: ... method printerInfo (line 341) | def printerInfo(printerName: str, /) -> QPrinterInfo: ... method printerName (line 342) | def printerName(self, /) -> str: ... method state (line 343) | def state(self, /) -> QPrinter.PrinterState: ... method supportedColorModes (line 344) | def supportedColorModes(self, /) -> List[QPrinter.ColorMode]: ... method supportedDuplexModes (line 345) | def supportedDuplexModes(self, /) -> List[QPrinter.DuplexMode]: ... method supportedPageSizes (line 346) | def supportedPageSizes(self, /) -> List[PySide6.QtGui.QPageSize]: ... method supportedResolutions (line 347) | def supportedResolutions(self, /) -> List[int]: ... method supportsCustomPageSizes (line 348) | def supportsCustomPageSizes(self, /) -> bool: ... method __bool__ (line 349) | def __bool__(self) -> bool: ... method __copy__ (line 350) | def __copy__(self, /) -> typing_extensions.Self: ... FILE: pyside6/stubs/PySide6-stubs/QtQml.pyi class _add_QQmlProperty_read_overloads (line 15) | class _add_QQmlProperty_read_overloads: class StaticOverloads (line 22) | class StaticOverloads: class read (line 23) | class read: method __call__ (line 26) | def __call__(arg__1: PySide6.QtCore.QObject, arg__2: str, /) -> An... method __call__ (line 29) | def __call__(arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3: ... method __call__ (line 32) | def __call__(arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3: ... class InstanceOverloads (line 34) | class InstanceOverloads: class read (line 35) | class read: method __call__ (line 37) | def __call__(self, /) -> Any: ... method __call__ (line 39) | def __call__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, /)... method __call__ (line 41) | def __call__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, ar... method __call__ (line 43) | def __call__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, ar... method __init__ (line 45) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 48) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 51) | def __get__(self, object: QQmlProperty, owner: typing.Any) -> Instance... class _add_QQmlProperty_write_overloads (line 53) | class _add_QQmlProperty_write_overloads: class StaticOverloads (line 60) | class StaticOverloads: class write (line 61) | class write: method __call__ (line 64) | def __call__(arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3: ... method __call__ (line 67) | def __call__(arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3: ... method __call__ (line 70) | def __call__(arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3: ... class InstanceOverloads (line 72) | class InstanceOverloads: class write (line 73) | class write: method __call__ (line 75) | def __call__(self, arg__1: Any, /) -> bool: ... method __call__ (line 77) | def __call__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, ar... method __call__ (line 79) | def __call__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, ar... method __call__ (line 81) | def __call__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, ar... method __init__ (line 83) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 86) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 89) | def __get__(self, object: QQmlProperty, owner: typing.Any) -> Instance... class ListProperty (line 93) | class ListProperty(PySide6.QtCore.Property): method __init__ (line 94) | def __init__(self, type: type, /, append: collections.abc.Callable[...... class QIntList (line 96) | class QIntList: method __init__ (line 98) | def __init__(self, *args, **kwargs) -> None: ... method append (line 99) | def append(self, *args, **kwargs): ... method capacity (line 100) | def capacity(self, *args, **kwargs): ... method clear (line 101) | def clear(self, *args, **kwargs): ... method constData (line 102) | def constData(self, *args, **kwargs): ... method data (line 103) | def data(self, *args, **kwargs): ... method pop_back (line 104) | def pop_back(self, *args, **kwargs): ... method pop_front (line 105) | def pop_front(self, *args, **kwargs): ... method prepend (line 106) | def prepend(self, *args, **kwargs): ... method push_back (line 107) | def push_back(self, *args, **kwargs): ... method push_front (line 108) | def push_front(self, *args, **kwargs): ... method removeFirst (line 109) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 110) | def removeLast(self, *args, **kwargs): ... method reserve (line 111) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 112) | def __delitem__(self, other) -> None: ... method __getitem__ (line 113) | def __getitem__(self, index): ... method __len__ (line 114) | def __len__(self) -> int: ... method __setitem__ (line 115) | def __setitem__(self, index, object) -> None: ... class QJSEngine (line 117) | class QJSEngine(PySide6.QtCore.QObject): class Extension (line 118) | class Extension(enum.Flag): class ObjectOwnership (line 124) | class ObjectOwnership(enum.Enum): method __init__ (line 130) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, uiLang... method __init__ (line 132) | def __init__(self, /, *, uiLanguage: str | None = ..., destroyed: typi... method catchError (line 133) | def catchError(self, /) -> QJSValue: ... method collectGarbage (line 134) | def collectGarbage(self, /) -> None: ... method evaluate (line 135) | def evaluate(self, program: str, /, fileName: str = ..., lineNumber: i... method globalObject (line 136) | def globalObject(self, /) -> QJSValue: ... method hasError (line 137) | def hasError(self, /) -> bool: ... method importModule (line 138) | def importModule(self, fileName: str, /) -> QJSValue: ... method installExtensions (line 139) | def installExtensions(self, extensions: QJSEngine.Extension, /, object... method isInterrupted (line 140) | def isInterrupted(self, /) -> bool: ... method newArray (line 141) | def newArray(self, /, length: int | None = ...) -> QJSValue: ... method newErrorObject (line 142) | def newErrorObject(self, errorType: QJSValue.ErrorType, /, message: st... method newObject (line 143) | def newObject(self, /) -> QJSValue: ... method newQMetaObject (line 144) | def newQMetaObject(self, metaObject: PySide6.QtCore.QMetaObject, /) ->... method newQObject (line 145) | def newQObject(self, object: PySide6.QtCore.QObject, /) -> QJSValue: ... method newSymbol (line 146) | def newSymbol(self, name: str, /) -> QJSValue: ... method objectOwnership (line 148) | def objectOwnership(arg__1: PySide6.QtCore.QObject, /) -> QJSEngine.Ob... method registerModule (line 149) | def registerModule(self, moduleName: str, value: QJSValue | QJSValue.S... method setInterrupted (line 150) | def setInterrupted(self, interrupted: bool, /) -> None: ... method setObjectOwnership (line 152) | def setObjectOwnership(arg__1: PySide6.QtCore.QObject, arg__2: QJSEngi... method setUiLanguage (line 153) | def setUiLanguage(self, language: str, /) -> None: ... method throwError (line 155) | def throwError(self, errorType: QJSValue.ErrorType, /, message: str = ... method throwError (line 157) | def throwError(self, message: str, /) -> None: ... method throwError (line 159) | def throwError(self, error: QJSValue | QJSValue.SpecialValue | bool | ... method toScriptValue (line 160) | def toScriptValue(self, value: Any, /) -> QJSValue: ... method uiLanguage (line 161) | def uiLanguage(self, /) -> str: ... class QJSManagedValue (line 163) | class QJSManagedValue(shiboken6.Object): class Type (line 164) | class Type(enum.Enum): method __init__ (line 173) | def __init__(self, variant: Any, engine: QJSEngine, /) -> None: ... method __init__ (line 175) | def __init__(self, value: QJSPrimitiveValue | str | bool | float | int... method __init__ (line 177) | def __init__(self, value: QJSValue | QJSValue.SpecialValue | bool | st... method __init__ (line 179) | def __init__(self, string: str, engine: QJSEngine, /) -> None: ... # ... method __init__ (line 181) | def __init__(self, /) -> None: ... method call (line 182) | def call(self, /, arguments: typing.Iterable[QJSValue] = ...) -> QJSVa... method callAsConstructor (line 183) | def callAsConstructor(self, /, arguments: typing.Iterable[QJSValue] = ... method callWithInstance (line 184) | def callWithInstance(self, instance: QJSValue | QJSValue.SpecialValue ... method deleteProperty (line 186) | def deleteProperty(self, name: str, /) -> bool: ... method deleteProperty (line 188) | def deleteProperty(self, arrayIndex: int, /) -> bool: ... method engine (line 189) | def engine(self, /) -> QJSEngine: ... method equals (line 190) | def equals(self, other: QJSManagedValue, /) -> bool: ... method hasOwnProperty (line 192) | def hasOwnProperty(self, name: str, /) -> bool: ... method hasOwnProperty (line 194) | def hasOwnProperty(self, arrayIndex: int, /) -> bool: ... method hasProperty (line 196) | def hasProperty(self, name: str, /) -> bool: ... method hasProperty (line 198) | def hasProperty(self, arrayIndex: int, /) -> bool: ... method isArray (line 199) | def isArray(self, /) -> bool: ... method isBoolean (line 200) | def isBoolean(self, /) -> bool: ... method isDate (line 201) | def isDate(self, /) -> bool: ... method isError (line 202) | def isError(self, /) -> bool: ... method isFunction (line 203) | def isFunction(self, /) -> bool: ... method isInteger (line 204) | def isInteger(self, /) -> bool: ... method isJsMetaType (line 205) | def isJsMetaType(self, /) -> bool: ... method isNull (line 206) | def isNull(self, /) -> bool: ... method isNumber (line 207) | def isNumber(self, /) -> bool: ... method isObject (line 208) | def isObject(self, /) -> bool: ... method isQMetaObject (line 209) | def isQMetaObject(self, /) -> bool: ... method isQObject (line 210) | def isQObject(self, /) -> bool: ... method isRegularExpression (line 211) | def isRegularExpression(self, /) -> bool: ... method isString (line 212) | def isString(self, /) -> bool: ... method isSymbol (line 213) | def isSymbol(self, /) -> bool: ... method isUndefined (line 214) | def isUndefined(self, /) -> bool: ... method isUrl (line 215) | def isUrl(self, /) -> bool: ... method isVariant (line 216) | def isVariant(self, /) -> bool: ... method jsMetaInstantiate (line 217) | def jsMetaInstantiate(self, /, values: typing.Iterable[QJSValue] = ...... method jsMetaMembers (line 218) | def jsMetaMembers(self, /) -> List[str]: ... method jsMetaType (line 219) | def jsMetaType(self, /) -> QJSManagedValue: ... method property (line 221) | def property(self, name: str, /) -> QJSValue: ... method property (line 223) | def property(self, arrayIndex: int, /) -> QJSValue: ... method prototype (line 224) | def prototype(self, /) -> QJSManagedValue: ... method setProperty (line 226) | def setProperty(self, name: str, value: QJSValue | QJSValue.SpecialVal... method setProperty (line 228) | def setProperty(self, arrayIndex: int, value: QJSValue | QJSValue.Spec... method setPrototype (line 229) | def setPrototype(self, prototype: QJSManagedValue, /) -> None: ... method strictlyEquals (line 230) | def strictlyEquals(self, other: QJSManagedValue, /) -> bool: ... method toBoolean (line 231) | def toBoolean(self, /) -> bool: ... method toDateTime (line 232) | def toDateTime(self, /) -> PySide6.QtCore.QDateTime: ... method toInteger (line 233) | def toInteger(self, /) -> int: ... method toJSValue (line 234) | def toJSValue(self, /) -> QJSValue: ... method toNumber (line 235) | def toNumber(self, /) -> float: ... method toPrimitive (line 236) | def toPrimitive(self, /) -> QJSPrimitiveValue: ... method toQMetaObject (line 237) | def toQMetaObject(self, /) -> PySide6.QtCore.QMetaObject: ... method toQObject (line 238) | def toQObject(self, /) -> PySide6.QtCore.QObject: ... method toRegularExpression (line 239) | def toRegularExpression(self, /) -> PySide6.QtCore.QRegularExpression:... method toString (line 240) | def toString(self, /) -> str: ... method toUrl (line 241) | def toUrl(self, /) -> PySide6.QtCore.QUrl: ... method toVariant (line 242) | def toVariant(self, /) -> Any: ... method type (line 243) | def type(self, /) -> QJSManagedValue.Type: ... method __bool__ (line 244) | def __bool__(self) -> bool: ... class QJSPrimitiveValue (line 246) | class QJSPrimitiveValue(shiboken6.Object): class Type (line 247) | class Type(enum.Enum): method __init__ (line 255) | def __init__(self, type: PySide6.QtCore.QMetaType | PySide6.QtCore.QMe... method __init__ (line 257) | def __init__(self, variant: Any, /) -> None: ... method __init__ (line 259) | def __init__(self, value: bool, /) -> None: ... # type: ignore[overlo... method __init__ (line 261) | def __init__(self, value: int, /) -> None: ... # type: ignore[overloa... method __init__ (line 263) | def __init__(self, value: float, /) -> None: ... # type: ignore[overl... method __init__ (line 265) | def __init__(self, type: PySide6.QtCore.QMetaType | PySide6.QtCore.QMe... method __init__ (line 267) | def __init__(self, string: str, /) -> None: ... # type: ignore[overlo... method __init__ (line 269) | def __init__(self, QJSPrimitiveValue: QJSPrimitiveValue, /) -> None: .... method __init__ (line 271) | def __init__(self, /) -> None: ... method constData (line 272) | def constData(self, /) -> int: ... method data (line 273) | def data(self, /) -> int: ... method equals (line 274) | def equals(self, other: QJSPrimitiveValue | str | bool | float | int, ... method metaType (line 275) | def metaType(self, /) -> PySide6.QtCore.QMetaType: ... method strictlyEquals (line 276) | def strictlyEquals(self, other: QJSPrimitiveValue | str | bool | float... method toBoolean (line 277) | def toBoolean(self, /) -> bool: ... method toDouble (line 278) | def toDouble(self, /) -> float: ... method toInteger (line 279) | def toInteger(self, /) -> int: ... method toString (line 280) | def toString(self, /) -> str: ... method toVariant (line 281) | def toVariant(self, /) -> Any: ... method type (line 282) | def type(self, /) -> QJSPrimitiveValue.Type: ... method __add__ (line 283) | def __add__(self, rhs: QJSPrimitiveValue | str | bool | float | int, /... method __copy__ (line 284) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 285) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 286) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 287) | def __gt__(self, other: object) -> bool: ... method __iadd__ (line 288) | def __iadd__(self, arg__1: int, /) -> QJSPrimitiveValue: ... # type: ... method __isub__ (line 289) | def __isub__(self, arg__1: int, /) -> QJSPrimitiveValue: ... # type: ... method __le__ (line 290) | def __le__(self, other: object) -> bool: ... method __lt__ (line 291) | def __lt__(self, other: object) -> bool: ... method __mod__ (line 292) | def __mod__(self, rhs: QJSPrimitiveValue | str | bool | float | int, /... method __mul__ (line 293) | def __mul__(self, rhs: QJSPrimitiveValue | str | bool | float | int, /... method __ne__ (line 294) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 295) | def __neg__(self, /) -> QJSPrimitiveValue: ... method __pos__ (line 296) | def __pos__(self, /) -> QJSPrimitiveValue: ... method __radd__ (line 297) | def __radd__(self, other): ... method __rmod__ (line 298) | def __rmod__(self, other): ... method __rmul__ (line 299) | def __rmul__(self, other): ... method __rsub__ (line 300) | def __rsub__(self, other): ... method __rtruediv__ (line 301) | def __rtruediv__(self, other): ... method __sub__ (line 302) | def __sub__(self, rhs: QJSPrimitiveValue | str | bool | float | int, /... method __truediv__ (line 303) | def __truediv__(self, other): ... class QJSValue (line 305) | class QJSValue(shiboken6.Object): class ErrorType (line 306) | class ErrorType(enum.Enum): class ObjectConversionBehavior (line 316) | class ObjectConversionBehavior(enum.Enum): class SpecialValue (line 320) | class SpecialValue(enum.Enum): method __init__ (line 324) | def __init__(self, value: str, /) -> None: ... method __init__ (line 326) | def __init__(self, value: bool, /) -> None: ... method __init__ (line 328) | def __init__(self, value: int, /) -> None: ... method __init__ (line 330) | def __init__(self, value: float, /) -> None: ... method __init__ (line 332) | def __init__(self, str: bytes | bytearray | memoryview, /) -> None: ... method __init__ (line 334) | def __init__(self, other: QJSValue, /) -> None: ... method __init__ (line 336) | def __init__(self, /, value: QJSValue.SpecialValue = ...) -> None: ... method call (line 337) | def call(self, /, args: typing.Iterable[QJSValue] = ...) -> QJSValue: ... method callAsConstructor (line 338) | def callAsConstructor(self, /, args: typing.Iterable[QJSValue] = ...) ... method callWithInstance (line 339) | def callWithInstance(self, instance: QJSValue | QJSValue.SpecialValue ... method deleteProperty (line 340) | def deleteProperty(self, name: str, /) -> bool: ... method equals (line 341) | def equals(self, other: QJSValue | QJSValue.SpecialValue | bool | str ... method errorType (line 342) | def errorType(self, /) -> QJSValue.ErrorType: ... method hasOwnProperty (line 343) | def hasOwnProperty(self, name: str, /) -> bool: ... method hasProperty (line 344) | def hasProperty(self, name: str, /) -> bool: ... method isArray (line 345) | def isArray(self, /) -> bool: ... method isBool (line 346) | def isBool(self, /) -> bool: ... method isCallable (line 347) | def isCallable(self, /) -> bool: ... method isDate (line 348) | def isDate(self, /) -> bool: ... method isError (line 349) | def isError(self, /) -> bool: ... method isNull (line 350) | def isNull(self, /) -> bool: ... method isNumber (line 351) | def isNumber(self, /) -> bool: ... method isObject (line 352) | def isObject(self, /) -> bool: ... method isQMetaObject (line 353) | def isQMetaObject(self, /) -> bool: ... method isQObject (line 354) | def isQObject(self, /) -> bool: ... method isRegExp (line 355) | def isRegExp(self, /) -> bool: ... method isString (line 356) | def isString(self, /) -> bool: ... method isUndefined (line 357) | def isUndefined(self, /) -> bool: ... method isUrl (line 358) | def isUrl(self, /) -> bool: ... method isVariant (line 359) | def isVariant(self, /) -> bool: ... method property (line 361) | def property(self, name: str, /) -> QJSValue: ... method property (line 363) | def property(self, arrayIndex: int, /) -> QJSValue: ... method prototype (line 364) | def prototype(self, /) -> QJSValue: ... method setProperty (line 366) | def setProperty(self, name: str, value: QJSValue | QJSValue.SpecialVal... method setProperty (line 368) | def setProperty(self, arrayIndex: int, value: QJSValue | QJSValue.Spec... method setPrototype (line 369) | def setPrototype(self, prototype: QJSValue | QJSValue.SpecialValue | b... method strictlyEquals (line 370) | def strictlyEquals(self, other: QJSValue | QJSValue.SpecialValue | boo... method toBool (line 371) | def toBool(self, /) -> bool: ... method toDateTime (line 372) | def toDateTime(self, /) -> PySide6.QtCore.QDateTime: ... method toInt (line 373) | def toInt(self, /) -> int: ... method toNumber (line 374) | def toNumber(self, /) -> float: ... method toPrimitive (line 375) | def toPrimitive(self, /) -> QJSPrimitiveValue: ... method toQMetaObject (line 376) | def toQMetaObject(self, /) -> PySide6.QtCore.QMetaObject: ... method toQObject (line 377) | def toQObject(self, /) -> PySide6.QtCore.QObject: ... method toString (line 378) | def toString(self, /) -> str: ... method toUInt (line 379) | def toUInt(self, /) -> int: ... method toVariant (line 381) | def toVariant(self, behavior: QJSValue.ObjectConversionBehavior, /) ->... method toVariant (line 383) | def toVariant(self, /) -> Any: ... method __bool__ (line 384) | def __bool__(self) -> bool: ... method __copy__ (line 385) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 386) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 387) | def __rlshift__(self, other): ... method __rrshift__ (line 388) | def __rrshift__(self, other): ... method __rshift__ (line 389) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QJSValueIterator (line 391) | class QJSValueIterator(shiboken6.Object): method __init__ (line 392) | def __init__(self, value: QJSValue | QJSValue.SpecialValue | bool | st... method hasNext (line 393) | def hasNext(self, /) -> bool: ... method name (line 394) | def name(self, /) -> str: ... method next (line 395) | def next(self, /) -> bool: ... method value (line 396) | def value(self, /) -> QJSValue: ... class QPyQmlParserStatus (line 398) | class QPyQmlParserStatus(PySide6.QtCore.QObject, QQmlParserStatus): method __init__ (line 400) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... class QPyQmlPropertyValueSource (line 402) | class QPyQmlPropertyValueSource(PySide6.QtCore.QObject, QQmlPropertyValu... method __init__ (line 404) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... class QQmlAbstractUrlInterceptor (line 406) | class QQmlAbstractUrlInterceptor(shiboken6.Object): class DataType (line 407) | class DataType(enum.Enum): method __init__ (line 412) | def __init__(self, /) -> None: ... method intercept (line 413) | def intercept(self, path: PySide6.QtCore.QUrl | str, type: QQmlAbstrac... class QQmlApplicationEngine (line 415) | class QQmlApplicationEngine(QQmlEngine): method __init__ (line 420) | def __init__(self, uri: str, typeName: str, /, parent: PySide6.QtCore.... method __init__ (line 422) | def __init__(self, url: PySide6.QtCore.QUrl | str, /, parent: PySide6.... method __init__ (line 424) | def __init__(self, filePath: str, /, parent: PySide6.QtCore.QObject | ... method __init__ (line 426) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method load (line 428) | def load(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method load (line 430) | def load(self, filePath: str | bytes | os.PathLike[str], /) -> None: ... method loadData (line 431) | def loadData(self, data: PySide6.QtCore.QByteArray | bytes | bytearray... method loadFromModule (line 432) | def loadFromModule(self, uri: str, typeName: str, /) -> None: ... method rootObjects (line 433) | def rootObjects(self, /) -> List[PySide6.QtCore.QObject]: ... method setExtraFileSelectors (line 434) | def setExtraFileSelectors(self, extraFileSelectors: typing.Iterable[st... method setInitialProperties (line 435) | def setInitialProperties(self, initialProperties: Dict[str, Any], /) -... class QQmlComponent (line 437) | class QQmlComponent(PySide6.QtCore.QObject): class CompilationMode (line 438) | class CompilationMode(enum.Enum): class Status (line 442) | class Status(enum.Enum): method __init__ (line 451) | def __init__(self, engine: QQmlEngine, uri: str, typeName: str, mode: ... method __init__ (line 453) | def __init__(self, engine: QQmlEngine, uri: str, typeName: str, /, par... method __init__ (line 455) | def __init__(self, arg__1: QQmlEngine, fileName: str, mode: QQmlCompon... method __init__ (line 457) | def __init__(self, arg__1: QQmlEngine, url: PySide6.QtCore.QUrl | str,... method __init__ (line 459) | def __init__(self, arg__1: QQmlEngine, fileName: str, /, parent: PySid... method __init__ (line 461) | def __init__(self, arg__1: QQmlEngine, url: PySide6.QtCore.QUrl | str,... method __init__ (line 463) | def __init__(self, arg__1: QQmlEngine, /, parent: PySide6.QtCore.QObje... method __init__ (line 465) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method beginCreate (line 466) | def beginCreate(self, arg__1: QQmlContext, /) -> PySide6.QtCore.QObjec... method completeCreate (line 467) | def completeCreate(self, /) -> None: ... method create (line 469) | def create(self, arg__1: QQmlIncubator, /, context: QQmlContext | None... method create (line 471) | def create(self, /, context: QQmlContext | None = ...) -> PySide6.QtCo... method createObject (line 472) | def createObject(self, /, parent: PySide6.QtCore.QObject | None = ...,... method createWithInitialProperties (line 473) | def createWithInitialProperties(self, initialProperties: Dict[str, Any... method creationContext (line 474) | def creationContext(self, /) -> QQmlContext: ... method engine (line 475) | def engine(self, /) -> QQmlEngine: ... method errorString (line 476) | def errorString(self, /) -> str: ... method errors (line 477) | def errors(self, /) -> List[QQmlError]: ... method isBound (line 478) | def isBound(self, /) -> bool: ... method isError (line 479) | def isError(self, /) -> bool: ... method isLoading (line 480) | def isLoading(self, /) -> bool: ... method isNull (line 481) | def isNull(self, /) -> bool: ... method isReady (line 482) | def isReady(self, /) -> bool: ... method loadFromModule (line 483) | def loadFromModule(self, uri: str, typeName: str, /, mode: QQmlCompone... method loadUrl (line 485) | def loadUrl(self, url: PySide6.QtCore.QUrl | str, mode: QQmlComponent.... method loadUrl (line 487) | def loadUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method progress (line 488) | def progress(self, /) -> float: ... method setData (line 489) | def setData(self, arg__1: PySide6.QtCore.QByteArray | bytes | bytearra... method setInitialProperties (line 490) | def setInitialProperties(self, component: PySide6.QtCore.QObject, prop... method status (line 491) | def status(self, /) -> QQmlComponent.Status: ... method url (line 492) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __bool__ (line 493) | def __bool__(self) -> bool: ... class QQmlContext (line 495) | class QQmlContext(PySide6.QtCore.QObject): class PropertyPair (line 496) | class PropertyPair(shiboken6.Object): method __init__ (line 500) | def __init__(self, PropertyPair: QQmlContext.PropertyPair, /) -> Non... method __init__ (line 502) | def __init__(self, /) -> None: ... method __copy__ (line 503) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 506) | def __init__(self, parent: QQmlEngine, /, objParent: PySide6.QtCore.QO... method __init__ (line 508) | def __init__(self, parent: QQmlContext, /, objParent: PySide6.QtCore.Q... method baseUrl (line 509) | def baseUrl(self, /) -> PySide6.QtCore.QUrl: ... method contextObject (line 510) | def contextObject(self, /) -> PySide6.QtCore.QObject: ... method contextProperty (line 511) | def contextProperty(self, arg__1: str, /) -> Any: ... method engine (line 512) | def engine(self, /) -> QQmlEngine: ... method importedScript (line 513) | def importedScript(self, name: str, /) -> QJSValue: ... method isValid (line 514) | def isValid(self, /) -> bool: ... method nameForObject (line 515) | def nameForObject(self, arg__1: PySide6.QtCore.QObject, /) -> str: ... method objectForName (line 516) | def objectForName(self, arg__1: str, /) -> PySide6.QtCore.QObject: ... method parentContext (line 517) | def parentContext(self, /) -> QQmlContext: ... method resolvedUrl (line 518) | def resolvedUrl(self, arg__1: PySide6.QtCore.QUrl | str, /) -> PySide6... method setBaseUrl (line 519) | def setBaseUrl(self, arg__1: PySide6.QtCore.QUrl | str, /) -> None: ... method setContextObject (line 520) | def setContextObject(self, arg__1: PySide6.QtCore.QObject, /) -> None:... method setContextProperties (line 521) | def setContextProperties(self, properties: typing.Iterable[QQmlContext... method setContextProperty (line 523) | def setContextProperty(self, arg__1: str, arg__2: PySide6.QtCore.QObje... method setContextProperty (line 525) | def setContextProperty(self, arg__1: str, arg__2: Any, /) -> None: ... class QQmlDebuggingEnabler (line 527) | class QQmlDebuggingEnabler(shiboken6.Object): class StartMode (line 528) | class StartMode(enum.Enum): method __init__ (line 531) | def __init__(self, /, printWarning: bool = ...) -> None: ... method connectToLocalDebugger (line 533) | def connectToLocalDebugger(socketFileName: str, /, mode: QQmlDebugging... method debuggerServices (line 535) | def debuggerServices() -> List[str]: ... method enableDebugging (line 537) | def enableDebugging(printWarning: bool, /) -> None: ... method inspectorServices (line 539) | def inspectorServices() -> List[str]: ... method nativeDebuggerServices (line 541) | def nativeDebuggerServices() -> List[str]: ... method profilerServices (line 543) | def profilerServices() -> List[str]: ... method setServices (line 545) | def setServices(services: typing.Iterable[str], /) -> None: ... method startDebugConnector (line 547) | def startDebugConnector(pluginName: str, /, configuration: Dict[str, A... method startTcpDebugServer (line 549) | def startTcpDebugServer(port: int, /, mode: QQmlDebuggingEnabler.Start... class QQmlEngine (line 551) | class QQmlEngine(QJSEngine): method __init__ (line 557) | def __init__(self, /, p: PySide6.QtCore.QObject | None = ..., *, offli... method addImageProvider (line 558) | def addImageProvider(self, id: str, arg__2: QQmlImageProviderBase, /) ... method addImportPath (line 559) | def addImportPath(self, dir: str | bytes | os.PathLike[str], /) -> Non... method addNamedBundle (line 560) | def addNamedBundle(self, arg__1: str, arg__2: str, /) -> bool: ... method addPluginPath (line 561) | def addPluginPath(self, dir: str | bytes | os.PathLike[str], /) -> Non... method addUrlInterceptor (line 562) | def addUrlInterceptor(self, urlInterceptor: QQmlAbstractUrlInterceptor... method baseUrl (line 563) | def baseUrl(self, /) -> PySide6.QtCore.QUrl: ... method captureProperty (line 564) | def captureProperty(self, object: PySide6.QtCore.QObject, property: Py... method clearComponentCache (line 565) | def clearComponentCache(self, /) -> None: ... method clearSingletons (line 566) | def clearSingletons(self, /) -> None: ... method contextForObject (line 568) | def contextForObject(arg__1: PySide6.QtCore.QObject, /) -> QQmlContext... method event (line 569) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method imageProvider (line 570) | def imageProvider(self, id: str, /) -> QQmlImageProviderBase: ... method importPathList (line 571) | def importPathList(self, /) -> List[str]: ... method importPlugin (line 572) | def importPlugin(self, filePath: str, uri: str, errors: typing.Iterabl... method incubationController (line 573) | def incubationController(self, /) -> QQmlIncubationController: ... method interceptUrl (line 574) | def interceptUrl(self, url: PySide6.QtCore.QUrl | str, type: QQmlAbstr... method markCurrentFunctionAsTranslationBinding (line 575) | def markCurrentFunctionAsTranslationBinding(self, /) -> None: ... method networkAccessManager (line 576) | def networkAccessManager(self, /) -> PySide6.QtNetwork.QNetworkAccessM... method networkAccessManagerFactory (line 577) | def networkAccessManagerFactory(self, /) -> QQmlNetworkAccessManagerFa... method offlineStorageDatabaseFilePath (line 578) | def offlineStorageDatabaseFilePath(self, databaseName: str, /) -> str:... method offlineStoragePath (line 579) | def offlineStoragePath(self, /) -> str: ... method outputWarningsToStandardError (line 580) | def outputWarningsToStandardError(self, /) -> bool: ... method pluginPathList (line 581) | def pluginPathList(self, /) -> List[str]: ... method removeImageProvider (line 582) | def removeImageProvider(self, id: str, /) -> None: ... method removeUrlInterceptor (line 583) | def removeUrlInterceptor(self, urlInterceptor: QQmlAbstractUrlIntercep... method retranslate (line 584) | def retranslate(self, /) -> None: ... method rootContext (line 585) | def rootContext(self, /) -> QQmlContext: ... method setBaseUrl (line 586) | def setBaseUrl(self, arg__1: PySide6.QtCore.QUrl | str, /) -> None: ... method setContextForObject (line 588) | def setContextForObject(arg__1: PySide6.QtCore.QObject, arg__2: QQmlCo... method setImportPathList (line 589) | def setImportPathList(self, paths: typing.Iterable[str], /) -> None: ... method setIncubationController (line 590) | def setIncubationController(self, arg__1: QQmlIncubationController, /)... method setNetworkAccessManagerFactory (line 591) | def setNetworkAccessManagerFactory(self, arg__1: QQmlNetworkAccessMana... method setOfflineStoragePath (line 592) | def setOfflineStoragePath(self, dir: str, /) -> None: ... method setOutputWarningsToStandardError (line 593) | def setOutputWarningsToStandardError(self, arg__1: bool, /) -> None: ... method setPluginPathList (line 594) | def setPluginPathList(self, paths: typing.Iterable[str], /) -> None: ... method setUrlInterceptor (line 595) | def setUrlInterceptor(self, urlInterceptor: QQmlAbstractUrlInterceptor... method singletonInstance (line 597) | def singletonInstance(self, uri: str, typeName: str, /) -> PySide6.QtC... method singletonInstance (line 599) | def singletonInstance(self, qmlTypeId: int, /) -> PySide6.QtCore.QObje... method trimComponentCache (line 600) | def trimComponentCache(self, /) -> None: ... method urlInterceptor (line 601) | def urlInterceptor(self, /) -> QQmlAbstractUrlInterceptor: ... method urlInterceptors (line 602) | def urlInterceptors(self, /) -> List[QQmlAbstractUrlInterceptor]: ... class QQmlError (line 604) | class QQmlError(shiboken6.Object): method __init__ (line 606) | def __init__(self, arg__1: QQmlError, /) -> None: ... method __init__ (line 608) | def __init__(self, /) -> None: ... method column (line 609) | def column(self, /) -> int: ... method description (line 610) | def description(self, /) -> str: ... method isValid (line 611) | def isValid(self, /) -> bool: ... method line (line 612) | def line(self, /) -> int: ... method messageType (line 613) | def messageType(self, /) -> PySide6.QtCore.QtMsgType: ... method object (line 614) | def object(self, /) -> PySide6.QtCore.QObject: ... method setColumn (line 615) | def setColumn(self, arg__1: int, /) -> None: ... method setDescription (line 616) | def setDescription(self, arg__1: str, /) -> None: ... method setLine (line 617) | def setLine(self, arg__1: int, /) -> None: ... method setMessageType (line 618) | def setMessageType(self, messageType: PySide6.QtCore.QtMsgType, /) -> ... method setObject (line 619) | def setObject(self, arg__1: PySide6.QtCore.QObject, /) -> None: ... method setUrl (line 620) | def setUrl(self, arg__1: PySide6.QtCore.QUrl | str, /) -> None: ... method swap (line 621) | def swap(self, other: QQmlError, /) -> None: ... method toString (line 622) | def toString(self, /) -> str: ... method url (line 623) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 624) | def __copy__(self, /) -> typing_extensions.Self: ... class QQmlExpression (line 626) | class QQmlExpression(PySide6.QtCore.QObject): method __init__ (line 630) | def __init__(self, arg__1: QQmlContext, arg__2: PySide6.QtCore.QObject... method __init__ (line 632) | def __init__(self, arg__1: QQmlScriptString, /, arg__2: QQmlContext | ... method __init__ (line 634) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method clearError (line 635) | def clearError(self, /) -> None: ... method columnNumber (line 636) | def columnNumber(self, /) -> int: ... method context (line 637) | def context(self, /) -> QQmlContext: ... method engine (line 638) | def engine(self, /) -> QQmlEngine: ... method error (line 639) | def error(self, /) -> QQmlError: ... method evaluate (line 640) | def evaluate(self, /) -> Tuple[Any, bool]: ... method expression (line 641) | def expression(self, /) -> str: ... method hasError (line 642) | def hasError(self, /) -> bool: ... method lineNumber (line 643) | def lineNumber(self, /) -> int: ... method notifyOnValueChanged (line 644) | def notifyOnValueChanged(self, /) -> bool: ... method scopeObject (line 645) | def scopeObject(self, /) -> PySide6.QtCore.QObject: ... method setExpression (line 646) | def setExpression(self, arg__1: str, /) -> None: ... method setNotifyOnValueChanged (line 647) | def setNotifyOnValueChanged(self, arg__1: bool, /) -> None: ... method setSourceLocation (line 648) | def setSourceLocation(self, fileName: str, line: int, /, column: int |... method sourceFile (line 649) | def sourceFile(self, /) -> str: ... class QQmlExtensionInterface (line 651) | class QQmlExtensionInterface(QQmlTypesExtensionInterface): method __init__ (line 652) | def __init__(self, /) -> None: ... method initializeEngine (line 653) | def initializeEngine(self, engine: QQmlEngine, uri: bytes | bytearray ... class QQmlExtensionPlugin (line 655) | class QQmlExtensionPlugin(PySide6.QtCore.QObject, QQmlExtensionInterface): method __init__ (line 657) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method baseUrl (line 658) | def baseUrl(self, /) -> PySide6.QtCore.QUrl: ... method initializeEngine (line 659) | def initializeEngine(self, engine: QQmlEngine, uri: bytes | bytearray ... method registerTypes (line 660) | def registerTypes(self, uri: bytes | bytearray | memoryview, /) -> Non... method unregisterTypes (line 661) | def unregisterTypes(self, /) -> None: ... class QQmlFile (line 663) | class QQmlFile(shiboken6.Object): class Status (line 664) | class Status(enum.Enum): method __init__ (line 670) | def __init__(self, engine: QQmlEngine, url: str, /) -> None: ... method __init__ (line 672) | def __init__(self, engine: QQmlEngine, url: PySide6.QtCore.QUrl | str,... method __init__ (line 674) | def __init__(self, /) -> None: ... method clear (line 676) | def clear(self, object: PySide6.QtCore.QObject, /) -> None: ... method clear (line 678) | def clear(self, /) -> None: ... method connectDownloadProgress (line 680) | def connectDownloadProgress(self, arg__1: PySide6.QtCore.QObject, arg_... method connectDownloadProgress (line 682) | def connectDownloadProgress(self, arg__1: PySide6.QtCore.QObject, arg_... method connectFinished (line 684) | def connectFinished(self, arg__1: PySide6.QtCore.QObject, arg__2: byte... method connectFinished (line 686) | def connectFinished(self, arg__1: PySide6.QtCore.QObject, arg__2: int,... method data (line 687) | def data(self, /) -> bytes | bytearray | memoryview: ... method dataByteArray (line 688) | def dataByteArray(self, /) -> PySide6.QtCore.QByteArray: ... method error (line 689) | def error(self, /) -> str: ... method isError (line 690) | def isError(self, /) -> bool: ... method isLoading (line 691) | def isLoading(self, /) -> bool: ... method isLocalFile (line 694) | def isLocalFile(url: str, /) -> bool: ... method isLocalFile (line 697) | def isLocalFile(url: PySide6.QtCore.QUrl | str, /) -> bool: ... method isNull (line 698) | def isNull(self, /) -> bool: ... method isReady (line 699) | def isReady(self, /) -> bool: ... method isSynchronous (line 702) | def isSynchronous(url: str, /) -> bool: ... method isSynchronous (line 705) | def isSynchronous(url: PySide6.QtCore.QUrl | str, /) -> bool: ... method load (line 707) | def load(self, arg__1: QQmlEngine, arg__2: str, /) -> None: ... method load (line 709) | def load(self, arg__1: QQmlEngine, arg__2: PySide6.QtCore.QUrl | str, ... method size (line 710) | def size(self, /) -> int: ... method status (line 711) | def status(self, /) -> QQmlFile.Status: ... method url (line 712) | def url(self, /) -> PySide6.QtCore.QUrl: ... method urlToLocalFileOrQrc (line 715) | def urlToLocalFileOrQrc(arg__1: str, /) -> str: ... method urlToLocalFileOrQrc (line 718) | def urlToLocalFileOrQrc(arg__1: PySide6.QtCore.QUrl | str, /) -> str: ... method __bool__ (line 719) | def __bool__(self) -> bool: ... class QQmlFileSelector (line 721) | class QQmlFileSelector(PySide6.QtCore.QObject): method __init__ (line 723) | def __init__(self, engine: QQmlEngine, /, parent: PySide6.QtCore.QObje... method get (line 725) | def get(arg__1: QQmlEngine, /) -> QQmlFileSelector: ... method selector (line 726) | def selector(self, /) -> PySide6.QtCore.QFileSelector: ... method setExtraSelectors (line 727) | def setExtraSelectors(self, strings: typing.Iterable[str], /) -> None:... method setSelector (line 728) | def setSelector(self, selector: PySide6.QtCore.QFileSelector, /) -> No... class QQmlImageProviderBase (line 730) | class QQmlImageProviderBase(PySide6.QtCore.QObject): class Flag (line 731) | class Flag(enum.Flag): class ImageType (line 734) | class ImageType(enum.Enum): method __init__ (line 741) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method flags (line 742) | def flags(self, /) -> QQmlImageProviderBase.Flag: ... method imageType (line 743) | def imageType(self, /) -> QQmlImageProviderBase.ImageType: ... class QQmlIncubationController (line 745) | class QQmlIncubationController(shiboken6.Object): method __init__ (line 746) | def __init__(self, /) -> None: ... method engine (line 747) | def engine(self, /) -> QQmlEngine: ... method incubateFor (line 748) | def incubateFor(self, msecs: int, /) -> None: ... method incubateWhile (line 749) | def incubateWhile(self, flag: VolatileBool, /, msecs: int | None = ...... method incubatingObjectCount (line 750) | def incubatingObjectCount(self, /) -> int: ... method incubatingObjectCountChanged (line 751) | def incubatingObjectCountChanged(self, arg__1: int, /) -> None: ... class QQmlIncubator (line 753) | class QQmlIncubator(shiboken6.Object): class IncubationMode (line 754) | class IncubationMode(enum.Enum): class Status (line 759) | class Status(enum.Enum): method __init__ (line 764) | def __init__(self, /, arg__1: QQmlIncubator.IncubationMode = ...) -> N... method clear (line 765) | def clear(self, /) -> None: ... method errors (line 766) | def errors(self, /) -> List[QQmlError]: ... method forceCompletion (line 767) | def forceCompletion(self, /) -> None: ... method incubationMode (line 768) | def incubationMode(self, /) -> QQmlIncubator.IncubationMode: ... method isError (line 769) | def isError(self, /) -> bool: ... method isLoading (line 770) | def isLoading(self, /) -> bool: ... method isNull (line 771) | def isNull(self, /) -> bool: ... method isReady (line 772) | def isReady(self, /) -> bool: ... method object (line 773) | def object(self, /) -> PySide6.QtCore.QObject: ... method setInitialProperties (line 774) | def setInitialProperties(self, initialProperties: Dict[str, Any], /) -... method setInitialState (line 775) | def setInitialState(self, arg__1: PySide6.QtCore.QObject, /) -> None: ... method status (line 776) | def status(self, /) -> QQmlIncubator.Status: ... method statusChanged (line 777) | def statusChanged(self, arg__1: QQmlIncubator.Status, /) -> None: ... method __bool__ (line 778) | def __bool__(self) -> bool: ... class QQmlListReference (line 780) | class QQmlListReference(shiboken6.Object): method __init__ (line 782) | def __init__(self, o: PySide6.QtCore.QObject, property: bytes | bytear... method __init__ (line 784) | def __init__(self, variant: Any, engine: QQmlEngine, /) -> None: ... method __init__ (line 786) | def __init__(self, o: PySide6.QtCore.QObject, property: bytes | bytear... method __init__ (line 788) | def __init__(self, variant: Any, /) -> None: ... method __init__ (line 790) | def __init__(self, arg__1: QQmlListReference, /) -> None: ... # type:... method __init__ (line 792) | def __init__(self, /) -> None: ... method append (line 793) | def append(self, arg__1: PySide6.QtCore.QObject, /) -> bool: ... method at (line 794) | def at(self, arg__1: int, /) -> PySide6.QtCore.QObject: ... method canAppend (line 795) | def canAppend(self, /) -> bool: ... method canAt (line 796) | def canAt(self, /) -> bool: ... method canClear (line 797) | def canClear(self, /) -> bool: ... method canCount (line 798) | def canCount(self, /) -> bool: ... method canRemoveLast (line 799) | def canRemoveLast(self, /) -> bool: ... method canReplace (line 800) | def canReplace(self, /) -> bool: ... method clear (line 801) | def clear(self, /) -> bool: ... method count (line 802) | def count(self, /) -> int: ... method isManipulable (line 803) | def isManipulable(self, /) -> bool: ... method isReadable (line 804) | def isReadable(self, /) -> bool: ... method isValid (line 805) | def isValid(self, /) -> bool: ... method listElementType (line 806) | def listElementType(self, /) -> PySide6.QtCore.QMetaObject: ... method object (line 807) | def object(self, /) -> PySide6.QtCore.QObject: ... method removeLast (line 808) | def removeLast(self, /) -> bool: ... method replace (line 809) | def replace(self, arg__1: int, arg__2: PySide6.QtCore.QObject, /) -> b... method size (line 810) | def size(self, /) -> int: ... method __copy__ (line 811) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 812) | def __eq__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ge__ (line 813) | def __ge__(self, other: object) -> bool: ... # type: ignore[valid-type] method __gt__ (line 814) | def __gt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __le__ (line 815) | def __le__(self, other: object) -> bool: ... # type: ignore[valid-type] method __lt__ (line 816) | def __lt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ne__ (line 817) | def __ne__(self, other: object) -> bool: ... # type: ignore[valid-type] class QQmlModuleImportSpecialVersions (line 819) | class QQmlModuleImportSpecialVersions(enum.Flag): class QQmlNetworkAccessManagerFactory (line 824) | class QQmlNetworkAccessManagerFactory(shiboken6.Object): method __init__ (line 825) | def __init__(self, /) -> None: ... method create (line 826) | def create(self, parent: PySide6.QtCore.QObject | None, /) -> PySide6.... class QQmlParserStatus (line 828) | class QQmlParserStatus(shiboken6.Object): method __init__ (line 829) | def __init__(self, /) -> None: ... method classBegin (line 830) | def classBegin(self, /) -> None: ... method componentComplete (line 831) | def componentComplete(self, /) -> None: ... class QQmlProperty (line 833) | class QQmlProperty(shiboken6.Object): class PropertyTypeCategory (line 834) | class PropertyTypeCategory(enum.Enum): class Type (line 840) | class Type(enum.Enum): method __init__ (line 845) | def __init__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3... method __init__ (line 847) | def __init__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, arg__3... method __init__ (line 849) | def __init__(self, arg__1: PySide6.QtCore.QObject, arg__2: QQmlEngine,... method __init__ (line 851) | def __init__(self, arg__1: PySide6.QtCore.QObject, arg__2: QQmlContext... method __init__ (line 853) | def __init__(self, arg__1: PySide6.QtCore.QObject, arg__2: str, /, *, ... method __init__ (line 855) | def __init__(self, arg__1: PySide6.QtCore.QObject, /, *, object: PySid... method __init__ (line 857) | def __init__(self, arg__1: QQmlProperty, /, *, object: PySide6.QtCore.... method __init__ (line 859) | def __init__(self, /, *, object: PySide6.QtCore.QObject | None = ..., ... method connectNotifySignal (line 861) | def connectNotifySignal(self, dest: PySide6.QtCore.QObject, slot: byte... method connectNotifySignal (line 863) | def connectNotifySignal(self, dest: PySide6.QtCore.QObject, method: in... method hasNotifySignal (line 864) | def hasNotifySignal(self, /) -> bool: ... method index (line 865) | def index(self, /) -> int: ... method isBindable (line 866) | def isBindable(self, /) -> bool: ... method isDesignable (line 867) | def isDesignable(self, /) -> bool: ... method isProperty (line 868) | def isProperty(self, /) -> bool: ... method isResettable (line 869) | def isResettable(self, /) -> bool: ... method isSignalProperty (line 870) | def isSignalProperty(self, /) -> bool: ... method isValid (line 871) | def isValid(self, /) -> bool: ... method isWritable (line 872) | def isWritable(self, /) -> bool: ... method method (line 873) | def method(self, /) -> PySide6.QtCore.QMetaMethod: ... method name (line 874) | def name(self, /) -> str: ... method needsNotifySignal (line 875) | def needsNotifySignal(self, /) -> bool: ... method object (line 876) | def object(self, /) -> PySide6.QtCore.QObject: ... method property (line 877) | def property(self, /) -> PySide6.QtCore.QMetaProperty: ... method propertyMetaType (line 878) | def propertyMetaType(self, /) -> PySide6.QtCore.QMetaType: ... method propertyType (line 879) | def propertyType(self, /) -> int: ... method propertyTypeCategory (line 880) | def propertyTypeCategory(self, /) -> QQmlProperty.PropertyTypeCategory... method propertyTypeName (line 881) | def propertyTypeName(self, /) -> bytes | bytearray | memoryview: ... method read (line 883) | def read(self) -> typing.Any: ... method reset (line 884) | def reset(self, /) -> bool: ... method swap (line 885) | def swap(self, other: QQmlProperty | PySide6.QtCore.QObject, /) -> Non... method type (line 886) | def type(self, /) -> QQmlProperty.Type: ... method write (line 888) | def write(self) -> typing.Any: ... method __copy__ (line 889) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 890) | def __eq__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ge__ (line 891) | def __ge__(self, other: object) -> bool: ... # type: ignore[valid-type] method __gt__ (line 892) | def __gt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __hash__ (line 893) | def __hash__(self, /) -> int: ... method __le__ (line 894) | def __le__(self, other: object) -> bool: ... # type: ignore[valid-type] method __lt__ (line 895) | def __lt__(self, other: object) -> bool: ... # type: ignore[valid-type] method __ne__ (line 896) | def __ne__(self, other: object) -> bool: ... # type: ignore[valid-type] class QQmlPropertyMap (line 898) | class QQmlPropertyMap(PySide6.QtCore.QObject): method __init__ (line 901) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method clear (line 902) | def clear(self, key: str, /) -> None: ... method contains (line 903) | def contains(self, key: str, /) -> bool: ... method count (line 904) | def count(self, /) -> int: ... method freeze (line 905) | def freeze(self, /) -> None: ... method insert (line 907) | def insert(self, key: str, value: Any, /) -> None: ... method insert (line 909) | def insert(self, values: Dict[str, Any], /) -> None: ... method isEmpty (line 910) | def isEmpty(self, /) -> bool: ... method keys (line 911) | def keys(self, /) -> List[str]: ... method size (line 912) | def size(self, /) -> int: ... method updateValue (line 913) | def updateValue(self, key: str, input: Any, /) -> Any: ... method value (line 914) | def value(self, key: str, /) -> Any: ... class QQmlPropertyValueSource (line 916) | class QQmlPropertyValueSource(shiboken6.Object): method __init__ (line 917) | def __init__(self, /) -> None: ... method setTarget (line 918) | def setTarget(self, arg__1: QQmlProperty | PySide6.QtCore.QObject, /) ... class QQmlScriptString (line 920) | class QQmlScriptString(shiboken6.Object): method __init__ (line 922) | def __init__(self, arg__1: QQmlScriptString, /) -> None: ... method __init__ (line 924) | def __init__(self, /) -> None: ... method booleanLiteral (line 925) | def booleanLiteral(self, /) -> Tuple[bool, bool]: ... method isEmpty (line 926) | def isEmpty(self, /) -> bool: ... method isNullLiteral (line 927) | def isNullLiteral(self, /) -> bool: ... method isUndefinedLiteral (line 928) | def isUndefinedLiteral(self, /) -> bool: ... method numberLiteral (line 929) | def numberLiteral(self, /) -> Tuple[float, bool]: ... method stringLiteral (line 930) | def stringLiteral(self, /) -> str: ... method __copy__ (line 931) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 932) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 933) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 934) | def __gt__(self, other: object) -> bool: ... method __le__ (line 935) | def __le__(self, other: object) -> bool: ... method __lt__ (line 936) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 937) | def __ne__(self, other: object) -> bool: ... class QQmlTypesExtensionInterface (line 939) | class QQmlTypesExtensionInterface(shiboken6.Object): method __init__ (line 940) | def __init__(self, /) -> None: ... method registerTypes (line 941) | def registerTypes(self, uri: bytes | bytearray | memoryview, /) -> Non... class VolatileBool (line 943) | class VolatileBool: method __init__ (line 945) | def __init__(cls, *args, **kwargs) -> None: ... method get (line 946) | def get(self) -> bool: ... method set (line 947) | def set(self, a: object) -> None: ... function QmlAnonymous (line 949) | def QmlAnonymous(arg__1: object, /) -> typing.Any: ... function QmlElement (line 950) | def QmlElement(arg__1: object, /) -> typing.Any: ... function QmlSingleton (line 951) | def QmlSingleton(arg__1: object, /) -> typing.Any: ... function qjsEngine (line 952) | def qjsEngine(arg__1: PySide6.QtCore.QObject, /) -> QJSEngine | None: ... function qmlAttachedPropertiesObject (line 953) | def qmlAttachedPropertiesObject(type_obj: type, arg__2: PySide6.QtCore.Q... function qmlClearTypeRegistrations (line 954) | def qmlClearTypeRegistrations() -> None: ... function qmlContext (line 955) | def qmlContext(arg__1: PySide6.QtCore.QObject, /) -> QQmlContext | None:... function qmlEngine (line 956) | def qmlEngine(arg__1: PySide6.QtCore.QObject, /) -> QQmlEngine | None: ... function qmlProtectModule (line 957) | def qmlProtectModule(uri: bytes | bytearray | memoryview, majVersion: in... function qmlRegisterModule (line 958) | def qmlRegisterModule(uri: bytes | bytearray | memoryview, versionMajor:... function qmlRegisterSingletonInstance (line 959) | def qmlRegisterSingletonInstance(type_obj: type, uri: str, version_major... function qmlRegisterSingletonType (line 961) | def qmlRegisterSingletonType(type_obj: type, uri: str, version_major: in... function qmlRegisterSingletonType (line 963) | def qmlRegisterSingletonType(url: PySide6.QtCore.QUrl | str, uri: bytes ... function qmlRegisterSingletonType (line 965) | def qmlRegisterSingletonType(uri: str, version_major: int, version_minor... function qmlRegisterSingletonType (line 967) | def qmlRegisterSingletonType(type_obj: type, uri: str, version_major: in... function qmlRegisterType (line 969) | def qmlRegisterType(url: PySide6.QtCore.QUrl | str, uri: bytes | bytearr... function qmlRegisterType (line 971) | def qmlRegisterType(type_obj: type, uri: str, version_major: int, versio... function qmlRegisterUncreatableMetaObject (line 972) | def qmlRegisterUncreatableMetaObject(staticMetaObject: PySide6.QtCore.QM... function qmlRegisterUncreatableType (line 973) | def qmlRegisterUncreatableType(type_obj: type, uri: str, version_major: ... function qmlTypeId (line 974) | def qmlTypeId(uri: bytes | bytearray | memoryview, versionMajor: int, ve... FILE: pyside6/stubs/PySide6-stubs/QtQuick.pyi class QIntList (line 15) | class QIntList: method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method append (line 18) | def append(self, *args, **kwargs): ... method capacity (line 19) | def capacity(self, *args, **kwargs): ... method clear (line 20) | def clear(self, *args, **kwargs): ... method constData (line 21) | def constData(self, *args, **kwargs): ... method data (line 22) | def data(self, *args, **kwargs): ... method pop_back (line 23) | def pop_back(self, *args, **kwargs): ... method pop_front (line 24) | def pop_front(self, *args, **kwargs): ... method prepend (line 25) | def prepend(self, *args, **kwargs): ... method push_back (line 26) | def push_back(self, *args, **kwargs): ... method push_front (line 27) | def push_front(self, *args, **kwargs): ... method removeFirst (line 28) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 29) | def removeLast(self, *args, **kwargs): ... method reserve (line 30) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 31) | def __delitem__(self, other) -> None: ... method __getitem__ (line 32) | def __getitem__(self, index): ... method __len__ (line 33) | def __len__(self) -> int: ... method __setitem__ (line 34) | def __setitem__(self, index, object) -> None: ... class QQuickAsyncImageProvider (line 36) | class QQuickAsyncImageProvider(QQuickImageProvider): method __init__ (line 38) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method requestImageResponse (line 39) | def requestImageResponse(self, id: str, requestedSize: PySide6.QtCore.... class QQuickFramebufferObject (line 41) | class QQuickFramebufferObject(QQuickItem): class Renderer (line 42) | class Renderer(shiboken6.Object): method __init__ (line 43) | def __init__(self, /) -> None: ... method createFramebufferObject (line 44) | def createFramebufferObject(self, size: PySide6.QtCore.QSize, /) -> ... method framebufferObject (line 45) | def framebufferObject(self, /) -> PySide6.QtOpenGL.QOpenGLFramebuffe... method invalidateFramebufferObject (line 46) | def invalidateFramebufferObject(self, /) -> None: ... method render (line 47) | def render(self, /) -> None: ... method synchronize (line 48) | def synchronize(self, arg__1: QQuickFramebufferObject, /) -> None: ... method update (line 49) | def update(self, /) -> None: ... method __init__ (line 53) | def __init__(self, /, parent: QQuickItem | None = ..., *, textureFollo... method createRenderer (line 54) | def createRenderer(self, /) -> QQuickFramebufferObject.Renderer: ... method geometryChange (line 55) | def geometryChange(self, newGeometry: PySide6.QtCore.QRectF | PySide6.... method isTextureProvider (line 56) | def isTextureProvider(self, /) -> bool: ... method mirrorVertically (line 57) | def mirrorVertically(self, /) -> bool: ... method releaseResources (line 58) | def releaseResources(self, /) -> None: ... method setMirrorVertically (line 59) | def setMirrorVertically(self, enable: bool, /) -> None: ... method setTextureFollowsItemSize (line 60) | def setTextureFollowsItemSize(self, follows: bool, /) -> None: ... method textureFollowsItemSize (line 61) | def textureFollowsItemSize(self, /) -> bool: ... method textureProvider (line 62) | def textureProvider(self, /) -> QSGTextureProvider: ... method updatePaintNode (line 63) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... class QQuickGraphicsConfiguration (line 65) | class QQuickGraphicsConfiguration(shiboken6.Object): method __init__ (line 67) | def __init__(self, other: QQuickGraphicsConfiguration, /) -> None: ... method __init__ (line 69) | def __init__(self, /) -> None: ... method deviceExtensions (line 70) | def deviceExtensions(self, /) -> List[PySide6.QtCore.QByteArray]: ... method isAutomaticPipelineCacheEnabled (line 71) | def isAutomaticPipelineCacheEnabled(self, /) -> bool: ... method isDebugLayerEnabled (line 72) | def isDebugLayerEnabled(self, /) -> bool: ... method isDebugMarkersEnabled (line 73) | def isDebugMarkersEnabled(self, /) -> bool: ... method isDepthBufferEnabledFor2D (line 74) | def isDepthBufferEnabledFor2D(self, /) -> bool: ... method pipelineCacheLoadFile (line 75) | def pipelineCacheLoadFile(self, /) -> str: ... method pipelineCacheSaveFile (line 76) | def pipelineCacheSaveFile(self, /) -> str: ... method preferredInstanceExtensions (line 78) | def preferredInstanceExtensions() -> List[PySide6.QtCore.QByteArray]: ... method prefersSoftwareDevice (line 79) | def prefersSoftwareDevice(self, /) -> bool: ... method setAutomaticPipelineCache (line 80) | def setAutomaticPipelineCache(self, enable: bool, /) -> None: ... method setDebugLayer (line 81) | def setDebugLayer(self, enable: bool, /) -> None: ... method setDebugMarkers (line 82) | def setDebugMarkers(self, enable: bool, /) -> None: ... method setDepthBufferFor2D (line 83) | def setDepthBufferFor2D(self, enable: bool, /) -> None: ... method setDeviceExtensions (line 84) | def setDeviceExtensions(self, extensions: typing.Iterable[PySide6.QtCo... method setPipelineCacheLoadFile (line 85) | def setPipelineCacheLoadFile(self, filename: str, /) -> None: ... method setPipelineCacheSaveFile (line 86) | def setPipelineCacheSaveFile(self, filename: str, /) -> None: ... method setPreferSoftwareDevice (line 87) | def setPreferSoftwareDevice(self, enable: bool, /) -> None: ... method setTimestamps (line 88) | def setTimestamps(self, enable: bool, /) -> None: ... method timestampsEnabled (line 89) | def timestampsEnabled(self, /) -> bool: ... method __copy__ (line 90) | def __copy__(self, /) -> typing_extensions.Self: ... class QQuickGraphicsDevice (line 92) | class QQuickGraphicsDevice(shiboken6.Object): method __init__ (line 94) | def __init__(self, other: QQuickGraphicsDevice, /) -> None: ... method __init__ (line 96) | def __init__(self, /) -> None: ... method fromOpenGLContext (line 98) | def fromOpenGLContext(context: PySide6.QtGui.QOpenGLContext, /) -> QQu... method fromRhi (line 100) | def fromRhi(rhi: PySide6.QtGui.QRhi, /) -> QQuickGraphicsDevice: ... method fromRhiAdapter (line 102) | def fromRhiAdapter(adapter: PySide6.QtGui.QRhiAdapter, /) -> QQuickGra... method isNull (line 103) | def isNull(self, /) -> bool: ... method __bool__ (line 104) | def __bool__(self) -> bool: ... method __copy__ (line 105) | def __copy__(self, /) -> typing_extensions.Self: ... class QQuickImageProvider (line 107) | class QQuickImageProvider(PySide6.QtQml.QQmlImageProviderBase): method __init__ (line 109) | def __init__(self, type: PySide6.QtQml.QQmlImageProviderBase.ImageType... method flags (line 110) | def flags(self, /) -> PySide6.QtQml.QQmlImageProviderBase.Flag: ... method imageType (line 111) | def imageType(self, /) -> PySide6.QtQml.QQmlImageProviderBase.ImageTyp... method requestImage (line 112) | def requestImage(self, id: str, size: PySide6.QtCore.QSize, requestedS... method requestPixmap (line 113) | def requestPixmap(self, id: str, size: PySide6.QtCore.QSize, requested... method requestTexture (line 114) | def requestTexture(self, id: str, size: PySide6.QtCore.QSize, requeste... class QQuickImageResponse (line 116) | class QQuickImageResponse(PySide6.QtCore.QObject): method __init__ (line 119) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method cancel (line 120) | def cancel(self, /) -> None: ... method errorString (line 121) | def errorString(self, /) -> str: ... method textureFactory (line 122) | def textureFactory(self, /) -> QQuickTextureFactory: ... class QQuickItem (line 124) | class QQuickItem(PySide6.QtCore.QObject, PySide6.QtQml.QQmlParserStatus): class Flag (line 125) | class Flag(enum.Flag): class ItemChange (line 134) | class ItemChange(enum.Enum): class TransformOrigin (line 149) | class TransformOrigin(enum.Enum): class UpdatePaintNodeData (line 160) | class UpdatePaintNodeData(shiboken6.Object): method __init__ (line 162) | def __init__(self, UpdatePaintNodeData: QQuickItem.UpdatePaintNodeDa... method __copy__ (line 163) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 195) | def __init__(self, /, parent: QQuickItem | None = ..., *, x: float | N... method acceptHoverEvents (line 196) | def acceptHoverEvents(self, /) -> bool: ... method acceptTouchEvents (line 197) | def acceptTouchEvents(self, /) -> bool: ... method acceptedMouseButtons (line 198) | def acceptedMouseButtons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method activeFocusOnTab (line 199) | def activeFocusOnTab(self, /) -> bool: ... method antialiasing (line 200) | def antialiasing(self, /) -> bool: ... method baselineOffset (line 201) | def baselineOffset(self, /) -> float: ... method boundingRect (line 202) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method childAt (line 203) | def childAt(self, x: float, y: float, /) -> QQuickItem: ... method childItems (line 204) | def childItems(self, /) -> List[QQuickItem]: ... method childMouseEventFilter (line 205) | def childMouseEventFilter(self, arg__1: QQuickItem, arg__2: PySide6.Qt... method childrenRect (line 206) | def childrenRect(self, /) -> PySide6.QtCore.QRectF: ... method classBegin (line 207) | def classBegin(self, /) -> None: ... method clip (line 208) | def clip(self, /) -> bool: ... method clipRect (line 209) | def clipRect(self, /) -> PySide6.QtCore.QRectF: ... method componentComplete (line 210) | def componentComplete(self, /) -> None: ... method containmentMask (line 211) | def containmentMask(self, /) -> PySide6.QtCore.QObject: ... method contains (line 212) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method cursor (line 213) | def cursor(self, /) -> PySide6.QtGui.QCursor: ... method dragEnterEvent (line 214) | def dragEnterEvent(self, arg__1: PySide6.QtGui.QDragEnterEvent, /) -> ... method dragLeaveEvent (line 215) | def dragLeaveEvent(self, arg__1: PySide6.QtGui.QDragLeaveEvent, /) -> ... method dragMoveEvent (line 216) | def dragMoveEvent(self, arg__1: PySide6.QtGui.QDragMoveEvent, /) -> No... method dropEvent (line 217) | def dropEvent(self, arg__1: PySide6.QtGui.QDropEvent, /) -> None: ... method dumpItemTree (line 218) | def dumpItemTree(self, /) -> None: ... method ensurePolished (line 219) | def ensurePolished(self, /) -> None: ... method event (line 220) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method filtersChildMouseEvents (line 221) | def filtersChildMouseEvents(self, /) -> bool: ... method flags (line 222) | def flags(self, /) -> QQuickItem.Flag: ... method focusInEvent (line 223) | def focusInEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 224) | def focusOutEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None:... method focusPolicy (line 225) | def focusPolicy(self, /) -> PySide6.QtCore.Qt.FocusPolicy: ... method forceActiveFocus (line 227) | def forceActiveFocus(self, reason: PySide6.QtCore.Qt.FocusReason, /) -... method forceActiveFocus (line 229) | def forceActiveFocus(self, /) -> None: ... method geometryChange (line 230) | def geometryChange(self, newGeometry: PySide6.QtCore.QRectF | PySide6.... method grabMouse (line 231) | def grabMouse(self, /) -> None: ... method grabToImage (line 233) | def grabToImage(self, callback: PySide6.QtQml.QJSValue | PySide6.QtQml... method grabToImage (line 235) | def grabToImage(self, /, targetSize: PySide6.QtCore.QSize = ...) -> QS... method grabTouchPoints (line 236) | def grabTouchPoints(self, ids: typing.Iterable[int], /) -> None: ... method hasActiveFocus (line 237) | def hasActiveFocus(self, /) -> bool: ... method hasFocus (line 238) | def hasFocus(self, /) -> bool: ... method height (line 239) | def height(self, /) -> float: ... method heightValid (line 240) | def heightValid(self, /) -> bool: ... method hoverEnterEvent (line 241) | def hoverEnterEvent(self, event: PySide6.QtGui.QHoverEvent, /) -> None... method hoverLeaveEvent (line 242) | def hoverLeaveEvent(self, event: PySide6.QtGui.QHoverEvent, /) -> None... method hoverMoveEvent (line 243) | def hoverMoveEvent(self, event: PySide6.QtGui.QHoverEvent, /) -> None:... method implicitHeight (line 244) | def implicitHeight(self, /) -> float: ... method implicitWidth (line 245) | def implicitWidth(self, /) -> float: ... method inputMethodEvent (line 246) | def inputMethodEvent(self, arg__1: PySide6.QtGui.QInputMethodEvent, /)... method inputMethodQuery (line 247) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method isAncestorOf (line 248) | def isAncestorOf(self, child: QQuickItem, /) -> bool: ... method isComponentComplete (line 249) | def isComponentComplete(self, /) -> bool: ... method isEnabled (line 250) | def isEnabled(self, /) -> bool: ... method isFocusScope (line 251) | def isFocusScope(self, /) -> bool: ... method isTextureProvider (line 252) | def isTextureProvider(self, /) -> bool: ... method isUnderMouse (line 253) | def isUnderMouse(self, /) -> bool: ... method isVisible (line 254) | def isVisible(self, /) -> bool: ... method itemTransform (line 255) | def itemTransform(self, arg__1: QQuickItem, /) -> Tuple[bool, PySide6.... method keepMouseGrab (line 256) | def keepMouseGrab(self, /) -> bool: ... method keepTouchGrab (line 257) | def keepTouchGrab(self, /) -> bool: ... method keyPressEvent (line 258) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 259) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method mapFromGlobal (line 261) | def mapFromGlobal(self, x: float, y: float, /) -> PySide6.QtCore.QPoin... method mapFromGlobal (line 263) | def mapFromGlobal(self, point: PySide6.QtCore.QPointF | PySide6.QtCore... method mapFromItem (line 265) | def mapFromItem(self, item: QQuickItem, x: float, y: float, width: flo... method mapFromItem (line 267) | def mapFromItem(self, item: QQuickItem, x: float, y: float, /) -> PySi... method mapFromItem (line 269) | def mapFromItem(self, item: QQuickItem, rect: PySide6.QtCore.QRectF | ... method mapFromItem (line 271) | def mapFromItem(self, item: QQuickItem, point: PySide6.QtCore.QPointF ... method mapFromScene (line 272) | def mapFromScene(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.... method mapRectFromItem (line 273) | def mapRectFromItem(self, item: QQuickItem, rect: PySide6.QtCore.QRect... method mapRectFromScene (line 274) | def mapRectFromScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCor... method mapRectToItem (line 275) | def mapRectToItem(self, item: QQuickItem, rect: PySide6.QtCore.QRectF ... method mapRectToScene (line 276) | def mapRectToScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.... method mapToGlobal (line 278) | def mapToGlobal(self, x: float, y: float, /) -> PySide6.QtCore.QPointF... method mapToGlobal (line 280) | def mapToGlobal(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method mapToItem (line 282) | def mapToItem(self, item: QQuickItem, x: float, y: float, width: float... method mapToItem (line 284) | def mapToItem(self, item: QQuickItem, x: float, y: float, /) -> PySide... method mapToItem (line 286) | def mapToItem(self, item: QQuickItem, rect: PySide6.QtCore.QRectF | Py... method mapToItem (line 288) | def mapToItem(self, item: QQuickItem, point: PySide6.QtCore.QPointF | ... method mapToScene (line 289) | def mapToScene(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method mouseDoubleClickEvent (line 290) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseMoveEvent (line 291) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 292) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 293) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method mouseUngrabEvent (line 294) | def mouseUngrabEvent(self, /) -> None: ... method nextItemInFocusChain (line 295) | def nextItemInFocusChain(self, /, forward: bool = ...) -> QQuickItem: ... method opacity (line 296) | def opacity(self, /) -> float: ... method parentItem (line 297) | def parentItem(self, /) -> QQuickItem: ... method polish (line 298) | def polish(self, /) -> None: ... method position (line 299) | def position(self, /) -> PySide6.QtCore.QPointF: ... method releaseResources (line 300) | def releaseResources(self, /) -> None: ... method resetAntialiasing (line 301) | def resetAntialiasing(self, /) -> None: ... method resetHeight (line 302) | def resetHeight(self, /) -> None: ... method resetWidth (line 303) | def resetWidth(self, /) -> None: ... method rotation (line 304) | def rotation(self, /) -> float: ... method scale (line 305) | def scale(self, /) -> float: ... method scopedFocusItem (line 306) | def scopedFocusItem(self, /) -> QQuickItem: ... method setAcceptHoverEvents (line 307) | def setAcceptHoverEvents(self, enabled: bool, /) -> None: ... method setAcceptTouchEvents (line 308) | def setAcceptTouchEvents(self, accept: bool, /) -> None: ... method setAcceptedMouseButtons (line 309) | def setAcceptedMouseButtons(self, buttons: PySide6.QtCore.Qt.MouseButt... method setActiveFocusOnTab (line 310) | def setActiveFocusOnTab(self, arg__1: bool, /) -> None: ... method setAntialiasing (line 311) | def setAntialiasing(self, arg__1: bool, /) -> None: ... method setBaselineOffset (line 312) | def setBaselineOffset(self, arg__1: float, /) -> None: ... method setClip (line 313) | def setClip(self, arg__1: bool, /) -> None: ... method setContainmentMask (line 314) | def setContainmentMask(self, mask: PySide6.QtCore.QObject, /) -> None:... method setCursor (line 315) | def setCursor(self, cursor: PySide6.QtGui.QCursor | PySide6.QtCore.Qt.... method setEnabled (line 316) | def setEnabled(self, arg__1: bool, /) -> None: ... method setFiltersChildMouseEvents (line 317) | def setFiltersChildMouseEvents(self, filter: bool, /) -> None: ... method setFlag (line 318) | def setFlag(self, flag: QQuickItem.Flag, /, enabled: bool = ...) -> No... method setFlags (line 319) | def setFlags(self, flags: QQuickItem.Flag, /) -> None: ... method setFocus (line 321) | def setFocus(self, focus: bool, reason: PySide6.QtCore.Qt.FocusReason,... method setFocus (line 323) | def setFocus(self, arg__1: bool, /) -> None: ... method setFocusPolicy (line 324) | def setFocusPolicy(self, policy: PySide6.QtCore.Qt.FocusPolicy, /) -> ... method setHeight (line 325) | def setHeight(self, arg__1: float, /) -> None: ... method setImplicitHeight (line 326) | def setImplicitHeight(self, arg__1: float, /) -> None: ... method setImplicitSize (line 327) | def setImplicitSize(self, arg__1: float, arg__2: float, /) -> None: ... method setImplicitWidth (line 328) | def setImplicitWidth(self, arg__1: float, /) -> None: ... method setKeepMouseGrab (line 329) | def setKeepMouseGrab(self, arg__1: bool, /) -> None: ... method setKeepTouchGrab (line 330) | def setKeepTouchGrab(self, arg__1: bool, /) -> None: ... method setOpacity (line 331) | def setOpacity(self, arg__1: float, /) -> None: ... method setParentItem (line 332) | def setParentItem(self, parent: QQuickItem, /) -> None: ... method setPosition (line 333) | def setPosition(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.... method setRotation (line 334) | def setRotation(self, arg__1: float, /) -> None: ... method setScale (line 335) | def setScale(self, arg__1: float, /) -> None: ... method setSize (line 336) | def setSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSize, ... method setSmooth (line 337) | def setSmooth(self, arg__1: bool, /) -> None: ... method setState (line 338) | def setState(self, arg__1: str, /) -> None: ... method setTransformOrigin (line 339) | def setTransformOrigin(self, arg__1: QQuickItem.TransformOrigin, /) ->... method setTransformOriginPoint (line 340) | def setTransformOriginPoint(self, arg__1: PySide6.QtCore.QPointF | PyS... method setVisible (line 341) | def setVisible(self, arg__1: bool, /) -> None: ... method setWidth (line 342) | def setWidth(self, arg__1: float, /) -> None: ... method setX (line 343) | def setX(self, arg__1: float, /) -> None: ... method setY (line 344) | def setY(self, arg__1: float, /) -> None: ... method setZ (line 345) | def setZ(self, arg__1: float, /) -> None: ... method size (line 346) | def size(self, /) -> PySide6.QtCore.QSizeF: ... method smooth (line 347) | def smooth(self, /) -> bool: ... method stackAfter (line 348) | def stackAfter(self, arg__1: QQuickItem, /) -> None: ... method stackBefore (line 349) | def stackBefore(self, arg__1: QQuickItem, /) -> None: ... method state (line 350) | def state(self, /) -> str: ... method textureProvider (line 351) | def textureProvider(self, /) -> QSGTextureProvider: ... method touchEvent (line 352) | def touchEvent(self, event: PySide6.QtGui.QTouchEvent, /) -> None: ... method touchUngrabEvent (line 353) | def touchUngrabEvent(self, /) -> None: ... method transformOrigin (line 354) | def transformOrigin(self, /) -> QQuickItem.TransformOrigin: ... method transformOriginPoint (line 355) | def transformOriginPoint(self, /) -> PySide6.QtCore.QPointF: ... method ungrabMouse (line 356) | def ungrabMouse(self, /) -> None: ... method ungrabTouchPoints (line 357) | def ungrabTouchPoints(self, /) -> None: ... method unsetCursor (line 358) | def unsetCursor(self, /) -> None: ... method update (line 359) | def update(self, /) -> None: ... method updateInputMethod (line 360) | def updateInputMethod(self, /, queries: PySide6.QtCore.Qt.InputMethodQ... method updatePaintNode (line 361) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... method updatePolish (line 362) | def updatePolish(self, /) -> None: ... method viewportItem (line 363) | def viewportItem(self, /) -> QQuickItem: ... method wheelEvent (line 364) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... method width (line 365) | def width(self, /) -> float: ... method widthValid (line 366) | def widthValid(self, /) -> bool: ... method window (line 367) | def window(self, /) -> QQuickWindow: ... method x (line 368) | def x(self, /) -> float: ... method y (line 369) | def y(self, /) -> float: ... method z (line 370) | def z(self, /) -> float: ... class QQuickItemGrabResult (line 372) | class QQuickItemGrabResult(PySide6.QtCore.QObject): method __init__ (line 375) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method event (line 376) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method image (line 377) | def image(self, /) -> PySide6.QtGui.QImage: ... method saveToFile (line 379) | def saveToFile(self, fileName: str, /) -> bool: ... method saveToFile (line 381) | def saveToFile(self, fileName: PySide6.QtCore.QUrl | str, /) -> bool: ... method url (line 382) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QQuickOpenGLUtils (line 384) | class QQuickOpenGLUtils(shiboken6.Object): method __init__ (line 385) | def __init__(self, *args, **kwargs) -> None: ... method resetOpenGLState (line 387) | def resetOpenGLState() -> None: ... class QQuickPaintedItem (line 389) | class QQuickPaintedItem(QQuickItem): class PerformanceHint (line 390) | class PerformanceHint(enum.Flag): class RenderTarget (line 393) | class RenderTarget(enum.Enum): method __init__ (line 403) | def __init__(self, /, parent: QQuickItem | None = ..., *, contentsSize... method antialiasing (line 404) | def antialiasing(self, /) -> bool: ... method contentsBoundingRect (line 405) | def contentsBoundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contentsScale (line 406) | def contentsScale(self, /) -> float: ... method contentsSize (line 407) | def contentsSize(self, /) -> PySide6.QtCore.QSize: ... method fillColor (line 408) | def fillColor(self, /) -> PySide6.QtGui.QColor: ... method isTextureProvider (line 409) | def isTextureProvider(self, /) -> bool: ... method mipmap (line 410) | def mipmap(self, /) -> bool: ... method opaquePainting (line 411) | def opaquePainting(self, /) -> bool: ... method paint (line 412) | def paint(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method performanceHints (line 413) | def performanceHints(self, /) -> QQuickPaintedItem.PerformanceHint: ... method releaseResources (line 414) | def releaseResources(self, /) -> None: ... method renderTarget (line 415) | def renderTarget(self, /) -> QQuickPaintedItem.RenderTarget: ... method resetContentsSize (line 416) | def resetContentsSize(self, /) -> None: ... method setAntialiasing (line 417) | def setAntialiasing(self, enable: bool, /) -> None: ... method setContentsScale (line 418) | def setContentsScale(self, arg__1: float, /) -> None: ... method setContentsSize (line 419) | def setContentsSize(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method setFillColor (line 420) | def setFillColor(self, arg__1: Union[PySide6.QtGui.QColor, str, PySide... method setMipmap (line 421) | def setMipmap(self, enable: bool, /) -> None: ... method setOpaquePainting (line 422) | def setOpaquePainting(self, opaque: bool, /) -> None: ... method setPerformanceHint (line 423) | def setPerformanceHint(self, hint: QQuickPaintedItem.PerformanceHint, ... method setPerformanceHints (line 424) | def setPerformanceHints(self, hints: QQuickPaintedItem.PerformanceHint... method setRenderTarget (line 425) | def setRenderTarget(self, target: QQuickPaintedItem.RenderTarget, /) -... method setTextureSize (line 426) | def setTextureSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method textureProvider (line 427) | def textureProvider(self, /) -> QSGTextureProvider: ... method textureSize (line 428) | def textureSize(self, /) -> PySide6.QtCore.QSize: ... method update (line 429) | def update(self, /, rect: PySide6.QtCore.QRect = ...) -> None: ... method updatePaintNode (line 430) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... class QQuickRenderControl (line 432) | class QQuickRenderControl(PySide6.QtCore.QObject): method __init__ (line 436) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method beginFrame (line 437) | def beginFrame(self, /) -> None: ... method commandBuffer (line 438) | def commandBuffer(self, /) -> PySide6.QtGui.QRhiCommandBuffer: ... method endFrame (line 439) | def endFrame(self, /) -> None: ... method initialize (line 440) | def initialize(self, /) -> bool: ... method invalidate (line 441) | def invalidate(self, /) -> None: ... method polishItems (line 442) | def polishItems(self, /) -> None: ... method prepareThread (line 443) | def prepareThread(self, targetThread: PySide6.QtCore.QThread, /) -> No... method render (line 444) | def render(self, /) -> None: ... method renderWindow (line 445) | def renderWindow(self, offset: PySide6.QtCore.QPoint, /) -> PySide6.Qt... method renderWindowFor (line 447) | def renderWindowFor(win: QQuickWindow, /, offset: PySide6.QtCore.QPoin... method rhi (line 448) | def rhi(self, /) -> PySide6.QtGui.QRhi: ... method samples (line 449) | def samples(self, /) -> int: ... method setSamples (line 450) | def setSamples(self, sampleCount: int, /) -> None: ... method sync (line 451) | def sync(self, /) -> bool: ... method window (line 452) | def window(self, /) -> QQuickWindow: ... class QQuickRenderTarget (line 454) | class QQuickRenderTarget(shiboken6.Object): class Flag (line 455) | class Flag(enum.Flag): method __init__ (line 458) | def __init__(self, other: QQuickRenderTarget, /) -> None: ... method __init__ (line 460) | def __init__(self, /) -> None: ... method depthTexture (line 461) | def depthTexture(self, /) -> PySide6.QtGui.QRhiTexture: ... method devicePixelRatio (line 462) | def devicePixelRatio(self, /) -> float: ... method fromOpenGLRenderBuffer (line 464) | def fromOpenGLRenderBuffer(renderbufferId: int, pixelSize: PySide6.QtC... method fromOpenGLTexture (line 467) | def fromOpenGLTexture(textureId: int, format: int, pixelSize: PySide6.... method fromOpenGLTexture (line 470) | def fromOpenGLTexture(textureId: int, format: int, pixelSize: PySide6.... method fromOpenGLTexture (line 473) | def fromOpenGLTexture(textureId: int, pixelSize: PySide6.QtCore.QSize,... method fromPaintDevice (line 475) | def fromPaintDevice(device: PySide6.QtGui.QPaintDevice, /) -> QQuickRe... method fromRhiRenderTarget (line 477) | def fromRhiRenderTarget(renderTarget: PySide6.QtGui.QRhiRenderTarget, ... method isNull (line 478) | def isNull(self, /) -> bool: ... method mirrorVertically (line 479) | def mirrorVertically(self, /) -> bool: ... method setDepthTexture (line 480) | def setDepthTexture(self, texture: PySide6.QtGui.QRhiTexture, /) -> No... method setDevicePixelRatio (line 481) | def setDevicePixelRatio(self, ratio: float, /) -> None: ... method setMirrorVertically (line 482) | def setMirrorVertically(self, enable: bool, /) -> None: ... method __bool__ (line 483) | def __bool__(self) -> bool: ... method __copy__ (line 484) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 485) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 486) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 487) | def __gt__(self, other: object) -> bool: ... method __le__ (line 488) | def __le__(self, other: object) -> bool: ... method __lt__ (line 489) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 490) | def __ne__(self, other: object) -> bool: ... class QQuickRhiItem (line 492) | class QQuickRhiItem(QQuickItem): class TextureFormat (line 493) | class TextureFormat(enum.Enum): method __init__ (line 507) | def __init__(self, /, parent: QQuickItem | None = ..., *, sampleCount:... method alphaBlending (line 508) | def alphaBlending(self, /) -> bool: ... method colorBufferFormat (line 509) | def colorBufferFormat(self, /) -> QQuickRhiItem.TextureFormat: ... method createRenderer (line 510) | def createRenderer(self, /) -> QQuickRhiItemRenderer: ... method effectiveColorBufferSize (line 511) | def effectiveColorBufferSize(self, /) -> PySide6.QtCore.QSize: ... method event (line 512) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method fixedColorBufferHeight (line 513) | def fixedColorBufferHeight(self, /) -> int: ... method fixedColorBufferWidth (line 514) | def fixedColorBufferWidth(self, /) -> int: ... method geometryChange (line 515) | def geometryChange(self, newGeometry: PySide6.QtCore.QRectF | PySide6.... method isAutoRenderTargetEnabled (line 516) | def isAutoRenderTargetEnabled(self, /) -> bool: ... method isMirrorVerticallyEnabled (line 517) | def isMirrorVerticallyEnabled(self, /) -> bool: ... method isTextureProvider (line 518) | def isTextureProvider(self, /) -> bool: ... method releaseResources (line 519) | def releaseResources(self, /) -> None: ... method sampleCount (line 520) | def sampleCount(self, /) -> int: ... method setAlphaBlending (line 521) | def setAlphaBlending(self, enable: bool, /) -> None: ... method setAutoRenderTarget (line 522) | def setAutoRenderTarget(self, enabled: bool, /) -> None: ... method setColorBufferFormat (line 523) | def setColorBufferFormat(self, format: QQuickRhiItem.TextureFormat, /)... method setFixedColorBufferHeight (line 524) | def setFixedColorBufferHeight(self, height: int, /) -> None: ... method setFixedColorBufferWidth (line 525) | def setFixedColorBufferWidth(self, width: int, /) -> None: ... method setMirrorVertically (line 526) | def setMirrorVertically(self, enable: bool, /) -> None: ... method setSampleCount (line 527) | def setSampleCount(self, samples: int, /) -> None: ... method textureProvider (line 528) | def textureProvider(self, /) -> QSGTextureProvider: ... method updatePaintNode (line 529) | def updatePaintNode(self, arg__1: QSGNode, arg__2: QQuickItem.UpdatePa... class QQuickRhiItemRenderer (line 531) | class QQuickRhiItemRenderer(shiboken6.Object): method __init__ (line 532) | def __init__(self, /) -> None: ... method colorTexture (line 533) | def colorTexture(self, /) -> PySide6.QtGui.QRhiTexture: ... method depthStencilBuffer (line 534) | def depthStencilBuffer(self, /) -> PySide6.QtGui.QRhiRenderBuffer: ... method initialize (line 535) | def initialize(self, cb: PySide6.QtGui.QRhiCommandBuffer, /) -> None: ... method msaaColorBuffer (line 536) | def msaaColorBuffer(self, /) -> PySide6.QtGui.QRhiRenderBuffer: ... method render (line 537) | def render(self, cb: PySide6.QtGui.QRhiCommandBuffer, /) -> None: ... method renderTarget (line 538) | def renderTarget(self, /) -> PySide6.QtGui.QRhiRenderTarget: ... method resolveTexture (line 539) | def resolveTexture(self, /) -> PySide6.QtGui.QRhiTexture: ... method rhi (line 540) | def rhi(self, /) -> PySide6.QtGui.QRhi: ... method synchronize (line 541) | def synchronize(self, item: QQuickRhiItem, /) -> None: ... method update (line 542) | def update(self, /) -> None: ... class QQuickTextDocument (line 544) | class QQuickTextDocument(PySide6.QtCore.QObject): class Status (line 545) | class Status(enum.Enum): method __init__ (line 560) | def __init__(self, parent: QQuickItem, /, *, source: PySide6.QtCore.QU... method errorString (line 561) | def errorString(self, /) -> str: ... method isModified (line 562) | def isModified(self, /) -> bool: ... method save (line 563) | def save(self, /) -> None: ... method saveAs (line 564) | def saveAs(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setModified (line 565) | def setModified(self, modified: bool, /) -> None: ... method setSource (line 566) | def setSource(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setTextDocument (line 567) | def setTextDocument(self, document: PySide6.QtGui.QTextDocument, /) ->... method source (line 568) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 569) | def status(self, /) -> QQuickTextDocument.Status: ... method textDocument (line 570) | def textDocument(self, /) -> PySide6.QtGui.QTextDocument: ... class QQuickTextureFactory (line 572) | class QQuickTextureFactory(PySide6.QtCore.QObject): method __init__ (line 574) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method createTexture (line 575) | def createTexture(self, window: QQuickWindow, /) -> QSGTexture: ... method image (line 576) | def image(self, /) -> PySide6.QtGui.QImage: ... method textureByteCount (line 577) | def textureByteCount(self, /) -> int: ... method textureFactoryForImage (line 579) | def textureFactoryForImage(image: PySide6.QtGui.QImage, /) -> QQuickTe... method textureSize (line 580) | def textureSize(self, /) -> PySide6.QtCore.QSize: ... class QQuickTransform (line 582) | class QQuickTransform(PySide6.QtCore.QObject): method __init__ (line 584) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method appendToItem (line 585) | def appendToItem(self, arg__1: QQuickItem, /) -> None: ... method applyTo (line 586) | def applyTo(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6.QtGui.QTr... method prependToItem (line 587) | def prependToItem(self, arg__1: QQuickItem, /) -> None: ... method update (line 588) | def update(self, /) -> None: ... class QQuickView (line 590) | class QQuickView(QQuickWindow): class ResizeMode (line 591) | class ResizeMode(enum.Enum): class Status (line 595) | class Status(enum.Enum): method __init__ (line 603) | def __init__(self, uri: str, typeName: str, /, parent: PySide6.QtGui.Q... method __init__ (line 605) | def __init__(self, engine: PySide6.QtQml.QQmlEngine, parent: PySide6.Q... method __init__ (line 607) | def __init__(self, source: PySide6.QtCore.QUrl | str, renderControl: Q... method __init__ (line 609) | def __init__(self, source: PySide6.QtCore.QUrl | str, /, parent: PySid... method __init__ (line 611) | def __init__(self, /, parent: PySide6.QtGui.QWindow | None = ..., *, r... method engine (line 612) | def engine(self, /) -> PySide6.QtQml.QQmlEngine: ... method errors (line 613) | def errors(self, /) -> List[PySide6.QtQml.QQmlError]: ... method initialSize (line 614) | def initialSize(self, /) -> PySide6.QtCore.QSize: ... method keyPressEvent (line 615) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 616) | def keyReleaseEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None:... method loadFromModule (line 617) | def loadFromModule(self, uri: str, typeName: str, /) -> None: ... method mouseMoveEvent (line 618) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 619) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 620) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method resizeEvent (line 621) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method resizeMode (line 622) | def resizeMode(self, /) -> QQuickView.ResizeMode: ... method rootContext (line 623) | def rootContext(self, /) -> PySide6.QtQml.QQmlContext: ... method rootObject (line 624) | def rootObject(self, /) -> QQuickItem: ... method setContent (line 625) | def setContent(self, url: PySide6.QtCore.QUrl | str, component: PySide... method setInitialProperties (line 626) | def setInitialProperties(self, initialProperties: Dict[str, Any], /) -... method setResizeMode (line 627) | def setResizeMode(self, arg__1: QQuickView.ResizeMode, /) -> None: ... method setSource (line 628) | def setSource(self, arg__1: PySide6.QtCore.QUrl | str, /) -> None: ... method sizeHint (line 629) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method source (line 630) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 631) | def status(self, /) -> QQuickView.Status: ... method timerEvent (line 632) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... class QQuickWindow (line 634) | class QQuickWindow(PySide6.QtGui.QWindow): class CreateTextureOption (line 635) | class CreateTextureOption(enum.Flag): class GraphicsStateInfo (line 642) | class GraphicsStateInfo(shiboken6.Object): method __init__ (line 646) | def __init__(self, GraphicsStateInfo: QQuickWindow.GraphicsStateInfo... method __init__ (line 648) | def __init__(self, /) -> None: ... method __copy__ (line 649) | def __copy__(self, /) -> typing_extensions.Self: ... class RenderStage (line 651) | class RenderStage(enum.Enum): class SceneGraphError (line 659) | class SceneGraphError(enum.Enum): class TextRenderType (line 662) | class TextRenderType(enum.Enum): method __init__ (line 687) | def __init__(self, renderControl: QQuickRenderControl, /, *, color: Py... method __init__ (line 689) | def __init__(self, /, parent: PySide6.QtGui.QWindow | None = ..., *, c... method accessibleRoot (line 690) | def accessibleRoot(self, /) -> PySide6.QtGui.QAccessibleInterface: ... method activeFocusItem (line 691) | def activeFocusItem(self, /) -> QQuickItem: ... method beginExternalCommands (line 692) | def beginExternalCommands(self, /) -> None: ... method closeEvent (line 693) | def closeEvent(self, arg__1: PySide6.QtGui.QCloseEvent, /) -> None: ... method color (line 694) | def color(self, /) -> PySide6.QtGui.QColor: ... method contentItem (line 695) | def contentItem(self, /) -> QQuickItem: ... method createImageNode (line 696) | def createImageNode(self, /) -> QSGImageNode: ... method createNinePatchNode (line 697) | def createNinePatchNode(self, /) -> QSGNinePatchNode: ... method createRectangleNode (line 698) | def createRectangleNode(self, /) -> QSGRectangleNode: ... method createTextNode (line 699) | def createTextNode(self, /) -> QSGTextNode: ... method createTextureFromImage (line 701) | def createTextureFromImage(self, image: PySide6.QtGui.QImage, options:... method createTextureFromImage (line 703) | def createTextureFromImage(self, image: PySide6.QtGui.QImage, /) -> QS... method createTextureFromRhiTexture (line 704) | def createTextureFromRhiTexture(self, texture: PySide6.QtGui.QRhiTextu... method effectiveDevicePixelRatio (line 705) | def effectiveDevicePixelRatio(self, /) -> float: ... method endExternalCommands (line 706) | def endExternalCommands(self, /) -> None: ... method event (line 707) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method exposeEvent (line 708) | def exposeEvent(self, arg__1: PySide6.QtGui.QExposeEvent, /) -> None: ... method focusInEvent (line 709) | def focusInEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusObject (line 710) | def focusObject(self, /) -> PySide6.QtCore.QObject: ... method focusOutEvent (line 711) | def focusOutEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None:... method grabWindow (line 712) | def grabWindow(self, /) -> PySide6.QtGui.QImage: ... method graphicsApi (line 714) | def graphicsApi() -> QSGRendererInterface.GraphicsApi: ... method graphicsConfiguration (line 715) | def graphicsConfiguration(self, /) -> QQuickGraphicsConfiguration: ... method graphicsDevice (line 716) | def graphicsDevice(self, /) -> QQuickGraphicsDevice: ... method graphicsStateInfo (line 717) | def graphicsStateInfo(self, /) -> QQuickWindow.GraphicsStateInfo: ... method hasDefaultAlphaBuffer (line 719) | def hasDefaultAlphaBuffer() -> bool: ... method hideEvent (line 720) | def hideEvent(self, arg__1: PySide6.QtGui.QHideEvent, /) -> None: ... method incubationController (line 721) | def incubationController(self, /) -> PySide6.QtQml.QQmlIncubationContr... method isPersistentGraphics (line 722) | def isPersistentGraphics(self, /) -> bool: ... method isPersistentSceneGraph (line 723) | def isPersistentSceneGraph(self, /) -> bool: ... method isSceneGraphInitialized (line 724) | def isSceneGraphInitialized(self, /) -> bool: ... method keyPressEvent (line 725) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 726) | def keyReleaseEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None:... method mouseDoubleClickEvent (line 727) | def mouseDoubleClickEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) ... method mouseGrabberItem (line 728) | def mouseGrabberItem(self, /) -> QQuickItem: ... method mouseMoveEvent (line 729) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 730) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 731) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method releaseResources (line 732) | def releaseResources(self, /) -> None: ... method renderTarget (line 733) | def renderTarget(self, /) -> QQuickRenderTarget: ... method rendererInterface (line 734) | def rendererInterface(self, /) -> QSGRendererInterface: ... method resizeEvent (line 735) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method rhi (line 736) | def rhi(self, /) -> PySide6.QtGui.QRhi: ... method sceneGraphBackend (line 738) | def sceneGraphBackend() -> str: ... method scheduleRenderJob (line 739) | def scheduleRenderJob(self, job: PySide6.QtCore.QRunnable, schedule: Q... method setColor (line 740) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setDefaultAlphaBuffer (line 742) | def setDefaultAlphaBuffer(useAlpha: bool, /) -> None: ... method setGraphicsApi (line 744) | def setGraphicsApi(api: QSGRendererInterface.GraphicsApi, /) -> None: ... method setGraphicsConfiguration (line 745) | def setGraphicsConfiguration(self, config: QQuickGraphicsConfiguration... method setGraphicsDevice (line 746) | def setGraphicsDevice(self, device: QQuickGraphicsDevice, /) -> None: ... method setPersistentGraphics (line 747) | def setPersistentGraphics(self, persistent: bool, /) -> None: ... method setPersistentSceneGraph (line 748) | def setPersistentSceneGraph(self, persistent: bool, /) -> None: ... method setRenderTarget (line 749) | def setRenderTarget(self, target: QQuickRenderTarget, /) -> None: ... method setSceneGraphBackend (line 751) | def setSceneGraphBackend(backend: str, /) -> None: ... method setTextRenderType (line 753) | def setTextRenderType(renderType: QQuickWindow.TextRenderType, /) -> N... method showEvent (line 754) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method swapChain (line 755) | def swapChain(self, /) -> PySide6.QtGui.QRhiSwapChain: ... method tabletEvent (line 756) | def tabletEvent(self, arg__1: PySide6.QtGui.QTabletEvent, /) -> None: ... method textRenderType (line 758) | def textRenderType() -> QQuickWindow.TextRenderType: ... method update (line 759) | def update(self, /) -> None: ... method wheelEvent (line 760) | def wheelEvent(self, arg__1: PySide6.QtGui.QWheelEvent, /) -> None: ... class QSGBasicGeometryNode (line 762) | class QSGBasicGeometryNode(QSGNode): method __init__ (line 763) | def __init__(self, type: QSGNode.NodeType, /) -> None: ... method clipList (line 764) | def clipList(self, /) -> QSGClipNode: ... method geometry (line 765) | def geometry(self, /) -> QSGGeometry: ... method matrix (line 766) | def matrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method setGeometry (line 767) | def setGeometry(self, geometry: QSGGeometry, /) -> None: ... method setRendererClipList (line 768) | def setRendererClipList(self, c: QSGClipNode, /) -> None: ... method setRendererMatrix (line 769) | def setRendererMatrix(self, m: PySide6.QtGui.QMatrix4x4 | PySide6.QtGu... class QSGClipNode (line 771) | class QSGClipNode(QSGBasicGeometryNode): method __init__ (line 772) | def __init__(self, /) -> None: ... method clipRect (line 773) | def clipRect(self, /) -> PySide6.QtCore.QRectF: ... method isRectangular (line 774) | def isRectangular(self, /) -> bool: ... method setClipRect (line 775) | def setClipRect(self, arg__1: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method setIsRectangular (line 776) | def setIsRectangular(self, rectHint: bool, /) -> None: ... class QSGDynamicTexture (line 778) | class QSGDynamicTexture(QSGTexture): method __init__ (line 780) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method updateTexture (line 781) | def updateTexture(self, /) -> bool: ... class QSGFlatColorMaterial (line 783) | class QSGFlatColorMaterial(QSGMaterial): method __init__ (line 784) | def __init__(self, /) -> None: ... method color (line 785) | def color(self, /) -> PySide6.QtGui.QColor: ... method compare (line 786) | def compare(self, other: QSGMaterial, /) -> int: ... method createShader (line 787) | def createShader(self, renderMode: QSGRendererInterface.RenderMode, /)... method setColor (line 788) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method type (line 789) | def type(self, /) -> QSGMaterialType: ... class QSGGeometry (line 791) | class QSGGeometry(shiboken6.Object): class Attribute (line 792) | class Attribute(shiboken6.Object): method __init__ (line 800) | def __init__(self, Attribute: QSGGeometry.Attribute, /) -> None: ... method __init__ (line 802) | def __init__(self, /) -> None: ... method create (line 804) | def create(pos: int, tupleSize: int, primitiveType: int, /, isPositi... method createWithAttributeType (line 806) | def createWithAttributeType(pos: int, tupleSize: int, primitiveType:... method __copy__ (line 807) | def __copy__(self, /) -> typing_extensions.Self: ... class AttributeSet (line 809) | class AttributeSet(shiboken6.Object): method __init__ (line 814) | def __init__(self, AttributeSet: QSGGeometry.AttributeSet, /) -> Non... method __init__ (line 816) | def __init__(self, /) -> None: ... method __copy__ (line 817) | def __copy__(self, /) -> typing_extensions.Self: ... class AttributeType (line 819) | class AttributeType(enum.Enum): class ColoredPoint2D (line 827) | class ColoredPoint2D(shiboken6.Object): method __init__ (line 835) | def __init__(self, ColoredPoint2D: QSGGeometry.ColoredPoint2D, /) ->... method __init__ (line 837) | def __init__(self, /) -> None: ... method set (line 838) | def set(self, nx: float, ny: float, nr: int, ng: int, nb: int, na: i... method __copy__ (line 839) | def __copy__(self, /) -> typing_extensions.Self: ... class DataPattern (line 841) | class DataPattern(enum.Enum): class DrawingMode (line 847) | class DrawingMode(enum.IntEnum): class Point2D (line 856) | class Point2D(shiboken6.Object): method __init__ (line 860) | def __init__(self, Point2D: QSGGeometry.Point2D, /) -> None: ... method __init__ (line 862) | def __init__(self, /) -> None: ... method set (line 863) | def set(self, nx: float, ny: float, /) -> None: ... method __copy__ (line 864) | def __copy__(self, /) -> typing_extensions.Self: ... class TexturedPoint2D (line 866) | class TexturedPoint2D(shiboken6.Object): method __init__ (line 872) | def __init__(self, TexturedPoint2D: QSGGeometry.TexturedPoint2D, /) ... method __init__ (line 874) | def __init__(self, /) -> None: ... method set (line 875) | def set(self, nx: float, ny: float, ntx: float, nty: float, /) -> No... method __copy__ (line 876) | def __copy__(self, /) -> typing_extensions.Self: ... class Type (line 878) | class Type(enum.Enum): method __init__ (line 890) | def __init__(self, attribs: QSGGeometry.AttributeSet, vertexCount: int... method allocate (line 891) | def allocate(self, vertexCount: int, /, indexCount: int | None = ...) ... method attributeCount (line 892) | def attributeCount(self, /) -> int: ... method attributes (line 893) | def attributes(self, /) -> QSGGeometry.Attribute: ... method defaultAttributes_ColoredPoint2D (line 895) | def defaultAttributes_ColoredPoint2D() -> QSGGeometry.AttributeSet: ... method defaultAttributes_Point2D (line 897) | def defaultAttributes_Point2D() -> QSGGeometry.AttributeSet: ... method defaultAttributes_TexturedPoint2D (line 899) | def defaultAttributes_TexturedPoint2D() -> QSGGeometry.AttributeSet: ... method drawingMode (line 900) | def drawingMode(self, /) -> int: ... method indexCount (line 901) | def indexCount(self, /) -> int: ... method indexData (line 902) | def indexData(self, /) -> int: ... method indexDataAsUInt (line 903) | def indexDataAsUInt(self, /) -> List[int]: ... method indexDataAsUShort (line 904) | def indexDataAsUShort(self, /) -> List[int]: ... method indexDataPattern (line 905) | def indexDataPattern(self, /) -> QSGGeometry.DataPattern: ... method indexType (line 906) | def indexType(self, /) -> int: ... method lineWidth (line 907) | def lineWidth(self, /) -> float: ... method markIndexDataDirty (line 908) | def markIndexDataDirty(self, /) -> None: ... method markVertexDataDirty (line 909) | def markVertexDataDirty(self, /) -> None: ... method setDrawingMode (line 910) | def setDrawingMode(self, mode: int, /) -> None: ... method setIndexCount (line 911) | def setIndexCount(self, count: int, /) -> None: ... method setIndexDataPattern (line 912) | def setIndexDataPattern(self, p: QSGGeometry.DataPattern, /) -> None: ... method setLineWidth (line 913) | def setLineWidth(self, w: float, /) -> None: ... method setVertexCount (line 914) | def setVertexCount(self, count: int, /) -> None: ... method setVertexDataAsPoint2D (line 915) | def setVertexDataAsPoint2D(self, points: typing.Iterable[QSGGeometry.P... method setVertexDataPattern (line 916) | def setVertexDataPattern(self, p: QSGGeometry.DataPattern, /) -> None:... method sizeOfIndex (line 917) | def sizeOfIndex(self, /) -> int: ... method sizeOfVertex (line 918) | def sizeOfVertex(self, /) -> int: ... method updateColoredRectGeometry (line 920) | def updateColoredRectGeometry(g: QSGGeometry, rect: PySide6.QtCore.QRe... method updateRectGeometry (line 922) | def updateRectGeometry(g: QSGGeometry, rect: PySide6.QtCore.QRectF | P... method updateTexturedRectGeometry (line 924) | def updateTexturedRectGeometry(g: QSGGeometry, rect: PySide6.QtCore.QR... method vertexCount (line 925) | def vertexCount(self, /) -> int: ... method vertexData (line 926) | def vertexData(self, /) -> int: ... method vertexDataAsColoredPoint2D (line 927) | def vertexDataAsColoredPoint2D(self, /) -> QSGGeometry.ColoredPoint2D:... method vertexDataAsPoint2D (line 928) | def vertexDataAsPoint2D(self, /) -> typing.Any: ... method vertexDataAsTexturedPoint2D (line 929) | def vertexDataAsTexturedPoint2D(self, /) -> QSGGeometry.TexturedPoint2... method vertexDataPattern (line 930) | def vertexDataPattern(self, /) -> QSGGeometry.DataPattern: ... class QSGGeometryNode (line 932) | class QSGGeometryNode(QSGBasicGeometryNode): method __init__ (line 933) | def __init__(self, /) -> None: ... method activeMaterial (line 934) | def activeMaterial(self, /) -> QSGMaterial: ... method inheritedOpacity (line 935) | def inheritedOpacity(self, /) -> float: ... method material (line 936) | def material(self, /) -> QSGMaterial: ... method opaqueMaterial (line 937) | def opaqueMaterial(self, /) -> QSGMaterial: ... method renderOrder (line 938) | def renderOrder(self, /) -> int: ... method setInheritedOpacity (line 939) | def setInheritedOpacity(self, opacity: float, /) -> None: ... method setMaterial (line 940) | def setMaterial(self, material: QSGMaterial, /) -> None: ... method setOpaqueMaterial (line 941) | def setOpaqueMaterial(self, material: QSGMaterial, /) -> None: ... method setRenderOrder (line 942) | def setRenderOrder(self, order: int, /) -> None: ... class QSGImageNode (line 944) | class QSGImageNode(QSGGeometryNode): class TextureCoordinatesTransformFlag (line 945) | class TextureCoordinatesTransformFlag(enum.Flag): method __init__ (line 949) | def __init__(self, /) -> None: ... method anisotropyLevel (line 950) | def anisotropyLevel(self, /) -> QSGTexture.AnisotropyLevel: ... method filtering (line 951) | def filtering(self, /) -> QSGTexture.Filtering: ... method mipmapFiltering (line 952) | def mipmapFiltering(self, /) -> QSGTexture.Filtering: ... method ownsTexture (line 953) | def ownsTexture(self, /) -> bool: ... method rebuildGeometry (line 955) | def rebuildGeometry(g: QSGGeometry, texture: QSGTexture, rect: PySide6... method rect (line 956) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setAnisotropyLevel (line 957) | def setAnisotropyLevel(self, level: QSGTexture.AnisotropyLevel, /) -> ... method setFiltering (line 958) | def setFiltering(self, filtering: QSGTexture.Filtering, /) -> None: ... method setMipmapFiltering (line 959) | def setMipmapFiltering(self, filtering: QSGTexture.Filtering, /) -> No... method setOwnsTexture (line 960) | def setOwnsTexture(self, owns: bool, /) -> None: ... method setRect (line 962) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRect (line 964) | def setRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method setSourceRect (line 966) | def setSourceRect(self, x: float, y: float, w: float, h: float, /) -> ... method setSourceRect (line 968) | def setSourceRect(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method setTexture (line 969) | def setTexture(self, texture: QSGTexture, /) -> None: ... method setTextureCoordinatesTransform (line 970) | def setTextureCoordinatesTransform(self, mode: QSGImageNode.TextureCoo... method sourceRect (line 971) | def sourceRect(self, /) -> PySide6.QtCore.QRectF: ... method texture (line 972) | def texture(self, /) -> QSGTexture: ... method textureCoordinatesTransform (line 973) | def textureCoordinatesTransform(self, /) -> QSGImageNode.TextureCoordi... class QSGMaterial (line 975) | class QSGMaterial(shiboken6.Object): class Flag (line 976) | class Flag(enum.Flag): method __init__ (line 986) | def __init__(self, /) -> None: ... method compare (line 987) | def compare(self, other: QSGMaterial, /) -> int: ... method createShader (line 988) | def createShader(self, renderMode: QSGRendererInterface.RenderMode, /)... method flags (line 989) | def flags(self, /) -> QSGMaterial.Flag: ... method setFlag (line 990) | def setFlag(self, flags: QSGMaterial.Flag, /, on: bool = ...) -> None:... method type (line 991) | def type(self, /) -> QSGMaterialType: ... method viewCount (line 992) | def viewCount(self, /) -> int: ... class QSGMaterialShader (line 994) | class QSGMaterialShader(shiboken6.Object): class Flag (line 995) | class Flag(enum.Flag): class GraphicsPipelineState (line 998) | class GraphicsPipelineState(shiboken6.Object): class BlendFactor (line 999) | class BlendFactor(enum.Enum): class BlendOp (line 1020) | class BlendOp(enum.Enum): class ColorMaskComponent (line 1027) | class ColorMaskComponent(enum.Flag): class CullMode (line 1033) | class CullMode(enum.Enum): class PolygonMode (line 1038) | class PolygonMode(enum.Enum): method __init__ (line 1054) | def __init__(self, GraphicsPipelineState: QSGMaterialShader.Graphics... method __init__ (line 1056) | def __init__(self, /) -> None: ... method __copy__ (line 1057) | def __copy__(self, /) -> typing_extensions.Self: ... class RenderState (line 1059) | class RenderState(shiboken6.Object): class DirtyState (line 1060) | class DirtyState(enum.Flag): method __init__ (line 1066) | def __init__(self, RenderState: QSGMaterialShader.RenderState, /) ->... method __init__ (line 1068) | def __init__(self, /) -> None: ... method combinedMatrix (line 1070) | def combinedMatrix(self, index: int, /) -> PySide6.QtGui.QMatrix4x4:... method combinedMatrix (line 1072) | def combinedMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method determinant (line 1073) | def determinant(self, /) -> float: ... method devicePixelRatio (line 1074) | def devicePixelRatio(self, /) -> float: ... method deviceRect (line 1075) | def deviceRect(self, /) -> PySide6.QtCore.QRect: ... method dirtyStates (line 1076) | def dirtyStates(self, /) -> QSGMaterialShader.RenderState.DirtyState... method isMatrixDirty (line 1077) | def isMatrixDirty(self, /) -> bool: ... method isOpacityDirty (line 1078) | def isOpacityDirty(self, /) -> bool: ... method modelViewMatrix (line 1079) | def modelViewMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method opacity (line 1080) | def opacity(self, /) -> float: ... method projectionMatrix (line 1082) | def projectionMatrix(self, index: int, /) -> PySide6.QtGui.QMatrix4x... method projectionMatrix (line 1084) | def projectionMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method projectionMatrixCount (line 1085) | def projectionMatrixCount(self, /) -> int: ... method resourceUpdateBatch (line 1086) | def resourceUpdateBatch(self, /) -> PySide6.QtGui.QRhiResourceUpdate... method rhi (line 1087) | def rhi(self, /) -> PySide6.QtGui.QRhi: ... method uniformData (line 1088) | def uniformData(self, /) -> PySide6.QtCore.QByteArray: ... method viewportRect (line 1089) | def viewportRect(self, /) -> PySide6.QtCore.QRect: ... method __copy__ (line 1090) | def __copy__(self, /) -> typing_extensions.Self: ... class Stage (line 1092) | class Stage(enum.Enum): method __init__ (line 1095) | def __init__(self, /) -> None: ... method combinedImageSamplerCount (line 1096) | def combinedImageSamplerCount(self, binding: int, /) -> int: ... method flags (line 1097) | def flags(self, /) -> QSGMaterialShader.Flag: ... method setFlag (line 1098) | def setFlag(self, flags: QSGMaterialShader.Flag, /, on: bool = ...) ->... method setFlags (line 1099) | def setFlags(self, flags: QSGMaterialShader.Flag, /) -> None: ... method setShaderFileName (line 1101) | def setShaderFileName(self, stage: QSGMaterialShader.Stage, filename: ... method setShaderFileName (line 1103) | def setShaderFileName(self, stage: QSGMaterialShader.Stage, filename: ... method updateGraphicsPipelineState (line 1104) | def updateGraphicsPipelineState(self, state: QSGMaterialShader.RenderS... method updateUniformData (line 1105) | def updateUniformData(self, state: QSGMaterialShader.RenderState, newM... class QSGMaterialType (line 1107) | class QSGMaterialType(shiboken6.Object): method __init__ (line 1108) | def __init__(self, /) -> None: ... class QSGNinePatchNode (line 1110) | class QSGNinePatchNode(QSGGeometryNode): method __init__ (line 1111) | def __init__(self, /) -> None: ... method rebuildGeometry (line 1113) | def rebuildGeometry(texture: QSGTexture, geometry: QSGGeometry, paddin... method setBounds (line 1114) | def setBounds(self, bounds: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setDevicePixelRatio (line 1115) | def setDevicePixelRatio(self, ratio: float, /) -> None: ... method setPadding (line 1116) | def setPadding(self, left: float, top: float, right: float, bottom: fl... method setTexture (line 1117) | def setTexture(self, texture: QSGTexture, /) -> None: ... method update (line 1118) | def update(self, /) -> None: ... class QSGNode (line 1120) | class QSGNode(shiboken6.Object): class DirtyStateBit (line 1121) | class DirtyStateBit(enum.Flag): class Flag (line 1133) | class Flag(enum.Flag): class NodeType (line 1141) | class NodeType(enum.Enum): method __init__ (line 1150) | def __init__(self, type: QSGNode.NodeType, /) -> None: ... method __init__ (line 1152) | def __init__(self, /) -> None: ... method appendChildNode (line 1153) | def appendChildNode(self, node: QSGNode, /) -> None: ... method childAtIndex (line 1154) | def childAtIndex(self, i: int, /) -> QSGNode: ... method childCount (line 1155) | def childCount(self, /) -> int: ... method clearDirty (line 1156) | def clearDirty(self, /) -> None: ... method dirtyState (line 1157) | def dirtyState(self, /) -> QSGNode.DirtyStateBit: ... method firstChild (line 1158) | def firstChild(self, /) -> QSGNode: ... method flags (line 1159) | def flags(self, /) -> QSGNode.Flag: ... method insertChildNodeAfter (line 1160) | def insertChildNodeAfter(self, node: QSGNode, after: QSGNode, /) -> No... method insertChildNodeBefore (line 1161) | def insertChildNodeBefore(self, node: QSGNode, before: QSGNode, /) -> ... method isSubtreeBlocked (line 1162) | def isSubtreeBlocked(self, /) -> bool: ... method lastChild (line 1163) | def lastChild(self, /) -> QSGNode: ... method markDirty (line 1164) | def markDirty(self, bits: QSGNode.DirtyStateBit, /) -> None: ... method nextSibling (line 1165) | def nextSibling(self, /) -> QSGNode: ... method parent (line 1166) | def parent(self, /) -> QSGNode: ... method prependChildNode (line 1167) | def prependChildNode(self, node: QSGNode, /) -> None: ... method preprocess (line 1168) | def preprocess(self, /) -> None: ... method previousSibling (line 1169) | def previousSibling(self, /) -> QSGNode: ... method removeAllChildNodes (line 1170) | def removeAllChildNodes(self, /) -> None: ... method removeChildNode (line 1171) | def removeChildNode(self, node: QSGNode, /) -> None: ... method reparentChildNodesTo (line 1172) | def reparentChildNodesTo(self, newParent: QSGNode, /) -> None: ... method setFlag (line 1173) | def setFlag(self, arg__1: QSGNode.Flag, /, arg__2: bool = ...) -> None... method setFlags (line 1174) | def setFlags(self, arg__1: QSGNode.Flag, /, arg__2: bool = ...) -> Non... method type (line 1175) | def type(self, /) -> QSGNode.NodeType: ... class QSGNodeVisitor (line 1177) | class QSGNodeVisitor(shiboken6.Object): method __init__ (line 1178) | def __init__(self, /) -> None: ... method enterClipNode (line 1179) | def enterClipNode(self, arg__1: QSGClipNode, /) -> None: ... method enterGeometryNode (line 1180) | def enterGeometryNode(self, arg__1: QSGGeometryNode, /) -> None: ... method enterOpacityNode (line 1181) | def enterOpacityNode(self, arg__1: QSGOpacityNode, /) -> None: ... method enterTransformNode (line 1182) | def enterTransformNode(self, arg__1: QSGTransformNode, /) -> None: ... method leaveClipNode (line 1183) | def leaveClipNode(self, arg__1: QSGClipNode, /) -> None: ... method leaveGeometryNode (line 1184) | def leaveGeometryNode(self, arg__1: QSGGeometryNode, /) -> None: ... method leaveOpacityNode (line 1185) | def leaveOpacityNode(self, arg__1: QSGOpacityNode, /) -> None: ... method leaveTransformNode (line 1186) | def leaveTransformNode(self, arg__1: QSGTransformNode, /) -> None: ... method visitChildren (line 1187) | def visitChildren(self, n: QSGNode, /) -> None: ... method visitNode (line 1188) | def visitNode(self, n: QSGNode, /) -> None: ... class QSGOpacityNode (line 1190) | class QSGOpacityNode(QSGNode): method __init__ (line 1191) | def __init__(self, /) -> None: ... method combinedOpacity (line 1192) | def combinedOpacity(self, /) -> float: ... method isSubtreeBlocked (line 1193) | def isSubtreeBlocked(self, /) -> bool: ... method opacity (line 1194) | def opacity(self, /) -> float: ... method setCombinedOpacity (line 1195) | def setCombinedOpacity(self, opacity: float, /) -> None: ... method setOpacity (line 1196) | def setOpacity(self, opacity: float, /) -> None: ... class QSGOpaqueTextureMaterial (line 1198) | class QSGOpaqueTextureMaterial(QSGMaterial): method __init__ (line 1206) | def __init__(self, /) -> None: ... method anisotropyLevel (line 1207) | def anisotropyLevel(self, /) -> QSGTexture.AnisotropyLevel: ... method compare (line 1208) | def compare(self, other: QSGMaterial, /) -> int: ... method createShader (line 1209) | def createShader(self, renderMode: QSGRendererInterface.RenderMode, /)... method filtering (line 1210) | def filtering(self, /) -> QSGTexture.Filtering: ... method horizontalWrapMode (line 1211) | def horizontalWrapMode(self, /) -> QSGTexture.WrapMode: ... method mipmapFiltering (line 1212) | def mipmapFiltering(self, /) -> QSGTexture.Filtering: ... method setAnisotropyLevel (line 1213) | def setAnisotropyLevel(self, level: QSGTexture.AnisotropyLevel, /) -> ... method setFiltering (line 1214) | def setFiltering(self, filteringType: QSGTexture.Filtering, /) -> None... method setHorizontalWrapMode (line 1215) | def setHorizontalWrapMode(self, mode: QSGTexture.WrapMode, /) -> None:... method setMipmapFiltering (line 1216) | def setMipmapFiltering(self, filteringType: QSGTexture.Filtering, /) -... method setTexture (line 1217) | def setTexture(self, texture: QSGTexture, /) -> None: ... method setVerticalWrapMode (line 1218) | def setVerticalWrapMode(self, mode: QSGTexture.WrapMode, /) -> None: ... method texture (line 1219) | def texture(self, /) -> QSGTexture: ... method type (line 1220) | def type(self, /) -> QSGMaterialType: ... method verticalWrapMode (line 1221) | def verticalWrapMode(self, /) -> QSGTexture.WrapMode: ... class QSGRectangleNode (line 1223) | class QSGRectangleNode(QSGGeometryNode): method __init__ (line 1224) | def __init__(self, /) -> None: ... method color (line 1225) | def color(self, /) -> PySide6.QtGui.QColor: ... method rect (line 1226) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setColor (line 1227) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setRect (line 1229) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRect (line 1231) | def setRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... class QSGRenderNode (line 1233) | class QSGRenderNode(QSGNode): class RenderState (line 1234) | class RenderState(shiboken6.Object): method __init__ (line 1235) | def __init__(self, /) -> None: ... method clipRegion (line 1236) | def clipRegion(self, /) -> PySide6.QtGui.QRegion: ... method get (line 1237) | def get(self, state: bytes | bytearray | memoryview, /) -> int: ... method projectionMatrix (line 1238) | def projectionMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method scissorEnabled (line 1239) | def scissorEnabled(self, /) -> bool: ... method scissorRect (line 1240) | def scissorRect(self, /) -> PySide6.QtCore.QRect: ... method stencilEnabled (line 1241) | def stencilEnabled(self, /) -> bool: ... method stencilValue (line 1242) | def stencilValue(self, /) -> int: ... class RenderingFlag (line 1244) | class RenderingFlag(enum.Flag): class StateFlag (line 1250) | class StateFlag(enum.Flag): method __init__ (line 1259) | def __init__(self, /) -> None: ... method changedStates (line 1260) | def changedStates(self, /) -> QSGRenderNode.StateFlag: ... method clipList (line 1261) | def clipList(self, /) -> QSGClipNode: ... method commandBuffer (line 1262) | def commandBuffer(self, /) -> PySide6.QtGui.QRhiCommandBuffer: ... method flags (line 1263) | def flags(self, /) -> QSGRenderNode.RenderingFlag: ... # type: ignore... method inheritedOpacity (line 1264) | def inheritedOpacity(self, /) -> float: ... method matrix (line 1265) | def matrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method prepare (line 1266) | def prepare(self, /) -> None: ... method projectionMatrix (line 1268) | def projectionMatrix(self, index: int, /) -> PySide6.QtGui.QMatrix4x4:... method projectionMatrix (line 1270) | def projectionMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method rect (line 1271) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method releaseResources (line 1272) | def releaseResources(self, /) -> None: ... method render (line 1273) | def render(self, state: QSGRenderNode.RenderState, /) -> None: ... method renderTarget (line 1274) | def renderTarget(self, /) -> PySide6.QtGui.QRhiRenderTarget: ... class QSGRendererInterface (line 1276) | class QSGRendererInterface(shiboken6.Object): class GraphicsApi (line 1277) | class GraphicsApi(enum.Enum): class RenderMode (line 1293) | class RenderMode(enum.Enum): class Resource (line 1298) | class Resource(enum.Enum): class ShaderCompilationType (line 1317) | class ShaderCompilationType(enum.Flag): class ShaderSourceType (line 1321) | class ShaderSourceType(enum.Flag): class ShaderType (line 1326) | class ShaderType(enum.Enum): method __init__ (line 1331) | def __init__(self, /) -> None: ... method getResource (line 1333) | def getResource(self, window: QQuickWindow, resource: QSGRendererInter... method getResource (line 1335) | def getResource(self, window: QQuickWindow, resource: bytes | bytearra... method graphicsApi (line 1336) | def graphicsApi(self, /) -> QSGRendererInterface.GraphicsApi: ... method isApiRhiBased (line 1338) | def isApiRhiBased(api: QSGRendererInterface.GraphicsApi, /) -> bool: ... method shaderCompilationType (line 1339) | def shaderCompilationType(self, /) -> QSGRendererInterface.ShaderCompi... method shaderSourceType (line 1340) | def shaderSourceType(self, /) -> QSGRendererInterface.ShaderSourceType... method shaderType (line 1341) | def shaderType(self, /) -> QSGRendererInterface.ShaderType: ... class QSGRootNode (line 1343) | class QSGRootNode(QSGNode): method __init__ (line 1344) | def __init__(self, /) -> None: ... class QSGSimpleRectNode (line 1346) | class QSGSimpleRectNode(QSGGeometryNode): method __init__ (line 1348) | def __init__(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method __init__ (line 1350) | def __init__(self, /) -> None: ... method color (line 1351) | def color(self, /) -> PySide6.QtGui.QColor: ... method rect (line 1352) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setColor (line 1353) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setRect (line 1355) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRect (line 1357) | def setRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... class QSGSimpleTextureNode (line 1359) | class QSGSimpleTextureNode(QSGGeometryNode): class TextureCoordinatesTransformFlag (line 1360) | class TextureCoordinatesTransformFlag(enum.Flag): method __init__ (line 1364) | def __init__(self, /) -> None: ... method filtering (line 1365) | def filtering(self, /) -> QSGTexture.Filtering: ... method ownsTexture (line 1366) | def ownsTexture(self, /) -> bool: ... method rect (line 1367) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setFiltering (line 1368) | def setFiltering(self, filtering: QSGTexture.Filtering, /) -> None: ... method setOwnsTexture (line 1369) | def setOwnsTexture(self, owns: bool, /) -> None: ... method setRect (line 1371) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRect (line 1373) | def setRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method setSourceRect (line 1375) | def setSourceRect(self, x: float, y: float, w: float, h: float, /) -> ... method setSourceRect (line 1377) | def setSourceRect(self, r: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method setTexture (line 1378) | def setTexture(self, texture: QSGTexture, /) -> None: ... method setTextureCoordinatesTransform (line 1379) | def setTextureCoordinatesTransform(self, mode: QSGSimpleTextureNode.Te... method sourceRect (line 1380) | def sourceRect(self, /) -> PySide6.QtCore.QRectF: ... method texture (line 1381) | def texture(self, /) -> QSGTexture: ... method textureCoordinatesTransform (line 1382) | def textureCoordinatesTransform(self, /) -> QSGSimpleTextureNode.Textu... class QSGTextNode (line 1384) | class QSGTextNode(QSGTransformNode): class RenderType (line 1385) | class RenderType(enum.Enum): class TextStyle (line 1390) | class TextStyle(enum.Enum): method __init__ (line 1395) | def __init__(self, /) -> None: ... method addTextDocument (line 1396) | def addTextDocument(self, position: PySide6.QtCore.QPointF | PySide6.Q... method addTextLayout (line 1397) | def addTextLayout(self, position: PySide6.QtCore.QPointF | PySide6.QtC... method clear (line 1398) | def clear(self, /) -> None: ... method color (line 1399) | def color(self, /) -> PySide6.QtGui.QColor: ... method filtering (line 1400) | def filtering(self, /) -> QSGTexture.Filtering: ... method linkColor (line 1401) | def linkColor(self, /) -> PySide6.QtGui.QColor: ... method renderType (line 1402) | def renderType(self, /) -> QSGTextNode.RenderType: ... method renderTypeQuality (line 1403) | def renderTypeQuality(self, /) -> int: ... method selectionColor (line 1404) | def selectionColor(self, /) -> PySide6.QtGui.QColor: ... method selectionTextColor (line 1405) | def selectionTextColor(self, /) -> PySide6.QtGui.QColor: ... method setColor (line 1406) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setFiltering (line 1407) | def setFiltering(self, arg__1: QSGTexture.Filtering, /) -> None: ... method setLinkColor (line 1408) | def setLinkColor(self, linkColor: Union[PySide6.QtGui.QColor, str, PyS... method setRenderType (line 1409) | def setRenderType(self, renderType: QSGTextNode.RenderType, /) -> None... method setRenderTypeQuality (line 1410) | def setRenderTypeQuality(self, renderTypeQuality: int, /) -> None: ... method setSelectionColor (line 1411) | def setSelectionColor(self, selectionColor: Union[PySide6.QtGui.QColor... method setSelectionTextColor (line 1412) | def setSelectionTextColor(self, selectionTextColor: Union[PySide6.QtGu... method setStyleColor (line 1413) | def setStyleColor(self, styleColor: Union[PySide6.QtGui.QColor, str, P... method setTextStyle (line 1414) | def setTextStyle(self, textStyle: QSGTextNode.TextStyle, /) -> None: ... method setViewport (line 1415) | def setViewport(self, viewport: PySide6.QtCore.QRectF | PySide6.QtCore... method styleColor (line 1416) | def styleColor(self, /) -> PySide6.QtGui.QColor: ... method textStyle (line 1417) | def textStyle(self, /) -> QSGTextNode.TextStyle: ... method viewport (line 1418) | def viewport(self, /) -> PySide6.QtCore.QRectF: ... class QSGTexture (line 1420) | class QSGTexture(PySide6.QtCore.QObject): class AnisotropyLevel (line 1421) | class AnisotropyLevel(enum.Enum): class Filtering (line 1428) | class Filtering(enum.Enum): class WrapMode (line 1433) | class WrapMode(enum.Enum): method __init__ (line 1438) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method anisotropyLevel (line 1439) | def anisotropyLevel(self, /) -> QSGTexture.AnisotropyLevel: ... method commitTextureOperations (line 1440) | def commitTextureOperations(self, rhi: PySide6.QtGui.QRhi, resourceUpd... method comparisonKey (line 1441) | def comparisonKey(self, /) -> int: ... method convertToNormalizedSourceRect (line 1442) | def convertToNormalizedSourceRect(self, rect: PySide6.QtCore.QRectF | ... method filtering (line 1443) | def filtering(self, /) -> QSGTexture.Filtering: ... method hasAlphaChannel (line 1444) | def hasAlphaChannel(self, /) -> bool: ... method hasMipmaps (line 1445) | def hasMipmaps(self, /) -> bool: ... method horizontalWrapMode (line 1446) | def horizontalWrapMode(self, /) -> QSGTexture.WrapMode: ... method isAtlasTexture (line 1447) | def isAtlasTexture(self, /) -> bool: ... method mipmapFiltering (line 1448) | def mipmapFiltering(self, /) -> QSGTexture.Filtering: ... method normalizedTextureSubRect (line 1449) | def normalizedTextureSubRect(self, /) -> PySide6.QtCore.QRectF: ... method removedFromAtlas (line 1450) | def removedFromAtlas(self, /, resourceUpdates: PySide6.QtGui.QRhiResou... method resolveInterface (line 1451) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method rhiTexture (line 1452) | def rhiTexture(self, /) -> PySide6.QtGui.QRhiTexture: ... method setAnisotropyLevel (line 1453) | def setAnisotropyLevel(self, level: QSGTexture.AnisotropyLevel, /) -> ... method setFiltering (line 1454) | def setFiltering(self, filter: QSGTexture.Filtering, /) -> None: ... method setHorizontalWrapMode (line 1455) | def setHorizontalWrapMode(self, hwrap: QSGTexture.WrapMode, /) -> None... method setMipmapFiltering (line 1456) | def setMipmapFiltering(self, filter: QSGTexture.Filtering, /) -> None:... method setVerticalWrapMode (line 1457) | def setVerticalWrapMode(self, vwrap: QSGTexture.WrapMode, /) -> None: ... method textureSize (line 1458) | def textureSize(self, /) -> PySide6.QtCore.QSize: ... method verticalWrapMode (line 1459) | def verticalWrapMode(self, /) -> QSGTexture.WrapMode: ... class QSGTextureMaterial (line 1461) | class QSGTextureMaterial(QSGOpaqueTextureMaterial): method __init__ (line 1462) | def __init__(self, /) -> None: ... method createShader (line 1463) | def createShader(self, renderMode: QSGRendererInterface.RenderMode, /)... method type (line 1464) | def type(self, /) -> QSGMaterialType: ... class QSGTextureProvider (line 1466) | class QSGTextureProvider(PySide6.QtCore.QObject): method __init__ (line 1469) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method texture (line 1470) | def texture(self, /) -> QSGTexture: ... class QSGTransformNode (line 1472) | class QSGTransformNode(QSGNode): method __init__ (line 1473) | def __init__(self, /) -> None: ... method combinedMatrix (line 1474) | def combinedMatrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method matrix (line 1475) | def matrix(self, /) -> PySide6.QtGui.QMatrix4x4: ... method setCombinedMatrix (line 1476) | def setCombinedMatrix(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6... method setMatrix (line 1477) | def setMatrix(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6.QtGui.Q... class QSGVertexColorMaterial (line 1479) | class QSGVertexColorMaterial(QSGMaterial): method __init__ (line 1480) | def __init__(self, /) -> None: ... method compare (line 1481) | def compare(self, other: QSGMaterial, /) -> int: ... method createShader (line 1482) | def createShader(self, renderMode: QSGRendererInterface.RenderMode, /)... method type (line 1483) | def type(self, /) -> QSGMaterialType: ... class QSharedPointer_QQuickItemGrabResult (line 1485) | class QSharedPointer_QQuickItemGrabResult(shiboken6.Object): method __init__ (line 1487) | def __init__(self, pointee: QQuickItemGrabResult, /) -> None: ... method __init__ (line 1489) | def __init__(self, /) -> None: ... method data (line 1490) | def data(self, /) -> QQuickItemGrabResult: ... method reset (line 1492) | def reset(self, t: QQuickItemGrabResult, /) -> None: ... method reset (line 1494) | def reset(self, /) -> None: ... method __bool__ (line 1495) | def __bool__(self) -> bool: ... method __copy__ (line 1496) | def __copy__(self, /) -> typing_extensions.Self: ... method __dir__ (line 1497) | def __dir__(self) -> None: ... # type: ignore[override] method __eq__ (line 1498) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1499) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1500) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1501) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1502) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1503) | def __ne__(self, other: object) -> bool: ... FILE: pyside6/stubs/PySide6-stubs/QtQuick3D.pyi class QIntList (line 14) | class QIntList: method __init__ (line 16) | def __init__(self, *args, **kwargs) -> None: ... method append (line 17) | def append(self, *args, **kwargs): ... method capacity (line 18) | def capacity(self, *args, **kwargs): ... method clear (line 19) | def clear(self, *args, **kwargs): ... method constData (line 20) | def constData(self, *args, **kwargs): ... method data (line 21) | def data(self, *args, **kwargs): ... method pop_back (line 22) | def pop_back(self, *args, **kwargs): ... method pop_front (line 23) | def pop_front(self, *args, **kwargs): ... method prepend (line 24) | def prepend(self, *args, **kwargs): ... method push_back (line 25) | def push_back(self, *args, **kwargs): ... method push_front (line 26) | def push_front(self, *args, **kwargs): ... method removeFirst (line 27) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 28) | def removeLast(self, *args, **kwargs): ... method reserve (line 29) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 30) | def __delitem__(self, other) -> None: ... method __getitem__ (line 31) | def __getitem__(self, index): ... method __len__ (line 32) | def __len__(self) -> int: ... method __setitem__ (line 33) | def __setitem__(self, index, object) -> None: ... class QQuick3D (line 35) | class QQuick3D(shiboken6.Object): method __init__ (line 36) | def __init__(self, /) -> None: ... method idealSurfaceFormat (line 38) | def idealSurfaceFormat(samples: int = ...) -> PySide6.QtGui.QSurfaceFo... class QQuick3DGeometry (line 40) | class QQuick3DGeometry(QQuick3DObject): class Attribute (line 41) | class Attribute(shiboken6.Object): class ComponentType (line 42) | class ComponentType(enum.Enum): class Semantic (line 48) | class Semantic(enum.Enum): method __init__ (line 68) | def __init__(self, Attribute: QQuick3DGeometry.Attribute, /) -> None... method __init__ (line 70) | def __init__(self, /) -> None: ... method __copy__ (line 71) | def __copy__(self, /) -> typing_extensions.Self: ... class PrimitiveType (line 73) | class PrimitiveType(enum.Enum): class TargetAttribute (line 81) | class TargetAttribute(shiboken6.Object): method __init__ (line 86) | def __init__(self, TargetAttribute: QQuick3DGeometry.TargetAttribute... method __init__ (line 88) | def __init__(self, /) -> None: ... method __copy__ (line 89) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 93) | def __init__(self, /, parent: QQuick3DObject | None = ..., children: t... method addAttribute (line 95) | def addAttribute(self, semantic: QQuick3DGeometry.Attribute.Semantic, ... method addAttribute (line 97) | def addAttribute(self, att: QQuick3DGeometry.Attribute, /) -> None: ... method addSubset (line 98) | def addSubset(self, offset: int, count: int, boundsMin: PySide6.QtGui.... method addTargetAttribute (line 100) | def addTargetAttribute(self, targetId: int, semantic: QQuick3DGeometry... method addTargetAttribute (line 102) | def addTargetAttribute(self, att: QQuick3DGeometry.TargetAttribute, /)... method attribute (line 103) | def attribute(self, index: int, /) -> QQuick3DGeometry.Attribute: ... method attributeCount (line 104) | def attributeCount(self, /) -> int: ... method boundsMax (line 105) | def boundsMax(self, /) -> PySide6.QtGui.QVector3D: ... method boundsMin (line 106) | def boundsMin(self, /) -> PySide6.QtGui.QVector3D: ... method clear (line 107) | def clear(self, /) -> None: ... method indexData (line 108) | def indexData(self, /) -> PySide6.QtCore.QByteArray: ... method markAllDirty (line 109) | def markAllDirty(self, /) -> None: ... method primitiveType (line 110) | def primitiveType(self, /) -> QQuick3DGeometry.PrimitiveType: ... method setBounds (line 111) | def setBounds(self, min: PySide6.QtGui.QVector3D, max: PySide6.QtGui.Q... method setIndexData (line 113) | def setIndexData(self, offset: int, data: PySide6.QtCore.QByteArray | ... method setIndexData (line 115) | def setIndexData(self, data: PySide6.QtCore.QByteArray | bytes | bytea... method setPrimitiveType (line 116) | def setPrimitiveType(self, type: QQuick3DGeometry.PrimitiveType, /) ->... method setStride (line 117) | def setStride(self, stride: int, /) -> None: ... method setTargetData (line 119) | def setTargetData(self, offset: int, data: PySide6.QtCore.QByteArray |... method setTargetData (line 121) | def setTargetData(self, data: PySide6.QtCore.QByteArray | bytes | byte... method setVertexData (line 123) | def setVertexData(self, offset: int, data: PySide6.QtCore.QByteArray |... method setVertexData (line 125) | def setVertexData(self, data: PySide6.QtCore.QByteArray | bytes | byte... method stride (line 126) | def stride(self, /) -> int: ... method subsetBoundsMax (line 127) | def subsetBoundsMax(self, subset: int, /) -> PySide6.QtGui.QVector3D: ... method subsetBoundsMin (line 128) | def subsetBoundsMin(self, subset: int, /) -> PySide6.QtGui.QVector3D: ... method subsetCount (line 130) | def subsetCount(self, subset: int, /) -> int: ... method subsetCount (line 132) | def subsetCount(self, /) -> int: ... method subsetName (line 133) | def subsetName(self, subset: int, /) -> str: ... method subsetOffset (line 134) | def subsetOffset(self, subset: int, /) -> int: ... method targetAttribute (line 135) | def targetAttribute(self, index: int, /) -> QQuick3DGeometry.TargetAtt... method targetAttributeCount (line 136) | def targetAttributeCount(self, /) -> int: ... method targetData (line 137) | def targetData(self, /) -> PySide6.QtCore.QByteArray: ... method vertexData (line 138) | def vertexData(self, /) -> PySide6.QtCore.QByteArray: ... class QQuick3DInstancing (line 140) | class QQuick3DInstancing(QQuick3DObject): class InstanceTableEntry (line 141) | class InstanceTableEntry(shiboken6.Object): method __init__ (line 148) | def __init__(self, InstanceTableEntry: QQuick3DInstancing.InstanceTa... method __init__ (line 150) | def __init__(self, /) -> None: ... method getColor (line 151) | def getColor(self, /) -> PySide6.QtGui.QColor: ... method getPosition (line 152) | def getPosition(self, /) -> PySide6.QtGui.QVector3D: ... method getRotation (line 153) | def getRotation(self, /) -> PySide6.QtGui.QQuaternion: ... method getScale (line 154) | def getScale(self, /) -> PySide6.QtGui.QVector3D: ... method __copy__ (line 155) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 164) | def __init__(self, /, parent: QQuick3DObject | None = ..., *, instance... method calculateTableEntry (line 166) | def calculateTableEntry(position: PySide6.QtGui.QVector3D, scale: PySi... method calculateTableEntryFromQuaternion (line 168) | def calculateTableEntryFromQuaternion(position: PySide6.QtGui.QVector3... method depthSortingEnabled (line 169) | def depthSortingEnabled(self, /) -> bool: ... method getInstanceBuffer (line 170) | def getInstanceBuffer(self, /) -> Tuple[bool, str]: ... method hasTransparency (line 171) | def hasTransparency(self, /) -> bool: ... method instanceBuffer (line 172) | def instanceBuffer(self, /) -> Tuple[PySide6.QtCore.QByteArray, int]: ... method instanceColor (line 173) | def instanceColor(self, index: int, /) -> PySide6.QtGui.QColor: ... method instanceCountOverride (line 174) | def instanceCountOverride(self, /) -> int: ... method instanceCustomData (line 175) | def instanceCustomData(self, index: int, /) -> PySide6.QtGui.QVector4D... method instancePosition (line 176) | def instancePosition(self, index: int, /) -> PySide6.QtGui.QVector3D: ... method instanceRotation (line 177) | def instanceRotation(self, index: int, /) -> PySide6.QtGui.QQuaternion... method instanceScale (line 178) | def instanceScale(self, index: int, /) -> PySide6.QtGui.QVector3D: ... method markDirty (line 179) | def markDirty(self, /) -> None: ... method setDepthSortingEnabled (line 180) | def setDepthSortingEnabled(self, enabled: bool, /) -> None: ... method setHasTransparency (line 181) | def setHasTransparency(self, hasTransparency: bool, /) -> None: ... method setInstanceCountOverride (line 182) | def setInstanceCountOverride(self, instanceCountOverride: int, /) -> N... method setShadowBoundsMaximum (line 183) | def setShadowBoundsMaximum(self, newShadowBoundsMinimum: PySide6.QtGui... method setShadowBoundsMinimum (line 184) | def setShadowBoundsMinimum(self, newShadowBoundsMinimum: PySide6.QtGui... method shadowBoundsMaximum (line 185) | def shadowBoundsMaximum(self, /) -> PySide6.QtGui.QVector3D: ... method shadowBoundsMinimum (line 186) | def shadowBoundsMinimum(self, /) -> PySide6.QtGui.QVector3D: ... class QQuick3DObject (line 188) | class QQuick3DObject(PySide6.QtCore.QObject, PySide6.QtQml.QQmlParserSta... class ItemChange (line 189) | class ItemChange(enum.Enum): method __init__ (line 205) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method childItems (line 206) | def childItems(self, /) -> List[QQuick3DObject]: ... method classBegin (line 207) | def classBegin(self, /) -> None: ... method componentComplete (line 208) | def componentComplete(self, /) -> None: ... method isComponentComplete (line 209) | def isComponentComplete(self, /) -> bool: ... method markAllDirty (line 210) | def markAllDirty(self, /) -> None: ... method parentItem (line 211) | def parentItem(self, /) -> QQuick3DObject: ... method preSync (line 212) | def preSync(self, /) -> None: ... method setParentItem (line 213) | def setParentItem(self, parentItem: QQuick3DObject, /) -> None: ... method setState (line 214) | def setState(self, state: str, /) -> None: ... method state (line 215) | def state(self, /) -> str: ... method update (line 216) | def update(self, /) -> None: ... class QQuick3DRenderExtension (line 218) | class QQuick3DRenderExtension(QQuick3DObject): method __init__ (line 220) | def __init__(self, /, parent: QQuick3DObject | None = ..., children: t... class QQuick3DTextureData (line 222) | class QQuick3DTextureData(QQuick3DObject): class Format (line 223) | class Format(enum.Enum): method __init__ (line 263) | def __init__(self, /, parent: QQuick3DObject | None = ..., children: t... method depth (line 264) | def depth(self, /) -> int: ... method format (line 265) | def format(self, /) -> QQuick3DTextureData.Format: ... method hasTransparency (line 266) | def hasTransparency(self, /) -> bool: ... method markAllDirty (line 267) | def markAllDirty(self, /) -> None: ... method setDepth (line 268) | def setDepth(self, depth: int, /) -> None: ... method setFormat (line 269) | def setFormat(self, format: QQuick3DTextureData.Format, /) -> None: ... method setHasTransparency (line 270) | def setHasTransparency(self, hasTransparency: bool, /) -> None: ... method setSize (line 271) | def setSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setTextureData (line 272) | def setTextureData(self, data: PySide6.QtCore.QByteArray | bytes | byt... method size (line 273) | def size(self, /) -> PySide6.QtCore.QSize: ... method textureData (line 274) | def textureData(self, /) -> PySide6.QtCore.QByteArray: ... FILE: pyside6/stubs/PySide6-stubs/QtQuickControls2.pyi class QIntList (line 11) | class QIntList: method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method append (line 14) | def append(self, *args, **kwargs): ... method capacity (line 15) | def capacity(self, *args, **kwargs): ... method clear (line 16) | def clear(self, *args, **kwargs): ... method constData (line 17) | def constData(self, *args, **kwargs): ... method data (line 18) | def data(self, *args, **kwargs): ... method pop_back (line 19) | def pop_back(self, *args, **kwargs): ... method pop_front (line 20) | def pop_front(self, *args, **kwargs): ... method prepend (line 21) | def prepend(self, *args, **kwargs): ... method push_back (line 22) | def push_back(self, *args, **kwargs): ... method push_front (line 23) | def push_front(self, *args, **kwargs): ... method removeFirst (line 24) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 25) | def removeLast(self, *args, **kwargs): ... method reserve (line 26) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 27) | def __delitem__(self, other) -> None: ... method __getitem__ (line 28) | def __getitem__(self, index): ... method __len__ (line 29) | def __len__(self) -> int: ... method __setitem__ (line 30) | def __setitem__(self, index, object) -> None: ... class QQuickAttachedPropertyPropagator (line 32) | class QQuickAttachedPropertyPropagator(PySide6.QtCore.QObject): method __init__ (line 34) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method attachedChildren (line 35) | def attachedChildren(self, /) -> List[QQuickAttachedPropertyPropagator... method attachedParent (line 36) | def attachedParent(self, /) -> QQuickAttachedPropertyPropagator: ... method attachedParentChange (line 37) | def attachedParentChange(self, newParent: QQuickAttachedPropertyPropag... method initialize (line 38) | def initialize(self, /) -> None: ... class QQuickStyle (line 40) | class QQuickStyle(shiboken6.Object): method __init__ (line 41) | def __init__(self, /) -> None: ... method name (line 43) | def name() -> str: ... method setFallbackStyle (line 45) | def setFallbackStyle(style: str, /) -> None: ... method setStyle (line 47) | def setStyle(style: str, /) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtQuickTest.pyi class QIntList (line 9) | class QIntList: method __init__ (line 11) | def __init__(self, *args, **kwargs) -> None: ... method append (line 12) | def append(self, *args, **kwargs): ... method capacity (line 13) | def capacity(self, *args, **kwargs): ... method clear (line 14) | def clear(self, *args, **kwargs): ... method constData (line 15) | def constData(self, *args, **kwargs): ... method data (line 16) | def data(self, *args, **kwargs): ... method pop_back (line 17) | def pop_back(self, *args, **kwargs): ... method pop_front (line 18) | def pop_front(self, *args, **kwargs): ... method prepend (line 19) | def prepend(self, *args, **kwargs): ... method push_back (line 20) | def push_back(self, *args, **kwargs): ... method push_front (line 21) | def push_front(self, *args, **kwargs): ... method removeFirst (line 22) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 23) | def removeLast(self, *args, **kwargs): ... method reserve (line 24) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 25) | def __delitem__(self, other) -> None: ... method __getitem__ (line 26) | def __getitem__(self, index): ... method __len__ (line 27) | def __len__(self) -> int: ... method __setitem__ (line 28) | def __setitem__(self, index, object) -> None: ... function QUICK_TEST_MAIN (line 30) | def QUICK_TEST_MAIN(name: str, /, argv: typing.Iterable[str] = ..., dir:... function QUICK_TEST_MAIN_WITH_SETUP (line 31) | def QUICK_TEST_MAIN_WITH_SETUP(name: str, setup: type, /, argv: typing.I... FILE: pyside6/stubs/PySide6-stubs/QtQuickWidgets.pyi class QIntList (line 15) | class QIntList: method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method append (line 18) | def append(self, *args, **kwargs): ... method capacity (line 19) | def capacity(self, *args, **kwargs): ... method clear (line 20) | def clear(self, *args, **kwargs): ... method constData (line 21) | def constData(self, *args, **kwargs): ... method data (line 22) | def data(self, *args, **kwargs): ... method pop_back (line 23) | def pop_back(self, *args, **kwargs): ... method pop_front (line 24) | def pop_front(self, *args, **kwargs): ... method prepend (line 25) | def prepend(self, *args, **kwargs): ... method push_back (line 26) | def push_back(self, *args, **kwargs): ... method push_front (line 27) | def push_front(self, *args, **kwargs): ... method removeFirst (line 28) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 29) | def removeLast(self, *args, **kwargs): ... method reserve (line 30) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 31) | def __delitem__(self, other) -> None: ... method __getitem__ (line 32) | def __getitem__(self, index): ... method __len__ (line 33) | def __len__(self) -> int: ... method __setitem__ (line 34) | def __setitem__(self, index, object) -> None: ... class QQuickWidget (line 36) | class QQuickWidget(PySide6.QtWidgets.QWidget): class ResizeMode (line 37) | class ResizeMode(enum.Enum): class Status (line 41) | class Status(enum.Enum): method __init__ (line 50) | def __init__(self, uri: str, typeName: str, /, parent: PySide6.QtWidge... method __init__ (line 52) | def __init__(self, engine: PySide6.QtQml.QQmlEngine, parent: PySide6.Q... method __init__ (line 54) | def __init__(self, source: PySide6.QtCore.QUrl | str, /, parent: PySid... method __init__ (line 56) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method dragEnterEvent (line 57) | def dragEnterEvent(self, arg__1: PySide6.QtGui.QDragEnterEvent, /) -> ... method dragLeaveEvent (line 58) | def dragLeaveEvent(self, arg__1: PySide6.QtGui.QDragLeaveEvent, /) -> ... method dragMoveEvent (line 59) | def dragMoveEvent(self, arg__1: PySide6.QtGui.QDragMoveEvent, /) -> No... method dropEvent (line 60) | def dropEvent(self, arg__1: PySide6.QtGui.QDropEvent, /) -> None: ... method engine (line 61) | def engine(self, /) -> PySide6.QtQml.QQmlEngine: ... method errors (line 62) | def errors(self, /) -> List[PySide6.QtQml.QQmlError]: ... method event (line 63) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 64) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 65) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 66) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method format (line 67) | def format(self, /) -> PySide6.QtGui.QSurfaceFormat: ... method grabFramebuffer (line 68) | def grabFramebuffer(self, /) -> PySide6.QtGui.QImage: ... method hideEvent (line 69) | def hideEvent(self, arg__1: PySide6.QtGui.QHideEvent, /) -> None: ... method initialSize (line 70) | def initialSize(self, /) -> PySide6.QtCore.QSize: ... method keyPressEvent (line 71) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 72) | def keyReleaseEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None:... method loadFromModule (line 73) | def loadFromModule(self, uri: str, typeName: str, /) -> None: ... method mouseDoubleClickEvent (line 74) | def mouseDoubleClickEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) ... method mouseMoveEvent (line 75) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 76) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 77) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method paintEvent (line 78) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method quickWindow (line 79) | def quickWindow(self, /) -> PySide6.QtQuick.QQuickWindow: ... method resizeEvent (line 80) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method resizeMode (line 81) | def resizeMode(self, /) -> QQuickWidget.ResizeMode: ... method rootContext (line 82) | def rootContext(self, /) -> PySide6.QtQml.QQmlContext: ... method rootObject (line 83) | def rootObject(self, /) -> PySide6.QtQuick.QQuickItem: ... method setClearColor (line 84) | def setClearColor(self, color: Union[PySide6.QtGui.QColor, str, PySide... method setContent (line 85) | def setContent(self, url: PySide6.QtCore.QUrl | str, component: PySide... method setFormat (line 86) | def setFormat(self, format: PySide6.QtGui.QSurfaceFormat | PySide6.QtG... method setInitialProperties (line 87) | def setInitialProperties(self, initialProperties: Dict[str, Any], /) -... method setResizeMode (line 88) | def setResizeMode(self, arg__1: QQuickWidget.ResizeMode, /) -> None: ... method setSource (line 89) | def setSource(self, arg__1: PySide6.QtCore.QUrl | str, /) -> None: ... method showEvent (line 90) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 91) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method source (line 92) | def source(self, /) -> PySide6.QtCore.QUrl: ... method status (line 93) | def status(self, /) -> QQuickWidget.Status: ... method timerEvent (line 94) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... method wheelEvent (line 95) | def wheelEvent(self, arg__1: PySide6.QtGui.QWheelEvent, /) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtRemoteObjects.pyi class QAbstractItemModelReplica (line 13) | class QAbstractItemModelReplica(PySide6.QtCore.QAbstractItemModel): method __init__ (line 16) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method availableRoles (line 17) | def availableRoles(self, /) -> List[int]: ... method columnCount (line 18) | def columnCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method data (line 19) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method flags (line 20) | def flags(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPe... method hasChildren (line 21) | def hasChildren(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method hasData (line 22) | def hasData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.Q... method headerData (line 23) | def headerData(self, section: int, orientation: PySide6.QtCore.Qt.Orie... method index (line 24) | def index(self, row: int, column: int, /, parent: PySide6.QtCore.QMode... method isInitialized (line 25) | def isInitialized(self, /) -> bool: ... method multiData (line 26) | def multiData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore... method parent (line 28) | def parent(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method parent (line 30) | def parent(self, /) -> PySide6.QtCore.QObject: ... method roleNames (line 31) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rootCacheSize (line 32) | def rootCacheSize(self, /) -> int: ... method rowCount (line 33) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method selectionModel (line 34) | def selectionModel(self, /) -> PySide6.QtCore.QItemSelectionModel: ... method setData (line 35) | def setData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.Q... method setRootCacheSize (line 36) | def setRootCacheSize(self, rootCacheSize: int, /) -> None: ... class QConnectionAbstractServer (line 38) | class QConnectionAbstractServer(PySide6.QtCore.QObject): method __init__ (line 41) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method address (line 42) | def address(self, /) -> PySide6.QtCore.QUrl: ... method close (line 43) | def close(self, /) -> None: ... method configureNewConnection (line 44) | def configureNewConnection(self, /) -> QtROServerIoDevice: ... method hasPendingConnections (line 45) | def hasPendingConnections(self, /) -> bool: ... method listen (line 46) | def listen(self, address: PySide6.QtCore.QUrl | str, /) -> bool: ... method nextPendingConnection (line 47) | def nextPendingConnection(self, /) -> QtROServerIoDevice: ... method serverError (line 48) | def serverError(self, /) -> PySide6.QtNetwork.QAbstractSocket.SocketEr... class QIntList (line 50) | class QIntList: method __init__ (line 52) | def __init__(self, *args, **kwargs) -> None: ... method append (line 53) | def append(self, *args, **kwargs): ... method capacity (line 54) | def capacity(self, *args, **kwargs): ... method clear (line 55) | def clear(self, *args, **kwargs): ... method constData (line 56) | def constData(self, *args, **kwargs): ... method data (line 57) | def data(self, *args, **kwargs): ... method pop_back (line 58) | def pop_back(self, *args, **kwargs): ... method pop_front (line 59) | def pop_front(self, *args, **kwargs): ... method prepend (line 60) | def prepend(self, *args, **kwargs): ... method push_back (line 61) | def push_back(self, *args, **kwargs): ... method push_front (line 62) | def push_front(self, *args, **kwargs): ... method removeFirst (line 63) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 64) | def removeLast(self, *args, **kwargs): ... method reserve (line 65) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 66) | def __delitem__(self, other) -> None: ... method __getitem__ (line 67) | def __getitem__(self, index): ... method __len__ (line 68) | def __len__(self) -> int: ... method __setitem__ (line 69) | def __setitem__(self, index, object) -> None: ... class QRemoteObjectAbstractPersistedStore (line 71) | class QRemoteObjectAbstractPersistedStore(PySide6.QtCore.QObject): method __init__ (line 73) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method restoreProperties (line 74) | def restoreProperties(self, repName: str, repSig: PySide6.QtCore.QByte... method saveProperties (line 75) | def saveProperties(self, repName: str, repSig: PySide6.QtCore.QByteArr... class QRemoteObjectDynamicReplica (line 77) | class QRemoteObjectDynamicReplica(QRemoteObjectReplica): method __init__ (line 79) | def __init__(self, *args, destroyed: typing.Callable = ..., initialize... class QRemoteObjectHost (line 81) | class QRemoteObjectHost(QRemoteObjectHostBase): method __init__ (line 85) | def __init__(self, address: PySide6.QtCore.QUrl | str, /, registryAddr... method __init__ (line 87) | def __init__(self, address: PySide6.QtCore.QUrl | str, parent: PySide6... method __init__ (line 89) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method hostUrl (line 90) | def hostUrl(self, /) -> PySide6.QtCore.QUrl: ... method setHostUrl (line 91) | def setHostUrl(self, hostAddress: PySide6.QtCore.QUrl | str, /, allowe... method setLocalServerOptions (line 93) | def setLocalServerOptions(options: PySide6.QtNetwork.QLocalServer.Sock... class QRemoteObjectHostBase (line 95) | class QRemoteObjectHostBase(QRemoteObjectNode): class AllowedSchemas (line 96) | class AllowedSchemas(enum.Enum): method __init__ (line 100) | def __init__(self, *args, destroyed: typing.Callable = ..., error: typ... method addHostSideConnection (line 101) | def addHostSideConnection(self, ioDevice: PySide6.QtCore.QIODevice, /)... method disableRemoting (line 102) | def disableRemoting(self, remoteObject: PySide6.QtCore.QObject, /) -> ... method enableRemoting (line 104) | def enableRemoting(self, model: PySide6.QtCore.QAbstractItemModel, nam... method enableRemoting (line 106) | def enableRemoting(self, object: PySide6.QtCore.QObject, /, name: str ... method hostUrl (line 107) | def hostUrl(self, /) -> PySide6.QtCore.QUrl: ... method proxy (line 108) | def proxy(self, registryUrl: PySide6.QtCore.QUrl | str, /, hostUrl: Py... method reverseProxy (line 109) | def reverseProxy(self, /) -> bool: ... method setHostUrl (line 110) | def setHostUrl(self, hostAddress: PySide6.QtCore.QUrl | str, /, allowe... method setName (line 111) | def setName(self, name: str, /) -> None: ... class QRemoteObjectNode (line 113) | class QRemoteObjectNode(PySide6.QtCore.QObject): class ErrorCode (line 114) | class ErrorCode(enum.Enum): method __init__ (line 134) | def __init__(self, registryAddress: PySide6.QtCore.QUrl | str, /, pare... method __init__ (line 136) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method acquire (line 137) | def acquire(self, arg__1: type, /, name: object | None = ...) -> type:... method acquireDynamic (line 138) | def acquireDynamic(self, name: str, /) -> QRemoteObjectDynamicReplica:... method acquireModel (line 139) | def acquireModel(self, name: str, /, action: QtRemoteObjects.InitialAc... method addClientSideConnection (line 140) | def addClientSideConnection(self, ioDevice: PySide6.QtCore.QIODevice, ... method connectToNode (line 141) | def connectToNode(self, address: PySide6.QtCore.QUrl | str, /) -> bool... method heartbeatInterval (line 142) | def heartbeatInterval(self, /) -> int: ... method instances (line 143) | def instances(self, typeName: str, /) -> List[str]: ... method lastError (line 144) | def lastError(self, /) -> QRemoteObjectNode.ErrorCode: ... method persistedStore (line 145) | def persistedStore(self, /) -> QRemoteObjectAbstractPersistedStore: ... method registry (line 146) | def registry(self, /) -> QRemoteObjectRegistry: ... method registryUrl (line 147) | def registryUrl(self, /) -> PySide6.QtCore.QUrl: ... method setHeartbeatInterval (line 148) | def setHeartbeatInterval(self, interval: int, /) -> None: ... method setName (line 149) | def setName(self, name: str, /) -> None: ... method setPersistedStore (line 150) | def setPersistedStore(self, persistedStore: QRemoteObjectAbstractPersi... method setRegistryUrl (line 151) | def setRegistryUrl(self, registryAddress: PySide6.QtCore.QUrl | str, /... method timerEvent (line 152) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... method waitForRegistry (line 153) | def waitForRegistry(self, /, timeout: int = ...) -> bool: ... class QRemoteObjectPendingCall (line 155) | class QRemoteObjectPendingCall(shiboken6.Object): class Error (line 156) | class Error(enum.Enum): method __init__ (line 160) | def __init__(self, other: QRemoteObjectPendingCall, /) -> None: ... method __init__ (line 162) | def __init__(self, /) -> None: ... method error (line 163) | def error(self, /) -> QRemoteObjectPendingCall.Error: ... method fromCompletedCall (line 165) | def fromCompletedCall(returnValue: Any, /) -> QRemoteObjectPendingCall... method isFinished (line 166) | def isFinished(self, /) -> bool: ... method returnValue (line 167) | def returnValue(self, /) -> Any: ... method waitForFinished (line 168) | def waitForFinished(self, /, timeout: int = ...) -> bool: ... class QRemoteObjectPendingCallWatcher (line 170) | class QRemoteObjectPendingCallWatcher(PySide6.QtCore.QObject, QRemoteObj... method __init__ (line 173) | def __init__(self, call: QRemoteObjectPendingCall, /, parent: PySide6.... method isFinished (line 174) | def isFinished(self, /) -> bool: ... method waitForFinished (line 175) | def waitForFinished(self, /) -> None: ... # type: ignore[override] class QRemoteObjectRegistry (line 177) | class QRemoteObjectRegistry(QRemoteObjectReplica): method __init__ (line 181) | def __init__(self, *args, destroyed: typing.Callable = ..., initialize... method addSource (line 182) | def addSource(self, entry: Tuple[str, QRemoteObjectSourceLocationInfo]... method initialize (line 183) | def initialize(self, /) -> None: ... method pushToRegistryIfNeeded (line 184) | def pushToRegistryIfNeeded(self, /) -> None: ... method registerMetatypes (line 186) | def registerMetatypes() -> None: ... method removeSource (line 187) | def removeSource(self, entry: Tuple[str, QRemoteObjectSourceLocationIn... method sourceLocations (line 188) | def sourceLocations(self, /) -> Dict[str, QRemoteObjectSourceLocationI... class QRemoteObjectRegistryHost (line 190) | class QRemoteObjectRegistryHost(QRemoteObjectHostBase): method __init__ (line 192) | def __init__(self, /, registryAddress: PySide6.QtCore.QUrl | str = ...... method setRegistryUrl (line 193) | def setRegistryUrl(self, registryUrl: PySide6.QtCore.QUrl | str, /) ->... class QRemoteObjectReplica (line 195) | class QRemoteObjectReplica(PySide6.QtCore.QObject): class ConstructorType (line 196) | class ConstructorType(enum.IntEnum): class State (line 200) | class State(enum.Enum): method __init__ (line 210) | def __init__(self, /, t: QRemoteObjectReplica.ConstructorType = ..., *... method initialize (line 211) | def initialize(self, /) -> None: ... method initializeNode (line 212) | def initializeNode(self, node: QRemoteObjectNode, /, name: str = ...) ... method isInitialized (line 213) | def isInitialized(self, /) -> bool: ... method isReplicaValid (line 214) | def isReplicaValid(self, /) -> bool: ... method node (line 215) | def node(self, /) -> QRemoteObjectNode: ... method persistProperties (line 216) | def persistProperties(self, repName: str, repSig: PySide6.QtCore.QByte... method propAsVariant (line 217) | def propAsVariant(self, i: int, /) -> Any: ... method retrieveProperties (line 218) | def retrieveProperties(self, repName: str, repSig: PySide6.QtCore.QByt... method send (line 219) | def send(self, call: PySide6.QtCore.QMetaObject.Call, index: int, args... method sendWithReply (line 220) | def sendWithReply(self, call: PySide6.QtCore.QMetaObject.Call, index: ... method setChild (line 221) | def setChild(self, i: int, arg__2: Any, /) -> None: ... method setNode (line 222) | def setNode(self, node: QRemoteObjectNode, /) -> None: ... method state (line 223) | def state(self, /) -> QRemoteObjectReplica.State: ... method waitForSource (line 224) | def waitForSource(self, /, timeout: int = ...) -> bool: ... class QRemoteObjectSettingsStore (line 226) | class QRemoteObjectSettingsStore(QRemoteObjectAbstractPersistedStore): method __init__ (line 228) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method restoreProperties (line 229) | def restoreProperties(self, repName: str, repSig: PySide6.QtCore.QByte... method saveProperties (line 230) | def saveProperties(self, repName: str, repSig: PySide6.QtCore.QByteArr... class QRemoteObjectSourceLocationInfo (line 232) | class QRemoteObjectSourceLocationInfo(shiboken6.Object): method __init__ (line 236) | def __init__(self, typeName_: str, hostUrl_: PySide6.QtCore.QUrl | str... method __init__ (line 238) | def __init__(self, QRemoteObjectSourceLocationInfo: QRemoteObjectSourc... method __init__ (line 240) | def __init__(self, /) -> None: ... method __copy__ (line 241) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 242) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 243) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 244) | def __gt__(self, other: object) -> bool: ... method __le__ (line 245) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 246) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 247) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 248) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 249) | def __rlshift__(self, other): ... method __rrshift__ (line 250) | def __rrshift__(self, other): ... method __rshift__ (line 251) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QtROClientFactory (line 253) | class QtROClientFactory(shiboken6.Object): method __init__ (line 254) | def __init__(self, *args, **kwargs) -> None: ... method create (line 255) | def create(self, url: PySide6.QtCore.QUrl | str, /, parent: PySide6.Qt... method instance (line 257) | def instance() -> QtROClientFactory: ... method isValid (line 258) | def isValid(self, url: PySide6.QtCore.QUrl | str, /) -> bool: ... class QtROClientIoDevice (line 260) | class QtROClientIoDevice(QtROIoDeviceBase): method __init__ (line 264) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method connectToServer (line 265) | def connectToServer(self, /) -> None: ... method deviceType (line 266) | def deviceType(self, /) -> str: ... method disconnectFromServer (line 267) | def disconnectFromServer(self, /) -> None: ... method doDisconnectFromServer (line 268) | def doDisconnectFromServer(self, /) -> None: ... method setUrl (line 269) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method url (line 270) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QtROIoDeviceBase (line 272) | class QtROIoDeviceBase(PySide6.QtCore.QObject): method __init__ (line 276) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method addSource (line 277) | def addSource(self, arg__1: str, /) -> None: ... method bytesAvailable (line 278) | def bytesAvailable(self, /) -> int: ... method close (line 279) | def close(self, /) -> None: ... method connection (line 280) | def connection(self, /) -> PySide6.QtCore.QIODevice: ... method deviceType (line 281) | def deviceType(self, /) -> str: ... method doClose (line 282) | def doClose(self, /) -> None: ... method initializeDataStream (line 283) | def initializeDataStream(self, /) -> None: ... method isClosing (line 284) | def isClosing(self, /) -> bool: ... method isOpen (line 285) | def isOpen(self, /) -> bool: ... method read (line 286) | def read(self, arg__1: QtRemoteObjects.QRemoteObjectPacketTypeEnum, ar... method remoteObjects (line 287) | def remoteObjects(self, /) -> Set[str]: ... method removeSource (line 288) | def removeSource(self, arg__1: str, /) -> None: ... method write (line 290) | def write(self, data: PySide6.QtCore.QByteArray | bytes | bytearray | ... method write (line 292) | def write(self, data: PySide6.QtCore.QByteArray | bytes | bytearray | ... class QtROServerFactory (line 294) | class QtROServerFactory(shiboken6.Object): method __init__ (line 295) | def __init__(self, *args, **kwargs) -> None: ... method create (line 296) | def create(self, url: PySide6.QtCore.QUrl | str, /, parent: PySide6.Qt... method instance (line 298) | def instance() -> QtROServerFactory: ... method isValid (line 299) | def isValid(self, url: PySide6.QtCore.QUrl | str, /) -> bool: ... class QtROServerIoDevice (line 301) | class QtROServerIoDevice(QtROIoDeviceBase): method __init__ (line 303) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method deviceType (line 304) | def deviceType(self, /) -> str: ... class QtRemoteObjects (line 306) | class QtRemoteObjects(shiboken6.Object): class InitialAction (line 307) | class InitialAction(enum.Enum): class QRemoteObjectPacketTypeEnum (line 311) | class QRemoteObjectPacketTypeEnum(enum.Enum): method __init__ (line 324) | def __init__(self, *args, **kwargs) -> None: ... method copyStoredProperties (line 327) | def copyStoredProperties(mo: PySide6.QtCore.QMetaObject, src: PySide6.... method copyStoredProperties (line 330) | def copyStoredProperties(mo: PySide6.QtCore.QMetaObject, src: int, dst... method copyStoredProperties (line 333) | def copyStoredProperties(mo: PySide6.QtCore.QMetaObject, src: int, dst... class RepFile (line 335) | class RepFile: method __init__ (line 339) | def __init__(self, content: str, /) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtScxml.pyi class QIntList (line 12) | class QIntList: method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method append (line 15) | def append(self, *args, **kwargs): ... method capacity (line 16) | def capacity(self, *args, **kwargs): ... method clear (line 17) | def clear(self, *args, **kwargs): ... method constData (line 18) | def constData(self, *args, **kwargs): ... method data (line 19) | def data(self, *args, **kwargs): ... method pop_back (line 20) | def pop_back(self, *args, **kwargs): ... method pop_front (line 21) | def pop_front(self, *args, **kwargs): ... method prepend (line 22) | def prepend(self, *args, **kwargs): ... method push_back (line 23) | def push_back(self, *args, **kwargs): ... method push_front (line 24) | def push_front(self, *args, **kwargs): ... method removeFirst (line 25) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 26) | def removeLast(self, *args, **kwargs): ... method reserve (line 27) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 28) | def __delitem__(self, other) -> None: ... method __getitem__ (line 29) | def __getitem__(self, index): ... method __len__ (line 30) | def __len__(self) -> int: ... method __setitem__ (line 31) | def __setitem__(self, index, object) -> None: ... class QScxmlCompiler (line 33) | class QScxmlCompiler(shiboken6.Object): class Loader (line 34) | class Loader(shiboken6.Object): method __init__ (line 35) | def __init__(self, /) -> None: ... method load (line 36) | def load(self, name: str, baseDir: str, /) -> Tuple[PySide6.QtCore.Q... method __init__ (line 37) | def __init__(self, xmlReader: PySide6.QtCore.QXmlStreamReader, /) -> N... method compile (line 38) | def compile(self, /) -> QScxmlStateMachine: ... method errors (line 39) | def errors(self, /) -> List[QScxmlError]: ... method fileName (line 40) | def fileName(self, /) -> str: ... method loader (line 41) | def loader(self, /) -> QScxmlCompiler.Loader: ... method setFileName (line 42) | def setFileName(self, fileName: str, /) -> None: ... method setLoader (line 43) | def setLoader(self, newLoader: QScxmlCompiler.Loader, /) -> None: ... class QScxmlCppDataModel (line 45) | class QScxmlCppDataModel(QScxmlDataModel): method __init__ (line 47) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method evaluateAssignment (line 48) | def evaluateAssignment(self, id: int, /) -> bool: ... method evaluateForeach (line 49) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 50) | def evaluateInitialization(self, id: int, /) -> bool: ... method hasScxmlProperty (line 51) | def hasScxmlProperty(self, name: str, /) -> bool: ... method inState (line 52) | def inState(self, stateName: str, /) -> bool: ... method scxmlEvent (line 53) | def scxmlEvent(self, /) -> QScxmlEvent: ... method scxmlProperty (line 54) | def scxmlProperty(self, name: str, /) -> Any: ... method setScxmlEvent (line 55) | def setScxmlEvent(self, scxmlEvent: QScxmlEvent, /) -> None: ... method setScxmlProperty (line 56) | def setScxmlProperty(self, name: str, value: Any, context: str, /) -> ... method setup (line 57) | def setup(self, initialDataValues: Dict[str, Any], /) -> bool: ... class QScxmlDataModel (line 59) | class QScxmlDataModel(PySide6.QtCore.QObject): class ForeachLoopBody (line 60) | class ForeachLoopBody(shiboken6.Object): method __init__ (line 61) | def __init__(self, /) -> None: ... method run (line 62) | def run(self, /) -> bool: ... method __init__ (line 65) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method createScxmlDataModel (line 67) | def createScxmlDataModel(pluginKey: str, /) -> QScxmlDataModel: ... method evaluateAssignment (line 68) | def evaluateAssignment(self, id: int, /) -> bool: ... method evaluateForeach (line 69) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 70) | def evaluateInitialization(self, id: int, /) -> bool: ... method evaluateToBool (line 71) | def evaluateToBool(self, id: int, /) -> bool: ... method evaluateToString (line 72) | def evaluateToString(self, id: int, /) -> str: ... method evaluateToVariant (line 73) | def evaluateToVariant(self, id: int, /) -> Any: ... method evaluateToVoid (line 74) | def evaluateToVoid(self, id: int, /) -> bool: ... method hasScxmlProperty (line 75) | def hasScxmlProperty(self, name: str, /) -> bool: ... method scxmlProperty (line 76) | def scxmlProperty(self, name: str, /) -> Any: ... method setScxmlEvent (line 77) | def setScxmlEvent(self, event: QScxmlEvent, /) -> None: ... method setScxmlProperty (line 78) | def setScxmlProperty(self, name: str, value: Any, context: str, /) -> ... method setStateMachine (line 79) | def setStateMachine(self, stateMachine: QScxmlStateMachine, /) -> None... method setup (line 80) | def setup(self, initialDataValues: Dict[str, Any], /) -> bool: ... method stateMachine (line 81) | def stateMachine(self, /) -> QScxmlStateMachine: ... class QScxmlDynamicScxmlServiceFactory (line 83) | class QScxmlDynamicScxmlServiceFactory(QScxmlInvokableServiceFactory): method __init__ (line 85) | def __init__(self, invokeInfo: QScxmlExecutableContent.InvokeInfo, nam... method invoke (line 86) | def invoke(self, parentStateMachine: QScxmlStateMachine, /) -> QScxmlI... class QScxmlError (line 88) | class QScxmlError(shiboken6.Object): method __init__ (line 90) | def __init__(self, arg__1: QScxmlError, /, *, valid: bool | None = ...... method __init__ (line 92) | def __init__(self, fileName: str, line: int, column: int, description:... method __init__ (line 94) | def __init__(self, /, *, valid: bool | None = ..., fileName: str | Non... method column (line 95) | def column(self, /) -> int: ... method description (line 96) | def description(self, /) -> str: ... method fileName (line 97) | def fileName(self, /) -> str: ... method isValid (line 98) | def isValid(self, /) -> bool: ... method line (line 99) | def line(self, /) -> int: ... method toString (line 100) | def toString(self, /) -> str: ... method __copy__ (line 101) | def __copy__(self, /) -> typing_extensions.Self: ... class QScxmlEvent (line 103) | class QScxmlEvent(shiboken6.Object): class EventType (line 104) | class EventType(enum.Enum): method __init__ (line 109) | def __init__(self, other: QScxmlEvent, /, *, name: str | None = ..., e... method __init__ (line 111) | def __init__(self, /, *, name: str | None = ..., eventType: QScxmlEven... method clear (line 112) | def clear(self, /) -> None: ... method data (line 113) | def data(self, /) -> Any: ... method delay (line 114) | def delay(self, /) -> int: ... method errorMessage (line 115) | def errorMessage(self, /) -> str: ... method eventType (line 116) | def eventType(self, /) -> QScxmlEvent.EventType: ... method invokeId (line 117) | def invokeId(self, /) -> str: ... method isErrorEvent (line 118) | def isErrorEvent(self, /) -> bool: ... method name (line 119) | def name(self, /) -> str: ... method origin (line 120) | def origin(self, /) -> str: ... method originType (line 121) | def originType(self, /) -> str: ... method scxmlType (line 122) | def scxmlType(self, /) -> str: ... method sendId (line 123) | def sendId(self, /) -> str: ... method setData (line 124) | def setData(self, data: Any, /) -> None: ... method setDelay (line 125) | def setDelay(self, delayInMiliSecs: int, /) -> None: ... method setErrorMessage (line 126) | def setErrorMessage(self, message: str, /) -> None: ... method setEventType (line 127) | def setEventType(self, type: QScxmlEvent.EventType, /) -> None: ... method setInvokeId (line 128) | def setInvokeId(self, invokeId: str, /) -> None: ... method setName (line 129) | def setName(self, name: str, /) -> None: ... method setOrigin (line 130) | def setOrigin(self, origin: str, /) -> None: ... method setOriginType (line 131) | def setOriginType(self, originType: str, /) -> None: ... method setSendId (line 132) | def setSendId(self, sendId: str, /) -> None: ... method __copy__ (line 133) | def __copy__(self, /) -> typing_extensions.Self: ... class QScxmlExecutableContent (line 135) | class QScxmlExecutableContent(shiboken6.Object): class AssignmentInfo (line 136) | class AssignmentInfo(shiboken6.Object): method __init__ (line 141) | def __init__(self, AssignmentInfo: QScxmlExecutableContent.Assignmen... method __init__ (line 143) | def __init__(self, /) -> None: ... method __copy__ (line 144) | def __copy__(self, /) -> typing_extensions.Self: ... class EvaluatorInfo (line 146) | class EvaluatorInfo(shiboken6.Object): method __init__ (line 150) | def __init__(self, EvaluatorInfo: QScxmlExecutableContent.EvaluatorI... method __init__ (line 152) | def __init__(self, /) -> None: ... method __copy__ (line 153) | def __copy__(self, /) -> typing_extensions.Self: ... class ForeachInfo (line 155) | class ForeachInfo(shiboken6.Object): method __init__ (line 161) | def __init__(self, ForeachInfo: QScxmlExecutableContent.ForeachInfo,... method __init__ (line 163) | def __init__(self, /) -> None: ... method __copy__ (line 164) | def __copy__(self, /) -> typing_extensions.Self: ... class InvokeInfo (line 166) | class InvokeInfo(shiboken6.Object): method __init__ (line 175) | def __init__(self, InvokeInfo: QScxmlExecutableContent.InvokeInfo, /... method __init__ (line 177) | def __init__(self, /) -> None: ... method __copy__ (line 178) | def __copy__(self, /) -> typing_extensions.Self: ... class ParameterInfo (line 180) | class ParameterInfo(shiboken6.Object): method __init__ (line 185) | def __init__(self, ParameterInfo: QScxmlExecutableContent.ParameterI... method __init__ (line 187) | def __init__(self, /) -> None: ... method __copy__ (line 188) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 189) | def __init__(self, *args, **kwargs) -> None: ... class QScxmlInvokableService (line 191) | class QScxmlInvokableService(PySide6.QtCore.QObject): method __init__ (line 193) | def __init__(self, parentStateMachine: QScxmlStateMachine, parent: QSc... method id (line 194) | def id(self, /) -> str: ... method name (line 195) | def name(self, /) -> str: ... method parentStateMachine (line 196) | def parentStateMachine(self, /) -> QScxmlStateMachine: ... method postEvent (line 197) | def postEvent(self, event: QScxmlEvent, /) -> None: ... method start (line 198) | def start(self, /) -> bool: ... class QScxmlInvokableServiceFactory (line 200) | class QScxmlInvokableServiceFactory(PySide6.QtCore.QObject): method __init__ (line 202) | def __init__(self, invokeInfo: QScxmlExecutableContent.InvokeInfo, nam... method invoke (line 203) | def invoke(self, parentStateMachine: QScxmlStateMachine, /) -> QScxmlI... method invokeInfo (line 204) | def invokeInfo(self, /) -> QScxmlExecutableContent.InvokeInfo: ... method names (line 205) | def names(self, /) -> List[int]: ... method parameters (line 206) | def parameters(self, /) -> List[QScxmlExecutableContent.ParameterInfo]... class QScxmlNullDataModel (line 208) | class QScxmlNullDataModel(QScxmlDataModel): method __init__ (line 210) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method evaluateAssignment (line 211) | def evaluateAssignment(self, id: int, /) -> bool: ... method evaluateForeach (line 212) | def evaluateForeach(self, id: int, body: QScxmlDataModel.ForeachLoopBo... method evaluateInitialization (line 213) | def evaluateInitialization(self, id: int, /) -> bool: ... method evaluateToBool (line 214) | def evaluateToBool(self, id: int, /) -> bool: ... method evaluateToString (line 215) | def evaluateToString(self, id: int, /) -> str: ... method evaluateToVariant (line 216) | def evaluateToVariant(self, id: int, /) -> Any: ... method evaluateToVoid (line 217) | def evaluateToVoid(self, id: int, /) -> bool: ... method hasScxmlProperty (line 218) | def hasScxmlProperty(self, name: str, /) -> bool: ... method scxmlProperty (line 219) | def scxmlProperty(self, name: str, /) -> Any: ... method setScxmlEvent (line 220) | def setScxmlEvent(self, event: QScxmlEvent, /) -> None: ... method setScxmlProperty (line 221) | def setScxmlProperty(self, name: str, value: Any, context: str, /) -> ... method setup (line 222) | def setup(self, initialDataValues: Dict[str, Any], /) -> bool: ... class QScxmlStateMachine (line 224) | class QScxmlStateMachine(PySide6.QtCore.QObject): method __init__ (line 236) | def __init__(self, metaObject: PySide6.QtCore.QMetaObject, /, parent: ... method activeStateNames (line 237) | def activeStateNames(self, /, compress: bool = ...) -> List[str]: ... method cancelDelayedEvent (line 238) | def cancelDelayedEvent(self, sendId: str, /) -> None: ... method connectToEvent (line 239) | def connectToEvent(self, scxmlEventSpec: str, receiver: PySide6.QtCore... method connectToState (line 240) | def connectToState(self, scxmlStateName: str, receiver: PySide6.QtCore... method dataModel (line 241) | def dataModel(self, /) -> QScxmlDataModel: ... method fromData (line 243) | def fromData(data: PySide6.QtCore.QIODevice, /, fileName: str = ...) -... method fromFile (line 245) | def fromFile(fileName: str, /) -> QScxmlStateMachine: ... method init (line 246) | def init(self, /) -> bool: ... method initialValues (line 247) | def initialValues(self, /) -> Dict[str, Any]: ... method invokedServices (line 248) | def invokedServices(self, /) -> List[QScxmlInvokableService]: ... method isActive (line 250) | def isActive(self, stateIndex: int, /) -> bool: ... method isActive (line 252) | def isActive(self, scxmlStateName: str, /) -> bool: ... method isDispatchableTarget (line 253) | def isDispatchableTarget(self, target: str, /) -> bool: ... method isInitialized (line 254) | def isInitialized(self, /) -> bool: ... method isInvoked (line 255) | def isInvoked(self, /) -> bool: ... method isRunning (line 256) | def isRunning(self, /) -> bool: ... method loader (line 257) | def loader(self, /) -> QScxmlCompiler.Loader: ... method name (line 258) | def name(self, /) -> str: ... method parseErrors (line 259) | def parseErrors(self, /) -> List[QScxmlError]: ... method sessionId (line 260) | def sessionId(self, /) -> str: ... method setDataModel (line 261) | def setDataModel(self, model: QScxmlDataModel, /) -> None: ... method setInitialValues (line 262) | def setInitialValues(self, initialValues: Dict[str, Any], /) -> None: ... method setLoader (line 263) | def setLoader(self, loader: QScxmlCompiler.Loader, /) -> None: ... method setRunning (line 264) | def setRunning(self, running: bool, /) -> None: ... method setTableData (line 265) | def setTableData(self, tableData: QScxmlTableData, /) -> None: ... method start (line 266) | def start(self, /) -> None: ... method stateNames (line 267) | def stateNames(self, /, compress: bool = ...) -> List[str]: ... method stop (line 268) | def stop(self, /) -> None: ... method submitEvent (line 270) | def submitEvent(self, eventName: str, data: Any, /) -> None: ... method submitEvent (line 272) | def submitEvent(self, eventName: str, /) -> None: ... method submitEvent (line 274) | def submitEvent(self, event: QScxmlEvent, /) -> None: ... method tableData (line 275) | def tableData(self, /) -> QScxmlTableData: ... class QScxmlStaticScxmlServiceFactory (line 277) | class QScxmlStaticScxmlServiceFactory(QScxmlInvokableServiceFactory): method __init__ (line 279) | def __init__(self, metaObject: PySide6.QtCore.QMetaObject, invokeInfo:... method invoke (line 280) | def invoke(self, parentStateMachine: QScxmlStateMachine, /) -> QScxmlI... class QScxmlTableData (line 282) | class QScxmlTableData(shiboken6.Object): method __init__ (line 283) | def __init__(self, /) -> None: ... method assignmentInfo (line 284) | def assignmentInfo(self, assignmentId: int, /) -> QScxmlExecutableCont... method dataNames (line 285) | def dataNames(self, /) -> Tuple[List[int], int]: ... method evaluatorInfo (line 286) | def evaluatorInfo(self, evaluatorId: int, /) -> QScxmlExecutableConten... method foreachInfo (line 287) | def foreachInfo(self, foreachId: int, /) -> QScxmlExecutableContent.Fo... method initialSetup (line 288) | def initialSetup(self, /) -> int: ... method instructions (line 289) | def instructions(self, /) -> List[int]: ... method name (line 290) | def name(self, /) -> str: ... method serviceFactory (line 291) | def serviceFactory(self, id: int, /) -> QScxmlInvokableServiceFactory:... method stateMachineTable (line 292) | def stateMachineTable(self, /) -> List[int]: ... method string (line 293) | def string(self, id: int, /) -> str: ... FILE: pyside6/stubs/PySide6-stubs/QtSensors.pyi class QAccelerometer (line 13) | class QAccelerometer(QSensor): class AccelerationMode (line 14) | class AccelerationMode(enum.Enum): method __init__ (line 21) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method accelerationMode (line 22) | def accelerationMode(self, /) -> QAccelerometer.AccelerationMode: ... method reading (line 23) | def reading(self, /) -> QAccelerometerReading: ... method setAccelerationMode (line 24) | def setAccelerationMode(self, accelerationMode: QAccelerometer.Acceler... class QAccelerometerFilter (line 26) | class QAccelerometerFilter(QSensorFilter): method __init__ (line 27) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 29) | def filter(self, reading: QAccelerometerReading, /) -> bool: ... method filter (line 31) | def filter(self, reading: QSensorReading, /) -> bool: ... class QAccelerometerReading (line 33) | class QAccelerometerReading(QSensorReading): method __init__ (line 35) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, x: flo... method copyValuesFrom (line 36) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setX (line 37) | def setX(self, x: float, /) -> None: ... method setY (line 38) | def setY(self, y: float, /) -> None: ... method setZ (line 39) | def setZ(self, z: float, /) -> None: ... method x (line 40) | def x(self, /) -> float: ... method y (line 41) | def y(self, /) -> float: ... method z (line 42) | def z(self, /) -> float: ... class QAmbientLightFilter (line 44) | class QAmbientLightFilter(QSensorFilter): method __init__ (line 45) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 47) | def filter(self, reading: QAmbientLightReading, /) -> bool: ... method filter (line 49) | def filter(self, reading: QSensorReading, /) -> bool: ... class QAmbientLightReading (line 51) | class QAmbientLightReading(QSensorReading): class LightLevel (line 52) | class LightLevel(enum.Enum): method __init__ (line 60) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, lightL... method copyValuesFrom (line 61) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method lightLevel (line 62) | def lightLevel(self, /) -> QAmbientLightReading.LightLevel: ... method setLightLevel (line 63) | def setLightLevel(self, lightLevel: QAmbientLightReading.LightLevel, /... class QAmbientLightSensor (line 65) | class QAmbientLightSensor(QSensor): method __init__ (line 68) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 69) | def reading(self, /) -> QAmbientLightReading: ... class QAmbientTemperatureFilter (line 71) | class QAmbientTemperatureFilter(QSensorFilter): method __init__ (line 72) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 74) | def filter(self, reading: QAmbientTemperatureReading, /) -> bool: ... method filter (line 76) | def filter(self, reading: QSensorReading, /) -> bool: ... class QAmbientTemperatureReading (line 78) | class QAmbientTemperatureReading(QSensorReading): method __init__ (line 80) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, temper... method copyValuesFrom (line 81) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setTemperature (line 82) | def setTemperature(self, temperature: float, /) -> None: ... method temperature (line 83) | def temperature(self, /) -> float: ... class QAmbientTemperatureSensor (line 85) | class QAmbientTemperatureSensor(QSensor): method __init__ (line 88) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 89) | def reading(self, /) -> QAmbientTemperatureReading: ... class QCompass (line 91) | class QCompass(QSensor): method __init__ (line 94) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 95) | def reading(self, /) -> QCompassReading: ... class QCompassFilter (line 97) | class QCompassFilter(QSensorFilter): method __init__ (line 98) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 100) | def filter(self, reading: QCompassReading, /) -> bool: ... method filter (line 102) | def filter(self, reading: QSensorReading, /) -> bool: ... class QCompassReading (line 104) | class QCompassReading(QSensorReading): method __init__ (line 106) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, azimut... method azimuth (line 107) | def azimuth(self, /) -> float: ... method calibrationLevel (line 108) | def calibrationLevel(self, /) -> float: ... method copyValuesFrom (line 109) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setAzimuth (line 110) | def setAzimuth(self, azimuth: float, /) -> None: ... method setCalibrationLevel (line 111) | def setCalibrationLevel(self, calibrationLevel: float, /) -> None: ... class QGyroscope (line 113) | class QGyroscope(QSensor): method __init__ (line 116) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 117) | def reading(self, /) -> QGyroscopeReading: ... class QGyroscopeFilter (line 119) | class QGyroscopeFilter(QSensorFilter): method __init__ (line 120) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 122) | def filter(self, reading: QGyroscopeReading, /) -> bool: ... method filter (line 124) | def filter(self, reading: QSensorReading, /) -> bool: ... class QGyroscopeReading (line 126) | class QGyroscopeReading(QSensorReading): method __init__ (line 128) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, x: flo... method copyValuesFrom (line 129) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setX (line 130) | def setX(self, x: float, /) -> None: ... method setY (line 131) | def setY(self, y: float, /) -> None: ... method setZ (line 132) | def setZ(self, z: float, /) -> None: ... method x (line 133) | def x(self, /) -> float: ... method y (line 134) | def y(self, /) -> float: ... method z (line 135) | def z(self, /) -> float: ... class QHumidityFilter (line 137) | class QHumidityFilter(QSensorFilter): method __init__ (line 138) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 140) | def filter(self, reading: QHumidityReading, /) -> bool: ... method filter (line 142) | def filter(self, reading: QSensorReading, /) -> bool: ... class QHumidityReading (line 144) | class QHumidityReading(QSensorReading): method __init__ (line 146) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, relati... method absoluteHumidity (line 147) | def absoluteHumidity(self, /) -> float: ... method copyValuesFrom (line 148) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method relativeHumidity (line 149) | def relativeHumidity(self, /) -> float: ... method setAbsoluteHumidity (line 150) | def setAbsoluteHumidity(self, value: float, /) -> None: ... method setRelativeHumidity (line 151) | def setRelativeHumidity(self, percent: float, /) -> None: ... class QHumiditySensor (line 153) | class QHumiditySensor(QSensor): method __init__ (line 156) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 157) | def reading(self, /) -> QHumidityReading: ... class QIRProximityFilter (line 159) | class QIRProximityFilter(QSensorFilter): method __init__ (line 160) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 162) | def filter(self, reading: QIRProximityReading, /) -> bool: ... method filter (line 164) | def filter(self, reading: QSensorReading, /) -> bool: ... class QIRProximityReading (line 166) | class QIRProximityReading(QSensorReading): method __init__ (line 168) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, reflec... method copyValuesFrom (line 169) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method reflectance (line 170) | def reflectance(self, /) -> float: ... method setReflectance (line 171) | def setReflectance(self, reflectance: float, /) -> None: ... class QIRProximitySensor (line 173) | class QIRProximitySensor(QSensor): method __init__ (line 176) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 177) | def reading(self, /) -> QIRProximityReading: ... class QIntList (line 179) | class QIntList: method __init__ (line 181) | def __init__(self, *args, **kwargs) -> None: ... method append (line 182) | def append(self, *args, **kwargs): ... method capacity (line 183) | def capacity(self, *args, **kwargs): ... method clear (line 184) | def clear(self, *args, **kwargs): ... method constData (line 185) | def constData(self, *args, **kwargs): ... method data (line 186) | def data(self, *args, **kwargs): ... method pop_back (line 187) | def pop_back(self, *args, **kwargs): ... method pop_front (line 188) | def pop_front(self, *args, **kwargs): ... method prepend (line 189) | def prepend(self, *args, **kwargs): ... method push_back (line 190) | def push_back(self, *args, **kwargs): ... method push_front (line 191) | def push_front(self, *args, **kwargs): ... method removeFirst (line 192) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 193) | def removeLast(self, *args, **kwargs): ... method reserve (line 194) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 195) | def __delitem__(self, other) -> None: ... method __getitem__ (line 196) | def __getitem__(self, index): ... method __len__ (line 197) | def __len__(self) -> int: ... method __setitem__ (line 198) | def __setitem__(self, index, object) -> None: ... class QLidFilter (line 200) | class QLidFilter(QSensorFilter): method __init__ (line 201) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 203) | def filter(self, reading: QLidReading, /) -> bool: ... method filter (line 205) | def filter(self, reading: QSensorReading, /) -> bool: ... class QLidReading (line 207) | class QLidReading(QSensorReading): method __init__ (line 211) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, backLi... method backLidClosed (line 212) | def backLidClosed(self, /) -> bool: ... method copyValuesFrom (line 213) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method frontLidClosed (line 214) | def frontLidClosed(self, /) -> bool: ... method setBackLidClosed (line 215) | def setBackLidClosed(self, closed: bool, /) -> None: ... method setFrontLidClosed (line 216) | def setFrontLidClosed(self, closed: bool, /) -> None: ... class QLidSensor (line 218) | class QLidSensor(QSensor): method __init__ (line 221) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 222) | def reading(self, /) -> QLidReading: ... class QLightFilter (line 224) | class QLightFilter(QSensorFilter): method __init__ (line 225) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 227) | def filter(self, reading: QLightReading, /) -> bool: ... method filter (line 229) | def filter(self, reading: QSensorReading, /) -> bool: ... class QLightReading (line 231) | class QLightReading(QSensorReading): method __init__ (line 233) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, lux: f... method copyValuesFrom (line 234) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method lux (line 235) | def lux(self, /) -> float: ... method setLux (line 236) | def setLux(self, lux: float, /) -> None: ... class QLightSensor (line 238) | class QLightSensor(QSensor): method __init__ (line 242) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method fieldOfView (line 243) | def fieldOfView(self, /) -> float: ... method reading (line 244) | def reading(self, /) -> QLightReading: ... method setFieldOfView (line 245) | def setFieldOfView(self, fieldOfView: float, /) -> None: ... class QMagnetometer (line 247) | class QMagnetometer(QSensor): method __init__ (line 251) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method reading (line 252) | def reading(self, /) -> QMagnetometerReading: ... method returnGeoValues (line 253) | def returnGeoValues(self, /) -> bool: ... method setReturnGeoValues (line 254) | def setReturnGeoValues(self, returnGeoValues: bool, /) -> None: ... class QMagnetometerFilter (line 256) | class QMagnetometerFilter(QSensorFilter): method __init__ (line 257) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 259) | def filter(self, reading: QMagnetometerReading, /) -> bool: ... method filter (line 261) | def filter(self, reading: QSensorReading, /) -> bool: ... class QMagnetometerReading (line 263) | class QMagnetometerReading(QSensorReading): method __init__ (line 265) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, x: flo... method calibrationLevel (line 266) | def calibrationLevel(self, /) -> float: ... method copyValuesFrom (line 267) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setCalibrationLevel (line 268) | def setCalibrationLevel(self, calibrationLevel: float, /) -> None: ... method setX (line 269) | def setX(self, x: float, /) -> None: ... method setY (line 270) | def setY(self, y: float, /) -> None: ... method setZ (line 271) | def setZ(self, z: float, /) -> None: ... method x (line 272) | def x(self, /) -> float: ... method y (line 273) | def y(self, /) -> float: ... method z (line 274) | def z(self, /) -> float: ... class QOrientationFilter (line 276) | class QOrientationFilter(QSensorFilter): method __init__ (line 277) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 279) | def filter(self, reading: QOrientationReading, /) -> bool: ... method filter (line 281) | def filter(self, reading: QSensorReading, /) -> bool: ... class QOrientationReading (line 283) | class QOrientationReading(QSensorReading): class Orientation (line 284) | class Orientation(enum.Enum): method __init__ (line 293) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, orient... method copyValuesFrom (line 294) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method orientation (line 295) | def orientation(self, /) -> QOrientationReading.Orientation: ... method setOrientation (line 296) | def setOrientation(self, orientation: QOrientationReading.Orientation,... class QOrientationSensor (line 298) | class QOrientationSensor(QSensor): method __init__ (line 301) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 302) | def reading(self, /) -> QOrientationReading: ... class QPressureFilter (line 304) | class QPressureFilter(QSensorFilter): method __init__ (line 305) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 307) | def filter(self, reading: QPressureReading, /) -> bool: ... method filter (line 309) | def filter(self, reading: QSensorReading, /) -> bool: ... class QPressureReading (line 311) | class QPressureReading(QSensorReading): method __init__ (line 313) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, pressu... method copyValuesFrom (line 314) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method pressure (line 315) | def pressure(self, /) -> float: ... method setPressure (line 316) | def setPressure(self, pressure: float, /) -> None: ... method setTemperature (line 317) | def setTemperature(self, temperature: float, /) -> None: ... method temperature (line 318) | def temperature(self, /) -> float: ... class QPressureSensor (line 320) | class QPressureSensor(QSensor): method __init__ (line 323) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 324) | def reading(self, /) -> QPressureReading: ... class QProximityFilter (line 326) | class QProximityFilter(QSensorFilter): method __init__ (line 327) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 329) | def filter(self, reading: QProximityReading, /) -> bool: ... method filter (line 331) | def filter(self, reading: QSensorReading, /) -> bool: ... class QProximityReading (line 333) | class QProximityReading(QSensorReading): method __init__ (line 335) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, close:... method close (line 336) | def close(self, /) -> bool: ... method copyValuesFrom (line 337) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setClose (line 338) | def setClose(self, close: bool, /) -> None: ... class QProximitySensor (line 340) | class QProximitySensor(QSensor): method __init__ (line 343) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method reading (line 344) | def reading(self, /) -> QProximityReading: ... class QRotationFilter (line 346) | class QRotationFilter(QSensorFilter): method __init__ (line 347) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 349) | def filter(self, reading: QRotationReading, /) -> bool: ... method filter (line 351) | def filter(self, reading: QSensorReading, /) -> bool: ... class QRotationReading (line 353) | class QRotationReading(QSensorReading): method __init__ (line 355) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, x: flo... method copyValuesFrom (line 356) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setFromEuler (line 357) | def setFromEuler(self, x: float, y: float, z: float, /) -> None: ... method x (line 358) | def x(self, /) -> float: ... method y (line 359) | def y(self, /) -> float: ... method z (line 360) | def z(self, /) -> float: ... class QRotationSensor (line 362) | class QRotationSensor(QSensor): method __init__ (line 366) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method hasZ (line 367) | def hasZ(self, /) -> bool: ... method reading (line 368) | def reading(self, /) -> QRotationReading: ... method setHasZ (line 369) | def setHasZ(self, hasZ: bool, /) -> None: ... class QSensor (line 371) | class QSensor(PySide6.QtCore.QObject): class AxesOrientationMode (line 372) | class AxesOrientationMode(enum.Enum): class Feature (line 377) | class Feature(enum.Enum): method __init__ (line 403) | def __init__(self, type: PySide6.QtCore.QByteArray | bytes | bytearray... method addFilter (line 404) | def addFilter(self, filter: QSensorFilter, /) -> None: ... method availableDataRates (line 405) | def availableDataRates(self, /) -> List[Tuple[int, int]]: ... method axesOrientationMode (line 406) | def axesOrientationMode(self, /) -> QSensor.AxesOrientationMode: ... method backend (line 407) | def backend(self, /) -> QSensorBackend: ... method bufferSize (line 408) | def bufferSize(self, /) -> int: ... method connectToBackend (line 409) | def connectToBackend(self, /) -> bool: ... method currentOrientation (line 410) | def currentOrientation(self, /) -> int: ... method dataRate (line 411) | def dataRate(self, /) -> int: ... method defaultSensorForType (line 413) | def defaultSensorForType(type: PySide6.QtCore.QByteArray | bytes | byt... method description (line 414) | def description(self, /) -> str: ... method efficientBufferSize (line 415) | def efficientBufferSize(self, /) -> int: ... method error (line 416) | def error(self, /) -> int: ... method filters (line 417) | def filters(self, /) -> List[QSensorFilter]: ... method identifier (line 418) | def identifier(self, /) -> PySide6.QtCore.QByteArray: ... method isActive (line 419) | def isActive(self, /) -> bool: ... method isAlwaysOn (line 420) | def isAlwaysOn(self, /) -> bool: ... method isBusy (line 421) | def isBusy(self, /) -> bool: ... method isConnectedToBackend (line 422) | def isConnectedToBackend(self, /) -> bool: ... method isFeatureSupported (line 423) | def isFeatureSupported(self, feature: QSensor.Feature, /) -> bool: ... method maxBufferSize (line 424) | def maxBufferSize(self, /) -> int: ... method outputRange (line 425) | def outputRange(self, /) -> int: ... method outputRanges (line 426) | def outputRanges(self, /) -> List[qoutputrange]: ... method reading (line 427) | def reading(self, /) -> QSensorReading: ... method removeFilter (line 428) | def removeFilter(self, filter: QSensorFilter, /) -> None: ... method sensorTypes (line 430) | def sensorTypes() -> List[PySide6.QtCore.QByteArray]: ... method sensorsForType (line 432) | def sensorsForType(type: PySide6.QtCore.QByteArray | bytes | bytearray... method setActive (line 433) | def setActive(self, active: bool, /) -> None: ... method setAlwaysOn (line 434) | def setAlwaysOn(self, alwaysOn: bool, /) -> None: ... method setAxesOrientationMode (line 435) | def setAxesOrientationMode(self, axesOrientationMode: QSensor.AxesOrie... method setBufferSize (line 436) | def setBufferSize(self, bufferSize: int, /) -> None: ... method setCurrentOrientation (line 437) | def setCurrentOrientation(self, currentOrientation: int, /) -> None: ... method setDataRate (line 438) | def setDataRate(self, rate: int, /) -> None: ... method setEfficientBufferSize (line 439) | def setEfficientBufferSize(self, efficientBufferSize: int, /) -> None:... method setIdentifier (line 440) | def setIdentifier(self, identifier: PySide6.QtCore.QByteArray | bytes ... method setMaxBufferSize (line 441) | def setMaxBufferSize(self, maxBufferSize: int, /) -> None: ... method setOutputRange (line 442) | def setOutputRange(self, index: int, /) -> None: ... method setSkipDuplicates (line 443) | def setSkipDuplicates(self, skipDuplicates: bool, /) -> None: ... method setUserOrientation (line 444) | def setUserOrientation(self, userOrientation: int, /) -> None: ... method skipDuplicates (line 445) | def skipDuplicates(self, /) -> bool: ... method start (line 446) | def start(self, /) -> bool: ... method stop (line 447) | def stop(self, /) -> None: ... method type (line 448) | def type(self, /) -> PySide6.QtCore.QByteArray: ... method userOrientation (line 449) | def userOrientation(self, /) -> int: ... class QSensorBackend (line 451) | class QSensorBackend(PySide6.QtCore.QObject): method __init__ (line 453) | def __init__(self, sensor: QSensor, /, parent: PySide6.QtCore.QObject ... method addDataRate (line 454) | def addDataRate(self, min: float, max: float, /) -> None: ... method addOutputRange (line 455) | def addOutputRange(self, min: float, max: float, accuracy: float, /) -... method isFeatureSupported (line 456) | def isFeatureSupported(self, feature: QSensor.Feature, /) -> bool: ... method newReadingAvailable (line 457) | def newReadingAvailable(self, /) -> None: ... method reading (line 458) | def reading(self, /) -> QSensorReading: ... method sensor (line 459) | def sensor(self, /) -> QSensor: ... method sensorBusy (line 460) | def sensorBusy(self, /, busy: bool = ...) -> None: ... method sensorError (line 461) | def sensorError(self, error: int, /) -> None: ... method sensorStopped (line 462) | def sensorStopped(self, /) -> None: ... method setDataRates (line 463) | def setDataRates(self, otherSensor: QSensor, /) -> None: ... method setDescription (line 464) | def setDescription(self, description: str, /) -> None: ... method start (line 465) | def start(self, /) -> None: ... method stop (line 466) | def stop(self, /) -> None: ... class QSensorBackendFactory (line 468) | class QSensorBackendFactory(shiboken6.Object): method __init__ (line 469) | def __init__(self, /) -> None: ... method createBackend (line 470) | def createBackend(self, sensor: QSensor, /) -> QSensorBackend: ... class QSensorChangesInterface (line 472) | class QSensorChangesInterface(shiboken6.Object): method __init__ (line 473) | def __init__(self, /) -> None: ... method sensorsChanged (line 474) | def sensorsChanged(self, /) -> None: ... class QSensorFilter (line 476) | class QSensorFilter(shiboken6.Object): method __init__ (line 478) | def __init__(self, /) -> None: ... method filter (line 479) | def filter(self, reading: QSensorReading, /) -> bool: ... method setSensor (line 480) | def setSensor(self, sensor: QSensor, /) -> None: ... class QSensorManager (line 482) | class QSensorManager(shiboken6.Object): method __init__ (line 483) | def __init__(self, /) -> None: ... method createBackend (line 485) | def createBackend(sensor: QSensor, /) -> QSensorBackend: ... method isBackendRegistered (line 487) | def isBackendRegistered(type: PySide6.QtCore.QByteArray | bytes | byte... method registerBackend (line 489) | def registerBackend(type: PySide6.QtCore.QByteArray | bytes | bytearra... method setDefaultBackend (line 491) | def setDefaultBackend(type: PySide6.QtCore.QByteArray | bytes | bytear... method unregisterBackend (line 493) | def unregisterBackend(type: PySide6.QtCore.QByteArray | bytes | bytear... class QSensorPluginInterface (line 495) | class QSensorPluginInterface(shiboken6.Object): method __init__ (line 496) | def __init__(self, /) -> None: ... method registerSensors (line 497) | def registerSensors(self, /) -> None: ... class QSensorReading (line 499) | class QSensorReading(PySide6.QtCore.QObject): method __init__ (line 501) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method copyValuesFrom (line 502) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setTimestamp (line 503) | def setTimestamp(self, timestamp: int, /) -> None: ... method timestamp (line 504) | def timestamp(self, /) -> int: ... method value (line 505) | def value(self, index: int, /) -> Any: ... method valueCount (line 506) | def valueCount(self, /) -> int: ... class QTapFilter (line 508) | class QTapFilter(QSensorFilter): method __init__ (line 509) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 511) | def filter(self, reading: QTapReading, /) -> bool: ... method filter (line 513) | def filter(self, reading: QSensorReading, /) -> bool: ... class QTapReading (line 515) | class QTapReading(QSensorReading): class TapDirection (line 516) | class TapDirection(enum.Enum): method __init__ (line 531) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, tapDir... method copyValuesFrom (line 532) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method isDoubleTap (line 533) | def isDoubleTap(self, /) -> bool: ... method setDoubleTap (line 534) | def setDoubleTap(self, doubleTap: bool, /) -> None: ... method setTapDirection (line 535) | def setTapDirection(self, tapDirection: QTapReading.TapDirection, /) -... method tapDirection (line 536) | def tapDirection(self, /) -> QTapReading.TapDirection: ... class QTapSensor (line 538) | class QTapSensor(QSensor): method __init__ (line 542) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method reading (line 543) | def reading(self, /) -> QTapReading: ... method returnDoubleTapEvents (line 544) | def returnDoubleTapEvents(self, /) -> bool: ... method setReturnDoubleTapEvents (line 545) | def setReturnDoubleTapEvents(self, returnDoubleTapEvents: bool, /) -> ... class QTiltFilter (line 547) | class QTiltFilter(QSensorFilter): method __init__ (line 548) | def __init__(self, *args, **kwargs) -> None: ... method filter (line 550) | def filter(self, reading: QTiltReading, /) -> bool: ... method filter (line 552) | def filter(self, reading: QSensorReading, /) -> bool: ... class QTiltReading (line 554) | class QTiltReading(QSensorReading): method __init__ (line 556) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, yRotat... method copyValuesFrom (line 557) | def copyValuesFrom(self, other: QSensorReading, /) -> None: ... method setXRotation (line 558) | def setXRotation(self, x: float, /) -> None: ... method setYRotation (line 559) | def setYRotation(self, y: float, /) -> None: ... method xRotation (line 560) | def xRotation(self, /) -> float: ... method yRotation (line 561) | def yRotation(self, /) -> float: ... class QTiltSensor (line 563) | class QTiltSensor(QSensor): method __init__ (line 566) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., act... method calibrate (line 567) | def calibrate(self, /) -> None: ... method reading (line 568) | def reading(self, /) -> QTiltReading: ... class qoutputrange (line 570) | class qoutputrange(shiboken6.Object): method __init__ (line 575) | def __init__(self, qoutputrange: qoutputrange, /) -> None: ... method __init__ (line 577) | def __init__(self, /) -> None: ... method __copy__ (line 578) | def __copy__(self, /) -> typing_extensions.Self: ... FILE: pyside6/stubs/PySide6-stubs/QtSerialBus.pyi class QCanBus (line 13) | class QCanBus(PySide6.QtCore.QObject): method __init__ (line 15) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method availableDevices (line 17) | def availableDevices(self, plugin: str, /) -> tuple: ... method availableDevices (line 19) | def availableDevices(self, /) -> tuple: ... method createDevice (line 20) | def createDevice(self, plugin: str, interfaceName: str, /) -> tuple: ... method instance (line 22) | def instance() -> QCanBus: ... method plugins (line 23) | def plugins(self, /) -> List[str]: ... class QCanBusDevice (line 25) | class QCanBusDevice(PySide6.QtCore.QObject): class CanBusDeviceState (line 26) | class CanBusDeviceState(enum.Enum): class CanBusError (line 32) | class CanBusError(enum.Enum): class CanBusStatus (line 42) | class CanBusStatus(enum.Enum): class ConfigurationKey (line 49) | class ConfigurationKey(enum.Enum): class Direction (line 60) | class Direction(enum.Flag): class Filter (line 65) | class Filter(shiboken6.Object): class FormatFilter (line 66) | class FormatFilter(enum.Flag): method __init__ (line 75) | def __init__(self, Filter: QCanBusDevice.Filter, /) -> None: ... method __init__ (line 77) | def __init__(self, /) -> None: ... method __copy__ (line 78) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 79) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 80) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 81) | def __gt__(self, other: object) -> bool: ... method __le__ (line 82) | def __le__(self, other: object) -> bool: ... method __lt__ (line 83) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 84) | def __ne__(self, other: object) -> bool: ... method __init__ (line 90) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method busStatus (line 91) | def busStatus(self, /) -> QCanBusDevice.CanBusStatus: ... method clear (line 92) | def clear(self, /, direction: QCanBusDevice.Direction = ...) -> None: ... method clearError (line 93) | def clearError(self, /) -> None: ... method close (line 94) | def close(self, /) -> None: ... method configurationKeys (line 95) | def configurationKeys(self, /) -> List[QCanBusDevice.ConfigurationKey]... method configurationParameter (line 96) | def configurationParameter(self, key: QCanBusDevice.ConfigurationKey, ... method connectDevice (line 97) | def connectDevice(self, /) -> bool: ... method createDeviceInfo (line 100) | def createDeviceInfo(plugin: str, name: str, serialNumber: str, descri... method createDeviceInfo (line 103) | def createDeviceInfo(plugin: str, name: str, isVirtual: bool, isFlexib... method dequeueOutgoingFrame (line 104) | def dequeueOutgoingFrame(self, /) -> QCanBusFrame: ... method deviceInfo (line 105) | def deviceInfo(self, /) -> QCanBusDeviceInfo: ... method disconnectDevice (line 106) | def disconnectDevice(self, /) -> None: ... method enqueueOutgoingFrame (line 107) | def enqueueOutgoingFrame(self, newFrame: QCanBusFrame | QCanBusFrame.F... method enqueueReceivedFrames (line 108) | def enqueueReceivedFrames(self, newFrames: typing.Iterable[QCanBusFram... method error (line 109) | def error(self, /) -> QCanBusDevice.CanBusError: ... method errorString (line 110) | def errorString(self, /) -> str: ... method framesAvailable (line 111) | def framesAvailable(self, /) -> int: ... method framesToWrite (line 112) | def framesToWrite(self, /) -> int: ... method hasBusStatus (line 113) | def hasBusStatus(self, /) -> bool: ... method hasOutgoingFrames (line 114) | def hasOutgoingFrames(self, /) -> bool: ... method interpretErrorFrame (line 115) | def interpretErrorFrame(self, errorFrame: QCanBusFrame | QCanBusFrame.... method open (line 116) | def open(self, /) -> bool: ... method readAllFrames (line 117) | def readAllFrames(self, /) -> List[QCanBusFrame]: ... method readFrame (line 118) | def readFrame(self, /) -> QCanBusFrame: ... method resetController (line 119) | def resetController(self, /) -> None: ... method setConfigurationParameter (line 120) | def setConfigurationParameter(self, key: QCanBusDevice.ConfigurationKe... method setError (line 121) | def setError(self, errorText: str, arg__2: QCanBusDevice.CanBusError, ... method setState (line 122) | def setState(self, newState: QCanBusDevice.CanBusDeviceState, /) -> No... method state (line 123) | def state(self, /) -> QCanBusDevice.CanBusDeviceState: ... method waitForFramesReceived (line 124) | def waitForFramesReceived(self, msecs: int, /) -> bool: ... method waitForFramesWritten (line 125) | def waitForFramesWritten(self, msecs: int, /) -> bool: ... method writeFrame (line 126) | def writeFrame(self, frame: QCanBusFrame | QCanBusFrame.FrameType, /) ... class QCanBusDeviceInfo (line 128) | class QCanBusDeviceInfo(shiboken6.Object): method __init__ (line 129) | def __init__(self, other: QCanBusDeviceInfo, /) -> None: ... method alias (line 130) | def alias(self, /) -> str: ... method channel (line 131) | def channel(self, /) -> int: ... method description (line 132) | def description(self, /) -> str: ... method hasFlexibleDataRate (line 133) | def hasFlexibleDataRate(self, /) -> bool: ... method isVirtual (line 134) | def isVirtual(self, /) -> bool: ... method name (line 135) | def name(self, /) -> str: ... method plugin (line 136) | def plugin(self, /) -> str: ... method serialNumber (line 137) | def serialNumber(self, /) -> str: ... method __copy__ (line 138) | def __copy__(self, /) -> typing_extensions.Self: ... class QCanBusFactory (line 140) | class QCanBusFactory(shiboken6.Object): method __init__ (line 141) | def __init__(self, /) -> None: ... method availableDevices (line 142) | def availableDevices(self, /) -> Tuple[List[QCanBusDeviceInfo], str]: ... method createDevice (line 143) | def createDevice(self, interfaceName: str, /) -> Tuple[QCanBusDevice, ... class QCanBusFrame (line 145) | class QCanBusFrame(shiboken6.Object): class FrameError (line 146) | class FrameError(enum.Flag): class FrameType (line 160) | class FrameType(enum.Enum): class TimeStamp (line 167) | class TimeStamp(shiboken6.Object): method __init__ (line 169) | def __init__(self, /, s: int | None = ..., usec: int | None = ...) -... method __init__ (line 171) | def __init__(self, TimeStamp: QCanBusFrame.TimeStamp, /) -> None: ... method fromMicroSeconds (line 173) | def fromMicroSeconds(usec: int, /) -> QCanBusFrame.TimeStamp: ... method microSeconds (line 174) | def microSeconds(self, /) -> int: ... method seconds (line 175) | def seconds(self, /) -> int: ... method __copy__ (line 176) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 178) | def __init__(self, identifier: int, data: PySide6.QtCore.QByteArray | ... method __init__ (line 180) | def __init__(self, QCanBusFrame: QCanBusFrame, /) -> None: ... method __init__ (line 182) | def __init__(self, /, type: QCanBusFrame.FrameType = ...) -> None: ... method error (line 183) | def error(self, /) -> QCanBusFrame.FrameError: ... method frameId (line 184) | def frameId(self, /) -> int: ... method frameType (line 185) | def frameType(self, /) -> QCanBusFrame.FrameType: ... method hasBitrateSwitch (line 186) | def hasBitrateSwitch(self, /) -> bool: ... method hasErrorStateIndicator (line 187) | def hasErrorStateIndicator(self, /) -> bool: ... method hasExtendedFrameFormat (line 188) | def hasExtendedFrameFormat(self, /) -> bool: ... method hasFlexibleDataRateFormat (line 189) | def hasFlexibleDataRateFormat(self, /) -> bool: ... method hasLocalEcho (line 190) | def hasLocalEcho(self, /) -> bool: ... method isValid (line 191) | def isValid(self, /) -> bool: ... method payload (line 192) | def payload(self, /) -> PySide6.QtCore.QByteArray: ... method setBitrateSwitch (line 193) | def setBitrateSwitch(self, bitrateSwitch: bool, /) -> None: ... method setError (line 194) | def setError(self, e: QCanBusFrame.FrameError, /) -> None: ... method setErrorStateIndicator (line 195) | def setErrorStateIndicator(self, errorStateIndicator: bool, /) -> None... method setExtendedFrameFormat (line 196) | def setExtendedFrameFormat(self, isExtended: bool, /) -> None: ... method setFlexibleDataRateFormat (line 197) | def setFlexibleDataRateFormat(self, isFlexibleData: bool, /) -> None: ... method setFrameId (line 198) | def setFrameId(self, newFrameId: int, /) -> None: ... method setFrameType (line 199) | def setFrameType(self, newFormat: QCanBusFrame.FrameType, /) -> None: ... method setLocalEcho (line 200) | def setLocalEcho(self, localEcho: bool, /) -> None: ... method setPayload (line 201) | def setPayload(self, data: PySide6.QtCore.QByteArray | bytes | bytearr... method setTimeStamp (line 202) | def setTimeStamp(self, ts: QCanBusFrame.TimeStamp, /) -> None: ... method timeStamp (line 203) | def timeStamp(self, /) -> QCanBusFrame.TimeStamp: ... method toString (line 204) | def toString(self, /) -> str: ... method __copy__ (line 205) | def __copy__(self, /) -> typing_extensions.Self: ... method __lshift__ (line 206) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 207) | def __rlshift__(self, other): ... method __rrshift__ (line 208) | def __rrshift__(self, other): ... method __rshift__ (line 209) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QCanDbcFileParser (line 211) | class QCanDbcFileParser(shiboken6.Object): class Error (line 212) | class Error(enum.Enum): method __init__ (line 216) | def __init__(self, /) -> None: ... method error (line 217) | def error(self, /) -> QCanDbcFileParser.Error: ... method errorString (line 218) | def errorString(self, /) -> str: ... method messageDescriptions (line 219) | def messageDescriptions(self, /) -> List[QCanMessageDescription]: ... method messageValueDescriptions (line 220) | def messageValueDescriptions(self, /) -> Dict[QtCanBus.UniqueId, Dict[... method parse (line 222) | def parse(self, fileNames: typing.Iterable[str], /) -> bool: ... method parse (line 224) | def parse(self, fileName: str, /) -> bool: ... # type: ignore[overloa... method parseData (line 225) | def parseData(self, data: str, /) -> bool: ... method uniqueIdDescription (line 227) | def uniqueIdDescription() -> QCanUniqueIdDescription: ... method warnings (line 228) | def warnings(self, /) -> List[str]: ... class QCanFrameProcessor (line 230) | class QCanFrameProcessor(shiboken6.Object): class Error (line 231) | class Error(enum.Enum): class ParseResult (line 238) | class ParseResult(shiboken6.Object): method __init__ (line 242) | def __init__(self, ParseResult: QCanFrameProcessor.ParseResult, /) -... method __init__ (line 244) | def __init__(self, /) -> None: ... method __copy__ (line 245) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 246) | def __init__(self, /) -> None: ... method addMessageDescriptions (line 247) | def addMessageDescriptions(self, descriptions: typing.Iterable[QCanMes... method clearMessageDescriptions (line 248) | def clearMessageDescriptions(self, /) -> None: ... method error (line 249) | def error(self, /) -> QCanFrameProcessor.Error: ... method errorString (line 250) | def errorString(self, /) -> str: ... method messageDescriptions (line 251) | def messageDescriptions(self, /) -> List[QCanMessageDescription]: ... method parseFrame (line 252) | def parseFrame(self, frame: QCanBusFrame | QCanBusFrame.FrameType, /) ... method prepareFrame (line 253) | def prepareFrame(self, uniqueId: QtCanBus.UniqueId, signalValues: Dict... method setMessageDescriptions (line 254) | def setMessageDescriptions(self, descriptions: typing.Iterable[QCanMes... method setUniqueIdDescription (line 255) | def setUniqueIdDescription(self, description: QCanUniqueIdDescription,... method uniqueIdDescription (line 256) | def uniqueIdDescription(self, /) -> QCanUniqueIdDescription: ... method warnings (line 257) | def warnings(self, /) -> List[str]: ... class QCanMessageDescription (line 259) | class QCanMessageDescription(shiboken6.Object): method __init__ (line 261) | def __init__(self, other: QCanMessageDescription, /) -> None: ... method __init__ (line 263) | def __init__(self, /) -> None: ... method addSignalDescription (line 264) | def addSignalDescription(self, description: QCanSignalDescription, /) ... method clearSignalDescriptions (line 265) | def clearSignalDescriptions(self, /) -> None: ... method comment (line 266) | def comment(self, /) -> str: ... method isValid (line 267) | def isValid(self, /) -> bool: ... method name (line 268) | def name(self, /) -> str: ... method setComment (line 269) | def setComment(self, text: str, /) -> None: ... method setName (line 270) | def setName(self, name: str, /) -> None: ... method setSignalDescriptions (line 271) | def setSignalDescriptions(self, descriptions: typing.Iterable[QCanSign... method setSize (line 272) | def setSize(self, size: int, /) -> None: ... method setTransmitter (line 273) | def setTransmitter(self, transmitter: str, /) -> None: ... method setUniqueId (line 274) | def setUniqueId(self, id: QtCanBus.UniqueId, /) -> None: ... method signalDescriptionForName (line 275) | def signalDescriptionForName(self, name: str, /) -> QCanSignalDescript... method signalDescriptions (line 276) | def signalDescriptions(self, /) -> List[QCanSignalDescription]: ... method size (line 277) | def size(self, /) -> int: ... method swap (line 278) | def swap(self, other: QCanMessageDescription, /) -> None: ... method transmitter (line 279) | def transmitter(self, /) -> str: ... method uniqueId (line 280) | def uniqueId(self, /) -> QtCanBus.UniqueId: ... method __copy__ (line 281) | def __copy__(self, /) -> typing_extensions.Self: ... class QCanSignalDescription (line 283) | class QCanSignalDescription(shiboken6.Object): class MultiplexValueRange (line 284) | class MultiplexValueRange(shiboken6.Object): method __init__ (line 288) | def __init__(self, MultiplexValueRange: QCanSignalDescription.Multip... method __init__ (line 290) | def __init__(self, /) -> None: ... method __copy__ (line 291) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 292) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 293) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 294) | def __gt__(self, other: object) -> bool: ... method __le__ (line 295) | def __le__(self, other: object) -> bool: ... method __lt__ (line 296) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 297) | def __ne__(self, other: object) -> bool: ... method __init__ (line 299) | def __init__(self, other: QCanSignalDescription, /) -> None: ... method __init__ (line 301) | def __init__(self, /) -> None: ... method addMultiplexSignal (line 303) | def addMultiplexSignal(self, name: str, value: Any, /) -> None: ... method addMultiplexSignal (line 305) | def addMultiplexSignal(self, name: str, ranges: typing.Iterable[QCanSi... method bitLength (line 306) | def bitLength(self, /) -> int: ... method clearMultiplexSignals (line 307) | def clearMultiplexSignals(self, /) -> None: ... method comment (line 308) | def comment(self, /) -> str: ... method dataEndian (line 309) | def dataEndian(self, /) -> PySide6.QtCore.QSysInfo.Endian: ... method dataFormat (line 310) | def dataFormat(self, /) -> QtCanBus.DataFormat: ... method dataSource (line 311) | def dataSource(self, /) -> QtCanBus.DataSource: ... method factor (line 312) | def factor(self, /) -> float: ... method isValid (line 313) | def isValid(self, /) -> bool: ... method maximum (line 314) | def maximum(self, /) -> float: ... method minimum (line 315) | def minimum(self, /) -> float: ... method multiplexSignals (line 316) | def multiplexSignals(self, /) -> Dict[str, List[QCanSignalDescription.... method multiplexState (line 317) | def multiplexState(self, /) -> QtCanBus.MultiplexState: ... method name (line 318) | def name(self, /) -> str: ... method offset (line 319) | def offset(self, /) -> float: ... method physicalUnit (line 320) | def physicalUnit(self, /) -> str: ... method receiver (line 321) | def receiver(self, /) -> str: ... method scaling (line 322) | def scaling(self, /) -> float: ... method setBitLength (line 323) | def setBitLength(self, length: int, /) -> None: ... method setComment (line 324) | def setComment(self, text: str, /) -> None: ... method setDataEndian (line 325) | def setDataEndian(self, endian: PySide6.QtCore.QSysInfo.Endian, /) -> ... method setDataFormat (line 326) | def setDataFormat(self, format: QtCanBus.DataFormat, /) -> None: ... method setDataSource (line 327) | def setDataSource(self, source: QtCanBus.DataSource, /) -> None: ... method setFactor (line 328) | def setFactor(self, factor: float, /) -> None: ... method setMultiplexSignals (line 329) | def setMultiplexSignals(self, multiplexorSignals: Dict[str, typing.Ite... method setMultiplexState (line 330) | def setMultiplexState(self, state: QtCanBus.MultiplexState, /) -> None... method setName (line 331) | def setName(self, name: str, /) -> None: ... method setOffset (line 332) | def setOffset(self, offset: float, /) -> None: ... method setPhysicalUnit (line 333) | def setPhysicalUnit(self, unit: str, /) -> None: ... method setRange (line 334) | def setRange(self, minimum: float, maximum: float, /) -> None: ... method setReceiver (line 335) | def setReceiver(self, receiver: str, /) -> None: ... method setScaling (line 336) | def setScaling(self, scaling: float, /) -> None: ... method setStartBit (line 337) | def setStartBit(self, bit: int, /) -> None: ... method startBit (line 338) | def startBit(self, /) -> int: ... method swap (line 339) | def swap(self, other: QCanSignalDescription, /) -> None: ... method __copy__ (line 340) | def __copy__(self, /) -> typing_extensions.Self: ... class QCanUniqueIdDescription (line 342) | class QCanUniqueIdDescription(shiboken6.Object): method __init__ (line 344) | def __init__(self, other: QCanUniqueIdDescription, /) -> None: ... method __init__ (line 346) | def __init__(self, /) -> None: ... method bitLength (line 347) | def bitLength(self, /) -> int: ... method endian (line 348) | def endian(self, /) -> PySide6.QtCore.QSysInfo.Endian: ... method isValid (line 349) | def isValid(self, /) -> bool: ... method setBitLength (line 350) | def setBitLength(self, length: int, /) -> None: ... method setEndian (line 351) | def setEndian(self, endian: PySide6.QtCore.QSysInfo.Endian, /) -> None... method setSource (line 352) | def setSource(self, source: QtCanBus.DataSource, /) -> None: ... method setStartBit (line 353) | def setStartBit(self, bit: int, /) -> None: ... method source (line 354) | def source(self, /) -> QtCanBus.DataSource: ... method startBit (line 355) | def startBit(self, /) -> int: ... method swap (line 356) | def swap(self, other: QCanUniqueIdDescription, /) -> None: ... method __copy__ (line 357) | def __copy__(self, /) -> typing_extensions.Self: ... class QIntList (line 359) | class QIntList: method __init__ (line 361) | def __init__(self, *args, **kwargs) -> None: ... method append (line 362) | def append(self, *args, **kwargs): ... method capacity (line 363) | def capacity(self, *args, **kwargs): ... method clear (line 364) | def clear(self, *args, **kwargs): ... method constData (line 365) | def constData(self, *args, **kwargs): ... method data (line 366) | def data(self, *args, **kwargs): ... method pop_back (line 367) | def pop_back(self, *args, **kwargs): ... method pop_front (line 368) | def pop_front(self, *args, **kwargs): ... method prepend (line 369) | def prepend(self, *args, **kwargs): ... method push_back (line 370) | def push_back(self, *args, **kwargs): ... method push_front (line 371) | def push_front(self, *args, **kwargs): ... method removeFirst (line 372) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 373) | def removeLast(self, *args, **kwargs): ... method reserve (line 374) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 375) | def __delitem__(self, other) -> None: ... method __getitem__ (line 376) | def __getitem__(self, index): ... method __len__ (line 377) | def __len__(self) -> int: ... method __setitem__ (line 378) | def __setitem__(self, index, object) -> None: ... class QModbusClient (line 380) | class QModbusClient(QModbusDevice): method __init__ (line 383) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method numberOfRetries (line 384) | def numberOfRetries(self, /) -> int: ... method processPrivateResponse (line 385) | def processPrivateResponse(self, response: QModbusResponse, data: QMod... method processResponse (line 386) | def processResponse(self, response: QModbusResponse, data: QModbusData... method sendRawRequest (line 387) | def sendRawRequest(self, request: QModbusRequest, serverAddress: int, ... method sendReadRequest (line 388) | def sendReadRequest(self, read: QModbusDataUnit, serverAddress: int, /... method sendReadWriteRequest (line 389) | def sendReadWriteRequest(self, read: QModbusDataUnit, write: QModbusDa... method sendWriteRequest (line 390) | def sendWriteRequest(self, write: QModbusDataUnit, serverAddress: int,... method setNumberOfRetries (line 391) | def setNumberOfRetries(self, number: int, /) -> None: ... method setTimeout (line 392) | def setTimeout(self, newTimeout: int, /) -> None: ... method timeout (line 393) | def timeout(self, /) -> int: ... class QModbusDataUnit (line 395) | class QModbusDataUnit(shiboken6.Object): class RegisterType (line 396) | class RegisterType(enum.Enum): method __init__ (line 403) | def __init__(self, type: QModbusDataUnit.RegisterType, newStartAddress... method __init__ (line 405) | def __init__(self, type: QModbusDataUnit.RegisterType, newStartAddress... method __init__ (line 407) | def __init__(self, type: QModbusDataUnit.RegisterType, /) -> None: ... method __init__ (line 409) | def __init__(self, QModbusDataUnit: QModbusDataUnit, /) -> None: ... method __init__ (line 411) | def __init__(self, /) -> None: ... method isValid (line 412) | def isValid(self, /) -> bool: ... method registerType (line 413) | def registerType(self, /) -> QModbusDataUnit.RegisterType: ... method setRegisterType (line 414) | def setRegisterType(self, type: QModbusDataUnit.RegisterType, /) -> No... method setStartAddress (line 415) | def setStartAddress(self, newAddress: int, /) -> None: ... method setValue (line 416) | def setValue(self, index: int, newValue: int, /) -> None: ... method setValueCount (line 417) | def setValueCount(self, newCount: int, /) -> None: ... method setValues (line 418) | def setValues(self, newValues: typing.Iterable[int], /) -> None: ... method startAddress (line 419) | def startAddress(self, /) -> int: ... method value (line 420) | def value(self, index: int, /) -> int: ... method valueCount (line 421) | def valueCount(self, /) -> int: ... method values (line 422) | def values(self, /) -> List[int]: ... method __copy__ (line 423) | def __copy__(self, /) -> typing_extensions.Self: ... class QModbusDevice (line 425) | class QModbusDevice(PySide6.QtCore.QObject): class ConnectionParameter (line 426) | class ConnectionParameter(enum.Enum): class Error (line 435) | class Error(enum.Enum): class IntermediateError (line 447) | class IntermediateError(enum.Enum): class State (line 451) | class State(enum.Enum): method __init__ (line 459) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method close (line 460) | def close(self, /) -> None: ... method connectDevice (line 461) | def connectDevice(self, /) -> bool: ... method connectionParameter (line 462) | def connectionParameter(self, parameter: QModbusDevice.ConnectionParam... method device (line 463) | def device(self, /) -> PySide6.QtCore.QIODevice: ... method disconnectDevice (line 464) | def disconnectDevice(self, /) -> None: ... method error (line 465) | def error(self, /) -> QModbusDevice.Error: ... method errorString (line 466) | def errorString(self, /) -> str: ... method open (line 467) | def open(self, /) -> bool: ... method setConnectionParameter (line 468) | def setConnectionParameter(self, parameter: QModbusDevice.ConnectionPa... method setError (line 469) | def setError(self, errorText: str, error: QModbusDevice.Error, /) -> N... method setState (line 470) | def setState(self, newState: QModbusDevice.State, /) -> None: ... method state (line 471) | def state(self, /) -> QModbusDevice.State: ... class QModbusDeviceIdentification (line 473) | class QModbusDeviceIdentification(shiboken6.Object): class ConformityLevel (line 474) | class ConformityLevel(enum.Enum): class ObjectId (line 482) | class ObjectId(enum.Enum): class ReadDeviceIdCode (line 494) | class ReadDeviceIdCode(enum.Enum): method __init__ (line 500) | def __init__(self, QModbusDeviceIdentification: QModbusDeviceIdentific... method __init__ (line 502) | def __init__(self, /) -> None: ... method conformityLevel (line 503) | def conformityLevel(self, /) -> QModbusDeviceIdentification.Conformity... method contains (line 504) | def contains(self, objectId: int, /) -> bool: ... method fromByteArray (line 506) | def fromByteArray(ba: PySide6.QtCore.QByteArray | bytes | bytearray | ... method insert (line 507) | def insert(self, objectId: int, data: PySide6.QtCore.QByteArray | byte... method isValid (line 508) | def isValid(self, /) -> bool: ... method objectIds (line 509) | def objectIds(self, /) -> List[int]: ... method remove (line 510) | def remove(self, objectId: int, /) -> None: ... method setConformityLevel (line 511) | def setConformityLevel(self, level: QModbusDeviceIdentification.Confor... method value (line 512) | def value(self, objectId: int, /) -> PySide6.QtCore.QByteArray: ... method __copy__ (line 513) | def __copy__(self, /) -> typing_extensions.Self: ... class QModbusExceptionResponse (line 515) | class QModbusExceptionResponse(QModbusResponse): method __init__ (line 517) | def __init__(self, fc: QModbusPdu.FunctionCode, ec: QModbusPdu.Excepti... method __init__ (line 519) | def __init__(self, pdu: QModbusPdu, /) -> None: ... method __init__ (line 521) | def __init__(self, /) -> None: ... method setExceptionCode (line 522) | def setExceptionCode(self, ec: QModbusPdu.ExceptionCode, /) -> None: ... method setFunctionCode (line 523) | def setFunctionCode(self, c: QModbusPdu.FunctionCode, /) -> None: ... class QModbusPdu (line 525) | class QModbusPdu(shiboken6.Object): class ExceptionCode (line 526) | class ExceptionCode(enum.Enum): class FunctionCode (line 539) | class FunctionCode(enum.Enum): method __init__ (line 562) | def __init__(self, code: QModbusPdu.FunctionCode, newData: PySide6.QtC... method __init__ (line 564) | def __init__(self, arg__1: QModbusPdu, /) -> None: ... method __init__ (line 566) | def __init__(self, /) -> None: ... method data (line 567) | def data(self, /) -> PySide6.QtCore.QByteArray: ... method dataSize (line 568) | def dataSize(self, /) -> int: ... method exceptionCode (line 569) | def exceptionCode(self, /) -> QModbusPdu.ExceptionCode: ... method functionCode (line 570) | def functionCode(self, /) -> QModbusPdu.FunctionCode: ... method isException (line 571) | def isException(self, /) -> bool: ... method isValid (line 572) | def isValid(self, /) -> bool: ... method setData (line 573) | def setData(self, newData: PySide6.QtCore.QByteArray | bytes | bytearr... method setFunctionCode (line 574) | def setFunctionCode(self, code: QModbusPdu.FunctionCode, /) -> None: ... method size (line 575) | def size(self, /) -> int: ... method __lshift__ (line 576) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 577) | def __rlshift__(self, other): ... class QModbusReply (line 579) | class QModbusReply(PySide6.QtCore.QObject): class ReplyType (line 580) | class ReplyType(enum.Enum): method __init__ (line 588) | def __init__(self, type: QModbusReply.ReplyType, serverAddress: int, /... method addIntermediateError (line 589) | def addIntermediateError(self, error: QModbusDevice.IntermediateError,... method error (line 590) | def error(self, /) -> QModbusDevice.Error: ... method errorString (line 591) | def errorString(self, /) -> str: ... method intermediateErrors (line 592) | def intermediateErrors(self, /) -> List[QModbusDevice.IntermediateErro... method isFinished (line 593) | def isFinished(self, /) -> bool: ... method rawResult (line 594) | def rawResult(self, /) -> QModbusResponse: ... method result (line 595) | def result(self, /) -> QModbusDataUnit: ... method serverAddress (line 596) | def serverAddress(self, /) -> int: ... method setError (line 597) | def setError(self, error: QModbusDevice.Error, errorText: str, /) -> N... method setFinished (line 598) | def setFinished(self, isFinished: bool, /) -> None: ... method setRawResult (line 599) | def setRawResult(self, unit: QModbusResponse, /) -> None: ... method setResult (line 600) | def setResult(self, unit: QModbusDataUnit, /) -> None: ... method type (line 601) | def type(self, /) -> QModbusReply.ReplyType: ... class QModbusRequest (line 603) | class QModbusRequest(QModbusPdu): method __init__ (line 605) | def __init__(self, code: QModbusPdu.FunctionCode, /, newData: PySide6.... method __init__ (line 607) | def __init__(self, pdu: QModbusPdu, /) -> None: ... method __init__ (line 609) | def __init__(self, /) -> None: ... method calculateDataSize (line 611) | def calculateDataSize(pdu: QModbusRequest, /) -> int: ... method minimumDataSize (line 613) | def minimumDataSize(pdu: QModbusRequest, /) -> int: ... method __lshift__ (line 614) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 615) | def __rlshift__(self, other): ... method __rrshift__ (line 616) | def __rrshift__(self, other): ... method __rshift__ (line 617) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QModbusResponse (line 619) | class QModbusResponse(QModbusPdu): method __init__ (line 621) | def __init__(self, code: QModbusPdu.FunctionCode, /, newData: PySide6.... method __init__ (line 623) | def __init__(self, pdu: QModbusPdu, /) -> None: ... method __init__ (line 625) | def __init__(self, /) -> None: ... method calculateDataSize (line 627) | def calculateDataSize(pdu: QModbusResponse, /) -> int: ... method minimumDataSize (line 629) | def minimumDataSize(pdu: QModbusResponse, /) -> int: ... method __lshift__ (line 630) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 631) | def __rlshift__(self, other): ... method __rrshift__ (line 632) | def __rrshift__(self, other): ... method __rshift__ (line 633) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QModbusRtuSerialClient (line 635) | class QModbusRtuSerialClient(QModbusClient): method __init__ (line 637) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method close (line 638) | def close(self, /) -> None: ... method interFrameDelay (line 639) | def interFrameDelay(self, /) -> int: ... method open (line 640) | def open(self, /) -> bool: ... method setInterFrameDelay (line 641) | def setInterFrameDelay(self, microseconds: int, /) -> None: ... method setTurnaroundDelay (line 642) | def setTurnaroundDelay(self, turnaroundDelay: int, /) -> None: ... method turnaroundDelay (line 643) | def turnaroundDelay(self, /) -> int: ... class QModbusRtuSerialServer (line 645) | class QModbusRtuSerialServer(QModbusServer): method __init__ (line 647) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., dat... method close (line 648) | def close(self, /) -> None: ... method interFrameDelay (line 649) | def interFrameDelay(self, /) -> int: ... method open (line 650) | def open(self, /) -> bool: ... method processRequest (line 651) | def processRequest(self, request: QModbusPdu, /) -> QModbusResponse: ... method processesBroadcast (line 652) | def processesBroadcast(self, /) -> bool: ... method setInterFrameDelay (line 653) | def setInterFrameDelay(self, microseconds: int, /) -> None: ... class QModbusServer (line 655) | class QModbusServer(QModbusDevice): class Option (line 656) | class Option(enum.Enum): method __init__ (line 669) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method data (line 671) | def data(self, table: QModbusDataUnit.RegisterType, address: int, /) -... method data (line 673) | def data(self, newData: QModbusDataUnit, /) -> bool: ... method processPrivateRequest (line 674) | def processPrivateRequest(self, request: QModbusPdu, /) -> QModbusResp... method processRequest (line 675) | def processRequest(self, request: QModbusPdu, /) -> QModbusResponse: ... method processesBroadcast (line 676) | def processesBroadcast(self, /) -> bool: ... method readData (line 677) | def readData(self, newData: QModbusDataUnit, /) -> bool: ... method serverAddress (line 678) | def serverAddress(self, /) -> int: ... method setData (line 680) | def setData(self, table: QModbusDataUnit.RegisterType, address: int, d... method setData (line 682) | def setData(self, unit: QModbusDataUnit, /) -> bool: ... method setMap (line 683) | def setMap(self, map: Dict[QModbusDataUnit.RegisterType, QModbusDataUn... method setServerAddress (line 684) | def setServerAddress(self, serverAddress: int, /) -> None: ... method setValue (line 685) | def setValue(self, option: int, value: Any, /) -> bool: ... method value (line 686) | def value(self, option: int, /) -> Any: ... method writeData (line 687) | def writeData(self, unit: QModbusDataUnit, /) -> bool: ... class QModbusTcpClient (line 689) | class QModbusTcpClient(QModbusClient): method __init__ (line 691) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method close (line 692) | def close(self, /) -> None: ... method open (line 693) | def open(self, /) -> bool: ... class QModbusTcpConnectionObserver (line 695) | class QModbusTcpConnectionObserver(shiboken6.Object): method __init__ (line 696) | def __init__(self, /) -> None: ... method acceptNewConnection (line 697) | def acceptNewConnection(self, newClient: PySide6.QtNetwork.QTcpSocket,... class QModbusTcpServer (line 699) | class QModbusTcpServer(QModbusServer): method __init__ (line 702) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., dat... method close (line 703) | def close(self, /) -> None: ... method installConnectionObserver (line 704) | def installConnectionObserver(self, observer: QModbusTcpConnectionObse... method open (line 705) | def open(self, /) -> bool: ... method processRequest (line 706) | def processRequest(self, request: QModbusPdu, /) -> QModbusResponse: ... class QtCanBus (line 708) | class QtCanBus(shiboken6.Object): class DataFormat (line 709) | class DataFormat(enum.Enum): class DataSource (line 716) | class DataSource(enum.Enum): class MultiplexState (line 720) | class MultiplexState(enum.Enum): class UniqueId (line 726) | class UniqueId(enum.Enum): ... # type: ignore[misc] method __init__ (line 727) | def __init__(self, *args, **kwargs) -> None: ... method qbswap (line 729) | def qbswap(src: QtCanBus.UniqueId, /) -> QtCanBus.UniqueId: ... FILE: pyside6/stubs/PySide6-stubs/QtSerialPort.pyi class QIntList (line 12) | class QIntList: method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method append (line 15) | def append(self, *args, **kwargs): ... method capacity (line 16) | def capacity(self, *args, **kwargs): ... method clear (line 17) | def clear(self, *args, **kwargs): ... method constData (line 18) | def constData(self, *args, **kwargs): ... method data (line 19) | def data(self, *args, **kwargs): ... method pop_back (line 20) | def pop_back(self, *args, **kwargs): ... method pop_front (line 21) | def pop_front(self, *args, **kwargs): ... method prepend (line 22) | def prepend(self, *args, **kwargs): ... method push_back (line 23) | def push_back(self, *args, **kwargs): ... method push_front (line 24) | def push_front(self, *args, **kwargs): ... method removeFirst (line 25) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 26) | def removeLast(self, *args, **kwargs): ... method reserve (line 27) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 28) | def __delitem__(self, other) -> None: ... method __getitem__ (line 29) | def __getitem__(self, index): ... method __len__ (line 30) | def __len__(self) -> int: ... method __setitem__ (line 31) | def __setitem__(self, index, object) -> None: ... class QSerialPort (line 33) | class QSerialPort(PySide6.QtCore.QIODevice): class BaudRate (line 34) | class BaudRate(enum.IntEnum): class DataBits (line 44) | class DataBits(enum.Enum): class Direction (line 50) | class Direction(enum.Flag): class FlowControl (line 55) | class FlowControl(enum.Enum): class Parity (line 60) | class Parity(enum.Enum): class PinoutSignal (line 67) | class PinoutSignal(enum.Flag): class SerialPortError (line 78) | class SerialPortError(enum.Enum): class StopBits (line 91) | class StopBits(enum.Enum): method __init__ (line 107) | def __init__(self, name: str, /, parent: PySide6.QtCore.QObject | None... method __init__ (line 109) | def __init__(self, info: QSerialPortInfo, /, parent: PySide6.QtCore.QO... method __init__ (line 111) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method baudRate (line 112) | def baudRate(self, /, directions: QSerialPort.Direction = ...) -> int:... method bytesAvailable (line 113) | def bytesAvailable(self, /) -> int: ... method bytesToWrite (line 114) | def bytesToWrite(self, /) -> int: ... method canReadLine (line 115) | def canReadLine(self, /) -> bool: ... method clear (line 116) | def clear(self, /, directions: QSerialPort.Direction = ...) -> bool: ... method clearError (line 117) | def clearError(self, /) -> None: ... method close (line 118) | def close(self, /) -> None: ... method dataBits (line 119) | def dataBits(self, /) -> QSerialPort.DataBits: ... method error (line 120) | def error(self, /) -> QSerialPort.SerialPortError: ... method flowControl (line 121) | def flowControl(self, /) -> QSerialPort.FlowControl: ... method flush (line 122) | def flush(self, /) -> bool: ... method handle (line 123) | def handle(self, /) -> int: ... method isBreakEnabled (line 124) | def isBreakEnabled(self, /) -> bool: ... method isDataTerminalReady (line 125) | def isDataTerminalReady(self, /) -> bool: ... method isRequestToSend (line 126) | def isRequestToSend(self, /) -> bool: ... method isSequential (line 127) | def isSequential(self, /) -> bool: ... method open (line 128) | def open(self, mode: PySide6.QtCore.QIODeviceBase.OpenModeFlag, /) -> ... method parity (line 129) | def parity(self, /) -> QSerialPort.Parity: ... method pinoutSignals (line 130) | def pinoutSignals(self, /) -> QSerialPort.PinoutSignal: ... method portName (line 131) | def portName(self, /) -> str: ... method readBufferSize (line 132) | def readBufferSize(self, /) -> int: ... method readData (line 133) | def readData(self, maxSize: int, /) -> typing.Any: ... method readLineData (line 134) | def readLineData(self, maxSize: int, /) -> typing.Any: ... method setBaudRate (line 135) | def setBaudRate(self, baudRate: int, /, directions: QSerialPort.Direct... method setBreakEnabled (line 136) | def setBreakEnabled(self, /, set: bool = ...) -> bool: ... method setDataBits (line 137) | def setDataBits(self, dataBits: QSerialPort.DataBits, /) -> bool: ... method setDataTerminalReady (line 138) | def setDataTerminalReady(self, set: bool, /) -> bool: ... method setFlowControl (line 139) | def setFlowControl(self, flowControl: QSerialPort.FlowControl, /) -> b... method setParity (line 140) | def setParity(self, parity: QSerialPort.Parity, /) -> bool: ... method setPort (line 141) | def setPort(self, info: QSerialPortInfo, /) -> None: ... method setPortName (line 142) | def setPortName(self, name: str, /) -> None: ... method setReadBufferSize (line 143) | def setReadBufferSize(self, size: int, /) -> None: ... method setRequestToSend (line 144) | def setRequestToSend(self, set: bool, /) -> bool: ... method setSettingsRestoredOnClose (line 145) | def setSettingsRestoredOnClose(self, restore: bool, /) -> None: ... method setStopBits (line 146) | def setStopBits(self, stopBits: QSerialPort.StopBits, /) -> bool: ... method setWriteBufferSize (line 147) | def setWriteBufferSize(self, size: int, /) -> None: ... method settingsRestoredOnClose (line 148) | def settingsRestoredOnClose(self, /) -> bool: ... method stopBits (line 149) | def stopBits(self, /) -> QSerialPort.StopBits: ... method waitForBytesWritten (line 150) | def waitForBytesWritten(self, /, msecs: int = ...) -> bool: ... method waitForReadyRead (line 151) | def waitForReadyRead(self, /, msecs: int = ...) -> bool: ... method writeBufferSize (line 152) | def writeBufferSize(self, /) -> int: ... method writeData (line 153) | def writeData(self, data: bytes | bytearray | memoryview, maxSize: int... class QSerialPortInfo (line 155) | class QSerialPortInfo(shiboken6.Object): method __init__ (line 157) | def __init__(self, port: QSerialPort, /) -> None: ... method __init__ (line 159) | def __init__(self, other: QSerialPortInfo, /) -> None: ... method __init__ (line 161) | def __init__(self, name: str, /) -> None: ... method __init__ (line 163) | def __init__(self, /) -> None: ... method availablePorts (line 165) | def availablePorts() -> List[QSerialPortInfo]: ... method description (line 166) | def description(self, /) -> str: ... method hasProductIdentifier (line 167) | def hasProductIdentifier(self, /) -> bool: ... method hasVendorIdentifier (line 168) | def hasVendorIdentifier(self, /) -> bool: ... method isNull (line 169) | def isNull(self, /) -> bool: ... method manufacturer (line 170) | def manufacturer(self, /) -> str: ... method portName (line 171) | def portName(self, /) -> str: ... method productIdentifier (line 172) | def productIdentifier(self, /) -> int: ... method serialNumber (line 173) | def serialNumber(self, /) -> str: ... method standardBaudRates (line 175) | def standardBaudRates() -> List[int]: ... method swap (line 176) | def swap(self, other: QSerialPortInfo, /) -> None: ... method systemLocation (line 177) | def systemLocation(self, /) -> str: ... method vendorIdentifier (line 178) | def vendorIdentifier(self, /) -> int: ... method __bool__ (line 179) | def __bool__(self) -> bool: ... method __copy__ (line 180) | def __copy__(self, /) -> typing_extensions.Self: ... FILE: pyside6/stubs/PySide6-stubs/QtSpatialAudio.pyi class QAmbientSound (line 13) | class QAmbientSound(PySide6.QtCore.QObject): class Loops (line 14) | class Loops(enum.IntEnum): method __init__ (line 22) | def __init__(self, engine: QAudioEngine, /, *, source: PySide6.QtCore.... method autoPlay (line 23) | def autoPlay(self, /) -> bool: ... method engine (line 24) | def engine(self, /) -> QAudioEngine: ... method loops (line 25) | def loops(self, /) -> int: ... method pause (line 26) | def pause(self, /) -> None: ... method play (line 27) | def play(self, /) -> None: ... method setAutoPlay (line 28) | def setAutoPlay(self, autoPlay: bool, /) -> None: ... method setLoops (line 29) | def setLoops(self, loops: int, /) -> None: ... method setSource (line 30) | def setSource(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setVolume (line 31) | def setVolume(self, volume: float, /) -> None: ... method source (line 32) | def source(self, /) -> PySide6.QtCore.QUrl: ... method stop (line 33) | def stop(self, /) -> None: ... method volume (line 34) | def volume(self, /) -> float: ... class QAudioEngine (line 36) | class QAudioEngine(PySide6.QtCore.QObject): class OutputMode (line 37) | class OutputMode(enum.Enum): method __init__ (line 50) | def __init__(self, sampleRate: int, /, parent: PySide6.QtCore.QObject ... method __init__ (line 52) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, *, output... method __init__ (line 54) | def __init__(self, /, *, outputMode: QAudioEngine.OutputMode | None = ... method distanceScale (line 55) | def distanceScale(self, /) -> float: ... method masterVolume (line 56) | def masterVolume(self, /) -> float: ... method outputDevice (line 57) | def outputDevice(self, /) -> PySide6.QtMultimedia.QAudioDevice: ... method outputMode (line 58) | def outputMode(self, /) -> QAudioEngine.OutputMode: ... method pause (line 59) | def pause(self, /) -> None: ... method paused (line 60) | def paused(self, /) -> bool: ... method resume (line 61) | def resume(self, /) -> None: ... method roomEffectsEnabled (line 62) | def roomEffectsEnabled(self, /) -> bool: ... method sampleRate (line 63) | def sampleRate(self, /) -> int: ... method setDistanceScale (line 64) | def setDistanceScale(self, scale: float, /) -> None: ... method setMasterVolume (line 65) | def setMasterVolume(self, volume: float, /) -> None: ... method setOutputDevice (line 66) | def setOutputDevice(self, device: PySide6.QtMultimedia.QAudioDevice, /... method setOutputMode (line 67) | def setOutputMode(self, mode: QAudioEngine.OutputMode, /) -> None: ... method setPaused (line 68) | def setPaused(self, paused: bool, /) -> None: ... method setRoomEffectsEnabled (line 69) | def setRoomEffectsEnabled(self, enabled: bool, /) -> None: ... method start (line 70) | def start(self, /) -> None: ... method stop (line 71) | def stop(self, /) -> None: ... class QAudioListener (line 73) | class QAudioListener(PySide6.QtCore.QObject): method __init__ (line 75) | def __init__(self, engine: QAudioEngine, /, destroyed: typing.Callable... method engine (line 76) | def engine(self, /) -> QAudioEngine: ... method position (line 77) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method rotation (line 78) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method setPosition (line 79) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setRotation (line 80) | def setRotation(self, q: PySide6.QtGui.QQuaternion, /) -> None: ... class QAudioRoom (line 82) | class QAudioRoom(PySide6.QtCore.QObject): class Material (line 83) | class Material(enum.Enum): class Wall (line 109) | class Wall(enum.Enum): method __init__ (line 125) | def __init__(self, engine: QAudioEngine, /, *, position: PySide6.QtGui... method dimensions (line 126) | def dimensions(self, /) -> PySide6.QtGui.QVector3D: ... method position (line 127) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method reflectionGain (line 128) | def reflectionGain(self, /) -> float: ... method reverbBrightness (line 129) | def reverbBrightness(self, /) -> float: ... method reverbGain (line 130) | def reverbGain(self, /) -> float: ... method reverbTime (line 131) | def reverbTime(self, /) -> float: ... method rotation (line 132) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method setDimensions (line 133) | def setDimensions(self, dim: PySide6.QtGui.QVector3D, /) -> None: ... method setPosition (line 134) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setReflectionGain (line 135) | def setReflectionGain(self, factor: float, /) -> None: ... method setReverbBrightness (line 136) | def setReverbBrightness(self, factor: float, /) -> None: ... method setReverbGain (line 137) | def setReverbGain(self, factor: float, /) -> None: ... method setReverbTime (line 138) | def setReverbTime(self, factor: float, /) -> None: ... method setRotation (line 139) | def setRotation(self, q: PySide6.QtGui.QQuaternion, /) -> None: ... method setWallMaterial (line 140) | def setWallMaterial(self, wall: QAudioRoom.Wall, material: QAudioRoom.... method wallMaterial (line 141) | def wallMaterial(self, wall: QAudioRoom.Wall, /) -> QAudioRoom.Materia... class QIntList (line 143) | class QIntList: method __init__ (line 145) | def __init__(self, *args, **kwargs) -> None: ... method append (line 146) | def append(self, *args, **kwargs): ... method capacity (line 147) | def capacity(self, *args, **kwargs): ... method clear (line 148) | def clear(self, *args, **kwargs): ... method constData (line 149) | def constData(self, *args, **kwargs): ... method data (line 150) | def data(self, *args, **kwargs): ... method pop_back (line 151) | def pop_back(self, *args, **kwargs): ... method pop_front (line 152) | def pop_front(self, *args, **kwargs): ... method prepend (line 153) | def prepend(self, *args, **kwargs): ... method push_back (line 154) | def push_back(self, *args, **kwargs): ... method push_front (line 155) | def push_front(self, *args, **kwargs): ... method removeFirst (line 156) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 157) | def removeLast(self, *args, **kwargs): ... method reserve (line 158) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 159) | def __delitem__(self, other) -> None: ... method __getitem__ (line 160) | def __getitem__(self, index): ... method __len__ (line 161) | def __len__(self) -> int: ... method __setitem__ (line 162) | def __setitem__(self, index, object) -> None: ... class QSpatialSound (line 164) | class QSpatialSound(PySide6.QtCore.QObject): class DistanceModel (line 165) | class DistanceModel(enum.Enum): class Loops (line 170) | class Loops(enum.IntEnum): method __init__ (line 188) | def __init__(self, engine: QAudioEngine, /, *, source: PySide6.QtCore.... method autoPlay (line 189) | def autoPlay(self, /) -> bool: ... method directivity (line 190) | def directivity(self, /) -> float: ... method directivityOrder (line 191) | def directivityOrder(self, /) -> float: ... method distanceCutoff (line 192) | def distanceCutoff(self, /) -> float: ... method distanceModel (line 193) | def distanceModel(self, /) -> QSpatialSound.DistanceModel: ... method engine (line 194) | def engine(self, /) -> QAudioEngine: ... method loops (line 195) | def loops(self, /) -> int: ... method manualAttenuation (line 196) | def manualAttenuation(self, /) -> float: ... method nearFieldGain (line 197) | def nearFieldGain(self, /) -> float: ... method occlusionIntensity (line 198) | def occlusionIntensity(self, /) -> float: ... method pause (line 199) | def pause(self, /) -> None: ... method play (line 200) | def play(self, /) -> None: ... method position (line 201) | def position(self, /) -> PySide6.QtGui.QVector3D: ... method rotation (line 202) | def rotation(self, /) -> PySide6.QtGui.QQuaternion: ... method setAutoPlay (line 203) | def setAutoPlay(self, autoPlay: bool, /) -> None: ... method setDirectivity (line 204) | def setDirectivity(self, alpha: float, /) -> None: ... method setDirectivityOrder (line 205) | def setDirectivityOrder(self, alpha: float, /) -> None: ... method setDistanceCutoff (line 206) | def setDistanceCutoff(self, cutoff: float, /) -> None: ... method setDistanceModel (line 207) | def setDistanceModel(self, model: QSpatialSound.DistanceModel, /) -> N... method setLoops (line 208) | def setLoops(self, loops: int, /) -> None: ... method setManualAttenuation (line 209) | def setManualAttenuation(self, attenuation: float, /) -> None: ... method setNearFieldGain (line 210) | def setNearFieldGain(self, gain: float, /) -> None: ... method setOcclusionIntensity (line 211) | def setOcclusionIntensity(self, occlusion: float, /) -> None: ... method setPosition (line 212) | def setPosition(self, pos: PySide6.QtGui.QVector3D, /) -> None: ... method setRotation (line 213) | def setRotation(self, q: PySide6.QtGui.QQuaternion, /) -> None: ... method setSize (line 214) | def setSize(self, size: float, /) -> None: ... method setSource (line 215) | def setSource(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setVolume (line 216) | def setVolume(self, volume: float, /) -> None: ... method size (line 217) | def size(self, /) -> float: ... method source (line 218) | def source(self, /) -> PySide6.QtCore.QUrl: ... method stop (line 219) | def stop(self, /) -> None: ... method volume (line 220) | def volume(self, /) -> float: ... FILE: pyside6/stubs/PySide6-stubs/QtSql.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QSql (line 34) | class QSql(shiboken6.Object): class Location (line 35) | class Location(enum.Enum): class NumericalPrecisionPolicy (line 39) | class NumericalPrecisionPolicy(enum.Enum): class ParamTypeFlag (line 45) | class ParamTypeFlag(enum.Flag): class TableType (line 51) | class TableType(enum.Enum): method __init__ (line 56) | def __init__(self, *args, **kwargs) -> None: ... class QSqlDatabase (line 58) | class QSqlDatabase(shiboken6.Object): method __init__ (line 60) | def __init__(self, type: str, /, *, numericalPrecisionPolicy: QSql.Num... method __init__ (line 62) | def __init__(self, other: QSqlDatabase, /, *, numericalPrecisionPolicy... method __init__ (line 64) | def __init__(self, driver: QSqlDriver, /, *, numericalPrecisionPolicy:... method __init__ (line 66) | def __init__(self, /, *, numericalPrecisionPolicy: QSql.NumericalPreci... method addDatabase (line 69) | def addDatabase(type: str, /, connectionName: str = ...) -> QSqlDataba... method addDatabase (line 72) | def addDatabase(driver: QSqlDriver, /, connectionName: str = ...) -> Q... method cloneDatabase (line 75) | def cloneDatabase(other: QSqlDatabase, connectionName: str, /) -> QSql... method cloneDatabase (line 78) | def cloneDatabase(other: str, connectionName: str, /) -> QSqlDatabase:... method close (line 79) | def close(self, /) -> None: ... method commit (line 80) | def commit(self, /) -> bool: ... method connectOptions (line 81) | def connectOptions(self, /) -> str: ... method connectionName (line 82) | def connectionName(self, /) -> str: ... method connectionNames (line 84) | def connectionNames() -> List[str]: ... method contains (line 86) | def contains(connectionName: str = ...) -> bool: ... method database (line 88) | def database(connectionName: str = ..., open: bool = ...) -> QSqlDatab... method databaseName (line 89) | def databaseName(self, /) -> str: ... method driver (line 90) | def driver(self, /) -> QSqlDriver: ... method driverName (line 91) | def driverName(self, /) -> str: ... method drivers (line 93) | def drivers() -> List[str]: ... method exec (line 94) | def exec(self, /, query: str = ...) -> QSqlQuery: ... method exec_ (line 95) | def exec_(self, /, query: str = ...) -> QSqlQuery: ... method hostName (line 96) | def hostName(self, /) -> str: ... method isDriverAvailable (line 98) | def isDriverAvailable(name: str, /) -> bool: ... method isOpen (line 99) | def isOpen(self, /) -> bool: ... method isOpenError (line 100) | def isOpenError(self, /) -> bool: ... method isValid (line 101) | def isValid(self, /) -> bool: ... method lastError (line 102) | def lastError(self, /) -> QSqlError: ... method moveToThread (line 103) | def moveToThread(self, targetThread: PySide6.QtCore.QThread, /) -> boo... method numericalPrecisionPolicy (line 104) | def numericalPrecisionPolicy(self, /) -> QSql.NumericalPrecisionPolicy... method open (line 106) | def open(self, user: str, password: str, /) -> bool: ... method open (line 108) | def open(self, /) -> bool: ... method password (line 109) | def password(self, /) -> str: ... method port (line 110) | def port(self, /) -> int: ... method primaryIndex (line 111) | def primaryIndex(self, tablename: str, /) -> QSqlIndex: ... method record (line 112) | def record(self, tablename: str, /) -> QSqlRecord: ... method registerSqlDriver (line 114) | def registerSqlDriver(name: str, creator: QSqlDriverCreatorBase, /) ->... method removeDatabase (line 116) | def removeDatabase(connectionName: str, /) -> None: ... method rollback (line 117) | def rollback(self, /) -> bool: ... method setConnectOptions (line 118) | def setConnectOptions(self, /, options: str = ...) -> None: ... method setDatabaseName (line 119) | def setDatabaseName(self, name: str, /) -> None: ... method setHostName (line 120) | def setHostName(self, host: str, /) -> None: ... method setNumericalPrecisionPolicy (line 121) | def setNumericalPrecisionPolicy(self, precisionPolicy: QSql.NumericalP... method setPassword (line 122) | def setPassword(self, password: str, /) -> None: ... method setPort (line 123) | def setPort(self, p: int, /) -> None: ... method setUserName (line 124) | def setUserName(self, name: str, /) -> None: ... method tables (line 125) | def tables(self, /, type: QSql.TableType = ...) -> List[str]: ... method thread (line 126) | def thread(self, /) -> PySide6.QtCore.QThread: ... method transaction (line 127) | def transaction(self, /) -> bool: ... method userName (line 128) | def userName(self, /) -> str: ... method __copy__ (line 129) | def __copy__(self, /) -> typing_extensions.Self: ... class QSqlDriver (line 131) | class QSqlDriver(PySide6.QtCore.QObject): class DbmsType (line 132) | class DbmsType(enum.Enum): class DriverFeature (line 144) | class DriverFeature(enum.Enum): class IdentifierType (line 161) | class IdentifierType(enum.Enum): class NotificationSource (line 165) | class NotificationSource(enum.Enum): class StatementType (line 170) | class StatementType(enum.Enum): method __init__ (line 178) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method beginTransaction (line 179) | def beginTransaction(self, /) -> bool: ... method cancelQuery (line 180) | def cancelQuery(self, /) -> bool: ... method close (line 181) | def close(self, /) -> None: ... method commitTransaction (line 182) | def commitTransaction(self, /) -> bool: ... method connectionName (line 183) | def connectionName(self, /) -> str: ... method createResult (line 184) | def createResult(self, /) -> QSqlResult: ... method dbmsType (line 185) | def dbmsType(self, /) -> QSqlDriver.DbmsType: ... method escapeIdentifier (line 186) | def escapeIdentifier(self, identifier: str, type: QSqlDriver.Identifie... method formatValue (line 187) | def formatValue(self, field: QSqlField, /, trimStrings: bool = ...) ->... method hasFeature (line 188) | def hasFeature(self, f: QSqlDriver.DriverFeature, /) -> bool: ... method isIdentifierEscaped (line 189) | def isIdentifierEscaped(self, identifier: str, type: QSqlDriver.Identi... method isOpen (line 190) | def isOpen(self, /) -> bool: ... method isOpenError (line 191) | def isOpenError(self, /) -> bool: ... method lastError (line 192) | def lastError(self, /) -> QSqlError: ... method maximumIdentifierLength (line 193) | def maximumIdentifierLength(self, type: QSqlDriver.IdentifierType, /) ... method numericalPrecisionPolicy (line 194) | def numericalPrecisionPolicy(self, /) -> QSql.NumericalPrecisionPolicy... method open (line 195) | def open(self, db: str, /, user: str = ..., password: str = ..., host:... method primaryIndex (line 196) | def primaryIndex(self, tableName: str, /) -> QSqlIndex: ... method record (line 197) | def record(self, tableName: str, /) -> QSqlRecord: ... method rollbackTransaction (line 198) | def rollbackTransaction(self, /) -> bool: ... method setLastError (line 199) | def setLastError(self, e: QSqlError, /) -> None: ... method setNumericalPrecisionPolicy (line 200) | def setNumericalPrecisionPolicy(self, precisionPolicy: QSql.NumericalP... method setOpen (line 201) | def setOpen(self, o: bool, /) -> None: ... method setOpenError (line 202) | def setOpenError(self, e: bool, /) -> None: ... method sqlStatement (line 203) | def sqlStatement(self, type: QSqlDriver.StatementType, tableName: str,... method stripDelimiters (line 204) | def stripDelimiters(self, identifier: str, type: QSqlDriver.Identifier... method subscribeToNotification (line 205) | def subscribeToNotification(self, name: str, /) -> bool: ... method subscribedToNotifications (line 206) | def subscribedToNotifications(self, /) -> List[str]: ... method tables (line 207) | def tables(self, tableType: QSql.TableType, /) -> List[str]: ... method unsubscribeFromNotification (line 208) | def unsubscribeFromNotification(self, name: str, /) -> bool: ... class QSqlDriverCreatorBase (line 210) | class QSqlDriverCreatorBase(shiboken6.Object): method __init__ (line 211) | def __init__(self, /) -> None: ... method createObject (line 212) | def createObject(self, /) -> QSqlDriver: ... class QSqlError (line 214) | class QSqlError(shiboken6.Object): class ErrorType (line 215) | class ErrorType(enum.Enum): method __init__ (line 222) | def __init__(self, /, driverText: str = ..., databaseText: str = ..., ... method __init__ (line 224) | def __init__(self, other: QSqlError, /) -> None: ... method databaseText (line 225) | def databaseText(self, /) -> str: ... method driverText (line 226) | def driverText(self, /) -> str: ... method isValid (line 227) | def isValid(self, /) -> bool: ... method nativeErrorCode (line 228) | def nativeErrorCode(self, /) -> str: ... method swap (line 229) | def swap(self, other: QSqlError, /) -> None: ... method text (line 230) | def text(self, /) -> str: ... method type (line 231) | def type(self, /) -> QSqlError.ErrorType: ... method __copy__ (line 232) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 233) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 234) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 235) | def __gt__(self, other: object) -> bool: ... method __le__ (line 236) | def __le__(self, other: object) -> bool: ... method __lt__ (line 237) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 238) | def __ne__(self, other: object) -> bool: ... class QSqlField (line 240) | class QSqlField(shiboken6.Object): class RequiredStatus (line 241) | class RequiredStatus(enum.Enum): method __init__ (line 246) | def __init__(self, /, fieldName: str = ..., type: PySide6.QtCore.QMeta... method __init__ (line 248) | def __init__(self, other: QSqlField, /, *, value: Optional[Any] = ...,... method clear (line 249) | def clear(self, /) -> None: ... method defaultValue (line 250) | def defaultValue(self, /) -> Any: ... method isAutoValue (line 251) | def isAutoValue(self, /) -> bool: ... method isGenerated (line 252) | def isGenerated(self, /) -> bool: ... method isNull (line 253) | def isNull(self, /) -> bool: ... method isReadOnly (line 254) | def isReadOnly(self, /) -> bool: ... method isValid (line 255) | def isValid(self, /) -> bool: ... method length (line 256) | def length(self, /) -> int: ... method metaType (line 257) | def metaType(self, /) -> PySide6.QtCore.QMetaType: ... method name (line 258) | def name(self, /) -> str: ... method precision (line 259) | def precision(self, /) -> int: ... method requiredStatus (line 260) | def requiredStatus(self, /) -> QSqlField.RequiredStatus: ... method setAutoValue (line 261) | def setAutoValue(self, autoVal: bool, /) -> None: ... method setDefaultValue (line 262) | def setDefaultValue(self, value: Any, /) -> None: ... method setGenerated (line 263) | def setGenerated(self, gen: bool, /) -> None: ... method setLength (line 264) | def setLength(self, fieldLength: int, /) -> None: ... method setMetaType (line 265) | def setMetaType(self, type: PySide6.QtCore.QMetaType | PySide6.QtCore.... method setName (line 266) | def setName(self, name: str, /) -> None: ... method setPrecision (line 267) | def setPrecision(self, precision: int, /) -> None: ... method setReadOnly (line 268) | def setReadOnly(self, readOnly: bool, /) -> None: ... method setRequired (line 269) | def setRequired(self, required: bool, /) -> None: ... method setRequiredStatus (line 270) | def setRequiredStatus(self, status: QSqlField.RequiredStatus, /) -> No... method setSqlType (line 271) | def setSqlType(self, type: int, /) -> None: ... method setTableName (line 272) | def setTableName(self, tableName: str, /) -> None: ... method setValue (line 273) | def setValue(self, value: Any, /) -> None: ... method swap (line 274) | def swap(self, other: QSqlField, /) -> None: ... method tableName (line 275) | def tableName(self, /) -> str: ... method typeID (line 276) | def typeID(self, /) -> int: ... method value (line 277) | def value(self, /) -> Any: ... method __bool__ (line 278) | def __bool__(self) -> bool: ... method __copy__ (line 279) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 280) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 281) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 282) | def __gt__(self, other: object) -> bool: ... method __le__ (line 283) | def __le__(self, other: object) -> bool: ... method __lt__ (line 284) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 285) | def __ne__(self, other: object) -> bool: ... class QSqlIndex (line 287) | class QSqlIndex(QSqlRecord): method __init__ (line 289) | def __init__(self, other: QSqlIndex, /, *, name: str | None = ..., cur... method __init__ (line 291) | def __init__(self, /, cursorName: str = ..., name: str = ...) -> None:... method append (line 293) | def append(self, field: QSqlField, desc: bool, /) -> None: ... method append (line 295) | def append(self, field: QSqlField, /) -> None: ... method cursorName (line 296) | def cursorName(self, /) -> str: ... method isDescending (line 297) | def isDescending(self, i: int, /) -> bool: ... method name (line 298) | def name(self, /) -> str: ... method setCursorName (line 299) | def setCursorName(self, cursorName: str, /) -> None: ... method setDescending (line 300) | def setDescending(self, i: int, desc: bool, /) -> None: ... method setName (line 301) | def setName(self, name: str, /) -> None: ... method swap (line 302) | def swap(self, other: QSqlIndex, /) -> None: ... # type: ignore[overr... method __copy__ (line 303) | def __copy__(self, /) -> typing_extensions.Self: ... class QSqlQuery (line 305) | class QSqlQuery(shiboken6.Object): class BatchExecutionMode (line 306) | class BatchExecutionMode(enum.Enum): method __init__ (line 310) | def __init__(self, /, query: str = ..., db: QSqlDatabase = ..., *, for... method __init__ (line 312) | def __init__(self, r: QSqlResult, /, *, forwardOnly: bool | None = ...... method __init__ (line 314) | def __init__(self, other: QSqlQuery, /, *, forwardOnly: bool | None = ... method __init__ (line 316) | def __init__(self, db: QSqlDatabase, /, *, forwardOnly: bool | None = ... method addBindValue (line 317) | def addBindValue(self, val: Any, /, type: QSql.ParamTypeFlag = ...) ->... method at (line 318) | def at(self, /) -> int: ... method bindValue (line 320) | def bindValue(self, pos: int, val: Any, /, type: QSql.ParamTypeFlag = ... method bindValue (line 322) | def bindValue(self, placeholder: str, val: Any, /, type: QSql.ParamTyp... method boundValue (line 324) | def boundValue(self, pos: int, /) -> Any: ... method boundValue (line 326) | def boundValue(self, placeholder: str, /) -> Any: ... method boundValueName (line 327) | def boundValueName(self, pos: int, /) -> str: ... method boundValueNames (line 328) | def boundValueNames(self, /) -> List[str]: ... method boundValues (line 329) | def boundValues(self, /) -> List[Any]: ... method clear (line 330) | def clear(self, /) -> None: ... method driver (line 331) | def driver(self, /) -> QSqlDriver: ... method exec (line 333) | def exec(self, query: str, /) -> bool: ... method exec (line 335) | def exec(self, /) -> bool: ... method execBatch (line 336) | def execBatch(self, /, mode: QSqlQuery.BatchExecutionMode = ...) -> bo... method exec_ (line 338) | def exec_(self, arg__1: str, /) -> bool: ... method exec_ (line 340) | def exec_(self, /) -> bool: ... method executedQuery (line 341) | def executedQuery(self, /) -> str: ... method finish (line 342) | def finish(self, /) -> None: ... method first (line 343) | def first(self, /) -> bool: ... method isActive (line 344) | def isActive(self, /) -> bool: ... method isForwardOnly (line 345) | def isForwardOnly(self, /) -> bool: ... method isNull (line 347) | def isNull(self, name: str, /) -> bool: ... method isNull (line 349) | def isNull(self, field: int, /) -> bool: ... method isPositionalBindingEnabled (line 350) | def isPositionalBindingEnabled(self, /) -> bool: ... method isSelect (line 351) | def isSelect(self, /) -> bool: ... method isValid (line 352) | def isValid(self, /) -> bool: ... method last (line 353) | def last(self, /) -> bool: ... method lastError (line 354) | def lastError(self, /) -> QSqlError: ... method lastInsertId (line 355) | def lastInsertId(self, /) -> Any: ... method lastQuery (line 356) | def lastQuery(self, /) -> str: ... method next (line 357) | def next(self, /) -> bool: ... method nextResult (line 358) | def nextResult(self, /) -> bool: ... method numRowsAffected (line 359) | def numRowsAffected(self, /) -> int: ... method numericalPrecisionPolicy (line 360) | def numericalPrecisionPolicy(self, /) -> QSql.NumericalPrecisionPolicy... method prepare (line 361) | def prepare(self, query: str, /) -> bool: ... method previous (line 362) | def previous(self, /) -> bool: ... method record (line 363) | def record(self, /) -> QSqlRecord: ... method result (line 364) | def result(self, /) -> QSqlResult: ... method seek (line 365) | def seek(self, i: int, /, relative: bool = ...) -> bool: ... method setForwardOnly (line 366) | def setForwardOnly(self, forward: bool, /) -> None: ... method setNumericalPrecisionPolicy (line 367) | def setNumericalPrecisionPolicy(self, precisionPolicy: QSql.NumericalP... method setPositionalBindingEnabled (line 368) | def setPositionalBindingEnabled(self, enable: bool, /) -> None: ... method size (line 369) | def size(self, /) -> int: ... method swap (line 370) | def swap(self, other: QSqlQuery, /) -> None: ... method value (line 372) | def value(self, name: str, /) -> Any: ... method value (line 374) | def value(self, i: int, /) -> Any: ... method __copy__ (line 375) | def __copy__(self, /) -> typing_extensions.Self: ... class QSqlQueryModel (line 377) | class QSqlQueryModel(PySide6.QtCore.QAbstractTableModel): method __init__ (line 379) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., col... method beginInsertColumns (line 380) | def beginInsertColumns(self, parent: PySide6.QtCore.QModelIndex | PySi... method beginInsertRows (line 381) | def beginInsertRows(self, parent: PySide6.QtCore.QModelIndex | PySide6... method beginRemoveColumns (line 382) | def beginRemoveColumns(self, parent: PySide6.QtCore.QModelIndex | PySi... method beginRemoveRows (line 383) | def beginRemoveRows(self, parent: PySide6.QtCore.QModelIndex | PySide6... method beginResetModel (line 384) | def beginResetModel(self, /) -> None: ... method canFetchMore (line 385) | def canFetchMore(self, /, parent: PySide6.QtCore.QModelIndex | PySide6... method clear (line 386) | def clear(self, /) -> None: ... method columnCount (line 387) | def columnCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method data (line 388) | def data(self, item: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPers... method endInsertColumns (line 389) | def endInsertColumns(self, /) -> None: ... method endInsertRows (line 390) | def endInsertRows(self, /) -> None: ... method endRemoveColumns (line 391) | def endRemoveColumns(self, /) -> None: ... method endRemoveRows (line 392) | def endRemoveRows(self, /) -> None: ... method endResetModel (line 393) | def endResetModel(self, /) -> None: ... method fetchMore (line 394) | def fetchMore(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method headerData (line 395) | def headerData(self, section: int, orientation: PySide6.QtCore.Qt.Orie... method indexInQuery (line 396) | def indexInQuery(self, item: PySide6.QtCore.QModelIndex | PySide6.QtCo... method insertColumns (line 397) | def insertColumns(self, column: int, count: int, /, parent: PySide6.Qt... method lastError (line 398) | def lastError(self, /) -> QSqlError: ... method query (line 399) | def query(self, /) -> QSqlQuery: ... method queryChange (line 400) | def queryChange(self, /) -> None: ... method record (line 402) | def record(self, row: int, /) -> QSqlRecord: ... method record (line 404) | def record(self, /) -> QSqlRecord: ... method refresh (line 405) | def refresh(self, /) -> None: ... method removeColumns (line 406) | def removeColumns(self, column: int, count: int, /, parent: PySide6.Qt... method roleNames (line 407) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rowCount (line 408) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method setHeaderData (line 409) | def setHeaderData(self, section: int, orientation: PySide6.QtCore.Qt.O... method setLastError (line 410) | def setLastError(self, error: QSqlError, /) -> None: ... method setQuery (line 412) | def setQuery(self, query: str, /, db: QSqlDatabase = ...) -> None: ... method setQuery (line 414) | def setQuery(self, query: QSqlQuery, /) -> None: ... class QSqlRecord (line 416) | class QSqlRecord(shiboken6.Object): method __init__ (line 418) | def __init__(self, other: QSqlRecord, /) -> None: ... method __init__ (line 420) | def __init__(self, /) -> None: ... method append (line 421) | def append(self, field: QSqlField, /) -> None: ... method clear (line 422) | def clear(self, /) -> None: ... method clearValues (line 423) | def clearValues(self, /) -> None: ... method contains (line 424) | def contains(self, name: str, /) -> bool: ... method count (line 425) | def count(self, /) -> int: ... method field (line 427) | def field(self, name: str, /) -> QSqlField: ... method field (line 429) | def field(self, i: int, /) -> QSqlField: ... method fieldName (line 430) | def fieldName(self, i: int, /) -> str: ... method indexOf (line 431) | def indexOf(self, name: str, /) -> int: ... method insert (line 432) | def insert(self, pos: int, field: QSqlField, /) -> None: ... method isEmpty (line 433) | def isEmpty(self, /) -> bool: ... method isGenerated (line 435) | def isGenerated(self, name: str, /) -> bool: ... method isGenerated (line 437) | def isGenerated(self, i: int, /) -> bool: ... method isNull (line 439) | def isNull(self, name: str, /) -> bool: ... method isNull (line 441) | def isNull(self, i: int, /) -> bool: ... method keyValues (line 442) | def keyValues(self, keyFields: QSqlRecord, /) -> QSqlRecord: ... method remove (line 443) | def remove(self, pos: int, /) -> None: ... method replace (line 444) | def replace(self, pos: int, field: QSqlField, /) -> None: ... method setGenerated (line 446) | def setGenerated(self, name: str, generated: bool, /) -> None: ... method setGenerated (line 448) | def setGenerated(self, i: int, generated: bool, /) -> None: ... method setNull (line 450) | def setNull(self, name: str, /) -> None: ... method setNull (line 452) | def setNull(self, i: int, /) -> None: ... method setValue (line 454) | def setValue(self, name: str, val: Any, /) -> None: ... method setValue (line 456) | def setValue(self, i: int, val: Any, /) -> None: ... method swap (line 457) | def swap(self, other: QSqlRecord, /) -> None: ... method value (line 459) | def value(self, name: str, /) -> Any: ... method value (line 461) | def value(self, i: int, /) -> Any: ... method __copy__ (line 462) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 463) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 464) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 465) | def __gt__(self, other: object) -> bool: ... method __le__ (line 466) | def __le__(self, other: object) -> bool: ... method __lt__ (line 467) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 468) | def __ne__(self, other: object) -> bool: ... class QSqlRelation (line 470) | class QSqlRelation(shiboken6.Object): method __init__ (line 472) | def __init__(self, aTableName: str, indexCol: str, displayCol: str, /)... method __init__ (line 474) | def __init__(self, QSqlRelation: QSqlRelation, /) -> None: ... method __init__ (line 476) | def __init__(self, /) -> None: ... method displayColumn (line 477) | def displayColumn(self, /) -> str: ... method indexColumn (line 478) | def indexColumn(self, /) -> str: ... method isValid (line 479) | def isValid(self, /) -> bool: ... method swap (line 480) | def swap(self, other: QSqlRelation, /) -> None: ... method tableName (line 481) | def tableName(self, /) -> str: ... method __copy__ (line 482) | def __copy__(self, /) -> typing_extensions.Self: ... class QSqlRelationalDelegate (line 484) | class QSqlRelationalDelegate(PySide6.QtWidgets.QStyledItemDelegate): method __init__ (line 486) | def __init__(self, /, aParent: PySide6.QtCore.QObject | None = ..., cl... method createEditor (line 487) | def createEditor(self, aParent: PySide6.QtWidgets.QWidget, option: PyS... method setEditorData (line 488) | def setEditorData(self, editor: PySide6.QtWidgets.QWidget, index: PySi... method setModelData (line 489) | def setModelData(self, editor: PySide6.QtWidgets.QWidget, model: PySid... class QSqlRelationalTableModel (line 491) | class QSqlRelationalTableModel(QSqlTableModel): class JoinMode (line 492) | class JoinMode(enum.Enum): method __init__ (line 496) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., db:... method clear (line 497) | def clear(self, /) -> None: ... method data (line 498) | def data(self, item: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPers... method insertRowIntoTable (line 499) | def insertRowIntoTable(self, values: QSqlRecord, /) -> bool: ... method orderByClause (line 500) | def orderByClause(self, /) -> str: ... method relation (line 501) | def relation(self, column: int, /) -> QSqlRelation: ... method relationModel (line 502) | def relationModel(self, column: int, /) -> QSqlTableModel: ... method removeColumns (line 503) | def removeColumns(self, column: int, count: int, /, parent: PySide6.Qt... method revertRow (line 504) | def revertRow(self, row: int, /) -> None: ... method select (line 505) | def select(self, /) -> bool: ... method selectStatement (line 506) | def selectStatement(self, /) -> str: ... method setData (line 507) | def setData(self, item: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method setJoinMode (line 508) | def setJoinMode(self, joinMode: QSqlRelationalTableModel.JoinMode, /) ... method setRelation (line 509) | def setRelation(self, column: int, relation: QSqlRelation, /) -> None:... method setTable (line 510) | def setTable(self, tableName: str, /) -> None: ... method updateRowInTable (line 511) | def updateRowInTable(self, row: int, values: QSqlRecord, /) -> bool: ... class QSqlResult (line 513) | class QSqlResult(shiboken6.Object): class BindingSyntax (line 514) | class BindingSyntax(enum.Enum): class VirtualHookOperation (line 518) | class VirtualHookOperation(enum.Enum): ... # type: ignore[misc] method __init__ (line 519) | def __init__(self, db: QSqlDriver, /) -> None: ... method addBindValue (line 520) | def addBindValue(self, val: Any, type: QSql.ParamTypeFlag, /) -> None:... method at (line 521) | def at(self, /) -> int: ... method bindValue (line 523) | def bindValue(self, pos: int, val: Any, type: QSql.ParamTypeFlag, /) -... method bindValue (line 525) | def bindValue(self, placeholder: str, val: Any, type: QSql.ParamTypeFl... method bindValueType (line 527) | def bindValueType(self, pos: int, /) -> QSql.ParamTypeFlag: ... method bindValueType (line 529) | def bindValueType(self, placeholder: str, /) -> QSql.ParamTypeFlag: ... method bindingSyntax (line 530) | def bindingSyntax(self, /) -> QSqlResult.BindingSyntax: ... method boundValue (line 532) | def boundValue(self, pos: int, /) -> Any: ... method boundValue (line 534) | def boundValue(self, placeholder: str, /) -> Any: ... method boundValueCount (line 535) | def boundValueCount(self, /) -> int: ... method boundValueName (line 536) | def boundValueName(self, pos: int, /) -> str: ... method boundValueNames (line 537) | def boundValueNames(self, /) -> List[str]: ... method boundValues (line 538) | def boundValues(self, /) -> List[Any]: ... method clear (line 539) | def clear(self, /) -> None: ... method data (line 540) | def data(self, i: int, /) -> Any: ... method detachFromResultSet (line 541) | def detachFromResultSet(self, /) -> None: ... method driver (line 542) | def driver(self, /) -> QSqlDriver: ... method exec (line 543) | def exec(self, /) -> bool: ... method execBatch (line 544) | def execBatch(self, /, arrayBind: bool = ...) -> bool: ... method exec_ (line 545) | def exec_(self, /) -> bool: ... method executedQuery (line 546) | def executedQuery(self, /) -> str: ... method fetch (line 547) | def fetch(self, i: int, /) -> bool: ... method fetchFirst (line 548) | def fetchFirst(self, /) -> bool: ... method fetchLast (line 549) | def fetchLast(self, /) -> bool: ... method fetchNext (line 550) | def fetchNext(self, /) -> bool: ... method fetchPrevious (line 551) | def fetchPrevious(self, /) -> bool: ... method handle (line 552) | def handle(self, /) -> Any: ... method hasOutValues (line 553) | def hasOutValues(self, /) -> bool: ... method isActive (line 554) | def isActive(self, /) -> bool: ... method isForwardOnly (line 555) | def isForwardOnly(self, /) -> bool: ... method isNull (line 556) | def isNull(self, i: int, /) -> bool: ... method isPositionalBindingEnabled (line 557) | def isPositionalBindingEnabled(self, /) -> bool: ... method isSelect (line 558) | def isSelect(self, /) -> bool: ... method isValid (line 559) | def isValid(self, /) -> bool: ... method lastError (line 560) | def lastError(self, /) -> QSqlError: ... method lastInsertId (line 561) | def lastInsertId(self, /) -> Any: ... method lastQuery (line 562) | def lastQuery(self, /) -> str: ... method nextResult (line 563) | def nextResult(self, /) -> bool: ... method numRowsAffected (line 564) | def numRowsAffected(self, /) -> int: ... method numericalPrecisionPolicy (line 565) | def numericalPrecisionPolicy(self, /) -> QSql.NumericalPrecisionPolicy... method prepare (line 566) | def prepare(self, query: str, /) -> bool: ... method record (line 567) | def record(self, /) -> QSqlRecord: ... method reset (line 568) | def reset(self, sqlquery: str, /) -> bool: ... method resetBindCount (line 569) | def resetBindCount(self, /) -> None: ... method savePrepare (line 570) | def savePrepare(self, sqlquery: str, /) -> bool: ... method setActive (line 571) | def setActive(self, a: bool, /) -> None: ... method setAt (line 572) | def setAt(self, at: int, /) -> None: ... method setForwardOnly (line 573) | def setForwardOnly(self, forward: bool, /) -> None: ... method setLastError (line 574) | def setLastError(self, e: QSqlError, /) -> None: ... method setNumericalPrecisionPolicy (line 575) | def setNumericalPrecisionPolicy(self, policy: QSql.NumericalPrecisionP... method setPositionalBindingEnabled (line 576) | def setPositionalBindingEnabled(self, enable: bool, /) -> None: ... method setQuery (line 577) | def setQuery(self, query: str, /) -> None: ... method setSelect (line 578) | def setSelect(self, s: bool, /) -> None: ... method size (line 579) | def size(self, /) -> int: ... class QSqlTableModel (line 581) | class QSqlTableModel(QSqlQueryModel): class EditStrategy (line 582) | class EditStrategy(enum.Enum): method __init__ (line 591) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., db:... method clear (line 592) | def clear(self, /) -> None: ... method clearItemData (line 593) | def clearItemData(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method data (line 594) | def data(self, idx: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPersi... method database (line 595) | def database(self, /) -> QSqlDatabase: ... method deleteRowFromTable (line 596) | def deleteRowFromTable(self, row: int, /) -> bool: ... method editStrategy (line 597) | def editStrategy(self, /) -> QSqlTableModel.EditStrategy: ... method fieldIndex (line 598) | def fieldIndex(self, fieldName: str, /) -> int: ... method filter (line 599) | def filter(self, /) -> str: ... method flags (line 600) | def flags(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPe... method headerData (line 601) | def headerData(self, section: int, orientation: PySide6.QtCore.Qt.Orie... method indexInQuery (line 602) | def indexInQuery(self, item: PySide6.QtCore.QModelIndex | PySide6.QtCo... method insertRecord (line 603) | def insertRecord(self, row: int, record: QSqlRecord, /) -> bool: ... method insertRowIntoTable (line 604) | def insertRowIntoTable(self, values: QSqlRecord, /) -> bool: ... method insertRows (line 605) | def insertRows(self, row: int, count: int, /, parent: PySide6.QtCore.Q... method isDirty (line 607) | def isDirty(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.Q... method isDirty (line 609) | def isDirty(self, /) -> bool: ... method orderByClause (line 610) | def orderByClause(self, /) -> str: ... method primaryKey (line 611) | def primaryKey(self, /) -> QSqlIndex: ... method primaryValues (line 612) | def primaryValues(self, row: int, /) -> QSqlRecord: ... method record (line 614) | def record(self, row: int, /) -> QSqlRecord: ... method record (line 616) | def record(self, /) -> QSqlRecord: ... method removeColumns (line 617) | def removeColumns(self, column: int, count: int, /, parent: PySide6.Qt... method removeRows (line 618) | def removeRows(self, row: int, count: int, /, parent: PySide6.QtCore.Q... method revert (line 619) | def revert(self, /) -> None: ... method revertAll (line 620) | def revertAll(self, /) -> None: ... method revertRow (line 621) | def revertRow(self, row: int, /) -> None: ... method rowCount (line 622) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method select (line 623) | def select(self, /) -> bool: ... method selectRow (line 624) | def selectRow(self, row: int, /) -> bool: ... method selectStatement (line 625) | def selectStatement(self, /) -> str: ... method setData (line 626) | def setData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.Q... method setEditStrategy (line 627) | def setEditStrategy(self, strategy: QSqlTableModel.EditStrategy, /) ->... method setFilter (line 628) | def setFilter(self, filter: str, /) -> None: ... method setPrimaryKey (line 629) | def setPrimaryKey(self, key: QSqlIndex, /) -> None: ... method setRecord (line 630) | def setRecord(self, row: int, record: QSqlRecord, /) -> bool: ... method setSort (line 631) | def setSort(self, column: int, order: PySide6.QtCore.Qt.SortOrder, /) ... method setTable (line 632) | def setTable(self, tableName: str, /) -> None: ... method sort (line 633) | def sort(self, column: int, order: PySide6.QtCore.Qt.SortOrder, /) -> ... method submit (line 634) | def submit(self, /) -> bool: ... method submitAll (line 635) | def submitAll(self, /) -> bool: ... method tableName (line 636) | def tableName(self, /) -> str: ... method updateRowInTable (line 637) | def updateRowInTable(self, row: int, values: QSqlRecord, /) -> bool: ... FILE: pyside6/stubs/PySide6-stubs/QtStateMachine.pyi class QAbstractState (line 12) | class QAbstractState(PySide6.QtCore.QObject): method __init__ (line 17) | def __init__(self, /, parent: QState | None = ..., *, active: bool | N... method active (line 18) | def active(self, /) -> bool: ... method event (line 19) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method machine (line 20) | def machine(self, /) -> QStateMachine: ... method onEntry (line 21) | def onEntry(self, event: PySide6.QtCore.QEvent, /) -> None: ... method onExit (line 22) | def onExit(self, event: PySide6.QtCore.QEvent, /) -> None: ... method parentState (line 23) | def parentState(self, /) -> QState: ... class QAbstractTransition (line 25) | class QAbstractTransition(PySide6.QtCore.QObject): class TransitionType (line 26) | class TransitionType(enum.Enum): method __init__ (line 33) | def __init__(self, /, sourceState: QState | None = ..., *, targetState... method addAnimation (line 34) | def addAnimation(self, animation: PySide6.QtCore.QAbstractAnimation, /... method animations (line 35) | def animations(self, /) -> List[PySide6.QtCore.QAbstractAnimation]: ... method event (line 36) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method eventTest (line 37) | def eventTest(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method machine (line 38) | def machine(self, /) -> QStateMachine: ... method onTransition (line 39) | def onTransition(self, event: PySide6.QtCore.QEvent, /) -> None: ... method removeAnimation (line 40) | def removeAnimation(self, animation: PySide6.QtCore.QAbstractAnimation... method setTargetState (line 41) | def setTargetState(self, target: QAbstractState, /) -> None: ... method setTargetStates (line 42) | def setTargetStates(self, targets: typing.Iterable[QAbstractState], /)... method setTransitionType (line 43) | def setTransitionType(self, type: QAbstractTransition.TransitionType, ... method sourceState (line 44) | def sourceState(self, /) -> QState: ... method targetState (line 45) | def targetState(self, /) -> QAbstractState: ... method targetStates (line 46) | def targetStates(self, /) -> List[QAbstractState]: ... method transitionType (line 47) | def transitionType(self, /) -> QAbstractTransition.TransitionType: ... class QEventTransition (line 49) | class QEventTransition(QAbstractTransition): method __init__ (line 52) | def __init__(self, object: PySide6.QtCore.QObject, type: PySide6.QtCor... method __init__ (line 54) | def __init__(self, /, sourceState: QState | None = ..., *, eventSource... method event (line 55) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method eventSource (line 56) | def eventSource(self, /) -> PySide6.QtCore.QObject: ... method eventTest (line 57) | def eventTest(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventType (line 58) | def eventType(self, /) -> PySide6.QtCore.QEvent.Type: ... method onTransition (line 59) | def onTransition(self, event: PySide6.QtCore.QEvent, /) -> None: ... method setEventSource (line 60) | def setEventSource(self, object: PySide6.QtCore.QObject, /) -> None: ... method setEventType (line 61) | def setEventType(self, type: PySide6.QtCore.QEvent.Type, /) -> None: ... class QFinalState (line 63) | class QFinalState(QAbstractState): method __init__ (line 65) | def __init__(self, /, parent: QState | None = ..., active: bool = ...,... method event (line 66) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method onEntry (line 67) | def onEntry(self, event: PySide6.QtCore.QEvent, /) -> None: ... method onExit (line 68) | def onExit(self, event: PySide6.QtCore.QEvent, /) -> None: ... class QHistoryState (line 70) | class QHistoryState(QAbstractState): class HistoryType (line 71) | class HistoryType(enum.Enum): method __init__ (line 79) | def __init__(self, type: QHistoryState.HistoryType, /, parent: QState ... method __init__ (line 81) | def __init__(self, /, parent: QState | None = ..., *, defaultState: QA... method defaultState (line 82) | def defaultState(self, /) -> QAbstractState: ... method defaultTransition (line 83) | def defaultTransition(self, /) -> QAbstractTransition: ... method event (line 84) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method historyType (line 85) | def historyType(self, /) -> QHistoryState.HistoryType: ... method onEntry (line 86) | def onEntry(self, event: PySide6.QtCore.QEvent, /) -> None: ... method onExit (line 87) | def onExit(self, event: PySide6.QtCore.QEvent, /) -> None: ... method setDefaultState (line 88) | def setDefaultState(self, state: QAbstractState, /) -> None: ... method setDefaultTransition (line 89) | def setDefaultTransition(self, transition: QAbstractTransition, /) -> ... method setHistoryType (line 90) | def setHistoryType(self, type: QHistoryState.HistoryType, /) -> None: ... class QIntList (line 92) | class QIntList: method __init__ (line 94) | def __init__(self, *args, **kwargs) -> None: ... method append (line 95) | def append(self, *args, **kwargs): ... method capacity (line 96) | def capacity(self, *args, **kwargs): ... method clear (line 97) | def clear(self, *args, **kwargs): ... method constData (line 98) | def constData(self, *args, **kwargs): ... method data (line 99) | def data(self, *args, **kwargs): ... method pop_back (line 100) | def pop_back(self, *args, **kwargs): ... method pop_front (line 101) | def pop_front(self, *args, **kwargs): ... method prepend (line 102) | def prepend(self, *args, **kwargs): ... method push_back (line 103) | def push_back(self, *args, **kwargs): ... method push_front (line 104) | def push_front(self, *args, **kwargs): ... method removeFirst (line 105) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 106) | def removeLast(self, *args, **kwargs): ... method reserve (line 107) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 108) | def __delitem__(self, other) -> None: ... method __getitem__ (line 109) | def __getitem__(self, index): ... method __len__ (line 110) | def __len__(self) -> int: ... method __setitem__ (line 111) | def __setitem__(self, index, object) -> None: ... class QKeyEventTransition (line 113) | class QKeyEventTransition(QEventTransition): method __init__ (line 116) | def __init__(self, object: PySide6.QtCore.QObject, type: PySide6.QtCor... method __init__ (line 118) | def __init__(self, /, sourceState: QState | None = ..., *, key: int | ... method eventTest (line 119) | def eventTest(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method key (line 120) | def key(self, /) -> int: ... method modifierMask (line 121) | def modifierMask(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method onTransition (line 122) | def onTransition(self, event: PySide6.QtCore.QEvent, /) -> None: ... method setKey (line 123) | def setKey(self, key: int, /) -> None: ... method setModifierMask (line 124) | def setModifierMask(self, modifiers: PySide6.QtCore.Qt.KeyboardModifie... class QMouseEventTransition (line 126) | class QMouseEventTransition(QEventTransition): method __init__ (line 129) | def __init__(self, object: PySide6.QtCore.QObject, type: PySide6.QtCor... method __init__ (line 131) | def __init__(self, /, sourceState: QState | None = ..., *, button: PyS... method button (line 132) | def button(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method eventTest (line 133) | def eventTest(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method hitTestPath (line 134) | def hitTestPath(self, /) -> PySide6.QtGui.QPainterPath: ... method modifierMask (line 135) | def modifierMask(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method onTransition (line 136) | def onTransition(self, event: PySide6.QtCore.QEvent, /) -> None: ... method setButton (line 137) | def setButton(self, button: PySide6.QtCore.Qt.MouseButton, /) -> None:... method setHitTestPath (line 138) | def setHitTestPath(self, path: PySide6.QtGui.QPainterPath, /) -> None:... method setModifierMask (line 139) | def setModifierMask(self, modifiers: PySide6.QtCore.Qt.KeyboardModifie... class QSignalTransition (line 141) | class QSignalTransition(QAbstractTransition): method __init__ (line 146) | def __init__(self, signal: object, /, state: QState | None = ..., *, s... method __init__ (line 148) | def __init__(self, sender: PySide6.QtCore.QObject, signal: bytes | byt... method __init__ (line 150) | def __init__(self, /, sourceState: QState | None = ..., *, senderObjec... method event (line 151) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method eventTest (line 152) | def eventTest(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method onTransition (line 153) | def onTransition(self, event: PySide6.QtCore.QEvent, /) -> None: ... method senderObject (line 154) | def senderObject(self, /) -> PySide6.QtCore.QObject: ... method setSenderObject (line 155) | def setSenderObject(self, sender: PySide6.QtCore.QObject, /) -> None: ... method setSignal (line 156) | def setSignal(self, signal: PySide6.QtCore.QByteArray | bytes | bytear... method signal (line 157) | def signal(self, /) -> PySide6.QtCore.QByteArray: ... class QState (line 159) | class QState(QAbstractState): class ChildMode (line 160) | class ChildMode(enum.Enum): class RestorePolicy (line 164) | class RestorePolicy(enum.Enum): method __init__ (line 174) | def __init__(self, childMode: QState.ChildMode, /, parent: QState | No... method __init__ (line 176) | def __init__(self, /, parent: QState | None = ..., *, initialState: QA... method addTransition (line 178) | def addTransition(self, sender: PySide6.QtCore.QObject, signal: str, t... method addTransition (line 180) | def addTransition(self, signal: object, arg__2: QAbstractState, /) -> ... method addTransition (line 182) | def addTransition(self, transition: QAbstractTransition, /) -> None: ... method addTransition (line 184) | def addTransition(self, target: QAbstractState, /) -> QAbstractTransit... method assignProperty (line 185) | def assignProperty(self, object: PySide6.QtCore.QObject, name: str, va... method childMode (line 186) | def childMode(self, /) -> QState.ChildMode: ... method errorState (line 187) | def errorState(self, /) -> QAbstractState: ... method event (line 188) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method initialState (line 189) | def initialState(self, /) -> QAbstractState: ... method onEntry (line 190) | def onEntry(self, event: PySide6.QtCore.QEvent, /) -> None: ... method onExit (line 191) | def onExit(self, event: PySide6.QtCore.QEvent, /) -> None: ... method removeTransition (line 192) | def removeTransition(self, transition: QAbstractTransition, /) -> None... method setChildMode (line 193) | def setChildMode(self, mode: QState.ChildMode, /) -> None: ... method setErrorState (line 194) | def setErrorState(self, state: QAbstractState, /) -> None: ... method setInitialState (line 195) | def setInitialState(self, state: QAbstractState, /) -> None: ... method transitions (line 196) | def transitions(self, /) -> List[QAbstractTransition]: ... class QStateMachine (line 198) | class QStateMachine(QState): class Error (line 199) | class Error(enum.Enum): class EventPriority (line 206) | class EventPriority(enum.Enum): class SignalEvent (line 210) | class SignalEvent(PySide6.QtCore.QEvent): method __init__ (line 211) | def __init__(self, sender: PySide6.QtCore.QObject, signalIndex: int,... method arguments (line 212) | def arguments(self, /) -> List[Any]: ... method sender (line 213) | def sender(self, /) -> PySide6.QtCore.QObject: ... method signalIndex (line 214) | def signalIndex(self, /) -> int: ... class WrappedEvent (line 216) | class WrappedEvent(PySide6.QtCore.QEvent): method __init__ (line 217) | def __init__(self, object: PySide6.QtCore.QObject, event: PySide6.Qt... method event (line 218) | def event(self, /) -> PySide6.QtCore.QEvent: ... method object (line 219) | def object(self, /) -> PySide6.QtCore.QObject: ... method __init__ (line 225) | def __init__(self, childMode: QState.ChildMode, /, parent: PySide6.QtC... method __init__ (line 227) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addDefaultAnimation (line 228) | def addDefaultAnimation(self, animation: PySide6.QtCore.QAbstractAnima... method addState (line 229) | def addState(self, state: QAbstractState, /) -> None: ... method beginMicrostep (line 230) | def beginMicrostep(self, event: PySide6.QtCore.QEvent, /) -> None: ... method beginSelectTransitions (line 231) | def beginSelectTransitions(self, event: PySide6.QtCore.QEvent, /) -> N... method cancelDelayedEvent (line 232) | def cancelDelayedEvent(self, id: int, /) -> bool: ... method clearError (line 233) | def clearError(self, /) -> None: ... method configuration (line 234) | def configuration(self, /) -> Set[QAbstractState]: ... method defaultAnimations (line 235) | def defaultAnimations(self, /) -> List[PySide6.QtCore.QAbstractAnimati... method endMicrostep (line 236) | def endMicrostep(self, event: PySide6.QtCore.QEvent, /) -> None: ... method endSelectTransitions (line 237) | def endSelectTransitions(self, event: PySide6.QtCore.QEvent, /) -> Non... method error (line 238) | def error(self, /) -> QStateMachine.Error: ... method errorString (line 239) | def errorString(self, /) -> str: ... method event (line 240) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 241) | def eventFilter(self, watched: PySide6.QtCore.QObject, event: PySide6.... method globalRestorePolicy (line 242) | def globalRestorePolicy(self, /) -> QState.RestorePolicy: ... method isAnimated (line 243) | def isAnimated(self, /) -> bool: ... method isRunning (line 244) | def isRunning(self, /) -> bool: ... method onEntry (line 245) | def onEntry(self, event: PySide6.QtCore.QEvent, /) -> None: ... method onExit (line 246) | def onExit(self, event: PySide6.QtCore.QEvent, /) -> None: ... method postDelayedEvent (line 247) | def postDelayedEvent(self, event: PySide6.QtCore.QEvent, delay: int, /... method postEvent (line 248) | def postEvent(self, event: PySide6.QtCore.QEvent, /, priority: QStateM... method removeDefaultAnimation (line 249) | def removeDefaultAnimation(self, animation: PySide6.QtCore.QAbstractAn... method removeState (line 250) | def removeState(self, state: QAbstractState, /) -> None: ... method setAnimated (line 251) | def setAnimated(self, enabled: bool, /) -> None: ... method setGlobalRestorePolicy (line 252) | def setGlobalRestorePolicy(self, restorePolicy: QState.RestorePolicy, ... method setRunning (line 253) | def setRunning(self, running: bool, /) -> None: ... method start (line 254) | def start(self, /) -> None: ... method stop (line 255) | def stop(self, /) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtSvg.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QSvgGenerator (line 34) | class QSvgGenerator(PySide6.QtGui.QPaintDevice): class SvgVersion (line 35) | class SvgVersion(enum.Enum): method __init__ (line 39) | def __init__(self, version: QSvgGenerator.SvgVersion, /, *, size: PySi... method __init__ (line 41) | def __init__(self, /, *, size: PySide6.QtCore.QSize | None = ..., view... method description (line 42) | def description(self, /) -> str: ... method fileName (line 43) | def fileName(self, /) -> str: ... method metric (line 44) | def metric(self, metric: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method outputDevice (line 45) | def outputDevice(self, /) -> PySide6.QtCore.QIODevice: ... method paintEngine (line 46) | def paintEngine(self, /) -> PySide6.QtGui.QPaintEngine: ... method resolution (line 47) | def resolution(self, /) -> int: ... method setDescription (line 48) | def setDescription(self, description: str, /) -> None: ... method setFileName (line 49) | def setFileName(self, fileName: str, /) -> None: ... method setOutputDevice (line 50) | def setOutputDevice(self, outputDevice: PySide6.QtCore.QIODevice, /) -... method setResolution (line 51) | def setResolution(self, dpi: int, /) -> None: ... method setSize (line 52) | def setSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setTitle (line 53) | def setTitle(self, title: str, /) -> None: ... method setViewBox (line 55) | def setViewBox(self, viewBox: PySide6.QtCore.QRect, /) -> None: ... method setViewBox (line 57) | def setViewBox(self, viewBox: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method size (line 58) | def size(self, /) -> PySide6.QtCore.QSize: ... method svgVersion (line 59) | def svgVersion(self, /) -> QSvgGenerator.SvgVersion: ... method title (line 60) | def title(self, /) -> str: ... method viewBox (line 61) | def viewBox(self, /) -> PySide6.QtCore.QRect: ... method viewBoxF (line 62) | def viewBoxF(self, /) -> PySide6.QtCore.QRectF: ... class QSvgRenderer (line 64) | class QSvgRenderer(PySide6.QtCore.QObject): method __init__ (line 68) | def __init__(self, filename: str, /, parent: PySide6.QtCore.QObject | ... method __init__ (line 70) | def __init__(self, contents: PySide6.QtCore.QXmlStreamReader, /, paren... method __init__ (line 72) | def __init__(self, contents: PySide6.QtCore.QByteArray | bytes | bytea... method __init__ (line 74) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method animated (line 75) | def animated(self, /) -> bool: ... method animationDuration (line 76) | def animationDuration(self, /) -> int: ... method aspectRatioMode (line 77) | def aspectRatioMode(self, /) -> PySide6.QtCore.Qt.AspectRatioMode: ... method boundsOnElement (line 78) | def boundsOnElement(self, id: str, /) -> PySide6.QtCore.QRectF: ... method currentFrame (line 79) | def currentFrame(self, /) -> int: ... method defaultSize (line 80) | def defaultSize(self, /) -> PySide6.QtCore.QSize: ... method elementExists (line 81) | def elementExists(self, id: str, /) -> bool: ... method framesPerSecond (line 82) | def framesPerSecond(self, /) -> int: ... method isAnimationEnabled (line 83) | def isAnimationEnabled(self, /) -> bool: ... method isValid (line 84) | def isValid(self, /) -> bool: ... method load (line 86) | def load(self, filename: str, /) -> bool: ... method load (line 88) | def load(self, contents: PySide6.QtCore.QXmlStreamReader, /) -> bool: ... method load (line 90) | def load(self, contents: PySide6.QtCore.QByteArray | bytes | bytearray... method options (line 91) | def options(self, /) -> QtSvg.Option: ... method render (line 93) | def render(self, p: PySide6.QtGui.QPainter, elementId: str, /, bounds:... method render (line 95) | def render(self, p: PySide6.QtGui.QPainter, bounds: PySide6.QtCore.QRe... method render (line 97) | def render(self, p: PySide6.QtGui.QPainter, /) -> None: ... method setAnimationEnabled (line 98) | def setAnimationEnabled(self, enable: bool, /) -> None: ... method setAspectRatioMode (line 99) | def setAspectRatioMode(self, mode: PySide6.QtCore.Qt.AspectRatioMode, ... method setCurrentFrame (line 100) | def setCurrentFrame(self, arg__1: int, /) -> None: ... method setDefaultOptions (line 102) | def setDefaultOptions(flags: QtSvg.Option, /) -> None: ... method setFramesPerSecond (line 103) | def setFramesPerSecond(self, num: int, /) -> None: ... method setOptions (line 104) | def setOptions(self, flags: QtSvg.Option, /) -> None: ... method setViewBox (line 106) | def setViewBox(self, viewbox: PySide6.QtCore.QRect, /) -> None: ... method setViewBox (line 108) | def setViewBox(self, viewbox: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method transformForElement (line 109) | def transformForElement(self, id: str, /) -> PySide6.QtGui.QTransform:... method viewBox (line 110) | def viewBox(self, /) -> PySide6.QtCore.QRect: ... method viewBoxF (line 111) | def viewBoxF(self, /) -> PySide6.QtCore.QRectF: ... class QtSvg (line 113) | class QtSvg(shiboken6.Object): class Option (line 114) | class Option(enum.Flag): method __init__ (line 121) | def __init__(self, *args, **kwargs) -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtSvgWidgets.pyi class QGraphicsSvgItem (line 13) | class QGraphicsSvgItem(PySide6.QtWidgets.QGraphicsObject): method __init__ (line 16) | def __init__(self, fileName: str, /, parentItem: PySide6.QtWidgets.QGr... method __init__ (line 18) | def __init__(self, /, parentItem: PySide6.QtWidgets.QGraphicsItem | No... method boundingRect (line 19) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method elementId (line 20) | def elementId(self, /) -> str: ... method isCachingEnabled (line 21) | def isCachingEnabled(self, /) -> bool: ... method maximumCacheSize (line 22) | def maximumCacheSize(self, /) -> PySide6.QtCore.QSize: ... method paint (line 23) | def paint(self, painter: PySide6.QtGui.QPainter, option: PySide6.QtWid... method renderer (line 24) | def renderer(self, /) -> PySide6.QtSvg.QSvgRenderer: ... method setCachingEnabled (line 25) | def setCachingEnabled(self, arg__1: bool, /) -> None: ... method setElementId (line 26) | def setElementId(self, id: str, /) -> None: ... method setMaximumCacheSize (line 27) | def setMaximumCacheSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setSharedRenderer (line 28) | def setSharedRenderer(self, renderer: PySide6.QtSvg.QSvgRenderer, /) -... method type (line 29) | def type(self, /) -> int: ... class QIntList (line 31) | class QIntList: method __init__ (line 33) | def __init__(self, *args, **kwargs) -> None: ... method append (line 34) | def append(self, *args, **kwargs): ... method capacity (line 35) | def capacity(self, *args, **kwargs): ... method clear (line 36) | def clear(self, *args, **kwargs): ... method constData (line 37) | def constData(self, *args, **kwargs): ... method data (line 38) | def data(self, *args, **kwargs): ... method pop_back (line 39) | def pop_back(self, *args, **kwargs): ... method pop_front (line 40) | def pop_front(self, *args, **kwargs): ... method prepend (line 41) | def prepend(self, *args, **kwargs): ... method push_back (line 42) | def push_back(self, *args, **kwargs): ... method push_front (line 43) | def push_front(self, *args, **kwargs): ... method removeFirst (line 44) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 45) | def removeLast(self, *args, **kwargs): ... method reserve (line 46) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 47) | def __delitem__(self, other) -> None: ... method __getitem__ (line 48) | def __getitem__(self, index): ... method __len__ (line 49) | def __len__(self) -> int: ... method __setitem__ (line 50) | def __setitem__(self, index, object) -> None: ... class QSvgWidget (line 52) | class QSvgWidget(PySide6.QtWidgets.QWidget): method __init__ (line 55) | def __init__(self, file: str, /, parent: PySide6.QtWidgets.QWidget | N... method __init__ (line 57) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method load (line 59) | def load(self, file: str, /) -> None: ... method load (line 61) | def load(self, contents: PySide6.QtCore.QByteArray | bytes | bytearray... method options (line 62) | def options(self, /) -> PySide6.QtSvg.QtSvg.Option: ... method paintEvent (line 63) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method renderer (line 64) | def renderer(self, /) -> PySide6.QtSvg.QSvgRenderer: ... method setOptions (line 65) | def setOptions(self, options: PySide6.QtSvg.QtSvg.Option, /) -> None: ... method sizeHint (line 66) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... FILE: pyside6/stubs/PySide6-stubs/QtTest.pyi class QAbstractItemModelTester (line 14) | class QAbstractItemModelTester(PySide6.QtCore.QObject): class FailureReportingMode (line 15) | class FailureReportingMode(enum.Enum): method __init__ (line 21) | def __init__(self, model: PySide6.QtCore.QAbstractItemModel, mode: QAb... method __init__ (line 23) | def __init__(self, model: PySide6.QtCore.QAbstractItemModel, /, parent... method failureReportingMode (line 24) | def failureReportingMode(self, /) -> QAbstractItemModelTester.FailureR... method model (line 25) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method setUseFetchMore (line 26) | def setUseFetchMore(self, value: bool, /) -> None: ... class QIntList (line 28) | class QIntList: method __init__ (line 30) | def __init__(self, *args, **kwargs) -> None: ... method append (line 31) | def append(self, *args, **kwargs): ... method capacity (line 32) | def capacity(self, *args, **kwargs): ... method clear (line 33) | def clear(self, *args, **kwargs): ... method constData (line 34) | def constData(self, *args, **kwargs): ... method data (line 35) | def data(self, *args, **kwargs): ... method pop_back (line 36) | def pop_back(self, *args, **kwargs): ... method pop_front (line 37) | def pop_front(self, *args, **kwargs): ... method prepend (line 38) | def prepend(self, *args, **kwargs): ... method push_back (line 39) | def push_back(self, *args, **kwargs): ... method push_front (line 40) | def push_front(self, *args, **kwargs): ... method removeFirst (line 41) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 42) | def removeLast(self, *args, **kwargs): ... method reserve (line 43) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 44) | def __delitem__(self, other) -> None: ... method __getitem__ (line 45) | def __getitem__(self, index): ... method __len__ (line 46) | def __len__(self) -> int: ... method __setitem__ (line 47) | def __setitem__(self, index, object) -> None: ... class QSignalSpy (line 49) | class QSignalSpy(shiboken6.Object): method __init__ (line 51) | def __init__(self, obj: PySide6.QtCore.QObject, signal: PySide6.QtCore... method __init__ (line 53) | def __init__(self, obj: PySide6.QtCore.QObject, aSignal: bytes | bytea... method __init__ (line 55) | def __init__(self, signal: PySide6.QtCore.SignalInstance, /) -> None: ... method at (line 56) | def at(self, arg__1: int, /) -> List[Any]: ... method count (line 57) | def count(self, /) -> int: ... method isValid (line 58) | def isValid(self, /) -> bool: ... method signal (line 59) | def signal(self, /) -> PySide6.QtCore.QByteArray: ... method size (line 60) | def size(self, /) -> int: ... method wait (line 61) | def wait(self, timeout: int, /) -> bool: ... class QTest (line 63) | class QTest(shiboken6.Object): class ComparisonOperation (line 64) | class ComparisonOperation(enum.Enum): class KeyAction (line 74) | class KeyAction(enum.Enum): class MouseAction (line 80) | class MouseAction(enum.Enum): class QBenchmarkMetric (line 87) | class QBenchmarkMetric(enum.Enum): class QTouchEventSequence (line 120) | class QTouchEventSequence(shiboken6.Object): method __init__ (line 121) | def __init__(self, *args, **kwargs) -> None: ... method commit (line 122) | def commit(self, /, processEvents: bool = ...) -> None: ... method move (line 124) | def move(self, touchId: int, pt: PySide6.QtCore.QPoint, /, window: P... method move (line 126) | def move(self, touchId: int, pt: PySide6.QtCore.QPoint, /, widget: P... method press (line 128) | def press(self, touchId: int, pt: PySide6.QtCore.QPoint, /, window: ... method press (line 130) | def press(self, touchId: int, pt: PySide6.QtCore.QPoint, /, widget: ... method release (line 132) | def release(self, touchId: int, pt: PySide6.QtCore.QPoint, /, window... method release (line 134) | def release(self, touchId: int, pt: PySide6.QtCore.QPoint, /, widget... method stationary (line 135) | def stationary(self, touchId: int, /) -> QTest.QTouchEventSequence: ... class TestFailMode (line 137) | class TestFailMode(enum.Enum): method __init__ (line 141) | def __init__(self, *args, **kwargs) -> None: ... method addColumnInternal (line 143) | def addColumnInternal(id: int, name: bytes | bytearray | memoryview, /... method asciiToKey (line 145) | def asciiToKey(ascii: int, /) -> PySide6.QtCore.Qt.Key: ... method compare_ptr_helper (line 148) | def compare_ptr_helper(t1: PySide6.QtCore.QObject, t2: PySide6.QtCore.... method compare_ptr_helper (line 151) | def compare_ptr_helper(t1: int, t2: int, actual: bytes | bytearray | m... method compare_string_helper (line 153) | def compare_string_helper(t1: bytes | bytearray | memoryview, t2: byte... method createTouchDevice (line 155) | def createTouchDevice(devType: PySide6.QtGui.QInputDevice.DeviceType =... method currentAppName (line 157) | def currentAppName() -> bytes | bytearray | memoryview: ... method currentDataTag (line 159) | def currentDataTag() -> bytes | bytearray | memoryview: ... method currentTestFailed (line 161) | def currentTestFailed() -> bool: ... method currentTestFunction (line 163) | def currentTestFunction() -> bytes | bytearray | memoryview: ... method currentTestResolved (line 165) | def currentTestResolved() -> bool: ... method failOnWarning (line 168) | def failOnWarning(messagePattern: PySide6.QtCore.QRegularExpression | ... method failOnWarning (line 171) | def failOnWarning(message: bytes | bytearray | memoryview, /) -> None:... method failOnWarning (line 174) | def failOnWarning() -> None: ... method formatString (line 176) | def formatString(prefix: bytes | bytearray | memoryview, suffix: bytes... method ignoreMessage (line 179) | def ignoreMessage(type: PySide6.QtCore.QtMsgType, messagePattern: PySi... method ignoreMessage (line 182) | def ignoreMessage(type: PySide6.QtCore.QtMsgType, message: bytes | byt... method keyClick (line 185) | def keyClick(window: PySide6.QtGui.QWindow, key: PySide6.QtCore.Qt.Key... method keyClick (line 188) | def keyClick(window: PySide6.QtGui.QWindow, key: int, /, modifier: PyS... method keyClick (line 191) | def keyClick(widget: PySide6.QtWidgets.QWidget, key: PySide6.QtCore.Qt... method keyClick (line 194) | def keyClick(widget: PySide6.QtWidgets.QWidget, key: int, /, modifier:... method keyClicks (line 196) | def keyClicks(widget: PySide6.QtWidgets.QWidget, sequence: str, /, mod... method keyEvent (line 199) | def keyEvent(action: QTest.KeyAction, window: PySide6.QtGui.QWindow, k... method keyEvent (line 202) | def keyEvent(action: QTest.KeyAction, window: PySide6.QtGui.QWindow, a... method keyEvent (line 205) | def keyEvent(action: QTest.KeyAction, widget: PySide6.QtWidgets.QWidge... method keyEvent (line 208) | def keyEvent(action: QTest.KeyAction, widget: PySide6.QtWidgets.QWidge... method keyPress (line 211) | def keyPress(window: PySide6.QtGui.QWindow, key: PySide6.QtCore.Qt.Key... method keyPress (line 214) | def keyPress(window: PySide6.QtGui.QWindow, key: int, /, modifier: PyS... method keyPress (line 217) | def keyPress(widget: PySide6.QtWidgets.QWidget, key: PySide6.QtCore.Qt... method keyPress (line 220) | def keyPress(widget: PySide6.QtWidgets.QWidget, key: int, /, modifier:... method keyRelease (line 223) | def keyRelease(window: PySide6.QtGui.QWindow, key: PySide6.QtCore.Qt.K... method keyRelease (line 226) | def keyRelease(window: PySide6.QtGui.QWindow, key: int, /, modifier: P... method keyRelease (line 229) | def keyRelease(widget: PySide6.QtWidgets.QWidget, key: PySide6.QtCore.... method keyRelease (line 232) | def keyRelease(widget: PySide6.QtWidgets.QWidget, key: int, /, modifie... method keySequence (line 235) | def keySequence(window: PySide6.QtGui.QWindow, keySequence: PySide6.Qt... method keySequence (line 238) | def keySequence(widget: PySide6.QtWidgets.QWidget, keySequence: PySide... method keyToAscii (line 240) | def keyToAscii(key: PySide6.QtCore.Qt.Key, /) -> int: ... method mouseClick (line 243) | def mouseClick(window: PySide6.QtGui.QWindow, button: PySide6.QtCore.Q... method mouseClick (line 246) | def mouseClick(widget: PySide6.QtWidgets.QWidget, button: PySide6.QtCo... method mouseDClick (line 249) | def mouseDClick(window: PySide6.QtGui.QWindow, button: PySide6.QtCore.... method mouseDClick (line 252) | def mouseDClick(widget: PySide6.QtWidgets.QWidget, button: PySide6.QtC... method mouseEvent (line 255) | def mouseEvent(action: QTest.MouseAction, window: PySide6.QtGui.QWindo... method mouseEvent (line 258) | def mouseEvent(action: QTest.MouseAction, widget: PySide6.QtWidgets.QW... method mouseMove (line 261) | def mouseMove(window: PySide6.QtGui.QWindow, /, pos: PySide6.QtCore.QP... method mouseMove (line 264) | def mouseMove(widget: PySide6.QtWidgets.QWidget, /, pos: PySide6.QtCor... method mousePress (line 267) | def mousePress(window: PySide6.QtGui.QWindow, button: PySide6.QtCore.Q... method mousePress (line 270) | def mousePress(widget: PySide6.QtWidgets.QWidget, button: PySide6.QtCo... method mouseRelease (line 273) | def mouseRelease(window: PySide6.QtGui.QWindow, button: PySide6.QtCore... method mouseRelease (line 276) | def mouseRelease(widget: PySide6.QtWidgets.QWidget, button: PySide6.Qt... method qCaught (line 279) | def qCaught(expected: bytes | bytearray | memoryview, what: bytes | by... method qCaught (line 282) | def qCaught(expected: bytes | bytearray | memoryview, file: bytes | by... method qCleanup (line 284) | def qCleanup() -> None: ... method qElementData (line 286) | def qElementData(elementName: bytes | bytearray | memoryview, metaType... method qExpectFail (line 288) | def qExpectFail(dataIndex: bytes | bytearray | memoryview, comment: by... method qFindTestData (line 291) | def qFindTestData(basepath: str, /, file: bytes | bytearray | memoryvi... method qFindTestData (line 294) | def qFindTestData(basepath: bytes | bytearray | memoryview, /, file: b... method qGlobalData (line 296) | def qGlobalData(tagName: bytes | bytearray | memoryview, typeId: int, ... method qRun (line 298) | def qRun() -> int: ... method qSkip (line 300) | def qSkip(message: bytes | bytearray | memoryview, file: bytes | bytea... method qSleep (line 302) | def qSleep(ms: int, /) -> None: ... method qWait (line 304) | def qWait(ms: int, /) -> None: ... method qWaitForWindowActive (line 307) | def qWaitForWindowActive(window: PySide6.QtGui.QWindow, timeout: int, ... method qWaitForWindowActive (line 310) | def qWaitForWindowActive(window: PySide6.QtGui.QWindow, timeout: PySid... method qWaitForWindowActive (line 313) | def qWaitForWindowActive(widget: PySide6.QtWidgets.QWidget, timeout: i... method qWaitForWindowActive (line 316) | def qWaitForWindowActive(widget: PySide6.QtWidgets.QWidget, timeout: P... method qWaitForWindowActive (line 319) | def qWaitForWindowActive(window: PySide6.QtGui.QWindow, /) -> bool: ... method qWaitForWindowActive (line 322) | def qWaitForWindowActive(widget: PySide6.QtWidgets.QWidget, /) -> bool... method qWaitForWindowExposed (line 325) | def qWaitForWindowExposed(window: PySide6.QtGui.QWindow, timeout: int,... method qWaitForWindowExposed (line 328) | def qWaitForWindowExposed(window: PySide6.QtGui.QWindow, timeout: PySi... method qWaitForWindowExposed (line 331) | def qWaitForWindowExposed(widget: PySide6.QtWidgets.QWidget, timeout: ... method qWaitForWindowExposed (line 334) | def qWaitForWindowExposed(widget: PySide6.QtWidgets.QWidget, timeout: ... method qWaitForWindowExposed (line 337) | def qWaitForWindowExposed(window: PySide6.QtGui.QWindow, /) -> bool: ... method qWaitForWindowExposed (line 340) | def qWaitForWindowExposed(widget: PySide6.QtWidgets.QWidget, /) -> boo... method qWaitForWindowFocused (line 343) | def qWaitForWindowFocused(window: PySide6.QtGui.QWindow, timeout: PySi... method qWaitForWindowFocused (line 346) | def qWaitForWindowFocused(widget: PySide6.QtWidgets.QWidget, timeout: ... method qWaitForWindowFocused (line 349) | def qWaitForWindowFocused(window: PySide6.QtGui.QWindow, /) -> bool: ... method qWaitForWindowFocused (line 352) | def qWaitForWindowFocused(widget: PySide6.QtWidgets.QWidget, /) -> boo... method runningTest (line 354) | def runningTest() -> bool: ... method sendKeyEvent (line 357) | def sendKeyEvent(action: QTest.KeyAction, window: PySide6.QtGui.QWindo... method sendKeyEvent (line 360) | def sendKeyEvent(action: QTest.KeyAction, window: PySide6.QtGui.QWindo... method sendKeyEvent (line 363) | def sendKeyEvent(action: QTest.KeyAction, widget: PySide6.QtWidgets.QW... method sendKeyEvent (line 366) | def sendKeyEvent(action: QTest.KeyAction, widget: PySide6.QtWidgets.QW... method setBenchmarkResult (line 368) | def setBenchmarkResult(result: float, metric: QTest.QBenchmarkMetric, ... method setMainSourcePath (line 370) | def setMainSourcePath(file: bytes | bytearray | memoryview, /, builddi... method setThrowOnFail (line 372) | def setThrowOnFail(enable: bool, /) -> None: ... method setThrowOnSkip (line 374) | def setThrowOnSkip(enable: bool, /) -> None: ... method simulateEvent (line 377) | def simulateEvent(window: PySide6.QtGui.QWindow, press: bool, code: in... method simulateEvent (line 380) | def simulateEvent(widget: PySide6.QtWidgets.QWidget, press: bool, code... method testObject (line 382) | def testObject() -> PySide6.QtCore.QObject: ... method toPrettyCString (line 384) | def toPrettyCString(unicode: bytes | bytearray | memoryview, length: i... method touchEvent (line 387) | def touchEvent(window: PySide6.QtGui.QWindow, device: PySide6.QtGui.QP... method touchEvent (line 390) | def touchEvent(widget: PySide6.QtWidgets.QWidget, device: PySide6.QtGu... method wheelEvent (line 392) | def wheelEvent(window: PySide6.QtGui.QWindow, pos: PySide6.QtCore.QPoi... FILE: pyside6/stubs/PySide6-stubs/QtTextToSpeech.pyi class QIntList (line 12) | class QIntList: method __init__ (line 14) | def __init__(self, *args, **kwargs) -> None: ... method append (line 15) | def append(self, *args, **kwargs): ... method capacity (line 16) | def capacity(self, *args, **kwargs): ... method clear (line 17) | def clear(self, *args, **kwargs): ... method constData (line 18) | def constData(self, *args, **kwargs): ... method data (line 19) | def data(self, *args, **kwargs): ... method pop_back (line 20) | def pop_back(self, *args, **kwargs): ... method pop_front (line 21) | def pop_front(self, *args, **kwargs): ... method prepend (line 22) | def prepend(self, *args, **kwargs): ... method push_back (line 23) | def push_back(self, *args, **kwargs): ... method push_front (line 24) | def push_front(self, *args, **kwargs): ... method removeFirst (line 25) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 26) | def removeLast(self, *args, **kwargs): ... method reserve (line 27) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 28) | def __delitem__(self, other) -> None: ... method __getitem__ (line 29) | def __getitem__(self, index): ... method __len__ (line 30) | def __len__(self) -> int: ... method __setitem__ (line 31) | def __setitem__(self, index, object) -> None: ... class QTextToSpeech (line 33) | class QTextToSpeech(PySide6.QtCore.QObject): class BoundaryHint (line 34) | class BoundaryHint(enum.Enum): class Capability (line 41) | class Capability(enum.Flag): class ErrorReason (line 48) | class ErrorReason(enum.Enum): class State (line 55) | class State(enum.Enum): method __init__ (line 73) | def __init__(self, engine: str, params: Dict[str, Any], /, parent: PyS... method __init__ (line 75) | def __init__(self, engine: str, /, parent: PySide6.QtCore.QObject | No... method __init__ (line 77) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method allVoices (line 78) | def allVoices(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method availableEngines (line 80) | def availableEngines() -> List[str]: ... method availableLocales (line 81) | def availableLocales(self, /) -> List[PySide6.QtCore.QLocale]: ... method availableVoices (line 82) | def availableVoices(self, /) -> List[QVoice]: ... method engine (line 83) | def engine(self, /) -> str: ... method engineCapabilities (line 84) | def engineCapabilities(self, /) -> QTextToSpeech.Capability: ... method enqueue (line 85) | def enqueue(self, text: str, /) -> int: ... method errorReason (line 86) | def errorReason(self, /) -> QTextToSpeech.ErrorReason: ... method errorString (line 87) | def errorString(self, /) -> str: ... method locale (line 88) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method pause (line 89) | def pause(self, /, boundaryHint: QTextToSpeech.BoundaryHint = ...) -> ... method pitch (line 90) | def pitch(self, /) -> float: ... method rate (line 91) | def rate(self, /) -> float: ... method resume (line 92) | def resume(self, /) -> None: ... method say (line 93) | def say(self, text: str, /) -> None: ... method setEngine (line 94) | def setEngine(self, engine: str, /, params: Dict[str, Any] = ...) -> b... method setLocale (line 95) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setPitch (line 96) | def setPitch(self, pitch: float, /) -> None: ... method setRate (line 97) | def setRate(self, rate: float, /) -> None: ... method setVoice (line 98) | def setVoice(self, voice: QVoice, /) -> None: ... method setVolume (line 99) | def setVolume(self, volume: float, /) -> None: ... method state (line 100) | def state(self, /) -> QTextToSpeech.State: ... method stop (line 101) | def stop(self, /, boundaryHint: QTextToSpeech.BoundaryHint = ...) -> N... method voice (line 102) | def voice(self, /) -> QVoice: ... method volume (line 103) | def volume(self, /) -> float: ... class QTextToSpeechEngine (line 105) | class QTextToSpeechEngine(PySide6.QtCore.QObject): method __init__ (line 111) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method availableLocales (line 112) | def availableLocales(self, /) -> List[PySide6.QtCore.QLocale]: ... method availableVoices (line 113) | def availableVoices(self, /) -> List[QVoice]: ... method capabilities (line 114) | def capabilities(self, /) -> QTextToSpeech.Capability: ... method createVoice (line 116) | def createVoice(name: str, locale: PySide6.QtCore.QLocale | PySide6.Qt... method errorReason (line 117) | def errorReason(self, /) -> QTextToSpeech.ErrorReason: ... method errorString (line 118) | def errorString(self, /) -> str: ... method locale (line 119) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method pause (line 120) | def pause(self, boundaryHint: QTextToSpeech.BoundaryHint, /) -> None: ... method pitch (line 121) | def pitch(self, /) -> float: ... method rate (line 122) | def rate(self, /) -> float: ... method resume (line 123) | def resume(self, /) -> None: ... method say (line 124) | def say(self, text: str, /) -> None: ... method setLocale (line 125) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setPitch (line 126) | def setPitch(self, pitch: float, /) -> bool: ... method setRate (line 127) | def setRate(self, rate: float, /) -> bool: ... method setVoice (line 128) | def setVoice(self, voice: QVoice, /) -> bool: ... method setVolume (line 129) | def setVolume(self, volume: float, /) -> bool: ... method state (line 130) | def state(self, /) -> QTextToSpeech.State: ... method stop (line 131) | def stop(self, boundaryHint: QTextToSpeech.BoundaryHint, /) -> None: ... method synthesize (line 132) | def synthesize(self, text: str, /) -> None: ... method voice (line 133) | def voice(self, /) -> QVoice: ... method voiceData (line 135) | def voiceData(voice: QVoice, /) -> Any: ... method volume (line 136) | def volume(self, /) -> float: ... class QVoice (line 138) | class QVoice(shiboken6.Object): class Age (line 139) | class Age(enum.Enum): class Gender (line 146) | class Gender(enum.Enum): method __init__ (line 151) | def __init__(self, other: QVoice, /, *, name: str | None = ..., gender... method __init__ (line 153) | def __init__(self, /, *, name: str | None = ..., gender: QVoice.Gender... method age (line 154) | def age(self, /) -> QVoice.Age: ... method ageName (line 156) | def ageName(age: QVoice.Age, /) -> str: ... method gender (line 157) | def gender(self, /) -> QVoice.Gender: ... method genderName (line 159) | def genderName(gender: QVoice.Gender, /) -> str: ... method language (line 160) | def language(self, /) -> PySide6.QtCore.QLocale.Language: ... method locale (line 161) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method name (line 162) | def name(self, /) -> str: ... method swap (line 163) | def swap(self, other: QVoice, /) -> None: ... method __copy__ (line 164) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 165) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 166) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 167) | def __gt__(self, other: object) -> bool: ... method __le__ (line 168) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 169) | def __lshift__(self, str: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... method __lt__ (line 170) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 171) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 172) | def __rlshift__(self, other): ... method __rrshift__ (line 173) | def __rrshift__(self, other): ... method __rshift__ (line 174) | def __rshift__(self, str: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... FILE: pyside6/stubs/PySide6-stubs/QtUiTools.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QUiLoader (line 34) | class QUiLoader(PySide6.QtCore.QObject): method __init__ (line 36) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method addPluginPath (line 37) | def addPluginPath(self, path: str, /) -> None: ... method availableLayouts (line 38) | def availableLayouts(self, /) -> List[str]: ... method availableWidgets (line 39) | def availableWidgets(self, /) -> List[str]: ... method clearPluginPaths (line 40) | def clearPluginPaths(self, /) -> None: ... method createAction (line 41) | def createAction(self, /, parent: PySide6.QtCore.QObject | None = ...,... method createActionGroup (line 42) | def createActionGroup(self, /, parent: PySide6.QtCore.QObject | None =... method createLayout (line 43) | def createLayout(self, className: str, /, parent: PySide6.QtCore.QObje... method createWidget (line 44) | def createWidget(self, className: str, /, parent: PySide6.QtWidgets.QW... method errorString (line 45) | def errorString(self, /) -> str: ... method isLanguageChangeEnabled (line 46) | def isLanguageChangeEnabled(self, /) -> bool: ... method isTranslationEnabled (line 47) | def isTranslationEnabled(self, /) -> bool: ... method load (line 49) | def load(self, device: PySide6.QtCore.QIODevice, /, parentWidget: PySi... method load (line 51) | def load(self, arg__1: str | bytes | os.PathLike[str], /, parentWidget... method pluginPaths (line 52) | def pluginPaths(self, /) -> List[str]: ... method registerCustomWidget (line 53) | def registerCustomWidget(self, customWidgetType: object, /) -> None: ... method setLanguageChangeEnabled (line 54) | def setLanguageChangeEnabled(self, enabled: bool, /) -> None: ... method setTranslationEnabled (line 55) | def setTranslationEnabled(self, enabled: bool, /) -> None: ... method setWorkingDirectory (line 56) | def setWorkingDirectory(self, dir: PySide6.QtCore.QDir, /) -> None: ... method workingDirectory (line 57) | def workingDirectory(self, /) -> PySide6.QtCore.QDir: ... function loadUiType (line 59) | def loadUiType(uifile: str, /) -> typing.Any: ... FILE: pyside6/stubs/PySide6-stubs/QtWebChannel.pyi class QIntList (line 10) | class QIntList: method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: ... method append (line 13) | def append(self, *args, **kwargs): ... method capacity (line 14) | def capacity(self, *args, **kwargs): ... method clear (line 15) | def clear(self, *args, **kwargs): ... method constData (line 16) | def constData(self, *args, **kwargs): ... method data (line 17) | def data(self, *args, **kwargs): ... method pop_back (line 18) | def pop_back(self, *args, **kwargs): ... method pop_front (line 19) | def pop_front(self, *args, **kwargs): ... method prepend (line 20) | def prepend(self, *args, **kwargs): ... method push_back (line 21) | def push_back(self, *args, **kwargs): ... method push_front (line 22) | def push_front(self, *args, **kwargs): ... method removeFirst (line 23) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 24) | def removeLast(self, *args, **kwargs): ... method reserve (line 25) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 26) | def __delitem__(self, other) -> None: ... method __getitem__ (line 27) | def __getitem__(self, index): ... method __len__ (line 28) | def __len__(self) -> int: ... method __setitem__ (line 29) | def __setitem__(self, index, object) -> None: ... class QWebChannel (line 31) | class QWebChannel(PySide6.QtCore.QObject): method __init__ (line 34) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method blockUpdates (line 35) | def blockUpdates(self, /) -> bool: ... method connectTo (line 36) | def connectTo(self, transport: QWebChannelAbstractTransport, /) -> Non... method deregisterObject (line 37) | def deregisterObject(self, object: PySide6.QtCore.QObject, /) -> None:... method disconnectFrom (line 38) | def disconnectFrom(self, transport: QWebChannelAbstractTransport, /) -... method propertyUpdateInterval (line 39) | def propertyUpdateInterval(self, /) -> int: ... method registerObject (line 40) | def registerObject(self, id: str, object: PySide6.QtCore.QObject, /) -... method registerObjects (line 41) | def registerObjects(self, objects: Dict[str, PySide6.QtCore.QObject], ... method registeredObjects (line 42) | def registeredObjects(self, /) -> Dict[str, PySide6.QtCore.QObject]: ... method setBlockUpdates (line 43) | def setBlockUpdates(self, block: bool, /) -> None: ... method setPropertyUpdateInterval (line 44) | def setPropertyUpdateInterval(self, ms: int, /) -> None: ... class QWebChannelAbstractTransport (line 46) | class QWebChannelAbstractTransport(PySide6.QtCore.QObject): method __init__ (line 49) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method sendMessage (line 50) | def sendMessage(self, message: Dict[str, PySide6.QtCore.QJsonValue], /... FILE: pyside6/stubs/PySide6-stubs/QtWebEngineCore.pyi class QIntList (line 16) | class QIntList: method __init__ (line 18) | def __init__(self, *args, **kwargs) -> None: ... method append (line 19) | def append(self, *args, **kwargs): ... method capacity (line 20) | def capacity(self, *args, **kwargs): ... method clear (line 21) | def clear(self, *args, **kwargs): ... method constData (line 22) | def constData(self, *args, **kwargs): ... method data (line 23) | def data(self, *args, **kwargs): ... method pop_back (line 24) | def pop_back(self, *args, **kwargs): ... method pop_front (line 25) | def pop_front(self, *args, **kwargs): ... method prepend (line 26) | def prepend(self, *args, **kwargs): ... method push_back (line 27) | def push_back(self, *args, **kwargs): ... method push_front (line 28) | def push_front(self, *args, **kwargs): ... method removeFirst (line 29) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 30) | def removeLast(self, *args, **kwargs): ... method reserve (line 31) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 32) | def __delitem__(self, other) -> None: ... method __getitem__ (line 33) | def __getitem__(self, index): ... method __len__ (line 34) | def __len__(self) -> int: ... method __setitem__ (line 35) | def __setitem__(self, index, object) -> None: ... class QWebEngineCertificateError (line 37) | class QWebEngineCertificateError(shiboken6.Object): class Type (line 38) | class Type(enum.Enum): method __init__ (line 59) | def __init__(self, other: QWebEngineCertificateError, /, *, url: PySid... method __init__ (line 61) | def __init__(self, /, *, url: PySide6.QtCore.QUrl | None = ..., type: ... method acceptCertificate (line 62) | def acceptCertificate(self, /) -> None: ... method certificateChain (line 63) | def certificateChain(self, /) -> List[PySide6.QtNetwork.QSslCertificat... method defer (line 64) | def defer(self, /) -> None: ... method description (line 65) | def description(self, /) -> str: ... method isMainFrame (line 66) | def isMainFrame(self, /) -> bool: ... method isOverridable (line 67) | def isOverridable(self, /) -> bool: ... method rejectCertificate (line 68) | def rejectCertificate(self, /) -> None: ... method type (line 69) | def type(self, /) -> QWebEngineCertificateError.Type: ... method url (line 70) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 71) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineClientCertificateSelection (line 73) | class QWebEngineClientCertificateSelection(shiboken6.Object): method __init__ (line 74) | def __init__(self, arg__1: QWebEngineClientCertificateSelection, /) ->... method certificates (line 75) | def certificates(self, /) -> List[PySide6.QtNetwork.QSslCertificate]: ... method host (line 76) | def host(self, /) -> PySide6.QtCore.QUrl: ... method select (line 77) | def select(self, certificate: PySide6.QtNetwork.QSslCertificate | PySi... method selectNone (line 78) | def selectNone(self, /) -> None: ... method __copy__ (line 79) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineClientCertificateStore (line 81) | class QWebEngineClientCertificateStore(shiboken6.Object): method __init__ (line 82) | def __init__(self, *args, **kwargs) -> None: ... method add (line 83) | def add(self, certificate: PySide6.QtNetwork.QSslCertificate | PySide6... method certificates (line 84) | def certificates(self, /) -> List[PySide6.QtNetwork.QSslCertificate]: ... method clear (line 85) | def clear(self, /) -> None: ... method remove (line 86) | def remove(self, certificate: PySide6.QtNetwork.QSslCertificate | PySi... class QWebEngineClientHints (line 88) | class QWebEngineClientHints(PySide6.QtCore.QObject): method __init__ (line 90) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method arch (line 91) | def arch(self, /) -> str: ... method bitness (line 92) | def bitness(self, /) -> str: ... method formFactors (line 93) | def formFactors(self, /) -> List[str]: ... method fullVersion (line 94) | def fullVersion(self, /) -> str: ... method fullVersionList (line 95) | def fullVersionList(self, /) -> Dict[str, Any]: ... method isAllClientHintsEnabled (line 96) | def isAllClientHintsEnabled(self, /) -> bool: ... method isMobile (line 97) | def isMobile(self, /) -> bool: ... method isWow64 (line 98) | def isWow64(self, /) -> bool: ... method model (line 99) | def model(self, /) -> str: ... method platform (line 100) | def platform(self, /) -> str: ... method platformVersion (line 101) | def platformVersion(self, /) -> str: ... method resetAll (line 102) | def resetAll(self, /) -> None: ... method setAllClientHintsEnabled (line 103) | def setAllClientHintsEnabled(self, enabled: bool, /) -> None: ... method setArch (line 104) | def setArch(self, arg__1: str, /) -> None: ... method setBitness (line 105) | def setBitness(self, arg__1: str, /) -> None: ... method setFormFactors (line 106) | def setFormFactors(self, arg__1: typing.Iterable[str], /) -> None: ... method setFullVersion (line 107) | def setFullVersion(self, arg__1: str, /) -> None: ... method setFullVersionList (line 108) | def setFullVersionList(self, arg__1: Dict[str, Any], /) -> None: ... method setIsMobile (line 109) | def setIsMobile(self, arg__1: bool, /) -> None: ... method setIsWow64 (line 110) | def setIsWow64(self, arg__1: bool, /) -> None: ... method setModel (line 111) | def setModel(self, arg__1: str, /) -> None: ... method setPlatform (line 112) | def setPlatform(self, arg__1: str, /) -> None: ... method setPlatformVersion (line 113) | def setPlatformVersion(self, arg__1: str, /) -> None: ... class QWebEngineContextMenuRequest (line 115) | class QWebEngineContextMenuRequest(PySide6.QtCore.QObject): class EditFlag (line 116) | class EditFlag(enum.Flag): class MediaFlag (line 127) | class MediaFlag(enum.Flag): class MediaType (line 139) | class MediaType(enum.Enum): method __init__ (line 148) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method editFlags (line 149) | def editFlags(self, /) -> QWebEngineContextMenuRequest.EditFlag: ... method isAccepted (line 150) | def isAccepted(self, /) -> bool: ... method isContentEditable (line 151) | def isContentEditable(self, /) -> bool: ... method linkText (line 152) | def linkText(self, /) -> str: ... method linkUrl (line 153) | def linkUrl(self, /) -> PySide6.QtCore.QUrl: ... method mediaFlags (line 154) | def mediaFlags(self, /) -> QWebEngineContextMenuRequest.MediaFlag: ... method mediaType (line 155) | def mediaType(self, /) -> QWebEngineContextMenuRequest.MediaType: ... method mediaUrl (line 156) | def mediaUrl(self, /) -> PySide6.QtCore.QUrl: ... method misspelledWord (line 157) | def misspelledWord(self, /) -> str: ... method position (line 158) | def position(self, /) -> PySide6.QtCore.QPoint: ... method selectedText (line 159) | def selectedText(self, /) -> str: ... method setAccepted (line 160) | def setAccepted(self, accepted: bool, /) -> None: ... method spellCheckerSuggestions (line 161) | def spellCheckerSuggestions(self, /) -> List[str]: ... class QWebEngineCookieStore (line 163) | class QWebEngineCookieStore(PySide6.QtCore.QObject): class FilterRequest (line 164) | class FilterRequest(shiboken6.Object): method __init__ (line 171) | def __init__(self, FilterRequest: QWebEngineCookieStore.FilterReques... method __init__ (line 173) | def __init__(self, /) -> None: ... method __copy__ (line 174) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 178) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method deleteAllCookies (line 179) | def deleteAllCookies(self, /) -> None: ... method deleteCookie (line 180) | def deleteCookie(self, cookie: PySide6.QtNetwork.QNetworkCookie, /, or... method deleteSessionCookies (line 181) | def deleteSessionCookies(self, /) -> None: ... method loadAllCookies (line 182) | def loadAllCookies(self, /) -> None: ... method setCookie (line 183) | def setCookie(self, cookie: PySide6.QtNetwork.QNetworkCookie, /, origi... method setCookieFilter (line 184) | def setCookieFilter(self, filterCallback: collections.abc.Callable[...... class QWebEngineDesktopMediaRequest (line 186) | class QWebEngineDesktopMediaRequest(shiboken6.Object): method __init__ (line 188) | def __init__(self, other: QWebEngineDesktopMediaRequest, /, *, screens... method __init__ (line 190) | def __init__(self, /, *, screensModel: PySide6.QtCore.QAbstractListMod... method cancel (line 191) | def cancel(self, /) -> None: ... method screensModel (line 192) | def screensModel(self, /) -> PySide6.QtCore.QAbstractListModel: ... method selectScreen (line 193) | def selectScreen(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method selectWindow (line 194) | def selectWindow(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method windowsModel (line 195) | def windowsModel(self, /) -> PySide6.QtCore.QAbstractListModel: ... method __copy__ (line 196) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineDownloadRequest (line 198) | class QWebEngineDownloadRequest(PySide6.QtCore.QObject): class DownloadInterruptReason (line 199) | class DownloadInterruptReason(enum.Enum): class DownloadState (line 225) | class DownloadState(enum.Enum): class SavePageFormat (line 232) | class SavePageFormat(enum.Enum): method __init__ (line 247) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method accept (line 248) | def accept(self, /) -> None: ... method cancel (line 249) | def cancel(self, /) -> None: ... method downloadDirectory (line 250) | def downloadDirectory(self, /) -> str: ... method downloadFileName (line 251) | def downloadFileName(self, /) -> str: ... method id (line 252) | def id(self, /) -> int: ... method interruptReason (line 253) | def interruptReason(self, /) -> QWebEngineDownloadRequest.DownloadInte... method interruptReasonString (line 254) | def interruptReasonString(self, /) -> str: ... method isFinished (line 255) | def isFinished(self, /) -> bool: ... method isPaused (line 256) | def isPaused(self, /) -> bool: ... method isSavePageDownload (line 257) | def isSavePageDownload(self, /) -> bool: ... method mimeType (line 258) | def mimeType(self, /) -> str: ... method page (line 259) | def page(self, /) -> QWebEnginePage: ... method pause (line 260) | def pause(self, /) -> None: ... method receivedBytes (line 261) | def receivedBytes(self, /) -> int: ... method resume (line 262) | def resume(self, /) -> None: ... method savePageFormat (line 263) | def savePageFormat(self, /) -> QWebEngineDownloadRequest.SavePageForma... method setDownloadDirectory (line 264) | def setDownloadDirectory(self, directory: str, /) -> None: ... method setDownloadFileName (line 265) | def setDownloadFileName(self, fileName: str, /) -> None: ... method setSavePageFormat (line 266) | def setSavePageFormat(self, format: QWebEngineDownloadRequest.SavePage... method state (line 267) | def state(self, /) -> QWebEngineDownloadRequest.DownloadState: ... method suggestedFileName (line 268) | def suggestedFileName(self, /) -> str: ... method totalBytes (line 269) | def totalBytes(self, /) -> int: ... method url (line 270) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QWebEngineExtensionInfo (line 272) | class QWebEngineExtensionInfo(shiboken6.Object): method __init__ (line 274) | def __init__(self, other: QWebEngineExtensionInfo, /, *, name: str | N... method __init__ (line 276) | def __init__(self, /, *, name: str | None = ..., id: str | None = ...,... method actionPopupUrl (line 277) | def actionPopupUrl(self, /) -> PySide6.QtCore.QUrl: ... method description (line 278) | def description(self, /) -> str: ... method error (line 279) | def error(self, /) -> str: ... method id (line 280) | def id(self, /) -> str: ... method isEnabled (line 281) | def isEnabled(self, /) -> bool: ... method isInstalled (line 282) | def isInstalled(self, /) -> bool: ... method isLoaded (line 283) | def isLoaded(self, /) -> bool: ... method name (line 284) | def name(self, /) -> str: ... method path (line 285) | def path(self, /) -> str: ... method swap (line 286) | def swap(self, other: QWebEngineExtensionInfo, /) -> None: ... class QWebEngineExtensionManager (line 288) | class QWebEngineExtensionManager(PySide6.QtCore.QObject): method __init__ (line 294) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method event (line 295) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method extensions (line 296) | def extensions(self, /) -> List[QWebEngineExtensionInfo]: ... method installExtension (line 297) | def installExtension(self, path: str, /) -> None: ... method installPath (line 298) | def installPath(self, /) -> str: ... method loadExtension (line 299) | def loadExtension(self, path: str, /) -> None: ... method setExtensionEnabled (line 300) | def setExtensionEnabled(self, extension: QWebEngineExtensionInfo, enab... method uninstallExtension (line 301) | def uninstallExtension(self, extension: QWebEngineExtensionInfo, /) ->... method unloadExtension (line 302) | def unloadExtension(self, extension: QWebEngineExtensionInfo, /) -> No... class QWebEngineFileSystemAccessRequest (line 304) | class QWebEngineFileSystemAccessRequest(shiboken6.Object): class AccessFlag (line 305) | class AccessFlag(enum.Flag): class HandleType (line 309) | class HandleType(enum.Enum): method __init__ (line 313) | def __init__(self, other: QWebEngineFileSystemAccessRequest, /, *, ori... method __init__ (line 315) | def __init__(self, /, *, origin: PySide6.QtCore.QUrl | None = ..., fil... method accept (line 316) | def accept(self, /) -> None: ... method accessFlags (line 317) | def accessFlags(self, /) -> QWebEngineFileSystemAccessRequest.AccessFl... method filePath (line 318) | def filePath(self, /) -> PySide6.QtCore.QUrl: ... method handleType (line 319) | def handleType(self, /) -> QWebEngineFileSystemAccessRequest.HandleTyp... method origin (line 320) | def origin(self, /) -> PySide6.QtCore.QUrl: ... method reject (line 321) | def reject(self, /) -> None: ... method __copy__ (line 322) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 323) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 324) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 325) | def __gt__(self, other: object) -> bool: ... method __le__ (line 326) | def __le__(self, other: object) -> bool: ... method __lt__ (line 327) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 328) | def __ne__(self, other: object) -> bool: ... class QWebEngineFindTextResult (line 330) | class QWebEngineFindTextResult(shiboken6.Object): method __init__ (line 332) | def __init__(self, other: QWebEngineFindTextResult, /, *, numberOfMatc... method __init__ (line 334) | def __init__(self, /, *, numberOfMatches: int | None = ..., activeMatc... method activeMatch (line 335) | def activeMatch(self, /) -> int: ... method numberOfMatches (line 336) | def numberOfMatches(self, /) -> int: ... method __copy__ (line 337) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineFrame (line 339) | class QWebEngineFrame(shiboken6.Object): method __init__ (line 341) | def __init__(self, other: QWebEngineFrame, /, *, isValid: bool | None ... method __init__ (line 343) | def __init__(self, /, *, isValid: bool | None = ..., name: str | None ... method children (line 344) | def children(self, /) -> List[QWebEngineFrame]: ... method htmlName (line 345) | def htmlName(self, /) -> str: ... method isMainFrame (line 346) | def isMainFrame(self, /) -> bool: ... method isValid (line 347) | def isValid(self, /) -> bool: ... method name (line 348) | def name(self, /) -> str: ... method printToPdf (line 350) | def printToPdf(self, resultCallback: collections.abc.Callable[..., typ... method printToPdf (line 352) | def printToPdf(self, filePath: str, /) -> None: ... method runJavaScript (line 354) | def runJavaScript(self, scriptSource: str, worldId: int, /, resultCall... method runJavaScript (line 356) | def runJavaScript(self, scriptSource: str, resultCallback: collections... method size (line 357) | def size(self, /) -> PySide6.QtCore.QSizeF: ... method url (line 358) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 359) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 360) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 361) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 362) | def __gt__(self, other: object) -> bool: ... method __le__ (line 363) | def __le__(self, other: object) -> bool: ... method __lt__ (line 364) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 365) | def __ne__(self, other: object) -> bool: ... class QWebEngineFullScreenRequest (line 367) | class QWebEngineFullScreenRequest(shiboken6.Object): method __init__ (line 369) | def __init__(self, other: QWebEngineFullScreenRequest, /, *, toggleOn:... method __init__ (line 371) | def __init__(self, /, *, toggleOn: bool | None = ..., origin: PySide6.... method accept (line 372) | def accept(self, /) -> None: ... method origin (line 373) | def origin(self, /) -> PySide6.QtCore.QUrl: ... method reject (line 374) | def reject(self, /) -> None: ... method toggleOn (line 375) | def toggleOn(self, /) -> bool: ... method __copy__ (line 376) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineGlobalSettings (line 378) | class QWebEngineGlobalSettings(shiboken6.Object): class DnsMode (line 379) | class DnsMode(shiboken6.Object): method __init__ (line 383) | def __init__(self, DnsMode: QWebEngineGlobalSettings.DnsMode, /) -> ... method __init__ (line 385) | def __init__(self, /) -> None: ... method __copy__ (line 386) | def __copy__(self, /) -> typing_extensions.Self: ... class SecureDnsMode (line 388) | class SecureDnsMode(enum.Enum): method __init__ (line 392) | def __init__(self, *args, **kwargs) -> None: ... method setDnsMode (line 394) | def setDnsMode(dnsMode: QWebEngineGlobalSettings.DnsMode, /) -> bool: ... class QWebEngineHistory (line 396) | class QWebEngineHistory(PySide6.QtCore.QObject): method __init__ (line 398) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method back (line 399) | def back(self, /) -> None: ... method backItem (line 400) | def backItem(self, /) -> QWebEngineHistoryItem: ... method backItems (line 401) | def backItems(self, maxItems: int, /) -> List[QWebEngineHistoryItem]: ... method backItemsModel (line 402) | def backItemsModel(self, /) -> QWebEngineHistoryModel: ... method canGoBack (line 403) | def canGoBack(self, /) -> bool: ... method canGoForward (line 404) | def canGoForward(self, /) -> bool: ... method clear (line 405) | def clear(self, /) -> None: ... method count (line 406) | def count(self, /) -> int: ... method currentItem (line 407) | def currentItem(self, /) -> QWebEngineHistoryItem: ... method currentItemIndex (line 408) | def currentItemIndex(self, /) -> int: ... method forward (line 409) | def forward(self, /) -> None: ... method forwardItem (line 410) | def forwardItem(self, /) -> QWebEngineHistoryItem: ... method forwardItems (line 411) | def forwardItems(self, maxItems: int, /) -> List[QWebEngineHistoryItem... method forwardItemsModel (line 412) | def forwardItemsModel(self, /) -> QWebEngineHistoryModel: ... method goToItem (line 413) | def goToItem(self, item: QWebEngineHistoryItem, /) -> None: ... method itemAt (line 414) | def itemAt(self, i: int, /) -> QWebEngineHistoryItem: ... method items (line 415) | def items(self, /) -> List[QWebEngineHistoryItem]: ... method itemsModel (line 416) | def itemsModel(self, /) -> QWebEngineHistoryModel: ... method __lshift__ (line 417) | def __lshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... method __rlshift__ (line 418) | def __rlshift__(self, other): ... method __rrshift__ (line 419) | def __rrshift__(self, other): ... method __rshift__ (line 420) | def __rshift__(self, stream: PySide6.QtCore.QDataStream, /) -> PySide6... class QWebEngineHistoryItem (line 422) | class QWebEngineHistoryItem(shiboken6.Object): method __init__ (line 423) | def __init__(self, other: QWebEngineHistoryItem, /) -> None: ... method iconUrl (line 424) | def iconUrl(self, /) -> PySide6.QtCore.QUrl: ... method isValid (line 425) | def isValid(self, /) -> bool: ... method lastVisited (line 426) | def lastVisited(self, /) -> PySide6.QtCore.QDateTime: ... method originalUrl (line 427) | def originalUrl(self, /) -> PySide6.QtCore.QUrl: ... method title (line 428) | def title(self, /) -> str: ... method url (line 429) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 430) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineHistoryModel (line 432) | class QWebEngineHistoryModel(PySide6.QtCore.QAbstractListModel): class Roles (line 433) | class Roles(enum.Enum): method __init__ (line 439) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method data (line 440) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method reset (line 441) | def reset(self, /) -> None: ... method roleNames (line 442) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rowCount (line 443) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... class QWebEngineHttpRequest (line 445) | class QWebEngineHttpRequest(shiboken6.Object): class Method (line 446) | class Method(enum.Enum): method __init__ (line 450) | def __init__(self, /, url: PySide6.QtCore.QUrl | str = ..., method: QW... method __init__ (line 452) | def __init__(self, other: QWebEngineHttpRequest, /) -> None: ... method hasHeader (line 453) | def hasHeader(self, headerName: PySide6.QtCore.QByteArray | bytes | by... method header (line 454) | def header(self, headerName: PySide6.QtCore.QByteArray | bytes | bytea... method headers (line 455) | def headers(self, /) -> List[PySide6.QtCore.QByteArray]: ... method method (line 456) | def method(self, /) -> QWebEngineHttpRequest.Method: ... method postData (line 457) | def postData(self, /) -> PySide6.QtCore.QByteArray: ... method postRequest (line 459) | def postRequest(url: PySide6.QtCore.QUrl | str, postData: Dict[str, st... method setHeader (line 460) | def setHeader(self, headerName: PySide6.QtCore.QByteArray | bytes | by... method setMethod (line 461) | def setMethod(self, method: QWebEngineHttpRequest.Method, /) -> None: ... method setPostData (line 462) | def setPostData(self, postData: PySide6.QtCore.QByteArray | bytes | by... method setUrl (line 463) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method swap (line 464) | def swap(self, other: QWebEngineHttpRequest, /) -> None: ... method unsetHeader (line 465) | def unsetHeader(self, headerName: PySide6.QtCore.QByteArray | bytes | ... method url (line 466) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __eq__ (line 467) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 468) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 469) | def __gt__(self, other: object) -> bool: ... method __le__ (line 470) | def __le__(self, other: object) -> bool: ... method __lt__ (line 471) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 472) | def __ne__(self, other: object) -> bool: ... class QWebEngineLoadingInfo (line 474) | class QWebEngineLoadingInfo(shiboken6.Object): class ErrorDomain (line 475) | class ErrorDomain(enum.Enum): class LoadStatus (line 485) | class LoadStatus(enum.Enum): method __init__ (line 491) | def __init__(self, other: QWebEngineLoadingInfo, /, *, url: PySide6.Qt... method __init__ (line 493) | def __init__(self, /, *, url: PySide6.QtCore.QUrl | None = ..., isErro... method errorCode (line 494) | def errorCode(self, /) -> int: ... method errorDomain (line 495) | def errorDomain(self, /) -> QWebEngineLoadingInfo.ErrorDomain: ... method errorString (line 496) | def errorString(self, /) -> str: ... method isDownload (line 497) | def isDownload(self, /) -> bool: ... method isErrorPage (line 498) | def isErrorPage(self, /) -> bool: ... method responseHeaders (line 499) | def responseHeaders(self, /) -> Dict[PySide6.QtCore.QByteArray, PySide... method status (line 500) | def status(self, /) -> QWebEngineLoadingInfo.LoadStatus: ... method url (line 501) | def url(self, /) -> PySide6.QtCore.QUrl: ... method __copy__ (line 502) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineNavigationRequest (line 504) | class QWebEngineNavigationRequest(PySide6.QtCore.QObject): class NavigationRequestAction (line 505) | class NavigationRequestAction(enum.Enum): class NavigationType (line 509) | class NavigationType(enum.Enum): method __init__ (line 519) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method accept (line 520) | def accept(self, /) -> None: ... method hasFormData (line 521) | def hasFormData(self, /) -> bool: ... method isMainFrame (line 522) | def isMainFrame(self, /) -> bool: ... method navigationType (line 523) | def navigationType(self, /) -> QWebEngineNavigationRequest.NavigationT... method reject (line 524) | def reject(self, /) -> None: ... method url (line 525) | def url(self, /) -> PySide6.QtCore.QUrl: ... class QWebEngineNewWindowRequest (line 527) | class QWebEngineNewWindowRequest(PySide6.QtCore.QObject): class DestinationType (line 528) | class DestinationType(enum.Enum): method __init__ (line 534) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method destination (line 535) | def destination(self, /) -> QWebEngineNewWindowRequest.DestinationType... method isUserInitiated (line 536) | def isUserInitiated(self, /) -> bool: ... method openIn (line 537) | def openIn(self, arg__1: QWebEnginePage, /) -> None: ... method requestedGeometry (line 538) | def requestedGeometry(self, /) -> PySide6.QtCore.QRect: ... method requestedUrl (line 539) | def requestedUrl(self, /) -> PySide6.QtCore.QUrl: ... class QWebEngineNotification (line 541) | class QWebEngineNotification(PySide6.QtCore.QObject): method __init__ (line 544) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method click (line 545) | def click(self, /) -> None: ... method close (line 546) | def close(self, /) -> None: ... method direction (line 547) | def direction(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method icon (line 548) | def icon(self, /) -> PySide6.QtGui.QImage: ... method language (line 549) | def language(self, /) -> str: ... method matches (line 550) | def matches(self, other: QWebEngineNotification, /) -> bool: ... method message (line 551) | def message(self, /) -> str: ... method origin (line 552) | def origin(self, /) -> PySide6.QtCore.QUrl: ... method show (line 553) | def show(self, /) -> None: ... method tag (line 554) | def tag(self, /) -> str: ... method title (line 555) | def title(self, /) -> str: ... class QWebEnginePage (line 557) | class QWebEnginePage(PySide6.QtCore.QObject): class Feature (line 558) | class Feature(enum.Enum): class FileSelectionMode (line 570) | class FileSelectionMode(enum.Enum): class FindFlag (line 576) | class FindFlag(enum.Flag): class JavaScriptConsoleMessageLevel (line 580) | class JavaScriptConsoleMessageLevel(enum.Enum): class LifecycleState (line 585) | class LifecycleState(enum.Enum): class NavigationType (line 590) | class NavigationType(enum.Enum): class PermissionPolicy (line 599) | class PermissionPolicy(enum.Enum): class RenderProcessTerminationStatus (line 604) | class RenderProcessTerminationStatus(enum.Enum): class WebAction (line 610) | class WebAction(enum.Enum): class WebWindowType (line 661) | class WebWindowType(enum.Enum): method __init__ (line 710) | def __init__(self, profile: QWebEngineProfile, /, parent: PySide6.QtCo... method __init__ (line 712) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method acceptAsNewWindow (line 713) | def acceptAsNewWindow(self, request: QWebEngineNewWindowRequest, /) ->... method acceptNavigationRequest (line 714) | def acceptNavigationRequest(self, url: PySide6.QtCore.QUrl | str, type... method action (line 715) | def action(self, action: QWebEnginePage.WebAction, /) -> PySide6.QtGui... method backgroundColor (line 716) | def backgroundColor(self, /) -> PySide6.QtGui.QColor: ... method chooseFiles (line 717) | def chooseFiles(self, mode: QWebEnginePage.FileSelectionMode, oldFiles... method contentsSize (line 718) | def contentsSize(self, /) -> PySide6.QtCore.QSizeF: ... method createWindow (line 719) | def createWindow(self, type: QWebEnginePage.WebWindowType, /) -> QWebE... method devToolsId (line 720) | def devToolsId(self, /) -> str: ... method devToolsPage (line 721) | def devToolsPage(self, /) -> QWebEnginePage: ... method download (line 722) | def download(self, url: PySide6.QtCore.QUrl | str, /, filename: str = ... method event (line 723) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method findFrameByName (line 724) | def findFrameByName(self, name: str, /) -> QWebEngineFrame: ... method findText (line 726) | def findText(self, subString: str, options: QWebEnginePage.FindFlag, r... method findText (line 728) | def findText(self, subString: str, /, options: QWebEnginePage.FindFlag... method hasSelection (line 729) | def hasSelection(self, /) -> bool: ... method history (line 730) | def history(self, /) -> QWebEngineHistory: ... method icon (line 731) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method iconUrl (line 732) | def iconUrl(self, /) -> PySide6.QtCore.QUrl: ... method inspectedPage (line 733) | def inspectedPage(self, /) -> QWebEnginePage: ... method isAudioMuted (line 734) | def isAudioMuted(self, /) -> bool: ... method isLoading (line 735) | def isLoading(self, /) -> bool: ... method isVisible (line 736) | def isVisible(self, /) -> bool: ... method javaScriptAlert (line 737) | def javaScriptAlert(self, securityOrigin: PySide6.QtCore.QUrl | str, m... method javaScriptConfirm (line 738) | def javaScriptConfirm(self, securityOrigin: PySide6.QtCore.QUrl | str,... method javaScriptConsoleMessage (line 739) | def javaScriptConsoleMessage(self, level: QWebEnginePage.JavaScriptCon... method javaScriptPrompt (line 740) | def javaScriptPrompt(self, securityOrigin: PySide6.QtCore.QUrl | str, ... method lifecycleState (line 741) | def lifecycleState(self, /) -> QWebEnginePage.LifecycleState: ... method load (line 743) | def load(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method load (line 745) | def load(self, request: QWebEngineHttpRequest, /) -> None: ... method mainFrame (line 746) | def mainFrame(self, /) -> QWebEngineFrame: ... method printToPdf (line 748) | def printToPdf(self, resultCallback: collections.abc.Callable[..., typ... method printToPdf (line 750) | def printToPdf(self, filePath: str, /, layout: PySide6.QtGui.QPageLayo... method profile (line 751) | def profile(self, /) -> QWebEngineProfile: ... method recentlyAudible (line 752) | def recentlyAudible(self, /) -> bool: ... method recommendedState (line 753) | def recommendedState(self, /) -> QWebEnginePage.LifecycleState: ... method renderProcessPid (line 754) | def renderProcessPid(self, /) -> int: ... method replaceMisspelledWord (line 755) | def replaceMisspelledWord(self, replacement: str, /) -> None: ... method requestedUrl (line 756) | def requestedUrl(self, /) -> PySide6.QtCore.QUrl: ... method runJavaScript (line 758) | def runJavaScript(self, scriptSource: str, /, worldId: int | None = ..... method runJavaScript (line 760) | def runJavaScript(self, scriptSource: str, resultCallback: collections... method save (line 761) | def save(self, filePath: str, /, format: QWebEngineDownloadRequest.Sav... method scripts (line 762) | def scripts(self, /) -> QWebEngineScriptCollection: ... method scrollPosition (line 763) | def scrollPosition(self, /) -> PySide6.QtCore.QPointF: ... method selectedText (line 764) | def selectedText(self, /) -> str: ... method setAudioMuted (line 765) | def setAudioMuted(self, muted: bool, /) -> None: ... method setBackgroundColor (line 766) | def setBackgroundColor(self, color: Union[PySide6.QtGui.QColor, str, P... method setContent (line 767) | def setContent(self, data: PySide6.QtCore.QByteArray | bytes | bytearr... method setDevToolsPage (line 768) | def setDevToolsPage(self, page: QWebEnginePage, /) -> None: ... method setFeaturePermission (line 769) | def setFeaturePermission(self, securityOrigin: PySide6.QtCore.QUrl | s... method setHtml (line 770) | def setHtml(self, html: str, /, baseUrl: PySide6.QtCore.QUrl | str = .... method setInspectedPage (line 771) | def setInspectedPage(self, page: QWebEnginePage, /) -> None: ... method setLifecycleState (line 772) | def setLifecycleState(self, state: QWebEnginePage.LifecycleState, /) -... method setUrl (line 773) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setUrlRequestInterceptor (line 774) | def setUrlRequestInterceptor(self, interceptor: QWebEngineUrlRequestIn... method setVisible (line 775) | def setVisible(self, visible: bool, /) -> None: ... method setWebChannel (line 776) | def setWebChannel(self, arg__1: PySide6.QtWebChannel.QWebChannel, /, w... method setZoomFactor (line 777) | def setZoomFactor(self, factor: float, /) -> None: ... method settings (line 778) | def settings(self, /) -> QWebEngineSettings: ... method title (line 779) | def title(self, /) -> str: ... method toHtml (line 780) | def toHtml(self, resultCallback: collections.abc.Callable[..., typing.... method toPlainText (line 781) | def toPlainText(self, resultCallback: collections.abc.Callable[..., ty... method triggerAction (line 782) | def triggerAction(self, action: QWebEnginePage.WebAction, /, checked: ... method url (line 783) | def url(self, /) -> PySide6.QtCore.QUrl: ... method webChannel (line 784) | def webChannel(self, /) -> PySide6.QtWebChannel.QWebChannel: ... method zoomFactor (line 785) | def zoomFactor(self, /) -> float: ... class QWebEnginePermission (line 787) | class QWebEnginePermission(shiboken6.Object): class PermissionType (line 788) | class PermissionType(enum.Enum): class State (line 801) | class State(enum.Enum): method __init__ (line 807) | def __init__(self, other: QWebEnginePermission, /, *, origin: PySide6.... method __init__ (line 809) | def __init__(self, /, *, origin: PySide6.QtCore.QUrl | None = ..., per... method deny (line 810) | def deny(self, /) -> None: ... method grant (line 811) | def grant(self, /) -> None: ... method isPersistent (line 813) | def isPersistent(permissionType: QWebEnginePermission.PermissionType, ... method isValid (line 814) | def isValid(self, /) -> bool: ... method origin (line 815) | def origin(self, /) -> PySide6.QtCore.QUrl: ... method permissionType (line 816) | def permissionType(self, /) -> QWebEnginePermission.PermissionType: ... method reset (line 817) | def reset(self, /) -> None: ... method state (line 818) | def state(self, /) -> QWebEnginePermission.State: ... method swap (line 819) | def swap(self, other: QWebEnginePermission, /) -> None: ... method __copy__ (line 820) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 821) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 822) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 823) | def __gt__(self, other: object) -> bool: ... method __le__ (line 824) | def __le__(self, other: object) -> bool: ... method __lt__ (line 825) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 826) | def __ne__(self, other: object) -> bool: ... class QWebEngineProfile (line 828) | class QWebEngineProfile(PySide6.QtCore.QObject): class HttpCacheType (line 829) | class HttpCacheType(enum.Enum): class PersistentCookiesPolicy (line 834) | class PersistentCookiesPolicy(enum.Enum): class PersistentPermissionsPolicy (line 839) | class PersistentPermissionsPolicy(enum.Enum): method __init__ (line 847) | def __init__(self, name: str, /, parent: PySide6.QtCore.QObject | None... method __init__ (line 849) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., cle... method additionalTrustedCertificates (line 850) | def additionalTrustedCertificates(self, /) -> List[PySide6.QtNetwork.Q... method cachePath (line 851) | def cachePath(self, /) -> str: ... method clearAllVisitedLinks (line 852) | def clearAllVisitedLinks(self, /) -> None: ... method clearHttpCache (line 853) | def clearHttpCache(self, /) -> None: ... method clearVisitedLinks (line 854) | def clearVisitedLinks(self, urls: typing.Iterable[PySide6.QtCore.QUrl]... method clientCertificateStore (line 855) | def clientCertificateStore(self, /) -> QWebEngineClientCertificateStor... method clientHints (line 856) | def clientHints(self, /) -> QWebEngineClientHints: ... method cookieStore (line 857) | def cookieStore(self, /) -> QWebEngineCookieStore: ... method defaultProfile (line 859) | def defaultProfile() -> QWebEngineProfile: ... method downloadPath (line 860) | def downloadPath(self, /) -> str: ... method extensionManager (line 861) | def extensionManager(self, /) -> QWebEngineExtensionManager: ... method httpAcceptLanguage (line 862) | def httpAcceptLanguage(self, /) -> str: ... method httpCacheMaximumSize (line 863) | def httpCacheMaximumSize(self, /) -> int: ... method httpCacheType (line 864) | def httpCacheType(self, /) -> QWebEngineProfile.HttpCacheType: ... method httpUserAgent (line 865) | def httpUserAgent(self, /) -> str: ... method installUrlSchemeHandler (line 866) | def installUrlSchemeHandler(self, scheme: PySide6.QtCore.QByteArray | ... method isOffTheRecord (line 867) | def isOffTheRecord(self, /) -> bool: ... method isPushServiceEnabled (line 868) | def isPushServiceEnabled(self, /) -> bool: ... method isSpellCheckEnabled (line 869) | def isSpellCheckEnabled(self, /) -> bool: ... method listAllPermissions (line 870) | def listAllPermissions(self, /) -> List[QWebEnginePermission]: ... method listPermissionsForOrigin (line 871) | def listPermissionsForOrigin(self, securityOrigin: PySide6.QtCore.QUrl... method listPermissionsForPermissionType (line 872) | def listPermissionsForPermissionType(self, permissionType: QWebEngineP... method persistentCookiesPolicy (line 873) | def persistentCookiesPolicy(self, /) -> QWebEngineProfile.PersistentCo... method persistentPermissionsPolicy (line 874) | def persistentPermissionsPolicy(self, /) -> QWebEngineProfile.Persiste... method persistentStoragePath (line 875) | def persistentStoragePath(self, /) -> str: ... method queryPermission (line 876) | def queryPermission(self, securityOrigin: PySide6.QtCore.QUrl | str, p... method removeAllUrlSchemeHandlers (line 877) | def removeAllUrlSchemeHandlers(self, /) -> None: ... method removeUrlScheme (line 878) | def removeUrlScheme(self, scheme: PySide6.QtCore.QByteArray | bytes | ... method removeUrlSchemeHandler (line 879) | def removeUrlSchemeHandler(self, arg__1: QWebEngineUrlSchemeHandler, /... method scripts (line 880) | def scripts(self, /) -> QWebEngineScriptCollection: ... method setCachePath (line 881) | def setCachePath(self, path: str, /) -> None: ... method setDownloadPath (line 882) | def setDownloadPath(self, path: str, /) -> None: ... method setHttpAcceptLanguage (line 883) | def setHttpAcceptLanguage(self, httpAcceptLanguage: str, /) -> None: ... method setHttpCacheMaximumSize (line 884) | def setHttpCacheMaximumSize(self, maxSize: int, /) -> None: ... method setHttpCacheType (line 885) | def setHttpCacheType(self, arg__1: QWebEngineProfile.HttpCacheType, /)... method setHttpUserAgent (line 886) | def setHttpUserAgent(self, userAgent: str, /) -> None: ... method setNotificationPresenter (line 887) | def setNotificationPresenter(self, notificationPresenter: collections.... method setPersistentCookiesPolicy (line 888) | def setPersistentCookiesPolicy(self, arg__1: QWebEngineProfile.Persist... method setPersistentPermissionsPolicy (line 889) | def setPersistentPermissionsPolicy(self, arg__1: QWebEngineProfile.Per... method setPersistentStoragePath (line 890) | def setPersistentStoragePath(self, path: str, /) -> None: ... method setPushServiceEnabled (line 891) | def setPushServiceEnabled(self, enabled: bool, /) -> None: ... method setSpellCheckEnabled (line 892) | def setSpellCheckEnabled(self, enabled: bool, /) -> None: ... method setSpellCheckLanguages (line 893) | def setSpellCheckLanguages(self, languages: typing.Iterable[str], /) -... method setUrlRequestInterceptor (line 894) | def setUrlRequestInterceptor(self, interceptor: QWebEngineUrlRequestIn... method settings (line 895) | def settings(self, /) -> QWebEngineSettings: ... method spellCheckLanguages (line 896) | def spellCheckLanguages(self, /) -> List[str]: ... method storageName (line 897) | def storageName(self, /) -> str: ... method urlSchemeHandler (line 898) | def urlSchemeHandler(self, arg__1: PySide6.QtCore.QByteArray | bytes |... method visitedLinksContainsUrl (line 899) | def visitedLinksContainsUrl(self, url: PySide6.QtCore.QUrl | str, /) -... class QWebEngineProfileBuilder (line 901) | class QWebEngineProfileBuilder(shiboken6.Object): method __init__ (line 902) | def __init__(self, /) -> None: ... method createOffTheRecordProfile (line 904) | def createOffTheRecordProfile(parent: PySide6.QtCore.QObject | None = ... method createProfile (line 905) | def createProfile(self, storageName: str, /, parent: PySide6.QtCore.QO... method setAdditionalTrustedCertificates (line 906) | def setAdditionalTrustedCertificates(self, additionalTrustedCertificat... method setCachePath (line 907) | def setCachePath(self, path: str, /) -> QWebEngineProfileBuilder: ... method setHttpCacheMaximumSize (line 908) | def setHttpCacheMaximumSize(self, maxSizeInBytes: int, /) -> QWebEngin... method setHttpCacheType (line 909) | def setHttpCacheType(self, httpCacheType: QWebEngineProfile.HttpCacheT... method setPersistentCookiesPolicy (line 910) | def setPersistentCookiesPolicy(self, persistentCookiesPolicy: QWebEngi... method setPersistentPermissionsPolicy (line 911) | def setPersistentPermissionsPolicy(self, persistentPermissionPolicy: Q... method setPersistentStoragePath (line 912) | def setPersistentStoragePath(self, path: str, /) -> QWebEngineProfileB... class QWebEngineQuotaRequest (line 914) | class QWebEngineQuotaRequest(shiboken6.Object): method __init__ (line 915) | def __init__(self, /, *, origin: PySide6.QtCore.QUrl | None = ..., req... method accept (line 916) | def accept(self, /) -> None: ... method origin (line 917) | def origin(self, /) -> PySide6.QtCore.QUrl: ... method reject (line 918) | def reject(self, /) -> None: ... method requestedSize (line 919) | def requestedSize(self, /) -> int: ... method __eq__ (line 920) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 921) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 922) | def __gt__(self, other: object) -> bool: ... method __le__ (line 923) | def __le__(self, other: object) -> bool: ... method __lt__ (line 924) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 925) | def __ne__(self, other: object) -> bool: ... class QWebEngineRegisterProtocolHandlerRequest (line 927) | class QWebEngineRegisterProtocolHandlerRequest(shiboken6.Object): method __init__ (line 929) | def __init__(self, QWebEngineRegisterProtocolHandlerRequest: QWebEngin... method __init__ (line 931) | def __init__(self, /, *, origin: PySide6.QtCore.QUrl | None = ..., sch... method accept (line 932) | def accept(self, /) -> None: ... method origin (line 933) | def origin(self, /) -> PySide6.QtCore.QUrl: ... method reject (line 934) | def reject(self, /) -> None: ... method scheme (line 935) | def scheme(self, /) -> str: ... method __copy__ (line 936) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 937) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 938) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 939) | def __gt__(self, other: object) -> bool: ... method __le__ (line 940) | def __le__(self, other: object) -> bool: ... method __lt__ (line 941) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 942) | def __ne__(self, other: object) -> bool: ... class QWebEngineScript (line 944) | class QWebEngineScript(shiboken6.Object): class InjectionPoint (line 945) | class InjectionPoint(enum.Enum): class ScriptWorldId (line 950) | class ScriptWorldId(enum.IntEnum): method __init__ (line 955) | def __init__(self, other: QWebEngineScript, /, *, name: str | None = .... method __init__ (line 957) | def __init__(self, /, *, name: str | None = ..., sourceUrl: PySide6.Qt... method injectionPoint (line 958) | def injectionPoint(self, /) -> QWebEngineScript.InjectionPoint: ... method name (line 959) | def name(self, /) -> str: ... method runsOnSubFrames (line 960) | def runsOnSubFrames(self, /) -> bool: ... method setInjectionPoint (line 961) | def setInjectionPoint(self, arg__1: QWebEngineScript.InjectionPoint, /... method setName (line 962) | def setName(self, arg__1: str, /) -> None: ... method setRunsOnSubFrames (line 963) | def setRunsOnSubFrames(self, on: bool, /) -> None: ... method setSourceCode (line 964) | def setSourceCode(self, arg__1: str, /) -> None: ... method setSourceUrl (line 965) | def setSourceUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setWorldId (line 966) | def setWorldId(self, arg__1: int, /) -> None: ... method sourceCode (line 967) | def sourceCode(self, /) -> str: ... method sourceUrl (line 968) | def sourceUrl(self, /) -> PySide6.QtCore.QUrl: ... method swap (line 969) | def swap(self, other: QWebEngineScript, /) -> None: ... method worldId (line 970) | def worldId(self, /) -> int: ... method __copy__ (line 971) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 972) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 973) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 974) | def __gt__(self, other: object) -> bool: ... method __le__ (line 975) | def __le__(self, other: object) -> bool: ... method __lt__ (line 976) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 977) | def __ne__(self, other: object) -> bool: ... class QWebEngineScriptCollection (line 979) | class QWebEngineScriptCollection(shiboken6.Object): method __init__ (line 980) | def __init__(self, *args, **kwargs) -> None: ... method clear (line 981) | def clear(self, /) -> None: ... method contains (line 982) | def contains(self, value: QWebEngineScript, /) -> bool: ... method count (line 983) | def count(self, /) -> int: ... method find (line 984) | def find(self, name: str, /) -> List[QWebEngineScript]: ... method insert (line 986) | def insert(self, list: typing.Iterable[QWebEngineScript], /) -> None: ... method insert (line 988) | def insert(self, arg__1: QWebEngineScript, /) -> None: ... method isEmpty (line 989) | def isEmpty(self, /) -> bool: ... method remove (line 990) | def remove(self, arg__1: QWebEngineScript, /) -> bool: ... method toList (line 991) | def toList(self, /) -> List[QWebEngineScript]: ... class QWebEngineSettings (line 993) | class QWebEngineSettings(shiboken6.Object): class FontFamily (line 994) | class FontFamily(enum.Enum): class FontSize (line 1003) | class FontSize(enum.Enum): class ImageAnimationPolicy (line 1009) | class ImageAnimationPolicy(enum.Enum): class UnknownUrlSchemePolicy (line 1015) | class UnknownUrlSchemePolicy(enum.Enum): class WebAttribute (line 1021) | class WebAttribute(enum.Enum): method __init__ (line 1060) | def __init__(self, *args, **kwargs) -> None: ... method defaultTextEncoding (line 1061) | def defaultTextEncoding(self, /) -> str: ... method fontFamily (line 1062) | def fontFamily(self, which: QWebEngineSettings.FontFamily, /) -> str: ... method fontSize (line 1063) | def fontSize(self, type: QWebEngineSettings.FontSize, /) -> int: ... method imageAnimationPolicy (line 1064) | def imageAnimationPolicy(self, /) -> QWebEngineSettings.ImageAnimation... method resetAttribute (line 1065) | def resetAttribute(self, attr: QWebEngineSettings.WebAttribute, /) -> ... method resetFontFamily (line 1066) | def resetFontFamily(self, which: QWebEngineSettings.FontFamily, /) -> ... method resetFontSize (line 1067) | def resetFontSize(self, type: QWebEngineSettings.FontSize, /) -> None:... method resetImageAnimationPolicy (line 1068) | def resetImageAnimationPolicy(self, /) -> None: ... method resetUnknownUrlSchemePolicy (line 1069) | def resetUnknownUrlSchemePolicy(self, /) -> None: ... method setAttribute (line 1070) | def setAttribute(self, attr: QWebEngineSettings.WebAttribute, on: bool... method setDefaultTextEncoding (line 1071) | def setDefaultTextEncoding(self, encoding: str, /) -> None: ... method setFontFamily (line 1072) | def setFontFamily(self, which: QWebEngineSettings.FontFamily, family: ... method setFontSize (line 1073) | def setFontSize(self, type: QWebEngineSettings.FontSize, size: int, /)... method setImageAnimationPolicy (line 1074) | def setImageAnimationPolicy(self, policy: QWebEngineSettings.ImageAnim... method setUnknownUrlSchemePolicy (line 1075) | def setUnknownUrlSchemePolicy(self, policy: QWebEngineSettings.Unknown... method testAttribute (line 1076) | def testAttribute(self, attr: QWebEngineSettings.WebAttribute, /) -> b... method unknownUrlSchemePolicy (line 1077) | def unknownUrlSchemePolicy(self, /) -> QWebEngineSettings.UnknownUrlSc... class QWebEngineUrlRequestInfo (line 1079) | class QWebEngineUrlRequestInfo(shiboken6.Object): class NavigationType (line 1080) | class NavigationType(enum.Enum): class ResourceType (line 1089) | class ResourceType(enum.Enum): method __init__ (line 1114) | def __init__(self, *args, **kwargs) -> None: ... method block (line 1115) | def block(self, shouldBlock: bool, /) -> None: ... method changed (line 1116) | def changed(self, /) -> bool: ... method firstPartyUrl (line 1117) | def firstPartyUrl(self, /) -> PySide6.QtCore.QUrl: ... method httpHeaders (line 1118) | def httpHeaders(self, /) -> Dict[PySide6.QtCore.QByteArray, PySide6.Qt... method initiator (line 1119) | def initiator(self, /) -> PySide6.QtCore.QUrl: ... method isDownload (line 1120) | def isDownload(self, /) -> bool: ... method navigationType (line 1121) | def navigationType(self, /) -> QWebEngineUrlRequestInfo.NavigationType... method redirect (line 1122) | def redirect(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method requestBody (line 1123) | def requestBody(self, /) -> PySide6.QtCore.QIODevice: ... method requestMethod (line 1124) | def requestMethod(self, /) -> PySide6.QtCore.QByteArray: ... method requestUrl (line 1125) | def requestUrl(self, /) -> PySide6.QtCore.QUrl: ... method resourceType (line 1126) | def resourceType(self, /) -> QWebEngineUrlRequestInfo.ResourceType: ... method setHttpHeader (line 1127) | def setHttpHeader(self, name: PySide6.QtCore.QByteArray | bytes | byte... class QWebEngineUrlRequestInterceptor (line 1129) | class QWebEngineUrlRequestInterceptor(PySide6.QtCore.QObject): method __init__ (line 1131) | def __init__(self, /, p: PySide6.QtCore.QObject | None = ..., destroye... method interceptRequest (line 1132) | def interceptRequest(self, info: QWebEngineUrlRequestInfo, /) -> None:... class QWebEngineUrlRequestJob (line 1134) | class QWebEngineUrlRequestJob(PySide6.QtCore.QObject): class Error (line 1135) | class Error(enum.Enum): method __init__ (line 1143) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method fail (line 1144) | def fail(self, error: QWebEngineUrlRequestJob.Error, /) -> None: ... method initiator (line 1145) | def initiator(self, /) -> PySide6.QtCore.QUrl: ... method redirect (line 1146) | def redirect(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method reply (line 1147) | def reply(self, contentType: PySide6.QtCore.QByteArray | bytes | bytea... method requestBody (line 1148) | def requestBody(self, /) -> PySide6.QtCore.QIODevice: ... method requestHeaders (line 1149) | def requestHeaders(self, /) -> Dict[PySide6.QtCore.QByteArray, PySide6... method requestMethod (line 1150) | def requestMethod(self, /) -> PySide6.QtCore.QByteArray: ... method requestUrl (line 1151) | def requestUrl(self, /) -> PySide6.QtCore.QUrl: ... method setAdditionalResponseHeaders (line 1152) | def setAdditionalResponseHeaders(self, additionalResponseHeaders: Dict... class QWebEngineUrlScheme (line 1154) | class QWebEngineUrlScheme(shiboken6.Object): class Flag (line 1155) | class Flag(enum.Flag): class SpecialPort (line 1166) | class SpecialPort(enum.Enum): class Syntax (line 1169) | class Syntax(enum.Enum): method __init__ (line 1175) | def __init__(self, that: QWebEngineUrlScheme, /) -> None: ... method __init__ (line 1177) | def __init__(self, name: PySide6.QtCore.QByteArray | bytes | bytearray... method __init__ (line 1179) | def __init__(self, /) -> None: ... method defaultPort (line 1180) | def defaultPort(self, /) -> int: ... method flags (line 1181) | def flags(self, /) -> QWebEngineUrlScheme.Flag: ... method name (line 1182) | def name(self, /) -> PySide6.QtCore.QByteArray: ... method registerScheme (line 1184) | def registerScheme(scheme: QWebEngineUrlScheme, /) -> None: ... method schemeByName (line 1186) | def schemeByName(name: PySide6.QtCore.QByteArray | bytes | bytearray |... method setDefaultPort (line 1187) | def setDefaultPort(self, newValue: int, /) -> None: ... method setFlags (line 1188) | def setFlags(self, newValue: QWebEngineUrlScheme.Flag, /) -> None: ... method setName (line 1189) | def setName(self, newValue: PySide6.QtCore.QByteArray | bytes | bytear... method setSyntax (line 1190) | def setSyntax(self, newValue: QWebEngineUrlScheme.Syntax, /) -> None: ... method syntax (line 1191) | def syntax(self, /) -> QWebEngineUrlScheme.Syntax: ... method __copy__ (line 1192) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 1193) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 1194) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1195) | def __gt__(self, other: object) -> bool: ... method __le__ (line 1196) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1197) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 1198) | def __ne__(self, other: object) -> bool: ... class QWebEngineUrlSchemeHandler (line 1200) | class QWebEngineUrlSchemeHandler(PySide6.QtCore.QObject): method __init__ (line 1202) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method requestStarted (line 1203) | def requestStarted(self, arg__1: QWebEngineUrlRequestJob, /) -> None: ... class QWebEngineWebAuthPinRequest (line 1205) | class QWebEngineWebAuthPinRequest(shiboken6.Object): method __init__ (line 1211) | def __init__(self, QWebEngineWebAuthPinRequest: QWebEngineWebAuthPinRe... method __init__ (line 1213) | def __init__(self, /) -> None: ... method __copy__ (line 1214) | def __copy__(self, /) -> typing_extensions.Self: ... class QWebEngineWebAuthUxRequest (line 1216) | class QWebEngineWebAuthUxRequest(PySide6.QtCore.QObject): class PinEntryError (line 1217) | class PinEntryError(enum.Enum): class PinEntryReason (line 1225) | class PinEntryReason(enum.Enum): class RequestFailureReason (line 1230) | class RequestFailureReason(enum.Enum): class WebAuthUxState (line 1245) | class WebAuthUxState(enum.Enum): method __init__ (line 1255) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method cancel (line 1256) | def cancel(self, /) -> None: ... method pinRequest (line 1257) | def pinRequest(self, /) -> QWebEngineWebAuthPinRequest: ... method relyingPartyId (line 1258) | def relyingPartyId(self, /) -> str: ... method requestFailureReason (line 1259) | def requestFailureReason(self, /) -> QWebEngineWebAuthUxRequest.Reques... method retry (line 1260) | def retry(self, /) -> None: ... method setPin (line 1261) | def setPin(self, pin: str, /) -> None: ... method setSelectedAccount (line 1262) | def setSelectedAccount(self, selectedAccount: str, /) -> None: ... method state (line 1263) | def state(self, /) -> QWebEngineWebAuthUxRequest.WebAuthUxState: ... method userNames (line 1264) | def userNames(self, /) -> List[str]: ... function qWebEngineChromiumSecurityPatchVersion (line 1266) | def qWebEngineChromiumSecurityPatchVersion() -> bytes | bytearray | memo... function qWebEngineChromiumVersion (line 1267) | def qWebEngineChromiumVersion() -> bytes | bytearray | memoryview: ... function qWebEngineVersion (line 1268) | def qWebEngineVersion() -> bytes | bytearray | memoryview: ... FILE: pyside6/stubs/PySide6-stubs/QtWebEngineQuick.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QQuickWebEngineDownloadRequest (line 34) | class QQuickWebEngineDownloadRequest(PySide6.QtWebEngineCore.QWebEngineD... method __init__ (line 36) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method qt_qmlMarker_uncreatable (line 37) | def qt_qmlMarker_uncreatable(self, /) -> None: ... class QQuickWebEngineProfile (line 39) | class QQuickWebEngineProfile(PySide6.QtCore.QObject): class HttpCacheType (line 40) | class HttpCacheType(enum.Enum): class PersistentCookiesPolicy (line 45) | class PersistentCookiesPolicy(enum.Enum): class PersistentPermissionsPolicy (line 50) | class PersistentPermissionsPolicy(enum.Enum): method __init__ (line 74) | def __init__(self, storageName: str, /, parent: PySide6.QtCore.QObject... method __init__ (line 76) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method cachePath (line 77) | def cachePath(self, /) -> str: ... method clearHttpCache (line 78) | def clearHttpCache(self, /) -> None: ... method clientCertificateStore (line 79) | def clientCertificateStore(self, /) -> PySide6.QtWebEngineCore.QWebEng... method clientHints (line 80) | def clientHints(self, /) -> PySide6.QtWebEngineCore.QWebEngineClientHi... method cookieStore (line 81) | def cookieStore(self, /) -> PySide6.QtWebEngineCore.QWebEngineCookieSt... method defaultProfile (line 83) | def defaultProfile() -> QQuickWebEngineProfile: ... method downloadPath (line 84) | def downloadPath(self, /) -> str: ... method extensionManager (line 85) | def extensionManager(self, /) -> PySide6.QtWebEngineCore.QWebEngineExt... method httpAcceptLanguage (line 86) | def httpAcceptLanguage(self, /) -> str: ... method httpCacheMaximumSize (line 87) | def httpCacheMaximumSize(self, /) -> int: ... method httpCacheType (line 88) | def httpCacheType(self, /) -> QQuickWebEngineProfile.HttpCacheType: ... method httpUserAgent (line 89) | def httpUserAgent(self, /) -> str: ... method installUrlSchemeHandler (line 90) | def installUrlSchemeHandler(self, scheme: PySide6.QtCore.QByteArray | ... method isOffTheRecord (line 91) | def isOffTheRecord(self, /) -> bool: ... method isPushServiceEnabled (line 92) | def isPushServiceEnabled(self, /) -> bool: ... method isSpellCheckEnabled (line 93) | def isSpellCheckEnabled(self, /) -> bool: ... method listAllPermissions (line 94) | def listAllPermissions(self, /) -> List[PySide6.QtWebEngineCore.QWebEn... method listPermissionsForOrigin (line 95) | def listPermissionsForOrigin(self, securityOrigin: PySide6.QtCore.QUrl... method listPermissionsForPermissionType (line 96) | def listPermissionsForPermissionType(self, permissionType: PySide6.QtW... method persistentCookiesPolicy (line 97) | def persistentCookiesPolicy(self, /) -> QQuickWebEngineProfile.Persist... method persistentPermissionsPolicy (line 98) | def persistentPermissionsPolicy(self, /) -> QQuickWebEngineProfile.Per... method persistentStoragePath (line 99) | def persistentStoragePath(self, /) -> str: ... method queryPermission (line 100) | def queryPermission(self, securityOrigin: PySide6.QtCore.QUrl | str, p... method removeAllUrlSchemeHandlers (line 101) | def removeAllUrlSchemeHandlers(self, /) -> None: ... method removeUrlScheme (line 102) | def removeUrlScheme(self, scheme: PySide6.QtCore.QByteArray | bytes | ... method removeUrlSchemeHandler (line 103) | def removeUrlSchemeHandler(self, arg__1: PySide6.QtWebEngineCore.QWebE... method setCachePath (line 104) | def setCachePath(self, path: str, /) -> None: ... method setDownloadPath (line 105) | def setDownloadPath(self, path: str, /) -> None: ... method setHttpAcceptLanguage (line 106) | def setHttpAcceptLanguage(self, httpAcceptLanguage: str, /) -> None: ... method setHttpCacheMaximumSize (line 107) | def setHttpCacheMaximumSize(self, maxSize: int, /) -> None: ... method setHttpCacheType (line 108) | def setHttpCacheType(self, arg__1: QQuickWebEngineProfile.HttpCacheTyp... method setHttpUserAgent (line 109) | def setHttpUserAgent(self, userAgent: str, /) -> None: ... method setOffTheRecord (line 110) | def setOffTheRecord(self, offTheRecord: bool, /) -> None: ... method setPersistentCookiesPolicy (line 111) | def setPersistentCookiesPolicy(self, arg__1: QQuickWebEngineProfile.Pe... method setPersistentPermissionsPolicy (line 112) | def setPersistentPermissionsPolicy(self, arg__1: QQuickWebEngineProfil... method setPersistentStoragePath (line 113) | def setPersistentStoragePath(self, path: str, /) -> None: ... method setPushServiceEnabled (line 114) | def setPushServiceEnabled(self, enable: bool, /) -> None: ... method setSpellCheckEnabled (line 115) | def setSpellCheckEnabled(self, enabled: bool, /) -> None: ... method setSpellCheckLanguages (line 116) | def setSpellCheckLanguages(self, languages: typing.Iterable[str], /) -... method setStorageName (line 117) | def setStorageName(self, name: str, /) -> None: ... method setUrlRequestInterceptor (line 118) | def setUrlRequestInterceptor(self, interceptor: PySide6.QtWebEngineCor... method spellCheckLanguages (line 119) | def spellCheckLanguages(self, /) -> List[str]: ... method storageName (line 120) | def storageName(self, /) -> str: ... method urlSchemeHandler (line 121) | def urlSchemeHandler(self, arg__1: PySide6.QtCore.QByteArray | bytes |... class QtWebEngineQuick (line 123) | class QtWebEngineQuick(shiboken6.Object): method __init__ (line 124) | def __init__(self, *args, **kwargs) -> None: ... method initialize (line 126) | def initialize() -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtWebEngineWidgets.pyi class QIntList (line 15) | class QIntList: method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: ... method append (line 18) | def append(self, *args, **kwargs): ... method capacity (line 19) | def capacity(self, *args, **kwargs): ... method clear (line 20) | def clear(self, *args, **kwargs): ... method constData (line 21) | def constData(self, *args, **kwargs): ... method data (line 22) | def data(self, *args, **kwargs): ... method pop_back (line 23) | def pop_back(self, *args, **kwargs): ... method pop_front (line 24) | def pop_front(self, *args, **kwargs): ... method prepend (line 25) | def prepend(self, *args, **kwargs): ... method push_back (line 26) | def push_back(self, *args, **kwargs): ... method push_front (line 27) | def push_front(self, *args, **kwargs): ... method removeFirst (line 28) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 29) | def removeLast(self, *args, **kwargs): ... method reserve (line 30) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 31) | def __delitem__(self, other) -> None: ... method __getitem__ (line 32) | def __getitem__(self, index): ... method __len__ (line 33) | def __len__(self) -> int: ... method __setitem__ (line 34) | def __setitem__(self, index, object) -> None: ... class QWebEngineView (line 36) | class QWebEngineView(PySide6.QtWidgets.QWidget): method __init__ (line 52) | def __init__(self, profile: PySide6.QtWebEngineCore.QWebEngineProfile,... method __init__ (line 54) | def __init__(self, page: PySide6.QtWebEngineCore.QWebEnginePage, /, pa... method __init__ (line 56) | def __init__(self, /, parent: PySide6.QtWidgets.QWidget | None = ..., ... method back (line 57) | def back(self, /) -> None: ... method closeEvent (line 58) | def closeEvent(self, arg__1: PySide6.QtGui.QCloseEvent, /) -> None: ... method contextMenuEvent (line 59) | def contextMenuEvent(self, arg__1: PySide6.QtGui.QContextMenuEvent, /)... method createStandardContextMenu (line 60) | def createStandardContextMenu(self, /) -> PySide6.QtWidgets.QMenu: ... method createWindow (line 61) | def createWindow(self, type: PySide6.QtWebEngineCore.QWebEnginePage.We... method dragEnterEvent (line 62) | def dragEnterEvent(self, e: PySide6.QtGui.QDragEnterEvent, /) -> None:... method dragLeaveEvent (line 63) | def dragLeaveEvent(self, e: PySide6.QtGui.QDragLeaveEvent, /) -> None:... method dragMoveEvent (line 64) | def dragMoveEvent(self, e: PySide6.QtGui.QDragMoveEvent, /) -> None: ... method dropEvent (line 65) | def dropEvent(self, e: PySide6.QtGui.QDropEvent, /) -> None: ... method event (line 66) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method findText (line 68) | def findText(self, subString: str, options: PySide6.QtWebEngineCore.QW... method findText (line 70) | def findText(self, subString: str, /, options: PySide6.QtWebEngineCore... method forPage (line 72) | def forPage(page: PySide6.QtWebEngineCore.QWebEnginePage, /) -> QWebEn... method forward (line 73) | def forward(self, /) -> None: ... method hasSelection (line 74) | def hasSelection(self, /) -> bool: ... method hideEvent (line 75) | def hideEvent(self, arg__1: PySide6.QtGui.QHideEvent, /) -> None: ... method history (line 76) | def history(self, /) -> PySide6.QtWebEngineCore.QWebEngineHistory: ... method icon (line 77) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method iconUrl (line 78) | def iconUrl(self, /) -> PySide6.QtCore.QUrl: ... method lastContextMenuRequest (line 79) | def lastContextMenuRequest(self, /) -> PySide6.QtWebEngineCore.QWebEng... method load (line 81) | def load(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method load (line 83) | def load(self, request: PySide6.QtWebEngineCore.QWebEngineHttpRequest,... method page (line 84) | def page(self, /) -> PySide6.QtWebEngineCore.QWebEnginePage: ... method pageAction (line 85) | def pageAction(self, action: PySide6.QtWebEngineCore.QWebEnginePage.We... method print (line 86) | def print(self, printer: PySide6.QtPrintSupport.QPrinter, /) -> None: ... method printToPdf (line 87) | def printToPdf(self, filePath: str, /, layout: PySide6.QtGui.QPageLayo... method reload (line 88) | def reload(self, /) -> None: ... method selectedText (line 89) | def selectedText(self, /) -> str: ... method setContent (line 90) | def setContent(self, data: PySide6.QtCore.QByteArray | bytes | bytearr... method setHtml (line 91) | def setHtml(self, html: str, /, baseUrl: PySide6.QtCore.QUrl | str = .... method setPage (line 92) | def setPage(self, page: PySide6.QtWebEngineCore.QWebEnginePage, /) -> ... method setUrl (line 93) | def setUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method setZoomFactor (line 94) | def setZoomFactor(self, factor: float, /) -> None: ... method settings (line 95) | def settings(self, /) -> PySide6.QtWebEngineCore.QWebEngineSettings: ... method showEvent (line 96) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 97) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method stop (line 98) | def stop(self, /) -> None: ... method title (line 99) | def title(self, /) -> str: ... method triggerPageAction (line 100) | def triggerPageAction(self, action: PySide6.QtWebEngineCore.QWebEngine... method url (line 101) | def url(self, /) -> PySide6.QtCore.QUrl: ... method zoomFactor (line 102) | def zoomFactor(self, /) -> float: ... FILE: pyside6/stubs/PySide6-stubs/QtWebSockets.pyi class QIntList (line 13) | class QIntList: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method append (line 16) | def append(self, *args, **kwargs): ... method capacity (line 17) | def capacity(self, *args, **kwargs): ... method clear (line 18) | def clear(self, *args, **kwargs): ... method constData (line 19) | def constData(self, *args, **kwargs): ... method data (line 20) | def data(self, *args, **kwargs): ... method pop_back (line 21) | def pop_back(self, *args, **kwargs): ... method pop_front (line 22) | def pop_front(self, *args, **kwargs): ... method prepend (line 23) | def prepend(self, *args, **kwargs): ... method push_back (line 24) | def push_back(self, *args, **kwargs): ... method push_front (line 25) | def push_front(self, *args, **kwargs): ... method removeFirst (line 26) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 27) | def removeLast(self, *args, **kwargs): ... method reserve (line 28) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 29) | def __delitem__(self, other) -> None: ... method __getitem__ (line 30) | def __getitem__(self, index): ... method __len__ (line 31) | def __len__(self) -> int: ... method __setitem__ (line 32) | def __setitem__(self, index, object) -> None: ... class QMaskGenerator (line 34) | class QMaskGenerator(PySide6.QtCore.QObject): method __init__ (line 36) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method nextMask (line 37) | def nextMask(self, /) -> int: ... method seed (line 38) | def seed(self, /) -> bool: ... class QWebSocket (line 40) | class QWebSocket(PySide6.QtCore.QObject): method __init__ (line 63) | def __init__(self, /, origin: str = ..., version: QWebSocketProtocol.V... method abort (line 64) | def abort(self, /) -> None: ... method bytesToWrite (line 65) | def bytesToWrite(self, /) -> int: ... method close (line 66) | def close(self, /, closeCode: QWebSocketProtocol.CloseCode = ..., reas... method closeCode (line 67) | def closeCode(self, /) -> QWebSocketProtocol.CloseCode: ... method closeReason (line 68) | def closeReason(self, /) -> str: ... method continueInterruptedHandshake (line 69) | def continueInterruptedHandshake(self, /) -> None: ... method errorString (line 70) | def errorString(self, /) -> str: ... method flush (line 71) | def flush(self, /) -> bool: ... method handshakeOptions (line 72) | def handshakeOptions(self, /) -> QWebSocketHandshakeOptions: ... method ignoreSslErrors (line 74) | def ignoreSslErrors(self, errors: typing.Iterable[PySide6.QtNetwork.QS... method ignoreSslErrors (line 76) | def ignoreSslErrors(self, /) -> None: ... method isValid (line 77) | def isValid(self, /) -> bool: ... method localAddress (line 78) | def localAddress(self, /) -> PySide6.QtNetwork.QHostAddress: ... method localPort (line 79) | def localPort(self, /) -> int: ... method maskGenerator (line 80) | def maskGenerator(self, /) -> QMaskGenerator: ... method maxAllowedIncomingFrameSize (line 81) | def maxAllowedIncomingFrameSize(self, /) -> int: ... method maxAllowedIncomingMessageSize (line 82) | def maxAllowedIncomingMessageSize(self, /) -> int: ... method maxIncomingFrameSize (line 84) | def maxIncomingFrameSize() -> int: ... method maxIncomingMessageSize (line 86) | def maxIncomingMessageSize() -> int: ... method maxOutgoingFrameSize (line 88) | def maxOutgoingFrameSize() -> int: ... method open (line 90) | def open(self, url: PySide6.QtCore.QUrl | str, options: QWebSocketHand... method open (line 92) | def open(self, request: PySide6.QtNetwork.QNetworkRequest, options: QW... method open (line 94) | def open(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method open (line 96) | def open(self, request: PySide6.QtNetwork.QNetworkRequest, /) -> None:... method origin (line 97) | def origin(self, /) -> str: ... method outgoingFrameSize (line 98) | def outgoingFrameSize(self, /) -> int: ... method pauseMode (line 99) | def pauseMode(self, /) -> PySide6.QtNetwork.QAbstractSocket.PauseMode:... method peerAddress (line 100) | def peerAddress(self, /) -> PySide6.QtNetwork.QHostAddress: ... method peerName (line 101) | def peerName(self, /) -> str: ... method peerPort (line 102) | def peerPort(self, /) -> int: ... method ping (line 103) | def ping(self, /, payload: PySide6.QtCore.QByteArray | bytes | bytearr... method proxy (line 104) | def proxy(self, /) -> PySide6.QtNetwork.QNetworkProxy: ... method readBufferSize (line 105) | def readBufferSize(self, /) -> int: ... method request (line 106) | def request(self, /) -> PySide6.QtNetwork.QNetworkRequest: ... method requestUrl (line 107) | def requestUrl(self, /) -> PySide6.QtCore.QUrl: ... method resourceName (line 108) | def resourceName(self, /) -> str: ... method resume (line 109) | def resume(self, /) -> None: ... method sendBinaryMessage (line 110) | def sendBinaryMessage(self, data: PySide6.QtCore.QByteArray | bytes | ... method sendTextMessage (line 111) | def sendTextMessage(self, message: str, /) -> int: ... method setMaskGenerator (line 112) | def setMaskGenerator(self, maskGenerator: QMaskGenerator, /) -> None: ... method setMaxAllowedIncomingFrameSize (line 113) | def setMaxAllowedIncomingFrameSize(self, maxAllowedIncomingFrameSize: ... method setMaxAllowedIncomingMessageSize (line 114) | def setMaxAllowedIncomingMessageSize(self, maxAllowedIncomingMessageSi... method setOutgoingFrameSize (line 115) | def setOutgoingFrameSize(self, outgoingFrameSize: int, /) -> None: ... method setPauseMode (line 116) | def setPauseMode(self, pauseMode: PySide6.QtNetwork.QAbstractSocket.Pa... method setProxy (line 117) | def setProxy(self, networkProxy: PySide6.QtNetwork.QNetworkProxy | PyS... method setReadBufferSize (line 118) | def setReadBufferSize(self, size: int, /) -> None: ... method setSslConfiguration (line 119) | def setSslConfiguration(self, sslConfiguration: PySide6.QtNetwork.QSsl... method sslConfiguration (line 120) | def sslConfiguration(self, /) -> PySide6.QtNetwork.QSslConfiguration: ... method state (line 121) | def state(self, /) -> PySide6.QtNetwork.QAbstractSocket.SocketState: ... method subprotocol (line 122) | def subprotocol(self, /) -> str: ... method version (line 123) | def version(self, /) -> QWebSocketProtocol.Version: ... class QWebSocketCorsAuthenticator (line 125) | class QWebSocketCorsAuthenticator(shiboken6.Object): method __init__ (line 127) | def __init__(self, other: QWebSocketCorsAuthenticator, /) -> None: ... method __init__ (line 129) | def __init__(self, origin: str, /) -> None: ... method allowed (line 130) | def allowed(self, /) -> bool: ... method origin (line 131) | def origin(self, /) -> str: ... method setAllowed (line 132) | def setAllowed(self, allowed: bool, /) -> None: ... method swap (line 133) | def swap(self, other: QWebSocketCorsAuthenticator, /) -> None: ... class QWebSocketHandshakeOptions (line 135) | class QWebSocketHandshakeOptions(shiboken6.Object): method __init__ (line 137) | def __init__(self, other: QWebSocketHandshakeOptions, /) -> None: ... method __init__ (line 139) | def __init__(self, /) -> None: ... method setSubprotocols (line 140) | def setSubprotocols(self, protocols: typing.Iterable[str], /) -> None:... method subprotocols (line 141) | def subprotocols(self, /) -> List[str]: ... method swap (line 142) | def swap(self, other: QWebSocketHandshakeOptions, /) -> None: ... method __copy__ (line 143) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 144) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 145) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 146) | def __gt__(self, other: object) -> bool: ... method __le__ (line 147) | def __le__(self, other: object) -> bool: ... method __lt__ (line 148) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 149) | def __ne__(self, other: object) -> bool: ... class QWebSocketProtocol (line 151) | class QWebSocketProtocol(shiboken6.Object): class CloseCode (line 152) | class CloseCode(enum.Enum): class Version (line 167) | class Version(enum.Enum): method __init__ (line 177) | def __init__(self, *args, **kwargs) -> None: ... class QWebSocketServer (line 179) | class QWebSocketServer(PySide6.QtCore.QObject): class SslMode (line 180) | class SslMode(enum.Enum): method __init__ (line 195) | def __init__(self, serverName: str, secureMode: QWebSocketServer.SslMo... method close (line 196) | def close(self, /) -> None: ... method error (line 197) | def error(self, /) -> QWebSocketProtocol.CloseCode: ... method errorString (line 198) | def errorString(self, /) -> str: ... method handleConnection (line 199) | def handleConnection(self, socket: PySide6.QtNetwork.QTcpSocket, /) ->... method handshakeTimeout (line 200) | def handshakeTimeout(self, /) -> int: ... method handshakeTimeoutMS (line 201) | def handshakeTimeoutMS(self, /) -> int: ... method hasPendingConnections (line 202) | def hasPendingConnections(self, /) -> bool: ... method isListening (line 203) | def isListening(self, /) -> bool: ... method listen (line 204) | def listen(self, /, address: PySide6.QtNetwork.QHostAddress | PySide6.... method maxPendingConnections (line 205) | def maxPendingConnections(self, /) -> int: ... method nativeDescriptor (line 206) | def nativeDescriptor(self, /) -> int: ... method nextPendingConnection (line 207) | def nextPendingConnection(self, /) -> QWebSocket: ... method pauseAccepting (line 208) | def pauseAccepting(self, /) -> None: ... method proxy (line 209) | def proxy(self, /) -> PySide6.QtNetwork.QNetworkProxy: ... method resumeAccepting (line 210) | def resumeAccepting(self, /) -> None: ... method secureMode (line 211) | def secureMode(self, /) -> QWebSocketServer.SslMode: ... method serverAddress (line 212) | def serverAddress(self, /) -> PySide6.QtNetwork.QHostAddress: ... method serverName (line 213) | def serverName(self, /) -> str: ... method serverPort (line 214) | def serverPort(self, /) -> int: ... method serverUrl (line 215) | def serverUrl(self, /) -> PySide6.QtCore.QUrl: ... method setHandshakeTimeout (line 216) | def setHandshakeTimeout(self, msec: int, /) -> None: ... method setMaxPendingConnections (line 217) | def setMaxPendingConnections(self, numConnections: int, /) -> None: ... method setNativeDescriptor (line 218) | def setNativeDescriptor(self, descriptor: int, /) -> bool: ... method setProxy (line 219) | def setProxy(self, networkProxy: PySide6.QtNetwork.QNetworkProxy | PyS... method setServerName (line 220) | def setServerName(self, serverName: str, /) -> None: ... method setSocketDescriptor (line 221) | def setSocketDescriptor(self, socketDescriptor: int, /) -> bool: ... method setSslConfiguration (line 222) | def setSslConfiguration(self, sslConfiguration: PySide6.QtNetwork.QSsl... method setSupportedSubprotocols (line 223) | def setSupportedSubprotocols(self, protocols: typing.Iterable[str], /)... method socketDescriptor (line 224) | def socketDescriptor(self, /) -> int: ... method sslConfiguration (line 225) | def sslConfiguration(self, /) -> PySide6.QtNetwork.QSslConfiguration: ... method supportedSubprotocols (line 226) | def supportedSubprotocols(self, /) -> List[str]: ... method supportedVersions (line 227) | def supportedVersions(self, /) -> List[QWebSocketProtocol.Version]: ... FILE: pyside6/stubs/PySide6-stubs/QtWebView.pyi class QIntList (line 10) | class QIntList: method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: ... method append (line 13) | def append(self, *args, **kwargs): ... method capacity (line 14) | def capacity(self, *args, **kwargs): ... method clear (line 15) | def clear(self, *args, **kwargs): ... method constData (line 16) | def constData(self, *args, **kwargs): ... method data (line 17) | def data(self, *args, **kwargs): ... method pop_back (line 18) | def pop_back(self, *args, **kwargs): ... method pop_front (line 19) | def pop_front(self, *args, **kwargs): ... method prepend (line 20) | def prepend(self, *args, **kwargs): ... method push_back (line 21) | def push_back(self, *args, **kwargs): ... method push_front (line 22) | def push_front(self, *args, **kwargs): ... method removeFirst (line 23) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 24) | def removeLast(self, *args, **kwargs): ... method reserve (line 25) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 26) | def __delitem__(self, other) -> None: ... method __getitem__ (line 27) | def __getitem__(self, index): ... method __len__ (line 28) | def __len__(self) -> int: ... method __setitem__ (line 29) | def __setitem__(self, index, object) -> None: ... class QtWebView (line 31) | class QtWebView(shiboken6.Object): method __init__ (line 32) | def __init__(self, *args, **kwargs) -> None: ... method initialize (line 34) | def initialize() -> None: ... FILE: pyside6/stubs/PySide6-stubs/QtWidgets.pyi class _add_QMenu_exec_overloads (line 15) | class _add_QMenu_exec_overloads: class StaticOverloads (line 22) | class StaticOverloads: class exec (line 23) | class exec: method __call__ (line 25) | def __call__(actions: typing.Iterable[PySide6.QtGui.QAction], pos:... class InstanceOverloads (line 27) | class InstanceOverloads: class exec (line 28) | class exec: method __call__ (line 30) | def __call__(self, /) -> PySide6.QtGui.QAction: ... method __call__ (line 32) | def __call__(self, pos: PySide6.QtCore.QPoint, /, at: PySide6.QtGu... method __call__ (line 34) | def __call__(self, actions: typing.Iterable[PySide6.QtGui.QAction]... method __init__ (line 36) | def __init__(self, cb: typing.Callable) -> None: ... method __get__ (line 39) | def __get__(self, object: None, owner: typing.Any) -> StaticOverloads.... method __get__ (line 42) | def __get__(self, object: QMenu, owner: typing.Any) -> InstanceOverloa... class QAbstractButton (line 44) | class QAbstractButton(QWidget): method __init__ (line 50) | def __init__(self, /, parent: QWidget | None = ..., *, text: str | Non... method animateClick (line 51) | def animateClick(self, /) -> None: ... method autoExclusive (line 52) | def autoExclusive(self, /) -> bool: ... method autoRepeat (line 53) | def autoRepeat(self, /) -> bool: ... method autoRepeatDelay (line 54) | def autoRepeatDelay(self, /) -> int: ... method autoRepeatInterval (line 55) | def autoRepeatInterval(self, /) -> int: ... method changeEvent (line 56) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method checkStateSet (line 57) | def checkStateSet(self, /) -> None: ... method click (line 58) | def click(self, /) -> None: ... method event (line 59) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 60) | def focusInEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 61) | def focusOutEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method group (line 62) | def group(self, /) -> QButtonGroup: ... method hitButton (line 63) | def hitButton(self, pos: PySide6.QtCore.QPoint, /) -> bool: ... method icon (line 64) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method iconSize (line 65) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method isCheckable (line 66) | def isCheckable(self, /) -> bool: ... method isChecked (line 67) | def isChecked(self, /) -> bool: ... method isDown (line 68) | def isDown(self, /) -> bool: ... method keyPressEvent (line 69) | def keyPressEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 70) | def keyReleaseEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method mouseMoveEvent (line 71) | def mouseMoveEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 72) | def mousePressEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 73) | def mouseReleaseEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method nextCheckState (line 74) | def nextCheckState(self, /) -> None: ... method paintEvent (line 75) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method setAutoExclusive (line 76) | def setAutoExclusive(self, arg__1: bool, /) -> None: ... method setAutoRepeat (line 77) | def setAutoRepeat(self, arg__1: bool, /) -> None: ... method setAutoRepeatDelay (line 78) | def setAutoRepeatDelay(self, arg__1: int, /) -> None: ... method setAutoRepeatInterval (line 79) | def setAutoRepeatInterval(self, arg__1: int, /) -> None: ... method setCheckable (line 80) | def setCheckable(self, arg__1: bool, /) -> None: ... method setChecked (line 81) | def setChecked(self, arg__1: bool, /) -> None: ... method setDown (line 82) | def setDown(self, arg__1: bool, /) -> None: ... method setIcon (line 83) | def setIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, /... method setIconSize (line 84) | def setIconSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setShortcut (line 86) | def setShortcut(self, key: PySide6.QtCore.Qt.Key, /) -> None: ... method setShortcut (line 88) | def setShortcut(self, key: PySide6.QtGui.QKeySequence | PySide6.QtCore... method setText (line 89) | def setText(self, text: str, /) -> None: ... method shortcut (line 90) | def shortcut(self, /) -> PySide6.QtGui.QKeySequence: ... method text (line 91) | def text(self, /) -> str: ... method timerEvent (line 92) | def timerEvent(self, e: PySide6.QtCore.QTimerEvent, /) -> None: ... method toggle (line 93) | def toggle(self, /) -> None: ... class QAbstractGraphicsShapeItem (line 95) | class QAbstractGraphicsShapeItem(QGraphicsItem): method __init__ (line 96) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method brush (line 97) | def brush(self, /) -> PySide6.QtGui.QBrush: ... method isObscuredBy (line 98) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 99) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method pen (line 100) | def pen(self, /) -> PySide6.QtGui.QPen: ... method setBrush (line 101) | def setBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Qt.Bru... method setPen (line 102) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... class QAbstractItemDelegate (line 104) | class QAbstractItemDelegate(PySide6.QtCore.QObject): class EndEditHint (line 105) | class EndEditHint(enum.Enum): method __init__ (line 115) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method createEditor (line 116) | def createEditor(self, parent: QWidget | None, option: QStyleOptionVie... method destroyEditor (line 117) | def destroyEditor(self, editor: QWidget, index: PySide6.QtCore.QModelI... method editorEvent (line 118) | def editorEvent(self, event: PySide6.QtCore.QEvent, model: PySide6.QtC... method handleEditorEvent (line 119) | def handleEditorEvent(self, object: PySide6.QtCore.QObject, event: PyS... method helpEvent (line 120) | def helpEvent(self, event: PySide6.QtGui.QHelpEvent, view: QAbstractIt... method paint (line 121) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionV... method paintingRoles (line 122) | def paintingRoles(self, /) -> List[int]: ... method setEditorData (line 123) | def setEditorData(self, editor: QWidget, index: PySide6.QtCore.QModelI... method setModelData (line 124) | def setModelData(self, editor: QWidget, model: PySide6.QtCore.QAbstrac... method sizeHint (line 125) | def sizeHint(self, option: QStyleOptionViewItem, index: PySide6.QtCore... method updateEditorGeometry (line 126) | def updateEditorGeometry(self, editor: QWidget, option: QStyleOptionVi... class QAbstractItemView (line 128) | class QAbstractItemView(QAbstractScrollArea): class CursorAction (line 129) | class CursorAction(enum.Enum): class DragDropMode (line 141) | class DragDropMode(enum.Enum): class DropIndicatorPosition (line 148) | class DropIndicatorPosition(enum.Enum): class EditTrigger (line 154) | class EditTrigger(enum.Flag): class ScrollHint (line 163) | class ScrollHint(enum.Enum): class ScrollMode (line 169) | class ScrollMode(enum.Enum): class SelectionBehavior (line 173) | class SelectionBehavior(enum.Enum): class SelectionMode (line 178) | class SelectionMode(enum.Enum): class State (line 185) | class State(enum.Enum): method __init__ (line 201) | def __init__(self, /, parent: QWidget | None = ..., *, autoScroll: boo... method alternatingRowColors (line 202) | def alternatingRowColors(self, /) -> bool: ... method autoScrollMargin (line 203) | def autoScrollMargin(self, /) -> int: ... method clearSelection (line 204) | def clearSelection(self, /) -> None: ... method closeEditor (line 205) | def closeEditor(self, editor: QWidget, hint: QAbstractItemDelegate.End... method closePersistentEditor (line 206) | def closePersistentEditor(self, index: PySide6.QtCore.QModelIndex | Py... method commitData (line 207) | def commitData(self, editor: QWidget, /) -> None: ... method currentChanged (line 208) | def currentChanged(self, current: PySide6.QtCore.QModelIndex | PySide6... method currentIndex (line 209) | def currentIndex(self, /) -> PySide6.QtCore.QModelIndex: ... method dataChanged (line 210) | def dataChanged(self, topLeft: PySide6.QtCore.QModelIndex | PySide6.Qt... method defaultDropAction (line 211) | def defaultDropAction(self, /) -> PySide6.QtCore.Qt.DropAction: ... method dirtyRegionOffset (line 212) | def dirtyRegionOffset(self, /) -> PySide6.QtCore.QPoint: ... method doAutoScroll (line 213) | def doAutoScroll(self, /) -> None: ... method doItemsLayout (line 214) | def doItemsLayout(self, /) -> None: ... method dragDropMode (line 215) | def dragDropMode(self, /) -> QAbstractItemView.DragDropMode: ... method dragDropOverwriteMode (line 216) | def dragDropOverwriteMode(self, /) -> bool: ... method dragEnabled (line 217) | def dragEnabled(self, /) -> bool: ... method dragEnterEvent (line 218) | def dragEnterEvent(self, event: PySide6.QtGui.QDragEnterEvent, /) -> N... method dragLeaveEvent (line 219) | def dragLeaveEvent(self, event: PySide6.QtGui.QDragLeaveEvent, /) -> N... method dragMoveEvent (line 220) | def dragMoveEvent(self, event: PySide6.QtGui.QDragMoveEvent, /) -> Non... method dropEvent (line 221) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method dropIndicatorPosition (line 222) | def dropIndicatorPosition(self, /) -> QAbstractItemView.DropIndicatorP... method edit (line 224) | def edit(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method edit (line 226) | def edit(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method editTriggers (line 227) | def editTriggers(self, /) -> QAbstractItemView.EditTrigger: ... method editorDestroyed (line 228) | def editorDestroyed(self, editor: PySide6.QtCore.QObject, /) -> None: ... method event (line 229) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 230) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method executeDelayedItemsLayout (line 231) | def executeDelayedItemsLayout(self, /) -> None: ... method focusInEvent (line 232) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 233) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 234) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method hasAutoScroll (line 235) | def hasAutoScroll(self, /) -> bool: ... method horizontalOffset (line 236) | def horizontalOffset(self, /) -> int: ... method horizontalScrollMode (line 237) | def horizontalScrollMode(self, /) -> QAbstractItemView.ScrollMode: ... method horizontalScrollbarAction (line 238) | def horizontalScrollbarAction(self, action: int, /) -> None: ... method horizontalScrollbarValueChanged (line 239) | def horizontalScrollbarValueChanged(self, value: int, /) -> None: ... method iconSize (line 240) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method indexAt (line 241) | def indexAt(self, point: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.Q... method indexWidget (line 242) | def indexWidget(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCo... method initViewItemOption (line 243) | def initViewItemOption(self, option: QStyleOptionViewItem, /) -> None:... method inputMethodEvent (line 244) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodQuery (line 245) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method isIndexHidden (line 246) | def isIndexHidden(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method isPersistentEditorOpen (line 247) | def isPersistentEditorOpen(self, index: PySide6.QtCore.QModelIndex | P... method itemDelegate (line 249) | def itemDelegate(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method itemDelegate (line 251) | def itemDelegate(self, /) -> QAbstractItemDelegate: ... method itemDelegateForColumn (line 252) | def itemDelegateForColumn(self, column: int, /) -> QAbstractItemDelega... method itemDelegateForIndex (line 253) | def itemDelegateForIndex(self, index: PySide6.QtCore.QModelIndex | PyS... method itemDelegateForRow (line 254) | def itemDelegateForRow(self, row: int, /) -> QAbstractItemDelegate: ... method keyPressEvent (line 255) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyboardSearch (line 256) | def keyboardSearch(self, search: str, /) -> None: ... method model (line 257) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method mouseDoubleClickEvent (line 258) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseMoveEvent (line 259) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 260) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 261) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method moveCursor (line 262) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method openPersistentEditor (line 263) | def openPersistentEditor(self, index: PySide6.QtCore.QModelIndex | PyS... method reset (line 264) | def reset(self, /) -> None: ... method resetHorizontalScrollMode (line 265) | def resetHorizontalScrollMode(self, /) -> None: ... method resetVerticalScrollMode (line 266) | def resetVerticalScrollMode(self, /) -> None: ... method resizeEvent (line 267) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method rootIndex (line 268) | def rootIndex(self, /) -> PySide6.QtCore.QModelIndex: ... method rowsAboutToBeRemoved (line 269) | def rowsAboutToBeRemoved(self, parent: PySide6.QtCore.QModelIndex | Py... method rowsInserted (line 270) | def rowsInserted(self, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method scheduleDelayedItemsLayout (line 271) | def scheduleDelayedItemsLayout(self, /) -> None: ... method scrollDirtyRegion (line 272) | def scrollDirtyRegion(self, dx: int, dy: int, /) -> None: ... method scrollTo (line 273) | def scrollTo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method scrollToBottom (line 274) | def scrollToBottom(self, /) -> None: ... method scrollToTop (line 275) | def scrollToTop(self, /) -> None: ... method selectAll (line 276) | def selectAll(self, /) -> None: ... method selectedIndexes (line 277) | def selectedIndexes(self, /) -> list[PySide6.QtCore.QModelIndex]: ... method selectionBehavior (line 278) | def selectionBehavior(self, /) -> QAbstractItemView.SelectionBehavior:... method selectionChanged (line 279) | def selectionChanged(self, selected: PySide6.QtCore.QItemSelection, de... method selectionCommand (line 280) | def selectionCommand(self, index: PySide6.QtCore.QModelIndex | PySide6... method selectionMode (line 281) | def selectionMode(self, /) -> QAbstractItemView.SelectionMode: ... method selectionModel (line 282) | def selectionModel(self, /) -> PySide6.QtCore.QItemSelectionModel: ... method setAlternatingRowColors (line 283) | def setAlternatingRowColors(self, enable: bool, /) -> None: ... method setAutoScroll (line 284) | def setAutoScroll(self, enable: bool, /) -> None: ... method setAutoScrollMargin (line 285) | def setAutoScrollMargin(self, margin: int, /) -> None: ... method setCurrentIndex (line 286) | def setCurrentIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.... method setDefaultDropAction (line 287) | def setDefaultDropAction(self, dropAction: PySide6.QtCore.Qt.DropActio... method setDirtyRegion (line 288) | def setDirtyRegion(self, region: PySide6.QtGui.QRegion | PySide6.QtGui... method setDragDropMode (line 289) | def setDragDropMode(self, behavior: QAbstractItemView.DragDropMode, /)... method setDragDropOverwriteMode (line 290) | def setDragDropOverwriteMode(self, overwrite: bool, /) -> None: ... method setDragEnabled (line 291) | def setDragEnabled(self, enable: bool, /) -> None: ... method setDropIndicatorShown (line 292) | def setDropIndicatorShown(self, enable: bool, /) -> None: ... method setEditTriggers (line 293) | def setEditTriggers(self, triggers: QAbstractItemView.EditTrigger, /) ... method setHorizontalScrollMode (line 294) | def setHorizontalScrollMode(self, mode: QAbstractItemView.ScrollMode, ... method setIconSize (line 295) | def setIconSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setIndexWidget (line 296) | def setIndexWidget(self, index: PySide6.QtCore.QModelIndex | PySide6.Q... method setItemDelegate (line 297) | def setItemDelegate(self, delegate: QAbstractItemDelegate, /) -> None:... method setItemDelegateForColumn (line 298) | def setItemDelegateForColumn(self, column: int, delegate: QAbstractIte... method setItemDelegateForRow (line 299) | def setItemDelegateForRow(self, row: int, delegate: QAbstractItemDeleg... method setModel (line 300) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setRootIndex (line 301) | def setRootIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method setSelection (line 302) | def setSelection(self, rect: PySide6.QtCore.QRect, command: PySide6.Qt... method setSelectionBehavior (line 303) | def setSelectionBehavior(self, behavior: QAbstractItemView.SelectionBe... method setSelectionMode (line 304) | def setSelectionMode(self, mode: QAbstractItemView.SelectionMode, /) -... method setSelectionModel (line 305) | def setSelectionModel(self, selectionModel: PySide6.QtCore.QItemSelect... method setState (line 306) | def setState(self, state: QAbstractItemView.State, /) -> None: ... method setTabKeyNavigation (line 307) | def setTabKeyNavigation(self, enable: bool, /) -> None: ... method setTextElideMode (line 308) | def setTextElideMode(self, mode: PySide6.QtCore.Qt.TextElideMode, /) -... method setUpdateThreshold (line 309) | def setUpdateThreshold(self, threshold: int, /) -> None: ... method setVerticalScrollMode (line 310) | def setVerticalScrollMode(self, mode: QAbstractItemView.ScrollMode, /)... method showDropIndicator (line 311) | def showDropIndicator(self, /) -> bool: ... method sizeHintForColumn (line 312) | def sizeHintForColumn(self, column: int, /) -> int: ... method sizeHintForIndex (line 313) | def sizeHintForIndex(self, index: PySide6.QtCore.QModelIndex | PySide6... method sizeHintForRow (line 314) | def sizeHintForRow(self, row: int, /) -> int: ... method startAutoScroll (line 315) | def startAutoScroll(self, /) -> None: ... method startDrag (line 316) | def startDrag(self, supportedActions: PySide6.QtCore.Qt.DropAction, /)... method state (line 317) | def state(self, /) -> QAbstractItemView.State: ... method stopAutoScroll (line 318) | def stopAutoScroll(self, /) -> None: ... method tabKeyNavigation (line 319) | def tabKeyNavigation(self, /) -> bool: ... method textElideMode (line 320) | def textElideMode(self, /) -> PySide6.QtCore.Qt.TextElideMode: ... method timerEvent (line 321) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method update (line 323) | def update(self, x: int, y: int, w: int, h: int, /) -> None: ... method update (line 325) | def update(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method update (line 327) | def update(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method update (line 329) | def update(self, arg__1: PySide6.QtGui.QRegion | PySide6.QtGui.QBitmap... method update (line 331) | def update(self, /) -> None: ... method updateEditorData (line 332) | def updateEditorData(self, /) -> None: ... method updateEditorGeometries (line 333) | def updateEditorGeometries(self, /) -> None: ... method updateGeometries (line 334) | def updateGeometries(self, /) -> None: ... method updateThreshold (line 335) | def updateThreshold(self, /) -> int: ... method verticalOffset (line 336) | def verticalOffset(self, /) -> int: ... method verticalScrollMode (line 337) | def verticalScrollMode(self, /) -> QAbstractItemView.ScrollMode: ... method verticalScrollbarAction (line 338) | def verticalScrollbarAction(self, action: int, /) -> None: ... method verticalScrollbarValueChanged (line 339) | def verticalScrollbarValueChanged(self, value: int, /) -> None: ... method viewportEvent (line 340) | def viewportEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method viewportSizeHint (line 341) | def viewportSizeHint(self, /) -> PySide6.QtCore.QSize: ... method visualRect (line 342) | def visualRect(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method visualRegionForSelection (line 343) | def visualRegionForSelection(self, selection: PySide6.QtCore.QItemSele... class QAbstractScrollArea (line 345) | class QAbstractScrollArea(QFrame): class SizeAdjustPolicy (line 346) | class SizeAdjustPolicy(enum.Enum): method __init__ (line 351) | def __init__(self, /, parent: QWidget | None = ..., *, verticalScrollB... method addScrollBarWidget (line 352) | def addScrollBarWidget(self, widget: QWidget, alignment: PySide6.QtCor... method contextMenuEvent (line 353) | def contextMenuEvent(self, arg__1: PySide6.QtGui.QContextMenuEvent, /)... method cornerWidget (line 354) | def cornerWidget(self, /) -> QWidget: ... method dragEnterEvent (line 355) | def dragEnterEvent(self, arg__1: PySide6.QtGui.QDragEnterEvent, /) -> ... method dragLeaveEvent (line 356) | def dragLeaveEvent(self, arg__1: PySide6.QtGui.QDragLeaveEvent, /) -> ... method dragMoveEvent (line 357) | def dragMoveEvent(self, arg__1: PySide6.QtGui.QDragMoveEvent, /) -> No... method dropEvent (line 358) | def dropEvent(self, arg__1: PySide6.QtGui.QDropEvent, /) -> None: ... method event (line 359) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 360) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method horizontalScrollBar (line 361) | def horizontalScrollBar(self, /) -> QScrollBar: ... method horizontalScrollBarPolicy (line 362) | def horizontalScrollBarPolicy(self, /) -> PySide6.QtCore.Qt.ScrollBarP... method keyPressEvent (line 363) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method maximumViewportSize (line 364) | def maximumViewportSize(self, /) -> PySide6.QtCore.QSize: ... method minimumSizeHint (line 365) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseDoubleClickEvent (line 366) | def mouseDoubleClickEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) ... method mouseMoveEvent (line 367) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 368) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 369) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method paintEvent (line 370) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 371) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method scrollBarWidgets (line 372) | def scrollBarWidgets(self, alignment: PySide6.QtCore.Qt.AlignmentFlag,... method scrollContentsBy (line 373) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method setCornerWidget (line 374) | def setCornerWidget(self, widget: QWidget, /) -> None: ... method setHorizontalScrollBar (line 375) | def setHorizontalScrollBar(self, scrollbar: QScrollBar, /) -> None: ... method setHorizontalScrollBarPolicy (line 376) | def setHorizontalScrollBarPolicy(self, arg__1: PySide6.QtCore.Qt.Scrol... method setSizeAdjustPolicy (line 377) | def setSizeAdjustPolicy(self, policy: QAbstractScrollArea.SizeAdjustPo... method setVerticalScrollBar (line 378) | def setVerticalScrollBar(self, scrollbar: QScrollBar, /) -> None: ... method setVerticalScrollBarPolicy (line 379) | def setVerticalScrollBarPolicy(self, arg__1: PySide6.QtCore.Qt.ScrollB... method setViewport (line 380) | def setViewport(self, widget: QWidget, /) -> None: ... method setViewportMargins (line 382) | def setViewportMargins(self, left: int, top: int, right: int, bottom: ... method setViewportMargins (line 384) | def setViewportMargins(self, margins: PySide6.QtCore.QMargins, /) -> N... method setupViewport (line 385) | def setupViewport(self, viewport: QWidget, /) -> None: ... method sizeAdjustPolicy (line 386) | def sizeAdjustPolicy(self, /) -> QAbstractScrollArea.SizeAdjustPolicy:... method sizeHint (line 387) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method verticalScrollBar (line 388) | def verticalScrollBar(self, /) -> QScrollBar: ... method verticalScrollBarPolicy (line 389) | def verticalScrollBarPolicy(self, /) -> PySide6.QtCore.Qt.ScrollBarPol... method viewport (line 390) | def viewport(self, /) -> QWidget: ... method viewportEvent (line 391) | def viewportEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method viewportMargins (line 392) | def viewportMargins(self, /) -> PySide6.QtCore.QMargins: ... method viewportSizeHint (line 393) | def viewportSizeHint(self, /) -> PySide6.QtCore.QSize: ... method wheelEvent (line 394) | def wheelEvent(self, arg__1: PySide6.QtGui.QWheelEvent, /) -> None: ... class QAbstractSlider (line 396) | class QAbstractSlider(QWidget): class SliderAction (line 397) | class SliderAction(enum.Enum): class SliderChange (line 407) | class SliderChange(enum.Enum): method __init__ (line 419) | def __init__(self, /, parent: QWidget | None = ..., *, minimum: int | ... method changeEvent (line 420) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method event (line 421) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method hasTracking (line 422) | def hasTracking(self, /) -> bool: ... method invertedAppearance (line 423) | def invertedAppearance(self, /) -> bool: ... method invertedControls (line 424) | def invertedControls(self, /) -> bool: ... method isSliderDown (line 425) | def isSliderDown(self, /) -> bool: ... method keyPressEvent (line 426) | def keyPressEvent(self, ev: PySide6.QtGui.QKeyEvent, /) -> None: ... method maximum (line 427) | def maximum(self, /) -> int: ... method minimum (line 428) | def minimum(self, /) -> int: ... method orientation (line 429) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method pageStep (line 430) | def pageStep(self, /) -> int: ... method repeatAction (line 431) | def repeatAction(self, /) -> QAbstractSlider.SliderAction: ... method setInvertedAppearance (line 432) | def setInvertedAppearance(self, arg__1: bool, /) -> None: ... method setInvertedControls (line 433) | def setInvertedControls(self, arg__1: bool, /) -> None: ... method setMaximum (line 434) | def setMaximum(self, arg__1: int, /) -> None: ... method setMinimum (line 435) | def setMinimum(self, arg__1: int, /) -> None: ... method setOrientation (line 436) | def setOrientation(self, arg__1: PySide6.QtCore.Qt.Orientation, /) -> ... method setPageStep (line 437) | def setPageStep(self, arg__1: int, /) -> None: ... method setRange (line 438) | def setRange(self, min: int, max: int, /) -> None: ... method setRepeatAction (line 439) | def setRepeatAction(self, action: QAbstractSlider.SliderAction, /, thr... method setSingleStep (line 440) | def setSingleStep(self, arg__1: int, /) -> None: ... method setSliderDown (line 441) | def setSliderDown(self, arg__1: bool, /) -> None: ... method setSliderPosition (line 442) | def setSliderPosition(self, arg__1: int, /) -> None: ... method setTracking (line 443) | def setTracking(self, enable: bool, /) -> None: ... method setValue (line 444) | def setValue(self, arg__1: int, /) -> None: ... method singleStep (line 445) | def singleStep(self, /) -> int: ... method sliderChange (line 446) | def sliderChange(self, change: QAbstractSlider.SliderChange, /) -> Non... method sliderPosition (line 447) | def sliderPosition(self, /) -> int: ... method timerEvent (line 448) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... method triggerAction (line 449) | def triggerAction(self, action: QAbstractSlider.SliderAction, /) -> No... method value (line 450) | def value(self, /) -> int: ... method wheelEvent (line 451) | def wheelEvent(self, e: PySide6.QtGui.QWheelEvent, /) -> None: ... class QAbstractSpinBox (line 453) | class QAbstractSpinBox(QWidget): class ButtonSymbols (line 454) | class ButtonSymbols(enum.Enum): class CorrectionMode (line 459) | class CorrectionMode(enum.Enum): class StepEnabledFlag (line 463) | class StepEnabledFlag(enum.Flag): class StepType (line 468) | class StepType(enum.Enum): method __init__ (line 474) | def __init__(self, /, parent: QWidget | None = ..., *, wrapping: bool ... method alignment (line 475) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method buttonSymbols (line 476) | def buttonSymbols(self, /) -> QAbstractSpinBox.ButtonSymbols: ... method changeEvent (line 477) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 478) | def clear(self, /) -> None: ... method closeEvent (line 479) | def closeEvent(self, event: PySide6.QtGui.QCloseEvent, /) -> None: ... method contextMenuEvent (line 480) | def contextMenuEvent(self, event: PySide6.QtGui.QContextMenuEvent, /) ... method correctionMode (line 481) | def correctionMode(self, /) -> QAbstractSpinBox.CorrectionMode: ... method event (line 482) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method fixup (line 483) | def fixup(self, input: str, /) -> str: ... method focusInEvent (line 484) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 485) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method hasAcceptableInput (line 486) | def hasAcceptableInput(self, /) -> bool: ... method hasFrame (line 487) | def hasFrame(self, /) -> bool: ... method hideEvent (line 488) | def hideEvent(self, event: PySide6.QtGui.QHideEvent, /) -> None: ... method initStyleOption (line 489) | def initStyleOption(self, option: QStyleOptionSpinBox, /) -> None: ... method inputMethodQuery (line 490) | def inputMethodQuery(self, arg__1: PySide6.QtCore.Qt.InputMethodQuery,... method interpretText (line 491) | def interpretText(self, /) -> None: ... method isAccelerated (line 492) | def isAccelerated(self, /) -> bool: ... method isGroupSeparatorShown (line 493) | def isGroupSeparatorShown(self, /) -> bool: ... method isReadOnly (line 494) | def isReadOnly(self, /) -> bool: ... method keyPressEvent (line 495) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 496) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyboardTracking (line 497) | def keyboardTracking(self, /) -> bool: ... method lineEdit (line 498) | def lineEdit(self, /) -> QLineEdit: ... method minimumSizeHint (line 499) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 500) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 501) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 502) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method paintEvent (line 503) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 504) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method selectAll (line 505) | def selectAll(self, /) -> None: ... method setAccelerated (line 506) | def setAccelerated(self, on: bool, /) -> None: ... method setAlignment (line 507) | def setAlignment(self, flag: PySide6.QtCore.Qt.AlignmentFlag, /) -> No... method setButtonSymbols (line 508) | def setButtonSymbols(self, bs: QAbstractSpinBox.ButtonSymbols, /) -> N... method setCorrectionMode (line 509) | def setCorrectionMode(self, cm: QAbstractSpinBox.CorrectionMode, /) ->... method setFrame (line 510) | def setFrame(self, arg__1: bool, /) -> None: ... method setGroupSeparatorShown (line 511) | def setGroupSeparatorShown(self, shown: bool, /) -> None: ... method setKeyboardTracking (line 512) | def setKeyboardTracking(self, kt: bool, /) -> None: ... method setLineEdit (line 513) | def setLineEdit(self, edit: QLineEdit, /) -> None: ... method setReadOnly (line 514) | def setReadOnly(self, r: bool, /) -> None: ... method setSpecialValueText (line 515) | def setSpecialValueText(self, txt: str, /) -> None: ... method setWrapping (line 516) | def setWrapping(self, w: bool, /) -> None: ... method showEvent (line 517) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 518) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method specialValueText (line 519) | def specialValueText(self, /) -> str: ... method stepBy (line 520) | def stepBy(self, steps: int, /) -> None: ... method stepDown (line 521) | def stepDown(self, /) -> None: ... method stepEnabled (line 522) | def stepEnabled(self, /) -> QAbstractSpinBox.StepEnabledFlag: ... method stepUp (line 523) | def stepUp(self, /) -> None: ... method text (line 524) | def text(self, /) -> str: ... method timerEvent (line 525) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method validate (line 526) | def validate(self, input: str, pos: int, /) -> typing.Any: ... method wheelEvent (line 527) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... method wrapping (line 528) | def wrapping(self, /) -> bool: ... class QAccessibleWidget (line 530) | class QAccessibleWidget(PySide6.QtGui.QAccessibleObject, PySide6.QtGui.Q... method __init__ (line 532) | def __init__(self, o: QWidget, r: PySide6.QtGui.QAccessible.Role, name... method __init__ (line 534) | def __init__(self, o: QWidget, /, r: PySide6.QtGui.QAccessible.Role = ... method actionNames (line 535) | def actionNames(self, /) -> List[str]: ... method addControllingSignal (line 536) | def addControllingSignal(self, signal: str, /) -> None: ... method backgroundColor (line 537) | def backgroundColor(self, /) -> PySide6.QtGui.QColor: ... method child (line 538) | def child(self, index: int, /) -> PySide6.QtGui.QAccessibleInterface: ... method childCount (line 539) | def childCount(self, /) -> int: ... method doAction (line 540) | def doAction(self, actionName: str, /) -> None: ... method focusChild (line 541) | def focusChild(self, /) -> PySide6.QtGui.QAccessibleInterface: ... method foregroundColor (line 542) | def foregroundColor(self, /) -> PySide6.QtGui.QColor: ... method indexOfChild (line 543) | def indexOfChild(self, child: PySide6.QtGui.QAccessibleInterface, /) -... method interface_cast (line 544) | def interface_cast(self, t: PySide6.QtGui.QAccessible.InterfaceType, /... method isValid (line 545) | def isValid(self, /) -> bool: ... method keyBindingsForAction (line 546) | def keyBindingsForAction(self, actionName: str, /) -> List[str]: ... method parent (line 547) | def parent(self, /) -> PySide6.QtGui.QAccessibleInterface: ... method parentObject (line 548) | def parentObject(self, /) -> PySide6.QtCore.QObject: ... method rect (line 549) | def rect(self, /) -> PySide6.QtCore.QRect: ... method relations (line 550) | def relations(self, /, match: PySide6.QtGui.QAccessible.RelationFlag =... method role (line 551) | def role(self, /) -> PySide6.QtGui.QAccessible.Role: ... method state (line 552) | def state(self, /) -> PySide6.QtGui.QAccessible.State: ... method text (line 553) | def text(self, t: PySide6.QtGui.QAccessible.Text, /) -> str: ... method widget (line 554) | def widget(self, /) -> QWidget: ... method window (line 555) | def window(self, /) -> PySide6.QtGui.QWindow: ... class QApplication (line 557) | class QApplication(PySide6.QtGui.QGuiApplication): method __init__ (line 561) | def __init__(self, arguments: typing.Iterable[str], /, *, cursorFlashT... method __init__ (line 563) | def __init__(self, /, *, cursorFlashTime: int | None = ..., doubleClic... method aboutQt (line 565) | def aboutQt() -> None: ... method activeModalWidget (line 567) | def activeModalWidget() -> QWidget | None: ... method activePopupWidget (line 569) | def activePopupWidget() -> QWidget | None: ... method activeWindow (line 571) | def activeWindow() -> QWidget | None: ... method alert (line 573) | def alert(widget: QWidget, /, duration: int | None = ...) -> None: ... method allWidgets (line 575) | def allWidgets() -> List[QWidget]: ... method autoSipEnabled (line 576) | def autoSipEnabled(self, /) -> bool: ... method beep (line 578) | def beep() -> None: ... method closeAllWindows (line 580) | def closeAllWindows() -> None: ... method cursorFlashTime (line 582) | def cursorFlashTime() -> int: ... method doubleClickInterval (line 584) | def doubleClickInterval() -> int: ... method event (line 585) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method exec (line 587) | def exec() -> int: ... method exec_ (line 588) | def exec_(self, /) -> int: ... method focusWidget (line 590) | def focusWidget() -> QWidget | None: ... method font (line 593) | def font(className: bytes | bytearray | memoryview, /) -> PySide6.QtGu... method font (line 596) | def font(arg__1: QWidget, /) -> PySide6.QtGui.QFont: ... method font (line 599) | def font() -> PySide6.QtGui.QFont: ... method fontMetrics (line 601) | def fontMetrics() -> PySide6.QtGui.QFontMetrics: ... method isEffectEnabled (line 603) | def isEffectEnabled(arg__1: PySide6.QtCore.Qt.UIEffect, /) -> bool: ... method keyboardInputInterval (line 605) | def keyboardInputInterval() -> int: ... method notify (line 606) | def notify(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.QtCor... method palette (line 609) | def palette(className: bytes | bytearray | memoryview, /) -> PySide6.Q... method palette (line 612) | def palette(arg__1: QWidget, /) -> PySide6.QtGui.QPalette: ... method palette (line 615) | def palette() -> PySide6.QtGui.QPalette: ... method resolveInterface (line 616) | def resolveInterface(self, name: bytes | bytearray | memoryview, revis... method setActiveWindow (line 618) | def setActiveWindow(act: QWidget, /) -> None: ... method setAutoSipEnabled (line 619) | def setAutoSipEnabled(self, enabled: bool, /) -> None: ... method setCursorFlashTime (line 621) | def setCursorFlashTime(arg__1: int, /) -> None: ... method setDoubleClickInterval (line 623) | def setDoubleClickInterval(arg__1: int, /) -> None: ... method setEffectEnabled (line 625) | def setEffectEnabled(arg__1: PySide6.QtCore.Qt.UIEffect, /, enable: bo... method setFont (line 627) | def setFont(arg__1: PySide6.QtGui.QFont | str | typing.Iterable[str], ... method setKeyboardInputInterval (line 629) | def setKeyboardInputInterval(arg__1: int, /) -> None: ... method setPalette (line 631) | def setPalette(arg__1: PySide6.QtGui.QPalette | PySide6.QtCore.Qt.Glob... method setStartDragDistance (line 633) | def setStartDragDistance(l: int, /) -> None: ... method setStartDragTime (line 635) | def setStartDragTime(ms: int, /) -> None: ... method setStyle (line 638) | def setStyle(arg__1: QStyle, /) -> None: ... method setStyle (line 641) | def setStyle(arg__1: str, /) -> QStyle | None: ... method setStyleSheet (line 642) | def setStyleSheet(self, sheet: str, /) -> None: ... method setWheelScrollLines (line 644) | def setWheelScrollLines(arg__1: int, /) -> None: ... method startDragDistance (line 646) | def startDragDistance() -> int: ... method startDragTime (line 648) | def startDragTime() -> int: ... method style (line 650) | def style() -> QStyle: ... method styleSheet (line 651) | def styleSheet(self, /) -> str: ... method topLevelAt (line 654) | def topLevelAt(x: int, y: int, /) -> QWidget | None: ... method topLevelAt (line 657) | def topLevelAt(p: PySide6.QtCore.QPoint, /) -> QWidget | None: ... method topLevelWidgets (line 659) | def topLevelWidgets() -> List[QWidget]: ... method wheelScrollLines (line 661) | def wheelScrollLines() -> int: ... method widgetAt (line 664) | def widgetAt(x: int, y: int, /) -> QWidget | None: ... method widgetAt (line 667) | def widgetAt(p: PySide6.QtCore.QPoint, /) -> QWidget | None: ... class QBoxLayout (line 669) | class QBoxLayout(QLayout): class Direction (line 670) | class Direction(enum.Enum): method __init__ (line 678) | def __init__(self, arg__1: QBoxLayout.Direction, /, parent: QWidget | ... method addItem (line 679) | def addItem(self, arg__1: QLayoutItem, /) -> None: ... method addLayout (line 680) | def addLayout(self, layout: QLayout, /, stretch: int | None = ...) -> ... method addSpacerItem (line 681) | def addSpacerItem(self, spacerItem: QSpacerItem, /) -> None: ... method addSpacing (line 682) | def addSpacing(self, size: int, /) -> None: ... method addStretch (line 683) | def addStretch(self, /, stretch: int | None = ...) -> None: ... method addStrut (line 684) | def addStrut(self, arg__1: int, /) -> None: ... method addWidget (line 685) | def addWidget(self, arg__1: QWidget, /, stretch: int | None = ..., ali... method count (line 686) | def count(self, /) -> int: ... method direction (line 687) | def direction(self, /) -> QBoxLayout.Direction: ... method expandingDirections (line 688) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method hasHeightForWidth (line 689) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 690) | def heightForWidth(self, arg__1: int, /) -> int: ... method insertItem (line 691) | def insertItem(self, index: int, arg__2: QLayoutItem, /) -> None: ... method insertLayout (line 692) | def insertLayout(self, index: int, layout: QLayout, /, stretch: int | ... method insertSpacerItem (line 693) | def insertSpacerItem(self, index: int, spacerItem: QSpacerItem, /) -> ... method insertSpacing (line 694) | def insertSpacing(self, index: int, size: int, /) -> None: ... method insertStretch (line 695) | def insertStretch(self, index: int, /, stretch: int | None = ...) -> N... method insertWidget (line 696) | def insertWidget(self, index: int, widget: QWidget, /, stretch: int | ... method invalidate (line 697) | def invalidate(self, /) -> None: ... method itemAt (line 698) | def itemAt(self, arg__1: int, /) -> QLayoutItem: ... method maximumSize (line 699) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumHeightForWidth (line 700) | def minimumHeightForWidth(self, arg__1: int, /) -> int: ... method minimumSize (line 701) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method setDirection (line 702) | def setDirection(self, arg__1: QBoxLayout.Direction, /) -> None: ... method setGeometry (line 703) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method setSpacing (line 704) | def setSpacing(self, spacing: int, /) -> None: ... method setStretch (line 705) | def setStretch(self, index: int, stretch: int, /) -> None: ... method setStretchFactor (line 707) | def setStretchFactor(self, w: QWidget, stretch: int, /) -> bool: ... method setStretchFactor (line 709) | def setStretchFactor(self, l: QLayout, stretch: int, /) -> bool: ... method sizeHint (line 710) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method spacing (line 711) | def spacing(self, /) -> int: ... method stretch (line 712) | def stretch(self, index: int, /) -> int: ... method takeAt (line 713) | def takeAt(self, arg__1: int, /) -> QLayoutItem: ... class QButtonGroup (line 715) | class QButtonGroup(PySide6.QtCore.QObject): method __init__ (line 725) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addButton (line 726) | def addButton(self, arg__1: QAbstractButton, /, id: int = ...) -> None... method button (line 727) | def button(self, id: int, /) -> QAbstractButton: ... method buttons (line 728) | def buttons(self, /) -> List[QAbstractButton]: ... method checkedButton (line 729) | def checkedButton(self, /) -> QAbstractButton: ... method checkedId (line 730) | def checkedId(self, /) -> int: ... method exclusive (line 731) | def exclusive(self, /) -> bool: ... method id (line 732) | def id(self, button: QAbstractButton, /) -> int: ... method removeButton (line 733) | def removeButton(self, arg__1: QAbstractButton, /) -> None: ... method setExclusive (line 734) | def setExclusive(self, arg__1: bool, /) -> None: ... method setId (line 735) | def setId(self, button: QAbstractButton, id: int, /) -> None: ... class QCalendarWidget (line 737) | class QCalendarWidget(QWidget): class HorizontalHeaderFormat (line 738) | class HorizontalHeaderFormat(enum.Enum): class SelectionMode (line 744) | class SelectionMode(enum.Enum): class VerticalHeaderFormat (line 748) | class VerticalHeaderFormat(enum.Enum): method __init__ (line 756) | def __init__(self, /, parent: QWidget | None = ..., *, selectedDate: P... method calendar (line 757) | def calendar(self, /) -> PySide6.QtCore.QCalendar: ... method clearMaximumDate (line 758) | def clearMaximumDate(self, /) -> None: ... method clearMinimumDate (line 759) | def clearMinimumDate(self, /) -> None: ... method dateEditAcceptDelay (line 760) | def dateEditAcceptDelay(self, /) -> int: ... method dateTextFormat (line 762) | def dateTextFormat(self, date: PySide6.QtCore.QDate | datetime.date, /... method dateTextFormat (line 764) | def dateTextFormat(self, /) -> Dict[PySide6.QtCore.QDate, PySide6.QtGu... method event (line 765) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 766) | def eventFilter(self, watched: PySide6.QtCore.QObject, event: PySide6.... method firstDayOfWeek (line 767) | def firstDayOfWeek(self, /) -> PySide6.QtCore.Qt.DayOfWeek: ... method headerTextFormat (line 768) | def headerTextFormat(self, /) -> PySide6.QtGui.QTextCharFormat: ... method horizontalHeaderFormat (line 769) | def horizontalHeaderFormat(self, /) -> QCalendarWidget.HorizontalHeade... method isDateEditEnabled (line 770) | def isDateEditEnabled(self, /) -> bool: ... method isGridVisible (line 771) | def isGridVisible(self, /) -> bool: ... method isNavigationBarVisible (line 772) | def isNavigationBarVisible(self, /) -> bool: ... method keyPressEvent (line 773) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method maximumDate (line 774) | def maximumDate(self, /) -> PySide6.QtCore.QDate: ... method minimumDate (line 775) | def minimumDate(self, /) -> PySide6.QtCore.QDate: ... method minimumSizeHint (line 776) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method monthShown (line 777) | def monthShown(self, /) -> int: ... method mousePressEvent (line 778) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method paintCell (line 779) | def paintCell(self, painter: PySide6.QtGui.QPainter, rect: PySide6.QtC... method resizeEvent (line 780) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method selectedDate (line 781) | def selectedDate(self, /) -> PySide6.QtCore.QDate: ... method selectionMode (line 782) | def selectionMode(self, /) -> QCalendarWidget.SelectionMode: ... method setCalendar (line 783) | def setCalendar(self, calendar: PySide6.QtCore.QCalendar, /) -> None: ... method setCurrentPage (line 784) | def setCurrentPage(self, year: int, month: int, /) -> None: ... method setDateEditAcceptDelay (line 785) | def setDateEditAcceptDelay(self, delay: int, /) -> None: ... method setDateEditEnabled (line 786) | def setDateEditEnabled(self, enable: bool, /) -> None: ... method setDateRange (line 787) | def setDateRange(self, min: PySide6.QtCore.QDate | datetime.date, max:... method setDateTextFormat (line 788) | def setDateTextFormat(self, date: PySide6.QtCore.QDate | datetime.date... method setFirstDayOfWeek (line 789) | def setFirstDayOfWeek(self, dayOfWeek: PySide6.QtCore.Qt.DayOfWeek, /)... method setGridVisible (line 790) | def setGridVisible(self, show: bool, /) -> None: ... method setHeaderTextFormat (line 791) | def setHeaderTextFormat(self, format: PySide6.QtGui.QTextCharFormat, /... method setHorizontalHeaderFormat (line 792) | def setHorizontalHeaderFormat(self, format: QCalendarWidget.Horizontal... method setMaximumDate (line 793) | def setMaximumDate(self, date: PySide6.QtCore.QDate | datetime.date, /... method setMinimumDate (line 794) | def setMinimumDate(self, date: PySide6.QtCore.QDate | datetime.date, /... method setNavigationBarVisible (line 795) | def setNavigationBarVisible(self, visible: bool, /) -> None: ... method setSelectedDate (line 796) | def setSelectedDate(self, date: PySide6.QtCore.QDate | datetime.date, ... method setSelectionMode (line 797) | def setSelectionMode(self, mode: QCalendarWidget.SelectionMode, /) -> ... method setVerticalHeaderFormat (line 798) | def setVerticalHeaderFormat(self, format: QCalendarWidget.VerticalHead... method setWeekdayTextFormat (line 799) | def setWeekdayTextFormat(self, dayOfWeek: PySide6.QtCore.Qt.DayOfWeek,... method showNextMonth (line 800) | def showNextMonth(self, /) -> None: ... method showNextYear (line 801) | def showNextYear(self, /) -> None: ... method showPreviousMonth (line 802) | def showPreviousMonth(self, /) -> None: ... method showPreviousYear (line 803) | def showPreviousYear(self, /) -> None: ... method showSelectedDate (line 804) | def showSelectedDate(self, /) -> None: ... method showToday (line 805) | def showToday(self, /) -> None: ... method sizeHint (line 806) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method updateCell (line 807) | def updateCell(self, date: PySide6.QtCore.QDate | datetime.date, /) ->... method updateCells (line 808) | def updateCells(self, /) -> None: ... method verticalHeaderFormat (line 809) | def verticalHeaderFormat(self, /) -> QCalendarWidget.VerticalHeaderFor... method weekdayTextFormat (line 810) | def weekdayTextFormat(self, dayOfWeek: PySide6.QtCore.Qt.DayOfWeek, /)... method yearShown (line 811) | def yearShown(self, /) -> int: ... class QCheckBox (line 813) | class QCheckBox(QAbstractButton): method __init__ (line 818) | def __init__(self, text: str, /, parent: QWidget | None = ..., *, tris... method __init__ (line 820) | def __init__(self, /, parent: QWidget | None = ..., *, tristate: bool ... method checkState (line 821) | def checkState(self, /) -> PySide6.QtCore.Qt.CheckState: ... method checkStateSet (line 822) | def checkStateSet(self, /) -> None: ... method event (line 823) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method hitButton (line 824) | def hitButton(self, pos: PySide6.QtCore.QPoint, /) -> bool: ... method initStyleOption (line 825) | def initStyleOption(self, option: QStyleOptionButton, /) -> None: ... method isTristate (line 826) | def isTristate(self, /) -> bool: ... method minimumSizeHint (line 827) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 828) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method nextCheckState (line 829) | def nextCheckState(self, /) -> None: ... method paintEvent (line 830) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method setCheckState (line 831) | def setCheckState(self, state: PySide6.QtCore.Qt.CheckState, /) -> Non... method setTristate (line 832) | def setTristate(self, /, y: bool = ...) -> None: ... method sizeHint (line 833) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QColorDialog (line 835) | class QColorDialog(QDialog): class ColorDialogOption (line 836) | class ColorDialogOption(enum.Flag): method __init__ (line 845) | def __init__(self, initial: Union[PySide6.QtGui.QColor, str, PySide6.Q... method __init__ (line 847) | def __init__(self, /, parent: QWidget | None = ..., *, currentColor: P... method changeEvent (line 848) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method currentColor (line 849) | def currentColor(self, /) -> PySide6.QtGui.QColor: ... method customColor (line 851) | def customColor(index: int, /) -> PySide6.QtGui.QColor: ... method customCount (line 853) | def customCount() -> int: ... method done (line 854) | def done(self, result: int, /) -> None: ... method getColor (line 856) | def getColor(initial: Union[PySide6.QtGui.QColor, str, PySide6.QtGui.Q... method open (line 858) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 860) | def open(self, /) -> None: ... method options (line 861) | def options(self, /) -> QColorDialog.ColorDialogOption: ... method selectedColor (line 862) | def selectedColor(self, /) -> PySide6.QtGui.QColor: ... method setCurrentColor (line 863) | def setCurrentColor(self, color: Union[PySide6.QtGui.QColor, str, PySi... method setCustomColor (line 865) | def setCustomColor(index: int, color: Union[PySide6.QtGui.QColor, str,... method setOption (line 866) | def setOption(self, option: QColorDialog.ColorDialogOption, /, on: boo... method setOptions (line 867) | def setOptions(self, options: QColorDialog.ColorDialogOption, /) -> No... method setStandardColor (line 869) | def setStandardColor(index: int, color: Union[PySide6.QtGui.QColor, st... method setVisible (line 870) | def setVisible(self, visible: bool, /) -> None: ... method standardColor (line 872) | def standardColor(index: int, /) -> PySide6.QtGui.QColor: ... method testOption (line 873) | def testOption(self, option: QColorDialog.ColorDialogOption, /) -> boo... class QColormap (line 875) | class QColormap(shiboken6.Object): class Mode (line 876) | class Mode(enum.Enum): method __init__ (line 880) | def __init__(self, colormap: QColormap, /) -> None: ... method cleanup (line 882) | def cleanup() -> None: ... method colorAt (line 883) | def colorAt(self, pixel: int, /) -> PySide6.QtGui.QColor: ... method colormap (line 884) | def colormap(self, /) -> List[PySide6.QtGui.QColor]: ... method depth (line 885) | def depth(self, /) -> int: ... method initialize (line 887) | def initialize() -> None: ... method instance (line 889) | def instance(screen: int = ...) -> QColormap: ... method mode (line 890) | def mode(self, /) -> QColormap.Mode: ... method pixel (line 891) | def pixel(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtGui.... method size (line 892) | def size(self, /) -> int: ... method __copy__ (line 893) | def __copy__(self, /) -> typing_extensions.Self: ... class QColumnView (line 895) | class QColumnView(QAbstractItemView): method __init__ (line 898) | def __init__(self, /, parent: QWidget | None = ..., *, resizeGripsVisi... method columnWidths (line 899) | def columnWidths(self, /) -> List[int]: ... method createColumn (line 900) | def createColumn(self, rootIndex: PySide6.QtCore.QModelIndex | PySide6... method currentChanged (line 901) | def currentChanged(self, current: PySide6.QtCore.QModelIndex | PySide6... method horizontalOffset (line 902) | def horizontalOffset(self, /) -> int: ... method indexAt (line 903) | def indexAt(self, point: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.Q... method initializeColumn (line 904) | def initializeColumn(self, column: QAbstractItemView, /) -> None: ... method isIndexHidden (line 905) | def isIndexHidden(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method moveCursor (line 906) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method previewWidget (line 907) | def previewWidget(self, /) -> QWidget: ... method resizeEvent (line 908) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method resizeGripsVisible (line 909) | def resizeGripsVisible(self, /) -> bool: ... method rowsInserted (line 910) | def rowsInserted(self, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method scrollContentsBy (line 911) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method scrollTo (line 912) | def scrollTo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method selectAll (line 913) | def selectAll(self, /) -> None: ... method setColumnWidths (line 914) | def setColumnWidths(self, list: typing.Iterable[int], /) -> None: ... method setModel (line 915) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setPreviewWidget (line 916) | def setPreviewWidget(self, widget: QWidget, /) -> None: ... method setResizeGripsVisible (line 917) | def setResizeGripsVisible(self, visible: bool, /) -> None: ... method setRootIndex (line 918) | def setRootIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method setSelection (line 919) | def setSelection(self, rect: PySide6.QtCore.QRect, command: PySide6.Qt... method setSelectionModel (line 920) | def setSelectionModel(self, selectionModel: PySide6.QtCore.QItemSelect... method sizeHint (line 921) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method verticalOffset (line 922) | def verticalOffset(self, /) -> int: ... method visualRect (line 923) | def visualRect(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method visualRegionForSelection (line 924) | def visualRegionForSelection(self, selection: PySide6.QtCore.QItemSele... class QComboBox (line 926) | class QComboBox(QWidget): class InsertPolicy (line 927) | class InsertPolicy(enum.Enum): class LabelDrawingMode (line 936) | class LabelDrawingMode(enum.Enum): class SizeAdjustPolicy (line 940) | class SizeAdjustPolicy(enum.Enum): method __init__ (line 952) | def __init__(self, /, parent: QWidget | None = ..., *, editable: bool ... method addItem (line 954) | def addItem(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, t... method addItem (line 956) | def addItem(self, text: str, /, userData: Any = ...) -> None: ... method addItems (line 957) | def addItems(self, texts: typing.Iterable[str], /) -> None: ... method changeEvent (line 958) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 959) | def clear(self, /) -> None: ... method clearEditText (line 960) | def clearEditText(self, /) -> None: ... method completer (line 961) | def completer(self, /) -> QCompleter | None: ... method contextMenuEvent (line 962) | def contextMenuEvent(self, e: PySide6.QtGui.QContextMenuEvent, /) -> N... method count (line 963) | def count(self, /) -> int: ... method currentData (line 964) | def currentData(self, /, role: PySide6.QtCore.Qt.ItemDataRole | int = ... method currentIndex (line 965) | def currentIndex(self, /) -> int: ... method currentText (line 966) | def currentText(self, /) -> str: ... method duplicatesEnabled (line 967) | def duplicatesEnabled(self, /) -> bool: ... method event (line 968) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method findData (line 969) | def findData(self, data: Any, /, role: PySide6.QtCore.Qt.ItemDataRole ... method findText (line 970) | def findText(self, text: str, /, flags: PySide6.QtCore.Qt.MatchFlag = ... method focusInEvent (line 971) | def focusInEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 972) | def focusOutEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method hasFrame (line 973) | def hasFrame(self, /) -> bool: ... method hideEvent (line 974) | def hideEvent(self, e: PySide6.QtGui.QHideEvent, /) -> None: ... method hidePopup (line 975) | def hidePopup(self, /) -> None: ... method iconSize (line 976) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method initStyleOption (line 977) | def initStyleOption(self, option: QStyleOptionComboBox, /) -> None: ... method inputMethodEvent (line 978) | def inputMethodEvent(self, arg__1: PySide6.QtGui.QInputMethodEvent, /)... method inputMethodQuery (line 980) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method inputMethodQuery (line 982) | def inputMethodQuery(self, arg__1: PySide6.QtCore.Qt.InputMethodQuery,... method insertItem (line 984) | def insertItem(self, index: int, icon: PySide6.QtGui.QIcon | PySide6.Q... method insertItem (line 986) | def insertItem(self, index: int, text: str, /, userData: Any = ...) ->... method insertItems (line 987) | def insertItems(self, index: int, texts: typing.Iterable[str], /) -> N... method insertPolicy (line 988) | def insertPolicy(self, /) -> QComboBox.InsertPolicy: ... method insertSeparator (line 989) | def insertSeparator(self, index: int, /) -> None: ... method isEditable (line 990) | def isEditable(self, /) -> bool: ... method itemData (line 991) | def itemData(self, index: int, /, role: PySide6.QtCore.Qt.ItemDataRole... method itemDelegate (line 992) | def itemDelegate(self, /) -> QAbstractItemDelegate: ... method itemIcon (line 993) | def itemIcon(self, index: int, /) -> PySide6.QtGui.QIcon: ... method itemText (line 994) | def itemText(self, index: int, /) -> str: ... method keyPressEvent (line 995) | def keyPressEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 996) | def keyReleaseEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method labelDrawingMode (line 997) | def labelDrawingMode(self, /) -> QComboBox.LabelDrawingMode: ... method lineEdit (line 998) | def lineEdit(self, /) -> QLineEdit | None: ... method maxCount (line 999) | def maxCount(self, /) -> int: ... method maxVisibleItems (line 1000) | def maxVisibleItems(self, /) -> int: ... method minimumContentsLength (line 1001) | def minimumContentsLength(self, /) -> int: ... method minimumSizeHint (line 1002) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method model (line 1003) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method modelColumn (line 1004) | def modelColumn(self, /) -> int: ... method mousePressEvent (line 1005) | def mousePressEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 1006) | def mouseReleaseEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method paintEvent (line 1007) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method placeholderText (line 1008) | def placeholderText(self, /) -> str: ... method removeItem (line 1009) | def removeItem(self, index: int, /) -> None: ... method resizeEvent (line 1010) | def resizeEvent(self, e: PySide6.QtGui.QResizeEvent, /) -> None: ... method rootModelIndex (line 1011) | def rootModelIndex(self, /) -> PySide6.QtCore.QModelIndex: ... method setCompleter (line 1012) | def setCompleter(self, c: QCompleter, /) -> None: ... method setCurrentIndex (line 1013) | def setCurrentIndex(self, index: int, /) -> None: ... method setCurrentText (line 1014) | def setCurrentText(self, text: str, /) -> None: ... method setDuplicatesEnabled (line 1015) | def setDuplicatesEnabled(self, enable: bool, /) -> None: ... method setEditText (line 1016) | def setEditText(self, text: str, /) -> None: ... method setEditable (line 1017) | def setEditable(self, editable: bool, /) -> None: ... method setFrame (line 1018) | def setFrame(self, arg__1: bool, /) -> None: ... method setIconSize (line 1019) | def setIconSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setInsertPolicy (line 1020) | def setInsertPolicy(self, policy: QComboBox.InsertPolicy, /) -> None: ... method setItemData (line 1021) | def setItemData(self, index: int, value: Any, /, role: PySide6.QtCore.... method setItemDelegate (line 1022) | def setItemDelegate(self, delegate: QAbstractItemDelegate, /) -> None:... method setItemIcon (line 1023) | def setItemIcon(self, index: int, icon: PySide6.QtGui.QIcon | PySide6.... method setItemText (line 1024) | def setItemText(self, index: int, text: str, /) -> None: ... method setLabelDrawingMode (line 1025) | def setLabelDrawingMode(self, labelDrawing: QComboBox.LabelDrawingMode... method setLineEdit (line 1026) | def setLineEdit(self, edit: QLineEdit, /) -> None: ... method setMaxCount (line 1027) | def setMaxCount(self, max: int, /) -> None: ... method setMaxVisibleItems (line 1028) | def setMaxVisibleItems(self, maxItems: int, /) -> None: ... method setMinimumContentsLength (line 1029) | def setMinimumContentsLength(self, characters: int, /) -> None: ... method setModel (line 1030) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setModelColumn (line 1031) | def setModelColumn(self, visibleColumn: int, /) -> None: ... method setPlaceholderText (line 1032) | def setPlaceholderText(self, placeholderText: str, /) -> None: ... method setRootModelIndex (line 1033) | def setRootModelIndex(self, index: PySide6.QtCore.QModelIndex | PySide... method setSizeAdjustPolicy (line 1034) | def setSizeAdjustPolicy(self, policy: QComboBox.SizeAdjustPolicy, /) -... method setValidator (line 1035) | def setValidator(self, v: PySide6.QtGui.QValidator, /) -> None: ... method setView (line 1036) | def setView(self, itemView: QAbstractItemView, /) -> None: ... method showEvent (line 1037) | def showEvent(self, e: PySide6.QtGui.QShowEvent, /) -> None: ... method showPopup (line 1038) | def showPopup(self, /) -> None: ... method sizeAdjustPolicy (line 1039) | def sizeAdjustPolicy(self, /) -> QComboBox.SizeAdjustPolicy: ... method sizeHint (line 1040) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method validator (line 1041) | def validator(self, /) -> PySide6.QtGui.QValidator | None: ... method view (line 1042) | def view(self, /) -> QAbstractItemView: ... method wheelEvent (line 1043) | def wheelEvent(self, e: PySide6.QtGui.QWheelEvent, /) -> None: ... class QCommandLinkButton (line 1045) | class QCommandLinkButton(QPushButton): method __init__ (line 1048) | def __init__(self, text: str, description: str, /, parent: QWidget | N... method __init__ (line 1050) | def __init__(self, text: str, /, parent: QWidget | None = ..., *, desc... method __init__ (line 1052) | def __init__(self, /, parent: QWidget | None = ..., *, description: st... method description (line 1053) | def description(self, /) -> str: ... method event (line 1054) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method heightForWidth (line 1055) | def heightForWidth(self, arg__1: int, /) -> int: ... method initStyleOption (line 1056) | def initStyleOption(self, option: QStyleOptionButton, /) -> None: ... method minimumSizeHint (line 1057) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method paintEvent (line 1058) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method setDescription (line 1059) | def setDescription(self, description: str, /) -> None: ... method sizeHint (line 1060) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QCommonStyle (line 1062) | class QCommonStyle(QStyle): method __init__ (line 1064) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method drawComplexControl (line 1065) | def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOpt... method drawControl (line 1066) | def drawControl(self, element: QStyle.ControlElement, opt: QStyleOptio... method drawPrimitive (line 1067) | def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption... method generatedIconPixmap (line 1068) | def generatedIconPixmap(self, iconMode: PySide6.QtGui.QIcon.Mode, pixm... method hitTestComplexControl (line 1069) | def hitTestComplexControl(self, cc: QStyle.ComplexControl, opt: QStyle... method layoutSpacing (line 1070) | def layoutSpacing(self, control1: QSizePolicy.ControlType, control2: Q... method pixelMetric (line 1071) | def pixelMetric(self, m: QStyle.PixelMetric, /, opt: QStyleOption | No... method polish (line 1073) | def polish(self, widget: QWidget, /) -> None: ... method polish (line 1075) | def polish(self, palette: PySide6.QtGui.QPalette | PySide6.QtCore.Qt.G... method polish (line 1077) | def polish(self, app: QApplication, /) -> None: ... method sizeFromContents (line 1078) | def sizeFromContents(self, ct: QStyle.ContentsType, opt: QStyleOption,... method standardIcon (line 1079) | def standardIcon(self, standardIcon: QStyle.StandardPixmap, /, opt: QS... method standardPixmap (line 1080) | def standardPixmap(self, sp: QStyle.StandardPixmap, /, opt: QStyleOpti... method styleHint (line 1081) | def styleHint(self, sh: QStyle.StyleHint, /, opt: QStyleOption | None ... method subControlRect (line 1082) | def subControlRect(self, cc: QStyle.ComplexControl, opt: QStyleOptionC... method subElementRect (line 1083) | def subElementRect(self, r: QStyle.SubElement, opt: QStyleOption, /, w... method unpolish (line 1085) | def unpolish(self, widget: QWidget, /) -> None: ... method unpolish (line 1087) | def unpolish(self, application: QApplication, /) -> None: ... class QCompleter (line 1089) | class QCompleter(PySide6.QtCore.QObject): class CompletionMode (line 1090) | class CompletionMode(enum.Enum): class ModelSorting (line 1095) | class ModelSorting(enum.Enum): method __init__ (line 1103) | def __init__(self, model: PySide6.QtCore.QAbstractItemModel, /, parent... method __init__ (line 1105) | def __init__(self, completions: typing.Iterable[str], /, parent: PySid... method __init__ (line 1107) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method caseSensitivity (line 1108) | def caseSensitivity(self, /) -> PySide6.QtCore.Qt.CaseSensitivity: ... method complete (line 1109) | def complete(self, /, rect: PySide6.QtCore.QRect = ...) -> None: ... method completionColumn (line 1110) | def completionColumn(self, /) -> int: ... method completionCount (line 1111) | def completionCount(self, /) -> int: ... method completionMode (line 1112) | def completionMode(self, /) -> QCompleter.CompletionMode: ... method completionModel (line 1113) | def completionModel(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method completionPrefix (line 1114) | def completionPrefix(self, /) -> str: ... method completionRole (line 1115) | def completionRole(self, /) -> int: ... method currentCompletion (line 1116) | def currentCompletion(self, /) -> str: ... method currentIndex (line 1117) | def currentIndex(self, /) -> PySide6.QtCore.QModelIndex: ... method currentRow (line 1118) | def currentRow(self, /) -> int: ... method event (line 1119) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 1120) | def eventFilter(self, o: PySide6.QtCore.QObject, e: PySide6.QtCore.QEv... method filterMode (line 1121) | def filterMode(self, /) -> PySide6.QtCore.Qt.MatchFlag: ... method maxVisibleItems (line 1122) | def maxVisibleItems(self, /) -> int: ... method model (line 1123) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method modelSorting (line 1124) | def modelSorting(self, /) -> QCompleter.ModelSorting: ... method pathFromIndex (line 1125) | def pathFromIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method popup (line 1126) | def popup(self, /) -> QAbstractItemView | None: ... method setCaseSensitivity (line 1127) | def setCaseSensitivity(self, caseSensitivity: PySide6.QtCore.Qt.CaseSe... method setCompletionColumn (line 1128) | def setCompletionColumn(self, column: int, /) -> None: ... method setCompletionMode (line 1129) | def setCompletionMode(self, mode: QCompleter.CompletionMode, /) -> Non... method setCompletionPrefix (line 1130) | def setCompletionPrefix(self, prefix: str, /) -> None: ... method setCompletionRole (line 1131) | def setCompletionRole(self, role: PySide6.QtCore.Qt.ItemDataRole | int... method setCurrentRow (line 1132) | def setCurrentRow(self, row: int, /) -> bool: ... method setFilterMode (line 1133) | def setFilterMode(self, filterMode: PySide6.QtCore.Qt.MatchFlag, /) ->... method setMaxVisibleItems (line 1134) | def setMaxVisibleItems(self, maxItems: int, /) -> None: ... method setModel (line 1135) | def setModel(self, c: PySide6.QtCore.QAbstractItemModel, /) -> None: ... method setModelSorting (line 1136) | def setModelSorting(self, sorting: QCompleter.ModelSorting, /) -> None... method setPopup (line 1137) | def setPopup(self, popup: QAbstractItemView, /) -> None: ... method setWidget (line 1138) | def setWidget(self, widget: QWidget, /) -> None: ... method setWrapAround (line 1139) | def setWrapAround(self, wrap: bool, /) -> None: ... method splitPath (line 1140) | def splitPath(self, path: str, /) -> List[str]: ... method widget (line 1141) | def widget(self, /) -> QWidget: ... method wrapAround (line 1142) | def wrapAround(self, /) -> bool: ... class QDataWidgetMapper (line 1144) | class QDataWidgetMapper(PySide6.QtCore.QObject): class SubmitPolicy (line 1145) | class SubmitPolicy(enum.Enum): method __init__ (line 1150) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method addMapping (line 1152) | def addMapping(self, widget: QWidget, section: int, propertyName: PySi... method addMapping (line 1154) | def addMapping(self, widget: QWidget, section: int, /) -> None: ... method clearMapping (line 1155) | def clearMapping(self, /) -> None: ... method currentIndex (line 1156) | def currentIndex(self, /) -> int: ... method itemDelegate (line 1157) | def itemDelegate(self, /) -> QAbstractItemDelegate: ... method mappedPropertyName (line 1158) | def mappedPropertyName(self, widget: QWidget, /) -> PySide6.QtCore.QBy... method mappedSection (line 1159) | def mappedSection(self, widget: QWidget, /) -> int: ... method mappedWidgetAt (line 1160) | def mappedWidgetAt(self, section: int, /) -> QWidget: ... method model (line 1161) | def model(self, /) -> PySide6.QtCore.QAbstractItemModel: ... method orientation (line 1162) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method removeMapping (line 1163) | def removeMapping(self, widget: QWidget, /) -> None: ... method revert (line 1164) | def revert(self, /) -> None: ... method rootIndex (line 1165) | def rootIndex(self, /) -> PySide6.QtCore.QModelIndex: ... method setCurrentIndex (line 1166) | def setCurrentIndex(self, index: int, /) -> None: ... method setCurrentModelIndex (line 1167) | def setCurrentModelIndex(self, index: PySide6.QtCore.QModelIndex | PyS... method setItemDelegate (line 1168) | def setItemDelegate(self, delegate: QAbstractItemDelegate, /) -> None:... method setModel (line 1169) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None, /)... method setOrientation (line 1170) | def setOrientation(self, aOrientation: PySide6.QtCore.Qt.Orientation, ... method setRootIndex (line 1171) | def setRootIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method setSubmitPolicy (line 1172) | def setSubmitPolicy(self, policy: QDataWidgetMapper.SubmitPolicy, /) -... method submit (line 1173) | def submit(self, /) -> bool: ... method submitPolicy (line 1174) | def submitPolicy(self, /) -> QDataWidgetMapper.SubmitPolicy: ... method toFirst (line 1175) | def toFirst(self, /) -> None: ... method toLast (line 1176) | def toLast(self, /) -> None: ... method toNext (line 1177) | def toNext(self, /) -> None: ... method toPrevious (line 1178) | def toPrevious(self, /) -> None: ... class QDateEdit (line 1180) | class QDateEdit(QDateTimeEdit): method __init__ (line 1184) | def __init__(self, /, parent: QWidget | None = ..., *, date: PySide6.Q... method __init__ (line 1186) | def __init__(self, date: PySide6.QtCore.QDate | datetime.date, /, pare... class QDateTimeEdit (line 1188) | class QDateTimeEdit(QAbstractSpinBox): class Section (line 1189) | class Section(enum.Flag): method __init__ (line 1206) | def __init__(self, val: Any, parserType: PySide6.QtCore.QMetaType.Type... method __init__ (line 1208) | def __init__(self, t: PySide6.QtCore.QTime, /, parent: QWidget | None ... method __init__ (line 1210) | def __init__(self, dt: PySide6.QtCore.QDateTime | datetime.datetime, /... method __init__ (line 1212) | def __init__(self, d: PySide6.QtCore.QDate | datetime.date, /, parent:... method __init__ (line 1214) | def __init__(self, /, parent: QWidget | None = ..., *, dateTime: PySid... method calendar (line 1215) | def calendar(self, /) -> PySide6.QtCore.QCalendar: ... method calendarPopup (line 1216) | def calendarPopup(self, /) -> bool: ... method calendarWidget (line 1217) | def calendarWidget(self, /) -> QCalendarWidget: ... method clear (line 1218) | def clear(self, /) -> None: ... method clearMaximumDate (line 1219) | def clearMaximumDate(self, /) -> None: ... method clearMaximumDateTime (line 1220) | def clearMaximumDateTime(self, /) -> None: ... method clearMaximumTime (line 1221) | def clearMaximumTime(self, /) -> None: ... method clearMinimumDate (line 1222) | def clearMinimumDate(self, /) -> None: ... method clearMinimumDateTime (line 1223) | def clearMinimumDateTime(self, /) -> None: ... method clearMinimumTime (line 1224) | def clearMinimumTime(self, /) -> None: ... method currentSection (line 1225) | def currentSection(self, /) -> QDateTimeEdit.Section: ... method currentSectionIndex (line 1226) | def currentSectionIndex(self, /) -> int: ... method date (line 1227) | def date(self, /) -> PySide6.QtCore.QDate: ... method dateTime (line 1228) | def dateTime(self, /) -> PySide6.QtCore.QDateTime: ... method dateTimeFromText (line 1229) | def dateTimeFromText(self, text: str, /) -> PySide6.QtCore.QDateTime: ... method displayFormat (line 1230) | def displayFormat(self, /) -> str: ... method displayedSections (line 1231) | def displayedSections(self, /) -> QDateTimeEdit.Section: ... method event (line 1232) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method fixup (line 1233) | def fixup(self, input: str, /) -> str: ... method focusInEvent (line 1234) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 1235) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method initStyleOption (line 1236) | def initStyleOption(self, option: QStyleOptionSpinBox, /) -> None: ... method keyPressEvent (line 1237) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method maximumDate (line 1238) | def maximumDate(self, /) -> PySide6.QtCore.QDate: ... method maximumDateTime (line 1239) | def maximumDateTime(self, /) -> PySide6.QtCore.QDateTime: ... method maximumTime (line 1240) | def maximumTime(self, /) -> PySide6.QtCore.QTime: ... method minimumDate (line 1241) | def minimumDate(self, /) -> PySide6.QtCore.QDate: ... method minimumDateTime (line 1242) | def minimumDateTime(self, /) -> PySide6.QtCore.QDateTime: ... method minimumTime (line 1243) | def minimumTime(self, /) -> PySide6.QtCore.QTime: ... method mousePressEvent (line 1244) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method paintEvent (line 1245) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method sectionAt (line 1246) | def sectionAt(self, index: int, /) -> QDateTimeEdit.Section: ... method sectionCount (line 1247) | def sectionCount(self, /) -> int: ... method sectionText (line 1248) | def sectionText(self, section: QDateTimeEdit.Section, /) -> str: ... method setCalendar (line 1249) | def setCalendar(self, calendar: PySide6.QtCore.QCalendar, /) -> None: ... method setCalendarPopup (line 1250) | def setCalendarPopup(self, enable: bool, /) -> None: ... method setCalendarWidget (line 1251) | def setCalendarWidget(self, calendarWidget: QCalendarWidget, /) -> Non... method setCurrentSection (line 1252) | def setCurrentSection(self, section: QDateTimeEdit.Section, /) -> None... method setCurrentSectionIndex (line 1253) | def setCurrentSectionIndex(self, index: int, /) -> None: ... method setDate (line 1254) | def setDate(self, date: PySide6.QtCore.QDate | datetime.date, /) -> No... method setDateRange (line 1255) | def setDateRange(self, min: PySide6.QtCore.QDate | datetime.date, max:... method setDateTime (line 1256) | def setDateTime(self, dateTime: PySide6.QtCore.QDateTime | datetime.da... method setDateTimeRange (line 1257) | def setDateTimeRange(self, min: PySide6.QtCore.QDateTime | datetime.da... method setDisplayFormat (line 1258) | def setDisplayFormat(self, format: str, /) -> None: ... method setMaximumDate (line 1259) | def setMaximumDate(self, max: PySide6.QtCore.QDate | datetime.date, /)... method setMaximumDateTime (line 1260) | def setMaximumDateTime(self, dt: PySide6.QtCore.QDateTime | datetime.d... method setMaximumTime (line 1261) | def setMaximumTime(self, max: PySide6.QtCore.QTime, /) -> None: ... method setMinimumDate (line 1262) | def setMinimumDate(self, min: PySide6.QtCore.QDate | datetime.date, /)... method setMinimumDateTime (line 1263) | def setMinimumDateTime(self, dt: PySide6.QtCore.QDateTime | datetime.d... method setMinimumTime (line 1264) | def setMinimumTime(self, min: PySide6.QtCore.QTime, /) -> None: ... method setSelectedSection (line 1265) | def setSelectedSection(self, section: QDateTimeEdit.Section, /) -> Non... method setTime (line 1266) | def setTime(self, time: PySide6.QtCore.QTime, /) -> None: ... method setTimeRange (line 1267) | def setTimeRange(self, min: PySide6.QtCore.QTime, max: PySide6.QtCore.... method setTimeSpec (line 1268) | def setTimeSpec(self, spec: PySide6.QtCore.Qt.TimeSpec, /) -> None: ... method setTimeZone (line 1269) | def setTimeZone(self, zone: PySide6.QtCore.QTimeZone | PySide6.QtCore.... method sizeHint (line 1270) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method stepBy (line 1271) | def stepBy(self, steps: int, /) -> None: ... method stepEnabled (line 1272) | def stepEnabled(self, /) -> QAbstractSpinBox.StepEnabledFlag: ... method textFromDateTime (line 1273) | def textFromDateTime(self, dt: PySide6.QtCore.QDateTime | datetime.dat... method time (line 1274) | def time(self, /) -> PySide6.QtCore.QTime: ... method timeSpec (line 1275) | def timeSpec(self, /) -> PySide6.QtCore.Qt.TimeSpec: ... method timeZone (line 1276) | def timeZone(self, /) -> PySide6.QtCore.QTimeZone: ... method validate (line 1277) | def validate(self, input: str, pos: int, /) -> typing.Any: ... method wheelEvent (line 1278) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class QDial (line 1280) | class QDial(QAbstractSlider): method __init__ (line 1282) | def __init__(self, /, parent: QWidget | None = ..., *, wrapping: bool ... method event (line 1283) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method initStyleOption (line 1284) | def initStyleOption(self, option: QStyleOptionSlider, /) -> None: ... method minimumSizeHint (line 1285) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 1286) | def mouseMoveEvent(self, me: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 1287) | def mousePressEvent(self, me: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 1288) | def mouseReleaseEvent(self, me: PySide6.QtGui.QMouseEvent, /) -> None:... method notchSize (line 1289) | def notchSize(self, /) -> int: ... method notchTarget (line 1290) | def notchTarget(self, /) -> float: ... method notchesVisible (line 1291) | def notchesVisible(self, /) -> bool: ... method paintEvent (line 1292) | def paintEvent(self, pe: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 1293) | def resizeEvent(self, re: PySide6.QtGui.QResizeEvent, /) -> None: ... method setNotchTarget (line 1294) | def setNotchTarget(self, target: float, /) -> None: ... method setNotchesVisible (line 1295) | def setNotchesVisible(self, visible: bool, /) -> None: ... method setWrapping (line 1296) | def setWrapping(self, on: bool, /) -> None: ... method sizeHint (line 1297) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sliderChange (line 1298) | def sliderChange(self, change: QAbstractSlider.SliderChange, /) -> Non... method wrapping (line 1299) | def wrapping(self, /) -> bool: ... class QDialog (line 1301) | class QDialog(QWidget): class DialogCode (line 1302) | class DialogCode(enum.IntEnum): method __init__ (line 1309) | def __init__(self, /, parent: QWidget | None = ..., f: PySide6.QtCore.... method accept (line 1310) | def accept(self, /) -> None: ... method adjustPosition (line 1311) | def adjustPosition(self, arg__1: QWidget, /) -> None: ... method closeEvent (line 1312) | def closeEvent(self, arg__1: PySide6.QtGui.QCloseEvent, /) -> None: ... method contextMenuEvent (line 1313) | def contextMenuEvent(self, arg__1: PySide6.QtGui.QContextMenuEvent, /)... method done (line 1314) | def done(self, arg__1: int, /) -> None: ... method eventFilter (line 1315) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method exec (line 1316) | def exec(self, /) -> int: ... method exec (line 1317) | def exec(self, *args, **kwargs): ... # type: ignore[no-redef] method exec_ (line 1318) | def exec_(self, /) -> int: ... method isSizeGripEnabled (line 1319) | def isSizeGripEnabled(self, /) -> bool: ... method keyPressEvent (line 1320) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method minimumSizeHint (line 1321) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method open (line 1322) | def open(self, /) -> None: ... method reject (line 1323) | def reject(self, /) -> None: ... method resizeEvent (line 1324) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method result (line 1325) | def result(self, /) -> int: ... method setModal (line 1326) | def setModal(self, modal: bool, /) -> None: ... method setResult (line 1327) | def setResult(self, r: int, /) -> None: ... method setSizeGripEnabled (line 1328) | def setSizeGripEnabled(self, arg__1: bool, /) -> None: ... method setVisible (line 1329) | def setVisible(self, visible: bool, /) -> None: ... method showEvent (line 1330) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 1331) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QDialogButtonBox (line 1333) | class QDialogButtonBox(QWidget): class ButtonLayout (line 1334) | class ButtonLayout(enum.Enum): class ButtonRole (line 1341) | class ButtonRole(enum.Enum): class StandardButton (line 1354) | class StandardButton(enum.Flag): method __init__ (line 1382) | def __init__(self, buttons: QDialogButtonBox.StandardButton, orientati... method __init__ (line 1384) | def __init__(self, buttons: QDialogButtonBox.StandardButton, /, parent... method __init__ (line 1386) | def __init__(self, orientation: PySide6.QtCore.Qt.Orientation, /, pare... method __init__ (line 1388) | def __init__(self, /, parent: QWidget | None = ..., *, orientation: Py... method addButton (line 1390) | def addButton(self, text: str, role: QDialogButtonBox.ButtonRole, /) -... method addButton (line 1392) | def addButton(self, button: QAbstractButton, role: QDialogButtonBox.Bu... method addButton (line 1394) | def addButton(self, button: QDialogButtonBox.StandardButton, /) -> QPu... method button (line 1395) | def button(self, which: QDialogButtonBox.StandardButton, /) -> QPushBu... method buttonRole (line 1396) | def buttonRole(self, button: QAbstractButton, /) -> QDialogButtonBox.B... method buttons (line 1397) | def buttons(self, /) -> List[QAbstractButton]: ... method centerButtons (line 1398) | def centerButtons(self, /) -> bool: ... method changeEvent (line 1399) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 1400) | def clear(self, /) -> None: ... method event (line 1401) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method orientation (line 1402) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method removeButton (line 1403) | def removeButton(self, button: QAbstractButton, /) -> None: ... method setCenterButtons (line 1404) | def setCenterButtons(self, center: bool, /) -> None: ... method setOrientation (line 1405) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setStandardButtons (line 1406) | def setStandardButtons(self, buttons: QDialogButtonBox.StandardButton,... method standardButton (line 1407) | def standardButton(self, button: QAbstractButton, /) -> QDialogButtonB... method standardButtons (line 1408) | def standardButtons(self, /) -> QDialogButtonBox.StandardButton: ... class QDockWidget (line 1410) | class QDockWidget(QWidget): class DockWidgetFeature (line 1411) | class DockWidgetFeature(enum.Flag): method __init__ (line 1426) | def __init__(self, title: str, /, parent: QWidget | None = ..., flags:... method __init__ (line 1428) | def __init__(self, /, parent: QWidget | None = ..., flags: PySide6.QtC... method allowedAreas (line 1429) | def allowedAreas(self, /) -> PySide6.QtCore.Qt.DockWidgetArea: ... method changeEvent (line 1430) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method closeEvent (line 1431) | def closeEvent(self, event: PySide6.QtGui.QCloseEvent, /) -> None: ... method dockLocation (line 1432) | def dockLocation(self, /) -> PySide6.QtCore.Qt.DockWidgetArea: ... method event (line 1433) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method features (line 1434) | def features(self, /) -> QDockWidget.DockWidgetFeature: ... method initStyleOption (line 1435) | def initStyleOption(self, option: QStyleOptionDockWidget, /) -> None: ... method isAreaAllowed (line 1436) | def isAreaAllowed(self, area: PySide6.QtCore.Qt.DockWidgetArea, /) -> ... method isFloating (line 1437) | def isFloating(self, /) -> bool: ... method paintEvent (line 1438) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method setAllowedAreas (line 1439) | def setAllowedAreas(self, areas: PySide6.QtCore.Qt.DockWidgetArea, /) ... method setDockLocation (line 1440) | def setDockLocation(self, area: PySide6.QtCore.Qt.DockWidgetArea, /) -... method setFeatures (line 1441) | def setFeatures(self, features: QDockWidget.DockWidgetFeature, /) -> N... method setFloating (line 1442) | def setFloating(self, floating: bool, /) -> None: ... method setTitleBarWidget (line 1443) | def setTitleBarWidget(self, widget: QWidget, /) -> None: ... method setWidget (line 1444) | def setWidget(self, widget: QWidget, /) -> None: ... method titleBarWidget (line 1445) | def titleBarWidget(self, /) -> QWidget: ... method toggleViewAction (line 1446) | def toggleViewAction(self, /) -> PySide6.QtGui.QAction: ... method widget (line 1447) | def widget(self, /) -> QWidget: ... class QDoubleSpinBox (line 1449) | class QDoubleSpinBox(QAbstractSpinBox): method __init__ (line 1453) | def __init__(self, /, parent: QWidget | None = ..., *, prefix: str | N... method cleanText (line 1454) | def cleanText(self, /) -> str: ... method decimals (line 1455) | def decimals(self, /) -> int: ... method fixup (line 1456) | def fixup(self, str: str, /) -> str: ... method maximum (line 1457) | def maximum(self, /) -> float: ... method minimum (line 1458) | def minimum(self, /) -> float: ... method prefix (line 1459) | def prefix(self, /) -> str: ... method setDecimals (line 1460) | def setDecimals(self, prec: int, /) -> None: ... method setMaximum (line 1461) | def setMaximum(self, max: float, /) -> None: ... method setMinimum (line 1462) | def setMinimum(self, min: float, /) -> None: ... method setPrefix (line 1463) | def setPrefix(self, prefix: str, /) -> None: ... method setRange (line 1464) | def setRange(self, min: float, max: float, /) -> None: ... method setSingleStep (line 1465) | def setSingleStep(self, val: float, /) -> None: ... method setStepType (line 1466) | def setStepType(self, stepType: QAbstractSpinBox.StepType, /) -> None:... method setSuffix (line 1467) | def setSuffix(self, suffix: str, /) -> None: ... method setValue (line 1468) | def setValue(self, val: float, /) -> None: ... method singleStep (line 1469) | def singleStep(self, /) -> float: ... method stepType (line 1470) | def stepType(self, /) -> QAbstractSpinBox.StepType: ... method suffix (line 1471) | def suffix(self, /) -> str: ... method textFromValue (line 1472) | def textFromValue(self, val: float, /) -> str: ... method validate (line 1473) | def validate(self, input: str, pos: int, /) -> typing.Any: ... method value (line 1474) | def value(self, /) -> float: ... method valueFromText (line 1475) | def valueFromText(self, text: str, /) -> float: ... class QErrorMessage (line 1477) | class QErrorMessage(QDialog): method __init__ (line 1479) | def __init__(self, /, parent: QWidget | None = ..., acceptDrops: bool ... method changeEvent (line 1480) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method done (line 1481) | def done(self, arg__1: int, /) -> None: ... method qtHandler (line 1483) | def qtHandler() -> QErrorMessage: ... method showMessage (line 1485) | def showMessage(self, message: str, type: str, /) -> None: ... method showMessage (line 1487) | def showMessage(self, message: str, /) -> None: ... class QFileDialog (line 1489) | class QFileDialog(QDialog): class AcceptMode (line 1490) | class AcceptMode(enum.Enum): class DialogLabel (line 1494) | class DialogLabel(enum.Enum): class FileMode (line 1501) | class FileMode(enum.Enum): class Option (line 1507) | class Option(enum.Flag): class ViewMode (line 1516) | class ViewMode(enum.Enum): method __init__ (line 1530) | def __init__(self, /, parent: QWidget | None = ..., caption: str = ...... method __init__ (line 1532) | def __init__(self, parent: QWidget | None, f: PySide6.QtCore.Qt.Window... method accept (line 1533) | def accept(self, /) -> None: ... method acceptMode (line 1534) | def acceptMode(self, /) -> QFileDialog.AcceptMode: ... method changeEvent (line 1535) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method defaultSuffix (line 1536) | def defaultSuffix(self, /) -> str: ... method directory (line 1537) | def directory(self, /) -> PySide6.QtCore.QDir: ... method directoryUrl (line 1538) | def directoryUrl(self, /) -> PySide6.QtCore.QUrl: ... method done (line 1539) | def done(self, result: int, /) -> None: ... method fileMode (line 1540) | def fileMode(self, /) -> QFileDialog.FileMode: ... method filter (line 1541) | def filter(self, /) -> PySide6.QtCore.QDir.Filter: ... method getExistingDirectory (line 1543) | def getExistingDirectory(parent: QWidget | None = ..., caption: str = ... method getExistingDirectoryUrl (line 1545) | def getExistingDirectoryUrl(parent: QWidget | None = ..., caption: str... method getOpenFileName (line 1547) | def getOpenFileName(parent: QWidget | None = ..., caption: str = ..., ... method getOpenFileNames (line 1549) | def getOpenFileNames(parent: QWidget | None = ..., caption: str = ...,... method getOpenFileUrl (line 1551) | def getOpenFileUrl(parent: QWidget | None = ..., caption: str = ..., d... method getOpenFileUrls (line 1553) | def getOpenFileUrls(parent: QWidget | None = ..., caption: str = ..., ... method getSaveFileName (line 1555) | def getSaveFileName(parent: QWidget | None = ..., caption: str = ..., ... method getSaveFileUrl (line 1557) | def getSaveFileUrl(parent: QWidget | None = ..., caption: str = ..., d... method history (line 1558) | def history(self, /) -> List[str]: ... method iconProvider (line 1559) | def iconProvider(self, /) -> PySide6.QtGui.QAbstractFileIconProvider: ... method itemDelegate (line 1560) | def itemDelegate(self, /) -> QAbstractItemDelegate: ... method labelText (line 1561) | def labelText(self, label: QFileDialog.DialogLabel, /) -> str: ... method mimeTypeFilters (line 1562) | def mimeTypeFilters(self, /) -> List[str]: ... method nameFilters (line 1563) | def nameFilters(self, /) -> List[str]: ... method open (line 1565) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 1567) | def open(self, /) -> None: ... method options (line 1568) | def options(self, /) -> QFileDialog.Option: ... method proxyModel (line 1569) | def proxyModel(self, /) -> PySide6.QtCore.QAbstractProxyModel: ... method restoreState (line 1570) | def restoreState(self, state: PySide6.QtCore.QByteArray | bytes | byte... method saveFileContent (line 1572) | def saveFileContent(fileContent: PySide6.QtCore.QByteArray | bytes | b... method saveState (line 1573) | def saveState(self, /) -> PySide6.QtCore.QByteArray: ... method selectFile (line 1574) | def selectFile(self, filename: str, /) -> None: ... method selectMimeTypeFilter (line 1575) | def selectMimeTypeFilter(self, filter: str, /) -> None: ... method selectNameFilter (line 1576) | def selectNameFilter(self, filter: str, /) -> None: ... method selectUrl (line 1577) | def selectUrl(self, url: PySide6.QtCore.QUrl | str, /) -> None: ... method selectedFiles (line 1578) | def selectedFiles(self, /) -> List[str]: ... method selectedMimeTypeFilter (line 1579) | def selectedMimeTypeFilter(self, /) -> str: ... method selectedNameFilter (line 1580) | def selectedNameFilter(self, /) -> str: ... method selectedUrls (line 1581) | def selectedUrls(self, /) -> List[PySide6.QtCore.QUrl]: ... method setAcceptMode (line 1582) | def setAcceptMode(self, mode: QFileDialog.AcceptMode, /) -> None: ... method setDefaultSuffix (line 1583) | def setDefaultSuffix(self, suffix: str, /) -> None: ... method setDirectory (line 1585) | def setDirectory(self, directory: PySide6.QtCore.QDir, /) -> None: ... method setDirectory (line 1587) | def setDirectory(self, directory: str, /) -> None: ... method setDirectoryUrl (line 1588) | def setDirectoryUrl(self, directory: PySide6.QtCore.QUrl | str, /) -> ... method setFileMode (line 1589) | def setFileMode(self, mode: QFileDialog.FileMode, /) -> None: ... method setFilter (line 1590) | def setFilter(self, filters: PySide6.QtCore.QDir.Filter, /) -> None: ... method setHistory (line 1591) | def setHistory(self, paths: typing.Iterable[str], /) -> None: ... method setIconProvider (line 1592) | def setIconProvider(self, provider: PySide6.QtGui.QAbstractFileIconPro... method setItemDelegate (line 1593) | def setItemDelegate(self, delegate: QAbstractItemDelegate, /) -> None:... method setLabelText (line 1594) | def setLabelText(self, label: QFileDialog.DialogLabel, text: str, /) -... method setMimeTypeFilters (line 1595) | def setMimeTypeFilters(self, filters: typing.Iterable[str], /) -> None... method setNameFilter (line 1596) | def setNameFilter(self, filter: str, /) -> None: ... method setNameFilters (line 1597) | def setNameFilters(self, filters: typing.Iterable[str], /) -> None: ... method setOption (line 1598) | def setOption(self, option: QFileDialog.Option, /, on: bool = ...) -> ... method setOptions (line 1599) | def setOptions(self, options: QFileDialog.Option, /) -> None: ... method setProxyModel (line 1600) | def setProxyModel(self, model: PySide6.QtCore.QAbstractProxyModel, /) ... method setSidebarUrls (line 1601) | def setSidebarUrls(self, urls: typing.Iterable[PySide6.QtCore.QUrl], /... method setSupportedSchemes (line 1602) | def setSupportedSchemes(self, schemes: typing.Iterable[str], /) -> Non... method setViewMode (line 1603) | def setViewMode(self, mode: QFileDialog.ViewMode, /) -> None: ... method setVisible (line 1604) | def setVisible(self, visible: bool, /) -> None: ... method sidebarUrls (line 1605) | def sidebarUrls(self, /) -> List[PySide6.QtCore.QUrl]: ... method supportedSchemes (line 1606) | def supportedSchemes(self, /) -> List[str]: ... method testOption (line 1607) | def testOption(self, option: QFileDialog.Option, /) -> bool: ... method viewMode (line 1608) | def viewMode(self, /) -> QFileDialog.ViewMode: ... class QFileIconProvider (line 1610) | class QFileIconProvider(PySide6.QtGui.QAbstractFileIconProvider): method __init__ (line 1611) | def __init__(self, /) -> None: ... method icon (line 1613) | def icon(self, type: PySide6.QtGui.QAbstractFileIconProvider.IconType,... method icon (line 1615) | def icon(self, info: PySide6.QtCore.QFileInfo, /) -> PySide6.QtGui.QIc... class QFileSystemModel (line 1617) | class QFileSystemModel(PySide6.QtCore.QAbstractItemModel): class Option (line 1618) | class Option(enum.Flag): class Roles (line 1623) | class Roles(enum.IntEnum): method __init__ (line 1633) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method canFetchMore (line 1634) | def canFetchMore(self, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method columnCount (line 1635) | def columnCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method data (line 1636) | def data(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method dropMimeData (line 1637) | def dropMimeData(self, data: PySide6.QtCore.QMimeData, action: PySide6... method event (line 1638) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method fetchMore (line 1639) | def fetchMore(self, parent: PySide6.QtCore.QModelIndex | PySide6.QtCor... method fileIcon (line 1640) | def fileIcon(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method fileInfo (line 1641) | def fileInfo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method fileName (line 1642) | def fileName(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method filePath (line 1643) | def filePath(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method filter (line 1644) | def filter(self, /) -> PySide6.QtCore.QDir.Filter: ... method flags (line 1645) | def flags(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPe... method hasChildren (line 1646) | def hasChildren(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.... method headerData (line 1647) | def headerData(self, section: int, orientation: PySide6.QtCore.Qt.Orie... method iconProvider (line 1648) | def iconProvider(self, /) -> PySide6.QtGui.QAbstractFileIconProvider: ... method index (line 1650) | def index(self, row: int, column: int, /, parent: PySide6.QtCore.QMode... method index (line 1652) | def index(self, path: str, /, column: int | None = ...) -> PySide6.QtC... method isDir (line 1653) | def isDir(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPe... method isReadOnly (line 1654) | def isReadOnly(self, /) -> bool: ... method lastModified (line 1656) | def lastModified(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method lastModified (line 1658) | def lastModified(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method mimeData (line 1659) | def mimeData(self, indexes: typing.Iterable[PySide6.QtCore.QModelIndex... method mimeTypes (line 1660) | def mimeTypes(self, /) -> List[str]: ... method mkdir (line 1661) | def mkdir(self, parent: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method myComputer (line 1662) | def myComputer(self, /, role: PySide6.QtCore.Qt.ItemDataRole | int = .... method nameFilterDisables (line 1663) | def nameFilterDisables(self, /) -> bool: ... method nameFilters (line 1664) | def nameFilters(self, /) -> List[str]: ... method options (line 1665) | def options(self, /) -> QFileSystemModel.Option: ... method parent (line 1667) | def parent(self, child: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method parent (line 1669) | def parent(self, /) -> PySide6.QtCore.QObject: ... method permissions (line 1670) | def permissions(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCo... method remove (line 1671) | def remove(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method resolveSymlinks (line 1672) | def resolveSymlinks(self, /) -> bool: ... method rmdir (line 1673) | def rmdir(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPe... method roleNames (line 1674) | def roleNames(self, /) -> Dict[int, PySide6.QtCore.QByteArray]: ... method rootDirectory (line 1675) | def rootDirectory(self, /) -> PySide6.QtCore.QDir: ... method rootPath (line 1676) | def rootPath(self, /) -> str: ... method rowCount (line 1677) | def rowCount(self, /, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method setData (line 1678) | def setData(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.Q... method setFilter (line 1679) | def setFilter(self, filters: PySide6.QtCore.QDir.Filter, /) -> None: ... method setIconProvider (line 1680) | def setIconProvider(self, provider: PySide6.QtGui.QAbstractFileIconPro... method setNameFilterDisables (line 1681) | def setNameFilterDisables(self, enable: bool, /) -> None: ... method setNameFilters (line 1682) | def setNameFilters(self, filters: typing.Iterable[str], /) -> None: ... method setOption (line 1683) | def setOption(self, option: QFileSystemModel.Option, /, on: bool = ...... method setOptions (line 1684) | def setOptions(self, options: QFileSystemModel.Option, /) -> None: ... method setReadOnly (line 1685) | def setReadOnly(self, enable: bool, /) -> None: ... method setResolveSymlinks (line 1686) | def setResolveSymlinks(self, enable: bool, /) -> None: ... method setRootPath (line 1687) | def setRootPath(self, path: str, /) -> PySide6.QtCore.QModelIndex: ... method sibling (line 1688) | def sibling(self, row: int, column: int, idx: PySide6.QtCore.QModelInd... method size (line 1689) | def size(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... method sort (line 1690) | def sort(self, column: int, /, order: PySide6.QtCore.Qt.SortOrder = ..... method supportedDropActions (line 1691) | def supportedDropActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method testOption (line 1692) | def testOption(self, option: QFileSystemModel.Option, /) -> bool: ... method timerEvent (line 1693) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method type (line 1694) | def type(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QPer... class QFocusFrame (line 1696) | class QFocusFrame(QWidget): method __init__ (line 1698) | def __init__(self, /, parent: QWidget | None = ..., acceptDrops: bool ... method event (line 1699) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 1700) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method initStyleOption (line 1701) | def initStyleOption(self, option: QStyleOption, /) -> None: ... method paintEvent (line 1702) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method setWidget (line 1703) | def setWidget(self, widget: QWidget, /) -> None: ... method widget (line 1704) | def widget(self, /) -> QWidget: ... class QFontComboBox (line 1706) | class QFontComboBox(QComboBox): class FontFilter (line 1707) | class FontFilter(enum.Flag): method __init__ (line 1715) | def __init__(self, /, parent: QWidget | None = ..., *, writingSystem: ... method currentFont (line 1716) | def currentFont(self, /) -> PySide6.QtGui.QFont: ... method event (line 1717) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method fontFilters (line 1718) | def fontFilters(self, /) -> QFontComboBox.FontFilter: ... method sampleTextForFont (line 1719) | def sampleTextForFont(self, fontFamily: str, /) -> str: ... method sampleTextForSystem (line 1720) | def sampleTextForSystem(self, writingSystem: PySide6.QtGui.QFontDataba... method setCurrentFont (line 1721) | def setCurrentFont(self, f: PySide6.QtGui.QFont | str | typing.Iterabl... method setDisplayFont (line 1722) | def setDisplayFont(self, fontFamily: str, font: PySide6.QtGui.QFont | ... method setFontFilters (line 1723) | def setFontFilters(self, filters: QFontComboBox.FontFilter, /) -> None... method setSampleTextForFont (line 1724) | def setSampleTextForFont(self, fontFamily: str, sampleText: str, /) ->... method setSampleTextForSystem (line 1725) | def setSampleTextForSystem(self, writingSystem: PySide6.QtGui.QFontDat... method setWritingSystem (line 1726) | def setWritingSystem(self, arg__1: PySide6.QtGui.QFontDatabase.Writing... method sizeHint (line 1727) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method writingSystem (line 1728) | def writingSystem(self, /) -> PySide6.QtGui.QFontDatabase.WritingSyste... class QFontDialog (line 1730) | class QFontDialog(QDialog): class FontDialogOption (line 1731) | class FontDialogOption(enum.Flag): method __init__ (line 1742) | def __init__(self, initial: PySide6.QtGui.QFont | str | typing.Iterabl... method __init__ (line 1744) | def __init__(self, /, parent: QWidget | None = ..., *, currentFont: Py... method changeEvent (line 1745) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method currentFont (line 1746) | def currentFont(self, /) -> PySide6.QtGui.QFont: ... method done (line 1747) | def done(self, result: int, /) -> None: ... method eventFilter (line 1748) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method getFont (line 1751) | def getFont(initial: PySide6.QtGui.QFont | str | typing.Iterable[str],... method getFont (line 1754) | def getFont(parent: QWidget | None = ...) -> Tuple[bool, PySide6.QtGui... method open (line 1756) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 1758) | def open(self, /) -> None: ... method options (line 1759) | def options(self, /) -> QFontDialog.FontDialogOption: ... method selectedFont (line 1760) | def selectedFont(self, /) -> PySide6.QtGui.QFont: ... method setCurrentFont (line 1761) | def setCurrentFont(self, font: PySide6.QtGui.QFont | str | typing.Iter... method setOption (line 1762) | def setOption(self, option: QFontDialog.FontDialogOption, /, on: bool ... method setOptions (line 1763) | def setOptions(self, options: QFontDialog.FontDialogOption, /) -> None... method setVisible (line 1764) | def setVisible(self, visible: bool, /) -> None: ... method testOption (line 1765) | def testOption(self, option: QFontDialog.FontDialogOption, /) -> bool:... class QFormLayout (line 1767) | class QFormLayout(QLayout): class FieldGrowthPolicy (line 1768) | class FieldGrowthPolicy(enum.Enum): class ItemRole (line 1773) | class ItemRole(enum.Enum): class RowWrapPolicy (line 1778) | class RowWrapPolicy(enum.Enum): class TakeRowResult (line 1783) | class TakeRowResult(shiboken6.Object): method __init__ (line 1787) | def __init__(self, TakeRowResult: QFormLayout.TakeRowResult, /) -> N... method __init__ (line 1789) | def __init__(self, /) -> None: ... method __copy__ (line 1790) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 1792) | def __init__(self, /, parent: QWidget | None = ..., *, fieldGrowthPoli... method addItem (line 1793) | def addItem(self, item: QLayoutItem, /) -> None: ... method addRow (line 1795) | def addRow(self, labelText: str, field: QLayout, /) -> None: ... method addRow (line 1797) | def addRow(self, labelText: str, field: QWidget, /) -> None: ... method addRow (line 1799) | def addRow(self, label: QWidget, field: QLayout, /) -> None: ... method addRow (line 1801) | def addRow(self, label: QWidget, field: QWidget, /) -> None: ... method addRow (line 1803) | def addRow(self, widget: QWidget, /) -> None: ... method addRow (line 1805) | def addRow(self, layout: QLayout, /) -> None: ... method count (line 1806) | def count(self, /) -> int: ... method expandingDirections (line 1807) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method fieldGrowthPolicy (line 1808) | def fieldGrowthPolicy(self, /) -> QFormLayout.FieldGrowthPolicy: ... method formAlignment (line 1809) | def formAlignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method getItemPosition (line 1810) | def getItemPosition(self, index: int, /) -> typing.Any: ... method getLayoutPosition (line 1811) | def getLayoutPosition(self, layout: QLayout, /) -> Tuple[int, QFormLay... method getWidgetPosition (line 1812) | def getWidgetPosition(self, widget: QWidget, /) -> typing.Any: ... method hasHeightForWidth (line 1813) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 1814) | def heightForWidth(self, width: int, /) -> int: ... method horizontalSpacing (line 1815) | def horizontalSpacing(self, /) -> int: ... method insertRow (line 1817) | def insertRow(self, row: int, labelText: str, field: QLayout, /) -> No... method insertRow (line 1819) | def insertRow(self, row: int, labelText: str, field: QWidget, /) -> No... method insertRow (line 1821) | def insertRow(self, row: int, label: QWidget, field: QLayout, /) -> No... method insertRow (line 1823) | def insertRow(self, row: int, label: QWidget, field: QWidget, /) -> No... method insertRow (line 1825) | def insertRow(self, row: int, widget: QWidget, /) -> None: ... method insertRow (line 1827) | def insertRow(self, row: int, layout: QLayout, /) -> None: ... method invalidate (line 1828) | def invalidate(self, /) -> None: ... method isRowVisible (line 1830) | def isRowVisible(self, widget: QWidget, /) -> bool: ... method isRowVisible (line 1832) | def isRowVisible(self, row: int, /) -> bool: ... method isRowVisible (line 1834) | def isRowVisible(self, layout: QLayout, /) -> bool: ... method itemAt (line 1836) | def itemAt(self, row: int, role: QFormLayout.ItemRole, /) -> QLayoutIt... method itemAt (line 1838) | def itemAt(self, index: int, /) -> QLayoutItem: ... method labelAlignment (line 1839) | def labelAlignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method labelForField (line 1841) | def labelForField(self, field: QLayout, /) -> QWidget: ... method labelForField (line 1843) | def labelForField(self, field: QWidget, /) -> QWidget: ... method minimumSize (line 1844) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method removeRow (line 1846) | def removeRow(self, widget: QWidget, /) -> None: ... method removeRow (line 1848) | def removeRow(self, row: int, /) -> None: ... method removeRow (line 1850) | def removeRow(self, layout: QLayout, /) -> None: ... method rowCount (line 1851) | def rowCount(self, /) -> int: ... method rowWrapPolicy (line 1852) | def rowWrapPolicy(self, /) -> QFormLayout.RowWrapPolicy: ... method setFieldGrowthPolicy (line 1853) | def setFieldGrowthPolicy(self, policy: QFormLayout.FieldGrowthPolicy, ... method setFormAlignment (line 1854) | def setFormAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag,... method setGeometry (line 1855) | def setGeometry(self, rect: PySide6.QtCore.QRect, /) -> None: ... method setHorizontalSpacing (line 1856) | def setHorizontalSpacing(self, spacing: int, /) -> None: ... method setItem (line 1857) | def setItem(self, row: int, role: QFormLayout.ItemRole, item: QLayoutI... method setLabelAlignment (line 1858) | def setLabelAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag... method setLayout (line 1859) | def setLayout(self, row: int, role: QFormLayout.ItemRole, layout: QLay... method setRowVisible (line 1861) | def setRowVisible(self, widget: QWidget, on: bool, /) -> None: ... method setRowVisible (line 1863) | def setRowVisible(self, row: int, on: bool, /) -> None: ... method setRowVisible (line 1865) | def setRowVisible(self, layout: QLayout, on: bool, /) -> None: ... method setRowWrapPolicy (line 1866) | def setRowWrapPolicy(self, policy: QFormLayout.RowWrapPolicy, /) -> No... method setSpacing (line 1867) | def setSpacing(self, arg__1: int, /) -> None: ... method setVerticalSpacing (line 1868) | def setVerticalSpacing(self, spacing: int, /) -> None: ... method setWidget (line 1869) | def setWidget(self, row: int, role: QFormLayout.ItemRole, widget: QWid... method sizeHint (line 1870) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method spacing (line 1871) | def spacing(self, /) -> int: ... method takeAt (line 1872) | def takeAt(self, index: int, /) -> QLayoutItem: ... method takeRow (line 1874) | def takeRow(self, widget: QWidget, /) -> QFormLayout.TakeRowResult: ... method takeRow (line 1876) | def takeRow(self, row: int, /) -> QFormLayout.TakeRowResult: ... method takeRow (line 1878) | def takeRow(self, layout: QLayout, /) -> QFormLayout.TakeRowResult: ... method verticalSpacing (line 1879) | def verticalSpacing(self, /) -> int: ... class QFrame (line 1881) | class QFrame(QWidget): class Shadow (line 1882) | class Shadow(enum.IntEnum): class Shape (line 1887) | class Shape(enum.IntEnum): class StyleMask (line 1896) | class StyleMask(enum.Enum): method __init__ (line 1900) | def __init__(self, /, parent: QWidget | None = ..., f: PySide6.QtCore.... method changeEvent (line 1901) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method drawFrame (line 1902) | def drawFrame(self, arg__1: PySide6.QtGui.QPainter, /) -> None: ... method event (line 1903) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method frameRect (line 1904) | def frameRect(self, /) -> PySide6.QtCore.QRect: ... method frameShadow (line 1905) | def frameShadow(self, /) -> QFrame.Shadow: ... method frameShape (line 1906) | def frameShape(self, /) -> QFrame.Shape: ... method frameStyle (line 1907) | def frameStyle(self, /) -> int: ... method frameWidth (line 1908) | def frameWidth(self, /) -> int: ... method initStyleOption (line 1909) | def initStyleOption(self, option: QStyleOptionFrame, /) -> None: ... method lineWidth (line 1910) | def lineWidth(self, /) -> int: ... method midLineWidth (line 1911) | def midLineWidth(self, /) -> int: ... method paintEvent (line 1912) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method setFrameRect (line 1913) | def setFrameRect(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method setFrameShadow (line 1914) | def setFrameShadow(self, arg__1: QFrame.Shadow, /) -> None: ... method setFrameShape (line 1915) | def setFrameShape(self, arg__1: QFrame.Shape, /) -> None: ... method setFrameStyle (line 1916) | def setFrameStyle(self, arg__1: int, /) -> None: ... method setLineWidth (line 1917) | def setLineWidth(self, arg__1: int, /) -> None: ... method setMidLineWidth (line 1918) | def setMidLineWidth(self, arg__1: int, /) -> None: ... method sizeHint (line 1919) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QGesture (line 1921) | class QGesture(PySide6.QtCore.QObject): class GestureCancelPolicy (line 1922) | class GestureCancelPolicy(enum.Enum): method __init__ (line 1926) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method gestureCancelPolicy (line 1927) | def gestureCancelPolicy(self, /) -> QGesture.GestureCancelPolicy: ... method gestureType (line 1928) | def gestureType(self, /) -> PySide6.QtCore.Qt.GestureType: ... method hasHotSpot (line 1929) | def hasHotSpot(self, /) -> bool: ... method hotSpot (line 1930) | def hotSpot(self, /) -> PySide6.QtCore.QPointF: ... method setGestureCancelPolicy (line 1931) | def setGestureCancelPolicy(self, policy: QGesture.GestureCancelPolicy,... method setHotSpot (line 1932) | def setHotSpot(self, value: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method state (line 1933) | def state(self, /) -> PySide6.QtCore.Qt.GestureState: ... method unsetHotSpot (line 1934) | def unsetHotSpot(self, /) -> None: ... class QGestureEvent (line 1936) | class QGestureEvent(PySide6.QtCore.QEvent): method __init__ (line 1937) | def __init__(self, gestures: typing.Iterable[QGesture], /) -> None: ... method accept (line 1939) | def accept(self, arg__1: PySide6.QtCore.Qt.GestureType, /) -> None: ... method accept (line 1941) | def accept(self, arg__1: QGesture, /) -> None: ... method accept (line 1943) | def accept(self, /) -> None: ... method activeGestures (line 1944) | def activeGestures(self, /) -> List[QGesture]: ... method canceledGestures (line 1945) | def canceledGestures(self, /) -> List[QGesture]: ... method gesture (line 1946) | def gesture(self, type: PySide6.QtCore.Qt.GestureType, /) -> QGesture:... method gestures (line 1947) | def gestures(self, /) -> List[QGesture]: ... method ignore (line 1949) | def ignore(self, arg__1: PySide6.QtCore.Qt.GestureType, /) -> None: ... method ignore (line 1951) | def ignore(self, arg__1: QGesture, /) -> None: ... method ignore (line 1953) | def ignore(self, /) -> None: ... method isAccepted (line 1955) | def isAccepted(self, arg__1: PySide6.QtCore.Qt.GestureType, /) -> bool... method isAccepted (line 1957) | def isAccepted(self, arg__1: QGesture, /) -> bool: ... method isAccepted (line 1959) | def isAccepted(self, /) -> bool: ... method mapToGraphicsScene (line 1960) | def mapToGraphicsScene(self, gesturePoint: PySide6.QtCore.QPointF | Py... method setAccepted (line 1962) | def setAccepted(self, arg__1: PySide6.QtCore.Qt.GestureType, arg__2: b... method setAccepted (line 1964) | def setAccepted(self, arg__1: QGesture, arg__2: bool, /) -> None: ... method setAccepted (line 1966) | def setAccepted(self, accepted: bool, /) -> None: ... method setWidget (line 1967) | def setWidget(self, widget: QWidget, /) -> None: ... method widget (line 1968) | def widget(self, /) -> QWidget: ... class QGestureRecognizer (line 1970) | class QGestureRecognizer(shiboken6.Object): class ResultFlag (line 1971) | class ResultFlag(enum.Flag): method __init__ (line 1980) | def __init__(self, /) -> None: ... method create (line 1981) | def create(self, target: PySide6.QtCore.QObject, /) -> QGesture: ... method recognize (line 1982) | def recognize(self, state: QGesture, watched: PySide6.QtCore.QObject, ... method registerRecognizer (line 1984) | def registerRecognizer(recognizer: QGestureRecognizer, /) -> PySide6.Q... method reset (line 1985) | def reset(self, state: QGesture, /) -> None: ... method unregisterRecognizer (line 1987) | def unregisterRecognizer(type: PySide6.QtCore.Qt.GestureType, /) -> No... class QGraphicsAnchor (line 1989) | class QGraphicsAnchor(PySide6.QtCore.QObject): method __init__ (line 1991) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method setSizePolicy (line 1992) | def setSizePolicy(self, policy: QSizePolicy.Policy, /) -> None: ... method setSpacing (line 1993) | def setSpacing(self, spacing: float, /) -> None: ... method sizePolicy (line 1994) | def sizePolicy(self, /) -> QSizePolicy.Policy: ... method spacing (line 1995) | def spacing(self, /) -> float: ... method unsetSpacing (line 1996) | def unsetSpacing(self, /) -> None: ... class QGraphicsAnchorLayout (line 1998) | class QGraphicsAnchorLayout(QGraphicsLayout): method __init__ (line 1999) | def __init__(self, /, parent: QGraphicsLayoutItem | None = ...) -> Non... method addAnchor (line 2000) | def addAnchor(self, firstItem: QGraphicsLayoutItem, firstEdge: PySide6... method addAnchors (line 2001) | def addAnchors(self, firstItem: QGraphicsLayoutItem, secondItem: QGrap... method addCornerAnchors (line 2002) | def addCornerAnchors(self, firstItem: QGraphicsLayoutItem, firstCorner... method anchor (line 2003) | def anchor(self, firstItem: QGraphicsLayoutItem, firstEdge: PySide6.Qt... method count (line 2004) | def count(self, /) -> int: ... method horizontalSpacing (line 2005) | def horizontalSpacing(self, /) -> float: ... method invalidate (line 2006) | def invalidate(self, /) -> None: ... method itemAt (line 2007) | def itemAt(self, index: int, /) -> QGraphicsLayoutItem: ... method removeAt (line 2008) | def removeAt(self, index: int, /) -> None: ... method setGeometry (line 2009) | def setGeometry(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setHorizontalSpacing (line 2010) | def setHorizontalSpacing(self, spacing: float, /) -> None: ... method setSpacing (line 2011) | def setSpacing(self, spacing: float, /) -> None: ... method setVerticalSpacing (line 2012) | def setVerticalSpacing(self, spacing: float, /) -> None: ... method sizeHint (line 2013) | def sizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, constraint: P... method verticalSpacing (line 2014) | def verticalSpacing(self, /) -> float: ... class QGraphicsBlurEffect (line 2016) | class QGraphicsBlurEffect(QGraphicsEffect): class BlurHint (line 2017) | class BlurHint(enum.Flag): method __init__ (line 2024) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method blurHints (line 2025) | def blurHints(self, /) -> QGraphicsBlurEffect.BlurHint: ... method blurRadius (line 2026) | def blurRadius(self, /) -> float: ... method boundingRectFor (line 2027) | def boundingRectFor(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore... method draw (line 2028) | def draw(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method setBlurHints (line 2029) | def setBlurHints(self, hints: QGraphicsBlurEffect.BlurHint, /) -> None... method setBlurRadius (line 2030) | def setBlurRadius(self, blurRadius: float, /) -> None: ... class QGraphicsColorizeEffect (line 2032) | class QGraphicsColorizeEffect(QGraphicsEffect): method __init__ (line 2036) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method color (line 2037) | def color(self, /) -> PySide6.QtGui.QColor: ... method draw (line 2038) | def draw(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method setColor (line 2039) | def setColor(self, c: Union[PySide6.QtGui.QColor, str, PySide6.QtGui.Q... method setStrength (line 2040) | def setStrength(self, strength: float, /) -> None: ... method strength (line 2041) | def strength(self, /) -> float: ... class QGraphicsDropShadowEffect (line 2043) | class QGraphicsDropShadowEffect(QGraphicsEffect): method __init__ (line 2048) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method blurRadius (line 2049) | def blurRadius(self, /) -> float: ... method boundingRectFor (line 2050) | def boundingRectFor(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore... method color (line 2051) | def color(self, /) -> PySide6.QtGui.QColor: ... method draw (line 2052) | def draw(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method offset (line 2053) | def offset(self, /) -> PySide6.QtCore.QPointF: ... method setBlurRadius (line 2054) | def setBlurRadius(self, blurRadius: float, /) -> None: ... method setColor (line 2055) | def setColor(self, color: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setOffset (line 2057) | def setOffset(self, dx: float, dy: float, /) -> None: ... method setOffset (line 2059) | def setOffset(self, ofs: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method setOffset (line 2061) | def setOffset(self, d: float, /) -> None: ... method setXOffset (line 2062) | def setXOffset(self, dx: float, /) -> None: ... method setYOffset (line 2063) | def setYOffset(self, dy: float, /) -> None: ... method xOffset (line 2064) | def xOffset(self, /) -> float: ... method yOffset (line 2065) | def yOffset(self, /) -> float: ... class QGraphicsEffect (line 2067) | class QGraphicsEffect(PySide6.QtCore.QObject): class ChangeFlag (line 2068) | class ChangeFlag(enum.Flag): class PixmapPadMode (line 2074) | class PixmapPadMode(enum.Enum): method __init__ (line 2080) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method boundingRect (line 2081) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method boundingRectFor (line 2082) | def boundingRectFor(self, sourceRect: PySide6.QtCore.QRectF | PySide6.... method draw (line 2083) | def draw(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method drawSource (line 2084) | def drawSource(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method isEnabled (line 2085) | def isEnabled(self, /) -> bool: ... method setEnabled (line 2086) | def setEnabled(self, enable: bool, /) -> None: ... method sourceBoundingRect (line 2087) | def sourceBoundingRect(self, /, system: PySide6.QtCore.Qt.CoordinateSy... method sourceChanged (line 2088) | def sourceChanged(self, flags: QGraphicsEffect.ChangeFlag, /) -> None:... method sourceIsPixmap (line 2089) | def sourceIsPixmap(self, /) -> bool: ... method sourcePixmap (line 2090) | def sourcePixmap(self, /, system: PySide6.QtCore.Qt.CoordinateSystem =... method update (line 2091) | def update(self, /) -> None: ... method updateBoundingRect (line 2092) | def updateBoundingRect(self, /) -> None: ... class QGraphicsEllipseItem (line 2094) | class QGraphicsEllipseItem(QAbstractGraphicsShapeItem): method __init__ (line 2096) | def __init__(self, x: float, y: float, w: float, h: float, /, parent: ... method __init__ (line 2098) | def __init__(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method __init__ (line 2100) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 2101) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 2102) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 2103) | def extension(self, variant: Any, /) -> Any: ... method isObscuredBy (line 2104) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 2105) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2106) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method rect (line 2107) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setRect (line 2109) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRect (line 2111) | def setRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method setSpanAngle (line 2112) | def setSpanAngle(self, angle: int, /) -> None: ... method setStartAngle (line 2113) | def setStartAngle(self, angle: int, /) -> None: ... method shape (line 2114) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method spanAngle (line 2115) | def spanAngle(self, /) -> int: ... method startAngle (line 2116) | def startAngle(self, /) -> int: ... method type (line 2117) | def type(self, /) -> int: ... class QGraphicsGridLayout (line 2119) | class QGraphicsGridLayout(QGraphicsLayout): method __init__ (line 2120) | def __init__(self, /, parent: QGraphicsLayoutItem | None = ...) -> Non... method addItem (line 2122) | def addItem(self, item: QGraphicsLayoutItem, row: int, column: int, ro... method addItem (line 2124) | def addItem(self, item: QGraphicsLayoutItem, row: int, column: int, /,... method alignment (line 2125) | def alignment(self, item: QGraphicsLayoutItem, /) -> PySide6.QtCore.Qt... method columnAlignment (line 2126) | def columnAlignment(self, column: int, /) -> PySide6.QtCore.Qt.Alignme... method columnCount (line 2127) | def columnCount(self, /) -> int: ... method columnMaximumWidth (line 2128) | def columnMaximumWidth(self, column: int, /) -> float: ... method columnMinimumWidth (line 2129) | def columnMinimumWidth(self, column: int, /) -> float: ... method columnPreferredWidth (line 2130) | def columnPreferredWidth(self, column: int, /) -> float: ... method columnSpacing (line 2131) | def columnSpacing(self, column: int, /) -> float: ... method columnStretchFactor (line 2132) | def columnStretchFactor(self, column: int, /) -> int: ... method count (line 2133) | def count(self, /) -> int: ... method horizontalSpacing (line 2134) | def horizontalSpacing(self, /) -> float: ... method invalidate (line 2135) | def invalidate(self, /) -> None: ... method itemAt (line 2137) | def itemAt(self, row: int, column: int, /) -> QGraphicsLayoutItem: ... method itemAt (line 2139) | def itemAt(self, index: int, /) -> QGraphicsLayoutItem: ... method removeAt (line 2140) | def removeAt(self, index: int, /) -> None: ... method removeItem (line 2141) | def removeItem(self, item: QGraphicsLayoutItem, /) -> None: ... method rowAlignment (line 2142) | def rowAlignment(self, row: int, /) -> PySide6.QtCore.Qt.AlignmentFlag... method rowCount (line 2143) | def rowCount(self, /) -> int: ... method rowMaximumHeight (line 2144) | def rowMaximumHeight(self, row: int, /) -> float: ... method rowMinimumHeight (line 2145) | def rowMinimumHeight(self, row: int, /) -> float: ... method rowPreferredHeight (line 2146) | def rowPreferredHeight(self, row: int, /) -> float: ... method rowSpacing (line 2147) | def rowSpacing(self, row: int, /) -> float: ... method rowStretchFactor (line 2148) | def rowStretchFactor(self, row: int, /) -> int: ... method setAlignment (line 2149) | def setAlignment(self, item: QGraphicsLayoutItem, alignment: PySide6.Q... method setColumnAlignment (line 2150) | def setColumnAlignment(self, column: int, alignment: PySide6.QtCore.Qt... method setColumnFixedWidth (line 2151) | def setColumnFixedWidth(self, column: int, width: float, /) -> None: ... method setColumnMaximumWidth (line 2152) | def setColumnMaximumWidth(self, column: int, width: float, /) -> None:... method setColumnMinimumWidth (line 2153) | def setColumnMinimumWidth(self, column: int, width: float, /) -> None:... method setColumnPreferredWidth (line 2154) | def setColumnPreferredWidth(self, column: int, width: float, /) -> Non... method setColumnSpacing (line 2155) | def setColumnSpacing(self, column: int, spacing: float, /) -> None: ... method setColumnStretchFactor (line 2156) | def setColumnStretchFactor(self, column: int, stretch: int, /) -> None... method setGeometry (line 2157) | def setGeometry(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setHorizontalSpacing (line 2158) | def setHorizontalSpacing(self, spacing: float, /) -> None: ... method setRowAlignment (line 2159) | def setRowAlignment(self, row: int, alignment: PySide6.QtCore.Qt.Align... method setRowFixedHeight (line 2160) | def setRowFixedHeight(self, row: int, height: float, /) -> None: ... method setRowMaximumHeight (line 2161) | def setRowMaximumHeight(self, row: int, height: float, /) -> None: ... method setRowMinimumHeight (line 2162) | def setRowMinimumHeight(self, row: int, height: float, /) -> None: ... method setRowPreferredHeight (line 2163) | def setRowPreferredHeight(self, row: int, height: float, /) -> None: ... method setRowSpacing (line 2164) | def setRowSpacing(self, row: int, spacing: float, /) -> None: ... method setRowStretchFactor (line 2165) | def setRowStretchFactor(self, row: int, stretch: int, /) -> None: ... method setSpacing (line 2166) | def setSpacing(self, spacing: float, /) -> None: ... method setVerticalSpacing (line 2167) | def setVerticalSpacing(self, spacing: float, /) -> None: ... method sizeHint (line 2168) | def sizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, constraint: P... method verticalSpacing (line 2169) | def verticalSpacing(self, /) -> float: ... class QGraphicsItem (line 2171) | class QGraphicsItem(shiboken6.Object): class CacheMode (line 2172) | class CacheMode(enum.Enum): class Extension (line 2177) | class Extension(enum.Enum): class GraphicsItemChange (line 2180) | class GraphicsItemChange(enum.Enum): class GraphicsItemFlag (line 2215) | class GraphicsItemFlag(enum.Flag): class PanelModality (line 2237) | class PanelModality(enum.Enum): method __init__ (line 2242) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method acceptDrops (line 2243) | def acceptDrops(self, /) -> bool: ... method acceptHoverEvents (line 2244) | def acceptHoverEvents(self, /) -> bool: ... method acceptTouchEvents (line 2245) | def acceptTouchEvents(self, /) -> bool: ... method acceptedMouseButtons (line 2246) | def acceptedMouseButtons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method addToIndex (line 2247) | def addToIndex(self, /) -> None: ... method advance (line 2248) | def advance(self, phase: int, /) -> None: ... method boundingRect (line 2249) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method boundingRegion (line 2250) | def boundingRegion(self, itemToDeviceTransform: PySide6.QtGui.QTransfo... method boundingRegionGranularity (line 2251) | def boundingRegionGranularity(self, /) -> float: ... method cacheMode (line 2252) | def cacheMode(self, /) -> QGraphicsItem.CacheMode: ... method childItems (line 2253) | def childItems(self, /) -> List[QGraphicsItem]: ... method childrenBoundingRect (line 2254) | def childrenBoundingRect(self, /) -> PySide6.QtCore.QRectF: ... method clearFocus (line 2255) | def clearFocus(self, /) -> None: ... method clipPath (line 2256) | def clipPath(self, /) -> PySide6.QtGui.QPainterPath: ... method collidesWithItem (line 2257) | def collidesWithItem(self, other: QGraphicsItem, /, mode: PySide6.QtCo... method collidesWithPath (line 2258) | def collidesWithPath(self, path: PySide6.QtGui.QPainterPath, /, mode: ... method collidingItems (line 2259) | def collidingItems(self, /, mode: PySide6.QtCore.Qt.ItemSelectionMode ... method commonAncestorItem (line 2260) | def commonAncestorItem(self, other: QGraphicsItem, /) -> QGraphicsItem... method contains (line 2261) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method contextMenuEvent (line 2262) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent, /) -... method cursor (line 2263) | def cursor(self, /) -> PySide6.QtGui.QCursor: ... method data (line 2264) | def data(self, key: int, /) -> Any: ... method deviceTransform (line 2265) | def deviceTransform(self, viewportTransform: PySide6.QtGui.QTransform,... method dragEnterEvent (line 2266) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragLeaveEvent (line 2267) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragMoveEvent (line 2268) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None... method dropEvent (line 2269) | def dropEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None: ... method effectiveOpacity (line 2270) | def effectiveOpacity(self, /) -> float: ... method ensureVisible (line 2272) | def ensureVisible(self, x: float, y: float, w: float, h: float, /, xma... method ensureVisible (line 2274) | def ensureVisible(self, /, rect: PySide6.QtCore.QRectF | PySide6.QtCor... method extension (line 2275) | def extension(self, variant: Any, /) -> Any: ... method filtersChildEvents (line 2276) | def filtersChildEvents(self, /) -> bool: ... method flags (line 2277) | def flags(self, /) -> QGraphicsItem.GraphicsItemFlag: ... method focusInEvent (line 2278) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusItem (line 2279) | def focusItem(self, /) -> QGraphicsItem: ... method focusOutEvent (line 2280) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusProxy (line 2281) | def focusProxy(self, /) -> QGraphicsItem: ... method focusScopeItem (line 2282) | def focusScopeItem(self, /) -> QGraphicsItem: ... method grabKeyboard (line 2283) | def grabKeyboard(self, /) -> None: ... method grabMouse (line 2284) | def grabMouse(self, /) -> None: ... method graphicsEffect (line 2285) | def graphicsEffect(self, /) -> QGraphicsEffect: ... method group (line 2286) | def group(self, /) -> QGraphicsItemGroup: ... method handlesChildEvents (line 2287) | def handlesChildEvents(self, /) -> bool: ... method hasCursor (line 2288) | def hasCursor(self, /) -> bool: ... method hasFocus (line 2289) | def hasFocus(self, /) -> bool: ... method hide (line 2290) | def hide(self, /) -> None: ... method hoverEnterEvent (line 2291) | def hoverEnterEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverLeaveEvent (line 2292) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverMoveEvent (line 2293) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None: ... method inputMethodEvent (line 2294) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodHints (line 2295) | def inputMethodHints(self, /) -> PySide6.QtCore.Qt.InputMethodHint: ... method inputMethodQuery (line 2296) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method installSceneEventFilter (line 2297) | def installSceneEventFilter(self, filterItem: QGraphicsItem, /) -> Non... method isActive (line 2298) | def isActive(self, /) -> bool: ... method isAncestorOf (line 2299) | def isAncestorOf(self, child: QGraphicsItem, /) -> bool: ... method isBlockedByModalPanel (line 2300) | def isBlockedByModalPanel(self, /) -> Tuple[bool, QGraphicsItem]: ... method isClipped (line 2301) | def isClipped(self, /) -> bool: ... method isEnabled (line 2302) | def isEnabled(self, /) -> bool: ... method isObscured (line 2304) | def isObscured(self, x: float, y: float, w: float, h: float, /) -> boo... method isObscured (line 2306) | def isObscured(self, /, rect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method isObscuredBy (line 2307) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method isPanel (line 2308) | def isPanel(self, /) -> bool: ... method isSelected (line 2309) | def isSelected(self, /) -> bool: ... method isUnderMouse (line 2310) | def isUnderMouse(self, /) -> bool: ... method isVisible (line 2311) | def isVisible(self, /) -> bool: ... method isVisibleTo (line 2312) | def isVisibleTo(self, parent: QGraphicsItem, /) -> bool: ... method isWidget (line 2313) | def isWidget(self, /) -> bool: ... method isWindow (line 2314) | def isWindow(self, /) -> bool: ... method itemChange (line 2315) | def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: ... method itemTransform (line 2316) | def itemTransform(self, other: QGraphicsItem, /) -> Tuple[PySide6.QtGu... method keyPressEvent (line 2317) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 2318) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method mapFromItem (line 2320) | def mapFromItem(self, item: QGraphicsItem, x: float, y: float, w: floa... method mapFromItem (line 2322) | def mapFromItem(self, item: QGraphicsItem, x: float, y: float, /) -> P... method mapFromItem (line 2324) | def mapFromItem(self, item: QGraphicsItem, rect: PySide6.QtCore.QRectF... method mapFromItem (line 2326) | def mapFromItem(self, item: QGraphicsItem, polygon: PySide6.QtGui.QPol... method mapFromItem (line 2328) | def mapFromItem(self, item: QGraphicsItem, point: PySide6.QtCore.QPoin... method mapFromItem (line 2330) | def mapFromItem(self, item: QGraphicsItem, path: PySide6.QtGui.QPainte... method mapFromParent (line 2332) | def mapFromParent(self, x: float, y: float, w: float, h: float, /) -> ... method mapFromParent (line 2334) | def mapFromParent(self, x: float, y: float, /) -> PySide6.QtCore.QPoin... method mapFromParent (line 2336) | def mapFromParent(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method mapFromParent (line 2338) | def mapFromParent(self, polygon: PySide6.QtGui.QPolygonF | typing.Iter... method mapFromParent (line 2340) | def mapFromParent(self, point: PySide6.QtCore.QPointF | PySide6.QtCore... method mapFromParent (line 2342) | def mapFromParent(self, path: PySide6.QtGui.QPainterPath, /) -> PySide... method mapFromScene (line 2344) | def mapFromScene(self, x: float, y: float, w: float, h: float, /) -> P... method mapFromScene (line 2346) | def mapFromScene(self, x: float, y: float, /) -> PySide6.QtCore.QPoint... method mapFromScene (line 2348) | def mapFromScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method mapFromScene (line 2350) | def mapFromScene(self, polygon: PySide6.QtGui.QPolygonF | typing.Itera... method mapFromScene (line 2352) | def mapFromScene(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.... method mapFromScene (line 2354) | def mapFromScene(self, path: PySide6.QtGui.QPainterPath, /) -> PySide6... method mapRectFromItem (line 2356) | def mapRectFromItem(self, item: QGraphicsItem, x: float, y: float, w: ... method mapRectFromItem (line 2358) | def mapRectFromItem(self, item: QGraphicsItem, rect: PySide6.QtCore.QR... method mapRectFromParent (line 2360) | def mapRectFromParent(self, x: float, y: float, w: float, h: float, /)... method mapRectFromParent (line 2362) | def mapRectFromParent(self, rect: PySide6.QtCore.QRectF | PySide6.QtCo... method mapRectFromScene (line 2364) | def mapRectFromScene(self, x: float, y: float, w: float, h: float, /) ... method mapRectFromScene (line 2366) | def mapRectFromScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCor... method mapRectToItem (line 2368) | def mapRectToItem(self, item: QGraphicsItem, x: float, y: float, w: fl... method mapRectToItem (line 2370) | def mapRectToItem(self, item: QGraphicsItem, rect: PySide6.QtCore.QRec... method mapRectToParent (line 2372) | def mapRectToParent(self, x: float, y: float, w: float, h: float, /) -... method mapRectToParent (line 2374) | def mapRectToParent(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore... method mapRectToScene (line 2376) | def mapRectToScene(self, x: float, y: float, w: float, h: float, /) ->... method mapRectToScene (line 2378) | def mapRectToScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.... method mapToItem (line 2380) | def mapToItem(self, item: QGraphicsItem, x: float, y: float, w: float,... method mapToItem (line 2382) | def mapToItem(self, item: QGraphicsItem, x: float, y: float, /) -> PyS... method mapToItem (line 2384) | def mapToItem(self, item: QGraphicsItem, rect: PySide6.QtCore.QRectF |... method mapToItem (line 2386) | def mapToItem(self, item: QGraphicsItem, polygon: PySide6.QtGui.QPolyg... method mapToItem (line 2388) | def mapToItem(self, item: QGraphicsItem, point: PySide6.QtCore.QPointF... method mapToItem (line 2390) | def mapToItem(self, item: QGraphicsItem, path: PySide6.QtGui.QPainterP... method mapToParent (line 2392) | def mapToParent(self, x: float, y: float, w: float, h: float, /) -> Py... method mapToParent (line 2394) | def mapToParent(self, x: float, y: float, /) -> PySide6.QtCore.QPointF... method mapToParent (line 2396) | def mapToParent(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method mapToParent (line 2398) | def mapToParent(self, polygon: PySide6.QtGui.QPolygonF | typing.Iterab... method mapToParent (line 2400) | def mapToParent(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.Q... method mapToParent (line 2402) | def mapToParent(self, path: PySide6.QtGui.QPainterPath, /) -> PySide6.... method mapToScene (line 2404) | def mapToScene(self, x: float, y: float, w: float, h: float, /) -> PyS... method mapToScene (line 2406) | def mapToScene(self, x: float, y: float, /) -> PySide6.QtCore.QPointF:... method mapToScene (line 2408) | def mapToScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method mapToScene (line 2410) | def mapToScene(self, polygon: PySide6.QtGui.QPolygonF | typing.Iterabl... method mapToScene (line 2412) | def mapToScene(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method mapToScene (line 2414) | def mapToScene(self, path: PySide6.QtGui.QPainterPath, /) -> PySide6.Q... method mouseDoubleClickEvent (line 2415) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent, /) ->... method mouseMoveEvent (line 2416) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent, /) -> None: ... method mousePressEvent (line 2417) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent, /) -> None:... method mouseReleaseEvent (line 2418) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent, /) -> Non... method moveBy (line 2419) | def moveBy(self, dx: float, dy: float, /) -> None: ... method opacity (line 2420) | def opacity(self, /) -> float: ... method opaqueArea (line 2421) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2422) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method panel (line 2423) | def panel(self, /) -> QGraphicsItem: ... method panelModality (line 2424) | def panelModality(self, /) -> QGraphicsItem.PanelModality: ... method parentItem (line 2425) | def parentItem(self, /) -> QGraphicsItem: ... method parentObject (line 2426) | def parentObject(self, /) -> QGraphicsObject: ... method parentWidget (line 2427) | def parentWidget(self, /) -> QGraphicsWidget: ... method pos (line 2428) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method prepareGeometryChange (line 2429) | def prepareGeometryChange(self, /) -> None: ... method removeFromIndex (line 2430) | def removeFromIndex(self, /) -> None: ... method removeSceneEventFilter (line 2431) | def removeSceneEventFilter(self, filterItem: QGraphicsItem, /) -> None... method resetTransform (line 2432) | def resetTransform(self, /) -> None: ... method rotation (line 2433) | def rotation(self, /) -> float: ... method scale (line 2434) | def scale(self, /) -> float: ... method scene (line 2435) | def scene(self, /) -> QGraphicsScene: ... method sceneBoundingRect (line 2436) | def sceneBoundingRect(self, /) -> PySide6.QtCore.QRectF: ... method sceneEvent (line 2437) | def sceneEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method sceneEventFilter (line 2438) | def sceneEventFilter(self, watched: QGraphicsItem, event: PySide6.QtCo... method scenePos (line 2439) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method sceneTransform (line 2440) | def sceneTransform(self, /) -> PySide6.QtGui.QTransform: ... method scroll (line 2441) | def scroll(self, dx: float, dy: float, /, rect: PySide6.QtCore.QRectF ... method setAcceptDrops (line 2442) | def setAcceptDrops(self, on: bool, /) -> None: ... method setAcceptHoverEvents (line 2443) | def setAcceptHoverEvents(self, enabled: bool, /) -> None: ... method setAcceptTouchEvents (line 2444) | def setAcceptTouchEvents(self, enabled: bool, /) -> None: ... method setAcceptedMouseButtons (line 2445) | def setAcceptedMouseButtons(self, buttons: PySide6.QtCore.Qt.MouseButt... method setActive (line 2446) | def setActive(self, active: bool, /) -> None: ... method setBoundingRegionGranularity (line 2447) | def setBoundingRegionGranularity(self, granularity: float, /) -> None:... method setCacheMode (line 2448) | def setCacheMode(self, mode: QGraphicsItem.CacheMode, /, cacheSize: Py... method setCursor (line 2449) | def setCursor(self, cursor: PySide6.QtGui.QCursor | PySide6.QtCore.Qt.... method setData (line 2450) | def setData(self, key: int, value: Any, /) -> None: ... method setEnabled (line 2451) | def setEnabled(self, enabled: bool, /) -> None: ... method setFiltersChildEvents (line 2452) | def setFiltersChildEvents(self, enabled: bool, /) -> None: ... method setFlag (line 2453) | def setFlag(self, flag: QGraphicsItem.GraphicsItemFlag, /, enabled: bo... method setFlags (line 2454) | def setFlags(self, flags: QGraphicsItem.GraphicsItemFlag, /) -> None: ... method setFocus (line 2455) | def setFocus(self, /, focusReason: PySide6.QtCore.Qt.FocusReason = ...... method setFocusProxy (line 2456) | def setFocusProxy(self, item: QGraphicsItem, /) -> None: ... method setGraphicsEffect (line 2457) | def setGraphicsEffect(self, effect: QGraphicsEffect, /) -> None: ... method setGroup (line 2458) | def setGroup(self, group: QGraphicsItemGroup, /) -> None: ... method setHandlesChildEvents (line 2459) | def setHandlesChildEvents(self, enabled: bool, /) -> None: ... method setInputMethodHints (line 2460) | def setInputMethodHints(self, hints: PySide6.QtCore.Qt.InputMethodHint... method setOpacity (line 2461) | def setOpacity(self, opacity: float, /) -> None: ... method setPanelModality (line 2462) | def setPanelModality(self, panelModality: QGraphicsItem.PanelModality,... method setParentItem (line 2463) | def setParentItem(self, parent: QGraphicsItem, /) -> None: ... method setPos (line 2465) | def setPos(self, x: float, y: float, /) -> None: ... method setPos (line 2467) | def setPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method setRotation (line 2468) | def setRotation(self, angle: float, /) -> None: ... method setScale (line 2469) | def setScale(self, scale: float, /) -> None: ... method setSelected (line 2470) | def setSelected(self, selected: bool, /) -> None: ... method setToolTip (line 2471) | def setToolTip(self, toolTip: str, /) -> None: ... method setTransform (line 2472) | def setTransform(self, matrix: PySide6.QtGui.QTransform, /, combine: b... method setTransformOriginPoint (line 2474) | def setTransformOriginPoint(self, ax: float, ay: float, /) -> None: ... method setTransformOriginPoint (line 2476) | def setTransformOriginPoint(self, origin: PySide6.QtCore.QPointF | PyS... method setTransformations (line 2477) | def setTransformations(self, transformations: typing.Iterable[QGraphic... method setVisible (line 2478) | def setVisible(self, visible: bool, /) -> None: ... method setX (line 2479) | def setX(self, x: float, /) -> None: ... method setY (line 2480) | def setY(self, y: float, /) -> None: ... method setZValue (line 2481) | def setZValue(self, z: float, /) -> None: ... method shape (line 2482) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method show (line 2483) | def show(self, /) -> None: ... method stackBefore (line 2484) | def stackBefore(self, sibling: QGraphicsItem, /) -> None: ... method toGraphicsObject (line 2485) | def toGraphicsObject(self, /) -> QGraphicsObject: ... method toolTip (line 2486) | def toolTip(self, /) -> str: ... method topLevelItem (line 2487) | def topLevelItem(self, /) -> QGraphicsItem: ... method topLevelWidget (line 2488) | def topLevelWidget(self, /) -> QGraphicsWidget: ... method transform (line 2489) | def transform(self, /) -> PySide6.QtGui.QTransform: ... method transformOriginPoint (line 2490) | def transformOriginPoint(self, /) -> PySide6.QtCore.QPointF: ... method transformations (line 2491) | def transformations(self, /) -> List[QGraphicsTransform]: ... method type (line 2492) | def type(self, /) -> int: ... method ungrabKeyboard (line 2493) | def ungrabKeyboard(self, /) -> None: ... method ungrabMouse (line 2494) | def ungrabMouse(self, /) -> None: ... method unsetCursor (line 2495) | def unsetCursor(self, /) -> None: ... method update (line 2497) | def update(self, x: float, y: float, width: float, height: float, /) -... method update (line 2499) | def update(self, /, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method updateMicroFocus (line 2500) | def updateMicroFocus(self, /) -> None: ... method wheelEvent (line 2501) | def wheelEvent(self, event: QGraphicsSceneWheelEvent, /) -> None: ... method window (line 2502) | def window(self, /) -> QGraphicsWidget: ... method x (line 2503) | def x(self, /) -> float: ... method y (line 2504) | def y(self, /) -> float: ... method zValue (line 2505) | def zValue(self, /) -> float: ... class QGraphicsItemAnimation (line 2507) | class QGraphicsItemAnimation(PySide6.QtCore.QObject): method __init__ (line 2509) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method afterAnimationStep (line 2510) | def afterAnimationStep(self, step: float, /) -> None: ... method beforeAnimationStep (line 2511) | def beforeAnimationStep(self, step: float, /) -> None: ... method clear (line 2512) | def clear(self, /) -> None: ... method horizontalScaleAt (line 2513) | def horizontalScaleAt(self, step: float, /) -> float: ... method horizontalShearAt (line 2514) | def horizontalShearAt(self, step: float, /) -> float: ... method item (line 2515) | def item(self, /) -> QGraphicsItem: ... method posAt (line 2516) | def posAt(self, step: float, /) -> PySide6.QtCore.QPointF: ... method posList (line 2517) | def posList(self, /) -> List[Tuple[float, PySide6.QtCore.QPointF]]: ... method rotationAt (line 2518) | def rotationAt(self, step: float, /) -> float: ... method rotationList (line 2519) | def rotationList(self, /) -> List[Tuple[float, float]]: ... method scaleList (line 2520) | def scaleList(self, /) -> List[Tuple[float, PySide6.QtCore.QPointF]]: ... method setItem (line 2521) | def setItem(self, item: QGraphicsItem, /) -> None: ... method setPosAt (line 2522) | def setPosAt(self, step: float, pos: PySide6.QtCore.QPointF | PySide6.... method setRotationAt (line 2523) | def setRotationAt(self, step: float, angle: float, /) -> None: ... method setScaleAt (line 2524) | def setScaleAt(self, step: float, sx: float, sy: float, /) -> None: ... method setShearAt (line 2525) | def setShearAt(self, step: float, sh: float, sv: float, /) -> None: ... method setStep (line 2526) | def setStep(self, x: float, /) -> None: ... method setTimeLine (line 2527) | def setTimeLine(self, timeLine: PySide6.QtCore.QTimeLine, /) -> None: ... method setTranslationAt (line 2528) | def setTranslationAt(self, step: float, dx: float, dy: float, /) -> No... method shearList (line 2529) | def shearList(self, /) -> List[Tuple[float, PySide6.QtCore.QPointF]]: ... method timeLine (line 2530) | def timeLine(self, /) -> PySide6.QtCore.QTimeLine: ... method transformAt (line 2531) | def transformAt(self, step: float, /) -> PySide6.QtGui.QTransform: ... method translationList (line 2532) | def translationList(self, /) -> List[Tuple[float, PySide6.QtCore.QPoin... method verticalScaleAt (line 2533) | def verticalScaleAt(self, step: float, /) -> float: ... method verticalShearAt (line 2534) | def verticalShearAt(self, step: float, /) -> float: ... method xTranslationAt (line 2535) | def xTranslationAt(self, step: float, /) -> float: ... method yTranslationAt (line 2536) | def yTranslationAt(self, step: float, /) -> float: ... class QGraphicsItemGroup (line 2538) | class QGraphicsItemGroup(QGraphicsItem): method __init__ (line 2539) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method addToGroup (line 2540) | def addToGroup(self, item: QGraphicsItem, /) -> None: ... method boundingRect (line 2541) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method isObscuredBy (line 2542) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 2543) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2544) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method removeFromGroup (line 2545) | def removeFromGroup(self, item: QGraphicsItem, /) -> None: ... method type (line 2546) | def type(self, /) -> int: ... class QGraphicsLayout (line 2548) | class QGraphicsLayout(QGraphicsLayoutItem): method __init__ (line 2549) | def __init__(self, /, parent: QGraphicsLayoutItem | None = ...) -> Non... method activate (line 2550) | def activate(self, /) -> None: ... method addChildLayoutItem (line 2551) | def addChildLayoutItem(self, layoutItem: QGraphicsLayoutItem, /) -> No... method count (line 2552) | def count(self, /) -> int: ... method getContentsMargins (line 2553) | def getContentsMargins(self, /) -> typing.Any: ... method instantInvalidatePropagation (line 2555) | def instantInvalidatePropagation() -> bool: ... method invalidate (line 2556) | def invalidate(self, /) -> None: ... method isActivated (line 2557) | def isActivated(self, /) -> bool: ... method itemAt (line 2558) | def itemAt(self, i: int, /) -> QGraphicsLayoutItem: ... method removeAt (line 2559) | def removeAt(self, index: int, /) -> None: ... method setContentsMargins (line 2560) | def setContentsMargins(self, left: float, top: float, right: float, bo... method setInstantInvalidatePropagation (line 2562) | def setInstantInvalidatePropagation(enable: bool, /) -> None: ... method updateGeometry (line 2563) | def updateGeometry(self, /) -> None: ... method widgetEvent (line 2564) | def widgetEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... class QGraphicsLayoutItem (line 2566) | class QGraphicsLayoutItem(shiboken6.Object): method __init__ (line 2567) | def __init__(self, /, parent: QGraphicsLayoutItem | None = ..., isLayo... method contentsRect (line 2568) | def contentsRect(self, /) -> PySide6.QtCore.QRectF: ... method effectiveSizeHint (line 2569) | def effectiveSizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, cons... method geometry (line 2570) | def geometry(self, /) -> PySide6.QtCore.QRectF: ... method getContentsMargins (line 2571) | def getContentsMargins(self, /) -> typing.Any: ... method graphicsItem (line 2572) | def graphicsItem(self, /) -> QGraphicsItem: ... method isEmpty (line 2573) | def isEmpty(self, /) -> bool: ... method isLayout (line 2574) | def isLayout(self, /) -> bool: ... method maximumHeight (line 2575) | def maximumHeight(self, /) -> float: ... method maximumSize (line 2576) | def maximumSize(self, /) -> PySide6.QtCore.QSizeF: ... method maximumWidth (line 2577) | def maximumWidth(self, /) -> float: ... method minimumHeight (line 2578) | def minimumHeight(self, /) -> float: ... method minimumSize (line 2579) | def minimumSize(self, /) -> PySide6.QtCore.QSizeF: ... method minimumWidth (line 2580) | def minimumWidth(self, /) -> float: ... method ownedByLayout (line 2581) | def ownedByLayout(self, /) -> bool: ... method parentLayoutItem (line 2582) | def parentLayoutItem(self, /) -> QGraphicsLayoutItem: ... method preferredHeight (line 2583) | def preferredHeight(self, /) -> float: ... method preferredSize (line 2584) | def preferredSize(self, /) -> PySide6.QtCore.QSizeF: ... method preferredWidth (line 2585) | def preferredWidth(self, /) -> float: ... method setGeometry (line 2586) | def setGeometry(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setGraphicsItem (line 2587) | def setGraphicsItem(self, item: QGraphicsItem, /) -> None: ... method setMaximumHeight (line 2588) | def setMaximumHeight(self, height: float, /) -> None: ... method setMaximumSize (line 2590) | def setMaximumSize(self, w: float, h: float, /) -> None: ... method setMaximumSize (line 2592) | def setMaximumSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.... method setMaximumWidth (line 2593) | def setMaximumWidth(self, width: float, /) -> None: ... method setMinimumHeight (line 2594) | def setMinimumHeight(self, height: float, /) -> None: ... method setMinimumSize (line 2596) | def setMinimumSize(self, w: float, h: float, /) -> None: ... method setMinimumSize (line 2598) | def setMinimumSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.... method setMinimumWidth (line 2599) | def setMinimumWidth(self, width: float, /) -> None: ... method setOwnedByLayout (line 2600) | def setOwnedByLayout(self, ownedByLayout: bool, /) -> None: ... method setParentLayoutItem (line 2601) | def setParentLayoutItem(self, parent: QGraphicsLayoutItem, /) -> None:... method setPreferredHeight (line 2602) | def setPreferredHeight(self, height: float, /) -> None: ... method setPreferredSize (line 2604) | def setPreferredSize(self, w: float, h: float, /) -> None: ... method setPreferredSize (line 2606) | def setPreferredSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCor... method setPreferredWidth (line 2607) | def setPreferredWidth(self, width: float, /) -> None: ... method setSizePolicy (line 2609) | def setSizePolicy(self, hPolicy: QSizePolicy.Policy, vPolicy: QSizePol... method setSizePolicy (line 2611) | def setSizePolicy(self, policy: QSizePolicy, /) -> None: ... method sizeHint (line 2612) | def sizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, constraint: P... method sizePolicy (line 2613) | def sizePolicy(self, /) -> QSizePolicy: ... method updateGeometry (line 2614) | def updateGeometry(self, /) -> None: ... class QGraphicsLineItem (line 2616) | class QGraphicsLineItem(QGraphicsItem): method __init__ (line 2618) | def __init__(self, x1: float, y1: float, x2: float, y2: float, /, pare... method __init__ (line 2620) | def __init__(self, line: PySide6.QtCore.QLineF | PySide6.QtCore.QLine,... method __init__ (line 2622) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 2623) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 2624) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 2625) | def extension(self, variant: Any, /) -> Any: ... method isObscuredBy (line 2626) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method line (line 2627) | def line(self, /) -> PySide6.QtCore.QLineF: ... method opaqueArea (line 2628) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2629) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method pen (line 2630) | def pen(self, /) -> PySide6.QtGui.QPen: ... method setLine (line 2632) | def setLine(self, x1: float, y1: float, x2: float, y2: float, /) -> No... method setLine (line 2634) | def setLine(self, line: PySide6.QtCore.QLineF | PySide6.QtCore.QLine, ... method setPen (line 2635) | def setPen(self, pen: PySide6.QtGui.QPen | PySide6.QtCore.Qt.PenStyle ... method shape (line 2636) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method type (line 2637) | def type(self, /) -> int: ... class QGraphicsLinearLayout (line 2639) | class QGraphicsLinearLayout(QGraphicsLayout): method __init__ (line 2641) | def __init__(self, orientation: PySide6.QtCore.Qt.Orientation, /, pare... method __init__ (line 2643) | def __init__(self, /, parent: QGraphicsLayoutItem | None = ...) -> Non... method addItem (line 2644) | def addItem(self, item: QGraphicsLayoutItem, /) -> None: ... method addStretch (line 2645) | def addStretch(self, /, stretch: int = ...) -> None: ... method alignment (line 2646) | def alignment(self, item: QGraphicsLayoutItem, /) -> PySide6.QtCore.Qt... method count (line 2647) | def count(self, /) -> int: ... method dump (line 2648) | def dump(self, /, indent: int | None = ...) -> None: ... method insertItem (line 2649) | def insertItem(self, index: int, item: QGraphicsLayoutItem, /) -> None... method insertStretch (line 2650) | def insertStretch(self, index: int, /, stretch: int = ...) -> None: ... method invalidate (line 2651) | def invalidate(self, /) -> None: ... method itemAt (line 2652) | def itemAt(self, index: int, /) -> QGraphicsLayoutItem: ... method itemSpacing (line 2653) | def itemSpacing(self, index: int, /) -> float: ... method orientation (line 2654) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method removeAt (line 2655) | def removeAt(self, index: int, /) -> None: ... method removeItem (line 2656) | def removeItem(self, item: QGraphicsLayoutItem, /) -> None: ... method setAlignment (line 2657) | def setAlignment(self, item: QGraphicsLayoutItem, alignment: PySide6.Q... method setGeometry (line 2658) | def setGeometry(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setItemSpacing (line 2659) | def setItemSpacing(self, index: int, spacing: float, /) -> None: ... method setOrientation (line 2660) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setSpacing (line 2661) | def setSpacing(self, spacing: float, /) -> None: ... method setStretchFactor (line 2662) | def setStretchFactor(self, item: QGraphicsLayoutItem, stretch: int, /)... method sizeHint (line 2663) | def sizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, constraint: P... method spacing (line 2664) | def spacing(self, /) -> float: ... method stretchFactor (line 2665) | def stretchFactor(self, item: QGraphicsLayoutItem, /) -> int: ... class QGraphicsObject (line 2667) | class QGraphicsObject(PySide6.QtCore.QObject, QGraphicsItem): method __init__ (line 2681) | def __init__(self, /, parent: QGraphicsItem | None = ..., *, opacity: ... method event (line 2682) | def event(self, ev: PySide6.QtCore.QEvent, /) -> bool: ... method grabGesture (line 2683) | def grabGesture(self, type: PySide6.QtCore.Qt.GestureType, /, flags: P... method ungrabGesture (line 2684) | def ungrabGesture(self, type: PySide6.QtCore.Qt.GestureType, /) -> Non... method updateMicroFocus (line 2685) | def updateMicroFocus(self, /) -> None: ... class QGraphicsOpacityEffect (line 2687) | class QGraphicsOpacityEffect(QGraphicsEffect): method __init__ (line 2691) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method draw (line 2692) | def draw(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method opacity (line 2693) | def opacity(self, /) -> float: ... method opacityMask (line 2694) | def opacityMask(self, /) -> PySide6.QtGui.QBrush: ... method setOpacity (line 2695) | def setOpacity(self, opacity: float, /) -> None: ... method setOpacityMask (line 2696) | def setOpacityMask(self, mask: PySide6.QtGui.QBrush | PySide6.QtCore.Q... class QGraphicsPathItem (line 2698) | class QGraphicsPathItem(QAbstractGraphicsShapeItem): method __init__ (line 2700) | def __init__(self, path: PySide6.QtGui.QPainterPath, /, parent: QGraph... method __init__ (line 2702) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 2703) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 2704) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 2705) | def extension(self, variant: Any, /) -> Any: ... method isObscuredBy (line 2706) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 2707) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2708) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method path (line 2709) | def path(self, /) -> PySide6.QtGui.QPainterPath: ... method setPath (line 2710) | def setPath(self, path: PySide6.QtGui.QPainterPath, /) -> None: ... method shape (line 2711) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method type (line 2712) | def type(self, /) -> int: ... class QGraphicsPixmapItem (line 2714) | class QGraphicsPixmapItem(QGraphicsItem): class ShapeMode (line 2715) | class ShapeMode(enum.Enum): method __init__ (line 2720) | def __init__(self, pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.QImag... method __init__ (line 2722) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 2723) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 2724) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 2725) | def extension(self, variant: Any, /) -> Any: ... method isObscuredBy (line 2726) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method offset (line 2727) | def offset(self, /) -> PySide6.QtCore.QPointF: ... method opaqueArea (line 2728) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2729) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method pixmap (line 2730) | def pixmap(self, /) -> PySide6.QtGui.QPixmap: ... method setOffset (line 2732) | def setOffset(self, x: float, y: float, /) -> None: ... method setOffset (line 2734) | def setOffset(self, offset: PySide6.QtCore.QPointF | PySide6.QtCore.QP... method setPixmap (line 2735) | def setPixmap(self, pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.QIma... method setShapeMode (line 2736) | def setShapeMode(self, mode: QGraphicsPixmapItem.ShapeMode, /) -> None... method setTransformationMode (line 2737) | def setTransformationMode(self, mode: PySide6.QtCore.Qt.Transformation... method shape (line 2738) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method shapeMode (line 2739) | def shapeMode(self, /) -> QGraphicsPixmapItem.ShapeMode: ... method transformationMode (line 2740) | def transformationMode(self, /) -> PySide6.QtCore.Qt.TransformationMod... method type (line 2741) | def type(self, /) -> int: ... class QGraphicsPolygonItem (line 2743) | class QGraphicsPolygonItem(QAbstractGraphicsShapeItem): method __init__ (line 2745) | def __init__(self, polygon: PySide6.QtGui.QPolygonF | typing.Iterable[... method __init__ (line 2747) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 2748) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 2749) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 2750) | def extension(self, variant: Any, /) -> Any: ... method fillRule (line 2751) | def fillRule(self, /) -> PySide6.QtCore.Qt.FillRule: ... method isObscuredBy (line 2752) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 2753) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2754) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method polygon (line 2755) | def polygon(self, /) -> PySide6.QtGui.QPolygonF: ... method setFillRule (line 2756) | def setFillRule(self, rule: PySide6.QtCore.Qt.FillRule, /) -> None: ... method setPolygon (line 2757) | def setPolygon(self, polygon: PySide6.QtGui.QPolygonF | typing.Iterabl... method shape (line 2758) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method type (line 2759) | def type(self, /) -> int: ... class QGraphicsProxyWidget (line 2761) | class QGraphicsProxyWidget(QGraphicsWidget): method __init__ (line 2763) | def __init__(self, /, parent: QGraphicsItem | None = ..., wFlags: PySi... method contextMenuEvent (line 2764) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent, /) -... method createProxyForChildWidget (line 2765) | def createProxyForChildWidget(self, child: QWidget, /) -> QGraphicsPro... method dragEnterEvent (line 2766) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragLeaveEvent (line 2767) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragMoveEvent (line 2768) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None... method dropEvent (line 2769) | def dropEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None: ... method event (line 2770) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 2771) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method focusInEvent (line 2772) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 2773) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 2774) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method grabMouseEvent (line 2775) | def grabMouseEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method hideEvent (line 2776) | def hideEvent(self, event: PySide6.QtGui.QHideEvent, /) -> None: ... method hoverEnterEvent (line 2777) | def hoverEnterEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverLeaveEvent (line 2778) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverMoveEvent (line 2779) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None: ... method inputMethodEvent (line 2780) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodQuery (line 2781) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method itemChange (line 2782) | def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: ... method keyPressEvent (line 2783) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 2784) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method mouseDoubleClickEvent (line 2785) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent, /) ->... method mouseMoveEvent (line 2786) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent, /) -> None: ... method mousePressEvent (line 2787) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent, /) -> None:... method mouseReleaseEvent (line 2788) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent, /) -> Non... method newProxyWidget (line 2789) | def newProxyWidget(self, arg__1: QWidget, /) -> QGraphicsProxyWidget: ... method paint (line 2790) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method resizeEvent (line 2791) | def resizeEvent(self, event: QGraphicsSceneResizeEvent, /) -> None: ... method setGeometry (line 2793) | def setGeometry(self, x: float, y: float, w: float, h: float, /) -> No... method setGeometry (line 2795) | def setGeometry(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setWidget (line 2796) | def setWidget(self, widget: QWidget, /) -> None: ... method showEvent (line 2797) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 2798) | def sizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, constraint: P... method subWidgetRect (line 2799) | def subWidgetRect(self, widget: QWidget, /) -> PySide6.QtCore.QRectF: ... method type (line 2800) | def type(self, /) -> int: ... method ungrabMouseEvent (line 2801) | def ungrabMouseEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method wheelEvent (line 2802) | def wheelEvent(self, event: QGraphicsSceneWheelEvent, /) -> None: ... method widget (line 2803) | def widget(self, /) -> QWidget: ... class QGraphicsRectItem (line 2805) | class QGraphicsRectItem(QAbstractGraphicsShapeItem): method __init__ (line 2807) | def __init__(self, x: float, y: float, w: float, h: float, /, parent: ... method __init__ (line 2809) | def __init__(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect,... method __init__ (line 2811) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 2812) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 2813) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 2814) | def extension(self, variant: Any, /) -> Any: ... method isObscuredBy (line 2815) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 2816) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 2817) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method rect (line 2818) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method setRect (line 2820) | def setRect(self, x: float, y: float, w: float, h: float, /) -> None: ... method setRect (line 2822) | def setRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method shape (line 2823) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method type (line 2824) | def type(self, /) -> int: ... class QGraphicsRotation (line 2826) | class QGraphicsRotation(QGraphicsTransform): method __init__ (line 2831) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method angle (line 2832) | def angle(self, /) -> float: ... method applyTo (line 2833) | def applyTo(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6.QtGui.QTr... method axis (line 2834) | def axis(self, /) -> PySide6.QtGui.QVector3D: ... method origin (line 2835) | def origin(self, /) -> PySide6.QtGui.QVector3D: ... method setAngle (line 2836) | def setAngle(self, arg__1: float, /) -> None: ... method setAxis (line 2838) | def setAxis(self, axis: PySide6.QtCore.Qt.Axis, /) -> None: ... method setAxis (line 2840) | def setAxis(self, axis: PySide6.QtGui.QVector3D, /) -> None: ... method setOrigin (line 2841) | def setOrigin(self, point: PySide6.QtGui.QVector3D, /) -> None: ... class QGraphicsScale (line 2843) | class QGraphicsScale(QGraphicsTransform): method __init__ (line 2850) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method applyTo (line 2851) | def applyTo(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6.QtGui.QTr... method origin (line 2852) | def origin(self, /) -> PySide6.QtGui.QVector3D: ... method setOrigin (line 2853) | def setOrigin(self, point: PySide6.QtGui.QVector3D, /) -> None: ... method setXScale (line 2854) | def setXScale(self, arg__1: float, /) -> None: ... method setYScale (line 2855) | def setYScale(self, arg__1: float, /) -> None: ... method setZScale (line 2856) | def setZScale(self, arg__1: float, /) -> None: ... method xScale (line 2857) | def xScale(self, /) -> float: ... method yScale (line 2858) | def yScale(self, /) -> float: ... method zScale (line 2859) | def zScale(self, /) -> float: ... class QGraphicsScene (line 2861) | class QGraphicsScene(PySide6.QtCore.QObject): class ItemIndexMethod (line 2862) | class ItemIndexMethod(enum.Enum): class SceneLayer (line 2866) | class SceneLayer(enum.Flag): method __init__ (line 2877) | def __init__(self, x: float, y: float, width: float, height: float, /,... method __init__ (line 2879) | def __init__(self, sceneRect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method __init__ (line 2881) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method activePanel (line 2882) | def activePanel(self, /) -> QGraphicsItem: ... method activeWindow (line 2883) | def activeWindow(self, /) -> QGraphicsWidget: ... method addEllipse (line 2885) | def addEllipse(self, x: float, y: float, w: float, h: float, /, pen: P... method addEllipse (line 2887) | def addEllipse(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRec... method addItem (line 2888) | def addItem(self, item: QGraphicsItem, /) -> None: ... method addLine (line 2890) | def addLine(self, x1: float, y1: float, x2: float, y2: float, /, pen: ... method addLine (line 2892) | def addLine(self, line: PySide6.QtCore.QLineF | PySide6.QtCore.QLine, ... method addPath (line 2893) | def addPath(self, path: PySide6.QtGui.QPainterPath, /, pen: PySide6.Qt... method addPixmap (line 2894) | def addPixmap(self, pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.QIma... method addPolygon (line 2895) | def addPolygon(self, polygon: PySide6.QtGui.QPolygonF | typing.Iterabl... method addRect (line 2897) | def addRect(self, x: float, y: float, w: float, h: float, /, pen: PySi... method addRect (line 2899) | def addRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, ... method addSimpleText (line 2900) | def addSimpleText(self, text: str, /, font: PySide6.QtGui.QFont | str ... method addText (line 2901) | def addText(self, text: str, /, font: PySide6.QtGui.QFont | str | typi... method addWidget (line 2902) | def addWidget(self, widget: QWidget, /, wFlags: PySide6.QtCore.Qt.Wind... method advance (line 2903) | def advance(self, /) -> None: ... method backgroundBrush (line 2904) | def backgroundBrush(self, /) -> PySide6.QtGui.QBrush: ... method bspTreeDepth (line 2905) | def bspTreeDepth(self, /) -> int: ... method clear (line 2906) | def clear(self, /) -> None: ... method clearFocus (line 2907) | def clearFocus(self, /) -> None: ... method clearSelection (line 2908) | def clearSelection(self, /) -> None: ... method collidingItems (line 2909) | def collidingItems(self, item: QGraphicsItem, /, mode: PySide6.QtCore.... method contextMenuEvent (line 2910) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent, /) -... method createItemGroup (line 2911) | def createItemGroup(self, items: typing.Iterable[QGraphicsItem], /) ->... method destroyItemGroup (line 2912) | def destroyItemGroup(self, group: QGraphicsItemGroup, /) -> None: ... method dragEnterEvent (line 2913) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragLeaveEvent (line 2914) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragMoveEvent (line 2915) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None... method drawBackground (line 2916) | def drawBackground(self, painter: PySide6.QtGui.QPainter, rect: PySide... method drawForeground (line 2917) | def drawForeground(self, painter: PySide6.QtGui.QPainter, rect: PySide... method dropEvent (line 2918) | def dropEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None: ... method event (line 2919) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 2920) | def eventFilter(self, watched: PySide6.QtCore.QObject, event: PySide6.... method focusInEvent (line 2921) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusItem (line 2922) | def focusItem(self, /) -> QGraphicsItem: ... method focusNextPrevChild (line 2923) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOnTouch (line 2924) | def focusOnTouch(self, /) -> bool: ... method focusOutEvent (line 2925) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method font (line 2926) | def font(self, /) -> PySide6.QtGui.QFont: ... method foregroundBrush (line 2927) | def foregroundBrush(self, /) -> PySide6.QtGui.QBrush: ... method hasFocus (line 2928) | def hasFocus(self, /) -> bool: ... method height (line 2929) | def height(self, /) -> float: ... method helpEvent (line 2930) | def helpEvent(self, event: QGraphicsSceneHelpEvent, /) -> None: ... method inputMethodEvent (line 2931) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodQuery (line 2932) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method invalidate (line 2934) | def invalidate(self, x: float, y: float, w: float, h: float, /, layers... method invalidate (line 2936) | def invalidate(self, /, rect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method isActive (line 2937) | def isActive(self, /) -> bool: ... method itemAt (line 2939) | def itemAt(self, x: float, y: float, deviceTransform: PySide6.QtGui.QT... method itemAt (line 2941) | def itemAt(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method itemIndexMethod (line 2942) | def itemIndexMethod(self, /) -> QGraphicsScene.ItemIndexMethod: ... method items (line 2944) | def items(self, x: float, y: float, w: float, h: float, mode: PySide6.... method items (line 2946) | def items(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect, /,... method items (line 2948) | def items(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | ... method items (line 2950) | def items(self, polygon: PySide6.QtGui.QPolygonF | typing.Iterable[PyS... method items (line 2952) | def items(self, path: PySide6.QtGui.QPainterPath, /, mode: PySide6.QtC... method items (line 2954) | def items(self, /, order: PySide6.QtCore.Qt.SortOrder = ...) -> List[Q... method itemsBoundingRect (line 2955) | def itemsBoundingRect(self, /) -> PySide6.QtCore.QRectF: ... method keyPressEvent (line 2956) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 2957) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method minimumRenderSize (line 2958) | def minimumRenderSize(self, /) -> float: ... method mouseDoubleClickEvent (line 2959) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent, /) ->... method mouseGrabberItem (line 2960) | def mouseGrabberItem(self, /) -> QGraphicsItem: ... method mouseMoveEvent (line 2961) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent, /) -> None: ... method mousePressEvent (line 2962) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent, /) -> None:... method mouseReleaseEvent (line 2963) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent, /) -> Non... method palette (line 2964) | def palette(self, /) -> PySide6.QtGui.QPalette: ... method removeItem (line 2965) | def removeItem(self, item: QGraphicsItem, /) -> None: ... method render (line 2966) | def render(self, painter: PySide6.QtGui.QPainter, /, target: PySide6.Q... method sceneRect (line 2967) | def sceneRect(self, /) -> PySide6.QtCore.QRectF: ... method selectedItems (line 2968) | def selectedItems(self, /) -> List[QGraphicsItem]: ... method selectionArea (line 2969) | def selectionArea(self, /) -> PySide6.QtGui.QPainterPath: ... method sendEvent (line 2970) | def sendEvent(self, item: QGraphicsItem, event: PySide6.QtCore.QEvent,... method setActivePanel (line 2971) | def setActivePanel(self, item: QGraphicsItem, /) -> None: ... method setActiveWindow (line 2972) | def setActiveWindow(self, widget: QGraphicsWidget, /) -> None: ... method setBackgroundBrush (line 2973) | def setBackgroundBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtC... method setBspTreeDepth (line 2974) | def setBspTreeDepth(self, depth: int, /) -> None: ... method setFocus (line 2975) | def setFocus(self, /, focusReason: PySide6.QtCore.Qt.FocusReason = ...... method setFocusItem (line 2976) | def setFocusItem(self, item: QGraphicsItem, /, focusReason: PySide6.Qt... method setFocusOnTouch (line 2977) | def setFocusOnTouch(self, enabled: bool, /) -> None: ... method setFont (line 2978) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setForegroundBrush (line 2979) | def setForegroundBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtC... method setItemIndexMethod (line 2980) | def setItemIndexMethod(self, method: QGraphicsScene.ItemIndexMethod, /... method setMinimumRenderSize (line 2981) | def setMinimumRenderSize(self, minSize: float, /) -> None: ... method setPalette (line 2982) | def setPalette(self, palette: PySide6.QtGui.QPalette | PySide6.QtCore.... method setSceneRect (line 2984) | def setSceneRect(self, x: float, y: float, w: float, h: float, /) -> N... method setSceneRect (line 2986) | def setSceneRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method setSelectionArea (line 2988) | def setSelectionArea(self, path: PySide6.QtGui.QPainterPath, /, select... method setSelectionArea (line 2990) | def setSelectionArea(self, path: PySide6.QtGui.QPainterPath, deviceTra... method setStickyFocus (line 2991) | def setStickyFocus(self, enabled: bool, /) -> None: ... method setStyle (line 2992) | def setStyle(self, style: QStyle, /) -> None: ... method stickyFocus (line 2993) | def stickyFocus(self, /) -> bool: ... method style (line 2994) | def style(self, /) -> QStyle: ... method update (line 2996) | def update(self, x: float, y: float, w: float, h: float, /) -> None: ... method update (line 2998) | def update(self, /, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method views (line 2999) | def views(self, /) -> List[QGraphicsView]: ... method wheelEvent (line 3000) | def wheelEvent(self, event: QGraphicsSceneWheelEvent, /) -> None: ... method width (line 3001) | def width(self, /) -> float: ... class QGraphicsSceneContextMenuEvent (line 3003) | class QGraphicsSceneContextMenuEvent(QGraphicsSceneEvent): class Reason (line 3004) | class Reason(enum.Enum): method __init__ (line 3008) | def __init__(self, /, type: PySide6.QtCore.QEvent.Type | None = ...) -... method modifiers (line 3009) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method pos (line 3010) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method reason (line 3011) | def reason(self, /) -> QGraphicsSceneContextMenuEvent.Reason: ... method scenePos (line 3012) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 3013) | def screenPos(self, /) -> PySide6.QtCore.QPoint: ... method setModifiers (line 3014) | def setModifiers(self, modifiers: PySide6.QtCore.Qt.KeyboardModifier, ... method setPos (line 3015) | def setPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method setReason (line 3016) | def setReason(self, reason: QGraphicsSceneContextMenuEvent.Reason, /) ... method setScenePos (line 3017) | def setScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setScreenPos (line 3018) | def setScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... class QGraphicsSceneDragDropEvent (line 3020) | class QGraphicsSceneDragDropEvent(QGraphicsSceneEvent): method __init__ (line 3021) | def __init__(self, /, type: PySide6.QtCore.QEvent.Type | None = ...) -... method acceptProposedAction (line 3022) | def acceptProposedAction(self, /) -> None: ... method buttons (line 3023) | def buttons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method dropAction (line 3024) | def dropAction(self, /) -> PySide6.QtCore.Qt.DropAction: ... method mimeData (line 3025) | def mimeData(self, /) -> PySide6.QtCore.QMimeData: ... method modifiers (line 3026) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method pos (line 3027) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method possibleActions (line 3028) | def possibleActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method proposedAction (line 3029) | def proposedAction(self, /) -> PySide6.QtCore.Qt.DropAction: ... method scenePos (line 3030) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 3031) | def screenPos(self, /) -> PySide6.QtCore.QPoint: ... method setButtons (line 3032) | def setButtons(self, buttons: PySide6.QtCore.Qt.MouseButton, /) -> Non... method setDropAction (line 3033) | def setDropAction(self, action: PySide6.QtCore.Qt.DropAction, /) -> No... method setModifiers (line 3034) | def setModifiers(self, modifiers: PySide6.QtCore.Qt.KeyboardModifier, ... method setPos (line 3035) | def setPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method setPossibleActions (line 3036) | def setPossibleActions(self, actions: PySide6.QtCore.Qt.DropAction, /)... method setProposedAction (line 3037) | def setProposedAction(self, action: PySide6.QtCore.Qt.DropAction, /) -... method setScenePos (line 3038) | def setScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setScreenPos (line 3039) | def setScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... method source (line 3040) | def source(self, /) -> QWidget: ... class QGraphicsSceneEvent (line 3042) | class QGraphicsSceneEvent(PySide6.QtCore.QEvent): method __init__ (line 3043) | def __init__(self, type: PySide6.QtCore.QEvent.Type, /) -> None: ... method setTimestamp (line 3044) | def setTimestamp(self, ts: int, /) -> None: ... method timestamp (line 3045) | def timestamp(self, /) -> int: ... method widget (line 3046) | def widget(self, /) -> QWidget: ... class QGraphicsSceneHelpEvent (line 3048) | class QGraphicsSceneHelpEvent(QGraphicsSceneEvent): method __init__ (line 3049) | def __init__(self, /, type: PySide6.QtCore.QEvent.Type | None = ...) -... method scenePos (line 3050) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 3051) | def screenPos(self, /) -> PySide6.QtCore.QPoint: ... method setScenePos (line 3052) | def setScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setScreenPos (line 3053) | def setScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... class QGraphicsSceneHoverEvent (line 3055) | class QGraphicsSceneHoverEvent(QGraphicsSceneEvent): method __init__ (line 3056) | def __init__(self, /, type: PySide6.QtCore.QEvent.Type | None = ...) -... method lastPos (line 3057) | def lastPos(self, /) -> PySide6.QtCore.QPointF: ... method lastScenePos (line 3058) | def lastScenePos(self, /) -> PySide6.QtCore.QPointF: ... method lastScreenPos (line 3059) | def lastScreenPos(self, /) -> PySide6.QtCore.QPoint: ... method modifiers (line 3060) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method pos (line 3061) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method scenePos (line 3062) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 3063) | def screenPos(self, /) -> PySide6.QtCore.QPoint: ... method setLastPos (line 3064) | def setLastPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method setLastScenePos (line 3065) | def setLastScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore... method setLastScreenPos (line 3066) | def setLastScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... method setModifiers (line 3067) | def setModifiers(self, modifiers: PySide6.QtCore.Qt.KeyboardModifier, ... method setPos (line 3068) | def setPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method setScenePos (line 3069) | def setScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setScreenPos (line 3070) | def setScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... class QGraphicsSceneMouseEvent (line 3072) | class QGraphicsSceneMouseEvent(QGraphicsSceneEvent): method __init__ (line 3073) | def __init__(self, /, type: PySide6.QtCore.QEvent.Type | None = ...) -... method button (line 3074) | def button(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method buttonDownPos (line 3075) | def buttonDownPos(self, button: PySide6.QtCore.Qt.MouseButton, /) -> P... method buttonDownScenePos (line 3076) | def buttonDownScenePos(self, button: PySide6.QtCore.Qt.MouseButton, /)... method buttonDownScreenPos (line 3077) | def buttonDownScreenPos(self, button: PySide6.QtCore.Qt.MouseButton, /... method buttons (line 3078) | def buttons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method flags (line 3079) | def flags(self, /) -> PySide6.QtCore.Qt.MouseEventFlag: ... method lastPos (line 3080) | def lastPos(self, /) -> PySide6.QtCore.QPointF: ... method lastScenePos (line 3081) | def lastScenePos(self, /) -> PySide6.QtCore.QPointF: ... method lastScreenPos (line 3082) | def lastScreenPos(self, /) -> PySide6.QtCore.QPoint: ... method modifiers (line 3083) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method pos (line 3084) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method scenePos (line 3085) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 3086) | def screenPos(self, /) -> PySide6.QtCore.QPoint: ... method setButton (line 3087) | def setButton(self, button: PySide6.QtCore.Qt.MouseButton, /) -> None:... method setButtonDownPos (line 3088) | def setButtonDownPos(self, button: PySide6.QtCore.Qt.MouseButton, pos:... method setButtonDownScenePos (line 3089) | def setButtonDownScenePos(self, button: PySide6.QtCore.Qt.MouseButton,... method setButtonDownScreenPos (line 3090) | def setButtonDownScreenPos(self, button: PySide6.QtCore.Qt.MouseButton... method setButtons (line 3091) | def setButtons(self, buttons: PySide6.QtCore.Qt.MouseButton, /) -> Non... method setFlags (line 3092) | def setFlags(self, arg__1: PySide6.QtCore.Qt.MouseEventFlag, /) -> Non... method setLastPos (line 3093) | def setLastPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method setLastScenePos (line 3094) | def setLastScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore... method setLastScreenPos (line 3095) | def setLastScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... method setModifiers (line 3096) | def setModifiers(self, modifiers: PySide6.QtCore.Qt.KeyboardModifier, ... method setPos (line 3097) | def setPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method setScenePos (line 3098) | def setScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setScreenPos (line 3099) | def setScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... method setSource (line 3100) | def setSource(self, source: PySide6.QtCore.Qt.MouseEventSource, /) -> ... method source (line 3101) | def source(self, /) -> PySide6.QtCore.Qt.MouseEventSource: ... class QGraphicsSceneMoveEvent (line 3103) | class QGraphicsSceneMoveEvent(QGraphicsSceneEvent): method __init__ (line 3104) | def __init__(self, /) -> None: ... method newPos (line 3105) | def newPos(self, /) -> PySide6.QtCore.QPointF: ... method oldPos (line 3106) | def oldPos(self, /) -> PySide6.QtCore.QPointF: ... method setNewPos (line 3107) | def setNewPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... method setOldPos (line 3108) | def setOldPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoin... class QGraphicsSceneResizeEvent (line 3110) | class QGraphicsSceneResizeEvent(QGraphicsSceneEvent): method __init__ (line 3111) | def __init__(self, /) -> None: ... method newSize (line 3112) | def newSize(self, /) -> PySide6.QtCore.QSizeF: ... method oldSize (line 3113) | def oldSize(self, /) -> PySide6.QtCore.QSizeF: ... method setNewSize (line 3114) | def setNewSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSiz... method setOldSize (line 3115) | def setOldSize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSiz... class QGraphicsSceneWheelEvent (line 3117) | class QGraphicsSceneWheelEvent(QGraphicsSceneEvent): method __init__ (line 3118) | def __init__(self, /, type: PySide6.QtCore.QEvent.Type | None = ...) -... method buttons (line 3119) | def buttons(self, /) -> PySide6.QtCore.Qt.MouseButton: ... method delta (line 3120) | def delta(self, /) -> int: ... method isInverted (line 3121) | def isInverted(self, /) -> bool: ... method modifiers (line 3122) | def modifiers(self, /) -> PySide6.QtCore.Qt.KeyboardModifier: ... method orientation (line 3123) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method phase (line 3124) | def phase(self, /) -> PySide6.QtCore.Qt.ScrollPhase: ... method pixelDelta (line 3125) | def pixelDelta(self, /) -> PySide6.QtCore.QPoint: ... method pos (line 3126) | def pos(self, /) -> PySide6.QtCore.QPointF: ... method scenePos (line 3127) | def scenePos(self, /) -> PySide6.QtCore.QPointF: ... method screenPos (line 3128) | def screenPos(self, /) -> PySide6.QtCore.QPoint: ... method setButtons (line 3129) | def setButtons(self, buttons: PySide6.QtCore.Qt.MouseButton, /) -> Non... method setDelta (line 3130) | def setDelta(self, delta: int, /) -> None: ... method setInverted (line 3131) | def setInverted(self, inverted: bool, /) -> None: ... method setModifiers (line 3132) | def setModifiers(self, modifiers: PySide6.QtCore.Qt.KeyboardModifier, ... method setOrientation (line 3133) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setPhase (line 3134) | def setPhase(self, scrollPhase: PySide6.QtCore.Qt.ScrollPhase, /) -> N... method setPixelDelta (line 3135) | def setPixelDelta(self, delta: PySide6.QtCore.QPoint, /) -> None: ... method setPos (line 3136) | def setPos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint |... method setScenePos (line 3137) | def setScenePos(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setScreenPos (line 3138) | def setScreenPos(self, pos: PySide6.QtCore.QPoint, /) -> None: ... class QGraphicsSimpleTextItem (line 3140) | class QGraphicsSimpleTextItem(QAbstractGraphicsShapeItem): method __init__ (line 3142) | def __init__(self, text: str, /, parent: QGraphicsItem | None = ...) -... method __init__ (line 3144) | def __init__(self, /, parent: QGraphicsItem | None = ...) -> None: ... method boundingRect (line 3145) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 3146) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method extension (line 3147) | def extension(self, variant: Any, /) -> Any: ... method font (line 3148) | def font(self, /) -> PySide6.QtGui.QFont: ... method isObscuredBy (line 3149) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method opaqueArea (line 3150) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method paint (line 3151) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method setFont (line 3152) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setText (line 3153) | def setText(self, text: str, /) -> None: ... method shape (line 3154) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method text (line 3155) | def text(self, /) -> str: ... method type (line 3156) | def type(self, /) -> int: ... class QGraphicsTextItem (line 3158) | class QGraphicsTextItem(QGraphicsObject): method __init__ (line 3163) | def __init__(self, text: str, /, parent: QGraphicsItem | None = ..., c... method __init__ (line 3165) | def __init__(self, /, parent: QGraphicsItem | None = ..., childrenChan... method adjustSize (line 3166) | def adjustSize(self, /) -> None: ... method boundingRect (line 3167) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method contains (line 3168) | def contains(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method contextMenuEvent (line 3169) | def contextMenuEvent(self, event: QGraphicsSceneContextMenuEvent, /) -... method defaultTextColor (line 3170) | def defaultTextColor(self, /) -> PySide6.QtGui.QColor: ... method document (line 3171) | def document(self, /) -> PySide6.QtGui.QTextDocument: ... method dragEnterEvent (line 3172) | def dragEnterEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragLeaveEvent (line 3173) | def dragLeaveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> Non... method dragMoveEvent (line 3174) | def dragMoveEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None... method dropEvent (line 3175) | def dropEvent(self, event: QGraphicsSceneDragDropEvent, /) -> None: ... method extension (line 3176) | def extension(self, variant: Any, /) -> Any: ... method focusInEvent (line 3177) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 3178) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method font (line 3179) | def font(self, /) -> PySide6.QtGui.QFont: ... method hoverEnterEvent (line 3180) | def hoverEnterEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverLeaveEvent (line 3181) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverMoveEvent (line 3182) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None: ... method inputMethodEvent (line 3183) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodQuery (line 3184) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method isObscuredBy (line 3185) | def isObscuredBy(self, item: QGraphicsItem, /) -> bool: ... method keyPressEvent (line 3186) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 3187) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method mouseDoubleClickEvent (line 3188) | def mouseDoubleClickEvent(self, event: QGraphicsSceneMouseEvent, /) ->... method mouseMoveEvent (line 3189) | def mouseMoveEvent(self, event: QGraphicsSceneMouseEvent, /) -> None: ... method mousePressEvent (line 3190) | def mousePressEvent(self, event: QGraphicsSceneMouseEvent, /) -> None:... method mouseReleaseEvent (line 3191) | def mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent, /) -> Non... method opaqueArea (line 3192) | def opaqueArea(self, /) -> PySide6.QtGui.QPainterPath: ... method openExternalLinks (line 3193) | def openExternalLinks(self, /) -> bool: ... method paint (line 3194) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method sceneEvent (line 3195) | def sceneEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method setDefaultTextColor (line 3196) | def setDefaultTextColor(self, c: Union[PySide6.QtGui.QColor, str, PySi... method setDocument (line 3197) | def setDocument(self, document: PySide6.QtGui.QTextDocument, /) -> Non... method setFont (line 3198) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setHtml (line 3199) | def setHtml(self, html: str, /) -> None: ... method setOpenExternalLinks (line 3200) | def setOpenExternalLinks(self, open: bool, /) -> None: ... method setPlainText (line 3201) | def setPlainText(self, text: str, /) -> None: ... method setTabChangesFocus (line 3202) | def setTabChangesFocus(self, b: bool, /) -> None: ... method setTextCursor (line 3203) | def setTextCursor(self, cursor: PySide6.QtGui.QTextCursor, /) -> None:... method setTextInteractionFlags (line 3204) | def setTextInteractionFlags(self, flags: PySide6.QtCore.Qt.TextInterac... method setTextWidth (line 3205) | def setTextWidth(self, width: float, /) -> None: ... method shape (line 3206) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method tabChangesFocus (line 3207) | def tabChangesFocus(self, /) -> bool: ... method textCursor (line 3208) | def textCursor(self, /) -> PySide6.QtGui.QTextCursor: ... method textInteractionFlags (line 3209) | def textInteractionFlags(self, /) -> PySide6.QtCore.Qt.TextInteraction... method textWidth (line 3210) | def textWidth(self, /) -> float: ... method toHtml (line 3211) | def toHtml(self, /) -> str: ... method toPlainText (line 3212) | def toPlainText(self, /) -> str: ... method type (line 3213) | def type(self, /) -> int: ... class QGraphicsTransform (line 3215) | class QGraphicsTransform(PySide6.QtCore.QObject): method __init__ (line 3217) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., des... method applyTo (line 3218) | def applyTo(self, matrix: PySide6.QtGui.QMatrix4x4 | PySide6.QtGui.QTr... method update (line 3219) | def update(self, /) -> None: ... class QGraphicsView (line 3221) | class QGraphicsView(QAbstractScrollArea): class CacheModeFlag (line 3222) | class CacheModeFlag(enum.Flag): class DragMode (line 3226) | class DragMode(enum.Enum): class OptimizationFlag (line 3231) | class OptimizationFlag(enum.Flag): class ViewportAnchor (line 3236) | class ViewportAnchor(enum.Enum): class ViewportUpdateMode (line 3241) | class ViewportUpdateMode(enum.Enum): method __init__ (line 3250) | def __init__(self, scene: QGraphicsScene, /, parent: QWidget | None = ... method __init__ (line 3252) | def __init__(self, /, parent: QWidget | None = ..., *, backgroundBrush... method alignment (line 3253) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method backgroundBrush (line 3254) | def backgroundBrush(self, /) -> PySide6.QtGui.QBrush: ... method cacheMode (line 3255) | def cacheMode(self, /) -> QGraphicsView.CacheModeFlag: ... method centerOn (line 3257) | def centerOn(self, x: float, y: float, /) -> None: ... method centerOn (line 3259) | def centerOn(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method centerOn (line 3261) | def centerOn(self, item: QGraphicsItem, /) -> None: ... method contextMenuEvent (line 3262) | def contextMenuEvent(self, event: PySide6.QtGui.QContextMenuEvent, /) ... method dragEnterEvent (line 3263) | def dragEnterEvent(self, event: PySide6.QtGui.QDragEnterEvent, /) -> N... method dragLeaveEvent (line 3264) | def dragLeaveEvent(self, event: PySide6.QtGui.QDragLeaveEvent, /) -> N... method dragMode (line 3265) | def dragMode(self, /) -> QGraphicsView.DragMode: ... method dragMoveEvent (line 3266) | def dragMoveEvent(self, event: PySide6.QtGui.QDragMoveEvent, /) -> Non... method drawBackground (line 3267) | def drawBackground(self, painter: PySide6.QtGui.QPainter, rect: PySide... method drawForeground (line 3268) | def drawForeground(self, painter: PySide6.QtGui.QPainter, rect: PySide... method drawItems (line 3269) | def drawItems(self, painter: PySide6.QtGui.QPainter, items: collection... method dropEvent (line 3270) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method ensureVisible (line 3272) | def ensureVisible(self, x: float, y: float, w: float, h: float, /, xma... method ensureVisible (line 3274) | def ensureVisible(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method ensureVisible (line 3276) | def ensureVisible(self, item: QGraphicsItem, /, xmargin: int = ..., ym... method event (line 3277) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method fitInView (line 3279) | def fitInView(self, x: float, y: float, w: float, h: float, /, aspectR... method fitInView (line 3281) | def fitInView(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRect... method fitInView (line 3283) | def fitInView(self, item: QGraphicsItem, /, aspectRadioMode: PySide6.Q... method focusInEvent (line 3284) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 3285) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 3286) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method foregroundBrush (line 3287) | def foregroundBrush(self, /) -> PySide6.QtGui.QBrush: ... method inputMethodEvent (line 3288) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodQuery (line 3289) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method invalidateScene (line 3290) | def invalidateScene(self, /, rect: PySide6.QtCore.QRectF | PySide6.QtC... method isInteractive (line 3291) | def isInteractive(self, /) -> bool: ... method isTransformed (line 3292) | def isTransformed(self, /) -> bool: ... method itemAt (line 3294) | def itemAt(self, x: int, y: int, /) -> QGraphicsItem: ... method itemAt (line 3296) | def itemAt(self, pos: PySide6.QtCore.QPoint, /) -> QGraphicsItem: ... method items (line 3298) | def items(self, x: int, y: int, w: int, h: int, /, mode: PySide6.QtCor... method items (line 3300) | def items(self, x: int, y: int, /) -> List[QGraphicsItem]: ... method items (line 3302) | def items(self, rect: PySide6.QtCore.QRect, /, mode: PySide6.QtCore.Qt... method items (line 3304) | def items(self, polygon: PySide6.QtGui.QPolygon | typing.Iterable[PySi... method items (line 3306) | def items(self, path: PySide6.QtGui.QPainterPath, /, mode: PySide6.QtC... method items (line 3308) | def items(self, pos: PySide6.QtCore.QPoint, /) -> List[QGraphicsItem]:... method items (line 3310) | def items(self, /) -> List[QGraphicsItem]: ... method keyPressEvent (line 3311) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 3312) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method mapFromScene (line 3314) | def mapFromScene(self, x: float, y: float, w: float, h: float, /) -> P... method mapFromScene (line 3316) | def mapFromScene(self, x: float, y: float, /) -> PySide6.QtCore.QPoint... method mapFromScene (line 3318) | def mapFromScene(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method mapFromScene (line 3320) | def mapFromScene(self, polygon: PySide6.QtGui.QPolygonF | typing.Itera... method mapFromScene (line 3322) | def mapFromScene(self, point: PySide6.QtCore.QPointF | PySide6.QtCore.... method mapFromScene (line 3324) | def mapFromScene(self, path: PySide6.QtGui.QPainterPath, /) -> PySide6... method mapToScene (line 3326) | def mapToScene(self, x: int, y: int, w: int, h: int, /) -> PySide6.QtG... method mapToScene (line 3328) | def mapToScene(self, x: int, y: int, /) -> PySide6.QtCore.QPointF: ... method mapToScene (line 3330) | def mapToScene(self, rect: PySide6.QtCore.QRect, /) -> PySide6.QtGui.Q... method mapToScene (line 3332) | def mapToScene(self, polygon: PySide6.QtGui.QPolygon | typing.Iterable... method mapToScene (line 3334) | def mapToScene(self, point: PySide6.QtCore.QPoint, /) -> PySide6.QtCor... method mapToScene (line 3336) | def mapToScene(self, path: PySide6.QtGui.QPainterPath, /) -> PySide6.Q... method mouseDoubleClickEvent (line 3337) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseMoveEvent (line 3338) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 3339) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 3340) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method optimizationFlags (line 3341) | def optimizationFlags(self, /) -> QGraphicsView.OptimizationFlag: ... method paintEvent (line 3342) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method render (line 3343) | def render(self, painter: PySide6.QtGui.QPainter, /, target: PySide6.Q... method renderHints (line 3344) | def renderHints(self, /) -> PySide6.QtGui.QPainter.RenderHint: ... method resetCachedContent (line 3345) | def resetCachedContent(self, /) -> None: ... method resetTransform (line 3346) | def resetTransform(self, /) -> None: ... method resizeAnchor (line 3347) | def resizeAnchor(self, /) -> QGraphicsView.ViewportAnchor: ... method resizeEvent (line 3348) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method rotate (line 3349) | def rotate(self, angle: float, /) -> None: ... method rubberBandRect (line 3350) | def rubberBandRect(self, /) -> PySide6.QtCore.QRect: ... method rubberBandSelectionMode (line 3351) | def rubberBandSelectionMode(self, /) -> PySide6.QtCore.Qt.ItemSelectio... method scale (line 3352) | def scale(self, sx: float, sy: float, /) -> None: ... method scene (line 3353) | def scene(self, /) -> QGraphicsScene: ... method sceneRect (line 3354) | def sceneRect(self, /) -> PySide6.QtCore.QRectF: ... method scrollContentsBy (line 3355) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method setAlignment (line 3356) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setBackgroundBrush (line 3357) | def setBackgroundBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtC... method setCacheMode (line 3358) | def setCacheMode(self, mode: QGraphicsView.CacheModeFlag, /) -> None: ... method setDragMode (line 3359) | def setDragMode(self, mode: QGraphicsView.DragMode, /) -> None: ... method setForegroundBrush (line 3360) | def setForegroundBrush(self, brush: PySide6.QtGui.QBrush | PySide6.QtC... method setInteractive (line 3361) | def setInteractive(self, allowed: bool, /) -> None: ... method setOptimizationFlag (line 3362) | def setOptimizationFlag(self, flag: QGraphicsView.OptimizationFlag, /,... method setOptimizationFlags (line 3363) | def setOptimizationFlags(self, flags: QGraphicsView.OptimizationFlag, ... method setRenderHint (line 3364) | def setRenderHint(self, hint: PySide6.QtGui.QPainter.RenderHint, /, en... method setRenderHints (line 3365) | def setRenderHints(self, hints: PySide6.QtGui.QPainter.RenderHint, /) ... method setResizeAnchor (line 3366) | def setResizeAnchor(self, anchor: QGraphicsView.ViewportAnchor, /) -> ... method setRubberBandSelectionMode (line 3367) | def setRubberBandSelectionMode(self, mode: PySide6.QtCore.Qt.ItemSelec... method setScene (line 3368) | def setScene(self, scene: QGraphicsScene | None, /) -> None: ... method setSceneRect (line 3370) | def setSceneRect(self, x: float, y: float, w: float, h: float, /) -> N... method setSceneRect (line 3372) | def setSceneRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QR... method setTransform (line 3373) | def setTransform(self, matrix: PySide6.QtGui.QTransform, /, combine: b... method setTransformationAnchor (line 3374) | def setTransformationAnchor(self, anchor: QGraphicsView.ViewportAnchor... method setViewportUpdateMode (line 3375) | def setViewportUpdateMode(self, mode: QGraphicsView.ViewportUpdateMode... method setupViewport (line 3376) | def setupViewport(self, widget: QWidget, /) -> None: ... method shear (line 3377) | def shear(self, sh: float, sv: float, /) -> None: ... method showEvent (line 3378) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 3379) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method transform (line 3380) | def transform(self, /) -> PySide6.QtGui.QTransform: ... method transformationAnchor (line 3381) | def transformationAnchor(self, /) -> QGraphicsView.ViewportAnchor: ... method translate (line 3382) | def translate(self, dx: float, dy: float, /) -> None: ... method updateScene (line 3383) | def updateScene(self, rects: typing.Iterable[PySide6.QtCore.QRectF], /... method updateSceneRect (line 3384) | def updateSceneRect(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore... method viewportEvent (line 3385) | def viewportEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method viewportTransform (line 3386) | def viewportTransform(self, /) -> PySide6.QtGui.QTransform: ... method viewportUpdateMode (line 3387) | def viewportUpdateMode(self, /) -> QGraphicsView.ViewportUpdateMode: ... method wheelEvent (line 3388) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class QGraphicsWidget (line 3390) | class QGraphicsWidget(QGraphicsObject, QGraphicsLayoutItem): method __init__ (line 3394) | def __init__(self, /, parent: QGraphicsItem | None = ..., wFlags: PySi... method actions (line 3395) | def actions(self, /) -> List[PySide6.QtGui.QAction]: ... method addAction (line 3396) | def addAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method addActions (line 3397) | def addActions(self, actions: typing.Iterable[PySide6.QtGui.QAction], ... method adjustSize (line 3398) | def adjustSize(self, /) -> None: ... method autoFillBackground (line 3399) | def autoFillBackground(self, /) -> bool: ... method boundingRect (line 3400) | def boundingRect(self, /) -> PySide6.QtCore.QRectF: ... method changeEvent (line 3401) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method close (line 3402) | def close(self, /) -> bool: ... method closeEvent (line 3403) | def closeEvent(self, event: PySide6.QtGui.QCloseEvent, /) -> None: ... method event (line 3404) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 3405) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 3406) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 3407) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusPolicy (line 3408) | def focusPolicy(self, /) -> PySide6.QtCore.Qt.FocusPolicy: ... method focusWidget (line 3409) | def focusWidget(self, /) -> QGraphicsWidget: ... method font (line 3410) | def font(self, /) -> PySide6.QtGui.QFont: ... method getContentsMargins (line 3411) | def getContentsMargins(self, /) -> typing.Any: ... method getWindowFrameMargins (line 3412) | def getWindowFrameMargins(self, /) -> typing.Any: ... method grabKeyboardEvent (line 3413) | def grabKeyboardEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method grabMouseEvent (line 3414) | def grabMouseEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method grabShortcut (line 3415) | def grabShortcut(self, sequence: PySide6.QtGui.QKeySequence | PySide6.... method hideEvent (line 3416) | def hideEvent(self, event: PySide6.QtGui.QHideEvent, /) -> None: ... method hoverLeaveEvent (line 3417) | def hoverLeaveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None:... method hoverMoveEvent (line 3418) | def hoverMoveEvent(self, event: QGraphicsSceneHoverEvent, /) -> None: ... method initStyleOption (line 3419) | def initStyleOption(self, option: QStyleOption, /) -> None: ... method insertAction (line 3420) | def insertAction(self, before: PySide6.QtGui.QAction, action: PySide6.... method insertActions (line 3421) | def insertActions(self, before: PySide6.QtGui.QAction, actions: typing... method isActiveWindow (line 3422) | def isActiveWindow(self, /) -> bool: ... method itemChange (line 3423) | def itemChange(self, change: QGraphicsItem.GraphicsItemChange, value: ... method layout (line 3424) | def layout(self, /) -> QGraphicsLayout: ... method layoutDirection (line 3425) | def layoutDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method moveEvent (line 3426) | def moveEvent(self, event: QGraphicsSceneMoveEvent, /) -> None: ... method paint (line 3427) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionG... method paintWindowFrame (line 3428) | def paintWindowFrame(self, painter: PySide6.QtGui.QPainter, option: QS... method palette (line 3429) | def palette(self, /) -> PySide6.QtGui.QPalette: ... method polishEvent (line 3430) | def polishEvent(self, /) -> None: ... method propertyChange (line 3431) | def propertyChange(self, propertyName: str, value: Any, /) -> Any: ... method rect (line 3432) | def rect(self, /) -> PySide6.QtCore.QRectF: ... method releaseShortcut (line 3433) | def releaseShortcut(self, id: int, /) -> None: ... method removeAction (line 3434) | def removeAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method resize (line 3436) | def resize(self, w: float, h: float, /) -> None: ... method resize (line 3438) | def resize(self, size: PySide6.QtCore.QSizeF | PySide6.QtCore.QSize, /... method resizeEvent (line 3439) | def resizeEvent(self, event: QGraphicsSceneResizeEvent, /) -> None: ... method sceneEvent (line 3440) | def sceneEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method setAttribute (line 3441) | def setAttribute(self, attribute: PySide6.QtCore.Qt.WidgetAttribute, /... method setAutoFillBackground (line 3442) | def setAutoFillBackground(self, enabled: bool, /) -> None: ... method setContentsMargins (line 3444) | def setContentsMargins(self, left: float, top: float, right: float, bo... method setContentsMargins (line 3446) | def setContentsMargins(self, margins: PySide6.QtCore.QMarginsF | PySid... method setFocusPolicy (line 3447) | def setFocusPolicy(self, policy: PySide6.QtCore.Qt.FocusPolicy, /) -> ... method setFont (line 3448) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setGeometry (line 3450) | def setGeometry(self, x: float, y: float, w: float, h: float, /) -> No... method setGeometry (line 3452) | def setGeometry(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.QRe... method setLayout (line 3453) | def setLayout(self, layout: QGraphicsLayout, /) -> None: ... method setLayoutDirection (line 3454) | def setLayoutDirection(self, direction: PySide6.QtCore.Qt.LayoutDirect... method setPalette (line 3455) | def setPalette(self, palette: PySide6.QtGui.QPalette | PySide6.QtCore.... method setShortcutAutoRepeat (line 3456) | def setShortcutAutoRepeat(self, id: int, /, enabled: bool = ...) -> No... method setShortcutEnabled (line 3457) | def setShortcutEnabled(self, id: int, /, enabled: bool = ...) -> None:... method setStyle (line 3458) | def setStyle(self, style: QStyle, /) -> None: ... method setTabOrder (line 3460) | def setTabOrder(first: QGraphicsWidget, second: QGraphicsWidget, /) ->... method setWindowFlags (line 3461) | def setWindowFlags(self, wFlags: PySide6.QtCore.Qt.WindowType, /) -> N... method setWindowFrameMargins (line 3463) | def setWindowFrameMargins(self, left: float, top: float, right: float,... method setWindowFrameMargins (line 3465) | def setWindowFrameMargins(self, margins: PySide6.QtCore.QMarginsF | Py... method setWindowTitle (line 3466) | def setWindowTitle(self, title: str, /) -> None: ... method shape (line 3467) | def shape(self, /) -> PySide6.QtGui.QPainterPath: ... method showEvent (line 3468) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method size (line 3469) | def size(self, /) -> PySide6.QtCore.QSizeF: ... method sizeHint (line 3470) | def sizeHint(self, which: PySide6.QtCore.Qt.SizeHint, /, constraint: P... method style (line 3471) | def style(self, /) -> QStyle: ... method testAttribute (line 3472) | def testAttribute(self, attribute: PySide6.QtCore.Qt.WidgetAttribute, ... method type (line 3473) | def type(self, /) -> int: ... method ungrabKeyboardEvent (line 3474) | def ungrabKeyboardEvent(self, event: PySide6.QtCore.QEvent, /) -> None... method ungrabMouseEvent (line 3475) | def ungrabMouseEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method unsetLayoutDirection (line 3476) | def unsetLayoutDirection(self, /) -> None: ... method unsetWindowFrameMargins (line 3477) | def unsetWindowFrameMargins(self, /) -> None: ... method updateGeometry (line 3478) | def updateGeometry(self, /) -> None: ... method windowFlags (line 3479) | def windowFlags(self, /) -> PySide6.QtCore.Qt.WindowType: ... method windowFrameEvent (line 3480) | def windowFrameEvent(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method windowFrameGeometry (line 3481) | def windowFrameGeometry(self, /) -> PySide6.QtCore.QRectF: ... method windowFrameRect (line 3482) | def windowFrameRect(self, /) -> PySide6.QtCore.QRectF: ... method windowFrameSectionAt (line 3483) | def windowFrameSectionAt(self, pos: PySide6.QtCore.QPointF | PySide6.Q... method windowTitle (line 3484) | def windowTitle(self, /) -> str: ... method windowType (line 3485) | def windowType(self, /) -> PySide6.QtCore.Qt.WindowType: ... class QGridLayout (line 3487) | class QGridLayout(QLayout): method __init__ (line 3489) | def __init__(self, /, parent: QWidget | None = ..., contentsMargins: P... method addItem (line 3491) | def addItem(self, item: QLayoutItem, row: int, column: int, /, rowSpan... method addItem (line 3493) | def addItem(self, arg__1: QLayoutItem, /) -> None: ... method addLayout (line 3495) | def addLayout(self, arg__1: QLayout, row: int, column: int, rowSpan: i... method addLayout (line 3497) | def addLayout(self, arg__1: QLayout, row: int, column: int, /, alignme... method addWidget (line 3499) | def addWidget(self, arg__1: QWidget, row: int, column: int, rowSpan: i... method addWidget (line 3501) | def addWidget(self, arg__1: QWidget, row: int, column: int, /, alignme... method addWidget (line 3503) | def addWidget(self, w: QWidget, /) -> None: ... method cellRect (line 3504) | def cellRect(self, row: int, column: int, /) -> PySide6.QtCore.QRect: ... method columnCount (line 3505) | def columnCount(self, /) -> int: ... method columnMinimumWidth (line 3506) | def columnMinimumWidth(self, column: int, /) -> int: ... method columnStretch (line 3507) | def columnStretch(self, column: int, /) -> int: ... method count (line 3508) | def count(self, /) -> int: ... method expandingDirections (line 3509) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method getItemPosition (line 3510) | def getItemPosition(self, idx: int, /) -> typing.Any: ... method hasHeightForWidth (line 3511) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 3512) | def heightForWidth(self, arg__1: int, /) -> int: ... method horizontalSpacing (line 3513) | def horizontalSpacing(self, /) -> int: ... method invalidate (line 3514) | def invalidate(self, /) -> None: ... method itemAt (line 3515) | def itemAt(self, index: int, /) -> QLayoutItem | None: ... method itemAtPosition (line 3516) | def itemAtPosition(self, row: int, column: int, /) -> QLayoutItem | No... method maximumSize (line 3517) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumHeightForWidth (line 3518) | def minimumHeightForWidth(self, arg__1: int, /) -> int: ... method minimumSize (line 3519) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method originCorner (line 3520) | def originCorner(self, /) -> PySide6.QtCore.Qt.Corner: ... method rowCount (line 3521) | def rowCount(self, /) -> int: ... method rowMinimumHeight (line 3522) | def rowMinimumHeight(self, row: int, /) -> int: ... method rowStretch (line 3523) | def rowStretch(self, row: int, /) -> int: ... method setColumnMinimumWidth (line 3524) | def setColumnMinimumWidth(self, column: int, minSize: int, /) -> None:... method setColumnStretch (line 3525) | def setColumnStretch(self, column: int, stretch: int, /) -> None: ... method setDefaultPositioning (line 3526) | def setDefaultPositioning(self, n: int, orient: PySide6.QtCore.Qt.Orie... method setGeometry (line 3527) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method setHorizontalSpacing (line 3528) | def setHorizontalSpacing(self, spacing: int, /) -> None: ... method setOriginCorner (line 3529) | def setOriginCorner(self, arg__1: PySide6.QtCore.Qt.Corner, /) -> None... method setRowMinimumHeight (line 3530) | def setRowMinimumHeight(self, row: int, minSize: int, /) -> None: ... method setRowStretch (line 3531) | def setRowStretch(self, row: int, stretch: int, /) -> None: ... method setSpacing (line 3532) | def setSpacing(self, spacing: int, /) -> None: ... method setVerticalSpacing (line 3533) | def setVerticalSpacing(self, spacing: int, /) -> None: ... method sizeHint (line 3534) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method spacing (line 3535) | def spacing(self, /) -> int: ... method takeAt (line 3536) | def takeAt(self, index: int, /) -> QLayoutItem: ... method verticalSpacing (line 3537) | def verticalSpacing(self, /) -> int: ... class QGroupBox (line 3539) | class QGroupBox(QWidget): method __init__ (line 3544) | def __init__(self, title: str, /, parent: QWidget | None = ..., *, ali... method __init__ (line 3546) | def __init__(self, /, parent: QWidget | None = ..., *, title: str | No... method alignment (line 3547) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method changeEvent (line 3548) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method childEvent (line 3549) | def childEvent(self, event: PySide6.QtCore.QChildEvent, /) -> None: ... method event (line 3550) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 3551) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method initStyleOption (line 3552) | def initStyleOption(self, option: QStyleOptionGroupBox, /) -> None: ... method isCheckable (line 3553) | def isCheckable(self, /) -> bool: ... method isChecked (line 3554) | def isChecked(self, /) -> bool: ... method isFlat (line 3555) | def isFlat(self, /) -> bool: ... method minimumSizeHint (line 3556) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 3557) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 3558) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 3559) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method paintEvent (line 3560) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 3561) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method setAlignment (line 3562) | def setAlignment(self, alignment: int, /) -> None: ... method setCheckable (line 3563) | def setCheckable(self, checkable: bool, /) -> None: ... method setChecked (line 3564) | def setChecked(self, checked: bool, /) -> None: ... method setFlat (line 3565) | def setFlat(self, flat: bool, /) -> None: ... method setTitle (line 3566) | def setTitle(self, title: str, /) -> None: ... method title (line 3567) | def title(self, /) -> str: ... class QHBoxLayout (line 3569) | class QHBoxLayout(QBoxLayout): method __init__ (line 3572) | def __init__(self, parent: QWidget | None, /, contentsMargins: PySide6... method __init__ (line 3574) | def __init__(self, /, contentsMargins: PySide6.QtCore.QMargins = ..., ... class QHeaderView (line 3576) | class QHeaderView(QAbstractItemView): class ResizeMode (line 3577) | class ResizeMode(enum.Enum): method __init__ (line 3595) | def __init__(self, orientation: PySide6.QtCore.Qt.Orientation, /, pare... method cascadingSectionResizes (line 3596) | def cascadingSectionResizes(self, /) -> bool: ... method count (line 3597) | def count(self, /) -> int: ... method currentChanged (line 3598) | def currentChanged(self, current: PySide6.QtCore.QModelIndex | PySide6... method dataChanged (line 3599) | def dataChanged(self, topLeft: PySide6.QtCore.QModelIndex | PySide6.Qt... method defaultAlignment (line 3600) | def defaultAlignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method defaultSectionSize (line 3601) | def defaultSectionSize(self, /) -> int: ... method doItemsLayout (line 3602) | def doItemsLayout(self, /) -> None: ... method event (line 3603) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method headerDataChanged (line 3604) | def headerDataChanged(self, orientation: PySide6.QtCore.Qt.Orientation... method hiddenSectionCount (line 3605) | def hiddenSectionCount(self, /) -> int: ... method hideSection (line 3606) | def hideSection(self, logicalIndex: int, /) -> None: ... method highlightSections (line 3607) | def highlightSections(self, /) -> bool: ... method horizontalOffset (line 3608) | def horizontalOffset(self, /) -> int: ... method indexAt (line 3609) | def indexAt(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QMode... method initStyleOption (line 3611) | def initStyleOption(self, option: QStyleOptionFrame, /) -> None: ... method initStyleOption (line 3613) | def initStyleOption(self, option: QStyleOptionHeader, /) -> None: ... method initStyleOptionForIndex (line 3614) | def initStyleOptionForIndex(self, option: QStyleOptionHeader, logicalI... method initialize (line 3615) | def initialize(self, /) -> None: ... method initializeSections (line 3617) | def initializeSections(self, start: int, end: int, /) -> None: ... method initializeSections (line 3619) | def initializeSections(self, /) -> None: ... method isFirstSectionMovable (line 3620) | def isFirstSectionMovable(self, /) -> bool: ... method isIndexHidden (line 3621) | def isIndexHidden(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method isSectionHidden (line 3622) | def isSectionHidden(self, logicalIndex: int, /) -> bool: ... method isSortIndicatorClearable (line 3623) | def isSortIndicatorClearable(self, /) -> bool: ... method isSortIndicatorShown (line 3624) | def isSortIndicatorShown(self, /) -> bool: ... method length (line 3625) | def length(self, /) -> int: ... method logicalIndex (line 3626) | def logicalIndex(self, visualIndex: int, /) -> int: ... method logicalIndexAt (line 3628) | def logicalIndexAt(self, x: int, y: int, /) -> int: ... method logicalIndexAt (line 3630) | def logicalIndexAt(self, position: int, /) -> int: ... method logicalIndexAt (line 3632) | def logicalIndexAt(self, pos: PySide6.QtCore.QPoint, /) -> int: ... method maximumSectionSize (line 3633) | def maximumSectionSize(self, /) -> int: ... method minimumSectionSize (line 3634) | def minimumSectionSize(self, /) -> int: ... method mouseDoubleClickEvent (line 3635) | def mouseDoubleClickEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> No... method mouseMoveEvent (line 3636) | def mouseMoveEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 3637) | def mousePressEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 3638) | def mouseReleaseEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method moveCursor (line 3639) | def moveCursor(self, arg__1: QAbstractItemView.CursorAction, arg__2: P... method moveSection (line 3640) | def moveSection(self, from_: int, to: int, /) -> None: ... method offset (line 3641) | def offset(self, /) -> int: ... method orientation (line 3642) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method paintEvent (line 3643) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method paintSection (line 3644) | def paintSection(self, painter: PySide6.QtGui.QPainter, rect: PySide6.... method reset (line 3645) | def reset(self, /) -> None: ... method resetDefaultSectionSize (line 3646) | def resetDefaultSectionSize(self, /) -> None: ... method resizeContentsPrecision (line 3647) | def resizeContentsPrecision(self, /) -> int: ... method resizeSection (line 3648) | def resizeSection(self, logicalIndex: int, size: int, /) -> None: ... method resizeSections (line 3650) | def resizeSections(self, mode: QHeaderView.ResizeMode, /) -> None: ... method resizeSections (line 3652) | def resizeSections(self, /) -> None: ... method restoreState (line 3653) | def restoreState(self, state: PySide6.QtCore.QByteArray | bytes | byte... method rowsInserted (line 3654) | def rowsInserted(self, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method saveState (line 3655) | def saveState(self, /) -> PySide6.QtCore.QByteArray: ... method scrollContentsBy (line 3656) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method scrollTo (line 3657) | def scrollTo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method sectionPosition (line 3658) | def sectionPosition(self, logicalIndex: int, /) -> int: ... method sectionResizeMode (line 3659) | def sectionResizeMode(self, logicalIndex: int, /) -> QHeaderView.Resiz... method sectionSize (line 3660) | def sectionSize(self, logicalIndex: int, /) -> int: ... method sectionSizeFromContents (line 3661) | def sectionSizeFromContents(self, logicalIndex: int, /) -> PySide6.QtC... method sectionSizeHint (line 3662) | def sectionSizeHint(self, logicalIndex: int, /) -> int: ... method sectionViewportPosition (line 3663) | def sectionViewportPosition(self, logicalIndex: int, /) -> int: ... method sectionsAboutToBeRemoved (line 3664) | def sectionsAboutToBeRemoved(self, parent: PySide6.QtCore.QModelIndex ... method sectionsClickable (line 3665) | def sectionsClickable(self, /) -> bool: ... method sectionsHidden (line 3666) | def sectionsHidden(self, /) -> bool: ... method sectionsInserted (line 3667) | def sectionsInserted(self, parent: PySide6.QtCore.QModelIndex | PySide... method sectionsMovable (line 3668) | def sectionsMovable(self, /) -> bool: ... method sectionsMoved (line 3669) | def sectionsMoved(self, /) -> bool: ... method setCascadingSectionResizes (line 3670) | def setCascadingSectionResizes(self, enable: bool, /) -> None: ... method setDefaultAlignment (line 3671) | def setDefaultAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFl... method setDefaultSectionSize (line 3672) | def setDefaultSectionSize(self, size: int, /) -> None: ... method setFirstSectionMovable (line 3673) | def setFirstSectionMovable(self, movable: bool, /) -> None: ... method setHighlightSections (line 3674) | def setHighlightSections(self, highlight: bool, /) -> None: ... method setMaximumSectionSize (line 3675) | def setMaximumSectionSize(self, size: int, /) -> None: ... method setMinimumSectionSize (line 3676) | def setMinimumSectionSize(self, size: int, /) -> None: ... method setModel (line 3677) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setOffset (line 3678) | def setOffset(self, offset: int, /) -> None: ... method setOffsetToLastSection (line 3679) | def setOffsetToLastSection(self, /) -> None: ... method setOffsetToSectionPosition (line 3680) | def setOffsetToSectionPosition(self, visualIndex: int, /) -> None: ... method setResizeContentsPrecision (line 3681) | def setResizeContentsPrecision(self, precision: int, /) -> None: ... method setSectionHidden (line 3682) | def setSectionHidden(self, logicalIndex: int, hide: bool, /) -> None: ... method setSectionResizeMode (line 3684) | def setSectionResizeMode(self, logicalIndex: int, mode: QHeaderView.Re... method setSectionResizeMode (line 3686) | def setSectionResizeMode(self, mode: QHeaderView.ResizeMode, /) -> Non... method setSectionsClickable (line 3687) | def setSectionsClickable(self, clickable: bool, /) -> None: ... method setSectionsMovable (line 3688) | def setSectionsMovable(self, movable: bool, /) -> None: ... method setSelection (line 3689) | def setSelection(self, rect: PySide6.QtCore.QRect, flags: PySide6.QtCo... method setSortIndicator (line 3690) | def setSortIndicator(self, logicalIndex: int, order: PySide6.QtCore.Qt... method setSortIndicatorClearable (line 3691) | def setSortIndicatorClearable(self, clearable: bool, /) -> None: ... method setSortIndicatorShown (line 3692) | def setSortIndicatorShown(self, show: bool, /) -> None: ... method setStretchLastSection (line 3693) | def setStretchLastSection(self, stretch: bool, /) -> None: ... method setVisible (line 3694) | def setVisible(self, v: bool, /) -> None: ... method showSection (line 3695) | def showSection(self, logicalIndex: int, /) -> None: ... method sizeHint (line 3696) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sortIndicatorOrder (line 3697) | def sortIndicatorOrder(self, /) -> PySide6.QtCore.Qt.SortOrder: ... method sortIndicatorSection (line 3698) | def sortIndicatorSection(self, /) -> int: ... method stretchLastSection (line 3699) | def stretchLastSection(self, /) -> bool: ... method stretchSectionCount (line 3700) | def stretchSectionCount(self, /) -> int: ... method swapSections (line 3701) | def swapSections(self, first: int, second: int, /) -> None: ... method updateGeometries (line 3702) | def updateGeometries(self, /) -> None: ... method updateSection (line 3703) | def updateSection(self, logicalIndex: int, /) -> None: ... method verticalOffset (line 3704) | def verticalOffset(self, /) -> int: ... method viewportEvent (line 3705) | def viewportEvent(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method visualIndex (line 3706) | def visualIndex(self, logicalIndex: int, /) -> int: ... method visualIndexAt (line 3707) | def visualIndexAt(self, position: int, /) -> int: ... method visualRect (line 3708) | def visualRect(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method visualRegionForSelection (line 3709) | def visualRegionForSelection(self, selection: PySide6.QtCore.QItemSele... class QInputDialog (line 3711) | class QInputDialog(QDialog): class InputDialogOption (line 3712) | class InputDialogOption(enum.Enum): class InputMode (line 3717) | class InputMode(enum.Enum): method __init__ (line 3728) | def __init__(self, /, parent: QWidget | None = ..., flags: PySide6.QtC... method cancelButtonText (line 3729) | def cancelButtonText(self, /) -> str: ... method comboBoxItems (line 3730) | def comboBoxItems(self, /) -> List[str]: ... method done (line 3731) | def done(self, result: int, /) -> None: ... method doubleDecimals (line 3732) | def doubleDecimals(self, /) -> int: ... method doubleMaximum (line 3733) | def doubleMaximum(self, /) -> float: ... method doubleMinimum (line 3734) | def doubleMinimum(self, /) -> float: ... method doubleStep (line 3735) | def doubleStep(self, /) -> float: ... method doubleValue (line 3736) | def doubleValue(self, /) -> float: ... method getDouble (line 3738) | def getDouble(parent: QWidget | None, title: str, label: str, /, value... method getInt (line 3740) | def getInt(parent: QWidget | None, title: str, label: str, /, value: i... method getItem (line 3742) | def getItem(parent: QWidget | None, title: str, label: str, items: typ... method getMultiLineText (line 3744) | def getMultiLineText(parent: QWidget | None, title: str, label: str, /... method getText (line 3746) | def getText(parent: QWidget | None, title: str, label: str, /, echo: Q... method inputMode (line 3747) | def inputMode(self, /) -> QInputDialog.InputMode: ... method intMaximum (line 3748) | def intMaximum(self, /) -> int: ... method intMinimum (line 3749) | def intMinimum(self, /) -> int: ... method intStep (line 3750) | def intStep(self, /) -> int: ... method intValue (line 3751) | def intValue(self, /) -> int: ... method isComboBoxEditable (line 3752) | def isComboBoxEditable(self, /) -> bool: ... method labelText (line 3753) | def labelText(self, /) -> str: ... method minimumSizeHint (line 3754) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method okButtonText (line 3755) | def okButtonText(self, /) -> str: ... method open (line 3757) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 3759) | def open(self, /) -> None: ... method setCancelButtonText (line 3760) | def setCancelButtonText(self, text: str, /) -> None: ... method setComboBoxEditable (line 3761) | def setComboBoxEditable(self, editable: bool, /) -> None: ... method setComboBoxItems (line 3762) | def setComboBoxItems(self, items: typing.Iterable[str], /) -> None: ... method setDoubleDecimals (line 3763) | def setDoubleDecimals(self, decimals: int, /) -> None: ... method setDoubleMaximum (line 3764) | def setDoubleMaximum(self, max: float, /) -> None: ... method setDoubleMinimum (line 3765) | def setDoubleMinimum(self, min: float, /) -> None: ... method setDoubleRange (line 3766) | def setDoubleRange(self, min: float, max: float, /) -> None: ... method setDoubleStep (line 3767) | def setDoubleStep(self, step: float, /) -> None: ... method setDoubleValue (line 3768) | def setDoubleValue(self, value: float, /) -> None: ... method setInputMode (line 3769) | def setInputMode(self, mode: QInputDialog.InputMode, /) -> None: ... method setIntMaximum (line 3770) | def setIntMaximum(self, max: int, /) -> None: ... method setIntMinimum (line 3771) | def setIntMinimum(self, min: int, /) -> None: ... method setIntRange (line 3772) | def setIntRange(self, min: int, max: int, /) -> None: ... method setIntStep (line 3773) | def setIntStep(self, step: int, /) -> None: ... method setIntValue (line 3774) | def setIntValue(self, value: int, /) -> None: ... method setLabelText (line 3775) | def setLabelText(self, text: str, /) -> None: ... method setOkButtonText (line 3776) | def setOkButtonText(self, text: str, /) -> None: ... method setOption (line 3777) | def setOption(self, option: QInputDialog.InputDialogOption, /, on: boo... method setTextEchoMode (line 3778) | def setTextEchoMode(self, mode: QLineEdit.EchoMode, /) -> None: ... method setTextValue (line 3779) | def setTextValue(self, text: str, /) -> None: ... method setVisible (line 3780) | def setVisible(self, visible: bool, /) -> None: ... method sizeHint (line 3781) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method testOption (line 3782) | def testOption(self, option: QInputDialog.InputDialogOption, /) -> boo... method textEchoMode (line 3783) | def textEchoMode(self, /) -> QLineEdit.EchoMode: ... method textValue (line 3784) | def textValue(self, /) -> str: ... class QIntList (line 3786) | class QIntList: method __init__ (line 3788) | def __init__(self, *args, **kwargs) -> None: ... method append (line 3789) | def append(self, *args, **kwargs): ... method capacity (line 3790) | def capacity(self, *args, **kwargs): ... method clear (line 3791) | def clear(self, *args, **kwargs): ... method constData (line 3792) | def constData(self, *args, **kwargs): ... method data (line 3793) | def data(self, *args, **kwargs): ... method pop_back (line 3794) | def pop_back(self, *args, **kwargs): ... method pop_front (line 3795) | def pop_front(self, *args, **kwargs): ... method prepend (line 3796) | def prepend(self, *args, **kwargs): ... method push_back (line 3797) | def push_back(self, *args, **kwargs): ... method push_front (line 3798) | def push_front(self, *args, **kwargs): ... method removeFirst (line 3799) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 3800) | def removeLast(self, *args, **kwargs): ... method reserve (line 3801) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 3802) | def __delitem__(self, other) -> None: ... method __getitem__ (line 3803) | def __getitem__(self, index): ... method __len__ (line 3804) | def __len__(self) -> int: ... method __setitem__ (line 3805) | def __setitem__(self, index, object) -> None: ... class QItemDelegate (line 3807) | class QItemDelegate(QAbstractItemDelegate): method __init__ (line 3809) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method createEditor (line 3810) | def createEditor(self, parent: QWidget | None, option: QStyleOptionVie... method decoration (line 3811) | def decoration(self, option: QStyleOptionViewItem, variant: Any, /) ->... method doCheck (line 3812) | def doCheck(self, option: QStyleOptionViewItem, bounding: PySide6.QtCo... method drawBackground (line 3813) | def drawBackground(self, painter: PySide6.QtGui.QPainter, option: QSty... method drawCheck (line 3814) | def drawCheck(self, painter: PySide6.QtGui.QPainter, option: QStyleOpt... method drawDecoration (line 3815) | def drawDecoration(self, painter: PySide6.QtGui.QPainter, option: QSty... method drawDisplay (line 3816) | def drawDisplay(self, painter: PySide6.QtGui.QPainter, option: QStyleO... method drawFocus (line 3817) | def drawFocus(self, painter: PySide6.QtGui.QPainter, option: QStyleOpt... method editorEvent (line 3818) | def editorEvent(self, event: PySide6.QtCore.QEvent, model: PySide6.QtC... method eventFilter (line 3819) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method hasClipping (line 3820) | def hasClipping(self, /) -> bool: ... method itemEditorFactory (line 3821) | def itemEditorFactory(self, /) -> QItemEditorFactory: ... method paint (line 3822) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionV... method rect (line 3823) | def rect(self, option: QStyleOptionViewItem, index: PySide6.QtCore.QMo... method selectedPixmap (line 3825) | def selectedPixmap(pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.QImag... method setClipping (line 3826) | def setClipping(self, clip: bool, /) -> None: ... method setEditorData (line 3827) | def setEditorData(self, editor: QWidget, index: PySide6.QtCore.QModelI... method setItemEditorFactory (line 3828) | def setItemEditorFactory(self, factory: QItemEditorFactory, /) -> None... method setModelData (line 3829) | def setModelData(self, editor: QWidget, model: PySide6.QtCore.QAbstrac... method setOptions (line 3830) | def setOptions(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method sizeHint (line 3831) | def sizeHint(self, option: QStyleOptionViewItem, index: PySide6.QtCore... method textRectangle (line 3832) | def textRectangle(self, painter: PySide6.QtGui.QPainter, rect: PySide6... method updateEditorGeometry (line 3833) | def updateEditorGeometry(self, editor: QWidget, option: QStyleOptionVi... class QItemEditorCreatorBase (line 3835) | class QItemEditorCreatorBase(shiboken6.Object): method __init__ (line 3836) | def __init__(self, /) -> None: ... method createWidget (line 3837) | def createWidget(self, parent: QWidget | None, /) -> QWidget: ... method valuePropertyName (line 3838) | def valuePropertyName(self, /) -> PySide6.QtCore.QByteArray: ... class QItemEditorFactory (line 3840) | class QItemEditorFactory(shiboken6.Object): method __init__ (line 3841) | def __init__(self, /) -> None: ... method createEditor (line 3842) | def createEditor(self, userType: int, parent: QWidget | None, /) -> QW... method defaultFactory (line 3844) | def defaultFactory() -> QItemEditorFactory: ... method registerEditor (line 3845) | def registerEditor(self, userType: int, creator: QItemEditorCreatorBas... method setDefaultFactory (line 3847) | def setDefaultFactory(factory: QItemEditorFactory, /) -> None: ... method valuePropertyName (line 3848) | def valuePropertyName(self, userType: int, /) -> PySide6.QtCore.QByteA... class QKeySequenceEdit (line 3850) | class QKeySequenceEdit(QWidget): method __init__ (line 3855) | def __init__(self, keySequence: PySide6.QtGui.QKeySequence | PySide6.Q... method __init__ (line 3857) | def __init__(self, /, parent: QWidget | None = ..., *, keySequence: Py... method clear (line 3858) | def clear(self, /) -> None: ... method event (line 3859) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method finishingKeyCombinations (line 3860) | def finishingKeyCombinations(self, /) -> List[PySide6.QtCore.QKeyCombi... method focusOutEvent (line 3861) | def focusOutEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None:... method isClearButtonEnabled (line 3862) | def isClearButtonEnabled(self, /) -> bool: ... method keyPressEvent (line 3863) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 3864) | def keyReleaseEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None:... method keySequence (line 3865) | def keySequence(self, /) -> PySide6.QtGui.QKeySequence: ... method maximumSequenceLength (line 3866) | def maximumSequenceLength(self, /) -> int: ... method setClearButtonEnabled (line 3867) | def setClearButtonEnabled(self, enable: bool, /) -> None: ... method setFinishingKeyCombinations (line 3868) | def setFinishingKeyCombinations(self, finishingKeyCombinations: typing... method setKeySequence (line 3869) | def setKeySequence(self, keySequence: PySide6.QtGui.QKeySequence | PyS... method setMaximumSequenceLength (line 3870) | def setMaximumSequenceLength(self, count: int, /) -> None: ... method timerEvent (line 3871) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... class QLCDNumber (line 3873) | class QLCDNumber(QFrame): class Mode (line 3874) | class Mode(enum.Enum): class SegmentStyle (line 3880) | class SegmentStyle(enum.Enum): method __init__ (line 3887) | def __init__(self, numDigits: int, /, parent: QWidget | None = ..., *,... method __init__ (line 3889) | def __init__(self, /, parent: QWidget | None = ..., *, smallDecimalPoi... method checkOverflow (line 3891) | def checkOverflow(self, num: int, /) -> bool: ... method checkOverflow (line 3893) | def checkOverflow(self, num: float, /) -> bool: ... method digitCount (line 3894) | def digitCount(self, /) -> int: ... method display (line 3896) | def display(self, str: str, /) -> None: ... method display (line 3898) | def display(self, num: int, /) -> None: ... method display (line 3900) | def display(self, num: float, /) -> None: ... method event (line 3901) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method intValue (line 3902) | def intValue(self, /) -> int: ... method mode (line 3903) | def mode(self, /) -> QLCDNumber.Mode: ... method paintEvent (line 3904) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method segmentStyle (line 3905) | def segmentStyle(self, /) -> QLCDNumber.SegmentStyle: ... method setBinMode (line 3906) | def setBinMode(self, /) -> None: ... method setDecMode (line 3907) | def setDecMode(self, /) -> None: ... method setDigitCount (line 3908) | def setDigitCount(self, nDigits: int, /) -> None: ... method setHexMode (line 3909) | def setHexMode(self, /) -> None: ... method setMode (line 3910) | def setMode(self, arg__1: QLCDNumber.Mode, /) -> None: ... method setOctMode (line 3911) | def setOctMode(self, /) -> None: ... method setSegmentStyle (line 3912) | def setSegmentStyle(self, arg__1: QLCDNumber.SegmentStyle, /) -> None:... method setSmallDecimalPoint (line 3913) | def setSmallDecimalPoint(self, arg__1: bool, /) -> None: ... method sizeHint (line 3914) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method smallDecimalPoint (line 3915) | def smallDecimalPoint(self, /) -> bool: ... method value (line 3916) | def value(self, /) -> float: ... class QLabel (line 3918) | class QLabel(QFrame): method __init__ (line 3923) | def __init__(self, text: str, /, parent: QWidget | None = ..., f: PySi... method __init__ (line 3925) | def __init__(self, /, parent: QWidget | None = ..., f: PySide6.QtCore.... method alignment (line 3926) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method buddy (line 3927) | def buddy(self, /) -> QWidget: ... method changeEvent (line 3928) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 3929) | def clear(self, /) -> None: ... method contextMenuEvent (line 3930) | def contextMenuEvent(self, ev: PySide6.QtGui.QContextMenuEvent, /) -> ... method event (line 3931) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 3932) | def focusInEvent(self, ev: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 3933) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 3934) | def focusOutEvent(self, ev: PySide6.QtGui.QFocusEvent, /) -> None: ... method hasScaledContents (line 3935) | def hasScaledContents(self, /) -> bool: ... method hasSelectedText (line 3936) | def hasSelectedText(self, /) -> bool: ... method heightForWidth (line 3937) | def heightForWidth(self, arg__1: int, /) -> int: ... method indent (line 3938) | def indent(self, /) -> int: ... method keyPressEvent (line 3939) | def keyPressEvent(self, ev: PySide6.QtGui.QKeyEvent, /) -> None: ... method margin (line 3940) | def margin(self, /) -> int: ... method minimumSizeHint (line 3941) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 3942) | def mouseMoveEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 3943) | def mousePressEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 3944) | def mouseReleaseEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None:... method movie (line 3945) | def movie(self, /) -> PySide6.QtGui.QMovie: ... method openExternalLinks (line 3946) | def openExternalLinks(self, /) -> bool: ... method paintEvent (line 3947) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method picture (line 3948) | def picture(self, /) -> PySide6.QtGui.QPicture: ... method pixmap (line 3949) | def pixmap(self, /) -> PySide6.QtGui.QPixmap: ... method selectedText (line 3950) | def selectedText(self, /) -> str: ... method selectionStart (line 3951) | def selectionStart(self, /) -> int: ... method setAlignment (line 3952) | def setAlignment(self, arg__1: PySide6.QtCore.Qt.AlignmentFlag, /) -> ... method setBuddy (line 3953) | def setBuddy(self, arg__1: QWidget, /) -> None: ... method setIndent (line 3954) | def setIndent(self, arg__1: int, /) -> None: ... method setMargin (line 3955) | def setMargin(self, arg__1: int, /) -> None: ... method setMovie (line 3956) | def setMovie(self, movie: PySide6.QtGui.QMovie, /) -> None: ... method setNum (line 3958) | def setNum(self, arg__1: int, /) -> None: ... method setNum (line 3960) | def setNum(self, arg__1: float, /) -> None: ... method setOpenExternalLinks (line 3961) | def setOpenExternalLinks(self, open: bool, /) -> None: ... method setPicture (line 3962) | def setPicture(self, arg__1: PySide6.QtGui.QPicture | int, /) -> None:... method setPixmap (line 3963) | def setPixmap(self, arg__1: PySide6.QtGui.QPixmap | PySide6.QtGui.QIma... method setScaledContents (line 3964) | def setScaledContents(self, arg__1: bool, /) -> None: ... method setSelection (line 3965) | def setSelection(self, arg__1: int, arg__2: int, /) -> None: ... method setText (line 3966) | def setText(self, arg__1: str, /) -> None: ... method setTextFormat (line 3967) | def setTextFormat(self, arg__1: PySide6.QtCore.Qt.TextFormat, /) -> No... method setTextInteractionFlags (line 3968) | def setTextInteractionFlags(self, flags: PySide6.QtCore.Qt.TextInterac... method setWordWrap (line 3969) | def setWordWrap(self, on: bool, /) -> None: ... method sizeHint (line 3970) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method text (line 3971) | def text(self, /) -> str: ... method textFormat (line 3972) | def textFormat(self, /) -> PySide6.QtCore.Qt.TextFormat: ... method textInteractionFlags (line 3973) | def textInteractionFlags(self, /) -> PySide6.QtCore.Qt.TextInteraction... method wordWrap (line 3974) | def wordWrap(self, /) -> bool: ... class QLayout (line 3976) | class QLayout(PySide6.QtCore.QObject, QLayoutItem): class SizeConstraint (line 3977) | class SizeConstraint(enum.Enum): method __init__ (line 3985) | def __init__(self, /, parent: QWidget | None = ..., *, spacing: int | ... method activate (line 3986) | def activate(self, /) -> bool: ... method addChildLayout (line 3987) | def addChildLayout(self, l: QLayout, /) -> None: ... method addChildWidget (line 3988) | def addChildWidget(self, w: QWidget, /) -> None: ... method addItem (line 3989) | def addItem(self, arg__1: QLayoutItem, /) -> None: ... method addWidget (line 3990) | def addWidget(self, w: QWidget, /) -> None: ... method adoptLayout (line 3991) | def adoptLayout(self, layout: QLayout, /) -> bool: ... method alignmentRect (line 3992) | def alignmentRect(self, arg__1: PySide6.QtCore.QRect, /) -> PySide6.Qt... method childEvent (line 3993) | def childEvent(self, e: PySide6.QtCore.QChildEvent, /) -> None: ... method closestAcceptableSize (line 3995) | def closestAcceptableSize(w: QWidget, s: PySide6.QtCore.QSize, /) -> P... method contentsMargins (line 3996) | def contentsMargins(self, /) -> PySide6.QtCore.QMargins: ... method contentsRect (line 3997) | def contentsRect(self, /) -> PySide6.QtCore.QRect: ... method controlTypes (line 3998) | def controlTypes(self, /) -> QSizePolicy.ControlType: ... method count (line 3999) | def count(self, /) -> int: ... method expandingDirections (line 4000) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method geometry (line 4001) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method getContentsMargins (line 4002) | def getContentsMargins(self, /) -> typing.Any: ... method horizontalSizeConstraint (line 4003) | def horizontalSizeConstraint(self, /) -> QLayout.SizeConstraint: ... method indexOf (line 4005) | def indexOf(self, arg__1: QWidget, /) -> int: ... method indexOf (line 4007) | def indexOf(self, arg__1: QLayoutItem, /) -> int: ... method invalidate (line 4008) | def invalidate(self, /) -> None: ... method isEmpty (line 4009) | def isEmpty(self, /) -> bool: ... method isEnabled (line 4010) | def isEnabled(self, /) -> bool: ... method itemAt (line 4011) | def itemAt(self, index: int, /) -> QLayoutItem | None: ... method layout (line 4012) | def layout(self, /) -> QLayout: ... method maximumSize (line 4013) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method menuBar (line 4014) | def menuBar(self, /) -> QWidget: ... method minimumSize (line 4015) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method parentWidget (line 4016) | def parentWidget(self, /) -> QWidget: ... method removeItem (line 4017) | def removeItem(self, arg__1: QLayoutItem, /) -> None: ... method removeWidget (line 4018) | def removeWidget(self, w: QWidget, /) -> None: ... method replaceWidget (line 4019) | def replaceWidget(self, from_: QWidget, to: QWidget, /, options: PySid... method setAlignment (line 4021) | def setAlignment(self, w: QWidget, alignment: PySide6.QtCore.Qt.Alignm... method setAlignment (line 4023) | def setAlignment(self, l: QLayout, alignment: PySide6.QtCore.Qt.Alignm... method setAlignment (line 4025) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setContentsMargins (line 4027) | def setContentsMargins(self, left: int, top: int, right: int, bottom: ... method setContentsMargins (line 4029) | def setContentsMargins(self, margins: PySide6.QtCore.QMargins, /) -> N... method setEnabled (line 4030) | def setEnabled(self, arg__1: bool, /) -> None: ... method setGeometry (line 4031) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method setHorizontalSizeConstraint (line 4032) | def setHorizontalSizeConstraint(self, constraint: QLayout.SizeConstrai... method setMenuBar (line 4033) | def setMenuBar(self, w: QWidget, /) -> None: ... method setSizeConstraint (line 4034) | def setSizeConstraint(self, constraint: QLayout.SizeConstraint, /) -> ... method setSizeConstraints (line 4035) | def setSizeConstraints(self, horizontal: QLayout.SizeConstraint, verti... method setSpacing (line 4036) | def setSpacing(self, arg__1: int, /) -> None: ... method setVerticalSizeConstraint (line 4037) | def setVerticalSizeConstraint(self, constraint: QLayout.SizeConstraint... method sizeConstraint (line 4038) | def sizeConstraint(self, /) -> QLayout.SizeConstraint: ... method spacing (line 4039) | def spacing(self, /) -> int: ... method takeAt (line 4040) | def takeAt(self, index: int, /) -> QLayoutItem | None: ... method totalHeightForWidth (line 4041) | def totalHeightForWidth(self, w: int, /) -> int: ... method totalMaximumSize (line 4042) | def totalMaximumSize(self, /) -> PySide6.QtCore.QSize: ... method totalMinimumHeightForWidth (line 4043) | def totalMinimumHeightForWidth(self, w: int, /) -> int: ... method totalMinimumSize (line 4044) | def totalMinimumSize(self, /) -> PySide6.QtCore.QSize: ... method totalSizeHint (line 4045) | def totalSizeHint(self, /) -> PySide6.QtCore.QSize: ... method unsetContentsMargins (line 4046) | def unsetContentsMargins(self, /) -> None: ... method update (line 4047) | def update(self, /) -> None: ... method verticalSizeConstraint (line 4048) | def verticalSizeConstraint(self, /) -> QLayout.SizeConstraint: ... method widgetEvent (line 4049) | def widgetEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... class QLayoutItem (line 4051) | class QLayoutItem(shiboken6.Object): method __init__ (line 4053) | def __init__(self, /, alignment: PySide6.QtCore.Qt.AlignmentFlag = ...... method alignment (line 4054) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method controlTypes (line 4055) | def controlTypes(self, /) -> QSizePolicy.ControlType: ... method expandingDirections (line 4056) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method geometry (line 4057) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method hasHeightForWidth (line 4058) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 4059) | def heightForWidth(self, arg__1: int, /) -> int: ... method invalidate (line 4060) | def invalidate(self, /) -> None: ... method isEmpty (line 4061) | def isEmpty(self, /) -> bool: ... method layout (line 4062) | def layout(self, /) -> QLayout: ... method maximumSize (line 4063) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumHeightForWidth (line 4064) | def minimumHeightForWidth(self, arg__1: int, /) -> int: ... method minimumSize (line 4065) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method setAlignment (line 4066) | def setAlignment(self, a: PySide6.QtCore.Qt.AlignmentFlag, /) -> None:... method setGeometry (line 4067) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method sizeHint (line 4068) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method spacerItem (line 4069) | def spacerItem(self, /) -> QSpacerItem | None: ... method widget (line 4070) | def widget(self, /) -> QWidget | None: ... class QLineEdit (line 4072) | class QLineEdit(QWidget): class ActionPosition (line 4073) | class ActionPosition(enum.Enum): class EchoMode (line 4077) | class EchoMode(enum.Enum): method __init__ (line 4091) | def __init__(self, arg__1: str, /, parent: QWidget | None = ..., *, in... method __init__ (line 4093) | def __init__(self, /, parent: QWidget | None = ..., *, inputMask: str ... method addAction (line 4095) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4097) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 4099) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4101) | def addAction(self, text: str, receiver: PySide6.QtCore.QObject, membe... method addAction (line 4103) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4105) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 4107) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4109) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4111) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 4113) | def addAction(self, text: str, callable: typing.Callable[[], typing.An... method addAction (line 4115) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4117) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4119) | def addAction(self, action: PySide6.QtGui.QAction, position: QLineEdit... method addAction (line 4121) | def addAction(self, text: str, /) -> PySide6.QtGui.QAction: ... method addAction (line 4123) | def addAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method alignment (line 4124) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method backspace (line 4125) | def backspace(self, /) -> None: ... method changeEvent (line 4126) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 4127) | def clear(self, /) -> None: ... method completer (line 4128) | def completer(self, /) -> QCompleter: ... method contextMenuEvent (line 4129) | def contextMenuEvent(self, arg__1: PySide6.QtGui.QContextMenuEvent, /)... method copy (line 4130) | def copy(self, /) -> None: ... method createStandardContextMenu (line 4131) | def createStandardContextMenu(self, /) -> QMenu: ... method cursorBackward (line 4132) | def cursorBackward(self, mark: bool, /, steps: int = ...) -> None: ... method cursorForward (line 4133) | def cursorForward(self, mark: bool, /, steps: int = ...) -> None: ... method cursorMoveStyle (line 4134) | def cursorMoveStyle(self, /) -> PySide6.QtCore.Qt.CursorMoveStyle: ... method cursorPosition (line 4135) | def cursorPosition(self, /) -> int: ... method cursorPositionAt (line 4136) | def cursorPositionAt(self, pos: PySide6.QtCore.QPoint, /) -> int: ... method cursorRect (line 4137) | def cursorRect(self, /) -> PySide6.QtCore.QRect: ... method cursorWordBackward (line 4138) | def cursorWordBackward(self, mark: bool, /) -> None: ... method cursorWordForward (line 4139) | def cursorWordForward(self, mark: bool, /) -> None: ... method cut (line 4140) | def cut(self, /) -> None: ... method del_ (line 4141) | def del_(self, /) -> None: ... method deselect (line 4142) | def deselect(self, /) -> None: ... method displayText (line 4143) | def displayText(self, /) -> str: ... method dragEnabled (line 4144) | def dragEnabled(self, /) -> bool: ... method dragEnterEvent (line 4145) | def dragEnterEvent(self, arg__1: PySide6.QtGui.QDragEnterEvent, /) -> ... method dragLeaveEvent (line 4146) | def dragLeaveEvent(self, e: PySide6.QtGui.QDragLeaveEvent, /) -> None:... method dragMoveEvent (line 4147) | def dragMoveEvent(self, e: PySide6.QtGui.QDragMoveEvent, /) -> None: ... method dropEvent (line 4148) | def dropEvent(self, arg__1: PySide6.QtGui.QDropEvent, /) -> None: ... method echoMode (line 4149) | def echoMode(self, /) -> QLineEdit.EchoMode: ... method end (line 4150) | def end(self, mark: bool, /) -> None: ... method event (line 4151) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 4152) | def focusInEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 4153) | def focusOutEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None:... method hasAcceptableInput (line 4154) | def hasAcceptableInput(self, /) -> bool: ... method hasFrame (line 4155) | def hasFrame(self, /) -> bool: ... method hasSelectedText (line 4156) | def hasSelectedText(self, /) -> bool: ... method home (line 4157) | def home(self, mark: bool, /) -> None: ... method initStyleOption (line 4158) | def initStyleOption(self, option: QStyleOptionFrame, /) -> None: ... method inputMask (line 4159) | def inputMask(self, /) -> str: ... method inputMethodEvent (line 4160) | def inputMethodEvent(self, arg__1: PySide6.QtGui.QInputMethodEvent, /)... method inputMethodQuery (line 4162) | def inputMethodQuery(self, property: PySide6.QtCore.Qt.InputMethodQuer... method inputMethodQuery (line 4164) | def inputMethodQuery(self, arg__1: PySide6.QtCore.Qt.InputMethodQuery,... method insert (line 4165) | def insert(self, arg__1: str, /) -> None: ... method isClearButtonEnabled (line 4166) | def isClearButtonEnabled(self, /) -> bool: ... method isModified (line 4167) | def isModified(self, /) -> bool: ... method isReadOnly (line 4168) | def isReadOnly(self, /) -> bool: ... method isRedoAvailable (line 4169) | def isRedoAvailable(self, /) -> bool: ... method isUndoAvailable (line 4170) | def isUndoAvailable(self, /) -> bool: ... method keyPressEvent (line 4171) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 4172) | def keyReleaseEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None:... method maxLength (line 4173) | def maxLength(self, /) -> int: ... method minimumSizeHint (line 4174) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseDoubleClickEvent (line 4175) | def mouseDoubleClickEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) ... method mouseMoveEvent (line 4176) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 4177) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 4178) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method paintEvent (line 4179) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method paste (line 4180) | def paste(self, /) -> None: ... method placeholderText (line 4181) | def placeholderText(self, /) -> str: ... method redo (line 4182) | def redo(self, /) -> None: ... method selectAll (line 4183) | def selectAll(self, /) -> None: ... method selectedText (line 4184) | def selectedText(self, /) -> str: ... method selectionEnd (line 4185) | def selectionEnd(self, /) -> int: ... method selectionLength (line 4186) | def selectionLength(self, /) -> int: ... method selectionStart (line 4187) | def selectionStart(self, /) -> int: ... method setAlignment (line 4188) | def setAlignment(self, flag: PySide6.QtCore.Qt.AlignmentFlag, /) -> No... method setClearButtonEnabled (line 4189) | def setClearButtonEnabled(self, enable: bool, /) -> None: ... method setCompleter (line 4190) | def setCompleter(self, completer: QCompleter, /) -> None: ... method setCursorMoveStyle (line 4191) | def setCursorMoveStyle(self, style: PySide6.QtCore.Qt.CursorMoveStyle,... method setCursorPosition (line 4192) | def setCursorPosition(self, arg__1: int, /) -> None: ... method setDragEnabled (line 4193) | def setDragEnabled(self, b: bool, /) -> None: ... method setEchoMode (line 4194) | def setEchoMode(self, arg__1: QLineEdit.EchoMode, /) -> None: ... method setFrame (line 4195) | def setFrame(self, arg__1: bool, /) -> None: ... method setInputMask (line 4196) | def setInputMask(self, inputMask: str, /) -> None: ... method setMaxLength (line 4197) | def setMaxLength(self, arg__1: int, /) -> None: ... method setModified (line 4198) | def setModified(self, arg__1: bool, /) -> None: ... method setPlaceholderText (line 4199) | def setPlaceholderText(self, arg__1: str, /) -> None: ... method setReadOnly (line 4200) | def setReadOnly(self, arg__1: bool, /) -> None: ... method setSelection (line 4201) | def setSelection(self, arg__1: int, arg__2: int, /) -> None: ... method setText (line 4202) | def setText(self, arg__1: str | None, /) -> None: ... method setTextMargins (line 4204) | def setTextMargins(self, left: int, top: int, right: int, bottom: int,... method setTextMargins (line 4206) | def setTextMargins(self, margins: PySide6.QtCore.QMargins, /) -> None:... method setValidator (line 4207) | def setValidator(self, arg__1: PySide6.QtGui.QValidator, /) -> None: ... method sizeHint (line 4208) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method text (line 4209) | def text(self, /) -> str: ... method textMargins (line 4210) | def textMargins(self, /) -> PySide6.QtCore.QMargins: ... method timerEvent (line 4211) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... method undo (line 4212) | def undo(self, /) -> None: ... method validator (line 4213) | def validator(self, /) -> PySide6.QtGui.QValidator: ... class QListView (line 4215) | class QListView(QAbstractItemView): class Flow (line 4216) | class Flow(enum.Enum): class LayoutMode (line 4220) | class LayoutMode(enum.Enum): class Movement (line 4224) | class Movement(enum.Enum): class ResizeMode (line 4229) | class ResizeMode(enum.Enum): class ViewMode (line 4233) | class ViewMode(enum.Enum): method __init__ (line 4238) | def __init__(self, /, parent: QWidget | None = ..., *, movement: QList... method batchSize (line 4239) | def batchSize(self, /) -> int: ... method clearPropertyFlags (line 4240) | def clearPropertyFlags(self, /) -> None: ... method contentsSize (line 4241) | def contentsSize(self, /) -> PySide6.QtCore.QSize: ... method currentChanged (line 4242) | def currentChanged(self, current: PySide6.QtCore.QModelIndex | PySide6... method dataChanged (line 4243) | def dataChanged(self, topLeft: PySide6.QtCore.QModelIndex | PySide6.Qt... method doItemsLayout (line 4244) | def doItemsLayout(self, /) -> None: ... method dragLeaveEvent (line 4245) | def dragLeaveEvent(self, e: PySide6.QtGui.QDragLeaveEvent, /) -> None:... method dragMoveEvent (line 4246) | def dragMoveEvent(self, e: PySide6.QtGui.QDragMoveEvent, /) -> None: ... method dropEvent (line 4247) | def dropEvent(self, e: PySide6.QtGui.QDropEvent, /) -> None: ... method event (line 4248) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method flow (line 4249) | def flow(self, /) -> QListView.Flow: ... method gridSize (line 4250) | def gridSize(self, /) -> PySide6.QtCore.QSize: ... method horizontalOffset (line 4251) | def horizontalOffset(self, /) -> int: ... method indexAt (line 4252) | def indexAt(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QMode... method initViewItemOption (line 4253) | def initViewItemOption(self, option: QStyleOptionViewItem, /) -> None:... method isIndexHidden (line 4254) | def isIndexHidden(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method isRowHidden (line 4255) | def isRowHidden(self, row: int, /) -> bool: ... method isSelectionRectVisible (line 4256) | def isSelectionRectVisible(self, /) -> bool: ... method isWrapping (line 4257) | def isWrapping(self, /) -> bool: ... method itemAlignment (line 4258) | def itemAlignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method layoutMode (line 4259) | def layoutMode(self, /) -> QListView.LayoutMode: ... method modelColumn (line 4260) | def modelColumn(self, /) -> int: ... method mouseMoveEvent (line 4261) | def mouseMoveEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 4262) | def mouseReleaseEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method moveCursor (line 4263) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method movement (line 4264) | def movement(self, /) -> QListView.Movement: ... method paintEvent (line 4265) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method rectForIndex (line 4266) | def rectForIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method reset (line 4267) | def reset(self, /) -> None: ... method resizeContents (line 4268) | def resizeContents(self, width: int, height: int, /) -> None: ... method resizeEvent (line 4269) | def resizeEvent(self, e: PySide6.QtGui.QResizeEvent, /) -> None: ... method resizeMode (line 4270) | def resizeMode(self, /) -> QListView.ResizeMode: ... method rowsAboutToBeRemoved (line 4271) | def rowsAboutToBeRemoved(self, parent: PySide6.QtCore.QModelIndex | Py... method rowsInserted (line 4272) | def rowsInserted(self, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method scrollContentsBy (line 4273) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method scrollTo (line 4274) | def scrollTo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method selectedIndexes (line 4275) | def selectedIndexes(self, /) -> list[PySide6.QtCore.QModelIndex]: ... method selectionChanged (line 4276) | def selectionChanged(self, selected: PySide6.QtCore.QItemSelection, de... method setBatchSize (line 4277) | def setBatchSize(self, batchSize: int, /) -> None: ... method setFlow (line 4278) | def setFlow(self, flow: QListView.Flow, /) -> None: ... method setGridSize (line 4279) | def setGridSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setItemAlignment (line 4280) | def setItemAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag,... method setLayoutMode (line 4281) | def setLayoutMode(self, mode: QListView.LayoutMode, /) -> None: ... method setModelColumn (line 4282) | def setModelColumn(self, column: int, /) -> None: ... method setMovement (line 4283) | def setMovement(self, movement: QListView.Movement, /) -> None: ... method setPositionForIndex (line 4284) | def setPositionForIndex(self, position: PySide6.QtCore.QPoint, index: ... method setResizeMode (line 4285) | def setResizeMode(self, mode: QListView.ResizeMode, /) -> None: ... method setRootIndex (line 4286) | def setRootIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method setRowHidden (line 4287) | def setRowHidden(self, row: int, hide: bool, /) -> None: ... method setSelection (line 4288) | def setSelection(self, rect: PySide6.QtCore.QRect, command: PySide6.Qt... method setSelectionRectVisible (line 4289) | def setSelectionRectVisible(self, show: bool, /) -> None: ... method setSpacing (line 4290) | def setSpacing(self, space: int, /) -> None: ... method setUniformItemSizes (line 4291) | def setUniformItemSizes(self, enable: bool, /) -> None: ... method setViewMode (line 4292) | def setViewMode(self, mode: QListView.ViewMode, /) -> None: ... method setWordWrap (line 4293) | def setWordWrap(self, on: bool, /) -> None: ... method setWrapping (line 4294) | def setWrapping(self, enable: bool, /) -> None: ... method spacing (line 4295) | def spacing(self, /) -> int: ... method startDrag (line 4296) | def startDrag(self, supportedActions: PySide6.QtCore.Qt.DropAction, /)... method timerEvent (line 4297) | def timerEvent(self, e: PySide6.QtCore.QTimerEvent, /) -> None: ... method uniformItemSizes (line 4298) | def uniformItemSizes(self, /) -> bool: ... method updateGeometries (line 4299) | def updateGeometries(self, /) -> None: ... method verticalOffset (line 4300) | def verticalOffset(self, /) -> int: ... method viewMode (line 4301) | def viewMode(self, /) -> QListView.ViewMode: ... method viewportSizeHint (line 4302) | def viewportSizeHint(self, /) -> PySide6.QtCore.QSize: ... method visualRect (line 4303) | def visualRect(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method visualRegionForSelection (line 4304) | def visualRegionForSelection(self, selection: PySide6.QtCore.QItemSele... method wheelEvent (line 4305) | def wheelEvent(self, e: PySide6.QtGui.QWheelEvent, /) -> None: ... method wordWrap (line 4306) | def wordWrap(self, /) -> bool: ... class QListWidget (line 4308) | class QListWidget(QListView): method __init__ (line 4320) | def __init__(self, /, parent: QWidget | None = ..., *, count: int | No... method addItem (line 4322) | def addItem(self, label: str, /) -> None: ... method addItem (line 4324) | def addItem(self, item: QListWidgetItem, /) -> None: ... method addItems (line 4325) | def addItems(self, labels: typing.Iterable[str], /) -> None: ... method clear (line 4326) | def clear(self, /) -> None: ... method closePersistentEditor (line 4327) | def closePersistentEditor(self, item: QListWidgetItem, /) -> None: ...... method count (line 4328) | def count(self, /) -> int: ... method currentItem (line 4329) | def currentItem(self, /) -> QListWidgetItem: ... method currentRow (line 4330) | def currentRow(self, /) -> int: ... method dropEvent (line 4331) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method dropMimeData (line 4332) | def dropMimeData(self, index: int, data: PySide6.QtCore.QMimeData, act... method editItem (line 4333) | def editItem(self, item: QListWidgetItem, /) -> None: ... method event (line 4334) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method findItems (line 4335) | def findItems(self, text: str, flags: PySide6.QtCore.Qt.MatchFlag, /) ... method indexFromItem (line 4336) | def indexFromItem(self, item: QListWidgetItem, /) -> PySide6.QtCore.QM... method insertItem (line 4338) | def insertItem(self, row: int, label: str, /) -> None: ... method insertItem (line 4340) | def insertItem(self, row: int, item: QListWidgetItem, /) -> None: ... method insertItems (line 4341) | def insertItems(self, row: int, labels: typing.Iterable[str], /) -> No... method isPersistentEditorOpen (line 4343) | def isPersistentEditorOpen(self, item: QListWidgetItem, /) -> bool: ... method isPersistentEditorOpen (line 4345) | def isPersistentEditorOpen(self, index: PySide6.QtCore.QModelIndex | P... method isSortingEnabled (line 4346) | def isSortingEnabled(self, /) -> bool: ... method item (line 4347) | def item(self, row: int, /) -> QListWidgetItem: ... method itemAt (line 4349) | def itemAt(self, x: int, y: int, /) -> QListWidgetItem: ... method itemAt (line 4351) | def itemAt(self, p: PySide6.QtCore.QPoint, /) -> QListWidgetItem: ... method itemFromIndex (line 4352) | def itemFromIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method itemWidget (line 4353) | def itemWidget(self, item: QListWidgetItem, /) -> QWidget: ... method items (line 4354) | def items(self, data: PySide6.QtCore.QMimeData, /) -> List[QListWidget... method mimeData (line 4355) | def mimeData(self, items: typing.Iterable[QListWidgetItem], /) -> PySi... method mimeTypes (line 4356) | def mimeTypes(self, /) -> List[str]: ... method openPersistentEditor (line 4357) | def openPersistentEditor(self, item: QListWidgetItem, /) -> None: ... ... method removeItemWidget (line 4358) | def removeItemWidget(self, item: QListWidgetItem, /) -> None: ... method row (line 4359) | def row(self, item: QListWidgetItem, /) -> int: ... method scrollToItem (line 4360) | def scrollToItem(self, item: QListWidgetItem, /, hint: QAbstractItemVi... method selectedItems (line 4361) | def selectedItems(self, /) -> List[QListWidgetItem]: ... method setCurrentItem (line 4363) | def setCurrentItem(self, item: QListWidgetItem, command: PySide6.QtCor... method setCurrentItem (line 4365) | def setCurrentItem(self, item: QListWidgetItem, /) -> None: ... method setCurrentRow (line 4367) | def setCurrentRow(self, row: int, command: PySide6.QtCore.QItemSelecti... method setCurrentRow (line 4369) | def setCurrentRow(self, row: int, /) -> None: ... method setItemWidget (line 4370) | def setItemWidget(self, item: QListWidgetItem, widget: QWidget | None,... method setModel (line 4371) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setSelectionModel (line 4372) | def setSelectionModel(self, selectionModel: PySide6.QtCore.QItemSelect... method setSortingEnabled (line 4373) | def setSortingEnabled(self, enable: bool, /) -> None: ... method setSupportedDragActions (line 4374) | def setSupportedDragActions(self, actions: PySide6.QtCore.Qt.DropActio... method sortItems (line 4375) | def sortItems(self, /, order: PySide6.QtCore.Qt.SortOrder = ...) -> No... method supportedDragActions (line 4376) | def supportedDragActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method supportedDropActions (line 4377) | def supportedDropActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method takeItem (line 4378) | def takeItem(self, row: int, /) -> QListWidgetItem: ... method visualItemRect (line 4379) | def visualItemRect(self, item: QListWidgetItem, /) -> PySide6.QtCore.Q... class QListWidgetItem (line 4381) | class QListWidgetItem(shiboken6.Object): class ItemType (line 4382) | class ItemType(enum.IntEnum): method __init__ (line 4386) | def __init__(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, ... method __init__ (line 4388) | def __init__(self, text: str, /, listview: QListWidget | None = ..., t... method __init__ (line 4390) | def __init__(self, /, listview: QListWidget | None = ..., type: int = ... method __init__ (line 4392) | def __init__(self, other: QListWidgetItem, /) -> None: ... method background (line 4393) | def background(self, /) -> PySide6.QtGui.QBrush: ... method checkState (line 4394) | def checkState(self, /) -> PySide6.QtCore.Qt.CheckState: ... method clone (line 4395) | def clone(self, /) -> QListWidgetItem: ... method data (line 4396) | def data(self, role: PySide6.QtCore.Qt.ItemDataRole | int, /) -> Any: ... method flags (line 4397) | def flags(self, /) -> PySide6.QtCore.Qt.ItemFlag: ... method font (line 4398) | def font(self, /) -> PySide6.QtGui.QFont: ... method foreground (line 4399) | def foreground(self, /) -> PySide6.QtGui.QBrush: ... method icon (line 4400) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method isHidden (line 4401) | def isHidden(self, /) -> bool: ... method isSelected (line 4402) | def isSelected(self, /) -> bool: ... method listWidget (line 4403) | def listWidget(self, /) -> QListWidget: ... method read (line 4404) | def read(self, in_: PySide6.QtCore.QDataStream, /) -> None: ... method setBackground (line 4405) | def setBackground(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setCheckState (line 4406) | def setCheckState(self, state: PySide6.QtCore.Qt.CheckState, /) -> Non... method setData (line 4407) | def setData(self, role: PySide6.QtCore.Qt.ItemDataRole | int, value: A... method setFlags (line 4408) | def setFlags(self, flags: PySide6.QtCore.Qt.ItemFlag, /) -> None: ... method setFont (line 4409) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setForeground (line 4410) | def setForeground(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setHidden (line 4411) | def setHidden(self, hide: bool, /) -> None: ... method setIcon (line 4412) | def setIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, /... method setSelected (line 4413) | def setSelected(self, select: bool, /) -> None: ... method setSizeHint (line 4414) | def setSizeHint(self, size: PySide6.QtCore.QSize, /) -> None: ... method setStatusTip (line 4415) | def setStatusTip(self, statusTip: str, /) -> None: ... method setText (line 4416) | def setText(self, text: str, /) -> None: ... method setTextAlignment (line 4418) | def setTextAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag,... method setTextAlignment (line 4420) | def setTextAlignment(self, alignment: int, /) -> None: ... method setToolTip (line 4421) | def setToolTip(self, toolTip: str, /) -> None: ... method setWhatsThis (line 4422) | def setWhatsThis(self, whatsThis: str, /) -> None: ... method sizeHint (line 4423) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method statusTip (line 4424) | def statusTip(self, /) -> str: ... method text (line 4425) | def text(self, /) -> str: ... method textAlignment (line 4426) | def textAlignment(self, /) -> int: ... method toolTip (line 4427) | def toolTip(self, /) -> str: ... method type (line 4428) | def type(self, /) -> int: ... method whatsThis (line 4429) | def whatsThis(self, /) -> str: ... method write (line 4430) | def write(self, out: PySide6.QtCore.QDataStream, /) -> None: ... method __eq__ (line 4431) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4432) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4433) | def __gt__(self, other: object) -> bool: ... method __le__ (line 4434) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 4435) | def __lshift__(self, out: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... method __lt__ (line 4436) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4437) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 4438) | def __rlshift__(self, other): ... method __rrshift__ (line 4439) | def __rrshift__(self, other): ... method __rshift__ (line 4440) | def __rshift__(self, in_: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... class QMainWindow (line 4442) | class QMainWindow(QWidget): class DockOption (line 4443) | class DockOption(enum.Flag): method __init__ (line 4454) | def __init__(self, /, parent: QWidget | None = ..., flags: PySide6.QtC... method addDockWidget (line 4456) | def addDockWidget(self, area: PySide6.QtCore.Qt.DockWidgetArea, dockwi... method addDockWidget (line 4458) | def addDockWidget(self, area: PySide6.QtCore.Qt.DockWidgetArea, dockwi... method addToolBar (line 4460) | def addToolBar(self, area: PySide6.QtCore.Qt.ToolBarArea, toolbar: QTo... method addToolBar (line 4462) | def addToolBar(self, toolbar: QToolBar, /) -> None: ... method addToolBar (line 4464) | def addToolBar(self, title: str, /) -> QToolBar: ... method addToolBarBreak (line 4465) | def addToolBarBreak(self, /, area: PySide6.QtCore.Qt.ToolBarArea = ...... method centralWidget (line 4466) | def centralWidget(self, /) -> QWidget: ... method contextMenuEvent (line 4467) | def contextMenuEvent(self, event: PySide6.QtGui.QContextMenuEvent, /) ... method corner (line 4468) | def corner(self, corner: PySide6.QtCore.Qt.Corner, /) -> PySide6.QtCor... method createPopupMenu (line 4469) | def createPopupMenu(self, /) -> QMenu: ... method dockOptions (line 4470) | def dockOptions(self, /) -> QMainWindow.DockOption: ... method dockWidgetArea (line 4471) | def dockWidgetArea(self, dockwidget: QDockWidget, /) -> PySide6.QtCore... method documentMode (line 4472) | def documentMode(self, /) -> bool: ... method event (line 4473) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method iconSize (line 4474) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method insertToolBar (line 4475) | def insertToolBar(self, before: QToolBar, toolbar: QToolBar, /) -> Non... method insertToolBarBreak (line 4476) | def insertToolBarBreak(self, before: QToolBar, /) -> None: ... method isAnimated (line 4477) | def isAnimated(self, /) -> bool: ... method isDockNestingEnabled (line 4478) | def isDockNestingEnabled(self, /) -> bool: ... method isSeparator (line 4479) | def isSeparator(self, pos: PySide6.QtCore.QPoint, /) -> bool: ... method menuBar (line 4480) | def menuBar(self, /) -> QMenuBar: ... method menuWidget (line 4481) | def menuWidget(self, /) -> QWidget: ... method removeDockWidget (line 4482) | def removeDockWidget(self, dockwidget: QDockWidget, /) -> None: ... method removeToolBar (line 4483) | def removeToolBar(self, toolbar: QToolBar, /) -> None: ... method removeToolBarBreak (line 4484) | def removeToolBarBreak(self, before: QToolBar, /) -> None: ... method resizeDocks (line 4485) | def resizeDocks(self, docks: typing.Iterable[QDockWidget], sizes: typi... method restoreDockWidget (line 4486) | def restoreDockWidget(self, dockwidget: QDockWidget, /) -> bool: ... method restoreState (line 4487) | def restoreState(self, state: PySide6.QtCore.QByteArray | bytes | byte... method saveState (line 4488) | def saveState(self, /, version: int | None = ...) -> PySide6.QtCore.QB... method setAnimated (line 4489) | def setAnimated(self, enabled: bool, /) -> None: ... method setCentralWidget (line 4490) | def setCentralWidget(self, widget: QWidget, /) -> None: ... method setCorner (line 4491) | def setCorner(self, corner: PySide6.QtCore.Qt.Corner, area: PySide6.Qt... method setDockNestingEnabled (line 4492) | def setDockNestingEnabled(self, enabled: bool, /) -> None: ... method setDockOptions (line 4493) | def setDockOptions(self, options: QMainWindow.DockOption, /) -> None: ... method setDocumentMode (line 4494) | def setDocumentMode(self, enabled: bool, /) -> None: ... method setIconSize (line 4495) | def setIconSize(self, iconSize: PySide6.QtCore.QSize, /) -> None: ... method setMenuBar (line 4496) | def setMenuBar(self, menubar: QMenuBar, /) -> None: ... method setMenuWidget (line 4497) | def setMenuWidget(self, menubar: QWidget, /) -> None: ... method setStatusBar (line 4498) | def setStatusBar(self, statusbar: QStatusBar, /) -> None: ... method setTabPosition (line 4499) | def setTabPosition(self, areas: PySide6.QtCore.Qt.DockWidgetArea, tabP... method setTabShape (line 4500) | def setTabShape(self, tabShape: QTabWidget.TabShape, /) -> None: ... method setToolButtonStyle (line 4501) | def setToolButtonStyle(self, toolButtonStyle: PySide6.QtCore.Qt.ToolBu... method setUnifiedTitleAndToolBarOnMac (line 4502) | def setUnifiedTitleAndToolBarOnMac(self, set: bool, /) -> None: ... method splitDockWidget (line 4503) | def splitDockWidget(self, after: QDockWidget, dockwidget: QDockWidget,... method statusBar (line 4504) | def statusBar(self, /) -> QStatusBar: ... method tabPosition (line 4505) | def tabPosition(self, area: PySide6.QtCore.Qt.DockWidgetArea, /) -> QT... method tabShape (line 4506) | def tabShape(self, /) -> QTabWidget.TabShape: ... method tabifiedDockWidgets (line 4507) | def tabifiedDockWidgets(self, dockwidget: QDockWidget, /) -> List[QDoc... method tabifyDockWidget (line 4508) | def tabifyDockWidget(self, first: QDockWidget, second: QDockWidget, /)... method takeCentralWidget (line 4509) | def takeCentralWidget(self, /) -> QWidget: ... method toolBarArea (line 4510) | def toolBarArea(self, toolbar: QToolBar, /) -> PySide6.QtCore.Qt.ToolB... method toolBarBreak (line 4511) | def toolBarBreak(self, toolbar: QToolBar, /) -> bool: ... method toolButtonStyle (line 4512) | def toolButtonStyle(self, /) -> PySide6.QtCore.Qt.ToolButtonStyle: ... method unifiedTitleAndToolBarOnMac (line 4513) | def unifiedTitleAndToolBarOnMac(self, /) -> bool: ... class QMdiArea (line 4515) | class QMdiArea(QAbstractScrollArea): class AreaOption (line 4516) | class AreaOption(enum.Flag): class ViewMode (line 4519) | class ViewMode(enum.Enum): class WindowOrder (line 4523) | class WindowOrder(enum.Enum): method __init__ (line 4529) | def __init__(self, /, parent: QWidget | None = ..., *, background: PyS... method activateNextSubWindow (line 4530) | def activateNextSubWindow(self, /) -> None: ... method activatePreviousSubWindow (line 4531) | def activatePreviousSubWindow(self, /) -> None: ... method activationOrder (line 4532) | def activationOrder(self, /) -> QMdiArea.WindowOrder: ... method activeSubWindow (line 4533) | def activeSubWindow(self, /) -> QMdiSubWindow: ... method addSubWindow (line 4534) | def addSubWindow(self, widget: QWidget, /, flags: PySide6.QtCore.Qt.Wi... method background (line 4535) | def background(self, /) -> PySide6.QtGui.QBrush: ... method cascadeSubWindows (line 4536) | def cascadeSubWindows(self, /) -> None: ... method childEvent (line 4537) | def childEvent(self, childEvent: PySide6.QtCore.QChildEvent, /) -> Non... method closeActiveSubWindow (line 4538) | def closeActiveSubWindow(self, /) -> None: ... method closeAllSubWindows (line 4539) | def closeAllSubWindows(self, /) -> None: ... method currentSubWindow (line 4540) | def currentSubWindow(self, /) -> QMdiSubWindow: ... method documentMode (line 4541) | def documentMode(self, /) -> bool: ... method event (line 4542) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 4543) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method minimumSizeHint (line 4544) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method paintEvent (line 4545) | def paintEvent(self, paintEvent: PySide6.QtGui.QPaintEvent, /) -> None... method removeSubWindow (line 4546) | def removeSubWindow(self, widget: QWidget, /) -> None: ... method resizeEvent (line 4547) | def resizeEvent(self, resizeEvent: PySide6.QtGui.QResizeEvent, /) -> N... method scrollContentsBy (line 4548) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method setActivationOrder (line 4549) | def setActivationOrder(self, order: QMdiArea.WindowOrder, /) -> None: ... method setActiveSubWindow (line 4550) | def setActiveSubWindow(self, window: QMdiSubWindow, /) -> None: ... method setBackground (line 4551) | def setBackground(self, background: PySide6.QtGui.QBrush | PySide6.QtC... method setDocumentMode (line 4552) | def setDocumentMode(self, enabled: bool, /) -> None: ... method setOption (line 4553) | def setOption(self, option: QMdiArea.AreaOption, /, on: bool = ...) ->... method setTabPosition (line 4554) | def setTabPosition(self, position: QTabWidget.TabPosition, /) -> None:... method setTabShape (line 4555) | def setTabShape(self, shape: QTabWidget.TabShape, /) -> None: ... method setTabsClosable (line 4556) | def setTabsClosable(self, closable: bool, /) -> None: ... method setTabsMovable (line 4557) | def setTabsMovable(self, movable: bool, /) -> None: ... method setViewMode (line 4558) | def setViewMode(self, mode: QMdiArea.ViewMode, /) -> None: ... method setupViewport (line 4559) | def setupViewport(self, viewport: QWidget, /) -> None: ... method showEvent (line 4560) | def showEvent(self, showEvent: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 4561) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method subWindowList (line 4562) | def subWindowList(self, /, order: QMdiArea.WindowOrder = ...) -> List[... method tabPosition (line 4563) | def tabPosition(self, /) -> QTabWidget.TabPosition: ... method tabShape (line 4564) | def tabShape(self, /) -> QTabWidget.TabShape: ... method tabsClosable (line 4565) | def tabsClosable(self, /) -> bool: ... method tabsMovable (line 4566) | def tabsMovable(self, /) -> bool: ... method testOption (line 4567) | def testOption(self, opton: QMdiArea.AreaOption, /) -> bool: ... method tileSubWindows (line 4568) | def tileSubWindows(self, /) -> None: ... method timerEvent (line 4569) | def timerEvent(self, timerEvent: PySide6.QtCore.QTimerEvent, /) -> Non... method viewMode (line 4570) | def viewMode(self, /) -> QMdiArea.ViewMode: ... method viewportEvent (line 4571) | def viewportEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... class QMdiSubWindow (line 4573) | class QMdiSubWindow(QWidget): class SubWindowOption (line 4574) | class SubWindowOption(enum.Flag): method __init__ (line 4582) | def __init__(self, /, parent: QWidget | None = ..., flags: PySide6.QtC... method changeEvent (line 4583) | def changeEvent(self, changeEvent: PySide6.QtCore.QEvent, /) -> None: ... method childEvent (line 4584) | def childEvent(self, childEvent: PySide6.QtCore.QChildEvent, /) -> Non... method closeEvent (line 4585) | def closeEvent(self, closeEvent: PySide6.QtGui.QCloseEvent, /) -> None... method contextMenuEvent (line 4586) | def contextMenuEvent(self, contextMenuEvent: PySide6.QtGui.QContextMen... method event (line 4587) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 4588) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method focusInEvent (line 4589) | def focusInEvent(self, focusInEvent: PySide6.QtGui.QFocusEvent, /) -> ... method focusOutEvent (line 4590) | def focusOutEvent(self, focusOutEvent: PySide6.QtGui.QFocusEvent, /) -... method hideEvent (line 4591) | def hideEvent(self, hideEvent: PySide6.QtGui.QHideEvent, /) -> None: ... method isShaded (line 4592) | def isShaded(self, /) -> bool: ... method keyPressEvent (line 4593) | def keyPressEvent(self, keyEvent: PySide6.QtGui.QKeyEvent, /) -> None:... method keyboardPageStep (line 4594) | def keyboardPageStep(self, /) -> int: ... method keyboardSingleStep (line 4595) | def keyboardSingleStep(self, /) -> int: ... method leaveEvent (line 4596) | def leaveEvent(self, leaveEvent: PySide6.QtCore.QEvent, /) -> None: ... method maximizedButtonsWidget (line 4597) | def maximizedButtonsWidget(self, /) -> QWidget: ... method maximizedSystemMenuIconWidget (line 4598) | def maximizedSystemMenuIconWidget(self, /) -> QWidget: ... method mdiArea (line 4599) | def mdiArea(self, /) -> QMdiArea: ... method minimumSizeHint (line 4600) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseDoubleClickEvent (line 4601) | def mouseDoubleClickEvent(self, mouseEvent: PySide6.QtGui.QMouseEvent,... method mouseMoveEvent (line 4602) | def mouseMoveEvent(self, mouseEvent: PySide6.QtGui.QMouseEvent, /) -> ... method mousePressEvent (line 4603) | def mousePressEvent(self, mouseEvent: PySide6.QtGui.QMouseEvent, /) ->... method mouseReleaseEvent (line 4604) | def mouseReleaseEvent(self, mouseEvent: PySide6.QtGui.QMouseEvent, /) ... method moveEvent (line 4605) | def moveEvent(self, moveEvent: PySide6.QtGui.QMoveEvent, /) -> None: ... method paintEvent (line 4606) | def paintEvent(self, paintEvent: PySide6.QtGui.QPaintEvent, /) -> None... method resizeEvent (line 4607) | def resizeEvent(self, resizeEvent: PySide6.QtGui.QResizeEvent, /) -> N... method setKeyboardPageStep (line 4608) | def setKeyboardPageStep(self, step: int, /) -> None: ... method setKeyboardSingleStep (line 4609) | def setKeyboardSingleStep(self, step: int, /) -> None: ... method setOption (line 4610) | def setOption(self, option: QMdiSubWindow.SubWindowOption, /, on: bool... method setSystemMenu (line 4611) | def setSystemMenu(self, systemMenu: QMenu, /) -> None: ... method setWidget (line 4612) | def setWidget(self, widget: QWidget, /) -> None: ... method showEvent (line 4613) | def showEvent(self, showEvent: PySide6.QtGui.QShowEvent, /) -> None: ... method showShaded (line 4614) | def showShaded(self, /) -> None: ... method showSystemMenu (line 4615) | def showSystemMenu(self, /) -> None: ... method sizeHint (line 4616) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method systemMenu (line 4617) | def systemMenu(self, /) -> QMenu: ... method testOption (line 4618) | def testOption(self, arg__1: QMdiSubWindow.SubWindowOption, /) -> bool... method timerEvent (line 4619) | def timerEvent(self, timerEvent: PySide6.QtCore.QTimerEvent, /) -> Non... method widget (line 4620) | def widget(self, /) -> QWidget: ... class QMenu (line 4622) | class QMenu(QWidget): method __init__ (line 4629) | def __init__(self, title: str, /, parent: QWidget | None = ..., *, tea... method __init__ (line 4631) | def __init__(self, /, parent: QWidget | None = ..., *, tearOffEnabled:... method actionAt (line 4632) | def actionAt(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.QtGui.... method actionEvent (line 4633) | def actionEvent(self, arg__1: PySide6.QtGui.QActionEvent, /) -> None: ... method actionGeometry (line 4634) | def actionGeometry(self, arg__1: PySide6.QtGui.QAction, /) -> PySide6.... method activeAction (line 4635) | def activeAction(self, /) -> PySide6.QtGui.QAction: ... method addAction (line 4637) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4639) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 4641) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4643) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4645) | def addAction(self, text: str, receiver: PySide6.QtCore.QObject, membe... method addAction (line 4647) | def addAction(self, text: str, receiver: PySide6.QtCore.QObject, membe... method addAction (line 4649) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4651) | def addAction(self, arg__1: PySide6.QtGui.QIcon | PySide6.QtGui.QPixma... method addAction (line 4653) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 4655) | def addAction(self, text: str, arg__2: typing.Callable[[], typing.Any]... method addAction (line 4657) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4659) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4661) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 4663) | def addAction(self, text: str, callable: typing.Callable[[], typing.An... method addAction (line 4665) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 4667) | def addAction(self, text: str, /) -> PySide6.QtGui.QAction: ... method addAction (line 4669) | def addAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method addMenu (line 4671) | def addMenu(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, t... method addMenu (line 4673) | def addMenu(self, title: str, /) -> QMenu: ... method addMenu (line 4675) | def addMenu(self, menu: QMenu, /) -> PySide6.QtGui.QAction: ... method addSection (line 4677) | def addSection(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap... method addSection (line 4679) | def addSection(self, text: str, /) -> PySide6.QtGui.QAction: ... method addSeparator (line 4680) | def addSeparator(self, /) -> PySide6.QtGui.QAction: ... method changeEvent (line 4681) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 4682) | def clear(self, /) -> None: ... method columnCount (line 4683) | def columnCount(self, /) -> int: ... method defaultAction (line 4684) | def defaultAction(self, /) -> PySide6.QtGui.QAction: ... method enterEvent (line 4685) | def enterEvent(self, arg__1: PySide6.QtGui.QEnterEvent, /) -> None: ... method event (line 4686) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method exec (line 4688) | def exec(self) -> typing.Any: ... method exec_ (line 4690) | def exec_(self, arg__1: typing.Iterable[PySide6.QtGui.QAction], arg__2... method exec_ (line 4692) | def exec_(self, arg__1: PySide6.QtCore.QPoint, /, action: PySide6.QtGu... method exec_ (line 4694) | def exec_(self, /) -> PySide6.QtGui.QAction: ... method focusNextPrevChild (line 4695) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method hideEvent (line 4696) | def hideEvent(self, arg__1: PySide6.QtGui.QHideEvent, /) -> None: ... method hideTearOffMenu (line 4697) | def hideTearOffMenu(self, /) -> None: ... method icon (line 4698) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method initStyleOption (line 4699) | def initStyleOption(self, option: QStyleOptionMenuItem, action: PySide... method insertMenu (line 4700) | def insertMenu(self, before: PySide6.QtGui.QAction, menu: QMenu, /) ->... method insertSection (line 4702) | def insertSection(self, before: PySide6.QtGui.QAction, icon: PySide6.Q... method insertSection (line 4704) | def insertSection(self, before: PySide6.QtGui.QAction, text: str, /) -... method insertSeparator (line 4705) | def insertSeparator(self, before: PySide6.QtGui.QAction, /) -> PySide6... method isEmpty (line 4706) | def isEmpty(self, /) -> bool: ... method isTearOffEnabled (line 4707) | def isTearOffEnabled(self, /) -> bool: ... method isTearOffMenuVisible (line 4708) | def isTearOffMenuVisible(self, /) -> bool: ... method keyPressEvent (line 4709) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method leaveEvent (line 4710) | def leaveEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method menuAction (line 4711) | def menuAction(self, /) -> PySide6.QtGui.QAction: ... method menuInAction (line 4713) | def menuInAction(action: PySide6.QtGui.QAction, /) -> QMenu: ... method mouseMoveEvent (line 4714) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 4715) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 4716) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method paintEvent (line 4717) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method popup (line 4718) | def popup(self, pos: PySide6.QtCore.QPoint, /, at: PySide6.QtGui.QActi... method separatorsCollapsible (line 4719) | def separatorsCollapsible(self, /) -> bool: ... method setActiveAction (line 4720) | def setActiveAction(self, act: PySide6.QtGui.QAction, /) -> None: ... method setAsDockMenu (line 4721) | def setAsDockMenu(self, /) -> None: ... method setDefaultAction (line 4722) | def setDefaultAction(self, arg__1: PySide6.QtGui.QAction, /) -> None: ... method setIcon (line 4723) | def setIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, /... method setSeparatorsCollapsible (line 4724) | def setSeparatorsCollapsible(self, collapse: bool, /) -> None: ... method setTearOffEnabled (line 4725) | def setTearOffEnabled(self, arg__1: bool, /) -> None: ... method setTitle (line 4726) | def setTitle(self, title: str, /) -> None: ... method setToolTipsVisible (line 4727) | def setToolTipsVisible(self, visible: bool, /) -> None: ... method showTearOffMenu (line 4729) | def showTearOffMenu(self, pos: PySide6.QtCore.QPoint, /) -> None: ... method showTearOffMenu (line 4731) | def showTearOffMenu(self, /) -> None: ... method sizeHint (line 4732) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method timerEvent (line 4733) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... method title (line 4734) | def title(self, /) -> str: ... method toolTipsVisible (line 4735) | def toolTipsVisible(self, /) -> bool: ... method wheelEvent (line 4736) | def wheelEvent(self, arg__1: PySide6.QtGui.QWheelEvent, /) -> None: ... class QMenuBar (line 4738) | class QMenuBar(QWidget): method __init__ (line 4742) | def __init__(self, /, parent: QWidget | None = ..., *, defaultUp: bool... method actionAt (line 4743) | def actionAt(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.QtGui.... method actionEvent (line 4744) | def actionEvent(self, arg__1: PySide6.QtGui.QActionEvent, /) -> None: ... method actionGeometry (line 4745) | def actionGeometry(self, arg__1: PySide6.QtGui.QAction, /) -> PySide6.... method activeAction (line 4746) | def activeAction(self, /) -> PySide6.QtGui.QAction: ... method addMenu (line 4748) | def addMenu(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, t... method addMenu (line 4750) | def addMenu(self, title: str, /) -> QMenu: ... method addMenu (line 4752) | def addMenu(self, menu: QMenu, /) -> PySide6.QtGui.QAction: ... method addSeparator (line 4753) | def addSeparator(self, /) -> PySide6.QtGui.QAction: ... method changeEvent (line 4754) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 4755) | def clear(self, /) -> None: ... method cornerWidget (line 4756) | def cornerWidget(self, /, corner: PySide6.QtCore.Qt.Corner = ...) -> Q... method event (line 4757) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 4758) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method focusInEvent (line 4759) | def focusInEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 4760) | def focusOutEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None:... method heightForWidth (line 4761) | def heightForWidth(self, arg__1: int, /) -> int: ... method initStyleOption (line 4762) | def initStyleOption(self, option: QStyleOptionMenuItem, action: PySide... method insertMenu (line 4763) | def insertMenu(self, before: PySide6.QtGui.QAction, menu: QMenu, /) ->... method insertSeparator (line 4764) | def insertSeparator(self, before: PySide6.QtGui.QAction, /) -> PySide6... method isDefaultUp (line 4765) | def isDefaultUp(self, /) -> bool: ... method isNativeMenuBar (line 4766) | def isNativeMenuBar(self, /) -> bool: ... method keyPressEvent (line 4767) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method leaveEvent (line 4768) | def leaveEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method minimumSizeHint (line 4769) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 4770) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 4771) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 4772) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method paintEvent (line 4773) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 4774) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method setActiveAction (line 4775) | def setActiveAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method setCornerWidget (line 4776) | def setCornerWidget(self, w: QWidget, /, corner: PySide6.QtCore.Qt.Cor... method setDefaultUp (line 4777) | def setDefaultUp(self, arg__1: bool, /) -> None: ... method setNativeMenuBar (line 4778) | def setNativeMenuBar(self, nativeMenuBar: bool, /) -> None: ... method setVisible (line 4779) | def setVisible(self, visible: bool, /) -> None: ... method sizeHint (line 4780) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method timerEvent (line 4781) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... class QMessageBox (line 4783) | class QMessageBox(QDialog): class ButtonRole (line 4784) | class ButtonRole(enum.Enum): class Icon (line 4797) | class Icon(enum.Enum): class Option (line 4804) | class Option(enum.Flag): class StandardButton (line 4807) | class StandardButton(enum.IntFlag): method __init__ (line 4838) | def __init__(self, icon: QMessageBox.Icon, title: str, text: str, /, b... method __init__ (line 4840) | def __init__(self, /, parent: QWidget | None = ..., *, text: str | Non... method about (line 4842) | def about(parent: QWidget | None, title: str, text: str, /) -> None: ... method aboutQt (line 4844) | def aboutQt(parent: QWidget | None, /, title: str = ...) -> None: ... method addButton (line 4846) | def addButton(self, text: str, role: QMessageBox.ButtonRole, /) -> QPu... method addButton (line 4848) | def addButton(self, button: QAbstractButton, role: QMessageBox.ButtonR... method addButton (line 4850) | def addButton(self, button: QMessageBox.StandardButton, /) -> QPushBut... method button (line 4851) | def button(self, which: QMessageBox.StandardButton, /) -> QAbstractBut... method buttonRole (line 4852) | def buttonRole(self, button: QAbstractButton, /) -> QMessageBox.Button... method buttonText (line 4853) | def buttonText(self, button: int, /) -> str: ... method buttons (line 4854) | def buttons(self, /) -> List[QAbstractButton]: ... method changeEvent (line 4855) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method checkBox (line 4856) | def checkBox(self, /) -> QCheckBox: ... method clickedButton (line 4857) | def clickedButton(self, /) -> QAbstractButton: ... method closeEvent (line 4858) | def closeEvent(self, event: PySide6.QtGui.QCloseEvent, /) -> None: ... method critical (line 4860) | def critical(parent: QWidget | None, title: str, text: str, /, buttons... method defaultButton (line 4861) | def defaultButton(self, /) -> QPushButton: ... method detailedText (line 4862) | def detailedText(self, /) -> str: ... method escapeButton (line 4863) | def escapeButton(self, /) -> QAbstractButton: ... method event (line 4864) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method icon (line 4865) | def icon(self, /) -> QMessageBox.Icon: ... method iconPixmap (line 4866) | def iconPixmap(self, /) -> PySide6.QtGui.QPixmap: ... method information (line 4868) | def information(parent: QWidget | None, title: str, text: str, /, butt... method informativeText (line 4869) | def informativeText(self, /) -> str: ... method keyPressEvent (line 4870) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method open (line 4872) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 4874) | def open(self, functor: collections.abc.Callable[..., typing.Any], /) ... method open (line 4876) | def open(self, /) -> None: ... method options (line 4877) | def options(self, /) -> QMessageBox.Option: ... method question (line 4879) | def question(parent: QWidget | None, title: str, text: str, /, buttons... method removeButton (line 4880) | def removeButton(self, button: QAbstractButton, /) -> None: ... method resizeEvent (line 4881) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method setButtonText (line 4882) | def setButtonText(self, button: int, text: str, /) -> None: ... method setCheckBox (line 4883) | def setCheckBox(self, cb: QCheckBox, /) -> None: ... method setDefaultButton (line 4885) | def setDefaultButton(self, button: QPushButton, /) -> None: ... method setDefaultButton (line 4887) | def setDefaultButton(self, button: QMessageBox.StandardButton, /) -> N... method setDetailedText (line 4888) | def setDetailedText(self, text: str, /) -> None: ... method setEscapeButton (line 4890) | def setEscapeButton(self, button: QAbstractButton, /) -> None: ... method setEscapeButton (line 4892) | def setEscapeButton(self, button: QMessageBox.StandardButton, /) -> No... method setIcon (line 4893) | def setIcon(self, arg__1: QMessageBox.Icon, /) -> None: ... method setIconPixmap (line 4894) | def setIconPixmap(self, pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.... method setInformativeText (line 4895) | def setInformativeText(self, text: str, /) -> None: ... method setOption (line 4896) | def setOption(self, option: QMessageBox.Option, /, on: bool = ...) -> ... method setOptions (line 4897) | def setOptions(self, options: QMessageBox.Option, /) -> None: ... method setStandardButtons (line 4898) | def setStandardButtons(self, buttons: QMessageBox.StandardButton, /) -... method setText (line 4899) | def setText(self, text: str, /) -> None: ... method setTextFormat (line 4900) | def setTextFormat(self, format: PySide6.QtCore.Qt.TextFormat, /) -> No... method setTextInteractionFlags (line 4901) | def setTextInteractionFlags(self, flags: PySide6.QtCore.Qt.TextInterac... method setWindowModality (line 4902) | def setWindowModality(self, windowModality: PySide6.QtCore.Qt.WindowMo... method setWindowTitle (line 4903) | def setWindowTitle(self, title: str, /) -> None: ... method showEvent (line 4904) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method standardButton (line 4905) | def standardButton(self, button: QAbstractButton, /) -> QMessageBox.St... method standardButtons (line 4906) | def standardButtons(self, /) -> QMessageBox.StandardButton: ... method standardIcon (line 4908) | def standardIcon(icon: QMessageBox.Icon, /) -> PySide6.QtGui.QPixmap: ... method testOption (line 4909) | def testOption(self, option: QMessageBox.Option, /) -> bool: ... method text (line 4910) | def text(self, /) -> str: ... method textFormat (line 4911) | def textFormat(self, /) -> PySide6.QtCore.Qt.TextFormat: ... method textInteractionFlags (line 4912) | def textInteractionFlags(self, /) -> PySide6.QtCore.Qt.TextInteraction... method warning (line 4914) | def warning(parent: QWidget | None, title: str, text: str, /, buttons:... class QPanGesture (line 4916) | class QPanGesture(QGesture): method __init__ (line 4918) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method acceleration (line 4919) | def acceleration(self, /) -> float: ... method delta (line 4920) | def delta(self, /) -> PySide6.QtCore.QPointF: ... method lastOffset (line 4921) | def lastOffset(self, /) -> PySide6.QtCore.QPointF: ... method offset (line 4922) | def offset(self, /) -> PySide6.QtCore.QPointF: ... method setAcceleration (line 4923) | def setAcceleration(self, value: float, /) -> None: ... method setLastOffset (line 4924) | def setLastOffset(self, value: PySide6.QtCore.QPointF | PySide6.QtCore... method setOffset (line 4925) | def setOffset(self, value: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... class QPinchGesture (line 4927) | class QPinchGesture(QGesture): class ChangeFlag (line 4928) | class ChangeFlag(enum.Flag): method __init__ (line 4933) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method centerPoint (line 4934) | def centerPoint(self, /) -> PySide6.QtCore.QPointF: ... method changeFlags (line 4935) | def changeFlags(self, /) -> QPinchGesture.ChangeFlag: ... method lastCenterPoint (line 4936) | def lastCenterPoint(self, /) -> PySide6.QtCore.QPointF: ... method lastRotationAngle (line 4937) | def lastRotationAngle(self, /) -> float: ... method lastScaleFactor (line 4938) | def lastScaleFactor(self, /) -> float: ... method rotationAngle (line 4939) | def rotationAngle(self, /) -> float: ... method scaleFactor (line 4940) | def scaleFactor(self, /) -> float: ... method setCenterPoint (line 4941) | def setCenterPoint(self, value: PySide6.QtCore.QPointF | PySide6.QtCor... method setChangeFlags (line 4942) | def setChangeFlags(self, value: QPinchGesture.ChangeFlag, /) -> None: ... method setLastCenterPoint (line 4943) | def setLastCenterPoint(self, value: PySide6.QtCore.QPointF | PySide6.Q... method setLastRotationAngle (line 4944) | def setLastRotationAngle(self, value: float, /) -> None: ... method setLastScaleFactor (line 4945) | def setLastScaleFactor(self, value: float, /) -> None: ... method setRotationAngle (line 4946) | def setRotationAngle(self, value: float, /) -> None: ... method setScaleFactor (line 4947) | def setScaleFactor(self, value: float, /) -> None: ... method setStartCenterPoint (line 4948) | def setStartCenterPoint(self, value: PySide6.QtCore.QPointF | PySide6.... method setTotalChangeFlags (line 4949) | def setTotalChangeFlags(self, value: QPinchGesture.ChangeFlag, /) -> N... method setTotalRotationAngle (line 4950) | def setTotalRotationAngle(self, value: float, /) -> None: ... method setTotalScaleFactor (line 4951) | def setTotalScaleFactor(self, value: float, /) -> None: ... method startCenterPoint (line 4952) | def startCenterPoint(self, /) -> PySide6.QtCore.QPointF: ... method totalChangeFlags (line 4953) | def totalChangeFlags(self, /) -> QPinchGesture.ChangeFlag: ... method totalRotationAngle (line 4954) | def totalRotationAngle(self, /) -> float: ... method totalScaleFactor (line 4955) | def totalScaleFactor(self, /) -> float: ... class QPlainTextDocumentLayout (line 4957) | class QPlainTextDocumentLayout(PySide6.QtGui.QAbstractTextDocumentLayout): method __init__ (line 4959) | def __init__(self, document: PySide6.QtGui.QTextDocument, /, *, cursor... method blockBoundingRect (line 4960) | def blockBoundingRect(self, block: PySide6.QtGui.QTextBlock, /) -> PyS... method cursorWidth (line 4961) | def cursorWidth(self, /) -> int: ... method documentChanged (line 4962) | def documentChanged(self, from_: int, arg__2: int, charsAdded: int, /)... method documentSize (line 4963) | def documentSize(self, /) -> PySide6.QtCore.QSizeF: ... method draw (line 4964) | def draw(self, arg__1: PySide6.QtGui.QPainter, arg__2: PySide6.QtGui.Q... method ensureBlockLayout (line 4965) | def ensureBlockLayout(self, block: PySide6.QtGui.QTextBlock, /) -> Non... method frameBoundingRect (line 4966) | def frameBoundingRect(self, arg__1: PySide6.QtGui.QTextFrame, /) -> Py... method hitTest (line 4967) | def hitTest(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.QPoi... method pageCount (line 4968) | def pageCount(self, /) -> int: ... method requestUpdate (line 4969) | def requestUpdate(self, /) -> None: ... method setCursorWidth (line 4970) | def setCursorWidth(self, width: int, /) -> None: ... class QPlainTextEdit (line 4972) | class QPlainTextEdit(QAbstractScrollArea): class LineWrapMode (line 4973) | class LineWrapMode(enum.Enum): method __init__ (line 4987) | def __init__(self, text: str, /, parent: QWidget | None = ..., *, tabC... method __init__ (line 4989) | def __init__(self, /, parent: QWidget | None = ..., *, tabChangesFocus... method anchorAt (line 4990) | def anchorAt(self, pos: PySide6.QtCore.QPoint, /) -> str: ... method appendHtml (line 4991) | def appendHtml(self, html: str, /) -> None: ... method appendPlainText (line 4992) | def appendPlainText(self, text: str, /) -> None: ... method backgroundVisible (line 4993) | def backgroundVisible(self, /) -> bool: ... method blockBoundingGeometry (line 4994) | def blockBoundingGeometry(self, block: PySide6.QtGui.QTextBlock, /) ->... method blockBoundingRect (line 4995) | def blockBoundingRect(self, block: PySide6.QtGui.QTextBlock, /) -> PyS... method blockCount (line 4996) | def blockCount(self, /) -> int: ... method canInsertFromMimeData (line 4997) | def canInsertFromMimeData(self, source: PySide6.QtCore.QMimeData, /) -... method canPaste (line 4998) | def canPaste(self, /) -> bool: ... method centerCursor (line 4999) | def centerCursor(self, /) -> None: ... method centerOnScroll (line 5000) | def centerOnScroll(self, /) -> bool: ... method changeEvent (line 5001) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 5002) | def clear(self, /) -> None: ... method contentOffset (line 5003) | def contentOffset(self, /) -> PySide6.QtCore.QPointF: ... method contextMenuEvent (line 5004) | def contextMenuEvent(self, e: PySide6.QtGui.QContextMenuEvent, /) -> N... method copy (line 5005) | def copy(self, /) -> None: ... method createMimeDataFromSelection (line 5006) | def createMimeDataFromSelection(self, /) -> PySide6.QtCore.QMimeData: ... method createStandardContextMenu (line 5008) | def createStandardContextMenu(self, position: PySide6.QtCore.QPoint, /... method createStandardContextMenu (line 5010) | def createStandardContextMenu(self, /) -> QMenu: ... method currentCharFormat (line 5011) | def currentCharFormat(self, /) -> PySide6.QtGui.QTextCharFormat: ... method cursorForPosition (line 5012) | def cursorForPosition(self, pos: PySide6.QtCore.QPoint, /) -> PySide6.... method cursorRect (line 5014) | def cursorRect(self, cursor: PySide6.QtGui.QTextCursor, /) -> PySide6.... method cursorRect (line 5016) | def cursorRect(self, /) -> PySide6.QtCore.QRect: ... method cursorWidth (line 5017) | def cursorWidth(self, /) -> int: ... method cut (line 5018) | def cut(self, /) -> None: ... method doSetTextCursor (line 5019) | def doSetTextCursor(self, cursor: PySide6.QtGui.QTextCursor, /) -> Non... method document (line 5020) | def document(self, /) -> PySide6.QtGui.QTextDocument: ... method documentTitle (line 5021) | def documentTitle(self, /) -> str: ... method dragEnterEvent (line 5022) | def dragEnterEvent(self, e: PySide6.QtGui.QDragEnterEvent, /) -> None:... method dragLeaveEvent (line 5023) | def dragLeaveEvent(self, e: PySide6.QtGui.QDragLeaveEvent, /) -> None:... method dragMoveEvent (line 5024) | def dragMoveEvent(self, e: PySide6.QtGui.QDragMoveEvent, /) -> None: ... method dropEvent (line 5025) | def dropEvent(self, e: PySide6.QtGui.QDropEvent, /) -> None: ... method ensureCursorVisible (line 5026) | def ensureCursorVisible(self, /) -> None: ... method event (line 5027) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method extraSelections (line 5028) | def extraSelections(self, /) -> List[QTextEdit.ExtraSelection]: ... method find (line 5030) | def find(self, exp: str, /, options: PySide6.QtGui.QTextDocument.FindF... method find (line 5032) | def find(self, exp: PySide6.QtCore.QRegularExpression | str, /, option... method firstVisibleBlock (line 5033) | def firstVisibleBlock(self, /) -> PySide6.QtGui.QTextBlock: ... method focusInEvent (line 5034) | def focusInEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 5035) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 5036) | def focusOutEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method getPaintContext (line 5037) | def getPaintContext(self, /) -> PySide6.QtGui.QAbstractTextDocumentLay... method inputMethodEvent (line 5038) | def inputMethodEvent(self, arg__1: PySide6.QtGui.QInputMethodEvent, /)... method inputMethodQuery (line 5040) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method inputMethodQuery (line 5042) | def inputMethodQuery(self, property: PySide6.QtCore.Qt.InputMethodQuer... method insertFromMimeData (line 5043) | def insertFromMimeData(self, source: PySide6.QtCore.QMimeData, /) -> N... method insertPlainText (line 5044) | def insertPlainText(self, text: str, /) -> None: ... method isReadOnly (line 5045) | def isReadOnly(self, /) -> bool: ... method isUndoRedoEnabled (line 5046) | def isUndoRedoEnabled(self, /) -> bool: ... method keyPressEvent (line 5047) | def keyPressEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 5048) | def keyReleaseEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method lineWrapMode (line 5049) | def lineWrapMode(self, /) -> QPlainTextEdit.LineWrapMode: ... method loadResource (line 5050) | def loadResource(self, type: int, name: PySide6.QtCore.QUrl | str, /) ... method maximumBlockCount (line 5051) | def maximumBlockCount(self, /) -> int: ... method mergeCurrentCharFormat (line 5052) | def mergeCurrentCharFormat(self, modifier: PySide6.QtGui.QTextCharForm... method mouseDoubleClickEvent (line 5053) | def mouseDoubleClickEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> No... method mouseMoveEvent (line 5054) | def mouseMoveEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 5055) | def mousePressEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 5056) | def mouseReleaseEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method moveCursor (line 5057) | def moveCursor(self, operation: PySide6.QtGui.QTextCursor.MoveOperatio... method overwriteMode (line 5058) | def overwriteMode(self, /) -> bool: ... method paintEvent (line 5059) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method paste (line 5060) | def paste(self, /) -> None: ... method placeholderText (line 5061) | def placeholderText(self, /) -> str: ... method print_ (line 5062) | def print_(self, printer: PySide6.QtGui.QPagedPaintDevice, /) -> None:... method redo (line 5063) | def redo(self, /) -> None: ... method resizeEvent (line 5064) | def resizeEvent(self, e: PySide6.QtGui.QResizeEvent, /) -> None: ... method scrollContentsBy (line 5065) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method selectAll (line 5066) | def selectAll(self, /) -> None: ... method setBackgroundVisible (line 5067) | def setBackgroundVisible(self, visible: bool, /) -> None: ... method setCenterOnScroll (line 5068) | def setCenterOnScroll(self, enabled: bool, /) -> None: ... method setCurrentCharFormat (line 5069) | def setCurrentCharFormat(self, format: PySide6.QtGui.QTextCharFormat, ... method setCursorWidth (line 5070) | def setCursorWidth(self, width: int, /) -> None: ... method setDocument (line 5071) | def setDocument(self, document: PySide6.QtGui.QTextDocument, /) -> Non... method setDocumentTitle (line 5072) | def setDocumentTitle(self, title: str, /) -> None: ... method setExtraSelections (line 5073) | def setExtraSelections(self, selections: typing.Iterable[QTextEdit.Ext... method setLineWrapMode (line 5074) | def setLineWrapMode(self, mode: QPlainTextEdit.LineWrapMode, /) -> Non... method setMaximumBlockCount (line 5075) | def setMaximumBlockCount(self, maximum: int, /) -> None: ... method setOverwriteMode (line 5076) | def setOverwriteMode(self, overwrite: bool, /) -> None: ... method setPlaceholderText (line 5077) | def setPlaceholderText(self, placeholderText: str, /) -> None: ... method setPlainText (line 5078) | def setPlainText(self, text: str, /) -> None: ... method setReadOnly (line 5079) | def setReadOnly(self, ro: bool, /) -> None: ... method setTabChangesFocus (line 5080) | def setTabChangesFocus(self, b: bool, /) -> None: ... method setTabStopDistance (line 5081) | def setTabStopDistance(self, distance: float, /) -> None: ... method setTextCursor (line 5082) | def setTextCursor(self, cursor: PySide6.QtGui.QTextCursor, /) -> None:... method setTextInteractionFlags (line 5083) | def setTextInteractionFlags(self, flags: PySide6.QtCore.Qt.TextInterac... method setUndoRedoEnabled (line 5084) | def setUndoRedoEnabled(self, enable: bool, /) -> None: ... method setWordWrapMode (line 5085) | def setWordWrapMode(self, policy: PySide6.QtGui.QTextOption.WrapMode, ... method showEvent (line 5086) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method tabChangesFocus (line 5087) | def tabChangesFocus(self, /) -> bool: ... method tabStopDistance (line 5088) | def tabStopDistance(self, /) -> float: ... method textCursor (line 5089) | def textCursor(self, /) -> PySide6.QtGui.QTextCursor: ... method textInteractionFlags (line 5090) | def textInteractionFlags(self, /) -> PySide6.QtCore.Qt.TextInteraction... method timerEvent (line 5091) | def timerEvent(self, e: PySide6.QtCore.QTimerEvent, /) -> None: ... method toPlainText (line 5092) | def toPlainText(self, /) -> str: ... method undo (line 5093) | def undo(self, /) -> None: ... method wheelEvent (line 5094) | def wheelEvent(self, e: PySide6.QtGui.QWheelEvent, /) -> None: ... method wordWrapMode (line 5095) | def wordWrapMode(self, /) -> PySide6.QtGui.QTextOption.WrapMode: ... method zoomIn (line 5096) | def zoomIn(self, /, range: int = ...) -> None: ... method zoomInF (line 5097) | def zoomInF(self, range: float, /) -> None: ... method zoomOut (line 5098) | def zoomOut(self, /, range: int = ...) -> None: ... class QProgressBar (line 5100) | class QProgressBar(QWidget): class Direction (line 5101) | class Direction(enum.Enum): method __init__ (line 5106) | def __init__(self, /, parent: QWidget | None = ..., *, minimum: int | ... method alignment (line 5107) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method event (line 5108) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method format (line 5109) | def format(self, /) -> str: ... method initStyleOption (line 5110) | def initStyleOption(self, option: QStyleOptionProgressBar, /) -> None:... method invertedAppearance (line 5111) | def invertedAppearance(self, /) -> bool: ... method isTextVisible (line 5112) | def isTextVisible(self, /) -> bool: ... method maximum (line 5113) | def maximum(self, /) -> int: ... method minimum (line 5114) | def minimum(self, /) -> int: ... method minimumSizeHint (line 5115) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method orientation (line 5116) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method paintEvent (line 5117) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method reset (line 5118) | def reset(self, /) -> None: ... method resetFormat (line 5119) | def resetFormat(self, /) -> None: ... method setAlignment (line 5120) | def setAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag, /) ... method setFormat (line 5121) | def setFormat(self, format: str, /) -> None: ... method setInvertedAppearance (line 5122) | def setInvertedAppearance(self, invert: bool, /) -> None: ... method setMaximum (line 5123) | def setMaximum(self, maximum: int, /) -> None: ... method setMinimum (line 5124) | def setMinimum(self, minimum: int, /) -> None: ... method setOrientation (line 5125) | def setOrientation(self, arg__1: PySide6.QtCore.Qt.Orientation, /) -> ... method setRange (line 5126) | def setRange(self, minimum: int, maximum: int, /) -> None: ... method setTextDirection (line 5127) | def setTextDirection(self, textDirection: QProgressBar.Direction, /) -... method setTextVisible (line 5128) | def setTextVisible(self, visible: bool, /) -> None: ... method setValue (line 5129) | def setValue(self, value: int, /) -> None: ... method sizeHint (line 5130) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method text (line 5131) | def text(self, /) -> str: ... method textDirection (line 5132) | def textDirection(self, /) -> QProgressBar.Direction: ... method value (line 5133) | def value(self, /) -> int: ... class QProgressDialog (line 5135) | class QProgressDialog(QDialog): method __init__ (line 5139) | def __init__(self, labelText: str, cancelButtonText: str, minimum: int... method __init__ (line 5141) | def __init__(self, /, parent: QWidget | None = ..., flags: PySide6.QtC... method autoClose (line 5142) | def autoClose(self, /) -> bool: ... method autoReset (line 5143) | def autoReset(self, /) -> bool: ... method cancel (line 5144) | def cancel(self, /) -> None: ... method changeEvent (line 5145) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method closeEvent (line 5146) | def closeEvent(self, event: PySide6.QtGui.QCloseEvent, /) -> None: ... method forceShow (line 5147) | def forceShow(self, /) -> None: ... method labelText (line 5148) | def labelText(self, /) -> str: ... method maximum (line 5149) | def maximum(self, /) -> int: ... method minimum (line 5150) | def minimum(self, /) -> int: ... method minimumDuration (line 5151) | def minimumDuration(self, /) -> int: ... method open (line 5153) | def open(self, receiver: PySide6.QtCore.QObject, member: bytes | bytea... method open (line 5155) | def open(self, /) -> None: ... method reset (line 5156) | def reset(self, /) -> None: ... method resizeEvent (line 5157) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method setAutoClose (line 5158) | def setAutoClose(self, close: bool, /) -> None: ... method setAutoReset (line 5159) | def setAutoReset(self, reset: bool, /) -> None: ... method setBar (line 5160) | def setBar(self, bar: QProgressBar, /) -> None: ... method setCancelButton (line 5161) | def setCancelButton(self, button: QPushButton | None | None, /) -> Non... method setCancelButtonText (line 5162) | def setCancelButtonText(self, text: str, /) -> None: ... method setLabel (line 5163) | def setLabel(self, label: QLabel, /) -> None: ... method setLabelText (line 5164) | def setLabelText(self, text: str, /) -> None: ... method setMaximum (line 5165) | def setMaximum(self, maximum: int, /) -> None: ... method setMinimum (line 5166) | def setMinimum(self, minimum: int, /) -> None: ... method setMinimumDuration (line 5167) | def setMinimumDuration(self, ms: int, /) -> None: ... method setRange (line 5168) | def setRange(self, minimum: int, maximum: int, /) -> None: ... method setValue (line 5169) | def setValue(self, progress: int, /) -> None: ... method showEvent (line 5170) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 5171) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method value (line 5172) | def value(self, /) -> int: ... method wasCanceled (line 5173) | def wasCanceled(self, /) -> bool: ... class QProxyStyle (line 5175) | class QProxyStyle(QCommonStyle): method __init__ (line 5178) | def __init__(self, key: str, /, destroyed: typing.Callable = ..., obje... method __init__ (line 5180) | def __init__(self, /, style: QStyle | None = ..., destroyed: typing.Ca... method baseStyle (line 5181) | def baseStyle(self, /) -> QStyle: ... method drawComplexControl (line 5182) | def drawComplexControl(self, control: QStyle.ComplexControl, option: Q... method drawControl (line 5183) | def drawControl(self, element: QStyle.ControlElement, option: QStyleOp... method drawItemPixmap (line 5184) | def drawItemPixmap(self, painter: PySide6.QtGui.QPainter, rect: PySide... method drawItemText (line 5185) | def drawItemText(self, painter: PySide6.QtGui.QPainter, rect: PySide6.... method drawPrimitive (line 5186) | def drawPrimitive(self, element: QStyle.PrimitiveElement, option: QSty... method event (line 5187) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method generatedIconPixmap (line 5188) | def generatedIconPixmap(self, iconMode: PySide6.QtGui.QIcon.Mode, pixm... method hitTestComplexControl (line 5189) | def hitTestComplexControl(self, control: QStyle.ComplexControl, option... method itemPixmapRect (line 5190) | def itemPixmapRect(self, r: PySide6.QtCore.QRect, flags: typing.Suppor... method itemTextRect (line 5191) | def itemTextRect(self, fm: PySide6.QtGui.QFontMetrics, r: PySide6.QtCo... method layoutSpacing (line 5192) | def layoutSpacing(self, control1: QSizePolicy.ControlType, control2: Q... method pixelMetric (line 5193) | def pixelMetric(self, metric: QStyle.PixelMetric, /, option: QStyleOpt... method polish (line 5195) | def polish(self, widget: QWidget, /) -> None: ... method polish (line 5197) | def polish(self, arg__1: PySide6.QtGui.QPalette | PySide6.QtCore.Qt.Gl... method polish (line 5199) | def polish(self, app: QApplication, /) -> None: ... method setBaseStyle (line 5200) | def setBaseStyle(self, style: QStyle, /) -> None: ... method sizeFromContents (line 5201) | def sizeFromContents(self, type: QStyle.ContentsType, option: QStyleOp... method standardIcon (line 5202) | def standardIcon(self, standardIcon: QStyle.StandardPixmap, /, option:... method standardPalette (line 5203) | def standardPalette(self, /) -> PySide6.QtGui.QPalette: ... method standardPixmap (line 5204) | def standardPixmap(self, standardPixmap: QStyle.StandardPixmap, opt: Q... method styleHint (line 5205) | def styleHint(self, hint: QStyle.StyleHint, /, option: QStyleOption | ... method subControlRect (line 5206) | def subControlRect(self, cc: QStyle.ComplexControl, opt: QStyleOptionC... method subElementRect (line 5207) | def subElementRect(self, element: QStyle.SubElement, option: QStyleOpt... method unpolish (line 5209) | def unpolish(self, widget: QWidget, /) -> None: ... method unpolish (line 5211) | def unpolish(self, app: QApplication, /) -> None: ... class QPushButton (line 5213) | class QPushButton(QAbstractButton): method __init__ (line 5216) | def __init__(self, text: str, /, parent: QWidget | None = ..., *, auto... method __init__ (line 5218) | def __init__(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, ... method __init__ (line 5220) | def __init__(self, /, parent: QWidget | None = ..., *, autoDefault: bo... method autoDefault (line 5221) | def autoDefault(self, /) -> bool: ... method event (line 5222) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method focusInEvent (line 5223) | def focusInEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusOutEvent (line 5224) | def focusOutEvent(self, arg__1: PySide6.QtGui.QFocusEvent, /) -> None:... method hitButton (line 5225) | def hitButton(self, pos: PySide6.QtCore.QPoint, /) -> bool: ... method initStyleOption (line 5226) | def initStyleOption(self, option: QStyleOptionButton, /) -> None: ... method isDefault (line 5227) | def isDefault(self, /) -> bool: ... method isFlat (line 5228) | def isFlat(self, /) -> bool: ... method keyPressEvent (line 5229) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method menu (line 5230) | def menu(self, /) -> QMenu: ... method minimumSizeHint (line 5231) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 5232) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method paintEvent (line 5233) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method setAutoDefault (line 5234) | def setAutoDefault(self, arg__1: bool, /) -> None: ... method setDefault (line 5235) | def setDefault(self, arg__1: bool, /) -> None: ... method setFlat (line 5236) | def setFlat(self, arg__1: bool, /) -> None: ... method setMenu (line 5237) | def setMenu(self, menu: QMenu, /) -> None: ... method showMenu (line 5238) | def showMenu(self, /) -> None: ... method sizeHint (line 5239) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QRadioButton (line 5241) | class QRadioButton(QAbstractButton): method __init__ (line 5244) | def __init__(self, text: str, /, parent: QWidget | None = ..., acceptD... method __init__ (line 5246) | def __init__(self, /, parent: QWidget | None = ..., acceptDrops: bool ... method event (line 5247) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method hitButton (line 5248) | def hitButton(self, arg__1: PySide6.QtCore.QPoint, /) -> bool: ... method initStyleOption (line 5249) | def initStyleOption(self, button: QStyleOptionButton, /) -> None: ... method minimumSizeHint (line 5250) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 5251) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method paintEvent (line 5252) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method sizeHint (line 5253) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QRhiWidget (line 5255) | class QRhiWidget(QWidget): class Api (line 5256) | class Api(enum.Enum): class TextureFormat (line 5264) | class TextureFormat(enum.Enum): method __init__ (line 5276) | def __init__(self, /, parent: QWidget | None = ..., f: PySide6.QtCore.... method api (line 5277) | def api(self, /) -> QRhiWidget.Api: ... method colorBufferFormat (line 5278) | def colorBufferFormat(self, /) -> QRhiWidget.TextureFormat: ... method colorTexture (line 5279) | def colorTexture(self, /) -> PySide6.QtGui.QRhiTexture: ... method depthStencilBuffer (line 5280) | def depthStencilBuffer(self, /) -> PySide6.QtGui.QRhiRenderBuffer: ... method event (line 5281) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method fixedColorBufferSize (line 5282) | def fixedColorBufferSize(self, /) -> PySide6.QtCore.QSize: ... method grabFramebuffer (line 5283) | def grabFramebuffer(self, /) -> PySide6.QtGui.QImage: ... method initialize (line 5284) | def initialize(self, cb: PySide6.QtGui.QRhiCommandBuffer, /) -> None: ... method isAutoRenderTargetEnabled (line 5285) | def isAutoRenderTargetEnabled(self, /) -> bool: ... method isDebugLayerEnabled (line 5286) | def isDebugLayerEnabled(self, /) -> bool: ... method isMirrorVerticallyEnabled (line 5287) | def isMirrorVerticallyEnabled(self, /) -> bool: ... method msaaColorBuffer (line 5288) | def msaaColorBuffer(self, /) -> PySide6.QtGui.QRhiRenderBuffer: ... method paintEvent (line 5289) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method releaseResources (line 5290) | def releaseResources(self, /) -> None: ... method render (line 5291) | def render(self, cb: PySide6.QtGui.QRhiCommandBuffer, /) -> None: ... ... method renderTarget (line 5292) | def renderTarget(self, /) -> PySide6.QtGui.QRhiRenderTarget: ... method resizeEvent (line 5293) | def resizeEvent(self, e: PySide6.QtGui.QResizeEvent, /) -> None: ... method resolveTexture (line 5294) | def resolveTexture(self, /) -> PySide6.QtGui.QRhiTexture: ... method rhi (line 5295) | def rhi(self, /) -> PySide6.QtGui.QRhi: ... method sampleCount (line 5296) | def sampleCount(self, /) -> int: ... method setApi (line 5297) | def setApi(self, api: QRhiWidget.Api, /) -> None: ... method setAutoRenderTarget (line 5298) | def setAutoRenderTarget(self, enabled: bool, /) -> None: ... method setColorBufferFormat (line 5299) | def setColorBufferFormat(self, format: QRhiWidget.TextureFormat, /) ->... method setDebugLayerEnabled (line 5300) | def setDebugLayerEnabled(self, enable: bool, /) -> None: ... method setFixedColorBufferSize (line 5302) | def setFixedColorBufferSize(self, w: int, h: int, /) -> None: ... method setFixedColorBufferSize (line 5304) | def setFixedColorBufferSize(self, pixelSize: PySide6.QtCore.QSize, /) ... method setMirrorVertically (line 5305) | def setMirrorVertically(self, enabled: bool, /) -> None: ... method setSampleCount (line 5306) | def setSampleCount(self, samples: int, /) -> None: ... class QRubberBand (line 5308) | class QRubberBand(QWidget): class Shape (line 5309) | class Shape(enum.Enum): method __init__ (line 5313) | def __init__(self, arg__1: QRubberBand.Shape, /, parent: QWidget | Non... method changeEvent (line 5314) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method event (line 5315) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method initStyleOption (line 5316) | def initStyleOption(self, option: QStyleOptionRubberBand, /) -> None: ... method move (line 5318) | def move(self, x: int, y: int, /) -> None: ... method move (line 5320) | def move(self, p: PySide6.QtCore.QPoint, /) -> None: ... method moveEvent (line 5321) | def moveEvent(self, arg__1: PySide6.QtGui.QMoveEvent, /) -> None: ... method paintEvent (line 5322) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method resize (line 5324) | def resize(self, w: int, h: int, /) -> None: ... method resize (line 5326) | def resize(self, s: PySide6.QtCore.QSize, /) -> None: ... method resizeEvent (line 5327) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method setGeometry (line 5329) | def setGeometry(self, x: int, y: int, w: int, h: int, /) -> None: ... method setGeometry (line 5331) | def setGeometry(self, r: PySide6.QtCore.QRect, /) -> None: ... method shape (line 5332) | def shape(self, /) -> QRubberBand.Shape: ... method showEvent (line 5333) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... class QScrollArea (line 5335) | class QScrollArea(QAbstractScrollArea): method __init__ (line 5337) | def __init__(self, /, parent: QWidget | None = ..., *, widgetResizable... method alignment (line 5338) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method ensureVisible (line 5339) | def ensureVisible(self, x: int, y: int, /, xmargin: int = ..., ymargin... method ensureWidgetVisible (line 5340) | def ensureWidgetVisible(self, childWidget: QWidget, /, xmargin: int = ... method event (line 5341) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 5342) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method focusNextPrevChild (line 5343) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method resizeEvent (line 5344) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method scrollContentsBy (line 5345) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method setAlignment (line 5346) | def setAlignment(self, arg__1: PySide6.QtCore.Qt.AlignmentFlag, /) -> ... method setWidget (line 5347) | def setWidget(self, widget: QWidget, /) -> None: ... method setWidgetResizable (line 5348) | def setWidgetResizable(self, resizable: bool, /) -> None: ... method sizeHint (line 5349) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method takeWidget (line 5350) | def takeWidget(self, /) -> QWidget: ... method viewportSizeHint (line 5351) | def viewportSizeHint(self, /) -> PySide6.QtCore.QSize: ... method widget (line 5352) | def widget(self, /) -> QWidget: ... method widgetResizable (line 5353) | def widgetResizable(self, /) -> bool: ... class QScrollBar (line 5355) | class QScrollBar(QAbstractSlider): method __init__ (line 5358) | def __init__(self, arg__1: PySide6.QtCore.Qt.Orientation, /, parent: Q... method __init__ (line 5360) | def __init__(self, /, parent: QWidget | None = ..., acceptDrops: bool ... method contextMenuEvent (line 5361) | def contextMenuEvent(self, arg__1: PySide6.QtGui.QContextMenuEvent, /)... method createStandardContextMenu (line 5362) | def createStandardContextMenu(self, position: PySide6.QtCore.QPoint, /... method event (line 5363) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method hideEvent (line 5364) | def hideEvent(self, arg__1: PySide6.QtGui.QHideEvent, /) -> None: ... method initStyleOption (line 5365) | def initStyleOption(self, option: QStyleOptionSlider, /) -> None: ... method mouseMoveEvent (line 5366) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 5367) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 5368) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method paintEvent (line 5369) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method sizeHint (line 5370) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sliderChange (line 5371) | def sliderChange(self, change: QAbstractSlider.SliderChange, /) -> Non... method wheelEvent (line 5372) | def wheelEvent(self, arg__1: PySide6.QtGui.QWheelEvent, /) -> None: ... class QScroller (line 5374) | class QScroller(PySide6.QtCore.QObject): class Input (line 5375) | class Input(enum.Enum): class ScrollerGestureType (line 5380) | class ScrollerGestureType(enum.Enum): class State (line 5386) | class State(enum.Enum): method __init__ (line 5394) | def __init__(self, *args, destroyed: typing.Callable = ..., objectName... method activeScrollers (line 5396) | def activeScrollers() -> List[QScroller]: ... method ensureVisible (line 5398) | def ensureVisible(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method ensureVisible (line 5400) | def ensureVisible(self, rect: PySide6.QtCore.QRectF | PySide6.QtCore.Q... method finalPosition (line 5401) | def finalPosition(self, /) -> PySide6.QtCore.QPointF: ... method grabGesture (line 5403) | def grabGesture(target: PySide6.QtCore.QObject, /, gestureType: QScrol... method grabbedGesture (line 5405) | def grabbedGesture(target: PySide6.QtCore.QObject, /) -> PySide6.QtCor... method handleInput (line 5406) | def handleInput(self, input: QScroller.Input, position: PySide6.QtCore... method hasScroller (line 5408) | def hasScroller(target: PySide6.QtCore.QObject, /) -> bool: ... method pixelPerMeter (line 5409) | def pixelPerMeter(self, /) -> PySide6.QtCore.QPointF: ... method resendPrepareEvent (line 5410) | def resendPrepareEvent(self, /) -> None: ... method scrollTo (line 5412) | def scrollTo(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method scrollTo (line 5414) | def scrollTo(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint... method scroller (line 5416) | def scroller(target: PySide6.QtCore.QObject, /) -> QScroller: ... method scrollerProperties (line 5417) | def scrollerProperties(self, /) -> QScrollerProperties: ... method setScrollerProperties (line 5418) | def setScrollerProperties(self, prop: QScrollerProperties, /) -> None:... method setSnapPositionsX (line 5420) | def setSnapPositionsX(self, first: float, interval: float, /) -> None:... method setSnapPositionsX (line 5422) | def setSnapPositionsX(self, positions: typing.Iterable[float], /) -> N... method setSnapPositionsY (line 5424) | def setSnapPositionsY(self, first: float, interval: float, /) -> None:... method setSnapPositionsY (line 5426) | def setSnapPositionsY(self, positions: typing.Iterable[float], /) -> N... method state (line 5427) | def state(self, /) -> QScroller.State: ... method stop (line 5428) | def stop(self, /) -> None: ... method target (line 5429) | def target(self, /) -> PySide6.QtCore.QObject: ... method ungrabGesture (line 5431) | def ungrabGesture(target: PySide6.QtCore.QObject, /) -> None: ... method velocity (line 5432) | def velocity(self, /) -> PySide6.QtCore.QPointF: ... class QScrollerProperties (line 5434) | class QScrollerProperties(shiboken6.Object): class FrameRates (line 5435) | class FrameRates(enum.Enum): class OvershootPolicy (line 5441) | class OvershootPolicy(enum.Enum): class ScrollMetric (line 5446) | class ScrollMetric(enum.Enum): method __init__ (line 5469) | def __init__(self, sp: QScrollerProperties, /) -> None: ... method __init__ (line 5471) | def __init__(self, /) -> None: ... method scrollMetric (line 5472) | def scrollMetric(self, metric: QScrollerProperties.ScrollMetric, /) ->... method setDefaultScrollerProperties (line 5474) | def setDefaultScrollerProperties(sp: QScrollerProperties, /) -> None: ... method setScrollMetric (line 5475) | def setScrollMetric(self, metric: QScrollerProperties.ScrollMetric, va... method unsetDefaultScrollerProperties (line 5477) | def unsetDefaultScrollerProperties() -> None: ... method __copy__ (line 5478) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5479) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5480) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5481) | def __gt__(self, other: object) -> bool: ... method __le__ (line 5482) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5483) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5484) | def __ne__(self, other: object) -> bool: ... class QSizeGrip (line 5486) | class QSizeGrip(QWidget): method __init__ (line 5488) | def __init__(self, parent: QWidget | None, /, acceptDrops: bool = ...,... method event (line 5489) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 5490) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method hideEvent (line 5491) | def hideEvent(self, hideEvent: PySide6.QtGui.QHideEvent, /) -> None: ... method mouseMoveEvent (line 5492) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 5493) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 5494) | def mouseReleaseEvent(self, mouseEvent: PySide6.QtGui.QMouseEvent, /) ... method moveEvent (line 5495) | def moveEvent(self, moveEvent: PySide6.QtGui.QMoveEvent, /) -> None: ... method paintEvent (line 5496) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method setVisible (line 5497) | def setVisible(self, arg__1: bool, /) -> None: ... method showEvent (line 5498) | def showEvent(self, showEvent: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 5499) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... class QSizePolicy (line 5501) | class QSizePolicy(shiboken6.Object): class ControlType (line 5502) | class ControlType(enum.Flag): class Policy (line 5519) | class Policy(enum.Enum): class PolicyFlag (line 5528) | class PolicyFlag(enum.IntFlag): method __init__ (line 5534) | def __init__(self, horizontal: QSizePolicy.Policy, vertical: QSizePoli... method __init__ (line 5536) | def __init__(self, QSizePolicy: QSizePolicy, /) -> None: ... method __init__ (line 5538) | def __init__(self, /) -> None: ... method controlType (line 5539) | def controlType(self, /) -> QSizePolicy.ControlType: ... method expandingDirections (line 5540) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method hasHeightForWidth (line 5541) | def hasHeightForWidth(self, /) -> bool: ... method hasWidthForHeight (line 5542) | def hasWidthForHeight(self, /) -> bool: ... method horizontalPolicy (line 5543) | def horizontalPolicy(self, /) -> QSizePolicy.Policy: ... method horizontalStretch (line 5544) | def horizontalStretch(self, /) -> int: ... method retainSizeWhenHidden (line 5545) | def retainSizeWhenHidden(self, /) -> bool: ... method setControlType (line 5546) | def setControlType(self, type: QSizePolicy.ControlType, /) -> None: ... method setHeightForWidth (line 5547) | def setHeightForWidth(self, b: bool, /) -> None: ... method setHorizontalPolicy (line 5548) | def setHorizontalPolicy(self, d: QSizePolicy.Policy, /) -> None: ... method setHorizontalStretch (line 5549) | def setHorizontalStretch(self, stretchFactor: int, /) -> None: ... method setRetainSizeWhenHidden (line 5550) | def setRetainSizeWhenHidden(self, retainSize: bool, /) -> None: ... method setVerticalPolicy (line 5551) | def setVerticalPolicy(self, d: QSizePolicy.Policy, /) -> None: ... method setVerticalStretch (line 5552) | def setVerticalStretch(self, stretchFactor: int, /) -> None: ... method setWidthForHeight (line 5553) | def setWidthForHeight(self, b: bool, /) -> None: ... method transpose (line 5554) | def transpose(self, /) -> None: ... method transposed (line 5555) | def transposed(self, /) -> QSizePolicy: ... method verticalPolicy (line 5556) | def verticalPolicy(self, /) -> QSizePolicy.Policy: ... method verticalStretch (line 5557) | def verticalStretch(self, /) -> int: ... method __copy__ (line 5558) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 5559) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5560) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5561) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5562) | def __hash__(self, /) -> int: ... method __le__ (line 5563) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 5564) | def __lshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... method __lt__ (line 5565) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5566) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 5567) | def __rlshift__(self, other): ... method __rrshift__ (line 5568) | def __rrshift__(self, other): ... method __rshift__ (line 5569) | def __rshift__(self, arg__1: PySide6.QtCore.QDataStream, /) -> PySide6... class QSlider (line 5571) | class QSlider(QAbstractSlider): class TickPosition (line 5572) | class TickPosition(enum.Enum): method __init__ (line 5581) | def __init__(self, orientation: PySide6.QtCore.Qt.Orientation, /, pare... method __init__ (line 5583) | def __init__(self, /, parent: QWidget | None = ..., *, tickPosition: Q... method event (line 5584) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method initStyleOption (line 5585) | def initStyleOption(self, option: QStyleOptionSlider, /) -> None: ... method minimumSizeHint (line 5586) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mouseMoveEvent (line 5587) | def mouseMoveEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 5588) | def mousePressEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 5589) | def mouseReleaseEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None:... method paintEvent (line 5590) | def paintEvent(self, ev: PySide6.QtGui.QPaintEvent, /) -> None: ... method setTickInterval (line 5591) | def setTickInterval(self, ti: int, /) -> None: ... method setTickPosition (line 5592) | def setTickPosition(self, position: QSlider.TickPosition, /) -> None: ... method sizeHint (line 5593) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method tickInterval (line 5594) | def tickInterval(self, /) -> int: ... method tickPosition (line 5595) | def tickPosition(self, /) -> QSlider.TickPosition: ... class QSpacerItem (line 5597) | class QSpacerItem(QLayoutItem): method __init__ (line 5599) | def __init__(self, w: int, h: int, /, hData: QSizePolicy.Policy = ...,... method __init__ (line 5601) | def __init__(self, w: int, h: int, hPolicy: QSizePolicy.Policy = ..., ... method changeSize (line 5603) | def changeSize(self, w: int, h: int, /, hData: QSizePolicy.Policy = ..... method changeSize (line 5605) | def changeSize(self, w: int, h: int, hPolicy: QSizePolicy.Policy = ...... method expandingDirections (line 5606) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method geometry (line 5607) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method isEmpty (line 5608) | def isEmpty(self, /) -> bool: ... method maximumSize (line 5609) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumSize (line 5610) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method setGeometry (line 5611) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method sizeHint (line 5612) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sizePolicy (line 5613) | def sizePolicy(self, /) -> QSizePolicy: ... method spacerItem (line 5614) | def spacerItem(self, /) -> QSpacerItem | None: ... class QSpinBox (line 5616) | class QSpinBox(QAbstractSpinBox): method __init__ (line 5620) | def __init__(self, /, parent: QWidget | None = ..., *, suffix: str | N... method cleanText (line 5621) | def cleanText(self, /) -> str: ... method displayIntegerBase (line 5622) | def displayIntegerBase(self, /) -> int: ... method event (line 5623) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method fixup (line 5624) | def fixup(self, str: str, /) -> str: ... method maximum (line 5625) | def maximum(self, /) -> int: ... method minimum (line 5626) | def minimum(self, /) -> int: ... method prefix (line 5627) | def prefix(self, /) -> str: ... method setDisplayIntegerBase (line 5628) | def setDisplayIntegerBase(self, base: int, /) -> None: ... method setMaximum (line 5629) | def setMaximum(self, max: int, /) -> None: ... method setMinimum (line 5630) | def setMinimum(self, min: int, /) -> None: ... method setPrefix (line 5631) | def setPrefix(self, prefix: str, /) -> None: ... method setRange (line 5632) | def setRange(self, min: int, max: int, /) -> None: ... method setSingleStep (line 5633) | def setSingleStep(self, val: int, /) -> None: ... method setStepType (line 5634) | def setStepType(self, stepType: QAbstractSpinBox.StepType, /) -> None:... method setSuffix (line 5635) | def setSuffix(self, suffix: str, /) -> None: ... method setValue (line 5636) | def setValue(self, val: int, /) -> None: ... method singleStep (line 5637) | def singleStep(self, /) -> int: ... method stepType (line 5638) | def stepType(self, /) -> QAbstractSpinBox.StepType: ... method suffix (line 5639) | def suffix(self, /) -> str: ... method textFromValue (line 5640) | def textFromValue(self, val: int, /) -> str: ... method validate (line 5641) | def validate(self, input: str, pos: int, /) -> typing.Any: ... method value (line 5642) | def value(self, /) -> int: ... method valueFromText (line 5643) | def valueFromText(self, text: str, /) -> int: ... class QSplashScreen (line 5645) | class QSplashScreen(QWidget): method __init__ (line 5649) | def __init__(self, screen: PySide6.QtGui.QScreen, /, pixmap: PySide6.Q... method __init__ (line 5651) | def __init__(self, /, pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.QI... method clearMessage (line 5652) | def clearMessage(self, /) -> None: ... method drawContents (line 5653) | def drawContents(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method event (line 5654) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method finish (line 5655) | def finish(self, w: QWidget, /) -> None: ... method message (line 5656) | def message(self, /) -> str: ... method mousePressEvent (line 5657) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method pixmap (line 5658) | def pixmap(self, /) -> PySide6.QtGui.QPixmap: ... method setPixmap (line 5659) | def setPixmap(self, pixmap: PySide6.QtGui.QPixmap | PySide6.QtGui.QIma... method showMessage (line 5660) | def showMessage(self, message: str, /, alignment: int = ..., color: Un... class QSplitter (line 5662) | class QSplitter(QFrame): method __init__ (line 5666) | def __init__(self, arg__1: PySide6.QtCore.Qt.Orientation, /, parent: Q... method __init__ (line 5668) | def __init__(self, /, parent: QWidget | None = ..., *, orientation: Py... method addWidget (line 5669) | def addWidget(self, widget: QWidget, /) -> None: ... method changeEvent (line 5670) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method childEvent (line 5671) | def childEvent(self, arg__1: PySide6.QtCore.QChildEvent, /) -> None: ... method childrenCollapsible (line 5672) | def childrenCollapsible(self, /) -> bool: ... method closestLegalPosition (line 5673) | def closestLegalPosition(self, arg__1: int, arg__2: int, /) -> int: ... method count (line 5674) | def count(self, /) -> int: ... method createHandle (line 5675) | def createHandle(self, /) -> QSplitterHandle: ... method event (line 5676) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method getRange (line 5677) | def getRange(self, index: int, /) -> typing.Any: ... method handle (line 5678) | def handle(self, index: int, /) -> QSplitterHandle: ... method handleWidth (line 5679) | def handleWidth(self, /) -> int: ... method indexOf (line 5680) | def indexOf(self, w: QWidget, /) -> int: ... method insertWidget (line 5681) | def insertWidget(self, index: int, widget: QWidget, /) -> None: ... method isCollapsible (line 5682) | def isCollapsible(self, index: int, /) -> bool: ... method minimumSizeHint (line 5683) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method moveSplitter (line 5684) | def moveSplitter(self, pos: int, index: int, /) -> None: ... method opaqueResize (line 5685) | def opaqueResize(self, /) -> bool: ... method orientation (line 5686) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method refresh (line 5687) | def refresh(self, /) -> None: ... method replaceWidget (line 5688) | def replaceWidget(self, index: int, widget: QWidget, /) -> QWidget: ... method resizeEvent (line 5689) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method restoreState (line 5690) | def restoreState(self, state: PySide6.QtCore.QByteArray | bytes | byte... method saveState (line 5691) | def saveState(self, /) -> PySide6.QtCore.QByteArray: ... method setChildrenCollapsible (line 5692) | def setChildrenCollapsible(self, arg__1: bool, /) -> None: ... method setCollapsible (line 5693) | def setCollapsible(self, index: int, arg__2: bool, /) -> None: ... method setHandleWidth (line 5694) | def setHandleWidth(self, arg__1: int, /) -> None: ... method setOpaqueResize (line 5695) | def setOpaqueResize(self, /, opaque: bool = ...) -> None: ... method setOrientation (line 5696) | def setOrientation(self, arg__1: PySide6.QtCore.Qt.Orientation, /) -> ... method setRubberBand (line 5697) | def setRubberBand(self, position: int, /) -> None: ... method setSizes (line 5698) | def setSizes(self, list: typing.Iterable[int], /) -> None: ... method setStretchFactor (line 5699) | def setStretchFactor(self, index: int, stretch: int, /) -> None: ... method sizeHint (line 5700) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sizes (line 5701) | def sizes(self, /) -> List[int]: ... method widget (line 5702) | def widget(self, index: int, /) -> QWidget: ... class QSplitterHandle (line 5704) | class QSplitterHandle(QWidget): method __init__ (line 5706) | def __init__(self, o: PySide6.QtCore.Qt.Orientation, parent: QSplitter... method closestLegalPosition (line 5707) | def closestLegalPosition(self, p: int, /) -> int: ... method event (line 5708) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method mouseMoveEvent (line 5709) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 5710) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 5711) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method moveSplitter (line 5712) | def moveSplitter(self, p: int, /) -> None: ... method opaqueResize (line 5713) | def opaqueResize(self, /) -> bool: ... method orientation (line 5714) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method paintEvent (line 5715) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeEvent (line 5716) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method setOrientation (line 5717) | def setOrientation(self, o: PySide6.QtCore.Qt.Orientation, /) -> None:... method sizeHint (line 5718) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method splitter (line 5719) | def splitter(self, /) -> QSplitter: ... class QStackedLayout (line 5721) | class QStackedLayout(QLayout): class StackingMode (line 5722) | class StackingMode(enum.Enum): method __init__ (line 5730) | def __init__(self, parentLayout: QLayout, /, *, currentIndex: int | No... method __init__ (line 5732) | def __init__(self, parent: QWidget | None, /, *, currentIndex: int | N... method __init__ (line 5734) | def __init__(self, /, *, currentIndex: int | None = ..., stackingMode:... method addItem (line 5735) | def addItem(self, item: QLayoutItem, /) -> None: ... method addWidget (line 5736) | def addWidget(self, w: QWidget, /) -> int: ... # type: ignore[override] method count (line 5737) | def count(self, /) -> int: ... method currentIndex (line 5738) | def currentIndex(self, /) -> int: ... method currentWidget (line 5739) | def currentWidget(self, /) -> QWidget: ... method hasHeightForWidth (line 5740) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 5741) | def heightForWidth(self, width: int, /) -> int: ... method insertWidget (line 5742) | def insertWidget(self, index: int, w: QWidget, /) -> int: ... method itemAt (line 5743) | def itemAt(self, arg__1: int, /) -> QLayoutItem: ... method minimumSize (line 5744) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method setCurrentIndex (line 5745) | def setCurrentIndex(self, index: int, /) -> None: ... method setCurrentWidget (line 5746) | def setCurrentWidget(self, w: QWidget, /) -> None: ... method setGeometry (line 5747) | def setGeometry(self, rect: PySide6.QtCore.QRect, /) -> None: ... method setStackingMode (line 5748) | def setStackingMode(self, stackingMode: QStackedLayout.StackingMode, /... method sizeHint (line 5749) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method stackingMode (line 5750) | def stackingMode(self, /) -> QStackedLayout.StackingMode: ... method takeAt (line 5751) | def takeAt(self, arg__1: int, /) -> QLayoutItem: ... method widget (line 5753) | def widget(self, arg__1: int, /) -> QWidget: ... method widget (line 5755) | def widget(self, /) -> QWidget | None: ... class QStackedWidget (line 5757) | class QStackedWidget(QFrame): method __init__ (line 5762) | def __init__(self, /, parent: QWidget | None = ..., *, currentIndex: i... method addWidget (line 5763) | def addWidget(self, w: QWidget, /) -> int: ... method count (line 5764) | def count(self, /) -> int: ... method currentIndex (line 5765) | def currentIndex(self, /) -> int: ... method currentWidget (line 5766) | def currentWidget(self, /) -> QWidget: ... method event (line 5767) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method indexOf (line 5768) | def indexOf(self, arg__1: QWidget, /) -> int: ... method insertWidget (line 5769) | def insertWidget(self, index: int, w: QWidget, /) -> int: ... method removeWidget (line 5770) | def removeWidget(self, w: QWidget, /) -> None: ... method setCurrentIndex (line 5771) | def setCurrentIndex(self, index: int, /) -> None: ... method setCurrentWidget (line 5772) | def setCurrentWidget(self, w: QWidget, /) -> None: ... method widget (line 5773) | def widget(self, arg__1: int, /) -> QWidget: ... class QStatusBar (line 5775) | class QStatusBar(QWidget): method __init__ (line 5778) | def __init__(self, /, parent: QWidget | None = ..., *, sizeGripEnabled... method addPermanentWidget (line 5779) | def addPermanentWidget(self, widget: QWidget, /, stretch: int | None =... method addWidget (line 5780) | def addWidget(self, widget: QWidget, /, stretch: int | None = ...) -> ... method clearMessage (line 5781) | def clearMessage(self, /) -> None: ... method currentMessage (line 5782) | def currentMessage(self, /) -> str: ... method event (line 5783) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method hideOrShow (line 5784) | def hideOrShow(self, /) -> None: ... method insertPermanentWidget (line 5785) | def insertPermanentWidget(self, index: int, widget: QWidget, /, stretc... method insertWidget (line 5786) | def insertWidget(self, index: int, widget: QWidget, /, stretch: int | ... method isSizeGripEnabled (line 5787) | def isSizeGripEnabled(self, /) -> bool: ... method paintEvent (line 5788) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method reformat (line 5789) | def reformat(self, /) -> None: ... method removeWidget (line 5790) | def removeWidget(self, widget: QWidget, /) -> None: ... method resizeEvent (line 5791) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method setSizeGripEnabled (line 5792) | def setSizeGripEnabled(self, arg__1: bool, /) -> None: ... method showEvent (line 5793) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method showMessage (line 5794) | def showMessage(self, text: str, /, timeout: int | None = ...) -> None... class QStyle (line 5796) | class QStyle(PySide6.QtCore.QObject): class ComplexControl (line 5797) | class ComplexControl(enum.IntEnum): class ContentsType (line 5809) | class ContentsType(enum.IntEnum): class ControlElement (line 5835) | class ControlElement(enum.IntEnum): class PixelMetric (line 5885) | class PixelMetric(enum.IntEnum): class PrimitiveElement (line 5983) | class PrimitiveElement(enum.IntEnum): class RequestSoftwareInputPanel (line 6037) | class RequestSoftwareInputPanel(enum.Enum): class StandardPixmap (line 6041) | class StandardPixmap(enum.IntEnum): class StateFlag (line 6124) | class StateFlag(enum.Flag): class StyleHint (line 6154) | class StyleHint(enum.IntEnum): class SubControl (line 6277) | class SubControl(enum.Flag): class SubElement (line 6322) | class SubElement(enum.IntEnum): method __init__ (line 6383) | def __init__(self, /, destroyed: typing.Callable = ..., objectName: st... method alignedRect (line 6385) | def alignedRect(direction: PySide6.QtCore.Qt.LayoutDirection, alignmen... method combinedLayoutSpacing (line 6386) | def combinedLayoutSpacing(self, controls1: QSizePolicy.ControlType, co... method drawComplexControl (line 6387) | def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOpt... method drawControl (line 6388) | def drawControl(self, element: QStyle.ControlElement, opt: QStyleOptio... method drawItemPixmap (line 6389) | def drawItemPixmap(self, painter: PySide6.QtGui.QPainter, rect: PySide... method drawItemText (line 6390) | def drawItemText(self, painter: PySide6.QtGui.QPainter, rect: PySide6.... method drawPrimitive (line 6391) | def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption... method generatedIconPixmap (line 6392) | def generatedIconPixmap(self, iconMode: PySide6.QtGui.QIcon.Mode, pixm... method hitTestComplexControl (line 6393) | def hitTestComplexControl(self, cc: QStyle.ComplexControl, opt: QStyle... method itemPixmapRect (line 6394) | def itemPixmapRect(self, r: PySide6.QtCore.QRect, flags: typing.Suppor... method itemTextRect (line 6395) | def itemTextRect(self, fm: PySide6.QtGui.QFontMetrics, r: PySide6.QtCo... method layoutSpacing (line 6396) | def layoutSpacing(self, control1: QSizePolicy.ControlType, control2: Q... method name (line 6397) | def name(self, /) -> str: ... method pixelMetric (line 6398) | def pixelMetric(self, metric: QStyle.PixelMetric, /, option: QStyleOpt... method polish (line 6400) | def polish(self, widget: QWidget, /) -> None: ... method polish (line 6402) | def polish(self, palette: PySide6.QtGui.QPalette | PySide6.QtCore.Qt.G... method polish (line 6404) | def polish(self, application: QApplication, /) -> None: ... method proxy (line 6405) | def proxy(self, /) -> QStyle: ... method sizeFromContents (line 6406) | def sizeFromContents(self, ct: QStyle.ContentsType, opt: QStyleOption,... method sliderPositionFromValue (line 6408) | def sliderPositionFromValue(min: int, max: int, val: int, space: int, ... method sliderValueFromPosition (line 6410) | def sliderValueFromPosition(min: int, max: int, pos: int, space: int, ... method standardIcon (line 6411) | def standardIcon(self, standardIcon: QStyle.StandardPixmap, /, option:... method standardPalette (line 6412) | def standardPalette(self, /) -> PySide6.QtGui.QPalette: ... method standardPixmap (line 6413) | def standardPixmap(self, standardPixmap: QStyle.StandardPixmap, /, opt... method styleHint (line 6414) | def styleHint(self, stylehint: QStyle.StyleHint, /, opt: QStyleOption ... method subControlRect (line 6415) | def subControlRect(self, cc: QStyle.ComplexControl, opt: QStyleOptionC... method subElementRect (line 6416) | def subElementRect(self, subElement: QStyle.SubElement, option: QStyle... method unpolish (line 6418) | def unpolish(self, widget: QWidget, /) -> None: ... method unpolish (line 6420) | def unpolish(self, application: QApplication, /) -> None: ... method visualAlignment (line 6422) | def visualAlignment(direction: PySide6.QtCore.Qt.LayoutDirection, alig... method visualPos (line 6424) | def visualPos(direction: PySide6.QtCore.Qt.LayoutDirection, boundingRe... method visualRect (line 6426) | def visualRect(direction: PySide6.QtCore.Qt.LayoutDirection, boundingR... class QStyleFactory (line 6428) | class QStyleFactory(shiboken6.Object): method __init__ (line 6429) | def __init__(self, /) -> None: ... method create (line 6431) | def create(arg__1: str, /) -> QStyle: ... method keys (line 6433) | def keys() -> List[str]: ... class QStyleHintReturn (line 6435) | class QStyleHintReturn(shiboken6.Object): class HintReturnType (line 6436) | class HintReturnType(enum.Enum): class StyleOptionType (line 6441) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6444) | class StyleOptionVersion(enum.Enum): method __init__ (line 6448) | def __init__(self, /, version: int = ..., type: int = ...) -> None: ... class QStyleHintReturnMask (line 6450) | class QStyleHintReturnMask(QStyleHintReturn): class StyleOptionType (line 6451) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6454) | class StyleOptionVersion(enum.Enum): method __init__ (line 6457) | def __init__(self, /) -> None: ... class QStyleHintReturnVariant (line 6459) | class QStyleHintReturnVariant(QStyleHintReturn): class StyleOptionType (line 6460) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6463) | class StyleOptionVersion(enum.Enum): method __init__ (line 6466) | def __init__(self, /) -> None: ... class QStyleOption (line 6468) | class QStyleOption(shiboken6.Object): class OptionType (line 6469) | class OptionType(enum.Enum): class StyleOptionType (line 6497) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6500) | class StyleOptionVersion(enum.Enum): method __init__ (line 6511) | def __init__(self, /, version: int = ..., type: int = ...) -> None: ... method __init__ (line 6513) | def __init__(self, other: QStyleOption, /) -> None: ... method initFrom (line 6514) | def initFrom(self, w: QWidget, /) -> None: ... class QStyleOptionButton (line 6516) | class QStyleOptionButton(QStyleOption): class ButtonFeature (line 6517) | class ButtonFeature(enum.Flag): class StyleOptionType (line 6525) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6528) | class StyleOptionVersion(enum.Enum): method __init__ (line 6535) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6537) | def __init__(self, other: QStyleOptionButton, /) -> None: ... method __init__ (line 6539) | def __init__(self, /) -> None: ... class QStyleOptionComboBox (line 6541) | class QStyleOptionComboBox(QStyleOptionComplex): class StyleOptionType (line 6542) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6545) | class StyleOptionVersion(enum.Enum): method __init__ (line 6555) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6557) | def __init__(self, other: QStyleOptionComboBox, /) -> None: ... method __init__ (line 6559) | def __init__(self, /) -> None: ... class QStyleOptionComplex (line 6561) | class QStyleOptionComplex(QStyleOption): class StyleOptionType (line 6562) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6565) | class StyleOptionVersion(enum.Enum): method __init__ (line 6570) | def __init__(self, /, version: int = ..., type: int = ...) -> None: ... method __init__ (line 6572) | def __init__(self, other: QStyleOptionComplex, /) -> None: ... class QStyleOptionDockWidget (line 6574) | class QStyleOptionDockWidget(QStyleOption): class StyleOptionType (line 6575) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6578) | class StyleOptionVersion(enum.Enum): method __init__ (line 6586) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6588) | def __init__(self, other: QStyleOptionDockWidget, /) -> None: ... method __init__ (line 6590) | def __init__(self, /) -> None: ... class QStyleOptionFocusRect (line 6592) | class QStyleOptionFocusRect(QStyleOption): class StyleOptionType (line 6593) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6596) | class StyleOptionVersion(enum.Enum): method __init__ (line 6600) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6602) | def __init__(self, other: QStyleOptionFocusRect, /) -> None: ... method __init__ (line 6604) | def __init__(self, /) -> None: ... class QStyleOptionFrame (line 6606) | class QStyleOptionFrame(QStyleOption): class FrameFeature (line 6607) | class FrameFeature(enum.Flag): class StyleOptionType (line 6612) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6615) | class StyleOptionVersion(enum.Enum): method __init__ (line 6622) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6624) | def __init__(self, other: QStyleOptionFrame, /) -> None: ... method __init__ (line 6626) | def __init__(self, /) -> None: ... class QStyleOptionGraphicsItem (line 6628) | class QStyleOptionGraphicsItem(QStyleOption): class StyleOptionType (line 6629) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6632) | class StyleOptionVersion(enum.Enum): method __init__ (line 6636) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6638) | def __init__(self, other: QStyleOptionGraphicsItem, /) -> None: ... method __init__ (line 6640) | def __init__(self, /) -> None: ... method levelOfDetailFromTransform (line 6642) | def levelOfDetailFromTransform(worldTransform: PySide6.QtGui.QTransfor... class QStyleOptionGroupBox (line 6644) | class QStyleOptionGroupBox(QStyleOptionComplex): class StyleOptionType (line 6645) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6648) | class StyleOptionVersion(enum.Enum): method __init__ (line 6657) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6659) | def __init__(self, other: QStyleOptionGroupBox, /) -> None: ... method __init__ (line 6661) | def __init__(self, /) -> None: ... class QStyleOptionHeader (line 6663) | class QStyleOptionHeader(QStyleOption): class SectionPosition (line 6664) | class SectionPosition(enum.Enum): class SelectedPosition (line 6670) | class SelectedPosition(enum.Enum): class SortIndicator (line 6676) | class SortIndicator(enum.Enum): class StyleOptionType (line 6681) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6684) | class StyleOptionVersion(enum.Enum): method __init__ (line 6696) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6698) | def __init__(self, other: QStyleOptionHeader, /) -> None: ... method __init__ (line 6700) | def __init__(self, /) -> None: ... class QStyleOptionHeaderV2 (line 6702) | class QStyleOptionHeaderV2(QStyleOptionHeader): class StyleOptionType (line 6703) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6706) | class StyleOptionVersion(enum.Enum): method __init__ (line 6712) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6714) | def __init__(self, other: QStyleOptionHeaderV2, /) -> None: ... method __init__ (line 6716) | def __init__(self, /) -> None: ... class QStyleOptionMenuItem (line 6718) | class QStyleOptionMenuItem(QStyleOption): class CheckType (line 6719) | class CheckType(enum.Enum): class MenuItemType (line 6724) | class MenuItemType(enum.Enum): class StyleOptionType (line 6734) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6737) | class StyleOptionVersion(enum.Enum): method __init__ (line 6750) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6752) | def __init__(self, other: QStyleOptionMenuItem, /) -> None: ... method __init__ (line 6754) | def __init__(self, /) -> None: ... class QStyleOptionProgressBar (line 6756) | class QStyleOptionProgressBar(QStyleOption): class StyleOptionType (line 6757) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6760) | class StyleOptionVersion(enum.Enum): method __init__ (line 6771) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6773) | def __init__(self, other: QStyleOptionProgressBar, /) -> None: ... method __init__ (line 6775) | def __init__(self, /) -> None: ... class QStyleOptionRubberBand (line 6777) | class QStyleOptionRubberBand(QStyleOption): class StyleOptionType (line 6778) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6781) | class StyleOptionVersion(enum.Enum): method __init__ (line 6786) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6788) | def __init__(self, other: QStyleOptionRubberBand, /) -> None: ... method __init__ (line 6790) | def __init__(self, /) -> None: ... class QStyleOptionSizeGrip (line 6792) | class QStyleOptionSizeGrip(QStyleOptionComplex): class StyleOptionType (line 6793) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6796) | class StyleOptionVersion(enum.Enum): method __init__ (line 6800) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6802) | def __init__(self, other: QStyleOptionSizeGrip, /) -> None: ... method __init__ (line 6804) | def __init__(self, /) -> None: ... class QStyleOptionSlider (line 6806) | class QStyleOptionSlider(QStyleOptionComplex): class StyleOptionType (line 6807) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6810) | class StyleOptionVersion(enum.Enum): method __init__ (line 6826) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6828) | def __init__(self, other: QStyleOptionSlider, /) -> None: ... method __init__ (line 6830) | def __init__(self, /) -> None: ... class QStyleOptionSpinBox (line 6832) | class QStyleOptionSpinBox(QStyleOptionComplex): class StyleOptionType (line 6833) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6836) | class StyleOptionVersion(enum.Enum): method __init__ (line 6842) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6844) | def __init__(self, other: QStyleOptionSpinBox, /) -> None: ... method __init__ (line 6846) | def __init__(self, /) -> None: ... class QStyleOptionTab (line 6848) | class QStyleOptionTab(QStyleOption): class CornerWidget (line 6849) | class CornerWidget(enum.Flag): class SelectedPosition (line 6854) | class SelectedPosition(enum.Enum): class StyleOptionType (line 6859) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6862) | class StyleOptionVersion(enum.Enum): class TabFeature (line 6865) | class TabFeature(enum.Flag): class TabPosition (line 6870) | class TabPosition(enum.Enum): method __init__ (line 6890) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6892) | def __init__(self, other: QStyleOptionTab, /) -> None: ... method __init__ (line 6894) | def __init__(self, /) -> None: ... class QStyleOptionTabBarBase (line 6896) | class QStyleOptionTabBarBase(QStyleOption): class StyleOptionType (line 6897) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6900) | class StyleOptionVersion(enum.Enum): method __init__ (line 6907) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6909) | def __init__(self, other: QStyleOptionTabBarBase, /) -> None: ... method __init__ (line 6911) | def __init__(self, /) -> None: ... class QStyleOptionTabWidgetFrame (line 6913) | class QStyleOptionTabWidgetFrame(QStyleOption): class StyleOptionType (line 6914) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6917) | class StyleOptionVersion(enum.Enum): method __init__ (line 6928) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6930) | def __init__(self, other: QStyleOptionTabWidgetFrame, /) -> None: ... method __init__ (line 6932) | def __init__(self, /) -> None: ... class QStyleOptionTitleBar (line 6934) | class QStyleOptionTitleBar(QStyleOptionComplex): class StyleOptionType (line 6935) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6938) | class StyleOptionVersion(enum.Enum): method __init__ (line 6945) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6947) | def __init__(self, other: QStyleOptionTitleBar, /) -> None: ... method __init__ (line 6949) | def __init__(self, /) -> None: ... class QStyleOptionToolBar (line 6951) | class QStyleOptionToolBar(QStyleOption): class StyleOptionType (line 6952) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6955) | class StyleOptionVersion(enum.Enum): class ToolBarFeature (line 6958) | class ToolBarFeature(enum.Flag): class ToolBarPosition (line 6962) | class ToolBarPosition(enum.Enum): method __init__ (line 6974) | def __init__(self, version: int, /) -> None: ... method __init__ (line 6976) | def __init__(self, other: QStyleOptionToolBar, /) -> None: ... method __init__ (line 6978) | def __init__(self, /) -> None: ... class QStyleOptionToolBox (line 6980) | class QStyleOptionToolBox(QStyleOption): class SelectedPosition (line 6981) | class SelectedPosition(enum.Enum): class StyleOptionType (line 6986) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 6989) | class StyleOptionVersion(enum.Enum): class TabPosition (line 6992) | class TabPosition(enum.Enum): method __init__ (line 7002) | def __init__(self, version: int, /) -> None: ... method __init__ (line 7004) | def __init__(self, other: QStyleOptionToolBox, /) -> None: ... method __init__ (line 7006) | def __init__(self, /) -> None: ... class QStyleOptionToolButton (line 7008) | class QStyleOptionToolButton(QStyleOptionComplex): class StyleOptionType (line 7009) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 7012) | class StyleOptionVersion(enum.Enum): class ToolButtonFeature (line 7015) | class ToolButtonFeature(enum.Flag): method __init__ (line 7031) | def __init__(self, version: int, /) -> None: ... method __init__ (line 7033) | def __init__(self, other: QStyleOptionToolButton, /) -> None: ... method __init__ (line 7035) | def __init__(self, /) -> None: ... class QStyleOptionViewItem (line 7037) | class QStyleOptionViewItem(QStyleOption): class Position (line 7038) | class Position(enum.Enum): class StyleOptionType (line 7044) | class StyleOptionType(enum.Enum): class StyleOptionVersion (line 7047) | class StyleOptionVersion(enum.Enum): class ViewItemFeature (line 7050) | class ViewItemFeature(enum.Flag): class ViewItemPosition (line 7060) | class ViewItemPosition(enum.Enum): method __init__ (line 7083) | def __init__(self, version: int, /) -> None: ... method __init__ (line 7085) | def __init__(self, other: QStyleOptionViewItem, /) -> None: ... method __init__ (line 7087) | def __init__(self, /) -> None: ... method __copy__ (line 7088) | def __copy__(self, /) -> typing_extensions.Self: ... class QStylePainter (line 7090) | class QStylePainter(PySide6.QtGui.QPainter): method __init__ (line 7092) | def __init__(self, pd: PySide6.QtGui.QPaintDevice, w: QWidget, /) -> N... method __init__ (line 7094) | def __init__(self, w: QWidget, /) -> None: ... method __init__ (line 7096) | def __init__(self, /) -> None: ... method begin (line 7098) | def begin(self, pd: PySide6.QtGui.QPaintDevice, w: QWidget, /) -> bool... method begin (line 7100) | def begin(self, w: QWidget, /) -> bool: ... method drawComplexControl (line 7101) | def drawComplexControl(self, cc: QStyle.ComplexControl, opt: QStyleOpt... method drawControl (line 7102) | def drawControl(self, ce: QStyle.ControlElement, opt: QStyleOption, /)... method drawItemPixmap (line 7103) | def drawItemPixmap(self, r: PySide6.QtCore.QRect, flags: typing.Suppor... method drawItemText (line 7104) | def drawItemText(self, r: PySide6.QtCore.QRect, flags: typing.Supports... method drawPrimitive (line 7105) | def drawPrimitive(self, pe: QStyle.PrimitiveElement, opt: QStyleOption... method style (line 7106) | def style(self, /) -> QStyle: ... class QStyledItemDelegate (line 7108) | class QStyledItemDelegate(QAbstractItemDelegate): method __init__ (line 7110) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., clo... method createEditor (line 7111) | def createEditor(self, parent: QWidget | None, option: QStyleOptionVie... method displayText (line 7112) | def displayText(self, value: Any, locale: PySide6.QtCore.QLocale | PyS... method editorEvent (line 7113) | def editorEvent(self, event: PySide6.QtCore.QEvent, model: PySide6.QtC... method eventFilter (line 7114) | def eventFilter(self, object: PySide6.QtCore.QObject, event: PySide6.Q... method initStyleOption (line 7115) | def initStyleOption(self, option: QStyleOptionViewItem, index: PySide6... method itemEditorFactory (line 7116) | def itemEditorFactory(self, /) -> QItemEditorFactory: ... method paint (line 7117) | def paint(self, painter: PySide6.QtGui.QPainter, option: QStyleOptionV... method setEditorData (line 7118) | def setEditorData(self, editor: QWidget, index: PySide6.QtCore.QModelI... method setItemEditorFactory (line 7119) | def setItemEditorFactory(self, factory: QItemEditorFactory, /) -> None... method setModelData (line 7120) | def setModelData(self, editor: QWidget, model: PySide6.QtCore.QAbstrac... method sizeHint (line 7121) | def sizeHint(self, option: QStyleOptionViewItem, index: PySide6.QtCore... method updateEditorGeometry (line 7122) | def updateEditorGeometry(self, editor: QWidget, option: QStyleOptionVi... class QSwipeGesture (line 7124) | class QSwipeGesture(QGesture): class SwipeDirection (line 7125) | class SwipeDirection(enum.Enum): method __init__ (line 7132) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method horizontalDirection (line 7133) | def horizontalDirection(self, /) -> QSwipeGesture.SwipeDirection: ... method setSwipeAngle (line 7134) | def setSwipeAngle(self, value: float, /) -> None: ... method swipeAngle (line 7135) | def swipeAngle(self, /) -> float: ... method verticalDirection (line 7136) | def verticalDirection(self, /) -> QSwipeGesture.SwipeDirection: ... class QSystemTrayIcon (line 7138) | class QSystemTrayIcon(PySide6.QtCore.QObject): class ActivationReason (line 7139) | class ActivationReason(enum.Enum): class MessageIcon (line 7146) | class MessageIcon(enum.Enum): method __init__ (line 7155) | def __init__(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, ... method __init__ (line 7157) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method contextMenu (line 7158) | def contextMenu(self, /) -> QMenu: ... method event (line 7159) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method geometry (line 7160) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method hide (line 7161) | def hide(self, /) -> None: ... method icon (line 7162) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method isSystemTrayAvailable (line 7164) | def isSystemTrayAvailable() -> bool: ... method isVisible (line 7165) | def isVisible(self, /) -> bool: ... method setContextMenu (line 7166) | def setContextMenu(self, menu: QMenu, /) -> None: ... method setIcon (line 7167) | def setIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, /... method setToolTip (line 7168) | def setToolTip(self, tip: str, /) -> None: ... method setVisible (line 7169) | def setVisible(self, visible: bool, /) -> None: ... method show (line 7170) | def show(self, /) -> None: ... method showMessage (line 7172) | def showMessage(self, title: str, msg: str, icon: PySide6.QtGui.QIcon ... method showMessage (line 7174) | def showMessage(self, title: str, msg: str, /, icon: QSystemTrayIcon.M... method supportsMessages (line 7176) | def supportsMessages() -> bool: ... method toolTip (line 7177) | def toolTip(self, /) -> str: ... class QTabBar (line 7179) | class QTabBar(QWidget): class ButtonPosition (line 7180) | class ButtonPosition(enum.Enum): class SelectionBehavior (line 7184) | class SelectionBehavior(enum.Enum): class Shape (line 7189) | class Shape(enum.Enum): method __init__ (line 7204) | def __init__(self, /, parent: QWidget | None = ..., *, shape: QTabBar.... method accessibleTabName (line 7205) | def accessibleTabName(self, index: int, /) -> str: ... method addTab (line 7207) | def addTab(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, te... method addTab (line 7209) | def addTab(self, text: str, /) -> int: ... method autoHide (line 7210) | def autoHide(self, /) -> bool: ... method changeCurrentOnDrag (line 7211) | def changeCurrentOnDrag(self, /) -> bool: ... method changeEvent (line 7212) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method count (line 7213) | def count(self, /) -> int: ... method currentIndex (line 7214) | def currentIndex(self, /) -> int: ... method documentMode (line 7215) | def documentMode(self, /) -> bool: ... method drawBase (line 7216) | def drawBase(self, /) -> bool: ... method elideMode (line 7217) | def elideMode(self, /) -> PySide6.QtCore.Qt.TextElideMode: ... method event (line 7218) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method expanding (line 7219) | def expanding(self, /) -> bool: ... method hideEvent (line 7220) | def hideEvent(self, arg__1: PySide6.QtGui.QHideEvent, /) -> None: ... method iconSize (line 7221) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method initStyleOption (line 7222) | def initStyleOption(self, option: QStyleOptionTab, tabIndex: int, /) -... method insertTab (line 7224) | def insertTab(self, index: int, icon: PySide6.QtGui.QIcon | PySide6.Qt... method insertTab (line 7226) | def insertTab(self, index: int, text: str, /) -> int: ... method isMovable (line 7227) | def isMovable(self, /) -> bool: ... method isTabEnabled (line 7228) | def isTabEnabled(self, index: int, /) -> bool: ... method isTabVisible (line 7229) | def isTabVisible(self, index: int, /) -> bool: ... method keyPressEvent (line 7230) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method minimumSizeHint (line 7231) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method minimumTabSizeHint (line 7232) | def minimumTabSizeHint(self, index: int, /) -> PySide6.QtCore.QSize: ... method mouseDoubleClickEvent (line 7233) | def mouseDoubleClickEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) ... method mouseMoveEvent (line 7234) | def mouseMoveEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> None... method mousePressEvent (line 7235) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 7236) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method moveTab (line 7237) | def moveTab(self, from_: int, to: int, /) -> None: ... method paintEvent (line 7238) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method removeTab (line 7239) | def removeTab(self, index: int, /) -> None: ... method resizeEvent (line 7240) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method selectionBehaviorOnRemove (line 7241) | def selectionBehaviorOnRemove(self, /) -> QTabBar.SelectionBehavior: ... method setAccessibleTabName (line 7242) | def setAccessibleTabName(self, index: int, name: str, /) -> None: ... method setAutoHide (line 7243) | def setAutoHide(self, hide: bool, /) -> None: ... method setChangeCurrentOnDrag (line 7244) | def setChangeCurrentOnDrag(self, change: bool, /) -> None: ... method setCurrentIndex (line 7245) | def setCurrentIndex(self, index: int, /) -> None: ... method setDocumentMode (line 7246) | def setDocumentMode(self, set: bool, /) -> None: ... method setDrawBase (line 7247) | def setDrawBase(self, drawTheBase: bool, /) -> None: ... method setElideMode (line 7248) | def setElideMode(self, mode: PySide6.QtCore.Qt.TextElideMode, /) -> No... method setExpanding (line 7249) | def setExpanding(self, enabled: bool, /) -> None: ... method setIconSize (line 7250) | def setIconSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setMovable (line 7251) | def setMovable(self, movable: bool, /) -> None: ... method setSelectionBehaviorOnRemove (line 7252) | def setSelectionBehaviorOnRemove(self, behavior: QTabBar.SelectionBeha... method setShape (line 7253) | def setShape(self, shape: QTabBar.Shape, /) -> None: ... method setTabButton (line 7254) | def setTabButton(self, index: int, position: QTabBar.ButtonPosition, w... method setTabData (line 7255) | def setTabData(self, index: int, data: Any, /) -> None: ... method setTabEnabled (line 7256) | def setTabEnabled(self, index: int, enabled: bool, /) -> None: ... method setTabIcon (line 7257) | def setTabIcon(self, index: int, icon: PySide6.QtGui.QIcon | PySide6.Q... method setTabText (line 7258) | def setTabText(self, index: int, text: str, /) -> None: ... method setTabTextColor (line 7259) | def setTabTextColor(self, index: int, color: Union[PySide6.QtGui.QColo... method setTabToolTip (line 7260) | def setTabToolTip(self, index: int, tip: str, /) -> None: ... method setTabVisible (line 7261) | def setTabVisible(self, index: int, visible: bool, /) -> None: ... method setTabWhatsThis (line 7262) | def setTabWhatsThis(self, index: int, text: str, /) -> None: ... method setTabsClosable (line 7263) | def setTabsClosable(self, closable: bool, /) -> None: ... method setUsesScrollButtons (line 7264) | def setUsesScrollButtons(self, useButtons: bool, /) -> None: ... method shape (line 7265) | def shape(self, /) -> QTabBar.Shape: ... method showEvent (line 7266) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 7267) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method tabAt (line 7268) | def tabAt(self, pos: PySide6.QtCore.QPoint, /) -> int: ... method tabButton (line 7269) | def tabButton(self, index: int, position: QTabBar.ButtonPosition, /) -... method tabData (line 7270) | def tabData(self, index: int, /) -> Any: ... method tabIcon (line 7271) | def tabIcon(self, index: int, /) -> PySide6.QtGui.QIcon: ... method tabInserted (line 7272) | def tabInserted(self, index: int, /) -> None: ... method tabLayoutChange (line 7273) | def tabLayoutChange(self, /) -> None: ... method tabRect (line 7274) | def tabRect(self, index: int, /) -> PySide6.QtCore.QRect: ... method tabRemoved (line 7275) | def tabRemoved(self, index: int, /) -> None: ... method tabSizeHint (line 7276) | def tabSizeHint(self, index: int, /) -> PySide6.QtCore.QSize: ... method tabText (line 7277) | def tabText(self, index: int, /) -> str: ... method tabTextColor (line 7278) | def tabTextColor(self, index: int, /) -> PySide6.QtGui.QColor: ... method tabToolTip (line 7279) | def tabToolTip(self, index: int, /) -> str: ... method tabWhatsThis (line 7280) | def tabWhatsThis(self, index: int, /) -> str: ... method tabsClosable (line 7281) | def tabsClosable(self, /) -> bool: ... method timerEvent (line 7282) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method usesScrollButtons (line 7283) | def usesScrollButtons(self, /) -> bool: ... method wheelEvent (line 7284) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... class QTabWidget (line 7286) | class QTabWidget(QWidget): class TabPosition (line 7287) | class TabPosition(enum.Enum): class TabShape (line 7293) | class TabShape(enum.Enum): method __init__ (line 7301) | def __init__(self, /, parent: QWidget | None = ..., *, tabPosition: QT... method addTab (line 7303) | def addTab(self, widget: QWidget, icon: PySide6.QtGui.QIcon | PySide6.... method addTab (line 7305) | def addTab(self, widget: QWidget, arg__2: str, /) -> int: ... method changeEvent (line 7306) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 7307) | def clear(self, /) -> None: ... method cornerWidget (line 7308) | def cornerWidget(self, /, corner: PySide6.QtCore.Qt.Corner = ...) -> Q... method count (line 7309) | def count(self, /) -> int: ... method currentIndex (line 7310) | def currentIndex(self, /) -> int: ... method currentWidget (line 7311) | def currentWidget(self, /) -> QWidget: ... method documentMode (line 7312) | def documentMode(self, /) -> bool: ... method elideMode (line 7313) | def elideMode(self, /) -> PySide6.QtCore.Qt.TextElideMode: ... method event (line 7314) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method hasHeightForWidth (line 7315) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 7316) | def heightForWidth(self, width: int, /) -> int: ... method iconSize (line 7317) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method indexOf (line 7318) | def indexOf(self, widget: QWidget, /) -> int: ... method initStyleOption (line 7319) | def initStyleOption(self, option: QStyleOptionTabWidgetFrame, /) -> No... method insertTab (line 7321) | def insertTab(self, index: int, widget: QWidget, icon: PySide6.QtGui.Q... method insertTab (line 7323) | def insertTab(self, index: int, widget: QWidget, arg__3: str, /) -> in... method isMovable (line 7324) | def isMovable(self, /) -> bool: ... method isTabEnabled (line 7325) | def isTabEnabled(self, index: int, /) -> bool: ... method isTabVisible (line 7326) | def isTabVisible(self, index: int, /) -> bool: ... method keyPressEvent (line 7327) | def keyPressEvent(self, arg__1: PySide6.QtGui.QKeyEvent, /) -> None: ... method minimumSizeHint (line 7328) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method paintEvent (line 7329) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method removeTab (line 7330) | def removeTab(self, index: int, /) -> None: ... method resizeEvent (line 7331) | def resizeEvent(self, arg__1: PySide6.QtGui.QResizeEvent, /) -> None: ... method setCornerWidget (line 7332) | def setCornerWidget(self, w: QWidget, /, corner: PySide6.QtCore.Qt.Cor... method setCurrentIndex (line 7333) | def setCurrentIndex(self, index: int, /) -> None: ... method setCurrentWidget (line 7334) | def setCurrentWidget(self, widget: QWidget, /) -> None: ... method setDocumentMode (line 7335) | def setDocumentMode(self, set: bool, /) -> None: ... method setElideMode (line 7336) | def setElideMode(self, mode: PySide6.QtCore.Qt.TextElideMode, /) -> No... method setIconSize (line 7337) | def setIconSize(self, size: PySide6.QtCore.QSize, /) -> None: ... method setMovable (line 7338) | def setMovable(self, movable: bool, /) -> None: ... method setTabBar (line 7339) | def setTabBar(self, arg__1: QTabBar, /) -> None: ... method setTabBarAutoHide (line 7340) | def setTabBarAutoHide(self, enabled: bool, /) -> None: ... method setTabEnabled (line 7341) | def setTabEnabled(self, index: int, enabled: bool, /) -> None: ... method setTabIcon (line 7342) | def setTabIcon(self, index: int, icon: PySide6.QtGui.QIcon | PySide6.Q... method setTabPosition (line 7343) | def setTabPosition(self, position: QTabWidget.TabPosition, /) -> None:... method setTabShape (line 7344) | def setTabShape(self, s: QTabWidget.TabShape, /) -> None: ... method setTabText (line 7345) | def setTabText(self, index: int, text: str, /) -> None: ... method setTabToolTip (line 7346) | def setTabToolTip(self, index: int, tip: str, /) -> None: ... method setTabVisible (line 7347) | def setTabVisible(self, index: int, visible: bool, /) -> None: ... method setTabWhatsThis (line 7348) | def setTabWhatsThis(self, index: int, text: str, /) -> None: ... method setTabsClosable (line 7349) | def setTabsClosable(self, closeable: bool, /) -> None: ... method setUsesScrollButtons (line 7350) | def setUsesScrollButtons(self, useButtons: bool, /) -> None: ... method showEvent (line 7351) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method sizeHint (line 7352) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method tabBar (line 7353) | def tabBar(self, /) -> QTabBar: ... method tabBarAutoHide (line 7354) | def tabBarAutoHide(self, /) -> bool: ... method tabIcon (line 7355) | def tabIcon(self, index: int, /) -> PySide6.QtGui.QIcon: ... method tabInserted (line 7356) | def tabInserted(self, index: int, /) -> None: ... method tabPosition (line 7357) | def tabPosition(self, /) -> QTabWidget.TabPosition: ... method tabRemoved (line 7358) | def tabRemoved(self, index: int, /) -> None: ... method tabShape (line 7359) | def tabShape(self, /) -> QTabWidget.TabShape: ... method tabText (line 7360) | def tabText(self, index: int, /) -> str: ... method tabToolTip (line 7361) | def tabToolTip(self, index: int, /) -> str: ... method tabWhatsThis (line 7362) | def tabWhatsThis(self, index: int, /) -> str: ... method tabsClosable (line 7363) | def tabsClosable(self, /) -> bool: ... method usesScrollButtons (line 7364) | def usesScrollButtons(self, /) -> bool: ... method widget (line 7365) | def widget(self, index: int, /) -> QWidget: ... class QTableView (line 7367) | class QTableView(QAbstractItemView): method __init__ (line 7369) | def __init__(self, /, parent: QWidget | None = ..., *, showGrid: bool ... method clearSpans (line 7370) | def clearSpans(self, /) -> None: ... method columnAt (line 7371) | def columnAt(self, x: int, /) -> int: ... method columnCountChanged (line 7372) | def columnCountChanged(self, oldCount: int, newCount: int, /) -> None:... method columnMoved (line 7373) | def columnMoved(self, column: int, oldIndex: int, newIndex: int, /) ->... method columnResized (line 7374) | def columnResized(self, column: int, oldWidth: int, newWidth: int, /) ... method columnSpan (line 7375) | def columnSpan(self, row: int, column: int, /) -> int: ... method columnViewportPosition (line 7376) | def columnViewportPosition(self, column: int, /) -> int: ... method columnWidth (line 7377) | def columnWidth(self, column: int, /) -> int: ... method currentChanged (line 7378) | def currentChanged(self, current: PySide6.QtCore.QModelIndex | PySide6... method doItemsLayout (line 7379) | def doItemsLayout(self, /) -> None: ... method dropEvent (line 7380) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method gridStyle (line 7381) | def gridStyle(self, /) -> PySide6.QtCore.Qt.PenStyle: ... method hideColumn (line 7382) | def hideColumn(self, column: int, /) -> None: ... method hideRow (line 7383) | def hideRow(self, row: int, /) -> None: ... method horizontalHeader (line 7384) | def horizontalHeader(self, /) -> QHeaderView: ... method horizontalOffset (line 7385) | def horizontalOffset(self, /) -> int: ... method horizontalScrollbarAction (line 7386) | def horizontalScrollbarAction(self, action: int, /) -> None: ... method indexAt (line 7387) | def indexAt(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QMode... method initViewItemOption (line 7388) | def initViewItemOption(self, option: QStyleOptionViewItem, /) -> None:... method isColumnHidden (line 7389) | def isColumnHidden(self, column: int, /) -> bool: ... method isCornerButtonEnabled (line 7390) | def isCornerButtonEnabled(self, /) -> bool: ... method isIndexHidden (line 7391) | def isIndexHidden(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method isRowHidden (line 7392) | def isRowHidden(self, row: int, /) -> bool: ... method isSortingEnabled (line 7393) | def isSortingEnabled(self, /) -> bool: ... method moveCursor (line 7394) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method paintEvent (line 7395) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method resizeColumnToContents (line 7396) | def resizeColumnToContents(self, column: int, /) -> None: ... method resizeColumnsToContents (line 7397) | def resizeColumnsToContents(self, /) -> None: ... method resizeRowToContents (line 7398) | def resizeRowToContents(self, row: int, /) -> None: ... method resizeRowsToContents (line 7399) | def resizeRowsToContents(self, /) -> None: ... method rowAt (line 7400) | def rowAt(self, y: int, /) -> int: ... method rowCountChanged (line 7401) | def rowCountChanged(self, oldCount: int, newCount: int, /) -> None: ... method rowHeight (line 7402) | def rowHeight(self, row: int, /) -> int: ... method rowMoved (line 7403) | def rowMoved(self, row: int, oldIndex: int, newIndex: int, /) -> None:... method rowResized (line 7404) | def rowResized(self, row: int, oldHeight: int, newHeight: int, /) -> N... method rowSpan (line 7405) | def rowSpan(self, row: int, column: int, /) -> int: ... method rowViewportPosition (line 7406) | def rowViewportPosition(self, row: int, /) -> int: ... method scrollContentsBy (line 7407) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method scrollTo (line 7408) | def scrollTo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method selectColumn (line 7409) | def selectColumn(self, column: int, /) -> None: ... method selectRow (line 7410) | def selectRow(self, row: int, /) -> None: ... method selectedIndexes (line 7411) | def selectedIndexes(self, /) -> list[PySide6.QtCore.QModelIndex]: ... method selectionChanged (line 7412) | def selectionChanged(self, selected: PySide6.QtCore.QItemSelection, de... method setColumnHidden (line 7413) | def setColumnHidden(self, column: int, hide: bool, /) -> None: ... method setColumnWidth (line 7414) | def setColumnWidth(self, column: int, width: int, /) -> None: ... method setCornerButtonEnabled (line 7415) | def setCornerButtonEnabled(self, enable: bool, /) -> None: ... method setGridStyle (line 7416) | def setGridStyle(self, style: PySide6.QtCore.Qt.PenStyle, /) -> None: ... method setHorizontalHeader (line 7417) | def setHorizontalHeader(self, header: QHeaderView, /) -> None: ... method setModel (line 7418) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setRootIndex (line 7419) | def setRootIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method setRowHeight (line 7420) | def setRowHeight(self, row: int, height: int, /) -> None: ... method setRowHidden (line 7421) | def setRowHidden(self, row: int, hide: bool, /) -> None: ... method setSelection (line 7422) | def setSelection(self, rect: PySide6.QtCore.QRect, command: PySide6.Qt... method setSelectionModel (line 7423) | def setSelectionModel(self, selectionModel: PySide6.QtCore.QItemSelect... method setShowGrid (line 7424) | def setShowGrid(self, show: bool, /) -> None: ... method setSortingEnabled (line 7425) | def setSortingEnabled(self, enable: bool, /) -> None: ... method setSpan (line 7426) | def setSpan(self, row: int, column: int, rowSpan: int, columnSpan: int... method setVerticalHeader (line 7427) | def setVerticalHeader(self, header: QHeaderView, /) -> None: ... method setWordWrap (line 7428) | def setWordWrap(self, on: bool, /) -> None: ... method showColumn (line 7429) | def showColumn(self, column: int, /) -> None: ... method showGrid (line 7430) | def showGrid(self, /) -> bool: ... method showRow (line 7431) | def showRow(self, row: int, /) -> None: ... method sizeHintForColumn (line 7432) | def sizeHintForColumn(self, column: int, /) -> int: ... method sizeHintForRow (line 7433) | def sizeHintForRow(self, row: int, /) -> int: ... method sortByColumn (line 7434) | def sortByColumn(self, column: int, order: PySide6.QtCore.Qt.SortOrder... method timerEvent (line 7435) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method updateGeometries (line 7436) | def updateGeometries(self, /) -> None: ... method verticalHeader (line 7437) | def verticalHeader(self, /) -> QHeaderView: ... method verticalOffset (line 7438) | def verticalOffset(self, /) -> int: ... method verticalScrollbarAction (line 7439) | def verticalScrollbarAction(self, action: int, /) -> None: ... method viewportSizeHint (line 7440) | def viewportSizeHint(self, /) -> PySide6.QtCore.QSize: ... method visualRect (line 7441) | def visualRect(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method visualRegionForSelection (line 7442) | def visualRegionForSelection(self, selection: PySide6.QtCore.QItemSele... method wordWrap (line 7443) | def wordWrap(self, /) -> bool: ... class QTableWidget (line 7445) | class QTableWidget(QTableView): method __init__ (line 7463) | def __init__(self, rows: int, columns: int, /, parent: QWidget | None ... method __init__ (line 7465) | def __init__(self, /, parent: QWidget | None = ..., *, rowCount: int |... method cellWidget (line 7466) | def cellWidget(self, row: int, column: int, /) -> QWidget: ... method clear (line 7467) | def clear(self, /) -> None: ... method clearContents (line 7468) | def clearContents(self, /) -> None: ... method closePersistentEditor (line 7469) | def closePersistentEditor(self, item: QTableWidgetItem, /) -> None: ..... method column (line 7470) | def column(self, item: QTableWidgetItem, /) -> int: ... method columnCount (line 7471) | def columnCount(self, /) -> int: ... method currentColumn (line 7472) | def currentColumn(self, /) -> int: ... method currentItem (line 7473) | def currentItem(self, /) -> QTableWidgetItem: ... method currentRow (line 7474) | def currentRow(self, /) -> int: ... method dropEvent (line 7475) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method dropMimeData (line 7476) | def dropMimeData(self, row: int, column: int, data: PySide6.QtCore.QMi... method editItem (line 7477) | def editItem(self, item: QTableWidgetItem, /) -> None: ... method event (line 7478) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method findItems (line 7479) | def findItems(self, text: str, flags: PySide6.QtCore.Qt.MatchFlag, /) ... method horizontalHeaderItem (line 7480) | def horizontalHeaderItem(self, column: int, /) -> QTableWidgetItem | N... method indexFromItem (line 7481) | def indexFromItem(self, item: QTableWidgetItem, /) -> PySide6.QtCore.Q... method insertColumn (line 7482) | def insertColumn(self, column: int, /) -> None: ... method insertRow (line 7483) | def insertRow(self, row: int, /) -> None: ... method isPersistentEditorOpen (line 7485) | def isPersistentEditorOpen(self, item: QTableWidgetItem, /) -> bool: ... method isPersistentEditorOpen (line 7487) | def isPersistentEditorOpen(self, index: PySide6.QtCore.QModelIndex | P... method isSortingEnabled (line 7488) | def isSortingEnabled(self, /) -> bool: ... method item (line 7489) | def item(self, row: int, column: int, /) -> QTableWidgetItem | None: ... method itemAt (line 7491) | def itemAt(self, x: int, y: int, /) -> QTableWidgetItem | None: ... method itemAt (line 7493) | def itemAt(self, p: PySide6.QtCore.QPoint, /) -> QTableWidgetItem | No... method itemFromIndex (line 7494) | def itemFromIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method itemPrototype (line 7495) | def itemPrototype(self, /) -> QTableWidgetItem: ... method items (line 7496) | def items(self, data: PySide6.QtCore.QMimeData, /) -> List[QTableWidge... method mimeData (line 7497) | def mimeData(self, items: typing.Iterable[QTableWidgetItem], /) -> PyS... method mimeTypes (line 7498) | def mimeTypes(self, /) -> List[str]: ... method openPersistentEditor (line 7499) | def openPersistentEditor(self, item: QTableWidgetItem, /) -> None: ...... method removeCellWidget (line 7500) | def removeCellWidget(self, row: int, column: int, /) -> None: ... method removeColumn (line 7501) | def removeColumn(self, column: int, /) -> None: ... method removeRow (line 7502) | def removeRow(self, row: int, /) -> None: ... method row (line 7503) | def row(self, item: QTableWidgetItem, /) -> int: ... method rowCount (line 7504) | def rowCount(self, /) -> int: ... method scrollToItem (line 7505) | def scrollToItem(self, item: QTableWidgetItem, /, hint: QAbstractItemV... method selectedItems (line 7506) | def selectedItems(self, /) -> List[QTableWidgetItem]: ... method selectedRanges (line 7507) | def selectedRanges(self, /) -> List[QTableWidgetSelectionRange]: ... method setCellWidget (line 7508) | def setCellWidget(self, row: int, column: int, widget: QWidget, /) -> ... method setColumnCount (line 7509) | def setColumnCount(self, columns: int, /) -> None: ... method setCurrentCell (line 7511) | def setCurrentCell(self, row: int, column: int, command: PySide6.QtCor... method setCurrentCell (line 7513) | def setCurrentCell(self, row: int, column: int, /) -> None: ... method setCurrentItem (line 7515) | def setCurrentItem(self, item: QTableWidgetItem, command: PySide6.QtCo... method setCurrentItem (line 7517) | def setCurrentItem(self, item: QTableWidgetItem, /) -> None: ... method setHorizontalHeaderItem (line 7518) | def setHorizontalHeaderItem(self, column: int, item: QTableWidgetItem,... method setHorizontalHeaderLabels (line 7519) | def setHorizontalHeaderLabels(self, labels: typing.Iterable[str], /) -... method setItem (line 7520) | def setItem(self, row: int, column: int, item: QTableWidgetItem, /) ->... method setItemPrototype (line 7521) | def setItemPrototype(self, item: QTableWidgetItem, /) -> None: ... method setModel (line 7522) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setRangeSelected (line 7523) | def setRangeSelected(self, range: QTableWidgetSelectionRange, select: ... method setRowCount (line 7524) | def setRowCount(self, rows: int, /) -> None: ... method setSortingEnabled (line 7525) | def setSortingEnabled(self, enable: bool, /) -> None: ... method setSupportedDragActions (line 7526) | def setSupportedDragActions(self, actions: PySide6.QtCore.Qt.DropActio... method setVerticalHeaderItem (line 7527) | def setVerticalHeaderItem(self, row: int, item: QTableWidgetItem, /) -... method setVerticalHeaderLabels (line 7528) | def setVerticalHeaderLabels(self, labels: typing.Iterable[str], /) -> ... method sortItems (line 7529) | def sortItems(self, column: int, /, order: PySide6.QtCore.Qt.SortOrder... method supportedDragActions (line 7530) | def supportedDragActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method supportedDropActions (line 7531) | def supportedDropActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method takeHorizontalHeaderItem (line 7532) | def takeHorizontalHeaderItem(self, column: int, /) -> QTableWidgetItem... method takeItem (line 7533) | def takeItem(self, row: int, column: int, /) -> QTableWidgetItem: ... method takeVerticalHeaderItem (line 7534) | def takeVerticalHeaderItem(self, row: int, /) -> QTableWidgetItem: ... method verticalHeaderItem (line 7535) | def verticalHeaderItem(self, row: int, /) -> QTableWidgetItem: ... method visualColumn (line 7536) | def visualColumn(self, logicalColumn: int, /) -> int: ... method visualItemRect (line 7537) | def visualItemRect(self, item: QTableWidgetItem, /) -> PySide6.QtCore.... method visualRow (line 7538) | def visualRow(self, logicalRow: int, /) -> int: ... class QTableWidgetItem (line 7540) | class QTableWidgetItem(shiboken6.Object): class ItemType (line 7541) | class ItemType(enum.IntEnum): method __init__ (line 7545) | def __init__(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, ... method __init__ (line 7547) | def __init__(self, text: str, /, type: int = ...) -> None: ... method __init__ (line 7549) | def __init__(self, other: QTableWidgetItem, /) -> None: ... method __init__ (line 7551) | def __init__(self, /, type: int = ...) -> None: ... method background (line 7552) | def background(self, /) -> PySide6.QtGui.QBrush: ... method checkState (line 7553) | def checkState(self, /) -> PySide6.QtCore.Qt.CheckState: ... method clone (line 7554) | def clone(self, /) -> QTableWidgetItem: ... method column (line 7555) | def column(self, /) -> int: ... method data (line 7556) | def data(self, role: PySide6.QtCore.Qt.ItemDataRole | int, /) -> Any: ... method flags (line 7557) | def flags(self, /) -> PySide6.QtCore.Qt.ItemFlag: ... method font (line 7558) | def font(self, /) -> PySide6.QtGui.QFont: ... method foreground (line 7559) | def foreground(self, /) -> PySide6.QtGui.QBrush: ... method icon (line 7560) | def icon(self, /) -> PySide6.QtGui.QIcon: ... method isSelected (line 7561) | def isSelected(self, /) -> bool: ... method read (line 7562) | def read(self, in_: PySide6.QtCore.QDataStream, /) -> None: ... method row (line 7563) | def row(self, /) -> int: ... method setBackground (line 7564) | def setBackground(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setCheckState (line 7565) | def setCheckState(self, state: PySide6.QtCore.Qt.CheckState, /) -> Non... method setData (line 7566) | def setData(self, role: PySide6.QtCore.Qt.ItemDataRole | int, value: A... method setFlags (line 7567) | def setFlags(self, flags: PySide6.QtCore.Qt.ItemFlag, /) -> None: ... method setFont (line 7568) | def setFont(self, font: PySide6.QtGui.QFont | str | typing.Iterable[st... method setForeground (line 7569) | def setForeground(self, brush: PySide6.QtGui.QBrush | PySide6.QtCore.Q... method setIcon (line 7570) | def setIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap, /... method setSelected (line 7571) | def setSelected(self, select: bool, /) -> None: ... method setSizeHint (line 7572) | def setSizeHint(self, size: PySide6.QtCore.QSize, /) -> None: ... method setStatusTip (line 7573) | def setStatusTip(self, statusTip: str, /) -> None: ... method setText (line 7574) | def setText(self, text: str, /) -> None: ... method setTextAlignment (line 7576) | def setTextAlignment(self, alignment: PySide6.QtCore.Qt.AlignmentFlag,... method setTextAlignment (line 7578) | def setTextAlignment(self, alignment: int, /) -> None: ... method setToolTip (line 7579) | def setToolTip(self, toolTip: str, /) -> None: ... method setWhatsThis (line 7580) | def setWhatsThis(self, whatsThis: str, /) -> None: ... method sizeHint (line 7581) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method statusTip (line 7582) | def statusTip(self, /) -> str: ... method tableWidget (line 7583) | def tableWidget(self, /) -> QTableWidget: ... method text (line 7584) | def text(self, /) -> str: ... method textAlignment (line 7585) | def textAlignment(self, /) -> int: ... method toolTip (line 7586) | def toolTip(self, /) -> str: ... method type (line 7587) | def type(self, /) -> int: ... method whatsThis (line 7588) | def whatsThis(self, /) -> str: ... method write (line 7589) | def write(self, out: PySide6.QtCore.QDataStream, /) -> None: ... method __eq__ (line 7590) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7591) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7592) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7593) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 7594) | def __lshift__(self, out: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... method __lt__ (line 7595) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7596) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 7597) | def __rlshift__(self, other): ... method __rrshift__ (line 7598) | def __rrshift__(self, other): ... method __rshift__ (line 7599) | def __rshift__(self, in_: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... class QTableWidgetSelectionRange (line 7601) | class QTableWidgetSelectionRange(shiboken6.Object): method __init__ (line 7603) | def __init__(self, top: int, left: int, bottom: int, right: int, /) ->... method __init__ (line 7605) | def __init__(self, QTableWidgetSelectionRange: QTableWidgetSelectionRa... method __init__ (line 7607) | def __init__(self, /) -> None: ... method bottomRow (line 7608) | def bottomRow(self, /) -> int: ... method columnCount (line 7609) | def columnCount(self, /) -> int: ... method leftColumn (line 7610) | def leftColumn(self, /) -> int: ... method rightColumn (line 7611) | def rightColumn(self, /) -> int: ... method rowCount (line 7612) | def rowCount(self, /) -> int: ... method topRow (line 7613) | def topRow(self, /) -> int: ... method __copy__ (line 7614) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 7615) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 7616) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 7617) | def __gt__(self, other: object) -> bool: ... method __le__ (line 7618) | def __le__(self, other: object) -> bool: ... method __lt__ (line 7619) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 7620) | def __ne__(self, other: object) -> bool: ... class QTapAndHoldGesture (line 7622) | class QTapAndHoldGesture(QGesture): method __init__ (line 7624) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method position (line 7625) | def position(self, /) -> PySide6.QtCore.QPointF: ... method setPosition (line 7626) | def setPosition(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... method setTimeout (line 7628) | def setTimeout(msecs: int, /) -> None: ... method timeout (line 7630) | def timeout() -> int: ... class QTapGesture (line 7632) | class QTapGesture(QGesture): method __init__ (line 7634) | def __init__(self, /, parent: PySide6.QtCore.QObject | None = ..., *, ... method position (line 7635) | def position(self, /) -> PySide6.QtCore.QPointF: ... method setPosition (line 7636) | def setPosition(self, pos: PySide6.QtCore.QPointF | PySide6.QtCore.QPo... class QTextBrowser (line 7638) | class QTextBrowser(QTextEdit): method __init__ (line 7646) | def __init__(self, /, parent: QWidget | None = ..., *, source: PySide6... method backward (line 7647) | def backward(self, /) -> None: ... method backwardHistoryCount (line 7648) | def backwardHistoryCount(self, /) -> int: ... method clearHistory (line 7649) | def clearHistory(self, /) -> None: ... method doSetSource (line 7650) | def doSetSource(self, name: PySide6.QtCore.QUrl | str, /, type: PySide... method event (line 7651) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method focusNextPrevChild (line 7652) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 7653) | def focusOutEvent(self, ev: PySide6.QtGui.QFocusEvent, /) -> None: ... method forward (line 7654) | def forward(self, /) -> None: ... method forwardHistoryCount (line 7655) | def forwardHistoryCount(self, /) -> int: ... method historyTitle (line 7656) | def historyTitle(self, arg__1: int, /) -> str: ... method historyUrl (line 7657) | def historyUrl(self, arg__1: int, /) -> PySide6.QtCore.QUrl: ... method home (line 7658) | def home(self, /) -> None: ... method isBackwardAvailable (line 7659) | def isBackwardAvailable(self, /) -> bool: ... method isForwardAvailable (line 7660) | def isForwardAvailable(self, /) -> bool: ... method keyPressEvent (line 7661) | def keyPressEvent(self, ev: PySide6.QtGui.QKeyEvent, /) -> None: ... method loadResource (line 7662) | def loadResource(self, type: int, name: PySide6.QtCore.QUrl | str, /) ... method mouseMoveEvent (line 7663) | def mouseMoveEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 7664) | def mousePressEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 7665) | def mouseReleaseEvent(self, ev: PySide6.QtGui.QMouseEvent, /) -> None:... method openExternalLinks (line 7666) | def openExternalLinks(self, /) -> bool: ... method openLinks (line 7667) | def openLinks(self, /) -> bool: ... method paintEvent (line 7668) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method reload (line 7669) | def reload(self, /) -> None: ... method searchPaths (line 7670) | def searchPaths(self, /) -> List[str]: ... method setOpenExternalLinks (line 7671) | def setOpenExternalLinks(self, open: bool, /) -> None: ... method setOpenLinks (line 7672) | def setOpenLinks(self, open: bool, /) -> None: ... method setSearchPaths (line 7673) | def setSearchPaths(self, paths: typing.Iterable[str], /) -> None: ... method setSource (line 7674) | def setSource(self, name: PySide6.QtCore.QUrl | str, /, type: PySide6.... method source (line 7675) | def source(self, /) -> PySide6.QtCore.QUrl: ... method sourceType (line 7676) | def sourceType(self, /) -> PySide6.QtGui.QTextDocument.ResourceType: ... class QTextEdit (line 7678) | class QTextEdit(QAbstractScrollArea): class AutoFormattingFlag (line 7679) | class AutoFormattingFlag(enum.Flag): class ExtraSelection (line 7684) | class ExtraSelection(shiboken6.Object): method __init__ (line 7688) | def __init__(self, ExtraSelection: QTextEdit.ExtraSelection, /) -> N... method __init__ (line 7690) | def __init__(self, /) -> None: ... method __copy__ (line 7691) | def __copy__(self, /) -> typing_extensions.Self: ... class LineWrapMode (line 7693) | class LineWrapMode(enum.Enum): method __init__ (line 7707) | def __init__(self, text: str, /, parent: QWidget | None = ..., *, auto... method __init__ (line 7709) | def __init__(self, /, parent: QWidget | None = ..., *, autoFormatting:... method acceptRichText (line 7710) | def acceptRichText(self, /) -> bool: ... method alignment (line 7711) | def alignment(self, /) -> PySide6.QtCore.Qt.AlignmentFlag: ... method anchorAt (line 7712) | def anchorAt(self, pos: PySide6.QtCore.QPoint, /) -> str: ... method append (line 7713) | def append(self, text: str, /) -> None: ... method autoFormatting (line 7714) | def autoFormatting(self, /) -> QTextEdit.AutoFormattingFlag: ... method canInsertFromMimeData (line 7715) | def canInsertFromMimeData(self, source: PySide6.QtCore.QMimeData, /) -... method canPaste (line 7716) | def canPaste(self, /) -> bool: ... method changeEvent (line 7717) | def changeEvent(self, e: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 7718) | def clear(self, /) -> None: ... method contextMenuEvent (line 7719) | def contextMenuEvent(self, e: PySide6.QtGui.QContextMenuEvent, /) -> N... method copy (line 7720) | def copy(self, /) -> None: ... method createMimeDataFromSelection (line 7721) | def createMimeDataFromSelection(self, /) -> PySide6.QtCore.QMimeData: ... method createStandardContextMenu (line 7723) | def createStandardContextMenu(self, position: PySide6.QtCore.QPoint, /... method createStandardContextMenu (line 7725) | def createStandardContextMenu(self, /) -> QMenu: ... method currentCharFormat (line 7726) | def currentCharFormat(self, /) -> PySide6.QtGui.QTextCharFormat: ... method currentFont (line 7727) | def currentFont(self, /) -> PySide6.QtGui.QFont: ... method cursorForPosition (line 7728) | def cursorForPosition(self, pos: PySide6.QtCore.QPoint, /) -> PySide6.... method cursorRect (line 7730) | def cursorRect(self, cursor: PySide6.QtGui.QTextCursor, /) -> PySide6.... method cursorRect (line 7732) | def cursorRect(self, /) -> PySide6.QtCore.QRect: ... method cursorWidth (line 7733) | def cursorWidth(self, /) -> int: ... method cut (line 7734) | def cut(self, /) -> None: ... method doSetTextCursor (line 7735) | def doSetTextCursor(self, cursor: PySide6.QtGui.QTextCursor, /) -> Non... method document (line 7736) | def document(self, /) -> PySide6.QtGui.QTextDocument: ... method documentTitle (line 7737) | def documentTitle(self, /) -> str: ... method dragEnterEvent (line 7738) | def dragEnterEvent(self, e: PySide6.QtGui.QDragEnterEvent, /) -> None:... method dragLeaveEvent (line 7739) | def dragLeaveEvent(self, e: PySide6.QtGui.QDragLeaveEvent, /) -> None:... method dragMoveEvent (line 7740) | def dragMoveEvent(self, e: PySide6.QtGui.QDragMoveEvent, /) -> None: ... method dropEvent (line 7741) | def dropEvent(self, e: PySide6.QtGui.QDropEvent, /) -> None: ... method ensureCursorVisible (line 7742) | def ensureCursorVisible(self, /) -> None: ... method event (line 7743) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method extraSelections (line 7744) | def extraSelections(self, /) -> List[QTextEdit.ExtraSelection]: ... method find (line 7746) | def find(self, exp: str, /, options: PySide6.QtGui.QTextDocument.FindF... method find (line 7748) | def find(self, exp: PySide6.QtCore.QRegularExpression | str, /, option... method focusInEvent (line 7749) | def focusInEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextPrevChild (line 7750) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 7751) | def focusOutEvent(self, e: PySide6.QtGui.QFocusEvent, /) -> None: ... method fontFamily (line 7752) | def fontFamily(self, /) -> str: ... method fontItalic (line 7753) | def fontItalic(self, /) -> bool: ... method fontPointSize (line 7754) | def fontPointSize(self, /) -> float: ... method fontUnderline (line 7755) | def fontUnderline(self, /) -> bool: ... method fontWeight (line 7756) | def fontWeight(self, /) -> int: ... method inputMethodEvent (line 7757) | def inputMethodEvent(self, arg__1: PySide6.QtGui.QInputMethodEvent, /)... method inputMethodQuery (line 7759) | def inputMethodQuery(self, query: PySide6.QtCore.Qt.InputMethodQuery, ... method inputMethodQuery (line 7761) | def inputMethodQuery(self, property: PySide6.QtCore.Qt.InputMethodQuer... method insertFromMimeData (line 7762) | def insertFromMimeData(self, source: PySide6.QtCore.QMimeData, /) -> N... method insertHtml (line 7763) | def insertHtml(self, text: str, /) -> None: ... method insertPlainText (line 7764) | def insertPlainText(self, text: str, /) -> None: ... method isReadOnly (line 7765) | def isReadOnly(self, /) -> bool: ... method isUndoRedoEnabled (line 7766) | def isUndoRedoEnabled(self, /) -> bool: ... method keyPressEvent (line 7767) | def keyPressEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 7768) | def keyReleaseEvent(self, e: PySide6.QtGui.QKeyEvent, /) -> None: ... method lineWrapColumnOrWidth (line 7769) | def lineWrapColumnOrWidth(self, /) -> int: ... method lineWrapMode (line 7770) | def lineWrapMode(self, /) -> QTextEdit.LineWrapMode: ... method loadResource (line 7771) | def loadResource(self, type: int, name: PySide6.QtCore.QUrl | str, /) ... method mergeCurrentCharFormat (line 7772) | def mergeCurrentCharFormat(self, modifier: PySide6.QtGui.QTextCharForm... method mouseDoubleClickEvent (line 7773) | def mouseDoubleClickEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> No... method mouseMoveEvent (line 7774) | def mouseMoveEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mousePressEvent (line 7775) | def mousePressEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method mouseReleaseEvent (line 7776) | def mouseReleaseEvent(self, e: PySide6.QtGui.QMouseEvent, /) -> None: ... method moveCursor (line 7777) | def moveCursor(self, operation: PySide6.QtGui.QTextCursor.MoveOperatio... method overwriteMode (line 7778) | def overwriteMode(self, /) -> bool: ... method paintEvent (line 7779) | def paintEvent(self, e: PySide6.QtGui.QPaintEvent, /) -> None: ... method paste (line 7780) | def paste(self, /) -> None: ... method placeholderText (line 7781) | def placeholderText(self, /) -> str: ... method print_ (line 7782) | def print_(self, printer: PySide6.QtGui.QPagedPaintDevice, /) -> None:... method redo (line 7783) | def redo(self, /) -> None: ... method resizeEvent (line 7784) | def resizeEvent(self, e: PySide6.QtGui.QResizeEvent, /) -> None: ... method scrollContentsBy (line 7785) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method scrollToAnchor (line 7786) | def scrollToAnchor(self, name: str, /) -> None: ... method selectAll (line 7787) | def selectAll(self, /) -> None: ... method setAcceptRichText (line 7788) | def setAcceptRichText(self, accept: bool, /) -> None: ... method setAlignment (line 7789) | def setAlignment(self, a: PySide6.QtCore.Qt.AlignmentFlag, /) -> None:... method setAutoFormatting (line 7790) | def setAutoFormatting(self, features: QTextEdit.AutoFormattingFlag, /)... method setCurrentCharFormat (line 7791) | def setCurrentCharFormat(self, format: PySide6.QtGui.QTextCharFormat, ... method setCurrentFont (line 7792) | def setCurrentFont(self, f: PySide6.QtGui.QFont | str | typing.Iterabl... method setCursorWidth (line 7793) | def setCursorWidth(self, width: int, /) -> None: ... method setDocument (line 7794) | def setDocument(self, document: PySide6.QtGui.QTextDocument, /) -> Non... method setDocumentTitle (line 7795) | def setDocumentTitle(self, title: str, /) -> None: ... method setExtraSelections (line 7796) | def setExtraSelections(self, selections: typing.Iterable[QTextEdit.Ext... method setFontFamily (line 7797) | def setFontFamily(self, fontFamily: str, /) -> None: ... method setFontItalic (line 7798) | def setFontItalic(self, b: bool, /) -> None: ... method setFontPointSize (line 7799) | def setFontPointSize(self, s: float, /) -> None: ... method setFontUnderline (line 7800) | def setFontUnderline(self, b: bool, /) -> None: ... method setFontWeight (line 7801) | def setFontWeight(self, w: int | PySide6.QtGui.QFont.Weight, /) -> Non... method setHtml (line 7802) | def setHtml(self, text: str, /) -> None: ... method setLineWrapColumnOrWidth (line 7803) | def setLineWrapColumnOrWidth(self, w: int, /) -> None: ... method setLineWrapMode (line 7804) | def setLineWrapMode(self, mode: QTextEdit.LineWrapMode, /) -> None: ... method setMarkdown (line 7805) | def setMarkdown(self, markdown: str, /) -> None: ... method setOverwriteMode (line 7806) | def setOverwriteMode(self, overwrite: bool, /) -> None: ... method setPlaceholderText (line 7807) | def setPlaceholderText(self, placeholderText: str, /) -> None: ... method setPlainText (line 7808) | def setPlainText(self, text: str, /) -> None: ... method setReadOnly (line 7809) | def setReadOnly(self, ro: bool, /) -> None: ... method setTabChangesFocus (line 7810) | def setTabChangesFocus(self, b: bool, /) -> None: ... method setTabStopDistance (line 7811) | def setTabStopDistance(self, distance: float, /) -> None: ... method setText (line 7812) | def setText(self, text: str, /) -> None: ... method setTextBackgroundColor (line 7813) | def setTextBackgroundColor(self, c: Union[PySide6.QtGui.QColor, str, P... method setTextColor (line 7814) | def setTextColor(self, c: Union[PySide6.QtGui.QColor, str, PySide6.QtG... method setTextCursor (line 7815) | def setTextCursor(self, cursor: PySide6.QtGui.QTextCursor, /) -> None:... method setTextInteractionFlags (line 7816) | def setTextInteractionFlags(self, flags: PySide6.QtCore.Qt.TextInterac... method setUndoRedoEnabled (line 7817) | def setUndoRedoEnabled(self, enable: bool, /) -> None: ... method setWordWrapMode (line 7818) | def setWordWrapMode(self, policy: PySide6.QtGui.QTextOption.WrapMode, ... method showEvent (line 7819) | def showEvent(self, arg__1: PySide6.QtGui.QShowEvent, /) -> None: ... method tabChangesFocus (line 7820) | def tabChangesFocus(self, /) -> bool: ... method tabStopDistance (line 7821) | def tabStopDistance(self, /) -> float: ... method textBackgroundColor (line 7822) | def textBackgroundColor(self, /) -> PySide6.QtGui.QColor: ... method textColor (line 7823) | def textColor(self, /) -> PySide6.QtGui.QColor: ... method textCursor (line 7824) | def textCursor(self, /) -> PySide6.QtGui.QTextCursor: ... method textInteractionFlags (line 7825) | def textInteractionFlags(self, /) -> PySide6.QtCore.Qt.TextInteraction... method timerEvent (line 7826) | def timerEvent(self, e: PySide6.QtCore.QTimerEvent, /) -> None: ... method toHtml (line 7827) | def toHtml(self, /) -> str: ... method toMarkdown (line 7828) | def toMarkdown(self, /, features: PySide6.QtGui.QTextDocument.Markdown... method toPlainText (line 7829) | def toPlainText(self, /) -> str: ... method undo (line 7830) | def undo(self, /) -> None: ... method wheelEvent (line 7831) | def wheelEvent(self, e: PySide6.QtGui.QWheelEvent, /) -> None: ... method wordWrapMode (line 7832) | def wordWrapMode(self, /) -> PySide6.QtGui.QTextOption.WrapMode: ... method zoomIn (line 7833) | def zoomIn(self, /, range: int = ...) -> None: ... method zoomInF (line 7834) | def zoomInF(self, range: float, /) -> None: ... method zoomOut (line 7835) | def zoomOut(self, /, range: int = ...) -> None: ... class QTileRules (line 7837) | class QTileRules(shiboken6.Object): method __init__ (line 7841) | def __init__(self, horizontalRule: PySide6.QtCore.Qt.TileRule, vertica... method __init__ (line 7843) | def __init__(self, QTileRules: QTileRules, /) -> None: ... method __init__ (line 7845) | def __init__(self, /, rule: PySide6.QtCore.Qt.TileRule = ...) -> None:... method __copy__ (line 7846) | def __copy__(self, /) -> typing_extensions.Self: ... class QTimeEdit (line 7848) | class QTimeEdit(QDateTimeEdit): method __init__ (line 7852) | def __init__(self, /, parent: QWidget | None = ..., *, time: PySide6.Q... method __init__ (line 7854) | def __init__(self, time: PySide6.QtCore.QTime, /, parent: QWidget | No... class QToolBar (line 7856) | class QToolBar(QWidget): method __init__ (line 7867) | def __init__(self, title: str, /, parent: QWidget | None = ..., *, mov... method __init__ (line 7869) | def __init__(self, /, parent: QWidget | None = ..., *, movable: bool |... method actionAt (line 7871) | def actionAt(self, x: int, y: int, /) -> PySide6.QtGui.QAction: ... method actionAt (line 7873) | def actionAt(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtGui.QActi... method actionEvent (line 7874) | def actionEvent(self, event: PySide6.QtGui.QActionEvent, /) -> None: ... method actionGeometry (line 7875) | def actionGeometry(self, action: PySide6.QtGui.QAction, /) -> PySide6.... method addSeparator (line 7876) | def addSeparator(self, /) -> PySide6.QtGui.QAction: ... method addWidget (line 7877) | def addWidget(self, widget: QWidget, /) -> PySide6.QtGui.QAction: ... method allowedAreas (line 7878) | def allowedAreas(self, /) -> PySide6.QtCore.Qt.ToolBarArea: ... method changeEvent (line 7879) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method clear (line 7880) | def clear(self, /) -> None: ... method event (line 7881) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method iconSize (line 7882) | def iconSize(self, /) -> PySide6.QtCore.QSize: ... method initStyleOption (line 7883) | def initStyleOption(self, option: QStyleOptionToolBar, /) -> None: ... method insertSeparator (line 7884) | def insertSeparator(self, before: PySide6.QtGui.QAction, /) -> PySide6... method insertWidget (line 7885) | def insertWidget(self, before: PySide6.QtGui.QAction, widget: QWidget,... method isAreaAllowed (line 7886) | def isAreaAllowed(self, area: PySide6.QtCore.Qt.ToolBarArea, /) -> boo... method isFloatable (line 7887) | def isFloatable(self, /) -> bool: ... method isFloating (line 7888) | def isFloating(self, /) -> bool: ... method isMovable (line 7889) | def isMovable(self, /) -> bool: ... method orientation (line 7890) | def orientation(self, /) -> PySide6.QtCore.Qt.Orientation: ... method paintEvent (line 7891) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method setAllowedAreas (line 7892) | def setAllowedAreas(self, areas: PySide6.QtCore.Qt.ToolBarArea, /) -> ... method setFloatable (line 7893) | def setFloatable(self, floatable: bool, /) -> None: ... method setIconSize (line 7894) | def setIconSize(self, iconSize: PySide6.QtCore.QSize, /) -> None: ... method setMovable (line 7895) | def setMovable(self, movable: bool, /) -> None: ... method setOrientation (line 7896) | def setOrientation(self, orientation: PySide6.QtCore.Qt.Orientation, /... method setToolButtonStyle (line 7897) | def setToolButtonStyle(self, toolButtonStyle: PySide6.QtCore.Qt.ToolBu... method toggleViewAction (line 7898) | def toggleViewAction(self, /) -> PySide6.QtGui.QAction: ... method toolButtonStyle (line 7899) | def toolButtonStyle(self, /) -> PySide6.QtCore.Qt.ToolButtonStyle: ... method widgetForAction (line 7900) | def widgetForAction(self, action: PySide6.QtGui.QAction, /) -> QWidget... class QToolBox (line 7902) | class QToolBox(QFrame): method __init__ (line 7905) | def __init__(self, /, parent: QWidget | None = ..., f: PySide6.QtCore.... method addItem (line 7907) | def addItem(self, widget: QWidget, icon: PySide6.QtGui.QIcon | PySide6... method addItem (line 7909) | def addItem(self, widget: QWidget, text: str, /) -> int: ... method changeEvent (line 7910) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method count (line 7911) | def count(self, /) -> int: ... method currentIndex (line 7912) | def currentIndex(self, /) -> int: ... method currentWidget (line 7913) | def currentWidget(self, /) -> QWidget: ... method event (line 7914) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method indexOf (line 7915) | def indexOf(self, widget: QWidget, /) -> int: ... method insertItem (line 7917) | def insertItem(self, index: int, widget: QWidget, icon: PySide6.QtGui.... method insertItem (line 7919) | def insertItem(self, index: int, widget: QWidget, text: str, /) -> int... method isItemEnabled (line 7920) | def isItemEnabled(self, index: int, /) -> bool: ... method itemIcon (line 7921) | def itemIcon(self, index: int, /) -> PySide6.QtGui.QIcon: ... method itemInserted (line 7922) | def itemInserted(self, index: int, /) -> None: ... method itemRemoved (line 7923) | def itemRemoved(self, index: int, /) -> None: ... method itemText (line 7924) | def itemText(self, index: int, /) -> str: ... method itemToolTip (line 7925) | def itemToolTip(self, index: int, /) -> str: ... method removeItem (line 7926) | def removeItem(self, index: int, /) -> None: ... method setCurrentIndex (line 7927) | def setCurrentIndex(self, index: int, /) -> None: ... method setCurrentWidget (line 7928) | def setCurrentWidget(self, widget: QWidget, /) -> None: ... method setItemEnabled (line 7929) | def setItemEnabled(self, index: int, enabled: bool, /) -> None: ... method setItemIcon (line 7930) | def setItemIcon(self, index: int, icon: PySide6.QtGui.QIcon | PySide6.... method setItemText (line 7931) | def setItemText(self, index: int, text: str, /) -> None: ... method setItemToolTip (line 7932) | def setItemToolTip(self, index: int, toolTip: str, /) -> None: ... method showEvent (line 7933) | def showEvent(self, e: PySide6.QtGui.QShowEvent, /) -> None: ... method widget (line 7934) | def widget(self, index: int, /) -> QWidget: ... class QToolButton (line 7936) | class QToolButton(QAbstractButton): class ToolButtonPopupMode (line 7937) | class ToolButtonPopupMode(enum.Enum): method __init__ (line 7943) | def __init__(self, /, parent: QWidget | None = ..., *, popupMode: QToo... method actionEvent (line 7944) | def actionEvent(self, arg__1: PySide6.QtGui.QActionEvent, /) -> None: ... method arrowType (line 7945) | def arrowType(self, /) -> PySide6.QtCore.Qt.ArrowType: ... method autoRaise (line 7946) | def autoRaise(self, /) -> bool: ... method changeEvent (line 7947) | def changeEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method checkStateSet (line 7948) | def checkStateSet(self, /) -> None: ... method defaultAction (line 7949) | def defaultAction(self, /) -> PySide6.QtGui.QAction: ... method enterEvent (line 7950) | def enterEvent(self, arg__1: PySide6.QtGui.QEnterEvent, /) -> None: ... method event (line 7951) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method hitButton (line 7952) | def hitButton(self, pos: PySide6.QtCore.QPoint, /) -> bool: ... method initStyleOption (line 7953) | def initStyleOption(self, option: QStyleOptionToolButton, /) -> None: ... method leaveEvent (line 7954) | def leaveEvent(self, arg__1: PySide6.QtCore.QEvent, /) -> None: ... method menu (line 7955) | def menu(self, /) -> QMenu: ... method minimumSizeHint (line 7956) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method mousePressEvent (line 7957) | def mousePressEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> Non... method mouseReleaseEvent (line 7958) | def mouseReleaseEvent(self, arg__1: PySide6.QtGui.QMouseEvent, /) -> N... method nextCheckState (line 7959) | def nextCheckState(self, /) -> None: ... method paintEvent (line 7960) | def paintEvent(self, arg__1: PySide6.QtGui.QPaintEvent, /) -> None: ... method popupMode (line 7961) | def popupMode(self, /) -> QToolButton.ToolButtonPopupMode: ... method setArrowType (line 7962) | def setArrowType(self, type: PySide6.QtCore.Qt.ArrowType, /) -> None: ... method setAutoRaise (line 7963) | def setAutoRaise(self, enable: bool, /) -> None: ... method setDefaultAction (line 7964) | def setDefaultAction(self, arg__1: PySide6.QtGui.QAction, /) -> None: ... method setMenu (line 7965) | def setMenu(self, menu: QMenu, /) -> None: ... method setPopupMode (line 7966) | def setPopupMode(self, mode: QToolButton.ToolButtonPopupMode, /) -> No... method setToolButtonStyle (line 7967) | def setToolButtonStyle(self, style: PySide6.QtCore.Qt.ToolButtonStyle,... method showMenu (line 7968) | def showMenu(self, /) -> None: ... method sizeHint (line 7969) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method timerEvent (line 7970) | def timerEvent(self, arg__1: PySide6.QtCore.QTimerEvent, /) -> None: ... method toolButtonStyle (line 7971) | def toolButtonStyle(self, /) -> PySide6.QtCore.Qt.ToolButtonStyle: ... class QToolTip (line 7973) | class QToolTip(shiboken6.Object): method __init__ (line 7974) | def __init__(self, *args, **kwargs) -> None: ... method font (line 7976) | def font() -> PySide6.QtGui.QFont: ... method hideText (line 7978) | def hideText() -> None: ... method isVisible (line 7980) | def isVisible() -> bool: ... method palette (line 7982) | def palette() -> PySide6.QtGui.QPalette: ... method setFont (line 7984) | def setFont(arg__1: PySide6.QtGui.QFont | str | typing.Iterable[str], ... method setPalette (line 7986) | def setPalette(arg__1: PySide6.QtGui.QPalette | PySide6.QtCore.Qt.Glob... method showText (line 7988) | def showText(pos: PySide6.QtCore.QPoint, text: str, /, w: QWidget | No... method text (line 7990) | def text() -> str: ... class QTreeView (line 7992) | class QTreeView(QAbstractItemView): method __init__ (line 7996) | def __init__(self, /, parent: QWidget | None = ..., *, autoExpandDelay... method allColumnsShowFocus (line 7997) | def allColumnsShowFocus(self, /) -> bool: ... method autoExpandDelay (line 7998) | def autoExpandDelay(self, /) -> int: ... method changeEvent (line 7999) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method collapse (line 8000) | def collapse(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method collapseAll (line 8001) | def collapseAll(self, /) -> None: ... method columnAt (line 8002) | def columnAt(self, x: int, /) -> int: ... method columnCountChanged (line 8003) | def columnCountChanged(self, oldCount: int, newCount: int, /) -> None:... method columnMoved (line 8004) | def columnMoved(self, /) -> None: ... method columnResized (line 8005) | def columnResized(self, column: int, oldSize: int, newSize: int, /) ->... method columnViewportPosition (line 8006) | def columnViewportPosition(self, column: int, /) -> int: ... method columnWidth (line 8007) | def columnWidth(self, column: int, /) -> int: ... method currentChanged (line 8008) | def currentChanged(self, current: PySide6.QtCore.QModelIndex | PySide6... method dataChanged (line 8009) | def dataChanged(self, topLeft: PySide6.QtCore.QModelIndex | PySide6.Qt... method doItemsLayout (line 8010) | def doItemsLayout(self, /) -> None: ... method dragMoveEvent (line 8011) | def dragMoveEvent(self, event: PySide6.QtGui.QDragMoveEvent, /) -> Non... method drawBranches (line 8012) | def drawBranches(self, painter: PySide6.QtGui.QPainter, rect: PySide6.... method drawRow (line 8013) | def drawRow(self, painter: PySide6.QtGui.QPainter, options: QStyleOpti... method drawTree (line 8014) | def drawTree(self, painter: PySide6.QtGui.QPainter, region: PySide6.Qt... method expand (line 8015) | def expand(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.QP... method expandAll (line 8016) | def expandAll(self, /) -> None: ... method expandRecursively (line 8017) | def expandRecursively(self, index: PySide6.QtCore.QModelIndex | PySide... method expandToDepth (line 8018) | def expandToDepth(self, depth: int, /) -> None: ... method expandsOnDoubleClick (line 8019) | def expandsOnDoubleClick(self, /) -> bool: ... method header (line 8020) | def header(self, /) -> QHeaderView: ... method hideColumn (line 8021) | def hideColumn(self, column: int, /) -> None: ... method horizontalOffset (line 8022) | def horizontalOffset(self, /) -> int: ... method horizontalScrollbarAction (line 8023) | def horizontalScrollbarAction(self, action: int, /) -> None: ... method indentation (line 8024) | def indentation(self, /) -> int: ... method indexAbove (line 8025) | def indexAbove(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method indexAt (line 8026) | def indexAt(self, p: PySide6.QtCore.QPoint, /) -> PySide6.QtCore.QMode... method indexBelow (line 8027) | def indexBelow(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method indexRowSizeHint (line 8028) | def indexRowSizeHint(self, index: PySide6.QtCore.QModelIndex | PySide6... method isAnimated (line 8029) | def isAnimated(self, /) -> bool: ... method isColumnHidden (line 8030) | def isColumnHidden(self, column: int, /) -> bool: ... method isExpanded (line 8031) | def isExpanded(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method isFirstColumnSpanned (line 8032) | def isFirstColumnSpanned(self, row: int, parent: PySide6.QtCore.QModel... method isHeaderHidden (line 8033) | def isHeaderHidden(self, /) -> bool: ... method isIndexHidden (line 8034) | def isIndexHidden(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method isRowHidden (line 8035) | def isRowHidden(self, row: int, parent: PySide6.QtCore.QModelIndex | P... method isSortingEnabled (line 8036) | def isSortingEnabled(self, /) -> bool: ... method itemsExpandable (line 8037) | def itemsExpandable(self, /) -> bool: ... method keyPressEvent (line 8038) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyboardSearch (line 8039) | def keyboardSearch(self, search: str, /) -> None: ... method mouseDoubleClickEvent (line 8040) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseMoveEvent (line 8041) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 8042) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 8043) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method moveCursor (line 8044) | def moveCursor(self, cursorAction: QAbstractItemView.CursorAction, mod... method paintEvent (line 8045) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method reexpand (line 8046) | def reexpand(self, /) -> None: ... method reset (line 8047) | def reset(self, /) -> None: ... method resetIndentation (line 8048) | def resetIndentation(self, /) -> None: ... method resizeColumnToContents (line 8049) | def resizeColumnToContents(self, column: int, /) -> None: ... method rootIsDecorated (line 8050) | def rootIsDecorated(self, /) -> bool: ... method rowHeight (line 8051) | def rowHeight(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore... method rowsAboutToBeRemoved (line 8052) | def rowsAboutToBeRemoved(self, parent: PySide6.QtCore.QModelIndex | Py... method rowsInserted (line 8053) | def rowsInserted(self, parent: PySide6.QtCore.QModelIndex | PySide6.Qt... method rowsRemoved (line 8054) | def rowsRemoved(self, parent: PySide6.QtCore.QModelIndex | PySide6.QtC... method scrollContentsBy (line 8055) | def scrollContentsBy(self, dx: int, dy: int, /) -> None: ... method scrollTo (line 8056) | def scrollTo(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCore.... method selectAll (line 8057) | def selectAll(self, /) -> None: ... method selectedIndexes (line 8058) | def selectedIndexes(self, /) -> list[PySide6.QtCore.QModelIndex]: ... method selectionChanged (line 8059) | def selectionChanged(self, selected: PySide6.QtCore.QItemSelection, de... method setAllColumnsShowFocus (line 8060) | def setAllColumnsShowFocus(self, enable: bool, /) -> None: ... method setAnimated (line 8061) | def setAnimated(self, enable: bool, /) -> None: ... method setAutoExpandDelay (line 8062) | def setAutoExpandDelay(self, delay: int, /) -> None: ... method setColumnHidden (line 8063) | def setColumnHidden(self, column: int, hide: bool, /) -> None: ... method setColumnWidth (line 8064) | def setColumnWidth(self, column: int, width: int, /) -> None: ... method setExpanded (line 8065) | def setExpanded(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCo... method setExpandsOnDoubleClick (line 8066) | def setExpandsOnDoubleClick(self, enable: bool, /) -> None: ... method setFirstColumnSpanned (line 8067) | def setFirstColumnSpanned(self, row: int, parent: PySide6.QtCore.QMode... method setHeader (line 8068) | def setHeader(self, header: QHeaderView, /) -> None: ... method setHeaderHidden (line 8069) | def setHeaderHidden(self, hide: bool, /) -> None: ... method setIndentation (line 8070) | def setIndentation(self, i: int, /) -> None: ... method setItemsExpandable (line 8071) | def setItemsExpandable(self, enable: bool, /) -> None: ... method setModel (line 8072) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setRootIndex (line 8073) | def setRootIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.QtC... method setRootIsDecorated (line 8074) | def setRootIsDecorated(self, show: bool, /) -> None: ... method setRowHidden (line 8075) | def setRowHidden(self, row: int, parent: PySide6.QtCore.QModelIndex | ... method setSelection (line 8076) | def setSelection(self, rect: PySide6.QtCore.QRect, command: PySide6.Qt... method setSelectionModel (line 8077) | def setSelectionModel(self, selectionModel: PySide6.QtCore.QItemSelect... method setSortingEnabled (line 8078) | def setSortingEnabled(self, enable: bool, /) -> None: ... method setTreePosition (line 8079) | def setTreePosition(self, logicalIndex: int, /) -> None: ... method setUniformRowHeights (line 8080) | def setUniformRowHeights(self, uniform: bool, /) -> None: ... method setWordWrap (line 8081) | def setWordWrap(self, on: bool, /) -> None: ... method showColumn (line 8082) | def showColumn(self, column: int, /) -> None: ... method sizeHintForColumn (line 8083) | def sizeHintForColumn(self, column: int, /) -> int: ... method sortByColumn (line 8084) | def sortByColumn(self, column: int, order: PySide6.QtCore.Qt.SortOrder... method timerEvent (line 8085) | def timerEvent(self, event: PySide6.QtCore.QTimerEvent, /) -> None: ... method treePosition (line 8086) | def treePosition(self, /) -> int: ... method uniformRowHeights (line 8087) | def uniformRowHeights(self, /) -> bool: ... method updateGeometries (line 8088) | def updateGeometries(self, /) -> None: ... method verticalOffset (line 8089) | def verticalOffset(self, /) -> int: ... method verticalScrollbarValueChanged (line 8090) | def verticalScrollbarValueChanged(self, value: int, /) -> None: ... method viewportEvent (line 8091) | def viewportEvent(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method viewportSizeHint (line 8092) | def viewportSizeHint(self, /) -> PySide6.QtCore.QSize: ... method visualRect (line 8093) | def visualRect(self, index: PySide6.QtCore.QModelIndex | PySide6.QtCor... method visualRegionForSelection (line 8094) | def visualRegionForSelection(self, selection: PySide6.QtCore.QItemSele... method wordWrap (line 8095) | def wordWrap(self, /) -> bool: ... class QTreeWidget (line 8097) | class QTreeWidget(QTreeView): method __init__ (line 8109) | def __init__(self, /, parent: QWidget | None = ..., *, columnCount: in... method addTopLevelItem (line 8110) | def addTopLevelItem(self, item: QTreeWidgetItem, /) -> None: ... method addTopLevelItems (line 8111) | def addTopLevelItems(self, items: typing.Iterable[QTreeWidgetItem], /)... method clear (line 8112) | def clear(self, /) -> None: ... method closePersistentEditor (line 8113) | def closePersistentEditor(self, item: QTreeWidgetItem, /, column: int ... method collapseItem (line 8114) | def collapseItem(self, item: QTreeWidgetItem, /) -> None: ... method columnCount (line 8115) | def columnCount(self, /) -> int: ... method currentColumn (line 8116) | def currentColumn(self, /) -> int: ... method currentItem (line 8117) | def currentItem(self, /) -> QTreeWidgetItem: ... method dropEvent (line 8118) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method dropMimeData (line 8119) | def dropMimeData(self, parent: QTreeWidgetItem, index: int, data: PySi... method editItem (line 8120) | def editItem(self, item: QTreeWidgetItem, /, column: int | None = ...)... method event (line 8121) | def event(self, e: PySide6.QtCore.QEvent, /) -> bool: ... method expandItem (line 8122) | def expandItem(self, item: QTreeWidgetItem, /) -> None: ... method findItems (line 8123) | def findItems(self, text: str, flags: PySide6.QtCore.Qt.MatchFlag, /, ... method headerItem (line 8124) | def headerItem(self, /) -> QTreeWidgetItem: ... method indexFromItem (line 8125) | def indexFromItem(self, item: QTreeWidgetItem, /, column: int | None =... method indexOfTopLevelItem (line 8126) | def indexOfTopLevelItem(self, item: QTreeWidgetItem, /) -> int: ... method insertTopLevelItem (line 8127) | def insertTopLevelItem(self, index: int, item: QTreeWidgetItem, /) -> ... method insertTopLevelItems (line 8128) | def insertTopLevelItems(self, index: int, items: typing.Iterable[QTree... method invisibleRootItem (line 8129) | def invisibleRootItem(self, /) -> QTreeWidgetItem: ... method isPersistentEditorOpen (line 8131) | def isPersistentEditorOpen(self, item: QTreeWidgetItem, /, column: int... method isPersistentEditorOpen (line 8133) | def isPersistentEditorOpen(self, index: PySide6.QtCore.QModelIndex | P... method itemAbove (line 8134) | def itemAbove(self, item: QTreeWidgetItem, /) -> QTreeWidgetItem: ... method itemAt (line 8136) | def itemAt(self, x: int, y: int, /) -> QTreeWidgetItem: ... method itemAt (line 8138) | def itemAt(self, p: PySide6.QtCore.QPoint, /) -> QTreeWidgetItem: ... method itemBelow (line 8139) | def itemBelow(self, item: QTreeWidgetItem, /) -> QTreeWidgetItem: ... method itemFromIndex (line 8140) | def itemFromIndex(self, index: PySide6.QtCore.QModelIndex | PySide6.Qt... method itemWidget (line 8141) | def itemWidget(self, item: QTreeWidgetItem, column: int, /) -> QWidget... method mimeData (line 8142) | def mimeData(self, items: typing.Iterable[QTreeWidgetItem], /) -> PySi... method mimeTypes (line 8143) | def mimeTypes(self, /) -> List[str]: ... method openPersistentEditor (line 8144) | def openPersistentEditor(self, item: QTreeWidgetItem, /, column: int |... method removeItemWidget (line 8145) | def removeItemWidget(self, item: QTreeWidgetItem, column: int, /) -> N... method scrollToItem (line 8146) | def scrollToItem(self, item: QTreeWidgetItem, /, hint: QAbstractItemVi... method selectedItems (line 8147) | def selectedItems(self, /) -> List[QTreeWidgetItem]: ... method setColumnCount (line 8148) | def setColumnCount(self, columns: int, /) -> None: ... method setCurrentItem (line 8150) | def setCurrentItem(self, item: QTreeWidgetItem, column: int, command: ... method setCurrentItem (line 8152) | def setCurrentItem(self, item: QTreeWidgetItem, column: int, /) -> Non... method setCurrentItem (line 8154) | def setCurrentItem(self, item: QTreeWidgetItem, /) -> None: ... method setHeaderItem (line 8155) | def setHeaderItem(self, item: QTreeWidgetItem, /) -> None: ... method setHeaderLabel (line 8156) | def setHeaderLabel(self, label: str, /) -> None: ... method setHeaderLabels (line 8157) | def setHeaderLabels(self, labels: typing.Iterable[str], /) -> None: ... method setItemWidget (line 8158) | def setItemWidget(self, item: QTreeWidgetItem, column: int, widget: QW... method setModel (line 8159) | def setModel(self, model: PySide6.QtCore.QAbstractItemModel | None | N... method setSelectionModel (line 8160) | def setSelectionModel(self, selectionModel: PySide6.QtCore.QItemSelect... method setSupportedDragActions (line 8161) | def setSupportedDragActions(self, actions: PySide6.QtCore.Qt.DropActio... method sortColumn (line 8162) | def sortColumn(self, /) -> int: ... method sortItems (line 8163) | def sortItems(self, column: int, order: PySide6.QtCore.Qt.SortOrder, /... method supportedDragActions (line 8164) | def supportedDragActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method supportedDropActions (line 8165) | def supportedDropActions(self, /) -> PySide6.QtCore.Qt.DropAction: ... method takeTopLevelItem (line 8166) | def takeTopLevelItem(self, index: int, /) -> QTreeWidgetItem | None: ... method topLevelItem (line 8167) | def topLevelItem(self, index: int, /) -> QTreeWidgetItem | None: ... method topLevelItemCount (line 8168) | def topLevelItemCount(self, /) -> int: ... method visualItemRect (line 8169) | def visualItemRect(self, item: QTreeWidgetItem, /) -> PySide6.QtCore.Q... class QTreeWidgetItem (line 8171) | class QTreeWidgetItem(shiboken6.Object): class ChildIndicatorPolicy (line 8172) | class ChildIndicatorPolicy(enum.Enum): class ItemType (line 8177) | class ItemType(enum.IntEnum): method __init__ (line 8181) | def __init__(self, treeview: QTreeWidget, strings: typing.Iterable[str... method __init__ (line 8183) | def __init__(self, treeview: QTreeWidget, after: QTreeWidgetItem, /, t... method __init__ (line 8185) | def __init__(self, parent: QTreeWidgetItem, strings: typing.Iterable[s... method __init__ (line 8187) | def __init__(self, parent: QTreeWidgetItem, after: QTreeWidgetItem, /,... method __init__ (line 8189) | def __init__(self, treeview: QTreeWidget, /, type: int = ...) -> None:... method __init__ (line 8191) | def __init__(self, strings: typing.Iterable[str], /, type: int = ...) ... method __init__ (line 8193) | def __init__(self, parent: QTreeWidgetItem, /, type: int = ...) -> Non... method __init__ (line 8195) | def __init__(self, other: QTreeWidgetItem, /) -> None: ... # type: ig... method __init__ (line 8197) | def __init__(self, /, type: int = ...) -> None: ... method addChild (line 8198) | def addChild(self, child: QTreeWidgetItem, /) -> None: ... method addChildren (line 8199) | def addChildren(self, children: typing.Iterable[QTreeWidgetItem], /) -... method background (line 8200) | def background(self, column: int, /) -> PySide6.QtGui.QBrush: ... method checkState (line 8201) | def checkState(self, column: int, /) -> PySide6.QtCore.Qt.CheckState: ... method child (line 8202) | def child(self, index: int, /) -> QTreeWidgetItem: ... method childCount (line 8203) | def childCount(self, /) -> int: ... method childIndicatorPolicy (line 8204) | def childIndicatorPolicy(self, /) -> QTreeWidgetItem.ChildIndicatorPol... method clone (line 8205) | def clone(self, /) -> QTreeWidgetItem: ... method columnCount (line 8206) | def columnCount(self, /) -> int: ... method data (line 8207) | def data(self, column: int, role: PySide6.QtCore.Qt.ItemDataRole | int... method emitDataChanged (line 8208) | def emitDataChanged(self, /) -> None: ... method flags (line 8209) | def flags(self, /) -> PySide6.QtCore.Qt.ItemFlag: ... method font (line 8210) | def font(self, column: int, /) -> PySide6.QtGui.QFont: ... method foreground (line 8211) | def foreground(self, column: int, /) -> PySide6.QtGui.QBrush: ... method icon (line 8212) | def icon(self, column: int, /) -> PySide6.QtGui.QIcon: ... method indexOfChild (line 8213) | def indexOfChild(self, child: QTreeWidgetItem, /) -> int: ... method insertChild (line 8214) | def insertChild(self, index: int, child: QTreeWidgetItem, /) -> None: ... method insertChildren (line 8215) | def insertChildren(self, index: int, children: typing.Iterable[QTreeWi... method isDisabled (line 8216) | def isDisabled(self, /) -> bool: ... method isExpanded (line 8217) | def isExpanded(self, /) -> bool: ... method isFirstColumnSpanned (line 8218) | def isFirstColumnSpanned(self, /) -> bool: ... method isHidden (line 8219) | def isHidden(self, /) -> bool: ... method isSelected (line 8220) | def isSelected(self, /) -> bool: ... method parent (line 8221) | def parent(self, /) -> QTreeWidgetItem: ... method read (line 8222) | def read(self, in_: PySide6.QtCore.QDataStream, /) -> None: ... method removeChild (line 8223) | def removeChild(self, child: QTreeWidgetItem, /) -> None: ... method setBackground (line 8224) | def setBackground(self, column: int, brush: PySide6.QtGui.QBrush | PyS... method setCheckState (line 8225) | def setCheckState(self, column: int, state: PySide6.QtCore.Qt.CheckSta... method setChildIndicatorPolicy (line 8226) | def setChildIndicatorPolicy(self, policy: QTreeWidgetItem.ChildIndicat... method setData (line 8227) | def setData(self, column: int, role: PySide6.QtCore.Qt.ItemDataRole | ... method setDisabled (line 8228) | def setDisabled(self, disabled: bool, /) -> None: ... method setExpanded (line 8229) | def setExpanded(self, expand: bool, /) -> None: ... method setFirstColumnSpanned (line 8230) | def setFirstColumnSpanned(self, span: bool, /) -> None: ... method setFlags (line 8231) | def setFlags(self, flags: PySide6.QtCore.Qt.ItemFlag, /) -> None: ... method setFont (line 8232) | def setFont(self, column: int, font: PySide6.QtGui.QFont | str | typin... method setForeground (line 8233) | def setForeground(self, column: int, brush: PySide6.QtGui.QBrush | PyS... method setHidden (line 8234) | def setHidden(self, hide: bool, /) -> None: ... method setIcon (line 8235) | def setIcon(self, column: int, icon: PySide6.QtGui.QIcon | PySide6.QtG... method setSelected (line 8236) | def setSelected(self, select: bool, /) -> None: ... method setSizeHint (line 8237) | def setSizeHint(self, column: int, size: PySide6.QtCore.QSize, /) -> N... method setStatusTip (line 8238) | def setStatusTip(self, column: int, statusTip: str, /) -> None: ... method setText (line 8239) | def setText(self, column: int, text: str, /) -> None: ... method setTextAlignment (line 8241) | def setTextAlignment(self, column: int, alignment: PySide6.QtCore.Qt.A... method setTextAlignment (line 8243) | def setTextAlignment(self, column: int, alignment: int, /) -> None: ... method setToolTip (line 8244) | def setToolTip(self, column: int, toolTip: str, /) -> None: ... method setWhatsThis (line 8245) | def setWhatsThis(self, column: int, whatsThis: str, /) -> None: ... method sizeHint (line 8246) | def sizeHint(self, column: int, /) -> PySide6.QtCore.QSize: ... method sortChildren (line 8247) | def sortChildren(self, column: int, order: PySide6.QtCore.Qt.SortOrder... method statusTip (line 8248) | def statusTip(self, column: int, /) -> str: ... method takeChild (line 8249) | def takeChild(self, index: int, /) -> QTreeWidgetItem: ... method takeChildren (line 8250) | def takeChildren(self, /) -> List[QTreeWidgetItem]: ... method text (line 8251) | def text(self, column: int, /) -> str: ... method textAlignment (line 8252) | def textAlignment(self, column: int, /) -> int: ... method toolTip (line 8253) | def toolTip(self, column: int, /) -> str: ... method treeWidget (line 8254) | def treeWidget(self, /) -> QTreeWidget: ... method type (line 8255) | def type(self, /) -> int: ... method whatsThis (line 8256) | def whatsThis(self, column: int, /) -> str: ... method write (line 8257) | def write(self, out: PySide6.QtCore.QDataStream, /) -> None: ... method __eq__ (line 8258) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 8259) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 8260) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 8261) | def __hash__(self, /) -> int: ... method __le__ (line 8262) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 8263) | def __lshift__(self, out: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... method __lt__ (line 8264) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 8265) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 8266) | def __rlshift__(self, other): ... method __rrshift__ (line 8267) | def __rrshift__(self, other): ... method __rshift__ (line 8268) | def __rshift__(self, in_: PySide6.QtCore.QDataStream, /) -> PySide6.Qt... class QTreeWidgetItemIterator (line 8270) | class QTreeWidgetItemIterator(shiboken6.Object): class IteratorFlag (line 8271) | class IteratorFlag(enum.Flag): method __init__ (line 8293) | def __init__(self, widget: QTreeWidget, /, flags: QTreeWidgetItemItera... method __init__ (line 8295) | def __init__(self, item: QTreeWidgetItem, /, flags: QTreeWidgetItemIte... method __init__ (line 8297) | def __init__(self, it: QTreeWidgetItemIterator, /) -> None: ... method value (line 8298) | def value(self, /) -> QTreeWidgetItem: ... method __copy__ (line 8299) | def __copy__(self, /) -> typing_extensions.Self: ... method __iadd__ (line 8300) | def __iadd__(self, n: int, /) -> QTreeWidgetItemIterator: ... method __isub__ (line 8301) | def __isub__(self, n: int, /) -> QTreeWidgetItemIterator: ... method __iter__ (line 8302) | def __iter__(self) -> typing.Iterator[QTreeWidgetItemIterator]: ... method __next__ (line 8303) | def __next__(self) -> QTreeWidgetItemIterator: ... class QUndoView (line 8305) | class QUndoView(QListView): method __init__ (line 8308) | def __init__(self, stack: PySide6.QtGui.QUndoStack, /, parent: QWidget... method __init__ (line 8310) | def __init__(self, group: PySide6.QtGui.QUndoGroup, /, parent: QWidget... method __init__ (line 8312) | def __init__(self, /, parent: QWidget | None = ..., *, emptyLabel: str... method cleanIcon (line 8313) | def cleanIcon(self, /) -> PySide6.QtGui.QIcon: ... method emptyLabel (line 8314) | def emptyLabel(self, /) -> str: ... method group (line 8315) | def group(self, /) -> PySide6.QtGui.QUndoGroup: ... method setCleanIcon (line 8316) | def setCleanIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixm... method setEmptyLabel (line 8317) | def setEmptyLabel(self, label: str, /) -> None: ... method setGroup (line 8318) | def setGroup(self, group: PySide6.QtGui.QUndoGroup, /) -> None: ... method setStack (line 8319) | def setStack(self, stack: PySide6.QtGui.QUndoStack, /) -> None: ... method stack (line 8320) | def stack(self, /) -> PySide6.QtGui.QUndoStack: ... class QVBoxLayout (line 8322) | class QVBoxLayout(QBoxLayout): method __init__ (line 8325) | def __init__(self, parent: QWidget | None, /, contentsMargins: PySide6... method __init__ (line 8327) | def __init__(self, /, contentsMargins: PySide6.QtCore.QMargins = ..., ... class QWhatsThis (line 8329) | class QWhatsThis(shiboken6.Object): method __init__ (line 8330) | def __init__(self, *args, **kwargs) -> None: ... method createAction (line 8332) | def createAction(parent: PySide6.QtCore.QObject | None = ...) -> PySid... method enterWhatsThisMode (line 8334) | def enterWhatsThisMode() -> None: ... method hideText (line 8336) | def hideText() -> None: ... method inWhatsThisMode (line 8338) | def inWhatsThisMode() -> bool: ... method leaveWhatsThisMode (line 8340) | def leaveWhatsThisMode() -> None: ... method showText (line 8342) | def showText(pos: PySide6.QtCore.QPoint, text: str, /, w: QWidget | No... class QWidget (line 8344) | class QWidget(PySide6.QtCore.QObject, PySide6.QtGui.QPaintDevice): class RenderFlag (line 8345) | class RenderFlag(enum.Flag): method __init__ (line 8354) | def __init__(self, /, parent: QWidget | None = ..., f: PySide6.QtCore.... method acceptDrops (line 8355) | def acceptDrops(self, /) -> bool: ... method accessibleDescription (line 8356) | def accessibleDescription(self, /) -> str: ... method accessibleIdentifier (line 8357) | def accessibleIdentifier(self, /) -> str: ... method accessibleName (line 8358) | def accessibleName(self, /) -> str: ... method actionEvent (line 8359) | def actionEvent(self, event: PySide6.QtGui.QActionEvent, /) -> None: ... method actions (line 8360) | def actions(self, /) -> List[PySide6.QtGui.QAction]: ... method activateWindow (line 8361) | def activateWindow(self, /) -> None: ... method addAction (line 8363) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 8365) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 8367) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 8369) | def addAction(self, text: str, receiver: PySide6.QtCore.QObject, membe... method addAction (line 8371) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 8373) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 8375) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 8377) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 8379) | def addAction(self, text: str, shortcut: PySide6.QtGui.QKeySequence | ... method addAction (line 8381) | def addAction(self, text: str, callable: typing.Callable[[], typing.An... method addAction (line 8383) | def addAction(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPixmap,... method addAction (line 8385) | def addAction(self, text: str, /) -> PySide6.QtGui.QAction: ... method addAction (line 8387) | def addAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method addActions (line 8388) | def addActions(self, actions: typing.Iterable[PySide6.QtGui.QAction], ... method adjustSize (line 8389) | def adjustSize(self, /) -> None: ... method autoFillBackground (line 8390) | def autoFillBackground(self, /) -> bool: ... method backgroundRole (line 8391) | def backgroundRole(self, /) -> PySide6.QtGui.QPalette.ColorRole: ... method backingStore (line 8392) | def backingStore(self, /) -> PySide6.QtGui.QBackingStore: ... method baseSize (line 8393) | def baseSize(self, /) -> PySide6.QtCore.QSize: ... method changeEvent (line 8394) | def changeEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method childAt (line 8396) | def childAt(self, x: int, y: int, /) -> QWidget | None: ... method childAt (line 8398) | def childAt(self, p: PySide6.QtCore.QPoint, /) -> QWidget | None: ... method childAt (line 8400) | def childAt(self, p: PySide6.QtCore.QPointF | PySide6.QtCore.QPoint | ... method childrenRect (line 8401) | def childrenRect(self, /) -> PySide6.QtCore.QRect: ... method childrenRegion (line 8402) | def childrenRegion(self, /) -> PySide6.QtGui.QRegion: ... method clearFocus (line 8403) | def clearFocus(self, /) -> None: ... method clearMask (line 8404) | def clearMask(self, /) -> None: ... method close (line 8405) | def close(self, /) -> bool: ... method closeEvent (line 8406) | def closeEvent(self, event: PySide6.QtGui.QCloseEvent, /) -> None: ... method contentsMargins (line 8407) | def contentsMargins(self, /) -> PySide6.QtCore.QMargins: ... method contentsRect (line 8408) | def contentsRect(self, /) -> PySide6.QtCore.QRect: ... method contextMenuEvent (line 8409) | def contextMenuEvent(self, event: PySide6.QtGui.QContextMenuEvent, /) ... method contextMenuPolicy (line 8410) | def contextMenuPolicy(self, /) -> PySide6.QtCore.Qt.ContextMenuPolicy:... method create (line 8411) | def create(self, /, arg__1: int | None = ..., initializeWindow: bool =... method createWinId (line 8412) | def createWinId(self, /) -> None: ... method createWindowContainer (line 8414) | def createWindowContainer(window: PySide6.QtGui.QWindow, /, parent: QW... method cursor (line 8415) | def cursor(self, /) -> PySide6.QtGui.QCursor: ... method destroy (line 8416) | def destroy(self, /, destroyWindow: bool = ..., destroySubWindows: boo... method devType (line 8417) | def devType(self, /) -> int: ... method dragEnterEvent (line 8418) | def dragEnterEvent(self, event: PySide6.QtGui.QDragEnterEvent, /) -> N... method dragLeaveEvent (line 8419) | def dragLeaveEvent(self, event: PySide6.QtGui.QDragLeaveEvent, /) -> N... method dragMoveEvent (line 8420) | def dragMoveEvent(self, event: PySide6.QtGui.QDragMoveEvent, /) -> Non... method dropEvent (line 8421) | def dropEvent(self, event: PySide6.QtGui.QDropEvent, /) -> None: ... method effectiveWinId (line 8422) | def effectiveWinId(self, /) -> int: ... method ensurePolished (line 8423) | def ensurePolished(self, /) -> None: ... method enterEvent (line 8424) | def enterEvent(self, event: PySide6.QtGui.QEnterEvent, /) -> None: ... method event (line 8425) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method find (line 8427) | def find(arg__1: int, /) -> QWidget | None: ... method focusInEvent (line 8428) | def focusInEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusNextChild (line 8429) | def focusNextChild(self, /) -> bool: ... method focusNextPrevChild (line 8430) | def focusNextPrevChild(self, next: bool, /) -> bool: ... method focusOutEvent (line 8431) | def focusOutEvent(self, event: PySide6.QtGui.QFocusEvent, /) -> None: ... method focusPolicy (line 8432) | def focusPolicy(self, /) -> PySide6.QtCore.Qt.FocusPolicy: ... method focusPreviousChild (line 8433) | def focusPreviousChild(self, /) -> bool: ... method focusProxy (line 8434) | def focusProxy(self, /) -> QWidget | None: ... method focusWidget (line 8435) | def focusWidget(self, /) -> QWidget: ... method font (line 8436) | def font(self, /) -> PySide6.QtGui.QFont: ... method fontInfo (line 8437) | def fontInfo(self, /) -> PySide6.QtGui.QFontInfo: ... method fontMetrics (line 8438) | def fontMetrics(self, /) -> PySide6.QtGui.QFontMetrics: ... method foregroundRole (line 8439) | def foregroundRole(self, /) -> PySide6.QtGui.QPalette.ColorRole: ... method frameGeometry (line 8440) | def frameGeometry(self, /) -> PySide6.QtCore.QRect: ... method frameSize (line 8441) | def frameSize(self, /) -> PySide6.QtCore.QSize: ... method geometry (line 8442) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method grab (line 8443) | def grab(self, /, rectangle: PySide6.QtCore.QRect = ...) -> PySide6.Qt... method grabGesture (line 8444) | def grabGesture(self, type: PySide6.QtCore.Qt.GestureType, /, flags: P... method grabKeyboard (line 8445) | def grabKeyboard(self, /) -> None: ... method grabMouse (line 8447) | def grabMouse(self, arg__1: PySide6.QtGui.QCursor | PySide6.QtCore.Qt.... method grabMouse (line 8449) | def grabMouse(self, /) -> None: ... method grabShortcut (line 8450) | def grabShortcut(self, key: PySide6.QtGui.QKeySequence | PySide6.QtCor... method graphicsEffect (line 8451) | def graphicsEffect(self, /) -> QGraphicsEffect | None: ... method graphicsProxyWidget (line 8452) | def graphicsProxyWidget(self, /) -> QGraphicsProxyWidget | None: ... method hasFocus (line 8453) | def hasFocus(self, /) -> bool: ... method hasHeightForWidth (line 8454) | def hasHeightForWidth(self, /) -> bool: ... method hasMouseTracking (line 8455) | def hasMouseTracking(self, /) -> bool: ... method hasTabletTracking (line 8456) | def hasTabletTracking(self, /) -> bool: ... method height (line 8457) | def height(self, /) -> int: ... method heightForWidth (line 8458) | def heightForWidth(self, arg__1: int, /) -> int: ... method hide (line 8459) | def hide(self, /) -> None: ... method hideEvent (line 8460) | def hideEvent(self, event: PySide6.QtGui.QHideEvent, /) -> None: ... method initPainter (line 8461) | def initPainter(self, painter: PySide6.QtGui.QPainter, /) -> None: ... method inputMethodEvent (line 8462) | def inputMethodEvent(self, event: PySide6.QtGui.QInputMethodEvent, /) ... method inputMethodHints (line 8463) | def inputMethodHints(self, /) -> PySide6.QtCore.Qt.InputMethodHint: ... method inputMethodQuery (line 8464) | def inputMethodQuery(self, arg__1: PySide6.QtCore.Qt.InputMethodQuery,... method insertAction (line 8465) | def insertAction(self, before: PySide6.QtGui.QAction, action: PySide6.... method insertActions (line 8466) | def insertActions(self, before: PySide6.QtGui.QAction, actions: typing... method internalWinId (line 8467) | def internalWinId(self, /) -> int: ... method isActiveWindow (line 8468) | def isActiveWindow(self, /) -> bool: ... method isAncestorOf (line 8469) | def isAncestorOf(self, child: QWidget, /) -> bool: ... method isEnabled (line 8470) | def isEnabled(self, /) -> bool: ... method isEnabledTo (line 8471) | def isEnabledTo(self, arg__1: QWidget, /) -> bool: ... method isFullScreen (line 8472) | def isFullScreen(self, /) -> bool: ... method isHidden (line 8473) | def isHidden(self, /) -> bool: ... method isLeftToRight (line 8474) | def isLeftToRight(self, /) -> bool: ... method isMaximized (line 8475) | def isMaximized(self, /) -> bool: ... method isMinimized (line 8476) | def isMinimized(self, /) -> bool: ... method isModal (line 8477) | def isModal(self, /) -> bool: ... method isRightToLeft (line 8478) | def isRightToLeft(self, /) -> bool: ... method isTopLevel (line 8479) | def isTopLevel(self, /) -> bool: ... method isVisible (line 8480) | def isVisible(self, /) -> bool: ... method isVisibleTo (line 8481) | def isVisibleTo(self, arg__1: QWidget, /) -> bool: ... method isWindow (line 8482) | def isWindow(self, /) -> bool: ... method isWindowModified (line 8483) | def isWindowModified(self, /) -> bool: ... method keyPressEvent (line 8484) | def keyPressEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyReleaseEvent (line 8485) | def keyReleaseEvent(self, event: PySide6.QtGui.QKeyEvent, /) -> None: ... method keyboardGrabber (line 8487) | def keyboardGrabber() -> QWidget | None: ... method layout (line 8488) | def layout(self, /) -> QLayout | None: ... method layoutDirection (line 8489) | def layoutDirection(self, /) -> PySide6.QtCore.Qt.LayoutDirection: ... method leaveEvent (line 8490) | def leaveEvent(self, event: PySide6.QtCore.QEvent, /) -> None: ... method locale (line 8491) | def locale(self, /) -> PySide6.QtCore.QLocale: ... method lower (line 8492) | def lower(self, /) -> None: ... method mapFrom (line 8494) | def mapFrom(self, arg__1: QWidget, arg__2: PySide6.QtCore.QPoint, /) -... method mapFrom (line 8496) | def mapFrom(self, arg__1: QWidget, arg__2: PySide6.QtCore.QPointF | Py... method mapFromGlobal (line 8498) | def mapFromGlobal(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.Q... method mapFromGlobal (line 8500) | def mapFromGlobal(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCor... method mapFromParent (line 8502) | def mapFromParent(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.Q... method mapFromParent (line 8504) | def mapFromParent(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCor... method mapTo (line 8506) | def mapTo(self, arg__1: QWidget, arg__2: PySide6.QtCore.QPoint, /) -> ... method mapTo (line 8508) | def mapTo(self, arg__1: QWidget, arg__2: PySide6.QtCore.QPointF | PySi... method mapToGlobal (line 8510) | def mapToGlobal(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.QtC... method mapToGlobal (line 8512) | def mapToGlobal(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.... method mapToParent (line 8514) | def mapToParent(self, arg__1: PySide6.QtCore.QPoint, /) -> PySide6.QtC... method mapToParent (line 8516) | def mapToParent(self, arg__1: PySide6.QtCore.QPointF | PySide6.QtCore.... method mask (line 8517) | def mask(self, /) -> PySide6.QtGui.QRegion: ... method maximumHeight (line 8518) | def maximumHeight(self, /) -> int: ... method maximumSize (line 8519) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method maximumWidth (line 8520) | def maximumWidth(self, /) -> int: ... method metric (line 8521) | def metric(self, arg__1: PySide6.QtGui.QPaintDevice.PaintDeviceMetric,... method minimumHeight (line 8522) | def minimumHeight(self, /) -> int: ... method minimumSize (line 8523) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumSizeHint (line 8524) | def minimumSizeHint(self, /) -> PySide6.QtCore.QSize: ... method minimumWidth (line 8525) | def minimumWidth(self, /) -> int: ... method mouseDoubleClickEvent (line 8526) | def mouseDoubleClickEvent(self, event: PySide6.QtGui.QMouseEvent, /) -... method mouseGrabber (line 8528) | def mouseGrabber() -> QWidget | None: ... method mouseMoveEvent (line 8529) | def mouseMoveEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None:... method mousePressEvent (line 8530) | def mousePressEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> None... method mouseReleaseEvent (line 8531) | def mouseReleaseEvent(self, event: PySide6.QtGui.QMouseEvent, /) -> No... method move (line 8533) | def move(self, x: int, y: int, /) -> None: ... method move (line 8535) | def move(self, arg__1: PySide6.QtCore.QPoint, /) -> None: ... method moveEvent (line 8536) | def moveEvent(self, event: PySide6.QtGui.QMoveEvent, /) -> None: ... method nativeEvent (line 8537) | def nativeEvent(self, eventType: PySide6.QtCore.QByteArray | bytes | b... method nativeParentWidget (line 8538) | def nativeParentWidget(self, /) -> QWidget | None: ... method nextInFocusChain (line 8539) | def nextInFocusChain(self, /) -> QWidget | None: ... method normalGeometry (line 8540) | def normalGeometry(self, /) -> PySide6.QtCore.QRect: ... method overrideWindowFlags (line 8541) | def overrideWindowFlags(self, type: PySide6.QtCore.Qt.WindowType, /) -... method overrideWindowState (line 8542) | def overrideWindowState(self, state: PySide6.QtCore.Qt.WindowState, /)... method paintEngine (line 8543) | def paintEngine(self, /) -> PySide6.QtGui.QPaintEngine: ... method paintEvent (line 8544) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method palette (line 8545) | def palette(self, /) -> PySide6.QtGui.QPalette: ... method parentWidget (line 8546) | def parentWidget(self, /) -> QWidget | None: ... method pos (line 8547) | def pos(self, /) -> PySide6.QtCore.QPoint: ... method previousInFocusChain (line 8548) | def previousInFocusChain(self, /) -> QWidget | None: ... method raise_ (line 8549) | def raise_(self, /) -> None: ... method rect (line 8550) | def rect(self, /) -> PySide6.QtCore.QRect: ... method redirected (line 8551) | def redirected(self, offset: PySide6.QtCore.QPoint, /) -> PySide6.QtGu... method releaseKeyboard (line 8552) | def releaseKeyboard(self, /) -> None: ... method releaseMouse (line 8553) | def releaseMouse(self, /) -> None: ... method releaseShortcut (line 8554) | def releaseShortcut(self, id: int, /) -> None: ... method removeAction (line 8555) | def removeAction(self, action: PySide6.QtGui.QAction, /) -> None: ... method render (line 8557) | def render(self, target: PySide6.QtGui.QPaintDevice, /, targetOffset: ... method render (line 8559) | def render(self, painter: PySide6.QtGui.QPainter, targetOffset: PySide... method repaint (line 8561) | def repaint(self, x: int, y: int, w: int, h: int, /) -> None: ... method repaint (line 8563) | def repaint(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method repaint (line 8565) | def repaint(self, arg__1: PySide6.QtGui.QRegion | PySide6.QtGui.QBitma... method repaint (line 8567) | def repaint(self, /) -> None: ... method resize (line 8569) | def resize(self, w: int, h: int, /) -> None: ... method resize (line 8571) | def resize(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method resizeEvent (line 8572) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method restoreGeometry (line 8573) | def restoreGeometry(self, geometry: PySide6.QtCore.QByteArray | bytes ... method saveGeometry (line 8574) | def saveGeometry(self, /) -> PySide6.QtCore.QByteArray: ... method screen (line 8575) | def screen(self, /) -> PySide6.QtGui.QScreen: ... method scroll (line 8577) | def scroll(self, dx: int, dy: int, arg__3: PySide6.QtCore.QRect, /) ->... method scroll (line 8579) | def scroll(self, dx: int, dy: int, /) -> None: ... method setAcceptDrops (line 8580) | def setAcceptDrops(self, on: bool, /) -> None: ... method setAccessibleDescription (line 8581) | def setAccessibleDescription(self, description: str, /) -> None: ... method setAccessibleIdentifier (line 8582) | def setAccessibleIdentifier(self, identifier: str, /) -> None: ... method setAccessibleName (line 8583) | def setAccessibleName(self, name: str, /) -> None: ... method setAttribute (line 8584) | def setAttribute(self, arg__1: PySide6.QtCore.Qt.WidgetAttribute, /, o... method setAutoFillBackground (line 8585) | def setAutoFillBackground(self, enabled: bool, /) -> None: ... method setBackgroundRole (line 8586) | def setBackgroundRole(self, arg__1: PySide6.QtGui.QPalette.ColorRole, ... method setBaseSize (line 8588) | def setBaseSize(self, basew: int, baseh: int, /) -> None: ... method setBaseSize (line 8590) | def setBaseSize(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method setContentsMargins (line 8592) | def setContentsMargins(self, left: int, top: int, right: int, bottom: ... method setContentsMargins (line 8594) | def setContentsMargins(self, margins: PySide6.QtCore.QMargins, /) -> N... method setContextMenuPolicy (line 8595) | def setContextMenuPolicy(self, policy: PySide6.QtCore.Qt.ContextMenuPo... method setCursor (line 8596) | def setCursor(self, arg__1: PySide6.QtGui.QCursor | PySide6.QtCore.Qt.... method setDisabled (line 8597) | def setDisabled(self, arg__1: bool, /) -> None: ... method setEnabled (line 8598) | def setEnabled(self, arg__1: bool, /) -> None: ... method setFixedHeight (line 8599) | def setFixedHeight(self, h: int, /) -> None: ... method setFixedSize (line 8601) | def setFixedSize(self, w: int, h: int, /) -> None: ... method setFixedSize (line 8603) | def setFixedSize(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method setFixedWidth (line 8604) | def setFixedWidth(self, w: int, /) -> None: ... method setFocus (line 8606) | def setFocus(self, reason: PySide6.QtCore.Qt.FocusReason, /) -> None: ... method setFocus (line 8608) | def setFocus(self, /) -> None: ... method setFocusPolicy (line 8609) | def setFocusPolicy(self, policy: PySide6.QtCore.Qt.FocusPolicy, /) -> ... method setFocusProxy (line 8610) | def setFocusProxy(self, arg__1: QWidget, /) -> None: ... method setFont (line 8611) | def setFont(self, arg__1: PySide6.QtGui.QFont | str | typing.Iterable[... method setForegroundRole (line 8612) | def setForegroundRole(self, arg__1: PySide6.QtGui.QPalette.ColorRole, ... method setGeometry (line 8614) | def setGeometry(self, x: int, y: int, w: int, h: int, /) -> None: ... method setGeometry (line 8616) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method setGraphicsEffect (line 8617) | def setGraphicsEffect(self, effect: QGraphicsEffect, /) -> None: ... method setHidden (line 8618) | def setHidden(self, hidden: bool, /) -> None: ... method setInputMethodHints (line 8619) | def setInputMethodHints(self, hints: PySide6.QtCore.Qt.InputMethodHint... method setLayout (line 8620) | def setLayout(self, arg__1: QLayout, /) -> None: ... method setLayoutDirection (line 8621) | def setLayoutDirection(self, direction: PySide6.QtCore.Qt.LayoutDirect... method setLocale (line 8622) | def setLocale(self, locale: PySide6.QtCore.QLocale | PySide6.QtCore.QL... method setMask (line 8624) | def setMask(self, arg__1: PySide6.QtGui.QRegion | PySide6.QtGui.QBitma... method setMask (line 8626) | def setMask(self, arg__1: PySide6.QtGui.QBitmap | str, /) -> None: ... method setMaximumHeight (line 8627) | def setMaximumHeight(self, maxh: int, /) -> None: ... method setMaximumSize (line 8629) | def setMaximumSize(self, maxw: int, maxh: int, /) -> None: ... method setMaximumSize (line 8631) | def setMaximumSize(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method setMaximumWidth (line 8632) | def setMaximumWidth(self, maxw: int, /) -> None: ... method setMinimumHeight (line 8633) | def setMinimumHeight(self, minh: int, /) -> None: ... method setMinimumSize (line 8635) | def setMinimumSize(self, minw: int, minh: int, /) -> None: ... method setMinimumSize (line 8637) | def setMinimumSize(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method setMinimumWidth (line 8638) | def setMinimumWidth(self, minw: int, /) -> None: ... method setMouseTracking (line 8639) | def setMouseTracking(self, enable: bool, /) -> None: ... method setPalette (line 8640) | def setPalette(self, arg__1: PySide6.QtGui.QPalette | PySide6.QtCore.Q... method setParent (line 8642) | def setParent(self, parent: PySide6.QtCore.QObject | None, f: PySide6.... method setParent (line 8644) | def setParent(self, parent: PySide6.QtCore.QObject | None, /) -> None:... method setScreen (line 8645) | def setScreen(self, arg__1: PySide6.QtGui.QScreen, /) -> None: ... method setShortcutAutoRepeat (line 8646) | def setShortcutAutoRepeat(self, id: int, /, enable: bool = ...) -> Non... method setShortcutEnabled (line 8647) | def setShortcutEnabled(self, id: int, /, enable: bool = ...) -> None: ... method setSizeIncrement (line 8649) | def setSizeIncrement(self, w: int, h: int, /) -> None: ... method setSizeIncrement (line 8651) | def setSizeIncrement(self, arg__1: PySide6.QtCore.QSize, /) -> None: ... method setSizePolicy (line 8653) | def setSizePolicy(self, horizontal: QSizePolicy.Policy, vertical: QSiz... method setSizePolicy (line 8655) | def setSizePolicy(self, arg__1: QSizePolicy, /) -> None: ... method setStatusTip (line 8656) | def setStatusTip(self, arg__1: str, /) -> None: ... method setStyle (line 8657) | def setStyle(self, arg__1: QStyle, /) -> None: ... method setStyleSheet (line 8658) | def setStyleSheet(self, styleSheet: str, /) -> None: ... method setTabOrder (line 8660) | def setTabOrder(arg__1: QWidget, arg__2: QWidget, /) -> None: ... method setTabletTracking (line 8661) | def setTabletTracking(self, enable: bool, /) -> None: ... method setToolTip (line 8662) | def setToolTip(self, arg__1: str, /) -> None: ... method setToolTipDuration (line 8663) | def setToolTipDuration(self, msec: int, /) -> None: ... method setUpdatesEnabled (line 8664) | def setUpdatesEnabled(self, enable: bool, /) -> None: ... method setVisible (line 8665) | def setVisible(self, visible: bool, /) -> None: ... method setWhatsThis (line 8666) | def setWhatsThis(self, arg__1: str, /) -> None: ... method setWindowFilePath (line 8667) | def setWindowFilePath(self, filePath: str, /) -> None: ... method setWindowFlag (line 8668) | def setWindowFlag(self, arg__1: PySide6.QtCore.Qt.WindowType, /, on: b... method setWindowFlags (line 8669) | def setWindowFlags(self, type: PySide6.QtCore.Qt.WindowType, /) -> Non... method setWindowIcon (line 8670) | def setWindowIcon(self, icon: PySide6.QtGui.QIcon | PySide6.QtGui.QPix... method setWindowIconText (line 8671) | def setWindowIconText(self, arg__1: str, /) -> None: ... method setWindowModality (line 8672) | def setWindowModality(self, windowModality: PySide6.QtCore.Qt.WindowMo... method setWindowModified (line 8673) | def setWindowModified(self, arg__1: bool, /) -> None: ... method setWindowOpacity (line 8674) | def setWindowOpacity(self, level: float, /) -> None: ... method setWindowRole (line 8675) | def setWindowRole(self, arg__1: str, /) -> None: ... method setWindowState (line 8676) | def setWindowState(self, state: PySide6.QtCore.Qt.WindowState, /) -> N... method setWindowTitle (line 8677) | def setWindowTitle(self, arg__1: str, /) -> None: ... method sharedPainter (line 8678) | def sharedPainter(self, /) -> PySide6.QtGui.QPainter: ... method show (line 8679) | def show(self, /) -> None: ... method showEvent (line 8680) | def showEvent(self, event: PySide6.QtGui.QShowEvent, /) -> None: ... method showFullScreen (line 8681) | def showFullScreen(self, /) -> None: ... method showMaximized (line 8682) | def showMaximized(self, /) -> None: ... method showMinimized (line 8683) | def showMinimized(self, /) -> None: ... method showNormal (line 8684) | def showNormal(self, /) -> None: ... method size (line 8685) | def size(self, /) -> PySide6.QtCore.QSize: ... method sizeHint (line 8686) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method sizeIncrement (line 8687) | def sizeIncrement(self, /) -> PySide6.QtCore.QSize: ... method sizePolicy (line 8688) | def sizePolicy(self, /) -> QSizePolicy: ... method stackUnder (line 8689) | def stackUnder(self, arg__1: QWidget, /) -> None: ... method statusTip (line 8690) | def statusTip(self, /) -> str: ... method style (line 8691) | def style(self, /) -> QStyle: ... method styleSheet (line 8692) | def styleSheet(self, /) -> str: ... method tabletEvent (line 8693) | def tabletEvent(self, event: PySide6.QtGui.QTabletEvent, /) -> None: ... method testAttribute (line 8694) | def testAttribute(self, arg__1: PySide6.QtCore.Qt.WidgetAttribute, /) ... method toolTip (line 8695) | def toolTip(self, /) -> str: ... method toolTipDuration (line 8696) | def toolTipDuration(self, /) -> int: ... method topLevelWidget (line 8697) | def topLevelWidget(self, /) -> QWidget: ... method underMouse (line 8698) | def underMouse(self, /) -> bool: ... method ungrabGesture (line 8699) | def ungrabGesture(self, type: PySide6.QtCore.Qt.GestureType, /) -> Non... method unsetCursor (line 8700) | def unsetCursor(self, /) -> None: ... method unsetLayoutDirection (line 8701) | def unsetLayoutDirection(self, /) -> None: ... method unsetLocale (line 8702) | def unsetLocale(self, /) -> None: ... method update (line 8704) | def update(self, x: int, y: int, w: int, h: int, /) -> None: ... method update (line 8706) | def update(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method update (line 8708) | def update(self, arg__1: PySide6.QtGui.QRegion | PySide6.QtGui.QBitmap... method update (line 8710) | def update(self, /) -> None: ... method updateGeometry (line 8711) | def updateGeometry(self, /) -> None: ... method updateMicroFocus (line 8712) | def updateMicroFocus(self, /, query: PySide6.QtCore.Qt.InputMethodQuer... method updatesEnabled (line 8713) | def updatesEnabled(self, /) -> bool: ... method visibleRegion (line 8714) | def visibleRegion(self, /) -> PySide6.QtGui.QRegion: ... method whatsThis (line 8715) | def whatsThis(self, /) -> str: ... method wheelEvent (line 8716) | def wheelEvent(self, event: PySide6.QtGui.QWheelEvent, /) -> None: ... method width (line 8717) | def width(self, /) -> int: ... method winId (line 8718) | def winId(self, /) -> int: ... method window (line 8719) | def window(self, /) -> QWidget: ... method windowFilePath (line 8720) | def windowFilePath(self, /) -> str: ... method windowFlags (line 8721) | def windowFlags(self, /) -> PySide6.QtCore.Qt.WindowType: ... method windowHandle (line 8722) | def windowHandle(self, /) -> PySide6.QtGui.QWindow: ... method windowIcon (line 8723) | def windowIcon(self, /) -> PySide6.QtGui.QIcon: ... method windowIconText (line 8724) | def windowIconText(self, /) -> str: ... method windowModality (line 8725) | def windowModality(self, /) -> PySide6.QtCore.Qt.WindowModality: ... method windowOpacity (line 8726) | def windowOpacity(self, /) -> float: ... method windowRole (line 8727) | def windowRole(self, /) -> str: ... method windowState (line 8728) | def windowState(self, /) -> PySide6.QtCore.Qt.WindowState: ... method windowTitle (line 8729) | def windowTitle(self, /) -> str: ... method windowType (line 8730) | def windowType(self, /) -> PySide6.QtCore.Qt.WindowType: ... method x (line 8731) | def x(self, /) -> int: ... method y (line 8732) | def y(self, /) -> int: ... class QWidgetAction (line 8734) | class QWidgetAction(PySide6.QtGui.QAction): method __init__ (line 8736) | def __init__(self, parent: PySide6.QtCore.QObject | None, /, autoRepea... method createWidget (line 8737) | def createWidget(self, parent: QWidget | None, /) -> QWidget: ... method createdWidgets (line 8738) | def createdWidgets(self, /) -> List[QWidget]: ... method defaultWidget (line 8739) | def defaultWidget(self, /) -> QWidget: ... method deleteWidget (line 8740) | def deleteWidget(self, widget: QWidget, /) -> None: ... method event (line 8741) | def event(self, arg__1: PySide6.QtCore.QEvent, /) -> bool: ... method eventFilter (line 8742) | def eventFilter(self, arg__1: PySide6.QtCore.QObject, arg__2: PySide6.... method releaseWidget (line 8743) | def releaseWidget(self, widget: QWidget, /) -> None: ... method requestWidget (line 8744) | def requestWidget(self, parent: QWidget | None, /) -> QWidget: ... method setDefaultWidget (line 8745) | def setDefaultWidget(self, w: QWidget, /) -> None: ... class QWidgetItem (line 8747) | class QWidgetItem(QLayoutItem): method __init__ (line 8749) | def __init__(self, w: QWidget, /) -> None: ... method controlTypes (line 8750) | def controlTypes(self, /) -> QSizePolicy.ControlType: ... method expandingDirections (line 8751) | def expandingDirections(self, /) -> PySide6.QtCore.Qt.Orientation: ... method geometry (line 8752) | def geometry(self, /) -> PySide6.QtCore.QRect: ... method hasHeightForWidth (line 8753) | def hasHeightForWidth(self, /) -> bool: ... method heightForWidth (line 8754) | def heightForWidth(self, arg__1: int, /) -> int: ... method isEmpty (line 8755) | def isEmpty(self, /) -> bool: ... method maximumSize (line 8756) | def maximumSize(self, /) -> PySide6.QtCore.QSize: ... method minimumHeightForWidth (line 8757) | def minimumHeightForWidth(self, arg__1: int, /) -> int: ... method minimumSize (line 8758) | def minimumSize(self, /) -> PySide6.QtCore.QSize: ... method setGeometry (line 8759) | def setGeometry(self, arg__1: PySide6.QtCore.QRect, /) -> None: ... method sizeHint (line 8760) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method widget (line 8761) | def widget(self, /) -> QWidget | None: ... class QWizard (line 8763) | class QWizard(QDialog): class WizardButton (line 8764) | class WizardButton(enum.Enum): class WizardOption (line 8779) | class WizardOption(enum.Flag): class WizardPixmap (line 8798) | class WizardPixmap(enum.Enum): class WizardStyle (line 8805) | class WizardStyle(enum.Enum): method __init__ (line 8817) | def __init__(self, /, parent: QWidget | None = ..., flags: PySide6.QtC... method addPage (line 8818) | def addPage(self, page: QWizardPage, /) -> int: ... method back (line 8819) | def back(self, /) -> None: ... method button (line 8820) | def button(self, which: QWizard.WizardButton, /) -> QAbstractButton: ... method buttonText (line 8821) | def buttonText(self, which: QWizard.WizardButton, /) -> str: ... method cleanupPage (line 8822) | def cleanupPage(self, id: int, /) -> None: ... method currentId (line 8823) | def currentId(self, /) -> int: ... method currentPage (line 8824) | def currentPage(self, /) -> QWizardPage: ... method done (line 8825) | def done(self, result: int, /) -> None: ... method event (line 8826) | def event(self, event: PySide6.QtCore.QEvent, /) -> bool: ... method field (line 8827) | def field(self, name: str, /) -> Any: ... method hasVisitedPage (line 8828) | def hasVisitedPage(self, id: int, /) -> bool: ... method initializePage (line 8829) | def initializePage(self, id: int, /) -> None: ... method next (line 8830) | def next(self, /) -> None: ... method nextId (line 8831) | def nextId(self, /) -> int: ... method options (line 8832) | def options(self, /) -> QWizard.WizardOption: ... method page (line 8833) | def page(self, id: int, /) -> QWizardPage: ... method pageIds (line 8834) | def pageIds(self, /) -> List[int]: ... method paintEvent (line 8835) | def paintEvent(self, event: PySide6.QtGui.QPaintEvent, /) -> None: ... method pixmap (line 8836) | def pixmap(self, which: QWizard.WizardPixmap, /) -> PySide6.QtGui.QPix... method removePage (line 8837) | def removePage(self, id: int, /) -> None: ... method resizeEvent (line 8838) | def resizeEvent(self, event: PySide6.QtGui.QResizeEvent, /) -> None: ... method restart (line 8839) | def restart(self, /) -> None: ... method setButton (line 8840) | def setButton(self, which: QWizard.WizardButton, button: QAbstractButt... method setButtonLayout (line 8841) | def setButtonLayout(self, layout: typing.Iterable[QWizard.WizardButton... method setButtonText (line 8842) | def setButtonText(self, which: QWizard.WizardButton, text: str, /) -> ... method setCurrentId (line 8843) | def setCurrentId(self, id: int, /) -> None: ... method setDefaultProperty (line 8844) | def setDefaultProperty(self, className: bytes | bytearray | memoryview... method setField (line 8845) | def setField(self, name: str, value: Any, /) -> None: ... method setOption (line 8846) | def setOption(self, option: QWizard.WizardOption, /, on: bool = ...) -... method setOptions (line 8847) | def setOptions(self, options: QWizard.WizardOption, /) -> None: ... method setPage (line 8848) | def setPage(self, id: int, page: QWizardPage, /) -> None: ... method setPixmap (line 8849) | def setPixmap(self, which: QWizard.WizardPixmap, pixmap: PySide6.QtGui... method setSideWidget (line 8850) | def setSideWidget(self, widget: QWidget, /) -> None: ... method setStartId (line 8851) | def setStartId(self, id: int, /) -> None: ... method setSubTitleFormat (line 8852) | def setSubTitleFormat(self, format: PySide6.QtCore.Qt.TextFormat, /) -... method setTitleFormat (line 8853) | def setTitleFormat(self, format: PySide6.QtCore.Qt.TextFormat, /) -> N... method setVisible (line 8854) | def setVisible(self, visible: bool, /) -> None: ... method setWizardStyle (line 8855) | def setWizardStyle(self, style: QWizard.WizardStyle, /) -> None: ... method sideWidget (line 8856) | def sideWidget(self, /) -> QWidget: ... method sizeHint (line 8857) | def sizeHint(self, /) -> PySide6.QtCore.QSize: ... method startId (line 8858) | def startId(self, /) -> int: ... method subTitleFormat (line 8859) | def subTitleFormat(self, /) -> PySide6.QtCore.Qt.TextFormat: ... method testOption (line 8860) | def testOption(self, option: QWizard.WizardOption, /) -> bool: ... method titleFormat (line 8861) | def titleFormat(self, /) -> PySide6.QtCore.Qt.TextFormat: ... method validateCurrentPage (line 8862) | def validateCurrentPage(self, /) -> bool: ... method visitedIds (line 8863) | def visitedIds(self, /) -> List[int]: ... method wizardStyle (line 8864) | def wizardStyle(self, /) -> QWizard.WizardStyle: ... class QWizardPage (line 8866) | class QWizardPage(QWidget): method __init__ (line 8869) | def __init__(self, /, parent: QWidget | None = ..., *, title: str | No... method buttonText (line 8870) | def buttonText(self, which: QWizard.WizardButton, /) -> str: ... method cleanupPage (line 8871) | def cleanupPage(self, /) -> None: ... method field (line 8872) | def field(self, name: str, /) -> Any: ... method initializePage (line 8873) | def initializePage(self, /) -> None: ... method isCommitPage (line 8874) | def isCommitPage(self, /) -> bool: ... method isComplete (line 8875) | def isComplete(self, /) -> bool: ... method isFinalPage (line 8876) | def isFinalPage(self, /) -> bool: ... method nextId (line 8877) | def nextId(self, /) -> int: ... method pixmap (line 8878) | def pixmap(self, which: QWizard.WizardPixmap, /) -> PySide6.QtGui.QPix... method registerField (line 8880) | def registerField(self, name: str, widget: QWidget, property: str, cha... method registerField (line 8882) | def registerField(self, name: str, widget: QWidget, /, property: str |... method setButtonText (line 8883) | def setButtonText(self, which: QWizard.WizardButton, text: str, /) -> ... method setCommitPage (line 8884) | def setCommitPage(self, commitPage: bool, /) -> None: ... method setField (line 8885) | def setField(self, name: str, value: Any, /) -> None: ... method setFinalPage (line 8886) | def setFinalPage(self, finalPage: bool, /) -> None: ... method setPixmap (line 8887) | def setPixmap(self, which: QWizard.WizardPixmap, pixmap: PySide6.QtGui... method setSubTitle (line 8888) | def setSubTitle(self, subTitle: str, /) -> None: ... method setTitle (line 8889) | def setTitle(self, title: str, /) -> None: ... method subTitle (line 8890) | def subTitle(self, /) -> str: ... method title (line 8891) | def title(self, /) -> str: ... method validatePage (line 8892) | def validatePage(self, /) -> bool: ... method wizard (line 8893) | def wizard(self, /) -> QWizard: ... function qDrawPlainRect (line 8896) | def qDrawPlainRect(p: PySide6.QtGui.QPainter, x: int, y: int, w: int, h:... function qDrawPlainRect (line 8898) | def qDrawPlainRect(p: PySide6.QtGui.QPainter, r: PySide6.QtCore.QRect, a... function qDrawPlainRoundedRect (line 8900) | def qDrawPlainRoundedRect(p: PySide6.QtGui.QPainter, x: int, y: int, w: ... function qDrawPlainRoundedRect (line 8902) | def qDrawPlainRoundedRect(painter: PySide6.QtGui.QPainter, rect: PySide6... function qDrawShadeLine (line 8904) | def qDrawShadeLine(p: PySide6.QtGui.QPainter, x1: int, y1: int, x2: int,... function qDrawShadeLine (line 8906) | def qDrawShadeLine(p: PySide6.QtGui.QPainter, p1: PySide6.QtCore.QPoint,... function qDrawShadePanel (line 8908) | def qDrawShadePanel(p: PySide6.QtGui.QPainter, x: int, y: int, w: int, h... function qDrawShadePanel (line 8910) | def qDrawShadePanel(p: PySide6.QtGui.QPainter, r: PySide6.QtCore.QRect, ... function qDrawShadeRect (line 8912) | def qDrawShadeRect(p: PySide6.QtGui.QPainter, x: int, y: int, w: int, h:... function qDrawShadeRect (line 8914) | def qDrawShadeRect(p: PySide6.QtGui.QPainter, r: PySide6.QtCore.QRect, p... function qDrawWinButton (line 8916) | def qDrawWinButton(p: PySide6.QtGui.QPainter, x: int, y: int, w: int, h:... function qDrawWinButton (line 8918) | def qDrawWinButton(p: PySide6.QtGui.QPainter, r: PySide6.QtCore.QRect, p... function qDrawWinPanel (line 8920) | def qDrawWinPanel(p: PySide6.QtGui.QPainter, x: int, y: int, w: int, h: ... function qDrawWinPanel (line 8922) | def qDrawWinPanel(p: PySide6.QtGui.QPainter, r: PySide6.QtCore.QRect, pa... FILE: pyside6/stubs/PySide6-stubs/QtXml.pyi class QDomAttr (line 12) | class QDomAttr(QDomNode): method __init__ (line 14) | def __init__(self, attr: QDomAttr, /) -> None: ... method __init__ (line 16) | def __init__(self, /) -> None: ... method name (line 17) | def name(self, /) -> str: ... method nodeType (line 18) | def nodeType(self, /) -> QDomNode.NodeType: ... method ownerElement (line 19) | def ownerElement(self, /) -> QDomElement: ... method setValue (line 20) | def setValue(self, value: str, /) -> None: ... method specified (line 21) | def specified(self, /) -> bool: ... method value (line 22) | def value(self, /) -> str: ... method __copy__ (line 23) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomCDATASection (line 25) | class QDomCDATASection(QDomText): method __init__ (line 27) | def __init__(self, cdataSection: QDomCDATASection, /) -> None: ... method __init__ (line 29) | def __init__(self, /) -> None: ... method nodeType (line 30) | def nodeType(self, /) -> QDomNode.NodeType: ... method __copy__ (line 31) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomCharacterData (line 33) | class QDomCharacterData(QDomNode): method __init__ (line 35) | def __init__(self, characterData: QDomCharacterData, /) -> None: ... method __init__ (line 37) | def __init__(self, /) -> None: ... method appendData (line 38) | def appendData(self, arg: str, /) -> None: ... method data (line 39) | def data(self, /) -> str: ... method deleteData (line 40) | def deleteData(self, offset: int, count: int, /) -> None: ... method insertData (line 41) | def insertData(self, offset: int, arg: str, /) -> None: ... method length (line 42) | def length(self, /) -> int: ... method nodeType (line 43) | def nodeType(self, /) -> QDomNode.NodeType: ... method replaceData (line 44) | def replaceData(self, offset: int, count: int, arg: str, /) -> None: ... method setData (line 45) | def setData(self, data: str, /) -> None: ... method substringData (line 46) | def substringData(self, offset: int, count: int, /) -> str: ... method __copy__ (line 47) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomComment (line 49) | class QDomComment(QDomCharacterData): method __init__ (line 51) | def __init__(self, comment: QDomComment, /) -> None: ... method __init__ (line 53) | def __init__(self, /) -> None: ... method nodeType (line 54) | def nodeType(self, /) -> QDomNode.NodeType: ... method __copy__ (line 55) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomDocument (line 57) | class QDomDocument(QDomNode): class ParseOption (line 58) | class ParseOption(enum.Flag): class ParseResult (line 63) | class ParseResult(shiboken6.Object): method __init__ (line 68) | def __init__(self, ParseResult: QDomDocument.ParseResult, /) -> None... method __init__ (line 70) | def __init__(self, /) -> None: ... method __bool__ (line 71) | def __bool__(self) -> bool: ... method __copy__ (line 72) | def __copy__(self, /) -> typing_extensions.Self: ... method __init__ (line 74) | def __init__(self, name: str, /) -> None: ... method __init__ (line 76) | def __init__(self, document: QDomDocument, /) -> None: ... method __init__ (line 78) | def __init__(self, doctype: QDomDocumentType, /) -> None: ... method __init__ (line 80) | def __init__(self, /) -> None: ... method createAttribute (line 81) | def createAttribute(self, name: str, /) -> QDomAttr: ... method createAttributeNS (line 82) | def createAttributeNS(self, nsURI: str, qName: str, /) -> QDomAttr: ... method createCDATASection (line 83) | def createCDATASection(self, data: str, /) -> QDomCDATASection: ... method createComment (line 84) | def createComment(self, data: str, /) -> QDomComment: ... method createDocumentFragment (line 85) | def createDocumentFragment(self, /) -> QDomDocumentFragment: ... method createElement (line 86) | def createElement(self, tagName: str, /) -> QDomElement: ... method createElementNS (line 87) | def createElementNS(self, nsURI: str, qName: str, /) -> QDomElement: ... method createEntityReference (line 88) | def createEntityReference(self, name: str, /) -> QDomEntityReference: ... method createProcessingInstruction (line 89) | def createProcessingInstruction(self, target: str, data: str, /) -> QD... method createTextNode (line 90) | def createTextNode(self, data: str, /) -> QDomText: ... method doctype (line 91) | def doctype(self, /) -> QDomDocumentType: ... method documentElement (line 92) | def documentElement(self, /) -> QDomElement: ... method elementById (line 93) | def elementById(self, elementId: str, /) -> QDomElement: ... method elementsByTagName (line 94) | def elementsByTagName(self, tagname: str, /) -> QDomNodeList: ... method elementsByTagNameNS (line 95) | def elementsByTagNameNS(self, nsURI: str, localName: str, /) -> QDomNo... method implementation (line 96) | def implementation(self, /) -> QDomImplementation: ... method importNode (line 97) | def importNode(self, importedNode: QDomNode, deep: bool, /) -> QDomNod... method nodeType (line 98) | def nodeType(self, /) -> QDomNode.NodeType: ... method setContent (line 100) | def setContent(self, text: str, namespaceProcessing: bool, /) -> Tuple... method setContent (line 102) | def setContent(self, text: PySide6.QtCore.QByteArray | bytes | bytearr... method setContent (line 104) | def setContent(self, reader: PySide6.QtCore.QXmlStreamReader, namespac... method setContent (line 106) | def setContent(self, reader: PySide6.QtCore.QXmlStreamReader, /, optio... method setContent (line 108) | def setContent(self, device: PySide6.QtCore.QIODevice, /, options: QDo... method setContent (line 110) | def setContent(self, dev: PySide6.QtCore.QIODevice, namespaceProcessin... method setContent (line 112) | def setContent(self, data: str, /, options: QDomDocument.ParseOption =... method setContent (line 114) | def setContent(self, data: PySide6.QtCore.QByteArray | bytes | bytearr... method setContent (line 116) | def setContent(self, text: str, /) -> Tuple[bool, str, int, int]: ... ... method setContent (line 118) | def setContent(self, text: PySide6.QtCore.QByteArray | bytes | bytearr... method setContent (line 120) | def setContent(self, dev: PySide6.QtCore.QIODevice, /) -> Tuple[bool, ... method toByteArray (line 121) | def toByteArray(self, /, indent: int = ...) -> PySide6.QtCore.QByteArr... method toString (line 122) | def toString(self, /, indent: int = ...) -> str: ... method __copy__ (line 123) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomDocumentFragment (line 125) | class QDomDocumentFragment(QDomNode): method __init__ (line 127) | def __init__(self, documentFragment: QDomDocumentFragment, /) -> None:... method __init__ (line 129) | def __init__(self, /) -> None: ... method nodeType (line 130) | def nodeType(self, /) -> QDomNode.NodeType: ... method __copy__ (line 131) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomDocumentType (line 133) | class QDomDocumentType(QDomNode): method __init__ (line 135) | def __init__(self, documentType: QDomDocumentType, /) -> None: ... method __init__ (line 137) | def __init__(self, /) -> None: ... method entities (line 138) | def entities(self, /) -> QDomNamedNodeMap: ... method internalSubset (line 139) | def internalSubset(self, /) -> str: ... method name (line 140) | def name(self, /) -> str: ... method nodeType (line 141) | def nodeType(self, /) -> QDomNode.NodeType: ... method notations (line 142) | def notations(self, /) -> QDomNamedNodeMap: ... method publicId (line 143) | def publicId(self, /) -> str: ... method systemId (line 144) | def systemId(self, /) -> str: ... method __copy__ (line 145) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomElement (line 147) | class QDomElement(QDomNode): method __init__ (line 149) | def __init__(self, element: QDomElement, /) -> None: ... method __init__ (line 151) | def __init__(self, /) -> None: ... method attribute (line 152) | def attribute(self, name: str, /, defValue: str = ...) -> str: ... method attributeNS (line 153) | def attributeNS(self, nsURI: str, localName: str, /, defValue: str = .... method attributeNode (line 154) | def attributeNode(self, name: str, /) -> QDomAttr: ... method attributeNodeNS (line 155) | def attributeNodeNS(self, nsURI: str, localName: str, /) -> QDomAttr: ... method attributes (line 156) | def attributes(self, /) -> QDomNamedNodeMap: ... method elementsByTagName (line 157) | def elementsByTagName(self, tagname: str, /) -> QDomNodeList: ... method elementsByTagNameNS (line 158) | def elementsByTagNameNS(self, nsURI: str, localName: str, /) -> QDomNo... method hasAttribute (line 159) | def hasAttribute(self, name: str, /) -> bool: ... method hasAttributeNS (line 160) | def hasAttributeNS(self, nsURI: str, localName: str, /) -> bool: ... method nodeType (line 161) | def nodeType(self, /) -> QDomNode.NodeType: ... method removeAttribute (line 162) | def removeAttribute(self, name: str, /) -> None: ... method removeAttributeNS (line 163) | def removeAttributeNS(self, nsURI: str, localName: str, /) -> None: ... method removeAttributeNode (line 164) | def removeAttributeNode(self, oldAttr: QDomAttr, /) -> QDomAttr: ... method setAttribute (line 166) | def setAttribute(self, name: str, value: str, /) -> None: ... method setAttribute (line 168) | def setAttribute(self, name: str, value: int, /) -> None: ... method setAttribute (line 170) | def setAttribute(self, name: str, value: float, /) -> None: ... method setAttributeNS (line 172) | def setAttributeNS(self, nsURI: str, qName: str, value: str, /) -> Non... method setAttributeNS (line 174) | def setAttributeNS(self, nsURI: str, qName: str, value: int, /) -> Non... method setAttributeNS (line 176) | def setAttributeNS(self, nsURI: str, qName: str, value: float, /) -> N... method setAttributeNode (line 177) | def setAttributeNode(self, newAttr: QDomAttr, /) -> QDomAttr: ... method setAttributeNodeNS (line 178) | def setAttributeNodeNS(self, newAttr: QDomAttr, /) -> QDomAttr: ... method setTagName (line 179) | def setTagName(self, name: str, /) -> None: ... method tagName (line 180) | def tagName(self, /) -> str: ... method text (line 181) | def text(self, /) -> str: ... method __copy__ (line 182) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomEntity (line 184) | class QDomEntity(QDomNode): method __init__ (line 186) | def __init__(self, entity: QDomEntity, /) -> None: ... method __init__ (line 188) | def __init__(self, /) -> None: ... method nodeType (line 189) | def nodeType(self, /) -> QDomNode.NodeType: ... method notationName (line 190) | def notationName(self, /) -> str: ... method publicId (line 191) | def publicId(self, /) -> str: ... method systemId (line 192) | def systemId(self, /) -> str: ... method __copy__ (line 193) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomEntityReference (line 195) | class QDomEntityReference(QDomNode): method __init__ (line 197) | def __init__(self, entityReference: QDomEntityReference, /) -> None: ... method __init__ (line 199) | def __init__(self, /) -> None: ... method nodeType (line 200) | def nodeType(self, /) -> QDomNode.NodeType: ... method __copy__ (line 201) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomImplementation (line 203) | class QDomImplementation(shiboken6.Object): class InvalidDataPolicy (line 204) | class InvalidDataPolicy(enum.Enum): method __init__ (line 209) | def __init__(self, implementation: QDomImplementation, /) -> None: ... method __init__ (line 211) | def __init__(self, /) -> None: ... method createDocument (line 212) | def createDocument(self, nsURI: str, qName: str, doctype: QDomDocument... method createDocumentType (line 213) | def createDocumentType(self, qName: str, publicId: str, systemId: str,... method hasFeature (line 214) | def hasFeature(self, feature: str, version: str, /) -> bool: ... method invalidDataPolicy (line 216) | def invalidDataPolicy() -> QDomImplementation.InvalidDataPolicy: ... method isNull (line 217) | def isNull(self, /) -> bool: ... method setInvalidDataPolicy (line 219) | def setInvalidDataPolicy(policy: QDomImplementation.InvalidDataPolicy,... method __copy__ (line 220) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 221) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 222) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 223) | def __gt__(self, other: object) -> bool: ... method __le__ (line 224) | def __le__(self, other: object) -> bool: ... method __lt__ (line 225) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 226) | def __ne__(self, other: object) -> bool: ... class QDomNamedNodeMap (line 228) | class QDomNamedNodeMap(shiboken6.Object): method __init__ (line 230) | def __init__(self, namedNodeMap: QDomNamedNodeMap, /) -> None: ... method __init__ (line 232) | def __init__(self, /) -> None: ... method contains (line 233) | def contains(self, name: str, /) -> bool: ... method count (line 234) | def count(self, /) -> int: ... method isEmpty (line 235) | def isEmpty(self, /) -> bool: ... method item (line 236) | def item(self, index: int, /) -> QDomNode: ... method length (line 237) | def length(self, /) -> int: ... method namedItem (line 238) | def namedItem(self, name: str, /) -> QDomNode: ... method namedItemNS (line 239) | def namedItemNS(self, nsURI: str, localName: str, /) -> QDomNode: ... method removeNamedItem (line 240) | def removeNamedItem(self, name: str, /) -> QDomNode: ... method removeNamedItemNS (line 241) | def removeNamedItemNS(self, nsURI: str, localName: str, /) -> QDomNode... method setNamedItem (line 242) | def setNamedItem(self, newNode: QDomNode, /) -> QDomNode: ... method setNamedItemNS (line 243) | def setNamedItemNS(self, newNode: QDomNode, /) -> QDomNode: ... method size (line 244) | def size(self, /) -> int: ... method __copy__ (line 245) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 246) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 247) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 248) | def __gt__(self, other: object) -> bool: ... method __le__ (line 249) | def __le__(self, other: object) -> bool: ... method __lt__ (line 250) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 251) | def __ne__(self, other: object) -> bool: ... class QDomNode (line 253) | class QDomNode(shiboken6.Object): class EncodingPolicy (line 254) | class EncodingPolicy(enum.Enum): class NodeType (line 258) | class NodeType(enum.Enum): method __init__ (line 274) | def __init__(self, node: QDomNode, /) -> None: ... method __init__ (line 276) | def __init__(self, /) -> None: ... method appendChild (line 277) | def appendChild(self, newChild: QDomNode, /) -> QDomNode: ... method attributes (line 278) | def attributes(self, /) -> QDomNamedNodeMap: ... method childNodes (line 279) | def childNodes(self, /) -> QDomNodeList: ... method clear (line 280) | def clear(self, /) -> None: ... method cloneNode (line 281) | def cloneNode(self, /, deep: bool = ...) -> QDomNode: ... method columnNumber (line 282) | def columnNumber(self, /) -> int: ... method firstChild (line 283) | def firstChild(self, /) -> QDomNode: ... method firstChildElement (line 284) | def firstChildElement(self, /, tagName: str = ..., namespaceURI: str =... method hasAttributes (line 285) | def hasAttributes(self, /) -> bool: ... method hasChildNodes (line 286) | def hasChildNodes(self, /) -> bool: ... method insertAfter (line 287) | def insertAfter(self, newChild: QDomNode, refChild: QDomNode, /) -> QD... method insertBefore (line 288) | def insertBefore(self, newChild: QDomNode, refChild: QDomNode, /) -> Q... method isAttr (line 289) | def isAttr(self, /) -> bool: ... method isCDATASection (line 290) | def isCDATASection(self, /) -> bool: ... method isCharacterData (line 291) | def isCharacterData(self, /) -> bool: ... method isComment (line 292) | def isComment(self, /) -> bool: ... method isDocument (line 293) | def isDocument(self, /) -> bool: ... method isDocumentFragment (line 294) | def isDocumentFragment(self, /) -> bool: ... method isDocumentType (line 295) | def isDocumentType(self, /) -> bool: ... method isElement (line 296) | def isElement(self, /) -> bool: ... method isEntity (line 297) | def isEntity(self, /) -> bool: ... method isEntityReference (line 298) | def isEntityReference(self, /) -> bool: ... method isNotation (line 299) | def isNotation(self, /) -> bool: ... method isNull (line 300) | def isNull(self, /) -> bool: ... method isProcessingInstruction (line 301) | def isProcessingInstruction(self, /) -> bool: ... method isSupported (line 302) | def isSupported(self, feature: str, version: str, /) -> bool: ... method isText (line 303) | def isText(self, /) -> bool: ... method lastChild (line 304) | def lastChild(self, /) -> QDomNode: ... method lastChildElement (line 305) | def lastChildElement(self, /, tagName: str = ..., namespaceURI: str = ... method lineNumber (line 306) | def lineNumber(self, /) -> int: ... method localName (line 307) | def localName(self, /) -> str: ... method namedItem (line 308) | def namedItem(self, name: str, /) -> QDomNode: ... method namespaceURI (line 309) | def namespaceURI(self, /) -> str: ... method nextSibling (line 310) | def nextSibling(self, /) -> QDomNode: ... method nextSiblingElement (line 311) | def nextSiblingElement(self, /, taName: str = ..., namespaceURI: str =... method nodeName (line 312) | def nodeName(self, /) -> str: ... method nodeType (line 313) | def nodeType(self, /) -> QDomNode.NodeType: ... method nodeValue (line 314) | def nodeValue(self, /) -> str: ... method normalize (line 315) | def normalize(self, /) -> None: ... method ownerDocument (line 316) | def ownerDocument(self, /) -> QDomDocument: ... method parentNode (line 317) | def parentNode(self, /) -> QDomNode: ... method prefix (line 318) | def prefix(self, /) -> str: ... method previousSibling (line 319) | def previousSibling(self, /) -> QDomNode: ... method previousSiblingElement (line 320) | def previousSiblingElement(self, /, tagName: str = ..., namespaceURI: ... method removeChild (line 321) | def removeChild(self, oldChild: QDomNode, /) -> QDomNode: ... method replaceChild (line 322) | def replaceChild(self, newChild: QDomNode, oldChild: QDomNode, /) -> Q... method save (line 323) | def save(self, arg__1: PySide6.QtCore.QTextStream, arg__2: int, /, arg... method setNodeValue (line 324) | def setNodeValue(self, value: str, /) -> None: ... method setPrefix (line 325) | def setPrefix(self, pre: str, /) -> None: ... method toAttr (line 326) | def toAttr(self, /) -> QDomAttr: ... method toCDATASection (line 327) | def toCDATASection(self, /) -> QDomCDATASection: ... method toCharacterData (line 328) | def toCharacterData(self, /) -> QDomCharacterData: ... method toComment (line 329) | def toComment(self, /) -> QDomComment: ... method toDocument (line 330) | def toDocument(self, /) -> QDomDocument: ... method toDocumentFragment (line 331) | def toDocumentFragment(self, /) -> QDomDocumentFragment: ... method toDocumentType (line 332) | def toDocumentType(self, /) -> QDomDocumentType: ... method toElement (line 333) | def toElement(self, /) -> QDomElement: ... method toEntity (line 334) | def toEntity(self, /) -> QDomEntity: ... method toEntityReference (line 335) | def toEntityReference(self, /) -> QDomEntityReference: ... method toNotation (line 336) | def toNotation(self, /) -> QDomNotation: ... method toProcessingInstruction (line 337) | def toProcessingInstruction(self, /) -> QDomProcessingInstruction: ... method toText (line 338) | def toText(self, /) -> QDomText: ... method __bool__ (line 339) | def __bool__(self) -> bool: ... method __copy__ (line 340) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 341) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 342) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 343) | def __gt__(self, other: object) -> bool: ... method __le__ (line 344) | def __le__(self, other: object) -> bool: ... method __lshift__ (line 345) | def __lshift__(self, stream: PySide6.QtCore.QTextStream, /) -> PySide6... method __lt__ (line 346) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 347) | def __ne__(self, other: object) -> bool: ... method __rlshift__ (line 348) | def __rlshift__(self, other): ... class QDomNodeList (line 350) | class QDomNodeList(shiboken6.Object): method __init__ (line 352) | def __init__(self, nodeList: QDomNodeList, /) -> None: ... method __init__ (line 354) | def __init__(self, /) -> None: ... method at (line 355) | def at(self, index: int, /) -> QDomNode: ... method count (line 356) | def count(self, /) -> int: ... method isEmpty (line 357) | def isEmpty(self, /) -> bool: ... method item (line 358) | def item(self, index: int, /) -> QDomNode: ... method length (line 359) | def length(self, /) -> int: ... method size (line 360) | def size(self, /) -> int: ... method __copy__ (line 361) | def __copy__(self, /) -> typing_extensions.Self: ... method __eq__ (line 362) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 363) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 364) | def __gt__(self, other: object) -> bool: ... method __le__ (line 365) | def __le__(self, other: object) -> bool: ... method __lt__ (line 366) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 367) | def __ne__(self, other: object) -> bool: ... class QDomNotation (line 369) | class QDomNotation(QDomNode): method __init__ (line 371) | def __init__(self, notation: QDomNotation, /) -> None: ... method __init__ (line 373) | def __init__(self, /) -> None: ... method nodeType (line 374) | def nodeType(self, /) -> QDomNode.NodeType: ... method publicId (line 375) | def publicId(self, /) -> str: ... method systemId (line 376) | def systemId(self, /) -> str: ... method __copy__ (line 377) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomProcessingInstruction (line 379) | class QDomProcessingInstruction(QDomNode): method __init__ (line 381) | def __init__(self, processingInstruction: QDomProcessingInstruction, /... method __init__ (line 383) | def __init__(self, /) -> None: ... method data (line 384) | def data(self, /) -> str: ... method nodeType (line 385) | def nodeType(self, /) -> QDomNode.NodeType: ... method setData (line 386) | def setData(self, data: str, /) -> None: ... method target (line 387) | def target(self, /) -> str: ... method __copy__ (line 388) | def __copy__(self, /) -> typing_extensions.Self: ... class QDomText (line 390) | class QDomText(QDomCharacterData): method __init__ (line 392) | def __init__(self, text: QDomText, /) -> None: ... method __init__ (line 394) | def __init__(self, /) -> None: ... method nodeType (line 395) | def nodeType(self, /) -> QDomNode.NodeType: ... method splitText (line 396) | def splitText(self, offset: int, /) -> QDomText: ... method __copy__ (line 397) | def __copy__(self, /) -> typing_extensions.Self: ... class QIntList (line 399) | class QIntList: method __init__ (line 401) | def __init__(self, *args, **kwargs) -> None: ... method append (line 402) | def append(self, *args, **kwargs): ... method capacity (line 403) | def capacity(self, *args, **kwargs): ... method clear (line 404) | def clear(self, *args, **kwargs): ... method constData (line 405) | def constData(self, *args, **kwargs): ... method data (line 406) | def data(self, *args, **kwargs): ... method pop_back (line 407) | def pop_back(self, *args, **kwargs): ... method pop_front (line 408) | def pop_front(self, *args, **kwargs): ... method prepend (line 409) | def prepend(self, *args, **kwargs): ... method push_back (line 410) | def push_back(self, *args, **kwargs): ... method push_front (line 411) | def push_front(self, *args, **kwargs): ... method removeFirst (line 412) | def removeFirst(self, *args, **kwargs): ... method removeLast (line 413) | def removeLast(self, *args, **kwargs): ... method reserve (line 414) | def reserve(self, *args, **kwargs): ... method __delitem__ (line 415) | def __delitem__(self, other) -> None: ... method __getitem__ (line 416) | def __getitem__(self, index): ... method __len__ (line 417) | def __len__(self) -> int: ... method __setitem__ (line 418) | def __setitem__(self, index, object) -> None: ... FILE: pyside6/stubs/PySide6-stubs/__init__.pyi class ModuleDict (line 5) | class ModuleDict(dict): method __missing__ (line 6) | def __missing__(self, key): ... class SubModule (line 8) | class SubModule(ModuleType): ... FILE: pyside6/stubs/PySide6-stubs/scripts/android_deploy.pyi function main (line 3) | def main(name: str = None, pyside_wheel: Path = None, shiboken_wheel: Pa... FILE: pyside6/stubs/PySide6-stubs/scripts/deploy.pyi function main (line 7) | def main(main_file: Path = None, name: str = None, config_file: Path = N... FILE: pyside6/stubs/PySide6-stubs/scripts/deploy_lib/__init__.pyi function get_all_pyside_modules (line 19) | def get_all_pyside_modules(): ... FILE: pyside6/stubs/PySide6-stubs/scripts/metaobjectdump.pyi function _decorator (line 24) | def _decorator(name: str, value: str) -> dict[str, str]: ... function _attribute (line 25) | def _attribute(node: ast.Attribute) -> tuple[str, str]: ... function _name (line 26) | def _name(node: ast.Name | ast.Attribute | ast.Constant) -> str: ... function _func_name (line 27) | def _func_name(node: ast.Call) -> str: ... function _python_to_cpp_type (line 28) | def _python_to_cpp_type(type: str) -> str: ... function _parse_property_kwargs (line 29) | def _parse_property_kwargs(keywords: list[ast.keyword], prop: PropertyEn... function _parse_assignment (line 30) | def _parse_assignment(node: ast.Assign) -> tuple[str | None, ast.AST | N... function _parse_pyside_type (line 31) | def _parse_pyside_type(type_spec: AstPySideTypeSpec) -> str: ... function _parse_call_args (line 32) | def _parse_call_args(call: ast.Call): ... function _parse_slot (line 33) | def _parse_slot(func_name: str, call: ast.Call) -> Slot: ... class VisitorContext (line 35) | class VisitorContext: method __init__ (line 37) | def __init__(self) -> None: ... class MetaObjectDumpVisitor (line 39) | class MetaObjectDumpVisitor(ast.NodeVisitor): method __init__ (line 49) | def __init__(self, context: VisitorContext) -> None: ... method json_class_list (line 50) | def json_class_list(self) -> ClassList: ... method qml_import_name (line 51) | def qml_import_name(self) -> str: ... method qml_import_version (line 52) | def qml_import_version(self) -> tuple[int, int]: ... method qt_modules (line 53) | def qt_modules(self): ... method create_ast (line 55) | def create_ast(filename: Path) -> ast.Module: ... method visit_Assign (line 56) | def visit_Assign(self, node: ast.Assign): ... method visit_ClassDef (line 58) | def visit_ClassDef(self, node: ast.Module): ... # type: ignore[override] method visit_FunctionDef (line 59) | def visit_FunctionDef(self, node) -> None: ... method _parse_class_decorator (line 60) | def _parse_class_decorator(self, node: AstDecorator, class_decorators:... method _index_of_property (line 61) | def _index_of_property(self, name: str) -> int: ... method _create_property_entry (line 62) | def _create_property_entry(self, name: str, type: str, getter: str | N... method _parse_function_decorator (line 63) | def _parse_function_decorator(self, func_name: str, node: AstDecorator... method _parse_class_variable (line 64) | def _parse_class_variable(self, node: ast.Assign): ... method visit_Import (line 65) | def visit_Import(self, node) -> None: ... method visit_ImportFrom (line 66) | def visit_ImportFrom(self, node) -> None: ... method _handle_import (line 67) | def _handle_import(self, mod: str): ... function create_arg_parser (line 69) | def create_arg_parser(desc: str) -> ArgumentParser: ... function parse_file (line 70) | def parse_file(file: Path, context: VisitorContext, suppress_file: bool ... FILE: pyside6/stubs/PySide6-stubs/scripts/project.pyi function _sort_sources (line 15) | def _sort_sources(files: list[Path]) -> list[Path]: ... class Project (line 17) | class Project: method __init__ (line 24) | def __init__(self, project_file: Path) -> None: ... method _qml_module_check (line 25) | def _qml_module_check(self) -> None: ... method _get_artifacts (line 26) | def _get_artifacts(self, file: Path, output_path: Path | None = None) ... method _regenerate_qmldir (line 27) | def _regenerate_qmldir(self) -> None: ... method _build_file (line 28) | def _build_file(self, source: Path, output_path: Path | None = None): ... method build_design_studio_resources (line 29) | def build_design_studio_resources(self) -> None: ... method build (line 30) | def build(self) -> None: ... method run (line 31) | def run(self) -> int: ... method _clean_file (line 32) | def _clean_file(self, source: Path): ... method clean (line 33) | def clean(self) -> None: ... method _qmllint (line 34) | def _qmllint(self) -> None: ... method qmllint (line 35) | def qmllint(self) -> None: ... method deploy (line 36) | def deploy(self) -> None: ... method lupdate (line 37) | def lupdate(self) -> None: ... function main (line 39) | def main(mode: str = None, dry_run: bool = False, quiet: bool = False, f... FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/__init__.pyi class Singleton (line 24) | class Singleton(type): method __call__ (line 26) | def __call__(cls, *args, **kwargs): ... class ClOptions (line 29) | class ClOptions(metaclass=Singleton): FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/design_studio_project.pyi class DesignStudioProject (line 4) | class DesignStudioProject: method __init__ (line 8) | def __init__(self, main_file: Path) -> None: ... method is_ds_project (line 10) | def is_ds_project(main_file: Path) -> bool: ... method compiled_resources_available (line 11) | def compiled_resources_available(self) -> bool: ... method get_resource_file_path (line 12) | def get_resource_file_path(self) -> Path | None: ... method get_compiled_resources_file_path (line 13) | def get_compiled_resources_file_path(self) -> Path: ... method clean (line 14) | def clean(self) -> None: ... FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/newproject.pyi class NewProjectType (line 17) | class NewProjectType: function _write_project (line 22) | def _write_project(directory: Path, files: NewProjectFiles, legacy_pypro... function _widget_project (line 23) | def _widget_project() -> NewProjectFiles: ... function _ui_form_project (line 24) | def _ui_form_project() -> NewProjectFiles: ... function _qml_project (line 25) | def _qml_project() -> NewProjectFiles: ... class NewProjectTypes (line 27) | class NewProjectTypes(Enum): method find_by_command (line 32) | def find_by_command(command: str) -> NewProjectType | None: ... function new_project (line 34) | def new_project(project_dir: Path, project_type: NewProjectType, legacy_... FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/project_data.pyi function is_python_file (line 7) | def is_python_file(file: Path) -> bool: ... class ProjectData (line 9) | class ProjectData: method __init__ (line 18) | def __init__(self, project_file: Path) -> None: ... method project_file (line 20) | def project_file(self): ... method files (line 22) | def files(self): ... method main_file (line 24) | def main_file(self): ... method main_file (line 27) | def main_file(self, main_file) -> None: ... method python_files (line 29) | def python_files(self): ... method ui_files (line 31) | def ui_files(self): ... method qrc_files (line 33) | def qrc_files(self): ... method qml_files (line 35) | def qml_files(self): ... method ts_files (line 37) | def ts_files(self): ... method sub_projects_files (line 39) | def sub_projects_files(self): ... method _find_main_file (line 40) | def _find_main_file(self) -> str: ... class QmlProjectData (line 42) | class QmlProjectData: method __init__ (line 47) | def __init__(self) -> None: ... method registrar_options (line 48) | def registrar_options(self): ... method import_name (line 50) | def import_name(self): ... method import_name (line 52) | def import_name(self, n) -> None: ... method import_major_version (line 54) | def import_major_version(self): ... method import_major_version (line 56) | def import_major_version(self, v) -> None: ... method import_minor_version (line 58) | def import_minor_version(self): ... method import_minor_version (line 60) | def import_minor_version(self, v) -> None: ... method qt_modules (line 62) | def qt_modules(self): ... method qt_modules (line 64) | def qt_modules(self, v) -> None: ... method __str__ (line 65) | def __str__(self) -> str: ... method __bool__ (line 66) | def __bool__(self) -> bool: ... function _has_qml_decorated_class (line 68) | def _has_qml_decorated_class(class_list: list) -> bool: ... function check_qml_decorators (line 69) | def check_qml_decorators(py_file: Path) -> tuple[bool, QmlProjectData]: ... FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/pyproject_json.pyi function write_pyproject_json (line 4) | def write_pyproject_json(pyproject_file: Path, project_files: list[str])... function parse_pyproject_json (line 5) | def parse_pyproject_json(pyproject_json_file: Path) -> PyProjectParseRes... FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/pyproject_parse_result.pyi class PyProjectParseResult (line 5) | class PyProjectParseResult: FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/pyproject_toml.pyi function _parse_toml_content (line 6) | def _parse_toml_content(content: str) -> dict: ... function _write_base_toml_content (line 7) | def _write_base_toml_content(data: dict) -> str: ... function parse_pyproject_toml (line 8) | def parse_pyproject_toml(pyproject_toml_file: Path) -> PyProjectParseRes... function write_pyproject_toml (line 9) | def write_pyproject_toml(pyproject_file: Path, project_name: str, projec... function robust_relative_to_posix (line 10) | def robust_relative_to_posix(target_path: Path, base_path: Path) -> str:... function migrate_pyproject (line 11) | def migrate_pyproject(pyproject_file: Path | str = None) -> int: ... # ... FILE: pyside6/stubs/PySide6-stubs/scripts/project_lib/utils.pyi function run_command (line 6) | def run_command(command: list[str], cwd: str = None, ignore_fail: bool =... function qrc_file_requires_rebuild (line 7) | def qrc_file_requires_rebuild(resources_file_path: Path, compiled_resour... function requires_rebuild (line 8) | def requires_rebuild(sources: list[Path], artifact: Path) -> bool: ... function _remove_path_recursion (line 9) | def _remove_path_recursion(path: Path): ... function remove_path (line 10) | def remove_path(path: Path): ... function package_dir (line 11) | def package_dir() -> Path: ... function qtpaths (line 15) | def qtpaths() -> dict[str, str]: ... function qt_metatype_json_dir (line 19) | def qt_metatype_json_dir() -> Path: ... function resolve_valid_project_file (line 20) | def resolve_valid_project_file(project_path_input: str = None, project_f... FILE: pyside6/stubs/PySide6-stubs/scripts/pyside_tool.pyi function is_pyenv_python (line 3) | def is_pyenv_python(): ... function is_virtual_env (line 4) | def is_virtual_env(): ... function init_virtual_env (line 5) | def init_virtual_env() -> None: ... function main (line 6) | def main() -> None: ... function qt_tool_wrapper (line 7) | def qt_tool_wrapper(qt_tool, args, libexec: bool = False) -> None: ... function pyside_script_wrapper (line 8) | def pyside_script_wrapper(script_name) -> None: ... function ui_tool_binary (line 9) | def ui_tool_binary(binary): ... function lrelease (line 10) | def lrelease() -> None: ... function lupdate (line 11) | def lupdate() -> None: ... function uic (line 12) | def uic() -> None: ... function rcc (line 13) | def rcc() -> None: ... function qmltyperegistrar (line 14) | def qmltyperegistrar() -> None: ... function qmlimportscanner (line 15) | def qmlimportscanner() -> None: ... function qmlcachegen (line 16) | def qmlcachegen() -> None: ... function qmllint (line 17) | def qmllint() -> None: ... function qmlformat (line 18) | def qmlformat() -> None: ... function qmlls (line 19) | def qmlls() -> None: ... function assistant (line 20) | def assistant() -> None: ... function _extend_path_var (line 21) | def _extend_path_var(var, value, prepend: bool = False) -> None: ... function designer (line 22) | def designer() -> None: ... function linguist (line 23) | def linguist() -> None: ... function genpyi (line 24) | def genpyi() -> None: ... function metaobjectdump (line 25) | def metaobjectdump() -> None: ... function _check_requirements (line 26) | def _check_requirements(requirements_file): ... function project (line 27) | def project() -> None: ... function qml (line 28) | def qml() -> None: ... function qtpy2cpp (line 29) | def qtpy2cpp() -> None: ... function deploy (line 30) | def deploy() -> None: ... function android_deploy (line 31) | def android_deploy() -> None: ... function qsb (line 32) | def qsb() -> None: ... function balsam (line 33) | def balsam() -> None: ... function balsamui (line 34) | def balsamui() -> None: ... function svgtoqml (line 35) | def svgtoqml() -> None: ... FILE: pyside6/stubs/PySide6-stubs/scripts/qml.pyi function import_qml_modules (line 8) | def import_qml_modules(qml_parent_path: Path, module_paths: list[Path] =... function print_configurations (line 9) | def print_configurations(): ... FILE: pyside6/stubs/PySide6-stubs/scripts/qtpy2cpp.pyi function create_arg_parser (line 3) | def create_arg_parser(desc): ... FILE: pyside6/stubs/PySide6-stubs/support/generate_pyi.pyi function generate_all_pyi (line 6) | def generate_all_pyi(outpath, options): ... FILE: pyside6/stubs/shiboken6-stubs/Shiboken.pyi class VoidPtr (line 12) | class VoidPtr: method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method toBytes (line 14) | def toBytes(self, *args, **kwargs): ... method __eq__ (line 15) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 16) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 17) | def __gt__(self, other: object) -> bool: ... method __int__ (line 18) | def __int__(self) -> int: ... method __le__ (line 19) | def __le__(self, other: object) -> bool: ... method __len__ (line 20) | def __len__(self) -> int: ... method __lt__ (line 21) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 22) | def __ne__(self, other: object) -> bool: ... function createdByPython (line 24) | def createdByPython(*args, **kwargs): ... function delete (line 25) | def delete(*args, **kwargs): ... function disassembleFrame (line 26) | def disassembleFrame(*args, **kwargs): ... function dump (line 27) | def dump(*args, **kwargs): ... function dumpConverters (line 28) | def dumpConverters(*args, **kwargs): ... function dumpTypeGraph (line 29) | def dumpTypeGraph(*args, **kwargs): ... function dumpWrapperMap (line 30) | def dumpWrapperMap(*args, **kwargs): ... function getAllValidWrappers (line 31) | def getAllValidWrappers(*args, **kwargs): ... function getCppPointer (line 32) | def getCppPointer(*args, **kwargs): ... function invalidate (line 33) | def invalidate(*args, **kwargs): ... function isValid (line 34) | def isValid(*args, **kwargs): ... function ownedByPython (line 35) | def ownedByPython(*args, **kwargs): ... function replaceModuleDict (line 36) | def replaceModuleDict(*args, **kwargs): ... function wrapInstance (line 37) | def wrapInstance(*args, **kwargs): ... class Object (line 39) | class Object: ... FILE: pyside6/tests/conftest.py function qapplication_fixture (line 9) | def qapplication_fixture() -> QApplication: function fix_import (line 18) | def fix_import(): FILE: pyside6/tests/qmenu.py class Toto (line 10) | class Toto(QTreeWidget): method __init__ (line 13) | def __init__(self, *args: Any) -> None: method toto (line 17) | def toto(self) -> None: FILE: pyside6/tests/test_general.py function test_qmenu1 (line 16) | def test_qmenu1() -> None: function test_qmenu (line 29) | def test_qmenu() -> None: function test_qmenu2 (line 40) | def test_qmenu2() -> None: function test_qmenu3 (line 48) | def test_qmenu3() -> None: function test_qmenu_failures (line 57) | def test_qmenu_failures() -> None: function test_qapplication (line 73) | def test_qapplication() -> None: function test_qaction (line 85) | def test_qaction() -> None: function test_qbytearray (line 93) | def test_qbytearray() -> None: function test_qcoreapplication (line 105) | def test_qcoreapplication() -> None: function test_qdate (line 118) | def test_qdate() -> None: function test_qdatetime (line 134) | def test_qdatetime() -> None: function test_qdialog (line 139) | def test_qdialog() -> None: function test_qdialogbuttonbox (line 145) | def test_qdialogbuttonbox() -> None: function test_qguiapplication (line 157) | def test_qguiapplication() -> None: function test_qicon (line 163) | def test_qicon() -> None: function test_qlabel (line 172) | def test_qlabel() -> None: function test_qmessagebox (line 177) | def test_qmessagebox() -> None: function test_qobject (line 204) | def test_qobject() -> None: function test_qpainter (line 230) | def test_qpainter() -> None: function test_qpixmap (line 291) | def test_qpixmap() -> None: function test_qpolygon (line 301) | def test_qpolygon() -> None: function test_qprocess (line 334) | def test_qprocess() -> None: function test_qprogressdialog (line 340) | def test_qprogressdialog() -> None: function test_qpropertyanimation (line 345) | def test_qpropertyanimation() -> None: function test_qquickitem (line 352) | def test_qquickitem() -> None: function test_qsize (line 357) | def test_qsize() -> None: function test_qspaceritem (line 428) | def test_qspaceritem() -> None: function test_qsplitter (line 445) | def test_qsplitter() -> None: function test_qtimer (line 452) | def test_qtimer() -> None: function test_qtreewidget (line 463) | def test_qtreewidget() -> None: function test_qtreewidgetitem (line 471) | def test_qtreewidgetitem() -> None: function test_qversion (line 490) | def test_qversion() -> None: function test_qwidget (line 496) | def test_qwidget() -> None: function test_qwindow (line 501) | def test_qwindow() -> None: function test_signal_slot (line 506) | def test_signal_slot() -> None: function test_qbrush_implicit_args (line 538) | def test_qbrush_implicit_args() -> None: function test_iterability (line 551) | def test_iterability() -> None: function test_fonts (line 586) | def test_fonts() -> None: function test_qfile (line 591) | def test_qfile() -> None: function test_qline (line 599) | def test_qline() -> None: function test_signal_connect (line 607) | def test_signal_connect() -> None: function test_editablity (line 615) | def test_editablity() -> None: function test_qmodelindex (line 628) | def test_qmodelindex() -> None: FILE: pyside6/tests/test_qflag.py function assert_type_of_value_int (line 24) | def assert_type_of_value_int(value: int) -> None: function assert_type_of_value_oneFlag (line 30) | def assert_type_of_value_oneFlag(value: OneFlagClass) -> None: function assert_type_of_value_multiFlag (line 35) | def assert_type_of_value_multiFlag(value: MultiFlagClass) -> None: function test_on_one_flag_class (line 40) | def test_on_one_flag_class() -> None: function test_on_multi_flag_class (line 120) | def test_on_multi_flag_class() -> None: FILE: pyside6/tests/test_slot.py function test (line 7) | def test() -> None: FILE: rez/stubs/rez-stubs/__init__.pyi function _init_logging (line 9) | def _init_logging() -> None: ... function callback (line 13) | def callback(sig, frame) -> None: ... FILE: rez/stubs/rez-stubs/bind/PyQt.pyi function bind (line 5) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/PySide.pyi function bind (line 4) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/_pymodule.pyi function commands (line 8) | def commands() -> None: ... function commands_with_bin (line 9) | def commands_with_bin() -> None: ... function copy_module (line 10) | def copy_module(name, destpath) -> None: ... function bind (line 11) | def bind(name, path, import_name: Incomplete | None = None, version_rang... FILE: rez/stubs/rez-stubs/bind/_utils.pyi function log (line 9) | def log(msg) -> None: ... function make_dirs (line 10) | def make_dirs(*dirs): ... function run_python_command (line 11) | def run_python_command(commands, exe: Incomplete | None = None): ... function get_version_in_python (line 12) | def get_version_in_python(name, commands): ... function check_version (line 13) | def check_version(version, range_: Incomplete | None = None) -> None: function find_exe (line 20) | def find_exe(name, filepath: Incomplete | None = None): function extract_version (line 30) | def extract_version(exepath, version_arg, word_index: int = -1, version_... function _run_command (line 42) | def _run_command(args): ... FILE: rez/stubs/rez-stubs/bind/arch.pyi function bind (line 7) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/cmake.pyi function setup_parser (line 8) | def setup_parser(parser) -> None: ... function commands (line 9) | def commands() -> None: ... function bind (line 10) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/gcc.pyi function setup_parser (line 9) | def setup_parser(parser) -> None: ... function commands (line 10) | def commands() -> None: ... function bind (line 11) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/hello_world.pyi function commands (line 9) | def commands() -> None: ... function hello_world_source (line 10) | def hello_world_source() -> None: ... function bind (line 11) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/os.pyi function bind (line 7) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/pip.pyi function bind (line 4) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/platform.pyi function bind (line 7) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/python.pyi function setup_parser (line 8) | def setup_parser(parser) -> None: ... function commands (line 9) | def commands() -> None: ... function post_commands (line 10) | def post_commands() -> None: ... function bind (line 11) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/rez.pyi function commands (line 7) | def commands() -> None: ... function bind (line 8) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/rezgui.pyi function setup_parser (line 9) | def setup_parser(parser) -> None: ... function commands (line 10) | def commands() -> None: ... function rez_gui_source (line 11) | def rez_gui_source() -> None: ... function bind (line 12) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/setuptools.pyi function bind (line 4) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/bind/sip.pyi function bind (line 5) | def bind(path, version_range: Incomplete | None = None, opts: Incomplete... FILE: rez/stubs/rez-stubs/build_process.pyi function get_build_process_types (line 21) | def get_build_process_types(): function create_build_process (line 23) | def create_build_process(process_type: str, working_dir: str, build_syst... class BuildType (line 32) | class BuildType(Enum): class BuildProcess (line 37) | class BuildProcess: method name (line 48) | def name(cls) -> None: ... method __init__ (line 57) | def __init__(self, working_dir: str, build_system: BuildSystem, packag... method package (line 79) | def package(self) -> DeveloperPackage: ... method working_dir (line 81) | def working_dir(self) -> str: ... method build (line 82) | def build(self, install_path: str | None = None, clean: bool = False, ... method release (line 103) | def release(self, release_message: str | None = None, variants: list[i... method get_changelog (line 119) | def get_changelog(self) -> str | None: class BuildProcessHelper (line 126) | class BuildProcessHelper(BuildProcess): method repo_operation (line 130) | def repo_operation(self) -> Generator[None]: ... method visit_variants (line 131) | def visit_variants(self, func, variants: list[int] | None = None, **kw... method get_package_install_path (line 133) | def get_package_install_path(self, path: str) -> str: method create_build_context (line 139) | def create_build_context(self, variant: Variant, build_type: BuildType... method pre_release (line 141) | def pre_release(self) -> None: ... method post_release (line 142) | def post_release(self, release_message: Incomplete | None = None) -> N... method get_current_tag_name (line 143) | def get_current_tag_name(self) -> str: ... method run_hooks (line 144) | def run_hooks(self, hook_event, **kwargs) -> None: ... method get_previous_release (line 145) | def get_previous_release(self) -> Package | None: ... method get_changelog (line 146) | def get_changelog(self) -> str | None: ... method get_release_data (line 147) | def get_release_data(self): method _print (line 153) | def _print(self, txt, *nargs) -> None: ... method _print_header (line 154) | def _print_header(self, txt, n: int = 1) -> None: ... method _n_of_m (line 155) | def _n_of_m(self, variant) -> str: ... FILE: rez/stubs/rez-stubs/build_system.pyi class BuildResult (line 14) | class BuildResult(TypedDict, total=False): function get_buildsys_types (line 19) | def get_buildsys_types() -> list[str]: function get_valid_build_systems (line 21) | def get_valid_build_systems(working_dir: str, package: DeveloperPackage ... function create_build_system (line 35) | def create_build_system(working_dir: str, buildsys_type: str | None = No... class BuildSystem (line 38) | class BuildSystem: method name (line 42) | def name(cls) -> str: method __init__ (line 51) | def __init__(self, working_dir: str, opts: argparse.Namespace | None =... method is_valid_root (line 69) | def is_valid_root(cls, path: str, package: Incomplete | None = None) -... method child_build_system (line 72) | def child_build_system(cls) -> str | None: method bind_cli (line 85) | def bind_cli(cls, parser: argparse.ArgumentParser, group: argparse._Ar... method build (line 94) | def build(self, context: ResolvedContext, variant: Variant, build_path... method set_standard_vars (line 123) | def set_standard_vars(cls, executor: RexExecutor, context: ResolvedCon... method add_pre_build_commands (line 127) | def add_pre_build_commands(cls, executor, variant, build_type, install... method add_standard_build_actions (line 130) | def add_standard_build_actions(cls, executor: RexExecutor, context: Re... FILE: rez/stubs/rez-stubs/bundle_context.pyi function bundle_context (line 11) | def bundle_context(context, dest_dir, force: bool = False, skip_non_relo... class _ContextBundler (line 42) | class _ContextBundler: method __init__ (line 54) | def __init__(self, context, dest_dir, force: bool = False, skip_non_re... method bundle (line 55) | def bundle(self) -> None: ... method _repo_path (line 57) | def _repo_path(self): ... method _info (line 58) | def _info(self, msg, *nargs) -> None: ... method _verbose_info (line 59) | def _verbose_info(self, msg, *nargs) -> None: ... method _warning (line 60) | def _warning(self, msg, *nargs) -> None: ... method _init_bundle (line 61) | def _init_bundle(self) -> None: ... method _finalize_bundle (line 62) | def _finalize_bundle(self) -> None: ... method _copy_variants (line 63) | def _copy_variants(self): ... method _write_retargeted_context (line 64) | def _write_retargeted_context(self, relocated_package_names) -> None: ... method _patch_libs (line 65) | def _patch_libs(self) -> None: ... method _patch_libs_linux (line 66) | def _patch_libs_linux(self) -> None: method _find_files (line 73) | def _find_files(self, executable: bool = False, filename_substrs: Inco... FILE: rez/stubs/rez-stubs/cli/_complete_util.pyi class RezCompletionFinder (line 6) | class RezCompletionFinder(CompletionFinder): method __init__ (line 13) | def __init__(self, parser, comp_line, comp_point) -> None: ... function ConfigCompleter (line 15) | def ConfigCompleter(prefix, **kwargs): ... function PackageCompleter (line 16) | def PackageCompleter(prefix, **kwargs): ... function PackageFamilyCompleter (line 17) | def PackageFamilyCompleter(prefix, **kwargs): ... function ExecutablesCompleter (line 18) | def ExecutablesCompleter(prefix, **kwargs): ... class FilesCompleter (line 20) | class FilesCompleter: method __init__ (line 24) | def __init__(self, files: bool = True, dirs: bool = True, file_pattern... method __call__ (line 25) | def __call__(self, prefix, **kwargs): ... class CombinedCompleter (line 27) | class CombinedCompleter: method __init__ (line 29) | def __init__(self, completer, *completers) -> None: ... class AndCompleter (line 31) | class AndCompleter(CombinedCompleter): method __call__ (line 32) | def __call__(self, prefix, **kwargs): ... class SequencedCompleter (line 34) | class SequencedCompleter(CombinedCompleter): method __init__ (line 36) | def __init__(self, arg, completer, *completers) -> None: ... method __call__ (line 37) | def __call__(self, prefix, **kwargs): ... FILE: rez/stubs/rez-stubs/cli/_entry_points.pyi function get_specifications (line 1) | def get_specifications(): function scriptname (line 18) | def scriptname(name): ... function check_production_install (line 19) | def check_production_install() -> None: ... function run_rez (line 20) | def run_rez(): ... function run_rezolve (line 21) | def run_rezolve(): ... function run_rez_complete (line 22) | def run_rez_complete(): ... function run_rez_fwd (line 23) | def run_rez_fwd(): ... function run_rez_bind (line 24) | def run_rez_bind(): ... function run_rez_build (line 25) | def run_rez_build(): ... function run_rez_config (line 26) | def run_rez_config(): ... function run_rez_context (line 27) | def run_rez_context(): ... function run_rez_cp (line 28) | def run_rez_cp(): ... function run_rez_depends (line 29) | def run_rez_depends(): ... function run_rez_diff (line 30) | def run_rez_diff(): ... function run_rez_env (line 31) | def run_rez_env(): ... function run_rez_gui (line 32) | def run_rez_gui(): ... function run_rez_help (line 33) | def run_rez_help(): ... function run_rez_interpret (line 34) | def run_rez_interpret(): ... function run_rez_memcache (line 35) | def run_rez_memcache(): ... function run_rez_pip (line 36) | def run_rez_pip(): ... function run_rez_pkg_cache (line 37) | def run_rez_pkg_cache(): ... function run_rez_plugins (line 38) | def run_rez_plugins(): ... function run_rez_python (line 39) | def run_rez_python(): ... function run_rez_release (line 40) | def run_rez_release(): ... function run_rez_search (line 41) | def run_rez_search(): ... function run_rez_selftest (line 42) | def run_rez_selftest(): ... function run_rez_status (line 43) | def run_rez_status(): ... function run_rez_suite (line 44) | def run_rez_suite(): ... function run_rez_test (line 45) | def run_rez_test(): ... function run_rez_view (line 46) | def run_rez_view(): ... function run_rez_yaml2py (line 47) | def run_rez_yaml2py(): ... function run_rez_bundle (line 48) | def run_rez_bundle(): ... function run_rez_benchmark (line 49) | def run_rez_benchmark(): ... function run_rez_pkg_ignore (line 50) | def run_rez_pkg_ignore(): ... function run_rez_mv (line 51) | def run_rez_mv(): ... function run_rez_rm (line 52) | def run_rez_rm(): ... FILE: rez/stubs/rez-stubs/cli/_main.pyi function is_hyphened_command (line 10) | def is_hyphened_command(): ... class SetupRezSubParser (line 12) | class SetupRezSubParser: method __init__ (line 16) | def __init__(self, module_name) -> None: ... method __call__ (line 17) | def __call__(self, parser_name, parser): ... method get_module (line 18) | def get_module(self): ... function _add_common_args (line 20) | def _add_common_args(parser) -> None: ... class InfoAction (line 22) | class InfoAction(_StoreTrueAction): method __call__ (line 23) | def __call__(self, parser, args, values, option_string: Incomplete | N... function setup_parser (line 25) | def setup_parser(): function run (line 31) | def run(command: Incomplete | None = None): ... FILE: rez/stubs/rez-stubs/cli/_util.pyi function load_plugin_cmd (line 7) | def load_plugin_cmd(): class LazySubParsersAction (line 23) | class LazySubParsersAction(_SubParsersAction): method __call__ (line 27) | def __call__(self, parser, namespace, values, option_string: Incomplet... method _setup_subparser (line 29) | def _setup_subparser(self, parser_name, parser) -> None: ... method _find_choice_action (line 30) | def _find_choice_action(self, parser_name): ... class LazyArgumentParser (line 32) | class LazyArgumentParser(ArgumentParser): method __init__ (line 41) | def __init__(self, *args, **kwargs) -> None: ... method format_help (line 42) | def format_help(self): method _setup_all_subparsers (line 44) | def _setup_all_subparsers(self) -> None: function _env_var_true (line 50) | def _env_var_true(name) -> bool: ... function print_items (line 51) | def print_items(items, stream=...) -> None: ... function sigbase_handler (line 52) | def sigbase_handler(signum, frame) -> None: ... function sigint_handler (line 53) | def sigint_handler(signum, frame) -> None: function sigterm_handler (line 55) | def sigterm_handler(signum, frame) -> None: FILE: rez/stubs/rez-stubs/cli/benchmark.pyi function setup_parser (line 7) | def setup_parser(parser, completions: bool = False) -> None: ... function load_packages (line 8) | def load_packages() -> None: function get_system_info (line 11) | def get_system_info(): function do_resolves (line 14) | def do_resolves() -> None: ... function run_benchmark (line 15) | def run_benchmark() -> None: ... function print_histogram (line 16) | def print_histogram() -> None: ... function compare (line 17) | def compare() -> None: ... function command (line 18) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/bind.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/build.pyi function get_current_developer_package (line 6) | def get_current_developer_package() -> DeveloperPackage: ... function setup_parser_common (line 7) | def setup_parser_common(parser) -> None: function setup_parser (line 9) | def setup_parser(parser, completions: bool = False) -> None: ... function get_build_args (line 10) | def get_build_args(opts, parser, extra_arg_groups): ... function command (line 11) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/bundle.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/complete.pyi function setup_parser (line 5) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 6) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/config.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/context.pyi function setup_parser (line 4) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 5) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/cp.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/depends.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/diff.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/env.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/forward.pyi function setup_parser (line 5) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 6) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/gui.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser: Incomplete | None = None, extra_arg_groups: In... FILE: rez/stubs/rez-stubs/cli/help.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser: Incomplete | None = None, extra_arg_groups: In... FILE: rez/stubs/rez-stubs/cli/interpret.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/memcache.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function poll (line 4) | def poll(client, interval) -> None: ... function command (line 5) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/mv.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function list_repos_containing_pkg (line 4) | def list_repos_containing_pkg(pkg_name, pkg_version) -> None: ... function command (line 5) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/pip.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/pkg-cache.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function add_variant (line 4) | def add_variant(pkgcache, uri, opts) -> None: ... function remove_variant (line 5) | def remove_variant(pkgcache, uri, opts) -> None: ... function view_logs (line 6) | def view_logs(pkgcache, opts) -> None: ... function command (line 7) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/pkg-ignore.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function list_repos (line 4) | def list_repos() -> None: ... function list_repos_containing_pkg (line 5) | def list_repos_containing_pkg(pkg_name, pkg_version) -> None: ... function command (line 6) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/plugins.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/python.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/release.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/rm.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function remove_package (line 4) | def remove_package(opts, parser) -> None: ... function remove_package_family (line 5) | def remove_package_family(opts, parser, force: bool = False) -> None: ... function remove_ignored_since (line 6) | def remove_ignored_since(opts, parser) -> None: ... function command (line 7) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/search.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/selftest.pyi function setup_parser (line 9) | def setup_parser(parser, completions: bool = False): ... function command (line 10) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... function run_unittest (line 11) | def run_unittest(module_tests, tests, verbosity) -> None: ... function run_pytest (line 12) | def run_pytest(module_tests, tests, verbosity, extra_arg_groups) -> None... function create_python_package (line 13) | def create_python_package(repo) -> None: ... FILE: rez/stubs/rez-stubs/cli/status.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/suite.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/view.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/cli/yaml2py.pyi function setup_parser (line 3) | def setup_parser(parser, completions: bool = False) -> None: ... function command (line 4) | def command(opts, parser, extra_arg_groups: Incomplete | None = None) ->... FILE: rez/stubs/rez-stubs/command.pyi class Command (line 5) | class Command: method __init__ (line 50) | def __init__(self) -> None: ... method name (line 52) | def name(cls) -> str: FILE: rez/stubs/rez-stubs/config.pyi class Validatable (line 19) | class Validatable(Protocol): method validate (line 20) | def validate(self, data: T) -> T: ... class _Deprecation (line 22) | class _Deprecation: method __init__ (line 25) | def __init__(self, removed_in, extra: Incomplete | None = None) -> Non... method get_message (line 26) | def get_message(self, name: str, env_var: bool | str = False): ... class Setting (line 28) | class Setting: method __init__ (line 37) | def __init__(self, config, key) -> None: ... method _env_var_name (line 39) | def _env_var_name(self) -> str: ... method _parse_env_var (line 40) | def _parse_env_var(self, value) -> None: ... method validate (line 41) | def validate(self, data: Any) -> Any: ... method _validate (line 42) | def _validate(self, data): ... class Str (line 44) | class Str(Setting): method _parse_env_var (line 46) | def _parse_env_var(self, value): ... class Char (line 48) | class Char(Setting): method _parse_env_var (line 50) | def _parse_env_var(self, value): ... class OptionalStr (line 52) | class OptionalStr(Str): class StrList (line 55) | class StrList(Setting): method _parse_env_var (line 58) | def _parse_env_var(self, value): ... class PipInstallRemaps (line 60) | class PipInstallRemaps(Setting): method validate (line 68) | def validate(self, data: list) -> list: class OptionalStrList (line 71) | class OptionalStrList(StrList): class PathList (line 74) | class PathList(StrList): method _parse_env_var (line 76) | def _parse_env_var(self, value): ... class Int (line 78) | class Int(Setting): method _parse_env_var (line 80) | def _parse_env_var(self, value): ... class Float (line 82) | class Float(Setting): method _parse_env_var (line 84) | def _parse_env_var(self, value): ... class Bool (line 86) | class Bool(Setting): method _parse_env_var (line 91) | def _parse_env_var(self, value) -> bool: ... # type: ignore[override] class OptionalBool (line 93) | class OptionalBool(Bool): class ForceOrBool (line 96) | class ForceOrBool(Bool): method _parse_env_var (line 100) | def _parse_env_var(self, value): ... class Dict (line 102) | class Dict(Setting): method _parse_env_var (line 104) | def _parse_env_var(self, value): ... class OptionalDict (line 106) | class OptionalDict(Dict): class OptionalDictOrDictList (line 109) | class OptionalDictOrDictList(Setting): class SuiteVisibility_ (line 112) | class SuiteVisibility_(Str): method schema (line 114) | def schema(cls): ... class VariantSelectMode_ (line 116) | class VariantSelectMode_(Str): method schema (line 118) | def schema(cls): ... class RezToolsVisibility_ (line 120) | class RezToolsVisibility_(Str): method schema (line 122) | def schema(cls): ... class ExecutableScriptMode_ (line 124) | class ExecutableScriptMode_(Str): method schema (line 126) | def schema(cls): ... class OptionalStrOrFunction (line 128) | class OptionalStrOrFunction(Setting): method _parse_env_var (line 130) | def _parse_env_var(self, value): ... class PreprocessMode_ (line 132) | class PreprocessMode_(Str): method schema (line 134) | def schema(cls): ... class BuildThreadCount_ (line 136) | class BuildThreadCount_(Setting): method schema (line 138) | def schema(cls): ... method _parse_env_var (line 139) | def _parse_env_var(self, value): ... class Config (line 145) | class Config(metaclass=LazyAttributeMeta): method __getattr__ (line 158) | def __getattr__(self, item: str) -> Any: ... method __init__ (line 163) | def __init__(self, filepaths: list[str], overrides: Incomplete | None ... method get (line 173) | def get(self, key, default: Incomplete | None = None): method copy (line 175) | def copy(self, overrides: Incomplete | None = None, locked: bool = Fal... method override (line 177) | def override(self, key: str, value): method is_overridden (line 183) | def is_overridden(self, key: str) -> bool: ... method remove_override (line 184) | def remove_override(self, key: str): method warn (line 186) | def warn(self, key: str): method debug (line 188) | def debug(self, key: str): method debug_printer (line 190) | def debug_printer(self, key: str): method sourced_filepaths (line 193) | def sourced_filepaths(self) -> list[str]: method plugins (line 206) | def plugins(self) -> _PluginConfigs: method data (line 210) | def data(self): method nonlocal_packages_path (line 216) | def nonlocal_packages_path(self): method get_completions (line 218) | def get_completions(self, prefix): ... method _uncache (line 219) | def _uncache(self, key: Incomplete | None = None) -> None: ... method _swap (line 220) | def _swap(self, other) -> None: method _validate_key (line 227) | def _validate_key(self, key, value, key_schema): ... method _data_without_overrides (line 229) | def _data_without_overrides(self): ... method _data (line 231) | def _data(self): ... method _create_main_config (line 233) | def _create_main_config(cls, overrides: Incomplete | None = None) -> C... method __str__ (line 236) | def __str__(self) -> str: ... method __repr__ (line 237) | def __repr__(self) -> str: ... method _get_tmpdir (line 238) | def _get_tmpdir(self): ... method _get_context_tmpdir (line 239) | def _get_context_tmpdir(self): ... method _get_image_viewer (line 240) | def _get_image_viewer(self): ... method _get_editor (line 241) | def _get_editor(self): ... method _get_difftool (line 242) | def _get_difftool(self): ... method _get_terminal_emulator_command (line 243) | def _get_terminal_emulator_command(self): ... method _get_new_session_popen_args (line 244) | def _get_new_session_popen_args(self): ... class _PluginConfigs (line 246) | class _PluginConfigs: method __init__ (line 248) | def __init__(self, plugin_data) -> None: ... method __setattr__ (line 249) | def __setattr__(self, attr, value) -> None: ... method __getattr__ (line 250) | def __getattr__(self, attr: str) -> RO_AttrDictWrapper: ... method __iter__ (line 251) | def __iter__(self): ... method override (line 252) | def override(self, key, value) -> None: ... method data (line 253) | def data(self): ... method __str__ (line 254) | def __str__(self) -> str: ... method __repr__ (line 255) | def __repr__(self) -> str: ... function expand_system_vars (line 257) | def expand_system_vars(data: T) -> T: function create_config (line 259) | def create_config(overrides: Incomplete | None = None) -> Config: function _create_locked_config (line 262) | def _create_locked_config(overrides: Incomplete | None = None): function _replace_config (line 274) | def _replace_config(other) -> Generator[None]: function _load_config_py (line 277) | def _load_config_py(filepath: str) -> dict[str, Any]: ... function _load_config_yaml (line 278) | def _load_config_yaml(filepath: str) -> dict[str, Any]: ... function _load_config_from_filepaths (line 279) | def _load_config_from_filepaths(filepaths: list[str]) -> tuple[dict[str,... function get_module_root_config (line 280) | def get_module_root_config() -> str: ... FILE: rez/stubs/rez-stubs/deprecations.pyi function warn (line 3) | def warn(message, category, pre_formatted: bool = False, stacklevel: int... class RezDeprecationWarning (line 10) | class RezDeprecationWarning(DeprecationWarning): ... FILE: rez/stubs/rez-stubs/developer_package.pyi class PreprocessMode (line 10) | class PreprocessMode(Enum): class DeveloperPackage (line 17) | class DeveloperPackage(Package): method __init__ (line 25) | def __init__(self, resource) -> None: ... method root (line 27) | def root(self) -> str | None: ... method from_path (line 29) | def from_path(cls, path: str, format: FileFormat | None = None) -> Dev... method get_reevaluated (line 43) | def get_reevaluated(self, objects) -> DeveloperPackage: method _validate_includes (line 57) | def _validate_includes(self) -> None: ... method _get_preprocessed (line 58) | def _get_preprocessed(self, data: dict) -> tuple[DeveloperPackage, dic... FILE: rez/stubs/rez-stubs/exceptions.pyi class RezError (line 5) | class RezError(Exception): method __init__ (line 8) | def __init__(self, value: Incomplete | None = None) -> None: ... method __str__ (line 9) | def __str__(self) -> str: ... class RezSystemError (line 11) | class RezSystemError(RezError): class RezBindError (line 13) | class RezBindError(RezError): class RezPluginError (line 15) | class RezPluginError(RezError): class ConfigurationError (line 17) | class ConfigurationError(RezError): class ResolveError (line 19) | class ResolveError(RezError): class PackageFamilyNotFoundError (line 21) | class PackageFamilyNotFoundError(RezError): class PackageNotFoundError (line 23) | class PackageNotFoundError(RezError): class ResourceError (line 25) | class ResourceError(RezError): class ResourceNotFoundError (line 27) | class ResourceNotFoundError(ResourceError): class ResourceContentError (line 30) | class ResourceContentError(ResourceError): method __init__ (line 33) | def __init__(self, value: Incomplete | None = None, path: Incomplete |... class PackageMetadataError (line 35) | class PackageMetadataError(ResourceContentError): class PackageCommandError (line 39) | class PackageCommandError(RezError): class PackageRequestError (line 41) | class PackageRequestError(RezError): class PackageCopyError (line 43) | class PackageCopyError(RezError): class PackageMoveError (line 45) | class PackageMoveError(RezError): class ContextBundleError (line 47) | class ContextBundleError(RezError): class PackageCacheError (line 49) | class PackageCacheError(RezError): class PackageTestError (line 51) | class PackageTestError(RezError): class ResolvedContextError (line 53) | class ResolvedContextError(RezError): class RexError (line 55) | class RexError(RezError): class RexUndefinedVariableError (line 57) | class RexUndefinedVariableError(RexError): class RexStopError (line 59) | class RexStopError(RexError): class BuildError (line 61) | class BuildError(RezError): class BuildSystemError (line 63) | class BuildSystemError(BuildError): class BuildContextResolveError (line 66) | class BuildContextResolveError(BuildError): method __init__ (line 70) | def __init__(self, context) -> None: ... class BuildProcessError (line 72) | class BuildProcessError(RezError): class ReleaseError (line 74) | class ReleaseError(RezError): class ReleaseVCSError (line 76) | class ReleaseVCSError(ReleaseError): class ReleaseHookError (line 78) | class ReleaseHookError(RezError): class ReleaseHookCancellingError (line 80) | class ReleaseHookCancellingError(RezError): class SuiteError (line 82) | class SuiteError(RezError): class PackageRepositoryError (line 84) | class PackageRepositoryError(RezError): class InvalidPackageError (line 86) | class InvalidPackageError(RezError): class RezGuiQTImportError (line 88) | class RezGuiQTImportError(ImportError): class _NeverError (line 91) | class _NeverError(RezError): function convert_errors (line 98) | def convert_errors(from_, to, msg: Incomplete | None = None) -> Generato... FILE: rez/stubs/rez-stubs/package_bind.pyi function get_bind_modules (line 10) | def get_bind_modules(verbose: bool = False) -> dict[str, str]: function find_bind_module (line 16) | def find_bind_module(name: str, verbose: bool = False) -> str | None: function bind_package (line 26) | def bind_package(name: str, path: str | None = None, version_range: Inco... function _bind_package (line 47) | def _bind_package(name: str, path: str | None = None, version_range: Inc... function _print_package_list (line 48) | def _print_package_list(variants) -> None: ... FILE: rez/stubs/rez-stubs/package_cache.pyi class PackageCache (line 16) | class PackageCache: method __init__ (line 58) | def __init__(self, path: str) -> None: method get_cached_root (line 64) | def get_cached_root(self, variant: Variant) -> str | None: method add_variant (line 73) | def add_variant(self, variant: Variant, force: bool = False, wait_for_... method remove_variant (line 113) | def remove_variant(self, variant: Variant) -> int: method add_variants_async (line 129) | def add_variants_async(self, variants: Iterable[Variant]) -> None: method add_variants (line 138) | def add_variants(self, variants: Iterable[Variant], package_cache_asyn... method _subprocess_package_caching_daemon (line 142) | def _subprocess_package_caching_daemon(path: str) -> subprocess.Popen ... method get_variants (line 149) | def get_variants(self) -> list[tuple[Variant, str, int]]: method run_daemon (line 163) | def run_daemon(self) -> None: method _run_caching_operation (line 168) | def _run_caching_operation(self, wait_for_copying: bool = True): method clean (line 175) | def clean(self, time_limit: float | None = None) -> None: method _lock (line 193) | def _lock(self) -> Iterator[None]: ... method _run_caching_step (line 194) | def _run_caching_step(self, state, wait_for_copying: bool = False) -> ... method _init_logging (line 195) | def _init_logging(self) -> logging.Logger: method _sys_dir (line 203) | def _sys_dir(self) -> str: ... method _log_dir (line 205) | def _log_dir(self) -> str: ... method _pending_dir (line 207) | def _pending_dir(self) -> str: ... method _remove_dir (line 209) | def _remove_dir(self) -> str: ... method _get_cached_root (line 210) | def _get_cached_root(self, variant: Variant) -> tuple[int, str]: ... method _get_hash_path (line 211) | def _get_hash_path(self, variant: Variant) -> str: ... FILE: rez/stubs/rez-stubs/package_copy.pyi function copy_package (line 14) | def copy_package(package: Package, dest_repository: PackageRepository, v... function _copy_variant_payload (line 78) | def _copy_variant_payload(src_variant: Variant, dest_pkg_repo: PackageRe... function _get_overlapped_variant_dirs (line 79) | def _get_overlapped_variant_dirs(src_variant: Variant) -> list[str]: ... function _copy_package_include_modules (line 80) | def _copy_package_include_modules(src_package: Package, dest_pkg_repo: P... FILE: rez/stubs/rez-stubs/package_filter.pyi class PackageFilterBase (line 11) | class PackageFilterBase: method excludes (line 13) | def excludes(self, package: Package) -> Rule | None: method add_exclusion (line 23) | def add_exclusion(self, rule: Rule) -> None: method add_inclusion (line 29) | def add_inclusion(self, rule: Rule) -> None: method from_pod (line 36) | def from_pod(cls, data: Any) -> Self: method to_pod (line 38) | def to_pod(self) -> Any: method iter_packages (line 44) | def iter_packages(self, name: str, range_: VersionRange | str | None =... method sha1 (line 58) | def sha1(self) -> str: method __repr__ (line 65) | def __repr__(self) -> str: ... class PackageFilter (line 67) | class PackageFilter(PackageFilterBase): method __init__ (line 81) | def __init__(self) -> None: ... method excludes (line 82) | def excludes(self, package: Package) -> Rule | None: ... method add_exclusion (line 83) | def add_exclusion(self, rule: Rule) -> None: ... method add_inclusion (line 84) | def add_inclusion(self, rule: Rule) -> None: ... method copy (line 85) | def copy(self) -> PackageFilter: method __and__ (line 90) | def __and__(self, other: PackageFilter) -> PackageFilter: method __bool__ (line 92) | def __bool__(self) -> bool: ... method cost (line 94) | def cost(self) -> float: method from_pod (line 104) | def from_pod(cls, data: dict) -> PackageFilter: method to_pod (line 110) | def to_pod(self) -> dict[str, list[str]]: ... method _add_rule (line 111) | def _add_rule(self, rules_dict: dict[str | None, list[Rule]], rule: Ru... method __str__ (line 112) | def __str__(self) -> str: ... class PackageFilterList (line 114) | class PackageFilterList(PackageFilterBase): method __init__ (line 121) | def __init__(self) -> None: ... method add_filter (line 122) | def add_filter(self, package_filter: PackageFilter) -> None: method add_exclusion (line 128) | def add_exclusion(self, rule: Rule) -> None: ... method add_inclusion (line 129) | def add_inclusion(self, rule: Rule) -> None: method excludes (line 137) | def excludes(self, package: Package) -> Rule | None: method copy (line 143) | def copy(self) -> PackageFilterList: method from_pod (line 149) | def from_pod(cls, data: list[dict]) -> PackageFilterList: method to_pod (line 155) | def to_pod(self) -> list[dict]: ... method __bool__ (line 156) | def __bool__(self) -> bool: ... method __str__ (line 157) | def __str__(self) -> str: ... method singleton (line 159) | def singleton(cls) -> PackageFilterList: class Rule (line 168) | class Rule: method match (line 172) | def match(self, package: Package) -> bool: method family (line 181) | def family(self) -> str | None: method cost (line 188) | def cost(self) -> int: method parse_rule (line 191) | def parse_rule(cls, txt: str) -> Rule: method _parse (line 203) | def _parse(cls, txt: str) -> Rule: method _parse_label (line 211) | def _parse_label(cls, txt: str) -> tuple[str | None, str]: ... method _extract_family (line 213) | def _extract_family(cls, txt: str) -> str | None: ... method __repr__ (line 214) | def __repr__(self) -> str: ... class RegexRuleBase (line 218) | class RegexRuleBase(Rule): method __init__ (line 221) | def __init__(self, s: str) -> None: ... method match (line 222) | def match(self, package: Package) -> bool: ... method cost (line 223) | def cost(self) -> int: ... method _parse (line 225) | def _parse(cls, txt: str) -> Self: ... method __str__ (line 226) | def __str__(self) -> str: ... class RegexRule (line 228) | class RegexRule(RegexRuleBase): method __init__ (line 237) | def __init__(self, s: str) -> None: class GlobRule (line 244) | class GlobRule(RegexRuleBase): method __init__ (line 253) | def __init__(self, s: str) -> None: class RangeRule (line 260) | class RangeRule(Rule): method __init__ (line 269) | def __init__(self, requirement: Requirement) -> None: ... method match (line 270) | def match(self, package: Package) -> bool: ... method cost (line 271) | def cost(self) -> int: ... method _parse (line 273) | def _parse(cls, txt: str) -> Self: ... method __str__ (line 274) | def __str__(self) -> str: ... class TimestampRule (line 276) | class TimestampRule(Rule): method __init__ (line 303) | def __init__(self, timestamp: int, family: str | None = None, reverse:... method match (line 314) | def match(self, package: Package) -> bool: ... method cost (line 315) | def cost(self) -> int: ... method after (line 317) | def after(cls, timestamp: int, family: str | None = None) -> Self: ... method before (line 319) | def before(cls, timestamp: int, family: str | None = None) -> Self: ... method _parse (line 321) | def _parse(cls, txt: str) -> Self: ... method __str__ (line 322) | def __str__(self) -> str: ... FILE: rez/stubs/rez-stubs/package_help.pyi class PackageHelp (line 12) | class PackageHelp: method __init__ (line 21) | def __init__(self, package_name: str, version_range: VersionRange | No... method success (line 29) | def success(self) -> bool: method sections (line 32) | def sections(self) -> list[list[str]]: method open (line 34) | def open(self, section_index: int = 0) -> None: method print_info (line 36) | def print_info(self, buf: Incomplete | None = None) -> None: method open_rez_manual (line 39) | def open_rez_manual(cls) -> None: method _open_url (line 42) | def _open_url(cls, url: str) -> None: ... FILE: rez/stubs/rez-stubs/package_maker.pyi class PackageMaker (line 23) | class PackageMaker(AttrDictWrapper): method __init__ (line 29) | def __init__(self, name: str, data: dict | None = None, package_cls: t... method get_package (line 35) | def get_package(self) -> Package: method _get_data (line 41) | def _get_data(self) -> dict: ... function make_package (line 44) | def make_package(name: str, path: str, make_base: Callable[[Variant, str... FILE: rez/stubs/rez-stubs/package_move.pyi function move_package (line 6) | def move_package(package, dest_repository, keep_timestamp: bool = False,... FILE: rez/stubs/rez-stubs/package_order.pyi class FallbackComparable (line 14) | class FallbackComparable(_Comparable): method __init__ (line 20) | def __init__(self, main_comparable: SupportsLessThan, fallback_compara... method __eq__ (line 21) | def __eq__(self, other: object) -> bool: ... method __lt__ (line 22) | def __lt__(self, other: object) -> bool: ... method __repr__ (line 23) | def __repr__(self) -> str: ... class PackageOrder (line 25) | class PackageOrder: method __init__ (line 29) | def __init__(self, packages: list[str] | None = None) -> None: method packages (line 35) | def packages(self) -> list[str]: method packages (line 43) | def packages(self, packages: str | Iterable[str] | None) -> None: ... method reorder (line 44) | def reorder(self, iterable: Iterable[Package], key: Callable[[Any], Pa... method _get_package_name_from_iterable (line 66) | def _get_package_name_from_iterable(iterable: Iterable[Package], key: ... method sort_key (line 68) | def sort_key(self, package_name: str, version_like: Version | _LowerBo... method sort_key_implementation (line 82) | def sort_key_implementation(self, package_name: str, version: Version)... method to_pod (line 94) | def to_pod(self) -> dict[str, Any]: ... method from_pod (line 96) | def from_pod(cls, data: dict[str, Any]) -> PackageOrder: ... method sha1 (line 98) | def sha1(self) -> str: ... method __str__ (line 99) | def __str__(self) -> str: ... method __eq__ (line 100) | def __eq__(self, other): ... method __ne__ (line 101) | def __ne__(self, other) -> bool: ... method __repr__ (line 102) | def __repr__(self) -> str: ... class NullPackageOrder (line 104) | class NullPackageOrder(PackageOrder): method sort_key_implementation (line 112) | def sort_key_implementation(self, package_name: str, version: Version)... method __str__ (line 113) | def __str__(self) -> str: ... method __eq__ (line 114) | def __eq__(self, other): ... method to_pod (line 115) | def to_pod(self) -> dict[str, Any]: method from_pod (line 125) | def from_pod(cls, data: dict[str, Any]) -> Self: ... class SortedOrder (line 127) | class SortedOrder(PackageOrder): method __init__ (line 132) | def __init__(self, descending: bool, packages: list[str] | None = None... method sort_key_implementation (line 133) | def sort_key_implementation(self, package_name: str, version: Version)... method __str__ (line 134) | def __str__(self) -> str: ... method __eq__ (line 135) | def __eq__(self, other): ... method to_pod (line 136) | def to_pod(self) -> dict[str, Any]: method from_pod (line 147) | def from_pod(cls, data: dict[str, Any]) -> Self: ... class PerFamilyOrder (line 149) | class PerFamilyOrder(PackageOrder): method __init__ (line 155) | def __init__(self, order_dict: dict[str, PackageOrder], default_order:... method reorder (line 164) | def reorder(self, iterable: Iterable[Package], key: Callable[[Any], Pa... method sort_key_implementation (line 165) | def sort_key_implementation(self, package_name: str, version: Version)... method __str__ (line 166) | def __str__(self) -> str: ... method __eq__ (line 167) | def __eq__(self, other): ... method to_pod (line 168) | def to_pod(self) -> dict[str, Any]: method from_pod (line 187) | def from_pod(cls, data: dict[str, Any]) -> Self: ... class VersionSplitPackageOrder (line 189) | class VersionSplitPackageOrder(PackageOrder): method __init__ (line 197) | def __init__(self, first_version: Version, packages: list[str] | None ... method sort_key_implementation (line 203) | def sort_key_implementation(self, package_name: str, version: Version)... method __str__ (line 204) | def __str__(self) -> str: ... method __eq__ (line 205) | def __eq__(self, other): ... method to_pod (line 206) | def to_pod(self) -> dict[str, Any]: method from_pod (line 217) | def from_pod(cls, data: dict[str, Any]) -> Self: ... class TimestampPackageOrder (line 219) | class TimestampPackageOrder(PackageOrder): method __init__ (line 265) | def __init__(self, timestamp: int, rank: int = 0, packages: list[str] ... method _get_first_after (line 274) | def _get_first_after(self, package_family: str) -> Version | None: method _calc_first_after (line 276) | def _calc_first_after(self, package_family: str) -> Version | None: ... method _calc_sort_key (line 277) | def _calc_sort_key(self, package_name: str, version: Version) -> Suppo... method sort_key_implementation (line 278) | def sort_key_implementation(self, package_name: str, version: Version)... method __str__ (line 279) | def __str__(self) -> str: ... method __eq__ (line 280) | def __eq__(self, other): ... method to_pod (line 281) | def to_pod(self) -> dict[str, Any]: method from_pod (line 293) | def from_pod(cls, data: dict[str, Any]) -> Self: ... class PackageOrderList (line 295) | class PackageOrderList(list[PackageOrder]): method __init__ (line 300) | def __init__(self, *args, **kwargs) -> None: ... method to_pod (line 301) | def to_pod(self) -> list[dict[str, Any]]: ... method from_pod (line 303) | def from_pod(cls, data: list[dict[str, Any]]) -> PackageOrderList: ... method singleton (line 305) | def singleton(cls) -> PackageOrderList: method _to_orderer (line 308) | def _to_orderer(orderer: dict | PackageOrder) -> PackageOrder: ... method refresh (line 309) | def refresh(self) -> None: method get (line 311) | def get(self, key: str, default: PackageOrder | None = None) -> Packag... function to_pod (line 316) | def to_pod(orderer: PackageOrder) -> dict: ... function from_pod (line 317) | def from_pod(data: dict[str, Any]) -> PackageOrder: ... function get_orderer (line 318) | def get_orderer(package_name: str, orderers: PackageOrderList | dict[str... function register_orderer (line 319) | def register_orderer(cls) -> bool: FILE: rez/stubs/rez-stubs/package_py_utils.pyi function expand_requirement (line 6) | def expand_requirement(request: str, paths: Incomplete | None = None) ->... function expand_requires (line 40) | def expand_requires(*requests: str) -> list[str]: function exec_command (line 57) | def exec_command(attr: str, cmd: list[str]) -> tuple[str, str]: function exec_python (line 67) | def exec_python(attr: str, src: list[str], executable: str = 'python') -... function find_site_python (line 78) | def find_site_python(module_name: str, paths: list[str] | None = None) -... FILE: rez/stubs/rez-stubs/package_remove.pyi function remove_package_family (line 6) | def remove_package_family(name: str, path: str, force: bool = False) -> ... function remove_package (line 20) | def remove_package(name: str, version: Version | str, path: str) -> bool: function remove_packages_ignored_since (line 35) | def remove_packages_ignored_since(days: int, paths: list[str] | None = N... FILE: rez/stubs/rez-stubs/package_repository.pyi function get_package_repository_types (line 19) | def get_package_repository_types() -> list[str]: function create_memory_package_repository (line 21) | def create_memory_package_repository(repository_data: dict) -> MemoryPac... class PackageRepositoryGlobalStats (line 33) | class PackageRepositoryGlobalStats(threading.local): method __init__ (line 37) | def __init__(self) -> None: ... method package_loading (line 39) | def package_loading(self) -> Iterator[None]: class PackageRepository (line 46) | class PackageRepository(Generic[VariantResourceHelperT, PackageResourceH... method name (line 56) | def name(cls) -> str: method __init__ (line 60) | def __init__(self, location: str, resource_pool: ResourcePool) -> None: method __str__ (line 69) | def __str__(self) -> str: ... method register_resource (line 70) | def register_resource(self, resource_class: type[Resource]) -> None: method clear_caches (line 76) | def clear_caches(self) -> None: method uid (line 79) | def uid(self) -> tuple: method __eq__ (line 88) | def __eq__(self, other) -> bool: ... method is_empty (line 89) | def is_empty(self) -> bool: method get_package_family (line 95) | def get_package_family(self, name: str) -> PackageFamilyResourceT | None: method iter_package_families (line 104) | def iter_package_families(self) -> Iterator[PackageFamilyResourceT]: method iter_packages (line 111) | def iter_packages(self, package_family_resource: PackageFamilyResource... method iter_variants (line 121) | def iter_variants(self, package_resource: PackageResourceHelperT) -> I... method get_package (line 130) | def get_package(self, name: str, version: Version) -> PackageResourceH... method get_package_from_uri (line 140) | def get_package_from_uri(self, uri: str) -> PackageResourceHelperT | N... method get_variant_from_uri (line 150) | def get_variant_from_uri(self, uri: str) -> VariantResourceHelperT | N... method ignore_package (line 160) | def ignore_package(self, pkg_name: str, pkg_version: Version, allow_mi... method unignore_package (line 179) | def unignore_package(self, pkg_name: str, pkg_version: Version) -> int: method remove_package (line 192) | def remove_package(self, pkg_name: str, pkg_version: Version) -> bool: method remove_package_family (line 205) | def remove_package_family(self, pkg_name: str, force: bool = False) ->... method remove_ignored_since (line 215) | def remove_ignored_since(self, days: int, dry_run: bool = False, verbo... method pre_variant_install (line 227) | def pre_variant_install(self, variant_resource: VariantResourceHelperT... method on_variant_install_cancelled (line 236) | def on_variant_install_cancelled(self, variant_resource: VariantResour... method install_variant (line 249) | def install_variant(self, variant_resource: VariantResourceHelperT, dr... method get_equivalent_variant (line 269) | def get_equivalent_variant(self, variant_resource: VariantResourceHelp... method get_parent_package_family (line 286) | def get_parent_package_family(self, package_resource: PackageResourceH... method get_parent_package (line 295) | def get_parent_package(self, variant_resource: VariantResourceHelperT)... method get_variant_state_handle (line 304) | def get_variant_state_handle(self, variant_resource: VariantResourceHe... method get_last_release_time (line 318) | def get_last_release_time(self, package_family_resource: PackageFamily... method make_resource_handle (line 330) | def make_resource_handle(self, resource_key: str, **variables: Any) ->... method get_resource (line 338) | def get_resource(self, resource_key: type[ResourceT], **variables: Any... method get_resource (line 340) | def get_resource(self, resource_key: str, **variables: Any) -> Resourc... method get_resource_from_handle (line 341) | def get_resource_from_handle(self, resource_handle: ResourceHandle, ve... method get_package_payload_path (line 350) | def get_package_payload_path(self, package_name: str, package_version:... method _uid (line 360) | def _uid(self) -> tuple: class PackageRepositoryManager (line 373) | class PackageRepositoryManager: method __init__ (line 381) | def __init__(self, resource_pool: ResourcePool | None = None) -> None: method get_repository (line 388) | def get_repository(self, path: str) -> PackageRepository: method are_same (line 400) | def are_same(self, path_1: str, path_2: str) -> bool: method get_resource (line 410) | def get_resource(self, resource_key: str, repository_type: str, locati... method get_resource_from_handle (line 426) | def get_resource_from_handle(self, resource_handle: ResourceHandle) ->... method clear_caches (line 435) | def clear_caches(self) -> None: method _get_repository (line 437) | def _get_repository(self, path: str, **repo_args: Any) -> PackageRepos... FILE: rez/stubs/rez-stubs/package_resources.pyi function late_bound (line 29) | def late_bound(schema): ... class PackageRepositoryResource (line 48) | class PackageRepositoryResource(Resource, Generic[PackageRepositoryT]): method normalize_variables (line 55) | def normalize_variables(cls, variables): ... method __init__ (line 56) | def __init__(self, variables: Incomplete | None = None) -> None: ... method uri (line 58) | def uri(self) -> str: ... method location (line 60) | def location(self) -> str | None: ... method name (line 62) | def name(self) -> str | None: ... method _uri (line 63) | def _uri(self) -> str: class PackageFamilyResource (line 70) | class PackageFamilyResource(PackageRepositoryResource[PackageRepositoryT... method iter_packages (line 76) | def iter_packages(self) -> Iterator[PackageResourceHelperT]: ... class PackageResource (line 78) | class PackageResource(PackageRepositoryResource): method normalize_variables (line 85) | def normalize_variables(cls, variables): method version (line 89) | def version(self) -> Version: ... class VariantResource (line 91) | class VariantResource(PackageResource, metaclass=abc.ABCMeta): # type: ... method parent (line 103) | def parent(self) -> PackageResourceHelper: ... method index (line 105) | def index(self) -> int | None: ... method root (line 107) | def root(self) -> str: method subpath (line 110) | def subpath(self) -> str: method _root (line 118) | def _root(self, ignore_shortlinks: bool = False): ... method _subpath (line 120) | def _subpath(self, ignore_shortlinks: bool = False): ... class PackageResourceHelper (line 122) | class PackageResourceHelper(PackageResource, Generic[VariantResourceHelp... method base (line 132) | def base(self) -> str | None: ... method parent (line 135) | def parent(self) -> PackageRepositoryResource: ... method commands (line 137) | def commands(self) -> SourceCode: ... method pre_commands (line 139) | def pre_commands(self) -> SourceCode: ... method post_commands (line 141) | def post_commands(self) -> SourceCode: ... method iter_variants (line 142) | def iter_variants(self) -> Iterator[VariantResourceHelperT]: ... method _convert_to_rex (line 143) | def _convert_to_rex(self, commands: list[str] | str | FunctionType | M... class _Metas (line 145) | class _Metas(AttributeForwardMeta, LazyAttributeMeta): ... class VariantResourceHelper (line 147) | class VariantResourceHelper(VariantResource, metaclass=_Metas): # type:... method _uri (line 158) | def _uri(self) -> str: ... method _subpath (line 159) | def _subpath(self, ignore_shortlinks: bool = False) -> str | None: ... method _root (line 160) | def _root(self, ignore_shortlinks: bool = False) -> str | None: ... method variant_requires (line 162) | def variant_requires(self) -> list[Requirement]: ... method wrapped (line 164) | def wrapped(self) -> PackageResourceHelper: ... method _load (line 165) | def _load(self) -> None: ... # type: ignore[override] FILE: rez/stubs/rez-stubs/package_search.pyi function get_reverse_dependency_tree (line 11) | def get_reverse_dependency_tree(package_name: str, depth: int | None = N... function get_plugins (line 36) | def get_plugins(package_name: str, paths: list[str] | None = None) -> li... class ResourceSearchResult (line 48) | class ResourceSearchResult: method __init__ (line 56) | def __init__(self, resource, resource_type, validation_error: Incomple... class ResourceSearcher (line 58) | class ResourceSearcher: method __init__ (line 68) | def __init__(self, package_paths: list[str] | None = None, resource_ty... method iter_resources (line 89) | def iter_resources(self, resources_request: str | None = None) -> None: method search (line 104) | def search(self, resources_request: str | None = None) -> tuple[str, l... method _parse_request (line 120) | def _parse_request(cls, resources_request): ... class ResourceSearchResultFormatter (line 122) | class ResourceSearchResultFormatter: method __init__ (line 128) | def __init__(self, output_format: str | None = None, suppress_newlines... method print_search_results (line 138) | def print_search_results(self, search_results: list[ResourceSearchResu... method format_search_results (line 144) | def format_search_results(self, search_results: list[ResourceSearchRes... method _format_search_result (line 153) | def _format_search_result(self, resource_search_result: ResourceSearch... FILE: rez/stubs/rez-stubs/package_serialise.pyi function dump_package_data (line 20) | def dump_package_data(data: dict, buf: SupportsWrite, format_: FileForma... function _commented_old_command_annotations (line 29) | def _commented_old_command_annotations(sourcecode: SourceCode) -> Source... function _dump_package_data_yaml (line 30) | def _dump_package_data_yaml(items: list[tuple[str, Any]], buf: SupportsW... function _dump_package_data_py (line 31) | def _dump_package_data_py(items: list[tuple[str, Any]], buf: SupportsWri... FILE: rez/stubs/rez-stubs/package_test.pyi class PackageTestRunner (line 14) | class PackageTestRunner: method __init__ (line 60) | def __init__(self, package_request, use_current_env: bool = False, ext... method get_package (line 82) | def get_package(self): method get_package_test_names (line 89) | def get_package_test_names(cls, package, run_on: Incomplete | None = N... method get_test_names (line 102) | def get_test_names(self, run_on: Incomplete | None = None): method num_tests (line 113) | def num_tests(self): method num_success (line 117) | def num_success(self): method num_failed (line 121) | def num_failed(self): method num_skipped (line 125) | def num_skipped(self): method run_test (line 128) | def run_test(self, test_name, extra_test_args: Incomplete | None = None): method print_summary (line 144) | def print_summary(self) -> None: ... method _add_test_result (line 145) | def _add_test_result(self, *nargs, **kwargs) -> None: ... method _print_header (line 147) | def _print_header(cls, txt, *nargs) -> None: ... method _on_variant_requires (line 148) | def _on_variant_requires(self, variant, params): method _get_test_info (line 158) | def _get_test_info(self, test_name: str, variant) -> dict | None: ... method _get_context (line 159) | def _get_context(self, requires, quiet: bool = False): ... method _get_target_variants (line 160) | def _get_target_variants(self, test_name): class PackageTestResults (line 167) | class PackageTestResults: method __init__ (line 176) | def __init__(self) -> None: ... method num_tests (line 178) | def num_tests(self) -> int: method num_success (line 182) | def num_success(self) -> int: method num_failed (line 186) | def num_failed(self) -> int: method num_skipped (line 190) | def num_skipped(self) -> int: method add_test_result (line 193) | def add_test_result(self, test_name, variant, status, description) -> ... method print_summary (line 194) | def print_summary(self) -> None: ... FILE: rez/stubs/rez-stubs/packages.pyi class PackageRepositoryResourceWrapper (line 26) | class PackageRepositoryResourceWrapper(ResourceWrapper[PackageRepository... method validated_data (line 28) | def validated_data(self) -> dict: ... method repository (line 30) | def repository(self) -> PackageRepository: class PackageFamily (line 37) | class PackageFamily(PackageRepositoryResourceWrapper[PackageFamilyResour... method __init__ (line 45) | def __init__(self, resource: PackageFamilyResource) -> None: ... method iter_packages (line 46) | def iter_packages(self) -> Iterator[Package]: class PackageBaseResourceWrapper (line 53) | class PackageBaseResourceWrapper(PackageRepositoryResourceWrapper[Packag... method __init__ (line 59) | def __init__(self, resource: PackageOrVariantResourceT, context: Resol... method set_context (line 60) | def set_context(self, context: ResolvedContext | None) -> None: ... method arbitrary_keys (line 61) | def arbitrary_keys(self) -> set[str]: ... method uri (line 63) | def uri(self) -> str: ... method config (line 65) | def config(self) -> Config: method is_local (line 72) | def is_local(self) -> bool: method print_info (line 74) | def print_info(self, buf: SupportsWrite | None = None, format_: FileFo... method _wrap_forwarded (line 84) | def _wrap_forwarded(self, key: str, value: Any) -> Any: ... method _eval_late_binding (line 85) | def _eval_late_binding(self, sourcecode: SourceCode[T]) -> T: ... class Package (line 87) | class Package(PackageBaseResourceWrapper[PackageResourceHelper]): method __init__ (line 97) | def __init__(self, resource: PackageResourceHelper, context: ResolvedC... method __getattr__ (line 98) | def __getattr__(self, name: str) -> Any: ... method arbitrary_keys (line 99) | def arbitrary_keys(self) -> set[str]: method qualified_name (line 108) | def qualified_name(self) -> str: method as_exact_requirement (line 114) | def as_exact_requirement(self) -> str: method parent (line 121) | def parent(self) -> PackageFamily | None: method num_variants (line 128) | def num_variants(self) -> int: ... method is_relocatable (line 130) | def is_relocatable(self) -> bool: method is_cachable (line 134) | def is_cachable(self) -> bool: method iter_variants (line 137) | def iter_variants(self) -> Iterator[Variant]: method get_variant (line 143) | def get_variant(self, index: int | None = None) -> Variant | None: class Variant (line 150) | class Variant(PackageBaseResourceWrapper[VariantResourceHelper]): method __init__ (line 161) | def __init__(self, resource: VariantResourceHelper, context: ResolvedC... method __getattr__ (line 162) | def __getattr__(self, name: str) -> Any: ... method arbitrary_keys (line 163) | def arbitrary_keys(self) -> set[str]: ... method qualified_package_name (line 165) | def qualified_package_name(self) -> str: ... method qualified_name (line 167) | def qualified_name(self) -> str: method parent (line 174) | def parent(self) -> Package: method variant_requires (line 181) | def variant_requires(self) -> list[Requirement]: method requires (line 188) | def requires(self) -> list[Requirement]: method get_requires (line 197) | def get_requires(self, build_requires: bool = False, private_build_req... method install (line 208) | def install(self, path: str, dry_run: bool = False, overrides: dict[st... method _non_shortlinked_subpath (line 229) | def _non_shortlinked_subpath(self) -> str: ... class PackageSearchPath (line 231) | class PackageSearchPath: method __init__ (line 237) | def __init__(self, packages_path: list[str]) -> None: method iter_packages (line 243) | def iter_packages(self, name: str, range_: VersionRange | str | None =... method __contains__ (line 249) | def __contains__(self, package: Package | Variant) -> bool: method _repository_uids (line 264) | def _repository_uids(self) -> set[tuple[str, str]]: ... function iter_package_families (line 266) | def iter_package_families(paths: list[str] | None = None) -> Iterator[Pa... function iter_packages (line 280) | def iter_packages(name: str, range_: VersionRange | str | None = None, p... function get_package (line 297) | def get_package(name: str, version: Version | str, paths: list[str] | No... function get_package_family_from_repository (line 309) | def get_package_family_from_repository(name: str, path: str) -> PackageF... function get_package_from_repository (line 318) | def get_package_from_repository(name: str, version: Version | str, path:... function get_package_from_handle (line 328) | def get_package_from_handle(package_handle: ResourceHandle | dict) -> Pa... function get_package_from_string (line 339) | def get_package_from_string(txt: str, paths: list[str] | None = None) ->... function get_developer_package (line 350) | def get_developer_package(path: str, format: FileFormat | None = None) -... function create_package (line 361) | def create_package(name: str, data: dict, package_cls: type[PackageT]) -... function create_package (line 363) | def create_package(name: str, data: dict) -> Package: ... function get_variant (line 364) | def get_variant(variant_handle: ResourceHandle | dict, context: Resolved... function get_package_from_uri (line 377) | def get_package_from_uri(uri: str, paths: list[str] | None = None) -> Pa... function get_variant_from_uri (line 389) | def get_variant_from_uri(uri: str, paths: list[str] | None = None) -> Va... function get_last_release_time (line 401) | def get_last_release_time(name: str, paths: list[str] | None = None) -> ... function get_completions (line 416) | def get_completions(prefix: str, paths: list[str] | None = None, family_... function get_latest_package (line 437) | def get_latest_package(name: str, *, range_: VersionRange | None = None,... function get_latest_package (line 439) | def get_latest_package(name: str, *, range_: VersionRange | None = None,... function get_latest_package_from_string (line 440) | def get_latest_package_from_string(txt: str, paths: list[str] | None = N... function _get_families (line 452) | def _get_families(name: str, paths: list[str] | None = None) -> list[tup... function _check_class (line 453) | def _check_class(resource: Resource, cls: type[Resource]) -> None: ... FILE: rez/stubs/rez-stubs/pip.pyi class InstallMode (line 17) | class InstallMode(Enum): function run_pip_command (line 21) | def run_pip_command(command_args, pip_version: Incomplete | None = None,... function find_pip (line 28) | def find_pip(pip_version: Incomplete | None = None, python_version: Inco... function find_python_in_context (line 51) | def find_python_in_context(context): function find_pip_from_context (line 62) | def find_pip_from_context(python_version, pip_version: Incomplete | None... function pip_install_package (line 76) | def pip_install_package(source_name, pip_version: Incomplete | None = No... function _is_exe (line 97) | def _is_exe(fpath): ... function _get_distribution_files_mapping (line 98) | def _get_distribution_files_mapping(distribution, targetdir): function _option_present (line 111) | def _option_present(opts, *args) -> bool: ... function _cmd (line 112) | def _cmd(context, command) -> None: ... function _check_found (line 113) | def _check_found(py_exe, version_text, log_invalid: bool = True): function _log (line 127) | def _log(msg) -> None: ... FILE: rez/stubs/rez-stubs/plugin_managers.pyi function extend_path (line 14) | def extend_path(path, name): function uncache_rezplugins_module_paths (line 38) | def uncache_rezplugins_module_paths(instance: Incomplete | None = None) ... class RezPluginType (line 40) | class RezPluginType: method __init__ (line 52) | def __init__(self) -> None: ... method __repr__ (line 53) | def __repr__(self) -> str: ... method register_plugin (line 54) | def register_plugin(self, plugin_name: str, plugin_class: type, plugin... method load_plugins (line 55) | def load_plugins(self) -> None: ... method get_plugin_class (line 56) | def get_plugin_class(self, plugin_name: str) -> type: method get_plugin_module (line 58) | def get_plugin_module(self, plugin_name: str) -> types.ModuleType: method config_schema (line 61) | def config_schema(self): method create_instance (line 64) | def create_instance(self, plugin: str, **instance_kwargs) -> Any: class RezPluginManager (line 67) | class RezPluginManager: method __init__ (line 121) | def __init__(self) -> None: ... method rezplugins_module_paths (line 123) | def rezplugins_module_paths(self): ... method _get_plugin_type (line 124) | def _get_plugin_type(self, plugin_type: str) -> RezPluginType: ... method register_plugin_type (line 125) | def register_plugin_type(self, type_class: type[RezPluginType]) -> Non... method get_plugin_types (line 126) | def get_plugin_types(self) -> list[str]: method get_plugins (line 128) | def get_plugins(self, plugin_type: str) -> list[str]: method get_plugin_class (line 132) | def get_plugin_class(self, plugin_type: str, plugin_name: str) -> type... method get_plugin_class (line 134) | def get_plugin_class(self, plugin_type: str, plugin_name: str, expecte... method get_plugin_module (line 135) | def get_plugin_module(self, plugin_type: str, plugin_name: str) -> typ... method get_plugin_config_data (line 138) | def get_plugin_config_data(self, plugin_type: str): method get_plugin_config_schema (line 140) | def get_plugin_config_schema(self, plugin_type: str): ... method get_failed_plugins (line 141) | def get_failed_plugins(self, plugin_type: str) -> list[tuple[str, str]]: method create_instance (line 149) | def create_instance(self, plugin_type: str, plugin_name, **instance_kw... method get_summary_string (line 151) | def get_summary_string(self) -> str: class ShellPluginType (line 154) | class ShellPluginType(RezPluginType): class ReleaseVCSPluginType (line 159) | class ReleaseVCSPluginType(RezPluginType): class ReleaseHookPluginType (line 164) | class ReleaseHookPluginType(RezPluginType): class BuildSystemPluginType (line 169) | class BuildSystemPluginType(RezPluginType): class PackageRepositoryPluginType (line 174) | class PackageRepositoryPluginType(RezPluginType): class BuildProcessPluginType (line 179) | class BuildProcessPluginType(RezPluginType): class CommandPluginType (line 184) | class CommandPluginType(RezPluginType): FILE: rez/stubs/rez-stubs/release_hook.pyi function get_release_hook_types (line 9) | def get_release_hook_types(): function create_release_hook (line 11) | def create_release_hook(name, source_path): function create_release_hooks (line 13) | def create_release_hooks(names, source_path): ... class ReleaseHook (line 15) | class ReleaseHook: method name (line 23) | def name(cls) -> None: method __init__ (line 29) | def __init__(self, source_path) -> None: method pre_build (line 35) | def pre_build(self, user, install_path, variants: Incomplete | None = ... method pre_release (line 55) | def pre_release(self, user, install_path, variants: Incomplete | None ... method post_release (line 77) | def post_release(self, user, install_path, variants, release_message: ... class ReleaseHookEvent (line 95) | class ReleaseHookEvent(Enum): method __init__ (line 103) | def __init__(self, label, noun, func_name) -> None: ... FILE: rez/stubs/rez-stubs/release_vcs.pyi function get_release_vcs_types (line 12) | def get_release_vcs_types() -> list[str]: function create_release_vcs (line 14) | def create_release_vcs(path: str, vcs_name: str | None = None) -> Releas... class ReleaseVCS (line 17) | class ReleaseVCS: method __init__ (line 25) | def __init__(self, pkg_root: str, vcs_root: str | None = None) -> None... method name (line 27) | def name(cls) -> str: method find_executable (line 30) | def find_executable(cls, name: str) -> str: ... method is_valid_root (line 32) | def is_valid_root(cls, path: str) -> bool: method search_parents_for_root (line 41) | def search_parents_for_root(cls) -> bool: method find_vcs_root (line 46) | def find_vcs_root(cls, path: str) -> tuple[str, int] | None: method validate_repostate (line 56) | def validate_repostate(self) -> None: method get_current_revision (line 58) | def get_current_revision(self) -> object: method get_changelog (line 67) | def get_changelog(self, previous_revision: Incomplete | None = None, m... method tag_exists (line 82) | def tag_exists(self, tag_name: str) -> bool: method create_release_tag (line 91) | def create_release_tag(self, tag_name: str, message: str | None = None... method export (line 102) | def export(cls, revision: object, path: str) -> None: method _cmd (line 113) | def _cmd(self, *nargs): FILE: rez/stubs/rez-stubs/resolved_context.pyi class RezToolsVisibility (line 49) | class RezToolsVisibility(Enum): class SuiteVisibility (line 57) | class SuiteVisibility(Enum): class PatchLock (line 66) | class PatchLock(Enum): method __init__ (line 77) | def __init__(self, description: str, rank: int) -> None: ... function get_lock_request (line 79) | def get_lock_request(name: str, version: Version, patch_lock: PatchLock,... function _on_success (line 97) | def _on_success(fn: CallableT) -> CallableT: ... class ResolvedContext (line 99) | class ResolvedContext: class Callback (line 116) | class Callback: method __init__ (line 122) | def __init__(self, max_fails: int, time_limit: int, callback: Callab... method __call__ (line 123) | def __call__(self, state: SolverState) -> tuple[SolverCallbackReturn... method __init__ (line 162) | def __init__(self, package_requests: Iterable[str | Requirement], verb... method __str__ (line 204) | def __str__(self) -> str: ... method success (line 206) | def success(self) -> bool: method status (line 209) | def status(self) -> ResolverStatus: method requested_packages (line 215) | def requested_packages(self, include_implicit: bool = False) -> list[R... method resolved_packages (line 226) | def resolved_packages(self) -> list[Variant] | None: method resolved_ephemerals (line 233) | def resolved_ephemerals(self) -> list[Requirement] | None: method set_load_path (line 239) | def set_load_path(self, path: str) -> None: method __eq__ (line 246) | def __eq__(self, other): method __hash__ (line 253) | def __hash__(self) -> int: ... method has_graph (line 255) | def has_graph(self) -> bool: method get_resolved_package (line 257) | def get_resolved_package(self, name: str) -> Variant | None: method copy (line 261) | def copy(self) -> ResolvedContext: method retargeted (line 263) | def retargeted(self, package_paths: list[str], package_names: list[str... method get_patched_request (line 280) | def get_patched_request(self, package_requests: list[PackageRequest] |... method graph (line 318) | def graph(self, as_dot: Literal[True]) -> str | None: ... method graph (line 320) | def graph(self, as_dot: Literal[False] = False) -> digraph | None: ... method save (line 321) | def save(self, path: str) -> None: method write_to_buffer (line 323) | def write_to_buffer(self, buf: SupportsWrite) -> None: method get_current (line 326) | def get_current(cls) -> ResolvedContext | None: method is_current (line 332) | def is_current(self) -> bool | None: method load (line 338) | def load(cls, path: str) -> ResolvedContext: method read_from_buffer (line 341) | def read_from_buffer(cls, buf: SupportsRead, identifier_str: str | Non... method get_resolve_diff (line 343) | def get_resolve_diff(self, other: ResolvedContext) -> dict: method print_info (line 377) | def print_info(self, buf: SupportsWrite = ..., verbosity: int = 0, sou... method print_tools (line 389) | def print_tools(self, buf: SupportsWrite = ...) -> None: ... method print_resolve_diff (line 390) | def print_resolve_diff(self, other: ResolvedContext, heading: Literal[... method get_dependency_graph (line 404) | def get_dependency_graph(self, as_dot: Literal[False]) -> digraph: ... method get_dependency_graph (line 406) | def get_dependency_graph(self, as_dot: Literal[True]) -> str: ... method validate (line 408) | def validate(self) -> None: method get_environ (line 411) | def get_environ(self, parent_environ: Mapping[str, str] | None = None)... method get_key (line 423) | def get_key(self, key: str, request_only: bool = False) -> dict[str, t... method get_tools (line 435) | def get_tools(self, request_only: bool = False) -> dict[str, tuple[Var... method get_tool_variants (line 446) | def get_tool_variants(self, tool_name: str) -> set[Variant]: method get_conflicting_tools (line 460) | def get_conflicting_tools(self, request_only: bool = False) -> dict[st... method get_shell_code (line 471) | def get_shell_code(self, shell: str | None = None, parent_environ: Map... method get_actions (line 482) | def get_actions(self, parent_environ: Mapping[str, str] | None = None)... method apply (line 494) | def apply(self, parent_environ: Mapping[str, str] | None = None) -> None: method which (line 505) | def which(self, cmd: str, parent_environ: Mapping[str, str] | None = N... method execute_command (line 519) | def execute_command(self, args: str | Iterable[str], parent_environ: d... method execute_rex_code (line 545) | def execute_rex_code(self, code: str, filename: str | None = None, she... method execute_shell (line 564) | def execute_shell(self, shell: str | None = None, parent_environ: Mapp... method get_resolve_as_exact_requests (line 612) | def get_resolve_as_exact_requests(self) -> list[PackageRequest]: method to_dict (line 623) | def to_dict(self, fields: list[str] | None = None) -> dict: method from_dict (line 635) | def from_dict(cls, d: dict, identifier_str: str | None = None) -> Reso... method _execute_bundle_post_actions_callback (line 647) | def _execute_bundle_post_actions_callback(self, executor: RexExecutor)... method _detect_bundle (line 654) | def _detect_bundle(cls, path: str) -> Iterator[None]: ... method _get_bundle_path (line 656) | def _get_bundle_path(cls) -> str | None: ... method _adjust_variant_for_bundling (line 658) | def _adjust_variant_for_bundling(cls, handle: dict, out: bool) -> None: method _get_package_cache (line 666) | def _get_package_cache(cls) -> PackageCache | None: ... method _update_package_cache (line 667) | def _update_package_cache(self) -> None: ... method _init_context_tracking_payload_base (line 669) | def _init_context_tracking_payload_base(cls) -> None: ... method _track_context (line 670) | def _track_context(self, context_data, action: str) -> None: ... method _read_from_buffer (line 672) | def _read_from_buffer(cls, buf: SupportsRead, identifier_str: str | No... method _load_error (line 674) | def _load_error(cls, e: Exception, path: str | None = None) -> NoRetur... method _set_parent_suite (line 675) | def _set_parent_suite(self, suite_path: str, context_name: str) -> Non... method _create_executor (line 676) | def _create_executor(self, interpreter: ActionInterpreter, parent_envi... method _get_pre_resolve_bindings (line 677) | def _get_pre_resolve_bindings(self) -> dict: ... method _execute (line 679) | def _execute(self, executor: RexExecutor) -> None: method _append_suite_paths (line 682) | def _append_suite_paths(self, executor: RexExecutor) -> None: ... FILE: rez/stubs/rez-stubs/resolver.pyi class SolverDict (line 24) | class SolverDict(TypedDict): class ResolverStatus (line 33) | class ResolverStatus(Enum): method __init__ (line 42) | def __init__(self, description) -> None: ... class Resolver (line 44) | class Resolver: method __init__ (line 77) | def __init__(self, context: ResolvedContext, package_requests: list[Re... method solve (line 97) | def solve(self) -> None: method status (line 101) | def status(self) -> ResolverStatus: method resolved_packages (line 108) | def resolved_packages(self) -> list[Variant] | None: method resolved_ephemerals (line 116) | def resolved_ephemerals(self) -> list[Requirement] | None: method graph (line 124) | def graph(self) -> digraph | None: # type: ignore[name-defined] method _get_variant (line 132) | def _get_variant(self, variant_handle: ResourceHandle | dict) -> Varia... method _get_cached_solve (line 133) | def _get_cached_solve(self) -> SolverDict | None: method _memcached_client (line 175) | def _memcached_client(self) -> Iterator[Client]: ... method _set_cached_solve (line 176) | def _set_cached_solve(self, solver_dict: SolverDict) -> None: method _memcache_key (line 188) | def _memcache_key(self, timestamped: bool = False) -> str: method _solve (line 190) | def _solve(self) -> Solver: ... method _set_result (line 191) | def _set_result(self, solver_dict: SolverDict) -> None: ... method _solver_to_dict (line 193) | def _solver_to_dict(cls, solver: Solver) -> SolverDict: ... FILE: rez/stubs/rez-stubs/rex.pyi class Action (line 21) | class Action: method __init__ (line 25) | def __init__(self, *args) -> None: ... method __repr__ (line 26) | def __repr__(self) -> str: ... method __eq__ (line 27) | def __eq__(self, other): ... method register_command_type (line 29) | def register_command_type(cls, name, klass) -> None: ... method register (line 31) | def register(cls) -> None: ... method get_command_types (line 33) | def get_command_types(cls): ... class EnvAction (line 35) | class EnvAction(Action): method key (line 37) | def key(self) -> str: ... method value (line 39) | def value(self) -> str | None: ... class Unsetenv (line 41) | class Unsetenv(EnvAction): class Setenv (line 44) | class Setenv(EnvAction): method pre_exec (line 47) | def pre_exec(self, interpreter) -> None: ... method post_exec (line 48) | def post_exec(self, interpreter, result): ... class Resetenv (line 50) | class Resetenv(EnvAction): method friends (line 53) | def friends(self): ... method pre_exec (line 55) | def pre_exec(self, interpreter) -> None: ... method post_exec (line 56) | def post_exec(self, interpreter, result): ... class Prependenv (line 58) | class Prependenv(Setenv): class Appendenv (line 61) | class Appendenv(Setenv): class Alias (line 64) | class Alias(Action): class Info (line 67) | class Info(Action): class Error (line 70) | class Error(Action): class Stop (line 73) | class Stop(Action): class Command (line 76) | class Command(Action): class Comment (line 79) | class Comment(Action): class Source (line 82) | class Source(Action): class Shebang (line 85) | class Shebang(Action): class OutputStyle (line 88) | class OutputStyle(Enum): class ActionManager (line 94) | class ActionManager: method __init__ (line 106) | def __init__(self, interpreter: ActionInterpreter, parent_environ: Map... method get_action_methods (line 122) | def get_action_methods(self): method get_public_methods (line 127) | def get_public_methods(self): method _env_sep (line 132) | def _env_sep(self, name): ... method _is_verbose (line 133) | def _is_verbose(self, command): ... method _format (line 134) | def _format(self, value): ... method _expand (line 135) | def _expand(self, value: str): ... method _key (line 136) | def _key(self, key): ... method _value (line 137) | def _value(self, value): ... method get_output (line 138) | def get_output(self, style=...): ... method undefined (line 139) | def undefined(self, key) -> bool: ... method defined (line 140) | def defined(self, key) -> bool: ... method expandvars (line 141) | def expandvars(self, value, format: bool = True) -> str: ... method getenv (line 142) | def getenv(self, key): ... method setenv (line 143) | def setenv(self, key, value) -> None: ... method unsetenv (line 144) | def unsetenv(self, key) -> None: ... method resetenv (line 145) | def resetenv(self, key, value, friends: Incomplete | None = None) -> N... method _pendenv (line 146) | def _pendenv(self, key, value, action, interpfunc, addfunc) -> None: ... method prependenv (line 147) | def prependenv(self, key, value) -> None: ... method appendenv (line 148) | def appendenv(self, key, value) -> None: ... method alias (line 149) | def alias(self, key, value) -> None: ... method info (line 150) | def info(self, value: str = '') -> None: ... method error (line 151) | def error(self, value) -> None: ... method stop (line 152) | def stop(self, msg, *nargs) -> None: ... method command (line 153) | def command(self, value) -> None: ... method comment (line 154) | def comment(self, value) -> None: ... method source (line 155) | def source(self, value) -> None: ... method shebang (line 156) | def shebang(self) -> None: ... method _keytoken (line 157) | def _keytoken(self, key): ... class ActionInterpreter (line 159) | class ActionInterpreter: method get_output (line 179) | def get_output(self, style=...) -> None: method setenv (line 188) | def setenv(self, key, value) -> None: ... method unsetenv (line 189) | def unsetenv(self, key) -> None: ... method resetenv (line 190) | def resetenv(self, key, value, friends: Incomplete | None = None) -> N... method prependenv (line 191) | def prependenv(self, key, value) -> None: method appendenv (line 194) | def appendenv(self, key, value) -> None: method alias (line 197) | def alias(self, key, value) -> None: ... method info (line 198) | def info(self, value: str): ... method error (line 199) | def error(self, value: str): ... method command (line 200) | def command(self, value) -> None: ... method comment (line 201) | def comment(self, value) -> None: ... method source (line 202) | def source(self, value) -> None: ... method shebang (line 203) | def shebang(self) -> None: ... method get_key_token (line 204) | def get_key_token(self, key) -> str: ... method escape_string (line 205) | def escape_string(self, value, is_path: bool = False): method _is_pathed_key (line 228) | def _is_pathed_key(cls, key): ... method normalize_path (line 229) | def normalize_path(self, path): method normalize_paths (line 248) | def normalize_paths(self, value): method _saferefenv (line 253) | def _saferefenv(self, key) -> None: method _bind_interactive_rez (line 259) | def _bind_interactive_rez(self) -> None: class Python (line 266) | class Python(ActionInterpreter): method __init__ (line 273) | def __init__(self, target_environ: Incomplete | None = None, passive: ... method set_manager (line 285) | def set_manager(self, manager: ActionManager) -> None: ... method apply_environ (line 286) | def apply_environ(self) -> None: method get_output (line 289) | def get_output(self, style=...) -> dict[str, str]: ... # type: ignore... method setenv (line 290) | def setenv(self, key, value) -> None: ... method unsetenv (line 291) | def unsetenv(self, key) -> None: ... method resetenv (line 292) | def resetenv(self, key, value, friends: Incomplete | None = None) -> N... method prependenv (line 293) | def prependenv(self, key, value) -> None: ... method appendenv (line 294) | def appendenv(self, key, value) -> None: ... method info (line 295) | def info(self, value) -> None: ... method error (line 296) | def error(self, value) -> None: ... method subprocess (line 297) | def subprocess(self, args: str | Iterable[str], **subproc_kwargs) -> P... method command (line 298) | def command(self, value) -> None: ... method comment (line 299) | def comment(self, value) -> None: ... method source (line 300) | def source(self, value) -> None: ... method alias (line 301) | def alias(self, key, value) -> None: ... method _bind_interactive_rez (line 302) | def _bind_interactive_rez(self) -> None: ... method _saferefenv (line 303) | def _saferefenv(self, key) -> None: ... method shebang (line 304) | def shebang(self) -> None: ... method get_key_token (line 305) | def get_key_token(self, key) -> str: ... method adjust_env_for_platform (line 306) | def adjust_env_for_platform(self, env) -> None: method _add_systemroot_to_env_win32 (line 309) | def _add_systemroot_to_env_win32(self, env) -> None: class EscapedString (line 340) | class EscapedString: method __init__ (line 368) | def __init__(self, value: str, is_literal: bool = False) -> None: ... method copy (line 369) | def copy(self) -> EscapedString: ... method literal (line 370) | def literal(self, value) -> EscapedString: ... method expandable (line 371) | def expandable(self, value) -> EscapedString: ... method l (line 372) | def l(self, value): ... method e (line 373) | def e(self, value): ... method _add (line 374) | def _add(self, value, is_literal) -> None: ... method __str__ (line 375) | def __str__(self) -> str: method __repr__ (line 377) | def __repr__(self) -> str: ... method __eq__ (line 378) | def __eq__(self, other): ... method __ne__ (line 379) | def __ne__(self, other) -> bool: ... method __add__ (line 380) | def __add__(self, other) -> EscapedString: method expanduser (line 386) | def expanduser(self) -> EscapedString: method formatted (line 392) | def formatted(self, func) -> EscapedString: method split (line 402) | def split(self, delimiter: Incomplete | None = None): method join (line 409) | def join(cls, sep: str, values) -> EscapedString: ... method promote (line 411) | def promote(cls, value: str | EscapedString) -> EscapedString: ... method demote (line 413) | def demote(cls, value: str | EscapedString) -> str: ... method disallow (line 415) | def disallow(cls, value): ... function literal (line 417) | def literal(value) -> EscapedString: function expandable (line 419) | def expandable(value) -> EscapedString: function optionvars (line 421) | def optionvars(name, default: Incomplete | None = None): class NamespaceFormatter (line 430) | class NamespaceFormatter(Formatter): method __init__ (line 440) | def __init__(self, namespace) -> None: ... method format (line 441) | def format(self, format_string, *args, **kwargs): ... # type: ignore[... method format_field (line 442) | def format_field(self, value, format_spec): ... method get_value (line 443) | def get_value(self, key, args, kwds): ... class EnvironmentDict (line 445) | class EnvironmentDict(MutableMapping): method __init__ (line 456) | def __init__(self, manager) -> None: method keys (line 465) | def keys(self): ... method __repr__ (line 466) | def __repr__(self) -> str: ... method __getitem__ (line 467) | def __getitem__(self, key): ... method __setitem__ (line 468) | def __setitem__(self, key, value) -> None: ... method __contains__ (line 469) | def __contains__(self, key) -> bool: ... method __delitem__ (line 470) | def __delitem__(self, key) -> None: ... method __iter__ (line 471) | def __iter__(self): ... method __len__ (line 472) | def __len__(self) -> int: ... class EnvironmentVariable (line 474) | class EnvironmentVariable: method __init__ (line 482) | def __init__(self, name, environ_map) -> None: ... method name (line 484) | def name(self): ... method prepend (line 485) | def prepend(self, value) -> None: ... method append (line 486) | def append(self, value) -> None: ... method reset (line 487) | def reset(self, value, friends: Incomplete | None = None) -> None: ... method set (line 488) | def set(self, value) -> None: ... method unset (line 489) | def unset(self) -> None: ... method get (line 490) | def get(self): ... method value (line 491) | def value(self): ... method setdefault (line 492) | def setdefault(self, value) -> None: method __str__ (line 494) | def __str__(self) -> str: ... method __repr__ (line 495) | def __repr__(self) -> str: ... method __bool__ (line 496) | def __bool__(self) -> bool: ... method __eq__ (line 497) | def __eq__(self, value): ... method __ne__ (line 498) | def __ne__(self, value) -> bool: ... class RexExecutor (line 500) | class RexExecutor: method __init__ (line 514) | def __init__(self, interpreter: ActionInterpreter | None = None, globa... method interpreter (line 534) | def interpreter(self): ... method actions (line 536) | def actions(self): method __getattr__ (line 538) | def __getattr__(self, attr): method bind (line 540) | def bind(self, name, obj) -> None: method unbind (line 547) | def unbind(self, name) -> None: method reset_globals (line 556) | def reset_globals(self) -> Generator[None]: method append_system_paths (line 561) | def append_system_paths(self) -> None: method prepend_rez_path (line 563) | def prepend_rez_path(self) -> None: method append_rez_path (line 565) | def append_rez_path(self) -> None: method normalize_path (line 567) | def normalize_path(self, path): method compile_code (line 576) | def compile_code(cls, code, filename: Incomplete | None = None, exec_n... method execute_code (line 589) | def execute_code(self, code, filename: Incomplete | None = None) -> None: method execute_function (line 596) | def execute_function(self, func, *nargs, **kwargs): method get_output (line 601) | def get_output(self, style=...): method expand (line 603) | def expand(self, value): ... FILE: rez/stubs/rez-stubs/rex_bindings.pyi class Binding (line 8) | class Binding: method __init__ (line 12) | def __init__(self, data: Incomplete | None = None) -> None: ... method _attr_error (line 13) | def _attr_error(self, attr) -> None: ... method __getattr__ (line 14) | def __getattr__(self, attr): ... class VersionBinding (line 16) | class VersionBinding(Binding): method __init__ (line 40) | def __init__(self, version: Version) -> None: ... method major (line 42) | def major(self) -> int: ... method minor (line 44) | def minor(self) -> int: ... method patch (line 46) | def patch(self) -> int | str: ... method as_tuple (line 47) | def as_tuple(self): ... method _attr_error (line 48) | def _attr_error(self, attr) -> None: ... method __getitem__ (line 49) | def __getitem__(self, i): ... method __getitem (line 50) | def __getitem(self, i: int | slice): ... method __len__ (line 51) | def __len__(self) -> int: ... method __str__ (line 52) | def __str__(self) -> str: ... method __iter__ (line 53) | def __iter__(self): ... class VariantBinding (line 55) | class VariantBinding(Binding): method __init__ (line 61) | def __init__(self, variant, cached_root: str | None = None, interprete... method root (line 63) | def root(self): method __getattr__ (line 69) | def __getattr__(self, attr): ... method _is_in_package_cache (line 70) | def _is_in_package_cache(self) -> bool: ... method _attr_error (line 71) | def _attr_error(self, attr: str): ... method __str__ (line 72) | def __str__(self) -> str: ... class RO_MappingBinding (line 74) | class RO_MappingBinding(Binding): method __init__ (line 77) | def __init__(self, data) -> None: ... method get (line 78) | def get(self, name, default: Incomplete | None = None): ... method __getitem__ (line 79) | def __getitem__(self, name): ... method __contains__ (line 80) | def __contains__(self, name) -> bool: ... method __str__ (line 81) | def __str__(self) -> str: ... class VariantsBinding (line 83) | class VariantsBinding(RO_MappingBinding): method __init__ (line 86) | def __init__(self, variant_bindings) -> None: ... method _attr_error (line 87) | def _attr_error(self, attr) -> None: ... class RequirementsBinding (line 89) | class RequirementsBinding(RO_MappingBinding): method __init__ (line 91) | def __init__(self, requirements) -> None: ... method _attr_error (line 92) | def _attr_error(self, attr: str): ... method get_range (line 93) | def get_range(self, name: str, default: Incomplete | None = None) -> R... class EphemeralsBinding (line 96) | class EphemeralsBinding(RO_MappingBinding): method __init__ (line 108) | def __init__(self, ephemerals) -> None: ... method _attr_error (line 109) | def _attr_error(self, attr: str): ... method get_range (line 110) | def get_range(self, name: str, default: Incomplete | None = None) -> R... function intersects (line 113) | def intersects(obj, range_): FILE: rez/stubs/rez-stubs/serialise.pyi class FileFormat (line 22) | class FileFormat(Enum): method __init__ (line 28) | def __init__(self, extension) -> None: ... function open_file_for_write (line 31) | def open_file_for_write(filepath, mode: Incomplete | None = None) -> Gen... function load_from_file (line 45) | def load_from_file(filepath: str, format_=..., update_data_callback: Inc... function _load_from_file__key (line 61) | def _load_from_file__key(filepath, format_, update_data_callback): ... function _load_from_file (line 62) | def _load_from_file(filepath: str, format_, update_data_callback): ... function _load_file (line 63) | def _load_file(filepath: str, format_, update_data_callback, original_fi... function get_objects (line 68) | def get_objects(): function set_objects (line 75) | def set_objects(objects) -> Generator[None]: function load_py (line 85) | def load_py(stream, filepath: str = None): # type: ignore[assignment] function _load_py (line 94) | def _load_py(stream, filepath: str = None): ... # type: ignore[assignment] class EarlyThis (line 96) | class EarlyThis: method __init__ (line 102) | def __init__(self, data) -> None: ... method __getattr__ (line 103) | def __getattr__(self, attr): ... function process_python_objects (line 105) | def process_python_objects(data: dict, filepath: str | None = None) -> d... function load_yaml (line 119) | def load_yaml(stream, filepath: str = None): # type: ignore[assignment] function load_txt (line 128) | def load_txt(stream, filepath: str = None): # type: ignore[assignment] function clear_file_caches (line 137) | def clear_file_caches() -> None: FILE: rez/stubs/rez-stubs/shells.pyi function get_shell_types (line 13) | def get_shell_types() -> list[str]: function get_shell_class (line 19) | def get_shell_class(shell: str | None = None) -> type[Shell]: function create_shell (line 25) | def create_shell(shell: str | None = None, **kwargs: Any) -> Shell: class Shell (line 32) | class Shell(ActionInterpreter): method name (line 37) | def name(cls) -> str: method executable_name (line 41) | def executable_name(cls) -> str: method executable_filepath (line 45) | def executable_filepath(cls) -> str: method executable (line 49) | def executable(self) -> str: ... method is_available (line 51) | def is_available(cls) -> bool: method file_extension (line 58) | def file_extension(cls) -> str: method startup_capabilities (line 65) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_syspaths (line 74) | def get_syspaths(cls) -> None: ... method __init__ (line 77) | def __init__(self) -> None: ... method _addline (line 78) | def _addline(self, line: str) -> None: ... method get_output (line 79) | def get_output(self, style: OutputStyle = ...) -> str: ... # type: ig... method new_shell (line 80) | def new_shell(self) -> Self: method _unsupported_option (line 83) | def _unsupported_option(cls, option, val) -> None: ... method _overruled_option (line 85) | def _overruled_option(cls, option, overruling_option, val) -> None: ... method find_executable (line 87) | def find_executable(cls, name: str, check_syspaths: bool = False) -> str: method spawn_shell (line 98) | def spawn_shell(self, context_file: str, tmpdir, rcfile: Incomplete | ... method convert_tokens (line 131) | def convert_tokens(cls, value) -> str: method get_key_token (line 143) | def get_key_token(cls, key) -> str: method get_all_key_tokens (line 156) | def get_all_key_tokens(cls, key: str) -> list[str]: method line_terminator (line 169) | def line_terminator(cls) -> str: method join (line 175) | def join(cls, command: Iterable[str]) -> str: class UnixShell (line 187) | class UnixShell(Shell): method supports_norc (line 200) | def supports_norc(cls) -> bool: ... method supports_command (line 202) | def supports_command(cls) -> bool: ... method supports_stdin (line 204) | def supports_stdin(cls) -> bool: ... method get_startup_sequence (line 206) | def get_startup_sequence(cls, rcfile: str, norc, stdin, command): method spawn_shell (line 221) | def spawn_shell(self, context_file, tmpdir, rcfile: Incomplete | None ... method resetenv (line 222) | def resetenv(self, key, value, friends: Incomplete | None = None) -> N... method info (line 223) | def info(self, value: str) -> None: ... method error (line 224) | def error(self, value: str) -> None: ... method command (line 225) | def command(self, value) -> None: ... method comment (line 226) | def comment(self, value) -> None: ... method shebang (line 227) | def shebang(self) -> None: ... method get_all_key_tokens (line 229) | def get_all_key_tokens(cls, key): ... method line_terminator (line 231) | def line_terminator(cls) -> str: ... FILE: rez/stubs/rez-stubs/solver.pyi class VariantSelectMode (line 31) | class VariantSelectMode(Enum): class SolverStatus (line 36) | class SolverStatus(Enum): class SolverCallbackReturn (line 47) | class SolverCallbackReturn(Enum): class _Printer (line 54) | class _Printer: method __init__ (line 61) | def __init__(self, verbosity: int, buf: SupportsWrite | None = None, s... method header (line 62) | def header(self, txt: str, *args: Any) -> None: ... method subheader (line 63) | def subheader(self, txt: str) -> None: ... method __call__ (line 64) | def __call__(self, txt: str, *args: Any) -> None: ... method passive (line 65) | def passive(self, txt: str, *args: Any) -> None: ... method br (line 66) | def br(self) -> None: ... method pr (line 67) | def pr(self, txt: str = '', *args: Any) -> None: ... method __bool__ (line 68) | def __bool__(self) -> bool: ... class SolverState (line 70) | class SolverState: method __init__ (line 77) | def __init__(self, num_solves: int, num_fails: int, phase: _ResolvePha... method __str__ (line 78) | def __str__(self) -> str: ... class _Common (line 80) | class _Common: method __repr__ (line 81) | def __repr__(self) -> str: ... class Reduction (line 83) | class Reduction(_Common): method __init__ (line 91) | def __init__(self, name: str, version: Version, variant_index: int | N... method reducee_str (line 92) | def reducee_str(self) -> str: ... method involved_requirements (line 93) | def involved_requirements(self) -> list[Requirement]: ... method __eq__ (line 94) | def __eq__(self, other: object) -> bool: ... method __str__ (line 95) | def __str__(self) -> str: ... class DependencyConflict (line 97) | class DependencyConflict(_Common): method __init__ (line 102) | def __init__(self, dependency: Requirement, conflicting_request: Requi... method __eq__ (line 108) | def __eq__(self, other: object) -> bool: ... method __str__ (line 109) | def __str__(self) -> str: ... class FailureReason (line 111) | class FailureReason(_Common): method involved_requirements (line 112) | def involved_requirements(self) -> list[Requirement]: ... method description (line 113) | def description(self) -> str: ... class TotalReduction (line 115) | class TotalReduction(FailureReason): method __init__ (line 118) | def __init__(self, reductions: list[Reduction]) -> None: ... method involved_requirements (line 119) | def involved_requirements(self) -> list[Requirement]: ... method description (line 120) | def description(self) -> str: ... method __eq__ (line 121) | def __eq__(self, other: TotalReduction) -> bool: ... # type: ignore[o... method __str__ (line 122) | def __str__(self) -> str: ... class DependencyConflicts (line 124) | class DependencyConflicts(FailureReason): method __init__ (line 128) | def __init__(self, conflicts: list[DependencyConflict]) -> None: ... method involved_requirements (line 129) | def involved_requirements(self) -> list[Requirement]: ... method description (line 130) | def description(self) -> str: ... method __eq__ (line 131) | def __eq__(self, other: DependencyConflicts) -> bool: ... # type: ign... method __str__ (line 132) | def __str__(self) -> str: ... class Cycle (line 134) | class Cycle(FailureReason): method __init__ (line 137) | def __init__(self, packages: list[VersionedObject]) -> None: ... method involved_requirements (line 138) | def involved_requirements(self) -> list[Requirement]: ... method description (line 139) | def description(self) -> str: ... method __eq__ (line 140) | def __eq__(self, other: Cycle) -> bool: ... # type: ignore[override] method __str__ (line 141) | def __str__(self) -> str: ... class PackageVariant (line 143) | class PackageVariant(_Common): method __init__ (line 148) | def __init__(self, variant: Variant, building: bool) -> None: method name (line 156) | def name(self) -> str: ... method version (line 158) | def version(self) -> Version: ... method index (line 160) | def index(self) -> int | None: ... method handle (line 162) | def handle(self) -> dict[str, Any]: ... method requires_list (line 164) | def requires_list(self) -> RequirementList: method request_fams (line 171) | def request_fams(self) -> set[str]: ... method conflict_request_fams (line 173) | def conflict_request_fams(self) -> set[str]: ... method get (line 174) | def get(self, pkg_name: str) -> Requirement | None: ... method __eq__ (line 175) | def __eq__(self, other: PackageVariant) -> bool: ... # type: ignore[o... method __lt__ (line 176) | def __lt__(self, other: PackageVariant) -> bool: ... method __str__ (line 177) | def __str__(self) -> str: ... class _PackageEntry (line 179) | class _PackageEntry: method __init__ (line 188) | def __init__(self, package: Package, variants: list[PackageVariant], s... method version (line 190) | def version(self) -> Version: ... method __len__ (line 191) | def __len__(self) -> int: ... method split (line 192) | def split(self, nvariants: int) -> tuple[_PackageEntry, _PackageEntry]... method sort (line 193) | def sort(self) -> None: class _PackageVariantList (line 216) | class _PackageVariantList(_Common): method __init__ (line 222) | def __init__(self, package_name: str, solver: Solver) -> None: ... method get_intersection (line 223) | def get_intersection(self, range_: VersionRange) -> list[_PackageEntry... method dump (line 232) | def dump(self) -> None: ... method __str__ (line 233) | def __str__(self) -> str: ... class _PackageVariantSlice (line 235) | class _PackageVariantSlice(_Common): method __init__ (line 248) | def __init__(self, package_name: str, entries: list[_PackageEntry], so... method pr (line 255) | def pr(self) -> _Printer: ... method range_ (line 257) | def range_(self) -> VersionRange: ... method fam_requires (line 259) | def fam_requires(self) -> set[str]: ... method common_fams (line 261) | def common_fams(self) -> set[str]: ... method extractable (line 263) | def extractable(self) -> bool: method first_variant (line 266) | def first_variant(self) -> PackageVariant: ... method iter_variants (line 267) | def iter_variants(self) -> Iterator[PackageVariant]: ... method intersect (line 268) | def intersect(self, range_: VersionRange) -> _PackageVariantSlice | No... method reduce_by (line 269) | def reduce_by(self, package_request: Requirement) -> tuple[_PackageVar... method _reduce_by (line 277) | def _reduce_by(self, package_request: Requirement) -> tuple[_PackageVa... method extract (line 278) | def extract(self) -> tuple[_PackageVariantSlice, Requirement | None]: method split (line 284) | def split(self) -> tuple[_PackageVariantSlice, _PackageVariantSlice]: method sort_versions (line 291) | def sort_versions(self) -> None: method dump (line 297) | def dump(self) -> None: ... method _copy (line 298) | def _copy(self, new_entries: list[_PackageEntry]) -> _PackageVariantSl... method _update_fam_info (line 299) | def _update_fam_info(self) -> None: ... method __len__ (line 300) | def __len__(self) -> int: ... method __str__ (line 301) | def __str__(self) -> str: class PackageVariantCache (line 312) | class PackageVariantCache: method __init__ (line 315) | def __init__(self, solver: Solver) -> None: ... method get_variant_slice (line 316) | def get_variant_slice(self, package_name: str, range_: VersionRange) -... class _PackageScope (line 327) | class _PackageScope(_Common): method __init__ (line 338) | def __init__(self, package_request: Requirement, solver: Solver) -> No... method is_conflict (line 340) | def is_conflict(self) -> bool: ... method intersect (line 341) | def intersect(self, range_: VersionRange) -> _PackageScope | None: method reduce_by (line 349) | def reduce_by(self, package_request: Requirement) -> tuple[_PackageSco... method extract (line 357) | def extract(self) -> tuple[_PackageScope, Requirement | None]: method split (line 365) | def split(self) -> tuple[_PackageScope, _PackageScope] | None: method _copy (line 373) | def _copy(self, new_slice: _PackageVariantSlice) -> _PackageScope: ... method _is_solved (line 374) | def _is_solved(self) -> bool: ... method _get_solved_variant (line 375) | def _get_solved_variant(self) -> PackageVariant | None: ... method _get_solved_ephemeral (line 376) | def _get_solved_ephemeral(self) -> Requirement | None: ... method _update (line 377) | def _update(self) -> None: ... method __str__ (line 378) | def __str__(self) -> str: ... function _get_dependency_order (line 380) | def _get_dependency_order(g: digraph, node_list: list[T]) -> list[T]: class _ResolvePhase (line 384) | class _ResolvePhase(_Common): method __init__ (line 400) | def __init__(self, solver: Solver) -> None: ... method pr (line 402) | def pr(self) -> _Printer: ... method solve (line 403) | def solve(self) -> _ResolvePhase: method finalise (line 405) | def finalise(self) -> _ResolvePhase: method split (line 414) | def split(self) -> tuple[_ResolvePhase, _ResolvePhase]: method get_graph (line 434) | def get_graph(self) -> digraph: method _get_minimal_graph (line 444) | def _get_minimal_graph(self) -> digraph | None: ... method _is_solved (line 445) | def _is_solved(self) -> bool: ... method _get_solved_variants (line 446) | def _get_solved_variants(self) -> list[PackageVariant]: ... method _get_solved_ephemerals (line 447) | def _get_solved_ephemerals(self) -> list[Requirement]: ... method __str__ (line 448) | def __str__(self) -> str: ... class Solver (line 450) | class Solver(_Common): method __init__ (line 493) | def __init__(self, package_requests: list[Requirement], package_paths:... method timed (line 528) | def timed(self, target: list[float]) -> Generator: ... method status (line 530) | def status(self) -> SolverStatus: method num_solves (line 537) | def num_solves(self) -> int: method num_fails (line 540) | def num_fails(self) -> int: method cyclic_fail (line 544) | def cyclic_fail(self) -> bool: method resolved_packages (line 547) | def resolved_packages(self) -> list[PackageVariant] | None: method resolved_ephemerals (line 555) | def resolved_ephemerals(self) -> list[Requirement] | None: method reset (line 564) | def reset(self) -> None: method solve (line 566) | def solve(self) -> None: method solve_stats (line 570) | def solve_stats(self) -> dict[str, dict[str, Any]]: ... method solve_step (line 571) | def solve_step(self) -> None: method failure_reason (line 574) | def failure_reason(self, failure_index: int | None = None) -> FailureR... method failure_description (line 590) | def failure_description(self, failure_index: int | None = None) -> str: method failure_packages (line 597) | def failure_packages(self, failure_index: int | None = None) -> list[R... method get_graph (line 606) | def get_graph(self) -> digraph: method get_fail_graph (line 619) | def get_fail_graph(self, failure_index: int | None = None) -> digraph: method dump (line 628) | def dump(self) -> None: method _init (line 630) | def _init(self) -> None: ... method _latest_nonfailed_phase (line 631) | def _latest_nonfailed_phase(self) -> _ResolvePhase | None: ... method _do_callback (line 632) | def _do_callback(self) -> bool: ... method _get_variant_slice (line 633) | def _get_variant_slice(self, package_name: str, range_: VersionRange) ... method _push_phase (line 634) | def _push_phase(self, phase: _ResolvePhase) -> None: ... method _pop_phase (line 635) | def _pop_phase(self) -> _ResolvePhase: ... method _get_failed_phase (line 636) | def _get_failed_phase(self, index: int | None = None) -> tuple[_Resolv... method _depth_label (line 637) | def _depth_label(self, depth: int | None = None) -> str: ... method __str__ (line 638) | def __str__(self) -> str: ... function _short_req_str (line 640) | def _short_req_str(package_request: Requirement) -> str: FILE: rez/stubs/rez-stubs/status.pyi class Status (line 13) | class Status: method __init__ (line 19) | def __init__(self) -> None: ... method context_file (line 21) | def context_file(self) -> str | None: method context (line 28) | def context(self) -> ResolvedContext | None: method suites (line 35) | def suites(self) -> list[Suite]: method parent_suite (line 44) | def parent_suite(self) -> Suite | None: method active_suite_context_name (line 56) | def active_suite_context_name(self) -> str | None: method print_info (line 66) | def print_info(self, obj: Incomplete | None = None, buf: SupportsWrite... method print_tools (line 81) | def print_tools(self, pattern: str | None = None, buf: SupportsWrite =... method _print_tool_info (line 87) | def _print_tool_info(self, value, buf=..., b: bool = False) -> bool: ... method _print_package_info (line 88) | def _print_package_info(self, value, buf=..., b: bool = False) -> bool... method _print_suite_info (line 89) | def _print_suite_info(self, value, buf=..., b: bool = False) -> bool: ... method _print_context_info (line 90) | def _print_context_info(self, value, buf=..., b: bool = False) -> bool... method _print_info (line 91) | def _print_info(self, buf=...) -> None: ... FILE: rez/stubs/rez-stubs/suite.pyi class Tool (line 17) | class Tool(TypedDict): class Context (line 23) | class Context(TypedDict, total=False): class Suite (line 34) | class Suite: method __init__ (line 62) | def __init__(self) -> None: method context_names (line 65) | def context_names(self) -> list[str]: method tools_path (line 72) | def tools_path(self): method activation_shell_code (line 80) | def activation_shell_code(self, shell: Incomplete | None = None): method __str__ (line 82) | def __str__(self) -> str: ... method context (line 83) | def context(self, name): method add_context (line 92) | def add_context(self, name: str, context: ResolvedContext, prefix_char... method find_contexts (line 99) | def find_contexts(self, in_request: Incomplete | None = None, in_resol... method remove_context (line 113) | def remove_context(self, name: str) -> None: method set_context_prefix (line 119) | def set_context_prefix(self, name, prefix) -> None: method remove_context_prefix (line 130) | def remove_context_prefix(self, name) -> None: method set_context_suffix (line 136) | def set_context_suffix(self, name, suffix) -> None: method remove_context_suffix (line 147) | def remove_context_suffix(self, name) -> None: method bump_context (line 153) | def bump_context(self, name) -> None: method hide_tool (line 155) | def hide_tool(self, context_name, tool_name) -> None: method unhide_tool (line 162) | def unhide_tool(self, context_name, tool_name) -> None: method alias_tool (line 172) | def alias_tool(self, context_name, tool_name, tool_alias) -> None: method unalias_tool (line 182) | def unalias_tool(self, context_name, tool_name) -> None: method get_tools (line 189) | def get_tools(self): method get_tool_filepath (line 202) | def get_tool_filepath(self, tool_alias): method get_tool_context (line 213) | def get_tool_context(self, tool_alias: str) -> str | None: method get_hidden_tools (line 224) | def get_hidden_tools(self) -> list[Tool]: method get_conflicting_aliases (line 237) | def get_conflicting_aliases(self) -> list[str]: method get_alias_conflicts (line 243) | def get_alias_conflicts(self, tool_alias: str) -> list[Tool] | None: method validate (line 256) | def validate(self) -> None: method to_dict (line 258) | def to_dict(self): ... method from_dict (line 260) | def from_dict(cls, d) -> Suite: ... method save (line 261) | def save(self, path, verbose: bool = False): method load (line 270) | def load(cls, path: str) -> Suite: ... method visible_suite_paths (line 272) | def visible_suite_paths(cls, paths: list[str] | None = None): method load_visible_suites (line 279) | def load_visible_suites(cls, paths: list[str] | None = None) -> list[S... method print_info (line 285) | def print_info(self, buf=..., verbose: bool = False) -> None: method print_tools (line 287) | def print_tools(self, buf=..., verbose: bool = False, context_name: In... method _context (line 294) | def _context(self, name: str) -> Context: ... method _context_path (line 295) | def _context_path(self, name: str, suite_path: Incomplete | None = Non... method _sorted_contexts (line 296) | def _sorted_contexts(self) -> list[Context]: ... method _next_priority (line 298) | def _next_priority(self) -> int: ... method _flush_tools (line 299) | def _flush_tools(self) -> None: ... method _validate_tool (line 300) | def _validate_tool(self, context_name: str, tool_name: str) -> None: ... method _update_tools (line 301) | def _update_tools(self) -> None: ... function _FWD__invoke_suite_tool_alias (line 303) | def _FWD__invoke_suite_tool_alias(context_name: str, tool_name: str, pre... FILE: rez/stubs/rez-stubs/system.pyi class System (line 7) | class System: method rez_version (line 11) | def rez_version(self): method platform (line 14) | def platform(self): method arch (line 21) | def arch(self): method os (line 28) | def os(self): method variant (line 35) | def variant(self): method shell (line 40) | def shell(self) -> str: method user (line 48) | def user(self): method home (line 51) | def home(self): method fqdn (line 54) | def fqdn(self): method hostname (line 59) | def hostname(self): method domain (line 64) | def domain(self): method rez_bin_path (line 69) | def rez_bin_path(self): method is_production_rez_install (line 74) | def is_production_rez_install(self): method selftest_is_running (line 77) | def selftest_is_running(self): method get_summary_string (line 79) | def get_summary_string(self): method clear_caches (line 82) | def clear_caches(self, hard: bool = False) -> None: method _make_safe_version_string (line 96) | def _make_safe_version_string(cls, s): ... FILE: rez/stubs/rez-stubs/util.pyi class ProgressBar (line 13) | class ProgressBar(Bar): method __init__ (line 17) | def __init__(self, label, max) -> None: ... method __del__ (line 18) | def __del__(self) -> None: ... function dedup (line 20) | def dedup(seq) -> Generator[Incomplete]: function shlex_join (line 25) | def shlex_join(value: Iterable[str], unsafe_regex: Incomplete | None = N... function which (line 28) | def which(*programs, **shutilwhich_kwargs) -> str | None: ... function get_close_matches (line 29) | def get_close_matches(term: str, fields, fuzziness: float = 0.4, key: In... function get_close_pkgs (line 30) | def get_close_pkgs(pkg, pkgs, fuzziness: float = 0.4): ... function find_last_sublist (line 31) | def find_last_sublist(list_, sublist): function _atexit (line 38) | def _atexit() -> None: ... function is_non_string_iterable (line 39) | def is_non_string_iterable(arg: str | Iterable[str] | None) -> TypeGuard... function get_function_arg_names (line 41) | def get_function_arg_names(func): function load_module_from_file (line 46) | def load_module_from_file(name: str, filepath: str) -> ModuleType: FILE: rez/stubs/rez-stubs/utils/__init__.pyi function with_noop (line 6) | def with_noop() -> Generator[None]: ... function reraise (line 7) | def reraise(exc, new_exc_cls) -> NoReturn: ... FILE: rez/stubs/rez-stubs/utils/amqp.pyi function publish_message (line 15) | def publish_message(host, amqp_settings, routing_key, data, block: bool ... function _publish_message (line 21) | def _publish_message(host, amqp_settings, routing_key, data) -> bool: function _publish_messages_async (line 27) | def _publish_messages_async() -> None: ... function on_exit (line 29) | def on_exit() -> None: ... function parse_host_and_port (line 30) | def parse_host_and_port(url): ... function set_pika_log_level (line 31) | def set_pika_log_level() -> None: ... FILE: rez/stubs/rez-stubs/utils/backcompat.pyi function convert_old_variant_handle (line 5) | def convert_old_variant_handle(handle_dict): function convert_old_command_expansions (line 7) | def convert_old_command_expansions(command): function convert_old_commands (line 12) | def convert_old_commands(commands: list[str], annotate: bool = True) -> ... FILE: rez/stubs/rez-stubs/utils/base26.pyi function get_next_base26 (line 3) | def get_next_base26(prev: str | None = None) -> str: function create_unique_base26_symlink (line 11) | def create_unique_base26_symlink(path: str, source: str) -> str: FILE: rez/stubs/rez-stubs/utils/colorize.pyi function colorama_wrap (line 8) | def colorama_wrap(stream): function stream_is_tty (line 10) | def stream_is_tty(stream): function critical (line 16) | def critical(str_: str) -> str: function error (line 26) | def error(str_): function warning (line 36) | def warning(str_): function info (line 46) | def info(str_): function debug (line 56) | def debug(str_): function heading (line 66) | def heading(str_): function local (line 76) | def local(str_): function implicit (line 87) | def implicit(str_): function ephemeral (line 98) | def ephemeral(str_): function alias (line 109) | def alias(str_): function inactive (line 119) | def inactive(str_): function notset (line 125) | def notset(str_): function _color_level (line 135) | def _color_level(str_, level) -> str: function _color (line 147) | def _color(str_, fore_color: Incomplete | None = None, back_color: Incom... function _get_style_from_config (line 165) | def _get_style_from_config(key): ... class ColorizedStreamHandler (line 167) | class ColorizedStreamHandler(logging.StreamHandler): method __init__ (line 178) | def __init__(self, stream: Incomplete | None = None) -> None: ... method is_tty (line 180) | def is_tty(self): method is_colorized (line 188) | def is_colorized(self): ... method _get_style_function_for_level (line 189) | def _get_style_function_for_level(self, level): ... method emit (line 190) | def emit(self, record) -> None: class Printer (line 198) | class Printer: method __init__ (line 201) | def __init__(self, buf: SupportsWrite = ...) -> None: ... method __call__ (line 202) | def __call__(self, msg: str = '', style: Incomplete | None = None) -> ... method get (line 203) | def get(self, msg: str, style: Callable[[str], str] | None = None) -> ... FILE: rez/stubs/rez-stubs/utils/data_utils.pyi class ModifyList (line 9) | class ModifyList: method __init__ (line 17) | def __init__(self, append: Incomplete | None = None, prepend: Incomple... method apply (line 18) | def apply(self, v): ... class DelayLoad (line 20) | class DelayLoad: method __init__ (line 29) | def __init__(self, filepath) -> None: ... method __str__ (line 30) | def __str__(self) -> str: ... method get_value (line 31) | def get_value(self): ... function remove_nones (line 33) | def remove_nones(**kwargs): function deep_update (line 36) | def deep_update(dict1, dict2) -> None: function deep_del (line 43) | def deep_del(data, fn): function get_dict_diff (line 51) | def get_dict_diff(d1, d2): function get_dict_diff_str (line 63) | def get_dict_diff_str(d1, d2, title): class cached_class_property (line 68) | class cached_class_property(Generic[T]): method __init__ (line 86) | def __init__(self, func: Callable[[Any], T], name: Incomplete | None =... method __get__ (line 87) | def __get__(self, instance, owner: Incomplete | None = None) -> T: ... class LazySingleton (line 89) | class LazySingleton(Generic[T]): method __init__ (line 96) | def __init__(self, instance_class: type[T], *nargs, **kwargs) -> None:... method __call__ (line 97) | def __call__(self) -> T: ... class AttrDictWrapper (line 99) | class AttrDictWrapper(MutableMapping[str, Any]): method __init__ (line 111) | def __init__(self, data: Incomplete | None = None) -> None: ... method _data (line 113) | def _data(self) -> dict: ... method __getattr__ (line 114) | def __getattr__(self, attr: str) -> Any: ... method __setattr__ (line 115) | def __setattr__(self, attr, value) -> None: ... method __getitem__ (line 116) | def __getitem__(self, key): ... method __setitem__ (line 117) | def __setitem__(self, key, value) -> None: ... method __delitem__ (line 118) | def __delitem__(self, key) -> None: ... method __contains__ (line 119) | def __contains__(self, key) -> bool: ... method __iter__ (line 120) | def __iter__(self): ... method __len__ (line 121) | def __len__(self) -> int: ... method __str__ (line 122) | def __str__(self) -> str: ... method __repr__ (line 123) | def __repr__(self) -> str: ... method copy (line 124) | def copy(self): ... class RO_AttrDictWrapper (line 126) | class RO_AttrDictWrapper(AttrDictWrapper): method __setattr__ (line 128) | def __setattr__(self, attr, value) -> None: ... function convert_dicts (line 130) | def convert_dicts(d, to_class=..., from_class=...): function get_object_completions (line 144) | def get_object_completions(instance, prefix, types: Incomplete | None = ... function convert_json_safe (line 161) | def convert_json_safe(value): class AttributeForwardMeta (line 167) | class AttributeForwardMeta(type): method __new__ (line 208) | def __new__(cls, name, parents, members): ... method _make_forwarder (line 210) | def _make_forwarder(cls, key): ... class LazyAttributeMeta (line 212) | class LazyAttributeMeta(type): method __new__ (line 237) | def __new__(cls, name, parents, members): ... method _make_validate_data (line 239) | def _make_validate_data(cls): ... method _make_validated_data (line 241) | def _make_validated_data(cls): ... method _make_validate_key_impl (line 243) | def _make_validate_key_impl(cls): ... method _make_getter (line 245) | def _make_getter(cls, key, attribute, optional, key_schema): ... FILE: rez/stubs/rez-stubs/utils/diff_packages.pyi function diff_packages (line 6) | def diff_packages(pkg1: Package, pkg2: Package | None = None) -> None: FILE: rez/stubs/rez-stubs/utils/elf.pyi function get_rpaths (line 4) | def get_rpaths(elfpath: str) -> list[str]: function patch_rpaths (line 7) | def patch_rpaths(elfpath, rpaths) -> None: function _run (line 10) | def _run(*nargs, **popen_kwargs): ... FILE: rez/stubs/rez-stubs/utils/execution.pyi function add_sys_paths (line 8) | def add_sys_paths(paths: Iterable[str]) -> Iterator[None]: class Popen (line 12) | class Popen(subprocess.Popen): method __init__ (line 19) | def __init__(self, args, **kwargs) -> None: ... class ExecutableScriptMode (line 21) | class ExecutableScriptMode(Enum): function create_executable_script (line 30) | def create_executable_script(filepath: str, body: str | Callable, progra... function _get_python_script_files (line 49) | def _get_python_script_files(filepath: str, py_script_mode, platform: st... function create_forwarding_script (line 63) | def create_forwarding_script(filepath: str, module: str | tuple[str, str... FILE: rez/stubs/rez-stubs/utils/filesystem.pyi class TempDirs (line 12) | class TempDirs: method __init__ (line 23) | def __init__(self, tmpdir, prefix: str = 'rez_') -> None: ... method mkdtemp (line 24) | def mkdtemp(self, cleanup: bool = True): ... method __del__ (line 25) | def __del__(self) -> None: ... method clear (line 26) | def clear(self) -> None: ... method clear_all (line 28) | def clear_all(cls) -> None: ... function make_path_writable (line 31) | def make_path_writable(path) -> Generator[None]: function retain_cwd (line 38) | def retain_cwd() -> Generator[None]: function get_existing_path (line 41) | def get_existing_path(path, topmost_path: Incomplete | None = None): function safe_listdir (line 53) | def safe_listdir(path): function safe_makedirs (line 58) | def safe_makedirs(path) -> None: function safe_remove (line 63) | def safe_remove(path) -> None: function forceful_rmtree (line 68) | def forceful_rmtree(path) -> None: function replacing_symlink (line 78) | def replacing_symlink(source, link_name) -> None: function replacing_copy (line 81) | def replacing_copy(src, dest, follow_symlinks: bool = False) -> None: function replace_file_or_dir (line 93) | def replace_file_or_dir(dest, source) -> None: function additive_copytree (line 99) | def additive_copytree(src, dst, symlinks: bool = False, ignore: Incomple... function make_tmp_name (line 103) | def make_tmp_name(name) -> Generator[Incomplete]: function is_subdirectory (line 109) | def is_subdirectory(path_a, path_b) -> bool: function find_matching_symlink (line 111) | def find_matching_symlink(path: str, source: str) -> str | None: function copy_or_replace (line 119) | def copy_or_replace(src: str, dst: str): function copytree (line 122) | def copytree(src: str, dst: str, symlinks: bool = False, ignore: Incompl... function movetree (line 125) | def movetree(src: str, dst: str) -> None: function safe_chmod (line 128) | def safe_chmod(path: str, mode) -> None: function to_nativepath (line 131) | def to_nativepath(path: str): ... function to_ntpath (line 132) | def to_ntpath(path: str): ... function to_posixpath (line 133) | def to_posixpath(path: str): ... function canonical_path (line 134) | def canonical_path(path: str, platform: Incomplete | None = None): function encode_filesystem_name (line 148) | def encode_filesystem_name(input_str: str): function decode_filesystem_name (line 196) | def decode_filesystem_name(filename: str): function test_encode_decode (line 200) | def test_encode_decode() -> None: ... function walk_up_dirs (line 201) | def walk_up_dirs(path: str): function windows_long_path (line 204) | def windows_long_path(dos_path: str): function rename (line 207) | def rename(src: str, dst: str): FILE: rez/stubs/rez-stubs/utils/formatting.pyi function is_valid_package_name (line 18) | def is_valid_package_name(name: str, raise_error: bool = False) -> bool: class PackageRequest (line 29) | class PackageRequest(Requirement): method __init__ (line 44) | def __init__(self, s: str) -> None: ... class StringFormatType (line 46) | class StringFormatType(Enum): class ObjectStringFormatter (line 52) | class ObjectStringFormatter(Formatter): method __init__ (line 63) | def __init__(self, instance: Any, pretty: bool = False, expand: String... method convert_field (line 73) | def convert_field(self, value: Any, conversion: str | None) -> Any: ... method get_field (line 74) | def get_field(self, field_name: str, args: Sequence[Any], kwargs: Mapp... method get_value (line 75) | def get_value(self, key: int | str, args: Sequence[Any], kwds: Mapping... class StringFormatMixin (line 77) | class StringFormatMixin: method format (line 85) | def format(self, s: str, pretty: bool | None = None, expand: StringFor... function expand_abbreviations (line 101) | def expand_abbreviations(txt: str, fields: list[str]) -> str: function expandvars (line 120) | def expandvars(text: str, environ: Mapping[str, str] | None = None) -> str: function indent (line 133) | def indent(txt: str) -> str: function dict_to_attributes_code (line 135) | def dict_to_attributes_code(dict_: dict) -> str: function columnise (line 148) | def columnise(rows: Sequence[Sequence[Any]], padding: int = 2) -> list[s... function print_colored_columns (line 150) | def print_colored_columns(printer: colorize.Printer, rows: Sequence[tupl... function readable_time_duration (line 162) | def readable_time_duration(secs: int) -> str: function readable_memory_size (line 168) | def readable_memory_size(bytes_: int) -> str: function _readable_units (line 173) | def _readable_units(value: int, divs: tuple[tuple[int, str, int], ...], ... function get_epoch_time_from_str (line 174) | def get_epoch_time_from_str(s: str) -> int: function positional_number_string (line 184) | def positional_number_string(n: int) -> str: function expanduser (line 196) | def expanduser(path: str) -> str: function as_block_string (line 205) | def as_block_string(txt: str) -> str: function header_comment (line 213) | def header_comment(executor: RexExecutor, txt: str) -> None: function minor_header_comment (line 220) | def minor_header_comment(executor: RexExecutor, txt: str) -> None: ... FILE: rez/stubs/rez-stubs/utils/graph_utils.pyi function read_graph_from_string (line 10) | def read_graph_from_string(txt: str) -> digraph: function write_compacted (line 17) | def write_compacted(g): function write_dot (line 23) | def write_dot(g: digraph) -> str: function prune_graph (line 36) | def prune_graph(graph_str, package_name): function save_graph (line 47) | def save_graph(graph_str, dest_file, fmt: Incomplete | None = None, imag... function save_graph_object (line 59) | def save_graph_object(g, dest_file, fmt: Incomplete | None = None, image... function view_graph (line 62) | def view_graph(graph_str, dest_file: Incomplete | None = None) -> None: function _write_graph (line 64) | def _write_graph(graph_str, dest_file: Incomplete | None = None): ... function _request_from_label (line 65) | def _request_from_label(label): ... FILE: rez/stubs/rez-stubs/utils/installer.pyi function install_as_rez_package (line 4) | def install_as_rez_package(repo_path) -> None: FILE: rez/stubs/rez-stubs/utils/logging_.pyi function print_debug (line 8) | def print_debug(msg, *nargs) -> None: ... function print_info (line 9) | def print_info(msg, *nargs) -> None: ... function print_warning (line 10) | def print_warning(msg, *nargs) -> None: ... function print_error (line 11) | def print_error(msg, *nargs) -> None: ... function print_critical (line 12) | def print_critical(msg, *nargs) -> None: ... function get_debug_printer (line 13) | def get_debug_printer(enabled: bool = True): ... function get_info_printer (line 14) | def get_info_printer(enabled: bool = True): ... function get_warning_printer (line 15) | def get_warning_printer(enabled: bool = True): ... function get_error_printer (line 16) | def get_error_printer(enabled: bool = True): ... function get_critical_printer (line 17) | def get_critical_printer(enabled: bool = True): ... class _Printer (line 19) | class _Printer: method __init__ (line 21) | def __init__(self, enabled: bool = True, printer_function: Incomplete ... method __call__ (line 22) | def __call__(self, msg, *nargs) -> None: ... method __bool__ (line 23) | def __bool__(self) -> bool: ... function log_duration (line 26) | def log_duration(printer, msg) -> Generator[None]: ... function view_file_logs (line 27) | def view_file_logs(globbed_path, loglevel_index: Incomplete | None = Non... FILE: rez/stubs/rez-stubs/utils/memcached.pyi class Client (line 12) | class Client: class _Miss (line 20) | class _Miss: method __bool__ (line 21) | def __bool__(self) -> bool: ... method __init__ (line 29) | def __init__(self, servers: str | list[str], debug: bool = False) -> N... method __bool__ (line 38) | def __bool__(self) -> bool: ... method client (line 40) | def client(self) -> Client_: method test_servers (line 46) | def test_servers(self) -> set[str]: method set (line 52) | def set(self, key: str, val: Any, time: int = 0, min_compress_len: int... method get (line 54) | def get(self, key: str) -> Any | Client._Miss: method delete (line 62) | def delete(self, key: str) -> None: method flush (line 64) | def flush(self, hard: bool = False) -> None: method get_stats (line 72) | def get_stats(self) -> list[tuple]: method reset_stats (line 78) | def reset_stats(self) -> None: method disconnect (line 80) | def disconnect(self) -> None: method _qualified_key (line 82) | def _qualified_key(self, key: str) -> str: method _get_stats (line 89) | def _get_stats(self, stat_args: Incomplete | None = None) -> list[tupl... method _key_hash (line 91) | def _key_hash(cls, key: str) -> str: ... method _debug_key_hash (line 93) | def _debug_key_hash(cls, key: str) -> str: ... class _ScopedInstanceManager (line 95) | class _ScopedInstanceManager(local): method __init__ (line 97) | def __init__(self) -> None: ... method acquire (line 98) | def acquire(self, servers, debug: bool = False) -> tuple[Client, tuple... method release (line 99) | def release(self, key: tuple[tuple, bool]) -> None: ... function memcached_client (line 104) | def memcached_client(servers=..., debug=...) -> Iterator[Client]: function pool_memcached_connections (line 117) | def pool_memcached_connections(func): function memcached (line 123) | def memcached(servers, key: Incomplete | None = None, from_cache: Incomp... class DoNotCache (line 175) | class DoNotCache: method __init__ (line 177) | def __init__(self, result: Any) -> None: ... FILE: rez/stubs/rez-stubs/utils/patching.pyi function get_patched_request (line 3) | def get_patched_request(requires, patchlist): FILE: rez/stubs/rez-stubs/utils/pip.pyi function pip_to_rez_package_name (line 7) | def pip_to_rez_package_name(dist_name): function pip_to_rez_version (line 22) | def pip_to_rez_version(dist_version, allow_legacy: bool = True): function pip_specifier_to_rez_requirement (line 65) | def pip_specifier_to_rez_requirement(specifier): function packaging_req_to_rez_req (line 110) | def packaging_req_to_rez_req(packaging_req): function is_pure_python_package (line 121) | def is_pure_python_package(installed_dist): function is_entry_points_scripts_package (line 131) | def is_entry_points_scripts_package(installed_dist): function get_rez_requirements (line 141) | def get_rez_requirements(installed_dist, python_version, name_casings: I... function convert_distlib_to_setuptools (line 182) | def convert_distlib_to_setuptools(installed_dist): function get_marker_sys_requirements (line 192) | def get_marker_sys_requirements(marker): function normalize_requirement (line 212) | def normalize_requirement(requirement): FILE: rez/stubs/rez-stubs/utils/platform_.pyi class Platform (line 8) | class Platform: method __init__ (line 12) | def __init__(self) -> None: ... method arch (line 15) | def arch(self): method os (line 19) | def os(self): method terminal_emulator_command (line 22) | def terminal_emulator_command(self): method new_session_popen_args (line 34) | def new_session_popen_args(self): method image_viewer (line 42) | def image_viewer(self): method editor (line 48) | def editor(self): method difftool (line 51) | def difftool(self): method tmpdir (line 54) | def tmpdir(self): method physical_cores (line 57) | def physical_cores(self): method logical_cores (line 60) | def logical_cores(self): method has_case_sensitive_filesystem (line 67) | def has_case_sensitive_filesystem(self) -> bool: ... method _arch (line 68) | def _arch(self): ... method _os (line 69) | def _os(self) -> None: ... method _terminal_emulator_command (line 70) | def _terminal_emulator_command(self) -> None: ... method _new_session_popen_args (line 71) | def _new_session_popen_args(self) -> None: ... method _image_viewer (line 72) | def _image_viewer(self) -> None: ... method _editor (line 73) | def _editor(self) -> None: ... method _difftool (line 74) | def _difftool(self) -> None: ... method _tmpdir (line 75) | def _tmpdir(self): ... method symlink (line 76) | def symlink(self, source, link_name) -> None: method _physical_cores_base (line 78) | def _physical_cores_base(self): ... method _physical_cores (line 79) | def _physical_cores(self) -> None: ... method _logical_cores (line 80) | def _logical_cores(self): ... class _UnixPlatform (line 82) | class _UnixPlatform(Platform): method _new_session_popen_args (line 83) | def _new_session_popen_args(self): ... class LinuxPlatform (line 85) | class LinuxPlatform(_UnixPlatform): method _os (line 87) | def _os(self): method _terminal_emulator_command (line 93) | def _terminal_emulator_command(self): ... method _image_viewer (line 94) | def _image_viewer(self): ... method _editor (line 95) | def _editor(self): ... method _difftool (line 96) | def _difftool(self): ... method _parse_colon_table_to_dict (line 98) | def _parse_colon_table_to_dict(cls, table_text): method _physical_cores_from_cpuinfo (line 101) | def _physical_cores_from_cpuinfo(self): ... method _physical_cores_from_lscpu (line 102) | def _physical_cores_from_lscpu(self): ... method _physical_cores (line 103) | def _physical_cores(self): ... class OSXPlatform (line 105) | class OSXPlatform(_UnixPlatform): method _os (line 107) | def _os(self) -> str: ... # type: ignore[override] method _terminal_emulator_command (line 108) | def _terminal_emulator_command(self): ... method _image_viewer (line 109) | def _image_viewer(self) -> str: ... # type: ignore[override] method _editor (line 110) | def _editor(self) -> str: ... # type: ignore[override] method _physical_cores_from_osx_sysctl (line 111) | def _physical_cores_from_osx_sysctl(self): ... method _physical_cores (line 112) | def _physical_cores(self): ... method _difftool (line 113) | def _difftool(self): ... class WindowsPlatform (line 115) | class WindowsPlatform(Platform): method _os (line 117) | def _os(self) -> str: ... # type: ignore[override] method has_case_sensitive_filesystem (line 119) | def has_case_sensitive_filesystem(self) -> bool: ... method _image_viewer (line 120) | def _image_viewer(self) -> str: ... # type: ignore[override] method _editor (line 121) | def _editor(self) -> str: ... # type: ignore[override] method _new_session_popen_args (line 122) | def _new_session_popen_args(self): ... method symlink (line 123) | def symlink(self, source: str, link_name: str): ... method _terminal_emulator_command (line 124) | def _terminal_emulator_command(self) -> str: ... # type: ignore[overr... method _physical_cores_from_wmic (line 125) | def _physical_cores_from_wmic(self) -> int | None: ... method _physical_cores (line 126) | def _physical_cores(self) -> int | None: ... # type: ignore[override] method _difftool (line 127) | def _difftool(self): ... FILE: rez/stubs/rez-stubs/utils/platform_mapped.pyi function platform_mapped (line 1) | def platform_mapped(func): FILE: rez/stubs/rez-stubs/utils/py_dist.pyi function _mkdirs (line 4) | def _mkdirs(*dirs): ... function convert_name (line 5) | def convert_name(name): function convert_version (line 7) | def convert_version(version): function convert_requirement (line 9) | def convert_requirement(req): function get_dist_dependencies (line 14) | def get_dist_dependencies(name, recurse: bool = True): function convert_dist (line 21) | def convert_dist(name, dest_path, make_variant: bool = True, ignore_dirs... FILE: rez/stubs/rez-stubs/utils/resolve_graph.pyi function failure_detail_from_graph (line 5) | def failure_detail_from_graph(graph): function _cycled_detail_from_graph (line 12) | def _cycled_detail_from_graph(graph, cycled_edge): function _conflicted_detail_from_graph (line 14) | def _conflicted_detail_from_graph(graph, conflicted_edge): function _iter_init_request_nodes (line 16) | def _iter_init_request_nodes(graph) -> Generator[Incomplete]: ... function _get_node_label (line 17) | def _get_node_label(graph, node): ... function _is_request_node (line 18) | def _is_request_node(graph, node) -> bool: ... function _print_each_graph_edges (line 19) | def _print_each_graph_edges(graph) -> None: FILE: rez/stubs/rez-stubs/utils/resources.pyi class Resource (line 12) | class Resource(metaclass=LazyAttributeMeta): method normalize_variables (line 42) | def normalize_variables(cls, variables: dict[str, Any]) -> dict[str, A... method __init__ (line 46) | def __init__(self, variables: dict[str, Any] | None = None) -> None: ... method handle (line 48) | def handle(self) -> ResourceHandle: method _data (line 51) | def _data(self) -> dict[str, Any] | None: ... method get (line 52) | def get(self, key: str, default: Any | None = None) -> Any | None: method __str__ (line 54) | def __str__(self) -> str: ... method __repr__ (line 55) | def __repr__(self) -> str: ... method __hash__ (line 56) | def __hash__(self) -> int: ... method __eq__ (line 57) | def __eq__(self, other): ... method _load (line 58) | def _load(self) -> dict[str, Any]: class ResourceHandle (line 72) | class ResourceHandle: method __init__ (line 80) | def __init__(self, key: str, variables: dict[str, Any] | None = None) ... method get (line 81) | def get(self, key: str, default: Any | None = None) -> Any: method to_dict (line 83) | def to_dict(self) -> dict[str, Any]: method from_dict (line 88) | def from_dict(cls, d: dict[str, Any]) -> Self: method _hashable_repr (line 95) | def _hashable_repr(self) -> tuple[str, tuple]: ... method __str__ (line 96) | def __str__(self) -> str: ... method __repr__ (line 97) | def __repr__(self) -> str: ... method __eq__ (line 98) | def __eq__(self, other): ... method __ne__ (line 99) | def __ne__(self, other: object) -> bool: ... method __hash__ (line 100) | def __hash__(self) -> int: ... class ResourcePool (line 102) | class ResourcePool: method __init__ (line 112) | def __init__(self, cache_size: int | None = None) -> None: ... method register_resource (line 113) | def register_resource(self, resource_class: type[Resource]) -> None: ... method get_resource_from_handle (line 114) | def get_resource_from_handle(self, resource_handle: ResourceHandle) ->... method clear_caches (line 115) | def clear_caches(self) -> None: ... method get_resource_class (line 116) | def get_resource_class(self, resource_key: str) -> type[Resource]: ... method _get_resource (line 117) | def _get_resource(self, resource_handle: ResourceHandle) -> Resource: ... class ResourceWrapper (line 119) | class ResourceWrapper(Generic[ResourceT], metaclass=AttributeForwardMeta): method __init__ (line 139) | def __init__(self, resource: ResourceT) -> None: ... method resource (line 141) | def resource(self) -> ResourceT: ... method handle (line 143) | def handle(self) -> ResourceHandle: ... method data (line 145) | def data(self) -> dict[str, Any] | None: ... method validated_data (line 146) | def validated_data(self) -> dict[str, Any] | None: ... method validate_data (line 147) | def validate_data(self) -> None: ... method __eq__ (line 148) | def __eq__(self, other): ... method __str__ (line 149) | def __str__(self) -> str: ... method __repr__ (line 150) | def __repr__(self) -> str: ... method __hash__ (line 151) | def __hash__(self) -> int: ... FILE: rez/stubs/rez-stubs/utils/schema.pyi function schema_keys (line 7) | def schema_keys(schema) -> set[str]: function dict_to_schema (line 20) | def dict_to_schema(schema_dict, required, allow_custom_keys: bool = True... function extensible_schema_dict (line 33) | def extensible_schema_dict(schema_dict): FILE: rez/stubs/rez-stubs/utils/scope.pyi class RecursiveAttribute (line 6) | class RecursiveAttribute(UserDict, StringFormatMixin): method __init__ (line 29) | def __init__(self, data: Incomplete | None = None, read_only: bool = F... method __getattr__ (line 30) | def __getattr__(self, attr): ... method __setattr__ (line 31) | def __setattr__(self, attr: str, value: Any) -> None: ... method __getitem__ (line 32) | def __getitem__(self, attr: str) -> Any: ... method __str__ (line 33) | def __str__(self) -> str: ... method __repr__ (line 34) | def __repr__(self) -> str: ... method _create_child_attribute (line 35) | def _create_child_attribute(self, attr: str) -> RecursiveAttribute: method to_dict (line 41) | def to_dict(self) -> dict[str, Any]: method copy (line 43) | def copy(self) -> Self: ... method update (line 44) | def update(self, data: dict[str, Any]) -> None: # type: ignore[override] method _update (line 46) | def _update(self, data: dict[str, Any]) -> None: ... method _reparent (line 47) | def _reparent(self) -> None: ... class _Scope (line 49) | class _Scope(RecursiveAttribute): method __init__ (line 50) | def __init__(self, name: str | None = None, context: ScopeContext | No... method __enter__ (line 51) | def __enter__(self) -> _Scope: ... method __exit__ (line 52) | def __exit__(self, *args: Any) -> None: ... method _create_child_attribute (line 53) | def _create_child_attribute(self, attr: str) -> RecursiveAttribute: ... class ScopeContext (line 55) | class ScopeContext: method __init__ (line 94) | def __init__(self) -> None: ... method __call__ (line 95) | def __call__(self, name: str) -> _Scope: ... method _scope_exit (line 96) | def _scope_exit(self, name: str) -> None: ... method to_dict (line 97) | def to_dict(self) -> dict[str, Any]: method __str__ (line 99) | def __str__(self) -> str: ... function scoped_formatter (line 101) | def scoped_formatter(**objects: Any) -> RecursiveAttribute: function scoped_format (line 106) | def scoped_format(txt: str, **objects: Any) -> str: FILE: rez/stubs/rez-stubs/utils/sourcecode.pyi function early (line 14) | def early() -> Callable[[CallabeT], CallabeT]: function late (line 20) | def late() -> Callable[[CallabeT], CallabeT]: function include (line 30) | def include(module_name: str, *module_names: str) -> Callable[[CallabeT]... function _add_decorator (line 35) | def _add_decorator(fn, name, **kwargs) -> None: ... class SourceCodeError (line 37) | class SourceCodeError(Exception): method __init__ (line 39) | def __init__(self, msg: str, short_msg: str) -> None: ... class SourceCodeCompileError (line 41) | class SourceCodeCompileError(SourceCodeError): ... class SourceCodeExecError (line 42) | class SourceCodeExecError(SourceCodeError): ... class SourceCode (line 44) | class SourceCode(Generic[T]): method __init__ (line 57) | def __init__(self, source: str | None = None, func: Callable[[], T] | ... method copy (line 58) | def copy(self) -> SourceCode[T]: ... method _init_from_func (line 59) | def _init_from_func(self) -> None: ... method includes (line 61) | def includes(self) -> set | None: ... method late_binding (line 63) | def late_binding(self) -> bool: ... method evaluated_code (line 65) | def evaluated_code(self) -> str: ... method sourcename (line 67) | def sourcename(self) -> str: ... method compiled (line 69) | def compiled(self) -> CodeType: ... method set_package (line 70) | def set_package(self, package: PackageBaseResourceWrapper) -> None: ... method exec_ (line 71) | def exec_(self, globals_={}) -> T: ... method to_text (line 72) | def to_text(self, funcname: str) -> str: ... method _get_decorator_info (line 73) | def _get_decorator_info(self, name: str) -> dict | None: ... method __getstate__ (line 74) | def __getstate__(self): ... method __setstate__ (line 75) | def __setstate__(self, state) -> None: ... method __eq__ (line 76) | def __eq__(self, other): ... method __ne__ (line 77) | def __ne__(self, other) -> bool: ... method __str__ (line 78) | def __str__(self) -> str: ... method __repr__ (line 79) | def __repr__(self) -> str: ... class IncludeModuleManager (line 81) | class IncludeModuleManager: method __init__ (line 86) | def __init__(self) -> None: ... method load_module (line 87) | def load_module(self, name: str, package: PackageBaseResourceWrapper) ... FILE: rez/stubs/rez-stubs/utils/typing.pyi class SupportsLessThan (line 3) | class SupportsLessThan(Protocol): method __lt__ (line 4) | def __lt__(self, __other: Any) -> bool: ... class SupportsWrite (line 6) | class SupportsWrite(Protocol): method write (line 7) | def write(self, /, __s: str) -> object: ... class SupportsRead (line 9) | class SupportsRead(Protocol): method read (line 10) | def read(self) -> str: ... FILE: rez/stubs/rez-stubs/utils/which.pyi function which (line 5) | def which(cmd: str, mode=..., path: str | None = None, env: Incomplete |... FILE: rez/stubs/rez-stubs/utils/yaml.pyi class _Dumper (line 6) | class _Dumper(SafeDumper): method represent_as_str (line 10) | def represent_as_str(self, data): ... method represent_function (line 11) | def represent_function(self, data): ... method represent_builtin_function (line 12) | def represent_builtin_function(self, data): ... method represent_sourcecode (line 13) | def represent_sourcecode(self, data): ... function dump_yaml (line 15) | def dump_yaml(data, Dumper=..., default_flow_style: bool = False): function load_yaml (line 17) | def load_yaml(filepath): function save_yaml (line 19) | def save_yaml(filepath, **fields) -> None: FILE: rez/stubs/rez-stubs/version/_requirement.pyi class VersionedObject (line 7) | class VersionedObject(_Common): method __init__ (line 22) | def __init__(self, s: str) -> None: method construct (line 28) | def construct(cls, name: str, version: Version | None = None) -> Versi... method name (line 36) | def name(self) -> str: method version (line 43) | def version(self) -> Version: method as_exact_requirement (line 49) | def as_exact_requirement(self) -> str: method __eq__ (line 55) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 56) | def __hash__(self) -> int: ... method __str__ (line 57) | def __str__(self) -> str: ... class Requirement (line 59) | class Requirement(_Common): method __init__ (line 98) | def __init__(self, s: str | None, invalid_bound_error: bool = True) ->... method construct (line 106) | def construct(cls, name: str, range: VersionRange | None = None) -> Re... method name (line 115) | def name(self) -> str: method range (line 122) | def range(self) -> VersionRange: method conflict (line 129) | def conflict(self) -> bool: method weak (line 136) | def weak(self) -> bool: method safe_str (line 146) | def safe_str(self) -> str: method conflicts_with (line 154) | def conflicts_with(self, other: Requirement | VersionedObject) -> bool: method merged (line 161) | def merged(self, other: Requirement) -> Requirement | None: method __eq__ (line 177) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 178) | def __hash__(self) -> int: ... method __str__ (line 179) | def __str__(self) -> str: ... class RequirementList (line 181) | class RequirementList(_Common): method __init__ (line 193) | def __init__(self, requirements: Iterable[Requirement]) -> None: method requirements (line 199) | def requirements(self) -> list[Requirement]: method conflict (line 207) | def conflict(self) -> tuple[Requirement, Requirement] | None: method names (line 215) | def names(self) -> set[str]: method conflict_names (line 222) | def conflict_names(self) -> set[str]: method __iter__ (line 228) | def __iter__(self) -> Iterator[Requirement]: ... method get (line 229) | def get(self, name: str) -> Requirement | None: method __eq__ (line 238) | def __eq__(self, other: object) -> bool: ... method __str__ (line 239) | def __str__(self) -> str: ... FILE: rez/stubs/rez-stubs/version/_util.pyi class VersionError (line 5) | class VersionError(Exception): ... class ParseException (line 6) | class ParseException(Exception): ... class _Common (line 8) | class _Common: method __str__ (line 9) | def __str__(self) -> str: ... method __ne__ (line 10) | def __ne__(self, other: object) -> bool: ... method __repr__ (line 11) | def __repr__(self) -> str: ... function dedup (line 13) | def dedup(iterable: Iterable[T]) -> Iterator[T]: FILE: rez/stubs/rez-stubs/version/_version.pyi class _Comparable (line 11) | class _Comparable(_Common): method __gt__ (line 12) | def __gt__(self, other: _Comparable) -> bool: ... method __le__ (line 13) | def __le__(self, other: _Comparable) -> bool: ... method __ge__ (line 14) | def __ge__(self, other: _Comparable) -> bool: ... class _ReversedComparable (line 16) | class _ReversedComparable(_Common): method __init__ (line 18) | def __init__(self, value: _Comparable) -> None: ... method __eq__ (line 19) | def __eq__(self, other: object) -> bool: ... method __lt__ (line 20) | def __lt__(self, other: object) -> bool: ... method __gt__ (line 21) | def __gt__(self, other: object) -> bool: ... method __le__ (line 22) | def __le__(self, other: object) -> bool: ... method __ge__ (line 23) | def __ge__(self, other: object) -> bool: ... method __str__ (line 24) | def __str__(self) -> str: ... method __repr__ (line 25) | def __repr__(self) -> str: ... class VersionToken (line 27) | class VersionToken(_Comparable): method __init__ (line 37) | def __init__(self, token: str) -> None: method create_random_token_string (line 43) | def create_random_token_string(cls) -> str: method less_than (line 48) | def less_than(self, other: Any) -> bool: method next (line 57) | def next(self) -> Self: method __str__ (line 59) | def __str__(self) -> str: ... method __lt__ (line 60) | def __lt__(self, other: object) -> bool: ... method __eq__ (line 61) | def __eq__(self, other: object) -> bool: ... class NumericToken (line 63) | class NumericToken(VersionToken): method __init__ (line 69) | def __init__(self, token: str) -> None: ... method create_random_token_string (line 71) | def create_random_token_string(cls) -> str: ... method __str__ (line 72) | def __str__(self) -> str: ... method __eq__ (line 73) | def __eq__(self, other: NumericToken) -> bool: ... # type: ignore[ove... method less_than (line 74) | def less_than(self, other: NumericToken) -> bool: ... method __next__ (line 75) | def __next__(self) -> NumericToken: ... method next (line 76) | def next(self) -> NumericToken: ... class _SubToken (line 78) | class _SubToken(_Comparable): method __init__ (line 82) | def __init__(self, s: str) -> None: ... method __lt__ (line 83) | def __lt__(self, other: _SubToken) -> bool: ... method __eq__ (line 84) | def __eq__(self, other: _SubToken) -> bool: ... # type: ignore[override] method __str__ (line 85) | def __str__(self) -> str: ... class AlphanumericVersionToken (line 87) | class AlphanumericVersionToken(VersionToken): method __init__ (line 115) | def __init__(self, token: str | None) -> None: ... method create_random_token_string (line 117) | def create_random_token_string(cls) -> str: ... method __str__ (line 118) | def __str__(self) -> str: ... method __eq__ (line 119) | def __eq__(self, other: AlphanumericVersionToken) -> bool: ... # type... method less_than (line 120) | def less_than(self, other: AlphanumericVersionToken) -> bool: ... method __next__ (line 121) | def __next__(self) -> AlphanumericVersionToken: ... method next (line 122) | def next(self) -> AlphanumericVersionToken: ... method _parse (line 124) | def _parse(cls, s: str) -> list[_SubToken]: ... function reverse_sort_key (line 126) | def reverse_sort_key(comparable: _Comparable) -> _ReversedComparable: class Version (line 143) | class Version(_Comparable): method __init__ (line 158) | def __init__(self, ver_str: str | None = '', make_token: Callable[[str... method copy (line 165) | def copy(self) -> Version: method trim (line 172) | def trim(self, len_: int) -> Version: method __next__ (line 182) | def __next__(self) -> Version: method next (line 184) | def next(self) -> Version: ... method major (line 186) | def major(self) -> VersionToken: method minor (line 193) | def minor(self) -> VersionToken: method patch (line 200) | def patch(self) -> VersionToken: method as_tuple (line 206) | def as_tuple(self) -> tuple[str, ...]: method __len__ (line 217) | def __len__(self) -> int: ... method __getitem__ (line 219) | def __getitem__(self, index: int) -> VersionToken: ... method __getitem__ (line 221) | def __getitem__(self, index: slice) -> list[VersionToken]: ... method __bool__ (line 222) | def __bool__(self) -> bool: method __eq__ (line 224) | def __eq__(self, other: object) -> bool: ... method __lt__ (line 225) | def __lt__(self, other: object) -> bool: ... method __hash__ (line 226) | def __hash__(self) -> int: ... method __str__ (line 227) | def __str__(self) -> str: ... class _LowerBound (line 229) | class _LowerBound(_Comparable): method __init__ (line 233) | def __init__(self, version: Version, inclusive: bool) -> None: ... method __str__ (line 234) | def __str__(self) -> str: ... method __eq__ (line 235) | def __eq__(self, other: _LowerBound | _UpperBound) -> bool: ... # typ... method __lt__ (line 236) | def __lt__(self, other: _LowerBound | _UpperBound) -> bool: ... method __hash__ (line 237) | def __hash__(self) -> int: ... method contains_version (line 238) | def contains_version(self, version: Version) -> bool: ... class _UpperBound (line 240) | class _UpperBound(_Comparable): method __init__ (line 244) | def __init__(self, version: Version, inclusive: bool) -> None: ... method __str__ (line 245) | def __str__(self) -> str: ... method __eq__ (line 246) | def __eq__(self, other: _LowerBound | _UpperBound) -> bool: ... # typ... method __lt__ (line 247) | def __lt__(self, other: _LowerBound | _UpperBound) -> bool: ... method __hash__ (line 248) | def __hash__(self) -> int: ... method contains_version (line 249) | def contains_version(self, version: Version) -> bool: ... class _Bound (line 251) | class _Bound(_Comparable): method __init__ (line 255) | def __init__(self, lower: _LowerBound | None = None, upper: _UpperBoun... method __str__ (line 256) | def __str__(self) -> str: ... method __eq__ (line 257) | def __eq__(self, other: _Bound) -> bool: ... # type: ignore[override] method __lt__ (line 258) | def __lt__(self, other: _Bound) -> bool: ... method __hash__ (line 259) | def __hash__(self) -> int: ... method lower_bounded (line 260) | def lower_bounded(self) -> bool: ... method upper_bounded (line 261) | def upper_bounded(self) -> bool: ... method contains_version (line 262) | def contains_version(self, version: Version) -> bool: ... method version_containment (line 263) | def version_containment(self, version: Version) -> int: ... method contains_bound (line 264) | def contains_bound(self, bound: _Bound) -> bool: ... method intersects (line 265) | def intersects(self, other: _Bound) -> bool: ... method intersection (line 266) | def intersection(self, other: _Bound) -> _Bound | None: ... function action (line 268) | def action(fn: CallableT) -> CallableT: ... class _VersionRangeParser (line 270) | class _VersionRangeParser: method __init__ (line 281) | def __init__(self, input_string: str, make_token: Callable[[str], Vers... method _is_lower_bound_exclusive (line 282) | def _is_lower_bound_exclusive(self, token: str | None) -> bool: ... method _is_upper_bound_exclusive (line 283) | def _is_upper_bound_exclusive(self, token: str | None) -> bool: ... method _create_version_from_token (line 284) | def _create_version_from_token(self, token: str | None) -> Version: ... method _act_version (line 286) | def _act_version(self) -> None: ... method _act_exact_version (line 288) | def _act_exact_version(self) -> None: ... method _act_bound (line 290) | def _act_bound(self) -> None: ... method _act_lower_bound (line 292) | def _act_lower_bound(self) -> None: ... method _act_upper_bound (line 294) | def _act_upper_bound(self) -> None: ... method _act_lower_and_upper_bound_asc (line 296) | def _act_lower_and_upper_bound_asc(self) -> None: ... method _act_lower_and_upper_bound_desc (line 298) | def _act_lower_and_upper_bound_desc(self) -> None: ... class VersionRange (line 300) | class VersionRange(_Comparable): method __init__ (line 359) | def __init__(self, range_str: str | None = '', make_token: Callable[[s... method is_any (line 369) | def is_any(self) -> bool: method lower_bounded (line 375) | def lower_bounded(self) -> bool: method upper_bounded (line 381) | def upper_bounded(self) -> bool: method bounded (line 386) | def bounded(self) -> bool: method issuperset (line 391) | def issuperset(self, range: VersionRange) -> bool: method issubset (line 396) | def issubset(self, range: VersionRange) -> bool: method union (line 401) | def union(self, other: VersionRange | Iterable[VersionRange]) -> Versi... method intersection (line 412) | def intersection(self, other: VersionRange | Iterable[VersionRange]) -... method inverse (line 424) | def inverse(self) -> VersionRange | None: method intersects (line 431) | def intersects(self, other: VersionRange) -> bool: method split (line 440) | def split(self) -> list[VersionRange]: method as_span (line 448) | def as_span(cls, lower_version: Version | None = None, upper_version: ... method from_version (line 460) | def from_version(cls, version: Version, op: str | None = None) -> Self: method from_versions (line 474) | def from_versions(cls, versions: Iterable[Version]) -> VersionRange: method to_versions (line 486) | def to_versions(self) -> list[Version] | None: method contains_version (line 493) | def contains_version(self, version: Version) -> bool: method iter_intersect_test (line 499) | def iter_intersect_test(self, iterable: Iterable[T], key: Callable[[T]... method iter_intersecting (line 518) | def iter_intersecting(self, iterable: Iterable[T], key: Callable[[T], ... method iter_non_intersecting (line 524) | def iter_non_intersecting(self, iterable: Iterable[T], key: Callable[[... method span (line 530) | def span(self) -> VersionRange: method visit_versions (line 537) | def visit_versions(self, func: Callable[[Version], Version | None]) ->... method __contains__ (line 558) | def __contains__(self, version_or_range: Version | VersionRange) -> bo... method __len__ (line 559) | def __len__(self) -> int: ... method __invert__ (line 560) | def __invert__(self) -> VersionRange | None: ... method __and__ (line 561) | def __and__(self, other: VersionRange | Iterable[VersionRange]) -> Ver... method __or__ (line 562) | def __or__(self, other: VersionRange | Iterable[VersionRange]) -> Vers... method __add__ (line 563) | def __add__(self, other: VersionRange | Iterable[VersionRange]) -> Ver... method __sub__ (line 564) | def __sub__(self, other: VersionRange) -> VersionRange | None: ... method __str__ (line 565) | def __str__(self) -> str: ... method __eq__ (line 566) | def __eq__(self, other: object) -> bool: ... method __lt__ (line 567) | def __lt__(self, other: VersionRange) -> bool: ... method __hash__ (line 568) | def __hash__(self) -> int: ... method _contains_version (line 569) | def _contains_version(self, version: Version) -> tuple[int, bool]: ... method _union (line 571) | def _union(cls, bounds: list[_Bound]) -> list[_Bound]: ... method _intersection (line 573) | def _intersection(cls, bounds1: list[_Bound], bounds2: list[_Bound]) -... method _inverse (line 575) | def _inverse(cls, bounds: list[_Bound]) -> list[_Bound]: ... method _issuperset (line 577) | def _issuperset(cls, bounds1: list[_Bound], bounds2: list[_Bound]) -> ... method _intersects (line 579) | def _intersects(cls, bounds1: list[_Bound], bounds2: list[_Bound]) -> ... class _ContainsVersionIterator (line 581) | class _ContainsVersionIterator(Generic[T]): method __init__ (line 594) | def __init__(self, range_: VersionRange, iterable: Iterable[T], key: C... method __iter__ (line 595) | def __iter__(self) -> _ContainsVersionIterator[T]: ... method __next__ (line 596) | def __next__(self) -> T | tuple[bool, T]: ... method next (line 597) | def next(self) -> T | tuple[bool, T]: ... method _next (line 598) | def _next(self) -> tuple[bool, T]: ... method _next_intersecting (line 599) | def _next_intersecting(self) -> T: ... method _next_non_intersecting (line 600) | def _next_non_intersecting(self) -> T: ... method _bound (line 602) | def _bound(self) -> _Bound | None: ... method _ascending (line 603) | def _ascending(self, version: Version) -> bool: ... method _descending (line 604) | def _descending(self, version: Version) -> bool: ... FILE: rez/stubs/rez-stubs/wrapper.pyi class Wrapper (line 11) | class Wrapper: method __init__ (line 21) | def __init__(self, filepath) -> None: method _init (line 28) | def _init(self, suite_path, context_name, context, tool_name, prefix_c... method suite (line 30) | def suite(self): ... method run (line 31) | def run(self, *args): method _run_no_args (line 37) | def _run_no_args(self, args): ... method _run (line 38) | def _run(self, prefix_char, args): ... method print_about (line 39) | def print_about(self) -> int: method print_package_versions (line 41) | def print_package_versions(self) -> int: method peek (line 44) | def peek(self) -> int: ... method _print_conflicting (line 46) | def _print_conflicting(cls, variants) -> None: ... FILE: rez/stubs/rezplugins-stubs/build_process/local.pyi class LocalBuildResult (line 8) | class LocalBuildResult(BuildResult, total=False): class LocalBuildProcess (line 12) | class LocalBuildProcess(BuildProcessHelper): method name (line 19) | def name(cls) -> str: ... # type: ignore[override] method __init__ (line 22) | def __init__(self, *nargs, **kwargs) -> None: ... method build (line 23) | def build(self, install_path: str | None = None, clean: bool = False, ... method release (line 24) | def release(self, release_message: Incomplete | None = None, variants:... method _build_variant_base (line 25) | def _build_variant_base(self, variant: Variant, build_type, install_pa... method _install_include_modules (line 26) | def _install_include_modules(self, install_path: str) -> None: ... method _rmtree (line 27) | def _rmtree(self, path) -> None: ... method _build_variant (line 28) | def _build_variant(self, variant: Variant, install_path: str | None = ... method _release_variant (line 29) | def _release_variant(self, variant: Variant, release_message: Incomple... method _run_tests (line 30) | def _run_tests(self, variant, run_on, package_install_path) -> None: function register_plugin (line 44) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/build_process/remote.pyi class RemoteBuildProcess (line 4) | class RemoteBuildProcess(BuildProcessHelper): method name (line 10) | def name(cls) -> str: ... # type: ignore[override] method build (line 11) | def build(self, install_path: Incomplete | None = None, clean: bool = ... method release (line 12) | def release(self, release_message: Incomplete | None = None, variants:... function register_plugin (line 14) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/build_system/cmake.pyi class RezCMakeError (line 8) | class RezCMakeError(BuildSystemError): ... class CMakeBuildSystem (line 10) | class CMakeBuildSystem(BuildSystem): method name (line 28) | def name(cls) -> str: ... method child_build_system (line 30) | def child_build_system(cls) -> str: ... method is_valid_root (line 32) | def is_valid_root(cls, path, package: Incomplete | None = None): ... method bind_cli (line 34) | def bind_cli(cls, parser: argparse.ArgumentParser, group: argparse._Ar... method __init__ (line 38) | def __init__(self, working_dir: str, opts: Incomplete | None = None, p... method build (line 39) | def build(self, context: ResolvedContext, variant: Variant, build_path... method _add_build_actions (line 41) | def _add_build_actions(cls, executor, context, package, variant, build... function _FWD__spawn_build_shell (line 43) | def _FWD__spawn_build_shell(working_dir, build_path, variant_index, inst... function register_plugin (line 44) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/build_system/custom.pyi class CustomBuildSystem (line 8) | class CustomBuildSystem(BuildSystem): method name (line 32) | def name(cls) -> str: ... method is_valid_root (line 34) | def is_valid_root(cls, path, package: Incomplete | None = None) -> boo... method __init__ (line 35) | def __init__(self, working_dir, opts: Incomplete | None = None, packag... method bind_cli (line 37) | def bind_cli(cls, parser: argparse.ArgumentParser, group: argparse._Ar... method build (line 41) | def build(self, context: ResolvedContext, variant: Variant, build_path... method _add_build_actions (line 49) | def _add_build_actions(cls, executor: RexExecutor, context: ResolvedCo... function _FWD__spawn_build_shell (line 51) | def _FWD__spawn_build_shell(working_dir, build_path, variant_index, inst... function register_plugin (line 52) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/build_system/make.pyi class MakeBuildSystem (line 4) | class MakeBuildSystem(BuildSystem): method name (line 6) | def name(cls) -> str: ... method is_valid_root (line 8) | def is_valid_root(cls, path, package: Incomplete | None = None): ... method __init__ (line 9) | def __init__(self, working_dir, opts: Incomplete | None = None, packag... function register_plugin (line 11) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/package_repository/filesystem.pyi function check_format_version (line 18) | def check_format_version(filename: str, data: dict[str, Any]) -> None: ... class PackageDefinitionFileMissing (line 22) | class PackageDefinitionFileMissing(PackageMetadataError): ... class FileSystemPackageFamilyResource (line 24) | class FileSystemPackageFamilyResource(PackageFamilyResource['FileSystemP... method _uri (line 27) | def _uri(self) -> str: ... method path (line 29) | def path(self) -> str: ... method get_last_release_time (line 30) | def get_last_release_time(self) -> int: ... method iter_packages (line 31) | def iter_packages(self) -> Iterator[FileSystemPackageResource]: ... class FileSystemPackageResource (line 33) | class FileSystemPackageResource(PackageResourceHelper['FileSystemVariant... method _uri (line 38) | def _uri(self) -> str: ... method parent (line 40) | def parent(self) -> FileSystemPackageFamilyResource: ... method state_handle (line 42) | def state_handle(self) -> int | None: ... method base (line 44) | def base(self) -> str: ... method path (line 46) | def path(self) -> str: ... method filepath (line 48) | def filepath(self) -> str | None: ... method file_format (line 50) | def file_format(self) -> FileFormat | None: ... method _filepath_and_format (line 52) | def _filepath_and_format(self) -> tuple[str, FileFormat] | tuple[None,... method _load (line 53) | def _load(self) -> dict[str, Any]: ... method _load_old_formats (line 54) | def _load_old_formats(self): ... method _update_changelog (line 56) | def _update_changelog(file_format, data): ... class FileSystemVariantResource (line 58) | class FileSystemVariantResource(VariantResourceHelper): # type: ignore[... method parent (line 62) | def parent(self) -> FileSystemPackageResource: ... class FileSystemCombinedPackageFamilyResource (line 64) | class FileSystemCombinedPackageFamilyResource(PackageFamilyResource['Fil... method ext (line 69) | def ext(self): ... method filepath (line 71) | def filepath(self): ... method _uri (line 72) | def _uri(self): ... method get_last_release_time (line 73) | def get_last_release_time(self): ... method iter_packages (line 74) | def iter_packages(self) -> Iterator[FileSystemCombinedPackageResource]... method _load (line 75) | def _load(self): ... class FileSystemCombinedPackageResource (line 77) | class FileSystemCombinedPackageResource(PackageResourceHelper): # type:... method _uri (line 82) | def _uri(self) -> str: ... method parent (line 84) | def parent(self) -> FileSystemCombinedPackageFamilyResource: ... method base (line 86) | def base(self) -> str | None: ... method state_handle (line 88) | def state_handle(self) -> float: ... method iter_variants (line 89) | def iter_variants(self) -> Iterator[FileSystemCombinedVariantResource]... method _load (line 90) | def _load(self) -> dict[str, Any] | None: ... # type: ignore[override] class FileSystemCombinedVariantResource (line 92) | class FileSystemCombinedVariantResource(VariantResourceHelper): # type:... method parent (line 96) | def parent(self) -> FileSystemCombinedPackageResource: ... method _root (line 97) | def _root(self, ignore_shortlinks: bool = False) -> str | None: ... class FileSystemPackageRepository (line 99) | class FileSystemPackageRepository(PackageRepository[FileSystemVariantRes... method name (line 140) | def name(cls) -> str: ... method __init__ (line 148) | def __init__(self, location: str, resource_pool: ResourcePool, disable... method _uid (line 156) | def _uid(self) -> tuple: ... method get_package_family (line 157) | def get_package_family(self, name: str) -> FileSystemPackageFamilyReso... method iter_package_families (line 159) | def iter_package_families(self) -> Iterator[PackageFamilyResource]: ... method iter_packages (line 161) | def iter_packages(self, package_family_resource: PackageFamilyResource... method iter_variants (line 162) | def iter_variants(self, package_resource: FileSystemPackageResource) -... method get_parent_package_family (line 163) | def get_parent_package_family(self, package_resource: FileSystemPackag... method get_parent_package (line 164) | def get_parent_package(self, variant_resource: FileSystemVariantResour... method get_variant_state_handle (line 165) | def get_variant_state_handle(self, variant_resource: FileSystemVariant... method get_last_release_time (line 166) | def get_last_release_time(self, package_family_resource: FileSystemPac... method get_package_from_uri (line 167) | def get_package_from_uri(self, uri: str) -> FileSystemPackageResource ... method get_variant_from_uri (line 174) | def get_variant_from_uri(self, uri: str) -> FileSystemVariantResource ... method ignore_package (line 182) | def ignore_package(self, pkg_name: str, pkg_version: Version, allow_mi... method unignore_package (line 183) | def unignore_package(self, pkg_name: str, pkg_version: Version) -> int... method remove_package (line 184) | def remove_package(self, pkg_name: str, pkg_version: Version) -> bool:... method remove_package_family (line 185) | def remove_package_family(self, pkg_name: str, force: bool = False) ->... method remove_ignored_since (line 186) | def remove_ignored_since(self, days, dry_run: bool = False, verbose: b... method get_resource_from_handle (line 187) | def get_resource_from_handle(self, resource_handle: ResourceHandle, ve... method file_lock_dir (line 189) | def file_lock_dir(self) -> str | None: ... method pre_variant_install (line 190) | def pre_variant_install(self, variant_resource: FileSystemVariantResou... method on_variant_install_cancelled (line 191) | def on_variant_install_cancelled(self, variant_resource: FileSystemVar... method install_variant (line 211) | def install_variant(self, variant_resource: FileSystemVariantResource,... method _copy (line 212) | def _copy(self, **kwargs) -> Self: method _lock_package (line 217) | def _lock_package(self, package_name: str, package_version: str | Vers... method clear_caches (line 218) | def clear_caches(self) -> None: ... method get_package_payload_path (line 219) | def get_package_payload_path(self, package_name: str, package_version:... method _get_family_dirs__key (line 220) | def _get_family_dirs__key(self) -> str: ... method _get_family_dirs (line 221) | def _get_family_dirs(self) -> list[tuple[str, str | None]]: ... method _get_version_dirs__key (line 222) | def _get_version_dirs__key(self, root: str) -> str: ... method _get_version_dirs (line 223) | def _get_version_dirs(self, root: str) -> list[str]: ... method _is_valid_package_directory (line 224) | def _is_valid_package_directory(self, path: str) -> bool: ... method _get_families (line 225) | def _get_families(self) -> list[FileSystemPackageFamilyResource | File... method _get_family (line 226) | def _get_family(self, name: str) -> FileSystemPackageFamilyResource | ... method _get_packages (line 227) | def _get_packages(self, package_family_resource: FileSystemPackageFami... method _get_variants (line 228) | def _get_variants(self, package_resource: FileSystemPackageResource) -... method _get_file (line 229) | def _get_file(self, path: str, package_filename: Incomplete | None = N... method _create_family (line 230) | def _create_family(self, name: str) -> FileSystemPackageFamilyResource... method _create_variant (line 231) | def _create_variant(self, variant: FileSystemVariantResource, dry_run:... method _on_changed (line 232) | def _on_changed(self, pkg_name: str) -> None: method _delete_stale_build_tagfiles (line 235) | def _delete_stale_build_tagfiles(self, family_path: str) -> None: ... function register_plugin (line 237) | def register_plugin() -> type[FileSystemPackageRepository]: ... FILE: rez/stubs/rezplugins-stubs/package_repository/memory.pyi class MemoryPackageFamilyResource (line 7) | class MemoryPackageFamilyResource(PackageFamilyResource['MemoryPackageRe... method _uri (line 10) | def _uri(self) -> str: ... method iter_packages (line 11) | def iter_packages(self) -> Iterator[MemoryPackageResource]: ... class MemoryPackageResource (line 13) | class MemoryPackageResource(PackageResourceHelper['MemoryVariantResource... method _uri (line 18) | def _uri(self) -> str: ... method base (line 20) | def base(self) -> str | None: ... method parent (line 22) | def parent(self) -> MemoryPackageFamilyResource: ... method _load (line 23) | def _load(self) -> dict[str, Any]: ... class MemoryVariantResource (line 25) | class MemoryVariantResource(VariantResourceHelper): # type: ignore[misc] method _root (line 28) | def _root(self, ignore_shortlinks: bool = False) -> str | None: ... method parent (line 30) | def parent(self) -> MemoryPackageResource: ... class MemoryPackageRepository (line 32) | class MemoryPackageRepository(PackageRepository[MemoryVariantResource, M... method name (line 59) | def name(cls) -> str: ... method create_repository (line 61) | def create_repository(cls, repository_data) -> MemoryPackageRepository: method __init__ (line 76) | def __init__(self, location: str, resource_pool: ResourcePool) -> None: method get_package_family (line 82) | def get_package_family(self, name: str) -> MemoryPackageFamilyResource... method iter_package_families (line 83) | def iter_package_families(self) -> Iterator[MemoryPackageFamilyResourc... method iter_packages (line 84) | def iter_packages(self, package_family_resource: MemoryPackageFamilyRe... method iter_variants (line 85) | def iter_variants(self, package_resource: MemoryPackageResource) -> It... method get_parent_package_family (line 86) | def get_parent_package_family(self, package_resource: MemoryPackageRes... method get_parent_package (line 87) | def get_parent_package(self, variant_resource: MemoryVariantResource) ... function register_plugin (line 89) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_hook/amqp.pyi class AmqpReleaseHook (line 4) | class AmqpReleaseHook(ReleaseHook): method name (line 26) | def name(cls) -> str: ... # type: ignore[override] method __init__ (line 27) | def __init__(self, source_path) -> None: ... method post_release (line 28) | def post_release(self, user, install_path, variants, **kwargs) -> None... method publish_message (line 29) | def publish_message(self, data) -> None: ... function register_plugin (line 31) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_hook/command.pyi class CommandReleaseHook (line 4) | class CommandReleaseHook(ReleaseHook): method name (line 8) | def name(cls) -> str: ... # type: ignore[override] method __init__ (line 9) | def __init__(self, source_path) -> None: ... method execute_command (line 10) | def execute_command(self, cmd_name, cmd_arguments, user, errors, env: ... method pre_build (line 11) | def pre_build(self, user, install_path, variants: Incomplete | None = ... method pre_release (line 12) | def pre_release(self, user, install_path, variants: Incomplete | None ... method post_release (line 13) | def post_release(self, user, install_path, variants, **kwargs) -> None... method _execute_commands (line 14) | def _execute_commands(self, commands, install_path, package, errors: I... function register_plugin (line 16) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_hook/emailer.pyi class EmailReleaseHook (line 4) | class EmailReleaseHook(ReleaseHook): method name (line 7) | def name(cls) -> str: ... # type: ignore[override] method __init__ (line 8) | def __init__(self, source_path) -> None: ... method post_release (line 9) | def post_release(self, user, install_path, variants, release_message: ... method send_email (line 10) | def send_email(self, subject, body) -> None: ... method get_recipients (line 11) | def get_recipients(self): ... method load_recipients (line 12) | def load_recipients(self, filepath): ... function register_plugin (line 14) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_vcs/git.pyi class GitReleaseVCSError (line 5) | class GitReleaseVCSError(ReleaseVCSError): ... class GitReleaseVCS (line 7) | class GitReleaseVCS(ReleaseVCS): method name (line 10) | def name(cls) -> str: ... method __init__ (line 12) | def __init__(self, pkg_root, vcs_root: Incomplete | None = None) -> No... method is_valid_root (line 14) | def is_valid_root(cls, path): ... method search_parents_for_root (line 16) | def search_parents_for_root(cls) -> bool: ... method git (line 17) | def git(self, *nargs): ... method get_relative_to_remote (line 18) | def get_relative_to_remote(self): method get_local_branch (line 22) | def get_local_branch(self): method get_tracking_branch (line 24) | def get_tracking_branch(self): method validate_repostate (line 27) | def validate_repostate(self) -> None: ... method get_changelog (line 28) | def get_changelog(self, previous_revision: Incomplete | None = None, m... method get_current_revision (line 29) | def get_current_revision(self): ... method tag_exists (line 30) | def tag_exists(self, tag_name) -> bool: ... method create_release_tag (line 31) | def create_release_tag(self, tag_name, message: Incomplete | None = No... method export (line 33) | def export(cls, revision, path) -> None: ... function register_plugin (line 35) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_vcs/hg.pyi class HgReleaseVCSError (line 5) | class HgReleaseVCSError(ReleaseVCSError): ... class HgReleaseVCS (line 7) | class HgReleaseVCS(ReleaseVCS): method name (line 9) | def name(cls) -> str: ... method __init__ (line 12) | def __init__(self, pkg_root, vcs_root: Incomplete | None = None) -> No... method is_valid_root (line 14) | def is_valid_root(cls, path): ... method search_parents_for_root (line 16) | def search_parents_for_root(cls) -> bool: ... method hg (line 17) | def hg(self, *nargs, **kwargs): ... method _create_tag_highlevel (line 18) | def _create_tag_highlevel(self, tag_name, message: Incomplete | None =... method _create_tag_lowlevel (line 26) | def _create_tag_lowlevel(self, tag_name, message: Incomplete | None = ... method get_tags (line 37) | def get_tags(self, patch: bool = False): ... method tag_exists (line 38) | def tag_exists(self, tag_name) -> bool: ... method is_ancestor (line 39) | def is_ancestor(self, commit1, commit2, patch: bool = False) -> bool: method get_paths (line 44) | def get_paths(self, patch: bool = False): ... method get_default_url (line 45) | def get_default_url(self, patch: bool = False): ... method validate_repostate (line 46) | def validate_repostate(self) -> None: ... method get_current_revision (line 47) | def get_current_revision(self): ... method get_changelog (line 48) | def get_changelog(self, previous_revision: Incomplete | None = None, m... method create_release_tag (line 49) | def create_release_tag(self, tag_name, message: Incomplete | None = No... function register_plugin (line 51) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_vcs/stub.pyi class StubReleaseVCS (line 4) | class StubReleaseVCS(ReleaseVCS): method __init__ (line 11) | def __init__(self, pkg_root, vcs_root: Incomplete | None = None) -> No... method name (line 13) | def name(cls) -> str: ... method is_valid_root (line 15) | def is_valid_root(cls, path): ... method search_parents_for_root (line 17) | def search_parents_for_root(cls) -> bool: ... method validate_repostate (line 18) | def validate_repostate(self) -> None: ... method get_current_revision (line 19) | def get_current_revision(self): ... method get_changelog (line 20) | def get_changelog(self, previous_revision: Incomplete | None = None, m... method tag_exists (line 21) | def tag_exists(self, tag_name) -> bool: ... method create_release_tag (line 22) | def create_release_tag(self, tag_name, message: Incomplete | None = No... method _read_stub (line 23) | def _read_stub(self): ... method _write_stub (line 24) | def _write_stub(self, data) -> None: ... function register_plugin (line 26) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/release_vcs/svn.pyi class SvnReleaseVCSError (line 5) | class SvnReleaseVCSError(ReleaseVCSError): ... function svn_get_client (line 7) | def svn_get_client(): ... function get_last_changed_revision (line 8) | def get_last_changed_revision(client, url): function get_svn_login (line 12) | def get_svn_login(realm, username, may_save): class SvnReleaseVCS (line 18) | class SvnReleaseVCS(ReleaseVCS): method name (line 20) | def name(cls) -> str: ... method __init__ (line 23) | def __init__(self, pkg_root, vcs_root: Incomplete | None = None) -> No... method is_valid_root (line 25) | def is_valid_root(cls, path): ... method search_parents_for_root (line 27) | def search_parents_for_root(cls) -> bool: ... method validate_repostate (line 28) | def validate_repostate(self) -> None: ... method _create_tag_impl (line 29) | def _create_tag_impl(self, tag_name, message: Incomplete | None = None... method get_changelog (line 30) | def get_changelog(self, previous_revision: Incomplete | None = None, m... method get_tag_url (line 31) | def get_tag_url(self, tag_name: Incomplete | None = None): ... method svn_url_exists (line 32) | def svn_url_exists(self, url): ... method get_current_revision (line 33) | def get_current_revision(self): ... method create_release_tag (line 34) | def create_release_tag(self, tag_name, message: Incomplete | None = No... function register_plugin (line 36) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/_utils/powershell_base.pyi class PowerShellBase (line 5) | class PowerShellBase(Shell): method _escape_quotes (line 13) | def _escape_quotes(s): ... method _escape_vars (line 15) | def _escape_vars(s): ... method startup_capabilities (line 17) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_startup_sequence (line 19) | def get_startup_sequence(cls, rcfile, norc, stdin, command): ... method get_syspaths (line 21) | def get_syspaths(cls): ... method _bind_interactive_rez (line 22) | def _bind_interactive_rez(self) -> None: ... method _additional_commands (line 23) | def _additional_commands(self, executor) -> None: ... method spawn_shell (line 24) | def spawn_shell(self, context_file, tmpdir, rcfile: Incomplete | None ... method get_output (line 25) | def get_output(self, style=...): ... method escape_string (line 26) | def escape_string(self, value, is_path: bool = False): ... method normalize_path (line 27) | def normalize_path(self, path): ... method _saferefenv (line 28) | def _saferefenv(self, key) -> None: ... method shebang (line 29) | def shebang(self) -> None: ... method setenv (line 30) | def setenv(self, key, value) -> None: ... method prependenv (line 31) | def prependenv(self, key, value) -> None: ... method appendenv (line 32) | def appendenv(self, key, value) -> None: ... method unsetenv (line 33) | def unsetenv(self, key) -> None: ... method resetenv (line 34) | def resetenv(self, key, value, friends: Incomplete | None = None) -> N... method alias (line 35) | def alias(self, key, value) -> None: ... method comment (line 36) | def comment(self, value) -> None: ... method info (line 37) | def info(self, value) -> None: ... method error (line 38) | def error(self, value) -> None: ... method source (line 39) | def source(self, value) -> None: ... method command (line 40) | def command(self, value) -> None: ... method get_all_key_tokens (line 42) | def get_all_key_tokens(cls, key): ... method line_terminator (line 44) | def line_terminator(cls) -> str: ... method join (line 46) | def join(cls, command): ... FILE: rez/stubs/rezplugins-stubs/shell/_utils/windows.pyi function to_posix_path (line 6) | def to_posix_path(path: str) -> str: function to_windows_path (line 12) | def to_windows_path(path: str) -> str: function get_syspaths_from_registry (line 21) | def get_syspaths_from_registry() -> list[str]: ... FILE: rez/stubs/rezplugins-stubs/shell/bash.pyi class Bash (line 3) | class Bash(SH): method name (line 7) | def name(cls) -> str: ... method startup_capabilities (line 9) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_startup_sequence (line 11) | def get_startup_sequence(cls, rcfile, norc, stdin, command): ... method alias (line 12) | def alias(self, key, value) -> None: ... method _bind_interactive_rez (line 13) | def _bind_interactive_rez(self) -> None: ... function register_plugin (line 15) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/cmd.pyi class CMD (line 6) | class CMD(Shell): method __init__ (line 14) | def __init__(self) -> None: ... method name (line 16) | def name(cls) -> str: ... method file_extension (line 18) | def file_extension(cls) -> str: ... method startup_capabilities (line 20) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_startup_sequence (line 22) | def get_startup_sequence(cls, rcfile, norc, stdin, command): ... method get_syspaths (line 24) | def get_syspaths(cls): ... method _bind_interactive_rez (line 25) | def _bind_interactive_rez(self) -> None: ... method spawn_shell (line 26) | def spawn_shell(self, context_file, tmpdir, rcfile: Incomplete | None ... method get_output (line 27) | def get_output(self, style=...): ... method escape_string (line 28) | def escape_string(self, value: str, is_path: bool = False) -> str: method normalize_path (line 38) | def normalize_path(self, path): ... method _saferefenv (line 39) | def _saferefenv(self, key) -> None: ... method shebang (line 40) | def shebang(self) -> None: ... method setenv (line 41) | def setenv(self, key, value) -> None: ... method unsetenv (line 42) | def unsetenv(self, key) -> None: ... method resetenv (line 43) | def resetenv(self, key, value, friends: Incomplete | None = None) -> N... method alias (line 44) | def alias(self, key, value) -> None: ... method comment (line 45) | def comment(self, value) -> None: ... method info (line 46) | def info(self, value) -> None: ... method error (line 47) | def error(self, value) -> None: ... method source (line 48) | def source(self, value) -> None: ... method command (line 49) | def command(self, value) -> None: ... method get_all_key_tokens (line 51) | def get_all_key_tokens(cls, key): ... method join (line 53) | def join(cls, command): ... method line_terminator (line 55) | def line_terminator(cls) -> str: ... method _expand_alias (line 56) | def _expand_alias(self, command): function register_plugin (line 66) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/csh.pyi class CSH (line 4) | class CSH(UnixShell): method name (line 10) | def name(cls) -> str: ... method file_extension (line 12) | def file_extension(cls) -> str: ... method get_syspaths (line 14) | def get_syspaths(cls): ... method startup_capabilities (line 16) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_startup_sequence (line 18) | def get_startup_sequence(cls, rcfile, norc, stdin, command): ... method escape_string (line 19) | def escape_string(self, value, is_path: bool = False): ... method join (line 21) | def join(cls, command: Iterable[str]): ... method _bind_interactive_rez (line 22) | def _bind_interactive_rez(self) -> None: ... method _saferefenv (line 23) | def _saferefenv(self, key) -> None: ... method setenv (line 24) | def setenv(self, key, value) -> None: ... method unsetenv (line 25) | def unsetenv(self, key) -> None: ... method alias (line 26) | def alias(self, key, value) -> None: ... method source (line 27) | def source(self, value) -> None: ... function register_plugin (line 29) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/gitbash.pyi class GitBash (line 5) | class GitBash(Bash): method name (line 11) | def name(cls) -> str: ... method executable_name (line 13) | def executable_name(cls) -> str: ... method find_executable (line 15) | def find_executable(cls, name, check_syspaths: bool = False): ... method get_syspaths (line 17) | def get_syspaths(cls): ... method normalize_path (line 18) | def normalize_path(self, path): ... method normalize_paths (line 19) | def normalize_paths(self, value): function register_plugin (line 31) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/powershell.pyi class PowerShell (line 3) | class PowerShell(PowerShellBase): method name (line 5) | def name(cls) -> str: ... method file_extension (line 7) | def file_extension(cls) -> str: ... function register_plugin (line 9) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/pwsh.pyi class PowerShellCore (line 3) | class PowerShellCore(PowerShellBase): method name (line 5) | def name(cls) -> str: ... method file_extension (line 7) | def file_extension(cls) -> str: ... method get_syspaths (line 9) | def get_syspaths(cls): ... function register_plugin (line 11) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/sh.pyi class SH (line 3) | class SH(UnixShell): method name (line 8) | def name(cls) -> str: ... method file_extension (line 10) | def file_extension(cls) -> str: ... method get_syspaths (line 12) | def get_syspaths(cls): ... method startup_capabilities (line 14) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_startup_sequence (line 16) | def get_startup_sequence(cls, rcfile, norc, stdin, command): ... method _bind_interactive_rez (line 17) | def _bind_interactive_rez(self) -> None: ... method setenv (line 18) | def setenv(self, key, value) -> None: ... method unsetenv (line 19) | def unsetenv(self, key) -> None: ... method alias (line 20) | def alias(self, key, value) -> None: ... method source (line 21) | def source(self, value) -> None: ... method escape_string (line 22) | def escape_string(self, value, is_path: bool = False): ... method _saferefenv (line 23) | def _saferefenv(self, key) -> None: ... function register_plugin (line 25) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/tcsh.pyi class TCSH (line 3) | class TCSH(CSH): method name (line 5) | def name(cls) -> str: ... method escape_string (line 6) | def escape_string(self, value, is_path: bool = False): ... method _bind_interactive_rez (line 7) | def _bind_interactive_rez(self) -> None: ... function register_plugin (line 9) | def register_plugin(): ... FILE: rez/stubs/rezplugins-stubs/shell/zsh.pyi class Zsh (line 3) | class Zsh(SH): method name (line 7) | def name(cls) -> str: ... method startup_capabilities (line 9) | def startup_capabilities(cls, rcfile: bool = False, norc: bool = False... method get_startup_sequence (line 11) | def get_startup_sequence(cls, rcfile, norc, stdin, command): ... method _bind_interactive_rez (line 12) | def _bind_interactive_rez(self) -> None: ... function register_plugin (line 14) | def register_plugin(): ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/certifi/core.pyi function exit_cacert_ctx (line 3) | def exit_cacert_ctx() -> None: ... function where (line 8) | def where() -> str: ... function contents (line 9) | def contents() -> str: ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/httplib2/__init__.pyi class Authentication (line 11) | class Authentication: method __init__ (line 16) | def __init__(self, credentials, host, request_uri, headers, response, ... method depth (line 17) | def depth(self, request_uri): ... method inscope (line 18) | def inscope(self, host, request_uri): ... method request (line 19) | def request(self, method, request_uri, headers, content) -> None: method response (line 22) | def response(self, response, content): method __eq__ (line 30) | def __eq__(self, auth): ... method __ne__ (line 31) | def __ne__(self, auth): ... method __lt__ (line 32) | def __lt__(self, auth): ... method __gt__ (line 33) | def __gt__(self, auth): ... method __le__ (line 34) | def __le__(self, auth): ... method __ge__ (line 35) | def __ge__(self, auth): ... method __bool__ (line 36) | def __bool__(self) -> bool: ... class BasicAuthentication (line 38) | class BasicAuthentication(Authentication): method __init__ (line 39) | def __init__(self, credentials, host, request_uri, headers, response, ... method request (line 40) | def request(self, method, request_uri, headers, content) -> None: class DigestAuthentication (line 44) | class DigestAuthentication(Authentication): method __init__ (line 49) | def __init__(self, credentials, host, request_uri, headers, response, ... method request (line 50) | def request(self, method, request_uri, headers, content, cnonce=None): method response (line 52) | def response(self, response, content): ... class HmacDigestAuthentication (line 54) | class HmacDigestAuthentication(Authentication): method __init__ (line 61) | def __init__(self, credentials, host, request_uri, headers, response, ... method request (line 62) | def request(self, method, request_uri, headers, content) -> None: method response (line 64) | def response(self, response, content): ... class WsseAuthentication (line 66) | class WsseAuthentication(Authentication): method __init__ (line 74) | def __init__(self, credentials, host, request_uri, headers, response, ... method request (line 75) | def request(self, method, request_uri, headers, content) -> None: class GoogleLoginAuthentication (line 79) | class GoogleLoginAuthentication(Authentication): method __init__ (line 81) | def __init__(self, credentials, host, request_uri, headers, response, ... method request (line 82) | def request(self, method, request_uri, headers, content) -> None: class FileCache (line 86) | class FileCache: method __init__ (line 93) | def __init__(self, cache, safe=...) -> None: ... method get (line 94) | def get(self, key): ... method set (line 95) | def set(self, key, value) -> None: ... method delete (line 96) | def delete(self, key) -> None: ... class Credentials (line 98) | class Credentials: method __init__ (line 100) | def __init__(self) -> None: ... method add (line 101) | def add(self, name, password, domain: str = '') -> None: ... method clear (line 102) | def clear(self) -> None: ... method iter (line 103) | def iter(self, domain) -> Generator[Incomplete]: ... class KeyCerts (line 105) | class KeyCerts(Credentials): method add (line 108) | def add(self, key, cert, domain, password) -> None: ... # type: ignor... method iter (line 109) | def iter(self, domain) -> Generator[Incomplete]: ... class AllHosts (line 111) | class AllHosts: ... class ProxyInfo (line 113) | class ProxyInfo: method __init__ (line 116) | def __init__(self, proxy_type, proxy_host, proxy_port, proxy_rdns: boo... method astuple (line 134) | def astuple(self): ... method isgood (line 135) | def isgood(self): ... method applies_to (line 136) | def applies_to(self, hostname): ... method bypass_host (line 137) | def bypass_host(self, hostname): method __repr__ (line 139) | def __repr__(self) -> str: ... class HTTPConnectionWithTimeout (line 141) | class HTTPConnectionWithTimeout(http.client.HTTPConnection): method __init__ (line 152) | def __init__(self, host, port=None, timeout=None, proxy_info=None) -> ... method connect (line 154) | def connect(self) -> None: class HTTPSConnectionWithTimeout (line 157) | class HTTPSConnectionWithTimeout(http.client.HTTPSConnection): method __init__ (line 171) | def __init__(self, host, port=None, key_file=None, cert_file=None, tim... method connect (line 173) | def connect(self) -> None: class Http (line 176) | class Http: method __init__ (line 209) | def __init__(self, cache=None, timeout=None, proxy_info=..., ca_certs=... method close (line 236) | def close(self) -> None: method __getstate__ (line 240) | def __getstate__(self): ... method __setstate__ (line 241) | def __setstate__(self, state) -> None: ... method _auth_from_challenge (line 242) | def _auth_from_challenge(self, host, request_uri, headers, response, c... method add_credentials (line 246) | def add_credentials(self, name, password, domain: str = '') -> None: method add_certificate (line 249) | def add_certificate(self, key, cert, domain, password=None) -> None: method clear_credentials (line 252) | def clear_credentials(self) -> None: method _conn_request (line 255) | def _conn_request(self, conn, request_uri, method, body, headers): ... method _request (line 256) | def _request(self, conn, host, absolute_uri, request_uri, method, body... method _normalize_headers (line 259) | def _normalize_headers(self, headers): ... method request (line 260) | def request(self, uri, method: str = 'GET', body=None, headers=None, r... class Response (line 282) | class Response(dict): method __init__ (line 289) | def __init__(self, info) -> None: ... method __getattr__ (line 290) | def __getattr__(self, name): ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/httplib2/auth.pyi function _parse_authentication_info (line 19) | def _parse_authentication_info(headers, headername: str = 'authenticatio... function _parse_www_authenticate (line 22) | def _parse_www_authenticate(headers, headername: str = 'www-authenticate'): FILE: shotgun/stubs/shotgun_api3-stubs/lib/httplib2/certs.pyi function where (line 9) | def where(): ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/httplib2/error.pyi class HttpLib2Error (line 3) | class HttpLib2Error(Exception): ... class HttpLib2ErrorWithResponse (line 5) | class HttpLib2ErrorWithResponse(HttpLib2Error): method __init__ (line 8) | def __init__(self, desc, response, content) -> None: ... class RedirectMissingLocation (line 10) | class RedirectMissingLocation(HttpLib2ErrorWithResponse): ... class RedirectLimit (line 11) | class RedirectLimit(HttpLib2ErrorWithResponse): ... class FailedToDecompressContent (line 12) | class FailedToDecompressContent(HttpLib2ErrorWithResponse): ... class UnimplementedDigestAuthOptionError (line 13) | class UnimplementedDigestAuthOptionError(HttpLib2ErrorWithResponse): ... class UnimplementedHmacDigestAuthOptionError (line 14) | class UnimplementedHmacDigestAuthOptionError(HttpLib2ErrorWithResponse):... class MalformedHeader (line 15) | class MalformedHeader(HttpLib2Error): ... class RelativeURIError (line 16) | class RelativeURIError(HttpLib2Error): ... class ServerNotFoundError (line 17) | class ServerNotFoundError(HttpLib2Error): ... class ProxiesUnavailableError (line 18) | class ProxiesUnavailableError(HttpLib2Error): ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/httplib2/iri2uri.pyi function encode (line 10) | def encode(c): ... function iri2uri (line 11) | def iri2uri(uri): FILE: shotgun/stubs/shotgun_api3-stubs/lib/httplib2/socks.pyi class ProxyError (line 11) | class ProxyError(Exception): ... class GeneralProxyError (line 12) | class GeneralProxyError(ProxyError): ... class Socks5AuthError (line 13) | class Socks5AuthError(ProxyError): ... class Socks5Error (line 14) | class Socks5Error(ProxyError): ... class Socks4Error (line 15) | class Socks4Error(ProxyError): ... class HTTPError (line 16) | class HTTPError(ProxyError): ... function setdefaultproxy (line 23) | def setdefaultproxy(proxytype=None, addr=None, port=None, rdns: bool = T... function wrapmodule (line 28) | def wrapmodule(module) -> None: class socksocket (line 38) | class socksocket(socket.socket): method __init__ (line 48) | def __init__(self, family=..., type=..., proto: int = 0, _sock=None) -... method __recvall (line 49) | def __recvall(self, count): method sendall (line 54) | def sendall(self, content, *args): method __rewriteproxy (line 58) | def __rewriteproxy(self, header): method __getauthheader (line 63) | def __getauthheader(self): ... method setproxy (line 64) | def setproxy(self, proxytype=None, addr=None, port=None, rdns: bool = ... method __negotiatesocks5 (line 84) | def __negotiatesocks5(self, destaddr, destport) -> None: method getproxysockname (line 88) | def getproxysockname(self): method getproxypeername (line 92) | def getproxypeername(self): method getpeername (line 96) | def getpeername(self): method __negotiatesocks4 (line 101) | def __negotiatesocks4(self, destaddr, destport) -> None: method __negotiatehttp (line 105) | def __negotiatehttp(self, destaddr, destport) -> None: method connect (line 109) | def connect(self, destpair) -> None: FILE: shotgun/stubs/shotgun_api3-stubs/lib/mimetypes.pyi class MimeTypes (line 5) | class MimeTypes: method __init__ (line 16) | def __init__(self, filenames=(), strict: bool = True) -> None: ... method add_type (line 17) | def add_type(self, type, ext, strict: bool = True) -> None: method guess_type (line 29) | def guess_type(self, url, strict: bool = True): method guess_all_extensions (line 48) | def guess_all_extensions(self, type, strict: bool = True): method guess_extension (line 59) | def guess_extension(self, type, strict: bool = True): method read (line 72) | def read(self, filename, strict: bool = True) -> None: method readfp (line 80) | def readfp(self, fp, strict: bool = True) -> None: method read_windows_registry (line 88) | def read_windows_registry(self, strict: bool = True) -> None: function guess_type (line 97) | def guess_type(url, strict: bool = True): function guess_all_extensions (line 115) | def guess_all_extensions(type, strict: bool = True): function guess_extension (line 128) | def guess_extension(type, strict: bool = True): function add_type (line 140) | def add_type(type, ext, strict: bool = True): function init (line 152) | def init(files=None) -> None: ... function read_mime_types (line 153) | def read_mime_types(file): ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/mockgun/errors.pyi class MockgunError (line 1) | class MockgunError(Exception): FILE: shotgun/stubs/shotgun_api3-stubs/lib/mockgun/mockgun.pyi class Shotgun (line 10) | class Shotgun: method set_schema_paths (line 28) | def set_schema_paths(cls, schema_path, schema_entity_path) -> None: method get_schema_paths (line 38) | def get_schema_paths(cls): method __init__ (line 49) | def __init__(self, base_url, script_name=None, api_key=None, convert_d... method get_session_token (line 50) | def get_session_token(self): ... method schema_read (line 51) | def schema_read(self): ... method schema_field_create (line 52) | def schema_field_create(self, entity_type, data_type, display_name, pr... method schema_field_update (line 53) | def schema_field_update(self, entity_type, field_name, properties) -> ... method schema_field_delete (line 54) | def schema_field_delete(self, entity_type, field_name) -> None: ... method schema_entity_read (line 55) | def schema_entity_read(self): ... method schema_field_read (line 56) | def schema_field_read(self, entity_type, field_name=None): ... method find (line 57) | def find(self, entity_type, filters, fields=None, order=None, filter_o... method find_one (line 58) | def find_one(self, entity_type, filters, fields=None, order=None, filt... method batch (line 59) | def batch(self, requests): ... method create (line 60) | def create(self, entity_type, data, return_fields=None): ... method update (line 61) | def update(self, entity_type, entity_id, data, multi_entity_update_mod... method delete (line 62) | def delete(self, entity_type, entity_id): ... method revive (line 63) | def revive(self, entity_type, entity_id): ... method upload (line 64) | def upload(self, entity_type, entity_id, path, field_name=None, displa... method upload_thumbnail (line 65) | def upload_thumbnail(self, entity_type, entity_id, path, **kwargs) -> ... method add_user_agent (line 66) | def add_user_agent(self, agent) -> None: ... method set_session_uuid (line 67) | def set_session_uuid(self, session_uuid) -> None: ... method _validate_entity_type (line 68) | def _validate_entity_type(self, entity_type) -> None: ... method _validate_entity_data (line 69) | def _validate_entity_data(self, entity_type, data) -> None: ... method _validate_entity_fields (line 70) | def _validate_entity_fields(self, entity_type, fields) -> None: ... method _get_default_value (line 71) | def _get_default_value(self, entity_type, field): ... method _get_new_row (line 72) | def _get_new_row(self, entity_type): ... method _compare (line 73) | def _compare(self, field_type: str, lval: Any, operator: str, rval: An... method _get_field_from_row (line 85) | def _get_field_from_row(self, entity_type, row, field): ... method _get_field_type (line 86) | def _get_field_type(self, entity_type, field): ... method _row_matches_filter (line 87) | def _row_matches_filter(self, entity_type, row, sg_filter, retired_onl... method _rearrange_filters (line 88) | def _rearrange_filters(self, filters: list) -> None: method _row_matches_filters (line 104) | def _row_matches_filters(self, entity_type, row, filters, filter_opera... method _update_row (line 105) | def _update_row(self, entity_type, row, data, multi_entity_update_mode... method _validate_entity_exists (line 106) | def _validate_entity_exists(self, entity_type, entity_id) -> None: ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/mockgun/schema.pyi class SchemaFactory (line 4) | class SchemaFactory: method get_schemas (line 13) | def get_schemas(cls, schema_path: str, schema_entity_path: str) -> tuple: method _read_file (line 24) | def _read_file(cls, path): ... function generate_schema (line 28) | def generate_schema(shotgun, schema_file_path, schema_entity_file_path) ... FILE: shotgun/stubs/shotgun_api3-stubs/lib/pyparsing.pyi class SimpleNamespace (line 13) | class SimpleNamespace: ... function conditionAsParseAction (line 28) | def conditionAsParseAction(fn, message=None, fatal: bool = False): ... class ParseBaseException (line 30) | class ParseBaseException(Exception): method __init__ (line 37) | def __init__(self, pstr, loc: int = 0, msg=None, elem=None) -> None: ... method _from_exception (line 39) | def _from_exception(cls, pe): method __getattr__ (line 44) | def __getattr__(self, aname): method __str__ (line 50) | def __str__(self) -> str: ... method __repr__ (line 51) | def __repr__(self) -> str: ... method markInputline (line 52) | def markInputline(self, markerString: str = '>!<'): method __dir__ (line 56) | def __dir__(self): ... class ParseException (line 58) | class ParseException(ParseBaseException): method explain (line 81) | def explain(exc, depth: int = 16): class ParseFatalException (line 105) | class ParseFatalException(ParseBaseException): class ParseSyntaxException (line 108) | class ParseSyntaxException(ParseFatalException): class RecursiveGrammarException (line 115) | class RecursiveGrammarException(Exception): method __init__ (line 120) | def __init__(self, parseElementList) -> None: ... method __str__ (line 121) | def __str__(self) -> str: ... class _ParseResultsWithOffset (line 123) | class _ParseResultsWithOffset: method __init__ (line 125) | def __init__(self, p1, p2) -> None: ... method __getitem__ (line 126) | def __getitem__(self, i): ... method __repr__ (line 127) | def __repr__(self) -> str: ... method setOffset (line 128) | def setOffset(self, i) -> None: ... class ParseResults (line 130) | class ParseResults: method __new__ (line 173) | def __new__(cls, toklist=None, name=None, asList: bool = True, modal: ... method __init__ (line 182) | def __init__(self, toklist=None, name=None, asList: bool = True, modal... method __getitem__ (line 183) | def __getitem__(self, i): ... method __setitem__ (line 184) | def __setitem__(self, k, v, isinstance=...) -> None: ... method __delitem__ (line 185) | def __delitem__(self, i) -> None: ... method __contains__ (line 186) | def __contains__(self, k) -> bool: ... method __len__ (line 187) | def __len__(self) -> int: ... method __bool__ (line 188) | def __bool__(self) -> bool: ... method __iter__ (line 190) | def __iter__(self): ... method __reversed__ (line 191) | def __reversed__(self): ... method _iterkeys (line 192) | def _iterkeys(self): ... method _itervalues (line 193) | def _itervalues(self): ... method _iteritems (line 194) | def _iteritems(self): ... method keys (line 201) | def keys(self): # type: ignore[no-redef] method values (line 203) | def values(self): # type: ignore[no-redef] method items (line 205) | def items(self): # type: ignore[no-redef] method haskeys (line 207) | def haskeys(self): method pop (line 210) | def pop(self, *args, **kwargs): method get (line 247) | def get(self, key, defaultValue=None): method insert (line 265) | def insert(self, index, insStr) -> None: method append (line 280) | def append(self, item) -> None: method extend (line 293) | def extend(self, itemseq) -> None: method clear (line 307) | def clear(self) -> None: method __getattr__ (line 311) | def __getattr__(self, name): ... method __add__ (line 312) | def __add__(self, other): ... method __iadd__ (line 313) | def __iadd__(self, other): ... method __radd__ (line 314) | def __radd__(self, other): ... method __repr__ (line 315) | def __repr__(self) -> str: ... method __str__ (line 316) | def __str__(self) -> str: ... method _asStringList (line 317) | def _asStringList(self, sep: str = ''): ... method asList (line 318) | def asList(self): method asDict (line 333) | def asDict(self): method copy (line 353) | def copy(self): method asXML (line 357) | def asXML(self, doctag=None, namedItemsOnly: bool = False, indent: str... method __lookup (line 361) | def __lookup(self, sub): ... method getName (line 362) | def getName(self): method dump (line 387) | def dump(self, indent: str = '', full: bool = True, include_list: bool... method pprint (line 408) | def pprint(self, *args, **kwargs) -> None: method __getstate__ (line 433) | def __getstate__(self): ... method __setstate__ (line 434) | def __setstate__(self, state) -> None: ... method __getnewargs__ (line 435) | def __getnewargs__(self): ... method __dir__ (line 436) | def __dir__(self): ... method from_dict (line 438) | def from_dict(cls, other, name=None): function col (line 445) | def col(loc, strg): function lineno (line 456) | def lineno(loc, strg): function line (line 466) | def line(loc, strg): function nullDebugAction (line 469) | def nullDebugAction(*args) -> None: class ParserElement (line 472) | class ParserElement: method setDefaultWhitespaceChars (line 477) | def setDefaultWhitespaceChars(chars) -> None: method inlineLiteralsUsing (line 491) | def inlineLiteralsUsing(cls) -> None: method _trim_traceback (line 511) | def _trim_traceback(cls, tb): ... method __init__ (line 532) | def __init__(self, savelist: bool = False) -> None: ... method copy (line 533) | def copy(self): method setName (line 556) | def setName(self, name): method setResultsName (line 565) | def setResultsName(self, name, listAllMatches: bool = False): method _setResultsName (line 586) | def _setResultsName(self, name, listAllMatches: bool = False): ... method setBreak (line 588) | def setBreak(self, breakFlag: bool = True): method setParseAction (line 593) | def setParseAction(self, *fns, **kwargs): method addParseAction (line 633) | def addParseAction(self, *fns, **kwargs): method addCondition (line 639) | def addCondition(self, *fns, **kwargs): method setFailAction (line 657) | def setFailAction(self, fn): method _skipIgnorables (line 667) | def _skipIgnorables(self, instring, loc): ... method preParse (line 668) | def preParse(self, instring, loc): ... method parseImpl (line 669) | def parseImpl(self, instring, loc, doActions: bool = True): ... method postParse (line 670) | def postParse(self, instring, loc, tokenlist): ... method _parseNoCache (line 671) | def _parseNoCache(self, instring, loc, doActions: bool = True, callPre... method tryParse (line 672) | def tryParse(self, instring, loc): ... method canParseNext (line 673) | def canParseNext(self, instring, loc): ... class _UnboundedCache (line 674) | class _UnboundedCache: method __init__ (line 680) | def __init__(self) -> None: ... class _FifoCache (line 681) | class _FifoCache: method __init__ (line 687) | def __init__(self, size) -> None: ... method __init__ (line 694) | def __init__(self, size) -> None: ... class _FifoCache (line 688) | class _FifoCache: # type: ignore[no-redef] method __init__ (line 687) | def __init__(self, size) -> None: ... method __init__ (line 694) | def __init__(self, size) -> None: ... method _parseCache (line 698) | def _parseCache(self, instring, loc, doActions: bool = True, callPrePa... method resetCache (line 701) | def resetCache() -> None: ... method enablePackrat (line 704) | def enablePackrat(cache_size_limit: int = 128) -> None: method parseString (line 730) | def parseString(self, instring, parseAll: bool = False): method scanString (line 763) | def scanString(self, instring, maxMatches=..., overlap: bool = False) ... method transformString (line 794) | def transformString(self, instring): method searchString (line 814) | def searchString(self, instring, maxMatches=...): method split (line 835) | def split(self, instring, maxsplit=..., includeSeparators: bool = Fals... method __add__ (line 851) | def __add__(self, other): method __radd__ (line 878) | def __radd__(self, other): method __sub__ (line 882) | def __sub__(self, other): method __rsub__ (line 886) | def __rsub__(self, other): method __mul__ (line 890) | def __mul__(self, other): method __rmul__ (line 910) | def __rmul__(self, other): ... method __or__ (line 911) | def __or__(self, other): method __ror__ (line 915) | def __ror__(self, other): method __xor__ (line 919) | def __xor__(self, other): method __rxor__ (line 923) | def __rxor__(self, other): method __and__ (line 927) | def __and__(self, other): method __rand__ (line 931) | def __rand__(self, other): method __invert__ (line 935) | def __invert__(self): method __iter__ (line 939) | def __iter__(self): ... method __getitem__ (line 940) | def __getitem__(self, key): method __call__ (line 958) | def __call__(self, name=None): method suppress (line 973) | def suppress(self): method leaveWhitespace (line 978) | def leaveWhitespace(self): method setWhitespaceChars (line 984) | def setWhitespaceChars(self, chars): method parseWithTabs (line 988) | def parseWithTabs(self): method ignore (line 994) | def ignore(self, other): method setDebugActions (line 1008) | def setDebugActions(self, startAction, successAction, exceptionAction): method setDebug (line 1012) | def setDebug(self, flag: bool = True): method __str__ (line 1049) | def __str__(self) -> str: ... method __repr__ (line 1050) | def __repr__(self) -> str: ... method streamline (line 1051) | def streamline(self): ... method checkRecursion (line 1052) | def checkRecursion(self, parseElementList) -> None: ... method validate (line 1053) | def validate(self, validateTrace=None) -> None: method parseFile (line 1057) | def parseFile(self, file_or_filename, parseAll: bool = False): method __eq__ (line 1063) | def __eq__(self, other): ... method __ne__ (line 1064) | def __ne__(self, other): ... method __hash__ (line 1065) | def __hash__(self): ... method __req__ (line 1066) | def __req__(self, other): ... method __rne__ (line 1067) | def __rne__(self, other): ... method matches (line 1068) | def matches(self, testString, parseAll: bool = True): method runTests (line 1082) | def runTests(self, tests, parseAll: bool = True, comment: str = '#', f... class _PendingSkip (line 1177) | class _PendingSkip(ParserElement): method __init__ (line 1182) | def __init__(self, expr, must_skip: bool = False) -> None: ... method __add__ (line 1183) | def __add__(self, other): ... method __repr__ (line 1184) | def __repr__(self) -> str: ... method parseImpl (line 1185) | def parseImpl(self, *args) -> None: ... class Token (line 1187) | class Token(ParserElement): method __init__ (line 1191) | def __init__(self) -> None: ... class Empty (line 1193) | class Empty(Token): method __init__ (line 1199) | def __init__(self) -> None: ... class NoMatch (line 1201) | class NoMatch(Token): method __init__ (line 1208) | def __init__(self) -> None: ... method parseImpl (line 1209) | def parseImpl(self, instring, loc, doActions: bool = True) -> None: ... class Literal (line 1211) | class Literal(Token): method __init__ (line 1233) | def __init__(self, matchString) -> None: ... method parseImpl (line 1234) | def parseImpl(self, instring, loc, doActions: bool = True): ... class _SingleCharLiteral (line 1236) | class _SingleCharLiteral(Literal): method parseImpl (line 1237) | def parseImpl(self, instring, loc, doActions: bool = True): ... class Keyword (line 1240) | class Keyword(Token): method __init__ (line 1276) | def __init__(self, matchString, identChars=None, caseless: bool = Fals... method parseImpl (line 1277) | def parseImpl(self, instring, loc, doActions: bool = True): ... method copy (line 1278) | def copy(self): ... method setDefaultKeywordChars (line 1280) | def setDefaultKeywordChars(chars) -> None: class CaselessLiteral (line 1284) | class CaselessLiteral(Literal): method __init__ (line 1298) | def __init__(self, matchString) -> None: ... method parseImpl (line 1299) | def parseImpl(self, instring, loc, doActions: bool = True): ... class CaselessKeyword (line 1301) | class CaselessKeyword(Keyword): method __init__ (line 1311) | def __init__(self, matchString, identChars=None) -> None: ... class CloseMatch (line 1313) | class CloseMatch(Token): method __init__ (line 1352) | def __init__(self, match_string, maxMismatches: int = 1) -> None: ... method parseImpl (line 1353) | def parseImpl(self, instring, loc, doActions: bool = True): ... class Word (line 1355) | class Word(Token): method __init__ (line 1423) | def __init__(self, initChars, bodyChars=None, min: int = 1, max: int =... method parseImpl (line 1424) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 1426) | def __str__(self) -> str: ... class _WordRegex (line 1428) | class _WordRegex(Word): method parseImpl (line 1429) | def parseImpl(self, instring, loc, doActions: bool = True): ... class Char (line 1431) | class Char(_WordRegex): method __init__ (line 1439) | def __init__(self, charset, asKeyword: bool = False, excludeChars=None... class Regex (line 1441) | class Regex(Token): method __init__ (line 1476) | def __init__(self, pattern, flags: int = 0, asGroupList: bool = False,... method parseImpl (line 1482) | def parseImpl(self, instring, loc, doActions: bool = True): ... method parseImplAsGroupList (line 1483) | def parseImplAsGroupList(self, instring, loc, doActions: bool = True):... method parseImplAsMatch (line 1484) | def parseImplAsMatch(self, instring, loc, doActions: bool = True): ... method __str__ (line 1486) | def __str__(self) -> str: ... method sub (line 1487) | def sub(self, repl): class QuotedString (line 1499) | class QuotedString(Token): method __init__ (line 1557) | def __init__(self, quoteChar, escChar=None, escQuote=None, multiline: ... method parseImpl (line 1558) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 1560) | def __str__(self) -> str: ... class CharsNotIn (line 1562) | class CharsNotIn(Token): method __init__ (line 1590) | def __init__(self, notChars, min: int = 1, max: int = 0, exact: int = ... method parseImpl (line 1591) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 1593) | def __str__(self) -> str: ... class White (line 1595) | class White(Token): method __init__ (line 1611) | def __init__(self, ws: str = ' \t\r\n', min: int = 1, max: int = 0, ex... method parseImpl (line 1612) | def parseImpl(self, instring, loc, doActions: bool = True): ... class _PositionToken (line 1614) | class _PositionToken(Token): method __init__ (line 1618) | def __init__(self) -> None: ... class GoToColumn (line 1620) | class GoToColumn(_PositionToken): method __init__ (line 1625) | def __init__(self, colno) -> None: ... method preParse (line 1626) | def preParse(self, instring, loc): ... method parseImpl (line 1627) | def parseImpl(self, instring, loc, doActions: bool = True): ... class LineStart (line 1629) | class LineStart(_PositionToken): method __init__ (line 1651) | def __init__(self) -> None: ... method parseImpl (line 1652) | def parseImpl(self, instring, loc, doActions: bool = True): ... class LineEnd (line 1654) | class LineEnd(_PositionToken): method __init__ (line 1659) | def __init__(self) -> None: ... method parseImpl (line 1660) | def parseImpl(self, instring, loc, doActions: bool = True): ... class StringStart (line 1662) | class StringStart(_PositionToken): method __init__ (line 1667) | def __init__(self) -> None: ... method parseImpl (line 1668) | def parseImpl(self, instring, loc, doActions: bool = True): ... class StringEnd (line 1670) | class StringEnd(_PositionToken): method __init__ (line 1674) | def __init__(self) -> None: ... method parseImpl (line 1675) | def parseImpl(self, instring, loc, doActions: bool = True): ... class WordStart (line 1677) | class WordStart(_PositionToken): method __init__ (line 1688) | def __init__(self, wordChars=...) -> None: ... method parseImpl (line 1689) | def parseImpl(self, instring, loc, doActions: bool = True): ... class WordEnd (line 1691) | class WordEnd(_PositionToken): method __init__ (line 1702) | def __init__(self, wordChars=...) -> None: ... method parseImpl (line 1703) | def parseImpl(self, instring, loc, doActions: bool = True): ... class ParseExpression (line 1705) | class ParseExpression(ParserElement): method __init__ (line 1711) | def __init__(self, exprs, savelist: bool = False) -> None: ... method append (line 1713) | def append(self, other): ... method leaveWhitespace (line 1715) | def leaveWhitespace(self): method ignore (line 1718) | def ignore(self, other): ... method __str__ (line 1719) | def __str__(self) -> str: ... method streamline (line 1721) | def streamline(self): ... method validate (line 1722) | def validate(self, validateTrace=None) -> None: ... method copy (line 1723) | def copy(self): ... method _setResultsName (line 1724) | def _setResultsName(self, name, listAllMatches: bool = False): ... class And (line 1726) | class And(ParseExpression): class _ErrorStop (line 1743) | class _ErrorStop(Empty): method __init__ (line 1745) | def __init__(self, *args, **kwargs) -> None: ... method __init__ (line 1749) | def __init__(self, exprs, savelist: bool = True) -> None: ... method streamline (line 1751) | def streamline(self): ... method parseImpl (line 1752) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __iadd__ (line 1753) | def __iadd__(self, other): ... method checkRecursion (line 1754) | def checkRecursion(self, parseElementList) -> None: ... method __str__ (line 1756) | def __str__(self) -> str: ... class Or (line 1758) | class Or(ParseExpression): method __init__ (line 1776) | def __init__(self, exprs, savelist: bool = False) -> None: ... method streamline (line 1778) | def streamline(self): ... method parseImpl (line 1779) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __ixor__ (line 1780) | def __ixor__(self, other): ... method __str__ (line 1782) | def __str__(self) -> str: ... method checkRecursion (line 1783) | def checkRecursion(self, parseElementList) -> None: ... method _setResultsName (line 1784) | def _setResultsName(self, name, listAllMatches: bool = False): ... class MatchFirst (line 1786) | class MatchFirst(ParseExpression): method __init__ (line 1804) | def __init__(self, exprs, savelist: bool = False) -> None: ... method streamline (line 1806) | def streamline(self): ... method parseImpl (line 1807) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __ior__ (line 1808) | def __ior__(self, other): ... method __str__ (line 1810) | def __str__(self) -> str: ... method checkRecursion (line 1811) | def checkRecursion(self, parseElementList) -> None: ... method _setResultsName (line 1812) | def _setResultsName(self, name, listAllMatches: bool = False): ... class Each (line 1814) | class Each(ParseExpression): method __init__ (line 1875) | def __init__(self, exprs, savelist: bool = True) -> None: ... method streamline (line 1876) | def streamline(self): ... method parseImpl (line 1882) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 1884) | def __str__(self) -> str: ... method checkRecursion (line 1885) | def checkRecursion(self, parseElementList) -> None: ... class ParseElementEnhance (line 1887) | class ParseElementEnhance(ParserElement): method __init__ (line 1898) | def __init__(self, expr, savelist: bool = False) -> None: ... method parseImpl (line 1899) | def parseImpl(self, instring, loc, doActions: bool = True): ... method leaveWhitespace (line 1900) | def leaveWhitespace(self): ... method ignore (line 1901) | def ignore(self, other): ... method streamline (line 1902) | def streamline(self): ... method checkRecursion (line 1903) | def checkRecursion(self, parseElementList) -> None: ... method validate (line 1904) | def validate(self, validateTrace=None) -> None: ... method __str__ (line 1905) | def __str__(self) -> str: ... class FollowedBy (line 1907) | class FollowedBy(ParseElementEnhance): method __init__ (line 1930) | def __init__(self, expr) -> None: ... method parseImpl (line 1931) | def parseImpl(self, instring, loc, doActions: bool = True): ... class PrecededBy (line 1933) | class PrecededBy(ParseElementEnhance): method __init__ (line 1968) | def __init__(self, expr, retreat=None) -> None: ... method parseImpl (line 1969) | def parseImpl(self, instring, loc: int = 0, doActions: bool = True): ... class NotAny (line 1971) | class NotAny(ParseElementEnhance): method __init__ (line 1997) | def __init__(self, expr) -> None: ... method parseImpl (line 1998) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 2000) | def __str__(self) -> str: ... class _MultipleMatch (line 2002) | class _MultipleMatch(ParseElementEnhance): method __init__ (line 2004) | def __init__(self, expr, stopOn=None) -> None: ... method stopOn (line 2006) | def stopOn(self, ender): ... method parseImpl (line 2007) | def parseImpl(self, instring, loc, doActions: bool = True): ... method _setResultsName (line 2008) | def _setResultsName(self, name, listAllMatches: bool = False): ... class OneOrMore (line 2010) | class OneOrMore(_MultipleMatch): method __str__ (line 2036) | def __str__(self) -> str: ... class ZeroOrMore (line 2038) | class ZeroOrMore(_MultipleMatch): method __init__ (line 2050) | def __init__(self, expr, stopOn=None) -> None: ... method parseImpl (line 2051) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 2053) | def __str__(self) -> str: ... class _NullToken (line 2055) | class _NullToken: method __bool__ (line 2056) | def __bool__(self) -> bool: ... method __str__ (line 2058) | def __str__(self) -> str: ... class Optional (line 2060) | class Optional(ParseElementEnhance): method __init__ (line 2101) | def __init__(self, expr, default=...) -> None: ... method parseImpl (line 2102) | def parseImpl(self, instring, loc, doActions: bool = True): ... method __str__ (line 2104) | def __str__(self) -> str: ... class SkipTo (line 2106) | class SkipTo(ParseElementEnhance): method __init__ (line 2171) | def __init__(self, other, include: bool = False, ignore=None, failOn=N... method parseImpl (line 2172) | def parseImpl(self, instring, loc, doActions: bool = True): ... class Forward (line 2174) | class Forward(ParseElementEnhance): method __init__ (line 2201) | def __init__(self, other=None) -> None: ... method __lshift__ (line 2208) | def __lshift__(self, other): ... method __ilshift__ (line 2209) | def __ilshift__(self, other): ... method leaveWhitespace (line 2210) | def leaveWhitespace(self): ... method streamline (line 2212) | def streamline(self): ... method validate (line 2213) | def validate(self, validateTrace=None) -> None: ... method __str__ (line 2214) | def __str__(self) -> str: ... method copy (line 2215) | def copy(self): ... method _setResultsName (line 2216) | def _setResultsName(self, name, listAllMatches: bool = False): ... class TokenConverter (line 2218) | class TokenConverter(ParseElementEnhance): method __init__ (line 2223) | def __init__(self, expr, savelist: bool = False) -> None: ... class Combine (line 2225) | class Combine(TokenConverter): method __init__ (line 2247) | def __init__(self, expr, joinString: str = '', adjacent: bool = True) ... method ignore (line 2248) | def ignore(self, other): ... method postParse (line 2249) | def postParse(self, instring, loc, tokenlist): ... class Group (line 2251) | class Group(TokenConverter): method __init__ (line 2267) | def __init__(self, expr) -> None: ... method postParse (line 2268) | def postParse(self, instring, loc, tokenlist): ... class Dict (line 2270) | class Dict(TokenConverter): method __init__ (line 2310) | def __init__(self, expr) -> None: ... method postParse (line 2311) | def postParse(self, instring, loc, tokenlist): ... class Suppress (line 2313) | class Suppress(TokenConverter): method postParse (line 2335) | def postParse(self, instring, loc, tokenlist): ... method suppress (line 2336) | def suppress(self): ... class OnlyOnce (line 2338) | class OnlyOnce: method __init__ (line 2343) | def __init__(self, methodCall) -> None: ... method __call__ (line 2344) | def __call__(self, s, l, t): ... method reset (line 2345) | def reset(self) -> None: ... function traceParseAction (line 2347) | def traceParseAction(f): function delimitedList (line 2372) | def delimitedList(expr, delim: str = ',', combine: bool = False): function countedArray (line 2387) | def countedArray(expr, intExpr=None): function matchPreviousLiteral (line 2410) | def matchPreviousLiteral(expr): function matchPreviousExpr (line 2425) | def matchPreviousExpr(expr): function oneOf (line 2440) | def oneOf(strs, caseless: bool = False, useRegex: bool = True, asKeyword... function dictOf (line 2472) | def dictOf(key, value): function originalTextFor (line 2509) | def originalTextFor(expr, asString: bool = True): function ungroup (line 2538) | def ungroup(expr): function locatedExpr (line 2542) | def locatedExpr(expr): function srange (line 2574) | def srange(s): function matchOnlyAtCol (line 2600) | def matchOnlyAtCol(n): function replaceWith (line 2604) | def replaceWith(replStr): function removeQuotes (line 2617) | def removeQuotes(s, l, t): function tokenMap (line 2630) | def tokenMap(func, *args): function makeHTMLTags (line 2670) | def makeHTMLTags(tagStr): function makeXMLTags (line 2692) | def makeXMLTags(tagStr): function withAttribute (line 2698) | def withAttribute(*args, **attrDict): function withClass (line 2754) | def withClass(classname, namespace: str = ''): function infixNotation (line 2792) | def infixNotation(baseExpr, opList, lpar=..., rpar=...): function nestedExpr (line 2869) | def nestedExpr(opener: str = '(', closer: str = ')', content=None, ignor... function indentedBlock (line 2934) | def indentedBlock(blockStatementExpr, indentStack, indent: bool = True): function replaceHTMLEntity (line 3022) | def replaceHTMLEntity(t): class pyparsing_common (line 3034) | class pyparsing_common: method convertToDate (line 3198) | def convertToDate(fmt: str = '%Y-%m-%d'): method convertToDatetime (line 3216) | def convertToDatetime(fmt: str = '%Y-%m-%dT%H:%M:%S.%f'): method stripHTMLTags (line 3238) | def stripHTMLTags(s, l, tokens): class _lazyclassproperty (line 3258) | class _lazyclassproperty: method __init__ (line 3262) | def __init__(self, fn) -> None: ... method __get__ (line 3263) | def __get__(self, obj, cls): ... class unicode_set (line 3265) | class unicode_set: method _get_chars_for_ranges (line 3281) | def _get_chars_for_ranges(cls): ... method printables (line 3283) | def printables(cls): method alphas (line 3286) | def alphas(cls): method nums (line 3289) | def nums(cls): method alphanums (line 3292) | def alphanums(cls): class pyparsing_unicode (line 3295) | class pyparsing_unicode(unicode_set): class Latin1 (line 3300) | class Latin1(unicode_set): class LatinA (line 3303) | class LatinA(unicode_set): class LatinB (line 3306) | class LatinB(unicode_set): class Greek (line 3309) | class Greek(unicode_set): class Cyrillic (line 3312) | class Cyrillic(unicode_set): class Chinese (line 3315) | class Chinese(unicode_set): class Japanese (line 3318) | class Japanese(unicode_set): class Kanji (line 3321) | class Kanji(unicode_set): class Hiragana (line 3324) | class Hiragana(unicode_set): class Katakana (line 3327) | class Katakana(unicode_set): class Korean (line 3330) | class Korean(unicode_set): class CJK (line 3333) | class CJK(Chinese, Japanese, Korean): class Thai (line 3335) | class Thai(unicode_set): class Arabic (line 3338) | class Arabic(unicode_set): class Hebrew (line 3341) | class Hebrew(unicode_set): class Devanagari (line 3344) | class Devanagari(unicode_set): class pyparsing_test (line 3348) | class pyparsing_test: class reset_pyparsing_context (line 3352) | class reset_pyparsing_context: method __init__ (line 3375) | def __init__(self) -> None: ... method save (line 3376) | def save(self): ... method restore (line 3377) | def restore(self) -> None: ... method __enter__ (line 3378) | def __enter__(self): ... method __exit__ (line 3379) | def __exit__(self, *args): ... class TestParseResultsAsserts (line 3380) | class TestParseResultsAsserts: method assertParseResultsEquals (line 3384) | def assertParseResultsEquals(self, result, expected_list=None, expec... method assertParseAndCheckList (line 3389) | def assertParseAndCheckList(self, expr, test_string, expected_list, ... method assertParseAndCheckDict (line 3394) | def assertParseAndCheckDict(self, expr, test_string, expected_dict, ... method assertRunTestResults (line 3399) | def assertRunTestResults(self, run_tests_report, expected_parse_resu... method assertRaisesParseException (line 3410) | def assertRaisesParseException(self, exc_type=..., msg=None) -> Gene... FILE: shotgun/stubs/shotgun_api3-stubs/lib/sgsix.pyi function normalize_platform (line 7) | def normalize_platform(platform: str, python2: bool = True) -> str: FILE: shotgun/stubs/shotgun_api3-stubs/lib/sgtimezone.pyi class SgTimezone (line 4) | class SgTimezone: method __init__ (line 17) | def __init__(self) -> None: ... method UTC (line 19) | def UTC(cls): method LocalTimezone (line 25) | def LocalTimezone(cls): class UTC (line 31) | class UTC(tzinfo): method utcoffset (line 36) | def utcoffset(self, dt): ... method tzname (line 37) | def tzname(self, dt): ... method dst (line 38) | def dst(self, dt): ... class LocalTimezone (line 40) | class LocalTimezone(tzinfo): method utcoffset (line 45) | def utcoffset(self, dt): method dst (line 49) | def dst(self, dt): method tzname (line 53) | def tzname(self, dt): method _isdst (line 58) | def _isdst(self, dt): FILE: shotgun/stubs/shotgun_api3-stubs/lib/sgutils.pyi function ensure_binary (line 1) | def ensure_binary(s, encoding: str = 'utf-8', errors: str = 'strict') ->... function ensure_str (line 8) | def ensure_str(s, encoding: str = 'utf-8', errors: str = 'strict') -> str: FILE: shotgun/stubs/shotgun_api3-stubs/shotgun.pyi class OrderItem (line 13) | class OrderItem(TypedDict): class GroupingItem (line 17) | class GroupingItem(TypedDict): class BaseEntity (line 22) | class BaseEntity(TypedDict, total=False): function _is_mimetypes_broken (line 26) | def _is_mimetypes_broken(): class ShotgunError (line 38) | class ShotgunError(Exception): class ShotgunFileDownloadError (line 42) | class ShotgunFileDownloadError(ShotgunError): class ShotgunThumbnailNotReady (line 46) | class ShotgunThumbnailNotReady(ShotgunError): class Fault (line 50) | class Fault(ShotgunError): class AuthenticationFault (line 54) | class AuthenticationFault(Fault): class MissingTwoFactorAuthenticationFault (line 58) | class MissingTwoFactorAuthenticationFault(Fault): class UserCredentialsNotAllowedForSSOAuthenticationFault (line 63) | class UserCredentialsNotAllowedForSSOAuthenticationFault(Fault): class UserCredentialsNotAllowedForOxygenAuthenticationFault (line 68) | class UserCredentialsNotAllowedForOxygenAuthenticationFault(Fault): class ServerCapabilities (line 74) | class ServerCapabilities: method __init__ (line 87) | def __init__(self, host: str, meta: dict[str, Any]) -> None: method _ensure_python_version_supported (line 100) | def _ensure_python_version_supported(self) -> None: method _ensure_support (line 104) | def _ensure_support(self, feature: dict[str, Any], raise_hell: bool = ... method _ensure_json_supported (line 117) | def _ensure_json_supported(self) -> None: method ensure_include_archived_projects (line 121) | def ensure_include_archived_projects(self) -> None: method ensure_per_project_customization (line 125) | def ensure_per_project_customization(self) -> bool: method ensure_support_for_additional_filter_presets (line 129) | def ensure_support_for_additional_filter_presets(self) -> bool: method ensure_user_following_support (line 133) | def ensure_user_following_support(self) -> bool: method ensure_paging_info_without_counts_support (line 137) | def ensure_paging_info_without_counts_support(self): method ensure_return_image_urls_support (line 141) | def ensure_return_image_urls_support(self): method __str__ (line 145) | def __str__(self) -> str: ... class ClientCapabilities (line 147) | class ClientCapabilities: method __init__ (line 169) | def __init__(self) -> None: ... method __str__ (line 170) | def __str__(self) -> str: ... class _Config (line 172) | class _Config: method __init__ (line 204) | def __init__(self, sg: Shotgun) -> None: method set_server_params (line 208) | def set_server_params(self, base_url: str) -> None: method records_per_page (line 223) | def records_per_page(self) -> int: class Shotgun (line 228) | class Shotgun: method __init__ (line 243) | def __init__(self, base_url: str, script_name: str | None = None, api_... method _split_url (line 324) | def _split_url(self, base_url: str) -> tuple[str, str]: method server_info (line 333) | def server_info(self) -> dict[str, Any]: method server_caps (line 349) | def server_caps(self) -> ServerCapabilities: method connect (line 360) | def connect(self) -> None: method close (line 367) | def close(self) -> None: method info (line 373) | def info(self) -> dict[str, Any]: method find_one (line 402) | def find_one(self, entity_type: str, filters: list | tuple | dict[str,... method find (line 455) | def find(self, entity_type: str, filters: list | tuple | dict[str, Any... method _construct_read_parameters (line 554) | def _construct_read_parameters(self, entity_type: str, fields: list[st... method _add_project_param (line 555) | def _add_project_param(self, params: dict[str, Any], project_entity) -... method _translate_update_params (line 556) | def _translate_update_params(self, entity_type: str, entity_id: int, d... method summarize (line 557) | def summarize(self, entity_type: str, filters: list | dict[str, Any], ... method create (line 732) | def create(self, entity_type: str, data: dict[str, Any], return_fields... method update (line 768) | def update(self, entity_type: str, entity_id: int, data: dict[str, Any... method delete (line 804) | def delete(self, entity_type: str, entity_id: int) -> bool: method revive (line 823) | def revive(self, entity_type: str, entity_id: int) -> bool: method batch (line 836) | def batch(self, requests: list) -> list: method work_schedule_read (line 895) | def work_schedule_read(self, start_date: str, end_date: str, project: ... method work_schedule_update (line 946) | def work_schedule_update(self, date: str, working: bool, description: ... method follow (line 979) | def follow(self, user: dict[str, Any], entity: dict[str, Any]) -> dict... method unfollow (line 996) | def unfollow(self, user: dict[str, Any], entity: dict[str, Any]) -> di... method followers (line 1012) | def followers(self, entity: dict[str, Any]) -> list: method following (line 1029) | def following(self, user: dict[str, Any], project: dict[str, Any] | No... method schema_entity_read (line 1049) | def schema_entity_read(self, project_entity: BaseEntity | None = None)... method schema_read (line 1083) | def schema_read(self, project_entity: BaseEntity | None = None) -> dic... method schema_field_read (line 1145) | def schema_field_read(self, entity_type: str, field_name: str | None =... method schema_field_create (line 1197) | def schema_field_create(self, entity_type: str, data_type: str, displa... method schema_field_update (line 1222) | def schema_field_update(self, entity_type: str, field_name: str, prope... method schema_field_delete (line 1252) | def schema_field_delete(self, entity_type: str, field_name: str) -> bool: method add_user_agent (line 1264) | def add_user_agent(self, agent: str) -> None: method reset_user_agent (line 1275) | def reset_user_agent(self) -> None: method set_session_uuid (line 1284) | def set_session_uuid(self, session_uuid: str) -> None: method share_thumbnail (line 1296) | def share_thumbnail(self, entities: list[dict[str, Any]], thumbnail_pa... method upload_thumbnail (line 1342) | def upload_thumbnail(self, entity_type: str, entity_id: int, path: str... method upload_filmstrip_thumbnail (line 1369) | def upload_filmstrip_thumbnail(self, entity_type: str, entity_id: int,... method upload (line 1408) | def upload(self, entity_type: str, entity_id: int, path: str, field_na... method _upload_to_storage (line 1436) | def _upload_to_storage(self, entity_type: str, entity_id: int, path: s... method _upload_to_sg (line 1451) | def _upload_to_sg(self, entity_type: str, entity_id: int, path: str, f... method _get_attachment_upload_info (line 1467) | def _get_attachment_upload_info(self, is_thumbnail: bool, filename: st... method download_attachment (line 1479) | def download_attachment(self, attachment: dict[str, Any] | Literal[Fal... method get_auth_cookie_handler (line 1515) | def get_auth_cookie_handler(self) -> urllib.request.HTTPCookieProcessor: method get_attachment_download_url (line 1524) | def get_attachment_download_url(self, attachment: int | dict[str, Any]... method authenticate_human_user (line 1544) | def authenticate_human_user(self, user_login: str, user_password: str,... method update_project_last_accessed (line 1563) | def update_project_last_accessed(self, project: dict[str, Any], user: ... method note_thread_read (line 1582) | def note_thread_read(self, note_id: int, entity_fields: dict[str, Any]... method text_search (line 1639) | def text_search(self, text: str, entity_types: dict[str, Any], project... method activity_stream_read (line 1695) | def activity_stream_read(self, entity_type: str, entity_id: int, entit... method nav_expand (line 1760) | def nav_expand(self, path: str, seed_entity_field=None, entity_fields=... method nav_search_string (line 1771) | def nav_search_string(self, root_path: str, search_string: str, seed_e... method nav_search_entity (line 1781) | def nav_search_entity(self, root_path: str, entity, seed_entity_field=... method get_session_token (line 1792) | def get_session_token(self) -> str: method preferences_read (line 1805) | def preferences_read(self, prefs: list | None = None) -> dict[str, Any]: method user_subscriptions_read (line 1818) | def user_subscriptions_read(self) -> list: method user_subscriptions_create (line 1827) | def user_subscriptions_create(self, users: list[dict[str, str | list[s... method _build_opener (line 1840) | def _build_opener(self, handler) -> urllib.request.OpenerDirector: method _get_certs_file (line 1845) | def _get_certs_file(cls, ca_certs): method _turn_off_ssl_validation (line 1883) | def _turn_off_ssl_validation(self) -> None: method schema (line 1887) | def schema(self, entity_type: str) -> NoReturn: method entity_types (line 1892) | def entity_types(self) -> NoReturn: method _call_rpc (line 1897) | def _call_rpc(self, method: str, params: Any, include_auth_params: boo... method _auth_params (line 1901) | def _auth_params(self) -> dict[str, Any]: method _sanitize_auth_params (line 1905) | def _sanitize_auth_params(self, params: dict[str, Any]) -> dict[str, A... method _build_payload (line 1910) | def _build_payload(self, method: str, params, include_auth_params: boo... method _encode_payload (line 1914) | def _encode_payload(self, payload) -> bytes: method _make_call (line 1922) | def _make_call(self, verb: str, path: str, body, headers: dict[str, An... method _http_request (line 1928) | def _http_request(self, verb: str, path: str, body, headers: dict[str,... method _make_upload_request (line 1932) | def _make_upload_request(self, request, opener: urllib.request.OpenerD... method _parse_http_status (line 1937) | def _parse_http_status(self, status: tuple) -> None: method _decode_response (line 1944) | def _decode_response(self, headers: dict[str, Any], body: str) -> str ... method _json_loads (line 1956) | def _json_loads(self, body: str): ... method _json_loads_ascii (line 1957) | def _json_loads_ascii(self, body): method _response_errors (line 1961) | def _response_errors(self, sg_response) -> None: method _visit_data (line 1967) | def _visit_data(self, data: T, visitor) -> T: method _transform_outbound (line 1971) | def _transform_outbound(self, data: T) -> T: method _transform_inbound (line 1978) | def _transform_inbound(self, data: T) -> T: method _get_connection (line 1982) | def _get_connection(self) -> Http: method _close_connection (line 1986) | def _close_connection(self) -> None: method _parse_records (line 1990) | def _parse_records(self, records: list) -> list: method _build_thumb_url (line 2003) | def _build_thumb_url(self, entity_type: str, entity_id: int) -> str: method _dict_to_list (line 2013) | def _dict_to_list(self, d: dict[str, Any] | None, key_name: str = 'fie... method _dict_to_extra_data (line 2023) | def _dict_to_extra_data(self, d: dict | None, key_name: str = 'value')... method _upload_file_to_storage (line 2030) | def _upload_file_to_storage(self, path: str, storage_url: str) -> None: method _multipart_upload_file_to_storage (line 2037) | def _multipart_upload_file_to_storage(self, path: str, upload_info: di... method _get_upload_part_link (line 2044) | def _get_upload_part_link(self, upload_info: dict[str, Any], filename:... method _upload_data_to_storage (line 2055) | def _upload_data_to_storage(self, data: BinaryIO, content_type: str, s... method _complete_multipart_upload (line 2066) | def _complete_multipart_upload(self, upload_info: dict[str, Any], file... method _requires_direct_s3_upload (line 2074) | def _requires_direct_s3_upload(self, entity_type: str, field_name: str... method _send_form (line 2092) | def _send_form(self, url: str, params: dict[str, Any]) -> str: class CACertsHTTPSConnection (line 2102) | class CACertsHTTPSConnection(http_client.HTTPConnection): method __init__ (line 2109) | def __init__(self, *args, **kwargs) -> None: method connect (line 2116) | def connect(self) -> None: class CACertsHTTPSHandler (line 2119) | class CACertsHTTPSHandler(urllib.request.HTTPHandler): method __init__ (line 2124) | def __init__(self, cacerts) -> None: ... method https_open (line 2125) | def https_open(self, req): ... method create_https_connection (line 2126) | def create_https_connection(self, *args, **kwargs): ... class FormPostHandler (line 2128) | class FormPostHandler(urllib.request.BaseHandler): method http_request (line 2133) | def http_request(self, request): ... method encode (line 2134) | def encode(self, params, files, boundary=None, buffer=None): ... method https_request (line 2135) | def https_request(self, request): ... function _translate_filters (line 2137) | def _translate_filters(filters: list | tuple, filter_operator) -> dict[s... function _translate_filters_dict (line 2141) | def _translate_filters_dict(sg_filter: dict[str, Any]) -> dict[str, Any]... function _translate_filters_list (line 2142) | def _translate_filters_list(filters): ... function _translate_filters_simple (line 2143) | def _translate_filters_simple(sg_filter): ... function _version_str (line 2144) | def _version_str(version): function _get_type_and_id_from_value (line 2148) | def _get_type_and_id_from_value(value): FILE: substance_painter/stubs/_substance_painter-stubs/analytics.pyi function launch (line 1) | def launch(arg0) -> None: ... function receive_from (line 2) | def receive_from(arg0) -> None: ... function send_to (line 3) | def send_to(arg0) -> None: ... function send_to_ae (line 4) | def send_to_ae(arg0: bool, arg1: str, arg2: bool) -> None: ... function send_to_available (line 5) | def send_to_available(arg0, arg1: bool, arg2: bool, arg3: bool) -> None:... FILE: substance_painter/stubs/_substance_painter-stubs/application.pyi function close (line 1) | def close() -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/async_utils.pyi class StopSource (line 1) | class StopSource: method __init__ (line 2) | def __init__(self, *args, **kwargs) -> None: ... method request_stop (line 3) | def request_stop(self) -> bool: ... method stop_possible (line 4) | def stop_possible(self) -> bool: ... method stop_requested (line 5) | def stop_requested(self) -> bool: ... method __eq__ (line 6) | def __eq__(self, arg0: StopSource) -> bool: ... # type: ignore[override] FILE: substance_painter/stubs/_substance_painter-stubs/baking.pyi class BakingStatus (line 4) | class BakingStatus: method __init__ (line 10) | def __init__(self, value: int) -> None: ... method __eq__ (line 11) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 12) | def __hash__(self) -> int: ... method __index__ (line 13) | def __index__(self) -> int: ... method __int__ (line 14) | def __int__(self) -> int: ... method __ne__ (line 15) | def __ne__(self, other: object) -> bool: ... method name (line 17) | def name(self) -> str: ... method value (line 19) | def value(self) -> int: ... class CurvatureMethod (line 21) | class CurvatureMethod: method __init__ (line 26) | def __init__(self, value: int) -> None: ... method __eq__ (line 27) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 28) | def __hash__(self) -> int: ... method __index__ (line 29) | def __index__(self) -> int: ... method __int__ (line 30) | def __int__(self) -> int: ... method __ne__ (line 31) | def __ne__(self, other: object) -> bool: ... method name (line 33) | def name(self) -> str: ... method value (line 35) | def value(self) -> int: ... function bake_async (line 37) | def bake_async(arg0: int) -> _substance_painter.async_utils.StopSource: ... function bake_selection_async (line 38) | def bake_selection_async() -> _substance_painter.async_utils.StopSource:... function baker_parameters (line 39) | def baker_parameters(*args, **kwargs): ... function common_parameters (line 40) | def common_parameters(*args, **kwargs): ... function detail_parameters (line 41) | def detail_parameters(*args, **kwargs): ... function get_curvature_method (line 42) | def get_curvature_method(*args, **kwargs): ... function get_enabled_bakers (line 43) | def get_enabled_bakers(*args, **kwargs): ... function get_enabled_uv_tiles (line 44) | def get_enabled_uv_tiles(arg0: int) -> list[tuple[int, int]]: ... function get_link_group (line 45) | def get_link_group(arg0) -> list[int]: ... function get_link_group_common_parameters (line 46) | def get_link_group_common_parameters() -> list[int]: ... function get_linked_texture_sets (line 47) | def get_linked_texture_sets(arg0: int, arg1) -> list[int]: ... function get_linked_texture_sets_common_parameters (line 48) | def get_linked_texture_sets_common_parameters(arg0: int) -> list[int]: ... function is_baker_enabled (line 49) | def is_baker_enabled(arg0: int, arg1) -> bool: ... function is_textureset_enabled (line 50) | def is_textureset_enabled(arg0: int) -> bool: ... function is_uv_tile_enabled (line 51) | def is_uv_tile_enabled(arg0: int, arg1: tuple[int, int]) -> bool: ... function set_baker_enabled (line 52) | def set_baker_enabled(arg0: int, arg1, arg2: bool) -> None: ... function set_curvature_method (line 53) | def set_curvature_method(arg0: int, arg1) -> None: ... function set_enabled_bakers (line 54) | def set_enabled_bakers(arg0: int, arg1) -> None: ... function set_enabled_uv_tiles (line 55) | def set_enabled_uv_tiles(arg0: int, arg1: list[tuple[int, int]]) -> None... function set_linked_group (line 56) | def set_linked_group(arg0: list[int], arg1: int, arg2) -> None: ... function set_linked_group_common_parameters (line 57) | def set_linked_group_common_parameters(arg0: list[int], arg1: int) -> No... function set_textureset_enabled (line 58) | def set_textureset_enabled(arg0: int, arg1: bool) -> None: ... function set_tweaks_values (line 59) | def set_tweaks_values(arg0) -> None: ... function set_uv_tile_enabled (line 60) | def set_uv_tile_enabled(arg0: int, arg1: tuple[int, int], arg2: bool) ->... function unlink_all (line 61) | def unlink_all(arg0) -> None: ... function unlink_all_common_parameters (line 62) | def unlink_all_common_parameters() -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/colormanagement.pyi class Color (line 3) | class Color: method __init__ (line 6) | def __init__(self) -> None: ... class GenericColorSpace_ (line 8) | class GenericColorSpace_: method __init__ (line 14) | def __init__(self, value: int) -> None: ... method __eq__ (line 15) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 16) | def __hash__(self) -> int: ... method __index__ (line 17) | def __index__(self) -> int: ... method __int__ (line 18) | def __int__(self) -> int: ... method __ne__ (line 19) | def __ne__(self, other: object) -> bool: ... method name (line 21) | def name(self) -> str: ... method value (line 23) | def value(self) -> int: ... class LegacyColorSpace_ (line 25) | class LegacyColorSpace_: method __init__ (line 35) | def __init__(self, value: int) -> None: ... method __eq__ (line 36) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 37) | def __hash__(self) -> int: ... method __index__ (line 38) | def __index__(self) -> int: ... method __int__ (line 39) | def __int__(self) -> int: ... method __ne__ (line 40) | def __ne__(self, other: object) -> bool: ... method name (line 42) | def name(self) -> str: ... method value (line 44) | def value(self) -> int: ... function transform_cs (line 46) | def transform_cs(arg0: float3, arg1: GenericColorSpace_ | LegacyColorSpa... FILE: substance_painter/stubs/_substance_painter-stubs/data_tweak.pyi class PythonTweak (line 3) | class PythonTweak: method __init__ (line 4) | def __init__(self, *args, **kwargs) -> None: ... method enum_values (line 5) | def enum_values(self) -> list[tuple[str, int]]: ... method label (line 6) | def label(self) -> str: ... method name (line 7) | def name(self) -> str: ... method properties (line 8) | def properties(self) -> str: ... method uid (line 9) | def uid(self) -> int: ... method value (line 10) | def value(self) -> bool | int32 | tuple[int32, int32] | tuple[int32, i... method widget_type (line 11) | def widget_type(self) -> str: ... FILE: substance_painter/stubs/_substance_painter-stubs/display.pyi class CameraProjectionType (line 3) | class CameraProjectionType: method __init__ (line 8) | def __init__(self, value: int) -> None: ... method __eq__ (line 9) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 10) | def __hash__(self) -> int: ... method __index__ (line 11) | def __index__(self) -> int: ... method __int__ (line 12) | def __int__(self) -> int: ... method __ne__ (line 13) | def __ne__(self, other: object) -> bool: ... method name (line 15) | def name(self) -> str: ... method value (line 17) | def value(self) -> int: ... class ToneMappingFunction (line 19) | class ToneMappingFunction: method __init__ (line 24) | def __init__(self, value: int) -> None: ... method __eq__ (line 25) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 26) | def __hash__(self) -> int: ... method __index__ (line 27) | def __index__(self) -> int: ... method __int__ (line 28) | def __int__(self) -> int: ... method __ne__ (line 29) | def __ne__(self, other: object) -> bool: ... method name (line 31) | def name(self) -> str: ... method value (line 33) | def value(self) -> int: ... function get_camera_aperture (line 35) | def get_camera_aperture(arg0: int) -> float: ... function get_camera_field_of_view (line 36) | def get_camera_field_of_view(arg0: int) -> float: ... function get_camera_focal_length (line 37) | def get_camera_focal_length(arg0: int) -> float: ... function get_camera_focus_distance (line 38) | def get_camera_focus_distance(arg0: int) -> float: ... function get_camera_orthographic_height (line 39) | def get_camera_orthographic_height(arg0: int) -> float: ... function get_camera_position (line 40) | def get_camera_position(arg0: int) -> float3: ... # type: ignore[name-d... function get_camera_projection_type (line 41) | def get_camera_projection_type(arg0: int) -> CameraProjectionType: ... function get_camera_rotation (line 42) | def get_camera_rotation(arg0: int) -> float3: ... # type: ignore[name-d... function get_color_lut_resource (line 43) | def get_color_lut_resource() -> str: ... function get_default_camera (line 44) | def get_default_camera() -> int: ... function get_environment_resource (line 45) | def get_environment_resource() -> str: ... function get_tone_mapping (line 46) | def get_tone_mapping() -> ToneMappingFunction: ... function set_camera_aperture (line 47) | def set_camera_aperture(arg0: int, arg1: float) -> None: ... function set_camera_field_of_view (line 48) | def set_camera_field_of_view(arg0: int, arg1: float) -> None: ... function set_camera_focal_length (line 49) | def set_camera_focal_length(arg0: int, arg1: float) -> None: ... function set_camera_focus_distance (line 50) | def set_camera_focus_distance(arg0: int, arg1: float) -> None: ... function set_camera_orthographic_height (line 51) | def set_camera_orthographic_height(arg0: int, arg1: float) -> None: ... function set_camera_position (line 52) | def set_camera_position(arg0: int, arg1: float3) -> None: ... # type: i... function set_camera_projection_type (line 53) | def set_camera_projection_type(arg0: int, arg1: CameraProjectionType) ->... function set_camera_rotation (line 54) | def set_camera_rotation(arg0: int, arg1: float3) -> None: ... # type: i... function set_color_lut_resource (line 55) | def set_color_lut_resource(new_url: str) -> None: ... function set_environment_resource (line 56) | def set_environment_resource(new_url: str) -> None: ... function set_subsurface_scattering (line 57) | def set_subsurface_scattering(enable: bool) -> None: ... function set_tone_mapping (line 58) | def set_tone_mapping(new_tone_mapping: ToneMappingFunction) -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/event.pyi class TextureStateEventAction (line 4) | class TextureStateEventAction: method __init__ (line 10) | def __init__(self, value: int) -> None: ... method __eq__ (line 11) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 12) | def __hash__(self) -> int: ... method __index__ (line 13) | def __index__(self) -> int: ... method __int__ (line 14) | def __int__(self) -> int: ... method __ne__ (line 15) | def __ne__(self, other: object) -> bool: ... method name (line 17) | def name(self) -> str: ... method value (line 19) | def value(self) -> int: ... function get_ts_event_cache_key_invalidation_throttling_period (line 21) | def get_ts_event_cache_key_invalidation_throttling_period() -> datetime.... function set_ts_event_cache_key_invalidation_throttling_period (line 22) | def set_ts_event_cache_key_invalidation_throttling_period(arg0: datetime... function trigger_test_event (line 23) | def trigger_test_event() -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/exception.pyi class ProjectError (line 1) | class ProjectError(Exception): ... class ResourceNotFoundError (line 3) | class ResourceNotFoundError(Exception): ... class ServiceNotFoundError (line 5) | class ServiceNotFoundError(Exception): ... FILE: substance_painter/stubs/_substance_painter-stubs/export.pyi class ExportStatus (line 3) | class ExportStatus: method __init__ (line 10) | def __init__(self, value: int) -> None: ... method __eq__ (line 11) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 12) | def __hash__(self) -> int: ... method __index__ (line 13) | def __index__(self) -> int: ... method __int__ (line 14) | def __int__(self) -> int: ... method __ne__ (line 15) | def __ne__(self, other: object) -> bool: ... method name (line 17) | def name(self) -> str: ... method value (line 19) | def value(self) -> int: ... class MeshExportOption (line 21) | class MeshExportOption: method __init__ (line 28) | def __init__(self, value: int) -> None: ... method __eq__ (line 29) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 30) | def __hash__(self) -> int: ... method __index__ (line 31) | def __index__(self) -> int: ... method __int__ (line 32) | def __int__(self) -> int: ... method __ne__ (line 33) | def __ne__(self, other: object) -> bool: ... method name (line 35) | def name(self) -> str: ... method value (line 37) | def value(self) -> int: ... function export_mesh (line 39) | def export_mesh(*args, **kwargs): ... function export_project_textures (line 40) | def export_project_textures(*args, **kwargs): ... function get_default_export_path (line 41) | def get_default_export_path() -> str: ... function list_predefined_export_presets (line 42) | def list_predefined_export_presets() -> list[tuple[str, str]]: ... function list_predefined_preset_output_maps (line 43) | def list_predefined_preset_output_maps(arg0: str, arg1: int) -> str: ... function list_preset_output_maps (line 44) | def list_preset_output_maps(arg0: str) -> str: ... function list_project_textures (line 45) | def list_project_textures(json_config: str) -> dict[tuple[str, str], lis... function list_resource_export_presets (line 46) | def list_resource_export_presets() -> list[str]: ... function scene_has_tessellation (line 47) | def scene_has_tessellation() -> bool: ... function scene_is_triangulated (line 48) | def scene_is_triangulated() -> bool: ... FILE: substance_painter/stubs/_substance_painter-stubs/feature.pyi class RunTimeFeature (line 3) | class RunTimeFeature: method __init__ (line 8) | def __init__(self, value: int) -> None: ... method __eq__ (line 9) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 10) | def __hash__(self) -> int: ... method __index__ (line 11) | def __index__(self) -> int: ... method __int__ (line 12) | def __int__(self) -> int: ... method __ne__ (line 13) | def __ne__(self, other: object) -> bool: ... method name (line 15) | def name(self) -> str: ... method value (line 17) | def value(self) -> int: ... function application_version (line 19) | def application_version() -> tuple[int, int, int]: ... function connected_features_enabled (line 20) | def connected_features_enabled() -> bool: ... function enable_engine_computations (line 21) | def enable_engine_computations(arg0: bool) -> None: ... function engine_computations_status (line 22) | def engine_computations_status() -> bool: ... function is_enabled (line 23) | def is_enabled(arg0: RunTimeFeature) -> bool: ... function social_features_enabled (line 24) | def social_features_enabled() -> bool: ... FILE: substance_painter/stubs/_substance_painter-stubs/fiber.pyi class Fiber (line 3) | class Fiber: method __init__ (line 4) | def __init__(self, arg0: Callable[[], None]) -> None: ... method finished (line 5) | def finished(self) -> bool: ... method get_id (line 6) | def get_id(self, *args, **kwargs): ... method join (line 7) | def join(self) -> None: ... method joinable (line 8) | def joinable(self) -> bool: ... class FiberError (line 10) | class FiberError(Exception): ... class FiberId (line 12) | class FiberId: method __init__ (line 13) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 14) | def __eq__(self, arg0: FiberId) -> bool: ... # type: ignore[override] method __ge__ (line 15) | def __ge__(self, arg0: FiberId) -> bool: ... method __gt__ (line 16) | def __gt__(self, arg0: FiberId) -> bool: ... method __le__ (line 17) | def __le__(self, arg0: FiberId) -> bool: ... method __lt__ (line 18) | def __lt__(self, arg0: FiberId) -> bool: ... method __ne__ (line 19) | def __ne__(self, arg0: FiberId) -> bool: ... # type: ignore[override] class Future (line 21) | class Future: method __init__ (line 22) | def __init__(self, *args, **kwargs) -> None: ... method get (line 23) | def get(self) -> object: ... method ready (line 24) | def ready(self) -> bool: ... method valid (line 25) | def valid(self) -> bool: ... method wait_for (line 26) | def wait_for(self, arg0: float) -> bool: ... method wait_for_ns (line 27) | def wait_for_ns(self, arg0: int) -> bool: ... class FutureError (line 29) | class FutureError(Exception): ... class Promise (line 31) | class Promise: method __init__ (line 32) | def __init__(self) -> None: ... method get_future (line 33) | def get_future(self, *args, **kwargs): ... method set_value (line 34) | def set_value(self, arg0: object) -> None: ... function f_yield (line 36) | def f_yield() -> None: ... function get_id (line 37) | def get_id() -> FiberId: ... function main_process_events (line 38) | def main_process_events() -> None: ... function run_from_main (line 39) | def run_from_main(arg0: Callable[[], None]) -> None: ... function sleep_for (line 40) | def sleep_for(arg0: float) -> None: ... function sleep_for_ns (line 41) | def sleep_for_ns(arg0: int) -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/interop.pyi class AppCode (line 3) | class AppCode: method __init__ (line 16) | def __init__(self, arg0: str) -> None: ... method __eq__ (line 17) | def __eq__(self, arg0: AppCode) -> bool: ... # type: ignore[override] method __ge__ (line 18) | def __ge__(self, arg0: AppCode) -> bool: ... method __gt__ (line 19) | def __gt__(self, arg0: AppCode) -> bool: ... method __hash__ (line 20) | def __hash__(self) -> int: ... method __le__ (line 21) | def __le__(self, arg0: AppCode) -> bool: ... method __lt__ (line 22) | def __lt__(self, arg0: AppCode) -> bool: ... method __ne__ (line 23) | def __ne__(self, arg0: AppCode) -> bool: ... # type: ignore[override] method value (line 25) | def value(self) -> str: ... class MessageDispatcher (line 27) | class MessageDispatcher: method __init__ (line 28) | def __init__(self) -> None: ... method all_sources (line 29) | def all_sources(self) -> list[MessageSource]: ... method app_ready_message_type (line 31) | def app_ready_message_type() -> str: ... method app_ready_request_message_type (line 33) | def app_ready_request_message_type() -> str: ... method broadcast (line 34) | def broadcast(self, message_type: str, message_data: str) -> int: ... method broadcast_app_ready (line 35) | def broadcast_app_ready(self, message_types: list[str]) -> int: ... method debug_log (line 36) | def debug_log(self) -> str: ... method decode_app_ready_payload (line 38) | def decode_app_ready_payload(payload: str) -> list[str]: ... method disconnect (line 40) | def disconnect(connection: MessageDispatcherConnection) -> None: ... method error_state (line 41) | def error_state(self) -> int: ... method error_string (line 43) | def error_string(error_code: int) -> str: ... method find_sources (line 44) | def find_sources(self, app_code: AppCode) -> list[MessageSource]: ... method is_ready (line 45) | def is_ready(self) -> bool: ... method on_receive (line 46) | def on_receive(self, callback: Callable[[MessageSource, str, bytes], N... method on_receive_from_me (line 47) | def on_receive_from_me(self, callback: Callable[[MessageSource, str, b... method send_app_ready (line 48) | def send_app_ready(self, source: MessageSource, message_types: list[st... method send_app_ready_request (line 49) | def send_app_ready_request(self, source: MessageSource, message_types:... method send_to_app (line 50) | def send_to_app(self, app_code: AppCode, message_type: str, message_da... method send_to_source (line 51) | def send_to_source(self, source: MessageSource, message_type: str, mes... method this_app_instance_source (line 52) | def this_app_instance_source(self) -> MessageSource: ... class MessageDispatcherConnection (line 54) | class MessageDispatcherConnection: method __init__ (line 55) | def __init__(self, *args, **kwargs) -> None: ... class MessageSource (line 57) | class MessageSource: method __init__ (line 58) | def __init__(self, *args, **kwargs) -> None: ... method __eq__ (line 59) | def __eq__(self, arg0: MessageSource) -> bool: ... # type: ignore[ove... method __ge__ (line 60) | def __ge__(self, arg0: MessageSource) -> bool: ... method __gt__ (line 61) | def __gt__(self, arg0: MessageSource) -> bool: ... method __hash__ (line 62) | def __hash__(self) -> int: ... method __le__ (line 63) | def __le__(self, arg0: MessageSource) -> bool: ... method __lt__ (line 64) | def __lt__(self, arg0: MessageSource) -> bool: ... method __ne__ (line 65) | def __ne__(self, arg0: MessageSource) -> bool: ... # type: ignore[ove... method app_code (line 67) | def app_code(self) -> AppCode: ... method app_version (line 69) | def app_version(self) -> str: ... method source_id (line 71) | def source_id(self) -> str: ... function app_info_debug_log (line 73) | def app_info_debug_log() -> str: ... function get_app_install_path (line 74) | def get_app_install_path(app_code: AppCode) -> str: ... function get_app_launch_command (line 75) | def get_app_launch_command(app_code: AppCode) -> str: ... function is_app_installed (line 76) | def is_app_installed(app_code: AppCode) -> bool: ... function try_get_app_version (line 77) | def try_get_app_version(app_code: AppCode) -> str: ... FILE: substance_painter/stubs/_substance_painter-stubs/js.pyi function evaluate (line 1) | def evaluate(js_code: str) -> str: ... FILE: substance_painter/stubs/_substance_painter-stubs/layerstack.pyi class BlendingMode (line 5) | class BlendingMode: method __init__ (line 40) | def __init__(self, value: int) -> None: ... method __eq__ (line 41) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 42) | def __hash__(self) -> int: ... method __index__ (line 43) | def __index__(self) -> int: ... method __int__ (line 44) | def __int__(self) -> int: ... method __ne__ (line 45) | def __ne__(self, other: object) -> bool: ... method name (line 47) | def name(self) -> str: ... method value (line 49) | def value(self) -> int: ... class ColorSelectionBackgroundColor (line 51) | class ColorSelectionBackgroundColor: method __init__ (line 58) | def __init__(self, value: int) -> None: ... method __eq__ (line 59) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 60) | def __hash__(self) -> int: ... method __index__ (line 61) | def __index__(self) -> int: ... method __int__ (line 62) | def __int__(self) -> int: ... method __ne__ (line 63) | def __ne__(self, other: object) -> bool: ... method name (line 65) | def name(self) -> str: ... method value (line 67) | def value(self) -> int: ... class ColorSelectionEffectParams (line 69) | class ColorSelectionEffectParams: method __init__ (line 76) | def __init__(self) -> None: ... class CompareMaskEffectOperand (line 78) | class CompareMaskEffectOperand: method __init__ (line 85) | def __init__(self, value: int) -> None: ... method __eq__ (line 86) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 87) | def __hash__(self) -> int: ... method __index__ (line 88) | def __index__(self) -> int: ... method __int__ (line 89) | def __int__(self) -> int: ... method __ne__ (line 90) | def __ne__(self, other: object) -> bool: ... method name (line 92) | def name(self) -> str: ... method value (line 94) | def value(self) -> int: ... class CompareMaskEffectOperation (line 96) | class CompareMaskEffectOperation: method __init__ (line 102) | def __init__(self, value: int) -> None: ... method __eq__ (line 103) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 104) | def __hash__(self) -> int: ... method __index__ (line 105) | def __index__(self) -> int: ... method __int__ (line 106) | def __int__(self) -> int: ... method __ne__ (line 107) | def __ne__(self, other: object) -> bool: ... method name (line 109) | def name(self) -> str: ... method value (line 111) | def value(self) -> int: ... class CompareMaskEffectParams (line 113) | class CompareMaskEffectParams: method __init__ (line 121) | def __init__(self) -> None: ... class FillProjectionParams (line 123) | class FillProjectionParams: method __init__ (line 144) | def __init__(self) -> None: ... class FilteringMode (line 146) | class FilteringMode: method __init__ (line 152) | def __init__(self, value: int) -> None: ... method __eq__ (line 153) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 154) | def __hash__(self) -> int: ... method __index__ (line 155) | def __index__(self) -> int: ... method __int__ (line 156) | def __int__(self) -> int: ... method __ne__ (line 157) | def __ne__(self, other: object) -> bool: ... method name (line 159) | def name(self) -> str: ... method value (line 161) | def value(self) -> int: ... class GeometryMaskType (line 163) | class GeometryMaskType: method __init__ (line 168) | def __init__(self, value: int) -> None: ... method __eq__ (line 169) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 170) | def __hash__(self) -> int: ... method __index__ (line 171) | def __index__(self) -> int: ... method __int__ (line 172) | def __int__(self) -> int: ... method __ne__ (line 173) | def __ne__(self, other: object) -> bool: ... method name (line 175) | def name(self) -> str: ... method value (line 177) | def value(self) -> int: ... class InsertPositionLocation (line 179) | class InsertPositionLocation: method __init__ (line 187) | def __init__(self, value: int) -> None: ... method __eq__ (line 188) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 189) | def __hash__(self) -> int: ... method __index__ (line 190) | def __index__(self) -> int: ... method __int__ (line 191) | def __int__(self) -> int: ... method __ne__ (line 192) | def __ne__(self, other: object) -> bool: ... method name (line 194) | def name(self) -> str: ... method value (line 196) | def value(self) -> int: ... class MaskBackground (line 198) | class MaskBackground: method __init__ (line 203) | def __init__(self, value: int) -> None: ... method __eq__ (line 204) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 205) | def __hash__(self) -> int: ... method __index__ (line 206) | def __index__(self) -> int: ... method __int__ (line 207) | def __int__(self) -> int: ... method __ne__ (line 208) | def __ne__(self, other: object) -> bool: ... method name (line 210) | def name(self) -> str: ... method value (line 212) | def value(self) -> int: ... class NodeType (line 214) | class NodeType: method __init__ (line 229) | def __init__(self, value: int) -> None: ... method __eq__ (line 230) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 231) | def __hash__(self) -> int: ... method __index__ (line 232) | def __index__(self) -> int: ... method __int__ (line 233) | def __int__(self) -> int: ... method __ne__ (line 234) | def __ne__(self, other: object) -> bool: ... method name (line 236) | def name(self) -> str: ... method value (line 238) | def value(self) -> int: ... class ProjectionMode (line 240) | class ProjectionMode: method __init__ (line 251) | def __init__(self, value: int) -> None: ... method __eq__ (line 252) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 253) | def __hash__(self) -> int: ... method __index__ (line 254) | def __index__(self) -> int: ... method __int__ (line 255) | def __int__(self) -> int: ... method __ne__ (line 256) | def __ne__(self, other: object) -> bool: ... method name (line 258) | def name(self) -> str: ... method value (line 260) | def value(self) -> int: ... class ScaleMode (line 262) | class ScaleMode: method __init__ (line 268) | def __init__(self, value: int) -> None: ... method __eq__ (line 269) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 270) | def __hash__(self) -> int: ... method __index__ (line 271) | def __index__(self) -> int: ... method __int__ (line 272) | def __int__(self) -> int: ... method __ne__ (line 273) | def __ne__(self, other: object) -> bool: ... method name (line 275) | def name(self) -> str: ... method value (line 277) | def value(self) -> int: ... class SelectionType (line 279) | class SelectionType: method __init__ (line 286) | def __init__(self, value: int) -> None: ... method __eq__ (line 287) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 288) | def __hash__(self) -> int: ... method __index__ (line 289) | def __index__(self) -> int: ... method __int__ (line 290) | def __int__(self) -> int: ... method __ne__ (line 291) | def __ne__(self, other: object) -> bool: ... method name (line 293) | def name(self) -> str: ... method value (line 295) | def value(self) -> int: ... class ShapeCropMode (line 297) | class ShapeCropMode: method __init__ (line 302) | def __init__(self, value: int) -> None: ... method __eq__ (line 303) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 304) | def __hash__(self) -> int: ... method __index__ (line 305) | def __index__(self) -> int: ... method __int__ (line 306) | def __int__(self) -> int: ... method __ne__ (line 307) | def __ne__(self, other: object) -> bool: ... method name (line 309) | def name(self) -> str: ... method value (line 311) | def value(self) -> int: ... class UVWrapMode (line 313) | class UVWrapMode: method __init__ (line 320) | def __init__(self, value: int) -> None: ... method __eq__ (line 321) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 322) | def __hash__(self) -> int: ... method __index__ (line 323) | def __index__(self) -> int: ... method __int__ (line 324) | def __int__(self) -> int: ... method __ne__ (line 325) | def __ne__(self, other: object) -> bool: ... method name (line 327) | def name(self) -> str: ... method value (line 329) | def value(self) -> int: ... function add_mask (line 331) | def add_mask(arg0: int, arg1: MaskBackground) -> None: ... function content_effects (line 332) | def content_effects(arg0: int) -> list[int]: ... function delete_node (line 333) | def delete_node(arg0: int) -> None: ... function enable_mask (line 334) | def enable_mask(arg0: int, arg1: bool) -> None: ... function end_macro (line 335) | def end_macro() -> None: ... function get_blending_mode (line 336) | def get_blending_mode(arg0: int, arg1) -> BlendingMode: ... function get_color_selection_params (line 337) | def get_color_selection_params(arg0: int) -> ColorSelectionEffectParams:... function get_compare_mask_params (line 338) | def get_compare_mask_params(arg0: int) -> CompareMaskEffectParams: ... function get_geometry_mask_enabled_meshes (line 339) | def get_geometry_mask_enabled_meshes(arg0: int) -> list[str]: ... function get_geometry_mask_enabled_uv_tiles (line 340) | def get_geometry_mask_enabled_uv_tiles(arg0: int) -> list[tuple[int, int... function get_geometry_mask_type (line 341) | def get_geometry_mask_type(arg0: int) -> GeometryMaskType: ... function get_levels_effect_affected_channel (line 342) | def get_levels_effect_affected_channel(*args, **kwargs): ... function get_levels_params (line 343) | def get_levels_params(*args, **kwargs): ... function get_mask_background (line 344) | def get_mask_background(arg0: int) -> MaskBackground: ... function get_name (line 345) | def get_name(arg0: int) -> str: ... function get_next_sibling_node (line 346) | def get_next_sibling_node(arg0: int) -> int | None: ... function get_node_type (line 347) | def get_node_type(arg0: int) -> NodeType: ... function get_opacity (line 348) | def get_opacity(arg0: int, arg1) -> float: ... function get_parent_node (line 349) | def get_parent_node(arg0: int) -> int | None: ... function get_previous_sibling_node (line 350) | def get_previous_sibling_node(arg0: int) -> int | None: ... function get_projection_mode (line 351) | def get_projection_mode(arg0: int) -> ProjectionMode: ... function get_projection_params (line 352) | def get_projection_params(arg0: int) -> tuple[ProjectionMode, FillProjec... function get_root_layers_from_stack (line 353) | def get_root_layers_from_stack(arg0: int) -> list[int]: ... function get_selected_nodes_from_stack (line 354) | def get_selected_nodes_from_stack(arg0: int) -> list[int]: ... function get_selection_type (line 355) | def get_selection_type(arg0: int) -> SelectionType: ... function get_stack (line 356) | def get_stack(arg0: int) -> int: ... function get_stack_node_id (line 357) | def get_stack_node_id(arg0: int) -> int | None: ... function get_texture_set (line 358) | def get_texture_set(arg0: int) -> int: ... function has_blending (line 360) | def has_blending(arg0: int) -> bool: ... function has_blending (line 362) | def has_blending(arg0: int) -> bool: ... # type: ignore[overload-cannot... function has_mask (line 363) | def has_mask(arg0: int) -> bool: ... function insert_anchor_point_effect (line 364) | def insert_anchor_point_effect(arg0: tuple[int, InsertPositionLocation |... function insert_color_selection_effect (line 365) | def insert_color_selection_effect(arg0: tuple[int, InsertPositionLocatio... function insert_compare_mask_effect (line 366) | def insert_compare_mask_effect(arg0: tuple[int, InsertPositionLocation |... function insert_fill (line 367) | def insert_fill(arg0: tuple[int, InsertPositionLocation | None]) -> int:... function insert_filter_effect (line 368) | def insert_filter_effect(arg0: tuple[int, InsertPositionLocation | None]... function insert_generator_effect (line 369) | def insert_generator_effect(arg0: tuple[int, InsertPositionLocation | No... function insert_group (line 370) | def insert_group(arg0: tuple[int, InsertPositionLocation | None]) -> int... function insert_levels_effect (line 371) | def insert_levels_effect(arg0: tuple[int, InsertPositionLocation | None]... function insert_paint (line 372) | def insert_paint(arg0: tuple[int, InsertPositionLocation | None]) -> int... function insert_smart_mask (line 373) | def insert_smart_mask(arg0: tuple[int, InsertPositionLocation | None], a... function insert_smart_material (line 374) | def insert_smart_material(arg0: tuple[int, InsertPositionLocation | None... function instances (line 375) | def instances(arg0: int) -> list[int]: ... function instantiate (line 376) | def instantiate(arg0: tuple[int, InsertPositionLocation | None], arg1: i... function is_collapsed (line 377) | def is_collapsed(arg0: int) -> bool: ... function is_in_mask_stack (line 378) | def is_in_mask_stack(arg0: int) -> bool: ... function is_mask_enabled (line 379) | def is_mask_enabled(arg0: int) -> bool: ... function is_visible (line 380) | def is_visible(arg0: int) -> bool: ... function mask_effects (line 381) | def mask_effects(arg0: int) -> list[int]: ... function model (line 382) | def model(arg0: int) -> int | None: ... function remove_mask (line 383) | def remove_mask(arg0: int) -> None: ... function select_nodes (line 384) | def select_nodes(arg0: list[int]) -> None: ... function set_blending_mode (line 385) | def set_blending_mode(arg0: int, arg1: BlendingMode, arg2) -> None: ... function set_collapsed (line 386) | def set_collapsed(arg0: int, arg1: bool) -> None: ... function set_color_selection_params (line 387) | def set_color_selection_params(arg0: int, arg1: ColorSelectionEffectPara... function set_compare_mask_params (line 388) | def set_compare_mask_params(arg0: int, arg1: CompareMaskEffectParams) ->... function set_geometry_mask_enabled_meshes (line 389) | def set_geometry_mask_enabled_meshes(arg0: int, arg1: list[str]) -> None... function set_geometry_mask_enabled_uv_tiles (line 390) | def set_geometry_mask_enabled_uv_tiles(arg0: int, arg1: list[tuple[int, ... function set_geometry_mask_type (line 391) | def set_geometry_mask_type(arg0: int, arg1: GeometryMaskType) -> None: ... function set_levels_effect_affected_channel (line 392) | def set_levels_effect_affected_channel(arg0: int, arg1) -> None: ... function set_levels_params (line 393) | def set_levels_params(arg0: int, arg1) -> None: ... function set_mask_background (line 394) | def set_mask_background(arg0: int, arg1: MaskBackground) -> None: ... function set_name (line 395) | def set_name(arg0: int, arg1: str) -> None: ... function set_opacity (line 396) | def set_opacity(arg0: int, arg1: float, arg2) -> None: ... function set_projection_mode (line 397) | def set_projection_mode(arg0: int, arg1: ProjectionMode) -> None: ... function set_projection_params (line 398) | def set_projection_params(arg0: int, arg1: ProjectionMode, arg2: FillPro... function set_selection_type (line 399) | def set_selection_type(arg0: int, arg1: SelectionType) -> None: ... function set_visible (line 400) | def set_visible(arg0: int, arg1: bool) -> None: ... function start_macro (line 401) | def start_macro(arg0: str) -> None: ... function sub_layers (line 402) | def sub_layers(arg0: int) -> list[int]: ... function undostack (line 403) | def undostack() -> int: ... FILE: substance_painter/stubs/_substance_painter-stubs/levels.pyi class LevelsParams (line 1) | class LevelsParams: method __init__ (line 8) | def __init__(self) -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/logging.pyi class LogSeverity (line 11) | class LogSeverity: method __init__ (line 20) | def __init__(self, value: int) -> None: ... method __and__ (line 21) | def __and__(self, other: object) -> object: ... method __eq__ (line 22) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 23) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 24) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 25) | def __hash__(self) -> int: ... method __index__ (line 26) | def __index__(self) -> int: ... method __int__ (line 27) | def __int__(self) -> int: ... method __invert__ (line 28) | def __invert__(self) -> object: ... method __le__ (line 29) | def __le__(self, other: object) -> bool: ... method __lt__ (line 30) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 31) | def __ne__(self, other: object) -> bool: ... method __or__ (line 32) | def __or__(self, other: object) -> object: ... method __rand__ (line 33) | def __rand__(self, other: object) -> object: ... method __ror__ (line 34) | def __ror__(self, other: object) -> object: ... method __rxor__ (line 35) | def __rxor__(self, other: object) -> object: ... method __xor__ (line 36) | def __xor__(self, other: object) -> object: ... method name (line 38) | def name(self) -> str: ... method value (line 40) | def value(self) -> int: ... function log (line 42) | def log(severity: LogSeverity, channel: str, message: str) -> None: ... FILE: substance_painter/stubs/_substance_painter-stubs/project.pyi class Action (line 3) | class Action: method __init__ (line 9) | def __init__(self, value: int) -> None: ... method __eq__ (line 10) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 11) | def __hash__(self) -> int: ... method __index__ (line 12) | def __index__(self) -> int: ... method __int__ (line 13) | def __int__(self) -> int: ... method __ne__ (line 14) | def __ne__(self, other: object) -> bool: ... method name (line 16) | def name(self) -> str: ... method value (line 18) | def value(self) -> int: ... class MeshLoadingStatus (line 20) | class MeshLoadingStatus: method __init__ (line 25) | def __init__(self, value: int) -> None: ... method __eq__ (line 26) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 27) | def __hash__(self) -> int: ... method __index__ (line 28) | def __index__(self) -> int: ... method __int__ (line 29) | def __int__(self) -> int: ... method __ne__ (line 30) | def __ne__(self, other: object) -> bool: ... method name (line 32) | def name(self) -> str: ... method value (line 34) | def value(self) -> int: ... class MeshSettingsType (line 36) | class MeshSettingsType: method __init__ (line 41) | def __init__(self, value: int) -> None: ... method __eq__ (line 42) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 43) | def __hash__(self) -> int: ... method __index__ (line 44) | def __index__(self) -> int: ... method __int__ (line 45) | def __int__(self) -> int: ... method __ne__ (line 46) | def __ne__(self, other: object) -> bool: ... method name (line 48) | def name(self) -> str: ... method value (line 50) | def value(self) -> int: ... class NormalMapFormat (line 52) | class NormalMapFormat: method __init__ (line 57) | def __init__(self, value: int) -> None: ... method __eq__ (line 58) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 59) | def __hash__(self) -> int: ... method __index__ (line 60) | def __index__(self) -> int: ... method __int__ (line 61) | def __int__(self) -> int: ... method __ne__ (line 62) | def __ne__(self, other: object) -> bool: ... method name (line 64) | def name(self) -> str: ... method value (line 66) | def value(self) -> int: ... class ProjectSaveMode (line 68) | class ProjectSaveMode: method __init__ (line 73) | def __init__(self, value: int) -> None: ... method __eq__ (line 74) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 75) | def __hash__(self) -> int: ... method __index__ (line 76) | def __index__(self) -> int: ... method __int__ (line 77) | def __int__(self) -> int: ... method __ne__ (line 78) | def __ne__(self, other: object) -> bool: ... method name (line 80) | def name(self) -> str: ... method value (line 82) | def value(self) -> int: ... class ProjectWorkflow (line 84) | class ProjectWorkflow: method __init__ (line 90) | def __init__(self, value: int) -> None: ... method __eq__ (line 91) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 92) | def __hash__(self) -> int: ... method __index__ (line 93) | def __index__(self) -> int: ... method __int__ (line 94) | def __int__(self) -> int: ... method __ne__ (line 95) | def __ne__(self, other: object) -> bool: ... method name (line 97) | def name(self) -> str: ... method value (line 99) | def value(self) -> int: ... class State (line 101) | class State: method __init__ (line 107) | def __init__(self, value: int) -> None: ... method __eq__ (line 108) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 109) | def __hash__(self) -> int: ... method __index__ (line 110) | def __index__(self) -> int: ... method __int__ (line 111) | def __int__(self) -> int: ... method __ne__ (line 112) | def __ne__(self, other: object) -> bool: ... method name (line 114) | def name(self) -> str: ... method value (line 116) | def value(self) -> int: ... class TangentSpace (line 118) | class TangentSpace: method __init__ (line 123) | def __init__(self, value: int) -> None: ... method __eq__ (line 124) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 125) | def __hash__(self) -> int: ... method __index__ (line 126) | def __index__(self) -> int: ... method __int__ (line 127) | def __int__(self) -> int: ... method __ne__ (line 128) | def __ne__(self, other: object) -> bool: ... method name (line 130) | def name(self) -> str: ... method value (line 132) | def value(self) -> int: ... function all_keys (line 134) | def all_keys() -> object: ... function context_name (line 135) | def context_name() -> str: ... function create (line 136) | def create(mesh_filepath: str, mesh_map_paths: list[str], template_filep... function create_default_project (line 137) | def create_default_project() -> None: ... function do_action (line 138) | def do_action(action: Action) -> None: ... function file_path (line 139) | def file_path() -> str: ... function file_url (line 140) | def file_url() -> str: ... function get_scene_bounding_box (line 141) | def get_scene_bounding_box() -> tuple[float3, float3, float]: ... # typ... function get_uuid (line 142) | def get_uuid() -> str: ... function is_busy (line 143) | def is_busy() -> bool: ... function is_in_edition_state (line 144) | def is_in_edition_state() -> bool: ... function last_imported_mesh_path (line 145) | def last_imported_mesh_path() -> str: ... function last_saved_substance_painter_version (line 146) | def last_saved_substance_painter_version() -> tuple[int, int, int] | Non... function metadata (line 147) | def metadata(key: str) -> object: ... function metadata_keys (line 148) | def metadata_keys(key_prefix_filter: str) -> object: ... function name (line 149) | def name() -> str: ... function needs_saving (line 150) | def needs_saving() -> bool: ... function open (line 151) | def open(file_path: str) -> None: ... function optimize_random_dynamic_strokes (line 152) | def optimize_random_dynamic_strokes() -> None: ... function optimize_small_size_strokes (line 153) | def optimize_small_size_strokes(threshold_size: float) -> None: ... function reload_mesh (line 154) | def reload_mesh(mesh_file_path: str, options: dict, loading_status_cb: C... function save (line 155) | def save(file_path: str, mode: ProjectSaveMode) -> None: ... function save_as_copy (line 156) | def save_as_copy(file_path: str, mode: ProjectSaveMode) -> None: ... function save_as_template (line 157) | def save_as_template(template_filepath: str, texture_set_name: str) -> N... function set_metadata (line 158) | def set_metadata(key: str, value: object) -> None: ... function state (line 159) | def state() -> State: ... function switch_color_workflow_to_ocio (line 160) | def switch_color_workflow_to_ocio(config_filepath: str, colorspace_bitma... FILE: substance_painter/stubs/_substance_painter-stubs/resource.pyi class ResourceHandle (line 34) | class ResourceHandle: method __init__ (line 35) | def __init__(self, *args, **kwargs) -> None: ... method category (line 36) | def category(self) -> str: ... method children (line 37) | def children(self) -> list[ResourceHandle]: ... method gui_name (line 38) | def gui_name(self) -> str: ... method id (line 39) | def id(self) -> tuple[str, str, str]: ... method internal_properties (line 40) | def internal_properties(self) -> str: ... method parent (line 41) | def parent(self) -> ResourceHandle | None: ... method select (line 42) | def select(self) -> None: ... method set_custom_preview (line 43) | def set_custom_preview(self, preview_image_path: str) -> None: ... method tags (line 44) | def tags(self) -> list[str]: ... method type (line 45) | def type(self) -> str: ... method usages (line 46) | def usages(self) -> list[str]: ... method __eq__ (line 47) | def __eq__(self, arg0: ResourceHandle) -> bool: ... # type: ignore[ov... method __hash__ (line 48) | def __hash__(self) -> int: ... method __ne__ (line 49) | def __ne__(self, arg0: ResourceHandle) -> bool: ... # type: ignore[ov... function add_shelf (line 51) | def add_shelf(name: str, path: str) -> None: ... function all_shelves (line 52) | def all_shelves() -> list[str]: ... function application_shelf (line 53) | def application_shelf() -> str: ... function highlight_resources (line 54) | def highlight_resources(handles: list[ResourceHandle]) -> None: ... function import_resource (line 55) | def import_resource(*args, **kwargs): ... function is_shelf_crawling (line 56) | def is_shelf_crawling(arg0: str) -> bool: ... function is_shelf_editable (line 57) | def is_shelf_editable(name: str) -> bool: ... function list_layer_stack_resources (line 58) | def list_layer_stack_resources() -> list: ... function refresh_shelves (line 59) | def refresh_shelves() -> None: ... function remove_shelf (line 60) | def remove_shelf(name: str) -> None: ... function retrieve_resources (line 61) | def retrieve_resources(name: str, context_name: str, version: str | None... function search_resources (line 62) | def search_resources(query: str) -> list: ... function session_context_name (line 63) | def session_context_name() -> str: ... function shelf_exists (line 64) | def shelf_exists(name: str) -> bool: ... function shelf_path (line 65) | def shelf_path(name: str) -> str: ... function update_layer_stack_resource (line 66) | def update_layer_stack_resource(old_url: str, new_handle) -> list: ... function user_shelf (line 67) | def user_shelf() -> str: ... FILE: substance_painter/stubs/_substance_painter-stubs/source.pyi class AlphaMatte (line 6) | class AlphaMatte: method __init__ (line 12) | def __init__(self, value: int) -> None: ... method __eq__ (line 13) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 14) | def __hash__(self) -> int: ... method __index__ (line 15) | def __index__(self) -> int: ... method __int__ (line 16) | def __int__(self) -> int: ... method __ne__ (line 17) | def __ne__(self, other: object) -> bool: ... method name (line 19) | def name(self) -> str: ... method value (line 21) | def value(self) -> int: ... class CropAreaMode (line 23) | class CropAreaMode: method __init__ (line 28) | def __init__(self, value: int) -> None: ... method __eq__ (line 29) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 30) | def __hash__(self) -> int: ... method __index__ (line 31) | def __index__(self) -> int: ... method __int__ (line 32) | def __int__(self) -> int: ... method __ne__ (line 33) | def __ne__(self, other: object) -> bool: ... method name (line 35) | def name(self) -> str: ... method value (line 37) | def value(self) -> int: ... class EditionContextException (line 39) | class EditionContextException(ValueError): ... class HorizontalAlignment (line 41) | class HorizontalAlignment: method __init__ (line 47) | def __init__(self, value: int) -> None: ... method __eq__ (line 48) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 49) | def __hash__(self) -> int: ... method __index__ (line 50) | def __index__(self) -> int: ... method __int__ (line 51) | def __int__(self) -> int: ... method __ne__ (line 52) | def __ne__(self, other: object) -> bool: ... method name (line 54) | def name(self) -> str: ... method value (line 56) | def value(self) -> int: ... class ResolutionMode (line 58) | class ResolutionMode: method __init__ (line 64) | def __init__(self, value: int) -> None: ... method __eq__ (line 65) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 66) | def __hash__(self) -> int: ... method __index__ (line 67) | def __index__(self) -> int: ... method __int__ (line 68) | def __int__(self) -> int: ... method __ne__ (line 69) | def __ne__(self, other: object) -> bool: ... method name (line 71) | def name(self) -> str: ... method value (line 73) | def value(self) -> int: ... class SourceFontParams (line 75) | class SourceFontParams: method __init__ (line 89) | def __init__(self) -> None: ... class SourceMode (line 91) | class SourceMode: method __init__ (line 96) | def __init__(self, value: int) -> None: ... method __eq__ (line 97) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 98) | def __hash__(self) -> int: ... method __index__ (line 99) | def __index__(self) -> int: ... method __int__ (line 100) | def __int__(self) -> int: ... method __ne__ (line 101) | def __ne__(self, other: object) -> bool: ... method name (line 103) | def name(self) -> str: ... method value (line 105) | def value(self) -> int: ... class SourceType (line 107) | class SourceType: method __init__ (line 116) | def __init__(self, value: int) -> None: ... method __eq__ (line 117) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 118) | def __hash__(self) -> int: ... method __index__ (line 119) | def __index__(self) -> int: ... method __int__ (line 120) | def __int__(self) -> int: ... method __ne__ (line 121) | def __ne__(self, other: object) -> bool: ... method name (line 123) | def name(self) -> str: ... method value (line 125) | def value(self) -> int: ... class SourceVectorialParams (line 127) | class SourceVectorialParams: method __init__ (line 135) | def __init__(self) -> None: ... class VerticalAlignment (line 137) | class VerticalAlignment: method __init__ (line 143) | def __init__(self, value: int) -> None: ... method __eq__ (line 144) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 145) | def __hash__(self) -> int: ... method __index__ (line 146) | def __index__(self) -> int: ... method __int__ (line 147) | def __int__(self) -> int: ... method __ne__ (line 148) | def __ne__(self, other: object) -> bool: ... method name (line 150) | def name(self) -> str: ... method value (line 152) | def value(self) -> int: ... function apply_procedural_preset (line 154) | def apply_procedural_preset(arg0: int, arg1: str) -> None: ... function channel_mapping_contains (line 155) | def channel_mapping_contains(arg0: int, arg1) -> bool: ... function channel_mapping_keys (line 156) | def channel_mapping_keys(*args, **kwargs): ... function channel_mapping_len (line 157) | def channel_mapping_len(arg0: int) -> int: ... function get_active_channel (line 158) | def get_active_channel(*args, **kwargs): ... function get_active_channels (line 159) | def get_active_channels(*args, **kwargs): ... function get_active_output (line 160) | def get_active_output(arg0: int, arg1) -> str: ... function get_bitmap_color_space (line 161) | def get_bitmap_color_space(arg0: int) -> _substance_painter.colormanagem... function get_fill_material_source (line 162) | def get_fill_material_source(arg0: int) -> int | None: ... function get_fill_source (line 163) | def get_fill_source(arg0: int, arg1) -> int | None: ... function get_fill_source_mode (line 164) | def get_fill_source_mode(arg0: int) -> SourceMode | None: ... function get_filter_source (line 165) | def get_filter_source(arg0: int) -> int | None: ... function get_generator_source (line 166) | def get_generator_source(arg0: int) -> int | None: ... function get_mask_output (line 167) | def get_mask_output(arg0: int) -> str: ... function get_procedural_inputs (line 168) | def get_procedural_inputs(arg0: int) -> list[str]: ... function get_procedural_outputs (line 169) | def get_procedural_outputs(arg0: int) -> list[str]: ... function get_procedural_preset_list (line 170) | def get_procedural_preset_list(arg0: int) -> list[str]: ... function get_reference_alpha_matte (line 171) | def get_reference_alpha_matte(arg0: int) -> AlphaMatte: ... function get_reference_anchor_uid (line 172) | def get_reference_anchor_uid(arg0: int) -> int | None: ... function get_reference_levels (line 173) | def get_reference_levels(arg0: int) -> _substance_painter.levels.LevelsP... function get_reference_levels_is_color (line 174) | def get_reference_levels_is_color(arg0: int) -> bool: ... function get_source (line 175) | def get_source(arg0: int, arg1: str) -> int | None: ... function get_source_bitmap_url (line 176) | def get_source_bitmap_url(arg0: int) -> str: ... function get_source_font_parameters (line 177) | def get_source_font_parameters(arg0: int) -> SourceFontParams: ... function get_source_font_url (line 178) | def get_source_font_url(arg0: int) -> str: ... function get_source_procedural_parameters (line 179) | def get_source_procedural_parameters(arg0: int) -> list[_substance_paint... function get_source_procedural_url (line 180) | def get_source_procedural_url(arg0: int) -> str: ... function get_source_type (line 181) | def get_source_type(arg0: int) -> SourceType: ... function get_source_uniform_color (line 182) | def get_source_uniform_color(arg0: int) -> _substance_painter.colormanag... function get_source_vectorial_parameters (line 183) | def get_source_vectorial_parameters(arg0: int) -> SourceVectorialParams:... function get_source_vectorial_url (line 184) | def get_source_vectorial_url(arg0: int) -> str: ... function list_bitmap_available_color_spaces (line 185) | def list_bitmap_available_color_spaces(arg0: int) -> list[_substance_pai... function output_mapping_contains (line 186) | def output_mapping_contains(arg0: int, arg1) -> bool: ... function output_mapping_keys (line 187) | def output_mapping_keys(*args, **kwargs): ... function output_mapping_len (line 188) | def output_mapping_len(arg0: int) -> int: ... function remove_fill_source (line 189) | def remove_fill_source(arg0: int, arg1) -> None: ... function remove_filter_source (line 190) | def remove_filter_source(arg0: int) -> None: ... function remove_generator_source (line 191) | def remove_generator_source(arg0: int) -> None: ... function remove_source (line 192) | def remove_source(arg0: int, arg1: str) -> None: ... function reset_bitmap_color_space (line 193) | def reset_bitmap_color_space(arg0: int) -> None: ... function reset_fill_material_source (line 194) | def reset_fill_material_source(arg0: int) -> None: ... function reset_fill_source (line 195) | def reset_fill_source(arg0: int, arg1) -> None: ... function reset_source (line 196) | def reset_source(arg0: int, arg1: str) -> None: ... function set_active_channel (line 197) | def set_active_channel(arg0: int, arg1, arg2) -> None: ... function set_active_channels (line 198) | def set_active_channels(arg0: int, arg1) -> None: ... function set_active_output (line 199) | def set_active_output(arg0: int, arg1, arg2: str) -> None: ... function set_bitmap_color_space (line 200) | def set_bitmap_color_space(arg0: int, arg1: _substance_painter.colormana... function set_fill_material_source (line 202) | def set_fill_material_source(arg0: int, arg1: str) -> int | None: ... function set_fill_material_source (line 204) | def set_fill_material_source(arg0: int, arg1: int) -> int | None: ... function set_fill_source (line 206) | def set_fill_source(arg0: int, arg1, arg2: str) -> int | None: ... function set_fill_source (line 208) | def set_fill_source(arg0: int, arg1, arg2: _substance_painter.colormanag... function set_fill_source (line 210) | def set_fill_source(arg0: int, arg1, arg2: int) -> int | None: ... function set_fill_sources_from_preset (line 211) | def set_fill_sources_from_preset(arg0: int, arg1: str) -> None: ... function set_filter_source (line 212) | def set_filter_source(arg0: int, arg1: str) -> int | None: ... function set_generator_source (line 213) | def set_generator_source(arg0: int, arg1: str) -> int | None: ... function set_mask_output (line 214) | def set_mask_output(arg0: int, arg1: str) -> None: ... function set_reference_alpha_matte (line 215) | def set_reference_alpha_matte(arg0: int, arg1: AlphaMatte) -> None: ... function set_reference_levels (line 216) | def set_reference_levels(arg0: int, arg1: _substance_painter.levels.Leve... function set_source (line 218) | def set_source(arg0: int, arg1: str, arg2: str) -> int | None: ... function set_source (line 220) | def set_source(arg0: int, arg1: str, arg2: _substance_painter.colormanag... function set_source (line 222) | def set_source(arg0: int, arg1: str, arg2: int) -> int | None: ... function set_source_font_parameters (line 223) | def set_source_font_parameters(arg0: int, arg1: SourceFontParams) -> Non... function set_source_procedural_parameters (line 224) | def set_source_procedural_parameters(arg0: int, arg1: list[tuple[_substa... function set_source_uniform_color (line 225) | def set_source_uniform_color(arg0: int, arg1: _substance_painter.colorma... function set_source_vectorial_parameters (line 226) | def set_source_vectorial_parameters(arg0: int, arg1: SourceVectorialPara... FILE: substance_painter/stubs/_substance_painter-stubs/textureset.pyi class ChannelFormat (line 3) | class ChannelFormat: method __init__ (line 15) | def __init__(self, value: int) -> None: ... method __eq__ (line 16) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 17) | def __hash__(self) -> int: ... method __index__ (line 18) | def __index__(self) -> int: ... method __int__ (line 19) | def __int__(self) -> int: ... method __ne__ (line 20) | def __ne__(self, other: object) -> bool: ... method name (line 22) | def name(self) -> str: ... method value (line 24) | def value(self) -> int: ... class ChannelType (line 26) | class ChannelType: method __init__ (line 77) | def __init__(self, value: int) -> None: ... method __eq__ (line 78) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 79) | def __hash__(self) -> int: ... method __index__ (line 80) | def __index__(self) -> int: ... method __int__ (line 81) | def __int__(self) -> int: ... method __ne__ (line 82) | def __ne__(self, other: object) -> bool: ... method name (line 84) | def name(self) -> str: ... method value (line 86) | def value(self) -> int: ... class MeshMapUsage (line 88) | class MeshMapUsage: method __init__ (line 101) | def __init__(self, value: int) -> None: ... method __eq__ (line 102) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 103) | def __hash__(self) -> int: ... method __index__ (line 104) | def __index__(self) -> int: ... method __int__ (line 105) | def __int__(self) -> int: ... method __ne__ (line 106) | def __ne__(self, other: object) -> bool: ... method name (line 108) | def name(self) -> str: ... method value (line 110) | def value(self) -> int: ... function add_channel (line 112) | def add_channel(stack_id: int, type: ChannelType, format: ChannelFormat,... function all_stacks (line 113) | def all_stacks(texture_set_id: int) -> list[int]: ... function all_texture_set_mesh_names (line 114) | def all_texture_set_mesh_names(texture_set_id: int) -> list[str]: ... function all_texture_sets (line 115) | def all_texture_sets() -> list[int]: ... function all_uv_tiles (line 116) | def all_uv_tiles(texture_set_id: int) -> list[tuple[int, int]]: ... function all_uvtile_mesh_names (line 117) | def all_uvtile_mesh_names(texture_set_id: int, uv_tile: tuple[int, int])... function channel_bit_depth (line 118) | def channel_bit_depth(channel_id: int) -> int: ... function channel_format (line 119) | def channel_format(channel_id: int) -> ChannelFormat: ... function channel_is_color (line 120) | def channel_is_color(channel_id: int) -> bool: ... function channel_is_floating (line 121) | def channel_is_floating(channel_id: int) -> bool: ... function channel_type (line 122) | def channel_type(channel_id: int) -> ChannelType: ... function channel_user_name (line 123) | def channel_user_name(channel_id: int) -> str: ... function edit_channel (line 124) | def edit_channel(channel_id: int, format: ChannelFormat, label: str) -> ... function get_active_stack (line 125) | def get_active_stack() -> int: ... function get_channel (line 126) | def get_channel(stack_id: int, type: ChannelType) -> int: ... function get_mesh_map_resource (line 127) | def get_mesh_map_resource(texture_set_id: int, usage: MeshMapUsage) -> s... function get_resolution (line 128) | def get_resolution(texture_set_id: int) -> tuple[int, int]: ... function get_uvtiles_resolution (line 129) | def get_uvtiles_resolution(texture_set_id: int) -> dict[tuple[int, int],... function has_channel (line 130) | def has_channel(stack_id: int, type: ChannelType) -> bool: ... function has_uv_tiles (line 131) | def has_uv_tiles(texture_set_id: int) -> bool: ... function is_layered_material (line 132) | def is_layered_material(texture_set_id: int) -> bool: ... function material_from_stack (line 133) | def material_from_stack(stack_id: int) -> int: ... function material_name (line 134) | def material_name(texture_set_id: int) -> str: ... function remove_channel (line 135) | def remove_channel(stack_id: int, type: ChannelType) -> None: ... function reset_uvtiles_resolution (line 136) | def reset_uvtiles_resolution(texture_set_id: int, uv_tiles: set[tuple[in... function set_active_stack (line 137) | def set_active_stack(stack_id: int) -> None: ... function set_mesh_map_resource (line 138) | def set_mesh_map_resource(texture_set_id: int, usage: MeshMapUsage, new_... function set_resolution (line 139) | def set_resolution(texture_set_ids: list[int], width: int, height: int) ... function set_uvtiles_resolution (line 140) | def set_uvtiles_resolution(texture_set_id: int, resolutions: dict[tuple[... function stack_name (line 141) | def stack_name(stack_id: int) -> str: ... FILE: substance_painter/stubs/_substance_painter-stubs/ui.pyi class ApplicationMenu (line 3) | class ApplicationMenu: method __init__ (line 13) | def __init__(self, value: int) -> None: ... method __eq__ (line 14) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 15) | def __hash__(self) -> int: ... method __index__ (line 16) | def __index__(self) -> int: ... method __int__ (line 17) | def __int__(self) -> int: ... method __ne__ (line 18) | def __ne__(self, other: object) -> bool: ... method name (line 20) | def name(self) -> str: ... method value (line 22) | def value(self) -> int: ... class UIMode (line 24) | class UIMode: method __init__ (line 30) | def __init__(self, value: int) -> None: ... method __and__ (line 31) | def __and__(self, other: object) -> object: ... method __eq__ (line 32) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 33) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 34) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 35) | def __hash__(self) -> int: ... method __index__ (line 36) | def __index__(self) -> int: ... method __int__ (line 37) | def __int__(self) -> int: ... method __invert__ (line 38) | def __invert__(self) -> object: ... method __le__ (line 39) | def __le__(self, other: object) -> bool: ... method __lt__ (line 40) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 41) | def __ne__(self, other: object) -> bool: ... method __or__ (line 42) | def __or__(self, other: object) -> object: ... method __rand__ (line 43) | def __rand__(self, other: object) -> object: ... method __ror__ (line 44) | def __ror__(self, other: object) -> object: ... method __rxor__ (line 45) | def __rxor__(self, other: object) -> object: ... method __xor__ (line 46) | def __xor__(self, other: object) -> object: ... method name (line 48) | def name(self) -> str: ... method value (line 50) | def value(self) -> int: ... function add_action (line 52) | def add_action(arg0: ApplicationMenu, arg1: int) -> None: ... function add_dock_widget (line 53) | def add_dock_widget(arg0: int, arg1: int) -> int: ... function add_menu (line 54) | def add_menu(arg0: int) -> None: ... function add_plugins_toolbar_widget (line 55) | def add_plugins_toolbar_widget(arg0: int) -> None: ... function add_toolbar (line 56) | def add_toolbar(arg0: str, arg1: str, arg2: int) -> int: ... function get_current_mode (line 57) | def get_current_mode() -> UIMode: ... function get_layout (line 58) | def get_layout(arg0: UIMode) -> bytes: ... function get_layout_mode (line 59) | def get_layout_mode(arg0: bytes) -> UIMode: ... function get_main_window_ptr (line 60) | def get_main_window_ptr() -> int: ... function reset_layout (line 61) | def reset_layout(arg0: UIMode) -> None: ... function set_layout (line 62) | def set_layout(arg0: bytes) -> UIMode: ... function show_main_window (line 63) | def show_main_window() -> None: ... function switch_to_mode (line 64) | def switch_to_mode(arg0: UIMode) -> None: ... FILE: substance_painter/stubs/substance_painter-stubs/_executor.pyi class ProjectExecutor (line 4) | class ProjectExecutor: method __init__ (line 5) | def __init__(self, dispatcher) -> None: ... method execute_when_not_busy (line 6) | def execute_when_not_busy(self, callback) -> None: ... FILE: substance_painter/stubs/substance_painter-stubs/_utility.pyi function is_mock (line 1) | def is_mock(obj): ... function expose_private_obj (line 2) | def expose_private_obj(obj, module_name, fields=None, class_name=None): ... function type_mismatch_error_message (line 3) | def type_mismatch_error_message(argument_name: str, expected_argument_ty... function flatten_attributes (line 4) | def flatten_attributes(src, dst, overrides=None) -> None: ... function unflatten_attributes (line 5) | def unflatten_attributes(src, dst, overrides=None) -> None: ... function is_power_of_two (line 6) | def is_power_of_two(val: int) -> bool: ... function restrict_float_range (line 7) | def restrict_float_range(name: str, lower_bound: float, upper_bound: flo... function restrict_float_lower_bound (line 8) | def restrict_float_lower_bound(name: str, lower_bound: float): ... function restrict_color (line 9) | def restrict_color(name: str): ... function restrict_resolution (line 10) | def restrict_resolution(name: str, lower_bound: int, upper_bound: int): ... function restrict_positive_rect (line 11) | def restrict_positive_rect(name: str): ... class ReadOnlyUid (line 13) | class ReadOnlyUid: method __init__ (line 14) | def __init__(self, uid) -> None: ... method __setattr__ (line 15) | def __setattr__(self, name, value) -> None: ... method __eq__ (line 16) | def __eq__(self, other): ... method uid (line 17) | def uid(self) -> int: ... FILE: substance_painter/stubs/substance_painter-stubs/application.pyi function version_info (line 4) | def version_info() -> tuple[int, int, int]: ... function version (line 5) | def version() -> str: ... function engine_computations_status (line 6) | def engine_computations_status() -> bool: ... function enable_engine_computations (line 7) | def enable_engine_computations(enable: bool): ... function disable_engine_computations (line 9) | def disable_engine_computations() -> Generator[None]: ... function close (line 10) | def close() -> None: ... FILE: substance_painter/stubs/substance_painter-stubs/async_utils.pyi class StopSource (line 5) | class StopSource: method __bool__ (line 7) | def __bool__(self) -> bool: ... method request_stop (line 8) | def request_stop(self) -> bool: ... method stop_requested (line 9) | def stop_requested(self) -> bool: ... FILE: substance_painter/stubs/substance_painter-stubs/baking.pyi class BakingParameters (line 11) | class BakingParameters: method from_texture_set (line 14) | def from_texture_set(texture_set: TextureSet) -> BakingParameters: ... method from_texture_set_name (line 16) | def from_texture_set_name(texture_set_name: str) -> BakingParameters: ... method texture_set (line 17) | def texture_set(self) -> TextureSet: ... method common (line 18) | def common(self) -> dict[str, Property]: ... method baker (line 19) | def baker(self, baked_map: MeshMapUsage) -> dict[str, Property]: ... method set (line 21) | def set(property_values: dict[Property, PropertyValue]) -> None: ... method get_curvature_method (line 22) | def get_curvature_method(self) -> CurvatureMethod: ... method set_curvature_method (line 23) | def set_curvature_method(self, method: CurvatureMethod): ... method is_baker_enabled (line 24) | def is_baker_enabled(self, usage: MeshMapUsage) -> bool: ... method set_baker_enabled (line 25) | def set_baker_enabled(self, usage: MeshMapUsage, enable: bool) -> None... method get_enabled_bakers (line 26) | def get_enabled_bakers(self) -> list[MeshMapUsage]: ... method set_enabled_bakers (line 27) | def set_enabled_bakers(self, enabled_usages: list[MeshMapUsage]) -> No... method is_textureset_enabled (line 28) | def is_textureset_enabled(self) -> bool: ... method set_textureset_enabled (line 29) | def set_textureset_enabled(self, enable: bool) -> None: ... method is_uv_tile_enabled (line 30) | def is_uv_tile_enabled(self, uv_tile: UVTile) -> bool: ... method set_uv_tile_enabled (line 31) | def set_uv_tile_enabled(self, uv_tile: UVTile, enable: bool) -> None: ... method get_enabled_uv_tiles (line 32) | def get_enabled_uv_tiles(self) -> list[UVTile]: ... method set_enabled_uv_tiles (line 33) | def set_enabled_uv_tiles(self, enabled_uv_tiles: list[UVTile]) -> None... function set_linked_group (line 35) | def set_linked_group(group: list[TextureSet], reference: TextureSet, usa... function set_linked_group_common_parameters (line 36) | def set_linked_group_common_parameters(group: list[TextureSet], referenc... function unlink_all (line 37) | def unlink_all(usage: MeshMapUsage) -> None: ... function unlink_all_common_parameters (line 38) | def unlink_all_common_parameters() -> None: ... function get_link_group (line 39) | def get_link_group(usage: MeshMapUsage) -> list[TextureSet]: ... function get_link_group_common_parameters (line 40) | def get_link_group_common_parameters() -> list[TextureSet]: ... function get_linked_texture_sets (line 41) | def get_linked_texture_sets(texture_set: TextureSet, usage: MeshMapUsage... function get_linked_texture_sets_common_parameters (line 42) | def get_linked_texture_sets_common_parameters(texture_set: TextureSet) -... function bake_async (line 43) | def bake_async(texture_set: TextureSet) -> StopSource: ... function bake_selected_textures_async (line 44) | def bake_selected_textures_async() -> StopSource: ... FILE: substance_painter/stubs/substance_painter-stubs/colormanagement.pyi class GenericColorSpace (line 3) | class GenericColorSpace(Enum): class LegacyColorSpace (line 8) | class LegacyColorSpace(Enum): class DataColorSpace (line 12) | class DataColorSpace(Enum): class NormalColorSpace (line 16) | class NormalColorSpace(Enum): class Color (line 22) | class Color: method __init__ (line 25) | def __init__(self, r: float, g: float, b: float, color_space: ColorCol... method convert (line 26) | def convert(self, color_space: ColorColorSpace) -> tuple[float, float,... method value (line 28) | def value(self) -> tuple[float, float, float]: ... method sRGB (line 30) | def sRGB(self) -> tuple[float, float, float]: ... method sRGB (line 32) | def sRGB(self, value: tuple[float, float, float]) -> None: ... method working (line 34) | def working(self) -> tuple[float, float, float]: ... method working (line 36) | def working(self, value: tuple[float, float, float]) -> None: ... FILE: substance_painter/stubs/substance_painter-stubs/display.pyi function get_environment_resource (line 7) | def get_environment_resource() -> substance_painter.resource.ResourceID ... function set_environment_resource (line 8) | def set_environment_resource(new_env_map: substance_painter.resource.Res... function get_color_lut_resource (line 9) | def get_color_lut_resource() -> substance_painter.resource.ResourceID | ... function set_color_lut_resource (line 10) | def set_color_lut_resource(new_color_lut: substance_painter.resource.Res... function get_tone_mapping (line 11) | def get_tone_mapping() -> ToneMappingFunction: ... function set_tone_mapping (line 12) | def set_tone_mapping(new_tone_mapping: ToneMappingFunction) -> None: ... class Camera (line 17) | class Camera: method get_default_camera (line 19) | def get_default_camera() -> Camera: ... method position (line 21) | def position(self) -> list[float]: ... method position (line 23) | def position(self, position: list[float]) -> None: ... method rotation (line 25) | def rotation(self) -> list[float]: ... method rotation (line 27) | def rotation(self, rotation: list[float]) -> None: ... method field_of_view (line 29) | def field_of_view(self) -> float: ... method field_of_view (line 31) | def field_of_view(self, fov: float) -> None: ... method focal_length (line 33) | def focal_length(self) -> float: ... method focal_length (line 35) | def focal_length(self, focal_length: float) -> None: ... method focus_distance (line 37) | def focus_distance(self) -> float: ... method focus_distance (line 39) | def focus_distance(self, focus_distance: float) -> None: ... method aperture (line 41) | def aperture(self) -> float: ... method aperture (line 43) | def aperture(self, aperture: float) -> None: ... method orthographic_height (line 45) | def orthographic_height(self) -> float: ... method orthographic_height (line 47) | def orthographic_height(self, orthographic_height: float) -> None: ... method projection_type (line 49) | def projection_type(self) -> CameraProjectionType: ... method projection_type (line 51) | def projection_type(self, projection_type: CameraProjectionType) -> No... FILE: substance_painter/stubs/substance_painter-stubs/event.pyi class Event (line 12) | class Event: ... class _TestEvent (line 15) | class _TestEvent(Event): class _DunamisEvent (line 19) | class _DunamisEvent(Event): class ProjectOpened (line 29) | class ProjectOpened(Event): ... class ProjectCreated (line 31) | class ProjectCreated(Event): ... class ProjectAboutToClose (line 33) | class ProjectAboutToClose(Event): ... class ProjectClosed (line 35) | class ProjectClosed(Event): ... class ProjectAboutToSave (line 38) | class ProjectAboutToSave(Event): class ProjectSaved (line 42) | class ProjectSaved(Event): ... class ExportTexturesAboutToStart (line 45) | class ExportTexturesAboutToStart(Event): class ExportTexturesEnded (line 49) | class ExportTexturesEnded(Event): class ShelfCrawlingStarted (line 55) | class ShelfCrawlingStarted(Event): class ShelfCrawlingEnded (line 59) | class ShelfCrawlingEnded(Event): class _ProjectEditionEntered (line 63) | class _ProjectEditionEntered(Event): ... class _ProjectEditionLeft (line 65) | class _ProjectEditionLeft(Event): ... class ProjectEditionEntered (line 67) | class ProjectEditionEntered(Event): ... class ProjectEditionLeft (line 69) | class ProjectEditionLeft(Event): ... class BusyStatusChanged (line 72) | class BusyStatusChanged(Event): class BakingProcessAboutToStart (line 76) | class BakingProcessAboutToStart(Event): class BakingProcessProgress (line 80) | class BakingProcessProgress(Event): class BakingProcessEnded (line 84) | class BakingProcessEnded(Event): class _LayerStacksModelDataChanged (line 88) | class _LayerStacksModelDataChanged(Event): ... class LayerStacksModelDataChanged (line 90) | class LayerStacksModelDataChanged(Event): ... class EngineComputationsStatusChanged (line 93) | class EngineComputationsStatusChanged(Event): class TextureStateEvent (line 99) | class TextureStateEvent(Event): method cache_key_invalidation_throttling_period (line 101) | def cache_key_invalidation_throttling_period() -> datetime.timedelta: ... method set_cache_key_invalidation_throttling_period (line 103) | def set_cache_key_invalidation_throttling_period(period: datetime.time... class CameraPropertiesChanged (line 111) | class CameraPropertiesChanged(Event): class _ProjectEditionStateEventsGenerator (line 114) | class _ProjectEditionStateEventsGenerator: class _State (line 115) | class _State(enum.Enum): method __init__ (line 119) | def __init__(self, dispatcher) -> None: ... class Dispatcher (line 121) | class Dispatcher: method __init__ (line 122) | def __init__(self) -> None: ... method connect (line 123) | def connect(self, event_cls: type[Event], callback: Callable[[Event], ... method connect_strong (line 124) | def connect_strong(self, event_cls: type[Event], callback: Callable[[E... method disconnect (line 125) | def disconnect(self, event_cls: type[Event], callback: Callable[[Event... FILE: substance_painter/stubs/substance_painter-stubs/export.pyi function list_project_textures (line 8) | def list_project_textures(json_config: dict) -> dict[tuple[str, str], li... class TextureExportResult (line 11) | class TextureExportResult: function export_project_textures (line 16) | def export_project_textures(json_config: dict) -> TextureExportResult: ... function get_default_export_path (line 17) | def get_default_export_path() -> str: ... class PredefinedExportPreset (line 20) | class PredefinedExportPreset: method list_output_maps (line 23) | def list_output_maps(self, stack: substance_painter.textureset.Stack) ... function list_predefined_export_presets (line 25) | def list_predefined_export_presets() -> list[PredefinedExportPreset]: ... class ResourceExportPreset (line 28) | class ResourceExportPreset: method list_output_maps (line 30) | def list_output_maps(self) -> list: ... function list_resource_export_presets (line 32) | def list_resource_export_presets() -> list[ResourceExportPreset]: ... function scene_is_triangulated (line 36) | def scene_is_triangulated() -> bool: ... function scene_has_tessellation (line 37) | def scene_has_tessellation() -> bool: ... class MeshExportResult (line 40) | class MeshExportResult: function export_mesh (line 44) | def export_mesh(file_path: str, option: MeshExportOption) -> MeshExportR... FILE: substance_painter/stubs/substance_painter-stubs/js.pyi function evaluate (line 1) | def evaluate(js_code: str) -> str: ... FILE: substance_painter/stubs/substance_painter-stubs/layerstack.pyi class NodeStack (line 17) | class NodeStack(Enum): class ScopedModification (line 34) | class ScopedModification: method __init__ (line 36) | def __init__(self, name) -> None: ... method __enter__ (line 37) | def __enter__(self) -> None: ... method __exit__ (line 38) | def __exit__(self, exc_type: type[BaseException] | None, exc_value: Ba... class FillParamsEditorMixin (line 40) | class FillParamsEditorMixin: method get_projection_mode (line 41) | def get_projection_mode(self) -> ProjectionMode: ... method set_projection_mode (line 42) | def set_projection_mode(self, projection_mode: ProjectionMode): ... method get_projection_parameters (line 43) | def get_projection_parameters(self) -> ProjectionParams | None: ... method set_projection_parameters (line 44) | def set_projection_parameters(self, projection_parameters: ProjectionP... class Node (line 46) | class Node(ReadOnlyUid): method __eq__ (line 47) | def __eq__(self, other): ... method __hash__ (line 48) | def __hash__(self): ... method get_type (line 49) | def get_type(self) -> NodeType: ... method get_texture_set (line 50) | def get_texture_set(self) -> TextureSet: ... method is_visible (line 51) | def is_visible(self) -> bool: ... method set_visible (line 52) | def set_visible(self, visible: bool): ... method get_name (line 53) | def get_name(self) -> str: ... method set_name (line 54) | def set_name(self, name: str): ... method is_in_mask_stack (line 55) | def is_in_mask_stack(self) -> bool: ... method has_blending (line 56) | def has_blending(self) -> bool: ... method get_blending_mode (line 57) | def get_blending_mode(self, channel: ChannelType | None = None) -> Ble... method set_blending_mode (line 58) | def set_blending_mode(self, blending_mode: BlendingMode, channel: Chan... method get_opacity (line 59) | def get_opacity(self, channel: ChannelType | None = None) -> float: ... method set_opacity (line 60) | def set_opacity(self, opacity: float, channel: ChannelType | None = No... method get_stack (line 61) | def get_stack(self) -> Stack: ... method get_parent (line 62) | def get_parent(self) -> Node: ... method get_next_sibling (line 63) | def get_next_sibling(self) -> Node: ... method get_previous_sibling (line 64) | def get_previous_sibling(self) -> Node: ... class LayerNode (line 66) | class LayerNode(Node): method content_effects (line 67) | def content_effects(self) -> list[EffectNode]: ... method mask_effects (line 68) | def mask_effects(self) -> list[EffectNode]: ... method instances (line 69) | def instances(self) -> list[LayerNode]: ... method get_geometry_mask_type (line 70) | def get_geometry_mask_type(self) -> GeometryMaskType: ... method set_geometry_mask_type (line 71) | def set_geometry_mask_type(self, geometry_mask_type: GeometryMaskType)... method get_geometry_mask_enabled_meshes (line 72) | def get_geometry_mask_enabled_meshes(self) -> list[str]: ... method set_geometry_mask_enabled_meshes (line 73) | def set_geometry_mask_enabled_meshes(self, mesh_names: list[str]): ... method get_geometry_mask_enabled_uv_tiles (line 74) | def get_geometry_mask_enabled_uv_tiles(self) -> list[UVTile]: ... method set_geometry_mask_enabled_uv_tiles (line 75) | def set_geometry_mask_enabled_uv_tiles(self, uv_tiles: list[UVTile]): ... method has_mask (line 76) | def has_mask(self) -> bool: ... method add_mask (line 77) | def add_mask(self, background: MaskBackground): ... method remove_mask (line 78) | def remove_mask(self) -> None: ... method get_mask_background (line 79) | def get_mask_background(self) -> MaskBackground: ... method set_mask_background (line 80) | def set_mask_background(self, background: MaskBackground): ... method is_mask_enabled (line 81) | def is_mask_enabled(self) -> bool: ... method enable_mask (line 82) | def enable_mask(self, enabled: bool): ... class GroupLayerNode (line 84) | class GroupLayerNode(LayerNode): method sub_layers (line 85) | def sub_layers(self) -> list[LayerNode]: ... method is_collapsed (line 86) | def is_collapsed(self) -> bool: ... method set_collapsed (line 87) | def set_collapsed(self, collapsed: bool): ... class PaintLayerNode (line 89) | class PaintLayerNode(LayerNode): ... class InstanceLayerNode (line 91) | class InstanceLayerNode(LayerNode): method instance_source (line 92) | def instance_source(self) -> LayerNode: ... class FillLayerNode (line 94) | class FillLayerNode(FillParamsEditorMixin, SourceEditorMixin, LayerNode)... class GeneratorEffectNode (line 97) | class GeneratorEffectNode(ActiveChannelsMixin, Node): method get_source (line 98) | def get_source(self) -> SourceSubstance: ... method set_source (line 99) | def set_source(self, res: substance_painter.resource.ResourceID) -> So... method remove_source (line 100) | def remove_source(self) -> None: ... class PaintEffectNode (line 102) | class PaintEffectNode(Node): ... class FillEffectNode (line 103) | class FillEffectNode(FillParamsEditorMixin, SourceEditorMixin, Node): ... class LevelsEffectNode (line 105) | class LevelsEffectNode(Node): method affected_channel (line 107) | def affected_channel(self) -> ChannelType: ... method affected_channel (line 109) | def affected_channel(self, channel: ChannelType) -> None: ... method get_parameters (line 110) | def get_parameters(self) -> LevelsParams: ... method set_parameters (line 111) | def set_parameters(self, params: LevelsParams) -> None: ... class CompareMaskEffectParams (line 114) | class CompareMaskEffectParams: class CompareMaskEffectNode (line 123) | class CompareMaskEffectNode(Node): method get_parameters (line 124) | def get_parameters(self) -> CompareMaskEffectParams: ... method set_parameters (line 125) | def set_parameters(self, params: CompareMaskEffectParams) -> None: ... class FilterEffectNode (line 127) | class FilterEffectNode(ActiveChannelsMixin, Node): method get_source (line 128) | def get_source(self) -> SourceSubstance: ... method set_source (line 129) | def set_source(self, res: substance_painter.resource.ResourceID) -> So... method remove_source (line 130) | def remove_source(self) -> None: ... class ColorSelectionEffectParams (line 133) | class ColorSelectionEffectParams: class ColorSelectionEffectNode (line 141) | class ColorSelectionEffectNode(Node): method get_parameters (line 142) | def get_parameters(self) -> ColorSelectionEffectParams: ... method set_parameters (line 143) | def set_parameters(self, params: ColorSelectionEffectParams) -> None: ... class AnchorPointEffectNode (line 145) | class AnchorPointEffectNode(Node): ... function get_root_layer_nodes (line 148) | def get_root_layer_nodes(stack: Stack) -> list[HierarchicalNode]: ... function get_node_by_uid (line 149) | def get_node_by_uid(node_id: int) -> list[HierarchicalNode | EffectNode]... function get_selected_nodes (line 150) | def get_selected_nodes(stack: Stack) -> list[HierarchicalNode | EffectNo... function set_selected_nodes (line 151) | def set_selected_nodes(nodes: list[EffectNode] | list[LayerNode]): ... function get_selection_type (line 152) | def get_selection_type(layer: LayerNode) -> SelectionType: ... function set_selection_type (line 153) | def set_selection_type(layer: LayerNode, layer_selection_type: Selection... function delete_node (line 154) | def delete_node(node: Node): ... class UVTransformationParams (line 157) | class UVTransformationParams: class Projection3DParams (line 164) | class Projection3DParams: class ProjectionCullingParams (line 170) | class ProjectionCullingParams: class UVProjectionParams (line 175) | class UVProjectionParams: class TriplanarProjectionParams (line 181) | class TriplanarProjectionParams: class PlanarProjectionParams (line 189) | class PlanarProjectionParams: class WarpProjectionParams (line 200) | class WarpProjectionParams: class SphericalProjectionParams (line 210) | class SphericalProjectionParams: class CylindricalProjectionParams (line 218) | class CylindricalProjectionParams: class UVSetToUVSetProjectionParams (line 228) | class UVSetToUVSetProjectionParams: class InsertPosition (line 236) | class InsertPosition: method from_textureset_stack (line 240) | def from_textureset_stack(stack: substance_painter.textureset.Stack) -... method above_node (line 242) | def above_node(node: Node) -> InsertPosition: ... method below_node (line 244) | def below_node(node: Node) -> InsertPosition: ... method inside_node (line 246) | def inside_node(node: Node, node_stack: NodeStack) -> InsertPosition: ... function insert_fill (line 248) | def insert_fill(position: InsertPosition) -> FillLayerNode | FillEffectN... function insert_paint (line 249) | def insert_paint(position: InsertPosition) -> PaintLayerNode | PaintEffe... function insert_group (line 250) | def insert_group(position: InsertPosition) -> GroupLayerNode: ... function instantiate (line 251) | def instantiate(position: InsertPosition, layer: LayerNode) -> InstanceL... function insert_levels_effect (line 252) | def insert_levels_effect(position: InsertPosition) -> LevelsEffectNode: ... function insert_compare_mask_effect (line 253) | def insert_compare_mask_effect(position: InsertPosition) -> CompareMaskE... function insert_filter_effect (line 254) | def insert_filter_effect(position: InsertPosition, filter_substance: sub... function insert_generator_effect (line 255) | def insert_generator_effect(position: InsertPosition, generator_substanc... function insert_anchor_point_effect (line 256) | def insert_anchor_point_effect(position: InsertPosition, name: str) -> A... function insert_color_selection_effect (line 257) | def insert_color_selection_effect(position: InsertPosition) -> ColorSele... function insert_smart_material (line 258) | def insert_smart_material(position: InsertPosition, smart_material: subs... function insert_smart_mask (line 259) | def insert_smart_mask(position: InsertPosition, smart_mask: substance_pa... FILE: substance_painter/stubs/substance_painter-stubs/levels.pyi class LevelsParamsRGB (line 4) | class LevelsParamsRGB: class LevelsParamsMono (line 13) | class LevelsParamsMono: FILE: substance_painter/stubs/substance_painter-stubs/logging.pyi function log (line 11) | def log(severity, channel: str, message: str): ... function info (line 12) | def info(message: str): ... function warning (line 13) | def warning(message: str): ... function error (line 14) | def error(message: str): ... FILE: substance_painter/stubs/substance_painter-stubs/project.pyi class UsdSettings (line 15) | class UsdSettings: class GltfSettings (line 22) | class GltfSettings: class Settings (line 26) | class Settings: method usd_settings (line 37) | def usd_settings(self): ... method usd_settings (line 39) | def usd_settings(self, value) -> None: ... class MeshReloadingSettings (line 42) | class MeshReloadingSettings: method usd_settings (line 47) | def usd_settings(self): ... method usd_settings (line 49) | def usd_settings(self, value) -> None: ... class _ActionLock (line 51) | class _ActionLock: method __enter__ (line 52) | def __enter__(self): ... method __exit__ (line 53) | def __exit__(self, err_type: type[BaseException] | None, err_value: Ba... function name (line 55) | def name() -> str | None: ... function file_path (line 56) | def file_path() -> str | None: ... function close (line 57) | def close() -> None: ... function open (line 58) | def open(project_file_path: str) -> None: ... function is_open (line 59) | def is_open() -> bool: ... function needs_saving (line 60) | def needs_saving() -> bool: ... function is_in_edition_state (line 61) | def is_in_edition_state() -> bool: ... function is_busy (line 62) | def is_busy() -> bool: ... function execute_when_not_busy (line 63) | def execute_when_not_busy(callback: Callable[[], None]) -> None: ... function save_as (line 64) | def save_as(project_file_path: str, mode: ProjectSaveMode = ...) -> None... function save (line 65) | def save(mode: ProjectSaveMode = ...) -> None: ... function save_as_copy (line 66) | def save_as_copy(backup_file_path: str, mode: ProjectSaveMode = ...) -> ... function save_as_template (line 67) | def save_as_template(template_file_path: str, texture_set_name: str) -> ... function create (line 68) | def create(mesh_file_path: str, mesh_map_file_paths: list[str] = None, t... function last_imported_mesh_path (line 69) | def last_imported_mesh_path() -> str: ... function last_saved_substance_painter_version (line 70) | def last_saved_substance_painter_version() -> tuple[int, int, int] | Non... class ReloadMeshStatus (line 72) | class ReloadMeshStatus(enum.Enum): function reload_mesh (line 76) | def reload_mesh(mesh_file_path: str, settings: MeshReloadingSettings, lo... class BoundingBox (line 79) | class BoundingBox: function get_scene_bounding_box (line 84) | def get_scene_bounding_box() -> BoundingBox: ... function get_uuid (line 85) | def get_uuid() -> uuid.UUID: ... class Metadata (line 87) | class Metadata: method __init__ (line 88) | def __init__(self, context: str) -> None: ... method list (line 89) | def list(self) -> list: ... method get (line 90) | def get(self, key: str): ... method set (line 91) | def set(self, key: str, value): ... FILE: substance_painter/stubs/substance_painter-stubs/properties.pyi class Property (line 9) | class Property: method value (line 11) | def value(self) -> PropertyValue: ... method name (line 12) | def name(self) -> str: ... method short_name (line 13) | def short_name(self) -> str: ... method label (line 14) | def label(self) -> str: ... method widget_type (line 15) | def widget_type(self) -> str: ... method enum_values (line 16) | def enum_values(self) -> dict[str, int]: ... method enum_value (line 17) | def enum_value(self, enum_label: str) -> int: ... method properties (line 18) | def properties(self) -> dict[str, typing.Any]: ... FILE: substance_painter/stubs/substance_painter-stubs/resource.pyi class ResourceLocation (line 5) | class ResourceLocation(enum.Enum): class ResourceID (line 11) | class ResourceID: method from_url (line 16) | def from_url(cls, url: str): ... method from_project (line 18) | def from_project(cls, name: str, version: str = None): ... # type: ig... method from_session (line 20) | def from_session(cls, name: str, version: str = None): ... # type: ig... method url (line 21) | def url(self) -> str: ... method location (line 22) | def location(self) -> ResourceLocation: ... class Usage (line 24) | class Usage(enum.Enum): class Type (line 44) | class Type(enum.Enum): class Resource (line 61) | class Resource: method __eq__ (line 63) | def __eq__(self, other): ... method __hash__ (line 64) | def __hash__(self): ... method identifier (line 65) | def identifier(self) -> ResourceID: ... method location (line 66) | def location(self) -> ResourceLocation: ... method retrieve (line 68) | def retrieve(identifier: ResourceID): ... method set_custom_preview (line 69) | def set_custom_preview(self, preview_image: str) -> None: ... method category (line 70) | def category(self) -> str: ... method usages (line 71) | def usages(self) -> list[Usage]: ... method gui_name (line 72) | def gui_name(self) -> str: ... method type (line 73) | def type(self) -> Type: ... method tags (line 74) | def tags(self) -> list[str]: ... method internal_properties (line 75) | def internal_properties(self) -> dict: ... method children (line 76) | def children(self) -> list['Resource']: ... method parent (line 77) | def parent(self) -> Resource | None: ... method reset_preview (line 78) | def reset_preview(self) -> None: ... method show_in_ui (line 79) | def show_in_ui(self) -> None: ... function show_resources_in_ui (line 81) | def show_resources_in_ui(resources: list[Resource]) -> None: ... function import_project_resource (line 82) | def import_project_resource(file_path: str, resource_usage: Usage, name:... function import_session_resource (line 83) | def import_session_resource(file_path: str, resource_usage: Usage, name:... class StandardQuery (line 85) | class StandardQuery: function search (line 91) | def search(query: str) -> list[Resource]: ... function list_layer_stack_resources (line 92) | def list_layer_stack_resources() -> list[ResourceID]: ... function update_layer_stack_resource (line 93) | def update_layer_stack_resource(old_resource_id: ResourceID, new_resourc... class Shelf (line 96) | class Shelf: method name (line 97) | def name(self) -> str: ... method path (line 98) | def path(self) -> str: ... method resources (line 99) | def resources(self, query: str = ...) -> list[Resource]: ... method can_import_resources (line 100) | def can_import_resources(self) -> bool: ... method import_resource (line 101) | def import_resource(self, file_path: str, resource_usage: Usage, name:... method is_crawling (line 102) | def is_crawling(self) -> bool: ... class Shelves (line 104) | class Shelves: method all (line 106) | def all() -> list[Shelf]: ... method exists (line 108) | def exists(name: str) -> bool: ... method add (line 110) | def add(name: str, path: str) -> Shelf: ... method remove (line 112) | def remove(name: str): ... method refresh_all (line 114) | def refresh_all() -> None: ... method user_shelf (line 116) | def user_shelf() -> Shelf: ... method application_shelf (line 118) | def application_shelf() -> Shelf: ... FILE: substance_painter/stubs/substance_painter-stubs/source.pyi class FontResolutionMode (line 14) | class FontResolutionMode(Enum): class VectorialResolutionMode (line 21) | class VectorialResolutionMode(Enum): class ActiveChannelsMixin (line 29) | class ActiveChannelsMixin: method active_channels (line 31) | def active_channels(self) -> set[ChannelType]: ... method active_channels (line 33) | def active_channels(self, channels: set[ChannelType]) -> None: ... class SourceEditorMixin (line 35) | class SourceEditorMixin(ActiveChannelsMixin): method source_mode (line 37) | def source_mode(self) -> SourceMode: ... method get_source (line 38) | def get_source(self, channeltype: ChannelType | None = None) -> Source... method set_source (line 39) | def set_source(self, channeltype: ChannelType | None, source: Resource... method reset_source (line 40) | def reset_source(self, channeltype: ChannelType | None = None) -> None... method get_material_source (line 41) | def get_material_source(self) -> SourceSubstance | SourceReference: ... method set_material_source (line 42) | def set_material_source(self, source: ResourceID | layerstack.AnchorPo... method reset_material_source (line 43) | def reset_material_source(self) -> None: ... method set_sources_from_preset (line 44) | def set_sources_from_preset(self, preset: ResourceID) -> None: ... class SourceUniformColor (line 46) | class SourceUniformColor(ReadOnlyUid): method get_color (line 47) | def get_color(self) -> Color: ... method set_color (line 48) | def set_color(self, color: Color) -> None: ... class SourceBitmap (line 50) | class SourceBitmap(ReadOnlyUid): method resource_id (line 52) | def resource_id(self) -> ResourceID: ... method get_color_space (line 53) | def get_color_space(self) -> ResourceColorSpace: ... method set_color_space (line 54) | def set_color_space(self, color_space: ResourceColorSpace): ... method reset_color_space (line 55) | def reset_color_space(self) -> None: ... method list_available_color_spaces (line 56) | def list_available_color_spaces(self) -> list[ResourceColorSpace]: ... class SourceFontParams (line 59) | class SourceFontParams: method __setattr__ (line 73) | def __setattr__(self, __name: str, /, __value: dataclasses.Any) -> Non... class SourceFont (line 75) | class SourceFont(ReadOnlyUid): method resource_id (line 77) | def resource_id(self) -> ResourceID: ... method get_parameters (line 78) | def get_parameters(self) -> SourceFontParams: ... method set_parameters (line 79) | def set_parameters(self, params: SourceFontParams) -> None: ... class SourceVectorialParams (line 82) | class SourceVectorialParams: method __setattr__ (line 90) | def __setattr__(self, __name: str, /, __value: dataclasses.Any) -> Non... class SourceVectorial (line 92) | class SourceVectorial(ReadOnlyUid): method resource_id (line 94) | def resource_id(self) -> ResourceID: ... method get_parameters (line 95) | def get_parameters(self) -> SourceVectorialParams: ... method set_parameters (line 96) | def set_parameters(self, params: SourceVectorialParams) -> None: ... class OutputMappingIterator (line 98) | class OutputMappingIterator: method __init__ (line 101) | def __init__(self, uid) -> None: ... method __iter__ (line 102) | def __iter__(self): ... method __next__ (line 103) | def __next__(self): ... class OutputMapping (line 105) | class OutputMapping(ReadOnlyUid): method __getitem__ (line 106) | def __getitem__(self, key: ChannelType) -> ChannelType: ... method __setitem__ (line 107) | def __setitem__(self, key: ChannelType, value: str) -> None: ... method __len__ (line 108) | def __len__(self) -> int: ... method __contains__ (line 109) | def __contains__(self, key: ChannelType) -> bool: ... method __iter__ (line 110) | def __iter__(self) -> OutputMappingIterator: ... class SourceSubstance (line 112) | class SourceSubstance(ReadOnlyUid): method resource_id (line 114) | def resource_id(self) -> ResourceID: ... method output_mapping (line 116) | def output_mapping(self) -> OutputMapping: ... method active_output (line 118) | def active_output(self) -> str: ... method active_output (line 120) | def active_output(self, identifier: str) -> None: ... method mask_output (line 122) | def mask_output(self) -> str: ... method mask_output (line 124) | def mask_output(self, identifier: str) -> None: ... method image_inputs (line 126) | def image_inputs(self) -> list[str]: ... method image_outputs (line 128) | def image_outputs(self) -> list[str]: ... method get_source (line 129) | def get_source(self, identifier: str) -> Source: ... method set_source (line 130) | def set_source(self, identifier: str, source: ResourceID | Color | lay... method reset_source (line 131) | def reset_source(self, identifier: str) -> None: ... method remove_source (line 132) | def remove_source(self, identifier: str) -> None: ... method get_parameters (line 133) | def get_parameters(self) -> dict[str, PropertyValue]: ... method set_parameters (line 134) | def set_parameters(self, property_values: dict[str, PropertyValue]) ->... method get_properties (line 135) | def get_properties(self) -> dict[str, Property]: ... method get_preset_list (line 136) | def get_preset_list(self) -> list[str]: ... method apply_preset (line 137) | def apply_preset(self, name: str): ... class ChannelMappingIterator (line 139) | class ChannelMappingIterator: method __init__ (line 142) | def __init__(self, uid) -> None: ... method __iter__ (line 143) | def __iter__(self): ... method __next__ (line 144) | def __next__(self): ... class ChannelMapping (line 146) | class ChannelMapping(ReadOnlyUid): method __getitem__ (line 147) | def __getitem__(self, key: ChannelType) -> ChannelType: ... method __setitem__ (line 148) | def __setitem__(self, key: ChannelType, value: ChannelType) -> None: ... method __len__ (line 149) | def __len__(self) -> int: ... method __contains__ (line 150) | def __contains__(self, key: ChannelType) -> bool: ... method __iter__ (line 151) | def __iter__(self) -> ChannelMappingIterator: ... class SourceReference (line 153) | class SourceReference(ReadOnlyUid): method channel_mapping (line 155) | def channel_mapping(self) -> ChannelMapping: ... method referenced_channel (line 157) | def referenced_channel(self) -> ChannelType: ... method referenced_channel (line 159) | def referenced_channel(self, channeltype: ChannelType) -> None: ... method anchor (line 161) | def anchor(self) -> layerstack.AnchorPointEffectNode: ... # type: ign... method alpha_matte (line 163) | def alpha_matte(self) -> AlphaMatte: ... method alpha_matte (line 165) | def alpha_matte(self, alpha_matte: AlphaMatte): ... method get_levels (line 166) | def get_levels(self) -> LevelsParams: ... method set_levels (line 167) | def set_levels(self, params: LevelsParams) -> None: ... FILE: substance_painter/stubs/substance_painter-stubs/textureset.pyi class Resolution (line 10) | class Resolution: class Channel (line 15) | class Channel: method format (line 17) | def format(self) -> ChannelFormat: ... method label (line 18) | def label(self) -> str: ... method is_color (line 19) | def is_color(self) -> bool: ... method is_floating (line 20) | def is_floating(self) -> bool: ... method bit_depth (line 21) | def bit_depth(self) -> int: ... method type (line 22) | def type(self) -> ChannelType: ... method edit (line 23) | def edit(self, channel_format: ChannelFormat, label: str | None = None... class UVTile (line 26) | class UVTile: method get_resolution (line 29) | def get_resolution(self) -> Resolution: ... method set_resolution (line 30) | def set_resolution(self, new_resolution: Resolution): ... method reset_resolution (line 31) | def reset_resolution(self) -> None: ... method all_mesh_names (line 32) | def all_mesh_names(self) -> list[str]: ... class Stack (line 35) | class Stack: method from_name (line 38) | def from_name(texture_set_name: str, stack_name: str = ''): ... method name (line 39) | def name(self) -> str: ... method material (line 40) | def material(self): ... method all_channels (line 41) | def all_channels(self) -> dict[ChannelType, Channel]: ... method add_channel (line 42) | def add_channel(self, channel_type: ChannelType, channel_format: Chann... method remove_channel (line 43) | def remove_channel(self, channel_type: ChannelType) -> None: ... method edit_channel (line 44) | def edit_channel(self, channel_type: ChannelType, channel_format: Chan... method has_channel (line 45) | def has_channel(self, channel_type: ChannelType) -> bool: ... method get_channel (line 46) | def get_channel(self, channel_type: ChannelType) -> Channel: ... class TextureSet (line 49) | class TextureSet: method from_name (line 52) | def from_name(texture_set_name: str): ... method name (line 53) | def name(self) -> str: ... method is_layered_material (line 54) | def is_layered_material(self) -> bool: ... method all_stacks (line 55) | def all_stacks(self) -> list[Stack]: ... method get_stack (line 56) | def get_stack(self, stack_name: str = '') -> Stack: ... method get_resolution (line 57) | def get_resolution(self) -> Resolution: ... method set_resolution (line 58) | def set_resolution(self, new_resolution: Resolution): ... method has_uv_tiles (line 59) | def has_uv_tiles(self) -> bool: ... method uv_tile (line 60) | def uv_tile(self, u_coord: int, v_coord: int) -> UVTile: ... method all_uv_tiles (line 61) | def all_uv_tiles(self) -> list[UVTile]: ... method get_uvtiles_resolution (line 62) | def get_uvtiles_resolution(self) -> dict[UVTile, Resolution]: ... method set_uvtiles_resolution (line 63) | def set_uvtiles_resolution(self, resolutions: dict[UVTile, Resolution]... method reset_uvtiles_resolution (line 64) | def reset_uvtiles_resolution(self, uvtiles: list[UVTile]): ... method all_mesh_names (line 65) | def all_mesh_names(self) -> list[str]: ... method get_mesh_map_resource (line 66) | def get_mesh_map_resource(self, usage: MeshMapUsage) -> substance_pain... method set_mesh_map_resource (line 67) | def set_mesh_map_resource(self, usage: MeshMapUsage, new_mesh_map: sub... function set_resolutions (line 69) | def set_resolutions(texturesets: list[TextureSet], new_resolution: Resol... function all_texture_sets (line 70) | def all_texture_sets() -> list[TextureSet]: ... function get_active_stack (line 71) | def get_active_stack() -> Stack: ... function set_active_stack (line 72) | def set_active_stack(stack: Stack) -> None: ... FILE: substance_painter/stubs/substance_painter-stubs/ui.pyi function show_main_window (line 8) | def show_main_window() -> None: ... function get_main_window (line 9) | def get_main_window() -> PySide6.QtWidgets.QMainWindow: ... function get_layout (line 10) | def get_layout(mode: UIMode) -> bytes: ... function get_layout_mode (line 11) | def get_layout_mode(layout: bytes) -> UIMode: ... function set_layout (line 12) | def set_layout(layout: bytes) -> UIMode: ... function reset_layout (line 13) | def reset_layout(mode: UIMode): ... function add_dock_widget (line 14) | def add_dock_widget(widget: PySide6.QtWidgets.QWidget, ui_modes: int = .... function add_plugins_toolbar_widget (line 15) | def add_plugins_toolbar_widget(widget: PySide6.QtWidgets.QWidget): ... function add_menu (line 16) | def add_menu(menu: PySide6.QtWidgets.QMenu): ... function add_toolbar (line 17) | def add_toolbar(title: str, object_name: str, ui_modes: int = ...) -> Py... function add_action (line 18) | def add_action(menu: ApplicationMenu, action: PySide6.QtGui.QAction): ... function delete_ui_element (line 19) | def delete_ui_element(element: PySide6.QtWidgets.QWidget): ... function get_current_mode (line 20) | def get_current_mode() -> UIMode: ... function switch_to_mode (line 21) | def switch_to_mode(mode: UIMode) -> None: ... FILE: usd/stubgen_usd.py class CppPath (line 91) | class CppPath(NamedTuple): function is_existing_obj (line 97) | def is_existing_obj(pypath: str) -> bool: function get_submodules (line 104) | def get_submodules(pacakge_paths: list[str]) -> list[str]: function capitalize (line 113) | def capitalize(s: str) -> str: class DummyWriter (line 127) | class DummyWriter: method getDocString (line 142) | def getDocString(self, node: XMLNode) -> str: method getDocTags (line 145) | def getDocTags(self, node: XMLNode) -> list[str]: method generate (line 148) | def generate(self, output_file: str, docElements: list[DocElement]) ->... class SimpleDocstringWriter (line 152) | class SimpleDocstringWriter(doxygenlib.cdWriterDocstring.Writer): method __init__ (line 153) | def __init__(self): method generate (line 158) | def generate(self, output_file: str, docElements: list[DocElement]) ->... method _indent_docstring (line 162) | def _indent_docstring(cls, docstring: str, indent) -> str: method get_overload_docstring (line 179) | def get_overload_docstring( method strip_boost_docstring (line 189) | def strip_boost_docstring(self, doc: str | None) -> str | None: class CppSigInfo (line 194) | class CppSigInfo: function maybe_result (line 199) | def maybe_result(parts: list[str]) -> bool: class TypeInfo (line 224) | class TypeInfo(CppTypeConverter): method __init__ (line 378) | def __init__( method _parse_typedefs (line 413) | def _parse_typedefs(self, include_file: pathlib.Path) -> Iterator[tupl... method py_array_to_sub_type (line 435) | def py_array_to_sub_type(cls, py_type: str) -> str | None: method is_py_array_type (line 455) | def is_py_array_type(cls, py_type: str) -> bool: method _get_implicitly_convertible_types (line 459) | def _get_implicitly_convertible_types(self) -> dict[str, set[str]]: method _populate_map (line 561) | def _populate_map(self, docElemPath: list[DocElement]) -> None: method populate (line 602) | def populate(self) -> None: method strip_pxr_namespace (line 618) | def strip_pxr_namespace(cpp_type_name: str) -> str: method cpp_to_py_type (line 623) | def cpp_to_py_type(self, cpp_type_name: str) -> str | None: method split_module (line 638) | def split_module(self, cpp_type: str) -> list[str]: method to_python_id (line 650) | def to_python_id(self, cpp_type: str) -> str: method should_strip_part (line 660) | def should_strip_part(self, x: str) -> bool: method py_to_cpp_func_paths (line 668) | def py_to_cpp_func_paths(cls, pypath: str) -> list[CppPath]: method _get_cpp_sig_info (line 726) | def _get_cpp_sig_info(self, cpp_paths: list[CppPath]) -> CppSigInfo | ... method get_full_py_type (line 741) | def get_full_py_type( function _filter_overloads (line 830) | def _filter_overloads( function get_filtered_cpp_overloads (line 869) | def get_filtered_cpp_overloads( function format_py_args (line 883) | def format_py_args(sig: FunctionSig) -> str: function format_cpp_args (line 888) | def format_cpp_args(cpp_sig: DocElement) -> str: function get_sigs_from_cpp_overloads (line 893) | def get_sigs_from_cpp_overloads( class MatchInfo (line 968) | class MatchInfo: class SigTracker (line 977) | class SigTracker: method iter_sigs (line 987) | def iter_sigs(self, sigs) -> Iterator[tuple[int, FunctionSig, Function... class SignatureMatcher (line 1012) | class SignatureMatcher(Generic[T]): method __init__ (line 1015) | def __init__(self, validate: bool = True): method make_key (line 1021) | def make_key(self, sig: FunctionSig) -> T: method _validate_match (line 1024) | def _validate_match( method match (line 1044) | def match( class ArgNameMatcher (line 1106) | class ArgNameMatcher(SignatureMatcher[tuple[str, ...]]): method make_key (line 1109) | def make_key(self, sig: FunctionSig) -> tuple[str, ...]: class ArgTypeMatcher (line 1113) | class ArgTypeMatcher(SignatureMatcher[tuple["str | None", ...]]): method make_key (line 1116) | def make_key(self, sig: FunctionSig) -> tuple[str | None, ...]: class ArgNumMatcher (line 1120) | class ArgNumMatcher(SignatureMatcher[int]): method make_key (line 1123) | def make_key(self, sig: FunctionSig) -> int: class ArgNumAndDefaultMatcher (line 1127) | class ArgNumAndDefaultMatcher(SignatureMatcher[tuple[int, tuple[bool, ..... method make_key (line 1130) | def make_key(self, sig: FunctionSig) -> tuple[int, tuple[bool, ...]]: class UsdBoostDocstringSignatureGenerator (line 1134) | class UsdBoostDocstringSignatureGenerator(AdvancedSignatureGenerator, Si... method __init__ (line 1163) | def __init__(self): method _fix_self_arg (line 1167) | def _fix_self_arg(self, sig: FunctionSig, ctx: FunctionContext) -> Fun... method cleanup_type (line 1183) | def cleanup_type( method _infer_type (line 1260) | def _infer_type( method _summarize_overload_mismatch (line 1314) | def _summarize_overload_mismatch( method _set_class_docstring (line 1350) | def _set_class_docstring(self, ctx: FunctionContext) -> None: method _choose_overload_set (line 1379) | def _choose_overload_set( method _fix_schema_init (line 1449) | def _fix_schema_init( method _process_usd_sigs (line 1467) | def _process_usd_sigs( method get_function_sig (line 1697) | def get_function_sig( method get_property_type (line 1743) | def get_property_type( function remove_redundant_submodule (line 1757) | def remove_redundant_submodule(module_name: str) -> tuple[str, bool]: class InspectionStubGenerator (line 1770) | class InspectionStubGenerator(mypy.stubgenc.InspectionStubGenerator): method __init__ (line 1777) | def __init__(self, *args: Any, **kwargs: Any) -> None: method is_skipped_attribute (line 1784) | def is_skipped_attribute(self, attr: str) -> bool: method get_obj_module (line 1787) | def get_obj_module(self, obj: object) -> str | None: method get_type_fullname (line 1794) | def get_type_fullname(self, typ: type) -> str: method get_sig_generators (line 1807) | def get_sig_generators(self) -> list[SignatureGenerator]: method is_classmethod (line 1810) | def is_classmethod(self, class_info: ClassInfo, name: str, obj: object... method get_imports (line 1830) | def get_imports(self) -> str: function find_module_path_and_all_py3 (line 1845) | def find_module_path_and_all_py3( function test (line 1881) | def test(): function main (line 1906) | def main(outdir: str) -> None: FILE: usd/stubs/Boost-stubs/Python.pyi class instance (line 2) | class instance: class enum (line 6) | class enum: FILE: usd/stubs/pxr-stubs/Ar/__init__.pyi class AssetInfo (line 10) | class AssetInfo(Boost.Python.instance): method __init__ (line 18) | def __init__(self) -> None: ... method __eq__ (line 19) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 20) | def __hash__(self) -> int: ... method __ne__ (line 21) | def __ne__(self, other: object) -> bool: ... class DefaultResolver (line 23) | class DefaultResolver(Resolver): method __init__ (line 53) | def __init__(self, *args, **kwargs) -> None: method SetDefaultSearchPath (line 58) | def SetDefaultSearchPath(searchPath: typing.Iterable[str | ResolvedPat... class DefaultResolverContext (line 75) | class DefaultResolverContext(Boost.Python.instance): method __init__ (line 104) | def __init__(self) -> None: method __init__ (line 109) | def __init__(self, searchPaths: typing.Iterable[str | ResolvedPath]) -... method GetSearchPath (line 117) | def GetSearchPath(self) -> list[str]: method __eq__ (line 121) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 122) | def __hash__(self) -> int: ... method __ne__ (line 123) | def __ne__(self, other: object) -> bool: ... class Notice (line 125) | class Notice(Boost.Python.instance): class ResolverChanged (line 126) | class ResolverChanged(Notice.ResolverNotice): method __init__ (line 131) | def __init__(self, *args, **kwargs) -> None: method AffectsContext (line 135) | def AffectsContext(self, context: ResolverContext) -> bool: class ResolverNotice (line 141) | class ResolverNotice(pxr.Tf.Notice): method __init__ (line 142) | def __init__(self, *args, **kwargs) -> None: method __init__ (line 146) | def __init__(self, *args, **kwargs) -> None: class ResolvedPath (line 151) | class ResolvedPath(Boost.Python.instance): method __init__ (line 157) | def __init__(self) -> None: ... method __init__ (line 159) | def __init__(self, arg2: object, /) -> None: ... method GetPathString (line 160) | def GetPathString(self) -> str: method __bool__ (line 164) | def __bool__(self) -> bool: method __eq__ (line 169) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 170) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 171) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 172) | def __hash__(self) -> int: ... method __le__ (line 173) | def __le__(self, other: object) -> bool: ... method __lt__ (line 174) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 175) | def __ne__(self, other: object) -> bool: ... class Resolver (line 177) | class Resolver(Boost.Python.instance): method __init__ (line 189) | def __init__(self, *args, **kwargs) -> None: method CanWriteAssetToPath (line 193) | def CanWriteAssetToPath(self, resolvedPath: ResolvedPath) -> _PyAnnota... method CreateContextFromString (line 203) | def CreateContextFromString(self, contextStr: str | ResolvedPath) -> R... method CreateContextFromString (line 209) | def CreateContextFromString(self, uriScheme: str | ResolvedPath, conte... method CreateContextFromStrings (line 223) | def CreateContextFromStrings(self, contextStrs: typing.Iterable[tuple[... method CreateDefaultContext (line 249) | def CreateDefaultContext(self) -> ResolverContext: method CreateDefaultContextForAsset (line 258) | def CreateDefaultContextForAsset(self, assetPath: str | ResolvedPath) ... method CreateIdentifier (line 269) | def CreateIdentifier(self, assetPath: str | ResolvedPath, anchorAssetP... method CreateIdentifierForNewAsset (line 277) | def CreateIdentifierForNewAsset(self, assetPath: str | ResolvedPath, a... method GetAssetInfo (line 285) | def GetAssetInfo(self, assetPath: str | ResolvedPath, resolvedPath: Re... method GetCurrentContext (line 294) | def GetCurrentContext(self) -> ResolverContext: method GetExtension (line 302) | def GetExtension(self, assetPath: str | ResolvedPath) -> str: method GetModificationTimestamp (line 309) | def GetModificationTimestamp(self, assetPath: str | ResolvedPath, reso... method IsContextDependentPath (line 319) | def IsContextDependentPath(self, assetPath: str | ResolvedPath) -> bool: method RefreshContext (line 332) | def RefreshContext(self, _context: ResolverContext, /) -> None: method Resolve (line 350) | def Resolve(self, assetPath: str | ResolvedPath) -> ResolvedPath: method ResolveForNewAsset (line 358) | def ResolveForNewAsset(self, assetPath: str | ResolvedPath) -> Resolve... class ResolverContext (line 371) | class ResolverContext(Boost.Python.instance): method __init__ (line 417) | def __init__(self) -> None: method __init__ (line 422) | def __init__(self, arg2: object, /) -> None: ... method Get (line 423) | def Get(self) -> list: method GetDebugString (line 432) | def GetDebugString(self) -> str: method IsEmpty (line 436) | def IsEmpty(self) -> bool: method __eq__ (line 440) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 441) | def __hash__(self) -> int: ... method __lt__ (line 442) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 443) | def __ne__(self, other: object) -> bool: ... class ResolverContextBinder (line 445) | class ResolverContextBinder(Boost.Python.instance): method __init__ (line 458) | def __init__(self, _context: ResolverContext, /) -> None: method __enter__ (line 466) | def __enter__(self) -> None: ... method __exit__ (line 467) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class ResolverScopedCache (line 469) | class ResolverScopedCache(Boost.Python.instance): method __init__ (line 483) | def __init__(self) -> None: method __enter__ (line 491) | def __enter__(self) -> None: ... method __exit__ (line 492) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class Timestamp (line 494) | class Timestamp(Boost.Python.instance): method __init__ (line 504) | def __init__(self) -> None: method __init__ (line 509) | def __init__(self, _time: Timestamp, /) -> None: method __init__ (line 514) | def __init__(self, arg2: float, /) -> None: ... method GetTime (line 515) | def GetTime(self) -> float: method IsValid (line 523) | def IsValid(self) -> bool: method __eq__ (line 527) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 528) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 529) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 530) | def __hash__(self) -> int: ... method __le__ (line 531) | def __le__(self, other: object) -> bool: ... method __lt__ (line 532) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 533) | def __ne__(self, other: object) -> bool: ... class _PyAnnotatedBoolResult (line 535) | class _PyAnnotatedBoolResult(Boost.Python.instance): method __init__ (line 537) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 538) | def __bool__(self) -> bool: ... method __eq__ (line 539) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 540) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 541) | def __ne__(self, other: object) -> bool: ... method whyNot (line 543) | def whyNot(self): ... function GetRegisteredURISchemes (line 545) | def GetRegisteredURISchemes() -> list[str]: function GetResolver (line 554) | def GetResolver() -> Resolver: function GetUnderlyingResolver (line 583) | def GetUnderlyingResolver() -> Resolver: function IsPackageRelativePath (line 595) | def IsPackageRelativePath(path: str | ResolvedPath) -> bool: function JoinPackageRelativePath (line 600) | def JoinPackageRelativePath(packagePath: str | ResolvedPath, packagedPat... function JoinPackageRelativePath (line 606) | def JoinPackageRelativePath(paths: object) -> str: ... function SetPreferredResolver (line 607) | def SetPreferredResolver(resolverTypeName: str | ResolvedPath) -> None: function SplitPackageRelativePathInner (line 622) | def SplitPackageRelativePathInner(path: str | ResolvedPath) -> tuple[str... function SplitPackageRelativePathOuter (line 639) | def SplitPackageRelativePathOuter(path: str | ResolvedPath) -> tuple[str... function _TestImplicitConversion (line 656) | def _TestImplicitConversion(arg1: ResolverContext, /) -> ResolverContext... FILE: usd/stubs/pxr-stubs/CameraUtil/__init__.pyi class ConformWindowPolicy (line 14) | class ConformWindowPolicy(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 22) | def GetValueFromName(name: object) -> Any: ... class Framing (line 24) | class Framing(Boost.Python.instance): method __init__ (line 73) | def __init__(self) -> None: method __init__ (line 78) | def __init__(self, displayWindow: pxr.Gf.Range2f | list[float] | tuple... method __init__ (line 84) | def __init__(self, _dataWindow: Framing, /) -> None: method __init__ (line 90) | def __init__(self, dataWindow: pxr.Gf.Rect2i) -> None: ... method ApplyToProjectionMatrix (line 91) | def ApplyToProjectionMatrix(self, projectionMatrix: pxr.Gf.Matrix4d, w... method ComputeFilmbackWindow (line 100) | def ComputeFilmbackWindow(self, cameraAspectRatio: float, windowPolicy... method IsValid (line 121) | def IsValid(self) -> bool: method __eq__ (line 125) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 126) | def __ne__(self, other: object) -> bool: ... class ScreenWindowParameters (line 128) | class ScreenWindowParameters(Boost.Python.instance): method __init__ (line 133) | def __init__(self, arg2: pxr.Gf.Camera, /) -> None: method fieldOfView (line 142) | def fieldOfView(self) -> float: method screenWindow (line 152) | def screenWindow(self) -> pxr.Gf.Vec4d: method zFacingViewMatrix (line 161) | def zFacingViewMatrix(self) -> pxr.Gf.Matrix4d: function ConformWindow (line 171) | def ConformWindow(camera: pxr.Gf.Camera, policy: ConformWindowPolicy, ta... function ConformWindow (line 177) | def ConformWindow(frustum: pxr.Gf.Frustum, policy: ConformWindowPolicy, ... function ConformedWindow (line 183) | def ConformedWindow(window: pxr.Gf.Range2d | list[float] | tuple[float, ... function ConformedWindow (line 197) | def ConformedWindow(window: pxr.Gf.Vec2d | list[float] | tuple[float, fl... function ConformedWindow (line 203) | def ConformedWindow(window: pxr.Gf.Vec4d | list[float] | tuple[float, fl... function ConformedWindow (line 210) | def ConformedWindow(window: pxr.Gf.Matrix4d, policy: ConformWindowPolicy... FILE: usd/stubs/pxr-stubs/Garch/__init__.pyi class GLPlatformDebugContext (line 5) | class GLPlatformDebugContext(Boost.Python.instance): method __init__ (line 12) | def __init__(self, _majorVersion: int, _minorVersion: int, _coreProfil... method makeCurrent (line 13) | def makeCurrent(self) -> None: ... method __bool__ (line 14) | def __bool__(self) -> bool: method __eq__ (line 16) | def __eq__(self, other: object) -> bool: method __lt__ (line 18) | def __lt__(self, other: object) -> bool: method __ne__ (line 20) | def __ne__(self, other: object) -> bool: method expired (line 23) | def expired(self): ... FILE: usd/stubs/pxr-stubs/GeomUtil/__init__.pyi class CapsuleMeshGenerator (line 8) | class CapsuleMeshGenerator(Boost.Python.instance): method __init__ (line 45) | def __init__(self, *args, **kwargs) -> None: method ComputeNumPoints (line 50) | def ComputeNumPoints(_numRadial: int, _numCapAxial: int, _closedSweep:... method GeneratePoints (line 52) | def GeneratePoints(arg1: int, arg2: int, arg3: float, arg4: float, /) ... method GenerateTopology (line 54) | def GenerateTopology(_numRadial: int, _numCapAxial: int, _closedSweep:... class ConeMeshGenerator (line 56) | class ConeMeshGenerator(Boost.Python.instance): method __init__ (line 88) | def __init__(self, *args, **kwargs) -> None: method ComputeNumPoints (line 93) | def ComputeNumPoints(_numRadial: int, _closedSweep: bool, /) -> int: ... method GeneratePoints (line 95) | def GeneratePoints(arg1: int, arg2: float, arg3: float, /) -> pxr.Vt.V... method GenerateTopology (line 97) | def GenerateTopology(_numRadial: int, _closedSweep: bool, /) -> pxr.Px... class CuboidMeshGenerator (line 99) | class CuboidMeshGenerator(Boost.Python.instance): method __init__ (line 123) | def __init__(self, *args, **kwargs) -> None: method ComputeNumPoints (line 128) | def ComputeNumPoints() -> int: ... method GeneratePoints (line 130) | def GeneratePoints(arg1: float, arg2: float, arg3: float, /) -> pxr.Vt... method GenerateTopology (line 132) | def GenerateTopology() -> pxr.PxOsd.MeshTopology: ... class CylinderMeshGenerator (line 134) | class CylinderMeshGenerator(Boost.Python.instance): method __init__ (line 168) | def __init__(self, *args, **kwargs) -> None: method ComputeNumPoints (line 173) | def ComputeNumPoints(_numRadial: int, _closedSweep: bool, /) -> int: ... method GeneratePoints (line 175) | def GeneratePoints(arg1: int, arg2: float, arg3: float, /) -> pxr.Vt.V... method GenerateTopology (line 177) | def GenerateTopology(_numRadial: int, _closedSweep: bool, /) -> pxr.Px... class SphereMeshGenerator (line 179) | class SphereMeshGenerator(Boost.Python.instance): method __init__ (line 212) | def __init__(self, *args, **kwargs) -> None: method ComputeNumPoints (line 217) | def ComputeNumPoints(_numRadial: int, _numAxial: int, _closedSweep: bo... method GeneratePoints (line 219) | def GeneratePoints(arg1: int, arg2: int, arg3: float, /) -> pxr.Vt.Vec... method GenerateTopology (line 221) | def GenerateTopology(_numRadial: int, _numAxial: int, _closedSweep: bo... FILE: usd/stubs/pxr-stubs/Gf/__init__.pyi class BBox3d (line 13) | class BBox3d(Boost.Python.instance): method __init__ (line 62) | def __init__(self) -> None: method __init__ (line 68) | def __init__(self, _box: BBox3d, /) -> None: method __init__ (line 73) | def __init__(self, _box: Range3d | list[float] | tuple[float, float, f... method __init__ (line 78) | def __init__(self, arg2: Range3d | list[float] | tuple[float, float, f... method Combine (line 80) | def Combine(_b1: BBox3d, _b2: BBox3d, /) -> BBox3d: method ComputeAlignedBox (line 89) | def ComputeAlignedBox(self) -> Range3d: method ComputeAlignedRange (line 99) | def ComputeAlignedRange(self) -> Range3d: method ComputeCentroid (line 105) | def ComputeCentroid(self) -> Vec3d: method GetBox (line 112) | def GetBox(self) -> Range3d: method GetInverseMatrix (line 119) | def GetInverseMatrix(self) -> Matrix4d: method GetMatrix (line 127) | def GetMatrix(self) -> Matrix4d: method GetRange (line 131) | def GetRange(self) -> Range3d: method GetVolume (line 135) | def GetVolume(self) -> float: method HasZeroAreaPrimitives (line 139) | def HasZeroAreaPrimitives(self) -> bool: method Set (line 144) | def Set(self, _box: Range3d | list[float] | tuple[float, float, float]... method Set (line 149) | def Set(self, arg2: Range3d | list[float] | tuple[float, float, float]... method SetHasZeroAreaPrimitives (line 150) | def SetHasZeroAreaPrimitives(self, _hasThem: bool, /) -> None: method SetMatrix (line 154) | def SetMatrix(self, _matrix: Matrix4d, /) -> BBox3d: method SetRange (line 161) | def SetRange(self, _box: Range3d | list[float] | tuple[float, float, f... method Transform (line 168) | def Transform(self, _matrix: Matrix4d, /) -> BBox3d: method __eq__ (line 176) | def __eq__(self, other: object) -> bool: method __hash__ (line 186) | def __hash__(self) -> int: ... method __ne__ (line 187) | def __ne__(self, other: object) -> bool: ... class Camera (line 189) | class Camera(Boost.Python.instance): class FOVDirection (line 198) | class FOVDirection(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 201) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 206) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... class Projection (line 208) | class Projection(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 211) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 216) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... method __init__ (line 238) | def __init__(self, transform: Matrix4d = ..., projection: Camera.Proje... method __init__ (line 243) | def __init__(self, arg2: Camera, /) -> None: method GetFieldOfView (line 247) | def GetFieldOfView(self, _direction: Camera.FOVDirection, /) -> float: method SetFromViewAndProjectionMatrix (line 251) | def SetFromViewAndProjectionMatrix(self, viewMatrix: Matrix4d, projMat... method SetOrthographicFromAspectRatioAndSize (line 260) | def SetOrthographicFromAspectRatioAndSize(self, aspectRatio: float, or... method SetPerspectiveFromAspectRatioAndFieldOfView (line 267) | def SetPerspectiveFromAspectRatioAndFieldOfView(self, aspectRatio: flo... method __eq__ (line 277) | def __eq__(self, other: object) -> bool: method __ne__ (line 281) | def __ne__(self, other: object) -> bool: ... method aspectRatio (line 283) | def aspectRatio(self) -> float: method frustum (line 288) | def frustum(self) -> Frustum: method horizontalFieldOfView (line 296) | def horizontalFieldOfView(self): ... method verticalFieldOfView (line 298) | def verticalFieldOfView(self): ... class DualQuatd (line 300) | class DualQuatd(Boost.Python.instance): method __init__ (line 316) | def __init__(self) -> None: method __init__ (line 321) | def __init__(self, realVal: float) -> None: method __init__ (line 332) | def __init__(self, real: Quatd | Quatf | Quath) -> None: method __init__ (line 338) | def __init__(self, real: Quatd | Quatf | Quath, dual: Quatd | Quatf | ... method __init__ (line 343) | def __init__(self, rotation: Quatd | Quatf | Quath, translation: Vec3d... method __init__ (line 349) | def __init__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> None... method GetConjugate (line 350) | def GetConjugate(self) -> DualQuatd: method GetDual (line 354) | def GetDual(self) -> Quatd: method GetIdentity (line 359) | def GetIdentity() -> DualQuatd: method GetInverse (line 364) | def GetInverse(self) -> DualQuatd: method GetLength (line 368) | def GetLength(self) -> tuple[float, float]: method GetNormalized (line 372) | def GetNormalized(self, eps: float = ...) -> DualQuatd: method GetReal (line 380) | def GetReal(self) -> Quatd: method GetTranslation (line 384) | def GetTranslation(self) -> Vec3d: method GetZero (line 389) | def GetZero() -> DualQuatd: method Normalize (line 394) | def Normalize(self, eps: float = ...) -> DualQuatd: method SetDual (line 403) | def SetDual(self, _dual: Quatd | Quatf | Quath, /) -> None: method SetReal (line 407) | def SetReal(self, _real: Quatd | Quatf | Quath, /) -> None: method SetTranslation (line 411) | def SetTranslation(self, _translation: Vec3d | list[float] | tuple[flo... method Transform (line 415) | def Transform(self, _vec: Vec3d | list[float] | tuple[float, float, fl... method __add__ (line 419) | def __add__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> Any: ... method __eq__ (line 420) | def __eq__(self, other: object) -> bool: method __hash__ (line 428) | def __hash__(self) -> int: ... method __iadd__ (line 429) | def __iadd__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> Any:... method __idiv__ (line 430) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 432) | def __imul__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> Any:... method __imul__ (line 434) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 435) | def __isub__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> Any:... method __itruediv__ (line 436) | def __itruediv__(self, arg2: float, /) -> DualQuatd: ... method __mul__ (line 438) | def __mul__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> Any: ... method __mul__ (line 440) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 441) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 442) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 443) | def __sub__(self, arg2: DualQuatd | DualQuatf | DualQuath, /) -> Any: ... method __truediv__ (line 444) | def __truediv__(self, arg2: float, /) -> Any: ... class DualQuatf (line 446) | class DualQuatf(Boost.Python.instance): method __init__ (line 462) | def __init__(self) -> None: method __init__ (line 467) | def __init__(self, realVal: float) -> None: method __init__ (line 478) | def __init__(self, real: Quatf | Quath) -> None: method __init__ (line 484) | def __init__(self, real: Quatf | Quath, dual: Quatf | Quath) -> None: method __init__ (line 489) | def __init__(self, rotation: Quatf | Quath, translation: Vec3f | list[... method __init__ (line 495) | def __init__(self, _other: DualQuatd | DualQuatf | DualQuath, /) -> None: method __init__ (line 500) | def __init__(self, _other: DualQuatf | DualQuath, /) -> None: # type:... method GetConjugate (line 504) | def GetConjugate(self) -> DualQuatf: method GetDual (line 508) | def GetDual(self) -> Quatf: method GetIdentity (line 513) | def GetIdentity() -> DualQuatf: method GetInverse (line 518) | def GetInverse(self) -> DualQuatf: method GetLength (line 522) | def GetLength(self) -> tuple[float, float]: method GetNormalized (line 526) | def GetNormalized(self, eps: float = ...) -> DualQuatf: method GetReal (line 534) | def GetReal(self) -> Quatf: method GetTranslation (line 538) | def GetTranslation(self) -> Vec3f: method GetZero (line 543) | def GetZero() -> DualQuatf: method Normalize (line 548) | def Normalize(self, eps: float = ...) -> DualQuatf: method SetDual (line 557) | def SetDual(self, _dual: Quatf | Quath, /) -> None: method SetReal (line 561) | def SetReal(self, _real: Quatf | Quath, /) -> None: method SetTranslation (line 565) | def SetTranslation(self, _translation: Vec3f | list[float] | tuple[flo... method Transform (line 569) | def Transform(self, _vec: Vec3f | list[float] | tuple[float, float, fl... method __add__ (line 573) | def __add__(self, arg2: DualQuatf | DualQuath, /) -> Any: ... method __eq__ (line 574) | def __eq__(self, other: object) -> bool: method __hash__ (line 582) | def __hash__(self) -> int: ... method __iadd__ (line 583) | def __iadd__(self, arg2: DualQuatf | DualQuath, /) -> Any: ... method __idiv__ (line 584) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 586) | def __imul__(self, arg2: DualQuatf | DualQuath, /) -> Any: ... method __imul__ (line 588) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 589) | def __isub__(self, arg2: DualQuatf | DualQuath, /) -> Any: ... method __itruediv__ (line 590) | def __itruediv__(self, arg2: float, /) -> DualQuatf: ... method __mul__ (line 592) | def __mul__(self, arg2: DualQuatf | DualQuath, /) -> Any: ... method __mul__ (line 594) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 595) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 596) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 597) | def __sub__(self, arg2: DualQuatf | DualQuath, /) -> Any: ... method __truediv__ (line 598) | def __truediv__(self, arg2: float, /) -> Any: ... class DualQuath (line 600) | class DualQuath(Boost.Python.instance): method __init__ (line 616) | def __init__(self) -> None: method __init__ (line 621) | def __init__(self, realVal: float) -> None: method __init__ (line 632) | def __init__(self, real: Quath) -> None: method __init__ (line 638) | def __init__(self, real: Quath, dual: Quath) -> None: method __init__ (line 643) | def __init__(self, rotation: Quath, translation: Vec3h | list[float] |... method __init__ (line 649) | def __init__(self, _other: DualQuatd | DualQuatf | DualQuath, /) -> None: method __init__ (line 654) | def __init__(self, _other: DualQuatf | DualQuath, /) -> None: # type:... method __init__ (line 659) | def __init__(self, arg2: DualQuath, /) -> None: ... # type: ignore[ov... method GetConjugate (line 660) | def GetConjugate(self) -> DualQuath: method GetDual (line 664) | def GetDual(self) -> Quath: method GetIdentity (line 669) | def GetIdentity() -> DualQuath: method GetInverse (line 674) | def GetInverse(self) -> DualQuath: method GetLength (line 678) | def GetLength(self) -> tuple[float, float]: method GetNormalized (line 682) | def GetNormalized(self, eps: float = ...) -> DualQuath: method GetReal (line 690) | def GetReal(self) -> Quath: method GetTranslation (line 694) | def GetTranslation(self) -> Vec3h: method GetZero (line 699) | def GetZero() -> DualQuath: method Normalize (line 704) | def Normalize(self, eps: float = ...) -> DualQuath: method SetDual (line 713) | def SetDual(self, _dual: Quath, /) -> None: method SetReal (line 717) | def SetReal(self, _real: Quath, /) -> None: method SetTranslation (line 721) | def SetTranslation(self, _translation: Vec3h | list[float] | tuple[flo... method Transform (line 725) | def Transform(self, _vec: Vec3h | list[float] | tuple[float, float, fl... method __add__ (line 729) | def __add__(self, arg2: DualQuath, /) -> Any: ... method __eq__ (line 730) | def __eq__(self, other: object) -> bool: method __hash__ (line 738) | def __hash__(self) -> int: ... method __iadd__ (line 739) | def __iadd__(self, arg2: DualQuath, /) -> Any: ... method __idiv__ (line 740) | def __idiv__(self, arg2: object, /) -> Any: ... method __imul__ (line 742) | def __imul__(self, arg2: DualQuath, /) -> Any: ... method __imul__ (line 744) | def __imul__(self, arg2: object, /) -> Any: ... method __isub__ (line 745) | def __isub__(self, arg2: DualQuath, /) -> Any: ... method __itruediv__ (line 746) | def __itruediv__(self, arg2: object, /) -> DualQuath: ... method __mul__ (line 748) | def __mul__(self, arg2: DualQuath, /) -> Any: ... method __mul__ (line 750) | def __mul__(self, arg2: object, /) -> Any: ... method __ne__ (line 751) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 752) | def __rmul__(self, arg2: object, /) -> Any: ... method __sub__ (line 753) | def __sub__(self, arg2: DualQuath, /) -> Any: ... method __truediv__ (line 754) | def __truediv__(self, arg2: object, /) -> Any: ... class Frustum (line 756) | class Frustum(Boost.Python.instance): class ProjectionType (line 799) | class ProjectionType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 802) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 807) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... method __init__ (line 818) | def __init__(self) -> None: method __init__ (line 839) | def __init__(self, _o: Frustum, /) -> None: method __init__ (line 844) | def __init__(self, position: Vec3d | list[float] | tuple[float, float,... method __init__ (line 850) | def __init__(self, camToWorldXf: Matrix4d, window: Range2d | list[floa... method ComputeAspectRatio (line 856) | def ComputeAspectRatio(self) -> float: method ComputeCorners (line 864) | def ComputeCorners(self) -> tuple: method ComputeCornersAtDistance (line 888) | def ComputeCornersAtDistance(self, _d: float, /) -> tuple: method ComputeLookAtPoint (line 906) | def ComputeLookAtPoint(self) -> Vec3d: method ComputeNarrowedFrustum (line 912) | def ComputeNarrowedFrustum(self, _windowPos: Vec2d | list[float] | tup... method ComputeNarrowedFrustum (line 934) | def ComputeNarrowedFrustum(self, _worldPoint: Vec3d | list[float] | tu... method ComputePickRay (line 959) | def ComputePickRay(self, _windowPos: Vec2d | list[float] | tuple[float... method ComputePickRay (line 970) | def ComputePickRay(self, _worldSpacePos: Vec3d | list[float] | tuple[f... method ComputeProjectionMatrix (line 975) | def ComputeProjectionMatrix(self) -> Matrix4d: method ComputeUpVector (line 980) | def ComputeUpVector(self) -> Vec3d: method ComputeViewDirection (line 985) | def ComputeViewDirection(self) -> Vec3d: method ComputeViewFrame (line 990) | def ComputeViewFrame(self) -> tuple: method ComputeViewInverse (line 1006) | def ComputeViewInverse(self) -> Matrix4d: method ComputeViewMatrix (line 1015) | def ComputeViewMatrix(self) -> Matrix4d: method FitToSphere (line 1024) | def FitToSphere(self, _center: Vec3d | list[float] | tuple[float, floa... method GetFOV (line 1034) | def GetFOV(self, isFovVertical: bool = ...) -> float: method GetNearFar (line 1051) | def GetNearFar(self) -> Range1d: method GetOrthographic (line 1055) | def GetOrthographic(self) -> tuple: method GetPerspective (line 1064) | def GetPerspective(self, isFovVertical: bool = ...) -> tuple[float, fl... method GetPosition (line 1073) | def GetPosition(self) -> Vec3d: method GetProjectionType (line 1077) | def GetProjectionType(self) -> Frustum.ProjectionType: method GetReferencePlaneDepth (line 1082) | def GetReferencePlaneDepth() -> float: method GetRotation (line 1086) | def GetRotation(self) -> Rotation: method GetViewDistance (line 1091) | def GetViewDistance(self) -> float: method GetWindow (line 1095) | def GetWindow(self) -> Range2d: method Intersects (line 1100) | def Intersects(self, _bbox: BBox3d, /) -> bool: method Intersects (line 1110) | def Intersects(self, _point: Vec3d | list[float] | tuple[float, float,... method Intersects (line 1118) | def Intersects(self, _p0: Vec3d | list[float] | tuple[float, float, fl... method Intersects (line 1127) | def Intersects(self, _p0: Vec3d | list[float] | tuple[float, float, fl... method IntersectsViewVolume (line 1136) | def IntersectsViewVolume(_bbox: BBox3d, _vpMat: Matrix4d, /) -> bool: method SetNearFar (line 1150) | def SetNearFar(self, _nearFar: Range1d, /) -> None: method SetOrthographic (line 1154) | def SetOrthographic(self, _left: float, _right: float, _bottom: float,... method SetPerspective (line 1163) | def SetPerspective(self, fovHeight: float, aspectRatio: float, nearDis... method SetPerspective (line 1184) | def SetPerspective(self, fov: float, isFovVertical: bool, aspectRatio:... method SetPosition (line 1224) | def SetPosition(self, _position: Vec3d | list[float] | tuple[float, fl... method SetPositionAndRotationFromMatrix (line 1228) | def SetPositionAndRotationFromMatrix(self, camToWorldXf: Matrix4d) -> ... method SetProjectionType (line 1238) | def SetProjectionType(self, _projectionType: Frustum.ProjectionType, /... method SetRotation (line 1242) | def SetRotation(self, _rotation: Rotation, /) -> None: method SetViewDistance (line 1248) | def SetViewDistance(self, _viewDistance: float, /) -> None: method SetWindow (line 1252) | def SetWindow(self, _window: Range2d | list[float] | tuple[float, floa... method Transform (line 1257) | def Transform(self, _matrix: Matrix4d, /) -> Frustum: method __eq__ (line 1274) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1275) | def __hash__(self) -> int: ... method __ne__ (line 1276) | def __ne__(self, other: object) -> bool: ... class Interval (line 1278) | class Interval(Boost.Python.instance): method __init__ (line 1288) | def __init__(self) -> None: method __init__ (line 1293) | def __init__(self, _val: Interval, /) -> None: method __init__ (line 1299) | def __init__(self, _min: float, _max: float, _minClosed: bool, _maxClo... method __init__ (line 1304) | def __init__(self, arg2: float, /) -> None: method __init__ (line 1315) | def __init__(self, arg2: float, arg3: float, /) -> None: method Contains (line 1326) | def Contains(self, _d: float, /) -> bool: method Contains (line 1334) | def Contains(self, _i: Interval, /) -> bool: method GetFullInterval (line 1343) | def GetFullInterval() -> Interval: method GetMax (line 1347) | def GetMax(self) -> float: method GetMin (line 1351) | def GetMin(self) -> float: method GetSize (line 1355) | def GetSize(self) -> float: method In (line 1362) | def In(self, _d: float, /) -> bool: method Intersects (line 1364) | def Intersects(self, _i: Interval, /) -> bool: method IsEmpty (line 1368) | def IsEmpty(self) -> bool: method IsFinite (line 1372) | def IsFinite(self) -> bool: method IsMaxClosed (line 1376) | def IsMaxClosed(self) -> bool: method IsMaxFinite (line 1380) | def IsMaxFinite(self) -> bool: method IsMaxOpen (line 1384) | def IsMaxOpen(self) -> bool: method IsMinClosed (line 1388) | def IsMinClosed(self) -> bool: method IsMinFinite (line 1392) | def IsMinFinite(self) -> bool: method IsMinOpen (line 1396) | def IsMinOpen(self) -> bool: method SetMax (line 1401) | def SetMax(self, _v: float, /) -> None: method SetMax (line 1406) | def SetMax(self, _v: float, _maxClosed: bool, /) -> None: method SetMin (line 1411) | def SetMin(self, _v: float, /) -> None: method SetMin (line 1416) | def SetMin(self, _v: float, _minClosed: bool, /) -> None: method __add__ (line 1420) | def __add__(self, arg2: Interval, /) -> Any: ... method __and__ (line 1421) | def __and__(self, arg2: Interval, /) -> Any: ... method __eq__ (line 1422) | def __eq__(self, other: object) -> bool: method __ge__ (line 1426) | def __ge__(self, other: object) -> bool: method __gt__ (line 1430) | def __gt__(self, other: object) -> bool: method __hash__ (line 1434) | def __hash__(self) -> int: ... method __iadd__ (line 1435) | def __iadd__(self, arg2: Interval, /) -> Any: ... method __iand__ (line 1436) | def __iand__(self, arg2: Interval, /) -> Any: ... method __imul__ (line 1437) | def __imul__(self, arg2: Interval, /) -> Any: ... method __ior__ (line 1438) | def __ior__(self, arg2: Interval, /) -> Any: ... method __isub__ (line 1439) | def __isub__(self, arg2: Interval, /) -> Any: ... method __le__ (line 1440) | def __le__(self, other: object) -> bool: method __lt__ (line 1444) | def __lt__(self, other: object) -> bool: method __mul__ (line 1448) | def __mul__(self, arg2: Interval, /) -> Any: ... method __ne__ (line 1449) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1450) | def __neg__(self) -> Any: ... method __or__ (line 1451) | def __or__(self, arg2: Interval, /) -> Any: ... method __sub__ (line 1452) | def __sub__(self, arg2: Interval, /) -> Any: ... method finite (line 1454) | def finite(self): ... method isEmpty (line 1456) | def isEmpty(self) -> bool: method max (line 1461) | def max(self) -> float: method maxClosed (line 1466) | def maxClosed(self): ... method maxFinite (line 1468) | def maxFinite(self): ... method maxOpen (line 1470) | def maxOpen(self): ... method min (line 1472) | def min(self) -> float: method minClosed (line 1477) | def minClosed(self): ... method minFinite (line 1479) | def minFinite(self): ... method minOpen (line 1481) | def minOpen(self): ... method size (line 1483) | def size(self) -> float: class Line (line 1491) | class Line(Boost.Python.instance): method __init__ (line 1505) | def __init__(self) -> None: method __init__ (line 1510) | def __init__(self, _p0: Vec3d | list[float] | tuple[float, float, floa... method FindClosestPoint (line 1514) | def FindClosestPoint(self, _point: Vec3d | list[float] | tuple[float, ... method GetDirection (line 1522) | def GetDirection(self) -> Vec3d: method GetPoint (line 1526) | def GetPoint(self, _t: float, /) -> Vec3d: method Set (line 1533) | def Set(self, _p0: Vec3d | list[float] | tuple[float, float, float], _... method __eq__ (line 1534) | def __eq__(self, other: object) -> bool: method __ne__ (line 1542) | def __ne__(self, other: object) -> bool: ... class LineSeg (line 1544) | class LineSeg(Boost.Python.instance): method __init__ (line 1553) | def __init__(self) -> None: method __init__ (line 1558) | def __init__(self, _p0: Vec3d | list[float] | tuple[float, float, floa... method FindClosestPoint (line 1562) | def FindClosestPoint(self, _point: Vec3d | list[float] | tuple[float, ... method GetDirection (line 1570) | def GetDirection(self) -> Vec3d: method GetLength (line 1574) | def GetLength(self) -> float: method GetPoint (line 1578) | def GetPoint(self, _t: float, /) -> Vec3d: method __eq__ (line 1585) | def __eq__(self, other: object) -> bool: method __ne__ (line 1593) | def __ne__(self, other: object) -> bool: ... method direction (line 1595) | def direction(self) -> Vec3d: method length (line 1600) | def length(self) -> float: class Matrix2d (line 1605) | class Matrix2d(Boost.Python.instance): method __init__ (line 1618) | def __init__(self) -> None: method __init__ (line 1623) | def __init__(self, _m00: float, _m01: float, _m10: float, _m11: float,... method __init__ (line 1633) | def __init__(self, _s: int, /) -> None: method __init__ (line 1639) | def __init__(self, _v: Vec2d | list[float] | tuple[float, float], /) -... method __init__ (line 1648) | def __init__(self, _m: Matrix2f, /) -> None: method __init__ (line 1653) | def __init__(self, arg2: Matrix2d, /) -> None: ... method __init__ (line 1655) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 1657) | def __init__(self, arg2: object, /) -> None: ... method GetColumn (line 1658) | def GetColumn(self, _i: int, /) -> Vec2d: method GetDeterminant (line 1662) | def GetDeterminant(self) -> float: method GetInverse (line 1666) | def GetInverse(self) -> Matrix2d: method GetRow (line 1677) | def GetRow(self, _i: int, /) -> Vec2d: method GetTranspose (line 1681) | def GetTranspose(self) -> Matrix2d: method Set (line 1685) | def Set(self, _m00: float, _m01: float, _m10: float, _m11: float, /) -... method SetColumn (line 1694) | def SetColumn(self, _i: int, _v: Vec2d | list[float] | tuple[float, fl... method SetDiagonal (line 1699) | def SetDiagonal(self, _s: float, /) -> Matrix2d: method SetDiagonal (line 1704) | def SetDiagonal(self, _unknownArg1: Vec2d | list[float] | tuple[float,... method SetIdentity (line 1708) | def SetIdentity(self) -> Matrix2d: method SetRow (line 1712) | def SetRow(self, _i: int, _v: Vec2d | list[float] | tuple[float, float... method SetZero (line 1716) | def SetZero(self) -> Matrix2d: method __add__ (line 1720) | def __add__(self, arg2: Matrix2d, /) -> Any: ... method __contains__ (line 1722) | def __contains__(self, arg2: float, /) -> bool: method __contains__ (line 1725) | def __contains__(self, arg2: Vec2d | list[float] | tuple[float, float]... method __eq__ (line 1727) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 1734) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 1736) | def __getitem__(self, _i: tuple, /) -> float: method __getitem__ (line 1743) | def __getitem__(self, arg2: int, /) -> Vec2d: ... method __hash__ (line 1744) | def __hash__(self) -> int: ... method __iadd__ (line 1745) | def __iadd__(self, arg2: Matrix2d, /) -> Any: ... method __imul__ (line 1747) | def __imul__(self, arg2: Matrix2d, /) -> Any: ... method __imul__ (line 1749) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 1750) | def __isub__(self, arg2: Matrix2d, /) -> Any: ... method __len__ (line 1751) | def __len__(self) -> int: method __mul__ (line 1754) | def __mul__(self, arg2: Matrix2d, /) -> Any: ... method __mul__ (line 1756) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 1758) | def __mul__(self, arg2: Vec2d | list[float] | tuple[float, float], /) ... method __mul__ (line 1760) | def __mul__(self, arg2: Vec2f | list[float] | tuple[float, float], /) ... method __ne__ (line 1761) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1762) | def __neg__(self) -> Any: ... method __rmul__ (line 1764) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 1766) | def __rmul__(self, arg2: Vec2d | list[float] | tuple[float, float], /)... method __rmul__ (line 1768) | def __rmul__(self, arg2: Vec2f | list[float] | tuple[float, float], /)... method __setitem__ (line 1770) | def __setitem__(self, arg2: tuple, arg3: float, /) -> None: ... method __setitem__ (line 1772) | def __setitem__(self, arg2: int, arg3: Vec2d | list[float] | tuple[flo... method __sub__ (line 1773) | def __sub__(self, arg2: Matrix2d, /) -> Any: ... method __truediv__ (line 1774) | def __truediv__(self, arg2: Matrix2d, /) -> Any: ... class Matrix2f (line 1776) | class Matrix2f(Boost.Python.instance): method __init__ (line 1789) | def __init__(self) -> None: method __init__ (line 1794) | def __init__(self, _m00: float, _m01: float, _m10: float, _m11: float,... method __init__ (line 1804) | def __init__(self, _s: int, /) -> None: method __init__ (line 1810) | def __init__(self, _v: Vec2f | list[float] | tuple[float, float], /) -... method __init__ (line 1819) | def __init__(self, _m: Matrix2d, /) -> None: method __init__ (line 1824) | def __init__(self, arg2: Matrix2f, /) -> None: ... method __init__ (line 1826) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 1828) | def __init__(self, arg2: object, /) -> None: ... method GetColumn (line 1829) | def GetColumn(self, _i: int, /) -> Vec2f: method GetDeterminant (line 1833) | def GetDeterminant(self) -> float: method GetInverse (line 1837) | def GetInverse(self) -> Matrix2f: method GetRow (line 1848) | def GetRow(self, _i: int, /) -> Vec2f: method GetTranspose (line 1852) | def GetTranspose(self) -> Matrix2f: method Set (line 1856) | def Set(self, _m00: float, _m01: float, _m10: float, _m11: float, /) -... method SetColumn (line 1865) | def SetColumn(self, _i: int, _v: Vec2f | list[float] | tuple[float, fl... method SetDiagonal (line 1870) | def SetDiagonal(self, _s: float, /) -> Matrix2f: method SetDiagonal (line 1875) | def SetDiagonal(self, _unknownArg1: Vec2f | list[float] | tuple[float,... method SetIdentity (line 1879) | def SetIdentity(self) -> Matrix2f: method SetRow (line 1883) | def SetRow(self, _i: int, _v: Vec2f | list[float] | tuple[float, float... method SetZero (line 1887) | def SetZero(self) -> Matrix2f: method __add__ (line 1891) | def __add__(self, arg2: Matrix2f, /) -> Any: ... method __contains__ (line 1893) | def __contains__(self, arg2: float, /) -> bool: method __contains__ (line 1896) | def __contains__(self, arg2: Vec2f | list[float] | tuple[float, float]... method __eq__ (line 1898) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 1905) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 1907) | def __getitem__(self, _i: tuple, /) -> float: method __getitem__ (line 1914) | def __getitem__(self, arg2: int, /) -> Vec2f: ... method __hash__ (line 1915) | def __hash__(self) -> int: ... method __iadd__ (line 1916) | def __iadd__(self, arg2: Matrix2f, /) -> Any: ... method __imul__ (line 1918) | def __imul__(self, arg2: Matrix2f, /) -> Any: ... method __imul__ (line 1920) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 1921) | def __isub__(self, arg2: Matrix2f, /) -> Any: ... method __len__ (line 1922) | def __len__(self) -> int: method __mul__ (line 1925) | def __mul__(self, arg2: Matrix2f, /) -> Any: ... method __mul__ (line 1927) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 1929) | def __mul__(self, arg2: Vec2f | list[float] | tuple[float, float], /) ... method __ne__ (line 1930) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1931) | def __neg__(self) -> Any: ... method __rmul__ (line 1933) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 1935) | def __rmul__(self, arg2: Vec2f | list[float] | tuple[float, float], /)... method __setitem__ (line 1937) | def __setitem__(self, arg2: tuple, arg3: float, /) -> None: ... method __setitem__ (line 1939) | def __setitem__(self, arg2: int, arg3: Vec2f | list[float] | tuple[flo... method __sub__ (line 1940) | def __sub__(self, arg2: Matrix2f, /) -> Any: ... method __truediv__ (line 1941) | def __truediv__(self, arg2: Matrix2f, /) -> Any: ... class Matrix3d (line 1943) | class Matrix3d(Boost.Python.instance): method __init__ (line 1976) | def __init__(self) -> None: method __init__ (line 1981) | def __init__(self, _m00: float, _m01: float, _m02: float, _m10: float,... method __init__ (line 1991) | def __init__(self, _s: int, /) -> None: method __init__ (line 1997) | def __init__(self, _v: Vec3d | list[float] | tuple[float, float, float... method __init__ (line 2006) | def __init__(self, _rot: Rotation, /) -> None: method __init__ (line 2011) | def __init__(self, _rot: Quatd | Quatf | Quath, /) -> None: method __init__ (line 2016) | def __init__(self, _m: Matrix3f, /) -> None: method __init__ (line 2021) | def __init__(self, arg2: Matrix3d, /) -> None: ... method __init__ (line 2023) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 2025) | def __init__(self, arg2: object, /) -> None: ... method ExtractRotation (line 2026) | def ExtractRotation(self) -> Rotation: method GetColumn (line 2036) | def GetColumn(self, _i: int, /) -> Vec3d: method GetDeterminant (line 2040) | def GetDeterminant(self) -> float: method GetHandedness (line 2044) | def GetHandedness(self) -> float: method GetInverse (line 2052) | def GetInverse(self) -> Matrix3d: method GetOrthonormalized (line 2063) | def GetOrthonormalized(self, issueWarning: bool = ...) -> Matrix3d: method GetRow (line 2067) | def GetRow(self, _i: int, /) -> Vec3d: method GetTranspose (line 2071) | def GetTranspose(self) -> Matrix3d: method IsLeftHanded (line 2075) | def IsLeftHanded(self) -> bool: method IsRightHanded (line 2080) | def IsRightHanded(self) -> bool: method Orthonormalize (line 2085) | def Orthonormalize(self, issueWarning: bool = ...) -> bool: method Set (line 2099) | def Set(self, _m00: float, _m01: float, _m02: float, _m10: float, _m11... method SetColumn (line 2108) | def SetColumn(self, _i: int, _v: Vec3d | list[float] | tuple[float, fl... method SetDiagonal (line 2113) | def SetDiagonal(self, _s: float, /) -> Matrix3d: method SetDiagonal (line 2118) | def SetDiagonal(self, _unknownArg1: Vec3d | list[float] | tuple[float,... method SetIdentity (line 2122) | def SetIdentity(self) -> Matrix3d: method SetRotate (line 2127) | def SetRotate(self, _rot: Quatd | Quatf | Quath, /) -> Matrix3d: method SetRotate (line 2132) | def SetRotate(self, _rot: Rotation, /) -> Matrix3d: method SetRow (line 2136) | def SetRow(self, _i: int, _v: Vec3d | list[float] | tuple[float, float... method SetScale (line 2141) | def SetScale(self, _scaleFactors: Vec3d | list[float] | tuple[float, f... method SetScale (line 2147) | def SetScale(self, _scaleFactor: float, /) -> Matrix3d: method SetZero (line 2151) | def SetZero(self) -> Matrix3d: method __add__ (line 2155) | def __add__(self, arg2: Matrix3d, /) -> Any: ... method __contains__ (line 2157) | def __contains__(self, arg2: float, /) -> bool: method __contains__ (line 2160) | def __contains__(self, arg2: Vec3d | list[float] | tuple[float, float,... method __eq__ (line 2162) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 2169) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 2171) | def __getitem__(self, _i: tuple, /) -> float: method __getitem__ (line 2178) | def __getitem__(self, arg2: int, /) -> Vec3d: ... method __hash__ (line 2179) | def __hash__(self) -> int: ... method __iadd__ (line 2180) | def __iadd__(self, arg2: Matrix3d, /) -> Any: ... method __imul__ (line 2182) | def __imul__(self, arg2: Matrix3d, /) -> Any: ... method __imul__ (line 2184) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 2185) | def __isub__(self, arg2: Matrix3d, /) -> Any: ... method __len__ (line 2186) | def __len__(self) -> int: method __mul__ (line 2189) | def __mul__(self, arg2: Matrix3d, /) -> Any: ... method __mul__ (line 2191) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 2193) | def __mul__(self, arg2: Vec3d | list[float] | tuple[float, float, floa... method __mul__ (line 2195) | def __mul__(self, arg2: Vec3f | list[float] | tuple[float, float, floa... method __ne__ (line 2196) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 2197) | def __neg__(self) -> Any: ... method __rmul__ (line 2199) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 2201) | def __rmul__(self, arg2: Vec3d | list[float] | tuple[float, float, flo... method __rmul__ (line 2203) | def __rmul__(self, arg2: Vec3f | list[float] | tuple[float, float, flo... method __setitem__ (line 2205) | def __setitem__(self, arg2: tuple, arg3: float, /) -> None: ... method __setitem__ (line 2207) | def __setitem__(self, arg2: int, arg3: Vec3d | list[float] | tuple[flo... method __sub__ (line 2208) | def __sub__(self, arg2: Matrix3d, /) -> Any: ... method __truediv__ (line 2209) | def __truediv__(self, arg2: Matrix3d, /) -> Any: ... class Matrix3f (line 2211) | class Matrix3f(Boost.Python.instance): method __init__ (line 2244) | def __init__(self) -> None: method __init__ (line 2249) | def __init__(self, _m00: float, _m01: float, _m02: float, _m10: float,... method __init__ (line 2259) | def __init__(self, _s: int, /) -> None: method __init__ (line 2265) | def __init__(self, _v: Vec3f | list[float] | tuple[float, float, float... method __init__ (line 2274) | def __init__(self, _rot: Rotation, /) -> None: method __init__ (line 2279) | def __init__(self, _rot: Quatf | Quath, /) -> None: method __init__ (line 2284) | def __init__(self, _m: Matrix3d, /) -> None: method __init__ (line 2289) | def __init__(self, arg2: Matrix3f, /) -> None: ... method __init__ (line 2291) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 2293) | def __init__(self, arg2: object, /) -> None: ... method ExtractRotation (line 2294) | def ExtractRotation(self) -> Rotation: method GetColumn (line 2304) | def GetColumn(self, _i: int, /) -> Vec3f: method GetDeterminant (line 2308) | def GetDeterminant(self) -> float: method GetHandedness (line 2312) | def GetHandedness(self) -> float: method GetInverse (line 2320) | def GetInverse(self) -> Matrix3f: method GetOrthonormalized (line 2331) | def GetOrthonormalized(self, issueWarning: bool = ...) -> Matrix3f: method GetRow (line 2335) | def GetRow(self, _i: int, /) -> Vec3f: method GetTranspose (line 2339) | def GetTranspose(self) -> Matrix3f: method IsLeftHanded (line 2343) | def IsLeftHanded(self) -> bool: method IsRightHanded (line 2348) | def IsRightHanded(self) -> bool: method Orthonormalize (line 2353) | def Orthonormalize(self, issueWarning: bool = ...) -> bool: method Set (line 2367) | def Set(self, _m00: float, _m01: float, _m02: float, _m10: float, _m11... method SetColumn (line 2376) | def SetColumn(self, _i: int, _v: Vec3f | list[float] | tuple[float, fl... method SetDiagonal (line 2381) | def SetDiagonal(self, _s: float, /) -> Matrix3f: method SetDiagonal (line 2386) | def SetDiagonal(self, _unknownArg1: Vec3f | list[float] | tuple[float,... method SetIdentity (line 2390) | def SetIdentity(self) -> Matrix3f: method SetRotate (line 2395) | def SetRotate(self, _rot: Quatf | Quath, /) -> Matrix3f: method SetRotate (line 2400) | def SetRotate(self, _rot: Rotation, /) -> Matrix3f: method SetRow (line 2404) | def SetRow(self, _i: int, _v: Vec3f | list[float] | tuple[float, float... method SetScale (line 2409) | def SetScale(self, _scaleFactors: Vec3f | list[float] | tuple[float, f... method SetScale (line 2415) | def SetScale(self, _scaleFactor: float, /) -> Matrix3f: method SetZero (line 2419) | def SetZero(self) -> Matrix3f: method __add__ (line 2423) | def __add__(self, arg2: Matrix3f, /) -> Any: ... method __contains__ (line 2425) | def __contains__(self, arg2: float, /) -> bool: method __contains__ (line 2428) | def __contains__(self, arg2: Vec3f | list[float] | tuple[float, float,... method __eq__ (line 2430) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 2437) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 2439) | def __getitem__(self, _i: tuple, /) -> float: method __getitem__ (line 2446) | def __getitem__(self, arg2: int, /) -> Vec3f: ... method __hash__ (line 2447) | def __hash__(self) -> int: ... method __iadd__ (line 2448) | def __iadd__(self, arg2: Matrix3f, /) -> Any: ... method __imul__ (line 2450) | def __imul__(self, arg2: Matrix3f, /) -> Any: ... method __imul__ (line 2452) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 2453) | def __isub__(self, arg2: Matrix3f, /) -> Any: ... method __len__ (line 2454) | def __len__(self) -> int: method __mul__ (line 2457) | def __mul__(self, arg2: Matrix3f, /) -> Any: ... method __mul__ (line 2459) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 2461) | def __mul__(self, arg2: Vec3f | list[float] | tuple[float, float, floa... method __ne__ (line 2462) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 2463) | def __neg__(self) -> Any: ... method __rmul__ (line 2465) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 2467) | def __rmul__(self, arg2: Vec3f | list[float] | tuple[float, float, flo... method __setitem__ (line 2469) | def __setitem__(self, arg2: tuple, arg3: float, /) -> None: ... method __setitem__ (line 2471) | def __setitem__(self, arg2: int, arg3: Vec3f | list[float] | tuple[flo... method __sub__ (line 2472) | def __sub__(self, arg2: Matrix3f, /) -> Any: ... method __truediv__ (line 2473) | def __truediv__(self, arg2: Matrix3f, /) -> Any: ... class Matrix4d (line 2475) | class Matrix4d(Boost.Python.instance): method __init__ (line 2510) | def __init__(self) -> None: method __init__ (line 2515) | def __init__(self, _m00: float, _m01: float, _m02: float, _m03: float,... method __init__ (line 2525) | def __init__(self, _v: Vec4d | list[float] | tuple[float, float, float... method __init__ (line 2534) | def __init__(self, _r0: typing.Iterable[float], _r1: typing.Iterable[f... method __init__ (line 2545) | def __init__(self, _rotate: Rotation, _translate: Vec3d | list[float] ... method __init__ (line 2554) | def __init__(self, _rotmx: Matrix3d, _translate: Vec3d | list[float] |... method __init__ (line 2563) | def __init__(self, _m: Matrix4f, /) -> None: method __init__ (line 2568) | def __init__(self, arg2: Matrix4d, /) -> None: ... method __init__ (line 2570) | def __init__(self, arg2: int, /) -> None: ... method __init__ (line 2572) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 2574) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 2576) | def __init__(self, arg2: object, arg3: object, arg4: object, arg5: obj... method ExtractRotation (line 2577) | def ExtractRotation(self) -> Rotation: method ExtractRotationMatrix (line 2587) | def ExtractRotationMatrix(self) -> Matrix3d: method ExtractRotationQuat (line 2597) | def ExtractRotationQuat(self) -> Quatd: method ExtractTranslation (line 2607) | def ExtractTranslation(self) -> Vec3d: method Factor (line 2612) | def Factor(self, _eps: float = ..., /) -> tuple: method GetColumn (line 2631) | def GetColumn(self, _i: int, /) -> Vec4d: method GetDeterminant (line 2635) | def GetDeterminant(self) -> float: method GetDeterminant3 (line 2639) | def GetDeterminant3(self) -> float: method GetHandedness (line 2648) | def GetHandedness(self) -> float: method GetInverse (line 2656) | def GetInverse(self) -> Matrix4d: method GetOrthonormalized (line 2667) | def GetOrthonormalized(self, issueWarning: bool = ...) -> Matrix4d: method GetRow (line 2671) | def GetRow(self, _i: int, /) -> Vec4d: method GetRow3 (line 2675) | def GetRow3(self, _i: int, /) -> Vec3d: method GetTranspose (line 2679) | def GetTranspose(self) -> Matrix4d: method HasOrthogonalRows3 (line 2683) | def HasOrthogonalRows3(self) -> bool: method IsLeftHanded (line 2691) | def IsLeftHanded(self) -> bool: method IsRightHanded (line 2696) | def IsRightHanded(self) -> bool: method Orthonormalize (line 2701) | def Orthonormalize(self, issueWarning: bool = ...) -> bool: method RemoveScaleShear (line 2715) | def RemoveScaleShear(self) -> Matrix4d: method Set (line 2723) | def Set(self, _m00: float, _m01: float, _m02: float, _m03: float, _m10... method SetColumn (line 2732) | def SetColumn(self, _i: int, _v: Vec4d | list[float] | tuple[float, fl... method SetDiagonal (line 2737) | def SetDiagonal(self, _s: float, /) -> Matrix4d: method SetDiagonal (line 2742) | def SetDiagonal(self, _unknownArg1: Vec4d | list[float] | tuple[float,... method SetIdentity (line 2746) | def SetIdentity(self) -> Matrix4d: method SetLookAt (line 2751) | def SetLookAt(self, _eyePoint: Vec3d | list[float] | tuple[float, floa... method SetLookAt (line 2762) | def SetLookAt(self, _eyePoint: Vec3d | list[float] | tuple[float, floa... method SetRotate (line 2770) | def SetRotate(self, _rot: Quatd | Quatf | Quath, /) -> Matrix4d: method SetRotate (line 2776) | def SetRotate(self, _rot: Rotation, /) -> Matrix4d: method SetRotate (line 2782) | def SetRotate(self, _mx: Matrix3d, /) -> Matrix4d: method SetRotateOnly (line 2788) | def SetRotateOnly(self, _rot: Quatd | Quatf | Quath, /) -> Matrix4d: method SetRotateOnly (line 2794) | def SetRotateOnly(self, _rot: Rotation, /) -> Matrix4d: method SetRotateOnly (line 2800) | def SetRotateOnly(self, _mx: Matrix3d, /) -> Matrix4d: method SetRow (line 2805) | def SetRow(self, _i: int, _v: Vec4d | list[float] | tuple[float, float... method SetRow3 (line 2809) | def SetRow3(self, _i: int, _v: Vec3d | list[float] | tuple[float, floa... method SetScale (line 2817) | def SetScale(self, _scaleFactors: Vec3d | list[float] | tuple[float, f... method SetScale (line 2823) | def SetScale(self, _scaleFactor: float, /) -> Matrix4d: method SetTransform (line 2828) | def SetTransform(self, _rotate: Rotation, _translate: Vec3d | list[flo... method SetTransform (line 2834) | def SetTransform(self, _rotmx: Matrix3d, _translate: Vec3d | list[floa... method SetTranslate (line 2839) | def SetTranslate(self, _trans: Vec3d | list[float] | tuple[float, floa... method SetTranslateOnly (line 2844) | def SetTranslateOnly(self, _t: Vec3d | list[float] | tuple[float, floa... method SetZero (line 2849) | def SetZero(self) -> Matrix4d: method Transform (line 2854) | def Transform(self, _vec: Vec3d | list[float] | tuple[float, float, fl... method Transform (line 2863) | def Transform(self, _vec: Vec3f | list[float] | tuple[float, float, fl... method TransformAffine (line 2873) | def TransformAffine(self, _vec: Vec3d | list[float] | tuple[float, flo... method TransformAffine (line 2883) | def TransformAffine(self, _vec: Vec3f | list[float] | tuple[float, flo... method TransformDir (line 2893) | def TransformDir(self, _vec: Vec3d | list[float] | tuple[float, float,... method TransformDir (line 2903) | def TransformDir(self, _vec: Vec3f | list[float] | tuple[float, float,... method __add__ (line 2914) | def __add__(self, arg2: Matrix4d, /) -> Any: ... method __contains__ (line 2916) | def __contains__(self, arg2: float, /) -> bool: method __contains__ (line 2919) | def __contains__(self, arg2: Vec4d | list[float] | tuple[float, float,... method __eq__ (line 2921) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 2928) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 2930) | def __getitem__(self, _i: tuple, /) -> float: method __getitem__ (line 2937) | def __getitem__(self, arg2: int, /) -> Vec4d: ... method __hash__ (line 2938) | def __hash__(self) -> int: ... method __iadd__ (line 2939) | def __iadd__(self, arg2: Matrix4d, /) -> Any: ... method __imul__ (line 2941) | def __imul__(self, arg2: Matrix4d, /) -> Any: ... method __imul__ (line 2943) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 2944) | def __isub__(self, arg2: Matrix4d, /) -> Any: ... method __len__ (line 2945) | def __len__(self) -> int: method __mul__ (line 2948) | def __mul__(self, arg2: Matrix4d, /) -> Any: ... method __mul__ (line 2950) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 2952) | def __mul__(self, arg2: Vec4d | list[float] | tuple[float, float, floa... method __mul__ (line 2954) | def __mul__(self, arg2: Vec4f | list[float] | tuple[float, float, floa... method __ne__ (line 2955) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 2956) | def __neg__(self) -> Any: ... method __rmul__ (line 2958) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 2960) | def __rmul__(self, arg2: Vec4d | list[float] | tuple[float, float, flo... method __rmul__ (line 2962) | def __rmul__(self, arg2: Vec4f | list[float] | tuple[float, float, flo... method __setitem__ (line 2964) | def __setitem__(self, arg2: tuple, arg3: float, /) -> None: ... method __setitem__ (line 2966) | def __setitem__(self, arg2: int, arg3: Vec4d | list[float] | tuple[flo... method __sub__ (line 2967) | def __sub__(self, arg2: Matrix4d, /) -> Any: ... method __truediv__ (line 2968) | def __truediv__(self, arg2: Matrix4d, /) -> Any: ... class Matrix4f (line 2970) | class Matrix4f(Boost.Python.instance): method __init__ (line 3005) | def __init__(self) -> None: method __init__ (line 3010) | def __init__(self, _m00: float, _m01: float, _m02: float, _m03: float,... method __init__ (line 3020) | def __init__(self, _v: Vec4f | list[float] | tuple[float, float, float... method __init__ (line 3029) | def __init__(self, _r0: typing.Iterable[float], _r1: typing.Iterable[f... method __init__ (line 3040) | def __init__(self, _rotate: Rotation, _translate: Vec3f | list[float] ... method __init__ (line 3049) | def __init__(self, _rotmx: Matrix3f, _translate: Vec3f | list[float] |... method __init__ (line 3058) | def __init__(self, _m: Matrix4d, /) -> None: method __init__ (line 3063) | def __init__(self, arg2: Matrix4f, /) -> None: ... method __init__ (line 3065) | def __init__(self, arg2: int, /) -> None: ... method __init__ (line 3067) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 3069) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 3071) | def __init__(self, arg2: object, arg3: object, arg4: object, arg5: obj... method ExtractRotation (line 3072) | def ExtractRotation(self) -> Rotation: method ExtractRotationMatrix (line 3082) | def ExtractRotationMatrix(self) -> Matrix3f: method ExtractRotationQuat (line 3092) | def ExtractRotationQuat(self) -> Quatf: method ExtractTranslation (line 3102) | def ExtractTranslation(self) -> Vec3f: method Factor (line 3107) | def Factor(self, _eps: float = ..., /) -> tuple: method GetColumn (line 3126) | def GetColumn(self, _i: int, /) -> Vec4f: method GetDeterminant (line 3130) | def GetDeterminant(self) -> float: method GetDeterminant3 (line 3134) | def GetDeterminant3(self) -> float: method GetHandedness (line 3143) | def GetHandedness(self) -> float: method GetInverse (line 3151) | def GetInverse(self) -> Matrix4f: method GetOrthonormalized (line 3162) | def GetOrthonormalized(self, issueWarning: bool = ...) -> Matrix4f: method GetRow (line 3166) | def GetRow(self, _i: int, /) -> Vec4f: method GetRow3 (line 3170) | def GetRow3(self, _i: int, /) -> Vec3f: method GetTranspose (line 3174) | def GetTranspose(self) -> Matrix4f: method HasOrthogonalRows3 (line 3178) | def HasOrthogonalRows3(self) -> bool: method IsLeftHanded (line 3186) | def IsLeftHanded(self) -> bool: method IsRightHanded (line 3191) | def IsRightHanded(self) -> bool: method Orthonormalize (line 3196) | def Orthonormalize(self, issueWarning: bool = ...) -> bool: method RemoveScaleShear (line 3210) | def RemoveScaleShear(self) -> Matrix4f: method Set (line 3218) | def Set(self, _m00: float, _m01: float, _m02: float, _m03: float, _m10... method SetColumn (line 3227) | def SetColumn(self, _i: int, _v: Vec4f | list[float] | tuple[float, fl... method SetDiagonal (line 3232) | def SetDiagonal(self, _s: float, /) -> Matrix4f: method SetDiagonal (line 3237) | def SetDiagonal(self, _unknownArg1: Vec4f | list[float] | tuple[float,... method SetIdentity (line 3241) | def SetIdentity(self) -> Matrix4f: method SetLookAt (line 3246) | def SetLookAt(self, _eyePoint: Vec3f | list[float] | tuple[float, floa... method SetLookAt (line 3257) | def SetLookAt(self, _eyePoint: Vec3f | list[float] | tuple[float, floa... method SetRotate (line 3265) | def SetRotate(self, _rot: Quatf | Quath, /) -> Matrix4f: method SetRotate (line 3271) | def SetRotate(self, _rot: Rotation, /) -> Matrix4f: method SetRotate (line 3277) | def SetRotate(self, _mx: Matrix3f, /) -> Matrix4f: method SetRotateOnly (line 3283) | def SetRotateOnly(self, _rot: Quatf | Quath, /) -> Matrix4f: method SetRotateOnly (line 3289) | def SetRotateOnly(self, _rot: Rotation, /) -> Matrix4f: method SetRotateOnly (line 3295) | def SetRotateOnly(self, _mx: Matrix3f, /) -> Matrix4f: method SetRow (line 3300) | def SetRow(self, _i: int, _v: Vec4f | list[float] | tuple[float, float... method SetRow3 (line 3304) | def SetRow3(self, _i: int, _v: Vec3f | list[float] | tuple[float, floa... method SetScale (line 3312) | def SetScale(self, _scaleFactors: Vec3f | list[float] | tuple[float, f... method SetScale (line 3318) | def SetScale(self, _scaleFactor: float, /) -> Matrix4f: method SetTransform (line 3323) | def SetTransform(self, _rotate: Rotation, _translate: Vec3f | list[flo... method SetTransform (line 3329) | def SetTransform(self, _rotmx: Matrix3f, _translate: Vec3f | list[floa... method SetTranslate (line 3334) | def SetTranslate(self, _trans: Vec3f | list[float] | tuple[float, floa... method SetTranslateOnly (line 3339) | def SetTranslateOnly(self, _t: Vec3f | list[float] | tuple[float, floa... method SetZero (line 3344) | def SetZero(self) -> Matrix4f: method Transform (line 3349) | def Transform(self, _vec: Vec3d | list[float] | tuple[float, float, fl... method Transform (line 3358) | def Transform(self, _vec: Vec3f | list[float] | tuple[float, float, fl... method TransformAffine (line 3368) | def TransformAffine(self, _vec: Vec3d | list[float] | tuple[float, flo... method TransformAffine (line 3378) | def TransformAffine(self, _vec: Vec3f | list[float] | tuple[float, flo... method TransformDir (line 3388) | def TransformDir(self, _vec: Vec3d | list[float] | tuple[float, float,... method TransformDir (line 3398) | def TransformDir(self, _vec: Vec3f | list[float] | tuple[float, float,... method __add__ (line 3409) | def __add__(self, arg2: Matrix4f, /) -> Any: ... method __contains__ (line 3411) | def __contains__(self, arg2: float, /) -> bool: method __contains__ (line 3414) | def __contains__(self, arg2: Vec4f | list[float] | tuple[float, float,... method __eq__ (line 3416) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 3423) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 3425) | def __getitem__(self, _i: tuple, /) -> float: method __getitem__ (line 3432) | def __getitem__(self, arg2: int, /) -> Vec4f: ... method __hash__ (line 3433) | def __hash__(self) -> int: ... method __iadd__ (line 3434) | def __iadd__(self, arg2: Matrix4f, /) -> Any: ... method __imul__ (line 3436) | def __imul__(self, arg2: Matrix4f, /) -> Any: ... method __imul__ (line 3438) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 3439) | def __isub__(self, arg2: Matrix4f, /) -> Any: ... method __len__ (line 3440) | def __len__(self) -> int: method __mul__ (line 3443) | def __mul__(self, arg2: Matrix4f, /) -> Any: ... method __mul__ (line 3445) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 3447) | def __mul__(self, arg2: Vec4f | list[float] | tuple[float, float, floa... method __ne__ (line 3448) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3449) | def __neg__(self) -> Any: ... method __rmul__ (line 3451) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 3453) | def __rmul__(self, arg2: Vec4f | list[float] | tuple[float, float, flo... method __setitem__ (line 3455) | def __setitem__(self, arg2: tuple, arg3: float, /) -> None: ... method __setitem__ (line 3457) | def __setitem__(self, arg2: int, arg3: Vec4f | list[float] | tuple[flo... method __sub__ (line 3458) | def __sub__(self, arg2: Matrix4f, /) -> Any: ... method __truediv__ (line 3459) | def __truediv__(self, arg2: Matrix4f, /) -> Any: ... class MultiInterval (line 3461) | class MultiInterval(Boost.Python.instance): method __init__ (line 3468) | def __init__(self) -> None: ... method __init__ (line 3470) | def __init__(self, _i: Interval, /) -> None: method __init__ (line 3475) | def __init__(self, _intervals: typing.Iterable[Interval], /) -> None: method __init__ (line 3480) | def __init__(self, arg2: MultiInterval, /) -> None: ... method Add (line 3482) | def Add(self, _i: Interval, /) -> None: method Add (line 3487) | def Add(self, _s: MultiInterval, /) -> None: method ArithmeticAdd (line 3494) | def ArithmeticAdd(self, _i: Interval, /) -> None: method Clear (line 3499) | def Clear(self) -> None: method Contains (line 3504) | def Contains(self, _d: float, /) -> bool: method Contains (line 3509) | def Contains(self, _i: Interval, /) -> bool: method Contains (line 3514) | def Contains(self, _s: MultiInterval, /) -> bool: method GetBounds (line 3519) | def GetBounds(self) -> Interval: method GetComplement (line 3526) | def GetComplement(self) -> MultiInterval: method GetContainingInterval (line 3530) | def GetContainingInterval(self, _x: float, /) -> pxr.Usd.PrimSiblingIt... method GetFullInterval (line 3538) | def GetFullInterval() -> MultiInterval: method GetNextNonContainingInterval (line 3542) | def GetNextNonContainingInterval(self, _x: float, /) -> pxr.Usd.PrimSi... method GetPriorNonContainingInterval (line 3550) | def GetPriorNonContainingInterval(self, _x: float, /) -> pxr.Usd.PrimS... method GetSize (line 3558) | def GetSize(self) -> int: method Intersect (line 3563) | def Intersect(self, _i: Interval, /) -> None: ... method Intersect (line 3565) | def Intersect(self, _s: MultiInterval, /) -> None: ... method IsEmpty (line 3566) | def IsEmpty(self) -> bool: method Remove (line 3571) | def Remove(self, _i: Interval, /) -> None: method Remove (line 3576) | def Remove(self, _s: MultiInterval, /) -> None: method __eq__ (line 3580) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 3581) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 3582) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 3583) | def __hash__(self) -> int: ... method __iter__ (line 3584) | def __iter__(self) -> Any: ... method __le__ (line 3585) | def __le__(self, other: object) -> bool: ... method __lt__ (line 3586) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 3587) | def __ne__(self, other: object) -> bool: ... method bounds (line 3589) | def bounds(self) -> Interval: method isEmpty (line 3597) | def isEmpty(self) -> bool: method size (line 3602) | def size(self) -> int: class Plane (line 3607) | class Plane(Boost.Python.instance): method __init__ (line 3619) | def __init__(self) -> None: method __init__ (line 3624) | def __init__(self, _normal: Vec3d | list[float] | tuple[float, float, ... method __init__ (line 3633) | def __init__(self, _normal: Vec3d | list[float] | tuple[float, float, ... method __init__ (line 3642) | def __init__(self, _p0: Vec3d | list[float] | tuple[float, float, floa... method __init__ (line 3652) | def __init__(self, _eqn: Vec4d | list[float] | tuple[float, float, flo... method GetDistance (line 3657) | def GetDistance(self, _p: Vec3d | list[float] | tuple[float, float, fl... method GetDistanceFromOrigin (line 3665) | def GetDistanceFromOrigin(self) -> float: method GetEquation (line 3669) | def GetEquation(self) -> Vec4d: method GetNormal (line 3676) | def GetNormal(self) -> Vec3d: method IntersectsPositiveHalfSpace (line 3681) | def IntersectsPositiveHalfSpace(self, _box: Range3d | list[float] | tu... method IntersectsPositiveHalfSpace (line 3688) | def IntersectsPositiveHalfSpace(self, _pt: Vec3d | list[float] | tuple... method Project (line 3693) | def Project(self, _p: Vec3d | list[float] | tuple[float, float, float]... method Reorient (line 3697) | def Reorient(self, _p: Vec3d | list[float] | tuple[float, float, float... method Set (line 3703) | def Set(self, _normal: Vec3d | list[float] | tuple[float, float, float... method Set (line 3712) | def Set(self, _normal: Vec3d | list[float] | tuple[float, float, float... method Set (line 3721) | def Set(self, _p0: Vec3d | list[float] | tuple[float, float, float], _... method Set (line 3731) | def Set(self, _eqn: Vec4d | list[float] | tuple[float, float, float, f... method Transform (line 3736) | def Transform(self, _matrix: Matrix4d, /) -> Plane: method __eq__ (line 3740) | def __eq__(self, other: object) -> bool: method __ne__ (line 3748) | def __ne__(self, other: object) -> bool: ... method distanceFromOrigin (line 3750) | def distanceFromOrigin(self) -> float: method normal (line 3755) | def normal(self) -> Vec3d: class Quatd (line 3760) | class Quatd(Boost.Python.instance): method __init__ (line 3768) | def __init__(self) -> None: method __init__ (line 3773) | def __init__(self, real: float) -> None: method __init__ (line 3784) | def __init__(self, real: float, i: float, j: float, k: float) -> None: method __init__ (line 3789) | def __init__(self, real: float, imaginary: Vec3d | list[float] | tuple... method __init__ (line 3794) | def __init__(self, arg2: Quatd | Quatf | Quath, /) -> None: ... method GetConjugate (line 3795) | def GetConjugate(self) -> Quatd: method GetIdentity (line 3801) | def GetIdentity() -> Quatd: method GetImaginary (line 3806) | def GetImaginary(self) -> Vec3d: method GetInverse (line 3810) | def GetInverse(self) -> Quatd: method GetLength (line 3817) | def GetLength(self) -> float: method GetNormalized (line 3821) | def GetNormalized(self, eps: float = ...) -> Quatd: method GetReal (line 3826) | def GetReal(self) -> float: method GetZero (line 3831) | def GetZero() -> Quatd: method Normalize (line 3836) | def Normalize(self, eps: float = ...) -> Quatd: method SetImaginary (line 3846) | def SetImaginary(self, _imaginary: Vec3d | list[float] | tuple[float, ... method SetImaginary (line 3851) | def SetImaginary(self, i: float, j: float, k: float) -> None: method SetReal (line 3855) | def SetReal(self, _real: float, /) -> None: method Transform (line 3859) | def Transform(self, _point: Vec3d | list[float] | tuple[float, float, ... method __add__ (line 3869) | def __add__(self, arg2: Quatd | Quatf | Quath, /) -> Any: ... method __eq__ (line 3870) | def __eq__(self, other: object) -> bool: method __hash__ (line 3878) | def __hash__(self) -> int: ... method __iadd__ (line 3879) | def __iadd__(self, arg2: Quatd | Quatf | Quath, /) -> Any: ... method __idiv__ (line 3880) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 3882) | def __imul__(self, arg2: Quatd | Quatf | Quath, /) -> Any: ... method __imul__ (line 3884) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 3885) | def __isub__(self, arg2: Quatd | Quatf | Quath, /) -> Any: ... method __itruediv__ (line 3886) | def __itruediv__(self, arg2: float, /) -> Quatd: ... method __mul__ (line 3888) | def __mul__(self, arg2: Quatd | Quatf | Quath, /) -> Any: ... method __mul__ (line 3890) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 3891) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3892) | def __neg__(self) -> Any: ... method __rmul__ (line 3893) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 3894) | def __sub__(self, arg2: Quatd | Quatf | Quath, /) -> Any: ... method __truediv__ (line 3895) | def __truediv__(self, arg2: float, /) -> Any: ... class Quaternion (line 3897) | class Quaternion(Boost.Python.instance): method __init__ (line 3911) | def __init__(self) -> None: method __init__ (line 3916) | def __init__(self, _realVal: Quaternion, /) -> None: method __init__ (line 3927) | def __init__(self, _real: float, _imaginary: Vec3d | list[float] | tup... method __init__ (line 3932) | def __init__(self, arg2: int, /) -> None: ... method GetIdentity (line 3934) | def GetIdentity() -> Quaternion: method GetImaginary (line 3939) | def GetImaginary(self) -> Vec3d: method GetInverse (line 3943) | def GetInverse(self) -> Quaternion: method GetLength (line 3947) | def GetLength(self) -> float: method GetNormalized (line 3951) | def GetNormalized(self, _eps: float = ..., /) -> Quaternion: method GetReal (line 3959) | def GetReal(self) -> float: method GetZero (line 3964) | def GetZero() -> Quaternion: method Normalize (line 3969) | def Normalize(self, _eps: float = ..., /) -> Quaternion: method __add__ (line 3978) | def __add__(self, arg2: Quaternion, /) -> Any: ... method __eq__ (line 3979) | def __eq__(self, other: object) -> bool: method __hash__ (line 3987) | def __hash__(self) -> int: ... method __iadd__ (line 3988) | def __iadd__(self, arg2: Quaternion, /) -> Any: ... method __idiv__ (line 3989) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 3991) | def __imul__(self, arg2: Quaternion, /) -> Any: ... method __imul__ (line 3993) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 3994) | def __isub__(self, arg2: Quaternion, /) -> Any: ... method __itruediv__ (line 3995) | def __itruediv__(self, arg2: float, /) -> Quaternion: ... method __mul__ (line 3997) | def __mul__(self, arg2: Quaternion, /) -> Any: ... method __mul__ (line 3999) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4000) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 4001) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4002) | def __sub__(self, arg2: Quaternion, /) -> Any: ... method __truediv__ (line 4003) | def __truediv__(self, arg2: float, /) -> Any: ... class Quatf (line 4005) | class Quatf(Boost.Python.instance): method __init__ (line 4013) | def __init__(self) -> None: method __init__ (line 4018) | def __init__(self, real: float) -> None: method __init__ (line 4029) | def __init__(self, real: float, i: float, j: float, k: float) -> None: method __init__ (line 4034) | def __init__(self, real: float, imaginary: Vec3f | list[float] | tuple... method __init__ (line 4039) | def __init__(self, _other: Quatd | Quatf | Quath, /) -> None: method __init__ (line 4044) | def __init__(self, _other: Quatf | Quath, /) -> None: # type: ignore[... method GetConjugate (line 4048) | def GetConjugate(self) -> Quatf: method GetIdentity (line 4054) | def GetIdentity() -> Quatf: method GetImaginary (line 4059) | def GetImaginary(self) -> Vec3f: method GetInverse (line 4063) | def GetInverse(self) -> Quatf: method GetLength (line 4070) | def GetLength(self) -> float: method GetNormalized (line 4074) | def GetNormalized(self, eps: float = ...) -> Quatf: method GetReal (line 4079) | def GetReal(self) -> float: method GetZero (line 4084) | def GetZero() -> Quatf: method Normalize (line 4089) | def Normalize(self, eps: float = ...) -> Quatf: method SetImaginary (line 4099) | def SetImaginary(self, _imaginary: Vec3f | list[float] | tuple[float, ... method SetImaginary (line 4104) | def SetImaginary(self, i: float, j: float, k: float) -> None: method SetReal (line 4108) | def SetReal(self, _real: float, /) -> None: method Transform (line 4112) | def Transform(self, _point: Vec3f | list[float] | tuple[float, float, ... method __add__ (line 4122) | def __add__(self, arg2: Quatf | Quath, /) -> Any: ... method __eq__ (line 4123) | def __eq__(self, other: object) -> bool: method __hash__ (line 4131) | def __hash__(self) -> int: ... method __iadd__ (line 4132) | def __iadd__(self, arg2: Quatf | Quath, /) -> Any: ... method __idiv__ (line 4133) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 4135) | def __imul__(self, arg2: Quatf | Quath, /) -> Any: ... method __imul__ (line 4137) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 4138) | def __isub__(self, arg2: Quatf | Quath, /) -> Any: ... method __itruediv__ (line 4139) | def __itruediv__(self, arg2: float, /) -> Quatf: ... method __mul__ (line 4141) | def __mul__(self, arg2: Quatf | Quath, /) -> Any: ... method __mul__ (line 4143) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4144) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4145) | def __neg__(self) -> Any: ... method __rmul__ (line 4146) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4147) | def __sub__(self, arg2: Quatf | Quath, /) -> Any: ... method __truediv__ (line 4148) | def __truediv__(self, arg2: float, /) -> Any: ... class Quath (line 4150) | class Quath(Boost.Python.instance): method __init__ (line 4158) | def __init__(self) -> None: method __init__ (line 4163) | def __init__(self, real: float) -> None: method __init__ (line 4174) | def __init__(self, real: float, i: float, j: float, k: float) -> None: method __init__ (line 4179) | def __init__(self, real: float, imaginary: Vec3h | list[float] | tuple... method __init__ (line 4184) | def __init__(self, _other: Quatd | Quatf | Quath, /) -> None: method __init__ (line 4189) | def __init__(self, _other: Quatf | Quath, /) -> None: # type: ignore[... method __init__ (line 4194) | def __init__(self, arg2: Quath, /) -> None: ... # type: ignore[overlo... method GetConjugate (line 4195) | def GetConjugate(self) -> Quath: method GetIdentity (line 4201) | def GetIdentity() -> Quath: method GetImaginary (line 4206) | def GetImaginary(self) -> Vec3h: method GetInverse (line 4210) | def GetInverse(self) -> Quath: method GetLength (line 4217) | def GetLength(self) -> float: method GetNormalized (line 4221) | def GetNormalized(self, eps: float = ...) -> Quath: method GetReal (line 4226) | def GetReal(self) -> float: method GetZero (line 4231) | def GetZero() -> Quath: method Normalize (line 4236) | def Normalize(self, eps: float = ...) -> Quath: method SetImaginary (line 4246) | def SetImaginary(self, _imaginary: Vec3h | list[float] | tuple[float, ... method SetImaginary (line 4251) | def SetImaginary(self, i: float, j: float, k: float) -> None: method SetReal (line 4255) | def SetReal(self, _real: float, /) -> None: method Transform (line 4259) | def Transform(self, _point: Vec3h | list[float] | tuple[float, float, ... method __add__ (line 4269) | def __add__(self, arg2: Quath, /) -> Any: ... method __eq__ (line 4270) | def __eq__(self, other: object) -> bool: method __hash__ (line 4278) | def __hash__(self) -> int: ... method __iadd__ (line 4279) | def __iadd__(self, arg2: Quath, /) -> Any: ... method __idiv__ (line 4280) | def __idiv__(self, arg2: object, /) -> Any: ... method __imul__ (line 4282) | def __imul__(self, arg2: Quath, /) -> Any: ... method __imul__ (line 4284) | def __imul__(self, arg2: object, /) -> Any: ... method __isub__ (line 4285) | def __isub__(self, arg2: Quath, /) -> Any: ... method __itruediv__ (line 4286) | def __itruediv__(self, arg2: object, /) -> Quath: ... method __mul__ (line 4288) | def __mul__(self, arg2: Quath, /) -> Any: ... method __mul__ (line 4290) | def __mul__(self, arg2: object, /) -> Any: ... method __ne__ (line 4291) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4292) | def __neg__(self) -> Any: ... method __rmul__ (line 4293) | def __rmul__(self, arg2: object, /) -> Any: ... method __sub__ (line 4294) | def __sub__(self, arg2: Quath, /) -> Any: ... method __truediv__ (line 4295) | def __truediv__(self, arg2: object, /) -> Any: ... class Range1d (line 4297) | class Range1d(Boost.Python.instance): method __init__ (line 4312) | def __init__(self) -> None: method __init__ (line 4317) | def __init__(self, _min: float, _max: float, /) -> None: method __init__ (line 4322) | def __init__(self, _other: Range1d, /) -> None: method __init__ (line 4327) | def __init__(self, arg2: Range1f, /) -> None: ... method Contains (line 4329) | def Contains(self, _point: float, /) -> bool: method Contains (line 4338) | def Contains(self, _range: Range1d, /) -> bool: method GetDistanceSquared (line 4346) | def GetDistanceSquared(self, _p: float, /) -> float: method GetIntersection (line 4351) | def GetIntersection(_a: Range1d, _b: Range1d, /) -> Range1d: method GetMax (line 4356) | def GetMax(self) -> float: method GetMidpoint (line 4360) | def GetMidpoint(self) -> float: method GetMin (line 4368) | def GetMin(self) -> float: method GetSize (line 4372) | def GetSize(self) -> float: method GetUnion (line 4377) | def GetUnion(_a: Range1d, _b: Range1d, /) -> Range1d: method IntersectWith (line 4381) | def IntersectWith(self, _b: Range1d, /) -> Range1d: method IsEmpty (line 4386) | def IsEmpty(self) -> bool: method SetEmpty (line 4390) | def SetEmpty(self) -> None: method SetMax (line 4394) | def SetMax(self, _max: float, /) -> None: method SetMin (line 4398) | def SetMin(self, _min: float, /) -> None: method UnionWith (line 4403) | def UnionWith(self, _b: Range1d, /) -> Range1d: method UnionWith (line 4408) | def UnionWith(self, _b: float, /) -> Range1d: method __add__ (line 4412) | def __add__(self, arg2: Range1d, /) -> Any: ... method __eq__ (line 4413) | def __eq__(self, other: object) -> bool: method __hash__ (line 4417) | def __hash__(self) -> int: ... method __iadd__ (line 4418) | def __iadd__(self, arg2: Range1d, /) -> Any: ... method __idiv__ (line 4419) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 4420) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 4421) | def __isub__(self, arg2: Range1d, /) -> Any: ... method __itruediv__ (line 4422) | def __itruediv__(self, arg2: float, /) -> Range1d: ... method __mul__ (line 4423) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4424) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 4425) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4426) | def __sub__(self, arg2: Range1d, /) -> Any: ... method __truediv__ (line 4427) | def __truediv__(self, arg2: float, /) -> Any: ... class Range1f (line 4429) | class Range1f(Boost.Python.instance): method __init__ (line 4444) | def __init__(self) -> None: method __init__ (line 4449) | def __init__(self, _min: float, _max: float, /) -> None: method __init__ (line 4454) | def __init__(self, _other: Range1f, /) -> None: method __init__ (line 4459) | def __init__(self, arg2: Range1d, /) -> None: ... method Contains (line 4461) | def Contains(self, _point: float, /) -> bool: method Contains (line 4470) | def Contains(self, _range: Range1f, /) -> bool: method GetDistanceSquared (line 4478) | def GetDistanceSquared(self, _p: float, /) -> float: method GetIntersection (line 4483) | def GetIntersection(_a: Range1f, _b: Range1f, /) -> Range1f: method GetMax (line 4488) | def GetMax(self) -> float: method GetMidpoint (line 4492) | def GetMidpoint(self) -> float: method GetMin (line 4500) | def GetMin(self) -> float: method GetSize (line 4504) | def GetSize(self) -> float: method GetUnion (line 4509) | def GetUnion(_a: Range1f, _b: Range1f, /) -> Range1f: method IntersectWith (line 4513) | def IntersectWith(self, _b: Range1f, /) -> Range1f: method IsEmpty (line 4518) | def IsEmpty(self) -> bool: method SetEmpty (line 4522) | def SetEmpty(self) -> None: method SetMax (line 4526) | def SetMax(self, _max: float, /) -> None: method SetMin (line 4530) | def SetMin(self, _min: float, /) -> None: method UnionWith (line 4535) | def UnionWith(self, _b: Range1f, /) -> Range1f: method UnionWith (line 4540) | def UnionWith(self, _b: float, /) -> Range1f: method __add__ (line 4544) | def __add__(self, arg2: Range1f, /) -> Any: ... method __eq__ (line 4545) | def __eq__(self, other: object) -> bool: method __hash__ (line 4549) | def __hash__(self) -> int: ... method __iadd__ (line 4550) | def __iadd__(self, arg2: Range1f, /) -> Any: ... method __idiv__ (line 4551) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 4552) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 4553) | def __isub__(self, arg2: Range1f, /) -> Any: ... method __itruediv__ (line 4554) | def __itruediv__(self, arg2: float, /) -> Range1f: ... method __mul__ (line 4555) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4556) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 4557) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4558) | def __sub__(self, arg2: Range1f, /) -> Any: ... method __truediv__ (line 4559) | def __truediv__(self, arg2: float, /) -> Any: ... class Range2d (line 4561) | class Range2d(Boost.Python.instance): method __init__ (line 4577) | def __init__(self) -> None: method __init__ (line 4582) | def __init__(self, _min: Vec2d | list[float] | tuple[float, float], _m... method __init__ (line 4587) | def __init__(self, _other: Range2d | list[float] | tuple[float, float]... method __init__ (line 4592) | def __init__(self, arg2: Range2f | list[float] | tuple[float, float], ... method Contains (line 4594) | def Contains(self, _point: Vec2d | list[float] | tuple[float, float], ... method Contains (line 4603) | def Contains(self, _range: Range2d | list[float] | tuple[float, float]... method GetCorner (line 4611) | def GetCorner(self, _i: int, /) -> Vec2d: method GetDistanceSquared (line 4616) | def GetDistanceSquared(self, _p: Vec2d | list[float] | tuple[float, fl... method GetIntersection (line 4621) | def GetIntersection(_a: Range2d | list[float] | tuple[float, float], _... method GetMax (line 4626) | def GetMax(self) -> Vec2d: method GetMidpoint (line 4630) | def GetMidpoint(self) -> Vec2d: method GetMin (line 4638) | def GetMin(self) -> Vec2d: method GetQuadrant (line 4642) | def GetQuadrant(self, _i: int, /) -> Range2d: method GetSize (line 4647) | def GetSize(self) -> Vec2d: method GetUnion (line 4652) | def GetUnion(_a: Range2d | list[float] | tuple[float, float], _b: Rang... method IntersectWith (line 4656) | def IntersectWith(self, _b: Range2d | list[float] | tuple[float, float... method IsEmpty (line 4661) | def IsEmpty(self) -> bool: method SetEmpty (line 4665) | def SetEmpty(self) -> None: method SetMax (line 4669) | def SetMax(self, _max: Vec2d | list[float] | tuple[float, float], /) -... method SetMin (line 4673) | def SetMin(self, _min: Vec2d | list[float] | tuple[float, float], /) -... method UnionWith (line 4678) | def UnionWith(self, _b: Range2d | list[float] | tuple[float, float], /... method UnionWith (line 4683) | def UnionWith(self, _b: Vec2d | list[float] | tuple[float, float], /) ... method __add__ (line 4687) | def __add__(self, arg2: Range2d | list[float] | tuple[float, float], /... method __eq__ (line 4688) | def __eq__(self, other: object) -> bool: method __hash__ (line 4692) | def __hash__(self) -> int: ... method __iadd__ (line 4693) | def __iadd__(self, arg2: Range2d | list[float] | tuple[float, float], ... method __idiv__ (line 4694) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 4695) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 4696) | def __isub__(self, arg2: Range2d | list[float] | tuple[float, float], ... method __itruediv__ (line 4697) | def __itruediv__(self, arg2: float, /) -> Range2d: ... method __mul__ (line 4698) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4699) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 4700) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4701) | def __sub__(self, arg2: Range2d | list[float] | tuple[float, float], /... method __truediv__ (line 4702) | def __truediv__(self, arg2: float, /) -> Any: ... class Range2f (line 4704) | class Range2f(Boost.Python.instance): method __init__ (line 4720) | def __init__(self) -> None: method __init__ (line 4725) | def __init__(self, _min: Vec2f | list[float] | tuple[float, float], _m... method __init__ (line 4730) | def __init__(self, _other: Range2f | list[float] | tuple[float, float]... method __init__ (line 4735) | def __init__(self, arg2: Range2d | list[float] | tuple[float, float], ... method Contains (line 4737) | def Contains(self, _point: Vec2f | list[float] | tuple[float, float], ... method Contains (line 4746) | def Contains(self, _range: Range2f | list[float] | tuple[float, float]... method GetCorner (line 4754) | def GetCorner(self, _i: int, /) -> Vec2f: method GetDistanceSquared (line 4759) | def GetDistanceSquared(self, _p: Vec2f | list[float] | tuple[float, fl... method GetIntersection (line 4764) | def GetIntersection(_a: Range2f | list[float] | tuple[float, float], _... method GetMax (line 4769) | def GetMax(self) -> Vec2f: method GetMidpoint (line 4773) | def GetMidpoint(self) -> Vec2f: method GetMin (line 4781) | def GetMin(self) -> Vec2f: method GetQuadrant (line 4785) | def GetQuadrant(self, _i: int, /) -> Range2f: method GetSize (line 4790) | def GetSize(self) -> Vec2f: method GetUnion (line 4795) | def GetUnion(_a: Range2f | list[float] | tuple[float, float], _b: Rang... method IntersectWith (line 4799) | def IntersectWith(self, _b: Range2f | list[float] | tuple[float, float... method IsEmpty (line 4804) | def IsEmpty(self) -> bool: method SetEmpty (line 4808) | def SetEmpty(self) -> None: method SetMax (line 4812) | def SetMax(self, _max: Vec2f | list[float] | tuple[float, float], /) -... method SetMin (line 4816) | def SetMin(self, _min: Vec2f | list[float] | tuple[float, float], /) -... method UnionWith (line 4821) | def UnionWith(self, _b: Range2f | list[float] | tuple[float, float], /... method UnionWith (line 4826) | def UnionWith(self, _b: Vec2f | list[float] | tuple[float, float], /) ... method __add__ (line 4830) | def __add__(self, arg2: Range2f | list[float] | tuple[float, float], /... method __eq__ (line 4831) | def __eq__(self, other: object) -> bool: method __hash__ (line 4835) | def __hash__(self) -> int: ... method __iadd__ (line 4836) | def __iadd__(self, arg2: Range2f | list[float] | tuple[float, float], ... method __idiv__ (line 4837) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 4838) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 4839) | def __isub__(self, arg2: Range2f | list[float] | tuple[float, float], ... method __itruediv__ (line 4840) | def __itruediv__(self, arg2: float, /) -> Range2f: ... method __mul__ (line 4841) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4842) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 4843) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4844) | def __sub__(self, arg2: Range2f | list[float] | tuple[float, float], /... method __truediv__ (line 4845) | def __truediv__(self, arg2: float, /) -> Any: ... class Range3d (line 4847) | class Range3d(Boost.Python.instance): method __init__ (line 4863) | def __init__(self) -> None: method __init__ (line 4868) | def __init__(self, _min: Vec3d | list[float] | tuple[float, float, flo... method __init__ (line 4873) | def __init__(self, _other: Range3d | list[float] | tuple[float, float,... method __init__ (line 4878) | def __init__(self, arg2: Range3f | list[float] | tuple[float, float, f... method Contains (line 4880) | def Contains(self, _point: Vec3d | list[float] | tuple[float, float, f... method Contains (line 4889) | def Contains(self, _range: Range3d | list[float] | tuple[float, float,... method GetCorner (line 4897) | def GetCorner(self, _i: int, /) -> Vec3d: method GetDistanceSquared (line 4905) | def GetDistanceSquared(self, _p: Vec3d | list[float] | tuple[float, fl... method GetIntersection (line 4910) | def GetIntersection(_a: Range3d | list[float] | tuple[float, float, fl... method GetMax (line 4915) | def GetMax(self) -> Vec3d: method GetMidpoint (line 4919) | def GetMidpoint(self) -> Vec3d: method GetMin (line 4927) | def GetMin(self) -> Vec3d: method GetOctant (line 4931) | def GetOctant(self, _i: int, /) -> Range3d: method GetSize (line 4939) | def GetSize(self) -> Vec3d: method GetUnion (line 4944) | def GetUnion(_a: Range3d | list[float] | tuple[float, float, float], _... method IntersectWith (line 4948) | def IntersectWith(self, _b: Range3d | list[float] | tuple[float, float... method IsEmpty (line 4953) | def IsEmpty(self) -> bool: method SetEmpty (line 4957) | def SetEmpty(self) -> None: method SetMax (line 4961) | def SetMax(self, _max: Vec3d | list[float] | tuple[float, float, float... method SetMin (line 4965) | def SetMin(self, _min: Vec3d | list[float] | tuple[float, float, float... method UnionWith (line 4970) | def UnionWith(self, _b: Range3d | list[float] | tuple[float, float, fl... method UnionWith (line 4975) | def UnionWith(self, _b: Vec3d | list[float] | tuple[float, float, floa... method __add__ (line 4979) | def __add__(self, arg2: Range3d | list[float] | tuple[float, float, fl... method __eq__ (line 4980) | def __eq__(self, other: object) -> bool: method __hash__ (line 4984) | def __hash__(self) -> int: ... method __iadd__ (line 4985) | def __iadd__(self, arg2: Range3d | list[float] | tuple[float, float, f... method __idiv__ (line 4986) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 4987) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 4988) | def __isub__(self, arg2: Range3d | list[float] | tuple[float, float, f... method __itruediv__ (line 4989) | def __itruediv__(self, arg2: float, /) -> Range3d: ... method __mul__ (line 4990) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4991) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 4992) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 4993) | def __sub__(self, arg2: Range3d | list[float] | tuple[float, float, fl... method __truediv__ (line 4994) | def __truediv__(self, arg2: float, /) -> Any: ... class Range3f (line 4996) | class Range3f(Boost.Python.instance): method __init__ (line 5012) | def __init__(self) -> None: method __init__ (line 5017) | def __init__(self, _min: Vec3f | list[float] | tuple[float, float, flo... method __init__ (line 5022) | def __init__(self, _other: Range3f | list[float] | tuple[float, float,... method __init__ (line 5027) | def __init__(self, arg2: Range3d | list[float] | tuple[float, float, f... method Contains (line 5029) | def Contains(self, _point: Vec3f | list[float] | tuple[float, float, f... method Contains (line 5038) | def Contains(self, _range: Range3f | list[float] | tuple[float, float,... method GetCorner (line 5046) | def GetCorner(self, _i: int, /) -> Vec3f: method GetDistanceSquared (line 5054) | def GetDistanceSquared(self, _p: Vec3f | list[float] | tuple[float, fl... method GetIntersection (line 5059) | def GetIntersection(_a: Range3f | list[float] | tuple[float, float, fl... method GetMax (line 5064) | def GetMax(self) -> Vec3f: method GetMidpoint (line 5068) | def GetMidpoint(self) -> Vec3f: method GetMin (line 5076) | def GetMin(self) -> Vec3f: method GetOctant (line 5080) | def GetOctant(self, _i: int, /) -> Range3f: method GetSize (line 5088) | def GetSize(self) -> Vec3f: method GetUnion (line 5093) | def GetUnion(_a: Range3f | list[float] | tuple[float, float, float], _... method IntersectWith (line 5097) | def IntersectWith(self, _b: Range3f | list[float] | tuple[float, float... method IsEmpty (line 5102) | def IsEmpty(self) -> bool: method SetEmpty (line 5106) | def SetEmpty(self) -> None: method SetMax (line 5110) | def SetMax(self, _max: Vec3f | list[float] | tuple[float, float, float... method SetMin (line 5114) | def SetMin(self, _min: Vec3f | list[float] | tuple[float, float, float... method UnionWith (line 5119) | def UnionWith(self, _b: Range3f | list[float] | tuple[float, float, fl... method UnionWith (line 5124) | def UnionWith(self, _b: Vec3f | list[float] | tuple[float, float, floa... method __add__ (line 5128) | def __add__(self, arg2: Range3f | list[float] | tuple[float, float, fl... method __eq__ (line 5129) | def __eq__(self, other: object) -> bool: method __hash__ (line 5133) | def __hash__(self) -> int: ... method __iadd__ (line 5134) | def __iadd__(self, arg2: Range3f | list[float] | tuple[float, float, f... method __idiv__ (line 5135) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 5136) | def __imul__(self, arg2: float, /) -> Any: ... method __isub__ (line 5137) | def __isub__(self, arg2: Range3f | list[float] | tuple[float, float, f... method __itruediv__ (line 5138) | def __itruediv__(self, arg2: float, /) -> Range3f: ... method __mul__ (line 5139) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 5140) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 5141) | def __rmul__(self, arg2: float, /) -> Any: ... method __sub__ (line 5142) | def __sub__(self, arg2: Range3f | list[float] | tuple[float, float, fl... method __truediv__ (line 5143) | def __truediv__(self, arg2: float, /) -> Any: ... class Ray (line 5145) | class Ray(Boost.Python.instance): method __init__ (line 5163) | def __init__(self) -> None: method __init__ (line 5168) | def __init__(self, _startPoint: Vec3d | list[float] | tuple[float, flo... method FindClosestPoint (line 5172) | def FindClosestPoint(self, _point: Vec3d | list[float] | tuple[float, ... method GetPoint (line 5180) | def GetPoint(self, _distance: float, /) -> Vec3d: method Intersect (line 5185) | def Intersect(self, *args, **kwargs): method SetEnds (line 5273) | def SetEnds(self, _startPoint: Vec3d | list[float] | tuple[float, floa... method SetPointAndDirection (line 5277) | def SetPointAndDirection(self, _startPoint: Vec3d | list[float] | tupl... method Transform (line 5281) | def Transform(self, _matrix: Matrix4d, /) -> Ray: method __eq__ (line 5285) | def __eq__(self, other: object) -> bool: method __ne__ (line 5293) | def __ne__(self, other: object) -> bool: ... class Rect2i (line 5295) | class Rect2i(Boost.Python.instance): method __init__ (line 5324) | def __init__(self) -> None: method __init__ (line 5329) | def __init__(self, _min: Vec2i | list[int] | Size2 | tuple[int, int], ... method __init__ (line 5334) | def __init__(self, _min: Vec2i | list[int] | Size2 | tuple[int, int], ... method __init__ (line 5340) | def __init__(self, arg2: Rect2i, /) -> None: ... method Contains (line 5341) | def Contains(self, _p: Vec2i | list[int] | Size2 | tuple[int, int], /)... method GetArea (line 5345) | def GetArea(self) -> int: method GetCenter (line 5349) | def GetCenter(self) -> Vec2i: method GetHeight (line 5353) | def GetHeight(self) -> int: method GetIntersection (line 5361) | def GetIntersection(self, _that: Rect2i, /) -> Rect2i: method GetMax (line 5365) | def GetMax(self) -> Vec2i: method GetMaxX (line 5369) | def GetMaxX(self) -> int: method GetMaxY (line 5373) | def GetMaxY(self) -> int: method GetMin (line 5377) | def GetMin(self) -> Vec2i: method GetMinX (line 5381) | def GetMinX(self) -> int: method GetMinY (line 5385) | def GetMinY(self) -> int: method GetNormalized (line 5389) | def GetNormalized(self) -> Rect2i: method GetSize (line 5399) | def GetSize(self) -> Vec2i: method GetUnion (line 5403) | def GetUnion(self, _that: Rect2i, /) -> Rect2i: method GetWidth (line 5407) | def GetWidth(self) -> int: method IsEmpty (line 5415) | def IsEmpty(self) -> bool: method IsNull (line 5425) | def IsNull(self) -> bool: method IsValid (line 5444) | def IsValid(self) -> bool: method SetMax (line 5448) | def SetMax(self, _max: Vec2i | list[int] | Size2 | tuple[int, int], /)... method SetMaxX (line 5452) | def SetMaxX(self, _x: int, /) -> None: method SetMaxY (line 5456) | def SetMaxY(self, _y: int, /) -> None: method SetMin (line 5460) | def SetMin(self, _min: Vec2i | list[int] | Size2 | tuple[int, int], /)... method SetMinX (line 5464) | def SetMinX(self, _x: int, /) -> None: method SetMinY (line 5468) | def SetMinY(self, _y: int, /) -> None: method Translate (line 5472) | def Translate(self, _displacement: Vec2i | list[int] | Size2 | tuple[i... method __add__ (line 5476) | def __add__(self, arg2: Rect2i, /) -> Any: ... method __eq__ (line 5477) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5478) | def __hash__(self) -> int: ... method __iadd__ (line 5479) | def __iadd__(self, arg2: Rect2i, /) -> Any: ... method __ne__ (line 5480) | def __ne__(self, other: object) -> bool: ... class Rotation (line 5482) | class Rotation(Boost.Python.instance): method __init__ (line 5497) | def __init__(self) -> None: method __init__ (line 5502) | def __init__(self, _axis: Vec3d | list[float] | tuple[float, float, fl... method __init__ (line 5508) | def __init__(self, _quaternion: Quaternion, /) -> None: method __init__ (line 5513) | def __init__(self, _quat: Quatd | Quatf | Quath, /) -> None: method __init__ (line 5522) | def __init__(self, _rotateFrom: Vec3d | list[float] | tuple[float, flo... method __init__ (line 5531) | def __init__(self, arg2: Rotation, /) -> None: ... method Decompose (line 5532) | def Decompose(self, _axis0: Vec3d | list[float] | tuple[float, float, ... method DecomposeRotation (line 5540) | def DecomposeRotation(rot: Matrix4d, twAxis: Vec3d | list[float] | tup... method DecomposeRotation3 (line 5542) | def DecomposeRotation3(rot: Matrix4d, twAxis: Vec3d | list[float] | tu... method GetAngle (line 5543) | def GetAngle(self) -> float: method GetAxis (line 5547) | def GetAxis(self) -> Vec3d: method GetInverse (line 5551) | def GetInverse(self) -> Rotation: method GetQuat (line 5555) | def GetQuat(self) -> Quatd: method GetQuaternion (line 5559) | def GetQuaternion(self) -> Quaternion: method MatchClosestEulerRotation (line 5564) | def MatchClosestEulerRotation(_targetTw: float, _targetFB: float, _tar... method RotateOntoProjected (line 5578) | def RotateOntoProjected(_v1: Vec3d | list[float] | tuple[float, float,... method SetAxisAngle (line 5579) | def SetAxisAngle(self, axis: Vec3d | list[float] | tuple[float, float,... method SetIdentity (line 5583) | def SetIdentity(self) -> Rotation: method SetQuat (line 5590) | def SetQuat(self, quat: Quatd | Quatf | Quath) -> Rotation: method SetQuaternion (line 5598) | def SetQuaternion(self, quaternion: Quaternion) -> Rotation: method SetRotateInto (line 5602) | def SetRotateInto(self, rotateFrom: Vec3d | list[float] | tuple[float,... method TransformDir (line 5611) | def TransformDir(self, _vec: Vec3f | list[float] | tuple[float, float,... method TransformDir (line 5616) | def TransformDir(self, _vec: Vec3d | list[float] | tuple[float, float,... method __eq__ (line 5621) | def __eq__(self, other: object) -> bool: method __hash__ (line 5630) | def __hash__(self) -> int: ... method __idiv__ (line 5631) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 5633) | def __imul__(self, arg2: Rotation, /) -> Any: ... method __imul__ (line 5635) | def __imul__(self, arg2: float, /) -> Any: ... method __mul__ (line 5637) | def __mul__(self, arg2: Rotation, /) -> Any: ... method __mul__ (line 5639) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 5640) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 5641) | def __rmul__(self, arg2: float, /) -> Any: ... method __truediv__ (line 5642) | def __truediv__(self, arg2: float, /) -> Any: ... class Size2 (line 5644) | class Size2(Boost.Python.instance): method __init__ (line 5660) | def __init__(self) -> None: method __init__ (line 5665) | def __init__(self, _o: Size2 | list[float] | tuple[float, float], /) -... method __init__ (line 5670) | def __init__(self, _o: Vec2i | list[int] | Size2 | tuple[int, int], /)... method __init__ (line 5675) | def __init__(self, _v0: int, _v1: int, /) -> None: method Set (line 5679) | def Set(self, _v0: int, _v1: int, /) -> Size2: method __add__ (line 5683) | def __add__(self, arg2: Size2 | list[float] | tuple[float, float], /) ... method __contains__ (line 5684) | def __contains__(self, arg2: int, /) -> bool: ... method __eq__ (line 5685) | def __eq__(self, other: object) -> bool: method __getitem__ (line 5689) | def __getitem__(self, _i: int, /) -> int: method __iadd__ (line 5693) | def __iadd__(self, arg2: Size2 | list[float] | tuple[float, float], /)... method __idiv__ (line 5694) | def __idiv__(self, arg2: int, /) -> Any: ... method __imul__ (line 5695) | def __imul__(self, arg2: int, /) -> Any: ... # type: ignore[misc] method __isub__ (line 5696) | def __isub__(self, arg2: Size2 | list[float] | tuple[float, float], /)... method __itruediv__ (line 5697) | def __itruediv__(self, arg2: int, /) -> Size2: ... method __len__ (line 5698) | def __len__(self) -> int: ... method __mul__ (line 5700) | def __mul__(self, arg2: Size2 | list[float] | tuple[float, float], /) ... method __mul__ (line 5702) | def __mul__(self, arg2: int, /) -> Any: ... method __ne__ (line 5703) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 5704) | def __rmul__(self, arg2: int, /) -> Any: ... method __setitem__ (line 5705) | def __setitem__(self, arg2: int, arg3: int, /) -> None: ... method __sub__ (line 5706) | def __sub__(self, arg2: Size2 | list[float] | tuple[float, float], /) ... method __truediv__ (line 5707) | def __truediv__(self, arg2: int, /) -> Any: ... class Size3 (line 5709) | class Size3(Boost.Python.instance): method __init__ (line 5725) | def __init__(self) -> None: method __init__ (line 5730) | def __init__(self, _o: Size3 | list[float] | tuple[float, float, float... method __init__ (line 5735) | def __init__(self, _o: Vec3i | list[int] | Size3 | tuple[int, int, int... method __init__ (line 5740) | def __init__(self, _v0: int, _v1: int, _v2: int, /) -> None: method Set (line 5744) | def Set(self, _v0: int, _v1: int, _v2: int, /) -> Size3: method __add__ (line 5748) | def __add__(self, arg2: Size3 | list[float] | tuple[float, float, floa... method __contains__ (line 5749) | def __contains__(self, arg2: int, /) -> bool: ... method __eq__ (line 5750) | def __eq__(self, other: object) -> bool: method __getitem__ (line 5754) | def __getitem__(self, _i: int, /) -> int: method __iadd__ (line 5758) | def __iadd__(self, arg2: Size3 | list[float] | tuple[float, float, flo... method __idiv__ (line 5759) | def __idiv__(self, arg2: int, /) -> Any: ... method __imul__ (line 5760) | def __imul__(self, arg2: int, /) -> Any: ... # type: ignore[misc] method __isub__ (line 5761) | def __isub__(self, arg2: Size3 | list[float] | tuple[float, float, flo... method __itruediv__ (line 5762) | def __itruediv__(self, arg2: int, /) -> Size3: ... method __len__ (line 5763) | def __len__(self) -> int: ... method __mul__ (line 5765) | def __mul__(self, arg2: Size3 | list[float] | tuple[float, float, floa... method __mul__ (line 5767) | def __mul__(self, arg2: int, /) -> Any: ... method __ne__ (line 5768) | def __ne__(self, other: object) -> bool: ... method __rmul__ (line 5769) | def __rmul__(self, arg2: int, /) -> Any: ... method __setitem__ (line 5770) | def __setitem__(self, arg2: int, arg3: int, /) -> None: ... method __sub__ (line 5771) | def __sub__(self, arg2: Size3 | list[float] | tuple[float, float, floa... method __truediv__ (line 5772) | def __truediv__(self, arg2: int, /) -> Any: ... class Transform (line 5774) | class Transform(Boost.Python.instance): method __init__ (line 5814) | def __init__(self, scale: Vec3d | list[float] | tuple[float, float, fl... method __init__ (line 5823) | def __init__(self, translation: Vec3d | list[float] | tuple[float, flo... method __init__ (line 5832) | def __init__(self, _m: Matrix4d, /) -> None: method GetMatrix (line 5839) | def GetMatrix(self) -> Matrix4d: method GetPivotOrientation (line 5843) | def GetPivotOrientation(self) -> Rotation: method GetPivotPosition (line 5847) | def GetPivotPosition(self) -> Vec3d: method GetRotation (line 5851) | def GetRotation(self) -> Rotation: method GetScale (line 5855) | def GetScale(self) -> Vec3d: method GetTranslation (line 5859) | def GetTranslation(self) -> Vec3d: method Set (line 5864) | def Set(self, scale: Vec3d | list[float] | tuple[float, float, float],... method Set (line 5872) | def Set(self, translation: Vec3d | list[float] | tuple[float, float, f... method SetIdentity (line 5879) | def SetIdentity(self) -> Transform: method SetMatrix (line 5883) | def SetMatrix(self, _m: Matrix4d, /) -> Transform: method SetPivotOrientation (line 5891) | def SetPivotOrientation(self, _pivotOrient: Rotation, /) -> None: method SetPivotPosition (line 5895) | def SetPivotPosition(self, _pivPos: Vec3d | list[float] | tuple[float,... method SetRotation (line 5899) | def SetRotation(self, _rotation: Rotation, /) -> None: method SetScale (line 5903) | def SetScale(self, _scale: Vec3d | list[float] | tuple[float, float, f... method SetTranslation (line 5907) | def SetTranslation(self, _translation: Vec3d | list[float] | tuple[flo... method __eq__ (line 5911) | def __eq__(self, other: object) -> bool: method __imul__ (line 5919) | def __imul__(self, arg2: Transform, /) -> Any: ... method __mul__ (line 5920) | def __mul__(self, arg2: Transform, /) -> Any: ... method __ne__ (line 5921) | def __ne__(self, other: object) -> bool: ... class Vec2d (line 5923) | class Vec2d(Boost.Python.instance): method __init__ (line 5935) | def __init__(self) -> None: method __init__ (line 5940) | def __init__(self, _value: float, /) -> None: method __init__ (line 5945) | def __init__(self, _s0: float, _s1: float, /) -> None: method __init__ (line 5950) | def __init__(self, _other: Vec2f | list[float] | tuple[float, float], ... method __init__ (line 5955) | def __init__(self, _other: Vec2h | list[float] | tuple[float, float], ... method __init__ (line 5960) | def __init__(self, _other: Vec2i | list[int] | Size2 | tuple[int, int]... method __init__ (line 5965) | def __init__(self, _other: Vec2d | list[float] | tuple[float, float], ... method Axis (line 5970) | def Axis(_i: int, /) -> Vec2d: method GetComplement (line 5977) | def GetComplement(self, _b: Vec2d | list[float] | tuple[float, float],... method GetDot (line 5987) | def GetDot(self, arg2: Vec2d | list[float] | tuple[float, float], /) -... method GetLength (line 5988) | def GetLength(self) -> float: method GetNormalized (line 5992) | def GetNormalized(self, _eps: float = ..., /) -> Vec2d: ... method GetProjection (line 5993) | def GetProjection(self, _v: Vec2d | list[float] | tuple[float, float],... method Normalize (line 6003) | def Normalize(self, _eps: float = ..., /) -> float: method XAxis (line 6014) | def XAxis() -> Vec2d: method YAxis (line 6019) | def YAxis() -> Vec2d: method __add__ (line 6023) | def __add__(self, arg2: Vec2d | list[float] | tuple[float, float], /) ... method __contains__ (line 6024) | def __contains__(self, arg2: float, /) -> bool: ... method __eq__ (line 6025) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6029) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6031) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6036) | def __getitem__(self, arg2: int, /) -> float: ... method __hash__ (line 6037) | def __hash__(self) -> int: ... method __iadd__ (line 6038) | def __iadd__(self, arg2: Vec2d | list[float] | tuple[float, float], /)... method __idiv__ (line 6039) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 6040) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6041) | def __isub__(self, arg2: Vec2d | list[float] | tuple[float, float], /)... method __itruediv__ (line 6042) | def __itruediv__(self, arg2: float, /) -> Vec2d: ... method __len__ (line 6043) | def __len__(self) -> int: ... method __mul__ (line 6045) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6047) | def __mul__(self, arg2: Vec2d | list[float] | tuple[float, float], /) ... method __ne__ (line 6048) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6049) | def __neg__(self) -> Any: ... method __rmul__ (line 6050) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6052) | def __setitem__(self, arg2: int, arg3: float, /) -> None: ... method __setitem__ (line 6054) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6055) | def __sub__(self, arg2: Vec2d | list[float] | tuple[float, float], /) ... method __truediv__ (line 6056) | def __truediv__(self, arg2: float, /) -> Any: ... class Vec2f (line 6058) | class Vec2f(Boost.Python.instance): method __init__ (line 6070) | def __init__(self) -> None: method __init__ (line 6075) | def __init__(self, _value: float, /) -> None: method __init__ (line 6080) | def __init__(self, _s0: float, _s1: float, /) -> None: method __init__ (line 6085) | def __init__(self, _other: Vec2d | list[float] | tuple[float, float], ... method __init__ (line 6090) | def __init__(self, _other: Vec2h | list[float] | tuple[float, float], ... method __init__ (line 6095) | def __init__(self, _other: Vec2i | list[int] | Size2 | tuple[int, int]... method __init__ (line 6100) | def __init__(self, _other: Vec2f | list[float] | tuple[float, float], ... method Axis (line 6105) | def Axis(_i: int, /) -> Vec2f: method GetComplement (line 6112) | def GetComplement(self, _b: Vec2f | list[float] | tuple[float, float],... method GetDot (line 6122) | def GetDot(self, arg2: Vec2f | list[float] | tuple[float, float], /) -... method GetLength (line 6123) | def GetLength(self) -> float: method GetNormalized (line 6127) | def GetNormalized(self, _eps: float = ..., /) -> Vec2f: ... method GetProjection (line 6128) | def GetProjection(self, _v: Vec2f | list[float] | tuple[float, float],... method Normalize (line 6138) | def Normalize(self, _eps: float = ..., /) -> float: method XAxis (line 6149) | def XAxis() -> Vec2f: method YAxis (line 6154) | def YAxis() -> Vec2f: method __add__ (line 6158) | def __add__(self, arg2: Vec2f | list[float] | tuple[float, float], /) ... method __contains__ (line 6159) | def __contains__(self, arg2: float, /) -> bool: ... method __eq__ (line 6160) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6164) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6166) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6171) | def __getitem__(self, arg2: int, /) -> float: ... method __hash__ (line 6172) | def __hash__(self) -> int: ... method __iadd__ (line 6173) | def __iadd__(self, arg2: Vec2f | list[float] | tuple[float, float], /)... method __idiv__ (line 6174) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 6175) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6176) | def __isub__(self, arg2: Vec2f | list[float] | tuple[float, float], /)... method __itruediv__ (line 6177) | def __itruediv__(self, arg2: float, /) -> Vec2f: ... method __len__ (line 6178) | def __len__(self) -> int: ... method __mul__ (line 6180) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6182) | def __mul__(self, arg2: Vec2f | list[float] | tuple[float, float], /) ... method __ne__ (line 6183) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6184) | def __neg__(self) -> Any: ... method __rmul__ (line 6185) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6187) | def __setitem__(self, arg2: int, arg3: float, /) -> None: ... method __setitem__ (line 6189) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6190) | def __sub__(self, arg2: Vec2f | list[float] | tuple[float, float], /) ... method __truediv__ (line 6191) | def __truediv__(self, arg2: float, /) -> Any: ... class Vec2h (line 6193) | class Vec2h(Boost.Python.instance): method __init__ (line 6205) | def __init__(self) -> None: method __init__ (line 6210) | def __init__(self, _value: float, /) -> None: method __init__ (line 6215) | def __init__(self, _s0: float, _s1: float, /) -> None: method __init__ (line 6220) | def __init__(self, _other: Vec2d | list[float] | tuple[float, float], ... method __init__ (line 6225) | def __init__(self, _other: Vec2f | list[float] | tuple[float, float], ... method __init__ (line 6230) | def __init__(self, _other: Vec2i | list[int] | Size2 | tuple[int, int]... method __init__ (line 6235) | def __init__(self, arg2: Vec2h | list[float] | tuple[float, float], /)... method Axis (line 6237) | def Axis(_i: int, /) -> Vec2h: method GetComplement (line 6244) | def GetComplement(self, _b: Vec2h | list[float] | tuple[float, float],... method GetDot (line 6254) | def GetDot(self, arg2: Vec2h | list[float] | tuple[float, float], /) -... method GetLength (line 6255) | def GetLength(self) -> float: method GetNormalized (line 6259) | def GetNormalized(self, _eps: float = ..., /) -> Vec2h: ... method GetProjection (line 6260) | def GetProjection(self, _v: Vec2h | list[float] | tuple[float, float],... method Normalize (line 6270) | def Normalize(self, _eps: float = ..., /) -> float: method XAxis (line 6281) | def XAxis() -> Vec2h: method YAxis (line 6286) | def YAxis() -> Vec2h: method __add__ (line 6290) | def __add__(self, arg2: Vec2h | list[float] | tuple[float, float], /) ... method __contains__ (line 6291) | def __contains__(self, arg2: object, /) -> bool: ... method __eq__ (line 6292) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6296) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6298) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6303) | def __getitem__(self, arg2: int, /) -> Any: ... method __hash__ (line 6304) | def __hash__(self) -> int: ... method __iadd__ (line 6305) | def __iadd__(self, arg2: Vec2h | list[float] | tuple[float, float], /)... method __idiv__ (line 6306) | def __idiv__(self, arg2: object, /) -> Any: ... method __imul__ (line 6307) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6308) | def __isub__(self, arg2: Vec2h | list[float] | tuple[float, float], /)... method __itruediv__ (line 6309) | def __itruediv__(self, arg2: object, /) -> Vec2h: ... method __len__ (line 6310) | def __len__(self) -> int: ... method __mul__ (line 6312) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6314) | def __mul__(self, arg2: Vec2h | list[float] | tuple[float, float], /) ... method __ne__ (line 6315) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6316) | def __neg__(self) -> Any: ... method __rmul__ (line 6317) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6319) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... method __setitem__ (line 6321) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6322) | def __sub__(self, arg2: Vec2h | list[float] | tuple[float, float], /) ... method __truediv__ (line 6323) | def __truediv__(self, arg2: object, /) -> Any: ... class Vec2i (line 6325) | class Vec2i(Boost.Python.instance): method __init__ (line 6337) | def __init__(self) -> None: method __init__ (line 6342) | def __init__(self, _value: Vec2i | list[int] | Size2 | tuple[int, int]... method __init__ (line 6347) | def __init__(self, _s0: int, _s1: int, /) -> None: method __init__ (line 6352) | def __init__(self, arg2: int, /) -> None: ... method Axis (line 6354) | def Axis(_i: int, /) -> Vec2i: method GetDot (line 6361) | def GetDot(self, arg2: Vec2i | list[int] | Size2 | tuple[int, int], /)... method XAxis (line 6363) | def XAxis() -> Vec2i: method YAxis (line 6368) | def YAxis() -> Vec2i: method __add__ (line 6372) | def __add__(self, arg2: Vec2i | list[int] | Size2 | tuple[int, int], /... method __contains__ (line 6373) | def __contains__(self, arg2: int, /) -> bool: ... method __eq__ (line 6374) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6378) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6380) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6385) | def __getitem__(self, arg2: int, /) -> int: ... method __hash__ (line 6386) | def __hash__(self) -> int: ... method __iadd__ (line 6387) | def __iadd__(self, arg2: Vec2i | list[int] | Size2 | tuple[int, int], ... method __idiv__ (line 6388) | def __idiv__(self, arg2: int, /) -> Any: ... method __imul__ (line 6389) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6390) | def __isub__(self, arg2: Vec2i | list[int] | Size2 | tuple[int, int], ... method __itruediv__ (line 6391) | def __itruediv__(self, arg2: int, /) -> Vec2i: ... method __len__ (line 6392) | def __len__(self) -> int: ... method __mul__ (line 6394) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6396) | def __mul__(self, arg2: Vec2i | list[int] | Size2 | tuple[int, int], /... method __ne__ (line 6397) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6398) | def __neg__(self) -> Any: ... method __rmul__ (line 6399) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6401) | def __setitem__(self, arg2: int, arg3: int, /) -> None: ... method __setitem__ (line 6403) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6404) | def __sub__(self, arg2: Vec2i | list[int] | Size2 | tuple[int, int], /... method __truediv__ (line 6405) | def __truediv__(self, arg2: int, /) -> Any: ... class Vec3d (line 6407) | class Vec3d(Boost.Python.instance): method __init__ (line 6419) | def __init__(self) -> None: method __init__ (line 6424) | def __init__(self, _value: float, /) -> None: method __init__ (line 6429) | def __init__(self, _s0: float, _s1: float, _s2: float, /) -> None: method __init__ (line 6434) | def __init__(self, _other: Vec3f | list[float] | tuple[float, float, f... method __init__ (line 6439) | def __init__(self, _other: Vec3h | list[float] | tuple[float, float, f... method __init__ (line 6444) | def __init__(self, _other: Vec3i | list[int] | Size3 | tuple[int, int,... method __init__ (line 6449) | def __init__(self, _other: Vec3d | list[float] | tuple[float, float, f... method Axis (line 6454) | def Axis(_i: int, /) -> Vec3d: method BuildOrthonormalFrame (line 6461) | def BuildOrthonormalFrame(self, _eps: float = ..., /) -> tuple: method GetComplement (line 6471) | def GetComplement(self, _b: Vec3d | list[float] | tuple[float, float, ... method GetCross (line 6481) | def GetCross(self, arg2: Vec3d | list[float] | tuple[float, float, flo... method GetDot (line 6482) | def GetDot(self, arg2: Vec3d | list[float] | tuple[float, float, float... method GetLength (line 6483) | def GetLength(self) -> float: method GetNormalized (line 6487) | def GetNormalized(self, _eps: float = ..., /) -> Vec3d: ... method GetProjection (line 6488) | def GetProjection(self, _v: Vec3d | list[float] | tuple[float, float, ... method Normalize (line 6498) | def Normalize(self, _eps: float = ..., /) -> float: method OrthogonalizeBasis (line 6509) | def OrthogonalizeBasis(_tx: Vec3d | list[float] | tuple[float, float, ... method XAxis (line 6524) | def XAxis() -> Vec3d: method YAxis (line 6529) | def YAxis() -> Vec3d: method ZAxis (line 6534) | def ZAxis() -> Vec3d: method __add__ (line 6538) | def __add__(self, arg2: Vec3d | list[float] | tuple[float, float, floa... method __contains__ (line 6539) | def __contains__(self, arg2: float, /) -> bool: ... method __eq__ (line 6540) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6544) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6546) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6551) | def __getitem__(self, arg2: int, /) -> float: ... method __hash__ (line 6552) | def __hash__(self) -> int: ... method __iadd__ (line 6553) | def __iadd__(self, arg2: Vec3d | list[float] | tuple[float, float, flo... method __idiv__ (line 6554) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 6555) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6556) | def __isub__(self, arg2: Vec3d | list[float] | tuple[float, float, flo... method __itruediv__ (line 6557) | def __itruediv__(self, arg2: float, /) -> Vec3d: ... method __len__ (line 6558) | def __len__(self) -> int: ... method __mul__ (line 6560) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6562) | def __mul__(self, arg2: Vec3d | list[float] | tuple[float, float, floa... method __ne__ (line 6563) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6564) | def __neg__(self) -> Any: ... method __rmul__ (line 6565) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6567) | def __setitem__(self, arg2: int, arg3: float, /) -> None: ... method __setitem__ (line 6569) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6570) | def __sub__(self, arg2: Vec3d | list[float] | tuple[float, float, floa... method __truediv__ (line 6571) | def __truediv__(self, arg2: float, /) -> Any: ... method __xor__ (line 6572) | def __xor__(self, arg2: Vec3d | list[float] | tuple[float, float, floa... class Vec3f (line 6574) | class Vec3f(Boost.Python.instance): method __init__ (line 6586) | def __init__(self) -> None: method __init__ (line 6591) | def __init__(self, _value: float, /) -> None: method __init__ (line 6596) | def __init__(self, _s0: float, _s1: float, _s2: float, /) -> None: method __init__ (line 6601) | def __init__(self, _other: Vec3d | list[float] | tuple[float, float, f... method __init__ (line 6606) | def __init__(self, _other: Vec3h | list[float] | tuple[float, float, f... method __init__ (line 6611) | def __init__(self, _other: Vec3i | list[int] | Size3 | tuple[int, int,... method __init__ (line 6616) | def __init__(self, _other: Vec3f | list[float] | tuple[float, float, f... method Axis (line 6621) | def Axis(_i: int, /) -> Vec3f: method BuildOrthonormalFrame (line 6628) | def BuildOrthonormalFrame(self, _eps: float = ..., /) -> tuple: method GetComplement (line 6638) | def GetComplement(self, _b: Vec3f | list[float] | tuple[float, float, ... method GetCross (line 6648) | def GetCross(self, arg2: Vec3f | list[float] | tuple[float, float, flo... method GetDot (line 6649) | def GetDot(self, arg2: Vec3f | list[float] | tuple[float, float, float... method GetLength (line 6650) | def GetLength(self) -> float: method GetNormalized (line 6654) | def GetNormalized(self, _eps: float = ..., /) -> Vec3f: ... method GetProjection (line 6655) | def GetProjection(self, _v: Vec3f | list[float] | tuple[float, float, ... method Normalize (line 6665) | def Normalize(self, _eps: float = ..., /) -> float: method OrthogonalizeBasis (line 6676) | def OrthogonalizeBasis(_tx: Vec3f | list[float] | tuple[float, float, ... method XAxis (line 6691) | def XAxis() -> Vec3f: method YAxis (line 6696) | def YAxis() -> Vec3f: method ZAxis (line 6701) | def ZAxis() -> Vec3f: method __add__ (line 6705) | def __add__(self, arg2: Vec3f | list[float] | tuple[float, float, floa... method __contains__ (line 6706) | def __contains__(self, arg2: float, /) -> bool: ... method __eq__ (line 6707) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6711) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6713) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6718) | def __getitem__(self, arg2: int, /) -> float: ... method __hash__ (line 6719) | def __hash__(self) -> int: ... method __iadd__ (line 6720) | def __iadd__(self, arg2: Vec3f | list[float] | tuple[float, float, flo... method __idiv__ (line 6721) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 6722) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6723) | def __isub__(self, arg2: Vec3f | list[float] | tuple[float, float, flo... method __itruediv__ (line 6724) | def __itruediv__(self, arg2: float, /) -> Vec3f: ... method __len__ (line 6725) | def __len__(self) -> int: ... method __mul__ (line 6727) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6729) | def __mul__(self, arg2: Vec3f | list[float] | tuple[float, float, floa... method __ne__ (line 6730) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6731) | def __neg__(self) -> Any: ... method __rmul__ (line 6732) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6734) | def __setitem__(self, arg2: int, arg3: float, /) -> None: ... method __setitem__ (line 6736) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6737) | def __sub__(self, arg2: Vec3f | list[float] | tuple[float, float, floa... method __truediv__ (line 6738) | def __truediv__(self, arg2: float, /) -> Any: ... method __xor__ (line 6739) | def __xor__(self, arg2: Vec3f | list[float] | tuple[float, float, floa... class Vec3h (line 6741) | class Vec3h(Boost.Python.instance): method __init__ (line 6753) | def __init__(self) -> None: method __init__ (line 6758) | def __init__(self, _value: float, /) -> None: method __init__ (line 6763) | def __init__(self, _s0: float, _s1: float, _s2: float, /) -> None: method __init__ (line 6768) | def __init__(self, _other: Vec3d | list[float] | tuple[float, float, f... method __init__ (line 6773) | def __init__(self, _other: Vec3f | list[float] | tuple[float, float, f... method __init__ (line 6778) | def __init__(self, _other: Vec3i | list[int] | Size3 | tuple[int, int,... method __init__ (line 6783) | def __init__(self, arg2: Vec3h | list[float] | tuple[float, float, flo... method Axis (line 6785) | def Axis(_i: int, /) -> Vec3h: method BuildOrthonormalFrame (line 6792) | def BuildOrthonormalFrame(self, _eps: float = ..., /) -> tuple: method GetComplement (line 6802) | def GetComplement(self, _b: Vec3h | list[float] | tuple[float, float, ... method GetCross (line 6812) | def GetCross(self, arg2: Vec3h | list[float] | tuple[float, float, flo... method GetDot (line 6813) | def GetDot(self, arg2: Vec3h | list[float] | tuple[float, float, float... method GetLength (line 6814) | def GetLength(self) -> float: method GetNormalized (line 6818) | def GetNormalized(self, _eps: float = ..., /) -> Vec3h: ... method GetProjection (line 6819) | def GetProjection(self, _v: Vec3h | list[float] | tuple[float, float, ... method Normalize (line 6829) | def Normalize(self, _eps: float = ..., /) -> float: method OrthogonalizeBasis (line 6840) | def OrthogonalizeBasis(_tx: Vec3h | list[float] | tuple[float, float, ... method XAxis (line 6855) | def XAxis() -> Vec3h: method YAxis (line 6860) | def YAxis() -> Vec3h: method ZAxis (line 6865) | def ZAxis() -> Vec3h: method __add__ (line 6869) | def __add__(self, arg2: Vec3h | list[float] | tuple[float, float, floa... method __contains__ (line 6870) | def __contains__(self, arg2: object, /) -> bool: ... method __eq__ (line 6871) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6875) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6877) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6882) | def __getitem__(self, arg2: int, /) -> Any: ... method __hash__ (line 6883) | def __hash__(self) -> int: ... method __iadd__ (line 6884) | def __iadd__(self, arg2: Vec3h | list[float] | tuple[float, float, flo... method __idiv__ (line 6885) | def __idiv__(self, arg2: object, /) -> Any: ... method __imul__ (line 6886) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6887) | def __isub__(self, arg2: Vec3h | list[float] | tuple[float, float, flo... method __itruediv__ (line 6888) | def __itruediv__(self, arg2: object, /) -> Vec3h: ... method __len__ (line 6889) | def __len__(self) -> int: ... method __mul__ (line 6891) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6893) | def __mul__(self, arg2: Vec3h | list[float] | tuple[float, float, floa... method __ne__ (line 6894) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6895) | def __neg__(self) -> Any: ... method __rmul__ (line 6896) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6898) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... method __setitem__ (line 6900) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6901) | def __sub__(self, arg2: Vec3h | list[float] | tuple[float, float, floa... method __truediv__ (line 6902) | def __truediv__(self, arg2: object, /) -> Any: ... method __xor__ (line 6903) | def __xor__(self, arg2: Vec3h | list[float] | tuple[float, float, floa... class Vec3i (line 6905) | class Vec3i(Boost.Python.instance): method __init__ (line 6917) | def __init__(self) -> None: method __init__ (line 6922) | def __init__(self, _value: Vec3i | list[int] | Size3 | tuple[int, int,... method __init__ (line 6927) | def __init__(self, _s0: int, _s1: int, _s2: int, /) -> None: method __init__ (line 6932) | def __init__(self, arg2: int, /) -> None: ... method Axis (line 6934) | def Axis(_i: int, /) -> Vec3i: method GetDot (line 6941) | def GetDot(self, arg2: Vec3i | list[int] | Size3 | tuple[int, int, int... method XAxis (line 6943) | def XAxis() -> Vec3i: method YAxis (line 6948) | def YAxis() -> Vec3i: method ZAxis (line 6953) | def ZAxis() -> Vec3i: method __add__ (line 6957) | def __add__(self, arg2: Vec3i | list[int] | Size3 | tuple[int, int, in... method __contains__ (line 6958) | def __contains__(self, arg2: int, /) -> bool: ... method __eq__ (line 6959) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 6963) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 6965) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 6970) | def __getitem__(self, arg2: int, /) -> int: ... method __hash__ (line 6971) | def __hash__(self) -> int: ... method __iadd__ (line 6972) | def __iadd__(self, arg2: Vec3i | list[int] | Size3 | tuple[int, int, i... method __idiv__ (line 6973) | def __idiv__(self, arg2: int, /) -> Any: ... method __imul__ (line 6974) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 6975) | def __isub__(self, arg2: Vec3i | list[int] | Size3 | tuple[int, int, i... method __itruediv__ (line 6976) | def __itruediv__(self, arg2: int, /) -> Vec3i: ... method __len__ (line 6977) | def __len__(self) -> int: ... method __mul__ (line 6979) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 6981) | def __mul__(self, arg2: Vec3i | list[int] | Size3 | tuple[int, int, in... method __ne__ (line 6982) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 6983) | def __neg__(self) -> Any: ... method __rmul__ (line 6984) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 6986) | def __setitem__(self, arg2: int, arg3: int, /) -> None: ... method __setitem__ (line 6988) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 6989) | def __sub__(self, arg2: Vec3i | list[int] | Size3 | tuple[int, int, in... method __truediv__ (line 6990) | def __truediv__(self, arg2: int, /) -> Any: ... class Vec4d (line 6992) | class Vec4d(Boost.Python.instance): method __init__ (line 7004) | def __init__(self) -> None: method __init__ (line 7009) | def __init__(self, _value: float, /) -> None: method __init__ (line 7014) | def __init__(self, _s0: float, _s1: float, _s2: float, _s3: float, /) ... method __init__ (line 7019) | def __init__(self, _other: Vec4f | list[float] | tuple[float, float, f... method __init__ (line 7024) | def __init__(self, _other: Vec4h | list[float] | tuple[float, float, f... method __init__ (line 7029) | def __init__(self, _other: Vec4i | list[int] | tuple[int, int, int, in... method __init__ (line 7034) | def __init__(self, _other: Vec4d | list[float] | tuple[float, float, f... method Axis (line 7039) | def Axis(_i: int, /) -> Vec4d: method GetComplement (line 7046) | def GetComplement(self, _b: Vec4d | list[float] | tuple[float, float, ... method GetDot (line 7056) | def GetDot(self, arg2: Vec4d | list[float] | tuple[float, float, float... method GetLength (line 7057) | def GetLength(self) -> float: method GetNormalized (line 7061) | def GetNormalized(self, _eps: float = ..., /) -> Vec4d: ... method GetProjection (line 7062) | def GetProjection(self, _v: Vec4d | list[float] | tuple[float, float, ... method Normalize (line 7072) | def Normalize(self, _eps: float = ..., /) -> float: method WAxis (line 7083) | def WAxis() -> Vec4d: method XAxis (line 7088) | def XAxis() -> Vec4d: method YAxis (line 7093) | def YAxis() -> Vec4d: method ZAxis (line 7098) | def ZAxis() -> Vec4d: method __add__ (line 7102) | def __add__(self, arg2: Vec4d | list[float] | tuple[float, float, floa... method __contains__ (line 7103) | def __contains__(self, arg2: float, /) -> bool: ... method __eq__ (line 7104) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 7108) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 7110) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 7115) | def __getitem__(self, arg2: int, /) -> float: ... method __hash__ (line 7116) | def __hash__(self) -> int: ... method __iadd__ (line 7117) | def __iadd__(self, arg2: Vec4d | list[float] | tuple[float, float, flo... method __idiv__ (line 7118) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 7119) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 7120) | def __isub__(self, arg2: Vec4d | list[float] | tuple[float, float, flo... method __itruediv__ (line 7121) | def __itruediv__(self, arg2: float, /) -> Vec4d: ... method __len__ (line 7122) | def __len__(self) -> int: ... method __mul__ (line 7124) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 7126) | def __mul__(self, arg2: Vec4d | list[float] | tuple[float, float, floa... method __ne__ (line 7127) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 7128) | def __neg__(self) -> Any: ... method __rmul__ (line 7129) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 7131) | def __setitem__(self, arg2: int, arg3: float, /) -> None: ... method __setitem__ (line 7133) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 7134) | def __sub__(self, arg2: Vec4d | list[float] | tuple[float, float, floa... method __truediv__ (line 7135) | def __truediv__(self, arg2: float, /) -> Any: ... class Vec4f (line 7137) | class Vec4f(Boost.Python.instance): method __init__ (line 7149) | def __init__(self) -> None: method __init__ (line 7154) | def __init__(self, _value: float, /) -> None: method __init__ (line 7159) | def __init__(self, _s0: float, _s1: float, _s2: float, _s3: float, /) ... method __init__ (line 7164) | def __init__(self, _other: Vec4d | list[float] | tuple[float, float, f... method __init__ (line 7169) | def __init__(self, _other: Vec4h | list[float] | tuple[float, float, f... method __init__ (line 7174) | def __init__(self, _other: Vec4i | list[int] | tuple[int, int, int, in... method __init__ (line 7179) | def __init__(self, _other: Vec4f | list[float] | tuple[float, float, f... method Axis (line 7184) | def Axis(_i: int, /) -> Vec4f: method GetComplement (line 7191) | def GetComplement(self, _b: Vec4f | list[float] | tuple[float, float, ... method GetDot (line 7201) | def GetDot(self, arg2: Vec4f | list[float] | tuple[float, float, float... method GetLength (line 7202) | def GetLength(self) -> float: method GetNormalized (line 7206) | def GetNormalized(self, _eps: float = ..., /) -> Vec4f: ... method GetProjection (line 7207) | def GetProjection(self, _v: Vec4f | list[float] | tuple[float, float, ... method Normalize (line 7217) | def Normalize(self, _eps: float = ..., /) -> float: method WAxis (line 7228) | def WAxis() -> Vec4f: method XAxis (line 7233) | def XAxis() -> Vec4f: method YAxis (line 7238) | def YAxis() -> Vec4f: method ZAxis (line 7243) | def ZAxis() -> Vec4f: method __add__ (line 7247) | def __add__(self, arg2: Vec4f | list[float] | tuple[float, float, floa... method __contains__ (line 7248) | def __contains__(self, arg2: float, /) -> bool: ... method __eq__ (line 7249) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 7253) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 7255) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 7260) | def __getitem__(self, arg2: int, /) -> float: ... method __hash__ (line 7261) | def __hash__(self) -> int: ... method __iadd__ (line 7262) | def __iadd__(self, arg2: Vec4f | list[float] | tuple[float, float, flo... method __idiv__ (line 7263) | def __idiv__(self, arg2: float, /) -> Any: ... method __imul__ (line 7264) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 7265) | def __isub__(self, arg2: Vec4f | list[float] | tuple[float, float, flo... method __itruediv__ (line 7266) | def __itruediv__(self, arg2: float, /) -> Vec4f: ... method __len__ (line 7267) | def __len__(self) -> int: ... method __mul__ (line 7269) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 7271) | def __mul__(self, arg2: Vec4f | list[float] | tuple[float, float, floa... method __ne__ (line 7272) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 7273) | def __neg__(self) -> Any: ... method __rmul__ (line 7274) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 7276) | def __setitem__(self, arg2: int, arg3: float, /) -> None: ... method __setitem__ (line 7278) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 7279) | def __sub__(self, arg2: Vec4f | list[float] | tuple[float, float, floa... method __truediv__ (line 7280) | def __truediv__(self, arg2: float, /) -> Any: ... class Vec4h (line 7282) | class Vec4h(Boost.Python.instance): method __init__ (line 7294) | def __init__(self) -> None: method __init__ (line 7299) | def __init__(self, _value: float, /) -> None: method __init__ (line 7304) | def __init__(self, _s0: float, _s1: float, _s2: float, _s3: float, /) ... method __init__ (line 7309) | def __init__(self, _other: Vec4d | list[float] | tuple[float, float, f... method __init__ (line 7314) | def __init__(self, _other: Vec4f | list[float] | tuple[float, float, f... method __init__ (line 7319) | def __init__(self, _other: Vec4i | list[int] | tuple[int, int, int, in... method __init__ (line 7324) | def __init__(self, arg2: Vec4h | list[float] | tuple[float, float, flo... method Axis (line 7326) | def Axis(_i: int, /) -> Vec4h: method GetComplement (line 7333) | def GetComplement(self, _b: Vec4h | list[float] | tuple[float, float, ... method GetDot (line 7343) | def GetDot(self, arg2: Vec4h | list[float] | tuple[float, float, float... method GetLength (line 7344) | def GetLength(self) -> float: method GetNormalized (line 7348) | def GetNormalized(self, _eps: float = ..., /) -> Vec4h: ... method GetProjection (line 7349) | def GetProjection(self, _v: Vec4h | list[float] | tuple[float, float, ... method Normalize (line 7359) | def Normalize(self, _eps: float = ..., /) -> float: method WAxis (line 7370) | def WAxis() -> Vec4h: method XAxis (line 7375) | def XAxis() -> Vec4h: method YAxis (line 7380) | def YAxis() -> Vec4h: method ZAxis (line 7385) | def ZAxis() -> Vec4h: method __add__ (line 7389) | def __add__(self, arg2: Vec4h | list[float] | tuple[float, float, floa... method __contains__ (line 7390) | def __contains__(self, arg2: object, /) -> bool: ... method __eq__ (line 7391) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 7395) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 7397) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 7402) | def __getitem__(self, arg2: int, /) -> Any: ... method __hash__ (line 7403) | def __hash__(self) -> int: ... method __iadd__ (line 7404) | def __iadd__(self, arg2: Vec4h | list[float] | tuple[float, float, flo... method __idiv__ (line 7405) | def __idiv__(self, arg2: object, /) -> Any: ... method __imul__ (line 7406) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 7407) | def __isub__(self, arg2: Vec4h | list[float] | tuple[float, float, flo... method __itruediv__ (line 7408) | def __itruediv__(self, arg2: object, /) -> Vec4h: ... method __len__ (line 7409) | def __len__(self) -> int: ... method __mul__ (line 7411) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 7413) | def __mul__(self, arg2: Vec4h | list[float] | tuple[float, float, floa... method __ne__ (line 7414) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 7415) | def __neg__(self) -> Any: ... method __rmul__ (line 7416) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 7418) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... method __setitem__ (line 7420) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 7421) | def __sub__(self, arg2: Vec4h | list[float] | tuple[float, float, floa... method __truediv__ (line 7422) | def __truediv__(self, arg2: object, /) -> Any: ... class Vec4i (line 7424) | class Vec4i(Boost.Python.instance): method __init__ (line 7436) | def __init__(self) -> None: method __init__ (line 7441) | def __init__(self, _value: Vec4i | list[int] | tuple[int, int, int, in... method __init__ (line 7446) | def __init__(self, _s0: int, _s1: int, _s2: int, _s3: int, /) -> None: method __init__ (line 7451) | def __init__(self, arg2: int, /) -> None: ... method Axis (line 7453) | def Axis(_i: int, /) -> Vec4i: method GetDot (line 7460) | def GetDot(self, arg2: Vec4i | list[int] | tuple[int, int, int, int], ... method WAxis (line 7462) | def WAxis() -> Vec4i: method XAxis (line 7467) | def XAxis() -> Vec4i: method YAxis (line 7472) | def YAxis() -> Vec4i: method ZAxis (line 7477) | def ZAxis() -> Vec4i: method __add__ (line 7481) | def __add__(self, arg2: Vec4i | list[int] | tuple[int, int, int, int],... method __contains__ (line 7482) | def __contains__(self, arg2: int, /) -> bool: ... method __eq__ (line 7483) | def __eq__(self, other: object) -> bool: method __getinitargs__ (line 7487) | def __getinitargs__(self) -> tuple: ... method __getitem__ (line 7489) | def __getitem__(self, _i: slice, /) -> list: method __getitem__ (line 7494) | def __getitem__(self, arg2: int, /) -> int: ... method __hash__ (line 7495) | def __hash__(self) -> int: ... method __iadd__ (line 7496) | def __iadd__(self, arg2: Vec4i | list[int] | tuple[int, int, int, int]... method __idiv__ (line 7497) | def __idiv__(self, arg2: int, /) -> Any: ... method __imul__ (line 7498) | def __imul__(self, arg2: float, /) -> Any: ... # type: ignore[misc] method __isub__ (line 7499) | def __isub__(self, arg2: Vec4i | list[int] | tuple[int, int, int, int]... method __itruediv__ (line 7500) | def __itruediv__(self, arg2: int, /) -> Vec4i: ... method __len__ (line 7501) | def __len__(self) -> int: ... method __mul__ (line 7503) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 7505) | def __mul__(self, arg2: Vec4i | list[int] | tuple[int, int, int, int],... method __ne__ (line 7506) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 7507) | def __neg__(self) -> Any: ... method __rmul__ (line 7508) | def __rmul__(self, arg2: float, /) -> Any: ... method __setitem__ (line 7510) | def __setitem__(self, arg2: int, arg3: int, /) -> None: ... method __setitem__ (line 7512) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __sub__ (line 7513) | def __sub__(self, arg2: Vec4i | list[int] | tuple[int, int, int, int],... method __truediv__ (line 7514) | def __truediv__(self, arg2: int, /) -> Any: ... function Abs (line 7516) | def Abs(_f: float, /) -> float: function Absf (line 7520) | def Absf(arg1: float, /) -> float: function ApplyGamma (line 7527) | def ApplyGamma(_v: Vec3f | list[float] | tuple[float, float, float], _ga... function ApplyGamma (line 7533) | def ApplyGamma(_v: Vec3d | list[float] | tuple[float, float, float], _ga... function ApplyGamma (line 7539) | def ApplyGamma(_v: Vec3h | list[float] | tuple[float, float, float], _ga... function ApplyGamma (line 7541) | def ApplyGamma(_v: Vec4f | list[float] | tuple[float, float, float, floa... function ApplyGamma (line 7547) | def ApplyGamma(_v: Vec4d | list[float] | tuple[float, float, float, floa... function ApplyGamma (line 7553) | def ApplyGamma(_v: Vec4h | list[float] | tuple[float, float, float, floa... function Ceil (line 7554) | def Ceil(_f: float, /) -> float: function Ceilf (line 7558) | def Ceilf(arg1: float, /) -> float: function Clamp (line 7564) | def Clamp(_value: float, _min: float, _max: float, /) -> float: function Clampf (line 7572) | def Clampf(arg1: float, arg2: float, arg3: float, /) -> float: function CompDiv (line 7579) | def CompDiv(_left: Vec4d | list[float] | tuple[float, float, float, floa... function CompDiv (line 7587) | def CompDiv(arg1: float, arg2: float, /) -> float: ... function CompDiv (line 7589) | def CompDiv(arg1: Vec2h | list[float] | tuple[float, float], arg2: Vec2h... function CompDiv (line 7591) | def CompDiv(arg1: Vec2f | list[float] | tuple[float, float], arg2: Vec2f... function CompDiv (line 7593) | def CompDiv(arg1: Vec2d | list[float] | tuple[float, float], arg2: Vec2d... function CompDiv (line 7595) | def CompDiv(arg1: Vec3h | list[float] | tuple[float, float, float], arg2... function CompDiv (line 7597) | def CompDiv(arg1: Vec3f | list[float] | tuple[float, float, float], arg2... function CompDiv (line 7599) | def CompDiv(arg1: Vec3d | list[float] | tuple[float, float, float], arg2... function CompDiv (line 7601) | def CompDiv(arg1: Vec4h | list[float] | tuple[float, float, float, float... function CompDiv (line 7603) | def CompDiv(arg1: Vec4f | list[float] | tuple[float, float, float, float... function CompMult (line 7605) | def CompMult(_left: Vec4d | list[float] | tuple[float, float, float, flo... function CompMult (line 7613) | def CompMult(arg1: float, arg2: float, /) -> float: ... function CompMult (line 7615) | def CompMult(arg1: Vec2h | list[float] | tuple[float, float], arg2: Vec2... function CompMult (line 7617) | def CompMult(arg1: Vec2f | list[float] | tuple[float, float], arg2: Vec2... function CompMult (line 7619) | def CompMult(arg1: Vec2d | list[float] | tuple[float, float], arg2: Vec2... function CompMult (line 7621) | def CompMult(arg1: Vec3h | list[float] | tuple[float, float, float], arg... function CompMult (line 7623) | def CompMult(arg1: Vec3f | list[float] | tuple[float, float, float], arg... function CompMult (line 7625) | def CompMult(arg1: Vec3d | list[float] | tuple[float, float, float], arg... function CompMult (line 7627) | def CompMult(arg1: Vec4h | list[float] | tuple[float, float, float, floa... function CompMult (line 7629) | def CompMult(arg1: Vec4f | list[float] | tuple[float, float, float, floa... function ConvertDisplayToLinear (line 7631) | def ConvertDisplayToLinear(_v: Vec3f | list[float] | tuple[float, float,... function ConvertDisplayToLinear (line 7637) | def ConvertDisplayToLinear(_v: Vec3d | list[float] | tuple[float, float,... function ConvertDisplayToLinear (line 7639) | def ConvertDisplayToLinear(_v: Vec3h | list[float] | tuple[float, float,... function ConvertDisplayToLinear (line 7641) | def ConvertDisplayToLinear(_v: Vec4f | list[float] | tuple[float, float,... function ConvertDisplayToLinear (line 7643) | def ConvertDisplayToLinear(_v: Vec4d | list[float] | tuple[float, float,... function ConvertDisplayToLinear (line 7645) | def ConvertDisplayToLinear(_v: Vec4h | list[float] | tuple[float, float,... function ConvertLinearToDisplay (line 7647) | def ConvertLinearToDisplay(_v: Vec3f | list[float] | tuple[float, float,... function ConvertLinearToDisplay (line 7653) | def ConvertLinearToDisplay(_v: Vec3d | list[float] | tuple[float, float,... function ConvertLinearToDisplay (line 7655) | def ConvertLinearToDisplay(_v: Vec3h | list[float] | tuple[float, float,... function ConvertLinearToDisplay (line 7657) | def ConvertLinearToDisplay(_v: Vec4f | list[float] | tuple[float, float,... function ConvertLinearToDisplay (line 7659) | def ConvertLinearToDisplay(_v: Vec4d | list[float] | tuple[float, float,... function ConvertLinearToDisplay (line 7661) | def ConvertLinearToDisplay(_v: Vec4h | list[float] | tuple[float, float,... function Cross (line 7663) | def Cross(_v1: Vec3d | list[float] | tuple[float, float, float], _v2: Ve... function Cross (line 7668) | def Cross(arg1: Vec3h | list[float] | tuple[float, float, float], arg2: ... function Cross (line 7670) | def Cross(arg1: Vec3f | list[float] | tuple[float, float, float], arg2: ... function DegreesToRadians (line 7671) | def DegreesToRadians(_degrees: float, /) -> float: function Dot (line 7676) | def Dot(_left: Vec4i | list[int] | tuple[int, int, int, int], _right: Ve... function Dot (line 7684) | def Dot(arg1: DualQuatd | DualQuatf | DualQuath, arg2: DualQuatd | DualQ... function Dot (line 7686) | def Dot(arg1: DualQuatf | DualQuath, arg2: DualQuatf | DualQuath, /) -> ... function Dot (line 7688) | def Dot(arg1: DualQuath, arg2: DualQuath, /) -> Any: ... # type: ignore... function Dot (line 7690) | def Dot(arg1: float, arg2: float, /) -> float: ... function Dot (line 7692) | def Dot(arg1: Quatd | Quatf | Quath, arg2: Quatd | Quatf | Quath, /) -> ... function Dot (line 7694) | def Dot(arg1: Quatf | Quath, arg2: Quatf | Quath, /) -> float: ... # ty... function Dot (line 7696) | def Dot(arg1: Quath, arg2: Quath, /) -> Any: ... # type: ignore[overloa... function Dot (line 7698) | def Dot(arg1: Quaternion, arg2: Quaternion, /) -> float: ... function Dot (line 7700) | def Dot(arg1: Vec2h | list[float] | tuple[float, float], arg2: Vec2h | l... function Dot (line 7702) | def Dot(arg1: Vec2f | list[float] | tuple[float, float], arg2: Vec2f | l... function Dot (line 7704) | def Dot(arg1: Vec2d | list[float] | tuple[float, float], arg2: Vec2d | l... function Dot (line 7706) | def Dot(arg1: Vec2i | list[int] | Size2 | tuple[int, int], arg2: Vec2i |... function Dot (line 7708) | def Dot(arg1: Vec3h | list[float] | tuple[float, float, float], arg2: Ve... function Dot (line 7710) | def Dot(arg1: Vec3f | list[float] | tuple[float, float, float], arg2: Ve... function Dot (line 7712) | def Dot(arg1: Vec3d | list[float] | tuple[float, float, float], arg2: Ve... function Dot (line 7714) | def Dot(arg1: Vec3i | list[int] | Size3 | tuple[int, int, int], arg2: Ve... function Dot (line 7716) | def Dot(arg1: Vec4h | list[float] | tuple[float, float, float, float], a... function Dot (line 7718) | def Dot(arg1: Vec4f | list[float] | tuple[float, float, float, float], a... function Dot (line 7720) | def Dot(arg1: Vec4d | list[float] | tuple[float, float, float, float], a... function Exp (line 7721) | def Exp(_f: float, /) -> float: function Expf (line 7725) | def Expf(arg1: float, /) -> float: function FindClosestPoints (line 7732) | def FindClosestPoints(_ray: Ray, _line: Line, /) -> tuple: function FindClosestPoints (line 7746) | def FindClosestPoints(_ray: Ray, _seg: LineSeg, /) -> tuple: function FindClosestPoints (line 7760) | def FindClosestPoints(arg1: Line, arg2: Line, /) -> tuple: function FindClosestPoints (line 7811) | def FindClosestPoints(arg1: Line, arg2: LineSeg, /) -> tuple: function FindClosestPoints (line 7862) | def FindClosestPoints(arg1: LineSeg, arg2: LineSeg, /) -> tuple: function FitPlaneToPoints (line 7912) | def FitPlaneToPoints(_points: typing.Iterable[Vec3d | list[float] | tupl... function Floor (line 7935) | def Floor(_f: float, /) -> float: function Floorf (line 7939) | def Floorf(arg1: float, /) -> float: function GetComplement (line 7946) | def GetComplement(_a: Vec4d | list[float] | tuple[float, float, float, f... function GetComplement (line 7957) | def GetComplement(arg1: Vec2h | list[float] | tuple[float, float], arg2:... function GetComplement (line 7959) | def GetComplement(arg1: Vec2f | list[float] | tuple[float, float], arg2:... function GetComplement (line 7961) | def GetComplement(arg1: Vec2d | list[float] | tuple[float, float], arg2:... function GetComplement (line 7963) | def GetComplement(arg1: Vec3h | list[float] | tuple[float, float, float]... function GetComplement (line 7965) | def GetComplement(arg1: Vec3f | list[float] | tuple[float, float, float]... function GetComplement (line 7967) | def GetComplement(arg1: Vec3d | list[float] | tuple[float, float, float]... function GetComplement (line 7969) | def GetComplement(arg1: Vec4h | list[float] | tuple[float, float, float,... function GetComplement (line 7971) | def GetComplement(arg1: Vec4f | list[float] | tuple[float, float, float,... function GetDisplayGamma (line 7972) | def GetDisplayGamma() -> float: function GetHomogenized (line 7977) | def GetHomogenized(_v: Vec4d | list[float] | tuple[float, float, float, ... function GetHomogenized (line 7985) | def GetHomogenized(arg1: Vec4f | list[float] | tuple[float, float, float... function GetLength (line 7987) | def GetLength(_v: Vec4d | list[float] | tuple[float, float, float, float... function GetLength (line 7992) | def GetLength(arg1: Vec2h | list[float] | tuple[float, float], /) -> Any... function GetLength (line 7994) | def GetLength(arg1: Vec2f | list[float] | tuple[float, float], /) -> flo... function GetLength (line 7996) | def GetLength(arg1: Vec2d | list[float] | tuple[float, float], /) -> flo... function GetLength (line 7998) | def GetLength(arg1: Vec3h | list[float] | tuple[float, float, float], /)... function GetLength (line 8000) | def GetLength(arg1: Vec3f | list[float] | tuple[float, float, float], /)... function GetLength (line 8002) | def GetLength(arg1: Vec3d | list[float] | tuple[float, float, float], /)... function GetLength (line 8004) | def GetLength(arg1: Vec4h | list[float] | tuple[float, float, float, flo... function GetLength (line 8006) | def GetLength(arg1: Vec4f | list[float] | tuple[float, float, float, flo... function GetNormalized (line 8008) | def GetNormalized(_v: Vec4d | list[float] | tuple[float, float, float, f... function GetNormalized (line 8018) | def GetNormalized(arg1: Vec2h | list[float] | tuple[float, float], arg2:... function GetNormalized (line 8020) | def GetNormalized(arg1: Vec2f | list[float] | tuple[float, float], arg2:... function GetNormalized (line 8022) | def GetNormalized(arg1: Vec2d | list[float] | tuple[float, float], arg2:... function GetNormalized (line 8024) | def GetNormalized(arg1: Vec3h | list[float] | tuple[float, float, float]... function GetNormalized (line 8026) | def GetNormalized(arg1: Vec3f | list[float] | tuple[float, float, float]... function GetNormalized (line 8028) | def GetNormalized(arg1: Vec3d | list[float] | tuple[float, float, float]... function GetNormalized (line 8030) | def GetNormalized(arg1: Vec4h | list[float] | tuple[float, float, float,... function GetNormalized (line 8032) | def GetNormalized(arg1: Vec4f | list[float] | tuple[float, float, float,... function GetProjection (line 8034) | def GetProjection(_a: Vec4d | list[float] | tuple[float, float, float, f... function GetProjection (line 8045) | def GetProjection(arg1: Vec2h | list[float] | tuple[float, float], arg2:... function GetProjection (line 8047) | def GetProjection(arg1: Vec2f | list[float] | tuple[float, float], arg2:... function GetProjection (line 8049) | def GetProjection(arg1: Vec2d | list[float] | tuple[float, float], arg2:... function GetProjection (line 8051) | def GetProjection(arg1: Vec3h | list[float] | tuple[float, float, float]... function GetProjection (line 8053) | def GetProjection(arg1: Vec3f | list[float] | tuple[float, float, float]... function GetProjection (line 8055) | def GetProjection(arg1: Vec3d | list[float] | tuple[float, float, float]... function GetProjection (line 8057) | def GetProjection(arg1: Vec4h | list[float] | tuple[float, float, float,... function GetProjection (line 8059) | def GetProjection(arg1: Vec4f | list[float] | tuple[float, float, float,... function HomogeneousCross (line 8061) | def HomogeneousCross(_a: Vec4f | list[float] | tuple[float, float, float... function HomogeneousCross (line 8070) | def HomogeneousCross(_a: Vec4d | list[float] | tuple[float, float, float... function IsClose (line 8079) | def IsClose(_a: Vec4d | list[float] | tuple[float, float, float, float],... function IsClose (line 8084) | def IsClose(arg1: float, arg2: float, arg3: float, /) -> bool: ... function IsClose (line 8086) | def IsClose(arg1: Matrix2d, arg2: Matrix2d, arg3: float, /) -> bool: ... function IsClose (line 8088) | def IsClose(arg1: Matrix2f, arg2: Matrix2f, arg3: float, /) -> bool: ... function IsClose (line 8090) | def IsClose(arg1: Matrix3d, arg2: Matrix3d, arg3: float, /) -> bool: ... function IsClose (line 8092) | def IsClose(arg1: Matrix3f, arg2: Matrix3f, arg3: float, /) -> bool: ... function IsClose (line 8094) | def IsClose(arg1: Matrix4f, arg2: Matrix4f, arg3: float, /) -> bool: ... function IsClose (line 8096) | def IsClose(arg1: Matrix4d, arg2: Matrix4d, arg3: float, /) -> bool: ... function IsClose (line 8098) | def IsClose(arg1: Vec2h | list[float] | tuple[float, float], arg2: Vec2h... function IsClose (line 8100) | def IsClose(arg1: Vec2f | list[float] | tuple[float, float], arg2: Vec2f... function IsClose (line 8102) | def IsClose(arg1: Vec2d | list[float] | tuple[float, float], arg2: Vec2d... function IsClose (line 8104) | def IsClose(arg1: Vec3h | list[float] | tuple[float, float, float], arg2... function IsClose (line 8106) | def IsClose(arg1: Vec3f | list[float] | tuple[float, float, float], arg2... function IsClose (line 8108) | def IsClose(arg1: Vec3d | list[float] | tuple[float, float, float], arg2... function IsClose (line 8110) | def IsClose(arg1: Vec4h | list[float] | tuple[float, float, float, float... function IsClose (line 8112) | def IsClose(arg1: Vec4f | list[float] | tuple[float, float, float, float... function Lerp (line 8114) | def Lerp(_alpha: float, _a: Vec4d | list[float] | tuple[float, float, fl... function Lerp (line 8126) | def Lerp(arg1: float, arg2: float, arg3: float, /) -> float: ... function Lerp (line 8128) | def Lerp(arg1: float, arg2: Vec2i | list[int] | Size2 | tuple[int, int],... function Lerp (line 8130) | def Lerp(arg1: float, arg2: Vec3i | list[int] | Size3 | tuple[int, int, ... function Lerp (line 8132) | def Lerp(arg1: float, arg2: Vec2f | list[float] | tuple[float, float], a... function Lerp (line 8134) | def Lerp(arg1: float, arg2: Vec3f | list[float] | tuple[float, float, fl... function Lerp (line 8136) | def Lerp(arg1: float, arg2: Vec4f | list[float] | tuple[float, float, fl... function Lerp (line 8138) | def Lerp(arg1: float, arg2: Vec2d | list[float] | tuple[float, float], a... function Lerp (line 8140) | def Lerp(arg1: float, arg2: Vec3d | list[float] | tuple[float, float, fl... function Lerpf (line 8141) | def Lerpf(arg1: float, arg2: float, arg3: float, /) -> float: function Log (line 8147) | def Log(_f: float, /) -> float: function Logf (line 8151) | def Logf(arg1: float, /) -> float: function Max (line 8158) | def Max(_a1: int, _a2: int, /) -> int: function Max (line 8163) | def Max(arg1: float, arg2: float, /) -> float: ... function Max (line 8165) | def Max(arg1: float, arg2: float, arg3: float, /) -> float: ... function Max (line 8167) | def Max(arg1: float, arg2: float, arg3: float, arg4: float, /) -> float:... function Max (line 8169) | def Max(arg1: float, arg2: float, arg3: float, arg4: float, arg5: float,... function Max (line 8171) | def Max(arg1: int, arg2: int, arg3: int, /) -> int: ... # type: ignore[... function Max (line 8173) | def Max(arg1: int, arg2: int, arg3: int, arg4: int, /) -> int: ... # ty... function Max (line 8175) | def Max(arg1: int, arg2: int, arg3: int, arg4: int, arg5: int, /) -> int... function Min (line 8177) | def Min(_a1: int, _a2: int, /) -> int: function Min (line 8182) | def Min(arg1: float, arg2: float, /) -> float: ... function Min (line 8184) | def Min(arg1: float, arg2: float, arg3: float, /) -> float: ... function Min (line 8186) | def Min(arg1: float, arg2: float, arg3: float, arg4: float, /) -> float:... function Min (line 8188) | def Min(arg1: float, arg2: float, arg3: float, arg4: float, arg5: float,... function Min (line 8190) | def Min(arg1: int, arg2: int, arg3: int, /) -> int: ... # type: ignore[... function Min (line 8192) | def Min(arg1: int, arg2: int, arg3: int, arg4: int, /) -> int: ... # ty... function Min (line 8194) | def Min(arg1: int, arg2: int, arg3: int, arg4: int, arg5: int, /) -> int... function Mod (line 8195) | def Mod(_a: float, _b: float, /) -> float: function Modf (line 8204) | def Modf(arg1: float, arg2: float, /) -> float: function Normalize (line 8211) | def Normalize(_v: Vec4d | list[float] | tuple[float, float, float, float... function Normalize (line 8221) | def Normalize(arg1: Vec2h | list[float] | tuple[float, float], arg2: obj... function Normalize (line 8223) | def Normalize(arg1: Vec2f | list[float] | tuple[float, float], arg2: flo... function Normalize (line 8225) | def Normalize(arg1: Vec2d | list[float] | tuple[float, float], arg2: flo... function Normalize (line 8227) | def Normalize(arg1: Vec3h | list[float] | tuple[float, float, float], ar... function Normalize (line 8229) | def Normalize(arg1: Vec3f | list[float] | tuple[float, float, float], ar... function Normalize (line 8231) | def Normalize(arg1: Vec3d | list[float] | tuple[float, float, float], ar... function Normalize (line 8233) | def Normalize(arg1: Vec4h | list[float] | tuple[float, float, float, flo... function Normalize (line 8235) | def Normalize(arg1: Vec4f | list[float] | tuple[float, float, float, flo... function Pow (line 8236) | def Pow(_f: float, _p: float, /) -> float: function Powf (line 8240) | def Powf(arg1: float, arg2: float, /) -> float: function Project (line 8247) | def Project(_v: Vec4f | list[float] | tuple[float, float, float, float],... function Project (line 8253) | def Project(_v: Vec4d | list[float] | tuple[float, float, float, float],... function RadiansToDegrees (line 8258) | def RadiansToDegrees(_radians: float, /) -> float: function Round (line 8262) | def Round(_f: float, /) -> float: function Roundf (line 8266) | def Roundf(arg1: float, /) -> float: function Sgn (line 8273) | def Sgn(_v: int, /) -> int: function Sgn (line 8284) | def Sgn(arg1: float, /) -> float: ... function Slerp (line 8286) | def Slerp(_alpha: float, _v0: Vec3d | list[float] | tuple[float, float, ... function Slerp (line 8291) | def Slerp(arg1: float, arg2: Quatd | Quatf | Quath, arg3: Quatd | Quatf ... function Slerp (line 8293) | def Slerp(arg1: float, arg2: Quatf | Quath, arg3: Quatf | Quath, /) -> Q... function Slerp (line 8295) | def Slerp(arg1: float, arg2: Quath, arg3: Quath, /) -> Quath: ... # typ... function Slerp (line 8297) | def Slerp(arg1: float, arg2: Quaternion, arg3: Quaternion, /) -> Quatern... function Slerp (line 8299) | def Slerp(arg1: float, arg2: Vec3h | list[float] | tuple[float, float, f... function Slerp (line 8301) | def Slerp(arg1: float, arg2: Vec3f | list[float] | tuple[float, float, f... function Sqr (line 8303) | def Sqr(_x: Vec4d | list[float] | tuple[float, float, float, float], /) ... function Sqr (line 8311) | def Sqr(arg1: float, /) -> float: ... function Sqr (line 8313) | def Sqr(arg1: int, /) -> float: ... # type: ignore[overload-cannot-match] function Sqr (line 8315) | def Sqr(arg1: Vec2i | list[int] | Size2 | tuple[int, int], /) -> float: ... function Sqr (line 8317) | def Sqr(arg1: Vec3i | list[int] | Size3 | tuple[int, int, int], /) -> fl... function Sqr (line 8319) | def Sqr(arg1: Vec2f | list[float] | tuple[float, float], /) -> float: ... function Sqr (line 8321) | def Sqr(arg1: Vec3f | list[float] | tuple[float, float, float], /) -> fl... function Sqr (line 8323) | def Sqr(arg1: Vec4f | list[float] | tuple[float, float, float, float], /... function Sqr (line 8325) | def Sqr(arg1: Vec2d | list[float] | tuple[float, float], /) -> float: ... function Sqr (line 8327) | def Sqr(arg1: Vec3d | list[float] | tuple[float, float, float], /) -> fl... function Sqrt (line 8328) | def Sqrt(_f: float, /) -> float: function Sqrtf (line 8332) | def Sqrtf(arg1: float, /) -> float: function _HalfRoundTrip (line 8338) | def _HalfRoundTrip(arg1: object, /) -> Any: ... FILE: usd/stubs/pxr-stubs/Glf/__init__.pyi class DrawTarget (line 9) | class DrawTarget(Boost.Python.instance): method __init__ (line 27) | def __init__(self, _size: int, _requestMSAA: int, /) -> None: ... method __init__ (line 29) | def __init__(self, _drawtarget: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size... method AddAttachment (line 30) | def AddAttachment(self, _name: str | pxr.Ar.ResolvedPath, _format: int... method Bind (line 34) | def Bind(self) -> None: method Unbind (line 38) | def Unbind(self) -> None: method WriteToFile (line 42) | def WriteToFile(self, attachment: str | pxr.Ar.ResolvedPath, filename:... method __bool__ (line 46) | def __bool__(self) -> bool: method __eq__ (line 48) | def __eq__(self, other: object) -> bool: method __lt__ (line 50) | def __lt__(self, other: object) -> bool: method __ne__ (line 52) | def __ne__(self, other: object) -> bool: method expired (line 55) | def expired(self): ... class GLQueryObject (line 57) | class GLQueryObject(Boost.Python.instance): method __init__ (line 62) | def __init__(self) -> None: ... method Begin (line 63) | def Begin(self, _target: int, /) -> None: method BeginPrimitivesGenerated (line 71) | def BeginPrimitivesGenerated(self) -> None: method BeginSamplesPassed (line 79) | def BeginSamplesPassed(self) -> None: method BeginTimeElapsed (line 87) | def BeginTimeElapsed(self) -> None: method End (line 95) | def End(self) -> None: method GetResult (line 99) | def GetResult(self) -> int: method GetResultNoWait (line 104) | def GetResultNoWait(self) -> int: class SimpleLight (line 110) | class SimpleLight(Boost.Python.instance): method __init__ (line 131) | def __init__(self) -> None: ... class SimpleMaterial (line 133) | class SimpleMaterial(Boost.Python.instance): method __init__ (line 140) | def __init__(self) -> None: ... class Texture (line 142) | class Texture(Boost.Python.instance): method __init__ (line 152) | def __init__(self, *args, **kwargs) -> None: method GetTextureMemoryAllocated (line 157) | def GetTextureMemoryAllocated() -> int: method magFilterSupported (line 162) | def magFilterSupported(self): ... method memoryUsed (line 164) | def memoryUsed(self) -> int: method minFilterSupported (line 169) | def minFilterSupported(self): ... function RegisterDefaultDebugOutputMessageCallback (line 171) | def RegisterDefaultDebugOutputMessageCallback() -> None: FILE: usd/stubs/pxr-stubs/Kind/__init__.pyi class Registry (line 7) | class Registry(Boost.Python.instance): method __init__ (line 27) | def __init__(self) -> None: ... method GetAllKinds (line 29) | def GetAllKinds() -> list[str]: method GetBaseKind (line 34) | def GetBaseKind(_kind: str | pxr.Ar.ResolvedPath, /) -> str: method HasKind (line 43) | def HasKind(_kind: str | pxr.Ar.ResolvedPath, /) -> bool: method IsA (line 48) | def IsA(_derivedKind: str | pxr.Ar.ResolvedPath, _baseKind: str | pxr.... method IsAssembly (line 61) | def IsAssembly(cls, _kind: str | pxr.Ar.ResolvedPath, /) -> bool: method IsComponent (line 66) | def IsComponent(cls, _kind: str | pxr.Ar.ResolvedPath, /) -> bool: method IsGroup (line 71) | def IsGroup(cls, _kind: str | pxr.Ar.ResolvedPath, /) -> bool: method IsModel (line 76) | def IsModel(cls, _kind: str | pxr.Ar.ResolvedPath, /) -> bool: method IsSubComponent (line 81) | def IsSubComponent(cls, _kind: str | pxr.Ar.ResolvedPath, /) -> bool: method __bool__ (line 85) | def __bool__(self) -> bool: method __eq__ (line 87) | def __eq__(self, other: object) -> bool: method __lt__ (line 89) | def __lt__(self, other: object) -> bool: method __ne__ (line 91) | def __ne__(self, other: object) -> bool: method expired (line 94) | def expired(self): ... class Tokens (line 96) | class Tokens(Boost.Python.instance): method __init__ (line 102) | def __init__(self, *args, **kwargs) -> None: FILE: usd/stubs/pxr-stubs/Ndr/__init__.pyi class DiscoveryPlugin (line 14) | class DiscoveryPlugin(Boost.Python.instance): method __init__ (line 88) | def __init__(self, *args, **kwargs) -> None: method DiscoverNodes (line 93) | def DiscoverNodes(self, _unknownArg1: DiscoveryPluginContext, /) -> None: method DiscoverNodes (line 99) | def DiscoverNodes(self, arg2: DiscoveryPluginContext, /) -> Any: ... ... method GetSearchURIs (line 101) | def GetSearchURIs(self) -> None: method GetSearchURIs (line 106) | def GetSearchURIs(self) -> Any: ... # type: ignore[overload-cannot-ma... method __bool__ (line 107) | def __bool__(self) -> bool: method __eq__ (line 109) | def __eq__(self, other: object) -> bool: method __lt__ (line 111) | def __lt__(self, other: object) -> bool: method __ne__ (line 113) | def __ne__(self, other: object) -> bool: method expired (line 116) | def expired(self): ... class DiscoveryPluginContext (line 118) | class DiscoveryPluginContext(Boost.Python.instance): method __init__ (line 126) | def __init__(self, *args, **kwargs) -> None: method GetSourceType (line 131) | def GetSourceType(self, _discoveryType: str | pxr.Ar.ResolvedPath, /) ... method GetSourceType (line 139) | def GetSourceType(self, arg2: object, /) -> Any: ... method __bool__ (line 140) | def __bool__(self) -> bool: method __eq__ (line 142) | def __eq__(self, other: object) -> bool: method __lt__ (line 144) | def __lt__(self, other: object) -> bool: method __ne__ (line 146) | def __ne__(self, other: object) -> bool: method expired (line 149) | def expired(self): ... class DiscoveryPluginList (line 151) | class DiscoveryPluginList(Boost.Python.instance): method __init__ (line 153) | def __init__(self) -> None: ... method append (line 154) | def append(self, arg2: object, /) -> None: ... method extend (line 155) | def extend(self, arg2: object, /) -> None: ... method __contains__ (line 156) | def __contains__(self, arg2: object, /) -> bool: ... method __delitem__ (line 157) | def __delitem__(self, arg2: object, /) -> None: ... method __getitem__ (line 158) | def __getitem__(self, arg2: object, /) -> Any: ... method __iter__ (line 159) | def __iter__(self) -> Any: ... method __len__ (line 160) | def __len__(self) -> int: ... method __setitem__ (line 161) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... class DiscoveryUri (line 163) | class DiscoveryUri(Boost.Python.instance): method __init__ (line 172) | def __init__(self) -> None: ... method __init__ (line 174) | def __init__(self, arg2: DiscoveryUri, /) -> None: ... class Node (line 176) | class Node(Boost.Python.instance): method __init__ (line 188) | def __init__(self, *args, **kwargs) -> None: method GetContext (line 192) | def GetContext(self) -> str: method GetFamily (line 208) | def GetFamily(self) -> str: method GetIdentifier (line 216) | def GetIdentifier(self) -> str: method GetInfoString (line 220) | def GetInfoString(self) -> str: method GetInput (line 227) | def GetInput(self, _inputName: str | pxr.Ar.ResolvedPath, /) -> Property: method GetInputNames (line 234) | def GetInputNames(self) -> list[str]: method GetMetadata (line 238) | def GetMetadata(self) -> dict: method GetName (line 247) | def GetName(self) -> str: method GetOutput (line 251) | def GetOutput(self, _outputName: str | pxr.Ar.ResolvedPath, /) -> Prop... method GetOutputNames (line 259) | def GetOutputNames(self) -> list[str]: method GetResolvedDefinitionURI (line 263) | def GetResolvedDefinitionURI(self) -> str: method GetResolvedImplementationURI (line 273) | def GetResolvedImplementationURI(self) -> str: method GetSourceCode (line 283) | def GetSourceCode(self) -> str: method GetSourceType (line 300) | def GetSourceType(self) -> str: method GetVersion (line 316) | def GetVersion(self) -> Version: method IsValid (line 320) | def IsValid(self) -> bool: method __bool__ (line 333) | def __bool__(self) -> bool: ... class NodeDiscoveryResult (line 335) | class NodeDiscoveryResult(Boost.Python.instance): method __init__ (line 340) | def __init__(self, identifier: str | pxr.Ar.ResolvedPath, version: Ver... method blindData (line 345) | def blindData(self): ... method discoveryType (line 347) | def discoveryType(self): ... method family (line 349) | def family(self): ... method identifier (line 351) | def identifier(self): ... method metadata (line 353) | def metadata(self): ... method name (line 355) | def name(self): ... method resolvedUri (line 357) | def resolvedUri(self): ... method sourceCode (line 359) | def sourceCode(self): ... method sourceType (line 361) | def sourceType(self): ... method subIdentifier (line 363) | def subIdentifier(self): ... method uri (line 365) | def uri(self): ... method version (line 367) | def version(self): ... class NodeList (line 369) | class NodeList(Boost.Python.instance): method __init__ (line 371) | def __init__(self) -> None: ... method append (line 372) | def append(self, arg2: object, /) -> None: ... method extend (line 373) | def extend(self, arg2: object, /) -> None: ... method __contains__ (line 374) | def __contains__(self, arg2: object, /) -> bool: ... method __delitem__ (line 375) | def __delitem__(self, arg2: object, /) -> None: ... method __getitem__ (line 376) | def __getitem__(self, arg2: object, /) -> Any: ... method __iter__ (line 377) | def __iter__(self) -> Any: ... method __len__ (line 378) | def __len__(self) -> int: ... method __setitem__ (line 379) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... class Property (line 381) | class Property(Boost.Python.instance): method __init__ (line 396) | def __init__(self, *args, **kwargs) -> None: method CanConnectTo (line 400) | def CanConnectTo(self, _other: Property, /) -> bool: method GetArraySize (line 405) | def GetArraySize(self) -> int: method GetDefaultValue (line 417) | def GetDefaultValue(self) -> Any: method GetInfoString (line 426) | def GetInfoString(self) -> str: method GetMetadata (line 433) | def GetMetadata(self) -> dict: method GetName (line 437) | def GetName(self) -> str: method GetType (line 441) | def GetType(self) -> str: method GetTypeAsSdfType (line 445) | def GetTypeAsSdfType(self) -> tuple: method IsArray (line 466) | def IsArray(self) -> bool: method IsConnectable (line 470) | def IsConnectable(self) -> bool: method IsDynamicArray (line 474) | def IsDynamicArray(self) -> bool: method IsOutput (line 478) | def IsOutput(self) -> bool: class Registry (line 483) | class Registry(Boost.Python.instance): method __init__ (line 507) | def __init__(self, *args, **kwargs) -> None: method GetAllNodeSourceTypes (line 511) | def GetAllNodeSourceTypes(self) -> list[str]: method GetNodeByIdentifier (line 526) | def GetNodeByIdentifier(self, identifier: str | pxr.Ar.ResolvedPath, t... method GetNodeByIdentifierAndType (line 552) | def GetNodeByIdentifierAndType(self, identifier: str | pxr.Ar.Resolved... method GetNodeByName (line 559) | def GetNodeByName(self, name: str | pxr.Ar.ResolvedPath, typePriority:... method GetNodeByNameAndType (line 573) | def GetNodeByNameAndType(self, name: str | pxr.Ar.ResolvedPath, nodeTy... method GetNodeFromAsset (line 586) | def GetNodeFromAsset(self, asset: pxr.Sdf.AssetPath | str, metadata: d... method GetNodeFromSourceCode (line 612) | def GetNodeFromSourceCode(self, sourceCode: str | pxr.Ar.ResolvedPath,... method GetNodeIdentifiers (line 632) | def GetNodeIdentifiers(self, family: str | pxr.Ar.ResolvedPath = ..., ... method GetNodeNames (line 643) | def GetNodeNames(self, family: str | pxr.Ar.ResolvedPath = ...) -> lis... method GetNodesByFamily (line 653) | def GetNodesByFamily(self, family: str | pxr.Ar.ResolvedPath = ..., fi... method GetNodesByIdentifier (line 663) | def GetNodesByIdentifier(self, identifier: str | pxr.Ar.ResolvedPath) ... method GetNodesByName (line 671) | def GetNodesByName(self, name: str | pxr.Ar.ResolvedPath, filter: Vers... method GetSearchURIs (line 681) | def GetSearchURIs(self) -> list[str]: method SetExtraDiscoveryPlugins (line 689) | def SetExtraDiscoveryPlugins(self, arg2: list, /) -> None: ... method SetExtraParserPlugins (line 690) | def SetExtraParserPlugins(self, _pluginTypes: typing.Iterable[pxr.Tf.T... class Version (line 701) | class Version(Boost.Python.instance): method __init__ (line 703) | def __init__(self) -> None: method __init__ (line 708) | def __init__(self, _major: int, _minor: int, /) -> None: method __init__ (line 717) | def __init__(self, _x: str | pxr.Ar.ResolvedPath, /) -> None: method __init__ (line 725) | def __init__(self, arg2: int, /) -> None: ... method GetAsDefault (line 726) | def GetAsDefault(self) -> Version: method GetMajor (line 733) | def GetMajor(self) -> int: method GetMinor (line 737) | def GetMinor(self) -> int: method GetStringSuffix (line 741) | def GetStringSuffix(self) -> str: method IsDefault (line 745) | def IsDefault(self) -> bool: method __bool__ (line 749) | def __bool__(self) -> bool: method __eq__ (line 753) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 754) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 755) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 756) | def __hash__(self) -> int: ... method __le__ (line 757) | def __le__(self, other: object) -> bool: ... method __lt__ (line 758) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 759) | def __ne__(self, other: object) -> bool: ... class VersionFilter (line 761) | class VersionFilter(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 764) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 769) | def GetValueFromName(name: object) -> Any: ... class _AnnotatedBool (line 771) | class _AnnotatedBool(Boost.Python.instance): method __init__ (line 773) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 774) | def __bool__(self) -> bool: ... method __eq__ (line 775) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 776) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 777) | def __ne__(self, other: object) -> bool: ... method message (line 779) | def message(self): ... class _FilesystemDiscoveryPlugin (line 781) | class _FilesystemDiscoveryPlugin(DiscoveryPlugin): class Context (line 782) | class Context(DiscoveryPluginContext): method __init__ (line 783) | def __init__(self) -> None: ... method __bool__ (line 784) | def __bool__(self) -> bool: method __eq__ (line 786) | def __eq__(self, other: object) -> bool: method __lt__ (line 788) | def __lt__(self, other: object) -> bool: method __ne__ (line 790) | def __ne__(self, other: object) -> bool: method expired (line 793) | def expired(self): ... method __init__ (line 795) | def __init__(self) -> None: ... method __init__ (line 797) | def __init__(self, arg2: object, /) -> None: ... method DiscoverNodes (line 798) | def DiscoverNodes(self, arg2: DiscoveryPluginContext, /) -> list: ... ... method GetSearchURIs (line 799) | def GetSearchURIs(self) -> Any: ... method __bool__ (line 800) | def __bool__(self) -> bool: method __eq__ (line 802) | def __eq__(self, other: object) -> bool: method __lt__ (line 804) | def __lt__(self, other: object) -> bool: method __ne__ (line 806) | def __ne__(self, other: object) -> bool: method expired (line 809) | def expired(self): ... function FsHelpersDiscoverFiles (line 811) | def FsHelpersDiscoverFiles(searchPaths: typing.Iterable[str | pxr.Ar.Res... function FsHelpersDiscoverNodes (line 827) | def FsHelpersDiscoverNodes(searchPaths: typing.Iterable[str | pxr.Ar.Res... function FsHelpersSplitShaderIdentifier (line 850) | def FsHelpersSplitShaderIdentifier(identifier: str | pxr.Ar.ResolvedPath... function _ValidateProperty (line 873) | def _ValidateProperty(arg1: Node, arg2: Property, /) -> _AnnotatedBool: ... FILE: usd/stubs/pxr-stubs/Pcp/__init__.pyi class ArcType (line 60) | class ArcType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 63) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 68) | def GetValueFromName(name: object) -> Any: ... class Cache (line 70) | class Cache(Boost.Python.instance): method __init__ (line 102) | def __init__(self, layerStackIdentifier: LayerStackIdentifier, fileFor... method ComputeAttributeConnectionPaths (line 116) | def ComputeAttributeConnectionPaths(self, relPath: pxr.Sdf.Path | pxr.... method ComputeLayerStack (line 131) | def ComputeLayerStack(self, _identifier: LayerStackIdentifier, /) -> t... method ComputePrimIndex (line 142) | def ComputePrimIndex(self, _primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method ComputePropertyIndex (line 151) | def ComputePropertyIndex(self, _propPath: pxr.Sdf.Path | pxr.Ar.Resolv... method ComputeRelationshipTargetPaths (line 160) | def ComputeRelationshipTargetPaths(self, relPath: pxr.Sdf.Path | pxr.A... method FindAllLayerStacksUsingLayer (line 174) | def FindAllLayerStacksUsingLayer(self, _layer: pxr.Sdf.Layer, /) -> li... method FindPrimIndex (line 178) | def FindPrimIndex(self, _primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPath ... method FindPropertyIndex (line 183) | def FindPropertyIndex(self, _propPath: pxr.Sdf.Path | pxr.Ar.ResolvedP... method FindSiteDependencies (line 188) | def FindSiteDependencies(self, siteLayerStack: LayerStack, sitePath: p... method GetDynamicFileFormatArgumentDependencyData (line 189) | def GetDynamicFileFormatArgumentDependencyData(self, _primIndexPath: p... method GetExpressionVariablesFromLayerStackUsedByPrim (line 199) | def GetExpressionVariablesFromLayerStackUsedByPrim(self, layerStack: p... method GetLayerStackIdentifier (line 204) | def GetLayerStackIdentifier(self) -> LayerStackIdentifier: method GetMutedLayers (line 208) | def GetMutedLayers(self) -> list[str]: method GetPrimsUsingExpressionVariablesFromLayerStack (line 216) | def GetPrimsUsingExpressionVariablesFromLayerStack(self, layerStack: L... method GetUsedLayers (line 221) | def GetUsedLayers(self) -> list[pxr.Sdf.Layer]: method GetUsedLayersRevision (line 225) | def GetUsedLayersRevision(self) -> int: method GetVariantFallbacks (line 236) | def GetVariantFallbacks(self) -> dict: method HasAnyDynamicFileFormatArgumentAttributeDependencies (line 241) | def HasAnyDynamicFileFormatArgumentAttributeDependencies(self) -> bool: method HasAnyDynamicFileFormatArgumentFieldDependencies (line 248) | def HasAnyDynamicFileFormatArgumentFieldDependencies(self) -> bool: method HasRootLayerStack (line 255) | def HasRootLayerStack(self, _layerStack: LayerStack, /) -> bool: method IsInvalidAssetPath (line 265) | def IsInvalidAssetPath(self, _resolvedAssetPath: str | pxr.Ar.Resolved... method IsInvalidSublayerIdentifier (line 274) | def IsInvalidSublayerIdentifier(self, _identifier: str | pxr.Ar.Resolv... method IsLayerMuted (line 283) | def IsLayerMuted(self, layerIdentifier: str | pxr.Ar.ResolvedPath) -> ... method IsPayloadIncluded (line 293) | def IsPayloadIncluded(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath ... method IsPossibleDynamicFileFormatArgumentAttribute (line 297) | def IsPossibleDynamicFileFormatArgumentAttribute(self, _attributeName:... method IsPossibleDynamicFileFormatArgumentField (line 305) | def IsPossibleDynamicFileFormatArgumentField(self, _field: str | pxr.A... method PrintStatistics (line 313) | def PrintStatistics(self) -> None: method Reload (line 317) | def Reload(self) -> None: method RequestLayerMuting (line 329) | def RequestLayerMuting(self, layersToMute: typing.Iterable[str | pxr.A... method RequestPayloads (line 364) | def RequestPayloads(self, _pathsToInclude: typing.Iterable[pxr.Sdf.Pat... method SetVariantFallbacks (line 384) | def SetVariantFallbacks(self, _map: dict, /) -> None: method UsesLayerStack (line 394) | def UsesLayerStack(self, _layerStack: LayerStack, /) -> bool: method fileFormatTarget (line 400) | def fileFormatTarget(self) -> str: method layerStack (line 405) | def layerStack(self) -> LayerStack: class Dependency (line 417) | class Dependency(Boost.Python.instance): method __init__ (line 424) | def __init__(self, arg2: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str, arg... method __eq__ (line 425) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 426) | def __ne__(self, other: object) -> bool: ... class DependencyType (line 428) | class DependencyType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 431) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 436) | def GetValueFromName(name: object) -> Any: ... class DynamicFileFormatDependencyData (line 438) | class DynamicFileFormatDependencyData(Boost.Python.instance): method __init__ (line 449) | def __init__(self, *args, **kwargs) -> None: method CanAttributeDefaultValueChangeAffectFileFormatArguments (line 453) | def CanAttributeDefaultValueChangeAffectFileFormatArguments(self, _att... method CanFieldChangeAffectFileFormatArguments (line 460) | def CanFieldChangeAffectFileFormatArguments(self, _fieldName: str | px... method GetRelevantAttributeNames (line 467) | def GetRelevantAttributeNames(self) -> list: method GetRelevantFieldNames (line 472) | def GetRelevantFieldNames(self) -> list: method IsEmpty (line 477) | def IsEmpty(self) -> bool: class ErrorArcCycle (line 482) | class ErrorArcCycle(ErrorBase): method __init__ (line 483) | def __init__(self, *args, **kwargs) -> None: class ErrorArcPermissionDenied (line 488) | class ErrorArcPermissionDenied(ErrorBase): method __init__ (line 489) | def __init__(self, *args, **kwargs) -> None: class ErrorBase (line 494) | class ErrorBase(Boost.Python.instance): method __init__ (line 498) | def __init__(self, *args, **kwargs) -> None: method errorType (line 503) | def errorType(self): ... class ErrorCapacityExceeded (line 505) | class ErrorCapacityExceeded(ErrorBase): method __init__ (line 506) | def __init__(self, *args, **kwargs) -> None: class ErrorInconsistentAttributeType (line 511) | class ErrorInconsistentAttributeType(ErrorBase): method __init__ (line 512) | def __init__(self, *args, **kwargs) -> None: class ErrorInconsistentAttributeVariability (line 517) | class ErrorInconsistentAttributeVariability(ErrorBase): method __init__ (line 518) | def __init__(self, *args, **kwargs) -> None: class ErrorInconsistentPropertyType (line 523) | class ErrorInconsistentPropertyType(ErrorBase): method __init__ (line 524) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidAssetPath (line 529) | class ErrorInvalidAssetPath(ErrorInvalidAssetPathBase): method __init__ (line 530) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidAssetPathBase (line 535) | class ErrorInvalidAssetPathBase(ErrorBase): method __init__ (line 536) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidAuthoredRelocation (line 541) | class ErrorInvalidAuthoredRelocation(ErrorRelocationBase): method __init__ (line 542) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidConflictingRelocation (line 547) | class ErrorInvalidConflictingRelocation(ErrorRelocationBase): method __init__ (line 548) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidExternalTargetPath (line 553) | class ErrorInvalidExternalTargetPath(ErrorTargetPathBase): method __init__ (line 554) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidInstanceTargetPath (line 559) | class ErrorInvalidInstanceTargetPath(ErrorTargetPathBase): method __init__ (line 560) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidPrimPath (line 565) | class ErrorInvalidPrimPath(ErrorBase): method __init__ (line 566) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidReferenceOffset (line 571) | class ErrorInvalidReferenceOffset(ErrorBase): method __init__ (line 572) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidSameTargetRelocations (line 577) | class ErrorInvalidSameTargetRelocations(ErrorRelocationBase): method __init__ (line 578) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidSublayerOffset (line 583) | class ErrorInvalidSublayerOffset(ErrorBase): method __init__ (line 584) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidSublayerOwnership (line 589) | class ErrorInvalidSublayerOwnership(ErrorBase): method __init__ (line 590) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidSublayerPath (line 595) | class ErrorInvalidSublayerPath(ErrorBase): method __init__ (line 596) | def __init__(self, *args, **kwargs) -> None: class ErrorInvalidTargetPath (line 601) | class ErrorInvalidTargetPath(ErrorTargetPathBase): method __init__ (line 602) | def __init__(self, *args, **kwargs) -> None: class ErrorMutedAssetPath (line 607) | class ErrorMutedAssetPath(ErrorInvalidAssetPathBase): method __init__ (line 608) | def __init__(self, *args, **kwargs) -> None: class ErrorOpinionAtRelocationSource (line 613) | class ErrorOpinionAtRelocationSource(ErrorBase): method __init__ (line 614) | def __init__(self, *args, **kwargs) -> None: class ErrorPrimPermissionDenied (line 619) | class ErrorPrimPermissionDenied(ErrorBase): method __init__ (line 620) | def __init__(self, *args, **kwargs) -> None: class ErrorPropertyPermissionDenied (line 625) | class ErrorPropertyPermissionDenied(ErrorBase): method __init__ (line 626) | def __init__(self, *args, **kwargs) -> None: class ErrorRelocationBase (line 631) | class ErrorRelocationBase(ErrorBase): method __init__ (line 632) | def __init__(self, *args, **kwargs) -> None: class ErrorSublayerCycle (line 637) | class ErrorSublayerCycle(ErrorBase): method __init__ (line 638) | def __init__(self, *args, **kwargs) -> None: class ErrorTargetPathBase (line 643) | class ErrorTargetPathBase(ErrorBase): method __init__ (line 644) | def __init__(self, *args, **kwargs) -> None: class ErrorTargetPermissionDenied (line 649) | class ErrorTargetPermissionDenied(ErrorTargetPathBase): method __init__ (line 650) | def __init__(self, *args, **kwargs) -> None: class ErrorType (line 655) | class ErrorType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 658) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 663) | def GetValueFromName(name: object) -> Any: ... class ErrorUnresolvedPrimPath (line 665) | class ErrorUnresolvedPrimPath(ErrorBase): method __init__ (line 666) | def __init__(self, *args, **kwargs) -> None: class ErrorVariableExpressionError (line 671) | class ErrorVariableExpressionError(ErrorBase): method __init__ (line 672) | def __init__(self, *args, **kwargs) -> None: class ExpressionVariables (line 677) | class ExpressionVariables(Boost.Python.instance): method __init__ (line 684) | def __init__(self) -> None: method __init__ (line 690) | def __init__(self, _source: ExpressionVariablesSource, _expressionVari... method Compute (line 697) | def Compute(sourceLayerStackId: LayerStackIdentifier, rootLayerStackId... method Compute (line 709) | def Compute(sourceLayerStackId: LayerStackIdentifier, rootLayerStackId... method GetSource (line 719) | def GetSource(self) -> ExpressionVariablesSource: method GetVariables (line 723) | def GetVariables(self) -> dict: method __eq__ (line 727) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 728) | def __ne__(self, other: object) -> bool: ... class ExpressionVariablesSource (line 730) | class ExpressionVariablesSource(Boost.Python.instance): method __init__ (line 740) | def __init__(self) -> None: method __init__ (line 746) | def __init__(self, layerStackId: LayerStackIdentifier, rootLayerStackI... method GetLayerStackIdentifier (line 755) | def GetLayerStackIdentifier(self) -> LayerStackIdentifier: method IsRootLayerStack (line 764) | def IsRootLayerStack(self) -> bool: method ResolveLayerStackIdentifier (line 774) | def ResolveLayerStackIdentifier(self, arg2: LayerStackIdentifier, /) -... method ResolveLayerStackIdentifier (line 776) | def ResolveLayerStackIdentifier(self, arg2: Cache, /) -> LayerStackIde... method __eq__ (line 777) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 778) | def __ne__(self, other: object) -> bool: ... class InstanceKey (line 780) | class InstanceKey(Boost.Python.instance): method __init__ (line 793) | def __init__(self) -> None: ... method __init__ (line 795) | def __init__(self, primIndex: PrimIndex) -> None: method __eq__ (line 799) | def __eq__(self, other: object) -> bool: method __hash__ (line 803) | def __hash__(self) -> int: ... method __ne__ (line 804) | def __ne__(self, other: object) -> bool: ... class LayerStack (line 806) | class LayerStack(Boost.Python.instance): method __init__ (line 819) | def __init__(self, *args, **kwargs) -> None: method __bool__ (line 823) | def __bool__(self) -> bool: method __eq__ (line 825) | def __eq__(self, other: object) -> bool: method __lt__ (line 827) | def __lt__(self, other: object) -> bool: method __ne__ (line 829) | def __ne__(self, other: object) -> bool: method expired (line 832) | def expired(self): ... method expressionVariableDependencies (line 834) | def expressionVariableDependencies(self) -> list[str]: method expressionVariables (line 844) | def expressionVariables(self) -> ExpressionVariables: method identifier (line 849) | def identifier(self) -> LayerStackIdentifier: method incrementalRelocatesSourceToTarget (line 854) | def incrementalRelocatesSourceToTarget(self) -> dict[pxr.Sdf.Path, pxr... method incrementalRelocatesTargetToSource (line 867) | def incrementalRelocatesTargetToSource(self) -> dict[pxr.Sdf.Path, pxr... method layerOffsets (line 876) | def layerOffsets(self): ... method layerTree (line 878) | def layerTree(self) -> pxr.Sdf.LayerTree: method layers (line 884) | def layers(self) -> list[pxr.Sdf.Layer]: method localErrors (line 893) | def localErrors(self) -> list[ErrorBase]: method mutedLayers (line 898) | def mutedLayers(self) -> list[str]: method pathsToPrimsWithRelocates (line 903) | def pathsToPrimsWithRelocates(self) -> list[pxr.Sdf.Path]: method relocatesSourceToTarget (line 909) | def relocatesSourceToTarget(self) -> dict[pxr.Sdf.Path, pxr.Sdf.Path]: method relocatesTargetToSource (line 922) | def relocatesTargetToSource(self) -> dict[pxr.Sdf.Path, pxr.Sdf.Path]: method sessionLayerTree (line 930) | def sessionLayerTree(self) -> pxr.Sdf.LayerTree: class LayerStackIdentifier (line 936) | class LayerStackIdentifier(Boost.Python.instance): method __init__ (line 945) | def __init__(self) -> None: method __init__ (line 950) | def __init__(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Lay... method __bool__ (line 958) | def __bool__(self) -> bool: ... method __eq__ (line 959) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 960) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 961) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 962) | def __hash__(self) -> int: ... method __le__ (line 963) | def __le__(self, other: object) -> bool: ... method __lt__ (line 964) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 965) | def __ne__(self, other: object) -> bool: ... method expressionVariablesOverrideSource (line 967) | def expressionVariablesOverrideSource(self): ... method pathResolverContext (line 969) | def pathResolverContext(self): ... method rootLayer (line 971) | def rootLayer(self): ... method sessionLayer (line 973) | def sessionLayer(self): ... class LayerStackSite (line 975) | class LayerStackSite(Boost.Python.instance): method __init__ (line 981) | def __init__(self, *args, **kwargs) -> None: class MapExpression (line 986) | class MapExpression(Boost.Python.instance): method __init__ (line 1003) | def __init__(self) -> None: method AddRootIdentity (line 1007) | def AddRootIdentity(self) -> MapExpression: method Compose (line 1012) | def Compose(self, _f: MapExpression, /) -> MapExpression: method Constant (line 1018) | def Constant(_constValue: MapFunction, /) -> MapExpression: method Evaluate (line 1022) | def Evaluate(self) -> MapFunction: method Identity (line 1032) | def Identity() -> MapExpression: method Inverse (line 1037) | def Inverse() -> MapExpression: method MapSourceToTarget (line 1041) | def MapSourceToTarget(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method MapTargetToSource (line 1048) | def MapTargetToSource(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method isIdentity (line 1056) | def isIdentity(self) -> bool: method isNull (line 1064) | def isNull(self) -> bool: method timeOffset (line 1069) | def timeOffset(self) -> pxr.Sdf.LayerOffset: class MapFunction (line 1074) | class MapFunction(Boost.Python.instance): method __init__ (line 1120) | def __init__(self) -> None: method __init__ (line 1125) | def __init__(self, sourceToTargetMap: dict, timeOffset: pxr.Sdf.LayerO... method __init__ (line 1127) | def __init__(self, arg2: MapFunction, /) -> None: ... method Compose (line 1128) | def Compose(self, _f: MapFunction, /) -> MapFunction: method ComposeOffset (line 1136) | def ComposeOffset(self, offset: pxr.Sdf.LayerOffset) -> MapFunction: method GetInverse (line 1145) | def GetInverse(self) -> MapFunction: method Identity (line 1154) | def Identity() -> MapFunction: method IdentityPathMap (line 1159) | def IdentityPathMap() -> dict: method MapSourceToTarget (line 1164) | def MapSourceToTarget(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method MapSourceToTarget (line 1172) | def MapSourceToTarget(self, pathExpr: pxr.Sdf.PathExpression) -> pxr.S... method MapTargetToSource (line 1192) | def MapTargetToSource(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method MapTargetToSource (line 1200) | def MapTargetToSource(self, pathExpr: pxr.Sdf.PathExpression) -> pxr.S... method __eq__ (line 1219) | def __eq__(self, other: object) -> bool: method __ne__ (line 1223) | def __ne__(self, other: object) -> bool: ... method isIdentity (line 1225) | def isIdentity(self) -> bool: method isIdentityPathMapping (line 1233) | def isIdentityPathMapping(self) -> bool: method isNull (line 1242) | def isNull(self) -> bool: method sourceToTargetMap (line 1250) | def sourceToTargetMap(self) -> PathMap: # type: ignore[name-defined] method timeOffset (line 1255) | def timeOffset(self) -> pxr.Sdf.LayerOffset: class NodeRef (line 1260) | class NodeRef(Boost.Python.instance): method __init__ (line 1277) | def __init__(self, *args, **kwargs) -> None: method CanContributeSpecs (line 1281) | def CanContributeSpecs(self) -> bool: method GetDepthBelowIntroduction (line 1286) | def GetDepthBelowIntroduction(self) -> int: method GetIntroPath (line 1291) | def GetIntroPath(self) -> pxr.Sdf.Path: method GetOriginRootNode (line 1300) | def GetOriginRootNode(self) -> NodeRef: method GetPathAtIntroduction (line 1309) | def GetPathAtIntroduction(self) -> pxr.Sdf.Path: method GetRootNode (line 1313) | def GetRootNode(self) -> NodeRef: method GetSpecContributionRestrictedDepth (line 1317) | def GetSpecContributionRestrictedDepth(self) -> int: method IsDueToAncestor (line 1329) | def IsDueToAncestor(self) -> bool: ... method IsRootNode (line 1330) | def IsRootNode(self) -> bool: method __bool__ (line 1334) | def __bool__(self) -> bool: ... method __eq__ (line 1335) | def __eq__(self, other: object) -> bool: method __ne__ (line 1339) | def __ne__(self, other: object) -> bool: ... method arcType (line 1341) | def arcType(self) -> ArcType: method children (line 1346) | def children(self): ... method hasSpecs (line 1348) | def hasSpecs(self): ... method hasSymmetry (line 1350) | def hasSymmetry(self): ... method isCulled (line 1352) | def isCulled(self) -> bool: ... method isInert (line 1354) | def isInert(self) -> bool: ... method isRestricted (line 1356) | def isRestricted(self) -> bool: ... method layerStack (line 1358) | def layerStack(self) -> LayerStack: method mapToParent (line 1363) | def mapToParent(self) -> MapExpression: method mapToRoot (line 1369) | def mapToRoot(self) -> MapExpression: method namespaceDepth (line 1375) | def namespaceDepth(self) -> int: method origin (line 1384) | def origin(self): ... method parent (line 1386) | def parent(self): ... method path (line 1388) | def path(self) -> pxr.Sdf.Path: method permission (line 1393) | def permission(self) -> pxr.Sdf.Permission: ... method siblingNumAtOrigin (line 1395) | def siblingNumAtOrigin(self) -> int: method site (line 1401) | def site(self) -> LayerStackSite: class PrimIndex (line 1406) | class PrimIndex(Boost.Python.instance): method __init__ (line 1418) | def __init__(self, *args, **kwargs) -> None: method ComposeAuthoredVariantSelections (line 1422) | def ComposeAuthoredVariantSelections(self) -> dict: method ComputePrimChildNames (line 1433) | def ComputePrimChildNames(self) -> tuple: method ComputePrimPropertyNames (line 1441) | def ComputePrimPropertyNames(self) -> list: method DumpToDotGraph (line 1450) | def DumpToDotGraph(self, filename: str | pxr.Ar.ResolvedPath, includeI... method DumpToString (line 1457) | def DumpToString(self, includeInheritOriginInfo: bool = ..., includeMa... method GetNodeProvidingSpec (line 1468) | def GetNodeProvidingSpec(self, primSpec: pxr.Sdf.PrimSpec) -> NodeRef: method GetNodeProvidingSpec (line 1477) | def GetNodeProvidingSpec(self, layer: pxr.Sdf.Layer, path: pxr.Sdf.Pat... method GetSelectionAppliedForVariantSet (line 1485) | def GetSelectionAppliedForVariantSet(self, _variantSet: str | pxr.Ar.R... method IsInstanceable (line 1494) | def IsInstanceable(self) -> bool: method IsValid (line 1505) | def IsValid(self) -> bool: method PrintStatistics (line 1512) | def PrintStatistics(self) -> None: method hasAnyPayloads (line 1517) | def hasAnyPayloads(self): ... method localErrors (line 1519) | def localErrors(self) -> list[ErrorBase]: method primStack (line 1524) | def primStack(self): ... method rootNode (line 1526) | def rootNode(self) -> NodeRef: class PropertyIndex (line 1531) | class PropertyIndex(Boost.Python.instance): method __init__ (line 1537) | def __init__(self, *args, **kwargs) -> None: method localErrors (line 1542) | def localErrors(self) -> list[ErrorBase]: method localPropertyStack (line 1547) | def localPropertyStack(self): ... method propertyStack (line 1549) | def propertyStack(self): ... class Site (line 1551) | class Site(Boost.Python.instance): method __init__ (line 1557) | def __init__(self, *args, **kwargs) -> None: class _TestChangeProcessor (line 1562) | class _TestChangeProcessor(Boost.Python.instance): method __init__ (line 1564) | def __init__(self, arg2: Cache, /) -> None: ... method GetPrimChanges (line 1565) | def GetPrimChanges(self) -> list: ... method GetSignificantChanges (line 1566) | def GetSignificantChanges(self) -> list: ... method GetSpecChanges (line 1567) | def GetSpecChanges(self) -> list: ... method __enter__ (line 1568) | def __enter__(self) -> _TestChangeProcessor: ... method __exit__ (line 1569) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... function BuildPrimPropertyIndex (line 1571) | def BuildPrimPropertyIndex(_propertyPath: pxr.Sdf.Path | pxr.Ar.Resolved... function TranslatePathFromNodeToRoot (line 1578) | def TranslatePathFromNodeToRoot(_sourceNode: NodeRef, /, sourceNode: pxr... function TranslatePathFromRootToNode (line 1598) | def TranslatePathFromRootToNode(_destNode: NodeRef, /, destNode: pxr.Sdf... function _GetInvalidPcpNode (line 1619) | def _GetInvalidPcpNode() -> NodeRef: ... FILE: usd/stubs/pxr-stubs/Plug/__init__.pyi class Notice (line 10) | class Notice(Boost.Python.instance): class Base (line 11) | class Base(pxr.Tf.Notice): method __init__ (line 12) | def __init__(self, *args, **kwargs) -> None: class DidRegisterPlugins (line 17) | class DidRegisterPlugins(Notice.Base): method __init__ (line 22) | def __init__(self, *args, **kwargs) -> None: method GetNewPlugins (line 26) | def GetNewPlugins(self) -> list[Plugin]: ... method __init__ (line 27) | def __init__(self, *args, **kwargs) -> None: class Plugin (line 32) | class Plugin(Boost.Python.instance): method __init__ (line 43) | def __init__(self, *args, **kwargs) -> None: method DeclaresType (line 47) | def DeclaresType(self, type: pxr.Tf.Type | type[pxr.Usd.SchemaBase], i... method FindPluginResource (line 55) | def FindPluginResource(self, path: str | pxr.Ar.ResolvedPath, verify: ... method GetMetadataForType (line 64) | def GetMetadataForType(self, _type: pxr.Tf.Type | type[pxr.Usd.SchemaB... method Load (line 68) | def Load(self) -> bool: method MakeResourcePath (line 75) | def MakeResourcePath(self, _path: str | pxr.Ar.ResolvedPath, /) -> str: method __bool__ (line 80) | def __bool__(self) -> bool: method __eq__ (line 82) | def __eq__(self, other: object) -> bool: method __lt__ (line 84) | def __lt__(self, other: object) -> bool: method __ne__ (line 86) | def __ne__(self, other: object) -> bool: method expired (line 89) | def expired(self): ... method isLoaded (line 91) | def isLoaded(self) -> bool: method isPythonModule (line 99) | def isPythonModule(self) -> bool: method isResource (line 104) | def isResource(self) -> bool: method metadata (line 109) | def metadata(self) -> JsObject: # type: ignore[name-defined] method name (line 114) | def name(self) -> str: method path (line 119) | def path(self) -> str: method resourcePath (line 124) | def resourcePath(self) -> str: class Registry (line 129) | class Registry(Boost.Python.instance): method __init__ (line 393) | def __init__(self) -> None: ... method FindDerivedTypeByName (line 395) | def FindDerivedTypeByName(_base: pxr.Tf.Type | type[pxr.Usd.SchemaBase... method FindTypeByName (line 411) | def FindTypeByName(_typeName: str | pxr.Ar.ResolvedPath, /) -> pxr.Tf.... method GetAllDerivedTypes (line 426) | def GetAllDerivedTypes(_base: pxr.Tf.Type | type[pxr.Usd.SchemaBase], ... method GetAllPlugins (line 439) | def GetAllPlugins(self) -> list[Plugin]: method GetDirectlyDerivedTypes (line 449) | def GetDirectlyDerivedTypes(_base: pxr.Tf.Type | type[pxr.Usd.SchemaBa... method GetPluginForType (line 457) | def GetPluginForType(self, _t: pxr.Tf.Type | type[pxr.Usd.SchemaBase],... method GetPluginWithName (line 462) | def GetPluginWithName(self, _name: str | pxr.Ar.ResolvedPath, /) -> Pl... method GetStringFromPluginMetaData (line 471) | def GetStringFromPluginMetaData(self, _type: pxr.Tf.Type | type[pxr.Us... method RegisterPlugins (line 477) | def RegisterPlugins(self, _pathToPlugInfo: str | pxr.Ar.ResolvedPath, ... method RegisterPlugins (line 486) | def RegisterPlugins(self, _pathsToPlugInfo: typing.Iterable[str | pxr.... method __bool__ (line 494) | def __bool__(self) -> bool: method __eq__ (line 496) | def __eq__(self, other: object) -> bool: method __lt__ (line 498) | def __lt__(self, other: object) -> bool: method __ne__ (line 500) | def __ne__(self, other: object) -> bool: method expired (line 503) | def expired(self): ... class _TestPlugBase1 (line 505) | class _TestPlugBase1(Boost.Python.instance): method __init__ (line 507) | def __init__(self) -> None: ... method __init__ (line 509) | def __init__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method GetTypeName (line 510) | def GetTypeName(self) -> str: ... method __bool__ (line 511) | def __bool__(self) -> bool: method __eq__ (line 513) | def __eq__(self, other: object) -> bool: method __lt__ (line 515) | def __lt__(self, other: object) -> bool: method __ne__ (line 517) | def __ne__(self, other: object) -> bool: method expired (line 520) | def expired(self): ... class _TestPlugBase2 (line 522) | class _TestPlugBase2(Boost.Python.instance): method __init__ (line 524) | def __init__(self) -> None: ... method __init__ (line 526) | def __init__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method GetTypeName (line 527) | def GetTypeName(self) -> str: ... method __bool__ (line 528) | def __bool__(self) -> bool: method __eq__ (line 530) | def __eq__(self, other: object) -> bool: method __lt__ (line 532) | def __lt__(self, other: object) -> bool: method __ne__ (line 534) | def __ne__(self, other: object) -> bool: method expired (line 537) | def expired(self): ... class _TestPlugBase3 (line 539) | class _TestPlugBase3(Boost.Python.instance): method __init__ (line 541) | def __init__(self) -> None: ... method __init__ (line 543) | def __init__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method GetTypeName (line 544) | def GetTypeName(self) -> str: ... method __bool__ (line 545) | def __bool__(self) -> bool: method __eq__ (line 547) | def __eq__(self, other: object) -> bool: method __lt__ (line 549) | def __lt__(self, other: object) -> bool: method __ne__ (line 551) | def __ne__(self, other: object) -> bool: method expired (line 554) | def expired(self): ... class _TestPlugBase4 (line 556) | class _TestPlugBase4(Boost.Python.instance): method __init__ (line 558) | def __init__(self) -> None: ... method __init__ (line 560) | def __init__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method GetTypeName (line 561) | def GetTypeName(self) -> str: ... method __bool__ (line 562) | def __bool__(self) -> bool: method __eq__ (line 564) | def __eq__(self, other: object) -> bool: method __lt__ (line 566) | def __lt__(self, other: object) -> bool: method __ne__ (line 568) | def __ne__(self, other: object) -> bool: method expired (line 571) | def expired(self): ... function _LoadPluginsConcurrently (line 573) | def _LoadPluginsConcurrently(predicate: object, numThreads: int = ..., v... FILE: usd/stubs/pxr-stubs/PxOsd/__init__.pyi class MeshTopology (line 11) | class MeshTopology(Boost.Python.instance): method __init__ (line 41) | def __init__(self) -> None: ... method __init__ (line 43) | def __init__(self, _scheme: str | pxr.Ar.ResolvedPath, _orientation: s... method __init__ (line 48) | def __init__(self, _scheme: str | pxr.Ar.ResolvedPath, _orientation: s... method __init__ (line 53) | def __init__(self, arg2: object, arg3: object, arg4: pxr.Vt.IntArray |... method __init__ (line 55) | def __init__(self, arg2: object, arg3: object, arg4: pxr.Vt.IntArray |... method ComputeHash (line 56) | def ComputeHash(self) -> int: method GetFaceVertexCounts (line 60) | def GetFaceVertexCounts(self) -> pxr.Vt.IntArray: method GetFaceVertexIndices (line 64) | def GetFaceVertexIndices(self) -> pxr.Vt.IntArray: method GetHoleIndices (line 68) | def GetHoleIndices(self) -> pxr.Vt.IntArray: ... method GetOrientation (line 69) | def GetOrientation(self) -> str: method GetScheme (line 73) | def GetScheme(self) -> str: method GetSubdivTags (line 77) | def GetSubdivTags(self) -> SubdivTags: method Validate (line 81) | def Validate(self) -> MeshTopologyValidation: method WithHoleIndices (line 104) | def WithHoleIndices(self, _holeIndices: pxr.Vt.IntArray | typing.Itera... method WithScheme (line 108) | def WithScheme(self, _scheme: str | pxr.Ar.ResolvedPath, /) -> MeshTop... method WithSubdivTags (line 118) | def WithSubdivTags(self, _tags: SubdivTags, /) -> MeshTopology: method __eq__ (line 122) | def __eq__(self, other: object) -> bool: method __ne__ (line 126) | def __ne__(self, other: object) -> bool: ... class MeshTopologyValidation (line 128) | class MeshTopologyValidation(Boost.Python.instance): class Code (line 155) | class Code(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 175) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 180) | def GetValueFromName(name: object) -> Any: ... class Invalidation (line 182) | class Invalidation(Boost.Python.instance): method __init__ (line 189) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 191) | def __init__(self) -> None: ... method __bool__ (line 192) | def __bool__(self) -> bool: method __iter__ (line 196) | def __iter__(self) -> Any: ... class OpenSubdivTokens (line 198) | class OpenSubdivTokens(Boost.Python.instance): method __init__ (line 215) | def __init__(self, *args, **kwargs) -> None: class SubdivTags (line 220) | class SubdivTags(Boost.Python.instance): method __init__ (line 226) | def __init__(self) -> None: ... method __init__ (line 228) | def __init__(self, _vertexInterpolationRule: str | pxr.Ar.ResolvedPath... method ComputeHash (line 229) | def ComputeHash(self) -> int: method GetCornerIndices (line 233) | def GetCornerIndices(self) -> pxr.Vt.IntArray: method GetCornerWeights (line 237) | def GetCornerWeights(self) -> pxr.Vt.FloatArray: method GetCreaseIndices (line 241) | def GetCreaseIndices(self) -> pxr.Vt.IntArray: method GetCreaseLengths (line 245) | def GetCreaseLengths(self) -> pxr.Vt.IntArray: method GetCreaseMethod (line 249) | def GetCreaseMethod(self) -> str: method GetCreaseWeights (line 253) | def GetCreaseWeights(self) -> pxr.Vt.FloatArray: method GetFaceVaryingInterpolationRule (line 257) | def GetFaceVaryingInterpolationRule(self) -> str: method GetTriangleSubdivision (line 261) | def GetTriangleSubdivision(self) -> str: method GetVertexInterpolationRule (line 265) | def GetVertexInterpolationRule(self) -> str: method SetCornerIndices (line 269) | def SetCornerIndices(self, _cornerIndices: pxr.Vt.IntArray | typing.It... method SetCornerWeights (line 273) | def SetCornerWeights(self, _cornerWeights: pxr.Vt.FloatArray | typing.... method SetCreaseIndices (line 277) | def SetCreaseIndices(self, _creaseIndices: pxr.Vt.IntArray | typing.It... method SetCreaseLengths (line 281) | def SetCreaseLengths(self, _creaseLengths: pxr.Vt.IntArray | typing.It... method SetCreaseMethod (line 285) | def SetCreaseMethod(self, _creaseMethod: str | pxr.Ar.ResolvedPath, /)... method SetCreaseWeights (line 289) | def SetCreaseWeights(self, _creaseWeights: pxr.Vt.FloatArray | typing.... method SetFaceVaryingInterpolationRule (line 293) | def SetFaceVaryingInterpolationRule(self, _fvarInterp: str | pxr.Ar.Re... method SetTriangleSubdivision (line 297) | def SetTriangleSubdivision(self, _triangleSubdivision: str | pxr.Ar.Re... method SetVertexInterpolationRule (line 301) | def SetVertexInterpolationRule(self, _vtxInterp: str | pxr.Ar.Resolved... method __eq__ (line 305) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 306) | def __ne__(self, other: object) -> bool: ... FILE: usd/stubs/pxr-stubs/Sdf/__init__.pyi class AngularUnit (line 56) | class AngularUnit(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 59) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 64) | def GetValueFromName(name: object) -> Any: ... class AssetPath (line 66) | class AssetPath(Boost.Python.instance): method __init__ (line 79) | def __init__(self) -> None: method __init__ (line 84) | def __init__(self, _path: str | pxr.Ar.ResolvedPath, /) -> None: method __init__ (line 94) | def __init__(self, _path: str | pxr.Ar.ResolvedPath, _resolvedPath: st... method __init__ (line 105) | def __init__(self, arg2: AssetPath | str, /) -> None: ... method __bool__ (line 106) | def __bool__(self) -> bool: ... method __eq__ (line 107) | def __eq__(self, other: object) -> bool: method __ge__ (line 111) | def __ge__(self, other: object) -> bool: method __gt__ (line 119) | def __gt__(self, other: object) -> bool: method __hash__ (line 127) | def __hash__(self) -> int: ... method __le__ (line 128) | def __le__(self, other: object) -> bool: method __lt__ (line 136) | def __lt__(self, other: object) -> bool: method __ne__ (line 140) | def __ne__(self, other: object) -> bool: ... method path (line 142) | def path(self): ... method resolvedPath (line 144) | def resolvedPath(self) -> str: class AssetPathArray (line 154) | class AssetPathArray(Boost.Python.instance): method __init__ (line 158) | def __init__(self) -> None: method __init__ (line 169) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 180) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 191) | def __init__(self, size: int) -> None: method __eq__ (line 201) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 203) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 205) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 206) | def __iter__(self) -> Any: ... method __len__ (line 207) | def __len__(self) -> int: ... method __ne__ (line 208) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 210) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 212) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class AttributeSpec (line 214) | class AttributeSpec(PropertySpec): method __init__ (line 240) | def __init__(self, owner: PrimSpec, name: str, typeName: ValueTypeName... method ClearColorSpace (line 248) | def ClearColorSpace(self) -> None: method HasColorSpace (line 252) | def HasColorSpace(self) -> bool: method __bool__ (line 256) | def __bool__(self) -> bool: ... method __eq__ (line 257) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 258) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 259) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 260) | def __hash__(self) -> int: ... method __le__ (line 261) | def __le__(self, other: object) -> bool: ... method __lt__ (line 262) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 263) | def __ne__(self, other: object) -> bool: ... method connectionPathList (line 265) | def connectionPathList(self) -> ListEditorProxy_SdfPathKeyPolicy: method expired (line 274) | def expired(self): ... method roleName (line 276) | def roleName(self) -> str: method typeName (line 284) | def typeName(self): ... method valueType (line 286) | def valueType(self): ... class AuthoringError (line 288) | class AuthoringError(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 291) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 296) | def GetValueFromName(name: object) -> Any: ... class BatchNamespaceEdit (line 298) | class BatchNamespaceEdit(Boost.Python.instance): method __init__ (line 327) | def __init__(self) -> None: method __init__ (line 332) | def __init__(self, arg2: BatchNamespaceEdit, /) -> None: ... method __init__ (line 334) | def __init__(self, arg2: object, /) -> None: ... method Add (line 336) | def Add(self, _edit: NamespaceEdit, /) -> None: method Add (line 341) | def Add(self, _currentPath: Path | pxr.Ar.ResolvedPath | str, _newPath... method Add (line 346) | def Add(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3: Path | pxr... method Process (line 347) | def Process(self, hasObjectAtPath: HasObjectAtPath, canEdit: CanEdit, ... method edits (line 390) | def edits(self) -> list[NamespaceEdit]: class ChangeBlock (line 395) | class ChangeBlock(Boost.Python.instance): method __init__ (line 433) | def __init__(self, enabled: bool = ...) -> None: ... method __enter__ (line 434) | def __enter__(self) -> None: ... method __exit__ (line 435) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate (line 437) | class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate(Bo... class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate_Iterator (line 438) | class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate_... method __init__ (line 439) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 443) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 444) | def __next__(self) -> Any: ... class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate_KeyIterator (line 446) | class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate_... method __init__ (line 447) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 451) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 452) | def __next__(self) -> Any: ... class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate_ValueIterator (line 454) | class ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeViewPredicate_... method __init__ (line 455) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 459) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 460) | def __next__(self) -> Any: ... method __init__ (line 461) | def __init__(self, *args, **kwargs) -> None: method get (line 465) | def get(self, arg2: object, /) -> Any: ... method index (line 467) | def index(self, arg2: object, /) -> int: ... method index (line 469) | def index(self, arg2: AttributeSpec, /) -> int: ... # type: ignore[ov... method items (line 470) | def items(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeV... method keys (line 471) | def keys(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfAttributeVi... method values (line 472) | def values(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfAttribute... method __contains__ (line 474) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 476) | def __contains__(self, arg2: AttributeSpec, /) -> bool: ... # type: i... method __eq__ (line 477) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 479) | def __getitem__(self, arg2: object, /) -> AttributeSpec: ... method __getitem__ (line 481) | def __getitem__(self, arg2: int, /) -> AttributeSpec: ... # type: ign... method __iter__ (line 482) | def __iter__(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfAttribu... method __len__ (line 483) | def __len__(self) -> int: ... method __ne__ (line 484) | def __ne__(self, other: object) -> bool: ... class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfAttributeSpec__ (line 486) | class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPredic... class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfAttributeSpec___Iterator (line 487) | class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPred... method __init__ (line 488) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 492) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 493) | def __next__(self) -> Any: ... class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfAttributeSpec___KeyIterator (line 495) | class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPred... method __init__ (line 496) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 500) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 501) | def __next__(self) -> Any: ... class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfAttributeSpec___ValueIterator (line 503) | class ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenViewTrivialPred... method __init__ (line 504) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 508) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 509) | def __next__(self) -> Any: ... method __init__ (line 510) | def __init__(self, *args, **kwargs) -> None: method get (line 514) | def get(self, arg2: object, /) -> Any: ... method index (line 516) | def index(self, arg2: object, /) -> int: ... method index (line 518) | def index(self, arg2: AttributeSpec, /) -> int: ... # type: ignore[ov... method items (line 519) | def items(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenVi... method keys (line 520) | def keys(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenVie... method values (line 521) | def values(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfChildrenV... method __contains__ (line 523) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 525) | def __contains__(self, arg2: AttributeSpec, /) -> bool: ... # type: i... method __eq__ (line 526) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 528) | def __getitem__(self, arg2: object, /) -> AttributeSpec: ... method __getitem__ (line 530) | def __getitem__(self, arg2: int, /) -> AttributeSpec: ... # type: ign... method __iter__ (line 531) | def __iter__(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfChildre... method __len__ (line 532) | def __len__(self) -> int: ... method __ne__ (line 533) | def __ne__(self, other: object) -> bool: ... class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPrimSpec__ (line 535) | class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate_S... class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPrimSpec___Iterator (line 536) | class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate... method __init__ (line 537) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 541) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 542) | def __next__(self) -> Any: ... class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPrimSpec___KeyIterator (line 544) | class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate... method __init__ (line 545) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 549) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 550) | def __next__(self) -> Any: ... class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPrimSpec___ValueIterator (line 552) | class ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTrivialPredicate... method __init__ (line 553) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 557) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 558) | def __next__(self) -> Any: ... method __init__ (line 559) | def __init__(self, *args, **kwargs) -> None: method get (line 563) | def get(self, arg2: object, /) -> Any: ... method index (line 565) | def index(self, arg2: object, /) -> int: ... method index (line 567) | def index(self, arg2: PrimSpec, /) -> int: ... # type: ignore[overloa... method items (line 568) | def items(self) -> ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTri... method keys (line 569) | def keys(self) -> ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTriv... method values (line 570) | def values(self) -> ChildrenView_Sdf_PrimChildPolicy_SdfChildrenViewTr... method __contains__ (line 572) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 574) | def __contains__(self, arg2: PrimSpec, /) -> bool: ... # type: ignore... method __eq__ (line 575) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 577) | def __getitem__(self, arg2: object, /) -> PrimSpec: ... method __getitem__ (line 579) | def __getitem__(self, arg2: int, /) -> PrimSpec: ... # type: ignore[o... method __iter__ (line 580) | def __iter__(self) -> ChildrenView_Sdf_PrimChildPolicy_SdfChildrenView... method __len__ (line 581) | def __len__(self) -> int: ... method __ne__ (line 582) | def __ne__(self, other: object) -> bool: ... class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPropertySpec__ (line 584) | class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredica... class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPropertySpec___Iterator (line 585) | class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredi... method __init__ (line 586) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 590) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 591) | def __next__(self) -> Any: ... class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPropertySpec___KeyIterator (line 593) | class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredi... method __init__ (line 594) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 598) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 599) | def __next__(self) -> Any: ... class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfPropertySpec___ValueIterator (line 601) | class ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenViewTrivialPredi... method __init__ (line 602) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 606) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 607) | def __next__(self) -> Any: ... method __init__ (line 608) | def __init__(self, *args, **kwargs) -> None: method get (line 612) | def get(self, arg2: object, /) -> Any: ... method index (line 614) | def index(self, arg2: object, /) -> int: ... method index (line 616) | def index(self, arg2: PropertySpec, /) -> int: ... # type: ignore[ove... method items (line 617) | def items(self) -> ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenVie... method keys (line 618) | def keys(self) -> ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenView... method values (line 619) | def values(self) -> ChildrenView_Sdf_PropertyChildPolicy_SdfChildrenVi... method __contains__ (line 621) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 623) | def __contains__(self, arg2: PropertySpec, /) -> bool: ... # type: ig... method __eq__ (line 624) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 626) | def __getitem__(self, arg2: object, /) -> PropertySpec: ... method __getitem__ (line 628) | def __getitem__(self, arg2: int, /) -> PropertySpec: ... # type: igno... method __iter__ (line 629) | def __iter__(self) -> ChildrenView_Sdf_PropertyChildPolicy_SdfChildren... method __len__ (line 630) | def __len__(self) -> int: ... method __ne__ (line 631) | def __ne__(self, other: object) -> bool: ... class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPredicate (line 633) | class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPredic... class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPredicate_Iterator (line 634) | class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPred... method __init__ (line 635) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 639) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 640) | def __next__(self) -> Any: ... class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPredicate_KeyIterator (line 642) | class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPred... method __init__ (line 643) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 647) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 648) | def __next__(self) -> Any: ... class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPredicate_ValueIterator (line 650) | class ChildrenView_Sdf_RelationshipChildPolicy_SdfRelationshipViewPred... method __init__ (line 651) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 655) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 656) | def __next__(self) -> Any: ... method __init__ (line 657) | def __init__(self, *args, **kwargs) -> None: method get (line 661) | def get(self, arg2: object, /) -> Any: ... method index (line 663) | def index(self, arg2: object, /) -> int: ... method index (line 665) | def index(self, arg2: RelationshipSpec, /) -> int: ... # type: ignore... method items (line 666) | def items(self) -> ChildrenView_Sdf_RelationshipChildPolicy_SdfRelatio... method keys (line 667) | def keys(self) -> ChildrenView_Sdf_RelationshipChildPolicy_SdfRelation... method values (line 668) | def values(self) -> ChildrenView_Sdf_RelationshipChildPolicy_SdfRelati... method __contains__ (line 670) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 672) | def __contains__(self, arg2: RelationshipSpec, /) -> bool: ... # type... method __eq__ (line 673) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 675) | def __getitem__(self, arg2: object, /) -> RelationshipSpec: ... method __getitem__ (line 677) | def __getitem__(self, arg2: int, /) -> RelationshipSpec: ... # type: ... method __iter__ (line 678) | def __iter__(self) -> ChildrenView_Sdf_RelationshipChildPolicy_SdfRela... method __len__ (line 679) | def __len__(self) -> int: ... method __ne__ (line 680) | def __ne__(self, other: object) -> bool: ... class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSpec__ (line 682) | class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredicat... class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSpec___Iterator (line 683) | class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredic... method __init__ (line 684) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 688) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 689) | def __next__(self) -> Any: ... class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSpec___KeyIterator (line 691) | class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredic... method __init__ (line 692) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 696) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 697) | def __next__(self) -> Any: ... class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSpec___ValueIterator (line 699) | class ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewTrivialPredic... method __init__ (line 700) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 704) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 705) | def __next__(self) -> Any: ... method __init__ (line 706) | def __init__(self, *args, **kwargs) -> None: method get (line 710) | def get(self, arg2: object, /) -> Any: ... method index (line 712) | def index(self, arg2: object, /) -> int: ... method index (line 714) | def index(self, arg2: VariantSpec, /) -> int: ... # type: ignore[over... method items (line 715) | def items(self) -> ChildrenView_Sdf_VariantChildPolicy_SdfChildrenView... method keys (line 716) | def keys(self) -> ChildrenView_Sdf_VariantChildPolicy_SdfChildrenViewT... method values (line 717) | def values(self) -> ChildrenView_Sdf_VariantChildPolicy_SdfChildrenVie... method __contains__ (line 719) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 721) | def __contains__(self, arg2: VariantSpec, /) -> bool: ... # type: ign... method __eq__ (line 722) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 724) | def __getitem__(self, arg2: object, /) -> VariantSpec: ... method __getitem__ (line 726) | def __getitem__(self, arg2: int, /) -> VariantSpec: ... # type: ignor... method __iter__ (line 727) | def __iter__(self) -> ChildrenView_Sdf_VariantChildPolicy_SdfChildrenV... method __len__ (line 728) | def __len__(self) -> int: ... method __ne__ (line 729) | def __ne__(self, other: object) -> bool: ... class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSetSpec__ (line 731) | class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPredi... class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSetSpec___Iterator (line 732) | class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPre... method __init__ (line 733) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 737) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 738) | def __next__(self) -> Any: ... class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSetSpec___KeyIterator (line 740) | class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPre... method __init__ (line 741) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 745) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 746) | def __next__(self) -> Any: ... class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPredicate_SdfHandle_SdfVariantSetSpec___ValueIterator (line 748) | class ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenViewTrivialPre... method __init__ (line 749) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 753) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 754) | def __next__(self) -> Any: ... method __init__ (line 755) | def __init__(self, *args, **kwargs) -> None: method get (line 759) | def get(self, arg2: object, /) -> Any: ... method index (line 761) | def index(self, arg2: object, /) -> int: ... method index (line 763) | def index(self, arg2: VariantSetSpec, /) -> int: ... # type: ignore[o... method items (line 764) | def items(self) -> ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenV... method keys (line 765) | def keys(self) -> ChildrenView_Sdf_VariantSetChildPolicy_SdfChildrenVi... method values (line 766) | def values(self) -> ChildrenView_Sdf_VariantSetChildPolicy_SdfChildren... method __contains__ (line 768) | def __contains__(self, arg2: object, /) -> bool: ... method __contains__ (line 770) | def __contains__(self, arg2: VariantSetSpec, /) -> bool: ... # type: ... method __eq__ (line 771) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 773) | def __getitem__(self, arg2: object, /) -> VariantSetSpec: ... method __getitem__ (line 775) | def __getitem__(self, arg2: int, /) -> VariantSetSpec: ... # type: ig... method __iter__ (line 776) | def __iter__(self) -> ChildrenView_Sdf_VariantSetChildPolicy_SdfChildr... method __len__ (line 777) | def __len__(self) -> int: ... method __ne__ (line 778) | def __ne__(self, other: object) -> bool: ... class CleanupEnabler (line 780) | class CleanupEnabler(Boost.Python.instance): method __init__ (line 817) | def __init__(self) -> None: ... method __enter__ (line 818) | def __enter__(self) -> None: ... method __exit__ (line 819) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class DimensionlessUnit (line 821) | class DimensionlessUnit(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 824) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 829) | def GetValueFromName(name: object) -> Any: ... class FileFormat (line 831) | class FileFormat(Boost.Python.instance): class Tokens (line 836) | class Tokens(Boost.Python.instance): method __init__ (line 838) | def __init__(self, *args, **kwargs) -> None: method __init__ (line 842) | def __init__(self, *args, **kwargs) -> None: method CanRead (line 846) | def CanRead(self, _file: str | pxr.Ar.ResolvedPath, /) -> bool: method FindAllDerivedFileFormatExtensions (line 851) | def FindAllDerivedFileFormatExtensions(_baseType: pxr.Tf.Type | type[p... method FindAllFileFormatExtensions (line 860) | def FindAllFileFormatExtensions() -> list[str]: method FindByExtension (line 867) | def FindByExtension(extension: str | pxr.Ar.ResolvedPath, target: str ... method FindByExtension (line 884) | def FindByExtension(extension: str | pxr.Ar.ResolvedPath, args: dict[s... method FindById (line 896) | def FindById(_formatId: str | pxr.Ar.ResolvedPath, /) -> FileFormat: method FormatSupportsEditing (line 906) | def FormatSupportsEditing(extension: str | pxr.Ar.ResolvedPath, target... method FormatSupportsReading (line 921) | def FormatSupportsReading(extension: str | pxr.Ar.ResolvedPath, target... method FormatSupportsWriting (line 936) | def FormatSupportsWriting(extension: str | pxr.Ar.ResolvedPath, target... method GetFileExtension (line 951) | def GetFileExtension(_s: str | pxr.Ar.ResolvedPath, /) -> str: method GetFileExtensions (line 956) | def GetFileExtensions(self) -> list[str]: method IsPackage (line 960) | def IsPackage(self) -> bool: method IsSupportedExtension (line 964) | def IsSupportedExtension(self, _extension: str | pxr.Ar.ResolvedPath, ... method SupportsEditing (line 969) | def SupportsEditing(self) -> bool: method SupportsReading (line 974) | def SupportsReading(self) -> bool: method SupportsWriting (line 982) | def SupportsWriting(self) -> bool: method __bool__ (line 987) | def __bool__(self) -> bool: method __eq__ (line 989) | def __eq__(self, other: object) -> bool: method __lt__ (line 991) | def __lt__(self, other: object) -> bool: method __ne__ (line 993) | def __ne__(self, other: object) -> bool: method expired (line 996) | def expired(self): ... method fileCookie (line 998) | def fileCookie(self) -> str: method formatId (line 1003) | def formatId(self) -> str: method primaryFileExtension (line 1008) | def primaryFileExtension(self) -> str: method target (line 1017) | def target(self) -> str: class Int64ListOp (line 1022) | class Int64ListOp(Boost.Python.instance): method __init__ (line 1030) | def __init__(self) -> None: ... method ApplyOperations (line 1032) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 1034) | def ApplyOperations(self, arg2: Int64ListOp, /) -> Any: ... # type: i... method Clear (line 1035) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 1036) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 1038) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 1040) | def CreateExplicit(explicitItems: object = ...) -> Int64ListOp: ... method GetAddedOrExplicitItems (line 1041) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 1042) | def GetAppliedItems(self) -> Any: ... method HasItem (line 1043) | def HasItem(self, arg2: int, /) -> bool: ... method __eq__ (line 1044) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1045) | def __hash__(self) -> int: ... method __ne__ (line 1046) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 1048) | def isExplicit(self): ... class IntListOp (line 1050) | class IntListOp(Boost.Python.instance): method __init__ (line 1058) | def __init__(self) -> None: ... method ApplyOperations (line 1060) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 1062) | def ApplyOperations(self, arg2: IntListOp, /) -> Any: ... # type: ign... method Clear (line 1063) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 1064) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 1066) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 1068) | def CreateExplicit(explicitItems: object = ...) -> IntListOp: ... method GetAddedOrExplicitItems (line 1069) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 1070) | def GetAppliedItems(self) -> Any: ... method HasItem (line 1071) | def HasItem(self, arg2: int, /) -> bool: ... method __eq__ (line 1072) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1073) | def __hash__(self) -> int: ... method __ne__ (line 1074) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 1076) | def isExplicit(self): ... class Layer (line 1078) | class Layer(Boost.Python.instance): class DetachedLayerRules (line 1117) | class DetachedLayerRules(Boost.Python.instance): method __init__ (line 1136) | def __init__(self) -> None: method Exclude (line 1141) | def Exclude(self, _patterns: typing.Iterable[str | pxr.Ar.ResolvedPa... method GetExcluded (line 1146) | def GetExcluded(self) -> list[str]: ... method GetIncluded (line 1147) | def GetIncluded(self) -> list[str]: ... method Include (line 1148) | def Include(self, _patterns: typing.Iterable[str | pxr.Ar.ResolvedPa... method IncludeAll (line 1153) | def IncludeAll(self) -> Layer.DetachedLayerRules: method IncludedAll (line 1157) | def IncludedAll(self) -> bool: ... method IsIncluded (line 1158) | def IsIncluded(self, _identifier: str | pxr.Ar.ResolvedPath, /) -> b... method __init__ (line 1203) | def __init__(self, *args, **kwargs) -> None: method AddToMutedLayers (line 1208) | def AddToMutedLayers(_mutedPath: str | pxr.Ar.ResolvedPath, /) -> None: method Apply (line 1212) | def Apply(self, _unknownArg1: BatchNamespaceEdit, /) -> bool: method ApplyRootPrimOrder (line 1220) | def ApplyRootPrimOrder(self, _vec: list[str] | list[pxr.Ar.ResolvedPat... method CanApply (line 1229) | def CanApply(self, _unknownArg1: BatchNamespaceEdit, /) -> tuple[Names... method Clear (line 1256) | def Clear(self) -> None: method ClearColorConfiguration (line 1267) | def ClearColorConfiguration(self) -> None: method ClearColorManagementSystem (line 1275) | def ClearColorManagementSystem(self) -> None: method ClearCustomLayerData (line 1283) | def ClearCustomLayerData(self) -> None: method ClearDefaultPrim (line 1287) | def ClearDefaultPrim(self) -> None: method ClearEndTimeCode (line 1294) | def ClearEndTimeCode(self) -> None: method ClearExpressionVariables (line 1298) | def ClearExpressionVariables(self) -> None: method ClearFramePrecision (line 1302) | def ClearFramePrecision(self) -> None: method ClearFramesPerSecond (line 1306) | def ClearFramesPerSecond(self) -> None: method ClearOwner (line 1310) | def ClearOwner(self) -> None: method ClearRelocates (line 1314) | def ClearRelocates(self) -> None: method ClearSessionOwner (line 1318) | def ClearSessionOwner(self) -> None: ... method ClearStartTimeCode (line 1319) | def ClearStartTimeCode(self) -> None: method ClearTimeCodesPerSecond (line 1323) | def ClearTimeCodesPerSecond(self) -> None: method ComputeAbsolutePath (line 1327) | def ComputeAbsolutePath(self, _assetPath: str | pxr.Ar.ResolvedPath, /... method CreateAnonymous (line 1350) | def CreateAnonymous(tag: str | pxr.Ar.ResolvedPath = ..., args: dict =... method CreateAnonymous (line 1370) | def CreateAnonymous(tag: str | pxr.Ar.ResolvedPath, format: FileFormat... method CreateIdentifier (line 1375) | def CreateIdentifier(_layerPath: str | pxr.Ar.ResolvedPath, _arguments... method CreateNew (line 1380) | def CreateNew(identifier: str | pxr.Ar.ResolvedPath, args: dict = ...)... method DumpLayerInfo (line 1389) | def DumpLayerInfo() -> None: method EraseTimeSample (line 1392) | def EraseTimeSample(self, _path: Path | pxr.Ar.ResolvedPath | str, _ti... method Export (line 1393) | def Export(self, filename: str | pxr.Ar.ResolvedPath, comment: str | p... method ExportToString (line 1410) | def ExportToString(self) -> str: method Find (line 1419) | def Find(identifier: str | pxr.Ar.ResolvedPath, args: dict = ...) -> L... method FindOrOpen (line 1431) | def FindOrOpen(identifier: str | pxr.Ar.ResolvedPath, args: dict = ...... method FindOrOpenRelativeToLayer (line 1444) | def FindOrOpenRelativeToLayer(anchor: Layer, identifier: str | pxr.Ar.... method FindRelativeToLayer (line 1461) | def FindRelativeToLayer(anchor: Layer, assetPath: str | pxr.Ar.Resolve... method GetAssetInfo (line 1476) | def GetAssetInfo(self) -> Any: method GetAssetName (line 1481) | def GetAssetName(self) -> str: method GetAttributeAtPath (line 1485) | def GetAttributeAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, ... method GetBracketingTimeSamples (line 1493) | def GetBracketingTimeSamples(self, _time: float, /) -> tuple: ... method GetBracketingTimeSamplesForPath (line 1494) | def GetBracketingTimeSamplesForPath(self, _path: Path | pxr.Ar.Resolve... method GetCompositionAssetDependencies (line 1495) | def GetCompositionAssetDependencies(self) -> list[str]: method GetDetachedLayerRules (line 1508) | def GetDetachedLayerRules() -> Layer.DetachedLayerRules: method GetDisplayName (line 1512) | def GetDisplayName(self) -> str: method GetDisplayNameFromIdentifier (line 1520) | def GetDisplayNameFromIdentifier(_identifier: str | pxr.Ar.ResolvedPat... method GetExternalAssetDependencies (line 1525) | def GetExternalAssetDependencies(self) -> list[str]: method GetExternalReferences (line 1537) | def GetExternalReferences(self) -> tuple: method GetFileFormat (line 1543) | def GetFileFormat(self) -> FileFormat: method GetFileFormatArguments (line 1547) | def GetFileFormatArguments(self) -> dict[str, str]: method GetLoadedLayers (line 1553) | def GetLoadedLayers() -> list[Layer]: method GetMutedLayers (line 1558) | def GetMutedLayers() -> list[str]: method GetNumTimeSamplesForPath (line 1562) | def GetNumTimeSamplesForPath(self, _path: Path | pxr.Ar.ResolvedPath |... method GetObjectAtPath (line 1563) | def GetObjectAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /) ... method GetPrimAtPath (line 1573) | def GetPrimAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /) ->... method GetPropertyAtPath (line 1581) | def GetPropertyAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /... method GetRelationshipAtPath (line 1589) | def GetRelationshipAtPath(self, _path: Path | pxr.Ar.ResolvedPath | st... method HasColorConfiguration (line 1597) | def HasColorConfiguration(self) -> bool: method HasColorManagementSystem (line 1605) | def HasColorManagementSystem(self) -> bool: method HasCustomLayerData (line 1613) | def HasCustomLayerData(self) -> bool: method HasDefaultPrim (line 1617) | def HasDefaultPrim(self) -> bool: method HasEndTimeCode (line 1624) | def HasEndTimeCode(self) -> bool: method HasExpressionVariables (line 1628) | def HasExpressionVariables(self) -> bool: method HasFramePrecision (line 1632) | def HasFramePrecision(self) -> bool: method HasFramesPerSecond (line 1636) | def HasFramesPerSecond(self) -> bool: method HasOwner (line 1640) | def HasOwner(self) -> bool: method HasRelocates (line 1644) | def HasRelocates(self) -> bool: method HasSessionOwner (line 1653) | def HasSessionOwner(self) -> bool: method HasStartTimeCode (line 1657) | def HasStartTimeCode(self) -> bool: method HasTimeCodesPerSecond (line 1661) | def HasTimeCodesPerSecond(self) -> bool: method Import (line 1665) | def Import(self, _layerPath: str | pxr.Ar.ResolvedPath, /) -> bool: method ImportFromString (line 1675) | def ImportFromString(self, _string: str | pxr.Ar.ResolvedPath, /) -> b... method IsAnonymousLayerIdentifier (line 1683) | def IsAnonymousLayerIdentifier(_identifier: str | pxr.Ar.ResolvedPath,... method IsDetached (line 1688) | def IsDetached(self) -> bool: method IsIncludedByDetachedLayerRules (line 1698) | def IsIncludedByDetachedLayerRules(_identifier: str | pxr.Ar.ResolvedP... method IsMuted (line 1706) | def IsMuted(self) -> bool: method ListAllTimeSamples (line 1710) | def ListAllTimeSamples(self) -> list[float]: ... method ListTimeSamplesForPath (line 1711) | def ListTimeSamplesForPath(self, _path: Path | pxr.Ar.ResolvedPath | s... method New (line 1713) | def New(fileFormat: FileFormat, identifier: str | pxr.Ar.ResolvedPath,... method OpenAsAnonymous (line 1725) | def OpenAsAnonymous(filePath: str | pxr.Ar.ResolvedPath = ..., metadat... method QueryTimeSample (line 1743) | def QueryTimeSample(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3... method Reload (line 1744) | def Reload(self, force: bool = ...) -> bool: method ReloadLayers (line 1768) | def ReloadLayers(_layers: typing.Iterable[Layer], /, force: bool = ...... method RemoveFromMutedLayers (line 1778) | def RemoveFromMutedLayers(_mutedPath: str | pxr.Ar.ResolvedPath, /) ->... method RemoveInertSceneDescription (line 1782) | def RemoveInertSceneDescription(self) -> None: method Save (line 1791) | def Save(self, force: bool = ...) -> bool: method ScheduleRemoveIfInert (line 1800) | def ScheduleRemoveIfInert(self, _spec: Spec, /) -> None: method SetDetachedLayerRules (line 1806) | def SetDetachedLayerRules(_mask: Layer.DetachedLayerRules, /) -> None: method SetMuted (line 1832) | def SetMuted(self, _muted: bool, /) -> None: method SetPermissionToEdit (line 1837) | def SetPermissionToEdit(self, _allow: bool, /) -> None: method SetPermissionToSave (line 1841) | def SetPermissionToSave(self, _allow: bool, /) -> None: method SetTimeSample (line 1845) | def SetTimeSample(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3: ... method SplitIdentifier (line 1847) | def SplitIdentifier(_identifier: str | pxr.Ar.ResolvedPath, /) -> tuple: method StreamsData (line 1852) | def StreamsData(self) -> bool: method TransferContent (line 1863) | def TransferContent(self, _layer: Layer, /) -> None: method Traverse (line 1870) | def Traverse(self, path: Path | pxr.Ar.ResolvedPath | str, func: typin... method UpdateAssetInfo (line 1871) | def UpdateAssetInfo(self) -> None: method UpdateCompositionAssetDependency (line 1881) | def UpdateCompositionAssetDependency(self, _oldAssetPath: str | pxr.Ar... method UpdateExternalReference (line 1894) | def UpdateExternalReference(self, _oldAssetPath: str | pxr.Ar.Resolved... method _WriteDataFile (line 1900) | def _WriteDataFile(self, arg2: object, /) -> bool: ... method __bool__ (line 1901) | def __bool__(self) -> bool: method __eq__ (line 1903) | def __eq__(self, other: object) -> bool: method __lt__ (line 1905) | def __lt__(self, other: object) -> bool: method __ne__ (line 1907) | def __ne__(self, other: object) -> bool: method anonymous (line 1910) | def anonymous(self): ... method dirty (line 1912) | def dirty(self): ... method empty (line 1914) | def empty(self): ... method expired (line 1916) | def expired(self): ... method externalReferences (line 1918) | def externalReferences(self) -> list[str]: method fileExtension (line 1925) | def fileExtension(self) -> str: method permissionToEdit (line 1935) | def permissionToEdit(self): ... method permissionToSave (line 1937) | def permissionToSave(self): ... method pseudoRoot (line 1939) | def pseudoRoot(self) -> PrimSpec: method realPath (line 1951) | def realPath(self) -> str: method repositoryPath (line 1959) | def repositoryPath(self) -> str: method resolvedPath (line 1969) | def resolvedPath(self) -> pxr.Ar.ResolvedPath: method rootPrims (line 1978) | def rootPrims(self) -> ChildrenView_Sdf_PrimChildPolicy_SdfChildrenVie... method subLayerOffsets (line 1983) | def subLayerOffsets(self) -> list[LayerOffset]: method version (line 1988) | def version(self) -> str: class LayerOffset (line 2000) | class LayerOffset(Boost.Python.instance): method __init__ (line 2025) | def __init__(self, offset: float = ..., scale: float = ...) -> None: method __init__ (line 2030) | def __init__(self, arg2: LayerOffset, /) -> None: ... method GetInverse (line 2031) | def GetInverse(self) -> LayerOffset: method IsIdentity (line 2035) | def IsIdentity(self) -> bool: method __eq__ (line 2040) | def __eq__(self, other: object) -> bool: method __mul__ (line 2045) | def __mul__(self, arg2: LayerOffset, /) -> Any: ... method __mul__ (line 2047) | def __mul__(self, arg2: TimeCode | float, /) -> Any: ... method __mul__ (line 2049) | def __mul__(self, arg2: float, /) -> Any: ... # type: ignore[overload... method __ne__ (line 2050) | def __ne__(self, other: object) -> bool: ... method offset (line 2052) | def offset(self) -> float: method scale (line 2057) | def scale(self) -> float: class LayerTree (line 2062) | class LayerTree(Boost.Python.instance): method __init__ (line 2077) | def __init__(self, _layer: Layer, _childTrees: list[LayerTree], _cumul... method __init__ (line 2079) | def __init__(self) -> None: ... method __init__ (line 2081) | def __init__(self, arg2: Layer, arg3: object, /) -> None: ... method __bool__ (line 2082) | def __bool__(self) -> bool: method __eq__ (line 2084) | def __eq__(self, other: object) -> bool: method __lt__ (line 2086) | def __lt__(self, other: object) -> bool: method __ne__ (line 2088) | def __ne__(self, other: object) -> bool: method childTrees (line 2091) | def childTrees(self) -> list[LayerTree]: method expired (line 2096) | def expired(self): ... method layer (line 2098) | def layer(self) -> Layer: method offset (line 2103) | def offset(self) -> LayerOffset: class LengthUnit (line 2108) | class LengthUnit(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2111) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2116) | def GetValueFromName(name: object) -> Any: ... class ListEditorProxy_SdfNameKeyPolicy (line 2118) | class ListEditorProxy_SdfNameKeyPolicy(Boost.Python.instance): method __init__ (line 2125) | def __init__(self, *args, **kwargs) -> None: method Add (line 2129) | def Add(self, arg2: object, /) -> None: ... method Append (line 2130) | def Append(self, arg2: object, /) -> None: ... method ApplyEditsToList (line 2132) | def ApplyEditsToList(self, arg2: object, /) -> list: ... method ApplyEditsToList (line 2134) | def ApplyEditsToList(self, arg2: object, arg3: object, /) -> list: ... method ClearEdits (line 2135) | def ClearEdits(self) -> bool: ... method ClearEditsAndMakeExplicit (line 2136) | def ClearEditsAndMakeExplicit(self) -> bool: ... method ContainsItemEdit (line 2137) | def ContainsItemEdit(self, item: object, onlyAddOrExplicit: bool = ...... method CopyItems (line 2138) | def CopyItems(self, arg2: ListEditorProxy_SdfNameKeyPolicy, /) -> bool... method Erase (line 2139) | def Erase(self, arg2: object, /) -> None: ... method GetAddedOrExplicitItems (line 2140) | def GetAddedOrExplicitItems(self) -> tuple: ... method GetAppliedItems (line 2141) | def GetAppliedItems(self) -> tuple: ... method ModifyItemEdits (line 2142) | def ModifyItemEdits(self, arg2: object, /) -> None: ... method Prepend (line 2143) | def Prepend(self, arg2: object, /) -> None: ... method Remove (line 2144) | def Remove(self, arg2: object, /) -> None: ... method RemoveItemEdits (line 2145) | def RemoveItemEdits(self, arg2: object, /) -> None: ... method ReplaceItemEdits (line 2146) | def ReplaceItemEdits(self, arg2: object, arg3: object, /) -> None: ... method isExpired (line 2148) | def isExpired(self): ... method isExplicit (line 2150) | def isExplicit(self): ... method isOrderedOnly (line 2152) | def isOrderedOnly(self): ... class ListEditorProxy_SdfPathKeyPolicy (line 2154) | class ListEditorProxy_SdfPathKeyPolicy(Boost.Python.instance): method __init__ (line 2161) | def __init__(self, *args, **kwargs) -> None: method Add (line 2165) | def Add(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method Append (line 2166) | def Append(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method ApplyEditsToList (line 2168) | def ApplyEditsToList(self, arg2: object, /) -> list: ... method ApplyEditsToList (line 2170) | def ApplyEditsToList(self, arg2: object, arg3: object, /) -> list: ... method ClearEdits (line 2171) | def ClearEdits(self) -> bool: ... method ClearEditsAndMakeExplicit (line 2172) | def ClearEditsAndMakeExplicit(self) -> bool: ... method ContainsItemEdit (line 2173) | def ContainsItemEdit(self, item: Path | pxr.Ar.ResolvedPath | str, onl... method CopyItems (line 2174) | def CopyItems(self, arg2: ListEditorProxy_SdfPathKeyPolicy, /) -> bool... method Erase (line 2175) | def Erase(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method GetAddedOrExplicitItems (line 2176) | def GetAddedOrExplicitItems(self) -> tuple: ... method GetAppliedItems (line 2177) | def GetAppliedItems(self) -> tuple: ... method ModifyItemEdits (line 2178) | def ModifyItemEdits(self, arg2: object, /) -> None: ... method Prepend (line 2179) | def Prepend(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method Remove (line 2180) | def Remove(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method RemoveItemEdits (line 2181) | def RemoveItemEdits(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -... method ReplaceItemEdits (line 2182) | def ReplaceItemEdits(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg... method isExpired (line 2184) | def isExpired(self): ... method isExplicit (line 2186) | def isExplicit(self): ... method isOrderedOnly (line 2188) | def isOrderedOnly(self): ... class ListEditorProxy_SdfPayloadTypePolicy (line 2190) | class ListEditorProxy_SdfPayloadTypePolicy(Boost.Python.instance): method __init__ (line 2197) | def __init__(self, *args, **kwargs) -> None: method Add (line 2201) | def Add(self, arg2: Payload, /) -> None: ... method Append (line 2202) | def Append(self, arg2: Payload, /) -> None: ... method ApplyEditsToList (line 2204) | def ApplyEditsToList(self, arg2: object, /) -> list: ... method ApplyEditsToList (line 2206) | def ApplyEditsToList(self, arg2: object, arg3: object, /) -> list: ... method ClearEdits (line 2207) | def ClearEdits(self) -> bool: ... method ClearEditsAndMakeExplicit (line 2208) | def ClearEditsAndMakeExplicit(self) -> bool: ... method ContainsItemEdit (line 2209) | def ContainsItemEdit(self, item: Payload, onlyAddOrExplicit: bool = ..... method CopyItems (line 2210) | def CopyItems(self, arg2: ListEditorProxy_SdfPayloadTypePolicy, /) -> ... method Erase (line 2211) | def Erase(self, arg2: Payload, /) -> None: ... method GetAddedOrExplicitItems (line 2212) | def GetAddedOrExplicitItems(self) -> tuple: ... method GetAppliedItems (line 2213) | def GetAppliedItems(self) -> tuple: ... method ModifyItemEdits (line 2214) | def ModifyItemEdits(self, arg2: object, /) -> None: ... method Prepend (line 2215) | def Prepend(self, arg2: Payload, /) -> None: ... method Remove (line 2216) | def Remove(self, arg2: Payload, /) -> None: ... method RemoveItemEdits (line 2217) | def RemoveItemEdits(self, arg2: Payload, /) -> None: ... method ReplaceItemEdits (line 2218) | def ReplaceItemEdits(self, arg2: Payload, arg3: Payload, /) -> None: ... method isExpired (line 2220) | def isExpired(self): ... method isExplicit (line 2222) | def isExplicit(self): ... method isOrderedOnly (line 2224) | def isOrderedOnly(self): ... class ListEditorProxy_SdfReferenceTypePolicy (line 2226) | class ListEditorProxy_SdfReferenceTypePolicy(Boost.Python.instance): method __init__ (line 2233) | def __init__(self, *args, **kwargs) -> None: method Add (line 2237) | def Add(self, arg2: Reference, /) -> None: ... method Append (line 2238) | def Append(self, arg2: Reference, /) -> None: ... method ApplyEditsToList (line 2240) | def ApplyEditsToList(self, arg2: object, /) -> list: ... method ApplyEditsToList (line 2242) | def ApplyEditsToList(self, arg2: object, arg3: object, /) -> list: ... method ClearEdits (line 2243) | def ClearEdits(self) -> bool: ... method ClearEditsAndMakeExplicit (line 2244) | def ClearEditsAndMakeExplicit(self) -> bool: ... method ContainsItemEdit (line 2245) | def ContainsItemEdit(self, item: Reference, onlyAddOrExplicit: bool = ... method CopyItems (line 2246) | def CopyItems(self, arg2: ListEditorProxy_SdfReferenceTypePolicy, /) -... method Erase (line 2247) | def Erase(self, arg2: Reference, /) -> None: ... method GetAddedOrExplicitItems (line 2248) | def GetAddedOrExplicitItems(self) -> tuple: ... method GetAppliedItems (line 2249) | def GetAppliedItems(self) -> tuple: ... method ModifyItemEdits (line 2250) | def ModifyItemEdits(self, arg2: object, /) -> None: ... method Prepend (line 2251) | def Prepend(self, arg2: Reference, /) -> None: ... method Remove (line 2252) | def Remove(self, arg2: Reference, /) -> None: ... method RemoveItemEdits (line 2253) | def RemoveItemEdits(self, arg2: Reference, /) -> None: ... method ReplaceItemEdits (line 2254) | def ReplaceItemEdits(self, arg2: Reference, arg3: Reference, /) -> Non... method isExpired (line 2256) | def isExpired(self): ... method isExplicit (line 2258) | def isExplicit(self): ... method isOrderedOnly (line 2260) | def isOrderedOnly(self): ... class ListOpType (line 2262) | class ListOpType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2265) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2270) | def GetValueFromName(name: object) -> Any: ... class ListProxy_SdfNameKeyPolicy (line 2272) | class ListProxy_SdfNameKeyPolicy(Boost.Python.instance): method __init__ (line 2273) | def __init__(self, *args, **kwargs) -> None: method ApplyEditsToList (line 2277) | def ApplyEditsToList(self, arg2: object, /) -> Any: ... method ApplyList (line 2278) | def ApplyList(self, arg2: ListProxy_SdfNameKeyPolicy, /) -> None: ... method append (line 2279) | def append(self, arg2: object, /) -> None: ... method clear (line 2280) | def clear(self) -> None: ... method copy (line 2281) | def copy(self) -> list: ... method count (line 2282) | def count(self, arg2: object, /) -> int: ... method index (line 2283) | def index(self, arg2: object, /) -> int: ... method insert (line 2284) | def insert(self, arg2: int, arg3: object, /) -> None: ... method remove (line 2285) | def remove(self, arg2: object, /) -> None: ... method replace (line 2286) | def replace(self, arg2: object, arg3: object, /) -> None: ... method __delitem__ (line 2288) | def __delitem__(self, arg2: int, /) -> None: ... method __delitem__ (line 2290) | def __delitem__(self, arg2: object, /) -> None: ... method __eq__ (line 2291) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2292) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 2294) | def __getitem__(self, arg2: int, /) -> str: ... # type: ignore[overlo... method __getitem__ (line 2296) | def __getitem__(self, arg2: object, /) -> list: ... method __gt__ (line 2297) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2298) | def __le__(self, other: object) -> bool: ... method __len__ (line 2299) | def __len__(self) -> int: ... method __lt__ (line 2300) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2301) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2303) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... method __setitem__ (line 2305) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2307) | def expired(self): ... class ListProxy_SdfNameTokenKeyPolicy (line 2309) | class ListProxy_SdfNameTokenKeyPolicy(Boost.Python.instance): method __init__ (line 2310) | def __init__(self, *args, **kwargs) -> None: method ApplyEditsToList (line 2314) | def ApplyEditsToList(self, arg2: object, /) -> Any: ... method ApplyList (line 2315) | def ApplyList(self, arg2: ListProxy_SdfNameTokenKeyPolicy, /) -> None:... method append (line 2316) | def append(self, arg2: object, /) -> None: ... method clear (line 2317) | def clear(self) -> None: ... method copy (line 2318) | def copy(self) -> list: ... method count (line 2319) | def count(self, arg2: object, /) -> int: ... method index (line 2320) | def index(self, arg2: object, /) -> int: ... method insert (line 2321) | def insert(self, arg2: int, arg3: object, /) -> None: ... method remove (line 2322) | def remove(self, arg2: object, /) -> None: ... method replace (line 2323) | def replace(self, arg2: object, arg3: object, /) -> None: ... method __delitem__ (line 2325) | def __delitem__(self, arg2: int, /) -> None: ... method __delitem__ (line 2327) | def __delitem__(self, arg2: object, /) -> None: ... method __eq__ (line 2328) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2329) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 2331) | def __getitem__(self, arg2: int, /) -> Any: ... method __getitem__ (line 2333) | def __getitem__(self, arg2: object, /) -> list: ... method __gt__ (line 2334) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2335) | def __le__(self, other: object) -> bool: ... method __len__ (line 2336) | def __len__(self) -> int: ... method __lt__ (line 2337) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2338) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2340) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... method __setitem__ (line 2342) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2344) | def expired(self): ... class ListProxy_SdfPathKeyPolicy (line 2346) | class ListProxy_SdfPathKeyPolicy(Boost.Python.instance): method __init__ (line 2347) | def __init__(self, *args, **kwargs) -> None: method ApplyEditsToList (line 2351) | def ApplyEditsToList(self, arg2: object, /) -> Any: ... method ApplyList (line 2352) | def ApplyList(self, arg2: ListProxy_SdfPathKeyPolicy, /) -> None: ... method append (line 2353) | def append(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method clear (line 2354) | def clear(self) -> None: ... method copy (line 2355) | def copy(self) -> list: ... method count (line 2356) | def count(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> int: ... method index (line 2357) | def index(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> int: ... method insert (line 2358) | def insert(self, arg2: int, arg3: Path | pxr.Ar.ResolvedPath | str, /)... method remove (line 2359) | def remove(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> None: ... method replace (line 2360) | def replace(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3: Path |... method __delitem__ (line 2362) | def __delitem__(self, arg2: int, /) -> None: ... method __delitem__ (line 2364) | def __delitem__(self, arg2: object, /) -> None: ... method __delitem__ (line 2366) | def __delitem__(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> No... method __eq__ (line 2367) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2368) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 2370) | def __getitem__(self, arg2: int, /) -> Path: ... # type: ignore[overl... method __getitem__ (line 2372) | def __getitem__(self, arg2: object, /) -> list: ... method __gt__ (line 2373) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2374) | def __le__(self, other: object) -> bool: ... method __len__ (line 2375) | def __len__(self) -> int: ... method __lt__ (line 2376) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2377) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2379) | def __setitem__(self, arg2: int, arg3: Path | pxr.Ar.ResolvedPath | st... method __setitem__ (line 2381) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2383) | def expired(self): ... class ListProxy_SdfPayloadTypePolicy (line 2385) | class ListProxy_SdfPayloadTypePolicy(Boost.Python.instance): method __init__ (line 2386) | def __init__(self, *args, **kwargs) -> None: method ApplyEditsToList (line 2390) | def ApplyEditsToList(self, arg2: object, /) -> Any: ... method ApplyList (line 2391) | def ApplyList(self, arg2: ListProxy_SdfPayloadTypePolicy, /) -> None: ... method append (line 2392) | def append(self, arg2: Payload, /) -> None: ... method clear (line 2393) | def clear(self) -> None: ... method copy (line 2394) | def copy(self) -> list: ... method count (line 2395) | def count(self, arg2: Payload, /) -> int: ... method index (line 2396) | def index(self, arg2: Payload, /) -> int: ... method insert (line 2397) | def insert(self, arg2: int, arg3: Payload, /) -> None: ... method remove (line 2398) | def remove(self, arg2: Payload, /) -> None: ... method replace (line 2399) | def replace(self, arg2: Payload, arg3: Payload, /) -> None: ... method __delitem__ (line 2401) | def __delitem__(self, arg2: int, /) -> None: ... method __delitem__ (line 2403) | def __delitem__(self, arg2: object, /) -> None: ... method __delitem__ (line 2405) | def __delitem__(self, arg2: Payload, /) -> None: ... # type: ignore[o... method __eq__ (line 2406) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2407) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 2409) | def __getitem__(self, arg2: int, /) -> Payload: ... # type: ignore[ov... method __getitem__ (line 2411) | def __getitem__(self, arg2: object, /) -> list: ... method __gt__ (line 2412) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2413) | def __le__(self, other: object) -> bool: ... method __len__ (line 2414) | def __len__(self) -> int: ... method __lt__ (line 2415) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2416) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2418) | def __setitem__(self, arg2: int, arg3: Payload, /) -> None: ... method __setitem__ (line 2420) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2422) | def expired(self): ... class ListProxy_SdfReferenceTypePolicy (line 2424) | class ListProxy_SdfReferenceTypePolicy(Boost.Python.instance): method __init__ (line 2425) | def __init__(self, *args, **kwargs) -> None: method ApplyEditsToList (line 2429) | def ApplyEditsToList(self, arg2: object, /) -> Any: ... method ApplyList (line 2430) | def ApplyList(self, arg2: ListProxy_SdfReferenceTypePolicy, /) -> None... method append (line 2431) | def append(self, arg2: Reference, /) -> None: ... method clear (line 2432) | def clear(self) -> None: ... method copy (line 2433) | def copy(self) -> list: ... method count (line 2434) | def count(self, arg2: Reference, /) -> int: ... method index (line 2435) | def index(self, arg2: Reference, /) -> int: ... method insert (line 2436) | def insert(self, arg2: int, arg3: Reference, /) -> None: ... method remove (line 2437) | def remove(self, arg2: Reference, /) -> None: ... method replace (line 2438) | def replace(self, arg2: Reference, arg3: Reference, /) -> None: ... method __delitem__ (line 2440) | def __delitem__(self, arg2: int, /) -> None: ... method __delitem__ (line 2442) | def __delitem__(self, arg2: object, /) -> None: ... method __delitem__ (line 2444) | def __delitem__(self, arg2: Reference, /) -> None: ... # type: ignore... method __eq__ (line 2445) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2446) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 2448) | def __getitem__(self, arg2: int, /) -> Reference: ... # type: ignore[... method __getitem__ (line 2450) | def __getitem__(self, arg2: object, /) -> list: ... method __gt__ (line 2451) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2452) | def __le__(self, other: object) -> bool: ... method __len__ (line 2453) | def __len__(self) -> int: ... method __lt__ (line 2454) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2455) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2457) | def __setitem__(self, arg2: int, arg3: Reference, /) -> None: ... method __setitem__ (line 2459) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2461) | def expired(self): ... class ListProxy_SdfSubLayerTypePolicy (line 2463) | class ListProxy_SdfSubLayerTypePolicy(Boost.Python.instance): method __init__ (line 2464) | def __init__(self, *args, **kwargs) -> None: method ApplyEditsToList (line 2468) | def ApplyEditsToList(self, arg2: object, /) -> Any: ... method ApplyList (line 2469) | def ApplyList(self, arg2: ListProxy_SdfSubLayerTypePolicy, /) -> None:... method append (line 2470) | def append(self, arg2: object, /) -> None: ... method clear (line 2471) | def clear(self) -> None: ... method copy (line 2472) | def copy(self) -> list: ... method count (line 2473) | def count(self, arg2: object, /) -> int: ... method index (line 2474) | def index(self, arg2: object, /) -> int: ... method insert (line 2475) | def insert(self, arg2: int, arg3: object, /) -> None: ... method remove (line 2476) | def remove(self, arg2: object, /) -> None: ... method replace (line 2477) | def replace(self, arg2: object, arg3: object, /) -> None: ... method __delitem__ (line 2479) | def __delitem__(self, arg2: int, /) -> None: ... method __delitem__ (line 2481) | def __delitem__(self, arg2: object, /) -> None: ... method __eq__ (line 2482) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 2483) | def __ge__(self, other: object) -> bool: ... method __getitem__ (line 2485) | def __getitem__(self, arg2: int, /) -> str: ... # type: ignore[overlo... method __getitem__ (line 2487) | def __getitem__(self, arg2: object, /) -> list: ... method __gt__ (line 2488) | def __gt__(self, other: object) -> bool: ... method __le__ (line 2489) | def __le__(self, other: object) -> bool: ... method __len__ (line 2490) | def __len__(self) -> int: ... method __lt__ (line 2491) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 2492) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2494) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... method __setitem__ (line 2496) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2498) | def expired(self): ... class MapEditProxy_VtDictionary (line 2500) | class MapEditProxy_VtDictionary(Boost.Python.instance): class MapEditProxy_VtDictionary_Iterator (line 2501) | class MapEditProxy_VtDictionary_Iterator(Boost.Python.instance): method __init__ (line 2502) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2506) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2507) | def __next__(self) -> Any: ... class MapEditProxy_VtDictionary_KeyIterator (line 2509) | class MapEditProxy_VtDictionary_KeyIterator(Boost.Python.instance): method __init__ (line 2510) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2514) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2515) | def __next__(self) -> Any: ... class MapEditProxy_VtDictionary_ValueIterator (line 2517) | class MapEditProxy_VtDictionary_ValueIterator(Boost.Python.instance): method __init__ (line 2518) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2522) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2523) | def __next__(self) -> Any: ... method __init__ (line 2525) | def __init__(self) -> None: ... method clear (line 2526) | def clear(self) -> None: ... method copy (line 2527) | def copy(self, arg2: object, /) -> None: ... method get (line 2529) | def get(self, arg2: object, /) -> Any: ... method get (line 2531) | def get(self, arg2: object, arg3: object, /) -> Any: ... method items (line 2532) | def items(self) -> MapEditProxy_VtDictionary_Iterator: ... method keys (line 2533) | def keys(self) -> MapEditProxy_VtDictionary_KeyIterator: ... method pop (line 2534) | def pop(self, arg2: object, /) -> Any: ... method popitem (line 2535) | def popitem(self) -> tuple: ... method setdefault (line 2536) | def setdefault(self, arg2: object, arg3: object, /) -> Any: ... method update (line 2538) | def update(self, arg2: dict, /) -> None: ... method update (line 2540) | def update(self, arg2: list, /) -> None: ... method values (line 2541) | def values(self) -> MapEditProxy_VtDictionary_ValueIterator: ... method __bool__ (line 2542) | def __bool__(self) -> bool: ... method __contains__ (line 2543) | def __contains__(self, arg2: object, /) -> bool: ... method __delitem__ (line 2544) | def __delitem__(self, arg2: object, /) -> None: ... method __eq__ (line 2545) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2546) | def __getitem__(self, arg2: object, /) -> Any: ... method __iter__ (line 2547) | def __iter__(self) -> MapEditProxy_VtDictionary_KeyIterator: ... method __len__ (line 2548) | def __len__(self) -> int: ... method __ne__ (line 2549) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2550) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2552) | def expired(self): ... class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_allocator___1_pair_SdfPath_const__SdfPath___ (line 2554) | class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_allo... class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_allocator___1_pair_SdfPath_const__SdfPath____Iterator (line 2555) | class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_al... method __init__ (line 2556) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2560) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2561) | def __next__(self) -> Any: ... class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_allocator___1_pair_SdfPath_const__SdfPath____KeyIterator (line 2563) | class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_al... method __init__ (line 2564) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2568) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2569) | def __next__(self) -> Any: ... class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_allocator___1_pair_SdfPath_const__SdfPath____ValueIterator (line 2571) | class MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfPath_____1_al... method __init__ (line 2572) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2576) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2577) | def __next__(self) -> Any: ... method __init__ (line 2579) | def __init__(self) -> None: ... method clear (line 2580) | def clear(self) -> None: ... method copy (line 2581) | def copy(self, arg2: object, /) -> None: ... method get (line 2583) | def get(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> Any: ... method get (line 2585) | def get(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3: Path | pxr... method items (line 2586) | def items(self) -> MapEditProxy___1_map_SdfPath__SdfPath____1_less_Sdf... method keys (line 2587) | def keys(self) -> MapEditProxy___1_map_SdfPath__SdfPath____1_less_SdfP... method pop (line 2588) | def pop(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> Path: ... method popitem (line 2589) | def popitem(self) -> tuple: ... method setdefault (line 2590) | def setdefault(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3: Pat... method update (line 2592) | def update(self, arg2: dict, /) -> None: ... method update (line 2594) | def update(self, arg2: list, /) -> None: ... method values (line 2595) | def values(self) -> MapEditProxy___1_map_SdfPath__SdfPath____1_less_Sd... method __bool__ (line 2596) | def __bool__(self) -> bool: ... method __contains__ (line 2597) | def __contains__(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> b... method __delitem__ (line 2598) | def __delitem__(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> No... method __eq__ (line 2599) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2600) | def __getitem__(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> Pa... method __iter__ (line 2601) | def __iter__(self) -> MapEditProxy___1_map_SdfPath__SdfPath____1_less_... method __len__ (line 2602) | def __len__(self) -> int: ... method __ne__ (line 2603) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2604) | def __setitem__(self, arg2: Path | pxr.Ar.ResolvedPath | str, arg3: Pa... method expired (line 2606) | def expired(self): ... class MapEditProxy___1_map_string__string____1_less_string_____1_allocator___1_pair_stringconst__string___ (line 2608) | class MapEditProxy___1_map_string__string____1_less_string_____1_allocat... class MapEditProxy___1_map_string__string____1_less_string_____1_allocator___1_pair_stringconst__string____Iterator (line 2609) | class MapEditProxy___1_map_string__string____1_less_string_____1_alloc... method __init__ (line 2610) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2614) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2615) | def __next__(self) -> Any: ... class MapEditProxy___1_map_string__string____1_less_string_____1_allocator___1_pair_stringconst__string____KeyIterator (line 2617) | class MapEditProxy___1_map_string__string____1_less_string_____1_alloc... method __init__ (line 2618) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2622) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2623) | def __next__(self) -> Any: ... class MapEditProxy___1_map_string__string____1_less_string_____1_allocator___1_pair_stringconst__string____ValueIterator (line 2625) | class MapEditProxy___1_map_string__string____1_less_string_____1_alloc... method __init__ (line 2626) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 2630) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 2631) | def __next__(self) -> Any: ... method __init__ (line 2633) | def __init__(self) -> None: ... method clear (line 2634) | def clear(self) -> None: ... method copy (line 2635) | def copy(self, arg2: object, /) -> None: ... method get (line 2637) | def get(self, arg2: object, /) -> Any: ... method get (line 2639) | def get(self, arg2: object, arg3: object, /) -> str: ... method items (line 2640) | def items(self) -> MapEditProxy___1_map_string__string____1_less_strin... method keys (line 2641) | def keys(self) -> MapEditProxy___1_map_string__string____1_less_string... method pop (line 2642) | def pop(self, arg2: object, /) -> str: ... method popitem (line 2643) | def popitem(self) -> tuple: ... method setdefault (line 2644) | def setdefault(self, arg2: object, arg3: object, /) -> str: ... method update (line 2646) | def update(self, arg2: dict, /) -> None: ... method update (line 2648) | def update(self, arg2: list, /) -> None: ... method values (line 2649) | def values(self) -> MapEditProxy___1_map_string__string____1_less_stri... method __bool__ (line 2650) | def __bool__(self) -> bool: ... method __contains__ (line 2651) | def __contains__(self, arg2: object, /) -> bool: ... method __delitem__ (line 2652) | def __delitem__(self, arg2: object, /) -> None: ... method __eq__ (line 2653) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2654) | def __getitem__(self, arg2: object, /) -> str: ... method __iter__ (line 2655) | def __iter__(self) -> MapEditProxy___1_map_string__string____1_less_st... method __len__ (line 2656) | def __len__(self) -> int: ... method __ne__ (line 2657) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 2658) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method expired (line 2660) | def expired(self): ... class NamespaceEdit (line 2662) | class NamespaceEdit(Boost.Python.instance): method __init__ (line 2676) | def __init__(self) -> None: method __init__ (line 2681) | def __init__(self, _currentPath_: Path | pxr.Ar.ResolvedPath | str, _n... method Remove (line 2686) | def Remove(_currentPath: Path | pxr.Ar.ResolvedPath | str, /) -> Names... method Rename (line 2691) | def Rename(_currentPath: Path | pxr.Ar.ResolvedPath | str, _name: str ... method Reorder (line 2697) | def Reorder(_currentPath: Path | pxr.Ar.ResolvedPath | str, _index: in... method Reparent (line 2703) | def Reparent(_currentPath: Path | pxr.Ar.ResolvedPath | str, _newParen... method ReparentAndRename (line 2709) | def ReparentAndRename(_currentPath: Path | pxr.Ar.ResolvedPath | str, ... method __eq__ (line 2715) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 2716) | def __ne__(self, other: object) -> bool: ... class NamespaceEditDetail (line 2718) | class NamespaceEditDetail(Boost.Python.instance): class Result (line 2723) | class Result(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2726) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2731) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 2739) | def __init__(self) -> None: ... method __init__ (line 2741) | def __init__(self, _unknownArg1: VariableExpression.Result, _edit: Nam... method __eq__ (line 2742) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 2743) | def __ne__(self, other: object) -> bool: ... class Notice (line 2745) | class Notice(Boost.Python.instance): class Base (line 2746) | class Base(pxr.Tf.Notice): method __init__ (line 2747) | def __init__(self, *args, **kwargs) -> None: class LayerDidReloadContent (line 2752) | class LayerDidReloadContent(Notice.LayerDidReplaceContent): method __init__ (line 2753) | def __init__(self, *args, **kwargs) -> None: class LayerDidReplaceContent (line 2758) | class LayerDidReplaceContent(Notice.Base): method __init__ (line 2759) | def __init__(self, *args, **kwargs) -> None: class LayerDirtinessChanged (line 2764) | class LayerDirtinessChanged(Notice.Base): method __init__ (line 2765) | def __init__(self, *args, **kwargs) -> None: class LayerIdentifierDidChange (line 2770) | class LayerIdentifierDidChange(Notice.Base): method __init__ (line 2774) | def __init__(self, *args, **kwargs) -> None: method newIdentifier (line 2779) | def newIdentifier(self) -> str: method oldIdentifier (line 2784) | def oldIdentifier(self) -> str: class LayerInfoDidChange (line 2789) | class LayerInfoDidChange(Notice.Base): method __init__ (line 2793) | def __init__(self, *args, **kwargs) -> None: method key (line 2797) | def key(self) -> Any: ... class LayerMutenessChanged (line 2799) | class LayerMutenessChanged(Notice.Base): method __init__ (line 2808) | def __init__(self, *args, **kwargs) -> None: method layerPath (line 2813) | def layerPath(self) -> str: method wasMuted (line 2818) | def wasMuted(self): ... class LayersDidChange (line 2820) | class LayersDidChange(Notice.Base): method __init__ (line 2824) | def __init__(self, *args, **kwargs) -> None: method GetLayers (line 2828) | def GetLayers(self) -> list: ... method GetSerialNumber (line 2829) | def GetSerialNumber(self) -> int: ... class LayersDidChangeSentPerLayer (line 2831) | class LayersDidChangeSentPerLayer(Notice.Base): method __init__ (line 2843) | def __init__(self, *args, **kwargs) -> None: method GetLayers (line 2847) | def GetLayers(self) -> list: ... method GetSerialNumber (line 2848) | def GetSerialNumber(self) -> int: ... method __init__ (line 2849) | def __init__(self, *args, **kwargs) -> None: class OpaqueValue (line 2854) | class OpaqueValue(Boost.Python.instance): method __init__ (line 2870) | def __init__(self) -> None: ... method __eq__ (line 2871) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 2872) | def __hash__(self) -> int: ... method __ne__ (line 2873) | def __ne__(self, other: object) -> bool: ... class Path (line 2875) | class Path(Boost.Python.instance): class AncestorsRange (line 2968) | class AncestorsRange(Boost.Python.instance): class _iterator (line 2969) | class _iterator(Boost.Python.instance): method __init__ (line 2970) | def __init__(self, *args, **kwargs) -> None: method __next__ (line 2974) | def __next__(self) -> Path: ... method __init__ (line 2976) | def __init__(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> Non... method GetPath (line 2977) | def GetPath(self) -> Path: ... method __iter__ (line 2978) | def __iter__(self) -> _iterator: ... class _IsValidPathStringResult (line 2980) | class _IsValidPathStringResult(Boost.Python.instance): method __init__ (line 2982) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 2983) | def __bool__(self) -> bool: ... method __eq__ (line 2984) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2985) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 2986) | def __ne__(self, other: object) -> bool: ... method errorMessage (line 2988) | def errorMessage(self): ... method __init__ (line 3004) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 3006) | def __init__(self, arg2: Path | pxr.Ar.ResolvedPath | str = ..., /) ->... method AppendChild (line 3007) | def AppendChild(self, _childName: str | pxr.Ar.ResolvedPath, /) -> Path: method AppendElementString (line 3015) | def AppendElementString(self, _element: str | pxr.Ar.ResolvedPath, /) ... method AppendExpression (line 3028) | def AppendExpression(self) -> Path: method AppendMapper (line 3035) | def AppendMapper(self, _targetPath: Path | pxr.Ar.ResolvedPath | str, ... method AppendMapperArg (line 3042) | def AppendMapperArg(self, _argName: str | pxr.Ar.ResolvedPath, /) -> P... method AppendPath (line 3049) | def AppendPath(self, _newSuffix: Path | pxr.Ar.ResolvedPath | str, /) ... method AppendProperty (line 3060) | def AppendProperty(self, _propName: str | pxr.Ar.ResolvedPath, /) -> P... method AppendRelationalAttribute (line 3067) | def AppendRelationalAttribute(self, _attrName: str | pxr.Ar.ResolvedPa... method AppendTarget (line 3074) | def AppendTarget(self, _targetPath: Path | pxr.Ar.ResolvedPath | str, ... method AppendVariantSelection (line 3081) | def AppendVariantSelection(self, _variantSet: str | pxr.Ar.ResolvedPat... method ContainsPrimVariantSelection (line 3089) | def ContainsPrimVariantSelection(self) -> bool: method ContainsPropertyElements (line 3094) | def ContainsPropertyElements(self) -> bool: method ContainsTargetPath (line 3105) | def ContainsTargetPath(self) -> bool: method FindLongestPrefix (line 3111) | def FindLongestPrefix(arg2: Path | pxr.Ar.ResolvedPath | str, /) -> An... method FindLongestStrictPrefix (line 3113) | def FindLongestStrictPrefix(arg2: Path | pxr.Ar.ResolvedPath | str, /)... method FindPrefixedRange (line 3115) | def FindPrefixedRange(arg2: Path | pxr.Ar.ResolvedPath | str, /) -> Any: method GetAbsoluteRootOrPrimPath (line 3127) | def GetAbsoluteRootOrPrimPath(self) -> Path: method GetAllTargetPathsRecursively (line 3136) | def GetAllTargetPathsRecursively(self) -> list: method GetAncestorsRange (line 3147) | def GetAncestorsRange(self) -> AncestorsRange: method GetCommonPrefix (line 3156) | def GetCommonPrefix(self, _path: Path | pxr.Ar.ResolvedPath | str, /) ... method GetConciseRelativePaths (line 3162) | def GetConciseRelativePaths(_paths: typing.Iterable[Path | pxr.Ar.Reso... method GetParentPath (line 3171) | def GetParentPath(self) -> Path: method GetPrefixes (line 3198) | def GetPrefixes(self, numPrefixes: int = ...) -> list[Path]: method GetPrimOrPrimVariantSelectionPath (line 3210) | def GetPrimOrPrimVariantSelectionPath(self) -> Path: method GetPrimPath (line 3222) | def GetPrimPath(self) -> Path: method GetVariantSelection (line 3233) | def GetVariantSelection(self) -> tuple: method HasPrefix (line 3242) | def HasPrefix(self, _prefix: Path | pxr.Ar.ResolvedPath | str, /) -> b... method IsAbsolutePath (line 3250) | def IsAbsolutePath(self) -> bool: method IsAbsoluteRootOrPrimPath (line 3254) | def IsAbsoluteRootOrPrimPath(self) -> bool: method IsAbsoluteRootPath (line 3258) | def IsAbsoluteRootPath(self) -> bool: method IsExpressionPath (line 3262) | def IsExpressionPath(self) -> bool: method IsMapperArgPath (line 3266) | def IsMapperArgPath(self) -> bool: method IsMapperPath (line 3270) | def IsMapperPath(self) -> bool: method IsNamespacedPropertyPath (line 3274) | def IsNamespacedPropertyPath(self) -> bool: method IsPrimPath (line 3281) | def IsPrimPath(self) -> bool: method IsPrimPropertyPath (line 3285) | def IsPrimPropertyPath(self) -> bool: method IsPrimVariantSelectionPath (line 3292) | def IsPrimVariantSelectionPath(self) -> bool: method IsPropertyPath (line 3296) | def IsPropertyPath(self) -> bool: method IsRelationalAttributePath (line 3305) | def IsRelationalAttributePath(self) -> bool: method IsRootPrimPath (line 3312) | def IsRootPrimPath(self) -> bool: method IsTargetPath (line 3320) | def IsTargetPath(self) -> bool: method IsValidIdentifier (line 3326) | def IsValidIdentifier(_name: str | pxr.Ar.ResolvedPath, /) -> bool: method IsValidNamespacedIdentifier (line 3331) | def IsValidNamespacedIdentifier(_name: str | pxr.Ar.ResolvedPath, /) -... method IsValidPathString (line 3339) | def IsValidPathString(_pathString: str | pxr.Ar.ResolvedPath, /) -> _I... method JoinIdentifier (line 3351) | def JoinIdentifier(_lhs: str | pxr.Ar.ResolvedPath, _rhs: str | pxr.Ar... method JoinIdentifier (line 3362) | def JoinIdentifier(arg1: object, /) -> str: ... method MakeAbsolutePath (line 3364) | def MakeAbsolutePath(self, _anchor: Path | pxr.Ar.ResolvedPath | str, ... method MakeAbsolutePath (line 3378) | def MakeAbsolutePath(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) ... method MakeRelativePath (line 3380) | def MakeRelativePath(self, _anchor: Path | pxr.Ar.ResolvedPath | str, ... method MakeRelativePath (line 3397) | def MakeRelativePath(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) ... method RemoveAncestorPaths (line 3399) | def RemoveAncestorPaths(_paths: list[Path] | list[pxr.Ar.ResolvedPath]... method RemoveCommonSuffix (line 3406) | def RemoveCommonSuffix(self, _otherPath: Path | pxr.Ar.ResolvedPath | ... method RemoveDescendentPaths (line 3425) | def RemoveDescendentPaths(_paths: list[Path] | list[pxr.Ar.ResolvedPat... method ReplaceName (line 3433) | def ReplaceName(self, _newName: str | pxr.Ar.ResolvedPath, /) -> Path: method ReplacePrefix (line 3458) | def ReplacePrefix(self, oldPrefix: Path | pxr.Ar.ResolvedPath | str, n... method ReplaceTargetPath (line 3471) | def ReplaceTargetPath(self, _newTargetPath: Path | pxr.Ar.ResolvedPath... method StripAllVariantSelections (line 3478) | def StripAllVariantSelections(self) -> Path: method StripNamespace (line 3484) | def StripNamespace(_name: str | pxr.Ar.ResolvedPath, /) -> str: method StripPrefixNamespace (line 3493) | def StripPrefixNamespace(_name: str | pxr.Ar.ResolvedPath, _matchNames... method TokenizeIdentifier (line 3506) | def TokenizeIdentifier(_name: str | pxr.Ar.ResolvedPath, /) -> list[str]: method __bool__ (line 3514) | def __bool__(self) -> bool: ... method __eq__ (line 3515) | def __eq__(self, other: object) -> bool: method __ge__ (line 3519) | def __ge__(self, other: object) -> bool: method __gt__ (line 3527) | def __gt__(self, other: object) -> bool: method __hash__ (line 3535) | def __hash__(self) -> int: ... method __le__ (line 3536) | def __le__(self, other: object) -> bool: method __lt__ (line 3544) | def __lt__(self, other: object) -> bool: method __ne__ (line 3551) | def __ne__(self, other: object) -> bool: ... method elementString (line 3553) | def elementString(self) -> str: method isEmpty (line 3576) | def isEmpty(self) -> bool: method name (line 3581) | def name(self) -> str: method pathElementCount (line 3597) | def pathElementCount(self) -> int: method pathString (line 3602) | def pathString(self): ... method targetPath (line 3604) | def targetPath(self) -> Path: class PathArray (line 3619) | class PathArray(Boost.Python.instance): method __init__ (line 3623) | def __init__(self) -> None: method __init__ (line 3634) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3645) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3656) | def __init__(self, size: int) -> None: method __eq__ (line 3666) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3668) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3670) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3671) | def __iter__(self) -> Any: ... method __len__ (line 3672) | def __len__(self) -> int: ... method __ne__ (line 3673) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 3675) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3677) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class PathExpression (line 3679) | class PathExpression(Boost.Python.instance): class ExpressionReference (line 3714) | class ExpressionReference(Boost.Python.instance): method __init__ (line 3723) | def __init__(self) -> None: ... method Weaker (line 3725) | def Weaker() -> PathExpression.ExpressionReference: method __eq__ (line 3734) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 3735) | def __hash__(self) -> int: ... method __ne__ (line 3736) | def __ne__(self, other: object) -> bool: ... class Op (line 3738) | class Op(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 3741) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 3746) | def GetValueFromName(name: object) -> Any: ... class PathPattern (line 3748) | class PathPattern(Boost.Python.instance): method __init__ (line 3756) | def __init__(self) -> None: method AppendChild (line 3761) | def AppendChild(self, text: str | pxr.Ar.ResolvedPath, predExpr: Pre... method AppendProperty (line 3773) | def AppendProperty(self, text: str | pxr.Ar.ResolvedPath, predExpr: ... method GetPrefix (line 3785) | def GetPrefix(self) -> Path: method GetText (line 3790) | def GetText(self) -> str: method SetPrefix (line 3794) | def SetPrefix(self, prefix: Path | pxr.Ar.ResolvedPath | str) -> None: method __bool__ (line 3799) | def __bool__(self) -> bool: method __eq__ (line 3803) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 3804) | def __hash__(self) -> int: ... method __ne__ (line 3805) | def __ne__(self, other: object) -> bool: ... method __init__ (line 3815) | def __init__(self) -> None: method __init__ (line 3824) | def __init__(self, patternString: str | pxr.Ar.ResolvedPath, parseCont... method __init__ (line 3834) | def __init__(self, arg2: PathExpression, /) -> None: ... method ComposeOver (line 3835) | def ComposeOver(self, weaker: PathExpression) -> PathExpression: method ContainsExpressionReferences (line 3846) | def ContainsExpressionReferences(self) -> bool: method ContainsWeakerExpressionReference (line 3851) | def ContainsWeakerExpressionReference(self) -> bool: method Everything (line 3860) | def Everything() -> PathExpression: method GetText (line 3864) | def GetText(self) -> str: method IsAbsolute (line 3869) | def IsAbsolute(self) -> bool: method IsComplete (line 3878) | def IsComplete(self) -> bool: method IsEmpty (line 3891) | def IsEmpty(self) -> bool: method MakeAbsolute (line 3898) | def MakeAbsolute(self, anchor: Path | pxr.Ar.ResolvedPath | str) -> Pa... method MakeAtom (line 3905) | def MakeAtom(ref: PathExpression.ExpressionReference) -> PathExpression: method MakeAtom (line 3911) | def MakeAtom(pattern: PathExpression.PathPattern) -> PathExpression: method MakeComplement (line 3916) | def MakeComplement(right: PathExpression) -> PathExpression: method MakeOp (line 3921) | def MakeOp(op: PathExpression.Op, left: PathExpression, right: PathExp... method Nothing (line 3931) | def Nothing() -> PathExpression: method ReplacePrefix (line 3938) | def ReplacePrefix(self, oldPrefix: Path | pxr.Ar.ResolvedPath | str, n... method ResolveReferences (line 3943) | def ResolveReferences(self, resolve: typing.Callable) -> PathExpression: method Walk (line 3954) | def Walk(self, logic: typing.Callable, ref: typing.Callable, pattern: ... method WeakerRef (line 3982) | def WeakerRef() -> PathExpression: method __bool__ (line 3988) | def __bool__(self) -> bool: method __eq__ (line 3993) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 3994) | def __hash__(self) -> int: ... method __ne__ (line 3995) | def __ne__(self, other: object) -> bool: ... class PathListOp (line 3997) | class PathListOp(Boost.Python.instance): method __init__ (line 4005) | def __init__(self) -> None: ... method ApplyOperations (line 4007) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 4009) | def ApplyOperations(self, arg2: PathListOp, /) -> Any: ... # type: ig... method Clear (line 4010) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 4011) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 4013) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 4015) | def CreateExplicit(explicitItems: object = ...) -> PathListOp: ... method GetAddedOrExplicitItems (line 4016) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 4017) | def GetAppliedItems(self) -> Any: ... method HasItem (line 4018) | def HasItem(self, arg2: Path | pxr.Ar.ResolvedPath | str, /) -> bool: ... method __eq__ (line 4019) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 4020) | def __hash__(self) -> int: ... method __ne__ (line 4021) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 4023) | def isExplicit(self): ... class Payload (line 4025) | class Payload(Boost.Python.instance): method __init__ (line 4043) | def __init__(self, assetPath: str | pxr.Ar.ResolvedPath = ..., primPat... method __init__ (line 4053) | def __init__(self, arg2: Payload, /) -> None: ... method __eq__ (line 4054) | def __eq__(self, other: object) -> bool: method __ge__ (line 4058) | def __ge__(self, other: object) -> bool: method __gt__ (line 4063) | def __gt__(self, other: object) -> bool: method __hash__ (line 4068) | def __hash__(self) -> int: ... method __le__ (line 4069) | def __le__(self, other: object) -> bool: method __lt__ (line 4074) | def __lt__(self, other: object) -> bool: method __ne__ (line 4081) | def __ne__(self, other: object) -> bool: ... class PayloadListOp (line 4083) | class PayloadListOp(Boost.Python.instance): method __init__ (line 4091) | def __init__(self) -> None: ... method ApplyOperations (line 4093) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 4095) | def ApplyOperations(self, arg2: PayloadListOp, /) -> Any: ... # type:... method Clear (line 4096) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 4097) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 4099) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 4101) | def CreateExplicit(explicitItems: object = ...) -> PayloadListOp: ... method GetAddedOrExplicitItems (line 4102) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 4103) | def GetAppliedItems(self) -> Any: ... method HasItem (line 4104) | def HasItem(self, arg2: Payload, /) -> bool: ... method __eq__ (line 4105) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 4106) | def __hash__(self) -> int: ... method __ne__ (line 4107) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 4109) | def isExplicit(self): ... class Permission (line 4111) | class Permission(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 4114) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 4119) | def GetValueFromName(name: object) -> Any: ... class PredicateExpression (line 4121) | class PredicateExpression(Boost.Python.instance): class FnArg (line 4177) | class FnArg(Boost.Python.instance): method __init__ (line 4188) | def __init__(self) -> None: ... method __init__ (line 4190) | def __init__(self, arg2: PredicateExpression.FnArg, /) -> None: ... method Keyword (line 4192) | def Keyword(name: str | pxr.Ar.ResolvedPath, value: Any) -> Predicat... method Positional (line 4194) | def Positional(value: Any) -> PredicateExpression.FnArg: ... method __eq__ (line 4195) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 4196) | def __hash__(self) -> int: ... method __ne__ (line 4197) | def __ne__(self, other: object) -> bool: ... class FnCall (line 4199) | class FnCall(Boost.Python.instance): class Kind (line 4205) | class Kind(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 4208) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 4213) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 4222) | def __init__(self) -> None: ... method __init__ (line 4224) | def __init__(self, arg2: PredicateExpression.FnCall, /) -> None: ... method __eq__ (line 4225) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 4226) | def __hash__(self) -> int: ... method __ne__ (line 4227) | def __ne__(self, other: object) -> bool: ... class Op (line 4229) | class Op(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 4232) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 4237) | def GetValueFromName(name: object) -> Any: ... class _PredicateExpressionFnArgVector (line 4239) | class _PredicateExpressionFnArgVector(Boost.Python.instance): method __init__ (line 4241) | def __init__(self) -> None: ... method append (line 4242) | def append(self, arg2: object, /) -> None: ... method extend (line 4243) | def extend(self, arg2: object, /) -> None: ... method __contains__ (line 4244) | def __contains__(self, arg2: object, /) -> bool: ... method __delitem__ (line 4245) | def __delitem__(self, arg2: object, /) -> None: ... method __getitem__ (line 4246) | def __getitem__(self, arg2: object, /) -> Any: ... method __iter__ (line 4247) | def __iter__(self) -> Any: ... method __len__ (line 4248) | def __len__(self) -> int: ... method __setitem__ (line 4249) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __init__ (line 4257) | def __init__(self) -> None: method __init__ (line 4262) | def __init__(self, _unknownArg1: PredicateExpression, /) -> None: method __init__ (line 4267) | def __init__(self, exprString: str | pxr.Ar.ResolvedPath, context: str... method GetParseError (line 4276) | def GetParseError(self) -> str: method GetText (line 4281) | def GetText(self) -> str: method IsEmpty (line 4286) | def IsEmpty(self) -> bool: method MakeCall (line 4294) | def MakeCall(call: PredicateExpression.FnCall) -> PredicateExpression: method MakeNot (line 4299) | def MakeNot(right: PredicateExpression) -> PredicateExpression: method MakeOp (line 4304) | def MakeOp(op: PathExpression.Op, left: PredicateExpression, right: Pr... method Walk (line 4312) | def Walk(self, logic: typing.Callable, call: typing.Callable) -> None: method __bool__ (line 4333) | def __bool__(self) -> bool: method __eq__ (line 4338) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 4339) | def __hash__(self) -> int: ... method __ne__ (line 4340) | def __ne__(self, other: object) -> bool: ... class PredicateFunctionResult (line 4342) | class PredicateFunctionResult(Boost.Python.instance): class Constancy (line 4350) | class Constancy(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 4353) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 4358) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 4363) | def __init__(self) -> None: method __init__ (line 4369) | def __init__(self, _value: PredicateFunctionResult, /) -> None: method __init__ (line 4374) | def __init__(self, value: bool, constancy: PredicateFunctionResult.Con... method GetConstancy (line 4378) | def GetConstancy(self) -> PredicateFunctionResult.Constancy: method GetValue (line 4382) | def GetValue(self) -> bool: method IsConstant (line 4386) | def IsConstant(self) -> bool: method MakeConstant (line 4391) | def MakeConstant(value: bool) -> PredicateFunctionResult: method MakeVarying (line 4396) | def MakeVarying(value: bool) -> PredicateFunctionResult: method SetAndPropagateConstancy (line 4400) | def SetAndPropagateConstancy(self, _other: PredicateFunctionResult, /)... method __bool__ (line 4409) | def __bool__(self) -> bool: ... method __eq__ (line 4410) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 4411) | def __ne__(self, other: object) -> bool: ... class PrimSpec (line 4413) | class PrimSpec(Spec): method __init__ (line 4491) | def __init__(self, parentLayer: Layer, name: str, spec: Specifier, typ... method __init__ (line 4500) | def __init__(self, parentPrim: PrimSpec, name: str, spec: Specifier, t... method ApplyNameChildrenOrder (line 4511) | def ApplyNameChildrenOrder(self, _vec: list[str] | list[pxr.Ar.Resolve... method ApplyPropertyOrder (line 4520) | def ApplyPropertyOrder(self, _vec: list[str] | list[pxr.Ar.ResolvedPat... method BlockVariantSelection (line 4529) | def BlockVariantSelection(self, _variantSetName: str | pxr.Ar.Resolved... method CanSetName (line 4534) | def CanSetName(self, _newName: str | pxr.Ar.ResolvedPath, /) -> bool: method ClearActive (line 4543) | def ClearActive(self) -> None: method ClearInstanceable (line 4547) | def ClearInstanceable(self) -> None: method ClearKind (line 4551) | def ClearKind(self) -> None: method ClearPayloadList (line 4555) | def ClearPayloadList(self) -> None: method ClearReferenceList (line 4559) | def ClearReferenceList(self) -> None: method GetAttributeAtPath (line 4563) | def GetAttributeAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, ... method GetObjectAtPath (line 4571) | def GetObjectAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /) ... method GetPrimAtPath (line 4582) | def GetPrimAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /) ->... method GetPropertyAtPath (line 4590) | def GetPropertyAtPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /... method GetRelationshipAtPath (line 4598) | def GetRelationshipAtPath(self, _path: Path | pxr.Ar.ResolvedPath | st... method GetVariantNames (line 4606) | def GetVariantNames(self, _name: str | pxr.Ar.ResolvedPath, /) -> list... method HasActive (line 4610) | def HasActive(self) -> bool: method HasInstanceable (line 4614) | def HasInstanceable(self) -> bool: method HasKind (line 4619) | def HasKind(self) -> bool: method RemoveProperty (line 4623) | def RemoveProperty(self, _property: PropertySpec, /) -> None: method __bool__ (line 4627) | def __bool__(self) -> bool: ... method __eq__ (line 4628) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4629) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4630) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4631) | def __hash__(self) -> int: ... method __le__ (line 4632) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4633) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4634) | def __ne__(self, other: object) -> bool: ... method attributes (line 4636) | def attributes(self) -> ChildrenView_Sdf_AttributeChildPolicy_SdfAttri... method expired (line 4641) | def expired(self): ... method hasPayloads (line 4643) | def hasPayloads(self): ... method hasReferences (line 4645) | def hasReferences(self): ... method inheritPathList (line 4647) | def inheritPathList(self) -> ListEditorProxy_SdfPathKeyPolicy: method nameChildren (line 4655) | def nameChildren(self) -> ChildrenView_Sdf_PrimChildPolicy_SdfChildren... method nameParent (line 4660) | def nameParent(self) -> PrimSpec: method nameRoot (line 4671) | def nameRoot(self) -> PrimSpec: method payloadList (line 4676) | def payloadList(self) -> ListEditorProxy_SdfPayloadTypePolicy: method properties (line 4684) | def properties(self) -> ChildrenView_Sdf_PropertyChildPolicy_SdfChildr... method realNameParent (line 4689) | def realNameParent(self) -> PrimSpec: method referenceList (line 4694) | def referenceList(self) -> ListEditorProxy_SdfReferenceTypePolicy: method relationships (line 4702) | def relationships(self) -> ChildrenView_Sdf_RelationshipChildPolicy_Sd... method specializesList (line 4707) | def specializesList(self) -> ListEditorProxy_SdfPathKeyPolicy: method variantSelections (line 4715) | def variantSelections(self) -> MapEditProxy_SdfVariantSelectionMap: #... method variantSetNameList (line 4721) | def variantSetNameList(self) -> ListEditorProxy_SdfNameKeyPolicy: method variantSets (line 4729) | def variantSets(self) -> ChildrenProxy_SdfVariantSetView: # type: ign... class PropertySpec (line 4738) | class PropertySpec(Spec): method __init__ (line 4780) | def __init__(self, *args, **kwargs) -> None: method ClearDefaultValue (line 4784) | def ClearDefaultValue(self) -> None: method HasDefaultValue (line 4788) | def HasDefaultValue(self) -> bool: method __bool__ (line 4792) | def __bool__(self) -> bool: ... method __eq__ (line 4793) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4794) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4795) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4796) | def __hash__(self) -> int: ... method __le__ (line 4797) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4798) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4799) | def __ne__(self, other: object) -> bool: ... method expired (line 4801) | def expired(self): ... method hasOnlyRequiredFields (line 4803) | def hasOnlyRequiredFields(self): ... method owner (line 4805) | def owner(self) -> Spec: method variability (line 4810) | def variability(self) -> Variability: class PseudoRootSpec (line 4842) | class PseudoRootSpec(PrimSpec): method __init__ (line 4843) | def __init__(self, *args, **kwargs) -> None: method __bool__ (line 4847) | def __bool__(self) -> bool: ... method __eq__ (line 4848) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 4849) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 4850) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 4851) | def __hash__(self) -> int: ... method __le__ (line 4852) | def __le__(self, other: object) -> bool: ... method __lt__ (line 4853) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 4854) | def __ne__(self, other: object) -> bool: ... method expired (line 4856) | def expired(self): ... class Reference (line 4858) | class Reference(Boost.Python.instance): method __init__ (line 4889) | def __init__(self, assetPath: str | pxr.Ar.ResolvedPath = ..., primPat... method __init__ (line 4900) | def __init__(self, arg2: Reference, /) -> None: ... method IsInternal (line 4901) | def IsInternal(self) -> bool: method __eq__ (line 4908) | def __eq__(self, other: object) -> bool: method __ge__ (line 4912) | def __ge__(self, other: object) -> bool: method __gt__ (line 4917) | def __gt__(self, other: object) -> bool: method __hash__ (line 4922) | def __hash__(self) -> int: ... method __le__ (line 4923) | def __le__(self, other: object) -> bool: method __lt__ (line 4928) | def __lt__(self, other: object) -> bool: method __ne__ (line 4935) | def __ne__(self, other: object) -> bool: ... method assetPath (line 4937) | def assetPath(self) -> str: method customData (line 4946) | def customData(self) -> dict: method layerOffset (line 4951) | def layerOffset(self) -> LayerOffset: method primPath (line 4956) | def primPath(self) -> Path: class ReferenceListOp (line 4965) | class ReferenceListOp(Boost.Python.instance): method __init__ (line 4973) | def __init__(self) -> None: ... method ApplyOperations (line 4975) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 4977) | def ApplyOperations(self, arg2: ReferenceListOp, /) -> Any: ... # typ... method Clear (line 4978) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 4979) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 4981) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 4983) | def CreateExplicit(explicitItems: object = ...) -> ReferenceListOp: ... method GetAddedOrExplicitItems (line 4984) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 4985) | def GetAppliedItems(self) -> Any: ... method HasItem (line 4986) | def HasItem(self, arg2: Reference, /) -> bool: ... method __eq__ (line 4987) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 4988) | def __hash__(self) -> int: ... method __ne__ (line 4989) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 4991) | def isExplicit(self): ... class RelationshipSpec (line 4993) | class RelationshipSpec(PropertySpec): method __init__ (line 5011) | def __init__(self, owner: PrimSpec, name: str, custom: bool = ..., var... method RemoveTargetPath (line 5019) | def RemoveTargetPath(self, _path: Path | pxr.Ar.ResolvedPath | str, /,... method ReplaceTargetPath (line 5029) | def ReplaceTargetPath(self, _oldPath: Path | pxr.Ar.ResolvedPath | str... method __bool__ (line 5037) | def __bool__(self) -> bool: ... method __eq__ (line 5038) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5039) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5040) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5041) | def __hash__(self) -> int: ... method __le__ (line 5042) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5043) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5044) | def __ne__(self, other: object) -> bool: ... method expired (line 5046) | def expired(self): ... method targetPathList (line 5048) | def targetPathList(self) -> ListEditorProxy_SdfPathKeyPolicy: class Spec (line 5057) | class Spec(Boost.Python.instance): method __init__ (line 5061) | def __init__(self, *args, **kwargs) -> None: method ClearInfo (line 5065) | def ClearInfo(self, key: str | pxr.Ar.ResolvedPath) -> None: method GetAsText (line 5076) | def GetAsText(self) -> str: ... method GetFallbackForInfo (line 5077) | def GetFallbackForInfo(self, _key: str | pxr.Ar.ResolvedPath, /) -> Any: method GetInfo (line 5081) | def GetInfo(self, _key: str | pxr.Ar.ResolvedPath, /) -> Any: method GetMetaDataDisplayGroup (line 5089) | def GetMetaDataDisplayGroup(self, _key: str | pxr.Ar.ResolvedPath, /) ... method GetMetaDataInfoKeys (line 5093) | def GetMetaDataInfoKeys(self) -> list[str]: method GetTypeForInfo (line 5104) | def GetTypeForInfo(self, _key: str | pxr.Ar.ResolvedPath, /) -> pxr.Tf... method HasInfo (line 5108) | def HasInfo(self, _key: str | pxr.Ar.ResolvedPath, /) -> bool: method IsInert (line 5128) | def IsInert(self, ignoreChildren: bool = ...) -> bool: method ListInfoKeys (line 5139) | def ListInfoKeys(self) -> list[str]: method SetInfo (line 5147) | def SetInfo(self, _key: str | pxr.Ar.ResolvedPath, _value: Any, /) -> ... method SetInfoDictionaryValue (line 5158) | def SetInfoDictionaryValue(self, _dictionaryKey: str | pxr.Ar.Resolved... method __bool__ (line 5163) | def __bool__(self) -> bool: ... method __eq__ (line 5164) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5165) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5166) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5167) | def __hash__(self) -> int: ... method __le__ (line 5168) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5169) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5170) | def __ne__(self, other: object) -> bool: ... method expired (line 5172) | def expired(self): ... method isInert (line 5174) | def isInert(self): method layer (line 5186) | def layer(self) -> Layer: method path (line 5191) | def path(self) -> Path: class SpecType (line 5196) | class SpecType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 5199) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 5204) | def GetValueFromName(name: object) -> Any: ... class Specifier (line 5206) | class Specifier(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 5209) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 5214) | def GetValueFromName(name: object) -> Any: ... class StringListOp (line 5216) | class StringListOp(Boost.Python.instance): method __init__ (line 5224) | def __init__(self) -> None: ... method ApplyOperations (line 5226) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 5228) | def ApplyOperations(self, arg2: StringListOp, /) -> Any: ... # type: ... method Clear (line 5229) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 5230) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 5232) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 5234) | def CreateExplicit(explicitItems: object = ...) -> StringListOp: ... method GetAddedOrExplicitItems (line 5235) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 5236) | def GetAppliedItems(self) -> Any: ... method HasItem (line 5237) | def HasItem(self, arg2: object, /) -> bool: ... method __eq__ (line 5238) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5239) | def __hash__(self) -> int: ... method __ne__ (line 5240) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 5242) | def isExplicit(self): ... class TimeCode (line 5244) | class TimeCode(Boost.Python.instance): method __init__ (line 5254) | def __init__(self, _time: float, /) -> None: method __init__ (line 5263) | def __init__(self) -> None: ... method GetValue (line 5264) | def GetValue(self) -> float: method __add__ (line 5268) | def __add__(self, arg2: TimeCode | float, /) -> Any: ... method __bool__ (line 5269) | def __bool__(self) -> bool: ... method __eq__ (line 5270) | def __eq__(self, other: object) -> bool: ... method __float__ (line 5271) | def __float__(self) -> float: ... method __ge__ (line 5272) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5273) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5274) | def __hash__(self) -> int: ... method __le__ (line 5275) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5276) | def __lt__(self, other: object) -> bool: ... method __mul__ (line 5277) | def __mul__(self, arg2: TimeCode | float, /) -> Any: ... method __ne__ (line 5278) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 5279) | def __radd__(self, arg2: float, /) -> Any: ... method __rmul__ (line 5280) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 5281) | def __rsub__(self, arg2: float, /) -> Any: ... method __rtruediv__ (line 5282) | def __rtruediv__(self, arg2: float, /) -> Any: ... method __sub__ (line 5283) | def __sub__(self, arg2: TimeCode | float, /) -> Any: ... method __truediv__ (line 5284) | def __truediv__(self, arg2: TimeCode | float, /) -> Any: ... class TimeCodeArray (line 5286) | class TimeCodeArray(Boost.Python.instance): method __init__ (line 5290) | def __init__(self) -> None: method __init__ (line 5301) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 5312) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 5323) | def __init__(self, size: int) -> None: method __eq__ (line 5333) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 5335) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 5337) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 5338) | def __iter__(self) -> Any: ... method __len__ (line 5339) | def __len__(self) -> int: ... method __ne__ (line 5340) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 5342) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 5344) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class TokenListOp (line 5346) | class TokenListOp(Boost.Python.instance): method __init__ (line 5354) | def __init__(self) -> None: ... method ApplyOperations (line 5356) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 5358) | def ApplyOperations(self, arg2: TokenListOp, /) -> Any: ... # type: i... method Clear (line 5359) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 5360) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 5362) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 5364) | def CreateExplicit(explicitItems: object = ...) -> TokenListOp: ... method GetAddedOrExplicitItems (line 5365) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 5366) | def GetAppliedItems(self) -> Any: ... method HasItem (line 5367) | def HasItem(self, arg2: object, /) -> bool: ... method __eq__ (line 5368) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5369) | def __hash__(self) -> int: ... method __ne__ (line 5370) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 5372) | def isExplicit(self): ... class UInt64ListOp (line 5374) | class UInt64ListOp(Boost.Python.instance): method __init__ (line 5382) | def __init__(self) -> None: ... method ApplyOperations (line 5384) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 5386) | def ApplyOperations(self, arg2: UInt64ListOp, /) -> Any: ... # type: ... method Clear (line 5387) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 5388) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 5390) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 5392) | def CreateExplicit(explicitItems: object = ...) -> UInt64ListOp: ... method GetAddedOrExplicitItems (line 5393) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 5394) | def GetAppliedItems(self) -> Any: ... method HasItem (line 5395) | def HasItem(self, arg2: int, /) -> bool: ... method __eq__ (line 5396) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5397) | def __hash__(self) -> int: ... method __ne__ (line 5398) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 5400) | def isExplicit(self): ... class UIntListOp (line 5402) | class UIntListOp(Boost.Python.instance): method __init__ (line 5410) | def __init__(self) -> None: ... method ApplyOperations (line 5412) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 5414) | def ApplyOperations(self, arg2: UIntListOp, /) -> Any: ... # type: ig... method Clear (line 5415) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 5416) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 5418) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 5420) | def CreateExplicit(explicitItems: object = ...) -> UIntListOp: ... method GetAddedOrExplicitItems (line 5421) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 5422) | def GetAppliedItems(self) -> Any: ... method HasItem (line 5423) | def HasItem(self, arg2: int, /) -> bool: ... method __eq__ (line 5424) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5425) | def __hash__(self) -> int: ... method __ne__ (line 5426) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 5428) | def isExplicit(self): ... class UnregisteredValue (line 5430) | class UnregisteredValue(Boost.Python.instance): method __init__ (line 5443) | def __init__(self) -> None: method __init__ (line 5448) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 5450) | def __init__(self, arg2: UnregisteredValue, /) -> None: ... # type: i... method __init__ (line 5452) | def __init__(self, arg2: UnregisteredValueListOp, /) -> None: ... # t... method __eq__ (line 5453) | def __eq__(self, other: object) -> bool: method __hash__ (line 5457) | def __hash__(self) -> int: ... method __ne__ (line 5458) | def __ne__(self, other: object) -> bool: ... method value (line 5460) | def value(self) -> Any: class UnregisteredValueListOp (line 5465) | class UnregisteredValueListOp(Boost.Python.instance): method __init__ (line 5473) | def __init__(self) -> None: ... method ApplyOperations (line 5475) | def ApplyOperations(self, arg2: object, /) -> Any: ... method ApplyOperations (line 5477) | def ApplyOperations(self, arg2: UnregisteredValueListOp, /) -> Any: ..... method Clear (line 5478) | def Clear(self) -> None: ... method ClearAndMakeExplicit (line 5479) | def ClearAndMakeExplicit(self) -> None: ... method Create (line 5481) | def Create(prependedItems: object = ..., appendedItems: object = ..., ... method CreateExplicit (line 5483) | def CreateExplicit(explicitItems: object = ...) -> UnregisteredValueLi... method GetAddedOrExplicitItems (line 5484) | def GetAddedOrExplicitItems(self) -> Any: ... method GetAppliedItems (line 5485) | def GetAppliedItems(self) -> Any: ... method HasItem (line 5486) | def HasItem(self, arg2: UnregisteredValue, /) -> bool: ... method __eq__ (line 5487) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5488) | def __hash__(self) -> int: ... method __ne__ (line 5489) | def __ne__(self, other: object) -> bool: ... method isExplicit (line 5491) | def isExplicit(self): ... class ValueBlock (line 5493) | class ValueBlock(Boost.Python.instance): method __init__ (line 5510) | def __init__(self) -> None: ... method __eq__ (line 5511) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 5512) | def __hash__(self) -> int: ... method __ne__ (line 5513) | def __ne__(self, other: object) -> bool: ... class ValueRoleNames (line 5515) | class ValueRoleNames(Boost.Python.instance): method __init__ (line 5527) | def __init__(self, *args, **kwargs) -> None: class ValueTypeName (line 5532) | class ValueTypeName(Boost.Python.instance): method __init__ (line 5555) | def __init__(self) -> None: method __bool__ (line 5559) | def __bool__(self) -> bool: method __eq__ (line 5567) | def __eq__(self, other: object) -> bool: method __hash__ (line 5574) | def __hash__(self) -> int: ... method __ne__ (line 5575) | def __ne__(self, other: object) -> bool: ... method aliasesAsStrings (line 5577) | def aliasesAsStrings(self): ... method arrayType (line 5579) | def arrayType(self) -> ValueTypeName: method cppTypeName (line 5589) | def cppTypeName(self): ... method defaultUnit (line 5591) | def defaultUnit(self) -> pxr.Tf.Enum: method defaultValue (line 5596) | def defaultValue(self) -> Any: method isArray (line 5601) | def isArray(self) -> bool: method isScalar (line 5609) | def isScalar(self) -> bool: method role (line 5617) | def role(self) -> str: method scalarType (line 5622) | def scalarType(self) -> ValueTypeName: method type (line 5632) | def type(self) -> pxr.Tf.Type: class ValueTypeNames (line 5637) | class ValueTypeNames(Boost.Python.instance): method __init__ (line 5748) | def __init__(self, *args, **kwargs) -> None: method Find (line 5753) | def Find() -> ValueTypeName: ... class Variability (line 5755) | class Variability(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 5758) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 5763) | def GetValueFromName(name: object) -> Any: ... class VariableExpression (line 5765) | class VariableExpression(Boost.Python.instance): class Result (line 5803) | class Result(Boost.Python.instance): method __init__ (line 5804) | def __init__(self, *args, **kwargs) -> None: method errors (line 5809) | def errors(self): ... method usedVariables (line 5811) | def usedVariables(self): ... method value (line 5813) | def value(self): ... method __init__ (line 5816) | def __init__(self, expression: str | pxr.Ar.ResolvedPath) -> None: method __init__ (line 5825) | def __init__(self) -> None: method Evaluate (line 5829) | def Evaluate(self, vars: dict) -> VariableExpression.Result: method GetErrors (line 5854) | def GetErrors(self) -> list[str]: method IsExpression (line 5864) | def IsExpression(_s: str | pxr.Ar.ResolvedPath, /) -> bool: method IsValidVariableType (line 5876) | def IsValidVariableType(_value: Any, /) -> bool: method __bool__ (line 5888) | def __bool__(self) -> bool: class VariantSetSpec (line 5900) | class VariantSetSpec(Spec): method __init__ (line 5921) | def __init__(self, prim: PrimSpec, name: str) -> None: method __init__ (line 5926) | def __init__(self, prim: VariantSpec, name: str) -> None: method RemoveVariant (line 5930) | def RemoveVariant(self, _variant: VariantSpec, /) -> None: method __bool__ (line 5938) | def __bool__(self) -> bool: ... method __eq__ (line 5939) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5940) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5941) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5942) | def __hash__(self) -> int: ... method __le__ (line 5943) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5944) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5945) | def __ne__(self, other: object) -> bool: ... method expired (line 5947) | def expired(self): ... method name (line 5949) | def name(self) -> str: method owner (line 5954) | def owner(self) -> Spec: method variantList (line 5959) | def variantList(self) -> list[VariantSpec]: method variants (line 5964) | def variants(self) -> ChildrenView_Sdf_VariantChildPolicy_SdfChildrenV... class VariantSpec (line 5969) | class VariantSpec(Spec): method __init__ (line 5980) | def __init__(self, owner: VariantSetSpec, name: str) -> None: method GetVariantNames (line 5984) | def GetVariantNames(self, _name: str | pxr.Ar.ResolvedPath, /) -> list... method __bool__ (line 5988) | def __bool__(self) -> bool: ... method __eq__ (line 5989) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 5990) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 5991) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 5992) | def __hash__(self) -> int: ... method __le__ (line 5993) | def __le__(self, other: object) -> bool: ... method __lt__ (line 5994) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 5995) | def __ne__(self, other: object) -> bool: ... method expired (line 5997) | def expired(self): ... method name (line 5999) | def name(self) -> str: method owner (line 6004) | def owner(self) -> VariantSetSpec: method primSpec (line 6009) | def primSpec(self) -> PrimSpec: method variantSets (line 6014) | def variantSets(self) -> ChildrenProxy_SdfVariantSetView: # type: ign... function Cat (line 6024) | def Cat(arg1: AssetPathArray, /) -> AssetPathArray: ... function Cat (line 6026) | def Cat(arg1: AssetPathArray, arg2: AssetPathArray, /) -> AssetPathArray... function Cat (line 6028) | def Cat(arg1: AssetPathArray, arg2: AssetPathArray, arg3: AssetPathArray... function Cat (line 6030) | def Cat(arg1: AssetPathArray, arg2: AssetPathArray, arg3: AssetPathArray... function Cat (line 6032) | def Cat(arg1: AssetPathArray, arg2: AssetPathArray, arg3: AssetPathArray... function Cat (line 6034) | def Cat(arg1: PathArray, /) -> PathArray: ... function Cat (line 6036) | def Cat(arg1: PathArray, arg2: PathArray, /) -> PathArray: ... function Cat (line 6038) | def Cat(arg1: PathArray, arg2: PathArray, arg3: PathArray, /) -> PathArr... function Cat (line 6040) | def Cat(arg1: PathArray, arg2: PathArray, arg3: PathArray, arg4: PathArr... function Cat (line 6042) | def Cat(arg1: PathArray, arg2: PathArray, arg3: PathArray, arg4: PathArr... function Cat (line 6044) | def Cat(arg1: TimeCodeArray, /) -> TimeCodeArray: ... function Cat (line 6046) | def Cat(arg1: TimeCodeArray, arg2: TimeCodeArray, /) -> TimeCodeArray: ... function Cat (line 6048) | def Cat(arg1: TimeCodeArray, arg2: TimeCodeArray, arg3: TimeCodeArray, /... function Cat (line 6050) | def Cat(arg1: TimeCodeArray, arg2: TimeCodeArray, arg3: TimeCodeArray, a... function Cat (line 6052) | def Cat(arg1: TimeCodeArray, arg2: TimeCodeArray, arg3: TimeCodeArray, a... function ComputeAssetPathRelativeToLayer (line 6053) | def ComputeAssetPathRelativeToLayer(anchor: Layer, assetPath: str | pxr.... function ConvertToValidMetadataDictionary (line 6067) | def ConvertToValidMetadataDictionary(arg1: object, /) -> tuple: function ConvertUnit (line 6092) | def ConvertUnit(_fromUnit: pxr.Tf.Enum, _toUnit: pxr.Tf.Enum, /) -> float: function CopySpec (line 6101) | def CopySpec(srcLayer: Layer, srcPath: Path | pxr.Ar.ResolvedPath | str,... function CopySpec (line 6131) | def CopySpec(srcLayer: Layer, srcPath: Path | pxr.Ar.ResolvedPath | str,... function CreatePrimInLayer (line 6160) | def CreatePrimInLayer(_layer: Layer, _primPath: Path | pxr.Ar.ResolvedPa... function CreateVariantInLayer (line 6172) | def CreateVariantInLayer(_layer: Layer, _primPath: Path | pxr.Ar.Resolve... function DefaultUnit (line 6188) | def DefaultUnit(_typeName: str | pxr.Ar.ResolvedPath, /) -> pxr.Tf.Enum: function DefaultUnit (line 6193) | def DefaultUnit(_unit: pxr.Tf.Enum, /) -> pxr.Tf.Enum: function Equal (line 6198) | def Equal(arg1: AssetPathArray, arg2: AssetPathArray, /) -> pxr.Vt.BoolA... function Equal (line 6200) | def Equal(arg1: AssetPath | str, arg2: AssetPathArray, /) -> pxr.Vt.Bool... function Equal (line 6202) | def Equal(arg1: AssetPathArray, arg2: AssetPath | str, /) -> pxr.Vt.Bool... function Equal (line 6204) | def Equal(arg1: AssetPathArray, arg2: tuple, /) -> pxr.Vt.BoolArray: ... function Equal (line 6206) | def Equal(arg1: tuple, arg2: AssetPathArray, /) -> pxr.Vt.BoolArray: ... function Equal (line 6208) | def Equal(arg1: AssetPathArray, arg2: list, /) -> pxr.Vt.BoolArray: ... function Equal (line 6210) | def Equal(arg1: list, arg2: AssetPathArray, /) -> pxr.Vt.BoolArray: ... function Equal (line 6212) | def Equal(arg1: PathArray, arg2: PathArray, /) -> pxr.Vt.BoolArray: ... function Equal (line 6214) | def Equal(arg1: Path | pxr.Ar.ResolvedPath | str, arg2: PathArray, /) ->... function Equal (line 6216) | def Equal(arg1: PathArray, arg2: Path | pxr.Ar.ResolvedPath | str, /) ->... function Equal (line 6218) | def Equal(arg1: PathArray, arg2: tuple, /) -> pxr.Vt.BoolArray: ... function Equal (line 6220) | def Equal(arg1: tuple, arg2: PathArray, /) -> pxr.Vt.BoolArray: ... function Equal (line 6222) | def Equal(arg1: PathArray, arg2: list, /) -> pxr.Vt.BoolArray: ... function Equal (line 6224) | def Equal(arg1: list, arg2: PathArray, /) -> pxr.Vt.BoolArray: ... function Equal (line 6226) | def Equal(arg1: TimeCodeArray, arg2: TimeCodeArray, /) -> pxr.Vt.BoolArr... function Equal (line 6228) | def Equal(arg1: TimeCode | float, arg2: TimeCodeArray, /) -> pxr.Vt.Bool... function Equal (line 6230) | def Equal(arg1: TimeCodeArray, arg2: TimeCode | float, /) -> pxr.Vt.Bool... function Equal (line 6232) | def Equal(arg1: TimeCodeArray, arg2: tuple, /) -> pxr.Vt.BoolArray: ... function Equal (line 6234) | def Equal(arg1: tuple, arg2: TimeCodeArray, /) -> pxr.Vt.BoolArray: ... function Equal (line 6236) | def Equal(arg1: TimeCodeArray, arg2: list, /) -> pxr.Vt.BoolArray: ... function Equal (line 6238) | def Equal(arg1: list, arg2: TimeCodeArray, /) -> pxr.Vt.BoolArray: ... function GetNameForUnit (line 6239) | def GetNameForUnit(_unit: pxr.Tf.Enum, /) -> str: function GetTypeForValueTypeName (line 6243) | def GetTypeForValueTypeName(_name: str | pxr.Ar.ResolvedPath, /) -> pxr.... function GetUnitFromName (line 6248) | def GetUnitFromName(_name: str | pxr.Ar.ResolvedPath, /) -> pxr.Tf.Enum: function GetValueTypeNameForValue (line 6252) | def GetValueTypeNameForValue(_value: Any, /) -> ValueTypeName: function JustCreatePrimAttributeInLayer (line 6260) | def JustCreatePrimAttributeInLayer(layer: Layer, attrPath: Path | pxr.Ar... function JustCreatePrimInLayer (line 6276) | def JustCreatePrimInLayer(_layer: Layer, _primPath: Path | pxr.Ar.Resolv... function NotEqual (line 6290) | def NotEqual(arg1: AssetPathArray, arg2: AssetPathArray, /) -> pxr.Vt.Bo... function NotEqual (line 6292) | def NotEqual(arg1: AssetPath | str, arg2: AssetPathArray, /) -> pxr.Vt.B... function NotEqual (line 6294) | def NotEqual(arg1: AssetPathArray, arg2: AssetPath | str, /) -> pxr.Vt.B... function NotEqual (line 6296) | def NotEqual(arg1: AssetPathArray, arg2: tuple, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6298) | def NotEqual(arg1: tuple, arg2: AssetPathArray, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6300) | def NotEqual(arg1: AssetPathArray, arg2: list, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6302) | def NotEqual(arg1: list, arg2: AssetPathArray, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6304) | def NotEqual(arg1: PathArray, arg2: PathArray, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6306) | def NotEqual(arg1: Path | pxr.Ar.ResolvedPath | str, arg2: PathArray, /)... function NotEqual (line 6308) | def NotEqual(arg1: PathArray, arg2: Path | pxr.Ar.ResolvedPath | str, /)... function NotEqual (line 6310) | def NotEqual(arg1: PathArray, arg2: tuple, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6312) | def NotEqual(arg1: tuple, arg2: PathArray, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6314) | def NotEqual(arg1: PathArray, arg2: list, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6316) | def NotEqual(arg1: list, arg2: PathArray, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6318) | def NotEqual(arg1: TimeCodeArray, arg2: TimeCodeArray, /) -> pxr.Vt.Bool... function NotEqual (line 6320) | def NotEqual(arg1: TimeCode | float, arg2: TimeCodeArray, /) -> pxr.Vt.B... function NotEqual (line 6322) | def NotEqual(arg1: TimeCodeArray, arg2: TimeCode | float, /) -> pxr.Vt.B... function NotEqual (line 6324) | def NotEqual(arg1: TimeCodeArray, arg2: tuple, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6326) | def NotEqual(arg1: tuple, arg2: TimeCodeArray, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6328) | def NotEqual(arg1: TimeCodeArray, arg2: list, /) -> pxr.Vt.BoolArray: ... function NotEqual (line 6330) | def NotEqual(arg1: list, arg2: TimeCodeArray, /) -> pxr.Vt.BoolArray: ... function UnitCategory (line 6331) | def UnitCategory(_unit: pxr.Tf.Enum, /) -> str: function ValueHasValidType (line 6335) | def ValueHasValidType(_value: Any, /) -> bool: function _DumpPathStats (line 6339) | def _DumpPathStats() -> None: ... function _MakeBasicMatchEval (line 6340) | def _MakeBasicMatchEval(arg1: object, /) -> Any: ... function _PathGetDebuggerPathText (line 6341) | def _PathGetDebuggerPathText(arg1: Path | pxr.Ar.ResolvedPath | str, /) ... function _PathStress (line 6342) | def _PathStress() -> None: ... function _TestTakeOwnership (line 6343) | def _TestTakeOwnership(arg1: object, /) -> None: ... FILE: usd/stubs/pxr-stubs/Sdr/__init__.pyi class NodeContext (line 10) | class NodeContext(Boost.Python.instance): method __init__ (line 20) | def __init__(self, *args, **kwargs) -> None: class NodeMetadata (line 25) | class NodeMetadata(Boost.Python.instance): method __init__ (line 37) | def __init__(self, *args, **kwargs) -> None: class NodeRole (line 42) | class NodeRole(Boost.Python.instance): method __init__ (line 47) | def __init__(self, *args, **kwargs) -> None: class PropertyMetadata (line 52) | class PropertyMetadata(Boost.Python.instance): method __init__ (line 74) | def __init__(self, *args, **kwargs) -> None: class PropertyRole (line 79) | class PropertyRole(Boost.Python.instance): method __init__ (line 80) | def __init__(self, *args, **kwargs) -> None: class PropertyTypes (line 85) | class PropertyTypes(Boost.Python.instance): method __init__ (line 99) | def __init__(self, *args, **kwargs) -> None: class Registry (line 104) | class Registry(pxr.Ndr.Registry): method __init__ (line 108) | def __init__(self) -> None: ... method GetShaderNodeByIdentifier (line 109) | def GetShaderNodeByIdentifier(self, identifier: str | pxr.Ar.ResolvedP... method GetShaderNodeByIdentifierAndType (line 114) | def GetShaderNodeByIdentifierAndType(self, identifier: str | pxr.Ar.Re... method GetShaderNodeByName (line 119) | def GetShaderNodeByName(self, name: str | pxr.Ar.ResolvedPath, typePri... method GetShaderNodeByNameAndType (line 124) | def GetShaderNodeByNameAndType(self, name: str | pxr.Ar.ResolvedPath, ... method GetShaderNodeFromAsset (line 129) | def GetShaderNodeFromAsset(self, shaderAsset: pxr.Sdf.AssetPath | str,... method GetShaderNodeFromSourceCode (line 136) | def GetShaderNodeFromSourceCode(self, sourceCode: str | pxr.Ar.Resolve... method GetShaderNodesByFamily (line 143) | def GetShaderNodesByFamily(self, family: str | pxr.Ar.ResolvedPath = .... method GetShaderNodesByIdentifier (line 149) | def GetShaderNodesByIdentifier(self, identifier: str | pxr.Ar.Resolved... method GetShaderNodesByName (line 155) | def GetShaderNodesByName(self, name: str | pxr.Ar.ResolvedPath, filter... method __bool__ (line 161) | def __bool__(self) -> bool: method __eq__ (line 163) | def __eq__(self, other: object) -> bool: method __lt__ (line 165) | def __lt__(self, other: object) -> bool: method __ne__ (line 167) | def __ne__(self, other: object) -> bool: method expired (line 170) | def expired(self): ... class ShaderNode (line 172) | class ShaderNode(pxr.Ndr.Node): method __init__ (line 176) | def __init__(self, *args, **kwargs) -> None: method GetAdditionalPrimvarProperties (line 180) | def GetAdditionalPrimvarProperties(self) -> list[str]: method GetAllVstructNames (line 192) | def GetAllVstructNames(self) -> list[str]: method GetAssetIdentifierInputNames (line 196) | def GetAssetIdentifierInputNames(self) -> list[str]: method GetCategory (line 201) | def GetCategory(self) -> str: method GetDefaultInput (line 208) | def GetDefaultInput(self) -> ShaderProperty: method GetDepartments (line 217) | def GetDepartments(self) -> list[str]: method GetHelp (line 221) | def GetHelp(self) -> str: method GetImplementationName (line 225) | def GetImplementationName(self) -> str: method GetLabel (line 237) | def GetLabel(self) -> str: method GetPages (line 246) | def GetPages(self) -> list[str]: method GetPrimvars (line 256) | def GetPrimvars(self) -> list[str]: method GetPropertyNamesForPage (line 268) | def GetPropertyNamesForPage(self, _pageName: str | pxr.Ar.ResolvedPath... method GetRole (line 277) | def GetRole(self) -> str: method GetShaderInput (line 289) | def GetShaderInput(self, _inputName: str | pxr.Ar.ResolvedPath, /) -> ... method GetShaderOutput (line 296) | def GetShaderOutput(self, _outputName: str | pxr.Ar.ResolvedPath, /) -... class ShaderNodeList (line 305) | class ShaderNodeList(Boost.Python.instance): method __init__ (line 307) | def __init__(self) -> None: ... method append (line 308) | def append(self, arg2: object, /) -> None: ... method extend (line 309) | def extend(self, arg2: object, /) -> None: ... method __contains__ (line 310) | def __contains__(self, arg2: object, /) -> bool: ... method __delitem__ (line 311) | def __delitem__(self, arg2: object, /) -> None: ... method __getitem__ (line 312) | def __getitem__(self, arg2: object, /) -> Any: ... method __iter__ (line 313) | def __iter__(self) -> Any: ... method __len__ (line 314) | def __len__(self) -> int: ... method __setitem__ (line 315) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... class ShaderProperty (line 317) | class ShaderProperty(pxr.Ndr.Property): method __init__ (line 322) | def __init__(self, *args, **kwargs) -> None: method GetDefaultValueAsSdfType (line 326) | def GetDefaultValueAsSdfType(self) -> Any: method GetHelp (line 339) | def GetHelp(self) -> str: method GetHints (line 343) | def GetHints(self) -> dict: method GetImplementationName (line 350) | def GetImplementationName(self) -> str: method GetLabel (line 362) | def GetLabel(self) -> str: method GetOptions (line 371) | def GetOptions(self) -> list[tuple[str, str]]: method GetPage (line 377) | def GetPage(self) -> str: method GetVStructConditionalExpr (line 386) | def GetVStructConditionalExpr(self) -> str: method GetVStructMemberName (line 391) | def GetVStructMemberName(self) -> str: method GetVStructMemberOf (line 395) | def GetVStructMemberOf(self) -> str: method GetValidConnectionTypes (line 399) | def GetValidConnectionTypes(self) -> list[str]: method GetWidget (line 408) | def GetWidget(self) -> str: method IsAssetIdentifier (line 416) | def IsAssetIdentifier(self) -> bool: method IsDefaultInput (line 426) | def IsDefaultInput(self) -> bool: method IsVStruct (line 431) | def IsVStruct(self) -> bool: method IsVStructMember (line 435) | def IsVStructMember(self) -> bool: FILE: usd/stubs/pxr-stubs/Sdr/shaderParserTestUtils.pyi function IsNodeOSL (line 3) | def IsNodeOSL(node): function GetType (line 7) | def GetType(property): function TestBasicProperties (line 11) | def TestBasicProperties(node) -> None: function TestShadingProperties (line 16) | def TestShadingProperties(node) -> None: function TestBasicNode (line 21) | def TestBasicNode(node, nodeSourceType, nodeDefinitionURI, nodeImplement... function TestShaderSpecificNode (line 25) | def TestShaderSpecificNode(node) -> None: function TestShaderPropertiesNode (line 29) | def TestShaderPropertiesNode(node) -> None: FILE: usd/stubs/pxr-stubs/Tf.pyi class CallContext (line 32) | class CallContext(Boost.Python.instance): method __init__ (line 33) | def __init__(self, *args, **kwargs) -> None: method file (line 38) | def file(self) -> str: ... method function (line 40) | def function(self) -> str: ... method line (line 42) | def line(self) -> int: ... method prettyFunction (line 44) | def prettyFunction(self) -> str: ... class CppException (line 46) | class CppException(Exception): ... class Debug (line 48) | class Debug(Boost.Python.instance): method __init__ (line 131) | def __init__(self, *args, **kwargs) -> None: method GetDebugSymbolDescription (line 136) | def GetDebugSymbolDescription(_name: str | pxr.Ar.ResolvedPath, /) -> ... method GetDebugSymbolDescriptions (line 146) | def GetDebugSymbolDescriptions() -> str: method GetDebugSymbolNames (line 155) | def GetDebugSymbolNames() -> list[str]: method IsDebugSymbolNameEnabled (line 160) | def IsDebugSymbolNameEnabled(_name: str | pxr.Ar.ResolvedPath, /) -> b... method SetDebugSymbolsByName (line 165) | def SetDebugSymbolsByName(pattern: str | pxr.Ar.ResolvedPath, value: b... method SetOutputFile (line 176) | def SetOutputFile(_file: FILE, /) -> None: # type: ignore[name-defined] class DiagnosticType (line 187) | class DiagnosticType(Tf_PyEnumWrapper): method __init__ (line 190) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 195) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... class Enum (line 197) | class Enum(Boost.Python.instance): method __init__ (line 201) | def __init__(self, *args, **kwargs) -> None: method GetValueFromFullName (line 206) | def GetValueFromFullName(_fullname: str | pxr.Ar.ResolvedPath, /) -> t... class Error (line 220) | class Error(_DiagnosticBase): class Mark (line 234) | class Mark(Boost.Python.instance): method __init__ (line 236) | def __init__(self) -> None: ... method Clear (line 237) | def Clear(self) -> bool: ... method GetErrors (line 238) | def GetErrors(self) -> list: method IsClean (line 240) | def IsClean(self) -> bool: ... method SetMark (line 241) | def SetMark(self) -> None: ... method __init__ (line 242) | def __init__(self, *args, **kwargs) -> None: method errorCode (line 247) | def errorCode(self) -> Enum: method errorCodeString (line 252) | def errorCodeString(self): ... class ErrorException (line 254) | class ErrorException(RuntimeError): class MallocTag (line 257) | class MallocTag(Boost.Python.instance): class CallTree (line 265) | class CallTree(Boost.Python.instance): class CallSite (line 275) | class CallSite(Boost.Python.instance): method __init__ (line 286) | def __init__(self, *args, **kwargs) -> None: method nBytes (line 291) | def nBytes(self): ... method name (line 293) | def name(self): ... class PathNode (line 295) | class PathNode(Boost.Python.instance): method __init__ (line 316) | def __init__(self, *args, **kwargs) -> None: method GetChildren (line 320) | def GetChildren(self) -> list: ... method nAllocations (line 322) | def nAllocations(self): ... method nBytes (line 324) | def nBytes(self): ... method nBytesDirect (line 326) | def nBytesDirect(self): ... method siteName (line 328) | def siteName(self): ... method __init__ (line 329) | def __init__(self, *args, **kwargs) -> None: method GetCallSites (line 333) | def GetCallSites(self) -> list: ... method GetPrettyPrintString (line 334) | def GetPrettyPrintString(self) -> str: method GetRoot (line 358) | def GetRoot(self) -> MallocTag.CallTree.PathNode: ... method LogReport (line 359) | def LogReport(self, rootName: str | pxr.Ar.ResolvedPath = ...) -> st... method Report (line 361) | def Report(self, fileName: str | pxr.Ar.ResolvedPath, rootName: str ... method Report (line 371) | def Report(self, rootName: str | pxr.Ar.ResolvedPath = ...) -> None: method __init__ (line 376) | def __init__(self, *args, **kwargs) -> None: method GetCallStacks (line 381) | def GetCallStacks() -> list: ... method GetCallTree (line 383) | def GetCallTree() -> MallocTag.CallTree: method GetMaxTotalBytes (line 399) | def GetMaxTotalBytes() -> int: method GetTotalBytes (line 409) | def GetTotalBytes() -> int: method Initialize (line 419) | def Initialize(_errMsg: str | pxr.Ar.ResolvedPath, /) -> bool: method IsInitialized (line 435) | def IsInitialized() -> bool: method SetCapturedMallocStacksMatchList (line 444) | def SetCapturedMallocStacksMatchList(_matchList: str | pxr.Ar.Resolved... method SetDebugMatchList (line 470) | def SetDebugMatchList(_matchList: str | pxr.Ar.ResolvedPath, /) -> None: class NamedTemporaryFile (line 492) | class NamedTemporaryFile: method name (line 504) | def name(self): ... class Notice (line 506) | class Notice(Boost.Python.instance): class Listener (line 558) | class Listener(Boost.Python.instance): method __init__ (line 560) | def __init__(self, *args, **kwargs) -> None: method Revoke (line 564) | def Revoke(self) -> None: method __init__ (line 568) | def __init__(self) -> None: ... method Register (line 570) | def Register(_listener: type[NoticeT], _method: Callable[[NoticeT, T],... method RegisterGlobally (line 581) | def RegisterGlobally(_listener: type[NoticeT], _method: Callable[[Noti... method Send (line 589) | def Send(self, _s: Sender, /) -> int: # type: ignore[name-defined] method Send (line 608) | def Send(self, arg2: object, /) -> int: # type: ignore[overload-canno... method SendGlobally (line 616) | def SendGlobally(self) -> int: class PyModuleWasLoaded (line 621) | class PyModuleWasLoaded(Notice): method __init__ (line 630) | def __init__(self, *args, **kwargs) -> None: method name (line 634) | def name(self) -> str: class RefPtrTracker (line 639) | class RefPtrTracker(Boost.Python.instance): method __init__ (line 689) | def __init__(self) -> None: ... method GetAllTracesReport (line 690) | def GetAllTracesReport(self) -> str: ... method GetAllWatchedCountsReport (line 691) | def GetAllWatchedCountsReport(self) -> str: ... method GetTracesReportForWatched (line 692) | def GetTracesReportForWatched(self, arg2: int, /) -> str: ... method __bool__ (line 693) | def __bool__(self) -> bool: method __eq__ (line 695) | def __eq__(self, other: object) -> bool: method __lt__ (line 697) | def __lt__(self, other: object) -> bool: method __ne__ (line 699) | def __ne__(self, other: object) -> bool: method expired (line 702) | def expired(self): ... class ScopeDescription (line 704) | class ScopeDescription(Boost.Python.instance): method __init__ (line 718) | def __init__(self, _unknownArg1: str | pxr.Ar.ResolvedPath, /) -> None... method SetDescription (line 719) | def SetDescription(self, _description: str | pxr.Ar.ResolvedPath, /) -... method __enter__ (line 727) | def __enter__(self) -> ScopeDescription: ... method __exit__ (line 728) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class ScriptModuleLoader (line 730) | class ScriptModuleLoader(Boost.Python.instance): method __init__ (line 742) | def __init__(self) -> None: ... method GetModuleNames (line 743) | def GetModuleNames(self) -> list[str]: method GetModulesDict (line 748) | def GetModulesDict(self) -> dict: method WriteDotFile (line 753) | def WriteDotFile(self, _file: str | pxr.Ar.ResolvedPath, /) -> None: method _LoadModulesForLibrary (line 760) | def _LoadModulesForLibrary(self, arg2: object, /) -> None: ... method _RegisterLibrary (line 761) | def _RegisterLibrary(self, arg2: object, arg3: object, arg4: object, /... method __bool__ (line 762) | def __bool__(self) -> bool: method __eq__ (line 764) | def __eq__(self, other: object) -> bool: method __lt__ (line 766) | def __lt__(self, other: object) -> bool: method __ne__ (line 768) | def __ne__(self, other: object) -> bool: method expired (line 771) | def expired(self): ... class Singleton (line 773) | class Singleton(Boost.Python.instance): method __init__ (line 780) | def __init__(self) -> None: ... class StatusObject (line 782) | class StatusObject(_DiagnosticBase): method __init__ (line 783) | def __init__(self, *args, **kwargs) -> None: class Stopwatch (line 788) | class Stopwatch(Boost.Python.instance): method __init__ (line 805) | def __init__(self) -> None: ... method AddFrom (line 806) | def AddFrom(self, _t: Stopwatch, /) -> None: method Reset (line 817) | def Reset(self) -> None: method Start (line 821) | def Start(self) -> None: method Stop (line 830) | def Stop(self) -> None: method microseconds (line 845) | def microseconds(self) -> int: method milliseconds (line 854) | def milliseconds(self) -> int: method nanoseconds (line 859) | def nanoseconds(self) -> int: method sampleCount (line 869) | def sampleCount(self) -> int: method seconds (line 879) | def seconds(self) -> float: class TemplateString (line 884) | class TemplateString(Boost.Python.instance): method __init__ (line 911) | def __init__(self) -> None: method __init__ (line 916) | def __init__(self, _template_: str | pxr.Ar.ResolvedPath, /) -> None: method GetEmptyMapping (line 920) | def GetEmptyMapping(self) -> dict: method GetParseErrors (line 927) | def GetParseErrors(self) -> list[str]: method SafeSubstitute (line 931) | def SafeSubstitute(self, _unknownArg1: dict, /) -> str: method Substitute (line 937) | def Substitute(self, _unknownArg1: dict, /) -> str: method template (line 947) | def template(self) -> str: method valid (line 952) | def valid(self): ... class Tf_PyEnumWrapper (line 954) | class Tf_PyEnumWrapper(Enum): method __init__ (line 955) | def __init__(self, *args, **kwargs) -> None: method __and__ (line 960) | def __and__(self, arg2: int, /) -> Any: ... method __and__ (line 962) | def __and__(self, arg2: Tf_PyEnumWrapper, /) -> Any: ... method __eq__ (line 963) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 964) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 965) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 966) | def __hash__(self) -> int: ... method __invert__ (line 967) | def __invert__(self) -> Any: ... method __le__ (line 968) | def __le__(self, other: object) -> bool: ... method __lt__ (line 969) | def __lt__(self, other: object) -> bool: ... method __or__ (line 971) | def __or__(self, arg2: int, /) -> Any: ... method __or__ (line 973) | def __or__(self, arg2: Tf_PyEnumWrapper, /) -> Any: ... method __rand__ (line 974) | def __rand__(self, arg2: int, /) -> Any: ... method __ror__ (line 975) | def __ror__(self, arg2: int, /) -> Any: ... method __rxor__ (line 976) | def __rxor__(self, arg2: int, /) -> Any: ... method __xor__ (line 978) | def __xor__(self, arg2: int, /) -> Any: ... method __xor__ (line 980) | def __xor__(self, arg2: Tf_PyEnumWrapper, /) -> Any: ... method displayName (line 982) | def displayName(self): ... method fullName (line 984) | def fullName(self): ... method name (line 986) | def name(self): ... method value (line 988) | def value(self): ... class Tf_TestAnnotatedBoolResult (line 990) | class Tf_TestAnnotatedBoolResult(Boost.Python.instance): method __init__ (line 992) | def __init__(self, arg2: bool, arg3: str | pxr.Ar.ResolvedPath, /) -> ... method __bool__ (line 993) | def __bool__(self) -> bool: ... method __eq__ (line 994) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 995) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 996) | def __ne__(self, other: object) -> bool: ... method annotation (line 998) | def annotation(self): ... class Tf_TestPyContainerConversions (line 1000) | class Tf_TestPyContainerConversions(Boost.Python.instance): method __init__ (line 1002) | def __init__(self) -> None: ... method GetPairTimesTwo (line 1004) | def GetPairTimesTwo() -> Any: ... method GetTokens (line 1006) | def GetTokens() -> Any: ... method GetVectorTimesTwo (line 1008) | def GetVectorTimesTwo() -> Any: ... class Tf_TestPyOptionalBoost (line 1010) | class Tf_TestPyOptionalBoost(Boost.Python.instance): method __init__ (line 1012) | def __init__(self) -> None: ... method TakesOptional (line 1014) | def TakesOptional(optString: object = ..., optStrvec: object = ...) ->... method TestOptionalChar (line 1016) | def TestOptionalChar() -> Any: ... method TestOptionalDouble (line 1018) | def TestOptionalDouble() -> Any: ... method TestOptionalFloat (line 1020) | def TestOptionalFloat() -> Any: ... method TestOptionalInt (line 1022) | def TestOptionalInt() -> Any: ... method TestOptionalLong (line 1024) | def TestOptionalLong() -> Any: ... method TestOptionalShort (line 1026) | def TestOptionalShort() -> Any: ... method TestOptionalString (line 1028) | def TestOptionalString() -> Any: ... method TestOptionalStringVector (line 1030) | def TestOptionalStringVector() -> Any: ... method TestOptionalUChar (line 1032) | def TestOptionalUChar() -> Any: ... method TestOptionalUInt (line 1034) | def TestOptionalUInt() -> Any: ... method TestOptionalULong (line 1036) | def TestOptionalULong() -> Any: ... method TestOptionalUShort (line 1038) | def TestOptionalUShort() -> Any: ... class Tf_TestPyOptionalStd (line 1040) | class Tf_TestPyOptionalStd(Boost.Python.instance): method __init__ (line 1042) | def __init__(self) -> None: ... method TakesOptional (line 1044) | def TakesOptional(optString: object = ..., optStrvec: object = ...) ->... method TestOptionalChar (line 1046) | def TestOptionalChar() -> Any: ... method TestOptionalDouble (line 1048) | def TestOptionalDouble() -> Any: ... method TestOptionalFloat (line 1050) | def TestOptionalFloat() -> Any: ... method TestOptionalInt (line 1052) | def TestOptionalInt() -> Any: ... method TestOptionalLong (line 1054) | def TestOptionalLong() -> Any: ... method TestOptionalShort (line 1056) | def TestOptionalShort() -> Any: ... method TestOptionalString (line 1058) | def TestOptionalString() -> Any: ... method TestOptionalStringVector (line 1060) | def TestOptionalStringVector() -> Any: ... method TestOptionalUChar (line 1062) | def TestOptionalUChar() -> Any: ... method TestOptionalUInt (line 1064) | def TestOptionalUInt() -> Any: ... method TestOptionalULong (line 1066) | def TestOptionalULong() -> Any: ... method TestOptionalUShort (line 1068) | def TestOptionalUShort() -> Any: ... class Type (line 1070) | class Type(Boost.Python.instance): method __init__ (line 1096) | def __init__(self) -> None: method __init__ (line 1110) | def __init__(self, _info: Type | type[pxr.Usd.SchemaBase], /) -> None:... method AddAlias (line 1111) | def AddAlias(self, _base: Type | type[pxr.Usd.SchemaBase], _name: str ... method Define (line 1122) | def Define(arg1: object, /) -> Type: ... method Find (line 1124) | def Find(arg1: object, /) -> Type: ... method FindByName (line 1126) | def FindByName(_name: str | pxr.Ar.ResolvedPath, /) -> Type: method FindDerivedByName (line 1146) | def FindDerivedByName(self, _name: str | pxr.Ar.ResolvedPath, /) -> Type: method GetAliases (line 1155) | def GetAliases(self, _derivedType: Type | type[pxr.Usd.SchemaBase], /)... method GetAllAncestorTypes (line 1164) | def GetAllAncestorTypes(self) -> tuple: method GetAllDerivedTypes (line 1189) | def GetAllDerivedTypes(self) -> tuple: method GetRoot (line 1195) | def GetRoot() -> Type: method IsA (line 1204) | def IsA(self, _queryType: Type | type[pxr.Usd.SchemaBase], /) -> bool: method _DumpTypeHierarchy (line 1212) | def _DumpTypeHierarchy() -> None: method __bool__ (line 1214) | def __bool__(self) -> bool: ... method __eq__ (line 1215) | def __eq__(self, other: object) -> bool: method __ge__ (line 1225) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 1226) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 1227) | def __hash__(self) -> int: ... method __le__ (line 1228) | def __le__(self, other: object) -> bool: ... method __lt__ (line 1229) | def __lt__(self, other: object) -> bool: method __ne__ (line 1233) | def __ne__(self, other: object) -> bool: ... method baseTypes (line 1235) | def baseTypes(self) -> list[Type]: method derivedTypes (line 1240) | def derivedTypes(self): ... method isEnumType (line 1242) | def isEnumType(self) -> bool: method isPlainOldDataType (line 1247) | def isPlainOldDataType(self) -> bool: method isUnknown (line 1252) | def isUnknown(self) -> bool: method pythonClass (line 1262) | def pythonClass(self) -> PyObjWrapper: # type: ignore[name-defined] method sizeof (line 1273) | def sizeof(self) -> int: method typeName (line 1284) | def typeName(self) -> str: class Warning (line 1294) | class Warning(_DiagnosticBase): method __init__ (line 1295) | def __init__(self, *args, **kwargs) -> None: class WindowsImportWrapper (line 1300) | class WindowsImportWrapper: class _ClassWithClassMethod (line 1304) | class _ClassWithClassMethod(Boost.Python.instance): method __init__ (line 1307) | def __init__(self) -> None: ... class _ClassWithVarArgInit (line 1309) | class _ClassWithVarArgInit(Boost.Python.instance): method __init__ (line 1310) | def __init__(self) -> None: ... method __bool__ (line 1311) | def __bool__(self) -> bool: method __eq__ (line 1313) | def __eq__(self, other: object) -> bool: method __lt__ (line 1315) | def __lt__(self, other: object) -> bool: method __ne__ (line 1317) | def __ne__(self, other: object) -> bool: method allowExtraArgs (line 1320) | def allowExtraArgs(self): ... method args (line 1322) | def args(self): ... method expired (line 1324) | def expired(self): ... method kwargs (line 1326) | def kwargs(self): ... class _DiagnosticBase (line 1328) | class _DiagnosticBase(Boost.Python.instance): method __init__ (line 1329) | def __init__(self, *args, **kwargs) -> None: method commentary (line 1334) | def commentary(self): ... method diagnosticCode (line 1336) | def diagnosticCode(self): ... method diagnosticCodeString (line 1338) | def diagnosticCodeString(self): ... method sourceFileName (line 1340) | def sourceFileName(self): ... method sourceFunction (line 1342) | def sourceFunction(self): ... method sourceLineNumber (line 1344) | def sourceLineNumber(self): ... class _Enum (line 1346) | class _Enum(Boost.Python.instance): class TestEnum2 (line 1347) | class TestEnum2(Tf_PyEnumWrapper): method __init__ (line 1350) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 1355) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... class TestKeywords (line 1357) | class TestKeywords(Tf_PyEnumWrapper): method __init__ (line 1366) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 1371) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... class TestScopedEnum (line 1373) | class TestScopedEnum(Tf_PyEnumWrapper): method __init__ (line 1379) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 1384) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... method __init__ (line 1388) | def __init__(self, *args, **kwargs) -> None: class _TestBase (line 1393) | class _TestBase(Boost.Python.instance): method __init__ (line 1394) | def __init__(self) -> None: ... method TestCallVirtual (line 1395) | def TestCallVirtual(self) -> str: ... method Virtual (line 1397) | def Virtual(self) -> str: ... method Virtual (line 1399) | def Virtual(self) -> None: ... # type: ignore[overload-cannot-match] method Virtual2 (line 1400) | def Virtual2(self) -> None: ... method Virtual3 (line 1401) | def Virtual3(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method Virtual4 (line 1402) | def Virtual4(self) -> str: ... method __bool__ (line 1403) | def __bool__(self) -> bool: method __eq__ (line 1405) | def __eq__(self, other: object) -> bool: method __lt__ (line 1407) | def __lt__(self, other: object) -> bool: method __ne__ (line 1409) | def __ne__(self, other: object) -> bool: method expired (line 1412) | def expired(self): ... class _TestDerived (line 1414) | class _TestDerived(_TestBase): method __init__ (line 1415) | def __init__(self) -> None: ... method Virtual (line 1416) | def Virtual(self) -> str: ... # type: ignore[override] method Virtual2 (line 1417) | def Virtual2(self) -> None: ... method Virtual3 (line 1418) | def Virtual3(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method __bool__ (line 1419) | def __bool__(self) -> bool: method __eq__ (line 1421) | def __eq__(self, other: object) -> bool: method __lt__ (line 1423) | def __lt__(self, other: object) -> bool: method __ne__ (line 1425) | def __ne__(self, other: object) -> bool: method expired (line 1428) | def expired(self): ... class _TestEnum (line 1430) | class _TestEnum(Tf_PyEnumWrapper): method __init__ (line 1433) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 1438) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... class _TestScopedEnum (line 1440) | class _TestScopedEnum(Tf_PyEnumWrapper): method __init__ (line 1447) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 1452) | def GetValueFromName(name: str | pxr.Ar.ResolvedPath) -> Any: ... class _TestStaticMethodError (line 1454) | class _TestStaticMethodError(Boost.Python.instance): method __init__ (line 1455) | def __init__(self, *args, **kwargs) -> None: method Error (line 1460) | def Error() -> None: ... class _TestStaticTokens (line 1462) | class _TestStaticTokens(Boost.Python.instance): method __init__ (line 1465) | def __init__(self, *args, **kwargs) -> None: class _testStaticTokens (line 1470) | class _testStaticTokens(Boost.Python.instance): method __init__ (line 1473) | def __init__(self, *args, **kwargs) -> None: function DictionaryStrcmp (line 1478) | def DictionaryStrcmp(arg1: str | pxr.Ar.ResolvedPath, arg2: str | pxr.Ar... function DumpTokenStats (line 1479) | def DumpTokenStats() -> None: ... function FindLongestAccessiblePrefix (line 1480) | def FindLongestAccessiblePrefix(_path: str | pxr.Ar.ResolvedPath, /) -> ... function GetAppLaunchTime (line 1503) | def GetAppLaunchTime() -> int: function GetCurrentScopeDescriptionStack (line 1507) | def GetCurrentScopeDescriptionStack() -> list[str]: function GetEnvSetting (line 1516) | def GetEnvSetting(_setting: str | pxr.Ar.ResolvedPath, /) -> Any: function GetStackTrace (line 1521) | def GetStackTrace() -> str: function InstallTerminateAndCrashHandlers (line 1525) | def InstallTerminateAndCrashHandlers() -> None: function InvokeWithErrorHandling (line 1538) | def InvokeWithErrorHandling(tupleargs, dictkwds) -> typing.Any: ... function IsValidIdentifier (line 1539) | def IsValidIdentifier(_identifier: str | pxr.Ar.ResolvedPath, /) -> bool: function LogStackTrace (line 1549) | def LogStackTrace(reason: str | pxr.Ar.ResolvedPath, logToDb: bool = ...... function MakeValidIdentifier (line 1559) | def MakeValidIdentifier(_in: str | pxr.Ar.ResolvedPath, /) -> str: function PrintStackTrace (line 1567) | def PrintStackTrace(_out: typing.TextIO, _reason: str | pxr.Ar.ResolvedP... function RealPath (line 1571) | def RealPath(path: str | pxr.Ar.ResolvedPath, allowInaccessibleSuffix: b... function ReportActiveErrorMarks (line 1590) | def ReportActiveErrorMarks() -> None: function RepostErrors (line 1599) | def RepostErrors(exception: object) -> bool: ... function SetPythonExceptionDebugTracingEnabled (line 1600) | def SetPythonExceptionDebugTracingEnabled(enabled: bool) -> None: ... function StringSplit (line 1601) | def StringSplit(_src: str | pxr.Ar.ResolvedPath, _separator: str | pxr.A... function StringToDouble (line 1610) | def StringToDouble(_txt: str | pxr.Ar.ResolvedPath, /) -> float: function StringToLong (line 1631) | def StringToLong(_txt: str | pxr.Ar.ResolvedPath, /) -> int: function StringToULong (line 1646) | def StringToULong(_txt: str | pxr.Ar.ResolvedPath, /) -> int: function TouchFile (line 1660) | def TouchFile(fileName: str | pxr.Ar.ResolvedPath, create: bool = ...) -... function _CallThrowTest (line 1671) | def _CallThrowTest(arg1: object, /) -> None: ... function _ConvertByteListToByteArray (line 1672) | def _ConvertByteListToByteArray(arg1: list, /) -> Any: ... function _DerivedFactory (line 1673) | def _DerivedFactory() -> _TestDerived: ... function _DerivedNullFactory (line 1674) | def _DerivedNullFactory() -> _TestDerived: ... function _Fatal (line 1675) | def _Fatal(arg1: str | pxr.Ar.ResolvedPath, arg2: str | pxr.Ar.ResolvedP... function _GetLongMax (line 1676) | def _GetLongMax() -> int: ... function _GetLongMin (line 1677) | def _GetLongMin() -> int: ... function _GetULongMax (line 1678) | def _GetULongMax() -> int: ... function _RaiseCodingError (line 1679) | def _RaiseCodingError(arg1: str | pxr.Ar.ResolvedPath, arg2: str | pxr.A... function _RaiseRuntimeError (line 1680) | def _RaiseRuntimeError(arg1: str | pxr.Ar.ResolvedPath, arg2: str | pxr.... function _ReturnsBase (line 1681) | def _ReturnsBase(arg1: object, /) -> Any: ... function _ReturnsBaseRefPtr (line 1682) | def _ReturnsBaseRefPtr(arg1: object, /) -> Any: ... function _ReturnsConstBase (line 1683) | def _ReturnsConstBase(arg1: object, /) -> Any: ... function _RoundTripWrapperCallTest (line 1684) | def _RoundTripWrapperCallTest(arg1: object, /) -> Any: ... function _RoundTripWrapperIndexTest (line 1685) | def _RoundTripWrapperIndexTest(arg1: object, arg2: int, /) -> Any: ... function _RoundTripWrapperTest (line 1686) | def _RoundTripWrapperTest(arg1: object, /) -> Any: ... function _Status (line 1687) | def _Status(arg1: str | pxr.Ar.ResolvedPath, arg2: str | pxr.Ar.Resolved... function _TakesBase (line 1688) | def _TakesBase(arg1: object, /) -> tuple: ... function _TakesConstBase (line 1689) | def _TakesConstBase(arg1: object, /) -> str: ... function _TakesDerived (line 1690) | def _TakesDerived(arg1: object, /) -> str: ... function _TakesReference (line 1691) | def _TakesReference(arg1: object, /) -> None: ... function _TakesVecVecString (line 1692) | def _TakesVecVecString(arg1: object, /) -> int: ... function _TestAnnotatedBoolResult (line 1693) | def _TestAnnotatedBoolResult(arg1: bool, arg2: str | pxr.Ar.ResolvedPath... function _ThrowCppException (line 1694) | def _ThrowCppException() -> str: ... function _ThrowTest (line 1695) | def _ThrowTest(arg1: str | pxr.Ar.ResolvedPath, /) -> None: ... function _Warn (line 1696) | def _Warn(arg1: str | pxr.Ar.ResolvedPath, arg2: str | pxr.Ar.ResolvedPa... function __SetErrorExceptionClass (line 1697) | def __SetErrorExceptionClass(arg1: object, /) -> None: ... function _callUnboundInstance (line 1698) | def _callUnboundInstance(arg1: object, arg2: str | pxr.Ar.ResolvedPath, ... function _callback (line 1699) | def _callback(arg1: object, /) -> None: ... function _doErrors (line 1700) | def _doErrors() -> None: ... function _invokeTestCallback (line 1701) | def _invokeTestCallback() -> str: ... function _mightRaise (line 1702) | def _mightRaise(arg1: bool, /) -> None: ... function _registerInvalidEnum (line 1703) | def _registerInvalidEnum(arg1: object, /) -> None: ... function _returnsTfEnum (line 1704) | def _returnsTfEnum(arg1: object, /) -> Any: ... function _sendTfNoticeWithSender (line 1705) | def _sendTfNoticeWithSender(arg1: object, /) -> None: ... function _setTestCallback (line 1706) | def _setTestCallback(arg1: object, /) -> None: ... function _stringCallback (line 1707) | def _stringCallback(arg1: object, /) -> str: ... function _stringStringCallback (line 1708) | def _stringStringCallback(arg1: object, /) -> str: ... function _takesTestEnum (line 1709) | def _takesTestEnum(arg1: object, /) -> None: ... function _takesTestEnum2 (line 1710) | def _takesTestEnum2(arg1: object, /) -> None: ... function _takesTfEnum (line 1711) | def _takesTfEnum(arg1: object, /) -> None: ... FILE: usd/stubs/pxr-stubs/Trace/__init__.pyi class AggregateNode (line 12) | class AggregateNode(Boost.Python.instance): method __init__ (line 21) | def __init__(self, *args, **kwargs) -> None: method __bool__ (line 25) | def __bool__(self) -> bool: method __eq__ (line 27) | def __eq__(self, other: object) -> bool: method __lt__ (line 29) | def __lt__(self, other: object) -> bool: method __ne__ (line 31) | def __ne__(self, other: object) -> bool: method children (line 34) | def children(self) -> list[AggregateNode]: ... method count (line 36) | def count(self): method exclusiveCount (line 44) | def exclusiveCount(self) -> int: method exclusiveTime (line 49) | def exclusiveTime(self): method expired (line 54) | def expired(self): ... method id (line 56) | def id(self) -> pxr.Usd.StageCache.Id: method inclusiveTime (line 61) | def inclusiveTime(self) -> TimeStamp: # type: ignore[name-defined] method key (line 66) | def key(self) -> str: class Collector (line 71) | class Collector(Boost.Python.instance): method __init__ (line 81) | def __init__(self) -> None: ... method BeginEvent (line 82) | def BeginEvent(self, _key: str | pxr.Ar.ResolvedPath, /) -> int: method BeginEventAtTime (line 98) | def BeginEventAtTime(self, _key: str | pxr.Ar.ResolvedPath, _ms: float... method Clear (line 108) | def Clear(self) -> None: method EndEvent (line 115) | def EndEvent(self, _key: str | pxr.Ar.ResolvedPath, /) -> int: method EndEventAtTime (line 131) | def EndEventAtTime(self, _key: str | pxr.Ar.ResolvedPath, _ms: float, ... method GetLabel (line 141) | def GetLabel(self) -> str: method __bool__ (line 145) | def __bool__(self) -> bool: method __eq__ (line 147) | def __eq__(self, other: object) -> bool: method __lt__ (line 149) | def __lt__(self, other: object) -> bool: method __ne__ (line 151) | def __ne__(self, other: object) -> bool: method expired (line 154) | def expired(self): ... class Reporter (line 156) | class Reporter(Boost.Python.instance): method __init__ (line 165) | def __init__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> None: ... method ClearTree (line 166) | def ClearTree(self) -> None: method GetLabel (line 170) | def GetLabel(self) -> str: method Report (line 175) | def Report(self, iterationCount: int = ...) -> None: ... method Report (line 177) | def Report(self, arg2: str | pxr.Ar.ResolvedPath, /, iterationCount: i... method ReportChromeTracing (line 178) | def ReportChromeTracing(self) -> None: method ReportChromeTracingToFile (line 183) | def ReportChromeTracingToFile(self, arg2: str | pxr.Ar.ResolvedPath, /... method ReportTimes (line 184) | def ReportTimes(self) -> None: method UpdateTraceTrees (line 188) | def UpdateTraceTrees(self) -> None: method globalReporter (line 202) | def globalReporter(cls, *args, **kwargs): ... method __bool__ (line 203) | def __bool__(self) -> bool: method __eq__ (line 205) | def __eq__(self, other: object) -> bool: method __lt__ (line 207) | def __lt__(self, other: object) -> bool: method __ne__ (line 209) | def __ne__(self, other: object) -> bool: method aggregateTreeRoot (line 212) | def aggregateTreeRoot(self) -> AggregateNode: method expired (line 217) | def expired(self): ... function GetElapsedSeconds (line 219) | def GetElapsedSeconds(arg1: int, arg2: int, /) -> float: ... function GetTestEventName (line 220) | def GetTestEventName() -> str: ... function PythonGarbageCollectionCallback (line 221) | def PythonGarbageCollectionCallback(arg1: str | pxr.Ar.ResolvedPath, arg... function TestAuto (line 222) | def TestAuto() -> None: ... function TestCreateEvents (line 223) | def TestCreateEvents() -> None: ... function TestNesting (line 224) | def TestNesting() -> None: ... FILE: usd/stubs/pxr-stubs/Ts/TsTest_Comparator.pyi class TsTest_Comparator (line 4) | class TsTest_Comparator: method Init (line 6) | def Init(cls): ... method __init__ (line 10) | def __init__(self, title, widthPx: int = 1000, heightPx: int = 1500) -... method AddSpline (line 11) | def AddSpline(self, name, splineData, samples, baked: Incomplete | Non... method Display (line 12) | def Display(self) -> None: ... method Write (line 13) | def Write(self, filePath) -> None: ... method GetMaxDiff (line 14) | def GetMaxDiff(self): ... method _Compare (line 15) | def _Compare(self) -> None: ... method _FindDiffs (line 18) | def _FindDiffs(self) -> None: ... FILE: usd/stubs/pxr-stubs/Ts/TsTest_CompareBaseline.pyi function TsTest_CompareBaseline (line 6) | def TsTest_CompareBaseline(testName, splineData, samples, precision: int... class _Baseliner (line 42) | class _Baseliner: method __init__ (line 53) | def __init__(self, testName, splineData, samples, precision) -> None: ... method Validate (line 54) | def Validate(self): ... method _ValidateInputs (line 55) | def _ValidateInputs(self): ... method _ValidateValues (line 56) | def _ValidateValues(self): ... method _WriteCandidates (line 57) | def _WriteCandidates(self) -> None: ... method _WriteBaseline (line 58) | def _WriteBaseline(self) -> None: ... method _ReadBaseline (line 59) | def _ReadBaseline(self, infile, path): ... method _WriteSingleGraph (line 60) | def _WriteSingleGraph(self) -> None: ... method _WriteDiffGraph (line 61) | def _WriteDiffGraph(self) -> None: ... FILE: usd/stubs/pxr-stubs/Ts/TsTest_Grapher.pyi class TsTest_Grapher (line 3) | class TsTest_Grapher: class Spline (line 4) | class Spline: method __init__ (line 9) | def __init__(self, name, data, samples, baked) -> None: ... class Diff (line 10) | class Diff: method __init__ (line 13) | def __init__(self, time, value) -> None: ... class _StyleTable (line 14) | class _StyleTable: class _Region (line 15) | class _Region: method __init__ (line 19) | def __init__(self, start, openStart, isDim) -> None: ... method __init__ (line 21) | def __init__(self, data, forKnots) -> None: ... method IsDim (line 22) | def IsDim(self, time): ... class _KeyframeData (line 23) | class _KeyframeData: method __init__ (line 25) | def __init__(self, splineData) -> None: ... method Draw (line 26) | def Draw(self, ax, color) -> None: ... method Init (line 28) | def Init(cls): ... method __init__ (line 36) | def __init__(self, title, widthPx: int = 1000, heightPx: int = 750, in... method AddSpline (line 37) | def AddSpline(self, name, splineData, samples, baked: Incomplete | Non... method AddDiffData (line 38) | def AddDiffData(self, diffs) -> None: ... method Display (line 39) | def Display(self) -> None: ... method Write (line 40) | def Write(self, filePath) -> None: ... method _DimColor (line 42) | def _DimColor(colorStr): method _ConfigureAxes (line 44) | def _ConfigureAxes(self, axes) -> None: method _MakeGraph (line 48) | def _MakeGraph(self) -> None: method _ClearGraph (line 52) | def _ClearGraph(self) -> None: ... FILE: usd/stubs/pxr-stubs/Ts/__init__.pyi class ExtrapolationType (line 20) | class ExtrapolationType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 23) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 28) | def GetValueFromName(name: object) -> Any: ... class KeyFrame (line 30) | class KeyFrame(Boost.Python.instance): method __init__ (line 63) | def __init__(self, time: float = ..., value: Any = ..., knotType: Knot... method __init__ (line 68) | def __init__(self, time: float, leftValue: Any, rightValue: Any, knotT... method __init__ (line 73) | def __init__(self, _kf: KeyFrame, /) -> None: method CanSetKnotType (line 77) | def CanSetKnotType(self, _unknownArg1: KnotType, /) -> _AnnotatedBoolR... method GetValue (line 82) | def GetValue(self, _side: Side, /) -> Any: method IsEquivalentAtSide (line 86) | def IsEquivalentAtSide(self, _keyFrame: KeyFrame, _side: Side, /) -> b... method SetValue (line 96) | def SetValue(self, _val: Any, _side: Side, /) -> None: method __eq__ (line 100) | def __eq__(self, other: object) -> bool: method __ne__ (line 104) | def __ne__(self, other: object) -> bool: ... method hasTangents (line 106) | def hasTangents(self): ... method isInterpolatable (line 108) | def isInterpolatable(self) -> bool: method supportsTangents (line 113) | def supportsTangents(self): ... class KnotType (line 115) | class KnotType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 118) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 123) | def GetValueFromName(name: object) -> Any: ... class LoopParams (line 125) | class LoopParams(Boost.Python.instance): method __init__ (line 130) | def __init__(self, _looping: bool, _start: float, _period: float, _pre... method __init__ (line 132) | def __init__(self) -> None: ... method GetLoopedInterval (line 133) | def GetLoopedInterval(self) -> pxr.Gf.Interval: ... method GetMasterInterval (line 134) | def GetMasterInterval(self) -> pxr.Gf.Interval: ... method IsValid (line 135) | def IsValid(self) -> bool: ... method __eq__ (line 136) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 137) | def __ne__(self, other: object) -> bool: ... method period (line 139) | def period(self) -> float: ... method preRepeatFrames (line 141) | def preRepeatFrames(self) -> float: ... method repeatFrames (line 143) | def repeatFrames(self) -> float: ... method start (line 145) | def start(self) -> float: ... class Side (line 147) | class Side(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 150) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 155) | def GetValueFromName(name: object) -> Any: ... class Spline (line 157) | class Spline(Boost.Python.instance): method __init__ (line 182) | def __init__(self) -> None: method __init__ (line 187) | def __init__(self, _other: Spline, /) -> None: method __init__ (line 192) | def __init__(self, arg2: object, arg3: object = ..., arg4: object = ..... method __init__ (line 194) | def __init__(self, arg2: object, arg3: object, /) -> None: ... # type... method BakeSplineLoops (line 195) | def BakeSplineLoops(self) -> None: ... method Breakdown (line 197) | def Breakdown(self, arg2: object, arg3: object, arg4: bool, arg5: floa... method Breakdown (line 218) | def Breakdown(self, _times: float, _type: KnotType, _flatTangents: boo... method Breakdown (line 232) | def Breakdown(self, _times: typing.Iterable[float], _types: typing.Ite... method Breakdown (line 249) | def Breakdown(self, _x: float, _type: KnotType, _flatTangents: bool, _... method CanSetKeyFrame (line 270) | def CanSetKeyFrame(self, _kf: KeyFrame, /) -> _AnnotatedBoolResult: method ClearRedundantKeyFrames (line 275) | def ClearRedundantKeyFrames(self, defaultValue: Any = ..., intervals: ... method ClosestKeyFrame (line 291) | def ClosestKeyFrame(self, arg2: float, /) -> Any: method ClosestKeyFrameAfter (line 297) | def ClosestKeyFrameAfter(self, arg2: float, /) -> Any: method ClosestKeyFrameBefore (line 303) | def ClosestKeyFrameBefore(self, arg2: float, /) -> Any: method DoSidesDiffer (line 309) | def DoSidesDiffer(self, time: float) -> bool: method Eval (line 324) | def Eval(self, time: float, side: Side = ...) -> Any: method Eval (line 333) | def Eval(self, arg2: object, /) -> tuple: method EvalDerivative (line 339) | def EvalDerivative(self, _time: float, /, side: Side = ...) -> Any: method EvalHeld (line 347) | def EvalHeld(self, _time: float, /, side: Side = ...) -> Any: method GetKeyFramesInMultiInterval (line 356) | def GetKeyFramesInMultiInterval(self, _unknownArg1: pxr.Gf.MultiInterv... method HasRedundantKeyFrames (line 360) | def HasRedundantKeyFrames(self, defaultValue: Any = ...) -> bool: method IsKeyFrameRedundant (line 365) | def IsKeyFrameRedundant(self, _keyFrame: float, _defaultValue: Any = .... method IsKeyFrameRedundant (line 378) | def IsKeyFrameRedundant(self, _keyFrameTime: KeyFrame, _defaultValue: ... method IsLinear (line 387) | def IsLinear(self) -> bool: method IsSegmentFlat (line 392) | def IsSegmentFlat(self, _kf1: KeyFrame, _kf2: KeyFrame, /) -> bool: method IsSegmentFlat (line 398) | def IsSegmentFlat(self, _startTime: float, _endTime: float, /) -> bool: method IsSegmentValueMonotonic (line 408) | def IsSegmentValueMonotonic(self, _kf1: KeyFrame, _kf2: KeyFrame, /) -... method IsSegmentValueMonotonic (line 420) | def IsSegmentValueMonotonic(self, _startTime: float, _endTime: float, ... method IsTimeLooped (line 431) | def IsTimeLooped(self, _time: float, /) -> bool: method IsVarying (line 439) | def IsVarying(self) -> bool: method IsVaryingSignificantly (line 449) | def IsVaryingSignificantly(self) -> bool: method Range (line 454) | def Range(self, arg2: float, arg3: float, /) -> tuple: method Sample (line 461) | def Sample(self, _startTime: float, _endTime: float, _timeScale: float... method SetKeyFrame (line 486) | def SetKeyFrame(self, _kf: KeyFrame, /) -> None: method SetKeyFrames (line 495) | def SetKeyFrames(self, arg2: object, /) -> None: method clear (line 501) | def clear(self) -> None: ... method has_key (line 502) | def has_key(self, arg2: float, /) -> bool: ... method keys (line 503) | def keys(self) -> list: ... method values (line 504) | def values(self) -> list: ... method __contains__ (line 505) | def __contains__(self, arg2: float, /) -> bool: ... method __delitem__ (line 507) | def __delitem__(self, arg2: float, /) -> None: ... method __delitem__ (line 509) | def __delitem__(self, arg2: object, /) -> None: ... method __eq__ (line 510) | def __eq__(self, other: object) -> bool: method __getitem__ (line 515) | def __getitem__(self, arg2: float, /) -> KeyFrame: ... # type: ignore... method __getitem__ (line 517) | def __getitem__(self, arg2: object, /) -> list: ... method __iter__ (line 518) | def __iter__(self) -> Any: ... method __len__ (line 519) | def __len__(self) -> int: ... method __ne__ (line 520) | def __ne__(self, other: object) -> bool: ... method empty (line 522) | def empty(self): ... method frameRange (line 524) | def frameRange(self) -> pxr.Gf.Interval: method frames (line 532) | def frames(self): ... method typeName (line 534) | def typeName(self) -> str: class TsTest_Evaluator (line 540) | class TsTest_Evaluator(Boost.Python.instance): method __init__ (line 541) | def __init__(self, *args, **kwargs) -> None: method BakeInnerLoops (line 545) | def BakeInnerLoops(self, splineData: TsTest_SplineData) -> TsTest_Spli... method Eval (line 546) | def Eval(self, splineData: TsTest_SplineData, sampleTimes: TsTest_Samp... method Sample (line 547) | def Sample(self, splineData: TsTest_SplineData, tolerance: float) -> l... class TsTest_Museum (line 549) | class TsTest_Museum(Boost.Python.instance): class DataId (line 550) | class DataId(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 553) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 558) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 564) | def __init__(self, *args, **kwargs) -> None: method GetData (line 568) | def GetData(self) -> TsTest_SplineData: ... class TsTest_Sample (line 570) | class TsTest_Sample(Boost.Python.instance): method __init__ (line 575) | def __init__(self) -> None: ... method __init__ (line 577) | def __init__(self, arg2: float, arg3: float, /) -> None: ... method __init__ (line 579) | def __init__(self, arg2: TsTest_Sample, /) -> None: ... class TsTest_SampleTimes (line 581) | class TsTest_SampleTimes(Boost.Python.instance): class SampleTime (line 582) | class SampleTime(Boost.Python.instance): method __init__ (line 587) | def __init__(self) -> None: ... method __init__ (line 589) | def __init__(self, arg2: float, /) -> None: ... method __init__ (line 591) | def __init__(self, arg2: float, arg3: bool, /) -> None: ... method __init__ (line 593) | def __init__(self, arg2: SampleTime, /) -> None: ... # type: ignore... method __eq__ (line 594) | def __eq__(self, other: object) -> bool: ... method __lt__ (line 595) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 596) | def __ne__(self, other: object) -> bool: ... method __init__ (line 598) | def __init__(self, times: object = ...) -> None: ... method __init__ (line 600) | def __init__(self, arg2: TsTest_SplineData, /) -> None: ... # type: i... method AddExtrapolationTimes (line 601) | def AddExtrapolationTimes(self, extrapolationFactor: float) -> None: ... method AddKnotTimes (line 602) | def AddKnotTimes(self) -> None: ... method AddStandardTimes (line 603) | def AddStandardTimes(self) -> None: ... method AddTimes (line 604) | def AddTimes(self, arg2: object, /) -> None: ... method AddUniformInterpolationTimes (line 605) | def AddUniformInterpolationTimes(self, numSamples: int) -> None: ... method GetTimes (line 606) | def GetTimes(self) -> list: ... class TsTest_SplineData (line 608) | class TsTest_SplineData(Boost.Python.instance): class ExtrapMethod (line 609) | class ExtrapMethod(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 612) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 617) | def GetValueFromName(name: object) -> Any: ... class Extrapolation (line 619) | class Extrapolation(Boost.Python.instance): method __init__ (line 624) | def __init__(self, arg2: Extrapolation, /) -> None: ... # type: ign... method __init__ (line 626) | def __init__(self, method: object = ..., slope: float = ..., loopMod... method __eq__ (line 627) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 628) | def __ne__(self, other: object) -> bool: ... class Feature (line 630) | class Feature(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 633) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 638) | def GetValueFromName(name: object) -> Any: ... class InnerLoopParams (line 640) | class InnerLoopParams(Boost.Python.instance): method __init__ (line 649) | def __init__(self, arg2: InnerLoopParams, /) -> None: ... # type: i... method __init__ (line 651) | def __init__(self, enabled: object = ..., protoStart: object = ..., ... method IsValid (line 652) | def IsValid(self) -> bool: ... method __eq__ (line 653) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 654) | def __ne__(self, other: object) -> bool: ... class InterpMethod (line 656) | class InterpMethod(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 659) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 664) | def GetValueFromName(name: object) -> Any: ... class Knot (line 666) | class Knot(Boost.Python.instance): method __init__ (line 679) | def __init__(self, arg2: Knot, /) -> None: ... # type: ignore[name-... method __init__ (line 681) | def __init__(self, time: object = ..., nextSegInterpMethod: object =... method __eq__ (line 682) | def __eq__(self, other: object) -> bool: ... method __lt__ (line 683) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 684) | def __ne__(self, other: object) -> bool: ... class LoopMode (line 686) | class LoopMode(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 689) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 694) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 714) | def __init__(self, isHermite: bool = ..., knots: object = ..., preExtr... method AddKnot (line 715) | def AddKnot(self, knot: Knot) -> None: ... method GetDebugDescription (line 716) | def GetDebugDescription(self) -> str: ... method GetInnerLoopParams (line 717) | def GetInnerLoopParams(self) -> InnerLoopParams: ... method GetIsHermite (line 718) | def GetIsHermite(self) -> bool: ... method GetKnots (line 719) | def GetKnots(self) -> list: ... method GetPostExtrapolation (line 720) | def GetPostExtrapolation(self) -> Extrapolation: ... method GetPreExtrapolation (line 721) | def GetPreExtrapolation(self) -> Extrapolation: ... method GetRequiredFeatures (line 722) | def GetRequiredFeatures(self) -> int: ... method SetInnerLoopParams (line 723) | def SetInnerLoopParams(self, params: InnerLoopParams) -> None: ... method SetIsHermite (line 724) | def SetIsHermite(self, isHermite: bool) -> None: ... method SetKnots (line 725) | def SetKnots(self, knots: object) -> None: ... method SetPostExtrapolation (line 726) | def SetPostExtrapolation(self, postExtrap: Extrapolation) -> None: ... method SetPreExtrapolation (line 727) | def SetPreExtrapolation(self, preExtrap: Extrapolation) -> None: ... method __eq__ (line 728) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 729) | def __ne__(self, other: object) -> bool: ... class TsTest_TsEvaluator (line 731) | class TsTest_TsEvaluator(TsTest_Evaluator): method __init__ (line 733) | def __init__(self) -> None: ... class ValueSample (line 735) | class ValueSample(Boost.Python.instance): method __init__ (line 744) | def __init__(self, *args, **kwargs) -> None: method isBlur (line 749) | def isBlur(self): ... method leftTime (line 751) | def leftTime(self): ... method leftValue (line 753) | def leftValue(self): ... method rightTime (line 755) | def rightTime(self): ... method rightValue (line 757) | def rightValue(self): ... class _AnnotatedBoolResult (line 759) | class _AnnotatedBoolResult(Boost.Python.instance): method __init__ (line 761) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 762) | def __bool__(self) -> bool: ... method __eq__ (line 763) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 764) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 765) | def __ne__(self, other: object) -> bool: ... method reasonWhyNot (line 767) | def reasonWhyNot(self): ... function SimplifySpline (line 769) | def SimplifySpline(_intervals: Spline, _maxErrorFraction: pxr.Gf.MultiIn... function SimplifySplinesInParallel (line 779) | def SimplifySplinesInParallel(_intervals: typing.Iterable[pxr.Gf.MultiIn... function TsTest_SampleBezier (line 789) | def TsTest_SampleBezier(splineData: TsTest_SplineData, numSamples: int) ... FILE: usd/stubs/pxr-stubs/Usd/__init__.pyi class APISchemaBase (line 45) | class APISchemaBase(SchemaBase): method __init__ (line 89) | def __init__(self, *args, **kwargs) -> None: method GetSchemaAttributeNames (line 94) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 104) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 105) | def __bool__(self) -> bool: ... class AssetInfoKeys (line 107) | class AssetInfoKeys(Boost.Python.instance): method __init__ (line 112) | def __init__(self, *args, **kwargs) -> None: class Attribute (line 117) | class Attribute(Property): method __init__ (line 243) | def __init__(self) -> None: method AddConnection (line 247) | def AddConnection(self, source: pxr.Sdf.Path | pxr.Ar.ResolvedPath | s... method Block (line 261) | def Block(self) -> None: method Clear (line 273) | def Clear(self) -> bool: method ClearAtTime (line 284) | def ClearAtTime(self, time: TimeCode | float | pxr.Sdf.TimeCode) -> bool: method ClearColorSpace (line 295) | def ClearColorSpace(self) -> bool: method ClearConnections (line 303) | def ClearConnections(self) -> bool: method ClearDefault (line 308) | def ClearDefault(self) -> bool: method Get (line 312) | def Get(self, time: TimeCode | float | pxr.Sdf.TimeCode = ...) -> Any: method GetBracketingTimeSamples (line 351) | def GetBracketingTimeSamples(self, desiredTime: float) -> tuple[float,... method GetColorSpace (line 382) | def GetColorSpace(self) -> str: method GetConnections (line 390) | def GetConnections(self) -> list[pxr.Sdf.Path]: method GetNumTimeSamples (line 409) | def GetNumTimeSamples(self) -> int: method GetResolveInfo (line 422) | def GetResolveInfo(self, time: TimeCode | float | pxr.Sdf.TimeCode = .... method GetRoleName (line 427) | def GetRoleName(self) -> str: method GetTimeSamples (line 431) | def GetTimeSamples(self) -> list[float]: method GetTimeSamplesInInterval (line 452) | def GetTimeSamplesInInterval(self, interval: pxr.Gf.Interval) -> list[... method GetTypeName (line 471) | def GetTypeName(self) -> pxr.Sdf.ValueTypeName: method GetUnionedTimeSamples (line 476) | def GetUnionedTimeSamples(attrs: typing.Iterable[Attribute | pxr.UsdGe... method GetUnionedTimeSamplesInInterval (line 500) | def GetUnionedTimeSamplesInInterval(attrs: typing.Iterable[Attribute |... method GetVariability (line 523) | def GetVariability(self) -> pxr.Sdf.Variability: method HasAuthoredConnections (line 533) | def HasAuthoredConnections(self) -> bool: method HasAuthoredValue (line 543) | def HasAuthoredValue(self) -> bool: method HasAuthoredValueOpinion (line 551) | def HasAuthoredValueOpinion(self) -> bool: method HasColorSpace (line 564) | def HasColorSpace(self) -> bool: method HasFallbackValue (line 572) | def HasFallbackValue(self) -> bool: method HasValue (line 577) | def HasValue(self) -> bool: method RemoveConnection (line 586) | def RemoveConnection(self, source: pxr.Sdf.Path | pxr.Ar.ResolvedPath ... method Set (line 595) | def Set(self, value: Any, time: TimeCode | float | pxr.Sdf.TimeCode = ... method SetColorSpace (line 612) | def SetColorSpace(self, _colorSpace: str | pxr.Ar.ResolvedPath, /) -> ... method SetConnections (line 620) | def SetConnections(self, sources: typing.Iterable[pxr.Sdf.Path | pxr.A... method SetTypeName (line 632) | def SetTypeName(self, typeName: pxr.Sdf.ValueTypeName) -> bool: method SetVariability (line 643) | def SetVariability(self, variability: pxr.Sdf.Variability) -> bool: method ValueMightBeTimeVarying (line 654) | def ValueMightBeTimeVarying(self) -> bool: class AttributeQuery (line 668) | class AttributeQuery(Boost.Python.instance): method __init__ (line 710) | def __init__(self, attribute: Attribute | pxr.UsdGeom.ConstraintTarget... method __init__ (line 715) | def __init__(self, prim: Prim, attributeName: str | pxr.Ar.ResolvedPat... method __init__ (line 721) | def __init__(self, attribute: Attribute | pxr.UsdGeom.ConstraintTarget... method CreateQueries (line 731) | def CreateQueries(prim: Prim, attributeNames: list[str] | list[pxr.Ar.... method Get (line 740) | def Get(self, time: TimeCode | float | pxr.Sdf.TimeCode = ...) -> Any: method GetAttribute (line 749) | def GetAttribute(self) -> Attribute: method GetBracketingTimeSamples (line 753) | def GetBracketingTimeSamples(self, desiredTime: float) -> tuple[float,... method GetNumTimeSamples (line 762) | def GetNumTimeSamples(self) -> int: method GetTimeSamples (line 770) | def GetTimeSamples(self) -> list[float]: method GetTimeSamplesInInterval (line 780) | def GetTimeSamplesInInterval(self, interval: pxr.Gf.Interval) -> list[... method GetUnionedTimeSamples (line 790) | def GetUnionedTimeSamples(attrQueries: typing.Iterable[AttributeQuery]... method GetUnionedTimeSamplesInInterval (line 808) | def GetUnionedTimeSamplesInInterval(attrQueries: typing.Iterable[Attri... method HasAuthoredValue (line 823) | def HasAuthoredValue(self) -> bool: method HasAuthoredValueOpinion (line 833) | def HasAuthoredValueOpinion(self) -> bool: method HasFallbackValue (line 846) | def HasFallbackValue(self) -> bool: method HasValue (line 855) | def HasValue(self) -> bool: method IsValid (line 865) | def IsValid(self) -> bool: method ValueMightBeTimeVarying (line 872) | def ValueMightBeTimeVarying(self) -> bool: method __bool__ (line 881) | def __bool__(self) -> bool: class ClipsAPI (line 886) | class ClipsAPI(APISchemaBase): method __init__ (line 943) | def __init__(self) -> None: ... method __init__ (line 945) | def __init__(self, prim: Prim) -> None: method __init__ (line 955) | def __init__(self, schemaObj: SchemaBase) -> None: method ComputeClipAssetPaths (line 964) | def ComputeClipAssetPaths(self, clipSet: str | pxr.Ar.ResolvedPath) ->... method ComputeClipAssetPaths (line 978) | def ComputeClipAssetPaths(self) -> list[pxr.Sdf.AssetPath]: method GenerateClipManifest (line 985) | def GenerateClipManifest(self, clipSet: str | pxr.Ar.ResolvedPath, wri... method GenerateClipManifest (line 1004) | def GenerateClipManifest(self, writeBlocksForClipsWithMissingValues: b... method GenerateClipManifestFromLayers (line 1015) | def GenerateClipManifestFromLayers(clipLayers: list[pxr.Sdf.Layer], cl... method Get (line 1028) | def Get(stage: Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) ... method GetClipActive (line 1042) | def GetClipActive(self, clipSet: str | pxr.Ar.ResolvedPath) -> pxr.Vt.... method GetClipActive (line 1053) | def GetClipActive(self) -> pxr.Vt.Vec2dArray: method GetClipAssetPaths (line 1064) | def GetClipAssetPaths(self, clipSet: str | pxr.Ar.ResolvedPath) -> lis... method GetClipAssetPaths (line 1073) | def GetClipAssetPaths(self) -> list[pxr.Sdf.AssetPath]: method GetClipManifestAssetPath (line 1084) | def GetClipManifestAssetPath(self, clipSet: str | pxr.Ar.ResolvedPath)... method GetClipManifestAssetPath (line 1100) | def GetClipManifestAssetPath(self) -> pxr.Sdf.AssetPath: method GetClipPrimPath (line 1111) | def GetClipPrimPath(self, clipSet: str | pxr.Ar.ResolvedPath) -> str: method GetClipPrimPath (line 1125) | def GetClipPrimPath(self) -> str: method GetClipSets (line 1135) | def GetClipSets(self) -> pxr.Sdf.StringListOp: method GetClipTemplateActiveOffset (line 1155) | def GetClipTemplateActiveOffset(self, clipSet: str | pxr.Ar.ResolvedPa... method GetClipTemplateActiveOffset (line 1163) | def GetClipTemplateActiveOffset(self) -> float: method GetClipTemplateAssetPath (line 1174) | def GetClipTemplateAssetPath(self, clipSet: str | pxr.Ar.ResolvedPath)... method GetClipTemplateAssetPath (line 1211) | def GetClipTemplateAssetPath(self) -> str: method GetClipTemplateEndTime (line 1222) | def GetClipTemplateEndTime(self, clipSet: str | pxr.Ar.ResolvedPath) -... method GetClipTemplateEndTime (line 1233) | def GetClipTemplateEndTime(self) -> float: method GetClipTemplateStartTime (line 1244) | def GetClipTemplateStartTime(self, clipSet: str | pxr.Ar.ResolvedPath)... method GetClipTemplateStartTime (line 1255) | def GetClipTemplateStartTime(self) -> float: method GetClipTemplateStride (line 1266) | def GetClipTemplateStride(self, clipSet: str | pxr.Ar.ResolvedPath) ->... method GetClipTemplateStride (line 1276) | def GetClipTemplateStride(self) -> float: method GetClipTimes (line 1287) | def GetClipTimes(self, clipSet: str | pxr.Ar.ResolvedPath) -> pxr.Vt.V... method GetClipTimes (line 1302) | def GetClipTimes(self) -> pxr.Vt.Vec2dArray: method GetClips (line 1312) | def GetClips(self) -> dict: method GetInterpolateMissingClipValues (line 1326) | def GetInterpolateMissingClipValues(self, clipSet: str | pxr.Ar.Resolv... method GetInterpolateMissingClipValues (line 1328) | def GetInterpolateMissingClipValues(self) -> bool: method GetSchemaAttributeNames (line 1335) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method SetClipActive (line 1345) | def SetClipActive(self, activeClips: pxr.Vt.Vec2dArray | typing.Iterab... method SetClipActive (line 1354) | def SetClipActive(self, activeClips: pxr.Vt.Vec2dArray | typing.Iterab... method SetClipAssetPaths (line 1365) | def SetClipAssetPaths(self, assetPaths: list[pxr.Sdf.AssetPath] | list... method SetClipAssetPaths (line 1374) | def SetClipAssetPaths(self, assetPaths: list[pxr.Sdf.AssetPath] | list... method SetClipManifestAssetPath (line 1385) | def SetClipManifestAssetPath(self, manifestAssetPath: pxr.Sdf.AssetPat... method SetClipManifestAssetPath (line 1394) | def SetClipManifestAssetPath(self, manifestAssetPath: pxr.Sdf.AssetPat... method SetClipPrimPath (line 1405) | def SetClipPrimPath(self, primPath: str | pxr.Ar.ResolvedPath, clipSet... method SetClipPrimPath (line 1414) | def SetClipPrimPath(self, primPath: str | pxr.Ar.ResolvedPath) -> bool: method SetClipSets (line 1424) | def SetClipSets(self, clipSets: pxr.Sdf.StringListOp) -> bool: method SetClipTemplateActiveOffset (line 1433) | def SetClipTemplateActiveOffset(self, clipTemplateActiveOffset: float,... method SetClipTemplateActiveOffset (line 1442) | def SetClipTemplateActiveOffset(self, clipTemplateActiveOffset: float)... method SetClipTemplateAssetPath (line 1453) | def SetClipTemplateAssetPath(self, clipTemplateAssetPath: str | pxr.Ar... method SetClipTemplateAssetPath (line 1462) | def SetClipTemplateAssetPath(self, clipTemplateAssetPath: str | pxr.Ar... method SetClipTemplateEndTime (line 1473) | def SetClipTemplateEndTime(self, clipTemplateEndTime: float, clipSet: ... method SetClipTemplateEndTime (line 1482) | def SetClipTemplateEndTime(self, clipTemplateEndTime: float) -> bool: method SetClipTemplateStartTime (line 1493) | def SetClipTemplateStartTime(self, clipTemplateStartTime: float, clipS... method SetClipTemplateStartTime (line 1502) | def SetClipTemplateStartTime(self, clipTemplateStartTime: float) -> bool: method SetClipTemplateStride (line 1513) | def SetClipTemplateStride(self, clipTemplateStride: float, clipSet: st... method SetClipTemplateStride (line 1522) | def SetClipTemplateStride(self, clipTemplateStride: float) -> bool: method SetClipTimes (line 1533) | def SetClipTimes(self, clipTimes: pxr.Vt.Vec2dArray | typing.Iterable[... method SetClipTimes (line 1542) | def SetClipTimes(self, clipTimes: pxr.Vt.Vec2dArray | typing.Iterable[... method SetClips (line 1552) | def SetClips(self, clips: dict) -> bool: method SetInterpolateMissingClipValues (line 1561) | def SetInterpolateMissingClipValues(self, interpolate: bool, clipSet: ... method SetInterpolateMissingClipValues (line 1567) | def SetInterpolateMissingClipValues(self, interpolate: bool) -> bool: method _GetStaticTfType (line 1574) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1575) | def __bool__(self) -> bool: ... class CollectionAPI (line 1577) | class CollectionAPI(APISchemaBase): method __init__ (line 1760) | def __init__(self, prim: Prim, name: str | pxr.Ar.ResolvedPath) -> None: method __init__ (line 1772) | def __init__(self, _schemaObj: Prim, _name: str | pxr.Ar.ResolvedPath,... method __init__ (line 1782) | def __init__(self) -> None: ... method __init__ (line 1784) | def __init__(self, schemaObj: SchemaBase, name: object) -> None: ... method Apply (line 1786) | def Apply(prim: Prim, name: str | pxr.Ar.ResolvedPath) -> CollectionAPI: method BlockCollection (line 1811) | def BlockCollection(self) -> bool: method CanApply (line 1823) | def CanApply(prim: Prim, name: str | pxr.Ar.ResolvedPath) -> _CanApply... method CanContainPropertyName (line 1849) | def CanContainPropertyName(name: str | pxr.Ar.ResolvedPath) -> bool: method ComputeIncludedObjects (line 1854) | def ComputeIncludedObjects(query: UsdCollectionMembershipQuery, stage:... method ComputeIncludedPaths (line 1864) | def ComputeIncludedPaths(query: UsdCollectionMembershipQuery, stage: S... method ComputeMembershipQuery (line 1873) | def ComputeMembershipQuery(self) -> UsdCollectionMembershipQuery: method CreateCollectionAttr (line 1878) | def CreateCollectionAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateExcludesRel (line 1888) | def CreateExcludesRel(self) -> Relationship: method CreateExpansionRuleAttr (line 1893) | def CreateExpansionRuleAttr(self, defaultValue: Any = ..., writeSparse... method CreateIncludeRootAttr (line 1903) | def CreateIncludeRootAttr(self, defaultValue: Any = ..., writeSparsely... method CreateIncludesRel (line 1913) | def CreateIncludesRel(self) -> Relationship: method CreateMembershipExpressionAttr (line 1918) | def CreateMembershipExpressionAttr(self, defaultValue: Any = ..., writ... method ExcludePath (line 1928) | def ExcludePath(self, pathToExclude: pxr.Sdf.Path | pxr.Ar.ResolvedPat... method Get (line 1947) | def Get(stage: Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) ... method Get (line 1966) | def Get(prim: Prim, name: str | pxr.Ar.ResolvedPath) -> CollectionAPI: method GetAll (line 1974) | def GetAll(prim: Prim) -> list[CollectionAPI]: method GetAllCollections (line 1980) | def GetAllCollections(prim: Prim) -> list[CollectionAPI]: method GetCollection (line 1991) | def GetCollection(stage: Stage, collectionPath: pxr.Sdf.Path | pxr.Ar.... method GetCollection (line 1998) | def GetCollection(prim: Prim, name: str | pxr.Ar.ResolvedPath) -> Coll... method GetCollectionAttr (line 2003) | def GetCollectionAttr(self) -> Attribute: method GetCollectionPath (line 2029) | def GetCollectionPath(self) -> pxr.Sdf.Path: method GetExcludesRel (line 2040) | def GetExcludesRel(self) -> Relationship: method GetExpansionRuleAttr (line 2057) | def GetExpansionRuleAttr(self) -> Attribute: method GetIncludeRootAttr (line 2084) | def GetIncludeRootAttr(self) -> Attribute: method GetIncludesRel (line 2109) | def GetIncludesRel(self) -> Relationship: method GetMembershipExpressionAttr (line 2119) | def GetMembershipExpressionAttr(self) -> Attribute: method GetName (line 2142) | def GetName(self) -> str: method GetNamedCollectionPath (line 2147) | def GetNamedCollectionPath(prim: Prim, collectionName: str | pxr.Ar.Re... method GetSchemaAttributeNames (line 2158) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSchemaAttributeNames (line 2169) | def GetSchemaAttributeNames(_includeInherited: bool, /, includeInherit... method HasNoIncludedPaths (line 2179) | def HasNoIncludedPaths(self) -> bool: method IncludePath (line 2190) | def IncludePath(self, pathToInclude: pxr.Sdf.Path | pxr.Ar.ResolvedPat... method IsCollectionAPIPath (line 2205) | def IsCollectionAPIPath(_path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | st... method IsSchemaPropertyBaseName (line 2215) | def IsSchemaPropertyBaseName(baseName: str | pxr.Ar.ResolvedPath) -> b... method ResetCollection (line 2220) | def ResetCollection(self) -> bool: method Validate (line 2230) | def Validate(self) -> str: method _GetStaticTfType (line 2247) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2248) | def __bool__(self) -> bool: ... class CompositionArc (line 2250) | class CompositionArc(Boost.Python.instance): method __init__ (line 2251) | def __init__(self, *args, **kwargs) -> None: method GetArcType (line 2255) | def GetArcType(self) -> Any: ... method GetIntroducingLayer (line 2256) | def GetIntroducingLayer(self) -> pxr.Sdf.Layer: ... method GetIntroducingListEditor (line 2257) | def GetIntroducingListEditor(self) -> tuple: ... method GetIntroducingNode (line 2258) | def GetIntroducingNode(self) -> pxr.Pcp.NodeRef: ... method GetIntroducingPrimPath (line 2259) | def GetIntroducingPrimPath(self) -> pxr.Sdf.Path: ... method GetTargetLayer (line 2260) | def GetTargetLayer(self) -> pxr.Sdf.Layer: ... method GetTargetNode (line 2261) | def GetTargetNode(self) -> pxr.Pcp.NodeRef: ... method GetTargetPrimPath (line 2262) | def GetTargetPrimPath(self) -> pxr.Sdf.Path: ... method HasSpecs (line 2263) | def HasSpecs(self) -> bool: ... method IsAncestral (line 2264) | def IsAncestral(self) -> bool: ... method IsImplicit (line 2265) | def IsImplicit(self) -> bool: ... method IsIntroducedInRootLayerPrimSpec (line 2266) | def IsIntroducedInRootLayerPrimSpec(self) -> bool: ... method IsIntroducedInRootLayerStack (line 2267) | def IsIntroducedInRootLayerStack(self) -> bool: ... method MakeResolveTargetStrongerThan (line 2268) | def MakeResolveTargetStrongerThan(self, subLayer: pxr.Sdf.Layer = ...)... method MakeResolveTargetUpTo (line 2269) | def MakeResolveTargetUpTo(self, subLayer: pxr.Sdf.Layer = ...) -> Reso... class CrateInfo (line 2271) | class CrateInfo(Boost.Python.instance): class Section (line 2277) | class Section(Boost.Python.instance): method __init__ (line 2283) | def __init__(self) -> None: ... method __init__ (line 2285) | def __init__(self, name: str | pxr.Ar.ResolvedPath, start: int, size... class SummaryStats (line 2287) | class SummaryStats(Boost.Python.instance): method __init__ (line 2295) | def __init__(self) -> None: ... method __init__ (line 2297) | def __init__(self) -> None: ... method GetFileVersion (line 2298) | def GetFileVersion(self) -> str: method GetSections (line 2302) | def GetSections(self) -> list[CrateInfo.Section]: method GetSoftwareVersion (line 2306) | def GetSoftwareVersion(self) -> str: method GetSummaryStats (line 2310) | def GetSummaryStats(self) -> CrateInfo.SummaryStats: method Open (line 2315) | def Open(fileName: str | pxr.Ar.ResolvedPath) -> CrateInfo: method __bool__ (line 2319) | def __bool__(self) -> bool: class EditContext (line 2324) | class EditContext(Boost.Python.instance): method __init__ (line 2353) | def __init__(self, stage: Stage, editTarget: EditTarget | pxr.Sdf.Laye... method __enter__ (line 2365) | def __enter__(self) -> EditContext: ... method __exit__ (line 2366) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class EditTarget (line 2368) | class EditTarget(Boost.Python.instance): method __init__ (line 2411) | def __init__(self) -> None: method __init__ (line 2419) | def __init__(self, layer: pxr.Sdf.Layer, node: pxr.Pcp.NodeRef = ...) ... method ComposeOver (line 2427) | def ComposeOver(self, weaker: EditTarget | pxr.Sdf.Layer) -> EditTarget: method ForLocalDirectVariant (line 2442) | def ForLocalDirectVariant(layer: pxr.Sdf.Layer, varSelPath: pxr.Sdf.Pa... method GetLayer (line 2451) | def GetLayer(self) -> pxr.Sdf.Layer: method GetMapFunction (line 2455) | def GetMapFunction(self) -> pxr.Pcp.MapFunction: method GetPrimSpecForScenePath (line 2460) | def GetPrimSpecForScenePath(self, scenePath: pxr.Sdf.Path | pxr.Ar.Res... method GetPropertySpecForScenePath (line 2472) | def GetPropertySpecForScenePath(self, scenePath: pxr.Sdf.Path | pxr.Ar... method GetSpecForScenePath (line 2473) | def GetSpecForScenePath(self, scenePath: pxr.Sdf.Path | pxr.Ar.Resolve... method IsNull (line 2474) | def IsNull(self) -> bool: method IsValid (line 2482) | def IsValid(self) -> bool: method MapToSpecPath (line 2489) | def MapToSpecPath(self, scenePath: pxr.Sdf.Path | pxr.Ar.ResolvedPath ... method __eq__ (line 2498) | def __eq__(self, other: object) -> bool: method __ne__ (line 2502) | def __ne__(self, other: object) -> bool: ... class FlattenResolveAssetPathContext (line 2504) | class FlattenResolveAssetPathContext(Boost.Python.instance): method __init__ (line 2509) | def __init__(self, *args, **kwargs) -> None: method assetPath (line 2514) | def assetPath(self): ... method expressionVariables (line 2516) | def expressionVariables(self): ... method sourceLayer (line 2518) | def sourceLayer(self): ... class Inherits (line 2520) | class Inherits(Boost.Python.instance): method __init__ (line 2533) | def __init__(self, *args, **kwargs) -> None: method AddInherit (line 2537) | def AddInherit(self, primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPath | st... method ClearInherits (line 2542) | def ClearInherits(self) -> bool: method GetAllDirectInherits (line 2547) | def GetAllDirectInherits(self) -> list[pxr.Sdf.Path]: method GetPrim (line 2559) | def GetPrim(self) -> Prim: method RemoveInherit (line 2563) | def RemoveInherit(self, primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method SetInherits (line 2568) | def SetInherits(self, _items: typing.Iterable[pxr.Sdf.Path | pxr.Ar.Re... method __bool__ (line 2574) | def __bool__(self) -> bool: ... class InterpolationType (line 2576) | class InterpolationType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2579) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2584) | def GetValueFromName(name: object) -> Any: ... class ListPosition (line 2586) | class ListPosition(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2589) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2594) | def GetValueFromName(name: object) -> Any: ... class LoadPolicy (line 2596) | class LoadPolicy(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2599) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2604) | def GetValueFromName(name: object) -> Any: ... class ModelAPI (line 2606) | class ModelAPI(APISchemaBase): class KindValidation (line 2625) | class KindValidation(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2628) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2633) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 2638) | def __init__(self) -> None: ... method __init__ (line 2640) | def __init__(self, prim: Prim) -> None: method __init__ (line 2650) | def __init__(self, schemaObj: SchemaBase) -> None: method Get (line 2659) | def Get(stage: Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) ... method GetAssetIdentifier (line 2672) | def GetAssetIdentifier(self) -> pxr.Sdf.AssetPath: method GetAssetInfo (line 2681) | def GetAssetInfo(self) -> dict: method GetAssetName (line 2693) | def GetAssetName(self) -> str: method GetAssetVersion (line 2701) | def GetAssetVersion(self) -> str: method GetKind (line 2716) | def GetKind(self) -> str: method GetPayloadAssetDependencies (line 2727) | def GetPayloadAssetDependencies(self) -> pxr.Sdf.AssetPathArray: method GetSchemaAttributeNames (line 2740) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method IsGroup (line 2749) | def IsGroup(self) -> bool: method IsKind (line 2754) | def IsKind(self, baseKind: str | pxr.Ar.ResolvedPath, validation: pxr.... method IsModel (line 2773) | def IsModel(self) -> bool: method SetAssetIdentifier (line 2778) | def SetAssetIdentifier(self, _identifier: pxr.Sdf.AssetPath | str, /) ... method SetAssetInfo (line 2787) | def SetAssetInfo(self, _info: dict, /) -> None: method SetAssetName (line 2792) | def SetAssetName(self, _assetName: str | pxr.Ar.ResolvedPath, /) -> None: method SetAssetVersion (line 2800) | def SetAssetVersion(self, _version: str | pxr.Ar.ResolvedPath, /) -> N... method SetKind (line 2808) | def SetKind(self, value: str | pxr.Ar.ResolvedPath) -> bool: method SetPayloadAssetDependencies (line 2818) | def SetPayloadAssetDependencies(self, _assetDeps: pxr.Sdf.AssetPathArr... method _GetStaticTfType (line 2828) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2829) | def __bool__(self) -> bool: ... class NamespaceEditor (line 2831) | class NamespaceEditor(Boost.Python.instance): method __init__ (line 2838) | def __init__(self, _stage: Stage, /) -> None: ... method ApplyEdits (line 2839) | def ApplyEdits(self) -> bool: method CanApplyEdits (line 2850) | def CanApplyEdits(self) -> _UsdNamespaceEditorCanEditResult: method DeletePrim (line 2861) | def DeletePrim(self, _prim: Prim, /) -> bool: method DeletePrimAtPath (line 2872) | def DeletePrimAtPath(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method DeleteProperty (line 2881) | def DeleteProperty(self, _property: Property | pxr.UsdGeom.XformOp, /)... method DeletePropertyAtPath (line 2892) | def DeletePropertyAtPath(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method MovePrimAtPath (line 2901) | def MovePrimAtPath(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | s... method MovePropertyAtPath (line 2911) | def MovePropertyAtPath(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method RenamePrim (line 2921) | def RenamePrim(self, _prim: Prim, _newName: str | pxr.Ar.ResolvedPath,... method RenameProperty (line 2932) | def RenameProperty(self, _property: Property | pxr.UsdGeom.XformOp, _n... method ReparentPrim (line 2944) | def ReparentPrim(self, _prim: Prim, _newParent: Prim, /) -> bool: method ReparentPrim (line 2956) | def ReparentPrim(self, _prim: Prim, _newParent: Prim, _newName: str | ... method ReparentProperty (line 2969) | def ReparentProperty(self, _property: Property | pxr.UsdGeom.XformOp, ... method ReparentProperty (line 2981) | def ReparentProperty(self, _property: Property | pxr.UsdGeom.XformOp, ... class Notice (line 2994) | class Notice(Boost.Python.instance): class LayerMutingChanged (line 2995) | class LayerMutingChanged(Notice.StageNotice): method __init__ (line 3012) | def __init__(self, *args, **kwargs) -> None: method GetMutedLayers (line 3016) | def GetMutedLayers(self) -> list[str]: method GetUnmutedLayers (line 3025) | def GetUnmutedLayers(self) -> list[str]: class ObjectsChanged (line 3035) | class ObjectsChanged(Notice.StageNotice): method __init__ (line 3079) | def __init__(self, *args, **kwargs) -> None: method AffectedObject (line 3083) | def AffectedObject(self, _obj: Object | pxr.UsdGeom.XformOp, /) -> b... method ChangedInfoOnly (line 3095) | def ChangedInfoOnly(self, _obj: Object | pxr.UsdGeom.XformOp, /) -> ... method GetChangedFields (line 3105) | def GetChangedFields(self, _obj: Object | pxr.UsdGeom.XformOp, /) ->... method GetChangedFields (line 3121) | def GetChangedFields(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetChangedInfoOnlyPaths (line 3126) | def GetChangedInfoOnlyPaths(self) -> PathRange: # type: ignore[name... method GetResolvedAssetPathsResyncedPaths (line 3145) | def GetResolvedAssetPathsResyncedPaths(self) -> PathRange: # type: ... method GetResyncedPaths (line 3164) | def GetResyncedPaths(self) -> PathRange: # type: ignore[name-defined] method HasChangedFields (line 3183) | def HasChangedFields(self, _obj: Object | pxr.UsdGeom.XformOp, /) ->... method HasChangedFields (line 3192) | def HasChangedFields(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method ResolvedAssetPathsResynced (line 3197) | def ResolvedAssetPathsResynced(self, _obj: Object | pxr.UsdGeom.Xfor... method ResyncedObject (line 3206) | def ResyncedObject(self, _obj: Object | pxr.UsdGeom.XformOp, /) -> b... class StageContentsChanged (line 3216) | class StageContentsChanged(Notice.StageNotice): method __init__ (line 3217) | def __init__(self, *args, **kwargs) -> None: class StageEditTargetChanged (line 3222) | class StageEditTargetChanged(Notice.StageNotice): method __init__ (line 3223) | def __init__(self, *args, **kwargs) -> None: class StageNotice (line 3228) | class StageNotice(pxr.Tf.Notice): method __init__ (line 3232) | def __init__(self, *args, **kwargs) -> None: method GetStage (line 3236) | def GetStage(self) -> Stage: method __init__ (line 3240) | def __init__(self, *args, **kwargs) -> None: class Object (line 3245) | class Object(Boost.Python.instance): method __init__ (line 3273) | def __init__(self) -> None: method ClearAssetInfo (line 3277) | def ClearAssetInfo(self) -> None: method ClearAssetInfoByKey (line 3285) | def ClearAssetInfoByKey(self, keyPath: str | pxr.Ar.ResolvedPath) -> N... method ClearCustomData (line 3294) | def ClearCustomData(self) -> None: method ClearCustomDataByKey (line 3302) | def ClearCustomDataByKey(self, keyPath: str | pxr.Ar.ResolvedPath) -> ... method ClearDisplayName (line 3311) | def ClearDisplayName(self) -> bool: method ClearDocumentation (line 3319) | def ClearDocumentation(self) -> bool: method ClearHidden (line 3327) | def ClearHidden(self) -> bool: method ClearMetadata (line 3331) | def ClearMetadata(self, key: str | pxr.Ar.ResolvedPath) -> bool: method ClearMetadataByDictKey (line 3344) | def ClearMetadataByDictKey(self, key: str | pxr.Ar.ResolvedPath, keyPa... method GetAllAuthoredMetadata (line 3356) | def GetAllAuthoredMetadata(self) -> dict: method GetAllMetadata (line 3367) | def GetAllMetadata(self) -> dict: method GetAssetInfo (line 3378) | def GetAssetInfo(self) -> dict: method GetAssetInfoByKey (line 3396) | def GetAssetInfoByKey(self, keyPath: str | pxr.Ar.ResolvedPath) -> Any: method GetCustomData (line 3406) | def GetCustomData(self) -> dict: method GetCustomDataByKey (line 3428) | def GetCustomDataByKey(self, keyPath: str | pxr.Ar.ResolvedPath) -> Any: method GetDescription (line 3438) | def GetDescription(self) -> str: method GetDisplayName (line 3449) | def GetDisplayName(self) -> str: method GetDocumentation (line 3458) | def GetDocumentation(self) -> str: method GetMetadata (line 3467) | def GetMetadata(self, key: str | pxr.Ar.ResolvedPath) -> Any: method GetMetadataByDictKey (line 3486) | def GetMetadataByDictKey(self, key: str | pxr.Ar.ResolvedPath, keyPath... method GetName (line 3504) | def GetName(self) -> str: method GetNamespaceDelimiter (line 3515) | def GetNamespaceDelimiter() -> str: ... method GetPath (line 3516) | def GetPath(self) -> pxr.Sdf.Path: method GetPrim (line 3522) | def GetPrim(self) -> Prim: method GetPrimPath (line 3527) | def GetPrimPath(self) -> pxr.Sdf.Path: method GetStage (line 3535) | def GetStage(self) -> Stage: method HasAssetInfo (line 3540) | def HasAssetInfo(self) -> bool: method HasAssetInfoKey (line 3545) | def HasAssetInfoKey(self, keyPath: str | pxr.Ar.ResolvedPath) -> bool: method HasAuthoredAssetInfo (line 3555) | def HasAuthoredAssetInfo(self) -> bool: method HasAuthoredAssetInfoKey (line 3560) | def HasAuthoredAssetInfoKey(self, keyPath: str | pxr.Ar.ResolvedPath) ... method HasAuthoredCustomData (line 3570) | def HasAuthoredCustomData(self) -> bool: method HasAuthoredCustomDataKey (line 3575) | def HasAuthoredCustomDataKey(self, keyPath: str | pxr.Ar.ResolvedPath)... method HasAuthoredDisplayName (line 3585) | def HasAuthoredDisplayName(self) -> bool: method HasAuthoredDocumentation (line 3592) | def HasAuthoredDocumentation(self) -> bool: method HasAuthoredHidden (line 3599) | def HasAuthoredHidden(self) -> bool: method HasAuthoredMetadata (line 3608) | def HasAuthoredMetadata(self, key: str | pxr.Ar.ResolvedPath) -> bool: method HasAuthoredMetadataDictKey (line 3613) | def HasAuthoredMetadataDictKey(self, key: str | pxr.Ar.ResolvedPath, k... method HasCustomData (line 3624) | def HasCustomData(self) -> bool: method HasCustomDataKey (line 3629) | def HasCustomDataKey(self, keyPath: str | pxr.Ar.ResolvedPath) -> bool: method HasMetadata (line 3639) | def HasMetadata(self, key: str | pxr.Ar.ResolvedPath) -> bool: method HasMetadataDictKey (line 3645) | def HasMetadataDictKey(self, key: str | pxr.Ar.ResolvedPath, keyPath: ... method IsHidden (line 3656) | def IsHidden(self) -> bool: method IsValid (line 3673) | def IsValid(self) -> bool: method SetAssetInfo (line 3677) | def SetAssetInfo(self, assetInfo: dict) -> None: method SetAssetInfoByKey (line 3682) | def SetAssetInfoByKey(self, keyPath: str | pxr.Ar.ResolvedPath, value:... method SetCustomData (line 3691) | def SetCustomData(self, customData: dict) -> None: method SetCustomDataByKey (line 3696) | def SetCustomDataByKey(self, keyPath: str | pxr.Ar.ResolvedPath, value... method SetDisplayName (line 3705) | def SetDisplayName(self, name: str | pxr.Ar.ResolvedPath) -> bool: method SetDocumentation (line 3716) | def SetDocumentation(self, doc: str | pxr.Ar.ResolvedPath) -> bool: method SetHidden (line 3720) | def SetHidden(self, hidden: bool) -> bool: method SetMetadata (line 3727) | def SetMetadata(self, key: str | pxr.Ar.ResolvedPath, value: Any) -> b... method SetMetadataByDictKey (line 3737) | def SetMetadataByDictKey(self, key: str | pxr.Ar.ResolvedPath, keyPath... method __bool__ (line 3749) | def __bool__(self) -> bool: method __eq__ (line 3753) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 3754) | def __hash__(self) -> int: ... method __ne__ (line 3755) | def __ne__(self, other: object) -> bool: ... class Payloads (line 3757) | class Payloads(Boost.Python.instance): method __init__ (line 3766) | def __init__(self, *args, **kwargs) -> None: method AddInternalPayload (line 3770) | def AddInternalPayload(self, primPath: pxr.Sdf.Path | pxr.Ar.ResolvedP... method AddPayload (line 3779) | def AddPayload(self, payload: pxr.Sdf.Payload, position: ListPosition ... method AddPayload (line 3792) | def AddPayload(self, assetPath: str | pxr.Ar.ResolvedPath, primPath: p... method AddPayload (line 3798) | def AddPayload(self, assetPath: str | pxr.Ar.ResolvedPath, layerOffset... method ClearPayloads (line 3807) | def ClearPayloads(self) -> bool: method GetPrim (line 3818) | def GetPrim(self) -> Prim: method RemovePayload (line 3822) | def RemovePayload(self, payload: pxr.Sdf.Payload) -> bool: method SetPayloads (line 3834) | def SetPayloads(self, _items: list[pxr.Sdf.Payload], /) -> bool: method __bool__ (line 3845) | def __bool__(self) -> bool: ... class Prim (line 3847) | class Prim(Object): method __init__ (line 3910) | def __init__(self) -> None: method AddAppliedSchema (line 3914) | def AddAppliedSchema(self, _appliedSchemaName: str | pxr.Ar.ResolvedPa... method ApplyAPI (line 3944) | def ApplyAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase]) -> bool: method ApplyAPI (line 3949) | def ApplyAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase], instanc... method ApplyAPI (line 3957) | def ApplyAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath) -> bool: method ApplyAPI (line 3965) | def ApplyAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, instan... method ApplyAPI (line 3973) | def ApplyAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaVers... method ApplyAPI (line 3981) | def ApplyAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaVers... method CanApplyAPI (line 3989) | def CanApplyAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase]) -> _... method CanApplyAPI (line 3996) | def CanApplyAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase], inst... method CanApplyAPI (line 4004) | def CanApplyAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath) -> ... method CanApplyAPI (line 4012) | def CanApplyAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, ins... method CanApplyAPI (line 4020) | def CanApplyAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaV... method CanApplyAPI (line 4028) | def CanApplyAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaV... method ClearActive (line 4035) | def ClearActive(self) -> bool: method ClearChildrenReorder (line 4045) | def ClearChildrenReorder(self) -> None: method ClearInstanceable (line 4050) | def ClearInstanceable(self) -> bool: method ClearPayload (line 4057) | def ClearPayload(self) -> bool: method ClearPropertyOrder (line 4064) | def ClearPropertyOrder(self) -> None: method ClearTypeName (line 4069) | def ClearTypeName(self) -> bool: method ComputeExpandedPrimIndex (line 4073) | def ComputeExpandedPrimIndex(self) -> pxr.Pcp.PrimIndex: method CreateAttribute (line 4098) | def CreateAttribute(self, name: str | pxr.Ar.ResolvedPath, typeName: p... method CreateAttribute (line 4143) | def CreateAttribute(self, nameElts: typing.Iterable[str | pxr.Ar.Resol... method CreateRelationship (line 4154) | def CreateRelationship(self, name: str | pxr.Ar.ResolvedPath, custom: ... method CreateRelationship (line 4196) | def CreateRelationship(self, nameElts: typing.Iterable[str | pxr.Ar.Re... method FindAllAttributeConnectionPaths (line 4207) | def FindAllAttributeConnectionPaths(self, traversalPredicate: _PrimFla... method FindAllAttributeConnectionPaths (line 4220) | def FindAllAttributeConnectionPaths(self, predicate: typing.Callable[[... method FindAllRelationshipTargetPaths (line 4228) | def FindAllRelationshipTargetPaths(self, traversalPredicate: _PrimFlag... method FindAllRelationshipTargetPaths (line 4241) | def FindAllRelationshipTargetPaths(self, predicate: typing.Callable[[R... method GetAllChildren (line 4248) | def GetAllChildren(self) -> list: method GetAllChildrenNames (line 4252) | def GetAllChildrenNames(self) -> list[str]: method GetAppliedSchemas (line 4259) | def GetAppliedSchemas(self) -> list[str]: method GetAttribute (line 4271) | def GetAttribute(self, attrName: str | pxr.Ar.ResolvedPath) -> Attribute: method GetAttributeAtPath (line 4287) | def GetAttributeAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath ... method GetAttributes (line 4302) | def GetAttributes(self) -> list[Attribute]: method GetAuthoredAttributes (line 4306) | def GetAuthoredAttributes(self) -> list[Attribute]: method GetAuthoredProperties (line 4314) | def GetAuthoredProperties(self, predicate: typing.Callable[[str | pxr.... method GetAuthoredPropertiesInNamespace (line 4333) | def GetAuthoredPropertiesInNamespace(self, namespaces: typing.Iterable... method GetAuthoredPropertiesInNamespace (line 4345) | def GetAuthoredPropertiesInNamespace(self, namespaces: str | pxr.Ar.Re... method GetAuthoredPropertyNames (line 4357) | def GetAuthoredPropertyNames(self, predicate: typing.Callable[[str | p... method GetAuthoredRelationships (line 4375) | def GetAuthoredRelationships(self) -> list[Relationship]: method GetChild (line 4383) | def GetChild(self, name: str | pxr.Ar.ResolvedPath) -> Prim: method GetChildren (line 4394) | def GetChildren(self) -> list: method GetChildrenNames (line 4407) | def GetChildrenNames(self) -> list[str]: method GetChildrenReorder (line 4414) | def GetChildrenReorder(self) -> list[str]: method GetFilteredChildren (line 4425) | def GetFilteredChildren(self, predicate: _PrimFlagsPredicate | _Term) ... method GetFilteredChildrenNames (line 4449) | def GetFilteredChildrenNames(self, _predicate: _PrimFlagsPredicate | _... method GetFilteredNextSibling (line 4456) | def GetFilteredNextSibling(self, _predicate: _PrimFlagsPredicate | _Te... method GetInherits (line 4465) | def GetInherits(self) -> Inherits: method GetInstances (line 4478) | def GetInstances(self) -> list[Prim]: method GetKind (line 4489) | def GetKind(self) -> str: method GetNextSibling (line 4510) | def GetNextSibling(self) -> Prim: method GetObjectAtPath (line 4523) | def GetObjectAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | s... method GetParent (line 4532) | def GetParent(self) -> Prim: method GetPayloads (line 4539) | def GetPayloads(self) -> Payloads: method GetPrimAtPath (line 4550) | def GetPrimAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str... method GetPrimDefinition (line 4559) | def GetPrimDefinition(self) -> PrimDefinition: method GetPrimInPrototype (line 4567) | def GetPrimInPrototype(self) -> Prim: method GetPrimIndex (line 4575) | def GetPrimIndex(self) -> pxr.Pcp.PrimIndex: method GetPrimStack (line 4601) | def GetPrimStack(self) -> list[pxr.Sdf.PrimSpec]: method GetPrimStackWithLayerOffsets (line 4618) | def GetPrimStackWithLayerOffsets(self) -> list[tuple[pxr.Sdf.PrimSpec,... method GetPrimTypeInfo (line 4635) | def GetPrimTypeInfo(self) -> PrimTypeInfo: method GetProperties (line 4654) | def GetProperties(self, predicate: typing.Callable[[str | pxr.Ar.Resol... method GetPropertiesInNamespace (line 4699) | def GetPropertiesInNamespace(self, namespaces: typing.Iterable[str | p... method GetPropertiesInNamespace (line 4716) | def GetPropertiesInNamespace(self, namespaces: str | pxr.Ar.ResolvedPa... method GetProperty (line 4728) | def GetProperty(self, propName: str | pxr.Ar.ResolvedPath) -> Property: method GetPropertyAtPath (line 4744) | def GetPropertyAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method GetPropertyNames (line 4759) | def GetPropertyNames(self, predicate: typing.Callable[[str | pxr.Ar.Re... method GetPropertyOrder (line 4775) | def GetPropertyOrder(self) -> list[str]: method GetPrototype (line 4780) | def GetPrototype(self) -> Prim: method GetReferences (line 4788) | def GetReferences(self) -> References: method GetRelationship (line 4801) | def GetRelationship(self, relName: str | pxr.Ar.ResolvedPath) -> Relat... method GetRelationshipAtPath (line 4817) | def GetRelationshipAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method GetRelationships (line 4832) | def GetRelationships(self) -> list[Relationship]: method GetSpecializes (line 4836) | def GetSpecializes(self) -> Specializes: method GetSpecifier (line 4847) | def GetSpecifier(self) -> pxr.Sdf.Specifier: method GetTypeName (line 4851) | def GetTypeName(self) -> str: method GetVariantSet (line 4862) | def GetVariantSet(self, _variantSetName: str | pxr.Ar.ResolvedPath, /)... method GetVariantSets (line 4873) | def GetVariantSets(self) -> VariantSets: method GetVersionIfHasAPIInFamily (line 4883) | def GetVersionIfHasAPIInFamily(self, _schemaFamily: str | pxr.Ar.Resol... method GetVersionIfHasAPIInFamily (line 4900) | def GetVersionIfHasAPIInFamily(self, _schemaFamily: str | pxr.Ar.Resol... method GetVersionIfIsInFamily (line 4915) | def GetVersionIfIsInFamily(self, _schemaFamily: str | pxr.Ar.ResolvedP... method HasAPI (line 4923) | def HasAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase]) -> bool: method HasAPI (line 4928) | def HasAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase], instanceN... method HasAPI (line 4936) | def HasAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath) -> bool: method HasAPI (line 4944) | def HasAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, instance... method HasAPI (line 4952) | def HasAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaVersio... method HasAPI (line 4960) | def HasAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaVersio... method HasAPIInFamily (line 4968) | def HasAPIInFamily(self, schemaFamily: str | pxr.Ar.ResolvedPath) -> b... method HasAPIInFamily (line 4980) | def HasAPIInFamily(self, schemaFamily: str | pxr.Ar.ResolvedPath, inst... method HasAPIInFamily (line 4990) | def HasAPIInFamily(self, schemaFamily: str | pxr.Ar.ResolvedPath, sche... method HasAPIInFamily (line 5003) | def HasAPIInFamily(self, schemaFamily: str | pxr.Ar.ResolvedPath, sche... method HasAPIInFamily (line 5014) | def HasAPIInFamily(self, schemaType: pxr.Tf.Type | type[SchemaBase], v... method HasAPIInFamily (line 5021) | def HasAPIInFamily(self, schemaType: pxr.Tf.Type | type[SchemaBase], v... method HasAPIInFamily (line 5028) | def HasAPIInFamily(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, ... method HasAPIInFamily (line 5039) | def HasAPIInFamily(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, ... method HasAttribute (line 5049) | def HasAttribute(self, attrName: str | pxr.Ar.ResolvedPath) -> bool: method HasAuthoredActive (line 5054) | def HasAuthoredActive(self) -> bool: method HasAuthoredInherits (line 5063) | def HasAuthoredInherits(self) -> bool: method HasAuthoredInstanceable (line 5067) | def HasAuthoredInstanceable(self) -> bool: method HasAuthoredPayloads (line 5072) | def HasAuthoredPayloads(self) -> bool: method HasAuthoredReferences (line 5076) | def HasAuthoredReferences(self) -> bool: method HasAuthoredSpecializes (line 5080) | def HasAuthoredSpecializes(self) -> bool: method HasAuthoredTypeName (line 5084) | def HasAuthoredTypeName(self) -> bool: method HasDefiningSpecifier (line 5088) | def HasDefiningSpecifier(self) -> bool: method HasPayload (line 5097) | def HasPayload(self) -> bool: method HasProperty (line 5105) | def HasProperty(self, propName: str | pxr.Ar.ResolvedPath) -> bool: method HasRelationship (line 5110) | def HasRelationship(self, relName: str | pxr.Ar.ResolvedPath) -> bool: method HasVariantSets (line 5115) | def HasVariantSets(self) -> bool: method IsA (line 5126) | def IsA(self, schemaType: pxr.Tf.Type | type[SchemaBase]) -> bool: method IsA (line 5131) | def IsA(self, schemaIdentifier: str | pxr.Ar.ResolvedPath) -> bool: method IsA (line 5139) | def IsA(self, schemaFamily: str | pxr.Ar.ResolvedPath, version: int) -... method IsAbstract (line 5146) | def IsAbstract(self) -> bool: method IsActive (line 5150) | def IsActive(self) -> bool: method IsComponent (line 5161) | def IsComponent(self) -> bool: method IsDefined (line 5169) | def IsDefined(self) -> bool: method IsGroup (line 5178) | def IsGroup(self) -> bool: method IsInFamily (line 5190) | def IsInFamily(self, schemaFamily: str | pxr.Ar.ResolvedPath) -> bool: method IsInFamily (line 5196) | def IsInFamily(self, schemaFamily: str | pxr.Ar.ResolvedPath, version:... method IsInFamily (line 5203) | def IsInFamily(self, schemaType: pxr.Tf.Type | type[SchemaBase], versi... method IsInFamily (line 5209) | def IsInFamily(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, vers... method IsInPrototype (line 5219) | def IsInPrototype(self) -> bool: method IsInstance (line 5228) | def IsInstance(self) -> bool: method IsInstanceProxy (line 5237) | def IsInstanceProxy(self) -> bool: method IsInstanceable (line 5244) | def IsInstanceable(self) -> bool: method IsLoaded (line 5254) | def IsLoaded(self) -> bool: method IsModel (line 5260) | def IsModel(self) -> bool: method IsPathInPrototype (line 5266) | def IsPathInPrototype(path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) ... method IsPrototype (line 5275) | def IsPrototype(self) -> bool: method IsPrototypePath (line 5285) | def IsPrototypePath(path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) ->... method IsPseudoRoot (line 5296) | def IsPseudoRoot(self) -> bool: method IsSubComponent (line 5307) | def IsSubComponent(self) -> bool: method Load (line 5317) | def Load(self, policy: LoadPolicy = ...) -> None: method MakeResolveTargetStrongerThanEditTarget (line 5327) | def MakeResolveTargetStrongerThanEditTarget(self, _editTarget: EditTar... method MakeResolveTargetUpToEditTarget (line 5338) | def MakeResolveTargetUpToEditTarget(self, _editTarget: EditTarget | px... method RemoveAPI (line 5351) | def RemoveAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase]) -> bool: method RemoveAPI (line 5356) | def RemoveAPI(self, schemaType: pxr.Tf.Type | type[SchemaBase], instan... method RemoveAPI (line 5364) | def RemoveAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath) -> bool: method RemoveAPI (line 5372) | def RemoveAPI(self, schemaIdentifier: str | pxr.Ar.ResolvedPath, insta... method RemoveAPI (line 5380) | def RemoveAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaVer... method RemoveAPI (line 5388) | def RemoveAPI(self, schemaFamily: str | pxr.Ar.ResolvedPath, schemaVer... method RemoveAppliedSchema (line 5395) | def RemoveAppliedSchema(self, _appliedSchemaName: str | pxr.Ar.Resolve... method RemoveProperty (line 5426) | def RemoveProperty(self, propName: str | pxr.Ar.ResolvedPath) -> bool: method SetActive (line 5439) | def SetActive(self, active: bool) -> bool: method SetChildrenReorder (line 5447) | def SetChildrenReorder(self, order: list[str] | list[pxr.Ar.ResolvedPa... method SetInstanceable (line 5452) | def SetInstanceable(self, instanceable: bool) -> bool: method SetKind (line 5456) | def SetKind(self, value: str | pxr.Ar.ResolvedPath) -> bool: method SetPayload (line 5465) | def SetPayload(self, payload: pxr.Sdf.Payload) -> bool: method SetPayload (line 5475) | def SetPayload(self, assetPath: str | pxr.Ar.ResolvedPath, primPath: p... method SetPayload (line 5482) | def SetPayload(self, layer: pxr.Sdf.Layer, primPath: pxr.Sdf.Path | px... method SetPropertyOrder (line 5489) | def SetPropertyOrder(self, order: list[str] | list[pxr.Ar.ResolvedPath... method SetSpecifier (line 5494) | def SetSpecifier(self, specifier: pxr.Sdf.Specifier) -> bool: method SetTypeName (line 5499) | def SetTypeName(self, typeName: str | pxr.Ar.ResolvedPath) -> bool: method Unload (line 5503) | def Unload(self) -> None: method _GetSourcePrimIndex (line 5510) | def _GetSourcePrimIndex(self) -> pxr.Pcp.PrimIndex: ... class PrimCompositionQuery (line 5512) | class PrimCompositionQuery(Boost.Python.instance): class ArcIntroducedFilter (line 5531) | class ArcIntroducedFilter(Boost.Python.enum): class ArcTypeFilter (line 5538) | class ArcTypeFilter(Boost.Python.enum): class DependencyTypeFilter (line 5553) | class DependencyTypeFilter(Boost.Python.enum): class Filter (line 5560) | class Filter(Boost.Python.instance): method __init__ (line 5570) | def __init__(self) -> None: ... method __eq__ (line 5571) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 5572) | def __ne__(self, other: object) -> bool: ... class HasSpecsFilter (line 5574) | class HasSpecsFilter(Boost.Python.enum): method __init__ (line 5582) | def __init__(self, prim: Prim, filter: PrimCompositionQuery.Filter) ->... method __init__ (line 5588) | def __init__(self, prim: Prim) -> None: ... method GetCompositionArcs (line 5589) | def GetCompositionArcs(self) -> list[PrimCompositionQueryArc]: # type... method GetDirectInherits (line 5599) | def GetDirectInherits(_prim: Prim, /) -> PrimCompositionQuery: method GetDirectReferences (line 5605) | def GetDirectReferences(_prim: Prim, /) -> PrimCompositionQuery: method GetDirectRootLayerArcs (line 5611) | def GetDirectRootLayerArcs(_prim: Prim, /) -> PrimCompositionQuery: class PrimDefinition (line 5618) | class PrimDefinition(Boost.Python.instance): class Attribute (line 5630) | class Attribute(Property): method __init__ (line 5648) | def __init__(self) -> None: method __init__ (line 5653) | def __init__(self, property: PrimDefinition.Property) -> None: method GetFallbackValue (line 5657) | def GetFallbackValue(self) -> Any: method GetTypeName (line 5666) | def GetTypeName(self) -> pxr.Sdf.ValueTypeName: method GetTypeNameToken (line 5670) | def GetTypeNameToken(self) -> str: method __bool__ (line 5675) | def __bool__(self) -> bool: class Property (line 5681) | class Property(Boost.Python.instance): method __init__ (line 5696) | def __init__(self) -> None: method GetDocumentation (line 5700) | def GetDocumentation(self) -> str: method GetMetadata (line 5705) | def GetMetadata(self, key: str | pxr.Ar.ResolvedPath) -> Any: method GetMetadataByDictKey (line 5715) | def GetMetadataByDictKey(self, key: str | pxr.Ar.ResolvedPath, keyPa... method GetName (line 5727) | def GetName(self) -> str: method GetSpecType (line 5735) | def GetSpecType(self) -> pxr.Sdf.SpecType: method GetVariability (line 5739) | def GetVariability(self) -> pxr.Sdf.Variability: method IsAttribute (line 5743) | def IsAttribute(self) -> bool: method IsRelationship (line 5748) | def IsRelationship(self) -> bool: method ListMetadataFields (line 5753) | def ListMetadataFields(self) -> list[str]: method __bool__ (line 5760) | def __bool__(self) -> bool: class Relationship (line 5766) | class Relationship(Property): method __init__ (line 5784) | def __init__(self) -> None: method __init__ (line 5789) | def __init__(self, property: PrimDefinition.Property) -> None: method __bool__ (line 5793) | def __bool__(self) -> bool: method __init__ (line 5798) | def __init__(self, *args, **kwargs) -> None: method FlattenTo (line 5803) | def FlattenTo(self, layer: pxr.Sdf.Layer, path: pxr.Sdf.Path | pxr.Ar.... method FlattenTo (line 5831) | def FlattenTo(self, parent: Prim, name: str | pxr.Ar.ResolvedPath, new... method FlattenTo (line 5840) | def FlattenTo(self, prim: Prim, newSpecSpecifier: pxr.Sdf.Specifier = ... method GetAppliedAPISchemas (line 5847) | def GetAppliedAPISchemas(self) -> list[str]: method GetAttributeDefinition (line 5852) | def GetAttributeDefinition(self, attrName: str | pxr.Ar.ResolvedPath) ... method GetAttributeFallbackValue (line 5861) | def GetAttributeFallbackValue(self, attrName: str | pxr.Ar.ResolvedPat... method GetDocumentation (line 5870) | def GetDocumentation(self) -> str: method GetMetadata (line 5875) | def GetMetadata(self, key: str | pxr.Ar.ResolvedPath) -> Any: method GetMetadataByDictKey (line 5885) | def GetMetadataByDictKey(self, key: str | pxr.Ar.ResolvedPath, keyPath... method GetPropertyDefinition (line 5897) | def GetPropertyDefinition(self, propName: str | pxr.Ar.ResolvedPath) -... method GetPropertyDocumentation (line 5906) | def GetPropertyDocumentation(self, propName: str | pxr.Ar.ResolvedPath... method GetPropertyMetadata (line 5911) | def GetPropertyMetadata(self, propName: str | pxr.Ar.ResolvedPath, key... method GetPropertyMetadataByDictKey (line 5921) | def GetPropertyMetadataByDictKey(self, propName: str | pxr.Ar.Resolved... method GetPropertyNames (line 5933) | def GetPropertyNames(self) -> list[str]: method GetRelationshipDefinition (line 5938) | def GetRelationshipDefinition(self, relName: str | pxr.Ar.ResolvedPath... method GetSchemaAttributeSpec (line 5947) | def GetSchemaAttributeSpec(self, attrName: str | pxr.Ar.ResolvedPath) ... method GetSchemaPropertySpec (line 5957) | def GetSchemaPropertySpec(self, propName: str | pxr.Ar.ResolvedPath) -... method GetSchemaRelationshipSpec (line 5967) | def GetSchemaRelationshipSpec(self, relName: str | pxr.Ar.ResolvedPath... method GetSpecType (line 5977) | def GetSpecType(self, propName: str | pxr.Ar.ResolvedPath) -> pxr.Sdf.... method ListMetadataFields (line 5985) | def ListMetadataFields(self) -> list[str]: method ListPropertyMetadataFields (line 5990) | def ListPropertyMetadataFields(self, _propName: str | pxr.Ar.ResolvedP... class PrimRange (line 5997) | class PrimRange(Boost.Python.instance): class _Iterator (line 6082) | class _Iterator(Boost.Python.instance): method __init__ (line 6083) | def __init__(self, *args, **kwargs) -> None: method GetCurrentPrim (line 6087) | def GetCurrentPrim(self) -> Prim: method IsPostVisit (line 6090) | def IsPostVisit(self) -> bool: ... method IsValid (line 6091) | def IsValid(self) -> bool: method PruneChildren (line 6093) | def PruneChildren(self) -> None: ... method __iter__ (line 6094) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 6095) | def __next__(self) -> Prim: ... method __init__ (line 6097) | def __init__(self, root: Prim) -> None: method __init__ (line 6104) | def __init__(self, root: Prim, predicate: _PrimFlagsPredicate | _Term)... method AllPrims (line 6110) | def AllPrims(root: Prim) -> PrimRange: method AllPrimsPreAndPostVisit (line 6117) | def AllPrimsPreAndPostVisit(root: Prim) -> PrimRange: method IsValid (line 6130) | def IsValid(self) -> bool: method PreAndPostVisit (line 6134) | def PreAndPostVisit(root: Prim) -> PrimRange: method PreAndPostVisit (line 6150) | def PreAndPostVisit(root: Prim, predicate: _PrimFlagsPredicate | _Term... method Stage (line 6165) | def Stage(stage: Stage, predicate: _PrimFlagsPredicate | _Term) -> Pri... method Stage (line 6173) | def Stage(stage: Stage) -> PrimRange: ... method __bool__ (line 6174) | def __bool__(self) -> bool: method __eq__ (line 6178) | def __eq__(self, other: object) -> bool: method __iter__ (line 6182) | def __iter__(self) -> _Iterator: ... method __ne__ (line 6183) | def __ne__(self, other: object) -> bool: ... class PrimTypeInfo (line 6185) | class PrimTypeInfo(Boost.Python.instance): method __init__ (line 6200) | def __init__(self, *args, **kwargs) -> None: method GetAppliedAPISchemas (line 6204) | def GetAppliedAPISchemas(self) -> list[str]: method GetEmptyPrimType (line 6214) | def GetEmptyPrimType() -> PrimTypeInfo: method GetPrimDefinition (line 6218) | def GetPrimDefinition(self) -> PrimDefinition: method GetSchemaType (line 6223) | def GetSchemaType(self) -> pxr.Tf.Type: method GetSchemaTypeName (line 6237) | def GetSchemaTypeName(self) -> str: method GetTypeName (line 6250) | def GetTypeName(self) -> str: method __eq__ (line 6254) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 6255) | def __ne__(self, other: object) -> bool: ... class Property (line 6257) | class Property(Object): method __init__ (line 6272) | def __init__(self) -> None: method ClearDisplayGroup (line 6276) | def ClearDisplayGroup(self) -> bool: method FlattenTo (line 6285) | def FlattenTo(self, parent: Prim) -> Property: method FlattenTo (line 6310) | def FlattenTo(self, parent: Prim, propName: str | pxr.Ar.ResolvedPath)... method FlattenTo (line 6323) | def FlattenTo(self, property: Property | pxr.UsdGeom.XformOp) -> Prope... method GetBaseName (line 6334) | def GetBaseName(self) -> str: method GetDisplayGroup (line 6347) | def GetDisplayGroup(self) -> str: method GetNamespace (line 6356) | def GetNamespace(self) -> str: method GetNestedDisplayGroups (line 6366) | def GetNestedDisplayGroups(self) -> list[str]: method GetPropertyStack (line 6371) | def GetPropertyStack(self, time: TimeCode | float | pxr.Sdf.TimeCode =... method GetPropertyStackWithLayerOffsets (line 6394) | def GetPropertyStackWithLayerOffsets(self, time: TimeCode | float | px... method HasAuthoredDisplayGroup (line 6412) | def HasAuthoredDisplayGroup(self) -> bool: method IsAuthored (line 6419) | def IsAuthored(self) -> bool: method IsAuthoredAt (line 6424) | def IsAuthoredAt(self, editTarget: EditTarget | pxr.Sdf.Layer) -> bool: method IsCustom (line 6434) | def IsCustom(self) -> bool: method IsDefined (line 6446) | def IsDefined(self) -> bool: method SetCustom (line 6462) | def SetCustom(self, isCustom: bool) -> bool: method SetDisplayGroup (line 6473) | def SetDisplayGroup(self, displayGroup: str | pxr.Ar.ResolvedPath) -> ... method SetNestedDisplayGroups (line 6487) | def SetNestedDisplayGroups(self, nestedGroups: typing.Iterable[str | p... method SplitName (line 6501) | def SplitName(self) -> list[str]: class References (line 6507) | class References(Boost.Python.instance): method __init__ (line 6680) | def __init__(self, *args, **kwargs) -> None: method AddInternalReference (line 6684) | def AddInternalReference(self, primPath: pxr.Sdf.Path | pxr.Ar.Resolve... method AddReference (line 6693) | def AddReference(self, ref: pxr.Sdf.Reference, position: ListPosition ... method AddReference (line 6705) | def AddReference(self, assetPath: str | pxr.Ar.ResolvedPath, primPath:... method AddReference (line 6711) | def AddReference(self, assetPath: str | pxr.Ar.ResolvedPath, layerOffs... method ClearReferences (line 6720) | def ClearReferences(self) -> bool: method GetPrim (line 6731) | def GetPrim(self) -> Prim: method RemoveReference (line 6735) | def RemoveReference(self, ref: pxr.Sdf.Reference) -> bool: method SetReferences (line 6747) | def SetReferences(self, _items: list[pxr.Sdf.Reference], /) -> bool: method __bool__ (line 6758) | def __bool__(self) -> bool: ... class Relationship (line 6760) | class Relationship(Property): method __init__ (line 6850) | def __init__(self) -> None: method AddTarget (line 6854) | def AddTarget(self, target: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str, ... method ClearTargets (line 6868) | def ClearTargets(self, removeSpec: bool) -> bool: method GetForwardedTargets (line 6878) | def GetForwardedTargets(self) -> list[pxr.Sdf.Path]: method GetTargets (line 6914) | def GetTargets(self) -> list[pxr.Sdf.Path]: method HasAuthoredTargets (line 6933) | def HasAuthoredTargets(self) -> bool: method RemoveTarget (line 6941) | def RemoveTarget(self, target: pxr.Sdf.Path | pxr.Ar.ResolvedPath | st... method SetTargets (line 6950) | def SetTargets(self, targets: typing.Iterable[pxr.Sdf.Path | pxr.Ar.Re... class ResolveInfo (line 6964) | class ResolveInfo(Boost.Python.instance): method __init__ (line 6975) | def __init__(self) -> None: ... method GetNode (line 6976) | def GetNode(self) -> pxr.Pcp.NodeRef: method GetSource (line 6981) | def GetSource(self) -> ResolveInfoSource: method ValueIsBlocked (line 6985) | def ValueIsBlocked(self) -> bool: class ResolveInfoSource (line 6995) | class ResolveInfoSource(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 6998) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 7003) | def GetValueFromName(name: object) -> Any: ... class ResolveTarget (line 7005) | class ResolveTarget(Boost.Python.instance): method __init__ (line 7041) | def __init__(self) -> None: ... method GetPrimIndex (line 7042) | def GetPrimIndex(self) -> pxr.Pcp.PrimIndex: method GetStartLayer (line 7046) | def GetStartLayer(self) -> pxr.Sdf.Layer: method GetStartNode (line 7051) | def GetStartNode(self) -> pxr.Pcp.NodeRef: method GetStopLayer (line 7056) | def GetStopLayer(self) -> pxr.Sdf.Layer: method GetStopNode (line 7061) | def GetStopNode(self) -> pxr.Pcp.NodeRef: method IsNull (line 7066) | def IsNull(self) -> bool: class SchemaBase (line 7071) | class SchemaBase(Boost.Python.instance): method __init__ (line 7092) | def __init__(self, prim: Prim) -> None: method __init__ (line 7097) | def __init__(self, otherSchema: SchemaBase) -> None: method __init__ (line 7102) | def __init__(self) -> None: ... method GetPath (line 7103) | def GetPath(self) -> pxr.Sdf.Path: method GetPrim (line 7107) | def GetPrim(self) -> Prim: method GetSchemaAttributeNames (line 7112) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]... method GetSchemaClassPrimDefinition (line 7113) | def GetSchemaClassPrimDefinition(self) -> PrimDefinition: method GetSchemaKind (line 7124) | def GetSchemaKind(self) -> SchemaKind: method IsAPISchema (line 7128) | def IsAPISchema(self) -> bool: method IsAppliedAPISchema (line 7132) | def IsAppliedAPISchema(self) -> bool: method IsConcrete (line 7139) | def IsConcrete(self) -> bool: method IsMultipleApplyAPISchema (line 7148) | def IsMultipleApplyAPISchema(self) -> bool: method IsTyped (line 7156) | def IsTyped(self) -> bool: method __bool__ (line 7163) | def __bool__(self) -> bool: class SchemaKind (line 7178) | class SchemaKind(Boost.Python.enum): class SchemaRegistry (line 7189) | class SchemaRegistry(Boost.Python.instance): class SchemaInfo (line 7212) | class SchemaInfo(Boost.Python.instance): method __init__ (line 7217) | def __init__(self, *args, **kwargs) -> None: method family (line 7222) | def family(self): ... method identifier (line 7224) | def identifier(self): ... method kind (line 7226) | def kind(self): ... method type (line 7228) | def type(self): ... method version (line 7230) | def version(self): ... class VersionPolicy (line 7232) | class VersionPolicy(Boost.Python.enum): method __init__ (line 7240) | def __init__(self) -> None: ... method BuildComposedPrimDefinition (line 7241) | def BuildComposedPrimDefinition(self, _primType: str | pxr.Ar.Resolved... method FindAppliedAPIPrimDefinition (line 7250) | def FindAppliedAPIPrimDefinition(self, typeName: str | pxr.Ar.Resolved... method FindConcretePrimDefinition (line 7258) | def FindConcretePrimDefinition(self, typeName: str | pxr.Ar.ResolvedPa... method FindSchemaInfo (line 7268) | def FindSchemaInfo(schemaType: pxr.Tf.Type | type[SchemaBase]) -> Sche... method FindSchemaInfo (line 7278) | def FindSchemaInfo(schemaIdentifier: str | pxr.Ar.ResolvedPath) -> Sch... method FindSchemaInfo (line 7289) | def FindSchemaInfo(schemaFamily: str | pxr.Ar.ResolvedPath, schemaVers... method FindSchemaInfosInFamily (line 7300) | def FindSchemaInfosInFamily(schemaFamily: str | pxr.Ar.ResolvedPath) -... method FindSchemaInfosInFamily (line 7307) | def FindSchemaInfosInFamily(schemaFamily: str | pxr.Ar.ResolvedPath, s... method GetAPISchemaCanOnlyApplyToTypeNames (line 7314) | def GetAPISchemaCanOnlyApplyToTypeNames(apiSchemaName: str | pxr.Ar.Re... method GetAPISchemaTypeName (line 7331) | def GetAPISchemaTypeName(schemaType: pxr.Tf.Type | type[SchemaBase]) -... method GetAPITypeFromSchemaTypeName (line 7337) | def GetAPITypeFromSchemaTypeName(typeName: str | pxr.Ar.ResolvedPath) ... method GetAutoApplyAPISchemas (line 7346) | def GetAutoApplyAPISchemas() -> dict: method GetConcreteSchemaTypeName (line 7359) | def GetConcreteSchemaTypeName(schemaType: pxr.Tf.Type | type[SchemaBas... method GetConcreteTypeFromSchemaTypeName (line 7365) | def GetConcreteTypeFromSchemaTypeName(typeName: str | pxr.Ar.ResolvedP... method GetEmptyPrimDefinition (line 7373) | def GetEmptyPrimDefinition(self) -> PrimDefinition: method GetFallbackPrimTypes (line 7377) | def GetFallbackPrimTypes(self) -> dict: method GetMultipleApplyNameTemplateBaseName (line 7394) | def GetMultipleApplyNameTemplateBaseName(nameTemplate: str | pxr.Ar.Re... method GetSchemaKind (line 7408) | def GetSchemaKind(primType: pxr.Tf.Type | type[SchemaBase]) -> SchemaK... method GetSchemaKind (line 7419) | def GetSchemaKind(primType: str | pxr.Ar.ResolvedPath) -> SchemaKind: method GetSchemaTypeName (line 7429) | def GetSchemaTypeName(schemaType: pxr.Tf.Type | type[SchemaBase]) -> str: method GetTypeFromName (line 7435) | def GetTypeFromName(typeName: str | pxr.Ar.ResolvedPath) -> pxr.Tf.Type: method GetTypeFromSchemaTypeName (line 7460) | def GetTypeFromSchemaTypeName(typeName: str | pxr.Ar.ResolvedPath) -> ... method GetTypeNameAndInstance (line 7469) | def GetTypeNameAndInstance(typeName: str | pxr.Ar.ResolvedPath) -> tuple: method IsAbstract (line 7496) | def IsAbstract(primType: pxr.Tf.Type | type[SchemaBase]) -> bool: method IsAbstract (line 7503) | def IsAbstract(primType: str | pxr.Ar.ResolvedPath) -> bool: method IsAllowedAPISchemaInstanceName (line 7509) | def IsAllowedAPISchemaInstanceName(apiSchemaName: str | pxr.Ar.Resolve... method IsAllowedSchemaFamily (line 7523) | def IsAllowedSchemaFamily(schemaFamily: str | pxr.Ar.ResolvedPath) -> ... method IsAllowedSchemaIdentifier (line 7533) | def IsAllowedSchemaIdentifier(schemaIdentifier: str | pxr.Ar.ResolvedP... method IsAppliedAPISchema (line 7545) | def IsAppliedAPISchema(apiSchemaType: pxr.Tf.Type | type[SchemaBase]) ... method IsAppliedAPISchema (line 7551) | def IsAppliedAPISchema(apiSchemaType: str | pxr.Ar.ResolvedPath) -> bool: method IsConcrete (line 7557) | def IsConcrete(primType: pxr.Tf.Type | type[SchemaBase]) -> bool: method IsConcrete (line 7564) | def IsConcrete(primType: str | pxr.Ar.ResolvedPath) -> bool: method IsDisallowedField (line 7570) | def IsDisallowedField(fieldName: str | pxr.Ar.ResolvedPath) -> bool: method IsMultipleApplyAPISchema (line 7583) | def IsMultipleApplyAPISchema(apiSchemaType: pxr.Tf.Type | type[SchemaB... method IsMultipleApplyAPISchema (line 7589) | def IsMultipleApplyAPISchema(apiSchemaType: str | pxr.Ar.ResolvedPath)... method IsMultipleApplyNameTemplate (line 7594) | def IsMultipleApplyNameTemplate(nameTemplate: str | pxr.Ar.ResolvedPat... method IsTyped (line 7606) | def IsTyped(primType: pxr.Tf.Type | type[SchemaBase]) -> bool: method MakeMultipleApplyNameInstance (line 7611) | def MakeMultipleApplyNameInstance(_nameTemplate: str | pxr.Ar.Resolved... method MakeMultipleApplyNameTemplate (line 7629) | def MakeMultipleApplyNameTemplate(_namespacePrefix: str | pxr.Ar.Resol... method MakeSchemaIdentifierForFamilyAndVersion (line 7653) | def MakeSchemaIdentifierForFamilyAndVersion(schemaFamily: str | pxr.Ar... method ParseSchemaFamilyAndVersionFromIdentifier (line 7669) | def ParseSchemaFamilyAndVersionFromIdentifier(schemaIdentifier: str | ... method __bool__ (line 7689) | def __bool__(self) -> bool: method __eq__ (line 7691) | def __eq__(self, other: object) -> bool: method __lt__ (line 7693) | def __lt__(self, other: object) -> bool: method __ne__ (line 7695) | def __ne__(self, other: object) -> bool: method expired (line 7698) | def expired(self): ... class Specializes (line 7700) | class Specializes(Boost.Python.instance): method __init__ (line 7713) | def __init__(self, *args, **kwargs) -> None: method AddSpecialize (line 7717) | def AddSpecialize(self, primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method ClearSpecializes (line 7722) | def ClearSpecializes(self) -> bool: method GetPrim (line 7727) | def GetPrim(self) -> Prim: method RemoveSpecialize (line 7731) | def RemoveSpecialize(self, primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPat... method SetSpecializes (line 7736) | def SetSpecializes(self, _items: typing.Iterable[pxr.Sdf.Path | pxr.Ar... method __bool__ (line 7742) | def __bool__(self) -> bool: ... class Stage (line 7744) | class Stage(Boost.Python.instance): class InitialLoadSet (line 7821) | class InitialLoadSet(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 7824) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 7829) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 7832) | def __init__(self, *args, **kwargs) -> None: method ClearDefaultPrim (line 7836) | def ClearDefaultPrim(self) -> None: method ClearMetadata (line 7848) | def ClearMetadata(self, _key: str | pxr.Ar.ResolvedPath, /) -> bool: method ClearMetadataByDictKey (line 7861) | def ClearMetadataByDictKey(self, _key: str | pxr.Ar.ResolvedPath, _key... method CreateClassPrim (line 7876) | def CreateClassPrim(self, rootPrimPath: pxr.Sdf.Path | pxr.Ar.Resolved... method CreateInMemory (line 7896) | def CreateInMemory(load: Stage.InitialLoadSet = ...) -> Stage: method CreateInMemory (line 7919) | def CreateInMemory(identifier: str | pxr.Ar.ResolvedPath, load: Stage.... method CreateInMemory (line 7926) | def CreateInMemory(identifier: str | pxr.Ar.ResolvedPath, pathResolver... method CreateInMemory (line 7933) | def CreateInMemory(identifier: str | pxr.Ar.ResolvedPath, sessionLayer... method CreateInMemory (line 7940) | def CreateInMemory(identifier: str | pxr.Ar.ResolvedPath, sessionLayer... method CreateNew (line 7947) | def CreateNew(identifier: str | pxr.Ar.ResolvedPath, load: Stage.Initi... method CreateNew (line 7973) | def CreateNew(identifier: str | pxr.Ar.ResolvedPath, sessionLayer: pxr... method CreateNew (line 7980) | def CreateNew(identifier: str | pxr.Ar.ResolvedPath, sessionLayer: pxr... method CreateNew (line 7987) | def CreateNew(identifier: str | pxr.Ar.ResolvedPath, pathResolverConte... method DefinePrim (line 7992) | def DefinePrim(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str, t... method ExpandPopulationMask (line 8019) | def ExpandPopulationMask(self, traversalPredicate: _PrimFlagsPredicate... method ExpandPopulationMask (line 8039) | def ExpandPopulationMask(self, relationshipPredicate: typing.Callable[... method Export (line 8046) | def Export(self, filename: str | pxr.Ar.ResolvedPath, addSourceFileCom... method ExportToString (line 8057) | def ExportToString(self, addSourceFileComment: bool = ...) -> str: method FindLoadable (line 8068) | def FindLoadable(self, rootPath: pxr.Sdf.Path | pxr.Ar.ResolvedPath | ... method Flatten (line 8089) | def Flatten(self, addSourceFileComment: bool = ...) -> pxr.Sdf.Layer: method GetAttributeAtPath (line 8116) | def GetAttributeAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath ... method GetColorConfigFallbacks (line 8129) | def GetColorConfigFallbacks() -> tuple[None, pxr.Sdf.AssetPath, str]: method GetColorConfiguration (line 8143) | def GetColorConfiguration(self) -> pxr.Sdf.AssetPath: method GetColorManagementSystem (line 8151) | def GetColorManagementSystem(self) -> str: method GetDefaultPrim (line 8159) | def GetDefaultPrim(self) -> Prim: method GetEditTarget (line 8171) | def GetEditTarget(self) -> EditTarget: method GetEditTargetForLocalLayer (line 8176) | def GetEditTargetForLocalLayer(self, _i: int, /) -> EditTarget: method GetEditTargetForLocalLayer (line 8186) | def GetEditTargetForLocalLayer(self, _layer: pxr.Sdf.Layer, /) -> Edit... method GetEndTimeCode (line 8194) | def GetEndTimeCode(self) -> float: method GetFramesPerSecond (line 8203) | def GetFramesPerSecond(self) -> float: method GetGlobalVariantFallbacks (line 8217) | def GetGlobalVariantFallbacks() -> dict: method GetInterpolationType (line 8221) | def GetInterpolationType(self) -> InterpolationType: method GetLayerStack (line 8226) | def GetLayerStack(self, includeSessionLayers: bool = ...) -> list[pxr.... method GetLoadRules (line 8237) | def GetLoadRules(self) -> StageLoadRules: method GetLoadSet (line 8245) | def GetLoadSet(self) -> list[pxr.Sdf.Path]: method GetMetadata (line 8258) | def GetMetadata(self, _key: str | pxr.Ar.ResolvedPath, /) -> Any: method GetMetadataByDictKey (line 8274) | def GetMetadataByDictKey(self, _key: str | pxr.Ar.ResolvedPath, _keyPa... method GetMutedLayers (line 8292) | def GetMutedLayers(self) -> list[str]: method GetObjectAtPath (line 8296) | def GetObjectAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | s... method GetPathResolverContext (line 8324) | def GetPathResolverContext(self) -> pxr.Ar.ResolverContext: method GetPopulationMask (line 8333) | def GetPopulationMask(self) -> StagePopulationMask: method GetPrimAtPath (line 8337) | def GetPrimAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str... method GetPropertyAtPath (line 8350) | def GetPropertyAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath |... method GetPrototypes (line 8362) | def GetPrototypes(self) -> list[Prim]: method GetPseudoRoot (line 8366) | def GetPseudoRoot(self) -> Prim: method GetRelationshipAtPath (line 8379) | def GetRelationshipAtPath(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method GetRootLayer (line 8391) | def GetRootLayer(self) -> pxr.Sdf.Layer: method GetSessionLayer (line 8395) | def GetSessionLayer(self) -> pxr.Sdf.Layer: method GetStartTimeCode (line 8399) | def GetStartTimeCode(self) -> float: method GetTimeCodesPerSecond (line 8408) | def GetTimeCodesPerSecond(self) -> float: method GetUsedLayers (line 8432) | def GetUsedLayers(self, includeClipLayers: bool = ...) -> list[pxr.Sdf... method HasAuthoredMetadata (line 8446) | def HasAuthoredMetadata(self, _key: str | pxr.Ar.ResolvedPath, /) -> b... method HasAuthoredMetadataDictKey (line 8459) | def HasAuthoredMetadataDictKey(self, _key: str | pxr.Ar.ResolvedPath, ... method HasAuthoredTimeCodeRange (line 8472) | def HasAuthoredTimeCodeRange(self) -> bool: method HasDefaultPrim (line 8477) | def HasDefaultPrim(self) -> bool: method HasLocalLayer (line 8490) | def HasLocalLayer(self, layer: pxr.Sdf.Layer) -> bool: method HasMetadata (line 8495) | def HasMetadata(self, _key: str | pxr.Ar.ResolvedPath, /) -> bool: method HasMetadataDictKey (line 8505) | def HasMetadataDictKey(self, _key: str | pxr.Ar.ResolvedPath, _keyPath... method IsLayerMuted (line 8519) | def IsLayerMuted(self, layerIdentifier: str | pxr.Ar.ResolvedPath) -> ... method IsSupportedFile (line 8529) | def IsSupportedFile(filePath: str | pxr.Ar.ResolvedPath) -> bool: method Load (line 8540) | def Load(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str = ..., p... method LoadAndUnload (line 8552) | def LoadAndUnload(self, loadSet: typing.Iterable[pxr.Sdf.Path | pxr.Ar... method MuteAndUnmuteLayers (line 8568) | def MuteAndUnmuteLayers(self, muteLayers: typing.Iterable[str | pxr.Ar... method MuteLayer (line 8580) | def MuteLayer(self, layerIdentifier: str | pxr.Ar.ResolvedPath) -> None: method Open (line 8612) | def Open(filePath: str | pxr.Ar.ResolvedPath, load: Stage.InitialLoadS... method Open (line 8636) | def Open(filePath: str | pxr.Ar.ResolvedPath, pathResolverContext: pxr... method Open (line 8643) | def Open(rootLayer: pxr.Sdf.Layer, load: Stage.InitialLoadSet = ...) -... method Open (line 8679) | def Open(rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Layer, load: ... method Open (line 8686) | def Open(rootLayer: pxr.Sdf.Layer, pathResolverContext: pxr.Ar.Resolve... method Open (line 8693) | def Open(rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Layer, pathRe... method OpenMasked (line 8700) | def OpenMasked(filePath: str | pxr.Ar.ResolvedPath, mask: StagePopulat... method OpenMasked (line 8724) | def OpenMasked(filePath: str | pxr.Ar.ResolvedPath, pathResolverContex... method OpenMasked (line 8731) | def OpenMasked(rootLayer: pxr.Sdf.Layer, mask: StagePopulationMask, lo... method OpenMasked (line 8758) | def OpenMasked(rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Layer, ... method OpenMasked (line 8765) | def OpenMasked(rootLayer: pxr.Sdf.Layer, pathResolverContext: pxr.Ar.R... method OpenMasked (line 8772) | def OpenMasked(rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Layer, ... method OverridePrim (line 8777) | def OverridePrim(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str)... method Reload (line 8798) | def Reload(self) -> None: method RemovePrim (line 8818) | def RemovePrim(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) -... method ResolveIdentifierToEditTarget (line 8842) | def ResolveIdentifierToEditTarget(self, identifier: str | pxr.Ar.Resol... method Save (line 8856) | def Save(self) -> None: method SaveSessionLayers (line 8867) | def SaveSessionLayers(self) -> None: method SetColorConfigFallbacks (line 8879) | def SetColorConfigFallbacks(colorConfiguration: pxr.Sdf.AssetPath | st... method SetColorConfiguration (line 8896) | def SetColorConfiguration(self, _colorConfig: pxr.Sdf.AssetPath | str,... method SetColorManagementSystem (line 8907) | def SetColorManagementSystem(self, _cms: str | pxr.Ar.ResolvedPath, /)... method SetDefaultPrim (line 8916) | def SetDefaultPrim(self, prim: Prim) -> None: method SetEditTarget (line 8928) | def SetEditTarget(self, editTarget: EditTarget | pxr.Sdf.Layer) -> None: method SetEndTimeCode (line 8940) | def SetEndTimeCode(self, _unknownArg1: float, /) -> None: method SetFramesPerSecond (line 8950) | def SetFramesPerSecond(self, _framesPerSecond: float, /) -> None: method SetGlobalVariantFallbacks (line 8963) | def SetGlobalVariantFallbacks(_fallbacks: dict, /) -> None: method SetInterpolationType (line 8973) | def SetInterpolationType(self, _interpolationType: InterpolationType, ... method SetLoadRules (line 8983) | def SetLoadRules(self, rules: StageLoadRules) -> None: method SetMetadata (line 8996) | def SetMetadata(self, _key: str | pxr.Ar.ResolvedPath, _value: Any, /)... method SetMetadataByDictKey (line 9009) | def SetMetadataByDictKey(self, _key: str | pxr.Ar.ResolvedPath, _keyPa... method SetPopulationMask (line 9024) | def SetPopulationMask(self, mask: StagePopulationMask) -> None: method SetStartTimeCode (line 9028) | def SetStartTimeCode(self, _unknownArg1: float, /) -> None: method SetTimeCodesPerSecond (line 9038) | def SetTimeCodesPerSecond(self, _timeCodesPerSecond: float, /) -> None: method Traverse (line 9051) | def Traverse(self) -> PrimRange: method Traverse (line 9074) | def Traverse(self, predicate: _PrimFlagsPredicate | _Term) -> PrimRange: method TraverseAll (line 9083) | def TraverseAll(self) -> PrimRange: method Unload (line 9093) | def Unload(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str = ...)... method UnmuteLayer (line 9101) | def UnmuteLayer(self, layerIdentifier: str | pxr.Ar.ResolvedPath) -> N... method WriteFallbackPrimTypes (line 9106) | def WriteFallbackPrimTypes(self) -> None: method _GetPcpCache (line 9129) | def _GetPcpCache(self) -> pxr.Pcp.Cache: ... method __bool__ (line 9130) | def __bool__(self) -> bool: method __eq__ (line 9132) | def __eq__(self, other: object) -> bool: method __lt__ (line 9134) | def __lt__(self, other: object) -> bool: method __ne__ (line 9136) | def __ne__(self, other: object) -> bool: method expired (line 9139) | def expired(self): ... class StageCache (line 9141) | class StageCache(Boost.Python.instance): class Id (line 9182) | class Id(Boost.Python.instance): method __init__ (line 9196) | def __init__(self) -> None: method FromLongInt (line 9201) | def FromLongInt(val: int) -> StageCache.Id: method FromString (line 9210) | def FromString(s: str | pxr.Ar.ResolvedPath) -> StageCache.Id: method IsValid (line 9218) | def IsValid(self) -> bool: method ToLongInt (line 9222) | def ToLongInt(self) -> int: method ToString (line 9226) | def ToString(self) -> str: method __bool__ (line 9230) | def __bool__(self) -> bool: method __eq__ (line 9234) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9235) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9236) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9237) | def __hash__(self) -> int: ... method __le__ (line 9238) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9239) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9240) | def __ne__(self, other: object) -> bool: ... method __init__ (line 9243) | def __init__(self) -> None: method __init__ (line 9248) | def __init__(self, _other: StageCache, /) -> None: method Clear (line 9252) | def Clear(self) -> None: method Contains (line 9263) | def Contains(self, stage: Stage) -> bool: method Contains (line 9268) | def Contains(self, id: StageCache.Id) -> bool: method Erase (line 9273) | def Erase(self, id: StageCache.Id) -> bool: method Erase (line 9284) | def Erase(self, stage: Stage) -> bool: method EraseAll (line 9295) | def EraseAll(self, rootLayer: pxr.Sdf.Layer) -> int: method EraseAll (line 9306) | def EraseAll(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Lay... method EraseAll (line 9317) | def EraseAll(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.Sdf.Lay... method Find (line 9328) | def Find(self, id: StageCache.Id) -> Stage: method FindAllMatching (line 9337) | def FindAllMatching(self, rootLayer: pxr.Sdf.Layer) -> list[Stage]: method FindAllMatching (line 9345) | def FindAllMatching(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.... method FindAllMatching (line 9353) | def FindAllMatching(self, rootLayer: pxr.Sdf.Layer, pathResolverContex... method FindAllMatching (line 9362) | def FindAllMatching(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.... method FindOneMatching (line 9373) | def FindOneMatching(self, rootLayer: pxr.Sdf.Layer) -> Stage: method FindOneMatching (line 9383) | def FindOneMatching(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.... method FindOneMatching (line 9393) | def FindOneMatching(self, rootLayer: pxr.Sdf.Layer, pathResolverContex... method FindOneMatching (line 9406) | def FindOneMatching(self, rootLayer: pxr.Sdf.Layer, sessionLayer: pxr.... method GetAllStages (line 9418) | def GetAllStages(self) -> list[Stage]: method GetDebugName (line 9422) | def GetDebugName(self) -> str: method GetId (line 9429) | def GetId(self, stage: Stage) -> StageCache.Id: method Insert (line 9436) | def Insert(self, stage: Stage) -> StageCache.Id: method IsEmpty (line 9444) | def IsEmpty(self) -> bool: method SetDebugName (line 9448) | def SetDebugName(self, _debugName: str | pxr.Ar.ResolvedPath, /) -> None: method Size (line 9457) | def Size(self) -> int: method swap (line 9461) | def swap(self, arg2: StageCache, /) -> None: ... class StageCacheContext (line 9463) | class StageCacheContext(Boost.Python.instance): method __init__ (line 9514) | def __init__(self, _cache: StageCache, /) -> None: method __init__ (line 9519) | def __init__(self, arg2: _NonPopulatingStageCacheWrapper, /) -> None: ... method __init__ (line 9521) | def __init__(self, arg2: object, /) -> None: ... method __enter__ (line 9522) | def __enter__(self) -> None: ... method __exit__ (line 9523) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class StageCacheContextBlockType (line 9525) | class StageCacheContextBlockType(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 9528) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 9533) | def GetValueFromName(name: object) -> Any: ... class StageLoadRules (line 9535) | class StageLoadRules(Boost.Python.instance): class Rule (line 9557) | class Rule(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 9560) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 9565) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 9571) | def __init__(self) -> None: method __init__ (line 9576) | def __init__(self, _unknownArg1: StageLoadRules, /) -> None: ... method AddRule (line 9577) | def AddRule(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str, rule... method GetEffectiveRuleForPath (line 9581) | def GetEffectiveRuleForPath(self, path: pxr.Sdf.Path | pxr.Ar.Resolved... method GetRules (line 9593) | def GetRules(self) -> list[tuple[pxr.Sdf.Path, StageLoadRules.Rule]]: method IsLoaded (line 9597) | def IsLoaded(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) -> ... method IsLoadedWithAllDescendants (line 9605) | def IsLoadedWithAllDescendants(self, path: pxr.Sdf.Path | pxr.Ar.Resol... method IsLoadedWithNoDescendants (line 9610) | def IsLoadedWithNoDescendants(self, path: pxr.Sdf.Path | pxr.Ar.Resolv... method LoadAll (line 9616) | def LoadAll() -> StageLoadRules: method LoadAndUnload (line 9623) | def LoadAndUnload(self, loadSet: typing.Iterable[pxr.Sdf.Path | pxr.Ar... method LoadNone (line 9632) | def LoadNone() -> StageLoadRules: method LoadWithDescendants (line 9636) | def LoadWithDescendants(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method LoadWithoutDescendants (line 9649) | def LoadWithoutDescendants(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Minimize (line 9663) | def Minimize(self) -> None: method SetRules (line 9668) | def SetRules(self, rules: typing.Iterable[tuple[pxr.Sdf.Path | pxr.Ar.... method Unload (line 9672) | def Unload(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) -> None: method swap (line 9686) | def swap(self, other: StageLoadRules) -> None: ... method __eq__ (line 9687) | def __eq__(self, other: object) -> bool: method __hash__ (line 9696) | def __hash__(self) -> int: ... method __ne__ (line 9697) | def __ne__(self, other: object) -> bool: ... class StagePopulationMask (line 9699) | class StagePopulationMask(Boost.Python.instance): method __init__ (line 9730) | def __init__(self) -> None: method __init__ (line 9735) | def __init__(self, arg2: object, /) -> None: ... method Add (line 9737) | def Add(self, _other: StagePopulationMask, /) -> StagePopulationMask: method Add (line 9743) | def Add(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str, /) -> S... method All (line 9749) | def All() -> StagePopulationMask: method GetIncludedChildNames (line 9756) | def GetIncludedChildNames(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method GetIntersection (line 9766) | def GetIntersection(self, other: StagePopulationMask) -> StagePopulati... method GetPaths (line 9770) | def GetPaths(self) -> list[pxr.Sdf.Path]: method GetUnion (line 9775) | def GetUnion(self, other: StagePopulationMask) -> StagePopulationMask: method GetUnion (line 9780) | def GetUnion(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) -> ... method Includes (line 9786) | def Includes(self, other: StagePopulationMask) -> bool: method Includes (line 9795) | def Includes(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) -> ... method IncludesSubtree (line 9803) | def IncludesSubtree(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | s... method Intersection (line 9819) | def Intersection(_l: StagePopulationMask, _r: StagePopulationMask, /) ... method IsEmpty (line 9823) | def IsEmpty(self) -> bool: method Union (line 9831) | def Union(_l: StagePopulationMask, _r: StagePopulationMask, /) -> Stag... method __eq__ (line 9835) | def __eq__(self, other: object) -> bool: method __hash__ (line 9839) | def __hash__(self) -> int: ... method __ne__ (line 9840) | def __ne__(self, other: object) -> bool: ... class TimeCode (line 9842) | class TimeCode(Boost.Python.instance): class Tokens (line 9882) | class Tokens(Boost.Python.instance): method __init__ (line 9885) | def __init__(self, *args, **kwargs) -> None: method __init__ (line 9891) | def __init__(self, _t: float, /) -> None: method __init__ (line 9896) | def __init__(self, _timeCode: TimeCode | float | pxr.Sdf.TimeCode, /) ... method __init__ (line 9901) | def __init__(self) -> None: ... method __init__ (line 9903) | def __init__(self, arg2: TimeCode | float | pxr.Sdf.TimeCode, /) -> No... method Default (line 9905) | def Default() -> TimeCode: method EarliestTime (line 9918) | def EarliestTime() -> TimeCode: method GetValue (line 9932) | def GetValue(self) -> float: method IsDefault (line 9939) | def IsDefault(self) -> bool: method IsEarliestTime (line 9947) | def IsEarliestTime(self) -> bool: method IsNumeric (line 9952) | def IsNumeric(self) -> bool: method SafeStep (line 9960) | def SafeStep(maxValue: float = ..., maxCompression: float = ...) -> fl... method __eq__ (line 9975) | def __eq__(self, other: object) -> bool: ... method __ge__ (line 9976) | def __ge__(self, other: object) -> bool: ... method __gt__ (line 9977) | def __gt__(self, other: object) -> bool: ... method __hash__ (line 9978) | def __hash__(self) -> int: ... method __le__ (line 9979) | def __le__(self, other: object) -> bool: ... method __lt__ (line 9980) | def __lt__(self, other: object) -> bool: ... method __ne__ (line 9981) | def __ne__(self, other: object) -> bool: ... class Tokens (line 9983) | class Tokens(Boost.Python.instance): method __init__ (line 10004) | def __init__(self, *args, **kwargs) -> None: class Typed (line 10009) | class Typed(SchemaBase): method __init__ (line 10021) | def __init__(self) -> None: ... method __init__ (line 10023) | def __init__(self, prim: Prim) -> None: method __init__ (line 10033) | def __init__(self, schemaObj: SchemaBase) -> None: method Get (line 10042) | def Get(stage: Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) ... method GetSchemaAttributeNames (line 10056) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 10066) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 10067) | def __bool__(self) -> bool: ... class UsdCollectionMembershipQuery (line 10069) | class UsdCollectionMembershipQuery(Boost.Python.instance): method __init__ (line 10071) | def __init__(self) -> None: ... method GetAsPathExpansionRuleMap (line 10072) | def GetAsPathExpansionRuleMap(self) -> dict: ... method GetIncludedCollections (line 10073) | def GetIncludedCollections(self) -> list: ... method HasExcludes (line 10074) | def HasExcludes(self) -> bool: ... method IsPathIncluded (line 10076) | def IsPathIncluded(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | st... method IsPathIncluded (line 10078) | def IsPathIncluded(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | st... method __eq__ (line 10079) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 10080) | def __hash__(self) -> int: ... method __ne__ (line 10081) | def __ne__(self, other: object) -> bool: ... class UsdFileFormat (line 10083) | class UsdFileFormat(pxr.Sdf.FileFormat): class Tokens (line 10097) | class Tokens(Boost.Python.instance): method __init__ (line 10102) | def __init__(self, *args, **kwargs) -> None: method __init__ (line 10106) | def __init__(self, *args, **kwargs) -> None: method GetUnderlyingFormatForLayer (line 10111) | def GetUnderlyingFormatForLayer(_layer: pxr.Sdf.Layer, /) -> str: class VariantSet (line 10121) | class VariantSet(Boost.Python.instance): method __init__ (line 10132) | def __init__(self, *args, **kwargs) -> None: method AddVariant (line 10136) | def AddVariant(self, variantName: str | pxr.Ar.ResolvedPath, position:... method BlockVariantSelection (line 10157) | def BlockVariantSelection(self) -> bool: method ClearVariantSelection (line 10165) | def ClearVariantSelection(self) -> bool: method GetName (line 10172) | def GetName(self) -> str: method GetPrim (line 10176) | def GetPrim(self) -> Prim: method GetVariantEditContext (line 10180) | def GetVariantEditContext(self, layer: pxr.Sdf.Layer = ...) -> EditCon... method GetVariantEditTarget (line 10207) | def GetVariantEditTarget(self, layer: pxr.Sdf.Layer = ...) -> EditTarget: method GetVariantNames (line 10225) | def GetVariantNames(self) -> list[str]: method GetVariantSelection (line 10230) | def GetVariantSelection(self) -> str: method HasAuthoredVariant (line 10237) | def HasAuthoredVariant(self, _variantName: str | pxr.Ar.ResolvedPath, ... method HasAuthoredVariantSelection (line 10241) | def HasAuthoredVariantSelection(self) -> str: method IsValid (line 10250) | def IsValid(self) -> bool: method SetVariantSelection (line 10255) | def SetVariantSelection(self, variantName: str | pxr.Ar.ResolvedPath) ... method __bool__ (line 10268) | def __bool__(self) -> bool: class VariantSets (line 10273) | class VariantSets(Boost.Python.instance): method __init__ (line 10285) | def __init__(self, *args, **kwargs) -> None: method AddVariantSet (line 10289) | def AddVariantSet(self, variantSetName: str | pxr.Ar.ResolvedPath, pos... method GetAllVariantSelections (line 10304) | def GetAllVariantSelections(self) -> dict: method GetNames (line 10310) | def GetNames(self) -> list[str]: method GetVariantSelection (line 10319) | def GetVariantSelection(self, variantSetName: str | pxr.Ar.ResolvedPat... method GetVariantSet (line 10328) | def GetVariantSet(self, variantSetName: str | pxr.Ar.ResolvedPath) -> ... method HasVariantSet (line 10336) | def HasVariantSet(self, variantSetName: str | pxr.Ar.ResolvedPath) -> ... method SetSelection (line 10341) | def SetSelection(self, variantSetName: str | pxr.Ar.ResolvedPath, vari... class ZipFile (line 10343) | class ZipFile(Boost.Python.instance): class FileInfo (line 10365) | class FileInfo(Boost.Python.instance): method __init__ (line 10369) | def __init__(self, *args, **kwargs) -> None: method compressionMethod (line 10374) | def compressionMethod(self): ... method crc (line 10376) | def crc(self): ... method dataOffset (line 10378) | def dataOffset(self): ... method encrypted (line 10380) | def encrypted(self): ... method size (line 10382) | def size(self): ... method uncompressedSize (line 10384) | def uncompressedSize(self): ... method __init__ (line 10385) | def __init__(self, *args, **kwargs) -> None: method DumpContents (line 10389) | def DumpContents(self) -> None: method GetFile (line 10396) | def GetFile(self, path: object) -> Any: ... method GetFileInfo (line 10397) | def GetFileInfo(self, path: object) -> Any: ... method GetFileNames (line 10398) | def GetFileNames(self) -> list: ... method Open (line 10400) | def Open(filePath: str | pxr.Ar.ResolvedPath) -> ZipFile: class ZipFileWriter (line 10408) | class ZipFileWriter(Boost.Python.instance): method __init__ (line 10419) | def __init__(self, *args, **kwargs) -> None: method AddFile (line 10423) | def AddFile(self, filePath: str | pxr.Ar.ResolvedPath, filePathInArchi... method CreateNew (line 10438) | def CreateNew(filePath: str | pxr.Ar.ResolvedPath) -> ZipFileWriter: method Discard (line 10449) | def Discard(self) -> None: method Save (line 10457) | def Save(self) -> bool: method __enter__ (line 10465) | def __enter__(self) -> ZipFileWriter: ... method __exit__ (line 10466) | def __exit__(self, type: type[BaseException] | None, value: BaseExcept... class _CanApplyAPIResult (line 10468) | class _CanApplyAPIResult(Boost.Python.instance): method __init__ (line 10470) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 10471) | def __bool__(self) -> bool: ... method __eq__ (line 10472) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 10473) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 10474) | def __ne__(self, other: object) -> bool: ... method whyNot (line 10476) | def whyNot(self): ... class _CanApplyResult (line 10478) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 10480) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 10481) | def __bool__(self) -> bool: ... method __eq__ (line 10482) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 10483) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 10484) | def __ne__(self, other: object) -> bool: ... method whyNot (line 10486) | def whyNot(self): ... class _NonPopulatingStageCacheWrapper (line 10488) | class _NonPopulatingStageCacheWrapper(Boost.Python.instance): method __init__ (line 10489) | def __init__(self, *args, **kwargs) -> None: class _PrimFlagsConjunction (line 10494) | class _PrimFlagsConjunction(_PrimFlagsPredicate): method __init__ (line 10495) | def __init__(self, *args, **kwargs) -> None: method __and__ (line 10499) | def __and__(self, arg2: _Term, /) -> Any: ... method __iand__ (line 10500) | def __iand__(self, arg2: _Term, /) -> Any: ... method __invert__ (line 10501) | def __invert__(self) -> Any: ... method __rand__ (line 10502) | def __rand__(self, arg2: _Term, /) -> Any: ... class _PrimFlagsDisjunction (line 10504) | class _PrimFlagsDisjunction(_PrimFlagsPredicate): method __init__ (line 10505) | def __init__(self, *args, **kwargs) -> None: method __invert__ (line 10509) | def __invert__(self) -> Any: ... method __ior__ (line 10510) | def __ior__(self, arg2: _Term, /) -> Any: ... method __or__ (line 10511) | def __or__(self, arg2: _Term, /) -> Any: ... method __ror__ (line 10512) | def __ror__(self, arg2: _Term, /) -> Any: ... class _PrimFlagsPredicate (line 10514) | class _PrimFlagsPredicate(Boost.Python.instance): method __init__ (line 10515) | def __init__(self, *args, **kwargs) -> None: method Contradiction (line 10520) | def Contradiction() -> _PrimFlagsPredicate: ... method Tautology (line 10522) | def Tautology() -> _PrimFlagsPredicate: ... method __call__ (line 10523) | def __call__(self, arg2: Prim, /) -> bool: ... method __eq__ (line 10524) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 10525) | def __hash__(self) -> int: ... method __ne__ (line 10526) | def __ne__(self, other: object) -> bool: ... class _Term (line 10528) | class _Term(Boost.Python.instance): method __init__ (line 10529) | def __init__(self, *args, **kwargs) -> None: method __and__ (line 10533) | def __and__(self, arg2: _Term, /) -> Any: ... method __eq__ (line 10534) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 10535) | def __hash__(self) -> int: ... method __invert__ (line 10536) | def __invert__(self) -> Any: ... method __ne__ (line 10537) | def __ne__(self, other: object) -> bool: ... method __or__ (line 10538) | def __or__(self, arg2: _Term, /) -> Any: ... class _UsdNamespaceEditorCanEditResult (line 10540) | class _UsdNamespaceEditorCanEditResult(Boost.Python.instance): method __init__ (line 10542) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 10543) | def __bool__(self) -> bool: ... method __eq__ (line 10544) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 10545) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 10546) | def __ne__(self, other: object) -> bool: ... method whyNot (line 10548) | def whyNot(self): ... function ComputeIncludedObjectsFromCollection (line 10550) | def ComputeIncludedObjectsFromCollection(query: UsdCollectionMembershipQ... function ComputeIncludedPathsFromCollection (line 10559) | def ComputeIncludedPathsFromCollection(query: UsdCollectionMembershipQue... function Describe (line 10569) | def Describe(_unknownArg1: Object | pxr.UsdGeom.XformOp, /) -> str: function Describe (line 10574) | def Describe(_unknownArg1: Stage, /) -> str: function Describe (line 10580) | def Describe(_unknownArg1: StageCache, /) -> str: function FlattenLayerStack (line 10586) | def FlattenLayerStack(layerStack: pxr.Pcp.LayerStack, tag: str | pxr.Ar.... function FlattenLayerStack (line 10618) | def FlattenLayerStack(layerStack: object, resolveAssetPathFn: object, ta... function FlattenLayerStackAdvanced (line 10619) | def FlattenLayerStackAdvanced(layerStack: object, resolveAssetPathFn: ob... function FlattenLayerStackResolveAssetPath (line 10620) | def FlattenLayerStackResolveAssetPath(sourceLayer: pxr.Sdf.Layer, assetP... function FlattenLayerStackResolveAssetPathAdvanced (line 10630) | def FlattenLayerStackResolveAssetPathAdvanced(context: FlattenResolveAss... function GetMajorVersion (line 10641) | def GetMajorVersion() -> int: function GetMinorVersion (line 10645) | def GetMinorVersion() -> int: function GetPatchVersion (line 10649) | def GetPatchVersion() -> int: function GetVersion (line 10653) | def GetVersion() -> tuple: function TraverseInstanceProxies (line 10658) | def TraverseInstanceProxies(predicate: _PrimFlagsPredicate | _Term) -> _... function TraverseInstanceProxies (line 10694) | def TraverseInstanceProxies() -> _PrimFlagsPredicate: function UseButDoNotPopulateCache (line 10702) | def UseButDoNotPopulateCache(_cache: StageCache, /) -> _NonPopulatingSta... function _TestPrimRangeRoundTrip (line 10712) | def _TestPrimRangeRoundTrip(arg1: object, /) -> Any: ... function _UnsafeGetStageForTesting (line 10713) | def _UnsafeGetStageForTesting(arg1: Object | pxr.UsdGeom.XformOp, /) -> ... FILE: usd/stubs/pxr-stubs/UsdAppUtils/__init__.pyi class FrameRecorder (line 11) | class FrameRecorder(Boost.Python.instance): method __init__ (line 26) | def __init__(self, rendererPluginId: str | pxr.Ar.ResolvedPath = ..., ... method GetCurrentRendererId (line 41) | def GetCurrentRendererId(self) -> str: method Record (line 46) | def Record(self, stage: pxr.Usd.Stage, usdCamera: pxr.UsdGeom.Camera, ... method SetCameraLightEnabled (line 66) | def SetCameraLightEnabled(self, _cameraLightEnabled: bool, /) -> None: method SetColorCorrectionMode (line 74) | def SetColorCorrectionMode(self, _colorCorrectionMode: str | pxr.Ar.Re... method SetComplexity (line 81) | def SetComplexity(self, _complexity: float, /) -> None: method SetImageWidth (line 88) | def SetImageWidth(self, _imageWidth: int, /) -> None: method SetIncludedPurposes (line 98) | def SetIncludedPurposes(self, purposes: list[str] | list[pxr.Ar.Resolv... method SetRendererPlugin (line 108) | def SetRendererPlugin(self, _id: str | pxr.Ar.ResolvedPath, /) -> bool: function GetCameraAtPath (line 120) | def GetCameraAtPath(stage: pxr.Usd.Stage, cameraPath: pxr.Sdf.Path | pxr... FILE: usd/stubs/pxr-stubs/UsdAppUtils/cameraArgs.pyi function AddCmdlineArgs (line 3) | def AddCmdlineArgs(argsParser, defaultValue: Incomplete | None = None, a... FILE: usd/stubs/pxr-stubs/UsdAppUtils/colorArgs.pyi function AddCmdlineArgs (line 1) | def AddCmdlineArgs(argsParser, defaultValue: str = 'sRGB', altHelpText: ... FILE: usd/stubs/pxr-stubs/UsdAppUtils/complexityArgs.pyi class RefinementComplexities (line 3) | class RefinementComplexities: class _RefinementComplexity (line 7) | class _RefinementComplexity: method __init__ (line 16) | def __init__(self, compId, name, value) -> None: ... method __repr__ (line 17) | def __repr__(self) -> str: ... method id (line 19) | def id(self): ... method name (line 21) | def name(self): ... method value (line 23) | def value(self): ... method ordered (line 30) | def ordered(cls): method fromId (line 35) | def fromId(cls, compId): method fromName (line 40) | def fromName(cls, name): method next (line 45) | def next(cls, comp): method prev (line 51) | def prev(cls, comp): function AddCmdlineArgs (line 57) | def AddCmdlineArgs(argsParser, defaultValue=..., altHelpText: str = '') ... FILE: usd/stubs/pxr-stubs/UsdAppUtils/framesArgs.pyi function _GetFloatStringPrecision (line 4) | def _GetFloatStringPrecision(floatString): class FrameSpecIterator (line 15) | class FrameSpecIterator: method __init__ (line 29) | def __init__(self, frameSpec) -> None: ... method __iter__ (line 30) | def __iter__(self): ... method minFloatPrecision (line 32) | def minFloatPrecision(self): ... function AddCmdlineArgs (line 34) | def AddCmdlineArgs(argsParser, altDefaultTimeHelpText: str = '', altFram... function GetFramePlaceholder (line 47) | def GetFramePlaceholder(frameFormat): function ConvertFramePlaceholderToFloatSpec (line 58) | def ConvertFramePlaceholderToFloatSpec(frameFormat): function ValidateCmdlineArgs (line 82) | def ValidateCmdlineArgs(argsParser, args, frameFormatArgName: Incomplete... FILE: usd/stubs/pxr-stubs/UsdAppUtils/rendererArgs.pyi function GetAllPluginArguments (line 1) | def GetAllPluginArguments(): function GetPluginIdFromArgument (line 5) | def GetPluginIdFromArgument(argumentString): function AddCmdlineArgs (line 11) | def AddCmdlineArgs(argsParser, altHelpText: str = '') -> None: FILE: usd/stubs/pxr-stubs/UsdBakeMtlx/__init__.pyi function BakeMaterial (line 7) | def BakeMaterial(mtlxMaterial: pxr.UsdShade.Material, bakedMtlxDir: str ... function ReadFileToStage (line 17) | def ReadFileToStage(pathname: object, stage: object) -> pxr.Usd.Stage: ... FILE: usd/stubs/pxr-stubs/UsdGeom/__init__.pyi class BBoxCache (line 15) | class BBoxCache(Boost.Python.instance): method __init__ (line 68) | def __init__(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode, ... method Clear (line 88) | def Clear(self) -> None: method ClearBaseTime (line 92) | def ClearBaseTime(self) -> None: method ComputeLocalBound (line 99) | def ComputeLocalBound(self, prim: pxr.Usd.Prim) -> pxr.Gf.BBox3d: method ComputePointInstanceLocalBound (line 111) | def ComputePointInstanceLocalBound(self, instancer: PointInstancer, in... method ComputePointInstanceLocalBounds (line 115) | def ComputePointInstanceLocalBounds(self, instancer: PointInstancer, i... method ComputePointInstanceRelativeBound (line 127) | def ComputePointInstanceRelativeBound(self, instancer: PointInstancer,... method ComputePointInstanceRelativeBounds (line 132) | def ComputePointInstanceRelativeBounds(self, instancer: PointInstancer... method ComputePointInstanceUntransformedBound (line 147) | def ComputePointInstanceUntransformedBound(self, instancer: PointInsta... method ComputePointInstanceUntransformedBounds (line 152) | def ComputePointInstanceUntransformedBounds(self, instancer: PointInst... method ComputePointInstanceWorldBound (line 167) | def ComputePointInstanceWorldBound(self, instancer: PointInstancer, in... method ComputePointInstanceWorldBounds (line 171) | def ComputePointInstanceWorldBounds(self, instancer: PointInstancer, i... method ComputeRelativeBound (line 180) | def ComputeRelativeBound(self, prim: pxr.Usd.Prim, relativeRootPrim: p... method ComputeUntransformedBound (line 191) | def ComputeUntransformedBound(self, prim: pxr.Usd.Prim) -> pxr.Gf.BBox3d: method ComputeUntransformedBound (line 207) | def ComputeUntransformedBound(self, prim: pxr.Usd.Prim, pathsToSkip: t... method ComputeWorldBound (line 231) | def ComputeWorldBound(self, prim: pxr.Usd.Prim) -> pxr.Gf.BBox3d: method ComputeWorldBoundWithOverrides (line 244) | def ComputeWorldBoundWithOverrides(self, prim: pxr.Usd.Prim, pathsToSk... method GetBaseTime (line 260) | def GetBaseTime(self) -> pxr.Usd.TimeCode: method GetIncludedPurposes (line 267) | def GetIncludedPurposes(self) -> list[str]: method GetTime (line 271) | def GetTime(self) -> pxr.Usd.TimeCode: method GetUseExtentsHint (line 275) | def GetUseExtentsHint(self) -> bool: method HasBaseTime (line 280) | def HasBaseTime(self) -> bool: method SetBaseTime (line 285) | def SetBaseTime(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCod... method SetIncludedPurposes (line 298) | def SetIncludedPurposes(self, includedPurposes: list[str] | list[pxr.A... method SetTime (line 312) | def SetTime(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode) -... class BasisCurves (line 321) | class BasisCurves(Curves): method __init__ (line 686) | def __init__(self) -> None: ... method __init__ (line 688) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 698) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeInterpolationForSize (line 706) | def ComputeInterpolationForSize(self, _n: int, _timeCode: pxr.Usd.Time... method ComputeUniformDataSize (line 716) | def ComputeUniformDataSize(self, _timeCode: pxr.Usd.TimeCode | float |... method ComputeVaryingDataSize (line 724) | def ComputeVaryingDataSize(self, _timeCode: pxr.Usd.TimeCode | float |... method ComputeVertexDataSize (line 732) | def ComputeVertexDataSize(self, _timeCode: pxr.Usd.TimeCode | float | ... method CreateBasisAttr (line 740) | def CreateBasisAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateTypeAttr (line 750) | def CreateTypeAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateWrapAttr (line 760) | def CreateWrapAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method Define (line 771) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 797) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetBasisAttr (line 810) | def GetBasisAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 840) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTypeAttr (line 849) | def GetTypeAttr(self) -> pxr.Usd.Attribute: method GetWrapAttr (line 877) | def GetWrapAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 907) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 908) | def __bool__(self) -> bool: ... class Boundable (line 910) | class Boundable(Xformable): method __init__ (line 944) | def __init__(self) -> None: ... method __init__ (line 946) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 956) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeExtent (line 964) | def ComputeExtent(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeC... method ComputeExtentFromPlugins (line 980) | def ComputeExtentFromPlugins(boundable: Boundable, time: pxr.Usd.TimeC... method ComputeExtentFromPlugins (line 1003) | def ComputeExtentFromPlugins(boundable: Boundable, time: pxr.Usd.TimeC... method CreateExtentAttr (line 1009) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Get (line 1020) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetExtentAttr (line 1033) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1067) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1077) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1078) | def __bool__(self) -> bool: ... class Camera (line 1080) | class Camera(Xformable): method __init__ (line 1137) | def __init__(self) -> None: ... method __init__ (line 1139) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1149) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateClippingPlanesAttr (line 1157) | def CreateClippingPlanesAttr(self, defaultValue: Any = ..., writeSpars... method CreateClippingRangeAttr (line 1167) | def CreateClippingRangeAttr(self, defaultValue: Any = ..., writeSparse... method CreateExposureAttr (line 1177) | def CreateExposureAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateFStopAttr (line 1187) | def CreateFStopAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateFocalLengthAttr (line 1197) | def CreateFocalLengthAttr(self, defaultValue: Any = ..., writeSparsely... method CreateFocusDistanceAttr (line 1207) | def CreateFocusDistanceAttr(self, defaultValue: Any = ..., writeSparse... method CreateHorizontalApertureAttr (line 1217) | def CreateHorizontalApertureAttr(self, defaultValue: Any = ..., writeS... method CreateHorizontalApertureOffsetAttr (line 1227) | def CreateHorizontalApertureOffsetAttr(self, defaultValue: Any = ..., ... method CreateProjectionAttr (line 1237) | def CreateProjectionAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateShutterCloseAttr (line 1247) | def CreateShutterCloseAttr(self, defaultValue: Any = ..., writeSparsel... method CreateShutterOpenAttr (line 1257) | def CreateShutterOpenAttr(self, defaultValue: Any = ..., writeSparsely... method CreateStereoRoleAttr (line 1267) | def CreateStereoRoleAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateVerticalApertureAttr (line 1277) | def CreateVerticalApertureAttr(self, defaultValue: Any = ..., writeSpa... method CreateVerticalApertureOffsetAttr (line 1287) | def CreateVerticalApertureOffsetAttr(self, defaultValue: Any = ..., wr... method Define (line 1298) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1324) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCamera (line 1337) | def GetCamera(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode ... method GetClippingPlanesAttr (line 1341) | def GetClippingPlanesAttr(self) -> pxr.Usd.Attribute: method GetClippingRangeAttr (line 1362) | def GetClippingRangeAttr(self) -> pxr.Usd.Attribute: method GetExposureAttr (line 1381) | def GetExposureAttr(self) -> pxr.Usd.Attribute: method GetFStopAttr (line 1402) | def GetFStopAttr(self) -> pxr.Usd.Attribute: method GetFocalLengthAttr (line 1421) | def GetFocalLengthAttr(self) -> pxr.Usd.Attribute: method GetFocusDistanceAttr (line 1440) | def GetFocusDistanceAttr(self) -> pxr.Usd.Attribute: method GetHorizontalApertureAttr (line 1459) | def GetHorizontalApertureAttr(self) -> pxr.Usd.Attribute: method GetHorizontalApertureOffsetAttr (line 1480) | def GetHorizontalApertureOffsetAttr(self) -> pxr.Usd.Attribute: method GetProjectionAttr (line 1499) | def GetProjectionAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1519) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetShutterCloseAttr (line 1528) | def GetShutterCloseAttr(self) -> pxr.Usd.Attribute: method GetShutterOpenAttr (line 1549) | def GetShutterOpenAttr(self) -> pxr.Usd.Attribute: method GetStereoRoleAttr (line 1569) | def GetStereoRoleAttr(self) -> pxr.Usd.Attribute: method GetVerticalApertureAttr (line 1596) | def GetVerticalApertureAttr(self) -> pxr.Usd.Attribute: method GetVerticalApertureOffsetAttr (line 1617) | def GetVerticalApertureOffsetAttr(self) -> pxr.Usd.Attribute: method SetFromCamera (line 1636) | def SetFromCamera(self, camera: pxr.Gf.Camera, time: pxr.Usd.TimeCode ... method _GetStaticTfType (line 1671) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1672) | def __bool__(self) -> bool: ... class Capsule (line 1674) | class Capsule(Gprim): method __init__ (line 1692) | def __init__(self) -> None: ... method __init__ (line 1694) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1704) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 1712) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateExtentAttr (line 1722) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateHeightAttr (line 1732) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusAttr (line 1742) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 1753) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1779) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 1792) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetExtentAttr (line 1818) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetHeightAttr (line 1838) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetRadiusAttr (line 1861) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1883) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1893) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1894) | def __bool__(self) -> bool: ... class Capsule_1 (line 1896) | class Capsule_1(Gprim): method __init__ (line 1914) | def __init__(self) -> None: ... method __init__ (line 1916) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1926) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 1934) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateExtentAttr (line 1944) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateHeightAttr (line 1954) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusBottomAttr (line 1964) | def CreateRadiusBottomAttr(self, defaultValue: Any = ..., writeSparsel... method CreateRadiusTopAttr (line 1974) | def CreateRadiusTopAttr(self, defaultValue: Any = ..., writeSparsely: ... method Define (line 1985) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2011) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 2024) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetExtentAttr (line 2050) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetHeightAttr (line 2070) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetRadiusBottomAttr (line 2093) | def GetRadiusBottomAttr(self) -> pxr.Usd.Attribute: method GetRadiusTopAttr (line 2115) | def GetRadiusTopAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2138) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2148) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2149) | def __bool__(self) -> bool: ... class Cone (line 2151) | class Cone(Gprim): method __init__ (line 2168) | def __init__(self) -> None: ... method __init__ (line 2170) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2180) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 2188) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateExtentAttr (line 2198) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateHeightAttr (line 2208) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusAttr (line 2218) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 2229) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2255) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 2268) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetExtentAttr (line 2294) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetHeightAttr (line 2314) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetRadiusAttr (line 2335) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2357) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2367) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2368) | def __bool__(self) -> bool: ... class ConstraintTarget (line 2370) | class ConstraintTarget(Boost.Python.instance): method __init__ (line 2401) | def __init__(self) -> None: ... method __init__ (line 2403) | def __init__(self, attr: pxr.Usd.Attribute | ConstraintTarget | Primva... method ComputeInWorldSpace (line 2418) | def ComputeInWorldSpace(self, time: pxr.Usd.TimeCode | float | pxr.Sdf... method Get (line 2431) | def Get(self, _value: pxr.Gf.Matrix4d, /, time: pxr.Usd.TimeCode | flo... method GetAttr (line 2435) | def GetAttr(self) -> pxr.Usd.Attribute: method GetConstraintAttrName (line 2440) | def GetConstraintAttrName(_constraintName: str | pxr.Ar.ResolvedPath, ... method GetIdentifier (line 2445) | def GetIdentifier(self) -> str: method IsDefined (line 2454) | def IsDefined(self) -> bool: method IsValid (line 2460) | def IsValid(cls, _attr: pxr.Usd.Attribute | ConstraintTarget | Primvar... method Set (line 2469) | def Set(self, value: pxr.Gf.Matrix4d, time: pxr.Usd.TimeCode | float |... method SetIdentifier (line 2473) | def SetIdentifier(self, identifier: str | pxr.Ar.ResolvedPath) -> None: method __bool__ (line 2481) | def __bool__(self) -> bool: class Cube (line 2491) | class Cube(Gprim): method __init__ (line 2501) | def __init__(self) -> None: ... method __init__ (line 2503) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2513) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateExtentAttr (line 2521) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateSizeAttr (line 2531) | def CreateSizeAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method Define (line 2542) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2568) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetExtentAttr (line 2581) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2602) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSizeAttr (line 2611) | def GetSizeAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 2633) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2634) | def __bool__(self) -> bool: ... class Curves (line 2636) | class Curves(PointBased): method __init__ (line 2660) | def __init__(self) -> None: ... method __init__ (line 2662) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2672) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeExtent (line 2681) | def ComputeExtent(points: pxr.Vt.Vec3fArray | typing.Iterable[list[flo... method CreateCurveVertexCountsAttr (line 2695) | def CreateCurveVertexCountsAttr(self, defaultValue: Any = ..., writeSp... method CreateWidthsAttr (line 2705) | def CreateWidthsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Get (line 2716) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCurveCount (line 2729) | def GetCurveCount(self, timeCode: pxr.Usd.TimeCode | float | pxr.Sdf.T... method GetCurveVertexCountsAttr (line 2743) | def GetCurveVertexCountsAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2766) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetWidthsAttr (line 2775) | def GetWidthsAttr(self) -> pxr.Usd.Attribute: method GetWidthsInterpolation (line 2800) | def GetWidthsInterpolation(self) -> str: method SetWidthsInterpolation (line 2812) | def SetWidthsInterpolation(self, interpolation: str | pxr.Ar.ResolvedP... method _GetStaticTfType (line 2827) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2828) | def __bool__(self) -> bool: ... class Cylinder (line 2830) | class Cylinder(Gprim): method __init__ (line 2846) | def __init__(self) -> None: ... method __init__ (line 2848) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2858) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 2866) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateExtentAttr (line 2876) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateHeightAttr (line 2886) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusAttr (line 2896) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 2907) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2933) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 2946) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetExtentAttr (line 2972) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetHeightAttr (line 2992) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetRadiusAttr (line 3013) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3035) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 3045) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3046) | def __bool__(self) -> bool: ... class Cylinder_1 (line 3048) | class Cylinder_1(Gprim): method __init__ (line 3065) | def __init__(self) -> None: ... method __init__ (line 3067) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3077) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 3085) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateExtentAttr (line 3095) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateHeightAttr (line 3105) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusBottomAttr (line 3115) | def CreateRadiusBottomAttr(self, defaultValue: Any = ..., writeSparsel... method CreateRadiusTopAttr (line 3125) | def CreateRadiusTopAttr(self, defaultValue: Any = ..., writeSparsely: ... method Define (line 3136) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3162) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 3175) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetExtentAttr (line 3201) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetHeightAttr (line 3221) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetRadiusBottomAttr (line 3242) | def GetRadiusBottomAttr(self) -> pxr.Usd.Attribute: method GetRadiusTopAttr (line 3264) | def GetRadiusTopAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3287) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 3297) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3298) | def __bool__(self) -> bool: ... class Gprim (line 3300) | class Gprim(Boundable): method __init__ (line 3318) | def __init__(self) -> None: ... method __init__ (line 3320) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3330) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateDisplayColorAttr (line 3338) | def CreateDisplayColorAttr(self, defaultValue: Any = ..., writeSparsel... method CreateDisplayColorPrimvar (line 3348) | def CreateDisplayColorPrimvar(self, interpolation: str | pxr.Ar.Resolv... method CreateDisplayOpacityAttr (line 3357) | def CreateDisplayOpacityAttr(self, defaultValue: Any = ..., writeSpars... method CreateDisplayOpacityPrimvar (line 3367) | def CreateDisplayOpacityPrimvar(self, interpolation: str | pxr.Ar.Reso... method CreateDoubleSidedAttr (line 3376) | def CreateDoubleSidedAttr(self, defaultValue: Any = ..., writeSparsely... method CreateOrientationAttr (line 3386) | def CreateOrientationAttr(self, defaultValue: Any = ..., writeSparsely... method Get (line 3397) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDisplayColorAttr (line 3410) | def GetDisplayColorAttr(self) -> pxr.Usd.Attribute: method GetDisplayColorPrimvar (line 3433) | def GetDisplayColorPrimvar(self) -> Primvar: method GetDisplayOpacityAttr (line 3441) | def GetDisplayOpacityAttr(self) -> pxr.Usd.Attribute: method GetDisplayOpacityPrimvar (line 3462) | def GetDisplayOpacityPrimvar(self) -> Primvar: method GetDoubleSidedAttr (line 3470) | def GetDoubleSidedAttr(self) -> pxr.Usd.Attribute: method GetOrientationAttr (line 3506) | def GetOrientationAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3537) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 3547) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3548) | def __bool__(self) -> bool: ... class HermiteCurves (line 3550) | class HermiteCurves(Curves): class PointAndTangentArrays (line 3589) | class PointAndTangentArrays(Boost.Python.instance): method __init__ (line 3598) | def __init__(self) -> None: method __init__ (line 3603) | def __init__(self, _points: pxr.Vt.Vec3fArray | typing.Iterable[list... method GetPoints (line 3611) | def GetPoints(self) -> pxr.Vt.Vec3fArray: method GetTangents (line 3615) | def GetTangents(self) -> pxr.Vt.Vec3fArray: method Interleave (line 3619) | def Interleave(self) -> pxr.Vt.Vec3fArray: method IsEmpty (line 3624) | def IsEmpty(self) -> bool: method Separate (line 3629) | def Separate(_interleaved: pxr.Vt.Vec3fArray | typing.Iterable[list[... method __bool__ (line 3634) | def __bool__(self) -> bool: method __eq__ (line 3638) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 3639) | def __ne__(self, other: object) -> bool: ... method __init__ (line 3642) | def __init__(self) -> None: ... method __init__ (line 3644) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3654) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateTangentsAttr (line 3662) | def CreateTangentsAttr(self, defaultValue: Any = ..., writeSparsely: b... method Define (line 3673) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3699) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 3713) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTangentsAttr (line 3722) | def GetTangentsAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 3742) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3743) | def __bool__(self) -> bool: ... class Imageable (line 3745) | class Imageable(pxr.Usd.Typed): class PurposeInfo (line 3768) | class PurposeInfo(Boost.Python.instance): method __init__ (line 3784) | def __init__(self) -> None: ... method __init__ (line 3786) | def __init__(self, _purpose_: str | pxr.Ar.ResolvedPath, _isInherita... method GetInheritablePurpose (line 3787) | def GetInheritablePurpose(self) -> str: method __bool__ (line 3791) | def __bool__(self) -> bool: method __eq__ (line 3795) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 3796) | def __ne__(self, other: object) -> bool: ... method __init__ (line 3799) | def __init__(self) -> None: ... method __init__ (line 3801) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3811) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeEffectiveVisibility (line 3819) | def ComputeEffectiveVisibility(self, purpose: str | pxr.Ar.ResolvedPat... method ComputeLocalBound (line 3852) | def ComputeLocalBound(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.T... method ComputeLocalToWorldTransform (line 3869) | def ComputeLocalToWorldTransform(self, time: pxr.Usd.TimeCode | float ... method ComputeParentToWorldTransform (line 3880) | def ComputeParentToWorldTransform(self, time: pxr.Usd.TimeCode | float... method ComputeProxyPrim (line 3891) | def ComputeProxyPrim(self) -> tuple[pxr.Usd.Prim, pxr.Usd.Prim]: method ComputePurpose (line 3923) | def ComputePurpose(self) -> str: method ComputePurposeInfo (line 3942) | def ComputePurposeInfo(self) -> Imageable.PurposeInfo: method ComputePurposeInfo (line 3961) | def ComputePurposeInfo(self, parentPurposeInfo: Imageable.PurposeInfo)... method ComputeUntransformedBound (line 3975) | def ComputeUntransformedBound(self, time: pxr.Usd.TimeCode | float | p... method ComputeVisibility (line 3992) | def ComputeVisibility(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.T... method ComputeWorldBound (line 4013) | def ComputeWorldBound(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.T... method CreateProxyPrimRel (line 4030) | def CreateProxyPrimRel(self) -> pxr.Usd.Relationship: method CreatePurposeAttr (line 4035) | def CreatePurposeAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateVisibilityAttr (line 4045) | def CreateVisibilityAttr(self, defaultValue: Any = ..., writeSparsely:... method Get (line 4056) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetOrderedPurposeTokens (line 4070) | def GetOrderedPurposeTokens() -> list[str]: method GetProxyPrimRel (line 4087) | def GetProxyPrimRel(self) -> pxr.Usd.Relationship: method GetPurposeAttr (line 4111) | def GetPurposeAttr(self) -> pxr.Usd.Attribute: method GetPurposeVisibilityAttr (line 4141) | def GetPurposeVisibilityAttr(self, purpose: str | pxr.Ar.ResolvedPath ... method GetSchemaAttributeNames (line 4158) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetVisibilityAttr (line 4167) | def GetVisibilityAttr(self) -> pxr.Usd.Attribute: method MakeInvisible (line 4194) | def MakeInvisible(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeC... method MakeVisible (line 4212) | def MakeVisible(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCod... method SetProxyPrim (line 4243) | def SetProxyPrim(self, proxy: pxr.Usd.Prim) -> bool: method SetProxyPrim (line 4256) | def SetProxyPrim(self, proxy: pxr.Usd.SchemaBase) -> bool: ... method _GetStaticTfType (line 4258) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 4259) | def __bool__(self) -> bool: ... class LinearUnits (line 4261) | class LinearUnits(Boost.Python.instance): method __init__ (line 4281) | def __init__(self, *args, **kwargs) -> None: class Mesh (line 4286) | class Mesh(PointBased): method __init__ (line 4372) | def __init__(self) -> None: ... method __init__ (line 4374) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 4384) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateCornerIndicesAttr (line 4392) | def CreateCornerIndicesAttr(self, defaultValue: Any = ..., writeSparse... method CreateCornerSharpnessesAttr (line 4402) | def CreateCornerSharpnessesAttr(self, defaultValue: Any = ..., writeSp... method CreateCreaseIndicesAttr (line 4412) | def CreateCreaseIndicesAttr(self, defaultValue: Any = ..., writeSparse... method CreateCreaseLengthsAttr (line 4422) | def CreateCreaseLengthsAttr(self, defaultValue: Any = ..., writeSparse... method CreateCreaseSharpnessesAttr (line 4432) | def CreateCreaseSharpnessesAttr(self, defaultValue: Any = ..., writeSp... method CreateFaceVaryingLinearInterpolationAttr (line 4442) | def CreateFaceVaryingLinearInterpolationAttr(self, defaultValue: Any =... method CreateFaceVertexCountsAttr (line 4452) | def CreateFaceVertexCountsAttr(self, defaultValue: Any = ..., writeSpa... method CreateFaceVertexIndicesAttr (line 4462) | def CreateFaceVertexIndicesAttr(self, defaultValue: Any = ..., writeSp... method CreateHoleIndicesAttr (line 4472) | def CreateHoleIndicesAttr(self, defaultValue: Any = ..., writeSparsely... method CreateInterpolateBoundaryAttr (line 4482) | def CreateInterpolateBoundaryAttr(self, defaultValue: Any = ..., write... method CreateSubdivisionSchemeAttr (line 4492) | def CreateSubdivisionSchemeAttr(self, defaultValue: Any = ..., writeSp... method CreateTriangleSubdivisionRuleAttr (line 4502) | def CreateTriangleSubdivisionRuleAttr(self, defaultValue: Any = ..., w... method Define (line 4513) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 4539) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCornerIndicesAttr (line 4552) | def GetCornerIndicesAttr(self) -> pxr.Usd.Attribute: method GetCornerSharpnessesAttr (line 4572) | def GetCornerSharpnessesAttr(self) -> pxr.Usd.Attribute: method GetCreaseIndicesAttr (line 4593) | def GetCreaseIndicesAttr(self) -> pxr.Usd.Attribute: method GetCreaseLengthsAttr (line 4614) | def GetCreaseLengthsAttr(self) -> pxr.Usd.Attribute: method GetCreaseSharpnessesAttr (line 4637) | def GetCreaseSharpnessesAttr(self) -> pxr.Usd.Attribute: method GetFaceCount (line 4662) | def GetFaceCount(self, timeCode: pxr.Usd.TimeCode | float | pxr.Sdf.Ti... method GetFaceVaryingLinearInterpolationAttr (line 4676) | def GetFaceVaryingLinearInterpolationAttr(self) -> pxr.Usd.Attribute: method GetFaceVertexCountsAttr (line 4725) | def GetFaceVertexCountsAttr(self) -> pxr.Usd.Attribute: method GetFaceVertexIndicesAttr (line 4748) | def GetFaceVertexIndicesAttr(self) -> pxr.Usd.Attribute: method GetHoleIndicesAttr (line 4769) | def GetHoleIndicesAttr(self) -> pxr.Usd.Attribute: method GetInterpolateBoundaryAttr (line 4789) | def GetInterpolateBoundaryAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 4828) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSubdivisionSchemeAttr (line 4837) | def GetSubdivisionSchemeAttr(self) -> pxr.Usd.Attribute: method GetTriangleSubdivisionRuleAttr (line 4884) | def GetTriangleSubdivisionRuleAttr(self) -> pxr.Usd.Attribute: method ValidateTopology (line 4915) | def ValidateTopology(faceVertexIndices: pxr.Vt.IntArray | typing.Itera... method _GetStaticTfType (line 4928) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 4929) | def __bool__(self) -> bool: ... class ModelAPI (line 4931) | class ModelAPI(pxr.Usd.APISchemaBase): method __init__ (line 5042) | def __init__(self) -> None: ... method __init__ (line 5044) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 5054) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 5063) | def Apply(prim: pxr.Usd.Prim) -> ModelAPI: method CanApply (line 5086) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ComputeExtentsHint (line 5111) | def ComputeExtentsHint(self, bboxCache: BBoxCache) -> pxr.Vt.Vec3fArray: method ComputeModelDrawMode (line 5145) | def ComputeModelDrawMode(self, parentDrawMode: str | pxr.Ar.ResolvedPa... method CreateConstraintTarget (line 5168) | def CreateConstraintTarget(self, _constraintName: str | pxr.Ar.Resolve... method CreateModelApplyDrawModeAttr (line 5177) | def CreateModelApplyDrawModeAttr(self, defaultValue: Any = ..., writeS... method CreateModelCardGeometryAttr (line 5187) | def CreateModelCardGeometryAttr(self, defaultValue: Any = ..., writeSp... method CreateModelCardTextureXNegAttr (line 5197) | def CreateModelCardTextureXNegAttr(self, defaultValue: Any = ..., writ... method CreateModelCardTextureXPosAttr (line 5207) | def CreateModelCardTextureXPosAttr(self, defaultValue: Any = ..., writ... method CreateModelCardTextureYNegAttr (line 5217) | def CreateModelCardTextureYNegAttr(self, defaultValue: Any = ..., writ... method CreateModelCardTextureYPosAttr (line 5227) | def CreateModelCardTextureYPosAttr(self, defaultValue: Any = ..., writ... method CreateModelCardTextureZNegAttr (line 5237) | def CreateModelCardTextureZNegAttr(self, defaultValue: Any = ..., writ... method CreateModelCardTextureZPosAttr (line 5247) | def CreateModelCardTextureZPosAttr(self, defaultValue: Any = ..., writ... method CreateModelDrawModeAttr (line 5257) | def CreateModelDrawModeAttr(self, defaultValue: Any = ..., writeSparse... method CreateModelDrawModeColorAttr (line 5267) | def CreateModelDrawModeColorAttr(self, defaultValue: Any = ..., writeS... method Get (line 5278) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetConstraintTarget (line 5291) | def GetConstraintTarget(self, _constraintName: str | pxr.Ar.ResolvedPa... method GetConstraintTargets (line 5299) | def GetConstraintTargets(self) -> list[ConstraintTarget]: method GetExtentsHint (line 5307) | def GetExtentsHint(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.Time... method GetExtentsHintAttr (line 5351) | def GetExtentsHintAttr(self) -> pxr.Usd.Attribute: method GetModelApplyDrawModeAttr (line 5355) | def GetModelApplyDrawModeAttr(self) -> pxr.Usd.Attribute: method GetModelCardGeometryAttr (line 5379) | def GetModelCardGeometryAttr(self) -> pxr.Usd.Attribute: method GetModelCardTextureXNegAttr (line 5407) | def GetModelCardTextureXNegAttr(self) -> pxr.Usd.Attribute: method GetModelCardTextureXPosAttr (line 5426) | def GetModelCardTextureXPosAttr(self) -> pxr.Usd.Attribute: method GetModelCardTextureYNegAttr (line 5445) | def GetModelCardTextureYNegAttr(self) -> pxr.Usd.Attribute: method GetModelCardTextureYPosAttr (line 5464) | def GetModelCardTextureYPosAttr(self) -> pxr.Usd.Attribute: method GetModelCardTextureZNegAttr (line 5483) | def GetModelCardTextureZNegAttr(self) -> pxr.Usd.Attribute: method GetModelCardTextureZPosAttr (line 5502) | def GetModelCardTextureZPosAttr(self) -> pxr.Usd.Attribute: method GetModelDrawModeAttr (line 5521) | def GetModelDrawModeAttr(self) -> pxr.Usd.Attribute: method GetModelDrawModeColorAttr (line 5550) | def GetModelDrawModeColorAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 5575) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method SetExtentsHint (line 5584) | def SetExtentsHint(self, extents: pxr.Vt.Vec3fArray | typing.Iterable[... method _GetStaticTfType (line 5593) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 5594) | def __bool__(self) -> bool: ... class MotionAPI (line 5596) | class MotionAPI(pxr.Usd.APISchemaBase): method __init__ (line 5614) | def __init__(self) -> None: ... method __init__ (line 5616) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 5626) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 5635) | def Apply(prim: pxr.Usd.Prim) -> MotionAPI: method CanApply (line 5658) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ComputeMotionBlurScale (line 5683) | def ComputeMotionBlurScale(self, time: pxr.Usd.TimeCode | float | pxr.... method ComputeNonlinearSampleCount (line 5698) | def ComputeNonlinearSampleCount(self, time: pxr.Usd.TimeCode | float |... method ComputeVelocityScale (line 5713) | def ComputeVelocityScale(self, time: pxr.Usd.TimeCode | float | pxr.Sd... method CreateMotionBlurScaleAttr (line 5728) | def CreateMotionBlurScaleAttr(self, defaultValue: Any = ..., writeSpar... method CreateNonlinearSampleCountAttr (line 5738) | def CreateNonlinearSampleCountAttr(self, defaultValue: Any = ..., writ... method CreateVelocityScaleAttr (line 5748) | def CreateVelocityScaleAttr(self, defaultValue: Any = ..., writeSparse... method Get (line 5759) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetMotionBlurScaleAttr (line 5772) | def GetMotionBlurScaleAttr(self) -> pxr.Usd.Attribute: method GetNonlinearSampleCountAttr (line 5807) | def GetNonlinearSampleCountAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 5842) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetVelocityScaleAttr (line 5851) | def GetVelocityScaleAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 5879) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 5880) | def __bool__(self) -> bool: ... class NurbsCurves (line 5882) | class NurbsCurves(Curves): method __init__ (line 5913) | def __init__(self) -> None: ... method __init__ (line 5915) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 5925) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateKnotsAttr (line 5933) | def CreateKnotsAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateOrderAttr (line 5943) | def CreateOrderAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreatePointWeightsAttr (line 5953) | def CreatePointWeightsAttr(self, defaultValue: Any = ..., writeSparsel... method CreateRangesAttr (line 5963) | def CreateRangesAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 5974) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 6000) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetKnotsAttr (line 6013) | def GetKnotsAttr(self) -> pxr.Usd.Attribute: method GetOrderAttr (line 6034) | def GetOrderAttr(self) -> pxr.Usd.Attribute: method GetPointWeightsAttr (line 6055) | def GetPointWeightsAttr(self) -> pxr.Usd.Attribute: method GetRangesAttr (line 6079) | def GetRangesAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 6103) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 6113) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 6114) | def __bool__(self) -> bool: ... class NurbsPatch (line 6116) | class NurbsPatch(PointBased): method __init__ (line 6176) | def __init__(self) -> None: ... method __init__ (line 6178) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 6188) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreatePointWeightsAttr (line 6196) | def CreatePointWeightsAttr(self, defaultValue: Any = ..., writeSparsel... method CreateTrimCurveCountsAttr (line 6206) | def CreateTrimCurveCountsAttr(self, defaultValue: Any = ..., writeSpar... method CreateTrimCurveKnotsAttr (line 6216) | def CreateTrimCurveKnotsAttr(self, defaultValue: Any = ..., writeSpars... method CreateTrimCurveOrdersAttr (line 6226) | def CreateTrimCurveOrdersAttr(self, defaultValue: Any = ..., writeSpar... method CreateTrimCurvePointsAttr (line 6236) | def CreateTrimCurvePointsAttr(self, defaultValue: Any = ..., writeSpar... method CreateTrimCurveRangesAttr (line 6246) | def CreateTrimCurveRangesAttr(self, defaultValue: Any = ..., writeSpar... method CreateTrimCurveVertexCountsAttr (line 6256) | def CreateTrimCurveVertexCountsAttr(self, defaultValue: Any = ..., wri... method CreateUFormAttr (line 6266) | def CreateUFormAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateUKnotsAttr (line 6276) | def CreateUKnotsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateUOrderAttr (line 6286) | def CreateUOrderAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateURangeAttr (line 6296) | def CreateURangeAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateUVertexCountAttr (line 6306) | def CreateUVertexCountAttr(self, defaultValue: Any = ..., writeSparsel... method CreateVFormAttr (line 6316) | def CreateVFormAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateVKnotsAttr (line 6326) | def CreateVKnotsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateVOrderAttr (line 6336) | def CreateVOrderAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateVRangeAttr (line 6346) | def CreateVRangeAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateVVertexCountAttr (line 6356) | def CreateVVertexCountAttr(self, defaultValue: Any = ..., writeSparsel... method Define (line 6367) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 6393) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetPointWeightsAttr (line 6406) | def GetPointWeightsAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 6431) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTrimCurveCountsAttr (line 6440) | def GetTrimCurveCountsAttr(self) -> pxr.Usd.Attribute: method GetTrimCurveKnotsAttr (line 6463) | def GetTrimCurveKnotsAttr(self) -> pxr.Usd.Attribute: method GetTrimCurveOrdersAttr (line 6483) | def GetTrimCurveOrdersAttr(self) -> pxr.Usd.Attribute: method GetTrimCurvePointsAttr (line 6501) | def GetTrimCurvePointsAttr(self) -> pxr.Usd.Attribute: method GetTrimCurveRangesAttr (line 6522) | def GetTrimCurveRangesAttr(self) -> pxr.Usd.Attribute: method GetTrimCurveVertexCountsAttr (line 6541) | def GetTrimCurveVertexCountsAttr(self) -> pxr.Usd.Attribute: method GetUFormAttr (line 6559) | def GetUFormAttr(self) -> pxr.Usd.Attribute: method GetUKnotsAttr (line 6589) | def GetUKnotsAttr(self) -> pxr.Usd.Attribute: method GetUOrderAttr (line 6609) | def GetUOrderAttr(self) -> pxr.Usd.Attribute: method GetURangeAttr (line 6629) | def GetURangeAttr(self) -> pxr.Usd.Attribute: method GetUVertexCountAttr (line 6651) | def GetUVertexCountAttr(self) -> pxr.Usd.Attribute: method GetVFormAttr (line 6670) | def GetVFormAttr(self) -> pxr.Usd.Attribute: method GetVKnotsAttr (line 6700) | def GetVKnotsAttr(self) -> pxr.Usd.Attribute: method GetVOrderAttr (line 6720) | def GetVOrderAttr(self) -> pxr.Usd.Attribute: method GetVRangeAttr (line 6740) | def GetVRangeAttr(self) -> pxr.Usd.Attribute: method GetVVertexCountAttr (line 6762) | def GetVVertexCountAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 6782) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 6783) | def __bool__(self) -> bool: ... class Plane (line 6785) | class Plane(Gprim): method __init__ (line 6826) | def __init__(self) -> None: ... method __init__ (line 6828) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 6838) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 6846) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateDoubleSidedAttr (line 6856) | def CreateDoubleSidedAttr(self, defaultValue: Any = ..., writeSparsely... method CreateExtentAttr (line 6866) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateLengthAttr (line 6876) | def CreateLengthAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateWidthAttr (line 6886) | def CreateWidthAttr(self, defaultValue: Any = ..., writeSparsely: bool... method Define (line 6897) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 6923) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 6936) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetDoubleSidedAttr (line 6966) | def GetDoubleSidedAttr(self) -> pxr.Usd.Attribute: method GetExtentAttr (line 6991) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetLengthAttr (line 7011) | def GetLengthAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 7034) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetWidthAttr (line 7043) | def GetWidthAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 7066) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 7067) | def __bool__(self) -> bool: ... class PointBased (line 7069) | class PointBased(Gprim): method __init__ (line 7076) | def __init__(self) -> None: ... method __init__ (line 7078) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 7088) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeExtent (line 7097) | def ComputeExtent(points: pxr.Vt.Vec3fArray | typing.Iterable[list[flo... method ComputePointsAtTime (line 7111) | def ComputePointsAtTime(self, time: pxr.Usd.TimeCode | float | pxr.Sdf... method ComputePointsAtTimes (line 7153) | def ComputePointsAtTimes(self, times: typing.Iterable[pxr.Usd.TimeCode... method CreateAccelerationsAttr (line 7166) | def CreateAccelerationsAttr(self, defaultValue: Any = ..., writeSparse... method CreateNormalsAttr (line 7176) | def CreateNormalsAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreatePointsAttr (line 7186) | def CreatePointsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateVelocitiesAttr (line 7196) | def CreateVelocitiesAttr(self, defaultValue: Any = ..., writeSparsely:... method Get (line 7207) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAccelerationsAttr (line 7220) | def GetAccelerationsAttr(self) -> pxr.Usd.Attribute: method GetNormalsAttr (line 7243) | def GetNormalsAttr(self) -> pxr.Usd.Attribute: method GetNormalsInterpolation (line 7268) | def GetNormalsInterpolation(self) -> str: method GetPointsAttr (line 7282) | def GetPointsAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 7302) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetVelocitiesAttr (line 7311) | def GetVelocitiesAttr(self) -> pxr.Usd.Attribute: method SetNormalsInterpolation (line 7339) | def SetNormalsInterpolation(self, interpolation: str | pxr.Ar.Resolved... method _GetStaticTfType (line 7354) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 7355) | def __bool__(self) -> bool: ... class PointInstancer (line 7357) | class PointInstancer(Boundable): class MaskApplication (line 7592) | class MaskApplication(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 7595) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 7600) | def GetValueFromName(name: object) -> Any: ... class ProtoXformInclusion (line 7602) | class ProtoXformInclusion(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 7605) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 7610) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 7617) | def __init__(self) -> None: ... method __init__ (line 7619) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 7629) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ActivateAllIds (line 7637) | def ActivateAllIds(self) -> bool: method ActivateId (line 7646) | def ActivateId(self, id: int) -> bool: method ActivateIds (line 7657) | def ActivateIds(self, ids: pxr.Vt.Int64Array | typing.Iterable[int]) -... method ComputeExtentAtTime (line 7669) | def ComputeExtentAtTime(self, time: pxr.Usd.TimeCode | float | pxr.Sdf... method ComputeExtentAtTimes (line 7707) | def ComputeExtentAtTimes(self, times: typing.Iterable[pxr.Usd.TimeCode... method ComputeInstanceTransformsAtTime (line 7726) | def ComputeInstanceTransformsAtTime(self, time: pxr.Usd.TimeCode | flo... method ComputeInstanceTransformsAtTimes (line 7790) | def ComputeInstanceTransformsAtTimes(self, times: typing.Iterable[pxr.... method ComputeMaskAtTime (line 7803) | def ComputeMaskAtTime(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.T... method CreateAccelerationsAttr (line 7823) | def CreateAccelerationsAttr(self, defaultValue: Any = ..., writeSparse... method CreateAngularVelocitiesAttr (line 7833) | def CreateAngularVelocitiesAttr(self, defaultValue: Any = ..., writeSp... method CreateIdsAttr (line 7843) | def CreateIdsAttr(self, defaultValue: Any = ..., writeSparsely: bool =... method CreateInvisibleIdsAttr (line 7853) | def CreateInvisibleIdsAttr(self, defaultValue: Any = ..., writeSparsel... method CreateOrientationsAttr (line 7863) | def CreateOrientationsAttr(self, defaultValue: Any = ..., writeSparsel... method CreateOrientationsfAttr (line 7873) | def CreateOrientationsfAttr(self, defaultValue: Any = ..., writeSparse... method CreatePositionsAttr (line 7883) | def CreatePositionsAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateProtoIndicesAttr (line 7893) | def CreateProtoIndicesAttr(self, defaultValue: Any = ..., writeSparsel... method CreatePrototypesRel (line 7903) | def CreatePrototypesRel(self) -> pxr.Usd.Relationship: method CreateScalesAttr (line 7908) | def CreateScalesAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateVelocitiesAttr (line 7918) | def CreateVelocitiesAttr(self, defaultValue: Any = ..., writeSparsely:... method DeactivateId (line 7928) | def DeactivateId(self, id: int) -> bool: method DeactivateIds (line 7939) | def DeactivateIds(self, ids: pxr.Vt.Int64Array | typing.Iterable[int])... method Define (line 7951) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 7977) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAccelerationsAttr (line 7990) | def GetAccelerationsAttr(self) -> pxr.Usd.Attribute: method GetAngularVelocitiesAttr (line 8013) | def GetAngularVelocitiesAttr(self) -> pxr.Usd.Attribute: method GetIdsAttr (line 8038) | def GetIdsAttr(self) -> pxr.Usd.Attribute: method GetInstanceCount (line 8061) | def GetInstanceCount(self, timeCode: pxr.Usd.TimeCode | float | pxr.Sd... method GetInvisibleIdsAttr (line 8075) | def GetInvisibleIdsAttr(self) -> pxr.Usd.Attribute: method GetOrientationsAttr (line 8094) | def GetOrientationsAttr(self) -> pxr.Usd.Attribute: method GetOrientationsfAttr (line 8122) | def GetOrientationsfAttr(self) -> pxr.Usd.Attribute: method GetPositionsAttr (line 8153) | def GetPositionsAttr(self) -> pxr.Usd.Attribute: method GetProtoIndicesAttr (line 8172) | def GetProtoIndicesAttr(self) -> pxr.Usd.Attribute: method GetPrototypesRel (line 8193) | def GetPrototypesRel(self) -> pxr.Usd.Relationship: method GetScalesAttr (line 8206) | def GetScalesAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 8227) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetVelocitiesAttr (line 8236) | def GetVelocitiesAttr(self) -> pxr.Usd.Attribute: method InvisId (line 8263) | def InvisId(self, id: int, time: pxr.Usd.TimeCode | float | pxr.Sdf.Ti... method InvisIds (line 8276) | def InvisIds(self, ids: pxr.Vt.Int64Array | typing.Iterable[int], time... method VisAllIds (line 8290) | def VisAllIds(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode)... method VisId (line 8301) | def VisId(self, id: int, time: pxr.Usd.TimeCode | float | pxr.Sdf.Time... method VisIds (line 8316) | def VisIds(self, ids: pxr.Vt.Int64Array | typing.Iterable[int], time: ... method _GetStaticTfType (line 8332) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 8333) | def __bool__(self) -> bool: ... class Points (line 8335) | class Points(PointBased): method __init__ (line 8352) | def __init__(self) -> None: ... method __init__ (line 8354) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 8364) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeExtent (line 8373) | def ComputeExtent(points: pxr.Vt.Vec3fArray | typing.Iterable[list[flo... method CreateIdsAttr (line 8387) | def CreateIdsAttr(self, defaultValue: Any = ..., writeSparsely: bool =... method CreateWidthsAttr (line 8397) | def CreateWidthsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 8408) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 8434) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetIdsAttr (line 8447) | def GetIdsAttr(self) -> pxr.Usd.Attribute: method GetPointCount (line 8469) | def GetPointCount(self, timeCode: pxr.Usd.TimeCode | float | pxr.Sdf.T... method GetSchemaAttributeNames (line 8484) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetWidthsAttr (line 8493) | def GetWidthsAttr(self) -> pxr.Usd.Attribute: method GetWidthsInterpolation (line 8515) | def GetWidthsInterpolation(self) -> str: method SetWidthsInterpolation (line 8527) | def SetWidthsInterpolation(self, interpolation: str | pxr.Ar.ResolvedP... method _GetStaticTfType (line 8542) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 8543) | def __bool__(self) -> bool: ... class Primvar (line 8545) | class Primvar(Boost.Python.instance): method __init__ (line 8771) | def __init__(self) -> None: ... method __init__ (line 8773) | def __init__(self, attr: pxr.Usd.Attribute | ConstraintTarget | Primva... method BlockIndices (line 8787) | def BlockIndices(self) -> None: method ComputeFlattened (line 8795) | def ComputeFlattened(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.Ti... method CreateIndicesAttr (line 8796) | def CreateIndicesAttr(self) -> pxr.Usd.Attribute: method Get (line 8801) | def Get(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode = ...)... method GetAttr (line 8809) | def GetAttr(self) -> pxr.Usd.Attribute: method GetBaseName (line 8813) | def GetBaseName(self) -> str: method GetDeclarationInfo (line 8818) | def GetDeclarationInfo(self) -> tuple: method GetElementSize (line 8829) | def GetElementSize(self) -> int: method GetIndices (line 8853) | def GetIndices(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode... method GetIndicesAttr (line 8862) | def GetIndicesAttr(self) -> pxr.Usd.Attribute: method GetInterpolation (line 8869) | def GetInterpolation(self) -> str: method GetName (line 8878) | def GetName(self) -> str: method GetNamespace (line 8883) | def GetNamespace(self) -> str: method GetPrimvarName (line 8888) | def GetPrimvarName(self) -> str: method GetTimeSamples (line 8899) | def GetTimeSamples(self) -> list[float]: method GetTimeSamplesInInterval (line 8911) | def GetTimeSamplesInInterval(self, _interval: pxr.Gf.Interval, /) -> l... method GetTypeName (line 8921) | def GetTypeName(self) -> pxr.Sdf.ValueTypeName: method GetUnauthoredValuesIndex (line 8926) | def GetUnauthoredValuesIndex(self) -> int: method HasAuthoredElementSize (line 8935) | def HasAuthoredElementSize(self) -> bool: method HasAuthoredInterpolation (line 8943) | def HasAuthoredInterpolation(self) -> bool: method HasAuthoredValue (line 8951) | def HasAuthoredValue(self) -> bool: method HasValue (line 8956) | def HasValue(self) -> bool: method IsDefined (line 8961) | def IsDefined(self) -> bool: method IsIdTarget (line 8969) | def IsIdTarget(self) -> bool: method IsIndexed (line 8977) | def IsIndexed(self) -> bool: method IsPrimvar (line 8988) | def IsPrimvar(attr: pxr.Usd.Attribute | ConstraintTarget | Primvar | X... method IsValidInterpolation (line 8998) | def IsValidInterpolation(interpolation: str | pxr.Ar.ResolvedPath) -> ... method IsValidPrimvarName (line 9007) | def IsValidPrimvarName(name: str | pxr.Ar.ResolvedPath) -> bool: method NameContainsNamespaces (line 9013) | def NameContainsNamespaces(self) -> bool: method Set (line 9023) | def Set(self, value: Any, time: pxr.Usd.TimeCode | float | pxr.Sdf.Tim... method SetElementSize (line 9027) | def SetElementSize(self, eltSize: int) -> bool: method SetIdTarget (line 9036) | def SetIdTarget(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str,... method SetIndices (line 9046) | def SetIndices(self, indices: pxr.Vt.IntArray | typing.Iterable[int], ... method SetInterpolation (line 9056) | def SetInterpolation(self, interpolation: str | pxr.Ar.ResolvedPath) -... method SetUnauthoredValuesIndex (line 9068) | def SetUnauthoredValuesIndex(self, unauthoredValuesIndex: int) -> bool: method SplitName (line 9084) | def SplitName(self) -> list[str]: method StripPrimvarsName (line 9090) | def StripPrimvarsName(name: str | pxr.Ar.ResolvedPath) -> str: method ValueMightBeTimeVarying (line 9095) | def ValueMightBeTimeVarying(self) -> bool: method __bool__ (line 9106) | def __bool__(self) -> bool: method __eq__ (line 9111) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 9112) | def __hash__(self) -> int: ... method __ne__ (line 9113) | def __ne__(self, other: object) -> bool: ... class PrimvarsAPI (line 9115) | class PrimvarsAPI(pxr.Usd.APISchemaBase): method __init__ (line 9153) | def __init__(self) -> None: ... method __init__ (line 9155) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 9165) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method BlockPrimvar (line 9173) | def BlockPrimvar(self, name: str | pxr.Ar.ResolvedPath) -> None: method CanContainPropertyName (line 9184) | def CanContainPropertyName(name: str | pxr.Ar.ResolvedPath) -> bool: method CreateIndexedPrimvar (line 9188) | def CreateIndexedPrimvar(self, name: str | pxr.Ar.ResolvedPath, typeNa... method CreateNonIndexedPrimvar (line 9205) | def CreateNonIndexedPrimvar(self, name: str | pxr.Ar.ResolvedPath, typ... method CreatePrimvar (line 9224) | def CreatePrimvar(self, name: str | pxr.Ar.ResolvedPath, typeName: pxr... method FindIncrementallyInheritablePrimvars (line 9256) | def FindIncrementallyInheritablePrimvars(self, inheritedFromAncestors:... method FindInheritablePrimvars (line 9280) | def FindInheritablePrimvars(self) -> list[Primvar]: method FindPrimvarWithInheritance (line 9301) | def FindPrimvarWithInheritance(self, name: str | pxr.Ar.ResolvedPath) ... method FindPrimvarWithInheritance (line 9320) | def FindPrimvarWithInheritance(self, name: str | pxr.Ar.ResolvedPath, ... method FindPrimvarsWithInheritance (line 9335) | def FindPrimvarsWithInheritance(self) -> list[Primvar]: method FindPrimvarsWithInheritance (line 9345) | def FindPrimvarsWithInheritance(self, inheritedFromAncestors: typing.I... method Get (line 9360) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAuthoredPrimvars (line 9373) | def GetAuthoredPrimvars(self) -> list[Primvar]: method GetPrimvar (line 9382) | def GetPrimvar(self, name: str | pxr.Ar.ResolvedPath) -> Primvar: method GetPrimvars (line 9402) | def GetPrimvars(self) -> list[Primvar]: method GetPrimvarsWithAuthoredValues (line 9415) | def GetPrimvarsWithAuthoredValues(self) -> list[Primvar]: method GetPrimvarsWithValues (line 9426) | def GetPrimvarsWithValues(self) -> list[Primvar]: method GetSchemaAttributeNames (line 9437) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method HasPossiblyInheritedPrimvar (line 9446) | def HasPossiblyInheritedPrimvar(self, name: str | pxr.Ar.ResolvedPath)... method HasPrimvar (line 9457) | def HasPrimvar(self, name: str | pxr.Ar.ResolvedPath) -> bool: method RemovePrimvar (line 9467) | def RemovePrimvar(self, name: str | pxr.Ar.ResolvedPath) -> bool: method _GetStaticTfType (line 9493) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 9494) | def __bool__(self) -> bool: ... class Scope (line 9496) | class Scope(Imageable): method __init__ (line 9507) | def __init__(self) -> None: ... method __init__ (line 9509) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 9519) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 9528) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 9554) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 9568) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 9578) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 9579) | def __bool__(self) -> bool: ... class Sphere (line 9581) | class Sphere(Gprim): method __init__ (line 9591) | def __init__(self) -> None: ... method __init__ (line 9593) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 9603) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateExtentAttr (line 9611) | def CreateExtentAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusAttr (line 9621) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 9632) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 9658) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetExtentAttr (line 9671) | def GetExtentAttr(self) -> pxr.Usd.Attribute: method GetRadiusAttr (line 9691) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 9713) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 9723) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 9724) | def __bool__(self) -> bool: ... class Subset (line 9726) | class Subset(pxr.Usd.Typed): method __init__ (line 9757) | def __init__(self) -> None: ... method __init__ (line 9759) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 9769) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateElementTypeAttr (line 9777) | def CreateElementTypeAttr(self, defaultValue: Any = ..., writeSparsely... method CreateFamilyNameAttr (line 9787) | def CreateFamilyNameAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateGeomSubset (line 9798) | def CreateGeomSubset(geom: Imageable, subsetName: str | pxr.Ar.Resolve... method CreateIndicesAttr (line 9811) | def CreateIndicesAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateUniqueGeomSubset (line 9822) | def CreateUniqueGeomSubset(geom: Imageable, subsetName: str | pxr.Ar.R... method Define (line 9837) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 9863) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAllGeomSubsetFamilyNames (line 9877) | def GetAllGeomSubsetFamilyNames(geom: Imageable) -> list: method GetAllGeomSubsets (line 9883) | def GetAllGeomSubsets(geom: Imageable) -> list[Subset]: method GetElementTypeAttr (line 9887) | def GetElementTypeAttr(self) -> pxr.Usd.Attribute: method GetFamilyNameAttr (line 9935) | def GetFamilyNameAttr(self) -> pxr.Usd.Attribute: method GetFamilyType (line 9981) | def GetFamilyType(geom: Imageable, familyName: str | pxr.Ar.ResolvedPa... method GetGeomSubsets (line 9995) | def GetGeomSubsets(geom: Imageable, elementType: str | pxr.Ar.Resolved... method GetIndicesAttr (line 10005) | def GetIndicesAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 10027) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetUnassignedIndices (line 10038) | def GetUnassignedIndices(geom: Imageable, elementType: str | pxr.Ar.Re... method GetUnassignedIndices (line 10056) | def GetUnassignedIndices(subsets: typing.Iterable[Subset], elementCoun... method SetFamilyType (line 10067) | def SetFamilyType(geom: Imageable, familyName: str | pxr.Ar.ResolvedPa... method ValidateFamily (line 10087) | def ValidateFamily(geom: Imageable, elementType: str | pxr.Ar.Resolved... method ValidateSubsets (line 10107) | def ValidateSubsets(subsets: typing.Iterable[Subset], elementCount: in... method _GetStaticTfType (line 10128) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 10129) | def __bool__(self) -> bool: ... class TetMesh (line 10131) | class TetMesh(PointBased): method __init__ (line 10148) | def __init__(self) -> None: ... method __init__ (line 10150) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 10160) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeSurfaceFaces (line 10169) | def ComputeSurfaceFaces(tetMesh: TetMesh, timeCode: pxr.Usd.TimeCode |... method CreateSurfaceFaceVertexIndicesAttr (line 10182) | def CreateSurfaceFaceVertexIndicesAttr(self, defaultValue: Any = ..., ... method CreateTetVertexIndicesAttr (line 10192) | def CreateTetVertexIndicesAttr(self, defaultValue: Any = ..., writeSpa... method Define (line 10203) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method FindInvertedElements (line 10229) | def FindInvertedElements(tetMesh: TetMesh, timeCode: pxr.Usd.TimeCode ... method Get (line 10241) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 10255) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSurfaceFaceVertexIndicesAttr (line 10264) | def GetSurfaceFaceVertexIndicesAttr(self) -> pxr.Usd.Attribute: method GetTetVertexIndicesAttr (line 10286) | def GetTetVertexIndicesAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 10322) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 10323) | def __bool__(self) -> bool: ... class Tokens (line 10325) | class Tokens(Boost.Python.instance): method __init__ (line 10527) | def __init__(self, *args, **kwargs) -> None: class VisibilityAPI (line 10532) | class VisibilityAPI(pxr.Usd.APISchemaBase): method __init__ (line 10570) | def __init__(self) -> None: ... method __init__ (line 10572) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 10582) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 10591) | def Apply(prim: pxr.Usd.Prim) -> VisibilityAPI: method CanApply (line 10614) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateGuideVisibilityAttr (line 10639) | def CreateGuideVisibilityAttr(self, defaultValue: Any = ..., writeSpar... method CreateProxyVisibilityAttr (line 10649) | def CreateProxyVisibilityAttr(self, defaultValue: Any = ..., writeSpar... method CreateRenderVisibilityAttr (line 10659) | def CreateRenderVisibilityAttr(self, defaultValue: Any = ..., writeSpa... method Get (line 10670) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetGuideVisibilityAttr (line 10683) | def GetGuideVisibilityAttr(self) -> pxr.Usd.Attribute: method GetProxyVisibilityAttr (line 10723) | def GetProxyVisibilityAttr(self) -> pxr.Usd.Attribute: method GetPurposeVisibilityAttr (line 10766) | def GetPurposeVisibilityAttr(self, purpose: str | pxr.Ar.ResolvedPath)... method GetRenderVisibilityAttr (line 10782) | def GetRenderVisibilityAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 10827) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 10837) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 10838) | def __bool__(self) -> bool: ... class Xform (line 10840) | class Xform(Xformable): method __init__ (line 10846) | def __init__(self) -> None: ... method __init__ (line 10848) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 10858) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 10867) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 10893) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 10907) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 10917) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 10918) | def __bool__(self) -> bool: ... class XformCache (line 10920) | class XformCache(Boost.Python.instance): method __init__ (line 10942) | def __init__(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode) ... method __init__ (line 10947) | def __init__(self) -> None: method Clear (line 10951) | def Clear(self) -> None: method ComputeRelativeTransform (line 10955) | def ComputeRelativeTransform(self, prim: pxr.Usd.Prim, ancestor: pxr.U... method GetLocalToWorldTransform (line 10969) | def GetLocalToWorldTransform(self, prim: pxr.Usd.Prim) -> pxr.Gf.Matri... method GetLocalTransformation (line 10978) | def GetLocalTransformation(self, prim: pxr.Usd.Prim) -> tuple: method GetParentToWorldTransform (line 10987) | def GetParentToWorldTransform(self, prim: pxr.Usd.Prim) -> pxr.Gf.Matr... method GetTime (line 10996) | def GetTime(self) -> pxr.Usd.TimeCode: method SetTime (line 11000) | def SetTime(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode) -... method Swap (line 11008) | def Swap(self, other: XformCache) -> None: class XformCommonAPI (line 11013) | class XformCommonAPI(pxr.Usd.APISchemaBase): class OpFlags (line 11048) | class OpFlags(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 11051) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 11056) | def GetValueFromName(name: object) -> Any: ... class RotationOrder (line 11058) | class RotationOrder(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 11061) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 11066) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 11079) | def __init__(self) -> None: ... method __init__ (line 11081) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 11091) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CanConvertOpTypeToRotationOrder (line 11100) | def CanConvertOpTypeToRotationOrder(opType: XformOp.Type) -> bool: method ConvertOpTypeToRotationOrder (line 11107) | def ConvertOpTypeToRotationOrder(opType: XformOp.Type) -> XformCommonA... method ConvertRotationOrderToOpType (line 11119) | def ConvertRotationOrderToOpType(rotationOrder: XformCommonAPI.Rotatio... method CreateXformOps (line 11130) | def CreateXformOps(self, rotationOrder: XformCommonAPI.RotationOrder, ... method CreateXformOps (line 11146) | def CreateXformOps(self, op1: XformCommonAPI.OpFlags = ..., op2: Xform... method Get (line 11159) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetResetXformStack (line 11172) | def GetResetXformStack(self) -> bool: method GetRotationTransform (line 11180) | def GetRotationTransform(rotation: pxr.Gf.Vec3f | list[float] | tuple[... method GetSchemaAttributeNames (line 11192) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetXformVectors (line 11201) | def GetXformVectors(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.Tim... method GetXformVectorsByAccumulation (line 11214) | def GetXformVectorsByAccumulation(self, time: pxr.Usd.TimeCode | float... method SetPivot (line 11234) | def SetPivot(self, pivot: pxr.Gf.Vec3f | list[float] | tuple[float, fl... method SetResetXformStack (line 11238) | def SetResetXformStack(self, resetXformStack: bool) -> bool: method SetRotate (line 11245) | def SetRotate(self, rotation: pxr.Gf.Vec3f | list[float] | tuple[float... method SetScale (line 11249) | def SetScale(self, scale: pxr.Gf.Vec3f | list[float] | tuple[float, fl... method SetTranslate (line 11253) | def SetTranslate(self, translation: pxr.Gf.Vec3d | list[float] | tuple... method SetXformVectors (line 11257) | def SetXformVectors(self, translation: pxr.Gf.Vec3d | list[float] | tu... method _GetStaticTfType (line 11273) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 11274) | def __bool__(self) -> bool: ... class XformOp (line 11276) | class XformOp(Boost.Python.instance): class Precision (line 11300) | class Precision(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 11303) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 11308) | def GetValueFromName(name: object) -> Any: ... class Type (line 11310) | class Type(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 11313) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 11318) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 11338) | def __init__(self) -> None: ... method __init__ (line 11340) | def __init__(self, attr: pxr.Usd.Attribute | ConstraintTarget | Primva... method Get (line 11360) | def Get(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode = ...)... method GetAttr (line 11368) | def GetAttr(self) -> pxr.Usd.Attribute: method GetBaseName (line 11372) | def GetBaseName(self) -> str: method GetName (line 11377) | def GetName(self) -> str: method GetNamespace (line 11382) | def GetNamespace(self) -> str: method GetNumTimeSamples (line 11387) | def GetNumTimeSamples(self) -> int: method GetOpName (line 11391) | def GetOpName(self) -> str: method GetOpTransform (line 11402) | def GetOpTransform(self, _time: pxr.Usd.TimeCode | float | pxr.Sdf.Tim... method GetOpType (line 11414) | def GetOpType(self) -> pxr.Tf.Type: method GetOpTypeEnum (line 11419) | def GetOpTypeEnum(_opTypeToken: str | pxr.Ar.ResolvedPath, /) -> pxr.T... method GetOpTypeToken (line 11424) | def GetOpTypeToken(_opType: pxr.Tf.Type | type[pxr.Usd.SchemaBase], /)... method GetPrecision (line 11431) | def GetPrecision(self) -> XformOp.Precision: method GetTimeSamples (line 11435) | def GetTimeSamples(self) -> list[float]: method GetTimeSamplesInInterval (line 11440) | def GetTimeSamplesInInterval(self, _interval: pxr.Gf.Interval, /) -> l... method GetTypeName (line 11445) | def GetTypeName(self) -> pxr.Sdf.ValueTypeName: method IsDefined (line 11450) | def IsDefined(self) -> bool: method IsInverseOp (line 11455) | def IsInverseOp(self) -> bool: method MightBeTimeVarying (line 11459) | def MightBeTimeVarying(self) -> bool: method Set (line 11468) | def Set(self, value: Any, time: pxr.Usd.TimeCode | float | pxr.Sdf.Tim... method SplitName (line 11477) | def SplitName(self) -> list[str]: method __bool__ (line 11482) | def __bool__(self) -> bool: method __eq__ (line 11491) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 11492) | def __ne__(self, other: object) -> bool: ... class XformOpTypes (line 11494) | class XformOpTypes(Boost.Python.instance): method __init__ (line 11509) | def __init__(self, *args, **kwargs) -> None: class Xformable (line 11514) | class Xformable(Imageable): method __init__ (line 11798) | def __init__(self) -> None: ... method __init__ (line 11800) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 11810) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method AddOrientOp (line 11818) | def AddOrientOp(self, precision: XformOp.Precision = ..., opSuffix: st... method AddRotateXOp (line 11827) | def AddRotateXOp(self, precision: XformOp.Precision = ..., opSuffix: s... method AddRotateXYZOp (line 11837) | def AddRotateXYZOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddRotateXZYOp (line 11847) | def AddRotateXZYOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddRotateYOp (line 11857) | def AddRotateYOp(self, precision: XformOp.Precision = ..., opSuffix: s... method AddRotateYXZOp (line 11867) | def AddRotateYXZOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddRotateYZXOp (line 11877) | def AddRotateYZXOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddRotateZOp (line 11887) | def AddRotateZOp(self, precision: XformOp.Precision = ..., opSuffix: s... method AddRotateZXYOp (line 11896) | def AddRotateZXYOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddRotateZYXOp (line 11906) | def AddRotateZYXOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddScaleOp (line 11916) | def AddScaleOp(self, precision: XformOp.Precision = ..., opSuffix: str... method AddTransformOp (line 11925) | def AddTransformOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddTranslateOp (line 11937) | def AddTranslateOp(self, precision: XformOp.Precision = ..., opSuffix:... method AddXformOp (line 11946) | def AddXformOp(self, opType: XformOp.Type, precision: XformOp.Precisio... method ClearXformOpOrder (line 11989) | def ClearXformOpOrder(self) -> bool: method CreateXformOpOrderAttr (line 11993) | def CreateXformOpOrderAttr(self, defaultValue: Any = ..., writeSparsel... method Get (line 12004) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetLocalTransformation (line 12018) | def GetLocalTransformation(self, time: pxr.Usd.TimeCode | float | pxr.... method GetLocalTransformation (line 12046) | def GetLocalTransformation(self, ops: typing.Iterable[XformOp], time: ... method GetOrderedXformOps (line 12075) | def GetOrderedXformOps(self) -> list: method GetOrientOp (line 12098) | def GetOrientOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., isInv... method GetResetXformStack (line 12107) | def GetResetXformStack(self) -> bool: method GetRotateXOp (line 12116) | def GetRotateXOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., isIn... method GetRotateXYZOp (line 12125) | def GetRotateXYZOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetRotateXZYOp (line 12134) | def GetRotateXZYOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetRotateYOp (line 12143) | def GetRotateYOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., isIn... method GetRotateYXZOp (line 12152) | def GetRotateYXZOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetRotateYZXOp (line 12161) | def GetRotateYZXOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetRotateZOp (line 12170) | def GetRotateZOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., isIn... method GetRotateZXYOp (line 12179) | def GetRotateZXYOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetRotateZYXOp (line 12188) | def GetRotateZYXOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetScaleOp (line 12197) | def GetScaleOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., isInve... method GetSchemaAttributeNames (line 12207) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTimeSamples (line 12216) | def GetTimeSamples(self) -> list[float]: method GetTimeSamplesInInterval (line 12227) | def GetTimeSamplesInInterval(self, _interval: pxr.Gf.Interval, /) -> l... method GetTransformOp (line 12239) | def GetTransformOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetTranslateOp (line 12248) | def GetTranslateOp(self, opSuffix: str | pxr.Ar.ResolvedPath = ..., is... method GetXformOp (line 12257) | def GetXformOp(self, opType: XformOp.Type, opSuffix: str | pxr.Ar.Reso... method GetXformOpOrderAttr (line 12282) | def GetXformOpOrderAttr(self) -> pxr.Usd.Attribute: method IsTransformationAffectedByAttrNamed (line 12312) | def IsTransformationAffectedByAttrNamed(_attrName: str | pxr.Ar.Resolv... method MakeMatrixXform (line 12317) | def MakeMatrixXform(self) -> XformOp: method SetResetXformStack (line 12330) | def SetResetXformStack(self, resetXform: bool) -> bool: method SetXformOpOrder (line 12344) | def SetXformOpOrder(self, orderedXformOps: typing.Iterable[XformOp], r... method TransformMightBeTimeVarying (line 12371) | def TransformMightBeTimeVarying(self) -> bool: method TransformMightBeTimeVarying (line 12382) | def TransformMightBeTimeVarying(self, _ops: typing.Iterable[XformOp], ... method _GetStaticTfType (line 12396) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 12397) | def __bool__(self) -> bool: ... class _CanApplyResult (line 12399) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 12401) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 12402) | def __bool__(self) -> bool: ... method __eq__ (line 12403) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 12404) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 12405) | def __ne__(self, other: object) -> bool: ... method whyNot (line 12407) | def whyNot(self): ... function GetFallbackUpAxis (line 12409) | def GetFallbackUpAxis() -> str: function GetStageMetersPerUnit (line 12427) | def GetStageMetersPerUnit(stage: pxr.Usd.Stage) -> float: function GetStageUpAxis (line 12435) | def GetStageUpAxis(stage: pxr.Usd.Stage) -> str: function LinearUnitsAre (line 12449) | def LinearUnitsAre(authoredUnits: float, standardUnits: float, epsilon: ... function SetStageMetersPerUnit (line 12471) | def SetStageMetersPerUnit(stage: pxr.Usd.Stage, metersPerUnit: float) ->... function SetStageUpAxis (line 12482) | def SetStageUpAxis(stage: pxr.Usd.Stage, upAxis: str | pxr.Ar.ResolvedPa... function StageHasAuthoredMetersPerUnit (line 12496) | def StageHasAuthoredMetersPerUnit(stage: pxr.Usd.Stage) -> bool: FILE: usd/stubs/pxr-stubs/UsdHydra/__init__.pyi class GenerativeProceduralAPI (line 10) | class GenerativeProceduralAPI(pxr.Usd.APISchemaBase): method __init__ (line 24) | def __init__(self) -> None: ... method __init__ (line 26) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 36) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 46) | def Apply(prim: pxr.Usd.Prim) -> GenerativeProceduralAPI: method CanApply (line 70) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateProceduralSystemAttr (line 95) | def CreateProceduralSystemAttr(self, defaultValue: Any = ..., writeSpa... method CreateProceduralTypeAttr (line 105) | def CreateProceduralTypeAttr(self, defaultValue: Any = ..., writeSpars... method Get (line 116) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetProceduralSystemAttr (line 129) | def GetProceduralSystemAttr(self) -> pxr.Usd.Attribute: method GetProceduralTypeAttr (line 153) | def GetProceduralTypeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 173) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 183) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 184) | def __bool__(self) -> bool: ... class Tokens (line 186) | class Tokens(Boost.Python.instance): method __init__ (line 217) | def __init__(self, *args, **kwargs) -> None: class _CanApplyResult (line 222) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 224) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 225) | def __bool__(self) -> bool: ... method __eq__ (line 226) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 227) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 228) | def __ne__(self, other: object) -> bool: ... method whyNot (line 230) | def whyNot(self): ... FILE: usd/stubs/pxr-stubs/UsdImagingGL/__init__.pyi class CullStyle (line 15) | class CullStyle(Boost.Python.enum): class DrawMode (line 23) | class DrawMode(Boost.Python.enum): class Engine (line 35) | class Engine(Boost.Python.instance): class Parameters (line 41) | class Parameters(Boost.Python.instance): method __init__ (line 54) | def __init__(self) -> None: ... method __init__ (line 57) | def __init__(self, _params: Engine.Parameters, /) -> None: ... method __init__ (line 59) | def __init__(self, _driver: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str, ... method __init__ (line 74) | def __init__(self) -> None: ... method AddSelected (line 75) | def AddSelected(self, _path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str,... method ClearSelected (line 84) | def ClearSelected(self) -> None: method GetAvailableRenderSettingsPrimPaths (line 90) | def GetAvailableRenderSettingsPrimPaths(_root: pxr.Usd.Prim, /) -> lis... method GetCurrentRendererId (line 94) | def GetCurrentRendererId(self) -> str: method GetRenderStats (line 98) | def GetRenderStats(self) -> dict: method GetRendererAovs (line 106) | def GetRendererAovs(self) -> list[str]: method GetRendererCommandDescriptors (line 110) | def GetRendererCommandDescriptors(self) -> list: method GetRendererDisplayName (line 116) | def GetRendererDisplayName(_id: str | pxr.Ar.ResolvedPath, /) -> str: method GetRendererPlugins (line 121) | def GetRendererPlugins() -> list[str]: method GetRendererSetting (line 125) | def GetRendererSetting(self, _id: str | pxr.Ar.ResolvedPath, /) -> Any: method GetRendererSettingsList (line 129) | def GetRendererSettingsList(self) -> list: method InvokeRendererCommand (line 133) | def InvokeRendererCommand(self, command: str | pxr.Ar.ResolvedPath, ar... method IsColorCorrectionCapable (line 143) | def IsColorCorrectionCapable() -> bool: method IsConverged (line 147) | def IsConverged(self) -> bool: method IsPauseRendererSupported (line 155) | def IsPauseRendererSupported(self) -> bool: method IsStopRendererSupported (line 159) | def IsStopRendererSupported(self) -> bool: method PauseRenderer (line 163) | def PauseRenderer(self) -> bool: method PollForAsynchronousUpdates (line 170) | def PollForAsynchronousUpdates(self) -> bool: method Render (line 180) | def Render(self, _root: pxr.Usd.Prim, _params: RenderParams, /) -> None: method RestartRenderer (line 184) | def RestartRenderer(self) -> bool: method ResumeRenderer (line 191) | def ResumeRenderer(self) -> bool: method SetActiveRenderSettingsPrimPath (line 198) | def SetActiveRenderSettingsPrimPath(self, _unknownArg1: pxr.Sdf.Path |... method SetCameraPath (line 202) | def SetCameraPath(self, _id: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str,... method SetCameraState (line 206) | def SetCameraState(self, _viewMatrix: pxr.Gf.Matrix4d, _projectionMatr... method SetColorCorrectionSettings (line 215) | def SetColorCorrectionSettings(self, _ccType: str | pxr.Ar.ResolvedPat... method SetFraming (line 231) | def SetFraming(self, _framing: pxr.CameraUtil.Framing, /) -> None: method SetLightingState (line 237) | def SetLightingState(self, _lights: list[pxr.Glf.SimpleLight], _materi... method SetOverrideWindowPolicy (line 247) | def SetOverrideWindowPolicy(self, _policy: pxr.CameraUtil.ConformWindo... method SetRenderBufferSize (line 259) | def SetRenderBufferSize(self, _size: pxr.Gf.Vec2i | list[int] | pxr.Gf... method SetRenderViewport (line 266) | def SetRenderViewport(self, _viewport: pxr.Gf.Vec4d | list[float] | tu... method SetRendererAov (line 277) | def SetRendererAov(self, _id: str | pxr.Ar.ResolvedPath, /) -> bool: method SetRendererPlugin (line 281) | def SetRendererPlugin(self, _id: str | pxr.Ar.ResolvedPath, /) -> bool: method SetRendererSetting (line 288) | def SetRendererSetting(self, _id: str | pxr.Ar.ResolvedPath, _value: A... method SetSelected (line 292) | def SetSelected(self, _paths: typing.Iterable[pxr.Sdf.Path | pxr.Ar.Re... method SetSelectionColor (line 300) | def SetSelectionColor(self, _color: pxr.Gf.Vec4f | list[float] | tuple... method SetWindowPolicy (line 304) | def SetWindowPolicy(self, _policy: pxr.CameraUtil.ConformWindowPolicy,... method StopRenderer (line 312) | def StopRenderer(self) -> bool: method TestIntersection (line 319) | def TestIntersection(self, _viewMatrix: pxr.Gf.Matrix4d, _projectionMa... class RenderParams (line 340) | class RenderParams(Boost.Python.instance): method __init__ (line 374) | def __init__(self) -> None: ... class RendererCommandArgDescriptor (line 376) | class RendererCommandArgDescriptor(Boost.Python.instance): method __init__ (line 378) | def __init__(self, *args, **kwargs) -> None: method argName (line 383) | def argName(self): ... method defaultValue (line 385) | def defaultValue(self): ... class RendererCommandDescriptor (line 387) | class RendererCommandDescriptor(Boost.Python.instance): method __init__ (line 389) | def __init__(self, *args, **kwargs) -> None: method commandArgs (line 394) | def commandArgs(self): ... method commandDescription (line 396) | def commandDescription(self): ... method commandName (line 398) | def commandName(self): ... class RendererSetting (line 400) | class RendererSetting(Boost.Python.instance): method __init__ (line 402) | def __init__(self) -> None: ... method defValue (line 404) | def defValue(self): ... method key (line 406) | def key(self): ... method name (line 408) | def name(self): ... method type (line 410) | def type(self): ... class RendererSettingType (line 412) | class RendererSettingType(Boost.Python.enum): FILE: usd/stubs/pxr-stubs/UsdLux/__init__.pyi class BoundableLightBase (line 14) | class BoundableLightBase(pxr.UsdGeom.Boundable): method __init__ (line 24) | def __init__(self) -> None: ... method __init__ (line 26) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 36) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateColorAttr (line 44) | def CreateColorAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateColorTemperatureAttr (line 48) | def CreateColorTemperatureAttr(self, defaultValue: Any = ..., writeSpa... method CreateDiffuseAttr (line 52) | def CreateDiffuseAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateEnableColorTemperatureAttr (line 56) | def CreateEnableColorTemperatureAttr(self, defaultValue: Any = ..., wr... method CreateExposureAttr (line 60) | def CreateExposureAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateFiltersRel (line 64) | def CreateFiltersRel(self) -> pxr.Usd.Relationship: method CreateIntensityAttr (line 68) | def CreateIntensityAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateNormalizeAttr (line 72) | def CreateNormalizeAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateSpecularAttr (line 76) | def CreateSpecularAttr(self, defaultValue: Any = ..., writeSparsely: b... method Get (line 81) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetColorAttr (line 94) | def GetColorAttr(self) -> pxr.Usd.Attribute: method GetColorTemperatureAttr (line 98) | def GetColorTemperatureAttr(self) -> pxr.Usd.Attribute: method GetDiffuseAttr (line 102) | def GetDiffuseAttr(self) -> pxr.Usd.Attribute: method GetEnableColorTemperatureAttr (line 106) | def GetEnableColorTemperatureAttr(self) -> pxr.Usd.Attribute: method GetExposureAttr (line 110) | def GetExposureAttr(self) -> pxr.Usd.Attribute: method GetFiltersRel (line 114) | def GetFiltersRel(self) -> pxr.Usd.Relationship: method GetIntensityAttr (line 118) | def GetIntensityAttr(self) -> pxr.Usd.Attribute: method GetNormalizeAttr (line 122) | def GetNormalizeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 127) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSpecularAttr (line 136) | def GetSpecularAttr(self) -> pxr.Usd.Attribute: method LightAPI (line 140) | def LightAPI(self) -> LightAPI: method _GetStaticTfType (line 145) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 146) | def __bool__(self) -> bool: ... class CylinderLight (line 148) | class CylinderLight(BoundableLightBase): method __init__ (line 158) | def __init__(self) -> None: ... method __init__ (line 160) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 170) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateLengthAttr (line 178) | def CreateLengthAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRadiusAttr (line 188) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateTreatAsLineAttr (line 198) | def CreateTreatAsLineAttr(self, defaultValue: Any = ..., writeSparsely... method Define (line 209) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 235) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetLengthAttr (line 248) | def GetLengthAttr(self) -> pxr.Usd.Attribute: method GetRadiusAttr (line 266) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 285) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTreatAsLineAttr (line 294) | def GetTreatAsLineAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 316) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 317) | def __bool__(self) -> bool: ... class DiskLight (line 319) | class DiskLight(BoundableLightBase): method __init__ (line 329) | def __init__(self) -> None: ... method __init__ (line 331) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 341) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateRadiusAttr (line 349) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Define (line 360) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 386) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetRadiusAttr (line 399) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 418) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 428) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 429) | def __bool__(self) -> bool: ... class DistantLight (line 431) | class DistantLight(NonboundableLightBase): method __init__ (line 440) | def __init__(self) -> None: ... method __init__ (line 442) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 452) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAngleAttr (line 460) | def CreateAngleAttr(self, defaultValue: Any = ..., writeSparsely: bool... method Define (line 471) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 497) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAngleAttr (line 510) | def GetAngleAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 532) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 542) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 543) | def __bool__(self) -> bool: ... class DomeLight (line 545) | class DomeLight(NonboundableLightBase): method __init__ (line 580) | def __init__(self) -> None: ... method __init__ (line 582) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 592) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateGuideRadiusAttr (line 600) | def CreateGuideRadiusAttr(self, defaultValue: Any = ..., writeSparsely... method CreatePortalsRel (line 610) | def CreatePortalsRel(self) -> pxr.Usd.Relationship: method CreateTextureFileAttr (line 615) | def CreateTextureFileAttr(self, defaultValue: Any = ..., writeSparsely... method CreateTextureFormatAttr (line 625) | def CreateTextureFormatAttr(self, defaultValue: Any = ..., writeSparse... method Define (line 636) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 662) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetGuideRadiusAttr (line 675) | def GetGuideRadiusAttr(self) -> pxr.Usd.Attribute: method GetPortalsRel (line 695) | def GetPortalsRel(self) -> pxr.Usd.Relationship: method GetSchemaAttributeNames (line 700) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTextureFileAttr (line 709) | def GetTextureFileAttr(self) -> pxr.Usd.Attribute: method GetTextureFormatAttr (line 728) | def GetTextureFormatAttr(self) -> pxr.Usd.Attribute: method OrientToStageUpAxis (line 765) | def OrientToStageUpAxis(self) -> None: method _GetStaticTfType (line 781) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 782) | def __bool__(self) -> bool: ... class DomeLight_1 (line 784) | class DomeLight_1(NonboundableLightBase): method __init__ (line 833) | def __init__(self) -> None: ... method __init__ (line 835) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 845) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateGuideRadiusAttr (line 853) | def CreateGuideRadiusAttr(self, defaultValue: Any = ..., writeSparsely... method CreatePoleAxisAttr (line 863) | def CreatePoleAxisAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreatePortalsRel (line 873) | def CreatePortalsRel(self) -> pxr.Usd.Relationship: method CreateTextureFileAttr (line 878) | def CreateTextureFileAttr(self, defaultValue: Any = ..., writeSparsely... method CreateTextureFormatAttr (line 888) | def CreateTextureFormatAttr(self, defaultValue: Any = ..., writeSparse... method Define (line 899) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 925) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetGuideRadiusAttr (line 938) | def GetGuideRadiusAttr(self) -> pxr.Usd.Attribute: method GetPoleAxisAttr (line 958) | def GetPoleAxisAttr(self) -> pxr.Usd.Attribute: method GetPortalsRel (line 993) | def GetPortalsRel(self) -> pxr.Usd.Relationship: method GetSchemaAttributeNames (line 998) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTextureFileAttr (line 1007) | def GetTextureFileAttr(self) -> pxr.Usd.Attribute: method GetTextureFormatAttr (line 1026) | def GetTextureFormatAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 1064) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1065) | def __bool__(self) -> bool: ... class GeometryLight (line 1067) | class GeometryLight(NonboundableLightBase): method __init__ (line 1076) | def __init__(self) -> None: ... method __init__ (line 1078) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1088) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateGeometryRel (line 1096) | def CreateGeometryRel(self) -> pxr.Usd.Relationship: method Define (line 1102) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1128) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetGeometryRel (line 1141) | def GetGeometryRel(self) -> pxr.Usd.Relationship: method GetSchemaAttributeNames (line 1146) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1156) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1157) | def __bool__(self) -> bool: ... class LightAPI (line 1159) | class LightAPI(pxr.Usd.APISchemaBase): method __init__ (line 1193) | def __init__(self) -> None: ... method __init__ (line 1195) | def __init__(self, connectable: pxr.UsdShade.ConnectableAPI) -> None: method __init__ (line 1204) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1214) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 1223) | def Apply(prim: pxr.Usd.Prim) -> LightAPI: method CanApply (line 1246) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ConnectableAPI (line 1271) | def ConnectableAPI(self) -> pxr.UsdShade.ConnectableAPI: method CreateColorAttr (line 1283) | def CreateColorAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateColorTemperatureAttr (line 1293) | def CreateColorTemperatureAttr(self, defaultValue: Any = ..., writeSpa... method CreateDiffuseAttr (line 1303) | def CreateDiffuseAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateEnableColorTemperatureAttr (line 1313) | def CreateEnableColorTemperatureAttr(self, defaultValue: Any = ..., wr... method CreateExposureAttr (line 1323) | def CreateExposureAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateFiltersRel (line 1333) | def CreateFiltersRel(self) -> pxr.Usd.Relationship: method CreateInput (line 1338) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateIntensityAttr (line 1346) | def CreateIntensityAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateMaterialSyncModeAttr (line 1356) | def CreateMaterialSyncModeAttr(self, defaultValue: Any = ..., writeSpa... method CreateNormalizeAttr (line 1366) | def CreateNormalizeAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateOutput (line 1376) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.... method CreateShaderIdAttr (line 1385) | def CreateShaderIdAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateShaderIdAttrForRenderContext (line 1395) | def CreateShaderIdAttrForRenderContext(self, renderContext: str | pxr.... method CreateSpecularAttr (line 1406) | def CreateSpecularAttr(self, defaultValue: Any = ..., writeSparsely: b... method Get (line 1417) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetColorAttr (line 1430) | def GetColorAttr(self) -> pxr.Usd.Attribute: method GetColorTemperatureAttr (line 1448) | def GetColorTemperatureAttr(self) -> pxr.Usd.Attribute: method GetDiffuseAttr (line 1471) | def GetDiffuseAttr(self) -> pxr.Usd.Attribute: method GetEnableColorTemperatureAttr (line 1491) | def GetEnableColorTemperatureAttr(self) -> pxr.Usd.Attribute: method GetExposureAttr (line 1509) | def GetExposureAttr(self) -> pxr.Usd.Attribute: method GetFiltersRel (line 1529) | def GetFiltersRel(self) -> pxr.Usd.Relationship: method GetInput (line 1533) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.In... method GetInputs (line 1537) | def GetInputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Inp... method GetIntensityAttr (line 1545) | def GetIntensityAttr(self) -> pxr.Usd.Attribute: method GetLightLinkCollectionAPI (line 1563) | def GetLightLinkCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetMaterialSyncModeAttr (line 1571) | def GetMaterialSyncModeAttr(self) -> pxr.Usd.Attribute: method GetNormalizeAttr (line 1624) | def GetNormalizeAttr(self) -> pxr.Usd.Attribute: method GetOutput (line 1645) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.O... method GetOutputs (line 1649) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Ou... method GetSchemaAttributeNames (line 1658) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetShaderId (line 1667) | def GetShaderId(self, renderContexts: list[str] | list[pxr.Ar.Resolved... method GetShaderIdAttr (line 1686) | def GetShaderIdAttr(self) -> pxr.Usd.Attribute: method GetShaderIdAttrForRenderContext (line 1724) | def GetShaderIdAttrForRenderContext(self, renderContext: str | pxr.Ar.... method GetShadowLinkCollectionAPI (line 1749) | def GetShadowLinkCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetSpecularAttr (line 1757) | def GetSpecularAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 1778) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1779) | def __bool__(self) -> bool: ... class LightFilter (line 1781) | class LightFilter(pxr.UsdGeom.Xformable): method __init__ (line 1805) | def __init__(self) -> None: ... method __init__ (line 1807) | def __init__(self, connectable: pxr.UsdShade.ConnectableAPI) -> None: method __init__ (line 1816) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1826) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ConnectableAPI (line 1834) | def ConnectableAPI(self) -> pxr.UsdShade.ConnectableAPI: method CreateInput (line 1847) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateOutput (line 1855) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.... method CreateShaderIdAttr (line 1864) | def CreateShaderIdAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateShaderIdAttrForRenderContext (line 1874) | def CreateShaderIdAttrForRenderContext(self, renderContext: str | pxr.... method Define (line 1886) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1912) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetFilterLinkCollectionAPI (line 1925) | def GetFilterLinkCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetInput (line 1933) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.In... method GetInputs (line 1937) | def GetInputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Inp... method GetOutput (line 1945) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.O... method GetOutputs (line 1949) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Ou... method GetSchemaAttributeNames (line 1958) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetShaderId (line 1967) | def GetShaderId(self, renderContexts: list[str] | list[pxr.Ar.Resolved... method GetShaderIdAttr (line 1986) | def GetShaderIdAttr(self) -> pxr.Usd.Attribute: method GetShaderIdAttrForRenderContext (line 2018) | def GetShaderIdAttrForRenderContext(self, renderContext: str | pxr.Ar.... method _GetStaticTfType (line 2045) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2046) | def __bool__(self) -> bool: ... class LightListAPI (line 2048) | class LightListAPI(pxr.Usd.APISchemaBase): class ComputeMode (line 2169) | class ComputeMode(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2172) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2177) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 2182) | def __init__(self) -> None: ... method __init__ (line 2184) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2194) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2203) | def Apply(prim: pxr.Usd.Prim) -> LightListAPI: method CanApply (line 2226) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ComputeLightList (line 2251) | def ComputeLightList(self, _mode: LightListAPI.ComputeMode, /) -> list... method CreateLightListCacheBehaviorAttr (line 2272) | def CreateLightListCacheBehaviorAttr(self, defaultValue: Any = ..., wr... method CreateLightListRel (line 2282) | def CreateLightListRel(self) -> pxr.Usd.Relationship: method Get (line 2288) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetLightListCacheBehaviorAttr (line 2301) | def GetLightListCacheBehaviorAttr(self) -> pxr.Usd.Attribute: method GetLightListRel (line 2335) | def GetLightListRel(self) -> pxr.Usd.Relationship: method GetSchemaAttributeNames (line 2340) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method InvalidateLightList (line 2349) | def InvalidateLightList(self) -> None: method StoreLightList (line 2354) | def StoreLightList(self, _unknownArg1: typing.Iterable[pxr.Sdf.Path | ... method _GetStaticTfType (line 2364) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2365) | def __bool__(self) -> bool: ... class ListAPI (line 2367) | class ListAPI(pxr.Usd.APISchemaBase): class ComputeMode (line 2379) | class ComputeMode(pxr.Tf.Tf_PyEnumWrapper): method __init__ (line 2382) | def __init__(self, *args, **kwargs) -> None: method GetValueFromName (line 2387) | def GetValueFromName(name: object) -> Any: ... method __init__ (line 2392) | def __init__(self) -> None: ... method __init__ (line 2394) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2404) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2413) | def Apply(prim: pxr.Usd.Prim) -> ListAPI: method CanApply (line 2436) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ComputeLightList (line 2461) | def ComputeLightList(self, _mode: LightListAPI.ComputeMode, /) -> list... method CreateLightListCacheBehaviorAttr (line 2482) | def CreateLightListCacheBehaviorAttr(self, defaultValue: Any = ..., wr... method CreateLightListRel (line 2492) | def CreateLightListRel(self) -> pxr.Usd.Relationship: method Get (line 2498) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetLightListCacheBehaviorAttr (line 2511) | def GetLightListCacheBehaviorAttr(self) -> pxr.Usd.Attribute: method GetLightListRel (line 2545) | def GetLightListRel(self) -> pxr.Usd.Relationship: method GetSchemaAttributeNames (line 2550) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method InvalidateLightList (line 2559) | def InvalidateLightList(self) -> None: method StoreLightList (line 2564) | def StoreLightList(self, _unknownArg1: typing.Iterable[pxr.Sdf.Path | ... method _GetStaticTfType (line 2574) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2575) | def __bool__(self) -> bool: ... class MeshLightAPI (line 2577) | class MeshLightAPI(pxr.Usd.APISchemaBase): method __init__ (line 2594) | def __init__(self) -> None: ... method __init__ (line 2596) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2606) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2615) | def Apply(prim: pxr.Usd.Prim) -> MeshLightAPI: method CanApply (line 2638) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method Get (line 2664) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 2678) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2688) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2689) | def __bool__(self) -> bool: ... class NonboundableLightBase (line 2691) | class NonboundableLightBase(pxr.UsdGeom.Xformable): method __init__ (line 2701) | def __init__(self) -> None: ... method __init__ (line 2703) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2713) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateColorAttr (line 2722) | def CreateColorAttr(self, defaultValue: Any = ..., writeSparsely: bool... method CreateColorTemperatureAttr (line 2726) | def CreateColorTemperatureAttr(self, defaultValue: Any = ..., writeSpa... method CreateDiffuseAttr (line 2730) | def CreateDiffuseAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateEnableColorTemperatureAttr (line 2734) | def CreateEnableColorTemperatureAttr(self, defaultValue: Any = ..., wr... method CreateExposureAttr (line 2738) | def CreateExposureAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateFiltersRel (line 2742) | def CreateFiltersRel(self) -> pxr.Usd.Relationship: method CreateIntensityAttr (line 2746) | def CreateIntensityAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateNormalizeAttr (line 2750) | def CreateNormalizeAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateSpecularAttr (line 2754) | def CreateSpecularAttr(self, defaultValue: Any = ..., writeSparsely: b... method Get (line 2759) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetColorAttr (line 2772) | def GetColorAttr(self) -> pxr.Usd.Attribute: method GetColorTemperatureAttr (line 2776) | def GetColorTemperatureAttr(self) -> pxr.Usd.Attribute: method GetDiffuseAttr (line 2780) | def GetDiffuseAttr(self) -> pxr.Usd.Attribute: method GetEnableColorTemperatureAttr (line 2784) | def GetEnableColorTemperatureAttr(self) -> pxr.Usd.Attribute: method GetExposureAttr (line 2788) | def GetExposureAttr(self) -> pxr.Usd.Attribute: method GetFiltersRel (line 2792) | def GetFiltersRel(self) -> pxr.Usd.Relationship: method GetIntensityAttr (line 2796) | def GetIntensityAttr(self) -> pxr.Usd.Attribute: method GetNormalizeAttr (line 2800) | def GetNormalizeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2805) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSpecularAttr (line 2814) | def GetSpecularAttr(self) -> pxr.Usd.Attribute: method LightAPI (line 2818) | def LightAPI(self) -> LightAPI: method _GetStaticTfType (line 2823) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2824) | def __bool__(self) -> bool: ... class PluginLight (line 2826) | class PluginLight(pxr.UsdGeom.Xformable): method __init__ (line 2839) | def __init__(self) -> None: ... method __init__ (line 2841) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2851) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 2860) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2886) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetNodeDefAPI (line 2899) | def GetNodeDefAPI(self) -> pxr.UsdShade.NodeDefAPI: method GetSchemaAttributeNames (line 2908) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2918) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2919) | def __bool__(self) -> bool: ... class PluginLightFilter (line 2921) | class PluginLightFilter(LightFilter): method __init__ (line 2934) | def __init__(self) -> None: ... method __init__ (line 2936) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2946) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 2955) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2981) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetNodeDefAPI (line 2994) | def GetNodeDefAPI(self) -> pxr.UsdShade.NodeDefAPI: method GetSchemaAttributeNames (line 3003) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 3013) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3014) | def __bool__(self) -> bool: ... class PortalLight (line 3016) | class PortalLight(BoundableLightBase): method __init__ (line 3027) | def __init__(self) -> None: ... method __init__ (line 3029) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3039) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateHeightAttr (line 3047) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateWidthAttr (line 3057) | def CreateWidthAttr(self, defaultValue: Any = ..., writeSparsely: bool... method Define (line 3068) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3094) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetHeightAttr (line 3107) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3126) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetWidthAttr (line 3135) | def GetWidthAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 3154) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3155) | def __bool__(self) -> bool: ... class RectLight (line 3157) | class RectLight(BoundableLightBase): method __init__ (line 3169) | def __init__(self) -> None: ... method __init__ (line 3171) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3181) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateHeightAttr (line 3189) | def CreateHeightAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateTextureFileAttr (line 3199) | def CreateTextureFileAttr(self, defaultValue: Any = ..., writeSparsely... method CreateWidthAttr (line 3209) | def CreateWidthAttr(self, defaultValue: Any = ..., writeSparsely: bool... method Define (line 3220) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3246) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetHeightAttr (line 3259) | def GetHeightAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3278) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTextureFileAttr (line 3287) | def GetTextureFileAttr(self) -> pxr.Usd.Attribute: method GetWidthAttr (line 3305) | def GetWidthAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 3324) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3325) | def __bool__(self) -> bool: ... class ShadowAPI (line 3327) | class ShadowAPI(pxr.Usd.APISchemaBase): method __init__ (line 3337) | def __init__(self) -> None: ... method __init__ (line 3339) | def __init__(self, connectable: pxr.UsdShade.ConnectableAPI) -> None: method __init__ (line 3348) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3358) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 3367) | def Apply(prim: pxr.Usd.Prim) -> ShadowAPI: method CanApply (line 3390) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ConnectableAPI (line 3415) | def ConnectableAPI(self) -> pxr.UsdShade.ConnectableAPI: method CreateInput (line 3425) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateOutput (line 3433) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.... method CreateShadowColorAttr (line 3442) | def CreateShadowColorAttr(self, defaultValue: Any = ..., writeSparsely... method CreateShadowDistanceAttr (line 3452) | def CreateShadowDistanceAttr(self, defaultValue: Any = ..., writeSpars... method CreateShadowEnableAttr (line 3462) | def CreateShadowEnableAttr(self, defaultValue: Any = ..., writeSparsel... method CreateShadowFalloffAttr (line 3472) | def CreateShadowFalloffAttr(self, defaultValue: Any = ..., writeSparse... method CreateShadowFalloffGammaAttr (line 3482) | def CreateShadowFalloffGammaAttr(self, defaultValue: Any = ..., writeS... method Get (line 3493) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetInput (line 3506) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.In... method GetInputs (line 3510) | def GetInputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Inp... method GetOutput (line 3518) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.O... method GetOutputs (line 3522) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Ou... method GetSchemaAttributeNames (line 3531) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetShadowColorAttr (line 3540) | def GetShadowColorAttr(self) -> pxr.Usd.Attribute: method GetShadowDistanceAttr (line 3559) | def GetShadowDistanceAttr(self) -> pxr.Usd.Attribute: method GetShadowEnableAttr (line 3579) | def GetShadowEnableAttr(self) -> pxr.Usd.Attribute: method GetShadowFalloffAttr (line 3597) | def GetShadowFalloffAttr(self) -> pxr.Usd.Attribute: method GetShadowFalloffGammaAttr (line 3622) | def GetShadowFalloffGammaAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 3644) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3645) | def __bool__(self) -> bool: ... class ShapingAPI (line 3647) | class ShapingAPI(pxr.Usd.APISchemaBase): method __init__ (line 3653) | def __init__(self) -> None: ... method __init__ (line 3655) | def __init__(self, connectable: pxr.UsdShade.ConnectableAPI) -> None: method __init__ (line 3664) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3674) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 3683) | def Apply(prim: pxr.Usd.Prim) -> ShapingAPI: method CanApply (line 3706) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ConnectableAPI (line 3731) | def ConnectableAPI(self) -> pxr.UsdShade.ConnectableAPI: method CreateInput (line 3741) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateOutput (line 3749) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.... method CreateShapingConeAngleAttr (line 3758) | def CreateShapingConeAngleAttr(self, defaultValue: Any = ..., writeSpa... method CreateShapingConeSoftnessAttr (line 3768) | def CreateShapingConeSoftnessAttr(self, defaultValue: Any = ..., write... method CreateShapingFocusAttr (line 3778) | def CreateShapingFocusAttr(self, defaultValue: Any = ..., writeSparsel... method CreateShapingFocusTintAttr (line 3788) | def CreateShapingFocusTintAttr(self, defaultValue: Any = ..., writeSpa... method CreateShapingIesAngleScaleAttr (line 3798) | def CreateShapingIesAngleScaleAttr(self, defaultValue: Any = ..., writ... method CreateShapingIesFileAttr (line 3808) | def CreateShapingIesFileAttr(self, defaultValue: Any = ..., writeSpars... method CreateShapingIesNormalizeAttr (line 3818) | def CreateShapingIesNormalizeAttr(self, defaultValue: Any = ..., write... method Get (line 3829) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetInput (line 3842) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.In... method GetInputs (line 3846) | def GetInputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Inp... method GetOutput (line 3854) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> pxr.UsdShade.O... method GetOutputs (line 3858) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[pxr.UsdShade.Ou... method GetSchemaAttributeNames (line 3867) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetShapingConeAngleAttr (line 3876) | def GetShapingConeAngleAttr(self) -> pxr.Usd.Attribute: method GetShapingConeSoftnessAttr (line 3894) | def GetShapingConeSoftnessAttr(self) -> pxr.Usd.Attribute: method GetShapingFocusAttr (line 3913) | def GetShapingFocusAttr(self) -> pxr.Usd.Attribute: method GetShapingFocusTintAttr (line 3934) | def GetShapingFocusTintAttr(self) -> pxr.Usd.Attribute: method GetShapingIesAngleScaleAttr (line 3954) | def GetShapingIesAngleScaleAttr(self) -> pxr.Usd.Attribute: method GetShapingIesFileAttr (line 3973) | def GetShapingIesFileAttr(self) -> pxr.Usd.Attribute: method GetShapingIesNormalizeAttr (line 3992) | def GetShapingIesNormalizeAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 4012) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 4013) | def __bool__(self) -> bool: ... class SphereLight (line 4015) | class SphereLight(BoundableLightBase): method __init__ (line 4021) | def __init__(self) -> None: ... method __init__ (line 4023) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 4033) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateRadiusAttr (line 4041) | def CreateRadiusAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateTreatAsPointAttr (line 4051) | def CreateTreatAsPointAttr(self, defaultValue: Any = ..., writeSparsel... method Define (line 4062) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 4088) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetRadiusAttr (line 4101) | def GetRadiusAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 4120) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTreatAsPointAttr (line 4129) | def GetTreatAsPointAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 4150) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 4151) | def __bool__(self) -> bool: ... class Tokens (line 4153) | class Tokens(Boost.Python.instance): method __init__ (line 4237) | def __init__(self, *args, **kwargs) -> None: class VolumeLightAPI (line 4242) | class VolumeLightAPI(pxr.Usd.APISchemaBase): method __init__ (line 4259) | def __init__(self) -> None: ... method __init__ (line 4261) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 4271) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 4280) | def Apply(prim: pxr.Usd.Prim) -> VolumeLightAPI: method CanApply (line 4303) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method Get (line 4329) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 4343) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 4353) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 4354) | def __bool__(self) -> bool: ... class _CanApplyResult (line 4356) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 4358) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 4359) | def __bool__(self) -> bool: ... method __eq__ (line 4360) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4361) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 4362) | def __ne__(self, other: object) -> bool: ... method whyNot (line 4364) | def whyNot(self): ... function BlackbodyTemperatureAsRgb (line 4366) | def BlackbodyTemperatureAsRgb(_colorTemp: float, /) -> pxr.Gf.Vec3f: FILE: usd/stubs/pxr-stubs/UsdMedia/__init__.pyi class AssetPreviewsAPI (line 12) | class AssetPreviewsAPI(pxr.Usd.APISchemaBase): class Thumbnails (line 51) | class Thumbnails(Boost.Python.instance): method __init__ (line 59) | def __init__(self, defaultImage: pxr.Sdf.AssetPath | str = ...) -> N... method __init__ (line 62) | def __init__(self) -> None: ... method __init__ (line 64) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 74) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 83) | def Apply(prim: pxr.Usd.Prim) -> AssetPreviewsAPI: method CanApply (line 106) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ClearDefaultThumbnails (line 131) | def ClearDefaultThumbnails(self) -> None: method Get (line 137) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAssetDefaultPreviews (line 152) | def GetAssetDefaultPreviews(layerPath: str | pxr.Ar.ResolvedPath) -> A... method GetAssetDefaultPreviews (line 164) | def GetAssetDefaultPreviews(layer: pxr.Sdf.Layer) -> AssetPreviewsAPI: method GetDefaultThumbnails (line 169) | def GetDefaultThumbnails(self) -> AssetPreviewsAPI.Thumbnails: method GetSchemaAttributeNames (line 175) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method SetDefaultThumbnails (line 184) | def SetDefaultThumbnails(self, thumbnails: AssetPreviewsAPI.Thumbnails... method _GetStaticTfType (line 190) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 191) | def __bool__(self) -> bool: ... class SpatialAudio (line 193) | class SpatialAudio(pxr.UsdGeom.Xformable): method __init__ (line 253) | def __init__(self) -> None: ... method __init__ (line 255) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 265) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAuralModeAttr (line 273) | def CreateAuralModeAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateEndTimeAttr (line 283) | def CreateEndTimeAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateFilePathAttr (line 293) | def CreateFilePathAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateGainAttr (line 303) | def CreateGainAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateMediaOffsetAttr (line 313) | def CreateMediaOffsetAttr(self, defaultValue: Any = ..., writeSparsely... method CreatePlaybackModeAttr (line 323) | def CreatePlaybackModeAttr(self, defaultValue: Any = ..., writeSparsel... method CreateStartTimeAttr (line 333) | def CreateStartTimeAttr(self, defaultValue: Any = ..., writeSparsely: ... method Define (line 344) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 370) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAuralModeAttr (line 383) | def GetAuralModeAttr(self) -> pxr.Usd.Attribute: method GetEndTimeAttr (line 419) | def GetEndTimeAttr(self) -> pxr.Usd.Attribute: method GetFilePathAttr (line 451) | def GetFilePathAttr(self) -> pxr.Usd.Attribute: method GetGainAttr (line 480) | def GetGainAttr(self) -> pxr.Usd.Attribute: method GetMediaOffsetAttr (line 499) | def GetMediaOffsetAttr(self) -> pxr.Usd.Attribute: method GetPlaybackModeAttr (line 526) | def GetPlaybackModeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 574) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetStartTimeAttr (line 583) | def GetStartTimeAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 614) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 615) | def __bool__(self) -> bool: ... class Tokens (line 617) | class Tokens(Boost.Python.instance): method __init__ (line 639) | def __init__(self, *args, **kwargs) -> None: class _CanApplyResult (line 644) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 646) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 647) | def __bool__(self) -> bool: ... method __eq__ (line 648) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 649) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 650) | def __ne__(self, other: object) -> bool: ... method whyNot (line 652) | def whyNot(self): ... FILE: usd/stubs/pxr-stubs/UsdMtlx/__init__.pyi function _TestFile (line 5) | def _TestFile(pathname: object, nodeGraphs: bool = ...) -> pxr.Usd.Stage... function _TestString (line 6) | def _TestString(buffer: object, nodeGraphs: bool = ...) -> pxr.Usd.Stage... FILE: usd/stubs/pxr-stubs/UsdPhysics/__init__.pyi class ArticulationRootAPI (line 12) | class ArticulationRootAPI(pxr.Usd.APISchemaBase): method __init__ (line 27) | def __init__(self) -> None: ... method __init__ (line 29) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 39) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 49) | def Apply(prim: pxr.Usd.Prim) -> ArticulationRootAPI: method CanApply (line 73) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method Get (line 99) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 113) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 123) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 124) | def __bool__(self) -> bool: ... class CollisionAPI (line 126) | class CollisionAPI(pxr.Usd.APISchemaBase): method __init__ (line 139) | def __init__(self) -> None: ... method __init__ (line 141) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 151) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 160) | def Apply(prim: pxr.Usd.Prim) -> CollisionAPI: method CanApply (line 183) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateCollisionEnabledAttr (line 208) | def CreateCollisionEnabledAttr(self, defaultValue: Any = ..., writeSpa... method CreateSimulationOwnerRel (line 218) | def CreateSimulationOwnerRel(self) -> pxr.Usd.Relationship: method Get (line 224) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCollisionEnabledAttr (line 237) | def GetCollisionEnabledAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 256) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSimulationOwnerRel (line 265) | def GetSimulationOwnerRel(self) -> pxr.Usd.Relationship: method _GetStaticTfType (line 275) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 276) | def __bool__(self) -> bool: ... class CollisionGroup (line 278) | class CollisionGroup(pxr.Usd.Typed): method __init__ (line 293) | def __init__(self) -> None: ... method __init__ (line 295) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 305) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ComputeCollisionGroupTable (line 314) | def ComputeCollisionGroupTable(stage: pxr.Usd.Stage) -> CollisionGroup... method CreateFilteredGroupsRel (line 323) | def CreateFilteredGroupsRel(self) -> pxr.Usd.Relationship: method CreateInvertFilteredGroupsAttr (line 328) | def CreateInvertFilteredGroupsAttr(self, defaultValue: Any = ..., writ... method CreateMergeGroupNameAttr (line 338) | def CreateMergeGroupNameAttr(self, defaultValue: Any = ..., writeSpars... method Define (line 349) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 375) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCollidersCollectionAPI (line 388) | def GetCollidersCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetFilteredGroupsRel (line 393) | def GetFilteredGroupsRel(self) -> pxr.Usd.Relationship: method GetInvertFilteredGroupsAttr (line 398) | def GetInvertFilteredGroupsAttr(self) -> pxr.Usd.Attribute: method GetMergeGroupNameAttr (line 419) | def GetMergeGroupNameAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 442) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 452) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 453) | def __bool__(self) -> bool: ... class CollisionGroupTable (line 455) | class CollisionGroupTable(Boost.Python.instance): method __init__ (line 457) | def __init__(self) -> None: ... method GetGroups (line 458) | def GetGroups(self) -> list: ... method IsCollisionEnabled (line 459) | def IsCollisionEnabled(self, arg2: object, arg3: object, /) -> bool: ... class DistanceJoint (line 461) | class DistanceJoint(Joint): method __init__ (line 468) | def __init__(self) -> None: ... method __init__ (line 470) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 480) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateMaxDistanceAttr (line 488) | def CreateMaxDistanceAttr(self, defaultValue: Any = ..., writeSparsely... method CreateMinDistanceAttr (line 498) | def CreateMinDistanceAttr(self, defaultValue: Any = ..., writeSparsely... method Define (line 509) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 535) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetMaxDistanceAttr (line 548) | def GetMaxDistanceAttr(self) -> pxr.Usd.Attribute: method GetMinDistanceAttr (line 567) | def GetMinDistanceAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 587) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 597) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 598) | def __bool__(self) -> bool: ... class DriveAPI (line 600) | class DriveAPI(pxr.Usd.APISchemaBase): method __init__ (line 622) | def __init__(self, prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath... method __init__ (line 634) | def __init__(self, schemaObj: pxr.Usd.SchemaBase, name: str | pxr.Ar.R... method __init__ (line 644) | def __init__(self) -> None: ... method Apply (line 646) | def Apply(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> Driv... method CanApply (line 672) | def CanApply(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> _... method CreateDampingAttr (line 697) | def CreateDampingAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateMaxForceAttr (line 707) | def CreateMaxForceAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateStiffnessAttr (line 717) | def CreateStiffnessAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateTargetPositionAttr (line 727) | def CreateTargetPositionAttr(self, defaultValue: Any = ..., writeSpars... method CreateTargetVelocityAttr (line 737) | def CreateTargetVelocityAttr(self, defaultValue: Any = ..., writeSpars... method CreateTypeAttr (line 747) | def CreateTypeAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method Get (line 759) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method Get (line 778) | def Get(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> DriveAPI: method GetAll (line 787) | def GetAll(prim: pxr.Usd.Prim) -> list[DriveAPI]: method GetDampingAttr (line 792) | def GetDampingAttr(self) -> pxr.Usd.Attribute: method GetMaxForceAttr (line 812) | def GetMaxForceAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 835) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSchemaAttributeNames (line 846) | def GetSchemaAttributeNames(_includeInherited: bool, /, includeInherit... method GetStiffnessAttr (line 856) | def GetStiffnessAttr(self) -> pxr.Usd.Attribute: method GetTargetPositionAttr (line 876) | def GetTargetPositionAttr(self) -> pxr.Usd.Attribute: method GetTargetVelocityAttr (line 895) | def GetTargetVelocityAttr(self) -> pxr.Usd.Attribute: method GetTypeAttr (line 915) | def GetTypeAttr(self) -> pxr.Usd.Attribute: method IsPhysicsDriveAPIPath (line 943) | def IsPhysicsDriveAPIPath(_path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | ... method _GetStaticTfType (line 953) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 954) | def __bool__(self) -> bool: ... class FilteredPairsAPI (line 956) | class FilteredPairsAPI(pxr.Usd.APISchemaBase): method __init__ (line 970) | def __init__(self) -> None: ... method __init__ (line 972) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 982) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 992) | def Apply(prim: pxr.Usd.Prim) -> FilteredPairsAPI: method CanApply (line 1015) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateFilteredPairsRel (line 1040) | def CreateFilteredPairsRel(self) -> pxr.Usd.Relationship: method Get (line 1046) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetFilteredPairsRel (line 1059) | def GetFilteredPairsRel(self) -> pxr.Usd.Relationship: method GetSchemaAttributeNames (line 1064) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1074) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1075) | def __bool__(self) -> bool: ... class FixedJoint (line 1077) | class FixedJoint(Joint): method __init__ (line 1083) | def __init__(self) -> None: ... method __init__ (line 1085) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1095) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 1104) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1130) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 1144) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1154) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1155) | def __bool__(self) -> bool: ... class Joint (line 1157) | class Joint(pxr.UsdGeom.Imageable): method __init__ (line 1170) | def __init__(self) -> None: ... method __init__ (line 1172) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1182) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateBody0Rel (line 1190) | def CreateBody0Rel(self) -> pxr.Usd.Relationship: method CreateBody1Rel (line 1195) | def CreateBody1Rel(self) -> pxr.Usd.Relationship: method CreateBreakForceAttr (line 1200) | def CreateBreakForceAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateBreakTorqueAttr (line 1210) | def CreateBreakTorqueAttr(self, defaultValue: Any = ..., writeSparsely... method CreateCollisionEnabledAttr (line 1220) | def CreateCollisionEnabledAttr(self, defaultValue: Any = ..., writeSpa... method CreateExcludeFromArticulationAttr (line 1230) | def CreateExcludeFromArticulationAttr(self, defaultValue: Any = ..., w... method CreateJointEnabledAttr (line 1240) | def CreateJointEnabledAttr(self, defaultValue: Any = ..., writeSparsel... method CreateLocalPos0Attr (line 1250) | def CreateLocalPos0Attr(self, defaultValue: Any = ..., writeSparsely: ... method CreateLocalPos1Attr (line 1260) | def CreateLocalPos1Attr(self, defaultValue: Any = ..., writeSparsely: ... method CreateLocalRot0Attr (line 1270) | def CreateLocalRot0Attr(self, defaultValue: Any = ..., writeSparsely: ... method CreateLocalRot1Attr (line 1280) | def CreateLocalRot1Attr(self, defaultValue: Any = ..., writeSparsely: ... method Define (line 1291) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1317) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetBody0Rel (line 1330) | def GetBody0Rel(self) -> pxr.Usd.Relationship: method GetBody1Rel (line 1334) | def GetBody1Rel(self) -> pxr.Usd.Relationship: method GetBreakForceAttr (line 1338) | def GetBreakForceAttr(self) -> pxr.Usd.Attribute: method GetBreakTorqueAttr (line 1358) | def GetBreakTorqueAttr(self) -> pxr.Usd.Attribute: method GetCollisionEnabledAttr (line 1378) | def GetCollisionEnabledAttr(self) -> pxr.Usd.Attribute: method GetExcludeFromArticulationAttr (line 1396) | def GetExcludeFromArticulationAttr(self) -> pxr.Usd.Attribute: method GetJointEnabledAttr (line 1418) | def GetJointEnabledAttr(self) -> pxr.Usd.Attribute: method GetLocalPos0Attr (line 1436) | def GetLocalPos0Attr(self) -> pxr.Usd.Attribute: method GetLocalPos1Attr (line 1454) | def GetLocalPos1Attr(self) -> pxr.Usd.Attribute: method GetLocalRot0Attr (line 1472) | def GetLocalRot0Attr(self) -> pxr.Usd.Attribute: method GetLocalRot1Attr (line 1490) | def GetLocalRot1Attr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1509) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1519) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1520) | def __bool__(self) -> bool: ... class LimitAPI (line 1522) | class LimitAPI(pxr.Usd.APISchemaBase): method __init__ (line 1538) | def __init__(self, prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath... method __init__ (line 1550) | def __init__(self, schemaObj: pxr.Usd.SchemaBase, name: str | pxr.Ar.R... method __init__ (line 1560) | def __init__(self) -> None: ... method Apply (line 1562) | def Apply(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> Limi... method CanApply (line 1588) | def CanApply(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> _... method CreateHighAttr (line 1613) | def CreateHighAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateLowAttr (line 1623) | def CreateLowAttr(self, defaultValue: Any = ..., writeSparsely: bool =... method Get (line 1635) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method Get (line 1654) | def Get(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> LimitAPI: method GetAll (line 1663) | def GetAll(prim: pxr.Usd.Prim) -> list[LimitAPI]: method GetHighAttr (line 1668) | def GetHighAttr(self) -> pxr.Usd.Attribute: method GetLowAttr (line 1688) | def GetLowAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1710) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSchemaAttributeNames (line 1721) | def GetSchemaAttributeNames(_includeInherited: bool, /, includeInherit... method IsPhysicsLimitAPIPath (line 1732) | def IsPhysicsLimitAPIPath(_path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | ... method _GetStaticTfType (line 1742) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1743) | def __bool__(self) -> bool: ... class MassAPI (line 1745) | class MassAPI(pxr.Usd.APISchemaBase): method __init__ (line 1755) | def __init__(self) -> None: ... method __init__ (line 1757) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1767) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 1776) | def Apply(prim: pxr.Usd.Prim) -> MassAPI: method CanApply (line 1799) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateCenterOfMassAttr (line 1824) | def CreateCenterOfMassAttr(self, defaultValue: Any = ..., writeSparsel... method CreateDensityAttr (line 1834) | def CreateDensityAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateDiagonalInertiaAttr (line 1844) | def CreateDiagonalInertiaAttr(self, defaultValue: Any = ..., writeSpar... method CreateMassAttr (line 1854) | def CreateMassAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreatePrincipalAxesAttr (line 1864) | def CreatePrincipalAxesAttr(self, defaultValue: Any = ..., writeSparse... method Get (line 1875) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCenterOfMassAttr (line 1888) | def GetCenterOfMassAttr(self) -> pxr.Usd.Attribute: method GetDensityAttr (line 1907) | def GetDensityAttr(self) -> pxr.Usd.Attribute: method GetDiagonalInertiaAttr (line 1936) | def GetDiagonalInertiaAttr(self) -> pxr.Usd.Attribute: method GetMassAttr (line 1957) | def GetMassAttr(self) -> pxr.Usd.Attribute: method GetPrincipalAxesAttr (line 1982) | def GetPrincipalAxesAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2002) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2012) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2013) | def __bool__(self) -> bool: ... class MassUnits (line 2015) | class MassUnits(Boost.Python.instance): method __init__ (line 2023) | def __init__(self, *args, **kwargs) -> None: class MaterialAPI (line 2028) | class MaterialAPI(pxr.Usd.APISchemaBase): method __init__ (line 2038) | def __init__(self) -> None: ... method __init__ (line 2040) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2050) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2059) | def Apply(prim: pxr.Usd.Prim) -> MaterialAPI: method CanApply (line 2082) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateDensityAttr (line 2107) | def CreateDensityAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateDynamicFrictionAttr (line 2117) | def CreateDynamicFrictionAttr(self, defaultValue: Any = ..., writeSpar... method CreateRestitutionAttr (line 2127) | def CreateRestitutionAttr(self, defaultValue: Any = ..., writeSparsely... method CreateStaticFrictionAttr (line 2137) | def CreateStaticFrictionAttr(self, defaultValue: Any = ..., writeSpars... method Get (line 2148) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDensityAttr (line 2161) | def GetDensityAttr(self) -> pxr.Usd.Attribute: method GetDynamicFrictionAttr (line 2182) | def GetDynamicFrictionAttr(self) -> pxr.Usd.Attribute: method GetRestitutionAttr (line 2201) | def GetRestitutionAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2221) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetStaticFrictionAttr (line 2230) | def GetStaticFrictionAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 2250) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2251) | def __bool__(self) -> bool: ... class MeshCollisionAPI (line 2253) | class MeshCollisionAPI(pxr.Usd.APISchemaBase): method __init__ (line 2268) | def __init__(self) -> None: ... method __init__ (line 2270) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2280) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2290) | def Apply(prim: pxr.Usd.Prim) -> MeshCollisionAPI: method CanApply (line 2313) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateApproximationAttr (line 2338) | def CreateApproximationAttr(self, defaultValue: Any = ..., writeSparse... method Get (line 2349) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetApproximationAttr (line 2362) | def GetApproximationAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2398) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2408) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2409) | def __bool__(self) -> bool: ... class PrismaticJoint (line 2411) | class PrismaticJoint(Joint): method __init__ (line 2424) | def __init__(self) -> None: ... method __init__ (line 2426) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2436) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 2444) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateLowerLimitAttr (line 2454) | def CreateLowerLimitAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateUpperLimitAttr (line 2464) | def CreateUpperLimitAttr(self, defaultValue: Any = ..., writeSparsely:... method Define (line 2475) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2501) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 2514) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetLowerLimitAttr (line 2540) | def GetLowerLimitAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2560) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetUpperLimitAttr (line 2569) | def GetUpperLimitAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 2589) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2590) | def __bool__(self) -> bool: ... class RevoluteJoint (line 2592) | class RevoluteJoint(Joint): method __init__ (line 2605) | def __init__(self) -> None: ... method __init__ (line 2607) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2617) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 2625) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateLowerLimitAttr (line 2635) | def CreateLowerLimitAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateUpperLimitAttr (line 2645) | def CreateUpperLimitAttr(self, defaultValue: Any = ..., writeSparsely:... method Define (line 2656) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2682) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 2695) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetLowerLimitAttr (line 2721) | def GetLowerLimitAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2741) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetUpperLimitAttr (line 2750) | def GetUpperLimitAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 2770) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2771) | def __bool__(self) -> bool: ... class RigidBodyAPI (line 2773) | class RigidBodyAPI(pxr.Usd.APISchemaBase): class MassInformation (line 2783) | class MassInformation(Boost.Python.instance): method __init__ (line 2794) | def __init__(self) -> None: ... method __init__ (line 2797) | def __init__(self) -> None: ... method __init__ (line 2799) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2809) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2818) | def Apply(prim: pxr.Usd.Prim) -> RigidBodyAPI: method CanApply (line 2841) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ComputeMassProperties (line 2866) | def ComputeMassProperties(self, _massInfoFn: MassInformationFn, /) -> ... method CreateAngularVelocityAttr (line 2878) | def CreateAngularVelocityAttr(self, defaultValue: Any = ..., writeSpar... method CreateKinematicEnabledAttr (line 2888) | def CreateKinematicEnabledAttr(self, defaultValue: Any = ..., writeSpa... method CreateRigidBodyEnabledAttr (line 2898) | def CreateRigidBodyEnabledAttr(self, defaultValue: Any = ..., writeSpa... method CreateSimulationOwnerRel (line 2908) | def CreateSimulationOwnerRel(self) -> pxr.Usd.Relationship: method CreateStartsAsleepAttr (line 2913) | def CreateStartsAsleepAttr(self, defaultValue: Any = ..., writeSparsel... method CreateVelocityAttr (line 2923) | def CreateVelocityAttr(self, defaultValue: Any = ..., writeSparsely: b... method Get (line 2934) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAngularVelocityAttr (line 2947) | def GetAngularVelocityAttr(self) -> pxr.Usd.Attribute: method GetKinematicEnabledAttr (line 2966) | def GetKinematicEnabledAttr(self) -> pxr.Usd.Attribute: method GetRigidBodyEnabledAttr (line 2988) | def GetRigidBodyEnabledAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3007) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSimulationOwnerRel (line 3016) | def GetSimulationOwnerRel(self) -> pxr.Usd.Relationship: method GetStartsAsleepAttr (line 3024) | def GetStartsAsleepAttr(self) -> pxr.Usd.Attribute: method GetVelocityAttr (line 3046) | def GetVelocityAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 3066) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3067) | def __bool__(self) -> bool: ... class Scene (line 3069) | class Scene(pxr.Usd.Typed): method __init__ (line 3075) | def __init__(self) -> None: ... method __init__ (line 3077) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3087) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateGravityDirectionAttr (line 3095) | def CreateGravityDirectionAttr(self, defaultValue: Any = ..., writeSpa... method CreateGravityMagnitudeAttr (line 3105) | def CreateGravityMagnitudeAttr(self, defaultValue: Any = ..., writeSpa... method Define (line 3116) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3142) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetGravityDirectionAttr (line 3155) | def GetGravityDirectionAttr(self) -> pxr.Usd.Attribute: method GetGravityMagnitudeAttr (line 3175) | def GetGravityMagnitudeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3197) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 3207) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3208) | def __bool__(self) -> bool: ... class SphericalJoint (line 3210) | class SphericalJoint(Joint): method __init__ (line 3225) | def __init__(self) -> None: ... method __init__ (line 3227) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3237) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAxisAttr (line 3245) | def CreateAxisAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateConeAngle0LimitAttr (line 3255) | def CreateConeAngle0LimitAttr(self, defaultValue: Any = ..., writeSpar... method CreateConeAngle1LimitAttr (line 3265) | def CreateConeAngle1LimitAttr(self, defaultValue: Any = ..., writeSpar... method Define (line 3276) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3302) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAxisAttr (line 3315) | def GetAxisAttr(self) -> pxr.Usd.Attribute: method GetConeAngle0LimitAttr (line 3341) | def GetConeAngle0LimitAttr(self) -> pxr.Usd.Attribute: method GetConeAngle1LimitAttr (line 3362) | def GetConeAngle1LimitAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 3383) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 3393) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3394) | def __bool__(self) -> bool: ... class Tokens (line 3396) | class Tokens(Boost.Python.instance): method __init__ (line 3485) | def __init__(self, *args, **kwargs) -> None: class _CanApplyResult (line 3490) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 3492) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 3493) | def __bool__(self) -> bool: ... method __eq__ (line 3494) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3495) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 3496) | def __ne__(self, other: object) -> bool: ... method whyNot (line 3498) | def whyNot(self): ... function GetStageKilogramsPerUnit (line 3500) | def GetStageKilogramsPerUnit(stage: pxr.Usd.Stage) -> float: function MassUnitsAre (line 3504) | def MassUnitsAre(authoredUnits: float, standardUnits: float, epsilon: fl... function SetStageKilogramsPerUnit (line 3524) | def SetStageKilogramsPerUnit(stage: pxr.Usd.Stage, metersPerUnit: float)... function StageHasAuthoredKilogramsPerUnit (line 3533) | def StageHasAuthoredKilogramsPerUnit(stage: pxr.Usd.Stage) -> bool: FILE: usd/stubs/pxr-stubs/UsdProc/__init__.pyi class GenerativeProcedural (line 11) | class GenerativeProcedural(pxr.UsdGeom.Boundable): method __init__ (line 33) | def __init__(self) -> None: ... method __init__ (line 35) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 45) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateProceduralSystemAttr (line 54) | def CreateProceduralSystemAttr(self, defaultValue: Any = ..., writeSpa... method Define (line 65) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 91) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetProceduralSystemAttr (line 104) | def GetProceduralSystemAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 125) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 135) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 136) | def __bool__(self) -> bool: ... class Tokens (line 138) | class Tokens(Boost.Python.instance): method __init__ (line 141) | def __init__(self, *args, **kwargs) -> None: FILE: usd/stubs/pxr-stubs/UsdRender/__init__.pyi class DenoisePass (line 10) | class DenoisePass(pxr.Usd.Typed): method __init__ (line 26) | def __init__(self) -> None: ... method __init__ (line 28) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 38) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 47) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 73) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 87) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 97) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 98) | def __bool__(self) -> bool: ... class Pass (line 100) | class Pass(pxr.Usd.Typed): method __init__ (line 139) | def __init__(self) -> None: ... method __init__ (line 141) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 151) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateCommandAttr (line 159) | def CreateCommandAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateDenoiseEnableAttr (line 169) | def CreateDenoiseEnableAttr(self, defaultValue: Any = ..., writeSparse... method CreateDenoisePassRel (line 179) | def CreateDenoisePassRel(self) -> pxr.Usd.Relationship: method CreateFileNameAttr (line 184) | def CreateFileNameAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateInputPassesRel (line 194) | def CreateInputPassesRel(self) -> pxr.Usd.Relationship: method CreatePassTypeAttr (line 199) | def CreatePassTypeAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateRenderSourceRel (line 209) | def CreateRenderSourceRel(self) -> pxr.Usd.Relationship: method Define (line 215) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 241) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCommandAttr (line 254) | def GetCommandAttr(self) -> pxr.Usd.Attribute: method GetDenoiseEnableAttr (line 286) | def GetDenoiseEnableAttr(self) -> pxr.Usd.Attribute: method GetDenoisePassRel (line 308) | def GetDenoisePassRel(self) -> pxr.Usd.Relationship: method GetFileNameAttr (line 313) | def GetFileNameAttr(self) -> pxr.Usd.Attribute: method GetInputPassesRel (line 336) | def GetInputPassesRel(self) -> pxr.Usd.Relationship: method GetPassTypeAttr (line 357) | def GetPassTypeAttr(self) -> pxr.Usd.Attribute: method GetRenderSourceRel (line 383) | def GetRenderSourceRel(self) -> pxr.Usd.Relationship: method GetRenderVisibilityCollectionAPI (line 398) | def GetRenderVisibilityCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetSchemaAttributeNames (line 404) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 414) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 415) | def __bool__(self) -> bool: ... class Product (line 417) | class Product(SettingsBase): method __init__ (line 440) | def __init__(self) -> None: ... method __init__ (line 442) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 452) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateOrderedVarsRel (line 460) | def CreateOrderedVarsRel(self) -> pxr.Usd.Relationship: method CreateProductNameAttr (line 465) | def CreateProductNameAttr(self, defaultValue: Any = ..., writeSparsely... method CreateProductTypeAttr (line 475) | def CreateProductTypeAttr(self, defaultValue: Any = ..., writeSparsely... method Define (line 486) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 512) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetOrderedVarsRel (line 525) | def GetOrderedVarsRel(self) -> pxr.Usd.Relationship: method GetProductNameAttr (line 534) | def GetProductNameAttr(self) -> pxr.Usd.Attribute: method GetProductTypeAttr (line 556) | def GetProductTypeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 582) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 592) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 593) | def __bool__(self) -> bool: ... class Settings (line 595) | class Settings(SettingsBase): method __init__ (line 611) | def __init__(self) -> None: ... method __init__ (line 613) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 623) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateIncludedPurposesAttr (line 631) | def CreateIncludedPurposesAttr(self, defaultValue: Any = ..., writeSpa... method CreateMaterialBindingPurposesAttr (line 641) | def CreateMaterialBindingPurposesAttr(self, defaultValue: Any = ..., w... method CreateProductsRel (line 651) | def CreateProductsRel(self) -> pxr.Usd.Relationship: method CreateRenderingColorSpaceAttr (line 656) | def CreateRenderingColorSpaceAttr(self, defaultValue: Any = ..., write... method Define (line 667) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 693) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetIncludedPurposesAttr (line 706) | def GetIncludedPurposesAttr(self) -> pxr.Usd.Attribute: method GetMaterialBindingPurposesAttr (line 731) | def GetMaterialBindingPurposesAttr(self) -> pxr.Usd.Attribute: method GetProductsRel (line 759) | def GetProductsRel(self) -> pxr.Usd.Relationship: method GetRenderingColorSpaceAttr (line 769) | def GetRenderingColorSpaceAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 795) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetStageRenderSettings (line 805) | def GetStageRenderSettings(_stage: pxr.Usd.Stage, /) -> Settings: method _GetStaticTfType (line 816) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 817) | def __bool__(self) -> bool: ... class SettingsBase (line 819) | class SettingsBase(pxr.Usd.Typed): method __init__ (line 832) | def __init__(self) -> None: ... method __init__ (line 834) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 844) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateAspectRatioConformPolicyAttr (line 852) | def CreateAspectRatioConformPolicyAttr(self, defaultValue: Any = ..., ... method CreateCameraRel (line 862) | def CreateCameraRel(self) -> pxr.Usd.Relationship: method CreateDataWindowNDCAttr (line 867) | def CreateDataWindowNDCAttr(self, defaultValue: Any = ..., writeSparse... method CreateDisableDepthOfFieldAttr (line 877) | def CreateDisableDepthOfFieldAttr(self, defaultValue: Any = ..., write... method CreateDisableMotionBlurAttr (line 887) | def CreateDisableMotionBlurAttr(self, defaultValue: Any = ..., writeSp... method CreateInstantaneousShutterAttr (line 897) | def CreateInstantaneousShutterAttr(self, defaultValue: Any = ..., writ... method CreatePixelAspectRatioAttr (line 907) | def CreatePixelAspectRatioAttr(self, defaultValue: Any = ..., writeSpa... method CreateResolutionAttr (line 917) | def CreateResolutionAttr(self, defaultValue: Any = ..., writeSparsely:... method Get (line 928) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAspectRatioConformPolicyAttr (line 941) | def GetAspectRatioConformPolicyAttr(self) -> pxr.Usd.Attribute: method GetCameraRel (line 993) | def GetCameraRel(self) -> pxr.Usd.Relationship: method GetDataWindowNDCAttr (line 1001) | def GetDataWindowNDCAttr(self) -> pxr.Usd.Attribute: method GetDisableDepthOfFieldAttr (line 1047) | def GetDisableDepthOfFieldAttr(self) -> pxr.Usd.Attribute: method GetDisableMotionBlurAttr (line 1070) | def GetDisableMotionBlurAttr(self) -> pxr.Usd.Attribute: method GetInstantaneousShutterAttr (line 1094) | def GetInstantaneousShutterAttr(self) -> pxr.Usd.Attribute: method GetPixelAspectRatioAttr (line 1119) | def GetPixelAspectRatioAttr(self) -> pxr.Usd.Attribute: method GetResolutionAttr (line 1142) | def GetResolutionAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1166) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1176) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1177) | def __bool__(self) -> bool: ... class Tokens (line 1179) | class Tokens(Boost.Python.instance): method __init__ (line 1227) | def __init__(self, *args, **kwargs) -> None: class Var (line 1232) | class Var(pxr.Usd.Typed): method __init__ (line 1256) | def __init__(self) -> None: ... method __init__ (line 1258) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1268) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateDataTypeAttr (line 1276) | def CreateDataTypeAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateSourceNameAttr (line 1286) | def CreateSourceNameAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateSourceTypeAttr (line 1296) | def CreateSourceTypeAttr(self, defaultValue: Any = ..., writeSparsely:... method Define (line 1307) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1333) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDataTypeAttr (line 1346) | def GetDataTypeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1369) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSourceNameAttr (line 1378) | def GetSourceNameAttr(self) -> pxr.Usd.Attribute: method GetSourceTypeAttr (line 1401) | def GetSourceTypeAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 1446) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1447) | def __bool__(self) -> bool: ... FILE: usd/stubs/pxr-stubs/UsdResolverExample/__init__.pyi class ResolverContext (line 6) | class ResolverContext(Boost.Python.instance): method __init__ (line 9) | def __init__(self) -> None: ... method __init__ (line 11) | def __init__(self, mappingFile: object) -> None: ... method GetMappingFile (line 12) | def GetMappingFile(self) -> str: ... method __hash__ (line 13) | def __hash__(self) -> int: ... FILE: usd/stubs/pxr-stubs/UsdRi/__init__.pyi class MaterialAPI (line 12) | class MaterialAPI(pxr.Usd.APISchemaBase): method __init__ (line 29) | def __init__(self) -> None: ... method __init__ (line 31) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 41) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method __init__ (line 50) | def __init__(self, material: pxr.UsdShade.Material) -> None: method Apply (line 55) | def Apply(prim: pxr.Usd.Prim) -> MaterialAPI: method CanApply (line 78) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method ComputeInterfaceInputConsumersMap (line 103) | def ComputeInterfaceInputConsumersMap(self, computeTransitiveConsumers... method CreateDisplacementAttr (line 113) | def CreateDisplacementAttr(self, defaultValue: Any = ..., writeSparsel... method CreateSurfaceAttr (line 123) | def CreateSurfaceAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateVolumeAttr (line 133) | def CreateVolumeAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Get (line 144) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDisplacement (line 157) | def GetDisplacement(self, ignoreBaseMaterial: bool = ...) -> pxr.UsdSh... method GetDisplacementAttr (line 167) | def GetDisplacementAttr(self) -> pxr.Usd.Attribute: method GetDisplacementOutput (line 182) | def GetDisplacementOutput(self) -> pxr.UsdShade.Output: method GetSchemaAttributeNames (line 187) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSurface (line 196) | def GetSurface(self, ignoreBaseMaterial: bool = ...) -> pxr.UsdShade.S... method GetSurfaceAttr (line 206) | def GetSurfaceAttr(self) -> pxr.Usd.Attribute: method GetSurfaceOutput (line 221) | def GetSurfaceOutput(self) -> pxr.UsdShade.Output: method GetVolume (line 225) | def GetVolume(self, ignoreBaseMaterial: bool = ...) -> pxr.UsdShade.Sh... method GetVolumeAttr (line 235) | def GetVolumeAttr(self) -> pxr.Usd.Attribute: method GetVolumeOutput (line 250) | def GetVolumeOutput(self) -> pxr.UsdShade.Output: method SetDisplacementSource (line 254) | def SetDisplacementSource(self, _displacementPath: pxr.Sdf.Path | pxr.... method SetSurfaceSource (line 255) | def SetSurfaceSource(self, _surfacePath: pxr.Sdf.Path | pxr.Ar.Resolve... method SetVolumeSource (line 256) | def SetVolumeSource(self, _volumePath: pxr.Sdf.Path | pxr.Ar.ResolvedP... method _GetStaticTfType (line 258) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 259) | def __bool__(self) -> bool: ... class RenderPassAPI (line 261) | class RenderPassAPI(pxr.Usd.APISchemaBase): method __init__ (line 282) | def __init__(self) -> None: ... method __init__ (line 284) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 294) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 303) | def Apply(prim: pxr.Usd.Prim) -> RenderPassAPI: method CanApply (line 326) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method Get (line 352) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCameraVisibilityCollectionAPI (line 365) | def GetCameraVisibilityCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetMatteCollectionAPI (line 370) | def GetMatteCollectionAPI(self) -> pxr.Usd.CollectionAPI: method GetSchemaAttributeNames (line 376) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 386) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 387) | def __bool__(self) -> bool: ... class SplineAPI (line 389) | class SplineAPI(pxr.Usd.APISchemaBase): method __init__ (line 416) | def __init__(self) -> None: ... method __init__ (line 418) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 428) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method __init__ (line 437) | def __init__(self, arg2: pxr.Usd.Prim, arg3: object, arg4: pxr.Sdf.Val... method __init__ (line 439) | def __init__(self, arg2: pxr.Usd.SchemaBase, arg3: object, arg4: pxr.S... method Apply (line 441) | def Apply(prim: pxr.Usd.Prim) -> SplineAPI: method CanApply (line 464) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateInterpolationAttr (line 489) | def CreateInterpolationAttr(self, defaultValue: Any = ..., writeSparse... method CreatePositionsAttr (line 499) | def CreatePositionsAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateValuesAttr (line 509) | def CreateValuesAttr(self, defaultValue: Any = ..., writeSparsely: boo... method Get (line 520) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetInterpolationAttr (line 533) | def GetInterpolationAttr(self) -> pxr.Usd.Attribute: method GetPositionsAttr (line 542) | def GetPositionsAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 551) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetValuesAttr (line 560) | def GetValuesAttr(self) -> pxr.Usd.Attribute: method GetValuesTypeName (line 568) | def GetValuesTypeName(self) -> pxr.Sdf.ValueTypeName: method Validate (line 572) | def Validate(self) -> tuple: method _GetStaticTfType (line 596) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 597) | def __bool__(self) -> bool: ... class StatementsAPI (line 599) | class StatementsAPI(pxr.Usd.APISchemaBase): method __init__ (line 615) | def __init__(self) -> None: ... method __init__ (line 617) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 627) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 636) | def Apply(prim: pxr.Usd.Prim) -> StatementsAPI: method CanApply (line 659) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateRiAttribute (line 685) | def CreateRiAttribute(self, name: str | pxr.Ar.ResolvedPath, riType: s... method CreateRiAttribute (line 705) | def CreateRiAttribute(self, name: str | pxr.Ar.ResolvedPath, tfType: p... method Get (line 714) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCoordinateSystem (line 727) | def GetCoordinateSystem(self) -> str: method GetModelCoordinateSystems (line 731) | def GetModelCoordinateSystems(self) -> list[pxr.Sdf.Path]: method GetModelScopedCoordinateSystems (line 739) | def GetModelScopedCoordinateSystems(self) -> list[pxr.Sdf.Path]: method GetRiAttribute (line 747) | def GetRiAttribute(self, name: str | pxr.Ar.ResolvedPath, nameSpace: s... method GetRiAttributeName (line 757) | def GetRiAttributeName(prop: pxr.Usd.Property | pxr.UsdGeom.XformOp) -... method GetRiAttributeNameSpace (line 766) | def GetRiAttributeNameSpace(prop: pxr.Usd.Property | pxr.UsdGeom.Xform... method GetRiAttributes (line 770) | def GetRiAttributes(self, nameSpace: str | pxr.Ar.ResolvedPath = ...) ... method GetSchemaAttributeNames (line 781) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetScopedCoordinateSystem (line 790) | def GetScopedCoordinateSystem(self) -> str: method HasCoordinateSystem (line 795) | def HasCoordinateSystem(self) -> bool: method HasScopedCoordinateSystem (line 799) | def HasScopedCoordinateSystem(self) -> bool: method IsRiAttribute (line 805) | def IsRiAttribute(prop: pxr.Usd.Property | pxr.UsdGeom.XformOp) -> bool: method MakeRiAttributePropertyName (line 810) | def MakeRiAttributePropertyName(attrName: str | pxr.Ar.ResolvedPath) -... method SetCoordinateSystem (line 841) | def SetCoordinateSystem(self, coordSysName: str | pxr.Ar.ResolvedPath)... method SetScopedCoordinateSystem (line 853) | def SetScopedCoordinateSystem(self, coordSysName: str | pxr.Ar.Resolve... method _GetStaticTfType (line 869) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 870) | def __bool__(self) -> bool: ... class Tokens (line 872) | class Tokens(Boost.Python.instance): method __init__ (line 892) | def __init__(self, *args, **kwargs) -> None: class _CanApplyResult (line 897) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 899) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 900) | def __bool__(self) -> bool: ... method __eq__ (line 901) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 902) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 903) | def __ne__(self, other: object) -> bool: ... method whyNot (line 905) | def whyNot(self): ... function ConvertFromRManFaceVaryingLinearInterpolation (line 907) | def ConvertFromRManFaceVaryingLinearInterpolation(_i: int, /) -> str: function ConvertFromRManInterpolateBoundary (line 913) | def ConvertFromRManInterpolateBoundary(_i: int, /) -> str: function ConvertToRManFaceVaryingLinearInterpolation (line 918) | def ConvertToRManFaceVaryingLinearInterpolation(_token: str | pxr.Ar.Res... function ConvertToRManInterpolateBoundary (line 923) | def ConvertToRManInterpolateBoundary(_token: str | pxr.Ar.ResolvedPath, ... FILE: usd/stubs/pxr-stubs/UsdSchemaExamples/__init__.pyi class Complex (line 10) | class Complex(Simple): method __init__ (line 13) | def __init__(self) -> None: ... method __init__ (line 15) | def __init__(self, prim: pxr.Usd.Prim) -> None: ... method __init__ (line 17) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: ... method CreateComplexStringAttr (line 18) | def CreateComplexStringAttr(self, defaultValue: object = ..., writeSpa... method Define (line 20) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 22) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetComplexStringAttr (line 23) | def GetComplexStringAttr(self) -> Attribute: ... # type: ignore[name-... method GetSchemaAttributeNames (line 25) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list: ... method _GetStaticTfType (line 27) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 28) | def __bool__(self) -> bool: ... class ParamsAPI (line 30) | class ParamsAPI(pxr.Usd.APISchemaBase): method __init__ (line 33) | def __init__(self) -> None: ... method __init__ (line 35) | def __init__(self, prim: pxr.Usd.Prim) -> None: ... method __init__ (line 37) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: ... method Apply (line 39) | def Apply(prim: pxr.Usd.Prim) -> ParamsAPI: ... method CanApply (line 41) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: ... method CreateMassAttr (line 42) | def CreateMassAttr(self, defaultValue: object = ..., writeSparsely: bo... method CreateVelocityAttr (line 43) | def CreateVelocityAttr(self, defaultValue: object = ..., writeSparsely... method CreateVolumeAttr (line 44) | def CreateVolumeAttr(self, defaultValue: object = ..., writeSparsely: ... method Get (line 46) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetMassAttr (line 47) | def GetMassAttr(self) -> Attribute: ... # type: ignore[name-defined] method GetSchemaAttributeNames (line 49) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list: ... method GetVelocityAttr (line 50) | def GetVelocityAttr(self) -> Attribute: ... # type: ignore[name-defined] method GetVolumeAttr (line 51) | def GetVolumeAttr(self) -> Attribute: ... # type: ignore[name-defined] method _GetStaticTfType (line 53) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 54) | def __bool__(self) -> bool: ... class Simple (line 56) | class Simple(pxr.Usd.Typed): method __init__ (line 59) | def __init__(self) -> None: ... method __init__ (line 61) | def __init__(self, prim: pxr.Usd.Prim) -> None: ... method __init__ (line 63) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: ... method CreateIntAttrAttr (line 64) | def CreateIntAttrAttr(self, defaultValue: object = ..., writeSparsely:... method CreateTargetRel (line 65) | def CreateTargetRel(self) -> Relationship: ... # type: ignore[name-de... method Get (line 67) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetIntAttrAttr (line 68) | def GetIntAttrAttr(self) -> Attribute: ... # type: ignore[name-defined] method GetSchemaAttributeNames (line 70) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list: ... method GetTargetRel (line 71) | def GetTargetRel(self) -> Relationship: ... # type: ignore[name-defined] method _GetStaticTfType (line 73) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 74) | def __bool__(self) -> bool: ... class Tokens (line 76) | class Tokens(Boost.Python.instance): method __init__ (line 86) | def __init__(self, *args, **kwargs) -> None: class _CanApplyResult (line 91) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 93) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 94) | def __bool__(self) -> bool: ... method __eq__ (line 95) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 96) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 97) | def __ne__(self, other: object) -> bool: ... method whyNot (line 99) | def whyNot(self): ... FILE: usd/stubs/pxr-stubs/UsdShade/__init__.pyi class AttributeType (line 17) | class AttributeType(Boost.Python.enum): class ConnectableAPI (line 24) | class ConnectableAPI(pxr.Usd.APISchemaBase): method __init__ (line 51) | def __init__(self) -> None: ... method __init__ (line 53) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 63) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CanConnect (line 73) | def CanConnect(input: Input, source: pxr.Usd.Attribute | pxr.UsdGeom.C... method CanConnect (line 89) | def CanConnect(output: Output, source: pxr.Usd.Attribute | pxr.UsdGeom... method ClearSource (line 103) | def ClearSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Constrain... method ClearSources (line 111) | def ClearSources(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Constrai... method ConnectToSource (line 124) | def ConnectToSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Const... method ConnectToSource (line 149) | def ConnectToSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Const... method ConnectToSource (line 160) | def ConnectToSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Const... method ConnectToSource (line 176) | def ConnectToSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Const... method ConnectToSource (line 185) | def ConnectToSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Const... method CreateInput (line 192) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateOutput (line 200) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.... method DisconnectSource (line 212) | def DisconnectSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Cons... method Get (line 231) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetConnectedSource (line 245) | def GetConnectedSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Co... method GetConnectedSources (line 274) | def GetConnectedSources(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.C... method GetInput (line 296) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> Input: method GetInputs (line 303) | def GetInputs(self, onlyAuthored: bool = ...) -> list[Input]: method GetOutput (line 313) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> Output: method GetOutputs (line 320) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[Output]: method GetRawConnectedSourcePaths (line 331) | def GetRawConnectedSourcePaths(shadingAttr: pxr.Usd.Attribute | pxr.Us... method GetSchemaAttributeNames (line 341) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method HasConnectableAPI (line 351) | def HasConnectableAPI(schemaType: pxr.Tf.Type | type[pxr.Usd.SchemaBas... method HasConnectedSource (line 361) | def HasConnectedSource(shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.Co... method IsContainer (line 380) | def IsContainer(self) -> bool: method IsSourceConnectionFromBaseMaterial (line 389) | def IsSourceConnectionFromBaseMaterial(shadingAttr: pxr.Usd.Attribute ... method RequiresEncapsulation (line 396) | def RequiresEncapsulation(self) -> bool: method SetConnectedSources (line 406) | def SetConnectedSources(_shadingAttr: pxr.Usd.Attribute | pxr.UsdGeom.... method _GetStaticTfType (line 426) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 427) | def __bool__(self) -> bool: ... class ConnectionModification (line 429) | class ConnectionModification(Boost.Python.enum): class ConnectionSourceInfo (line 436) | class ConnectionSourceInfo(Boost.Python.instance): method __init__ (line 447) | def __init__(self) -> None: ... method __init__ (line 449) | def __init__(self, source: ConnectableAPI, sourceName: str | pxr.Ar.Re... method __init__ (line 451) | def __init__(self, input: Input) -> None: ... method __init__ (line 453) | def __init__(self, output: Output) -> None: ... method __init__ (line 455) | def __init__(self, _stage: pxr.Usd.Stage, _sourcePath: pxr.Sdf.Path | ... method IsValid (line 464) | def IsValid(self) -> bool: method __bool__ (line 468) | def __bool__(self) -> bool: ... method __eq__ (line 469) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 470) | def __ne__(self, other: object) -> bool: ... class CoordSysAPI (line 472) | class CoordSysAPI(pxr.Usd.APISchemaBase): method __init__ (line 500) | def __init__(self, prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath... method __init__ (line 512) | def __init__(self, schemaObj: pxr.Usd.SchemaBase, name: str | pxr.Ar.R... method __init__ (line 522) | def __init__(self) -> None: ... method Apply (line 524) | def Apply(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> Coor... method ApplyAndBind (line 549) | def ApplyAndBind(self, name: str | pxr.Ar.ResolvedPath, path: pxr.Sdf.... method Bind (line 561) | def Bind(self, name: str | pxr.Ar.ResolvedPath, path: pxr.Sdf.Path | p... method Bind (line 580) | def Bind(self, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str) -> bool: method BlockBinding (line 588) | def BlockBinding(self, name: str | pxr.Ar.ResolvedPath = ...) -> bool: method CanApply (line 605) | def CanApply(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> _... method CanContainPropertyName (line 631) | def CanContainPropertyName(name: str | pxr.Ar.ResolvedPath) -> bool: method ClearBinding (line 636) | def ClearBinding(self, name: str | pxr.Ar.ResolvedPath, removeSpec: bo... method ClearBinding (line 657) | def ClearBinding(self, removeSpec: bool) -> bool: method CreateBindingRel (line 668) | def CreateBindingRel(self) -> pxr.Usd.Relationship: method FindBindingWithInheritance (line 673) | def FindBindingWithInheritance(self) -> pxr.UsdSkel.Binding: method FindBindingsWithInheritance (line 689) | def FindBindingsWithInheritance(self) -> list[pxr.UsdSkel.Binding]: method FindBindingsWithInheritanceForPrim (line 714) | def FindBindingsWithInheritanceForPrim(_prim: pxr.Usd.Prim, /) -> list... method Get (line 732) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method Get (line 751) | def Get(prim: pxr.Usd.Prim, name: str | pxr.Ar.ResolvedPath) -> CoordS... method GetAll (line 760) | def GetAll(prim: pxr.Usd.Prim) -> list[CoordSysAPI]: method GetBindingRel (line 765) | def GetBindingRel(self) -> pxr.Usd.Relationship: method GetCoordSysRelationshipName (line 770) | def GetCoordSysRelationshipName(coordSysName: str | pxr.Ar.ResolvedPat... method GetLocalBinding (line 781) | def GetLocalBinding(self) -> pxr.UsdSkel.Binding: method GetLocalBindings (line 791) | def GetLocalBindings(self) -> list[pxr.UsdSkel.Binding]: method GetLocalBindingsForPrim (line 810) | def GetLocalBindingsForPrim(prim: pxr.Usd.Prim) -> list[pxr.UsdSkel.Bi... method GetSchemaAttributeNames (line 825) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSchemaAttributeNames (line 836) | def GetSchemaAttributeNames(_includeInherited: bool, /, includeInherit... method HasLocalBindings (line 846) | def HasLocalBindings(self) -> bool: method HasLocalBindingsForPrim (line 862) | def HasLocalBindingsForPrim(prim: pxr.Usd.Prim) -> bool: method IsCoordSysAPIPath (line 870) | def IsCoordSysAPIPath(_path: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str,... method _GetStaticTfType (line 880) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 881) | def __bool__(self) -> bool: ... class Input (line 883) | class Input(Boost.Python.instance): method __init__ (line 890) | def __init__(self, attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTar... method __init__ (line 900) | def __init__(self) -> None: method CanConnect (line 907) | def CanConnect(self, source: pxr.Usd.Attribute | pxr.UsdGeom.Constrain... method ClearConnectability (line 916) | def ClearConnectability(self) -> bool: method ClearSdrMetadata (line 920) | def ClearSdrMetadata(self) -> None: method ClearSdrMetadataByKey (line 925) | def ClearSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> None: method ClearSource (line 930) | def ClearSource(self) -> bool: method ClearSources (line 934) | def ClearSources(self) -> bool: method ConnectToSource (line 945) | def ConnectToSource(self, source: ConnectionSourceInfo, mod: Connectio... method ConnectToSource (line 970) | def ConnectToSource(self, source: ConnectableAPI, sourceName: str | px... method ConnectToSource (line 978) | def ConnectToSource(self, sourcePath: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method ConnectToSource (line 987) | def ConnectToSource(self, input: Input) -> bool: method ConnectToSource (line 996) | def ConnectToSource(self, output: Output) -> bool: method DisconnectSource (line 1004) | def DisconnectSource(self, sourceAttr: pxr.Usd.Attribute | pxr.UsdGeom... method Get (line 1014) | def Get(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCode = ...)... method GetAttr (line 1018) | def GetAttr(self) -> pxr.Usd.Attribute: method GetBaseName (line 1022) | def GetBaseName(self) -> str: method GetConnectability (line 1030) | def GetConnectability(self) -> str: method GetConnectedSource (line 1038) | def GetConnectedSource(self) -> tuple[ConnectableAPI, str, AttributeTy... method GetConnectedSources (line 1042) | def GetConnectedSources(self) -> tuple[list[ConnectionSourceInfo], lis... method GetDisplayGroup (line 1064) | def GetDisplayGroup(self) -> str: method GetDocumentation (line 1073) | def GetDocumentation(self) -> str: method GetFullName (line 1081) | def GetFullName(self) -> str: method GetPrim (line 1085) | def GetPrim(self) -> pxr.Usd.Prim: method GetRawConnectedSourcePaths (line 1089) | def GetRawConnectedSourcePaths(self) -> list[pxr.Sdf.Path]: method GetRenderType (line 1097) | def GetRenderType(self) -> str: method GetSdrMetadata (line 1106) | def GetSdrMetadata(self) -> dict[str, str]: method GetSdrMetadataByKey (line 1110) | def GetSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> str: method GetTypeName (line 1115) | def GetTypeName(self) -> pxr.Sdf.ValueTypeName: method GetValueProducingAttribute (line 1120) | def GetValueProducingAttribute(self) -> tuple[pxr.Usd.Attribute, Attri... method GetValueProducingAttributes (line 1126) | def GetValueProducingAttributes(self, shaderOutputsOnly: bool = ...) -... method HasConnectedSource (line 1134) | def HasConnectedSource(self) -> bool: method HasRenderType (line 1143) | def HasRenderType(self) -> bool: method HasSdrMetadata (line 1151) | def HasSdrMetadata(self) -> bool: method HasSdrMetadataByKey (line 1156) | def HasSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> bool: method IsInput (line 1162) | def IsInput(_attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTarget | ... method IsInterfaceInputName (line 1171) | def IsInterfaceInputName(_name: str | pxr.Ar.ResolvedPath, /) -> bool: method IsSourceConnectionFromBaseMaterial (line 1175) | def IsSourceConnectionFromBaseMaterial(self) -> bool: method Set (line 1185) | def Set(self, value: Any, time: pxr.Usd.TimeCode | float | pxr.Sdf.Tim... method SetConnectability (line 1189) | def SetConnectability(self, _connectability: str | pxr.Ar.ResolvedPath... method SetConnectedSources (line 1214) | def SetConnectedSources(self, _sourceInfos: typing.Iterable[Connection... method SetDisplayGroup (line 1222) | def SetDisplayGroup(self, _displayGroup: str | pxr.Ar.ResolvedPath, /)... method SetDocumentation (line 1236) | def SetDocumentation(self, _docs: str | pxr.Ar.ResolvedPath, /) -> bool: method SetRenderType (line 1244) | def SetRenderType(self, renderType: str | pxr.Ar.ResolvedPath) -> bool: method SetSdrMetadata (line 1256) | def SetSdrMetadata(self, sdrMetadata: dict[str | pxr.Ar.ResolvedPath, ... method SetSdrMetadataByKey (line 1261) | def SetSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath, value: s... method __bool__ (line 1266) | def __bool__(self) -> bool: method __eq__ (line 1271) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 1272) | def __ne__(self, other: object) -> bool: ... class Material (line 1274) | class Material(NodeGraph): method __init__ (line 1326) | def __init__(self) -> None: ... method __init__ (line 1328) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1338) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ClearBaseMaterial (line 1346) | def ClearBaseMaterial(self) -> None: method ComputeDisplacementSource (line 1350) | def ComputeDisplacementSource(self, renderContext: str | pxr.Ar.Resolv... method ComputeSurfaceSource (line 1356) | def ComputeSurfaceSource(self, renderContext: str | pxr.Ar.ResolvedPat... method ComputeVolumeSource (line 1362) | def ComputeVolumeSource(self, renderContext: str | pxr.Ar.ResolvedPath... method CreateDisplacementAttr (line 1368) | def CreateDisplacementAttr(self, defaultValue: Any = ..., writeSparsel... method CreateDisplacementOutput (line 1378) | def CreateDisplacementOutput(self, renderContext: str | pxr.Ar.Resolve... method CreateMasterMaterialVariant (line 1389) | def CreateMasterMaterialVariant(masterPrim: pxr.Usd.Prim, materialPrim... method CreateSurfaceAttr (line 1422) | def CreateSurfaceAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreateSurfaceOutput (line 1432) | def CreateSurfaceOutput(self, renderContext: str | pxr.Ar.ResolvedPath... method CreateVolumeAttr (line 1442) | def CreateVolumeAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateVolumeOutput (line 1452) | def CreateVolumeOutput(self, renderContext: str | pxr.Ar.ResolvedPath ... method Define (line 1463) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1489) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetBaseMaterial (line 1502) | def GetBaseMaterial(self) -> Material: method GetBaseMaterialPath (line 1509) | def GetBaseMaterialPath(self) -> pxr.Sdf.Path: method GetDisplacementAttr (line 1516) | def GetDisplacementAttr(self) -> pxr.Usd.Attribute: method GetDisplacementOutput (line 1534) | def GetDisplacementOutput(self, renderContext: str | pxr.Ar.ResolvedPa... method GetDisplacementOutputs (line 1547) | def GetDisplacementOutputs(self) -> list[Output]: method GetEditContextForVariant (line 1558) | def GetEditContextForVariant(self, materialVariantName: str | pxr.Ar.R... method GetMaterialVariant (line 1602) | def GetMaterialVariant(self) -> pxr.Usd.VariantSet: method GetSchemaAttributeNames (line 1608) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSurfaceAttr (line 1617) | def GetSurfaceAttr(self) -> pxr.Usd.Attribute: method GetSurfaceOutput (line 1635) | def GetSurfaceOutput(self, renderContext: str | pxr.Ar.ResolvedPath = ... method GetSurfaceOutputs (line 1648) | def GetSurfaceOutputs(self) -> list[Output]: method GetVolumeAttr (line 1658) | def GetVolumeAttr(self) -> pxr.Usd.Attribute: method GetVolumeOutput (line 1676) | def GetVolumeOutput(self, renderContext: str | pxr.Ar.ResolvedPath = .... method GetVolumeOutputs (line 1689) | def GetVolumeOutputs(self) -> list[Output]: method HasBaseMaterial (line 1699) | def HasBaseMaterial(self) -> bool: ... method SetBaseMaterial (line 1700) | def SetBaseMaterial(self, baseMaterial: Material) -> None: method SetBaseMaterialPath (line 1707) | def SetBaseMaterialPath(self, baseLookPath: pxr.Sdf.Path | pxr.Ar.Reso... method _GetStaticTfType (line 1715) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1716) | def __bool__(self) -> bool: ... class MaterialBindingAPI (line 1718) | class MaterialBindingAPI(pxr.Usd.APISchemaBase): class CollectionBinding (line 1814) | class CollectionBinding(Boost.Python.instance): method __init__ (line 1821) | def __init__(self) -> None: method __init__ (line 1827) | def __init__(self, collBindingRel: pxr.Usd.Relationship) -> None: method GetBindingRel (line 1836) | def GetBindingRel(self) -> pxr.Usd.Relationship: method GetCollection (line 1841) | def GetCollection(self) -> pxr.Usd.CollectionAPI: method GetCollectionPath (line 1846) | def GetCollectionPath(self) -> pxr.Sdf.Path: method GetMaterial (line 1850) | def GetMaterial(self) -> Material: method GetMaterialPath (line 1855) | def GetMaterialPath(self) -> pxr.Sdf.Path: method IsCollectionBindingRel (line 1860) | def IsCollectionBindingRel(bindingRel: pxr.Usd.Relationship) -> bool: method IsValid (line 1864) | def IsValid(self) -> bool: class DirectBinding (line 1870) | class DirectBinding(Boost.Python.instance): method __init__ (line 1876) | def __init__(self) -> None: method __init__ (line 1882) | def __init__(self, bindingRel: pxr.Usd.Relationship) -> None: ... method GetBindingRel (line 1883) | def GetBindingRel(self) -> pxr.Usd.Relationship: method GetMaterial (line 1887) | def GetMaterial(self) -> Material: method GetMaterialPath (line 1891) | def GetMaterialPath(self) -> pxr.Sdf.Path: method GetMaterialPurpose (line 1896) | def GetMaterialPurpose(self) -> str: method __init__ (line 1902) | def __init__(self) -> None: ... method __init__ (line 1904) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1914) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method AddPrimToBindingCollection (line 1923) | def AddPrimToBindingCollection(self, prim: pxr.Usd.Prim, bindingName: ... method Apply (line 1939) | def Apply(prim: pxr.Usd.Prim) -> MaterialBindingAPI: method Bind (line 1962) | def Bind(self, material: Material, bindingStrength: str | pxr.Ar.Resol... method Bind (line 1986) | def Bind(self, collection: pxr.Usd.CollectionAPI, material: Material, ... method CanApply (line 2025) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CanContainPropertyName (line 2051) | def CanContainPropertyName(name: str | pxr.Ar.ResolvedPath) -> bool: method ComputeBoundMaterial (line 2055) | def ComputeBoundMaterial(self, materialPurpose: object = ..., supportL... method ComputeBoundMaterials (line 2057) | def ComputeBoundMaterials(prims: typing.Iterable[pxr.Usd.Prim], materi... method CreateMaterialBindSubset (line 2085) | def CreateMaterialBindSubset(self, subsetName: str | pxr.Ar.ResolvedPa... method Get (line 2104) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetCollectionBindingRel (line 2117) | def GetCollectionBindingRel(self, bindingName: str | pxr.Ar.ResolvedPa... method GetCollectionBindingRels (line 2127) | def GetCollectionBindingRels(self, materialPurpose: str | pxr.Ar.Resol... method GetCollectionBindings (line 2139) | def GetCollectionBindings(self, materialPurpose: str | pxr.Ar.Resolved... method GetDirectBinding (line 2164) | def GetDirectBinding(self, materialPurpose: str | pxr.Ar.ResolvedPath ... method GetDirectBindingRel (line 2178) | def GetDirectBindingRel(self, materialPurpose: str | pxr.Ar.ResolvedPa... method GetMaterialBindSubsets (line 2187) | def GetMaterialBindSubsets(self) -> list[pxr.UsdGeom.Subset]: method GetMaterialBindSubsetsFamilyType (line 2192) | def GetMaterialBindSubsetsFamilyType(self) -> str: method GetMaterialBindingStrength (line 2205) | def GetMaterialBindingStrength(bindingRel: pxr.Usd.Relationship) -> str: method GetMaterialPurposes (line 2217) | def GetMaterialPurposes() -> list[str]: method GetResolvedTargetPathFromBindingRel (line 2222) | def GetResolvedTargetPathFromBindingRel(bindingRel: pxr.Usd.Relationsh... method GetSchemaAttributeNames (line 2227) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method RemovePrimFromBindingCollection (line 2236) | def RemovePrimFromBindingCollection(self, prim: pxr.Usd.Prim, bindingN... method SetMaterialBindSubsetsFamilyType (line 2253) | def SetMaterialBindSubsetsFamilyType(self, familyType: str | pxr.Ar.Re... method SetMaterialBindingStrength (line 2273) | def SetMaterialBindingStrength(_bindingRel: pxr.Usd.Relationship, /, b... method UnbindAllBindings (line 2289) | def UnbindAllBindings(self) -> bool: method UnbindCollectionBinding (line 2293) | def UnbindCollectionBinding(self, bindingName: str | pxr.Ar.ResolvedPa... method UnbindDirectBinding (line 2309) | def UnbindDirectBinding(self, materialPurpose: str | pxr.Ar.ResolvedPa... method _GetStaticTfType (line 2322) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2323) | def __bool__(self) -> bool: ... class NodeDefAPI (line 2325) | class NodeDefAPI(pxr.Usd.APISchemaBase): method __init__ (line 2354) | def __init__(self) -> None: ... method __init__ (line 2356) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2366) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 2375) | def Apply(prim: pxr.Usd.Prim) -> NodeDefAPI: method CanApply (line 2398) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateIdAttr (line 2423) | def CreateIdAttr(self, defaultValue: Any = ..., writeSparsely: bool = ... method CreateImplementationSourceAttr (line 2433) | def CreateImplementationSourceAttr(self, defaultValue: Any = ..., writ... method Get (line 2444) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetIdAttr (line 2457) | def GetIdAttr(self) -> pxr.Usd.Attribute: method GetImplementationSource (line 2484) | def GetImplementationSource(self) -> str: method GetImplementationSourceAttr (line 2526) | def GetImplementationSourceAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 2569) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetShaderId (line 2578) | def GetShaderId(self) -> str: method GetShaderNodeForSourceType (line 2589) | def GetShaderNodeForSourceType(self, sourceType: str | pxr.Ar.Resolved... method GetSourceAsset (line 2598) | def GetSourceAsset(self, sourceType: str | pxr.Ar.ResolvedPath = ...) ... method GetSourceAssetSubIdentifier (line 2617) | def GetSourceAssetSubIdentifier(self, sourceType: str | pxr.Ar.Resolve... method GetSourceCode (line 2635) | def GetSourceCode(self, sourceType: str | pxr.Ar.ResolvedPath = ...) -... method GetSourceTypes (line 2653) | def GetSourceTypes(self) -> list[str]: method SetShaderId (line 2665) | def SetShaderId(self, _id: str | pxr.Ar.ResolvedPath, /) -> bool: method SetSourceAsset (line 2673) | def SetSourceAsset(self, sourceAsset: pxr.Sdf.AssetPath | str, sourceT... method SetSourceAssetSubIdentifier (line 2682) | def SetSourceAssetSubIdentifier(self, subIdentifier: str | pxr.Ar.Reso... method SetSourceCode (line 2693) | def SetSourceCode(self, sourceCode: str | pxr.Ar.ResolvedPath, sourceT... method _GetStaticTfType (line 2703) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2704) | def __bool__(self) -> bool: ... class NodeGraph (line 2706) | class NodeGraph(pxr.Usd.Typed): method __init__ (line 2729) | def __init__(self) -> None: ... method __init__ (line 2731) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 2741) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method __init__ (line 2750) | def __init__(self, connectable: ConnectableAPI) -> None: method ComputeInterfaceInputConsumersMap (line 2762) | def ComputeInterfaceInputConsumersMap(self, computeTransitiveConsumers... method ComputeOutputSource (line 2782) | def ComputeOutputSource(self, outputName: str | pxr.Ar.ResolvedPath) -... method ConnectableAPI (line 2803) | def ConnectableAPI(self) -> ConnectableAPI: method CreateInput (line 2816) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateOutput (line 2824) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, typeName: pxr.... method Define (line 2833) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 2859) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetInput (line 2872) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> Input: method GetInputs (line 2876) | def GetInputs(self, onlyAuthored: bool = ...) -> list[Input]: method GetInterfaceInputs (line 2885) | def GetInterfaceInputs(self) -> list[Input]: method GetOutput (line 2894) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> Output: method GetOutputs (line 2898) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[Output]: method GetSchemaAttributeNames (line 2907) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 2917) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 2918) | def __bool__(self) -> bool: ... class Output (line 2920) | class Output(Boost.Python.instance): method __init__ (line 2927) | def __init__(self, attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTar... method __init__ (line 2937) | def __init__(self) -> None: method CanConnect (line 2944) | def CanConnect(self, source: pxr.Usd.Attribute | pxr.UsdGeom.Constrain... method ClearSdrMetadata (line 2955) | def ClearSdrMetadata(self) -> None: method ClearSdrMetadataByKey (line 2960) | def ClearSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> None: method ClearSource (line 2965) | def ClearSource(self) -> bool: method ClearSources (line 2969) | def ClearSources(self) -> bool: method ConnectToSource (line 2980) | def ConnectToSource(self, source: ConnectionSourceInfo, mod: Connectio... method ConnectToSource (line 3005) | def ConnectToSource(self, source: ConnectableAPI, sourceName: str | px... method ConnectToSource (line 3013) | def ConnectToSource(self, sourcePath: pxr.Sdf.Path | pxr.Ar.ResolvedPa... method ConnectToSource (line 3022) | def ConnectToSource(self, sourceInput: Input) -> bool: method ConnectToSource (line 3031) | def ConnectToSource(self, sourceOutput: Output) -> bool: method DisconnectSource (line 3039) | def DisconnectSource(self, sourceAttr: pxr.Usd.Attribute | pxr.UsdGeom... method GetAttr (line 3049) | def GetAttr(self) -> pxr.Usd.Attribute: method GetBaseName (line 3053) | def GetBaseName(self) -> str: method GetConnectedSource (line 3061) | def GetConnectedSource(self) -> tuple[ConnectableAPI, str, AttributeTy... method GetConnectedSources (line 3067) | def GetConnectedSources(self) -> tuple[list[ConnectionSourceInfo], lis... method GetFullName (line 3089) | def GetFullName(self) -> str: method GetPrim (line 3093) | def GetPrim(self) -> pxr.Usd.Prim: method GetRawConnectedSourcePaths (line 3097) | def GetRawConnectedSourcePaths(self) -> list[pxr.Sdf.Path]: method GetRenderType (line 3105) | def GetRenderType(self) -> str: method GetSdrMetadata (line 3114) | def GetSdrMetadata(self) -> dict[str, str]: method GetSdrMetadataByKey (line 3119) | def GetSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> str: method GetTypeName (line 3124) | def GetTypeName(self) -> pxr.Sdf.ValueTypeName: method GetValueProducingAttributes (line 3129) | def GetValueProducingAttributes(self, shaderOutputsOnly: bool = ...) -... method HasConnectedSource (line 3137) | def HasConnectedSource(self) -> bool: method HasRenderType (line 3146) | def HasRenderType(self) -> bool: method HasSdrMetadata (line 3154) | def HasSdrMetadata(self) -> bool: method HasSdrMetadataByKey (line 3159) | def HasSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> bool: method IsOutput (line 3165) | def IsOutput(_attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTarget |... method IsSourceConnectionFromBaseMaterial (line 3174) | def IsSourceConnectionFromBaseMaterial(self) -> bool: method Set (line 3184) | def Set(self, value: Any, time: pxr.Usd.TimeCode | float | pxr.Sdf.Tim... method SetConnectedSources (line 3193) | def SetConnectedSources(self, _sourceInfos: typing.Iterable[Connection... method SetRenderType (line 3201) | def SetRenderType(self, renderType: str | pxr.Ar.ResolvedPath) -> bool: method SetSdrMetadata (line 3213) | def SetSdrMetadata(self, sdrMetadata: dict[str | pxr.Ar.ResolvedPath, ... method SetSdrMetadataByKey (line 3218) | def SetSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath, value: s... method __bool__ (line 3223) | def __bool__(self) -> bool: method __eq__ (line 3228) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 3229) | def __ne__(self, other: object) -> bool: ... class Shader (line 3231) | class Shader(pxr.Usd.Typed): method __init__ (line 3265) | def __init__(self) -> None: ... method __init__ (line 3267) | def __init__(self, connectable: ConnectableAPI) -> None: method __init__ (line 3280) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 3290) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method ClearSdrMetadata (line 3298) | def ClearSdrMetadata(self) -> None: method ClearSdrMetadataByKey (line 3303) | def ClearSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> None: method ConnectableAPI (line 3308) | def ConnectableAPI(self) -> ConnectableAPI: method CreateIdAttr (line 3321) | def CreateIdAttr(self, defaultValue: Any = ..., writeSparsely: bool = ... method CreateImplementationSourceAttr (line 3325) | def CreateImplementationSourceAttr(self, defaultValue: Any = ..., writ... method CreateInput (line 3329) | def CreateInput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.V... method CreateOutput (line 3338) | def CreateOutput(self, name: str | pxr.Ar.ResolvedPath, type: pxr.Sdf.... method Define (line 3348) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 3374) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetIdAttr (line 3387) | def GetIdAttr(self) -> pxr.Usd.Attribute: method GetImplementationSource (line 3391) | def GetImplementationSource(self) -> str: method GetImplementationSourceAttr (line 3395) | def GetImplementationSourceAttr(self) -> pxr.Usd.Attribute: method GetInput (line 3399) | def GetInput(self, name: str | pxr.Ar.ResolvedPath) -> Input: method GetInputs (line 3403) | def GetInputs(self, onlyAuthored: bool = ...) -> list[Input]: method GetOutput (line 3411) | def GetOutput(self, name: str | pxr.Ar.ResolvedPath) -> Output: method GetOutputs (line 3415) | def GetOutputs(self, onlyAuthored: bool = ...) -> list[Output]: method GetSchemaAttributeNames (line 3424) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSdrMetadata (line 3433) | def GetSdrMetadata(self) -> dict[str, str]: method GetSdrMetadataByKey (line 3438) | def GetSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> str: method GetShaderId (line 3443) | def GetShaderId(self) -> str: method GetShaderNodeForSourceType (line 3447) | def GetShaderNodeForSourceType(self, sourceType: str | pxr.Ar.Resolved... method GetSourceAsset (line 3451) | def GetSourceAsset(self, sourceType: str | pxr.Ar.ResolvedPath = ...) ... method GetSourceAssetSubIdentifier (line 3455) | def GetSourceAssetSubIdentifier(self, sourceType: str | pxr.Ar.Resolve... method GetSourceCode (line 3459) | def GetSourceCode(self, sourceType: str | pxr.Ar.ResolvedPath = ...) -... method GetSourceTypes (line 3463) | def GetSourceTypes(self) -> list[str]: method HasSdrMetadata (line 3467) | def HasSdrMetadata(self) -> bool: method HasSdrMetadataByKey (line 3472) | def HasSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath) -> bool: method SetSdrMetadata (line 3477) | def SetSdrMetadata(self, sdrMetadata: dict[str | pxr.Ar.ResolvedPath, ... method SetSdrMetadataByKey (line 3482) | def SetSdrMetadataByKey(self, key: str | pxr.Ar.ResolvedPath, value: s... method SetShaderId (line 3487) | def SetShaderId(self, _id: str | pxr.Ar.ResolvedPath, /) -> bool: method SetSourceAsset (line 3491) | def SetSourceAsset(self, sourceAsset: pxr.Sdf.AssetPath | str, sourceT... method SetSourceAssetSubIdentifier (line 3495) | def SetSourceAssetSubIdentifier(self, subIdentifier: str | pxr.Ar.Reso... method SetSourceCode (line 3499) | def SetSourceCode(self, sourceCode: str | pxr.Ar.ResolvedPath, sourceT... method _GetStaticTfType (line 3504) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 3505) | def __bool__(self) -> bool: ... class ShaderDefParserPlugin (line 3507) | class ShaderDefParserPlugin(Boost.Python.instance): method __init__ (line 3513) | def __init__(self) -> None: ... method GetDiscoveryTypes (line 3514) | def GetDiscoveryTypes(self) -> list[str]: method GetSourceType (line 3525) | def GetSourceType(self) -> str: method Parse (line 3535) | def Parse(self, _discoveryResult: pxr.Ndr.NodeDiscoveryResult, /) -> p... class ShaderDefUtils (line 3544) | class ShaderDefUtils(Boost.Python.instance): method __init__ (line 3550) | def __init__(self, *args, **kwargs) -> None: method GetNodeDiscoveryResults (line 3555) | def GetNodeDiscoveryResults(shaderDef: Shader, sourceUri: str | pxr.Ar... method GetPrimvarNamesMetadataString (line 3567) | def GetPrimvarNamesMetadataString(metadata: dict[str | pxr.Ar.Resolved... method GetShaderProperties (line 3574) | def GetShaderProperties(shaderDef: ConnectableAPI) -> list[[pxr.Ndr.Pr... class Tokens (line 3581) | class Tokens(Boost.Python.instance): method __init__ (line 3620) | def __init__(self, *args, **kwargs) -> None: class UdimUtils (line 3625) | class UdimUtils(Boost.Python.instance): method __init__ (line 3630) | def __init__(self, *args, **kwargs) -> None: method IsUdimIdentifier (line 3635) | def IsUdimIdentifier(identifier: str | pxr.Ar.ResolvedPath) -> bool: method ReplaceUdimPattern (line 3644) | def ReplaceUdimPattern(identifierWithPattern: str | pxr.Ar.ResolvedPat... method ResolveUdimPath (line 3650) | def ResolveUdimPath(udimPath: str | pxr.Ar.ResolvedPath, layer: pxr.Sd... method ResolveUdimTilePaths (line 3662) | def ResolveUdimTilePaths(udimPath: str | pxr.Ar.ResolvedPath, layer: p... class Utils (line 3673) | class Utils(Boost.Python.instance): method __init__ (line 3678) | def __init__(self, *args, **kwargs) -> None: method GetBaseNameAndType (line 3683) | def GetBaseNameAndType(_fullName: str | pxr.Ar.ResolvedPath, /) -> tup... method GetConnectedSourcePath (line 3689) | def GetConnectedSourcePath(connectionSourceInfo: ConnectionSourceInfo)... method GetFullName (line 3695) | def GetFullName(_baseName: str | pxr.Ar.ResolvedPath, _type: Attribute... method GetPrefixForAttributeType (line 3705) | def GetPrefixForAttributeType(_sourceType: AttributeType, /) -> str: method GetType (line 3711) | def GetType(_fullName: str | pxr.Ar.ResolvedPath, /) -> AttributeType: method GetValueProducingAttributes (line 3718) | def GetValueProducingAttributes(input: Input, shaderOutputsOnly: bool ... method GetValueProducingAttributes (line 3768) | def GetValueProducingAttributes(output: Output, shaderOutputsOnly: boo... class _CanApplyResult (line 3774) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 3776) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 3777) | def __bool__(self) -> bool: ... method __eq__ (line 3778) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3779) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 3780) | def __ne__(self, other: object) -> bool: ... method whyNot (line 3782) | def whyNot(self): ... FILE: usd/stubs/pxr-stubs/UsdSkel/__init__.pyi class AnimMapper (line 15) | class AnimMapper(Boost.Python.instance): method __init__ (line 17) | def __init__(self) -> None: method __init__ (line 22) | def __init__(self, _size: int, /) -> None: method __init__ (line 30) | def __init__(self, sourceOrder: pxr.Vt.TokenArray | typing.Iterable[px... method IsIdentity (line 35) | def IsIdentity(self) -> bool: method IsNull (line 42) | def IsNull(self) -> bool: method IsSparse (line 49) | def IsSparse(self) -> bool: method Remap (line 57) | def Remap(self, source: object, target: object = ..., elementSize: int... method RemapTransforms (line 59) | def RemapTransforms(self, source: pxr.Vt.Matrix4fArray | typing.Iterab... method RemapTransforms (line 68) | def RemapTransforms(self, source: pxr.Vt.Matrix4dArray | typing.Iterab... method __len__ (line 69) | def __len__(self) -> int: ... class AnimQuery (line 71) | class AnimQuery(Boost.Python.instance): method __init__ (line 76) | def __init__(self, *args, **kwargs) -> None: method BlendShapeWeightsMightBeTimeVarying (line 80) | def BlendShapeWeightsMightBeTimeVarying(self) -> bool: method ComputeBlendShapeWeights (line 90) | def ComputeBlendShapeWeights(self, time: pxr.Usd.TimeCode | float | px... method ComputeJointLocalTransformComponents (line 91) | def ComputeJointLocalTransformComponents(self, time: pxr.Usd.TimeCode ... method ComputeJointLocalTransforms (line 100) | def ComputeJointLocalTransforms(self, time: pxr.Usd.TimeCode | float |... method GetBlendShapeOrder (line 108) | def GetBlendShapeOrder(self) -> pxr.Vt.TokenArray: method GetBlendShapeWeightTimeSamples (line 113) | def GetBlendShapeWeightTimeSamples(self) -> list[float]: method GetBlendShapeWeightTimeSamplesInInterval (line 122) | def GetBlendShapeWeightTimeSamplesInInterval(self, interval: pxr.Gf.In... method GetJointOrder (line 131) | def GetJointOrder(self) -> pxr.Vt.TokenArray: method GetJointTransformTimeSamples (line 140) | def GetJointTransformTimeSamples(self) -> list[float]: method GetJointTransformTimeSamplesInInterval (line 152) | def GetJointTransformTimeSamplesInInterval(self, interval: pxr.Gf.Inte... method GetPrim (line 164) | def GetPrim(self) -> pxr.Usd.Prim: method JointTransformsMightBeTimeVarying (line 168) | def JointTransformsMightBeTimeVarying(self) -> bool: method __bool__ (line 178) | def __bool__(self) -> bool: method __eq__ (line 182) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 183) | def __ne__(self, other: object) -> bool: ... class Animation (line 185) | class Animation(pxr.Usd.Typed): method __init__ (line 195) | def __init__(self) -> None: ... method __init__ (line 197) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 207) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateBlendShapeWeightsAttr (line 215) | def CreateBlendShapeWeightsAttr(self, defaultValue: Any = ..., writeSp... method CreateBlendShapesAttr (line 225) | def CreateBlendShapesAttr(self, defaultValue: Any = ..., writeSparsely... method CreateJointsAttr (line 235) | def CreateJointsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRotationsAttr (line 245) | def CreateRotationsAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateScalesAttr (line 255) | def CreateScalesAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateTranslationsAttr (line 265) | def CreateTranslationsAttr(self, defaultValue: Any = ..., writeSparsel... method Define (line 276) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 302) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetBlendShapeWeightsAttr (line 315) | def GetBlendShapeWeightsAttr(self) -> pxr.Usd.Attribute: method GetBlendShapesAttr (line 336) | def GetBlendShapesAttr(self) -> pxr.Usd.Attribute: method GetJointsAttr (line 361) | def GetJointsAttr(self) -> pxr.Usd.Attribute: method GetRotationsAttr (line 387) | def GetRotationsAttr(self) -> pxr.Usd.Attribute: method GetScalesAttr (line 407) | def GetScalesAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 427) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetTransforms (line 436) | def GetTransforms(self, time: pxr.Usd.TimeCode | float | pxr.Sdf.TimeC... method GetTranslationsAttr (line 444) | def GetTranslationsAttr(self) -> pxr.Usd.Attribute: method SetTransforms (line 463) | def SetTransforms(self, xforms: pxr.Vt.Matrix4dArray | typing.Iterable... method _GetStaticTfType (line 471) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 472) | def __bool__(self) -> bool: ... class Binding (line 474) | class Binding(Boost.Python.instance): method __init__ (line 486) | def __init__(self) -> None: ... method __init__ (line 488) | def __init__(self, _skel: Skeleton, _skinningQueries: list[SkinningQue... method GetSkeleton (line 489) | def GetSkeleton(self) -> Skeleton: method GetSkinningTargets (line 493) | def GetSkinningTargets(self) -> list[SkinningQuery]: class BindingAPI (line 498) | class BindingAPI(pxr.Usd.APISchemaBase): method __init__ (line 515) | def __init__(self) -> None: ... method __init__ (line 517) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 527) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 536) | def Apply(prim: pxr.Usd.Prim) -> BindingAPI: method CanApply (line 559) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateAnimationSourceRel (line 584) | def CreateAnimationSourceRel(self) -> pxr.Usd.Relationship: method CreateBlendShapeTargetsRel (line 589) | def CreateBlendShapeTargetsRel(self) -> pxr.Usd.Relationship: method CreateBlendShapesAttr (line 594) | def CreateBlendShapesAttr(self, defaultValue: Any = ..., writeSparsely... method CreateGeomBindTransformAttr (line 604) | def CreateGeomBindTransformAttr(self, defaultValue: Any = ..., writeSp... method CreateJointIndicesAttr (line 614) | def CreateJointIndicesAttr(self, defaultValue: Any = ..., writeSparsel... method CreateJointIndicesPrimvar (line 624) | def CreateJointIndicesPrimvar(self, constant: bool, elementSize: int =... method CreateJointWeightsAttr (line 637) | def CreateJointWeightsAttr(self, defaultValue: Any = ..., writeSparsel... method CreateJointWeightsPrimvar (line 647) | def CreateJointWeightsPrimvar(self, constant: bool, elementSize: int =... method CreateJointsAttr (line 660) | def CreateJointsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateSkeletonRel (line 670) | def CreateSkeletonRel(self) -> pxr.Usd.Relationship: method CreateSkinningMethodAttr (line 675) | def CreateSkinningMethodAttr(self, defaultValue: Any = ..., writeSpars... method Get (line 686) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAnimationSource (line 699) | def GetAnimationSource(self) -> pxr.Usd.Prim: method GetAnimationSourceRel (line 710) | def GetAnimationSourceRel(self) -> pxr.Usd.Relationship: method GetBlendShapeTargetsRel (line 715) | def GetBlendShapeTargetsRel(self) -> pxr.Usd.Relationship: method GetBlendShapesAttr (line 724) | def GetBlendShapesAttr(self) -> pxr.Usd.Attribute: method GetGeomBindTransformAttr (line 752) | def GetGeomBindTransformAttr(self) -> pxr.Usd.Attribute: method GetInheritedAnimationSource (line 774) | def GetInheritedAnimationSource(self) -> pxr.Usd.Prim: method GetInheritedSkeleton (line 779) | def GetInheritedSkeleton(self) -> Skeleton: method GetJointIndicesAttr (line 783) | def GetJointIndicesAttr(self) -> pxr.Usd.Attribute: method GetJointIndicesPrimvar (line 807) | def GetJointIndicesPrimvar(self) -> pxr.UsdGeom.Primvar: method GetJointWeightsAttr (line 815) | def GetJointWeightsAttr(self) -> pxr.Usd.Attribute: method GetJointWeightsPrimvar (line 838) | def GetJointWeightsPrimvar(self) -> pxr.UsdGeom.Primvar: method GetJointsAttr (line 846) | def GetJointsAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 874) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSkeleton (line 883) | def GetSkeleton(self) -> Skeleton: method GetSkeletonRel (line 894) | def GetSkeletonRel(self) -> pxr.Usd.Relationship: method GetSkinningMethodAttr (line 899) | def GetSkinningMethodAttr(self) -> pxr.Usd.Attribute: method SetRigidJointInfluence (line 925) | def SetRigidJointInfluence(self, jointIndex: int, weight: float = ...)... method ValidateJointIndices (line 931) | def ValidateJointIndices(jointIndices: pxr.Vt.IntArray | typing.Iterab... method _GetStaticTfType (line 942) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 943) | def __bool__(self) -> bool: ... class BlendShape (line 945) | class BlendShape(pxr.Usd.Typed): method __init__ (line 954) | def __init__(self) -> None: ... method __init__ (line 956) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 966) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateInbetween (line 974) | def CreateInbetween(self, name: str | pxr.Ar.ResolvedPath) -> Inbetwee... method CreateNormalOffsetsAttr (line 993) | def CreateNormalOffsetsAttr(self, defaultValue: Any = ..., writeSparse... method CreateOffsetsAttr (line 1003) | def CreateOffsetsAttr(self, defaultValue: Any = ..., writeSparsely: bo... method CreatePointIndicesAttr (line 1013) | def CreatePointIndicesAttr(self, defaultValue: Any = ..., writeSparsel... method Define (line 1024) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1050) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetAuthoredInbetweens (line 1063) | def GetAuthoredInbetweens(self) -> list[InbetweenShape]: method GetInbetween (line 1068) | def GetInbetween(self, name: str | pxr.Ar.ResolvedPath) -> InbetweenSh... method GetInbetweens (line 1082) | def GetInbetweens(self) -> list[InbetweenShape]: method GetNormalOffsetsAttr (line 1087) | def GetNormalOffsetsAttr(self) -> pxr.Usd.Attribute: method GetOffsetsAttr (line 1111) | def GetOffsetsAttr(self) -> pxr.Usd.Attribute: method GetPointIndicesAttr (line 1135) | def GetPointIndicesAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1162) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method HasInbetween (line 1171) | def HasInbetween(self, name: str | pxr.Ar.ResolvedPath) -> bool: method ValidatePointIndices (line 1182) | def ValidatePointIndices(pointIndices: pxr.Vt.IntArray | typing.Iterab... method _GetStaticTfType (line 1193) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1194) | def __bool__(self) -> bool: ... class BlendShapeQuery (line 1196) | class BlendShapeQuery(Boost.Python.instance): method __init__ (line 1203) | def __init__(self) -> None: ... method __init__ (line 1205) | def __init__(self, _binding: BindingAPI, /) -> None: ... method ComputeBlendShapePointIndices (line 1206) | def ComputeBlendShapePointIndices(self) -> list[pxr.Vt.IntArray]: method ComputeDeformedPoints (line 1215) | def ComputeDeformedPoints(self, subShapeWeights: pxr.Vt.FloatArray | t... method ComputeSubShapePointOffsets (line 1226) | def ComputeSubShapePointOffsets(self) -> list[pxr.Vt.Vec3fArray]: method ComputeSubShapeWeights (line 1236) | def ComputeSubShapeWeights(self, _weights: pxr.Vt.FloatArray | typing.... method GetBlendShape (line 1250) | def GetBlendShape(self, _blendShapeIndex: int, /) -> BlendShape: method GetBlendShapeIndex (line 1254) | def GetBlendShapeIndex(self, _subShapeIndex: int, /) -> int: method GetInbetween (line 1258) | def GetInbetween(self, _subShapeIndex: int, /) -> InbetweenShape: method GetNumBlendShapes (line 1262) | def GetNumBlendShapes(self) -> int: ... method GetNumSubShapes (line 1263) | def GetNumSubShapes(self) -> int: ... class Cache (line 1265) | class Cache(Boost.Python.instance): method __init__ (line 1275) | def __init__(self) -> None: ... method Clear (line 1276) | def Clear(self) -> None: ... method ComputeSkelBinding (line 1277) | def ComputeSkelBinding(self, skelRoot: Root, skel: Skeleton, predicate... method ComputeSkelBindings (line 1286) | def ComputeSkelBindings(self, skelRoot: Root, predicate: pxr.Usd._Prim... method GetAnimQuery (line 1296) | def GetAnimQuery(self, anim: Animation) -> AnimQuery: method GetAnimQuery (line 1304) | def GetAnimQuery(self, prim: pxr.Usd.Prim) -> AnimQuery: method GetSkelQuery (line 1312) | def GetSkelQuery(self, _skel: Skeleton, /) -> SkeletonQuery: method GetSkinningQuery (line 1319) | def GetSkinningQuery(self, _prim: pxr.Usd.Prim, /) -> SkinningQuery: method Populate (line 1331) | def Populate(self, skelRoot: Root, predicate: pxr.Usd._PrimFlagsPredic... class InbetweenShape (line 1342) | class InbetweenShape(Boost.Python.instance): method __init__ (line 1360) | def __init__(self) -> None: method __init__ (line 1365) | def __init__(self, attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTar... method CreateNormalOffsetsAttr (line 1379) | def CreateNormalOffsetsAttr(self, _defaultValue: Any, /) -> pxr.Usd.At... method GetAttr (line 1384) | def GetAttr(self) -> pxr.Usd.Attribute: method GetNormalOffsets (line 1388) | def GetNormalOffsets(self) -> pxr.Vt.Vec3fArray: method GetNormalOffsetsAttr (line 1395) | def GetNormalOffsetsAttr(self) -> pxr.Usd.Attribute: method GetOffsets (line 1403) | def GetOffsets(self) -> pxr.Vt.Vec3fArray: method GetWeight (line 1407) | def GetWeight(self) -> float: method HasAuthoredWeight (line 1411) | def HasAuthoredWeight(self) -> bool: method IsDefined (line 1419) | def IsDefined(self) -> bool: method IsInbetween (line 1425) | def IsInbetween(attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTarget... method SetNormalOffsets (line 1434) | def SetNormalOffsets(self, offsets: pxr.Vt.Vec3fArray | typing.Iterabl... method SetOffsets (line 1438) | def SetOffsets(self, offsets: pxr.Vt.Vec3fArray | typing.Iterable[list... method SetWeight (line 1442) | def SetWeight(self, weight: float) -> bool: method __bool__ (line 1446) | def __bool__(self) -> bool: method __eq__ (line 1451) | def __eq__(self, other: object) -> bool: ... class Root (line 1453) | class Root(pxr.UsdGeom.Boundable): method __init__ (line 1466) | def __init__(self) -> None: ... method __init__ (line 1468) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1478) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Define (line 1487) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Find (line 1513) | def Find(_prim: pxr.Usd.Prim, /) -> Root: method Get (line 1519) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 1533) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1543) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1544) | def __bool__(self) -> bool: ... class Skeleton (line 1546) | class Skeleton(pxr.UsdGeom.Boundable): method __init__ (line 1555) | def __init__(self) -> None: ... method __init__ (line 1557) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 1567) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateBindTransformsAttr (line 1575) | def CreateBindTransformsAttr(self, defaultValue: Any = ..., writeSpars... method CreateJointNamesAttr (line 1585) | def CreateJointNamesAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateJointsAttr (line 1595) | def CreateJointsAttr(self, defaultValue: Any = ..., writeSparsely: boo... method CreateRestTransformsAttr (line 1605) | def CreateRestTransformsAttr(self, defaultValue: Any = ..., writeSpars... method Define (line 1616) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 1642) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetBindTransformsAttr (line 1655) | def GetBindTransformsAttr(self) -> pxr.Usd.Attribute: method GetJointNamesAttr (line 1678) | def GetJointNamesAttr(self) -> pxr.Usd.Attribute: method GetJointsAttr (line 1702) | def GetJointsAttr(self) -> pxr.Usd.Attribute: method GetRestTransformsAttr (line 1730) | def GetRestTransformsAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 1757) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 1767) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 1768) | def __bool__(self) -> bool: ... class SkeletonQuery (line 1770) | class SkeletonQuery(Boost.Python.instance): method __init__ (line 1792) | def __init__(self, *args, **kwargs) -> None: method ComputeJointLocalTransforms (line 1796) | def ComputeJointLocalTransforms(self, time: pxr.Usd.TimeCode | float |... method ComputeJointRestRelativeTransforms (line 1809) | def ComputeJointRestRelativeTransforms(self, time: pxr.Usd.TimeCode | ... method ComputeJointSkelTransforms (line 1820) | def ComputeJointSkelTransforms(self, time: pxr.Usd.TimeCode | float | ... method ComputeJointWorldTransforms (line 1831) | def ComputeJointWorldTransforms(self, time: pxr.UsdGeom.XformCache = .... method ComputeSkinningTransforms (line 1843) | def ComputeSkinningTransforms(self, time: pxr.Usd.TimeCode | float | p... method GetAnimQuery (line 1855) | def GetAnimQuery(self) -> AnimQuery: method GetJointOrder (line 1860) | def GetJointOrder(self) -> pxr.Vt.TokenArray: method GetJointWorldBindTransforms (line 1869) | def GetJointWorldBindTransforms(self) -> pxr.Vt.Matrix4dArray: method GetMapper (line 1873) | def GetMapper(self) -> AnimMapper: method GetPrim (line 1878) | def GetPrim(self) -> pxr.Usd.Prim: method GetSkeleton (line 1883) | def GetSkeleton(self) -> Skeleton: method GetTopology (line 1887) | def GetTopology(self) -> Topology: method HasBindPose (line 1891) | def HasBindPose(self) -> bool: method HasRestPose (line 1897) | def HasRestPose(self) -> bool: method __bool__ (line 1903) | def __bool__(self) -> bool: method __eq__ (line 1907) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 1908) | def __hash__(self) -> int: ... method __ne__ (line 1909) | def __ne__(self, other: object) -> bool: ... class SkinningQuery (line 1911) | class SkinningQuery(Boost.Python.instance): method __init__ (line 1916) | def __init__(self) -> None: ... method ComputeExtentsPadding (line 1918) | def ComputeExtentsPadding(self, skelRestXforms: SkinningQuery, boundab... method ComputeExtentsPadding (line 1920) | def ComputeExtentsPadding(self, skelRestXforms: SkinningQuery, boundab... method ComputeJointInfluences (line 1921) | def ComputeJointInfluences(self, time: pxr.Usd.TimeCode | float | pxr.... method ComputeSkinnedPoints (line 1931) | def ComputeSkinnedPoints(self, xforms: pxr.Vt.Matrix4fArray | typing.I... method ComputeSkinnedPoints (line 1945) | def ComputeSkinnedPoints(self, xforms: pxr.Vt.Matrix4dArray | typing.I... method ComputeSkinnedTransform (line 1947) | def ComputeSkinnedTransform(self, xforms: pxr.Vt.Matrix4fArray | typin... method ComputeSkinnedTransform (line 1963) | def ComputeSkinnedTransform(self, xforms: pxr.Vt.Matrix4dArray | typin... method ComputeVaryingJointInfluences (line 1964) | def ComputeVaryingJointInfluences(self, numPoints: int, time: pxr.Usd.... method GetBlendShapeMapper (line 1974) | def GetBlendShapeMapper(self) -> AnimMapper: method GetBlendShapeOrder (line 1985) | def GetBlendShapeOrder(self) -> pxr.Vt.TokenArray: method GetBlendShapeTargetsRel (line 1989) | def GetBlendShapeTargetsRel(self) -> pxr.Usd.Relationship: ... method GetBlendShapesAttr (line 1990) | def GetBlendShapesAttr(self) -> pxr.Usd.Attribute: ... method GetGeomBindTransform (line 1991) | def GetGeomBindTransform(self, time: pxr.Usd.TimeCode | float | pxr.Sd... method GetGeomBindTransformAttr (line 1992) | def GetGeomBindTransformAttr(self) -> pxr.Usd.Attribute: ... method GetInterpolation (line 1993) | def GetInterpolation(self) -> str: ... method GetJointIndicesPrimvar (line 1994) | def GetJointIndicesPrimvar(self) -> pxr.UsdGeom.Primvar: ... method GetJointMapper (line 1995) | def GetJointMapper(self) -> AnimMapper: method GetJointOrder (line 2006) | def GetJointOrder(self) -> pxr.Vt.TokenArray: method GetJointWeightsPrimvar (line 2010) | def GetJointWeightsPrimvar(self) -> pxr.UsdGeom.Primvar: ... method GetMapper (line 2011) | def GetMapper(self) -> AnimMapper: method GetNumInfluencesPerComponent (line 2017) | def GetNumInfluencesPerComponent(self) -> int: method GetPrim (line 2028) | def GetPrim(self) -> pxr.Usd.Prim: ... method GetSkinningMethod (line 2029) | def GetSkinningMethod(self) -> str: ... method GetSkinningMethodAttr (line 2030) | def GetSkinningMethodAttr(self) -> pxr.Usd.Attribute: ... method GetTimeSamples (line 2031) | def GetTimeSamples(self) -> list[float]: method GetTimeSamplesInInterval (line 2041) | def GetTimeSamplesInInterval(self, _interval: pxr.Gf.Interval, /) -> l... method HasBlendShapes (line 2051) | def HasBlendShapes(self) -> bool: method HasJointInfluences (line 2055) | def HasJointInfluences(self) -> bool: method IsRigidlyDeformed (line 2059) | def IsRigidlyDeformed(self) -> bool: method __bool__ (line 2064) | def __bool__(self) -> bool: class Tokens (line 2069) | class Tokens(Boost.Python.instance): method __init__ (line 2099) | def __init__(self, *args, **kwargs) -> None: class Topology (line 2104) | class Topology(Boost.Python.instance): method __init__ (line 2113) | def __init__(self, _parentIndices: pxr.Vt.IntArray | typing.Iterable[i... method __init__ (line 2122) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 2124) | def __init__(self, arg2: pxr.Vt.TokenArray | typing.Iterable[pxr.Ar.Re... method GetNumJoints (line 2125) | def GetNumJoints(self) -> int: ... method GetParent (line 2126) | def GetParent(self, _index: int, /) -> int: method GetParentIndices (line 2131) | def GetParentIndices(self) -> pxr.Vt.IntArray: ... method IsRoot (line 2132) | def IsRoot(self, _index: int, /) -> bool: method Validate (line 2136) | def Validate(self) -> tuple: method __len__ (line 2144) | def __len__(self) -> int: ... class _CanApplyResult (line 2146) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 2148) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 2149) | def __bool__(self) -> bool: ... method __eq__ (line 2150) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2151) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 2152) | def __ne__(self, other: object) -> bool: ... method whyNot (line 2154) | def whyNot(self): ... function ApplyBlendShape (line 2156) | def ApplyBlendShape(weight: float, offsets: pxr.Vt.Vec3fArray | typing.I... function BakeSkinning (line 2167) | def BakeSkinning(root: Root, interval: pxr.Gf.Interval = ...) -> bool: function BakeSkinning (line 2179) | def BakeSkinning(range: pxr.Usd.PrimRange, interval: pxr.Gf.Interval = .... function ComputeJointLocalTransforms (line 2191) | def ComputeJointLocalTransforms(topology: Topology, xforms: pxr.Vt.Matri... function ComputeJointLocalTransforms (line 2202) | def ComputeJointLocalTransforms(topology: Topology, xforms: pxr.Vt.Matri... function ComputeJointLocalTransforms (line 2213) | def ComputeJointLocalTransforms(topology: Topology, xforms: pxr.Vt.Matri... function ComputeJointLocalTransforms (line 2215) | def ComputeJointLocalTransforms(topology: Topology, xforms: pxr.Vt.Matri... function ComputeJointLocalTransforms (line 2217) | def ComputeJointLocalTransforms(topology: Topology, xforms: pxr.Vt.Matri... function ComputeJointLocalTransforms (line 2219) | def ComputeJointLocalTransforms(topology: Topology, xforms: pxr.Vt.Matri... function ComputeJointsExtent (line 2221) | def ComputeJointsExtent(xforms: pxr.Vt.Matrix4dArray | typing.Iterable[p... function ComputeJointsExtent (line 2223) | def ComputeJointsExtent(xforms: pxr.Vt.Matrix4fArray | typing.Iterable[p... function ConcatJointTransforms (line 2225) | def ConcatJointTransforms(_topology: Topology, /, topology: pxr.Vt.Matri... function ConcatJointTransforms (line 2236) | def ConcatJointTransforms(arg1: Topology, /, topology: pxr.Vt.Matrix4fAr... function ConcatJointTransforms (line 2238) | def ConcatJointTransforms(topology: Topology, jointLocalXforms: pxr.Vt.M... function DecomposeTransform (line 2240) | def DecomposeTransform(_xform: pxr.Gf.Matrix4d, /) -> tuple: function DecomposeTransform (line 2248) | def DecomposeTransform(_xform: pxr.Gf.Matrix4f, /) -> tuple: function DecomposeTransforms (line 2254) | def DecomposeTransforms(_xforms: pxr.Vt.Matrix4dArray | typing.Iterable[... function DecomposeTransforms (line 2265) | def DecomposeTransforms(_count: pxr.Vt.Matrix4fArray | typing.Iterable[p... function ExpandConstantInfluencesToVarying (line 2276) | def ExpandConstantInfluencesToVarying(array: pxr.Vt.IntArray | typing.It... function ExpandConstantInfluencesToVarying (line 2288) | def ExpandConstantInfluencesToVarying(array: pxr.Vt.FloatArray | typing.... function InterleaveInfluences (line 2293) | def InterleaveInfluences(indices: pxr.Vt.IntArray | typing.Iterable[int]... function IsSkelAnimationPrim (line 2298) | def IsSkelAnimationPrim(prim: pxr.Usd.Prim) -> bool: function IsSkinnablePrim (line 2302) | def IsSkinnablePrim(prim: pxr.Usd.Prim) -> bool: function MakeTransform (line 2311) | def MakeTransform(translate: pxr.Gf.Vec3f | list[float] | tuple[float, f... function MakeTransforms (line 2316) | def MakeTransforms(translations: pxr.Vt.Vec3fArray | typing.Iterable[lis... function NormalizeWeights (line 2326) | def NormalizeWeights(weights: pxr.Vt.FloatArray | typing.Iterable[float]... function ResizeInfluences (line 2336) | def ResizeInfluences(array: pxr.Vt.IntArray | typing.Iterable[int], srcN... function ResizeInfluences (line 2349) | def ResizeInfluences(array: pxr.Vt.FloatArray | typing.Iterable[float], ... function SkinNormals (line 2355) | def SkinNormals(skinningMethod: str | pxr.Ar.ResolvedPath, geomBindTrans... function SkinNormals (line 2361) | def SkinNormals(skinningMethod: str | pxr.Ar.ResolvedPath, geomBindTrans... function SkinNormals (line 2367) | def SkinNormals(skinningMethod: str | pxr.Ar.ResolvedPath, geomBindTrans... function SkinNormals (line 2382) | def SkinNormals(skinningMethod: str | pxr.Ar.ResolvedPath, geomBindTrans... function SkinNormalsLBS (line 2388) | def SkinNormalsLBS(geomBindTransform: pxr.Gf.Matrix3d, jointXforms: pxr.... function SkinNormalsLBS (line 2394) | def SkinNormalsLBS(geomBindTransform: pxr.Gf.Matrix3f, jointXforms: pxr.... function SkinNormalsLBS (line 2400) | def SkinNormalsLBS(geomBindTransform: pxr.Gf.Matrix3d, jointXforms: pxr.... function SkinNormalsLBS (line 2402) | def SkinNormalsLBS(geomBindTransform: pxr.Gf.Matrix3f, jointXforms: pxr.... function SkinPoints (line 2408) | def SkinPoints(skinningMethod: object, geomBindTransform: pxr.Gf.Matrix4... function SkinPoints (line 2410) | def SkinPoints(skinningMethod: object, geomBindTransform: pxr.Gf.Matrix4... function SkinPoints (line 2412) | def SkinPoints(skinningMethod: object, geomBindTransform: pxr.Gf.Matrix4... function SkinPoints (line 2414) | def SkinPoints(skinningMethod: object, geomBindTransform: pxr.Gf.Matrix4... function SkinPointsLBS (line 2416) | def SkinPointsLBS(geomBindTransform: pxr.Gf.Matrix4d, jointXforms: pxr.V... function SkinPointsLBS (line 2418) | def SkinPointsLBS(geomBindTransform: pxr.Gf.Matrix4d, jointXforms: pxr.V... function SkinPointsLBS (line 2420) | def SkinPointsLBS(geomBindTransform: pxr.Gf.Matrix4f, jointXforms: pxr.V... function SkinPointsLBS (line 2422) | def SkinPointsLBS(geomBindTransform: pxr.Gf.Matrix4f, jointXforms: pxr.V... function SkinTransform (line 2424) | def SkinTransform(skinningMethod: object, geomBindTransform: pxr.Gf.Matr... function SkinTransform (line 2426) | def SkinTransform(skinningMethod: object, geomBindTransform: pxr.Gf.Matr... function SkinTransform (line 2428) | def SkinTransform(skinningMethod: object, geomBindTransform: pxr.Gf.Matr... function SkinTransform (line 2430) | def SkinTransform(skinningMethod: object, geomBindTransform: pxr.Gf.Matr... function SkinTransformLBS (line 2432) | def SkinTransformLBS(geomBindTransform: pxr.Gf.Matrix4d, jointXforms: px... function SkinTransformLBS (line 2434) | def SkinTransformLBS(geomBindTransform: pxr.Gf.Matrix4d, jointXforms: px... function SkinTransformLBS (line 2436) | def SkinTransformLBS(geomBindTransform: pxr.Gf.Matrix4f, jointXforms: px... function SkinTransformLBS (line 2438) | def SkinTransformLBS(geomBindTransform: pxr.Gf.Matrix4f, jointXforms: px... function SortInfluences (line 2439) | def SortInfluences(indices: pxr.Vt.IntArray | typing.Iterable[int], weig... FILE: usd/stubs/pxr-stubs/UsdUI/__init__.pyi class Backdrop (line 10) | class Backdrop(pxr.Usd.Typed): method __init__ (line 41) | def __init__(self) -> None: ... method __init__ (line 43) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 53) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateDescriptionAttr (line 61) | def CreateDescriptionAttr(self, defaultValue: Any = ..., writeSparsely... method Define (line 72) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 98) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDescriptionAttr (line 111) | def GetDescriptionAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 135) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 145) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 146) | def __bool__(self) -> bool: ... class NodeGraphNodeAPI (line 148) | class NodeGraphNodeAPI(pxr.Usd.APISchemaBase): method __init__ (line 160) | def __init__(self) -> None: ... method __init__ (line 162) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 172) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 181) | def Apply(prim: pxr.Usd.Prim) -> NodeGraphNodeAPI: method CanApply (line 204) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateDisplayColorAttr (line 229) | def CreateDisplayColorAttr(self, defaultValue: Any = ..., writeSparsel... method CreateExpansionStateAttr (line 239) | def CreateExpansionStateAttr(self, defaultValue: Any = ..., writeSpars... method CreateIconAttr (line 249) | def CreateIconAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreatePosAttr (line 259) | def CreatePosAttr(self, defaultValue: Any = ..., writeSparsely: bool =... method CreateSizeAttr (line 269) | def CreateSizeAttr(self, defaultValue: Any = ..., writeSparsely: bool ... method CreateStackingOrderAttr (line 279) | def CreateStackingOrderAttr(self, defaultValue: Any = ..., writeSparse... method Get (line 290) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDisplayColorAttr (line 303) | def GetDisplayColorAttr(self) -> pxr.Usd.Attribute: method GetExpansionStateAttr (line 325) | def GetExpansionStateAttr(self) -> pxr.Usd.Attribute: method GetIconAttr (line 353) | def GetIconAttr(self) -> pxr.Usd.Attribute: method GetPosAttr (line 378) | def GetPosAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 412) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetSizeAttr (line 421) | def GetSizeAttr(self) -> pxr.Usd.Attribute: method GetStackingOrderAttr (line 447) | def GetStackingOrderAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 476) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 477) | def __bool__(self) -> bool: ... class SceneGraphPrimAPI (line 479) | class SceneGraphPrimAPI(pxr.Usd.APISchemaBase): method __init__ (line 491) | def __init__(self) -> None: ... method __init__ (line 493) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 503) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Apply (line 512) | def Apply(prim: pxr.Usd.Prim) -> SceneGraphPrimAPI: method CanApply (line 535) | def CanApply(prim: pxr.Usd.Prim) -> _CanApplyResult: method CreateDisplayGroupAttr (line 560) | def CreateDisplayGroupAttr(self, defaultValue: Any = ..., writeSparsel... method CreateDisplayNameAttr (line 570) | def CreateDisplayNameAttr(self, defaultValue: Any = ..., writeSparsely... method Get (line 581) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetDisplayGroupAttr (line 594) | def GetDisplayGroupAttr(self) -> pxr.Usd.Attribute: method GetDisplayNameAttr (line 620) | def GetDisplayNameAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 644) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 654) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 655) | def __bool__(self) -> bool: ... class Tokens (line 657) | class Tokens(Boost.Python.instance): method __init__ (line 673) | def __init__(self, *args, **kwargs) -> None: class _CanApplyResult (line 678) | class _CanApplyResult(Boost.Python.instance): method __init__ (line 680) | def __init__(self, arg2: bool, arg3: object, /) -> None: ... method __bool__ (line 681) | def __bool__(self) -> bool: ... method __eq__ (line 682) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 683) | def __getitem__(self, arg2: int, /) -> Any: ... method __ne__ (line 684) | def __ne__(self, other: object) -> bool: ... method whyNot (line 686) | def whyNot(self): ... FILE: usd/stubs/pxr-stubs/UsdUtils/__init__.pyi class CoalescingDiagnosticDelegate (line 19) | class CoalescingDiagnosticDelegate(Boost.Python.instance): method __init__ (line 30) | def __init__(self) -> None: ... method DumpCoalescedDiagnosticsToStderr (line 31) | def DumpCoalescedDiagnosticsToStderr(self) -> None: ... method DumpCoalescedDiagnosticsToStdout (line 32) | def DumpCoalescedDiagnosticsToStdout(self) -> None: ... method DumpUncoalescedDiagnostics (line 33) | def DumpUncoalescedDiagnostics(self) -> None: ... method TakeCoalescedDiagnostics (line 34) | def TakeCoalescedDiagnostics(self) -> list[CoalescingDiagnosticDelegate]: method TakeUncoalescedDiagnostics (line 42) | def TakeUncoalescedDiagnostics(self) -> list[[pxr.Tf.DiagnosticBase]]:... class CoalescingDiagnosticDelegateItem (line 51) | class CoalescingDiagnosticDelegateItem(Boost.Python.instance): method __init__ (line 57) | def __init__(self, *args, **kwargs) -> None: method sharedItem (line 62) | def sharedItem(self): ... method unsharedItems (line 64) | def unsharedItems(self): ... class CoalescingDiagnosticDelegateSharedItem (line 66) | class CoalescingDiagnosticDelegateSharedItem(Boost.Python.instance): method __init__ (line 71) | def __init__(self, *args, **kwargs) -> None: method sourceFileName (line 76) | def sourceFileName(self): ... method sourceFunction (line 78) | def sourceFunction(self): ... method sourceLineNumber (line 80) | def sourceLineNumber(self): ... class CoalescingDiagnosticDelegateUnsharedItem (line 82) | class CoalescingDiagnosticDelegateUnsharedItem(Boost.Python.instance): method __init__ (line 86) | def __init__(self, *args, **kwargs) -> None: method commentary (line 91) | def commentary(self): ... method context (line 93) | def context(self): ... class ConditionalAbortDiagnosticDelegate (line 95) | class ConditionalAbortDiagnosticDelegate(Boost.Python.instance): method __init__ (line 124) | def __init__(self, _includeFilters: ConditionalAbortDiagnosticDelegate... class ConditionalAbortDiagnosticDelegateErrorFilters (line 135) | class ConditionalAbortDiagnosticDelegateErrorFilters(Boost.Python.instan... method __init__ (line 145) | def __init__(self) -> None: ... method __init__ (line 147) | def __init__(self, _stringFilters: typing.Iterable[str | pxr.Ar.Resolv... method GetCodePathFilters (line 148) | def GetCodePathFilters(self) -> list[str]: ... method GetStringFilters (line 149) | def GetStringFilters(self) -> list[str]: ... method SetCodePathFilters (line 150) | def SetCodePathFilters(self, codePathFilters: typing.Iterable[str | px... method SetStringFilters (line 151) | def SetStringFilters(self, stringFilters: typing.Iterable[str | pxr.Ar... class DependencyInfo (line 153) | class DependencyInfo(Boost.Python.instance): method __init__ (line 166) | def __init__(self) -> None: ... method __init__ (line 168) | def __init__(self, _assetPath: str | pxr.Ar.ResolvedPath, /) -> None: ... method __init__ (line 170) | def __init__(self, _assetPath: str | pxr.Ar.ResolvedPath, _dependencie... method __init__ (line 172) | def __init__(self, arg2: DependencyInfo, /) -> None: ... method assetPath (line 174) | def assetPath(self) -> str: method dependencies (line 198) | def dependencies(self) -> list[str]: class RegisteredVariantSet (line 214) | class RegisteredVariantSet(Boost.Python.instance): class SelectionExportPolicy (line 226) | class SelectionExportPolicy(Boost.Python.enum): method __init__ (line 232) | def __init__(self, *args, **kwargs) -> None: method name (line 237) | def name(self): ... method selectionExportPolicy (line 239) | def selectionExportPolicy(self): ... class SparseAttrValueWriter (line 241) | class SparseAttrValueWriter(Boost.Python.instance): method __init__ (line 287) | def __init__(self, attr: pxr.Usd.Attribute | pxr.UsdGeom.ConstraintTar... method SetTimeSample (line 302) | def SetTimeSample(self, value: Any, time: pxr.Usd.TimeCode | float | p... class SparseValueWriter (line 318) | class SparseValueWriter(Boost.Python.instance): method __init__ (line 389) | def __init__(self) -> None: ... method GetSparseAttrValueWriters (line 390) | def GetSparseAttrValueWriters(self) -> list[SparseAttrValueWriter]: method SetAttribute (line 395) | def SetAttribute(self, attr: pxr.Usd.Attribute | pxr.UsdGeom.Constrain... class StageCache (line 407) | class StageCache(Boost.Python.instance): method __init__ (line 417) | def __init__(self) -> None: ... method Get (line 419) | def Get() -> pxr.Usd.StageCache: method GetSessionLayerForVariantSelections (line 424) | def GetSessionLayerForVariantSelections(_modelName: str | pxr.Ar.Resol... class TimeCodeRange (line 432) | class TimeCodeRange(Boost.Python.instance): class Tokens (line 454) | class Tokens(Boost.Python.instance): method __init__ (line 458) | def __init__(self, *args, **kwargs) -> None: class _Iterator (line 463) | class _Iterator(Boost.Python.instance): method __init__ (line 464) | def __init__(self, *args, **kwargs) -> None: method __iter__ (line 468) | def __iter__(self) -> typing_extensions.Self: ... method __next__ (line 469) | def __next__(self) -> pxr.Usd.TimeCode: ... method __init__ (line 472) | def __init__(self) -> None: method __init__ (line 481) | def __init__(self, timeCode: pxr.Usd.TimeCode | float | pxr.Sdf.TimeCo... method __init__ (line 489) | def __init__(self, startTimeCode: pxr.Usd.TimeCode | float | pxr.Sdf.T... method __init__ (line 499) | def __init__(self, startTimeCode: pxr.Usd.TimeCode | float | pxr.Sdf.T... method CreateFromFrameSpec (line 514) | def CreateFromFrameSpec(_frameSpec: str | pxr.Ar.ResolvedPath, /) -> T... method IsValid (line 543) | def IsValid(self) -> bool: method empty (line 548) | def empty(self) -> bool: ... method __bool__ (line 549) | def __bool__(self) -> bool: method __eq__ (line 554) | def __eq__(self, other: object) -> bool: method __iter__ (line 558) | def __iter__(self) -> _Iterator: ... method __ne__ (line 559) | def __ne__(self, other: object) -> bool: ... method endTimeCode (line 561) | def endTimeCode(self) -> pxr.Usd.TimeCode: method frameSpec (line 566) | def frameSpec(self): ... method startTimeCode (line 568) | def startTimeCode(self) -> pxr.Usd.TimeCode: method stride (line 573) | def stride(self) -> float: class UsdStageStatsKeys (line 578) | class UsdStageStatsKeys(Boost.Python.instance): method __init__ (line 596) | def __init__(self, *args, **kwargs) -> None: function AuthorCollection (line 601) | def AuthorCollection(collectionName: str | pxr.Ar.ResolvedPath, usdPrim:... function ComputeAllDependencies (line 612) | def ComputeAllDependencies(assetPath: pxr.Sdf.AssetPath | str, processin... function ComputeCollectionIncludesAndExcludes (line 634) | def ComputeCollectionIncludesAndExcludes(includedRootPaths: typing.Itera... function ComputeUsdStageStats (line 684) | def ComputeUsdStageStats(_rootLayerPath: str | pxr.Ar.ResolvedPath, /) -... function ComputeUsdStageStats (line 745) | def ComputeUsdStageStats(_stage: pxr.Usd.Stage, /) -> tuple[int, dict]: function CopyLayerMetadata (line 755) | def CopyLayerMetadata(source: pxr.Sdf.Layer, destination: pxr.Sdf.Layer,... function CreateCollections (line 777) | def CreateCollections(assignments: typing.Iterable[tuple[str | pxr.Ar.Re... function CreateNewARKitUsdzPackage (line 822) | def CreateNewARKitUsdzPackage(assetPath: pxr.Sdf.AssetPath | str, usdzFi... function CreateNewUsdzPackage (line 871) | def CreateNewUsdzPackage(assetPath: pxr.Sdf.AssetPath | str, usdzFilePat... function ExtractExternalReferences (line 919) | def ExtractExternalReferences(filePath: str | pxr.Ar.ResolvedPath) -> tu... function FlattenLayerStack (line 939) | def FlattenLayerStack(stage: pxr.Usd.Stage, tag: str | pxr.Ar.ResolvedPa... function FlattenLayerStack (line 966) | def FlattenLayerStack(stage: pxr.Usd.Stage, resolveAssetPathFn: ResolveA... function FlattenLayerStackResolveAssetPath (line 995) | def FlattenLayerStackResolveAssetPath(sourceLayer: pxr.Sdf.Layer, assetP... function GenerateClipManifestName (line 1008) | def GenerateClipManifestName(rootLayerName: str | pxr.Ar.ResolvedPath) -... function GenerateClipTopologyName (line 1021) | def GenerateClipTopologyName(rootLayerName: str | pxr.Ar.ResolvedPath) -... function GetAlphaAttributeNameForColor (line 1034) | def GetAlphaAttributeNameForColor(colorAttrName: str | pxr.Ar.ResolvedPa... function GetDirtyLayers (line 1040) | def GetDirtyLayers(stage: pxr.Usd.Stage, includeClipLayers: bool = ...) ... function GetMaterialsScopeName (line 1044) | def GetMaterialsScopeName(forceDefault: bool = ...) -> str: function GetModelNameFromRootLayer (line 1062) | def GetModelNameFromRootLayer(_rootLayer: pxr.Sdf.Layer, /) -> str: function GetPrefName (line 1070) | def GetPrefName() -> str: function GetPrimAtPathWithForwarding (line 1077) | def GetPrimAtPathWithForwarding(stage: pxr.Usd.Stage, path: pxr.Sdf.Path... function GetPrimaryCameraName (line 1093) | def GetPrimaryCameraName(forceDefault: bool = ...) -> str: function GetPrimaryUVSetName (line 1112) | def GetPrimaryUVSetName() -> str: function GetRegisteredVariantSets (line 1119) | def GetRegisteredVariantSets() -> list[RegisteredVariantSet]: function LocalizeAsset (line 1164) | def LocalizeAsset(assetPath: pxr.Sdf.AssetPath | str, localizationDirect... function ModifyAssetPaths (line 1215) | def ModifyAssetPaths(layer: pxr.Sdf.Layer, modifyFn: ModifyAssetPathFn) ... function StitchClips (line 1229) | def StitchClips(resultLayer: pxr.Sdf.Layer, clipLayerFiles: typing.Itera... function StitchClipsManifest (line 1301) | def StitchClipsManifest(manifestLayer: pxr.Sdf.Layer, topologyLayer: pxr... function StitchClipsTemplate (line 1321) | def StitchClipsTemplate(resultLayer: pxr.Sdf.Layer, topologyLayer: pxr.S... function StitchClipsTopology (line 1370) | def StitchClipsTopology(topologyLayer: pxr.Sdf.Layer, clipLayerFiles: ty... function StitchInfo (line 1385) | def StitchInfo(strongObj: pxr.Sdf.Spec, weakObj: pxr.Sdf.Spec) -> None: function StitchLayers (line 1393) | def StitchLayers(strongLayer: pxr.Sdf.Layer, weakLayer: pxr.Sdf.Layer) -... function UninstancePrimAtPath (line 1422) | def UninstancePrimAtPath(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.... FILE: usd/stubs/pxr-stubs/UsdUtils/complianceChecker.pyi class NodeTypes (line 5) | class NodeTypes(ConstantsGroup): class ShaderProps (line 11) | class ShaderProps(ConstantsGroup): function _IsPackageOrPackagedLayer (line 18) | def _IsPackageOrPackagedLayer(layer): ... class BaseRuleChecker (line 20) | class BaseRuleChecker: method __init__ (line 28) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method _AddFailedCheck (line 29) | def _AddFailedCheck(self, msg) -> None: ... method _AddError (line 30) | def _AddError(self, msg) -> None: ... method _AddWarning (line 31) | def _AddWarning(self, msg) -> None: ... method _Msg (line 32) | def _Msg(self, msg) -> None: ... method GetFailedChecks (line 33) | def GetFailedChecks(self): ... method GetErrors (line 34) | def GetErrors(self): ... method GetWarnings (line 35) | def GetWarnings(self): ... method CheckStage (line 36) | def CheckStage(self, usdStage) -> None: method CheckDiagnostics (line 38) | def CheckDiagnostics(self, diagnostics) -> None: method CheckUnresolvedPaths (line 43) | def CheckUnresolvedPaths(self, unresolvedPaths) -> None: method CheckDependencies (line 47) | def CheckDependencies(self, usdStage, layerDeps, assetDeps) -> None: method CheckLayer (line 51) | def CheckLayer(self, layer) -> None: method CheckZipFile (line 53) | def CheckZipFile(self, zipFile, packagePath) -> None: method CheckPrim (line 57) | def CheckPrim(self, prim) -> None: method ResetCaches (line 61) | def ResetCaches(self) -> None: class ByteAlignmentChecker (line 66) | class ByteAlignmentChecker(BaseRuleChecker): method GetDescription (line 68) | def GetDescription(): ... method __init__ (line 69) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckZipFile (line 70) | def CheckZipFile(self, zipFile, packagePath) -> None: ... class CompressionChecker (line 72) | class CompressionChecker(BaseRuleChecker): method GetDescription (line 74) | def GetDescription(): ... method __init__ (line 75) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckZipFile (line 76) | def CheckZipFile(self, zipFile, packagePath) -> None: ... class MissingReferenceChecker (line 78) | class MissingReferenceChecker(BaseRuleChecker): method GetDescription (line 80) | def GetDescription(): ... method __init__ (line 81) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckDiagnostics (line 82) | def CheckDiagnostics(self, diagnostics) -> None: ... method CheckUnresolvedPaths (line 83) | def CheckUnresolvedPaths(self, unresolvedPaths) -> None: ... class StageMetadataChecker (line 85) | class StageMetadataChecker(BaseRuleChecker): method GetDescription (line 87) | def GetDescription(): ... method __init__ (line 88) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckStage (line 89) | def CheckStage(self, usdStage) -> None: ... class TextureChecker (line 91) | class TextureChecker(BaseRuleChecker): method GetDescription (line 95) | def GetDescription(): ... method __init__ (line 97) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckStage (line 98) | def CheckStage(self, usdStage) -> None: ... method _CheckTexture (line 99) | def _CheckTexture(self, texAssetPath, inputPath) -> None: ... method CheckPrim (line 100) | def CheckPrim(self, prim) -> None: ... class PrimEncapsulationChecker (line 102) | class PrimEncapsulationChecker(BaseRuleChecker): method GetDescription (line 104) | def GetDescription(): ... method __init__ (line 105) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method _HasGprimAncestor (line 106) | def _HasGprimAncestor(self, prim): ... method _FindConnectableAncestor (line 107) | def _FindConnectableAncestor(self, prim): ... method CheckPrim (line 108) | def CheckPrim(self, prim) -> None: ... method ResetCaches (line 111) | def ResetCaches(self) -> None: ... class NormalMapTextureChecker (line 113) | class NormalMapTextureChecker(BaseRuleChecker): method GetDescription (line 115) | def GetDescription(): ... method __init__ (line 116) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method _GetShaderId (line 117) | def _GetShaderId(self, shader): ... method _TextureIs8Bit (line 118) | def _TextureIs8Bit(self, asset): ... method _GetInputValue (line 119) | def _GetInputValue(self, shader, inputName): ... method CheckPrim (line 120) | def CheckPrim(self, prim) -> None: ... class MaterialBindingAPIAppliedChecker (line 122) | class MaterialBindingAPIAppliedChecker(BaseRuleChecker): method GetDescription (line 124) | def GetDescription(): ... method __init__ (line 125) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckPrim (line 126) | def CheckPrim(self, prim) -> None: ... class SkelBindingAPIAppliedChecker (line 128) | class SkelBindingAPIAppliedChecker(BaseRuleChecker): method GetDescription (line 130) | def GetDescription(): ... method __init__ (line 132) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckPrim (line 133) | def CheckPrim(self, prim) -> None: ... class ShaderPropertyTypeConformanceChecker (line 135) | class ShaderPropertyTypeConformanceChecker(BaseRuleChecker): method GetDescription (line 137) | def GetDescription(): ... method __init__ (line 138) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method _FillSdrNameToTypeMap (line 139) | def _FillSdrNameToTypeMap(self, shadeNode, mapping) -> None: ... method CheckPrim (line 140) | def CheckPrim(self, prim) -> None: ... class ARKitPackageEncapsulationChecker (line 142) | class ARKitPackageEncapsulationChecker(BaseRuleChecker): method GetDescription (line 144) | def GetDescription(): ... method __init__ (line 145) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckDependencies (line 146) | def CheckDependencies(self, usdStage, layerDeps, assetDeps) -> None: ... class ARKitLayerChecker (line 148) | class ARKitLayerChecker(BaseRuleChecker): method GetDescription (line 151) | def GetDescription(): ... method __init__ (line 152) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckLayer (line 153) | def CheckLayer(self, layer) -> None: ... class ARKitPrimTypeChecker (line 155) | class ARKitPrimTypeChecker(BaseRuleChecker): method GetDescription (line 158) | def GetDescription(): ... method __init__ (line 159) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckPrim (line 160) | def CheckPrim(self, prim) -> None: ... class ARKitShaderChecker (line 162) | class ARKitShaderChecker(BaseRuleChecker): method GetDescription (line 164) | def GetDescription(): ... method __init__ (line 165) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckPrim (line 166) | def CheckPrim(self, prim) -> None: ... class ARKitMaterialBindingChecker (line 168) | class ARKitMaterialBindingChecker(BaseRuleChecker): method GetDescription (line 170) | def GetDescription(): ... method __init__ (line 171) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckPrim (line 172) | def CheckPrim(self, prim) -> None: ... class ARKitFileExtensionChecker (line 174) | class ARKitFileExtensionChecker(BaseRuleChecker): method GetDescription (line 177) | def GetDescription(): ... method __init__ (line 178) | def __init__(self, verbose, consumerLevelChecks, assetLevelChecks) -> ... method CheckZipFile (line 179) | def CheckZipFile(self, zipFile, packagePath) -> None: ... class ComplianceChecker (line 181) | class ComplianceChecker: method GetBaseRules (line 202) | def GetBaseRules(): ... method GetARKitRules (line 204) | def GetARKitRules(skipARKitRootLayerCheck: bool = False): ... method GetRules (line 206) | def GetRules(arkit: bool = False, skipARKitRootLayerCheck: bool = Fals... method DumpAllRules (line 208) | def DumpAllRules() -> None: ... method __init__ (line 216) | def __init__(self, arkit: bool = False, skipARKitRootLayerCheck: bool ... method _Msg (line 217) | def _Msg(self, msg) -> None: ... method _AddError (line 218) | def _AddError(self, errMsg) -> None: ... method _AddWarning (line 219) | def _AddWarning(self, errMsg) -> None: ... method GetErrors (line 220) | def GetErrors(self): ... method GetWarnings (line 221) | def GetWarnings(self): ... method DumpRules (line 222) | def DumpRules(self) -> None: ... method GetFailedChecks (line 223) | def GetFailedChecks(self): ... method CheckCompliance (line 224) | def CheckCompliance(self, inputFile) -> None: ... method _CheckPackage (line 225) | def _CheckPackage(self, packagePath) -> None: ... method _CheckLayer (line 226) | def _CheckLayer(self, layer) -> None: ... method _CheckPrim (line 227) | def _CheckPrim(self, prim) -> None: ... method _TraverseRange (line 228) | def _TraverseRange(self, primRangeIt, isStageRoot) -> None: ... method _TraverseVariants (line 229) | def _TraverseVariants(self, prim): ... FILE: usd/stubs/pxr-stubs/UsdUtils/constantsGroup.pyi class _MetaConstantsGroup (line 1) | class _MetaConstantsGroup(type): method __new__ (line 4) | def __new__(metacls, cls, bases, classdict): method __setattr__ (line 6) | def __setattr__(cls, name, value) -> None: method __delattr__ (line 8) | def __delattr__(cls, name) -> None: method __len__ (line 10) | def __len__(self) -> int: method __contains__ (line 12) | def __contains__(self, value) -> bool: method __iter__ (line 14) | def __iter__(self): class ConstantsGroup (line 17) | class ConstantsGroup(metaclass=_MetaConstantsGroup): method __new__ (line 21) | def __new__(cls, *args, **kwargs) -> None: ... # type: ignore[misc] FILE: usd/stubs/pxr-stubs/UsdUtils/fixBrokenPixarSchemas.pyi class FixBrokenPixarSchemas (line 3) | class FixBrokenPixarSchemas: method __init__ (line 14) | def __init__(self, usdLayer) -> None: ... method _ApplyAPI (line 15) | def _ApplyAPI(self, listOp, apiSchema): ... method IsLayerUpdated (line 16) | def IsLayerUpdated(self): method FixupCoordSysAPI (line 23) | def FixupCoordSysAPI(self) -> None: method FixupMaterialBindingAPI (line 29) | def FixupMaterialBindingAPI(self) -> None: method FixupSkelBindingAPI (line 35) | def FixupSkelBindingAPI(self) -> None: method FixupUpAxis (line 41) | def FixupUpAxis(self) -> None: FILE: usd/stubs/pxr-stubs/UsdUtils/toolPaths.pyi function FindUsdBinary (line 1) | def FindUsdBinary(name): FILE: usd/stubs/pxr-stubs/UsdUtils/updateSchemaWithSdrNode.pyi class SchemaDefiningKeys (line 4) | class SchemaDefiningKeys(ConstantsGroup): class SchemaDefiningMiscConstants (line 18) | class SchemaDefiningMiscConstants(ConstantsGroup): class PropertyDefiningKeys (line 26) | class PropertyDefiningKeys(ConstantsGroup): function _IsNSPrefixConnectableAPICompliant (line 37) | def _IsNSPrefixConnectableAPICompliant(nsPrefix): ... function _CreateAttrSpecFromNodeAttribute (line 38) | def _CreateAttrSpecFromNodeAttribute(primSpec, prop, primDefForAttrPruni... function UpdateSchemaWithSdrNode (line 39) | def UpdateSchemaWithSdrNode(schemaLayer, sdrNode, renderContext: str = '... FILE: usd/stubs/pxr-stubs/UsdUtils/usdzUtils.pyi function _Print (line 5) | def _Print(msg) -> None: ... function _Err (line 6) | def _Err(msg) -> None: ... function _AllowedUsdzExtensions (line 7) | def _AllowedUsdzExtensions(): ... function _AllowedUsdExtensions (line 8) | def _AllowedUsdExtensions(): ... function ExtractUsdzPackage (line 9) | def ExtractUsdzPackage(usdzFile, extractDir, recurse, verbose, force): class UsdzAssetIterator (line 17) | class UsdzAssetIterator: method __init__ (line 30) | def __init__(self, usdzFile, verbose, parentDir: Incomplete | None = N... method _ExtractedFiles (line 31) | def _ExtractedFiles(self): ... method _CreateUsdzPackage (line 33) | def _CreateUsdzPackage(usdzFile, filesToAdd, verbose): ... method __enter__ (line 34) | def __enter__(self): ... method __exit__ (line 35) | def __exit__(self, excType: type[BaseException] | None, excVal: BaseEx... method UsdAssets (line 36) | def UsdAssets(self) -> Generator[Incomplete, Incomplete]: method AllAssets (line 40) | def AllAssets(self) -> Generator[Incomplete, Incomplete]: FILE: usd/stubs/pxr-stubs/UsdVol/__init__.pyi class Field3DAsset (line 11) | class Field3DAsset(FieldAsset): method __init__ (line 26) | def __init__(self) -> None: ... method __init__ (line 28) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 38) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateFieldDataTypeAttr (line 46) | def CreateFieldDataTypeAttr(self, defaultValue: Any = ..., writeSparse... method CreateFieldPurposeAttr (line 56) | def CreateFieldPurposeAttr(self, defaultValue: Any = ..., writeSparsel... method Define (line 67) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 93) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetFieldDataTypeAttr (line 106) | def GetFieldDataTypeAttr(self) -> pxr.Usd.Attribute: method GetFieldPurposeAttr (line 131) | def GetFieldPurposeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 153) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 163) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 164) | def __bool__(self) -> bool: ... class FieldAsset (line 166) | class FieldAsset(FieldBase): method __init__ (line 178) | def __init__(self) -> None: ... method __init__ (line 180) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 190) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateFieldDataTypeAttr (line 198) | def CreateFieldDataTypeAttr(self, defaultValue: Any = ..., writeSparse... method CreateFieldIndexAttr (line 208) | def CreateFieldIndexAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateFieldNameAttr (line 218) | def CreateFieldNameAttr(self, defaultValue: Any = ..., writeSparsely: ... method CreateFilePathAttr (line 228) | def CreateFilePathAttr(self, defaultValue: Any = ..., writeSparsely: b... method CreateVectorDataRoleHintAttr (line 238) | def CreateVectorDataRoleHintAttr(self, defaultValue: Any = ..., writeS... method Get (line 249) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetFieldDataTypeAttr (line 262) | def GetFieldDataTypeAttr(self) -> pxr.Usd.Attribute: method GetFieldIndexAttr (line 283) | def GetFieldIndexAttr(self) -> pxr.Usd.Attribute: method GetFieldNameAttr (line 303) | def GetFieldNameAttr(self) -> pxr.Usd.Attribute: method GetFilePathAttr (line 322) | def GetFilePathAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 347) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method GetVectorDataRoleHintAttr (line 356) | def GetVectorDataRoleHintAttr(self) -> pxr.Usd.Attribute: method _GetStaticTfType (line 382) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 383) | def __bool__(self) -> bool: ... class FieldBase (line 385) | class FieldBase(pxr.UsdGeom.Xformable): method __init__ (line 391) | def __init__(self) -> None: ... method __init__ (line 393) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 403) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method Get (line 412) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetSchemaAttributeNames (line 426) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 436) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 437) | def __bool__(self) -> bool: ... class OpenVDBAsset (line 439) | class OpenVDBAsset(FieldAsset): method __init__ (line 454) | def __init__(self) -> None: ... method __init__ (line 456) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 466) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method CreateFieldClassAttr (line 474) | def CreateFieldClassAttr(self, defaultValue: Any = ..., writeSparsely:... method CreateFieldDataTypeAttr (line 484) | def CreateFieldDataTypeAttr(self, defaultValue: Any = ..., writeSparse... method Define (line 495) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 521) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetFieldClassAttr (line 534) | def GetFieldClassAttr(self) -> pxr.Usd.Attribute: method GetFieldDataTypeAttr (line 559) | def GetFieldDataTypeAttr(self) -> pxr.Usd.Attribute: method GetSchemaAttributeNames (line 587) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method _GetStaticTfType (line 597) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 598) | def __bool__(self) -> bool: ... class Tokens (line 600) | class Tokens(Boost.Python.instance): method __init__ (line 643) | def __init__(self, *args, **kwargs) -> None: class Volume (line 648) | class Volume(pxr.UsdGeom.Gprim): method __init__ (line 672) | def __init__(self) -> None: ... method __init__ (line 674) | def __init__(self, prim: pxr.Usd.Prim) -> None: method __init__ (line 684) | def __init__(self, schemaObj: pxr.Usd.SchemaBase) -> None: method BlockFieldRelationship (line 692) | def BlockFieldRelationship(self, name: str | pxr.Ar.ResolvedPath) -> b... method CreateFieldRelationship (line 705) | def CreateFieldRelationship(self, name: str | pxr.Ar.ResolvedPath, fie... method Define (line 729) | def Define(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedP... method Get (line 755) | def Get(stage: pxr.Usd.Stage, path: pxr.Sdf.Path | pxr.Ar.ResolvedPath... method GetFieldPath (line 768) | def GetFieldPath(self, name: str | pxr.Ar.ResolvedPath) -> pxr.Sdf.Path: method GetFieldPaths (line 778) | def GetFieldPaths(self) -> dict: method GetSchemaAttributeNames (line 791) | def GetSchemaAttributeNames(includeInherited: bool = ...) -> list[str]: method HasFieldRelationship (line 800) | def HasFieldRelationship(self, name: str | pxr.Ar.ResolvedPath) -> bool: method _GetStaticTfType (line 813) | def _GetStaticTfType() -> pxr.Tf.Type: ... method __bool__ (line 814) | def __bool__(self) -> bool: ... FILE: usd/stubs/pxr-stubs/Usdviewq/__init__.pyi class ContainerDataSource (line 16) | class ContainerDataSource(Boost.Python.instance): method __init__ (line 17) | def __init__(self, *args, **kwargs) -> None: method Get (line 22) | def Get(self, arg2: object, /) -> Any: ... method Get (line 24) | def Get(self, arg2: DataSourceLocator, /) -> Any: ... # type: ignore[... method GetNames (line 25) | def GetNames(self) -> list: ... class DataSourceBase (line 27) | class DataSourceBase(Boost.Python.instance): method __init__ (line 28) | def __init__(self, *args, **kwargs) -> None: class DataSourceLocator (line 33) | class DataSourceLocator(Boost.Python.instance): method __init__ (line 36) | def __init__(self) -> None: ... method __init__ (line 38) | def __init__(self, arg2: object, /) -> None: ... method __init__ (line 40) | def __init__(self, arg2: object, arg3: object, /) -> None: ... method __init__ (line 42) | def __init__(self, arg2: object, arg3: object, arg4: object, /) -> Non... method __init__ (line 44) | def __init__(self, arg2: object, arg3: object, arg4: object, arg5: obj... method __init__ (line 46) | def __init__(self, arg2: object, arg3: object, arg4: object, arg5: obj... method __init__ (line 48) | def __init__(self, arg2: object, arg3: object, arg4: object, arg5: obj... method Append (line 50) | def Append(self, arg2: object, /) -> DataSourceLocator: ... method Append (line 52) | def Append(self, arg2: DataSourceLocator, /) -> DataSourceLocator: ...... method GetCommonPrefix (line 53) | def GetCommonPrefix(self, arg2: DataSourceLocator, /) -> DataSourceLoc... method GetElement (line 54) | def GetElement(self, arg2: int, /) -> Any: ... method GetElementCount (line 55) | def GetElementCount(self) -> int: ... method GetFirstElement (line 56) | def GetFirstElement(self) -> Any: ... method GetLastElement (line 57) | def GetLastElement(self) -> Any: ... method GetString (line 58) | def GetString(self, arg2: str | pxr.Ar.ResolvedPath, /) -> str: ... method HasPrefix (line 59) | def HasPrefix(self, arg2: DataSourceLocator, /) -> bool: ... method Intersects (line 60) | def Intersects(self, arg2: DataSourceLocator, /) -> bool: ... method IsEmpty (line 61) | def IsEmpty(self) -> bool: ... method RemoveFirstElement (line 62) | def RemoveFirstElement(self) -> DataSourceLocator: ... method RemoveLastElement (line 63) | def RemoveLastElement(self) -> DataSourceLocator: ... method ReplaceLastElement (line 64) | def ReplaceLastElement(self, arg2: object, /) -> DataSourceLocator: ... method ReplacePrefix (line 65) | def ReplacePrefix(self, arg2: DataSourceLocator, arg3: DataSourceLocat... method __eq__ (line 66) | def __eq__(self, other: object) -> bool: ... method __hash__ (line 67) | def __hash__(self) -> int: ... method __ne__ (line 68) | def __ne__(self, other: object) -> bool: ... class DataSourceLocatorSet (line 70) | class DataSourceLocatorSet(Boost.Python.instance): method __init__ (line 72) | def __init__(self) -> None: ... method AsString (line 73) | def AsString(self) -> str: ... method Contains (line 74) | def Contains(self, arg2: DataSourceLocator, /) -> bool: ... method Intersects (line 76) | def Intersects(self, arg2: DataSourceLocator, /) -> bool: ... method Intersects (line 78) | def Intersects(self, arg2: DataSourceLocatorSet, /) -> bool: ... method IsEmpty (line 79) | def IsEmpty(self) -> bool: ... method insert (line 81) | def insert(self, arg2: DataSourceLocator, /) -> None: ... method insert (line 83) | def insert(self, arg2: DataSourceLocatorSet, /) -> None: ... class HydraObserver (line 85) | class HydraObserver(Boost.Python.instance): method __init__ (line 99) | def __init__(self) -> None: ... method ClearPendingNotices (line 100) | def ClearPendingNotices(self) -> None: method GetChildPrimPaths (line 104) | def GetChildPrimPaths(self, _primPath: pxr.Sdf.Path | pxr.Ar.ResolvedP... method GetDisplayName (line 109) | def GetDisplayName(self) -> str: method GetInputDisplayNames (line 116) | def GetInputDisplayNames(self, _inputIndices: IndexList, /) -> list[st... method GetPendingNotices (line 127) | def GetPendingNotices(self) -> list[NoticeEntry]: # type: ignore[name... method GetPrim (line 134) | def GetPrim(self, _primPath: pxr.Sdf.Path | pxr.Ar.ResolvedPath | str,... method GetRegisteredSceneIndexNames (line 140) | def GetRegisteredSceneIndexNames() -> list[str]: method HasPendingNotices (line 149) | def HasPendingNotices(self) -> bool: method TargetToInputSceneIndex (line 156) | def TargetToInputSceneIndex(self, _inputIndices: IndexList, /) -> bool... method TargetToNamedSceneIndex (line 166) | def TargetToNamedSceneIndex(self, _name: str | pxr.Ar.ResolvedPath, /)... class InvalidUsdviewOption (line 172) | class InvalidUsdviewOption(Exception): class Launcher (line 177) | class Launcher: class SampledDataSource (line 199) | class SampledDataSource(Boost.Python.instance): method __init__ (line 200) | def __init__(self, *args, **kwargs) -> None: method GetTypeString (line 204) | def GetTypeString(self) -> str: ... method GetValue (line 205) | def GetValue(self, arg2: float, /) -> Any: ... class Utils (line 207) | class Utils(Boost.Python.instance): method __init__ (line 212) | def __init__(self) -> None: ... method GetPrimInfo (line 214) | def GetPrimInfo(_prim: pxr.Usd.Prim, _time: pxr.Usd.TimeCode | float |... method _GetAllPrimsOfType (line 224) | def _GetAllPrimsOfType(_stage: pxr.Usd.Stage, _schemaType: pxr.Tf.Type... class VectorDataSource (line 231) | class VectorDataSource(Boost.Python.instance): method __init__ (line 232) | def __init__(self, *args, **kwargs) -> None: method GetElement (line 236) | def GetElement(self, arg2: int, /) -> Any: ... method GetNumElements (line 237) | def GetNumElements(self) -> int: ... FILE: usd/stubs/pxr-stubs/Usdviewq/adjustDefaultMaterial.pyi class AdjustDefaultMaterial (line 5) | class AdjustDefaultMaterial(QtWidgets.QDialog): method __init__ (line 13) | def __init__(self, parent, dataModel) -> None: ... method _updateFromData (line 14) | def _updateFromData(self) -> None: ... method _ambientChanged (line 15) | def _ambientChanged(self, val) -> None: ... method _specularChanged (line 16) | def _specularChanged(self, val) -> None: ... method _reset (line 17) | def _reset(self, unused) -> None: ... method _done (line 18) | def _done(self, unused) -> None: ... method closeEvent (line 19) | def closeEvent(self, event) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/adjustDefaultMaterialUI.pyi class Ui_AdjustDefaultMaterial (line 6) | class Ui_AdjustDefaultMaterial: method setupUi (line 23) | def setupUi(self, AdjustDefaultMaterial) -> None: ... method retranslateUi (line 24) | def retranslateUi(self, AdjustDefaultMaterial) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/adjustFreeCamera.pyi class AdjustFreeCamera (line 7) | class AdjustFreeCamera(QtWidgets.QDialog): method __init__ (line 13) | def __init__(self, parent, dataModel, signalFrustumChanged) -> None: ... method _overrideNearToggled (line 14) | def _overrideNearToggled(self, state) -> None: method _overrideFarToggled (line 16) | def _overrideFarToggled(self, state) -> None: method _nearChanged (line 18) | def _nearChanged(self, value) -> None: method _farChanged (line 22) | def _farChanged(self, value) -> None: method _lockFreeCamAspectToggled (line 26) | def _lockFreeCamAspectToggled(self, state) -> None: ... method _aspectSpinBoxChanged (line 27) | def _aspectSpinBoxChanged(self, value) -> None: method _getCurrentAspectRatio (line 29) | def _getCurrentAspectRatio(self): method _getCurrentFov (line 35) | def _getCurrentFov(self): method _getCurrentClippingRange (line 41) | def _getCurrentClippingRange(self): method _freeCamFovChanged (line 48) | def _freeCamFovChanged(self, value) -> None: ... method _frustumChanged (line 49) | def _frustumChanged(self) -> None: method closeEvent (line 51) | def closeEvent(self, event) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/adjustFreeCameraUI.pyi class Ui_AdjustFreeCamera (line 6) | class Ui_AdjustFreeCamera: method setupUi (line 21) | def setupUi(self, AdjustFreeCamera) -> None: ... method retranslateUi (line 22) | def retranslateUi(self, AdjustFreeCamera) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/appController.pyi class HUDEntries (line 31) | class HUDEntries(ConstantsGroup): class PropertyIndex (line 41) | class PropertyIndex(ConstantsGroup): class UIDefaults (line 47) | class UIDefaults(ConstantsGroup): class LayerStackViewColumnIndex (line 55) | class LayerStackViewColumnIndex(ConstantsGroup): class UsdviewDataModel (line 63) | class UsdviewDataModel(RootDataModel): method __init__ (line 66) | def __init__(self, makeTimer, settings) -> None: ... method selection (line 68) | def selection(self): ... method viewSettings (line 70) | def viewSettings(self): ... method _emitPrimsChanged (line 71) | def _emitPrimsChanged(self, primChange, propertyChange) -> None: ... class UIStateProxySource (line 73) | class UIStateProxySource(StateSource): method __init__ (line 78) | def __init__(self, mainWindow, parent, name) -> None: ... method onSaveState (line 79) | def onSaveState(self, state) -> None: ... class Blocker (line 81) | class Blocker: method __init__ (line 91) | def __init__(self) -> None: ... method __enter__ (line 92) | def __enter__(self) -> None: method __exit__ (line 94) | def __exit__(self, *args) -> None: method blocked (line 96) | def blocked(self): class MainWindow (line 99) | class MainWindow(QtWidgets.QMainWindow): method __init__ (line 102) | def __init__(self, closeFunc) -> None: ... method closeEvent (line 103) | def closeEvent(self, event) -> None: ... class AppController (line 105) | class AppController(QtCore.QObject): method clearSettings (line 107) | def clearSettings(cls) -> None: ... method _makeTimer (line 108) | def _makeTimer(self, label, printTiming: bool = True): ... method _configurePlugins (line 110) | def _configurePlugins(self) -> None: ... method _openSettings (line 112) | def _openSettings(self, defaultSettings, config) -> None: ... method _setupCustomFont (line 113) | def _setupCustomFont(self) -> None: ... method _setStyleSheetUsingState (line 114) | def _setStyleSheetUsingState(self) -> None: ... method __del__ (line 115) | def __del__(self) -> None: ... method __init__ (line 176) | def __init__(self, parserData, resolverContextFn) -> None: ... method _drawFirstImage (line 177) | def _drawFirstImage(self) -> None: ... method statusMessage (line 178) | def statusMessage(self, msg, timeout: int = 0) -> None: ... method editComplete (line 179) | def editComplete(self, msg) -> None: ... method _applyStageOpenLayerMutes (line 180) | def _applyStageOpenLayerMutes(self, stage, muteLayersRe) -> None: ... method _openStage (line 181) | def _openStage(self, usdFilePath, sessionFilePath, populationMaskPaths... method _closeStage (line 182) | def _closeStage(self) -> None: ... method _startQtShutdownTimer (line 184) | def _startQtShutdownTimer(self) -> None: ... method _stopQtShutdownTimer (line 185) | def _stopQtShutdownTimer(self) -> None: ... method _setPlayShortcut (line 186) | def _setPlayShortcut(self) -> None: ... method _reloadFixedUI (line 191) | def _reloadFixedUI(self, resetStageDataOnly: bool = False) -> None: ... method _UpdateTimeSamples (line 194) | def _UpdateTimeSamples(self, resetStageDataOnly: bool = False) -> None... method _clearCaches (line 195) | def _clearCaches(self, preserveCamera: bool = False) -> None: method _rendererPluginChanged (line 198) | def _rendererPluginChanged(self, plugin) -> None: ... method _configureRendererPlugins (line 199) | def _configureRendererPlugins(self): ... method _rendererAovChanged (line 200) | def _rendererAovChanged(self, aov) -> None: ... method _configureRendererAovs (line 201) | def _configureRendererAovs(self): ... method _otherAov (line 202) | def _otherAov(self) -> None: ... method _rendererSettingsFlagChanged (line 203) | def _rendererSettingsFlagChanged(self, action) -> None: ... method _configureRendererSettings (line 204) | def _configureRendererSettings(self): ... method _moreRendererSettings (line 205) | def _moreRendererSettings(self) -> None: ... method _applyMoreRendererSettings (line 206) | def _applyMoreRendererSettings(self) -> None: ... method _resetMoreRendererSettings (line 207) | def _resetMoreRendererSettings(self) -> None: ... method _invokeRendererCommand (line 208) | def _invokeRendererCommand(self, cmd) -> None: ... method _configureRendererCommands (line 209) | def _configureRendererCommands(self): ... method _configurePauseAction (line 210) | def _configurePauseAction(self) -> None: ... method _configureStopAction (line 211) | def _configureStopAction(self) -> None: ... method _disableOCIOAction (line 212) | def _disableOCIOAction(self) -> None: ... method _configureColorManagement (line 213) | def _configureColorManagement(self): ... method _reloadVaryingUI (line 219) | def _reloadVaryingUI(self) -> None: ... method _scheduleResizePrimView (line 220) | def _scheduleResizePrimView(self) -> None: method _resizePrimView (line 225) | def _resizePrimView(self) -> None: method _getExpandedPrimViewPrims (line 228) | def _getExpandedPrimViewPrims(self): ... method _resetPrimView (line 229) | def _resetPrimView(self, restoreSelection: bool = True) -> None: ... method _resetGUI (line 230) | def _resetGUI(self) -> None: method updateGUI (line 240) | def updateGUI(self) -> None: method _resetPrimViewVis (line 245) | def _resetPrimViewVis(self, selItemsOnly: bool = True, authoredVisHasC... method _updatePrimView (line 250) | def _updatePrimView(self) -> None: ... method _setComplexity (line 251) | def _setComplexity(self, complexity) -> None: method _incrementComplexity (line 253) | def _incrementComplexity(self) -> None: method _decrementComplexity (line 255) | def _decrementComplexity(self) -> None: method _changeComplexity (line 257) | def _changeComplexity(self, action) -> None: method _adjustFreeCamera (line 260) | def _adjustFreeCamera(self, checked): ... method _adjustDefaultMaterial (line 262) | def _adjustDefaultMaterial(self, checked): ... method _togglePreferences (line 264) | def _togglePreferences(self, checked): ... method _redrawOptionToggled (line 265) | def _redrawOptionToggled(self, checked) -> None: ... method _setPlaybackAvailability (line 267) | def _setPlaybackAvailability(self, enabled: bool = True) -> None: ... method _playClicked (line 269) | def _playClicked(self) -> None: ... method _advanceFrameForPlayback (line 271) | def _advanceFrameForPlayback(self) -> None: ... method _advanceFrame (line 272) | def _advanceFrame(self) -> None: ... method _retreatFrame (line 273) | def _retreatFrame(self) -> None: ... method _findClosestFrameIndex (line 274) | def _findClosestFrameIndex(self, timeSample): method _rangeBeginChanged (line 284) | def _rangeBeginChanged(self) -> None: ... method _stepSizeChanged (line 285) | def _stepSizeChanged(self) -> None: ... method _rangeEndChanged (line 286) | def _rangeEndChanged(self) -> None: ... method _frameStringChanged (line 287) | def _frameStringChanged(self) -> None: ... method _sliderMoved (line 288) | def _sliderMoved(self, frameIndex) -> None: method setFrameField (line 294) | def setFrameField(self, frame) -> None: method _normalize_unicode (line 300) | def _normalize_unicode(self, str: str, form: str = 'NFKC'): ... method _isMatch (line 301) | def _isMatch(self, pattern, isRegex, prim, useDisplayName): method _findPrims (line 327) | def _findPrims(self, pattern, useRegex: bool = True): method _primViewFindNext (line 330) | def _primViewFindNext(self) -> None: ... method _comparePaths (line 331) | def _comparePaths(self, path1, path2): ... method _primLegendToggleCollapse (line 332) | def _primLegendToggleCollapse(self) -> None: ... method _propertyLegendToggleCollapse (line 333) | def _propertyLegendToggleCollapse(self) -> None: ... method _attrViewFindNext (line 334) | def _attrViewFindNext(self) -> None: ... method _outputBaseDirectory (line 336) | def _outputBaseDirectory(cls): ... method _storeAndReturnViewState (line 337) | def _storeAndReturnViewState(self): ... method _frameSelection (line 338) | def _frameSelection(self) -> None: ... method _toggleFramedView (line 339) | def _toggleFramedView(self) -> None: ... method _resetSettings (line 340) | def _resetSettings(self): method _updateForStageChanges (line 343) | def _updateForStageChanges(self, hasPrimResync: bool = True) -> None: method _cacheViewerModeEscapeSizes (line 350) | def _cacheViewerModeEscapeSizes(self, pos: Incomplete | None = None, i... method _toggleViewerMode (line 351) | def _toggleViewerMode(self) -> None: ... method isViewerMode (line 352) | def isViewerMode(self): method setViewerMode (line 354) | def setViewerMode(self, viewerMode) -> None: method _resetView (line 357) | def _resetView(self, selectPrim: Incomplete | None = None) -> None: method _changeRenderMode (line 361) | def _changeRenderMode(self, mode) -> None: ... method _changeColorCorrection (line 362) | def _changeColorCorrection(self, mode) -> None: ... method _changePickMode (line 363) | def _changePickMode(self, mode) -> None: ... method _changeSelHighlightMode (line 364) | def _changeSelHighlightMode(self, mode) -> None: ... method _changeHighlightColor (line 365) | def _changeHighlightColor(self, color) -> None: ... method _changeInterpolationType (line 366) | def _changeInterpolationType(self, interpolationType) -> None: ... method _ambientOnlyClicked (line 367) | def _ambientOnlyClicked(self, checked: Incomplete | None = None) -> No... method _onDomeLightClicked (line 368) | def _onDomeLightClicked(self, checked: Incomplete | None = None) -> No... method _onDomeLightTexturesVisibleClicked (line 369) | def _onDomeLightTexturesVisibleClicked(self, checked: Incomplete | Non... method _changeBgColor (line 370) | def _changeBgColor(self, mode) -> None: ... method _toggleShowBBoxPlayback (line 371) | def _toggleShowBBoxPlayback(self) -> None: method _toggleAutoComputeClippingPlanes (line 374) | def _toggleAutoComputeClippingPlanes(self) -> None: ... method _setUseExtentsHint (line 375) | def _setUseExtentsHint(self) -> None: ... method _toggleShowBBoxes (line 376) | def _toggleShowBBoxes(self) -> None: method _toggleShowAABBox (line 379) | def _toggleShowAABBox(self) -> None: method _toggleShowOBBox (line 382) | def _toggleShowOBBox(self) -> None: method _refreshBBox (line 385) | def _refreshBBox(self) -> None: method _toggleDisplayGuide (line 387) | def _toggleDisplayGuide(self) -> None: ... method _toggleDisplayProxy (line 388) | def _toggleDisplayProxy(self) -> None: ... method _toggleDisplayRender (line 389) | def _toggleDisplayRender(self) -> None: ... method _toggleDisplayCameraOracles (line 390) | def _toggleDisplayCameraOracles(self) -> None: ... method _toggleDisplayPrimId (line 391) | def _toggleDisplayPrimId(self) -> None: ... method _toggleEnableSceneMaterials (line 392) | def _toggleEnableSceneMaterials(self) -> None: ... method _toggleEnableSceneLights (line 393) | def _toggleEnableSceneLights(self) -> None: ... method _toggleCullBackfaces (line 394) | def _toggleCullBackfaces(self) -> None: ... method _showInterpreter (line 395) | def _showInterpreter(self) -> None: ... method _showDebugFlags (line 396) | def _showDebugFlags(self) -> None: ... method _showHydraSceneBrowser (line 397) | def _showHydraSceneBrowser(self) -> None: ... method GrabWindowShot (line 398) | def GrabWindowShot(self): method GrabViewportShot (line 400) | def GrabViewportShot(self, cropToAspectRatio: bool = False): method _cleanAndClose (line 402) | def _cleanAndClose(self) -> None: ... method _openFile (line 403) | def _openFile(self): ... method _getSaveFileName (line 404) | def _getSaveFileName(self, caption, recommendedFilename): ... method _saveOverridesAs (line 405) | def _saveOverridesAs(self) -> None: ... method _saveFlattenedAs (line 406) | def _saveFlattenedAs(self) -> None: ... method _copyViewerImage (line 407) | def _copyViewerImage(self) -> None: ... method _saveViewerImage (line 408) | def _saveViewerImage(self) -> None: ... method _togglePause (line 409) | def _togglePause(self) -> None: ... method _toggleStop (line 410) | def _toggleStop(self) -> None: ... method _reopenStage (line 411) | def _reopenStage(self) -> None: ... method _reloadStage (line 412) | def _reloadStage(self) -> None: ... method _cameraSelectionChanged (line 413) | def _cameraSelectionChanged(self, camera) -> None: ... method _refreshCameraListAndMenu (line 414) | def _refreshCameraListAndMenu(self, preserveCurrCamera): ... method _showMoreCamerasDialog (line 416) | def _showMoreCamerasDialog(self): method _onCameraSearchComplete (line 418) | def _onCameraSearchComplete(self) -> None: ... method _onCameraSearchTextChanged (line 419) | def _onCameraSearchTextChanged(self, text) -> None: ... method _updatePropertiesFromPropertyView (line 420) | def _updatePropertiesFromPropertyView(self) -> None: method _propertyViewSelectionChanged (line 424) | def _propertyViewSelectionChanged(self) -> None: method _propertyViewCurrentItemChanged (line 426) | def _propertyViewCurrentItemChanged(self, currentItem, lastItem) -> None: method _propSelectionChanged (line 428) | def _propSelectionChanged(self) -> None: method _populatePropertyInspector (line 432) | def _populatePropertyInspector(self) -> None: ... method _onCompositionSelectionChanged (line 433) | def _onCompositionSelectionChanged(self, curr: Incomplete | None = Non... method _updatePropertyInspector (line 434) | def _updatePropertyInspector(self, index: Incomplete | None = None, ob... method _refreshAttributeValue (line 435) | def _refreshAttributeValue(self) -> None: ... method _propertyViewContextMenu (line 437) | def _propertyViewContextMenu(self, point) -> None: ... method _layerStackContextMenu (line 438) | def _layerStackContextMenu(self, point) -> None: ... method _compositionTreeContextMenu (line 439) | def _compositionTreeContextMenu(self, point) -> None: ... method _propertyViewHeaderContextMenu (line 440) | def _propertyViewHeaderContextMenu(self, point) -> None: ... method _primViewHeaderContextMenu (line 441) | def _primViewHeaderContextMenu(self, point) -> None: ... method _changePrimViewDepth (line 442) | def _changePrimViewDepth(self, action) -> None: method _expandToDepth (line 445) | def _expandToDepth(self, depth, suppressTiming: bool = False) -> None: method _primViewExpanded (line 448) | def _primViewExpanded(self, index) -> None: method _toggleShowInactivePrims (line 451) | def _toggleShowInactivePrims(self) -> None: ... method _toggleShowPrototypePrims (line 452) | def _toggleShowPrototypePrims(self) -> None: ... method _toggleShowUndefinedPrims (line 453) | def _toggleShowUndefinedPrims(self) -> None: ... method _toggleShowAbstractPrims (line 454) | def _toggleShowAbstractPrims(self) -> None: ... method _toggleShowPrimDisplayName (line 455) | def _toggleShowPrimDisplayName(self) -> None: ... method _toggleRolloverPrimInfo (line 456) | def _toggleRolloverPrimInfo(self) -> None: ... method _tallyPrimStats (line 457) | def _tallyPrimStats(self, prim): ... method _populateChildren (line 458) | def _populateChildren(self, item, depth: int = 0, maxDepth: int = 1, c... method _populateItem (line 462) | def _populateItem(self, prim, depth: int = 0, maxDepth: int = 0): method _populateRoots (line 464) | def _populateRoots(self) -> None: ... method _getFilteredChildren (line 465) | def _getFilteredChildren(self, prim): ... method _computeDisplayPredicate (line 467) | def _computeDisplayPredicate(self) -> None: ... method _getItemAtPath (line 468) | def _getItemAtPath(self, path, ensureExpanded: bool = False): ... method selectPseudoroot (line 469) | def selectPseudoroot(self) -> None: method selectEnclosingModel (line 471) | def selectEnclosingModel(self) -> None: method selectBoundMaterialForPurpose (line 475) | def selectBoundMaterialForPurpose(self, materialPurpose) -> None: method selectBindingRelForPurpose (line 479) | def selectBindingRelForPurpose(self, materialPurpose) -> None: method selectBoundPreviewMaterial (line 483) | def selectBoundPreviewMaterial(self) -> None: method selectBoundFullMaterial (line 487) | def selectBoundFullMaterial(self) -> None: method selectPreviewBindingRel (line 491) | def selectPreviewBindingRel(self) -> None: method selectFullBindingRel (line 495) | def selectFullBindingRel(self) -> None: method _getCommonPrims (line 499) | def _getCommonPrims(self, pathsList): ... method _primSelectionChanged (line 500) | def _primSelectionChanged(self, added, removed) -> None: method _getPrimsFromPaths (line 504) | def _getPrimsFromPaths(self, paths): method _updatePrimPathText (line 506) | def _updatePrimPathText(self) -> None: ... method _currentPathChanged (line 507) | def _currentPathChanged(self) -> None: method _expandPrims (line 509) | def _expandPrims(self, prims, expand: bool = True) -> None: ... method _refreshPrimViewSelection (line 510) | def _refreshPrimViewSelection(self, expandedPrims) -> None: method _updatePrimViewSelection (line 514) | def _updatePrimViewSelection(self, added, removed) -> None: method _primsFromSelectionRanges (line 518) | def _primsFromSelectionRanges(self, ranges) -> Generator[Incomplete]: method _selectionChanged (line 520) | def _selectionChanged(self, added, removed) -> None: method _itemClicked (line 524) | def _itemClicked(self, item, col) -> None: ... method _itemPressed (line 525) | def _itemPressed(self, item, col) -> None: ... method _getPathsFromItems (line 526) | def _getPathsFromItems(self, items, prune: bool = False): ... method _primViewContextMenu (line 527) | def _primViewContextMenu(self, point) -> None: ... method _showPrimContextMenu (line 528) | def _showPrimContextMenu(self, item) -> None: ... method setFrame (line 529) | def setFrame(self, frame) -> None: method _setFrameIndex (line 535) | def _setFrameIndex(self, frameIndex) -> None: method _updateGUIForFrameChange (line 541) | def _updateGUIForFrameChange(self) -> None: method _updateOnFrameChange (line 545) | def _updateOnFrameChange(self) -> None: method saveFrame (line 547) | def saveFrame(self, fileName) -> None: ... method _getPropertiesDict (line 548) | def _getPropertiesDict(self): ... method _propertyViewDeselectItem (line 549) | def _propertyViewDeselectItem(self, item) -> None: ... method _updatePropertyViewSelection (line 550) | def _updatePropertyViewSelection(self) -> None: method _updatePropertyViewInternal (line 553) | def _updatePropertyViewInternal(self) -> None: ... method _updatePropertyView (line 554) | def _updatePropertyView(self) -> None: method _getSelectedObject (line 556) | def _getSelectedObject(self): ... method _findIndentPos (line 557) | def _findIndentPos(self, s): ... method _maxToolTipWidth (line 558) | def _maxToolTipWidth(self): ... method _maxToolTipHeight (line 559) | def _maxToolTipHeight(self): ... method _trimWidth (line 560) | def _trimWidth(self, s, isList: bool = False): ... method _limitToolTipSize (line 561) | def _limitToolTipSize(self, s, isList: bool = False): ... method _addRichTextIndicators (line 562) | def _addRichTextIndicators(self, s): ... method _limitValueDisplaySize (line 563) | def _limitValueDisplaySize(self, s): ... method _cleanStr (line 564) | def _cleanStr(self, s, repl): ... method _formatMetadataValueView (line 565) | def _formatMetadataValueView(self, val): ... method _updateMetadataView (line 566) | def _updateMetadataView(self, obj: Incomplete | None = None): method _updateCompositionView (line 568) | def _updateCompositionView(self, obj: Incomplete | None = None): method _updateLayerStackView (line 570) | def _updateLayerStackView(self, obj: Incomplete | None = None): method _isHUDVisible (line 572) | def _isHUDVisible(self): method _updateCameraMaskMenu (line 575) | def _updateCameraMaskMenu(self) -> None: ... method _updateCameraMaskOutlineMenu (line 576) | def _updateCameraMaskOutlineMenu(self) -> None: ... method _pickCameraMaskColor (line 577) | def _pickCameraMaskColor(self) -> None: ... method _updateCameraReticlesInsideMenu (line 578) | def _updateCameraReticlesInsideMenu(self) -> None: ... method _updateCameraReticlesOutsideMenu (line 579) | def _updateCameraReticlesOutsideMenu(self) -> None: ... method _pickCameraReticlesColor (line 580) | def _pickCameraReticlesColor(self) -> None: ... method _showHUDChanged (line 581) | def _showHUDChanged(self) -> None: ... method _showHUD_InfoChanged (line 582) | def _showHUD_InfoChanged(self) -> None: ... method _showHUD_ComplexityChanged (line 583) | def _showHUD_ComplexityChanged(self) -> None: ... method _showHUD_PerformanceChanged (line 584) | def _showHUD_PerformanceChanged(self) -> None: ... method _showHUD_GPUstatsChanged (line 585) | def _showHUD_GPUstatsChanged(self) -> None: ... method _getHUDStatKeys (line 586) | def _getHUDStatKeys(self): method _updateHUDPrimStats (line 589) | def _updateHUDPrimStats(self) -> None: method _updateHUDGeomCounts (line 591) | def _updateHUDGeomCounts(self) -> None: method _clearGeomCountsForPrimPath (line 594) | def _clearGeomCountsForPrimPath(self, primPath) -> None: ... method _getGeomCounts (line 595) | def _getGeomCounts(self, prim, frame): method _accountForFlattening (line 597) | def _accountForFlattening(self, shape): method _calculateGeomCounts (line 599) | def _calculateGeomCounts(self, prim, frame) -> None: method _updateNavigationMenu (line 602) | def _updateNavigationMenu(self) -> None: method _updateEditMenu (line 605) | def _updateEditMenu(self) -> None: method getSelectedItems (line 608) | def getSelectedItems(self): ... method _getPrimFromPropString (line 609) | def _getPrimFromPropString(self, p): ... method visSelectedPrims (line 610) | def visSelectedPrims(self) -> None: ... method visOnlySelectedPrims (line 611) | def visOnlySelectedPrims(self) -> None: ... method invisSelectedPrims (line 612) | def invisSelectedPrims(self) -> None: ... method removeVisSelectedPrims (line 613) | def removeVisSelectedPrims(self) -> None: ... method resetSessionVisibility (line 614) | def resetSessionVisibility(self) -> None: ... method _setSelectedPrimsActivation (line 615) | def _setSelectedPrimsActivation(self, active) -> None: method activateSelectedPrims (line 617) | def activateSelectedPrims(self) -> None: ... method deactivateSelectedPrims (line 618) | def deactivateSelectedPrims(self) -> None: ... method loadSelectedPrims (line 619) | def loadSelectedPrims(self) -> None: ... method unloadSelectedPrims (line 620) | def unloadSelectedPrims(self) -> None: ... method onStageViewMouseDrag (line 621) | def onStageViewMouseDrag(self) -> None: ... method onPrimSelected (line 622) | def onPrimSelected(self, path, instanceIndex, topLevelPath, topLevelIn... method onRollover (line 623) | def onRollover(self, path, instanceIndex, topLevelPath, topLevelInstan... method processNavKeyEvent (line 624) | def processNavKeyEvent(self, kpEvent): ... method _viewSettingChanged (line 625) | def _viewSettingChanged(self) -> None: ... method _refreshViewMenubar (line 626) | def _refreshViewMenubar(self) -> None: method _refreshRenderModeMenu (line 631) | def _refreshRenderModeMenu(self) -> None: ... method _refreshColorCorrectionModeMenu (line 632) | def _refreshColorCorrectionModeMenu(self) -> None: ... method _refreshPickModeMenu (line 633) | def _refreshPickModeMenu(self) -> None: ... method _refreshComplexityMenu (line 634) | def _refreshComplexityMenu(self) -> None: ... method _refreshBBoxMenu (line 635) | def _refreshBBoxMenu(self) -> None: ... method _refreshLightsMenu (line 636) | def _refreshLightsMenu(self) -> None: ... method _refreshClearColorsMenu (line 637) | def _refreshClearColorsMenu(self) -> None: ... method getActiveCamera (line 638) | def getActiveCamera(self): ... method _refreshCameraMenu (line 639) | def _refreshCameraMenu(self) -> None: ... method _refreshCameraGuidesMenu (line 640) | def _refreshCameraGuidesMenu(self) -> None: ... method _refreshCameraMaskMenu (line 641) | def _refreshCameraMaskMenu(self) -> None: ... method _refreshCameraReticlesMenu (line 642) | def _refreshCameraReticlesMenu(self) -> None: ... method _refreshDisplayPurposesMenu (line 643) | def _refreshDisplayPurposesMenu(self) -> None: ... method _refreshViewMenu (line 644) | def _refreshViewMenu(self) -> None: ... method _refreshHUDMenu (line 645) | def _refreshHUDMenu(self) -> None: ... method _refreshShowPrimMenu (line 646) | def _refreshShowPrimMenu(self) -> None: ... method _refreshRedrawOnScrub (line 647) | def _refreshRedrawOnScrub(self) -> None: ... method _refreshRolloverPrimInfoMenu (line 648) | def _refreshRolloverPrimInfoMenu(self) -> None: ... method _refreshSelectionHighlightingMenu (line 649) | def _refreshSelectionHighlightingMenu(self) -> None: ... method _refreshSelectionHighlightColorMenu (line 650) | def _refreshSelectionHighlightColorMenu(self) -> None: ... method _displayPurposeChanged (line 651) | def _displayPurposeChanged(self) -> None: ... method _HUDInfoChanged (line 652) | def _HUDInfoChanged(self) -> None: method _onPrimsChanged (line 654) | def _onPrimsChanged(self, primsChange, propertiesChange) -> None: method _updateAsyncTimer (line 656) | def _updateAsyncTimer(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/appEventFilter.pyi class AppEventFilter (line 5) | class AppEventFilter(QtCore.QObject): method __init__ (line 21) | def __init__(self, appController) -> None: ... method IsNavKey (line 22) | def IsNavKey(self, key, modifiers): ... method _IsWindow (line 23) | def _IsWindow(self, obj): ... method TopLevelWindow (line 24) | def TopLevelWindow(self, obj): ... method WantsNavKeys (line 25) | def WantsNavKeys(self, w): ... method NavigableOrTopLevelObject (line 26) | def NavigableOrTopLevelObject(self, w): ... method JealousFocus (line 27) | def JealousFocus(self, w): ... method SetFocusFromMousePos (line 28) | def SetFocusFromMousePos(self, backupWidget) -> None: ... method eventFilter (line 29) | def eventFilter(self, widget, event): ... FILE: usd/stubs/pxr-stubs/Usdviewq/arrayAttributeView.pyi function _GetLengthOfRange (line 4) | def _GetLengthOfRange(start, stop, step): ... class _ArrayAttributeModel (line 6) | class _ArrayAttributeModel(QtCore.QAbstractListModel): method __init__ (line 16) | def __init__(self) -> None: ... method SetArrayDataAndTypeName (line 17) | def SetArrayDataAndTypeName(self, arrayData, scalarTypeName) -> None: ... method SetSlice (line 18) | def SetSlice(self, slice_) -> None: ... method _Reset (line 19) | def _Reset(self) -> None: ... method GetArrayData (line 20) | def GetArrayData(self): ... method GetScalarTypeName (line 21) | def GetScalarTypeName(self): ... method index (line 22) | def index(self, row, col, parent=...): ... method parent (line 23) | def parent(self, index): ... method rowCount (line 24) | def rowCount(self, parent=...): ... method columnCount (line 25) | def columnCount(self, parent=...): ... method data (line 26) | def data(self, index, role=...): ... method fetchMore (line 27) | def fetchMore(self, index) -> None: ... method canFetchMore (line 28) | def canFetchMore(self, index): ... method TryToFetchMore (line 29) | def TryToFetchMore(self) -> None: ... class ArrayAttributeView (line 31) | class ArrayAttributeView(QtWidgets.QWidget): method __init__ (line 35) | def __init__(self, parent: Incomplete | None = None) -> None: ... method SetAttribute (line 36) | def SetAttribute(self, attr, frame) -> None: ... method CanView (line 37) | def CanView(self, attr): ... method keyPressEvent (line 38) | def keyPressEvent(self, e): ... method _SetupContextMenu (line 39) | def _SetupContextMenu(self) -> None: ... method _ShowContextMenu (line 40) | def _ShowContextMenu(self, point) -> None: ... method CopyAll (line 41) | def CopyAll(self) -> None: ... method CopySelected (line 42) | def CopySelected(self) -> None: ... method _CopyValsToClipboard (line 43) | def _CopyValsToClipboard(self, vals) -> None: ... method SelectAll (line 44) | def SelectAll(self) -> None: ... function _IntOrNone (line 46) | def _IntOrNone(s): ... function _GetSliceFromString (line 47) | def _GetSliceFromString(s): ... class _SliceLineEdit (line 49) | class _SliceLineEdit(QtWidgets.QLineEdit): method __init__ (line 52) | def __init__(self, parent: Incomplete | None = None) -> None: ... class Validator (line 53) | class Validator(QtGui.QValidator): method validate (line 54) | def validate(self, s, pos): ... method setText (line 55) | def setText(self, t) -> None: ... method _OnEditingFinished (line 56) | def _OnEditingFinished(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/attributeValueEditor.pyi class AttributeValueEditor (line 8) | class AttributeValueEditor(QtWidgets.QWidget): method __init__ (line 13) | def __init__(self, parent) -> None: ... method setAppController (line 15) | def setAppController(self, appController) -> None: ... method populate (line 19) | def populate(self, primPath, propName) -> None: ... method _FindView (line 20) | def _FindView(self, attr): ... method refresh (line 22) | def refresh(self) -> None: ... method clear (line 23) | def clear(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/attributeValueEditorUI.pyi class Ui_AttributeValueEditor (line 6) | class Ui_AttributeValueEditor: method setupUi (line 10) | def setupUi(self, AttributeValueEditor) -> None: ... method retranslateUi (line 11) | def retranslateUi(self, AttributeValueEditor) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/attributeViewContextMenu.pyi class AttributeViewContextMenu (line 7) | class AttributeViewContextMenu(QtWidgets.QMenu): method __init__ (line 9) | def __init__(self, parent, item, dataModel) -> None: ... function _GetContextMenuItems (line 11) | def _GetContextMenuItems(item, dataModel): ... function _selectPrimsAndProps (line 12) | def _selectPrimsAndProps(dataModel, paths) -> None: ... class AttributeViewContextMenuItem (line 14) | class AttributeViewContextMenuItem(UsdviewContextMenuItem): method __init__ (line 20) | def __init__(self, dataModel, item) -> None: ... method IsEnabled (line 21) | def IsEnabled(self): ... method ShouldDisplay (line 22) | def ShouldDisplay(self): ... method GetText (line 23) | def GetText(self): ... method RunCommand (line 24) | def RunCommand(self) -> None: ... class CopyAttributeNameMenuItem (line 26) | class CopyAttributeNameMenuItem(AttributeViewContextMenuItem): method ShouldDisplay (line 27) | def ShouldDisplay(self): ... method GetText (line 28) | def GetText(self): ... method RunCommand (line 29) | def RunCommand(self) -> None: ... class CopyAttributeValueMenuItem (line 31) | class CopyAttributeValueMenuItem(AttributeViewContextMenuItem): method ShouldDisplay (line 32) | def ShouldDisplay(self): ... method GetText (line 33) | def GetText(self): ... method RunCommand (line 34) | def RunCommand(self) -> None: ... class CopyTargetPathMenuItem (line 36) | class CopyTargetPathMenuItem(AttributeViewContextMenuItem): method ShouldDisplay (line 37) | def ShouldDisplay(self): ... method GetText (line 38) | def GetText(self): ... method GetSelectedOfType (line 39) | def GetSelectedOfType(self): ... method RunCommand (line 40) | def RunCommand(self) -> None: ... class SelectTargetPathMenuItem (line 42) | class SelectTargetPathMenuItem(CopyTargetPathMenuItem): method GetText (line 43) | def GetText(self): ... method RunCommand (line 44) | def RunCommand(self) -> None: ... function _GetTargetPathsForItem (line 46) | def _GetTargetPathsForItem(item): ... class SelectAllTargetPathsMenuItem (line 48) | class SelectAllTargetPathsMenuItem(AttributeViewContextMenuItem): method ShouldDisplay (line 49) | def ShouldDisplay(self): ... method IsEnabled (line 50) | def IsEnabled(self): ... method GetText (line 51) | def GetText(self): ... method RunCommand (line 52) | def RunCommand(self) -> None: ... class CopyAllTargetPathsMenuItem (line 54) | class CopyAllTargetPathsMenuItem(SelectAllTargetPathsMenuItem): method GetText (line 55) | def GetText(self): ... method RunCommand (line 56) | def RunCommand(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/common.pyi class ClearColors (line 9) | class ClearColors(ConstantsGroup): class DefaultFontFamily (line 16) | class DefaultFontFamily(ConstantsGroup): class HighlightColors (line 22) | class HighlightColors(ConstantsGroup): class UIBaseColors (line 28) | class UIBaseColors(ConstantsGroup): class UIPrimTypeColors (line 33) | class UIPrimTypeColors(ConstantsGroup): class UIPrimTreeColors (line 39) | class UIPrimTreeColors(ConstantsGroup): class UIPropertyValueSourceColors (line 46) | class UIPropertyValueSourceColors(ConstantsGroup): class UIFonts (line 53) | class UIFonts(ConstantsGroup): class KeyboardShortcuts (line 64) | class KeyboardShortcuts(ConstantsGroup): class PropertyViewIndex (line 67) | class PropertyViewIndex(ConstantsGroup): function _DeferredIconLoad (line 75) | def _DeferredIconLoad(path): ... class PropertyViewIcons (line 77) | class PropertyViewIcons(ConstantsGroup): class PropertyViewDataRoles (line 86) | class PropertyViewDataRoles(ConstantsGroup): class RenderModes (line 96) | class RenderModes(ConstantsGroup): class ShadedRenderModes (line 107) | class ShadedRenderModes(ConstantsGroup): class ColorCorrectionModes (line 114) | class ColorCorrectionModes(ConstantsGroup): class PickModes (line 119) | class PickModes(ConstantsGroup): class SelectionHighlightModes (line 125) | class SelectionHighlightModes(ConstantsGroup): class CameraMaskModes (line 130) | class CameraMaskModes(ConstantsGroup): class IncludedPurposes (line 135) | class IncludedPurposes(ConstantsGroup): function _PropTreeWidgetGetRole (line 141) | def _PropTreeWidgetGetRole(tw): ... function PropTreeWidgetTypeIsRel (line 142) | def PropTreeWidgetTypeIsRel(tw): ... function _UpdateLabelText (line 143) | def _UpdateLabelText(text, substring, mode): ... function ItalicizeLabelText (line 144) | def ItalicizeLabelText(text, substring): ... function BoldenLabelText (line 145) | def BoldenLabelText(text, substring): ... function ColorizeLabelText (line 146) | def ColorizeLabelText(text, substring, r, g, b): ... function PrintWarning (line 147) | def PrintWarning(title, description) -> None: ... function GetValueAndDisplayString (line 148) | def GetValueAndDisplayString(prop, time): function GetShortStringForValue (line 159) | def GetShortStringForValue(prop, val): ... function ReportMetricSize (line 160) | def ReportMetricSize(sizeInBytes): ... function _GetAttributeStatus (line 161) | def _GetAttributeStatus(attribute, frame): ... function GetPropertyTextFont (line 162) | def GetPropertyTextFont(prop, frame): ... function GetPropertyColor (line 163) | def GetPropertyColor(prop, frame, hasValue: Incomplete | None = None, ha... class LayerInfo (line 165) | class LayerInfo: method __init__ (line 173) | def __init__(self, identifier, realPath, offset, stage, timeCodesPerSe... method FromLayer (line 175) | def FromLayer(cls, layer, stage, offset, depth: int = 0): ... method FromMutedLayerIdentifier (line 177) | def FromMutedLayerIdentifier(cls, identifier, parentLayer, stage, dept... method GetIdentifier (line 178) | def GetIdentifier(self): ... method GetRealPath (line 179) | def GetRealPath(self): ... method IsMuted (line 180) | def IsMuted(self): ... method GetOffset (line 181) | def GetOffset(self): ... method GetOffsetString (line 182) | def GetOffsetString(self): ... method GetOffsetTooltipString (line 183) | def GetOffsetTooltipString(self): ... method GetToolTipString (line 184) | def GetToolTipString(self): ... method GetHierarchicalDisplayString (line 185) | def GetHierarchicalDisplayString(self): ... function _AddLayerTree (line 187) | def _AddLayerTree(stage, layerTree, depth: int = 0): ... function _AddLayerTreeWithMutedSubLayers (line 188) | def _AddLayerTreeWithMutedSubLayers(stage, layerTree, depth: int = 0): ... function GetRootLayerStackInfo (line 189) | def GetRootLayerStackInfo(stage): ... function PrettyFormatSize (line 190) | def PrettyFormatSize(sz): ... class Timer (line 192) | class Timer: method __init__ (line 208) | def __init__(self, label, printTiming: bool = False) -> None: ... method __enter__ (line 211) | def __enter__(self): ... method __exit__ (line 212) | def __exit__(self, excType: type[BaseException] | None, excVal: BaseEx... method Invalidate (line 213) | def Invalidate(self) -> None: ... method PrintTime (line 214) | def PrintTime(self) -> None: ... class BusyContext (line 216) | class BusyContext: method __enter__ (line 220) | def __enter__(self) -> None: ... method __exit__ (line 221) | def __exit__(self, *args) -> None: ... function InvisRootPrims (line 223) | def InvisRootPrims(stage) -> None: function _RemoveVisibilityRecursive (line 226) | def _RemoveVisibilityRecursive(primSpec) -> None: ... function ResetSessionVisibility (line 227) | def ResetSessionVisibility(stage) -> None: ... function HasSessionVis (line 228) | def HasSessionVis(prim): function GetEnclosingModelPrim (line 230) | def GetEnclosingModelPrim(prim): function GetPrimLoadability (line 233) | def GetPrimLoadability(prim): function GetPrimsLoadability (line 245) | def GetPrimsLoadability(prims): function GetFileOwner (line 249) | def GetFileOwner(path): ... function GetAssetCreationTime (line 250) | def GetAssetCreationTime(primStack, assetIdentifier): function DumpMallocTags (line 258) | def DumpMallocTags(stage, contextStr) -> None: ... function GetInstanceIdForIndex (line 259) | def GetInstanceIdForIndex(prim, instanceIndex, time): function GetInstanceIndicesForIds (line 266) | def GetInstanceIndicesForIds(prim, instanceIds, time): function Drange (line 272) | def Drange(start, stop, step): class PrimNotFoundException (line 278) | class PrimNotFoundException(Exception): method __init__ (line 280) | def __init__(self, path) -> None: ... class PropertyNotFoundException (line 282) | class PropertyNotFoundException(Exception): method __init__ (line 284) | def __init__(self, path) -> None: ... class FixableDoubleValidator (line 286) | class FixableDoubleValidator(QtGui.QDoubleValidator): method __init__ (line 297) | def __init__(self, parent) -> None: ... method fixup (line 298) | def fixup(self, valStr) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/configController.pyi class ConfigController (line 4) | class ConfigController: method __init__ (line 7) | def __init__(self, currentConfig, appController) -> None: ... method _hide (line 8) | def _hide(self, ui) -> None: ... method reloadConfigController (line 9) | def reloadConfigController(self): method _validateAndSaveConfig (line 11) | def _validateAndSaveConfig(self, newName, dialog) -> None: ... method _saveAsTriggered (line 12) | def _saveAsTriggered(self): ... FILE: usd/stubs/pxr-stubs/Usdviewq/customAttributes.pyi class ComputedPropertyNames (line 5) | class ComputedPropertyNames(ConstantsGroup): function _GetCustomAttributes (line 12) | def _GetCustomAttributes(currentPrim, rootDataModel): ... class CustomAttribute (line 14) | class CustomAttribute: method __init__ (line 17) | def __init__(self, currentPrim, rootDataModel) -> None: ... method IsVisible (line 18) | def IsVisible(self): ... method GetName (line 19) | def GetName(self): ... method Get (line 20) | def Get(self, frame): ... method GetTypeName (line 21) | def GetTypeName(self): ... method GetPrimPath (line 22) | def GetPrimPath(self): ... class BoundingBoxAttribute (line 24) | class BoundingBoxAttribute(CustomAttribute): method __init__ (line 25) | def __init__(self, currentPrim, rootDataModel) -> None: ... method GetName (line 26) | def GetName(self): ... method Get (line 27) | def Get(self, frame): ... class LocalToWorldXformAttribute (line 29) | class LocalToWorldXformAttribute(CustomAttribute): method __init__ (line 30) | def __init__(self, currentPrim, rootDataModel) -> None: ... method GetName (line 31) | def GetName(self): ... method Get (line 32) | def Get(self, frame): ... class ResolvedBoundMaterial (line 34) | class ResolvedBoundMaterial(CustomAttribute): method __init__ (line 36) | def __init__(self, currentPrim, rootDataModel, purpose) -> None: ... method GetName (line 37) | def GetName(self): ... method Get (line 38) | def Get(self, frame): ... class ResolvedFullMaterial (line 40) | class ResolvedFullMaterial(ResolvedBoundMaterial): method __init__ (line 41) | def __init__(self, currentPrim, rootDataModel) -> None: ... class ResolvedPreviewMaterial (line 43) | class ResolvedPreviewMaterial(ResolvedBoundMaterial): method __init__ (line 44) | def __init__(self, currentPrim, rootDataModel) -> None: ... class ComputedPropertyFactory (line 46) | class ComputedPropertyFactory: method __init__ (line 49) | def __init__(self, rootDataModel) -> None: ... method getComputedProperty (line 50) | def getComputedProperty(self, prim, propName): FILE: usd/stubs/pxr-stubs/Usdviewq/debugFlagsWidget.pyi function _GetDebugFlagsWithPrefix (line 5) | def _GetDebugFlagsWithPrefix(debugFlagPrefix): ... class DebugFlagsWidget (line 7) | class DebugFlagsWidget(QtWidgets.QWidget): method __init__ (line 10) | def __init__(self, parent: Incomplete | None = None) -> None: ... method _populateDebugFlagsListView (line 12) | def _populateDebugFlagsListView(self, listView) -> None: ... method _populateDebugFlagsTableView (line 13) | def _populateDebugFlagsTableView(self, debugFlagPrefix) -> None: ... method _onFlagSelectionChanged (line 14) | def _onFlagSelectionChanged(self, selected, deselected) -> None: ... method _onDebugFlagChecked (line 15) | def _onDebugFlagChecked(self, item) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/frameSlider.pyi class FrameSlider (line 4) | class FrameSlider(QtWidgets.QSlider): method __init__ (line 8) | def __init__(self, parent: Incomplete | None = None) -> None: ... method mousePaused (line 9) | def mousePaused(self) -> None: method mousePressEvent (line 11) | def mousePressEvent(self, event) -> None: ... method mouseMoveEvent (line 12) | def mouseMoveEvent(self, event) -> None: ... method mouseReleaseEvent (line 13) | def mouseReleaseEvent(self, event) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/freeCamera.pyi class FreeCamera (line 6) | class FreeCamera(QtCore.QObject): method __init__ (line 29) | def __init__(self, isZUp, fov: float = 60.0, aspectRatio: float = 1.0,... method clone (line 31) | def clone(self): ... method _pushToCameraTransform (line 32) | def _pushToCameraTransform(self): method _pullFromCameraTransform (line 39) | def _pullFromCameraTransform(self) -> None: method _rangeOfBoxAlongRay (line 43) | def _rangeOfBoxAlongRay(self, camRay, bbox, debugClipping: bool = Fals... method setClippingPlanes (line 44) | def setClippingPlanes(self, stageBBox) -> None: method computeGfCamera (line 52) | def computeGfCamera(self, stageBBox, autoClip: bool = False): method resetClippingPlanes (line 57) | def resetClippingPlanes(self) -> None: method frameSelection (line 59) | def frameSelection(self, selBBox, frameFit) -> None: ... method setClosestVisibleDistFromPoint (line 60) | def setClosestVisibleDistFromPoint(self, point) -> None: ... method ComputePixelsToWorldFactor (line 61) | def ComputePixelsToWorldFactor(self, viewportHeight): method Tumble (line 66) | def Tumble(self, dTheta, dPhi) -> None: method AdjustDistance (line 68) | def AdjustDistance(self, scaleFactor) -> None: method Truck (line 71) | def Truck(self, deltaRight, deltaUp) -> None: method PanTilt (line 76) | def PanTilt(self, dPan, dTilt) -> None: method Walk (line 84) | def Walk(self, dForward, dRight) -> None: method FromGfCamera (line 88) | def FromGfCamera(gfCamera, isZUp): ... method rotTheta (line 90) | def rotTheta(self): ... method rotTheta (line 92) | def rotTheta(self, value) -> None: ... method rotPhi (line 94) | def rotPhi(self): ... method rotPhi (line 96) | def rotPhi(self, value) -> None: ... method center (line 98) | def center(self): ... method center (line 100) | def center(self, value) -> None: ... method dist (line 102) | def dist(self): ... method dist (line 104) | def dist(self, value) -> None: ... method orthographic (line 106) | def orthographic(self): ... method orthographic (line 108) | def orthographic(self, orthographic) -> None: ... method fov (line 110) | def fov(self): method fov (line 116) | def fov(self, value) -> None: ... method aspectRatio (line 118) | def aspectRatio(self): ... method aspectRatio (line 120) | def aspectRatio(self, value) -> None: method horizontalAperture (line 123) | def horizontalAperture(self): ... method horizontalAperture (line 125) | def horizontalAperture(self, value) -> None: ... method verticalAperture (line 127) | def verticalAperture(self): ... method verticalAperture (line 129) | def verticalAperture(self, value) -> None: ... method focalLength (line 131) | def focalLength(self): ... method focalLength (line 133) | def focalLength(self, value) -> None: ... method near (line 135) | def near(self): ... method far (line 137) | def far(self): ... method overrideNear (line 139) | def overrideNear(self): ... method overrideNear (line 141) | def overrideNear(self, value) -> None: method overrideFar (line 144) | def overrideFar(self): ... method overrideFar (line 146) | def overrideFar(self, value) -> None: FILE: usd/stubs/pxr-stubs/Usdviewq/headerContextMenu.pyi class HeaderContextMenu (line 5) | class HeaderContextMenu(QtWidgets.QMenu): method __init__ (line 7) | def __init__(self, parent) -> None: ... method _prepForShow (line 8) | def _prepForShow(self) -> None: ... function _GetContextMenuItems (line 10) | def _GetContextMenuItems(parent): ... class HeaderContextMenuItem (line 12) | class HeaderContextMenuItem(UsdviewContextMenuItem): method __init__ (line 17) | def __init__(self, parent, column) -> None: ... method GetText (line 18) | def GetText(self): ... method IsEnabled (line 19) | def IsEnabled(self): ... method IsChecked (line 20) | def IsChecked(self): ... method RunCommand (line 21) | def RunCommand(self) -> None: ... method action (line 23) | def action(self): ... method action (line 25) | def action(self, action) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/hydraSceneBrowser.pyi class HydraSceneBrowser (line 6) | class HydraSceneBrowser(QtWidgets.QWidget): method __init__ (line 21) | def __init__(self, parent: Incomplete | None = None) -> None: ... method __PollForNotices (line 22) | def __PollForNotices(self) -> None: ... method __SceneIndexSelected (line 23) | def __SceneIndexSelected(self, name) -> None: ... method __SceneIndexChanged (line 24) | def __SceneIndexChanged(self) -> None: ... method __PrimSelected (line 25) | def __PrimSelected(self, primPath, dataSourceProxy) -> None: ... method __PrimDirtied (line 26) | def __PrimDirtied(self, primPath, locators) -> None: ... method __DataSourceSelected (line 27) | def __DataSourceSelected(self, dataSourceProxy) -> None: ... method __FillGoToInputMenu (line 28) | def __FillGoToInputMenu(self) -> None: ... method __UpdateNameLabel (line 29) | def __UpdateNameLabel(self, prefix: Incomplete | None = None) -> None:... method __ShowLoggerWindow (line 30) | def __ShowLoggerWindow(self) -> None: ... class _RegisteredSceneIndexChooser (line 32) | class _RegisteredSceneIndexChooser(QtWidgets.QPushButton): method __init__ (line 35) | def __init__(self, parent: Incomplete | None = None) -> None: ... method __AboutToShow (line 36) | def __AboutToShow(self) -> None: ... method __Triggered (line 37) | def __Triggered(self, action) -> None: ... class _DataSourceProxy (line 39) | class _DataSourceProxy: method __init__ (line 41) | def __init__(self, value: Incomplete | None = None) -> None: ... class _SceneIndexTreeWidget (line 43) | class _SceneIndexTreeWidget(QtWidgets.QTreeWidget): method __init__ (line 49) | def __init__(self, observer, parent: Incomplete | None = None) -> None... method contextMenuEvent (line 50) | def contextMenuEvent(self, event) -> None: ... method PrimsAdded (line 51) | def PrimsAdded(self, entries) -> None: ... method PrimsRemoved (line 52) | def PrimsRemoved(self, entries) -> None: ... method PrimsDirtied (line 53) | def PrimsDirtied(self, entries) -> None: ... method _GetPrimItem (line 54) | def _GetPrimItem(self, primPath, createIfNecessary: bool = True): ... method _AddPrimItem (line 55) | def _AddPrimItem(self, primPath, item) -> None: ... method _RemoveSubtree (line 56) | def _RemoveSubtree(self, primPath) -> None: ... method _RemoveSubtreeEntries (line 57) | def _RemoveSubtreeEntries(self, primPath) -> None: ... method Requery (line 58) | def Requery(self, observer, lazy: bool = True) -> None: ... method PrimIsExpanded (line 59) | def PrimIsExpanded(self, primPath): ... method AddToExpandedSet (line 60) | def AddToExpandedSet(self, primPath) -> None: ... method RemoveFromExpandedSet (line 61) | def RemoveFromExpandedSet(self, primPath) -> None: ... method __ItemSelectionChanged (line 62) | def __ItemSelectionChanged(self) -> None: ... method __ItemExpanded (line 63) | def __ItemExpanded(self, item) -> None: ... method __ItemCollapsed (line 64) | def __ItemCollapsed(self, item) -> None: ... class _SceneIndexPrimTreeWidgetItem (line 66) | class _SceneIndexPrimTreeWidgetItem(QtWidgets.QTreeWidgetItem): method __init__ (line 69) | def __init__(self, parent, primPath, queryOnExpansion: bool = False) -... method GetPrimPath (line 70) | def GetPrimPath(self): ... method WasExpanded (line 71) | def WasExpanded(self, treeWidget, observer) -> None: ... class _DataSourceTreeWidget (line 73) | class _DataSourceTreeWidget(QtWidgets.QTreeWidget): method __init__ (line 76) | def __init__(self, parent) -> None: ... method SetPrimDataSource (line 77) | def SetPrimDataSource(self, primPath, dataSource) -> None: ... method PrimDirtied (line 78) | def PrimDirtied(self, primPath, dataSource, locatorSet) -> None: ... method _GetExpandedSet (line 79) | def _GetExpandedSet(self): ... method __ItemExpanded (line 80) | def __ItemExpanded(self, item) -> None: ... method __ItemCollapsed (line 81) | def __ItemCollapsed(self, item) -> None: ... method __ItemSelectionChanged (line 82) | def __ItemSelectionChanged(self) -> None: ... class _DataSourceTreeWidgetItem (line 84) | class _DataSourceTreeWidgetItem(QtWidgets.QTreeWidgetItem): method __init__ (line 88) | def __init__(self, locator, parentItem, dataSource) -> None: ... method __IsInExpandedSet (line 89) | def __IsInExpandedSet(self): ... method __SetIsInExpandedSet (line 90) | def __SetIsInExpandedSet(self, state) -> None: ... method WasExpanded (line 91) | def WasExpanded(self) -> None: ... method WasCollapsed (line 92) | def WasCollapsed(self) -> None: ... method SetDirty (line 93) | def SetDirty(self, dataSource) -> None: ... method GetDataSource (line 94) | def GetDataSource(self): ... method GetLocator (line 95) | def GetLocator(self): ... method __RebuildChildren (line 96) | def __RebuildChildren(self) -> None: ... method __BuildChildren (line 97) | def __BuildChildren(self) -> None: ... class _ValueItemModel (line 99) | class _ValueItemModel(QtCore.QAbstractItemModel): method __init__ (line 103) | def __init__(self, value, typeStr, parent: Incomplete | None = None) -... method data (line 104) | def data(self, modelIndex, role=...): ... method headerData (line 105) | def headerData(self, section, orientation, role=...): ... method parent (line 106) | def parent(self, model): ... method columnCount (line 107) | def columnCount(self, parent=...): ... method rowCount (line 108) | def rowCount(self, parent=...): ... method index (line 109) | def index(self, row, column, parent: Incomplete | None = None): ... class _DataSourceValueTreeView (line 111) | class _DataSourceValueTreeView(QtWidgets.QTreeView): method __init__ (line 113) | def __init__(self, parent) -> None: ... method SetDataSource (line 114) | def SetDataSource(self, dataSource) -> None: ... method Refresh (line 115) | def Refresh(self) -> None: ... class _NoticeLoggingWidget (line 117) | class _NoticeLoggingWidget(QtWidgets.QWidget): method __init__ (line 125) | def __init__(self, parent) -> None: ... method AddNotices (line 126) | def AddNotices(self, entries) -> None: ... method SetText (line 127) | def SetText(self, value) -> None: ... method __Clear (line 128) | def __Clear(self) -> None: ... method __ToggleRecordingState (line 129) | def __ToggleRecordingState(self) -> None: ... class _ObserverLoggingTreeView (line 131) | class _ObserverLoggingTreeView(QtWidgets.QTreeView): method __init__ (line 133) | def __init__(self, parent: Incomplete | None = None) -> None: ... method GetModel (line 134) | def GetModel(self): ... class _ObserverLoggingItemModel (line 136) | class _ObserverLoggingItemModel(QtCore.QAbstractItemModel): method __init__ (line 138) | def __init__(self, parent) -> None: ... method AddEntries (line 139) | def AddEntries(self, newEntries) -> None: ... method Clear (line 140) | def Clear(self) -> None: ... method data (line 141) | def data(self, modelIndex, role=...): ... method headerData (line 142) | def headerData(self, section, orientation, role=...): ... method index (line 143) | def index(self, row, column, parent: Incomplete | None = None): ... method parent (line 144) | def parent(self, modelIndex): ... method columnCount (line 145) | def columnCount(self, parent=...): ... method rowCount (line 146) | def rowCount(self, parent=...): ... FILE: usd/stubs/pxr-stubs/Usdviewq/layerStackContextMenu.pyi class LayerStackContextMenu (line 7) | class LayerStackContextMenu(QtWidgets.QMenu): method __init__ (line 9) | def __init__(self, parent, item) -> None: ... function _GetContextMenuItems (line 11) | def _GetContextMenuItems(item): ... class LayerStackContextMenuItem (line 13) | class LayerStackContextMenuItem(UsdviewContextMenuItem): method __init__ (line 15) | def __init__(self, item) -> None: ... method IsEnabled (line 16) | def IsEnabled(self): ... method GetText (line 17) | def GetText(self): ... method RunCommand (line 18) | def RunCommand(self) -> None: ... class OpenLayerMenuItem (line 20) | class OpenLayerMenuItem(LayerStackContextMenuItem): method GetText (line 21) | def GetText(self): ... method IsEnabled (line 22) | def IsEnabled(self): ... method RunCommand (line 23) | def RunCommand(self) -> None: ... class UsdviewLayerMenuItem (line 25) | class UsdviewLayerMenuItem(LayerStackContextMenuItem): method GetText (line 26) | def GetText(self): ... method IsEnabled (line 27) | def IsEnabled(self): ... method RunCommand (line 28) | def RunCommand(self) -> None: ... class CopyLayerPathMenuItem (line 30) | class CopyLayerPathMenuItem(LayerStackContextMenuItem): method GetText (line 31) | def GetText(self): ... method RunCommand (line 32) | def RunCommand(self) -> None: ... class CopyLayerIdentifierMenuItem (line 34) | class CopyLayerIdentifierMenuItem(LayerStackContextMenuItem): method GetText (line 35) | def GetText(self): ... method RunCommand (line 36) | def RunCommand(self) -> None: ... class CopyPathMenuItem (line 38) | class CopyPathMenuItem(LayerStackContextMenuItem): method GetText (line 39) | def GetText(self): ... method RunCommand (line 40) | def RunCommand(self) -> None: ... method IsEnabled (line 41) | def IsEnabled(self): ... class MuteOrUnmuteLayerMenuItem (line 43) | class MuteOrUnmuteLayerMenuItem(LayerStackContextMenuItem): method GetText (line 44) | def GetText(self): ... method RunCommand (line 45) | def RunCommand(self) -> None: ... method IsEnabled (line 46) | def IsEnabled(self): ... FILE: usd/stubs/pxr-stubs/Usdviewq/legendUtil.pyi function _SetAnimValues (line 3) | def _SetAnimValues(anim, a1, a2) -> None: ... function ToggleLegendWithBrowser (line 4) | def ToggleLegendWithBrowser(legend, button, anim) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/mainWindowUI.pyi class Ui_MainWindow (line 11) | class Ui_MainWindow: method setupUi (line 259) | def setupUi(self, MainWindow) -> None: ... method retranslateUi (line 260) | def retranslateUi(self, MainWindow) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/overridableLineEdit.pyi class OverridableLineEdit (line 4) | class OverridableLineEdit(QtWidgets.QLineEdit): method __init__ (line 7) | def __init__(self, parent) -> None: ... method resizeEvent (line 8) | def resizeEvent(self, event) -> None: ... method _overrideSet (line 9) | def _overrideSet(self, text) -> None: ... method setText (line 10) | def setText(self, text) -> None: ... method _resetDefault (line 11) | def _resetDefault(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/plugin.pyi class DuplicateCommandPlugin (line 5) | class DuplicateCommandPlugin(Exception): method __init__ (line 10) | def __init__(self, name) -> None: ... class DeferredImport (line 12) | class DeferredImport: method __init__ (line 40) | def __init__(self, moduleName, packageName: Incomplete | None = None) ... method __getattr__ (line 41) | def __getattr__(self, attr): class PluginContainer (line 47) | class PluginContainer: method deferredImport (line 52) | def deferredImport(self, moduleName): method registerPlugins (line 56) | def registerPlugins(self, plugRegistry, plugCtx) -> None: method configureView (line 61) | def configureView(self, plugRegistry, plugUIBuilder) -> None: class CommandPlugin (line 68) | class CommandPlugin: method __init__ (line 77) | def __init__(self, name, displayName, callback, description, usdviewAp... method name (line 79) | def name(self): method displayName (line 82) | def displayName(self): method description (line 85) | def description(self): method run (line 87) | def run(self) -> None: class PluginMenu (line 90) | class PluginMenu: method __init__ (line 94) | def __init__(self, qMenu) -> None: ... method addItem (line 95) | def addItem(self, commandPlugin, shortcut: Incomplete | None = None): method findOrCreateSubmenu (line 99) | def findOrCreateSubmenu(self, menuName): method addSeparator (line 103) | def addSeparator(self) -> None: class PluginRegistry (line 106) | class PluginRegistry: method __init__ (line 110) | def __init__(self, usdviewApi) -> None: ... method registerCommandPlugin (line 111) | def registerCommandPlugin(self, name, displayName, callback, descripti... method getCommandPlugin (line 128) | def getCommandPlugin(self, name): class PluginUIBuilder (line 133) | class PluginUIBuilder: method __init__ (line 137) | def __init__(self, mainWindow) -> None: ... method findOrCreateMenu (line 138) | def findOrCreateMenu(self, menuName): function loadPlugins (line 143) | def loadPlugins(usdviewApi, mainWindow): FILE: usd/stubs/pxr-stubs/Usdviewq/preferences.pyi class Preferences (line 6) | class Preferences(QtWidgets.QDialog): method __init__ (line 22) | def __init__(self, parent, dataModel) -> None: ... method _updateEditorsFromDataModel (line 23) | def _updateEditorsFromDataModel(self) -> None: ... method _apply (line 24) | def _apply(self) -> None: ... method _buttonBoxButtonClicked (line 25) | def _buttonBoxButtonClicked(self, button) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/preferencesUI.pyi class Ui_Preferences (line 6) | class Ui_Preferences: method setupUi (line 18) | def setupUi(self, Preferences) -> None: ... method retranslateUi (line 19) | def retranslateUi(self, Preferences) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/prettyPrint.pyi function progressDialog (line 3) | def progressDialog(title, value): ... function prettyPrint (line 4) | def prettyPrint(v): FILE: usd/stubs/pxr-stubs/Usdviewq/primContextMenu.pyi class PrimContextMenu (line 5) | class PrimContextMenu(QtWidgets.QMenu): method __init__ (line 7) | def __init__(self, parent, item, appController) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/primContextMenuItems.pyi function _GetContextMenuItems (line 5) | def _GetContextMenuItems(appController, item): ... class PrimContextMenuItem (line 7) | class PrimContextMenuItem(UsdviewContextMenuItem): method __init__ (line 12) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 13) | def IsEnabled(self): ... method IsSeparator (line 14) | def IsSeparator(self): ... method GetText (line 15) | def GetText(self): ... method RunCommand (line 16) | def RunCommand(self): ... class SeparatorMenuItem (line 18) | class SeparatorMenuItem(PrimContextMenuItem): method IsSeparator (line 19) | def IsSeparator(self): ... class JumpToEnclosingModelItem (line 21) | class JumpToEnclosingModelItem(PrimContextMenuItem): method IsEnabled (line 22) | def IsEnabled(self): ... method GetText (line 23) | def GetText(self): ... method RunCommand (line 24) | def RunCommand(self) -> None: ... class SelectBoundPreviewMaterialMenuItem (line 26) | class SelectBoundPreviewMaterialMenuItem(PrimContextMenuItem): method __init__ (line 29) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 30) | def IsEnabled(self): ... method GetText (line 31) | def GetText(self): ... method RunCommand (line 32) | def RunCommand(self) -> None: ... class SelectBoundFullMaterialMenuItem (line 34) | class SelectBoundFullMaterialMenuItem(PrimContextMenuItem): method __init__ (line 37) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 38) | def IsEnabled(self): ... method GetText (line 39) | def GetText(self): ... method RunCommand (line 40) | def RunCommand(self) -> None: ... class ActiveMenuItem (line 42) | class ActiveMenuItem(PrimContextMenuItem): method GetText (line 43) | def GetText(self): ... method RunCommand (line 44) | def RunCommand(self) -> None: ... class ToggleVisibilityMenuItem (line 46) | class ToggleVisibilityMenuItem(PrimContextMenuItem): method __init__ (line 49) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 50) | def IsEnabled(self): ... method GetText (line 51) | def GetText(self): ... method RunCommand (line 52) | def RunCommand(self) -> None: ... class VisOnlyMenuItem (line 54) | class VisOnlyMenuItem(PrimContextMenuItem): method IsEnabled (line 55) | def IsEnabled(self): ... method GetText (line 56) | def GetText(self): ... method RunCommand (line 57) | def RunCommand(self) -> None: ... class RemoveVisMenuItem (line 59) | class RemoveVisMenuItem(PrimContextMenuItem): method IsEnabled (line 60) | def IsEnabled(self): ... method GetText (line 61) | def GetText(self): ... method RunCommand (line 62) | def RunCommand(self) -> None: ... class LoadOrUnloadMenuItem (line 64) | class LoadOrUnloadMenuItem(PrimContextMenuItem): method __init__ (line 65) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 66) | def IsEnabled(self): ... method GetText (line 67) | def GetText(self): ... method RunCommand (line 68) | def RunCommand(self) -> None: ... class CopyPrimPathMenuItem (line 70) | class CopyPrimPathMenuItem(PrimContextMenuItem): method GetText (line 71) | def GetText(self): ... method RunCommand (line 72) | def RunCommand(self) -> None: ... class CopyModelPathMenuItem (line 74) | class CopyModelPathMenuItem(PrimContextMenuItem): method __init__ (line 76) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 77) | def IsEnabled(self): ... method GetText (line 78) | def GetText(self): ... method RunCommand (line 79) | def RunCommand(self) -> None: ... class IsolateCopyPrimMenuItem (line 81) | class IsolateCopyPrimMenuItem(PrimContextMenuItem): method GetText (line 82) | def GetText(self): ... method RunCommand (line 83) | def RunCommand(self) -> None: ... method IsEnabled (line 84) | def IsEnabled(self): ... class IsolateAssetMenuItem (line 86) | class IsolateAssetMenuItem(PrimContextMenuItem): method __init__ (line 89) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 90) | def IsEnabled(self): ... method GetText (line 91) | def GetText(self): ... method RunCommand (line 92) | def RunCommand(self) -> None: ... class SetAsActiveCamera (line 94) | class SetAsActiveCamera(PrimContextMenuItem): method __init__ (line 96) | def __init__(self, appController, item) -> None: ... method IsEnabled (line 97) | def IsEnabled(self): ... method GetText (line 98) | def GetText(self): ... method RunCommand (line 99) | def RunCommand(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/primLegend.pyi class PrimLegend (line 6) | class PrimLegend(QtWidgets.QWidget): method __init__ (line 9) | def __init__(self, parent) -> None: ... method IsMinimized (line 10) | def IsMinimized(self): ... method ToggleMinimized (line 11) | def ToggleMinimized(self) -> None: ... method GetHeight (line 12) | def GetHeight(self): ... method GetResetHeight (line 13) | def GetResetHeight(self): ... FILE: usd/stubs/pxr-stubs/Usdviewq/primLegendUI.pyi class Ui_PrimLegend (line 6) | class Ui_PrimLegend: method setupUi (line 22) | def setupUi(self, PrimLegend) -> None: ... method retranslateUi (line 23) | def retranslateUi(self, PrimLegend) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/primTreeWidget.pyi function _GetPropertySpecInSessionLayer (line 8) | def _GetPropertySpecInSessionLayer(usdAttribute): ... function _GetBackgroundColor (line 9) | def _GetBackgroundColor(item, option): ... class DrawModes (line 11) | class DrawModes(ConstantsGroup): class DrawModeComboBox (line 17) | class DrawModeComboBox(QtWidgets.QComboBox): method __init__ (line 22) | def __init__(self, parent: Incomplete | None = None) -> None: ... method hidePopup (line 23) | def hidePopup(self) -> None: ... class DrawModeWidget (line 25) | class DrawModeWidget(QtWidgets.QWidget): method __init__ (line 39) | def __init__(self, primViewItem, refreshFunc, makeTimer, parent: Incom... method paintEvent (line 40) | def paintEvent(self, event) -> None: ... method _ShouldHideClearButton (line 41) | def _ShouldHideClearButton(self): ... method RefreshDrawMode (line 42) | def RefreshDrawMode(self, currentDrawMode: Incomplete | None = None) -... method _UpdateDrawMode (line 43) | def _UpdateDrawMode(self) -> None: ... method _ClearDrawMode (line 44) | def _ClearDrawMode(self) -> None: ... method _CloseEditorIfNoEdit (line 45) | def _CloseEditorIfNoEdit(self) -> None: ... method _PopupHidden (line 46) | def _PopupHidden(self) -> None: ... class DrawModeItemDelegate (line 48) | class DrawModeItemDelegate(QtWidgets.QStyledItemDelegate): method __init__ (line 51) | def __init__(self, makeTimer, parent: Incomplete | None = None) -> Non... method paint (line 52) | def paint(self, painter, option, index) -> None: ... method createEditor (line 53) | def createEditor(self, parent, option, index): ... class SelectedAncestorItemDelegate (line 55) | class SelectedAncestorItemDelegate(QtWidgets.QStyledItemDelegate): method __init__ (line 57) | def __init__(self, parent: Incomplete | None = None) -> None: ... method paint (line 58) | def paint(self, painter, option, index) -> None: ... class PrimItemSelectionModel (line 60) | class PrimItemSelectionModel(QtCore.QItemSelectionModel): method __init__ (line 67) | def __init__(self, model) -> None: ... method processSelections (line 69) | def processSelections(self): method processSelections (line 73) | def processSelections(self, doProcess) -> None: ... method clear (line 74) | def clear(self) -> None: ... method reset (line 75) | def reset(self) -> None: ... method select (line 76) | def select(self, indexOrSelection, command) -> None: ... class SelectionEnabler (line 78) | class SelectionEnabler: method __init__ (line 81) | def __init__(self, selectionModel) -> None: ... method __enter__ (line 82) | def __enter__(self): ... method __exit__ (line 83) | def __exit__(self, *args) -> None: ... class PrimTreeWidget (line 85) | class PrimTreeWidget(QtWidgets.QTreeWidget): method __init__ (line 89) | def __init__(self, parent) -> None: ... method InitControllers (line 90) | def InitControllers(self, appController) -> None: ... method ShowDrawModeWidgetForItem (line 91) | def ShowDrawModeWidgetForItem(self, primViewItem) -> None: ... method UpdatePrimViewDrawMode (line 92) | def UpdatePrimViewDrawMode(self, rootItem: Incomplete | None = None) -... method ColumnPressCausesSelection (line 94) | def ColumnPressCausesSelection(self, col): method ExpandItemRecursively (line 97) | def ExpandItemRecursively(self, item) -> None: ... method FrameSelection (line 98) | def FrameSelection(self) -> None: ... method mousePressEvent (line 99) | def mousePressEvent(self, ev) -> None: ... method leaveEvent (line 100) | def leaveEvent(self, ev) -> None: ... method clearSelection (line 101) | def clearSelection(self) -> None: ... method reset (line 102) | def reset(self) -> None: ... method selectAll (line 103) | def selectAll(self) -> None: ... method keyPressEvent (line 104) | def keyPressEvent(self, ev) -> None: ... method keyReleaseEvent (line 105) | def keyReleaseEvent(self, ev) -> None: ... method keyboardSearch (line 106) | def keyboardSearch(self, s) -> None: method updateSelection (line 111) | def updateSelection(self, added, removed) -> None: method _resetAncestorsOfSelected (line 115) | def _resetAncestorsOfSelected(self) -> None: ... method _refreshAncestorsOfSelected (line 116) | def _refreshAncestorsOfSelected(self) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/primViewItem.pyi function _GetPrimInfo (line 10) | def _GetPrimInfo(prim, time): ... class PrimViewColumnIndex (line 12) | class PrimViewColumnIndex(ConstantsGroup): class PrimViewItem (line 19) | class PrimViewItem(QtWidgets.QTreeWidgetItem): method __init__ (line 30) | def __init__(self, prim, appController, primHasChildren) -> None: ... method push (line 31) | def push(self) -> None: method _pull (line 33) | def _pull(self) -> None: method _HasAuthoredDrawMode (line 36) | def _HasAuthoredDrawMode(prim): ... method _isComputedDrawModeInherited (line 37) | def _isComputedDrawModeInherited(self, parentDrawModeIsInherited: Inco... method _extractInfo (line 44) | def _extractInfo(self, info) -> None: ... method addChildren (line 45) | def addChildren(self, children) -> None: method data (line 48) | def data(self, column, role): ... method _GetForegroundColor (line 49) | def _GetForegroundColor(self): ... method _nameData (line 50) | def _nameData(self, role): ... method _drawModeData (line 51) | def _drawModeData(self, role): ... method _typeData (line 52) | def _typeData(self, role): ... method _isVisInherited (line 53) | def _isVisInherited(self): ... method _visData (line 54) | def _visData(self, role): ... method _guideData (line 55) | def _guideData(self, role): ... method needsChildrenPopulated (line 56) | def needsChildrenPopulated(self): ... method canChangeVis (line 57) | def canChangeVis(self): ... method loadVis (line 59) | def loadVis(self, inheritedVis, visHasBeenAuthored): ... method propagateDrawMode (line 61) | def propagateDrawMode(item, primView, parentDrawMode: str = '', parent... method propagateVis (line 63) | def propagateVis(item, authoredVisHasChanged: bool = True) -> None: ... method _resetAncestorsRecursive (line 64) | def _resetAncestorsRecursive(self, authoredVisHasChanged): ... method _pushVisRecursive (line 65) | def _pushVisRecursive(self, inheritedVis, authoredVisHasChanged) -> No... method setLoaded (line 66) | def setLoaded(self, loaded) -> None: ... method setVisible (line 67) | def setVisible(self, visible) -> None: ... method makeVisible (line 68) | def makeVisible(self) -> None: ... method visChanged (line 69) | def visChanged(self) -> None: ... method toggleVis (line 70) | def toggleVis(self): method toggleGuides (line 72) | def toggleGuides(self): FILE: usd/stubs/pxr-stubs/Usdviewq/propertyLegend.pyi class PropertyLegend (line 6) | class PropertyLegend(QtWidgets.QWidget): method __init__ (line 10) | def __init__(self, parent) -> None: ... method IsMinimized (line 11) | def IsMinimized(self): ... method ToggleMinimized (line 12) | def ToggleMinimized(self) -> None: ... method GetHeight (line 13) | def GetHeight(self): ... method GetResetHeight (line 14) | def GetResetHeight(self): ... FILE: usd/stubs/pxr-stubs/Usdviewq/propertyLegendUI.pyi class Ui_PropertyLegend (line 6) | class Ui_PropertyLegend: method setupUi (line 69) | def setupUi(self, PropertyLegend) -> None: ... method retranslateUi (line 70) | def retranslateUi(self, PropertyLegend) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/pythonInterpreter.pyi function _PrintToErr (line 8) | def _PrintToErr(line) -> None: ... function _Redirected (line 9) | def _Redirected(method): ... class _Completer (line 11) | class _Completer: method __init__ (line 15) | def __init__(self, locals) -> None: ... method Complete (line 17) | def Complete(self, text, state): method _GlobalMatches (line 22) | def _GlobalMatches(self, text): method _AttrMatches (line 28) | def _AttrMatches(self, text): function _GetClassMembers (line 41) | def _GetClassMembers(cls): ... class Interpreter (line 43) | class Interpreter(InteractiveInterpreter): method __init__ (line 45) | def __init__(self, locals: Incomplete | None = None) -> None: ... method showsyntaxerror (line 46) | def showsyntaxerror(self, filename: Incomplete | None = None) -> None:... method showtraceback (line 47) | def showtraceback(self) -> None: ... method GetOutputBrush (line 48) | def GetOutputBrush(self): ... class _Helper (line 50) | class _Helper: method __init__ (line 56) | def __init__(self, input, output) -> None: ... method __repr__ (line 57) | def __repr__(self) -> str: ... method __call__ (line 58) | def __call__(self, *args, **kwds): ... class Controller (line 60) | class Controller(QtCore.QObject): method __init__ (line 78) | def __init__(self, textEdit, initialPrompt, locals: Incomplete | None ... method _DoAutoImports (line 87) | def _DoAutoImports(self) -> None: ... method ExecStartupFile (line 88) | def ExecStartupFile(self, path) -> None: ... method SetInputStart (line 89) | def SetInputStart(self) -> None: ... method _QuitSlot (line 90) | def _QuitSlot(self) -> None: ... method _TextEditDestroyedSlot (line 91) | def _TextEditDestroyedSlot(self) -> None: ... method _ReturnPressedSlot (line 92) | def _ReturnPressedSlot(self) -> None: ... method flush (line 93) | def flush(self) -> None: method isatty (line 97) | def isatty(self): method readline (line 101) | def readline(self): method write (line 105) | def write(self, text) -> None: method _GetStringLengthInPixels (line 108) | def _GetStringLengthInPixels(cf, string): ... method _CompleteSlot (line 109) | def _CompleteSlot(self) -> None: ... method _NextSlot (line 110) | def _NextSlot(self) -> None: ... method _PrevSlot (line 111) | def _PrevSlot(self) -> None: ... method _IsBlank (line 112) | def _IsBlank(self, txt): ... method _GetInputLine (line 113) | def _GetInputLine(self): ... method _ClearLine (line 114) | def _ClearLine(self) -> None: ... method _Run (line 115) | def _Run(self) -> None: method _Recall (line 123) | def _Recall(self) -> None: class View (line 128) | class View(QtWidgets.QTextEdit): method __init__ (line 144) | def __init__(self, parent: Incomplete | None = None) -> None: ... method SetStartOfInput (line 145) | def SetStartOfInput(self, position) -> None: ... method StartOfInput (line 146) | def StartOfInput(self): ... method ResetCharFormat (line 147) | def ResetCharFormat(self) -> None: ... method _PositionInInputArea (line 148) | def _PositionInInputArea(self, position): ... method _PositionIsInInputArea (line 149) | def _PositionIsInInputArea(self, position): ... method _CursorIsInInputArea (line 150) | def _CursorIsInInputArea(self): ... method _SelectionIsInInputArea (line 151) | def _SelectionIsInInputArea(self): ... method _MoveCursorToStartOfInput (line 152) | def _MoveCursorToStartOfInput(self, select: bool = False) -> None: ... method _MoveCursorToEndOfInput (line 153) | def _MoveCursorToEndOfInput(self, select: bool = False) -> None: ... method _WritableCharsToLeftOfCursor (line 154) | def _WritableCharsToLeftOfCursor(self): ... method mousePressEvent (line 155) | def mousePressEvent(self, e) -> None: ... method mouseDoubleClickEvent (line 156) | def mouseDoubleClickEvent(self, e) -> None: ... method timerEvent (line 157) | def timerEvent(self, e) -> None: ... method insertFromMimeData (line 158) | def insertFromMimeData(self, source) -> None: ... method keyPressEvent (line 159) | def keyPressEvent(self, e) -> None: method AutoComplete (line 163) | def AutoComplete(self) -> None: ... method _MoveCursorToBeginning (line 164) | def _MoveCursorToBeginning(self, select: bool = False) -> None: ... method _MoveCursorToEnd (line 165) | def _MoveCursorToEnd(self, select: bool = False) -> None: ... method MoveCursorToBeginning (line 166) | def MoveCursorToBeginning(self) -> None: ... method MoveCursorToEnd (line 167) | def MoveCursorToEnd(self) -> None: ... method SelectToTop (line 168) | def SelectToTop(self) -> None: ... method SelectToBottom (line 169) | def SelectToBottom(self) -> None: ... class Myconsole (line 174) | class Myconsole(View): method __init__ (line 176) | def __init__(self, parent, usdviewApi) -> None: ... method locals (line 177) | def locals(self): ... FILE: usd/stubs/pxr-stubs/Usdviewq/rootDataModel.pyi class ChangeNotice (line 7) | class ChangeNotice(ConstantsGroup): class RootDataModel (line 12) | class RootDataModel(QtCore.QObject): method __init__ (line 25) | def __init__(self, makeTimer: Incomplete | None = None) -> None: ... method stage (line 27) | def stage(self): method stage (line 30) | def stage(self, value) -> None: method _emitPrimsChanged (line 34) | def _emitPrimsChanged(self, primChange, propertyChange) -> None: ... method __OnPrimsChanged (line 35) | def __OnPrimsChanged(self, notice, sender) -> None: ... method currentFrame (line 37) | def currentFrame(self): method currentFrame (line 41) | def currentFrame(self, value) -> None: method playing (line 44) | def playing(self): ... method playing (line 46) | def playing(self, value) -> None: ... method _clearCaches (line 47) | def _clearCaches(self) -> None: method useExtentsHint (line 52) | def useExtentsHint(self): method useExtentsHint (line 57) | def useExtentsHint(self, value) -> None: method includedPurposes (line 62) | def includedPurposes(self): method includedPurposes (line 66) | def includedPurposes(self, value) -> None: method computeWorldBound (line 68) | def computeWorldBound(self, prim): method getLocalToWorldTransform (line 70) | def getLocalToWorldTransform(self, prim): method computeBoundMaterial (line 72) | def computeBoundMaterial(self, prim, purpose): FILE: usd/stubs/pxr-stubs/Usdviewq/scalarTypes.pyi function GetScalarTypeFromAttr (line 3) | def GetScalarTypeFromAttr(attr): function ToString (line 10) | def ToString(v, valueType: Incomplete | None = None): function ToClipboard (line 13) | def ToClipboard(v, typeName: Incomplete | None = None): ... FILE: usd/stubs/pxr-stubs/Usdviewq/selectionDataModel.pyi class Blocker (line 8) | class Blocker: method __init__ (line 16) | def __init__(self, exitCallback=...) -> None: ... method __enter__ (line 17) | def __enter__(self) -> None: method __exit__ (line 19) | def __exit__(self, *args) -> None: method blocked (line 21) | def blocked(self): class _PrimSelection (line 24) | class _PrimSelection: method __init__ (line 32) | def __init__(self) -> None: ... method _clearPrimPath (line 33) | def _clearPrimPath(self, path) -> None: method _discardInstance (line 35) | def _discardInstance(self, path, instance) -> None: method _allInstancesSelected (line 39) | def _allInstancesSelected(self, path): method _noInstancesSelected (line 43) | def _noInstancesSelected(self, path): method clear (line 47) | def clear(self) -> None: method removeMatchingPaths (line 49) | def removeMatchingPaths(self, matches) -> None: method addPrimPath (line 51) | def addPrimPath(self, path, instance=...) -> None: method removePrimPath (line 56) | def removePrimPath(self, path, instance=...) -> None: method togglePrimPath (line 62) | def togglePrimPath(self, path, instance=...) -> None: method getPrimPaths (line 66) | def getPrimPaths(self): method getPrimPathInstances (line 68) | def getPrimPathInstances(self): method getDiff (line 72) | def getDiff(self): class _PropSelection (line 77) | class _PropSelection: method __init__ (line 80) | def __init__(self) -> None: ... method clear (line 81) | def clear(self) -> None: method addPropPath (line 83) | def addPropPath(self, primPath, propName) -> None: method removePropPath (line 85) | def removePropPath(self, primPath, propName) -> None: method addTarget (line 87) | def addTarget(self, primPath, propName, target) -> None: method removeTarget (line 91) | def removeTarget(self, primPath, propName, target) -> None: method getPropPaths (line 95) | def getPropPaths(self): method getTargets (line 97) | def getTargets(self): class SelectionDataModel (line 102) | class SelectionDataModel(QtCore.QObject): method __init__ (line 120) | def __init__(self, rootDataModel, _computedPropFactory: Incomplete | N... method _primSelectionChanged (line 121) | def _primSelectionChanged(self, emitSelChangedSignal: bool = True) -> ... method _propSelectionChanged (line 125) | def _propSelectionChanged(self) -> None: method _computedPropSelectionChanged (line 127) | def _computedPropSelectionChanged(self) -> None: method _ensureValidPrimPath (line 130) | def _ensureValidPrimPath(self, path): method _validateInstanceIndexParameter (line 134) | def _validateInstanceIndexParameter(self, instance) -> None: method _ensureValidPropPath (line 137) | def _ensureValidPropPath(self, prop): method _ensureValidTargetPath (line 139) | def _ensureValidTargetPath(self, targetPath): method _getPropFromPath (line 141) | def _getPropFromPath(self, path): method _getTargetFromPath (line 143) | def _getTargetFromPath(self, path): method _requireNotBatchingPrims (line 147) | def _requireNotBatchingPrims(self) -> None: method _requireNotBatchingProps (line 152) | def _requireNotBatchingProps(self) -> None: method _getComputedPropFromPath (line 157) | def _getComputedPropFromPath(self, primPath, propName): method _requireNotBatchingComputedProps (line 162) | def _requireNotBatchingComputedProps(self) -> None: method _buildPropPath (line 167) | def _buildPropPath(self, primPath, propName): method _validateComputedPropName (line 169) | def _validateComputedPropName(self, propName) -> None: method _switchProps (line 171) | def _switchProps(self, fromPrimPath, toPrimPath) -> None: method clear (line 175) | def clear(self) -> None: method clearPoint (line 177) | def clearPoint(self) -> None: ... method setPoint (line 178) | def setPoint(self, point) -> None: ... method getPoint (line 179) | def getPoint(self): ... method clearPrims (line 180) | def clearPrims(self) -> None: method addPrimPath (line 182) | def addPrimPath(self, path, instance=...) -> None: method removePrimPath (line 186) | def removePrimPath(self, path, instance=...) -> None: method togglePrimPath (line 191) | def togglePrimPath(self, path, instance=...) -> None: method setPrimPath (line 195) | def setPrimPath(self, path, instance=...) -> None: method getFocusPrimPath (line 199) | def getFocusPrimPath(self): method getPrimPaths (line 201) | def getPrimPaths(self): method getLCDPaths (line 203) | def getLCDPaths(self): method getPrimPathInstances (line 207) | def getPrimPathInstances(self): method switchToPrimPath (line 212) | def switchToPrimPath(self, path, instance=...) -> None: method addPrim (line 218) | def addPrim(self, prim, instance=...) -> None: method removePrim (line 222) | def removePrim(self, prim, instance=...) -> None: method togglePrim (line 227) | def togglePrim(self, prim, instance=...) -> None: method setPrim (line 231) | def setPrim(self, prim, instance=...) -> None: method getFocusPrim (line 235) | def getFocusPrim(self): method getPrims (line 237) | def getPrims(self): method getLCDPrims (line 239) | def getLCDPrims(self): method getPrimInstances (line 244) | def getPrimInstances(self): method switchToPrim (line 249) | def switchToPrim(self, prim, instance=...) -> None: method removeInactivePrims (line 254) | def removeInactivePrims(self) -> None: method removePrototypePrims (line 256) | def removePrototypePrims(self) -> None: method removeAbstractPrims (line 258) | def removeAbstractPrims(self) -> None: method removeUndefinedPrims (line 260) | def removeUndefinedPrims(self) -> None: method removeUnpopulatedPrims (line 262) | def removeUnpopulatedPrims(self): method clearProps (line 270) | def clearProps(self) -> None: method addPropPath (line 272) | def addPropPath(self, path) -> None: method removePropPath (line 274) | def removePropPath(self, path) -> None: method setPropPath (line 276) | def setPropPath(self, path) -> None: method addPropTargetPath (line 280) | def addPropTargetPath(self, path, targetPath) -> None: method removePropTargetPath (line 282) | def removePropTargetPath(self, path, targetPath) -> None: method setPropTargetPath (line 284) | def setPropTargetPath(self, path, targetPath) -> None: method getFocusPropPath (line 288) | def getFocusPropPath(self): method getPropPaths (line 290) | def getPropPaths(self): method getPropTargetPaths (line 292) | def getPropTargetPaths(self): method addProp (line 296) | def addProp(self, prop) -> None: method removeProp (line 298) | def removeProp(self, prop) -> None: method setProp (line 300) | def setProp(self, prop) -> None: method addPropTarget (line 304) | def addPropTarget(self, prop, target) -> None: method removePropTarget (line 306) | def removePropTarget(self, prop, target) -> None: method setPropTarget (line 308) | def setPropTarget(self, prop, target) -> None: method getFocusProp (line 312) | def getFocusProp(self): method getProps (line 314) | def getProps(self): method getPropTargets (line 316) | def getPropTargets(self): method clearComputedProps (line 320) | def clearComputedProps(self) -> None: method addComputedPropPath (line 322) | def addComputedPropPath(self, primPath, propName) -> None: method removeComputedPropPath (line 324) | def removeComputedPropPath(self, primPath, propName) -> None: method setComputedPropPath (line 326) | def setComputedPropPath(self, primPath, propName) -> None: method getFocusComputedPropPath (line 330) | def getFocusComputedPropPath(self): method getComputedPropPaths (line 332) | def getComputedPropPaths(self): method addComputedProp (line 334) | def addComputedProp(self, prop) -> None: method removeComputedProp (line 336) | def removeComputedProp(self, prop) -> None: method setComputedProp (line 338) | def setComputedProp(self, prop) -> None: method getFocusComputedProp (line 342) | def getFocusComputedProp(self): method getComputedProps (line 344) | def getComputedProps(self): FILE: usd/stubs/pxr-stubs/Usdviewq/settings.pyi class _StateProp (line 3) | class _StateProp: method __init__ (line 9) | def __init__(self, name, default, propType, validator) -> None: ... class ExclusiveFile (line 11) | class ExclusiveFile: method __init__ (line 15) | def __init__(self, *args, **kwargs) -> None: ... method __enter__ (line 17) | def __enter__(self): ... method __exit__ (line 18) | def __exit__(self, *args) -> None: ... class StateSource (line 20) | class StateSource: method __init__ (line 26) | def __init__(self, parent, name) -> None: ... method _registerChildStateSource (line 27) | def _registerChildStateSource(self, child) -> None: method GetChildStateSource (line 29) | def GetChildStateSource(self, childName): method _getState (line 31) | def _getState(self): method _getChildState (line 33) | def _getChildState(self, childName): method _typeCheck (line 38) | def _typeCheck(self, value, prop): method _saveState (line 40) | def _saveState(self) -> None: method stateProperty (line 42) | def stateProperty(self, name, default, propType: Incomplete | None = N... method onSaveState (line 46) | def onSaveState(self, state) -> None: class Settings (line 49) | class Settings(StateSource): method __init__ (line 61) | def __init__(self, version, stateFilePath: Incomplete | None = None) -... method _loadState (line 62) | def _loadState(self) -> None: method _getState (line 67) | def _getState(self): method save (line 70) | def save(self) -> None: method onSaveState (line 74) | def onSaveState(self, state) -> None: class ConfigManager (line 77) | class ConfigManager: method __init__ (line 88) | def __init__(self, configDirPath) -> None: method loadSettings (line 96) | def loadSettings(self, config, version, isEphemeral: bool = False) -> ... method _loadConfigPaths (line 113) | def _loadConfigPaths(self): method getConfigs (line 115) | def getConfigs(self): method save (line 123) | def save(self, newName: Incomplete | None = None) -> None: method close (line 133) | def close(self) -> None: FILE: usd/stubs/pxr-stubs/Usdviewq/stageView.pyi function ViewportMakeCenteredIntegral (line 11) | def ViewportMakeCenteredIntegral(viewport): ... class GLSLProgram (line 13) | class GLSLProgram: method __init__ (line 20) | def __init__(self, VS3, FS3, VS2, FS2, uniformDict) -> None: ... method uniform4f (line 21) | def uniform4f(self, param, x, y, z, w) -> None: ... class Rect (line 23) | class Rect: method __init__ (line 25) | def __init__(self) -> None: ... method fromXYWH (line 27) | def fromXYWH(cls, xywh): ... method fromCorners (line 29) | def fromCorners(cls, c0, c1): ... method scaledAndBiased (line 30) | def scaledAndBiased(self, sxy, txy): ... method _splitAlongY (line 31) | def _splitAlongY(self, y): ... method _splitAlongX (line 32) | def _splitAlongX(self, x): ... method difference (line 33) | def difference(self, xywh): ... class OutlineRect (line 35) | class OutlineRect(Rect): method __init__ (line 39) | def __init__(self) -> None: ... method compileProgram (line 41) | def compileProgram(self): ... method glDraw (line 42) | def glDraw(self, color) -> None: ... class FilledRect (line 44) | class FilledRect(Rect): method __init__ (line 48) | def __init__(self) -> None: ... method compileProgram (line 50) | def compileProgram(self): ... method glDraw (line 51) | def glDraw(self, color) -> None: ... class Prim2DSetupTask (line 53) | class Prim2DSetupTask: method __init__ (line 55) | def __init__(self, viewport) -> None: ... method Sync (line 56) | def Sync(self, ctx) -> None: ... method Execute (line 57) | def Execute(self, ctx) -> None: ... class Prim2DDrawTask (line 59) | class Prim2DDrawTask: method __init__ (line 63) | def __init__(self) -> None: ... method Sync (line 64) | def Sync(self, ctx) -> None: ... method Execute (line 65) | def Execute(self, ctx) -> None: ... class Outline (line 67) | class Outline(Prim2DDrawTask): method __init__ (line 69) | def __init__(self) -> None: ... method updatePrims (line 72) | def updatePrims(self, croppedViewport, qglwidget) -> None: ... class Reticles (line 74) | class Reticles(Prim2DDrawTask): method __init__ (line 76) | def __init__(self) -> None: ... method updateColor (line 77) | def updateColor(self, color) -> None: ... method updatePrims (line 80) | def updatePrims(self, croppedViewport, qglwidget, inside, outside) -> ... class Mask (line 82) | class Mask(Prim2DDrawTask): method __init__ (line 84) | def __init__(self) -> None: ... method updateColor (line 85) | def updateColor(self, color) -> None: ... method updatePrims (line 88) | def updatePrims(self, croppedViewport, qglwidget) -> None: ... class HUD (line 90) | class HUD: class Group (line 91) | class Group: method __init__ (line 98) | def __init__(self, name, w, h) -> None: ... method __init__ (line 105) | def __init__(self) -> None: ... method compileProgram (line 107) | def compileProgram(self): ... method addGroup (line 108) | def addGroup(self, name, w, h) -> None: ... method updateGroup (line 109) | def updateGroup(self, name, x, y, col, dic, keys: Incomplete | None = ... method draw (line 110) | def draw(self, qglwidget) -> None: ... function _ComputeCameraFraming (line 112) | def _ComputeCameraFraming(viewport, renderBufferSize): ... class StageView (line 114) | class StageView(QGLWidget): class DefaultDataModel (line 121) | class DefaultDataModel(RootDataModel): method __init__ (line 124) | def __init__(self) -> None: ... method selection (line 126) | def selection(self): ... method viewSettings (line 128) | def viewSettings(self): ... method renderParams (line 137) | def renderParams(self): ... method renderParams (line 140) | def renderParams(self, params) -> None: ... method autoClip (line 142) | def autoClip(self): ... method showReticles (line 144) | def showReticles(self): ... method _fitCameraInViewport (line 146) | def _fitCameraInViewport(self): ... method _cropImageToCameraViewport (line 148) | def _cropImageToCameraViewport(self): ... method cameraPrim (line 150) | def cameraPrim(self): ... method cameraPrim (line 152) | def cameraPrim(self, prim) -> None: ... method rolloverPicking (line 154) | def rolloverPicking(self): ... method rolloverPicking (line 157) | def rolloverPicking(self, enabled) -> None: ... method fpsHUDInfo (line 159) | def fpsHUDInfo(self): ... method fpsHUDInfo (line 162) | def fpsHUDInfo(self, info) -> None: ... method fpsHUDKeys (line 164) | def fpsHUDKeys(self): ... method fpsHUDKeys (line 167) | def fpsHUDKeys(self, keys) -> None: ... method upperHUDInfo (line 169) | def upperHUDInfo(self): ... method upperHUDInfo (line 172) | def upperHUDInfo(self, info) -> None: ... method HUDStatKeys (line 174) | def HUDStatKeys(self): ... method HUDStatKeys (line 177) | def HUDStatKeys(self, keys) -> None: ... method camerasWithGuides (line 179) | def camerasWithGuides(self): ... method camerasWithGuides (line 182) | def camerasWithGuides(self, value) -> None: ... method gfCamera (line 184) | def gfCamera(self): method cameraFrustum (line 187) | def cameraFrustum(self): method rendererDisplayName (line 193) | def rendererDisplayName(self): ... method rendererAovName (line 195) | def rendererAovName(self): ... method allowAsync (line 197) | def allowAsync(self): ... method allowAsync (line 200) | def allowAsync(self, value) -> None: ... method __init__ (line 234) | def __init__(self, parent: Incomplete | None = None, dataModel: Incomp... method _getRenderer (line 235) | def _getRenderer(self): ... method _handleRendererChanged (line 238) | def _handleRendererChanged(self, rendererId) -> None: ... method _scaleMouseCoords (line 239) | def _scaleMouseCoords(self, point): ... method closeRenderer (line 240) | def closeRenderer(self) -> None: method GetRendererPlugins (line 242) | def GetRendererPlugins(self): ... method GetRendererDisplayName (line 243) | def GetRendererDisplayName(self, plugId): ... method GetCurrentRendererId (line 244) | def GetCurrentRendererId(self): ... method SetRendererPlugin (line 245) | def SetRendererPlugin(self, plugId): ... method GetRendererAovs (line 246) | def GetRendererAovs(self): ... method SetRendererAov (line 247) | def SetRendererAov(self, aov): ... method GetRendererSettingsList (line 248) | def GetRendererSettingsList(self): ... method GetRendererSetting (line 249) | def GetRendererSetting(self, name): ... method SetRendererSetting (line 250) | def SetRendererSetting(self, name, value) -> None: ... method GetRendererCommands (line 251) | def GetRendererCommands(self): ... method InvokeRendererCommand (line 252) | def InvokeRendererCommand(self, command): ... method SetRendererPaused (line 253) | def SetRendererPaused(self, paused) -> None: ... method IsPauseRendererSupported (line 254) | def IsPauseRendererSupported(self): ... method IsRendererConverged (line 255) | def IsRendererConverged(self): ... method SetRendererStopped (line 256) | def SetRendererStopped(self, stopped) -> None: ... method IsStopRendererSupported (line 257) | def IsStopRendererSupported(self): ... method _stageReplaced (line 259) | def _stageReplaced(self) -> None: method _createNewFreeCamera (line 262) | def _createNewFreeCamera(self, viewSettings, isZUp): method GetSimpleGLSLProgram (line 265) | def GetSimpleGLSLProgram(self): ... method DrawAxis (line 266) | def DrawAxis(self, viewProjectionMatrix) -> None: ... method _processBBoxes (line 267) | def _processBBoxes(self) -> None: ... method DrawCameraGuides (line 268) | def DrawCameraGuides(self, mvpMatrix) -> None: ... method updateBboxPurposes (line 269) | def updateBboxPurposes(self) -> None: ... method recomputeBBox (line 270) | def recomputeBBox(self) -> None: ... method resetCam (line 271) | def resetCam(self, frameFit: float = 1.1) -> None: ... method updateView (line 272) | def updateView(self, resetCam: bool = False, forceComputeBBox: bool = ... method updateSelection (line 278) | def updateSelection(self) -> None: ... method _processSelection (line 279) | def _processSelection(self) -> None: ... method _getEmptyBBox (line 280) | def _getEmptyBBox(self): ... method _getDefaultBBox (line 281) | def _getDefaultBBox(self): ... method _isInfiniteBBox (line 282) | def _isInfiniteBBox(self, bbox): ... method getStageBBox (line 283) | def getStageBBox(self): ... method getSelectionBBox (line 284) | def getSelectionBBox(self): ... method renderSinglePass (line 285) | def renderSinglePass(self, renderMode, renderSelHighlights) -> None: ... method initializeGL (line 286) | def initializeGL(self) -> None: ... method updateGL (line 287) | def updateGL(self) -> None: method updateForPlayback (line 291) | def updateForPlayback(self) -> None: method getActiveSceneCamera (line 293) | def getActiveSceneCamera(self): ... method hasLockedAspectRatio (line 294) | def hasLockedAspectRatio(self): method computeWindowPolicy (line 297) | def computeWindowPolicy(self, cameraAspectRatio): ... method computeWindowSize (line 298) | def computeWindowSize(self): ... method computeWindowViewport (line 299) | def computeWindowViewport(self): ... method resolveCamera (line 300) | def resolveCamera(self): method computeCameraViewport (line 306) | def computeCameraViewport(self, cameraAspectRatio): ... method copyViewState (line 307) | def copyViewState(self): method restoreViewState (line 315) | def restoreViewState(self, viewState) -> None: method paintGL (line 317) | def paintGL(self) -> None: ... method drawHUD (line 318) | def drawHUD(self, renderer) -> None: ... method grabFrameBuffer (line 319) | def grabFrameBuffer(self, cropToAspectRatio: bool = False): method sizeHint (line 325) | def sizeHint(self): ... method switchToFreeCamera (line 326) | def switchToFreeCamera(self, computeAndSetClosestDistance: bool = True... method mousePressEvent (line 331) | def mousePressEvent(self, event) -> None: method mouseReleaseEvent (line 337) | def mouseReleaseEvent(self, event) -> None: ... method mouseMoveEvent (line 338) | def mouseMoveEvent(self, event) -> None: ... method wheelEvent (line 339) | def wheelEvent(self, event) -> None: ... method _onAutoComputeClippingChanged (line 340) | def _onAutoComputeClippingChanged(self) -> None: method _onFreeCameraSettingChanged (line 344) | def _onFreeCameraSettingChanged(self) -> None: method computeAndSetClosestDistance (line 347) | def computeAndSetClosestDistance(self) -> None: method pick (line 351) | def pick(self, pickFrustum): method computePickFrustum (line 358) | def computePickFrustum(self, x, y): ... method pickObject (line 359) | def pickObject(self, x, y, button, modifiers) -> None: method glDraw (line 365) | def glDraw(self) -> None: ... method SetForceRefresh (line 366) | def SetForceRefresh(self, val) -> None: ... method ExportFreeCameraToStage (line 367) | def ExportFreeCameraToStage(self, stage, defcamName: str = 'usdviewCam... method ExportSession (line 373) | def ExportSession(self, stagePath, defcamName: str = 'usdviewCam', img... method _primSelectionChanged (line 379) | def _primSelectionChanged(self) -> None: ... method PollForAsynchronousUpdates (line 380) | def PollForAsynchronousUpdates(self): ... FILE: usd/stubs/pxr-stubs/Usdviewq/usdviewApi.pyi class UsdviewApi (line 5) | class UsdviewApi: method __init__ (line 11) | def __init__(self, appController) -> None: ... method dataModel (line 13) | def dataModel(self): method stage (line 16) | def stage(self): method frame (line 19) | def frame(self): method prim (line 22) | def prim(self): method selectedPoint (line 25) | def selectedPoint(self): method selectedPrims (line 28) | def selectedPrims(self): method selectedPaths (line 31) | def selectedPaths(self): method selectedInstances (line 34) | def selectedInstances(self): method spec (line 40) | def spec(self): method layer (line 43) | def layer(self): method cameraPrim (line 46) | def cameraPrim(self): method currentGfCamera (line 49) | def currentGfCamera(self): method viewportSize (line 52) | def viewportSize(self): method configDir (line 55) | def configDir(self): method stageIdentifier (line 58) | def stageIdentifier(self): method qMainWindow (line 61) | def qMainWindow(self): method viewerMode (line 64) | def viewerMode(self): method viewerMode (line 68) | def viewerMode(self, value) -> None: ... method property (line 70) | def property(self): method ComputeModelsFromSelection (line 72) | def ComputeModelsFromSelection(self): method ComputeSelectedPrimsOfType (line 76) | def ComputeSelectedPrimsOfType(self, schemaType): method UpdateGUI (line 78) | def UpdateGUI(self) -> None: method PrintStatus (line 80) | def PrintStatus(self, msg) -> None: method GetSettings (line 82) | def GetSettings(self): method ClearPrimSelection (line 84) | def ClearPrimSelection(self) -> None: ... method AddPrimToSelection (line 85) | def AddPrimToSelection(self, prim) -> None: ... method GrabWindowShot (line 86) | def GrabWindowShot(self): method GrabViewportShot (line 88) | def GrabViewportShot(self): method UpdateViewport (line 90) | def UpdateViewport(self) -> None: method SetViewportRenderer (line 92) | def SetViewportRenderer(self, plugId) -> None: method GetViewportRendererNames (line 97) | def GetViewportRendererNames(self): method GetViewportCurrentRendererId (line 101) | def GetViewportCurrentRendererId(self): ... method _ExportSession (line 102) | def _ExportSession(self, stagePath, defcamName: str = 'usdviewCam', im... FILE: usd/stubs/pxr-stubs/Usdviewq/usdviewContextMenuItem.pyi class UsdviewContextMenuItem (line 1) | class UsdviewContextMenuItem: method isValid (line 2) | def isValid(self): FILE: usd/stubs/pxr-stubs/Usdviewq/variantComboBox.pyi class VariantComboBox (line 5) | class VariantComboBox(QtWidgets.QComboBox): method __init__ (line 8) | def __init__(self, parent, prim, variantSetName, mainWindow) -> None: ... method updateVariantSelection (line 9) | def updateVariantSelection(self, index, timer) -> None: ... FILE: usd/stubs/pxr-stubs/Usdviewq/viewSettingsDataModel.pyi function visibleViewSetting (line 16) | def visibleViewSetting(f): ... function invisibleViewSetting (line 17) | def invisibleViewSetting(f): ... function freeCameraViewSetting (line 18) | def freeCameraViewSetting(f): ... class OCIOSettings (line 20) | class OCIOSettings: method __init__ (line 26) | def __init__(self, display: str = '', view: str = '', colorSpace: str ... method display (line 28) | def display(self): ... method view (line 30) | def view(self): ... method colorSpace (line 32) | def colorSpace(self): ... class ViewSettingsDataModel (line 34) | class ViewSettingsDataModel(StateSource, QtCore.QObject): method __init__ (line 98) | def __init__(self, rootDataModel, parent) -> None: ... method onSaveState (line 99) | def onSaveState(self, state) -> None: ... method cameraMaskColor (line 101) | def cameraMaskColor(self): ... method cameraMaskColor (line 103) | def cameraMaskColor(self, color) -> None: ... method cameraReticlesColor (line 105) | def cameraReticlesColor(self): ... method cameraReticlesColor (line 107) | def cameraReticlesColor(self, color) -> None: ... method defaultMaterialAmbient (line 109) | def defaultMaterialAmbient(self): ... method defaultMaterialAmbient (line 111) | def defaultMaterialAmbient(self, value) -> None: ... method defaultMaterialSpecular (line 113) | def defaultMaterialSpecular(self): ... method defaultMaterialSpecular (line 115) | def defaultMaterialSpecular(self, value) -> None: ... method setDefaultMaterial (line 116) | def setDefaultMaterial(self, ambient, specular) -> None: ... method resetDefaultMaterial (line 117) | def resetDefaultMaterial(self) -> None: ... method complexity (line 119) | def complexity(self): ... method complexity (line 121) | def complexity(self, value) -> None: ... method renderMode (line 123) | def renderMode(self): ... method renderMode (line 125) | def renderMode(self, value) -> None: ... method freeCameraFOV (line 127) | def freeCameraFOV(self): ... method freeCameraFOV (line 129) | def freeCameraFOV(self, value) -> None: ... method freeCameraOverrideNear (line 131) | def freeCameraOverrideNear(self): method freeCameraOverrideNear (line 136) | def freeCameraOverrideNear(self, value) -> None: method freeCameraOverrideFar (line 140) | def freeCameraOverrideFar(self): method freeCameraOverrideFar (line 145) | def freeCameraOverrideFar(self, value) -> None: method freeCameraAspect (line 149) | def freeCameraAspect(self): ... method freeCameraAspect (line 151) | def freeCameraAspect(self, value) -> None: ... method _frustumChanged (line 152) | def _frustumChanged(self) -> None: method _frustumSettingsChanged (line 157) | def _frustumSettingsChanged(self) -> None: method _updateFreeCameraData (line 163) | def _updateFreeCameraData(self) -> None: method lockFreeCameraAspect (line 167) | def lockFreeCameraAspect(self): ... method lockFreeCameraAspect (line 169) | def lockFreeCameraAspect(self, value) -> None: ... method colorCorrectionMode (line 171) | def colorCorrectionMode(self): ... method colorCorrectionMode (line 173) | def colorCorrectionMode(self, value) -> None: ... method ocioSettings (line 175) | def ocioSettings(self): ... method setOcioSettings (line 176) | def setOcioSettings(self, colorSpace: str = '', display: str = '', vie... method pickMode (line 180) | def pickMode(self): ... method pickMode (line 182) | def pickMode(self, value) -> None: ... method showAABBox (line 184) | def showAABBox(self): ... method showAABBox (line 186) | def showAABBox(self, value) -> None: ... method showOBBox (line 188) | def showOBBox(self): ... method showOBBox (line 190) | def showOBBox(self, value) -> None: ... method showBBoxes (line 192) | def showBBoxes(self): ... method showBBoxes (line 194) | def showBBoxes(self, value) -> None: ... method autoComputeClippingPlanes (line 196) | def autoComputeClippingPlanes(self): ... method autoComputeClippingPlanes (line 198) | def autoComputeClippingPlanes(self, value) -> None: ... method showBBoxPlayback (line 200) | def showBBoxPlayback(self): ... method showBBoxPlayback (line 202) | def showBBoxPlayback(self, value) -> None: ... method displayGuide (line 204) | def displayGuide(self): ... method displayGuide (line 206) | def displayGuide(self, value) -> None: ... method displayProxy (line 208) | def displayProxy(self): ... method displayProxy (line 210) | def displayProxy(self, value) -> None: ... method displayRender (line 212) | def displayRender(self): ... method displayRender (line 214) | def displayRender(self, value) -> None: ... method displayCameraOracles (line 216) | def displayCameraOracles(self): ... method displayCameraOracles (line 218) | def displayCameraOracles(self, value) -> None: ... method displayPrimId (line 220) | def displayPrimId(self): ... method displayPrimId (line 222) | def displayPrimId(self, value) -> None: ... method enableSceneMaterials (line 224) | def enableSceneMaterials(self): ... method enableSceneMaterials (line 226) | def enableSceneMaterials(self, value) -> None: ... method enableSceneLights (line 228) | def enableSceneLights(self): ... method enableSceneLights (line 230) | def enableSceneLights(self, value) -> None: ... method cullBackfaces (line 232) | def cullBackfaces(self): ... method cullBackfaces (line 234) | def cullBackfaces(self, value) -> None: ... method showInactivePrims (line 236) | def showInactivePrims(self): ... method showInactivePrims (line 238) | def showInactivePrims(self, value) -> None: ... method showAllPrototypePrims (line 240) | def showAllPrototypePrims(self): ... method showAllPrototypePrims (line 242) | def showAllPrototypePrims(self, value) -> None: ... method showUndefinedPrims (line 244) | def showUndefinedPrims(self): ... method showUndefinedPrims (line 246) | def showUndefinedPrims(self, value) -> None: ... method showAbstractPrims (line 248) | def showAbstractPrims(self): ... method showAbstractPrims (line 250) | def showAbstractPrims(self, value) -> None: ... method showPrimDisplayNames (line 252) | def showPrimDisplayNames(self): ... method showPrimDisplayNames (line 254) | def showPrimDisplayNames(self, value) -> None: ... method rolloverPrimInfo (line 256) | def rolloverPrimInfo(self): ... method rolloverPrimInfo (line 258) | def rolloverPrimInfo(self, value) -> None: ... method cameraMaskMode (line 260) | def cameraMaskMode(self): ... method cameraMaskMode (line 262) | def cameraMaskMode(self, value) -> None: ... method showMask (line 264) | def showMask(self): ... method showMask_Opaque (line 266) | def showMask_Opaque(self): ... method showMask_Outline (line 268) | def showMask_Outline(self): ... method showMask_Outline (line 270) | def showMask_Outline(self, value) -> None: ... method showReticles_Inside (line 272) | def showReticles_Inside(self): ... method showReticles_Inside (line 274) | def showReticles_Inside(self, value) -> None: ... method showReticles_Outside (line 276) | def showReticles_Outside(self): ... method showReticles_Outside (line 278) | def showReticles_Outside(self, value) -> None: ... method showHUD (line 280) | def showHUD(self): ... method showHUD (line 282) | def showHUD(self, value) -> None: ... method showHUD_Info (line 284) | def showHUD_Info(self): ... method showHUD_Info (line 286) | def showHUD_Info(self, value) -> None: ... method showHUD_Complexity (line 288) | def showHUD_Complexity(self): ... method showHUD_Complexity (line 290) | def showHUD_Complexity(self, value) -> None: ... method showHUD_Performance (line 292) | def showHUD_Performance(self): ... method showHUD_Performance (line 294) | def showHUD_Performance(self, value) -> None: ... method showHUD_GPUstats (line 296) | def showHUD_GPUstats(self): ... method showHUD_GPUstats (line 298) | def showHUD_GPUstats(self, value) -> None: ... method ambientLightOnly (line 300) | def ambientLightOnly(self): ... method ambientLightOnly (line 302) | def ambientLightOnly(self, value) -> None: ... method domeLightEnabled (line 304) | def domeLightEnabled(self): ... method domeLightEnabled (line 306) | def domeLightEnabled(self, value) -> None: ... method domeLightTexturesVisible (line 308) | def domeLightTexturesVisible(self): ... method domeLightTexturesVisible (line 310) | def domeLightTexturesVisible(self, value) -> None: ... method clearColorText (line 312) | def clearColorText(self): ... method clearColorText (line 314) | def clearColorText(self, value) -> None: ... method clearColor (line 316) | def clearColor(self): ... method highlightColorName (line 318) | def highlightColorName(self): ... method highlightColorName (line 320) | def highlightColorName(self, value) -> None: ... method highlightColor (line 322) | def highlightColor(self): ... method selHighlightMode (line 324) | def selHighlightMode(self): ... method selHighlightMode (line 326) | def selHighlightMode(self, value) -> None: ... method redrawOnScrub (line 328) | def redrawOnScrub(self): ... method redrawOnScrub (line 330) | def redrawOnScrub(self, value) -> None: ... method freeCamera (line 332) | def freeCamera(self): ... method freeCamera (line 334) | def freeCamera(self, value) -> None: ... method cameraPath (line 336) | def cameraPath(self): ... method cameraPath (line 338) | def cameraPath(self, value) -> None: ... method cameraPrim (line 340) | def cameraPrim(self): ... method cameraPrim (line 342) | def cameraPrim(self, value) -> None: ... method fontSize (line 344) | def fontSize(self): ... method fontSize (line 346) | def fontSize(self, value) -> None: ... FILE: usd/stubs/pxr-stubs/Vt/__init__.pyi class BoolArray (line 9) | class BoolArray(Boost.Python.instance): method __init__ (line 13) | def __init__(self) -> None: method __init__ (line 24) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 35) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 46) | def __init__(self, size: int) -> None: method FromBuffer (line 57) | def FromBuffer(*args, **kwargs): method FromNumpy (line 62) | def FromNumpy(*args, **kwargs): method __add__ (line 67) | def __add__(self, arg2: BoolArray | typing.Iterable[bool], /) -> Any: ... method __add__ (line 69) | def __add__(self, arg2: bool, /) -> Any: ... method __add__ (line 71) | def __add__(self, arg2: tuple, /) -> BoolArray: ... method __add__ (line 73) | def __add__(self, arg2: list, /) -> BoolArray: ... method __div__ (line 75) | def __div__(self, arg2: tuple, /) -> BoolArray: ... method __div__ (line 77) | def __div__(self, arg2: list, /) -> BoolArray: ... method __eq__ (line 78) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 80) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 82) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 83) | def __iter__(self) -> Any: ... method __len__ (line 84) | def __len__(self) -> int: ... method __mod__ (line 86) | def __mod__(self, arg2: BoolArray | typing.Iterable[bool], /) -> Any: ... method __mod__ (line 88) | def __mod__(self, arg2: bool, /) -> Any: ... method __mod__ (line 90) | def __mod__(self, arg2: tuple, /) -> BoolArray: ... method __mod__ (line 92) | def __mod__(self, arg2: list, /) -> BoolArray: ... method __mul__ (line 94) | def __mul__(self, arg2: BoolArray | typing.Iterable[bool], /) -> Any: ... method __mul__ (line 96) | def __mul__(self, arg2: bool, /) -> Any: ... method __mul__ (line 98) | def __mul__(self, arg2: tuple, /) -> BoolArray: ... method __mul__ (line 100) | def __mul__(self, arg2: list, /) -> BoolArray: ... method __ne__ (line 101) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 102) | def __neg__(self) -> Any: ... method __radd__ (line 104) | def __radd__(self, arg2: bool, /) -> Any: ... method __radd__ (line 106) | def __radd__(self, arg2: tuple, /) -> BoolArray: ... method __radd__ (line 108) | def __radd__(self, arg2: list, /) -> BoolArray: ... method __rdiv__ (line 110) | def __rdiv__(self, arg2: tuple, /) -> BoolArray: ... method __rdiv__ (line 112) | def __rdiv__(self, arg2: list, /) -> BoolArray: ... method __rmod__ (line 114) | def __rmod__(self, arg2: bool, /) -> Any: ... method __rmod__ (line 116) | def __rmod__(self, arg2: tuple, /) -> BoolArray: ... method __rmod__ (line 118) | def __rmod__(self, arg2: list, /) -> BoolArray: ... method __rmul__ (line 120) | def __rmul__(self, arg2: bool, /) -> Any: ... method __rmul__ (line 122) | def __rmul__(self, arg2: tuple, /) -> BoolArray: ... method __rmul__ (line 124) | def __rmul__(self, arg2: list, /) -> BoolArray: ... method __rsub__ (line 126) | def __rsub__(self, arg2: bool, /) -> Any: ... method __rsub__ (line 128) | def __rsub__(self, arg2: tuple, /) -> BoolArray: ... method __rsub__ (line 130) | def __rsub__(self, arg2: list, /) -> BoolArray: ... method __rtruediv__ (line 131) | def __rtruediv__(self, arg2: bool, /) -> Any: ... method __setitem__ (line 133) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 135) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 137) | def __sub__(self, arg2: BoolArray | typing.Iterable[bool], /) -> Any: ... method __sub__ (line 139) | def __sub__(self, arg2: bool, /) -> Any: ... method __sub__ (line 141) | def __sub__(self, arg2: tuple, /) -> BoolArray: ... method __sub__ (line 143) | def __sub__(self, arg2: list, /) -> BoolArray: ... method __truediv__ (line 145) | def __truediv__(self, arg2: BoolArray | typing.Iterable[bool], /) -> A... method __truediv__ (line 147) | def __truediv__(self, arg2: bool, /) -> Any: ... class CharArray (line 149) | class CharArray(Boost.Python.instance): method __init__ (line 153) | def __init__(self) -> None: method __init__ (line 164) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 175) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 186) | def __init__(self, size: int) -> None: method FromBuffer (line 197) | def FromBuffer(*args, **kwargs): method FromNumpy (line 202) | def FromNumpy(*args, **kwargs): method __add__ (line 207) | def __add__(self, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedPat... method __add__ (line 209) | def __add__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __add__ (line 211) | def __add__(self, arg2: tuple, /) -> CharArray: ... method __add__ (line 213) | def __add__(self, arg2: list, /) -> CharArray: ... method __div__ (line 215) | def __div__(self, arg2: tuple, /) -> CharArray: ... method __div__ (line 217) | def __div__(self, arg2: list, /) -> CharArray: ... method __eq__ (line 218) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 220) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 222) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 223) | def __iter__(self) -> Any: ... method __len__ (line 224) | def __len__(self) -> int: ... method __mod__ (line 226) | def __mod__(self, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedPat... method __mod__ (line 228) | def __mod__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __mod__ (line 230) | def __mod__(self, arg2: tuple, /) -> CharArray: ... method __mod__ (line 232) | def __mod__(self, arg2: list, /) -> CharArray: ... method __mul__ (line 234) | def __mul__(self, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedPat... method __mul__ (line 236) | def __mul__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __mul__ (line 238) | def __mul__(self, arg2: tuple, /) -> CharArray: ... method __mul__ (line 240) | def __mul__(self, arg2: list, /) -> CharArray: ... method __ne__ (line 241) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 242) | def __neg__(self) -> Any: ... method __radd__ (line 244) | def __radd__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __radd__ (line 246) | def __radd__(self, arg2: tuple, /) -> CharArray: ... method __radd__ (line 248) | def __radd__(self, arg2: list, /) -> CharArray: ... method __rdiv__ (line 250) | def __rdiv__(self, arg2: tuple, /) -> CharArray: ... method __rdiv__ (line 252) | def __rdiv__(self, arg2: list, /) -> CharArray: ... method __rmod__ (line 254) | def __rmod__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __rmod__ (line 256) | def __rmod__(self, arg2: tuple, /) -> CharArray: ... method __rmod__ (line 258) | def __rmod__(self, arg2: list, /) -> CharArray: ... method __rmul__ (line 260) | def __rmul__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __rmul__ (line 262) | def __rmul__(self, arg2: tuple, /) -> CharArray: ... method __rmul__ (line 264) | def __rmul__(self, arg2: list, /) -> CharArray: ... method __rsub__ (line 266) | def __rsub__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __rsub__ (line 268) | def __rsub__(self, arg2: tuple, /) -> CharArray: ... method __rsub__ (line 270) | def __rsub__(self, arg2: list, /) -> CharArray: ... method __rtruediv__ (line 271) | def __rtruediv__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __setitem__ (line 273) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 275) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 277) | def __sub__(self, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedPat... method __sub__ (line 279) | def __sub__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __sub__ (line 281) | def __sub__(self, arg2: tuple, /) -> CharArray: ... method __sub__ (line 283) | def __sub__(self, arg2: list, /) -> CharArray: ... method __truediv__ (line 285) | def __truediv__(self, arg2: CharArray | typing.Iterable[pxr.Ar.Resolve... method __truediv__ (line 287) | def __truediv__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... class DoubleArray (line 289) | class DoubleArray(Boost.Python.instance): method __init__ (line 293) | def __init__(self) -> None: method __init__ (line 304) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 315) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 326) | def __init__(self, size: int) -> None: method FromBuffer (line 337) | def FromBuffer(*args, **kwargs): method FromNumpy (line 342) | def FromNumpy(*args, **kwargs): method __add__ (line 347) | def __add__(self, arg2: DoubleArray | typing.Iterable[float], /) -> An... method __add__ (line 349) | def __add__(self, arg2: float, /) -> Any: ... method __add__ (line 351) | def __add__(self, arg2: tuple, /) -> DoubleArray: ... method __add__ (line 353) | def __add__(self, arg2: list, /) -> DoubleArray: ... method __div__ (line 355) | def __div__(self, arg2: tuple, /) -> DoubleArray: ... method __div__ (line 357) | def __div__(self, arg2: list, /) -> DoubleArray: ... method __eq__ (line 358) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 360) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 362) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 363) | def __iter__(self) -> Any: ... method __len__ (line 364) | def __len__(self) -> int: ... method __mul__ (line 366) | def __mul__(self, arg2: DoubleArray | typing.Iterable[float], /) -> An... method __mul__ (line 368) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 370) | def __mul__(self, arg2: tuple, /) -> DoubleArray: ... method __mul__ (line 372) | def __mul__(self, arg2: list, /) -> DoubleArray: ... method __ne__ (line 373) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 374) | def __neg__(self) -> Any: ... method __radd__ (line 376) | def __radd__(self, arg2: float, /) -> Any: ... method __radd__ (line 378) | def __radd__(self, arg2: tuple, /) -> DoubleArray: ... method __radd__ (line 380) | def __radd__(self, arg2: list, /) -> DoubleArray: ... method __rdiv__ (line 382) | def __rdiv__(self, arg2: tuple, /) -> DoubleArray: ... method __rdiv__ (line 384) | def __rdiv__(self, arg2: list, /) -> DoubleArray: ... method __rmul__ (line 386) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 388) | def __rmul__(self, arg2: tuple, /) -> DoubleArray: ... method __rmul__ (line 390) | def __rmul__(self, arg2: list, /) -> DoubleArray: ... method __rsub__ (line 392) | def __rsub__(self, arg2: float, /) -> Any: ... method __rsub__ (line 394) | def __rsub__(self, arg2: tuple, /) -> DoubleArray: ... method __rsub__ (line 396) | def __rsub__(self, arg2: list, /) -> DoubleArray: ... method __rtruediv__ (line 397) | def __rtruediv__(self, arg2: float, /) -> Any: ... method __setitem__ (line 399) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 401) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 403) | def __sub__(self, arg2: DoubleArray | typing.Iterable[float], /) -> An... method __sub__ (line 405) | def __sub__(self, arg2: float, /) -> Any: ... method __sub__ (line 407) | def __sub__(self, arg2: tuple, /) -> DoubleArray: ... method __sub__ (line 409) | def __sub__(self, arg2: list, /) -> DoubleArray: ... method __truediv__ (line 411) | def __truediv__(self, arg2: DoubleArray | typing.Iterable[float], /) -... method __truediv__ (line 413) | def __truediv__(self, arg2: float, /) -> Any: ... class DualQuatdArray (line 415) | class DualQuatdArray(Boost.Python.instance): method __init__ (line 419) | def __init__(self) -> None: method __init__ (line 430) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 441) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 452) | def __init__(self, size: int) -> None: method FromBuffer (line 463) | def FromBuffer(*args, **kwargs): method FromNumpy (line 468) | def FromNumpy(*args, **kwargs): method __add__ (line 473) | def __add__(self, arg2: DualQuatdArray, /) -> Any: ... method __add__ (line 475) | def __add__(self, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.D... method __add__ (line 477) | def __add__(self, arg2: tuple, /) -> DualQuatdArray: ... method __add__ (line 479) | def __add__(self, arg2: list, /) -> DualQuatdArray: ... method __eq__ (line 480) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 482) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 484) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 485) | def __iter__(self) -> Any: ... method __len__ (line 486) | def __len__(self) -> int: ... method __mul__ (line 488) | def __mul__(self, arg2: DualQuatdArray, /) -> Any: ... method __mul__ (line 490) | def __mul__(self, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.D... method __mul__ (line 492) | def __mul__(self, arg2: tuple, /) -> DualQuatdArray: ... method __mul__ (line 494) | def __mul__(self, arg2: list, /) -> DualQuatdArray: ... method __mul__ (line 496) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 497) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 499) | def __radd__(self, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.... method __radd__ (line 501) | def __radd__(self, arg2: tuple, /) -> DualQuatdArray: ... method __radd__ (line 503) | def __radd__(self, arg2: list, /) -> DualQuatdArray: ... method __rmul__ (line 505) | def __rmul__(self, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.... method __rmul__ (line 507) | def __rmul__(self, arg2: tuple, /) -> DualQuatdArray: ... method __rmul__ (line 509) | def __rmul__(self, arg2: list, /) -> DualQuatdArray: ... method __rmul__ (line 511) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 513) | def __rsub__(self, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.... method __rsub__ (line 515) | def __rsub__(self, arg2: tuple, /) -> DualQuatdArray: ... method __rsub__ (line 517) | def __rsub__(self, arg2: list, /) -> DualQuatdArray: ... method __setitem__ (line 519) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 521) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 523) | def __sub__(self, arg2: DualQuatdArray, /) -> Any: ... method __sub__ (line 525) | def __sub__(self, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.D... method __sub__ (line 527) | def __sub__(self, arg2: tuple, /) -> DualQuatdArray: ... method __sub__ (line 529) | def __sub__(self, arg2: list, /) -> DualQuatdArray: ... method __truediv__ (line 530) | def __truediv__(self, arg2: float, /) -> Any: ... class DualQuatfArray (line 532) | class DualQuatfArray(Boost.Python.instance): method __init__ (line 536) | def __init__(self) -> None: method __init__ (line 547) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 558) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 569) | def __init__(self, size: int) -> None: method FromBuffer (line 580) | def FromBuffer(*args, **kwargs): method FromNumpy (line 585) | def FromNumpy(*args, **kwargs): method __add__ (line 590) | def __add__(self, arg2: DualQuatfArray, /) -> Any: ... method __add__ (line 592) | def __add__(self, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, /) -> Any... method __add__ (line 594) | def __add__(self, arg2: tuple, /) -> DualQuatfArray: ... method __add__ (line 596) | def __add__(self, arg2: list, /) -> DualQuatfArray: ... method __eq__ (line 597) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 599) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 601) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 602) | def __iter__(self) -> Any: ... method __len__ (line 603) | def __len__(self) -> int: ... method __mul__ (line 605) | def __mul__(self, arg2: DualQuatfArray, /) -> Any: ... method __mul__ (line 607) | def __mul__(self, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, /) -> Any... method __mul__ (line 609) | def __mul__(self, arg2: tuple, /) -> DualQuatfArray: ... method __mul__ (line 611) | def __mul__(self, arg2: list, /) -> DualQuatfArray: ... method __mul__ (line 613) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 614) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 616) | def __radd__(self, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, /) -> An... method __radd__ (line 618) | def __radd__(self, arg2: tuple, /) -> DualQuatfArray: ... method __radd__ (line 620) | def __radd__(self, arg2: list, /) -> DualQuatfArray: ... method __rmul__ (line 622) | def __rmul__(self, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, /) -> An... method __rmul__ (line 624) | def __rmul__(self, arg2: tuple, /) -> DualQuatfArray: ... method __rmul__ (line 626) | def __rmul__(self, arg2: list, /) -> DualQuatfArray: ... method __rmul__ (line 628) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 630) | def __rsub__(self, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, /) -> An... method __rsub__ (line 632) | def __rsub__(self, arg2: tuple, /) -> DualQuatfArray: ... method __rsub__ (line 634) | def __rsub__(self, arg2: list, /) -> DualQuatfArray: ... method __setitem__ (line 636) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 638) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 640) | def __sub__(self, arg2: DualQuatfArray, /) -> Any: ... method __sub__ (line 642) | def __sub__(self, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, /) -> Any... method __sub__ (line 644) | def __sub__(self, arg2: tuple, /) -> DualQuatfArray: ... method __sub__ (line 646) | def __sub__(self, arg2: list, /) -> DualQuatfArray: ... method __truediv__ (line 647) | def __truediv__(self, arg2: float, /) -> Any: ... class DualQuathArray (line 649) | class DualQuathArray(Boost.Python.instance): method __init__ (line 653) | def __init__(self) -> None: method __init__ (line 664) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 675) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 686) | def __init__(self, size: int) -> None: method FromBuffer (line 697) | def FromBuffer(*args, **kwargs): method FromNumpy (line 702) | def FromNumpy(*args, **kwargs): method __add__ (line 707) | def __add__(self, arg2: DualQuathArray, /) -> Any: ... method __add__ (line 709) | def __add__(self, arg2: pxr.Gf.DualQuath, /) -> Any: ... method __add__ (line 711) | def __add__(self, arg2: tuple, /) -> DualQuathArray: ... method __add__ (line 713) | def __add__(self, arg2: list, /) -> DualQuathArray: ... method __eq__ (line 714) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 716) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 718) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 719) | def __iter__(self) -> Any: ... method __len__ (line 720) | def __len__(self) -> int: ... method __mul__ (line 722) | def __mul__(self, arg2: DualQuathArray, /) -> Any: ... method __mul__ (line 724) | def __mul__(self, arg2: pxr.Gf.DualQuath, /) -> Any: ... method __mul__ (line 726) | def __mul__(self, arg2: tuple, /) -> DualQuathArray: ... method __mul__ (line 728) | def __mul__(self, arg2: list, /) -> DualQuathArray: ... method __mul__ (line 730) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 731) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 733) | def __radd__(self, arg2: pxr.Gf.DualQuath, /) -> Any: ... method __radd__ (line 735) | def __radd__(self, arg2: tuple, /) -> DualQuathArray: ... method __radd__ (line 737) | def __radd__(self, arg2: list, /) -> DualQuathArray: ... method __rmul__ (line 739) | def __rmul__(self, arg2: pxr.Gf.DualQuath, /) -> Any: ... method __rmul__ (line 741) | def __rmul__(self, arg2: tuple, /) -> DualQuathArray: ... method __rmul__ (line 743) | def __rmul__(self, arg2: list, /) -> DualQuathArray: ... method __rmul__ (line 745) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 747) | def __rsub__(self, arg2: pxr.Gf.DualQuath, /) -> Any: ... method __rsub__ (line 749) | def __rsub__(self, arg2: tuple, /) -> DualQuathArray: ... method __rsub__ (line 751) | def __rsub__(self, arg2: list, /) -> DualQuathArray: ... method __setitem__ (line 753) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 755) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 757) | def __sub__(self, arg2: DualQuathArray, /) -> Any: ... method __sub__ (line 759) | def __sub__(self, arg2: pxr.Gf.DualQuath, /) -> Any: ... method __sub__ (line 761) | def __sub__(self, arg2: tuple, /) -> DualQuathArray: ... method __sub__ (line 763) | def __sub__(self, arg2: list, /) -> DualQuathArray: ... method __truediv__ (line 764) | def __truediv__(self, arg2: float, /) -> Any: ... class FloatArray (line 766) | class FloatArray(Boost.Python.instance): method __init__ (line 770) | def __init__(self) -> None: method __init__ (line 781) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 792) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 803) | def __init__(self, size: int) -> None: method FromBuffer (line 814) | def FromBuffer(*args, **kwargs): method FromNumpy (line 819) | def FromNumpy(*args, **kwargs): method __add__ (line 824) | def __add__(self, arg2: FloatArray | typing.Iterable[float], /) -> Any... method __add__ (line 826) | def __add__(self, arg2: float, /) -> Any: ... method __add__ (line 828) | def __add__(self, arg2: tuple, /) -> FloatArray: ... method __add__ (line 830) | def __add__(self, arg2: list, /) -> FloatArray: ... method __div__ (line 832) | def __div__(self, arg2: tuple, /) -> FloatArray: ... method __div__ (line 834) | def __div__(self, arg2: list, /) -> FloatArray: ... method __eq__ (line 835) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 837) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 839) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 840) | def __iter__(self) -> Any: ... method __len__ (line 841) | def __len__(self) -> int: ... method __mul__ (line 843) | def __mul__(self, arg2: FloatArray | typing.Iterable[float], /) -> Any... method __mul__ (line 845) | def __mul__(self, arg2: float, /) -> Any: ... method __mul__ (line 847) | def __mul__(self, arg2: tuple, /) -> FloatArray: ... method __mul__ (line 849) | def __mul__(self, arg2: list, /) -> FloatArray: ... method __ne__ (line 850) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 851) | def __neg__(self) -> Any: ... method __radd__ (line 853) | def __radd__(self, arg2: float, /) -> Any: ... method __radd__ (line 855) | def __radd__(self, arg2: tuple, /) -> FloatArray: ... method __radd__ (line 857) | def __radd__(self, arg2: list, /) -> FloatArray: ... method __rdiv__ (line 859) | def __rdiv__(self, arg2: tuple, /) -> FloatArray: ... method __rdiv__ (line 861) | def __rdiv__(self, arg2: list, /) -> FloatArray: ... method __rmul__ (line 863) | def __rmul__(self, arg2: float, /) -> Any: ... method __rmul__ (line 865) | def __rmul__(self, arg2: tuple, /) -> FloatArray: ... method __rmul__ (line 867) | def __rmul__(self, arg2: list, /) -> FloatArray: ... method __rsub__ (line 869) | def __rsub__(self, arg2: float, /) -> Any: ... method __rsub__ (line 871) | def __rsub__(self, arg2: tuple, /) -> FloatArray: ... method __rsub__ (line 873) | def __rsub__(self, arg2: list, /) -> FloatArray: ... method __rtruediv__ (line 874) | def __rtruediv__(self, arg2: float, /) -> Any: ... method __setitem__ (line 876) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 878) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 880) | def __sub__(self, arg2: FloatArray | typing.Iterable[float], /) -> Any... method __sub__ (line 882) | def __sub__(self, arg2: float, /) -> Any: ... method __sub__ (line 884) | def __sub__(self, arg2: tuple, /) -> FloatArray: ... method __sub__ (line 886) | def __sub__(self, arg2: list, /) -> FloatArray: ... method __truediv__ (line 888) | def __truediv__(self, arg2: FloatArray | typing.Iterable[float], /) ->... method __truediv__ (line 890) | def __truediv__(self, arg2: float, /) -> Any: ... class HalfArray (line 892) | class HalfArray(Boost.Python.instance): method __init__ (line 896) | def __init__(self) -> None: method __init__ (line 907) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 918) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 929) | def __init__(self, size: int) -> None: method FromBuffer (line 940) | def FromBuffer(*args, **kwargs): method FromNumpy (line 945) | def FromNumpy(*args, **kwargs): method __add__ (line 950) | def __add__(self, arg2: HalfArray | typing.Iterable[float], /) -> Any:... method __add__ (line 952) | def __add__(self, arg2: object, /) -> Any: ... method __add__ (line 954) | def __add__(self, arg2: tuple, /) -> HalfArray: ... # type: ignore[ov... method __add__ (line 956) | def __add__(self, arg2: list, /) -> HalfArray: ... # type: ignore[ove... method __div__ (line 958) | def __div__(self, arg2: tuple, /) -> HalfArray: ... method __div__ (line 960) | def __div__(self, arg2: list, /) -> HalfArray: ... method __eq__ (line 961) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 963) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 965) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 966) | def __iter__(self) -> Any: ... method __len__ (line 967) | def __len__(self) -> int: ... method __mul__ (line 969) | def __mul__(self, arg2: HalfArray | typing.Iterable[float], /) -> Any:... method __mul__ (line 971) | def __mul__(self, arg2: object, /) -> Any: ... method __mul__ (line 973) | def __mul__(self, arg2: tuple, /) -> HalfArray: ... # type: ignore[ov... method __mul__ (line 975) | def __mul__(self, arg2: list, /) -> HalfArray: ... # type: ignore[ove... method __ne__ (line 976) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 977) | def __neg__(self) -> Any: ... method __radd__ (line 979) | def __radd__(self, arg2: object, /) -> Any: ... method __radd__ (line 981) | def __radd__(self, arg2: tuple, /) -> HalfArray: ... # type: ignore[o... method __radd__ (line 983) | def __radd__(self, arg2: list, /) -> HalfArray: ... # type: ignore[ov... method __rdiv__ (line 985) | def __rdiv__(self, arg2: tuple, /) -> HalfArray: ... method __rdiv__ (line 987) | def __rdiv__(self, arg2: list, /) -> HalfArray: ... method __rmul__ (line 989) | def __rmul__(self, arg2: object, /) -> Any: ... method __rmul__ (line 991) | def __rmul__(self, arg2: tuple, /) -> HalfArray: ... # type: ignore[o... method __rmul__ (line 993) | def __rmul__(self, arg2: list, /) -> HalfArray: ... # type: ignore[ov... method __rsub__ (line 995) | def __rsub__(self, arg2: object, /) -> Any: ... method __rsub__ (line 997) | def __rsub__(self, arg2: tuple, /) -> HalfArray: ... # type: ignore[o... method __rsub__ (line 999) | def __rsub__(self, arg2: list, /) -> HalfArray: ... # type: ignore[ov... method __rtruediv__ (line 1000) | def __rtruediv__(self, arg2: object, /) -> Any: ... method __setitem__ (line 1002) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1004) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1006) | def __sub__(self, arg2: HalfArray | typing.Iterable[float], /) -> Any:... method __sub__ (line 1008) | def __sub__(self, arg2: object, /) -> Any: ... method __sub__ (line 1010) | def __sub__(self, arg2: tuple, /) -> HalfArray: ... # type: ignore[ov... method __sub__ (line 1012) | def __sub__(self, arg2: list, /) -> HalfArray: ... # type: ignore[ove... method __truediv__ (line 1014) | def __truediv__(self, arg2: HalfArray | typing.Iterable[float], /) -> ... method __truediv__ (line 1016) | def __truediv__(self, arg2: object, /) -> Any: ... class Int64Array (line 1018) | class Int64Array(Boost.Python.instance): method __init__ (line 1022) | def __init__(self) -> None: method __init__ (line 1033) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1044) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1055) | def __init__(self, size: int) -> None: method FromBuffer (line 1066) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1071) | def FromNumpy(*args, **kwargs): method __add__ (line 1076) | def __add__(self, arg2: Int64Array | typing.Iterable[int], /) -> Any: ... method __add__ (line 1078) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 1080) | def __add__(self, arg2: tuple, /) -> Int64Array: ... method __add__ (line 1082) | def __add__(self, arg2: list, /) -> Int64Array: ... method __div__ (line 1084) | def __div__(self, arg2: tuple, /) -> Int64Array: ... method __div__ (line 1086) | def __div__(self, arg2: list, /) -> Int64Array: ... method __eq__ (line 1087) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1089) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1091) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1092) | def __iter__(self) -> Any: ... method __len__ (line 1093) | def __len__(self) -> int: ... method __mod__ (line 1095) | def __mod__(self, arg2: Int64Array | typing.Iterable[int], /) -> Any: ... method __mod__ (line 1097) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 1099) | def __mod__(self, arg2: tuple, /) -> Int64Array: ... method __mod__ (line 1101) | def __mod__(self, arg2: list, /) -> Int64Array: ... method __mul__ (line 1103) | def __mul__(self, arg2: Int64Array | typing.Iterable[int], /) -> Any: ... method __mul__ (line 1105) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 1107) | def __mul__(self, arg2: tuple, /) -> Int64Array: ... method __mul__ (line 1109) | def __mul__(self, arg2: list, /) -> Int64Array: ... method __ne__ (line 1110) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1111) | def __neg__(self) -> Any: ... method __radd__ (line 1113) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 1115) | def __radd__(self, arg2: tuple, /) -> Int64Array: ... method __radd__ (line 1117) | def __radd__(self, arg2: list, /) -> Int64Array: ... method __rdiv__ (line 1119) | def __rdiv__(self, arg2: tuple, /) -> Int64Array: ... method __rdiv__ (line 1121) | def __rdiv__(self, arg2: list, /) -> Int64Array: ... method __rmod__ (line 1123) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 1125) | def __rmod__(self, arg2: tuple, /) -> Int64Array: ... method __rmod__ (line 1127) | def __rmod__(self, arg2: list, /) -> Int64Array: ... method __rmul__ (line 1129) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 1131) | def __rmul__(self, arg2: tuple, /) -> Int64Array: ... method __rmul__ (line 1133) | def __rmul__(self, arg2: list, /) -> Int64Array: ... method __rsub__ (line 1135) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 1137) | def __rsub__(self, arg2: tuple, /) -> Int64Array: ... method __rsub__ (line 1139) | def __rsub__(self, arg2: list, /) -> Int64Array: ... method __rtruediv__ (line 1140) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 1142) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1144) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1146) | def __sub__(self, arg2: Int64Array | typing.Iterable[int], /) -> Any: ... method __sub__ (line 1148) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 1150) | def __sub__(self, arg2: tuple, /) -> Int64Array: ... method __sub__ (line 1152) | def __sub__(self, arg2: list, /) -> Int64Array: ... method __truediv__ (line 1154) | def __truediv__(self, arg2: Int64Array | typing.Iterable[int], /) -> A... method __truediv__ (line 1156) | def __truediv__(self, arg2: int, /) -> Any: ... class IntArray (line 1158) | class IntArray(Boost.Python.instance): method __init__ (line 1162) | def __init__(self) -> None: method __init__ (line 1173) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1184) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1195) | def __init__(self, size: int) -> None: method FromBuffer (line 1206) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1211) | def FromNumpy(*args, **kwargs): method __add__ (line 1216) | def __add__(self, arg2: IntArray | typing.Iterable[int], /) -> Any: ... method __add__ (line 1218) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 1220) | def __add__(self, arg2: tuple, /) -> IntArray: ... method __add__ (line 1222) | def __add__(self, arg2: list, /) -> IntArray: ... method __div__ (line 1224) | def __div__(self, arg2: tuple, /) -> IntArray: ... method __div__ (line 1226) | def __div__(self, arg2: list, /) -> IntArray: ... method __eq__ (line 1227) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1229) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1231) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1232) | def __iter__(self) -> Any: ... method __len__ (line 1233) | def __len__(self) -> int: ... method __mod__ (line 1235) | def __mod__(self, arg2: IntArray | typing.Iterable[int], /) -> Any: ... method __mod__ (line 1237) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 1239) | def __mod__(self, arg2: tuple, /) -> IntArray: ... method __mod__ (line 1241) | def __mod__(self, arg2: list, /) -> IntArray: ... method __mul__ (line 1243) | def __mul__(self, arg2: IntArray | typing.Iterable[int], /) -> Any: ... method __mul__ (line 1245) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 1247) | def __mul__(self, arg2: tuple, /) -> IntArray: ... method __mul__ (line 1249) | def __mul__(self, arg2: list, /) -> IntArray: ... method __ne__ (line 1250) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1251) | def __neg__(self) -> Any: ... method __radd__ (line 1253) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 1255) | def __radd__(self, arg2: tuple, /) -> IntArray: ... method __radd__ (line 1257) | def __radd__(self, arg2: list, /) -> IntArray: ... method __rdiv__ (line 1259) | def __rdiv__(self, arg2: tuple, /) -> IntArray: ... method __rdiv__ (line 1261) | def __rdiv__(self, arg2: list, /) -> IntArray: ... method __rmod__ (line 1263) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 1265) | def __rmod__(self, arg2: tuple, /) -> IntArray: ... method __rmod__ (line 1267) | def __rmod__(self, arg2: list, /) -> IntArray: ... method __rmul__ (line 1269) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 1271) | def __rmul__(self, arg2: tuple, /) -> IntArray: ... method __rmul__ (line 1273) | def __rmul__(self, arg2: list, /) -> IntArray: ... method __rsub__ (line 1275) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 1277) | def __rsub__(self, arg2: tuple, /) -> IntArray: ... method __rsub__ (line 1279) | def __rsub__(self, arg2: list, /) -> IntArray: ... method __rtruediv__ (line 1280) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 1282) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1284) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1286) | def __sub__(self, arg2: IntArray | typing.Iterable[int], /) -> Any: ... method __sub__ (line 1288) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 1290) | def __sub__(self, arg2: tuple, /) -> IntArray: ... method __sub__ (line 1292) | def __sub__(self, arg2: list, /) -> IntArray: ... method __truediv__ (line 1294) | def __truediv__(self, arg2: IntArray | typing.Iterable[int], /) -> Any... method __truediv__ (line 1296) | def __truediv__(self, arg2: int, /) -> Any: ... class IntervalArray (line 1298) | class IntervalArray(Boost.Python.instance): method __init__ (line 1302) | def __init__(self) -> None: method __init__ (line 1313) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1324) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1335) | def __init__(self, size: int) -> None: method __add__ (line 1346) | def __add__(self, arg2: IntervalArray | typing.Iterable[pxr.Gf.Interva... method __add__ (line 1348) | def __add__(self, arg2: pxr.Gf.Interval, /) -> Any: ... method __add__ (line 1350) | def __add__(self, arg2: tuple, /) -> IntervalArray: ... method __add__ (line 1352) | def __add__(self, arg2: list, /) -> IntervalArray: ... method __eq__ (line 1353) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1355) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1357) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1358) | def __iter__(self) -> Any: ... method __len__ (line 1359) | def __len__(self) -> int: ... method __ne__ (line 1360) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 1362) | def __radd__(self, arg2: pxr.Gf.Interval, /) -> Any: ... method __radd__ (line 1364) | def __radd__(self, arg2: tuple, /) -> IntervalArray: ... method __radd__ (line 1366) | def __radd__(self, arg2: list, /) -> IntervalArray: ... method __setitem__ (line 1368) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1370) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Matrix2dArray (line 1372) | class Matrix2dArray(Boost.Python.instance): method __init__ (line 1376) | def __init__(self) -> None: method __init__ (line 1387) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1398) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1409) | def __init__(self, size: int) -> None: method FromBuffer (line 1420) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1425) | def FromNumpy(*args, **kwargs): method __add__ (line 1430) | def __add__(self, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2... method __add__ (line 1432) | def __add__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __add__ (line 1434) | def __add__(self, arg2: tuple, /) -> Matrix2dArray: ... method __add__ (line 1436) | def __add__(self, arg2: list, /) -> Matrix2dArray: ... method __div__ (line 1438) | def __div__(self, arg2: tuple, /) -> Matrix2dArray: ... method __div__ (line 1440) | def __div__(self, arg2: list, /) -> Matrix2dArray: ... method __eq__ (line 1441) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1443) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1445) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1446) | def __iter__(self) -> Any: ... method __len__ (line 1447) | def __len__(self) -> int: ... method __mul__ (line 1449) | def __mul__(self, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2... method __mul__ (line 1451) | def __mul__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __mul__ (line 1453) | def __mul__(self, arg2: tuple, /) -> Matrix2dArray: ... method __mul__ (line 1455) | def __mul__(self, arg2: list, /) -> Matrix2dArray: ... method __mul__ (line 1457) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 1458) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1459) | def __neg__(self) -> Any: ... method __radd__ (line 1461) | def __radd__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __radd__ (line 1463) | def __radd__(self, arg2: tuple, /) -> Matrix2dArray: ... method __radd__ (line 1465) | def __radd__(self, arg2: list, /) -> Matrix2dArray: ... method __rdiv__ (line 1467) | def __rdiv__(self, arg2: tuple, /) -> Matrix2dArray: ... method __rdiv__ (line 1469) | def __rdiv__(self, arg2: list, /) -> Matrix2dArray: ... method __rmul__ (line 1471) | def __rmul__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __rmul__ (line 1473) | def __rmul__(self, arg2: tuple, /) -> Matrix2dArray: ... method __rmul__ (line 1475) | def __rmul__(self, arg2: list, /) -> Matrix2dArray: ... method __rmul__ (line 1477) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 1479) | def __rsub__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __rsub__ (line 1481) | def __rsub__(self, arg2: tuple, /) -> Matrix2dArray: ... method __rsub__ (line 1483) | def __rsub__(self, arg2: list, /) -> Matrix2dArray: ... method __rtruediv__ (line 1484) | def __rtruediv__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __setitem__ (line 1486) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1488) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1490) | def __sub__(self, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2... method __sub__ (line 1492) | def __sub__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... method __sub__ (line 1494) | def __sub__(self, arg2: tuple, /) -> Matrix2dArray: ... method __sub__ (line 1496) | def __sub__(self, arg2: list, /) -> Matrix2dArray: ... method __truediv__ (line 1498) | def __truediv__(self, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Mat... method __truediv__ (line 1500) | def __truediv__(self, arg2: pxr.Gf.Matrix2d, /) -> Any: ... class Matrix2fArray (line 1502) | class Matrix2fArray(Boost.Python.instance): method __init__ (line 1506) | def __init__(self) -> None: method __init__ (line 1517) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1528) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1539) | def __init__(self, size: int) -> None: method FromBuffer (line 1550) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1555) | def FromNumpy(*args, **kwargs): method __add__ (line 1560) | def __add__(self, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2... method __add__ (line 1562) | def __add__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __add__ (line 1564) | def __add__(self, arg2: tuple, /) -> Matrix2fArray: ... method __add__ (line 1566) | def __add__(self, arg2: list, /) -> Matrix2fArray: ... method __div__ (line 1568) | def __div__(self, arg2: tuple, /) -> Matrix2fArray: ... method __div__ (line 1570) | def __div__(self, arg2: list, /) -> Matrix2fArray: ... method __eq__ (line 1571) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1573) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1575) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1576) | def __iter__(self) -> Any: ... method __len__ (line 1577) | def __len__(self) -> int: ... method __mul__ (line 1579) | def __mul__(self, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2... method __mul__ (line 1581) | def __mul__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __mul__ (line 1583) | def __mul__(self, arg2: tuple, /) -> Matrix2fArray: ... method __mul__ (line 1585) | def __mul__(self, arg2: list, /) -> Matrix2fArray: ... method __mul__ (line 1587) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 1588) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1589) | def __neg__(self) -> Any: ... method __radd__ (line 1591) | def __radd__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __radd__ (line 1593) | def __radd__(self, arg2: tuple, /) -> Matrix2fArray: ... method __radd__ (line 1595) | def __radd__(self, arg2: list, /) -> Matrix2fArray: ... method __rdiv__ (line 1597) | def __rdiv__(self, arg2: tuple, /) -> Matrix2fArray: ... method __rdiv__ (line 1599) | def __rdiv__(self, arg2: list, /) -> Matrix2fArray: ... method __rmul__ (line 1601) | def __rmul__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __rmul__ (line 1603) | def __rmul__(self, arg2: tuple, /) -> Matrix2fArray: ... method __rmul__ (line 1605) | def __rmul__(self, arg2: list, /) -> Matrix2fArray: ... method __rmul__ (line 1607) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 1609) | def __rsub__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __rsub__ (line 1611) | def __rsub__(self, arg2: tuple, /) -> Matrix2fArray: ... method __rsub__ (line 1613) | def __rsub__(self, arg2: list, /) -> Matrix2fArray: ... method __rtruediv__ (line 1614) | def __rtruediv__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __setitem__ (line 1616) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1618) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1620) | def __sub__(self, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2... method __sub__ (line 1622) | def __sub__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... method __sub__ (line 1624) | def __sub__(self, arg2: tuple, /) -> Matrix2fArray: ... method __sub__ (line 1626) | def __sub__(self, arg2: list, /) -> Matrix2fArray: ... method __truediv__ (line 1628) | def __truediv__(self, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Mat... method __truediv__ (line 1630) | def __truediv__(self, arg2: pxr.Gf.Matrix2f, /) -> Any: ... class Matrix3dArray (line 1632) | class Matrix3dArray(Boost.Python.instance): method __init__ (line 1636) | def __init__(self) -> None: method __init__ (line 1647) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1658) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1669) | def __init__(self, size: int) -> None: method FromBuffer (line 1680) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1685) | def FromNumpy(*args, **kwargs): method __add__ (line 1690) | def __add__(self, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3... method __add__ (line 1692) | def __add__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __add__ (line 1694) | def __add__(self, arg2: tuple, /) -> Matrix3dArray: ... method __add__ (line 1696) | def __add__(self, arg2: list, /) -> Matrix3dArray: ... method __div__ (line 1698) | def __div__(self, arg2: tuple, /) -> Matrix3dArray: ... method __div__ (line 1700) | def __div__(self, arg2: list, /) -> Matrix3dArray: ... method __eq__ (line 1701) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1703) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1705) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1706) | def __iter__(self) -> Any: ... method __len__ (line 1707) | def __len__(self) -> int: ... method __mul__ (line 1709) | def __mul__(self, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3... method __mul__ (line 1711) | def __mul__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __mul__ (line 1713) | def __mul__(self, arg2: tuple, /) -> Matrix3dArray: ... method __mul__ (line 1715) | def __mul__(self, arg2: list, /) -> Matrix3dArray: ... method __mul__ (line 1717) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 1718) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1719) | def __neg__(self) -> Any: ... method __radd__ (line 1721) | def __radd__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __radd__ (line 1723) | def __radd__(self, arg2: tuple, /) -> Matrix3dArray: ... method __radd__ (line 1725) | def __radd__(self, arg2: list, /) -> Matrix3dArray: ... method __rdiv__ (line 1727) | def __rdiv__(self, arg2: tuple, /) -> Matrix3dArray: ... method __rdiv__ (line 1729) | def __rdiv__(self, arg2: list, /) -> Matrix3dArray: ... method __rmul__ (line 1731) | def __rmul__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __rmul__ (line 1733) | def __rmul__(self, arg2: tuple, /) -> Matrix3dArray: ... method __rmul__ (line 1735) | def __rmul__(self, arg2: list, /) -> Matrix3dArray: ... method __rmul__ (line 1737) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 1739) | def __rsub__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __rsub__ (line 1741) | def __rsub__(self, arg2: tuple, /) -> Matrix3dArray: ... method __rsub__ (line 1743) | def __rsub__(self, arg2: list, /) -> Matrix3dArray: ... method __rtruediv__ (line 1744) | def __rtruediv__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __setitem__ (line 1746) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1748) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1750) | def __sub__(self, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3... method __sub__ (line 1752) | def __sub__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... method __sub__ (line 1754) | def __sub__(self, arg2: tuple, /) -> Matrix3dArray: ... method __sub__ (line 1756) | def __sub__(self, arg2: list, /) -> Matrix3dArray: ... method __truediv__ (line 1758) | def __truediv__(self, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Mat... method __truediv__ (line 1760) | def __truediv__(self, arg2: pxr.Gf.Matrix3d, /) -> Any: ... class Matrix3fArray (line 1762) | class Matrix3fArray(Boost.Python.instance): method __init__ (line 1766) | def __init__(self) -> None: method __init__ (line 1777) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1788) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1799) | def __init__(self, size: int) -> None: method FromBuffer (line 1810) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1815) | def FromNumpy(*args, **kwargs): method __add__ (line 1820) | def __add__(self, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3... method __add__ (line 1822) | def __add__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __add__ (line 1824) | def __add__(self, arg2: tuple, /) -> Matrix3fArray: ... method __add__ (line 1826) | def __add__(self, arg2: list, /) -> Matrix3fArray: ... method __div__ (line 1828) | def __div__(self, arg2: tuple, /) -> Matrix3fArray: ... method __div__ (line 1830) | def __div__(self, arg2: list, /) -> Matrix3fArray: ... method __eq__ (line 1831) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1833) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1835) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1836) | def __iter__(self) -> Any: ... method __len__ (line 1837) | def __len__(self) -> int: ... method __mul__ (line 1839) | def __mul__(self, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3... method __mul__ (line 1841) | def __mul__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __mul__ (line 1843) | def __mul__(self, arg2: tuple, /) -> Matrix3fArray: ... method __mul__ (line 1845) | def __mul__(self, arg2: list, /) -> Matrix3fArray: ... method __mul__ (line 1847) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 1848) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1849) | def __neg__(self) -> Any: ... method __radd__ (line 1851) | def __radd__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __radd__ (line 1853) | def __radd__(self, arg2: tuple, /) -> Matrix3fArray: ... method __radd__ (line 1855) | def __radd__(self, arg2: list, /) -> Matrix3fArray: ... method __rdiv__ (line 1857) | def __rdiv__(self, arg2: tuple, /) -> Matrix3fArray: ... method __rdiv__ (line 1859) | def __rdiv__(self, arg2: list, /) -> Matrix3fArray: ... method __rmul__ (line 1861) | def __rmul__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __rmul__ (line 1863) | def __rmul__(self, arg2: tuple, /) -> Matrix3fArray: ... method __rmul__ (line 1865) | def __rmul__(self, arg2: list, /) -> Matrix3fArray: ... method __rmul__ (line 1867) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 1869) | def __rsub__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __rsub__ (line 1871) | def __rsub__(self, arg2: tuple, /) -> Matrix3fArray: ... method __rsub__ (line 1873) | def __rsub__(self, arg2: list, /) -> Matrix3fArray: ... method __rtruediv__ (line 1874) | def __rtruediv__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __setitem__ (line 1876) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 1878) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 1880) | def __sub__(self, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3... method __sub__ (line 1882) | def __sub__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... method __sub__ (line 1884) | def __sub__(self, arg2: tuple, /) -> Matrix3fArray: ... method __sub__ (line 1886) | def __sub__(self, arg2: list, /) -> Matrix3fArray: ... method __truediv__ (line 1888) | def __truediv__(self, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Mat... method __truediv__ (line 1890) | def __truediv__(self, arg2: pxr.Gf.Matrix3f, /) -> Any: ... class Matrix4dArray (line 1892) | class Matrix4dArray(Boost.Python.instance): method __init__ (line 1896) | def __init__(self) -> None: method __init__ (line 1907) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 1918) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 1929) | def __init__(self, size: int) -> None: method FromBuffer (line 1940) | def FromBuffer(*args, **kwargs): method FromNumpy (line 1945) | def FromNumpy(*args, **kwargs): method __add__ (line 1950) | def __add__(self, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4... method __add__ (line 1952) | def __add__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __add__ (line 1954) | def __add__(self, arg2: tuple, /) -> Matrix4dArray: ... method __add__ (line 1956) | def __add__(self, arg2: list, /) -> Matrix4dArray: ... method __div__ (line 1958) | def __div__(self, arg2: tuple, /) -> Matrix4dArray: ... method __div__ (line 1960) | def __div__(self, arg2: list, /) -> Matrix4dArray: ... method __eq__ (line 1961) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 1963) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 1965) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 1966) | def __iter__(self) -> Any: ... method __len__ (line 1967) | def __len__(self) -> int: ... method __mul__ (line 1969) | def __mul__(self, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4... method __mul__ (line 1971) | def __mul__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __mul__ (line 1973) | def __mul__(self, arg2: tuple, /) -> Matrix4dArray: ... method __mul__ (line 1975) | def __mul__(self, arg2: list, /) -> Matrix4dArray: ... method __mul__ (line 1977) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 1978) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 1979) | def __neg__(self) -> Any: ... method __radd__ (line 1981) | def __radd__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __radd__ (line 1983) | def __radd__(self, arg2: tuple, /) -> Matrix4dArray: ... method __radd__ (line 1985) | def __radd__(self, arg2: list, /) -> Matrix4dArray: ... method __rdiv__ (line 1987) | def __rdiv__(self, arg2: tuple, /) -> Matrix4dArray: ... method __rdiv__ (line 1989) | def __rdiv__(self, arg2: list, /) -> Matrix4dArray: ... method __rmul__ (line 1991) | def __rmul__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __rmul__ (line 1993) | def __rmul__(self, arg2: tuple, /) -> Matrix4dArray: ... method __rmul__ (line 1995) | def __rmul__(self, arg2: list, /) -> Matrix4dArray: ... method __rmul__ (line 1997) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 1999) | def __rsub__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __rsub__ (line 2001) | def __rsub__(self, arg2: tuple, /) -> Matrix4dArray: ... method __rsub__ (line 2003) | def __rsub__(self, arg2: list, /) -> Matrix4dArray: ... method __rtruediv__ (line 2004) | def __rtruediv__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __setitem__ (line 2006) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2008) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 2010) | def __sub__(self, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4... method __sub__ (line 2012) | def __sub__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... method __sub__ (line 2014) | def __sub__(self, arg2: tuple, /) -> Matrix4dArray: ... method __sub__ (line 2016) | def __sub__(self, arg2: list, /) -> Matrix4dArray: ... method __truediv__ (line 2018) | def __truediv__(self, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Mat... method __truediv__ (line 2020) | def __truediv__(self, arg2: pxr.Gf.Matrix4d, /) -> Any: ... class Matrix4fArray (line 2022) | class Matrix4fArray(Boost.Python.instance): method __init__ (line 2026) | def __init__(self) -> None: method __init__ (line 2037) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2048) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2059) | def __init__(self, size: int) -> None: method FromBuffer (line 2070) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2075) | def FromNumpy(*args, **kwargs): method __add__ (line 2080) | def __add__(self, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4... method __add__ (line 2082) | def __add__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __add__ (line 2084) | def __add__(self, arg2: tuple, /) -> Matrix4fArray: ... method __add__ (line 2086) | def __add__(self, arg2: list, /) -> Matrix4fArray: ... method __div__ (line 2088) | def __div__(self, arg2: tuple, /) -> Matrix4fArray: ... method __div__ (line 2090) | def __div__(self, arg2: list, /) -> Matrix4fArray: ... method __eq__ (line 2091) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2093) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2095) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2096) | def __iter__(self) -> Any: ... method __len__ (line 2097) | def __len__(self) -> int: ... method __mul__ (line 2099) | def __mul__(self, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4... method __mul__ (line 2101) | def __mul__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __mul__ (line 2103) | def __mul__(self, arg2: tuple, /) -> Matrix4fArray: ... method __mul__ (line 2105) | def __mul__(self, arg2: list, /) -> Matrix4fArray: ... method __mul__ (line 2107) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 2108) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 2109) | def __neg__(self) -> Any: ... method __radd__ (line 2111) | def __radd__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __radd__ (line 2113) | def __radd__(self, arg2: tuple, /) -> Matrix4fArray: ... method __radd__ (line 2115) | def __radd__(self, arg2: list, /) -> Matrix4fArray: ... method __rdiv__ (line 2117) | def __rdiv__(self, arg2: tuple, /) -> Matrix4fArray: ... method __rdiv__ (line 2119) | def __rdiv__(self, arg2: list, /) -> Matrix4fArray: ... method __rmul__ (line 2121) | def __rmul__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __rmul__ (line 2123) | def __rmul__(self, arg2: tuple, /) -> Matrix4fArray: ... method __rmul__ (line 2125) | def __rmul__(self, arg2: list, /) -> Matrix4fArray: ... method __rmul__ (line 2127) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 2129) | def __rsub__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __rsub__ (line 2131) | def __rsub__(self, arg2: tuple, /) -> Matrix4fArray: ... method __rsub__ (line 2133) | def __rsub__(self, arg2: list, /) -> Matrix4fArray: ... method __rtruediv__ (line 2134) | def __rtruediv__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __setitem__ (line 2136) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2138) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 2140) | def __sub__(self, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4... method __sub__ (line 2142) | def __sub__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... method __sub__ (line 2144) | def __sub__(self, arg2: tuple, /) -> Matrix4fArray: ... method __sub__ (line 2146) | def __sub__(self, arg2: list, /) -> Matrix4fArray: ... method __truediv__ (line 2148) | def __truediv__(self, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Mat... method __truediv__ (line 2150) | def __truediv__(self, arg2: pxr.Gf.Matrix4f, /) -> Any: ... class QuatdArray (line 2152) | class QuatdArray(Boost.Python.instance): method __init__ (line 2156) | def __init__(self) -> None: method __init__ (line 2167) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2178) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2189) | def __init__(self, size: int) -> None: method FromBuffer (line 2200) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2205) | def FromNumpy(*args, **kwargs): method __add__ (line 2210) | def __add__(self, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | t... method __add__ (line 2212) | def __add__(self, arg2: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, /)... method __add__ (line 2214) | def __add__(self, arg2: tuple, /) -> QuatdArray: ... method __add__ (line 2216) | def __add__(self, arg2: list, /) -> QuatdArray: ... method __eq__ (line 2217) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2219) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2221) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2222) | def __iter__(self) -> Any: ... method __len__ (line 2223) | def __len__(self) -> int: ... method __mul__ (line 2225) | def __mul__(self, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | t... method __mul__ (line 2227) | def __mul__(self, arg2: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, /)... method __mul__ (line 2229) | def __mul__(self, arg2: tuple, /) -> QuatdArray: ... method __mul__ (line 2231) | def __mul__(self, arg2: list, /) -> QuatdArray: ... method __mul__ (line 2233) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 2234) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2236) | def __radd__(self, arg2: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, /... method __radd__ (line 2238) | def __radd__(self, arg2: tuple, /) -> QuatdArray: ... method __radd__ (line 2240) | def __radd__(self, arg2: list, /) -> QuatdArray: ... method __rmul__ (line 2242) | def __rmul__(self, arg2: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, /... method __rmul__ (line 2244) | def __rmul__(self, arg2: tuple, /) -> QuatdArray: ... method __rmul__ (line 2246) | def __rmul__(self, arg2: list, /) -> QuatdArray: ... method __rmul__ (line 2248) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 2250) | def __rsub__(self, arg2: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, /... method __rsub__ (line 2252) | def __rsub__(self, arg2: tuple, /) -> QuatdArray: ... method __rsub__ (line 2254) | def __rsub__(self, arg2: list, /) -> QuatdArray: ... method __setitem__ (line 2256) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2258) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 2260) | def __sub__(self, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | t... method __sub__ (line 2262) | def __sub__(self, arg2: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, /)... method __sub__ (line 2264) | def __sub__(self, arg2: tuple, /) -> QuatdArray: ... method __sub__ (line 2266) | def __sub__(self, arg2: list, /) -> QuatdArray: ... method __truediv__ (line 2267) | def __truediv__(self, arg2: float, /) -> Any: ... class QuaternionArray (line 2269) | class QuaternionArray(Boost.Python.instance): method __init__ (line 2273) | def __init__(self) -> None: method __init__ (line 2284) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2295) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2306) | def __init__(self, size: int) -> None: method __add__ (line 2317) | def __add__(self, arg2: QuaternionArray | typing.Iterable[pxr.Gf.Quate... method __add__ (line 2319) | def __add__(self, arg2: pxr.Gf.Quaternion, /) -> Any: ... method __add__ (line 2321) | def __add__(self, arg2: tuple, /) -> QuaternionArray: ... method __add__ (line 2323) | def __add__(self, arg2: list, /) -> QuaternionArray: ... method __eq__ (line 2324) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2326) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2328) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2329) | def __iter__(self) -> Any: ... method __len__ (line 2330) | def __len__(self) -> int: ... method __mul__ (line 2332) | def __mul__(self, arg2: QuaternionArray | typing.Iterable[pxr.Gf.Quate... method __mul__ (line 2334) | def __mul__(self, arg2: pxr.Gf.Quaternion, /) -> Any: ... method __mul__ (line 2336) | def __mul__(self, arg2: tuple, /) -> QuaternionArray: ... method __mul__ (line 2338) | def __mul__(self, arg2: list, /) -> QuaternionArray: ... method __mul__ (line 2340) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 2341) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2343) | def __radd__(self, arg2: pxr.Gf.Quaternion, /) -> Any: ... method __radd__ (line 2345) | def __radd__(self, arg2: tuple, /) -> QuaternionArray: ... method __radd__ (line 2347) | def __radd__(self, arg2: list, /) -> QuaternionArray: ... method __rmul__ (line 2349) | def __rmul__(self, arg2: pxr.Gf.Quaternion, /) -> Any: ... method __rmul__ (line 2351) | def __rmul__(self, arg2: tuple, /) -> QuaternionArray: ... method __rmul__ (line 2353) | def __rmul__(self, arg2: list, /) -> QuaternionArray: ... method __rmul__ (line 2355) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 2357) | def __rsub__(self, arg2: pxr.Gf.Quaternion, /) -> Any: ... method __rsub__ (line 2359) | def __rsub__(self, arg2: tuple, /) -> QuaternionArray: ... method __rsub__ (line 2361) | def __rsub__(self, arg2: list, /) -> QuaternionArray: ... method __setitem__ (line 2363) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2365) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 2367) | def __sub__(self, arg2: QuaternionArray | typing.Iterable[pxr.Gf.Quate... method __sub__ (line 2369) | def __sub__(self, arg2: pxr.Gf.Quaternion, /) -> Any: ... method __sub__ (line 2371) | def __sub__(self, arg2: tuple, /) -> QuaternionArray: ... method __sub__ (line 2373) | def __sub__(self, arg2: list, /) -> QuaternionArray: ... method __truediv__ (line 2374) | def __truediv__(self, arg2: float, /) -> Any: ... class QuatfArray (line 2376) | class QuatfArray(Boost.Python.instance): method __init__ (line 2380) | def __init__(self) -> None: method __init__ (line 2391) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2402) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2413) | def __init__(self, size: int) -> None: method FromBuffer (line 2424) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2429) | def FromNumpy(*args, **kwargs): method __add__ (line 2434) | def __add__(self, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | t... method __add__ (line 2436) | def __add__(self, arg2: pxr.Gf.Quatf | pxr.Gf.Quath, /) -> Any: ... method __add__ (line 2438) | def __add__(self, arg2: tuple, /) -> QuatfArray: ... method __add__ (line 2440) | def __add__(self, arg2: list, /) -> QuatfArray: ... method __eq__ (line 2441) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2443) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2445) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2446) | def __iter__(self) -> Any: ... method __len__ (line 2447) | def __len__(self) -> int: ... method __mul__ (line 2449) | def __mul__(self, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | t... method __mul__ (line 2451) | def __mul__(self, arg2: pxr.Gf.Quatf | pxr.Gf.Quath, /) -> Any: ... method __mul__ (line 2453) | def __mul__(self, arg2: tuple, /) -> QuatfArray: ... method __mul__ (line 2455) | def __mul__(self, arg2: list, /) -> QuatfArray: ... method __mul__ (line 2457) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 2458) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2460) | def __radd__(self, arg2: pxr.Gf.Quatf | pxr.Gf.Quath, /) -> Any: ... method __radd__ (line 2462) | def __radd__(self, arg2: tuple, /) -> QuatfArray: ... method __radd__ (line 2464) | def __radd__(self, arg2: list, /) -> QuatfArray: ... method __rmul__ (line 2466) | def __rmul__(self, arg2: pxr.Gf.Quatf | pxr.Gf.Quath, /) -> Any: ... method __rmul__ (line 2468) | def __rmul__(self, arg2: tuple, /) -> QuatfArray: ... method __rmul__ (line 2470) | def __rmul__(self, arg2: list, /) -> QuatfArray: ... method __rmul__ (line 2472) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 2474) | def __rsub__(self, arg2: pxr.Gf.Quatf | pxr.Gf.Quath, /) -> Any: ... method __rsub__ (line 2476) | def __rsub__(self, arg2: tuple, /) -> QuatfArray: ... method __rsub__ (line 2478) | def __rsub__(self, arg2: list, /) -> QuatfArray: ... method __setitem__ (line 2480) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2482) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 2484) | def __sub__(self, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | t... method __sub__ (line 2486) | def __sub__(self, arg2: pxr.Gf.Quatf | pxr.Gf.Quath, /) -> Any: ... method __sub__ (line 2488) | def __sub__(self, arg2: tuple, /) -> QuatfArray: ... method __sub__ (line 2490) | def __sub__(self, arg2: list, /) -> QuatfArray: ... method __truediv__ (line 2491) | def __truediv__(self, arg2: float, /) -> Any: ... class QuathArray (line 2493) | class QuathArray(Boost.Python.instance): method __init__ (line 2497) | def __init__(self) -> None: method __init__ (line 2508) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2519) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2530) | def __init__(self, size: int) -> None: method FromBuffer (line 2541) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2546) | def FromNumpy(*args, **kwargs): method __add__ (line 2551) | def __add__(self, arg2: QuathArray | typing.Iterable[pxr.Gf.Quath], /)... method __add__ (line 2553) | def __add__(self, arg2: pxr.Gf.Quath, /) -> Any: ... method __add__ (line 2555) | def __add__(self, arg2: tuple, /) -> QuathArray: ... method __add__ (line 2557) | def __add__(self, arg2: list, /) -> QuathArray: ... method __eq__ (line 2558) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2560) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2562) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2563) | def __iter__(self) -> Any: ... method __len__ (line 2564) | def __len__(self) -> int: ... method __mul__ (line 2566) | def __mul__(self, arg2: QuathArray | typing.Iterable[pxr.Gf.Quath], /)... method __mul__ (line 2568) | def __mul__(self, arg2: pxr.Gf.Quath, /) -> Any: ... method __mul__ (line 2570) | def __mul__(self, arg2: tuple, /) -> QuathArray: ... method __mul__ (line 2572) | def __mul__(self, arg2: list, /) -> QuathArray: ... method __mul__ (line 2574) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 2575) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2577) | def __radd__(self, arg2: pxr.Gf.Quath, /) -> Any: ... method __radd__ (line 2579) | def __radd__(self, arg2: tuple, /) -> QuathArray: ... method __radd__ (line 2581) | def __radd__(self, arg2: list, /) -> QuathArray: ... method __rmul__ (line 2583) | def __rmul__(self, arg2: pxr.Gf.Quath, /) -> Any: ... method __rmul__ (line 2585) | def __rmul__(self, arg2: tuple, /) -> QuathArray: ... method __rmul__ (line 2587) | def __rmul__(self, arg2: list, /) -> QuathArray: ... method __rmul__ (line 2589) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 2591) | def __rsub__(self, arg2: pxr.Gf.Quath, /) -> Any: ... method __rsub__ (line 2593) | def __rsub__(self, arg2: tuple, /) -> QuathArray: ... method __rsub__ (line 2595) | def __rsub__(self, arg2: list, /) -> QuathArray: ... method __setitem__ (line 2597) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2599) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 2601) | def __sub__(self, arg2: QuathArray | typing.Iterable[pxr.Gf.Quath], /)... method __sub__ (line 2603) | def __sub__(self, arg2: pxr.Gf.Quath, /) -> Any: ... method __sub__ (line 2605) | def __sub__(self, arg2: tuple, /) -> QuathArray: ... method __sub__ (line 2607) | def __sub__(self, arg2: list, /) -> QuathArray: ... method __truediv__ (line 2608) | def __truediv__(self, arg2: float, /) -> Any: ... class Range1dArray (line 2610) | class Range1dArray(Boost.Python.instance): method __init__ (line 2614) | def __init__(self) -> None: method __init__ (line 2625) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2636) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2647) | def __init__(self, size: int) -> None: method FromBuffer (line 2658) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2663) | def FromNumpy(*args, **kwargs): method __add__ (line 2668) | def __add__(self, arg2: Range1dArray | typing.Iterable[pxr.Gf.Range1d]... method __add__ (line 2670) | def __add__(self, arg2: pxr.Gf.Range1d, /) -> Any: ... method __add__ (line 2672) | def __add__(self, arg2: tuple, /) -> Range1dArray: ... method __add__ (line 2674) | def __add__(self, arg2: list, /) -> Range1dArray: ... method __eq__ (line 2675) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2677) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2679) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2680) | def __iter__(self) -> Any: ... method __len__ (line 2681) | def __len__(self) -> int: ... method __ne__ (line 2682) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2684) | def __radd__(self, arg2: pxr.Gf.Range1d, /) -> Any: ... method __radd__ (line 2686) | def __radd__(self, arg2: tuple, /) -> Range1dArray: ... method __radd__ (line 2688) | def __radd__(self, arg2: list, /) -> Range1dArray: ... method __setitem__ (line 2690) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2692) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Range1fArray (line 2694) | class Range1fArray(Boost.Python.instance): method __init__ (line 2698) | def __init__(self) -> None: method __init__ (line 2709) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2720) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2731) | def __init__(self, size: int) -> None: method FromBuffer (line 2742) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2747) | def FromNumpy(*args, **kwargs): method __add__ (line 2752) | def __add__(self, arg2: Range1fArray | typing.Iterable[pxr.Gf.Range1f]... method __add__ (line 2754) | def __add__(self, arg2: pxr.Gf.Range1f, /) -> Any: ... method __add__ (line 2756) | def __add__(self, arg2: tuple, /) -> Range1fArray: ... method __add__ (line 2758) | def __add__(self, arg2: list, /) -> Range1fArray: ... method __eq__ (line 2759) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2761) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2763) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2764) | def __iter__(self) -> Any: ... method __len__ (line 2765) | def __len__(self) -> int: ... method __ne__ (line 2766) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2768) | def __radd__(self, arg2: pxr.Gf.Range1f, /) -> Any: ... method __radd__ (line 2770) | def __radd__(self, arg2: tuple, /) -> Range1fArray: ... method __radd__ (line 2772) | def __radd__(self, arg2: list, /) -> Range1fArray: ... method __setitem__ (line 2774) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2776) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Range2dArray (line 2778) | class Range2dArray(Boost.Python.instance): method __init__ (line 2782) | def __init__(self) -> None: method __init__ (line 2793) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2804) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2815) | def __init__(self, size: int) -> None: method FromBuffer (line 2826) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2831) | def FromNumpy(*args, **kwargs): method __add__ (line 2836) | def __add__(self, arg2: Range2dArray | typing.Iterable[list[float]] | ... method __add__ (line 2838) | def __add__(self, arg2: pxr.Gf.Range2d | list[float] | tuple[float, fl... method __add__ (line 2840) | def __add__(self, arg2: tuple, /) -> Range2dArray: ... method __add__ (line 2842) | def __add__(self, arg2: list, /) -> Range2dArray: ... method __eq__ (line 2843) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2845) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2847) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2848) | def __iter__(self) -> Any: ... method __len__ (line 2849) | def __len__(self) -> int: ... method __ne__ (line 2850) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2852) | def __radd__(self, arg2: pxr.Gf.Range2d | list[float] | tuple[float, f... method __radd__ (line 2854) | def __radd__(self, arg2: tuple, /) -> Range2dArray: ... method __radd__ (line 2856) | def __radd__(self, arg2: list, /) -> Range2dArray: ... method __setitem__ (line 2858) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2860) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Range2fArray (line 2862) | class Range2fArray(Boost.Python.instance): method __init__ (line 2866) | def __init__(self) -> None: method __init__ (line 2877) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2888) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2899) | def __init__(self, size: int) -> None: method FromBuffer (line 2910) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2915) | def FromNumpy(*args, **kwargs): method __add__ (line 2920) | def __add__(self, arg2: Range2fArray | typing.Iterable[list[float]] | ... method __add__ (line 2922) | def __add__(self, arg2: pxr.Gf.Range2f | list[float] | tuple[float, fl... method __add__ (line 2924) | def __add__(self, arg2: tuple, /) -> Range2fArray: ... method __add__ (line 2926) | def __add__(self, arg2: list, /) -> Range2fArray: ... method __eq__ (line 2927) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 2929) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 2931) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 2932) | def __iter__(self) -> Any: ... method __len__ (line 2933) | def __len__(self) -> int: ... method __ne__ (line 2934) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 2936) | def __radd__(self, arg2: pxr.Gf.Range2f | list[float] | tuple[float, f... method __radd__ (line 2938) | def __radd__(self, arg2: tuple, /) -> Range2fArray: ... method __radd__ (line 2940) | def __radd__(self, arg2: list, /) -> Range2fArray: ... method __setitem__ (line 2942) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 2944) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Range3dArray (line 2946) | class Range3dArray(Boost.Python.instance): method __init__ (line 2950) | def __init__(self) -> None: method __init__ (line 2961) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 2972) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 2983) | def __init__(self, size: int) -> None: method FromBuffer (line 2994) | def FromBuffer(*args, **kwargs): method FromNumpy (line 2999) | def FromNumpy(*args, **kwargs): method __add__ (line 3004) | def __add__(self, arg2: Range3dArray | typing.Iterable[list[float]] | ... method __add__ (line 3006) | def __add__(self, arg2: pxr.Gf.Range3d | list[float] | tuple[float, fl... method __add__ (line 3008) | def __add__(self, arg2: tuple, /) -> Range3dArray: ... method __add__ (line 3010) | def __add__(self, arg2: list, /) -> Range3dArray: ... method __eq__ (line 3011) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3013) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3015) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3016) | def __iter__(self) -> Any: ... method __len__ (line 3017) | def __len__(self) -> int: ... method __ne__ (line 3018) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 3020) | def __radd__(self, arg2: pxr.Gf.Range3d | list[float] | tuple[float, f... method __radd__ (line 3022) | def __radd__(self, arg2: tuple, /) -> Range3dArray: ... method __radd__ (line 3024) | def __radd__(self, arg2: list, /) -> Range3dArray: ... method __setitem__ (line 3026) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3028) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Range3fArray (line 3030) | class Range3fArray(Boost.Python.instance): method __init__ (line 3034) | def __init__(self) -> None: method __init__ (line 3045) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3056) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3067) | def __init__(self, size: int) -> None: method FromBuffer (line 3078) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3083) | def FromNumpy(*args, **kwargs): method __add__ (line 3088) | def __add__(self, arg2: Range3fArray | typing.Iterable[list[float]] | ... method __add__ (line 3090) | def __add__(self, arg2: pxr.Gf.Range3f | list[float] | tuple[float, fl... method __add__ (line 3092) | def __add__(self, arg2: tuple, /) -> Range3fArray: ... method __add__ (line 3094) | def __add__(self, arg2: list, /) -> Range3fArray: ... method __eq__ (line 3095) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3097) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3099) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3100) | def __iter__(self) -> Any: ... method __len__ (line 3101) | def __len__(self) -> int: ... method __ne__ (line 3102) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 3104) | def __radd__(self, arg2: pxr.Gf.Range3f | list[float] | tuple[float, f... method __radd__ (line 3106) | def __radd__(self, arg2: tuple, /) -> Range3fArray: ... method __radd__ (line 3108) | def __radd__(self, arg2: list, /) -> Range3fArray: ... method __setitem__ (line 3110) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3112) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class Rect2iArray (line 3114) | class Rect2iArray(Boost.Python.instance): method __init__ (line 3118) | def __init__(self) -> None: method __init__ (line 3129) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3140) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3151) | def __init__(self, size: int) -> None: method FromBuffer (line 3162) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3167) | def FromNumpy(*args, **kwargs): method __add__ (line 3172) | def __add__(self, arg2: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], ... method __add__ (line 3174) | def __add__(self, arg2: pxr.Gf.Rect2i, /) -> Any: ... method __add__ (line 3176) | def __add__(self, arg2: tuple, /) -> Rect2iArray: ... method __add__ (line 3178) | def __add__(self, arg2: list, /) -> Rect2iArray: ... method __eq__ (line 3179) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3181) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3183) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3184) | def __iter__(self) -> Any: ... method __len__ (line 3185) | def __len__(self) -> int: ... method __ne__ (line 3186) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 3188) | def __radd__(self, arg2: pxr.Gf.Rect2i, /) -> Any: ... method __radd__ (line 3190) | def __radd__(self, arg2: tuple, /) -> Rect2iArray: ... method __radd__ (line 3192) | def __radd__(self, arg2: list, /) -> Rect2iArray: ... method __setitem__ (line 3194) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3196) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class ShortArray (line 3198) | class ShortArray(Boost.Python.instance): method __init__ (line 3202) | def __init__(self) -> None: method __init__ (line 3213) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3224) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3235) | def __init__(self, size: int) -> None: method FromBuffer (line 3246) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3251) | def FromNumpy(*args, **kwargs): method __add__ (line 3256) | def __add__(self, arg2: ShortArray | typing.Iterable[int], /) -> Any: ... method __add__ (line 3258) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 3260) | def __add__(self, arg2: tuple, /) -> ShortArray: ... method __add__ (line 3262) | def __add__(self, arg2: list, /) -> ShortArray: ... method __div__ (line 3264) | def __div__(self, arg2: tuple, /) -> ShortArray: ... method __div__ (line 3266) | def __div__(self, arg2: list, /) -> ShortArray: ... method __eq__ (line 3267) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3269) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3271) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3272) | def __iter__(self) -> Any: ... method __len__ (line 3273) | def __len__(self) -> int: ... method __mod__ (line 3275) | def __mod__(self, arg2: ShortArray | typing.Iterable[int], /) -> Any: ... method __mod__ (line 3277) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 3279) | def __mod__(self, arg2: tuple, /) -> ShortArray: ... method __mod__ (line 3281) | def __mod__(self, arg2: list, /) -> ShortArray: ... method __mul__ (line 3283) | def __mul__(self, arg2: ShortArray | typing.Iterable[int], /) -> Any: ... method __mul__ (line 3285) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 3287) | def __mul__(self, arg2: tuple, /) -> ShortArray: ... method __mul__ (line 3289) | def __mul__(self, arg2: list, /) -> ShortArray: ... method __ne__ (line 3290) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3291) | def __neg__(self) -> Any: ... method __radd__ (line 3293) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 3295) | def __radd__(self, arg2: tuple, /) -> ShortArray: ... method __radd__ (line 3297) | def __radd__(self, arg2: list, /) -> ShortArray: ... method __rdiv__ (line 3299) | def __rdiv__(self, arg2: tuple, /) -> ShortArray: ... method __rdiv__ (line 3301) | def __rdiv__(self, arg2: list, /) -> ShortArray: ... method __rmod__ (line 3303) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 3305) | def __rmod__(self, arg2: tuple, /) -> ShortArray: ... method __rmod__ (line 3307) | def __rmod__(self, arg2: list, /) -> ShortArray: ... method __rmul__ (line 3309) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 3311) | def __rmul__(self, arg2: tuple, /) -> ShortArray: ... method __rmul__ (line 3313) | def __rmul__(self, arg2: list, /) -> ShortArray: ... method __rsub__ (line 3315) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 3317) | def __rsub__(self, arg2: tuple, /) -> ShortArray: ... method __rsub__ (line 3319) | def __rsub__(self, arg2: list, /) -> ShortArray: ... method __rtruediv__ (line 3320) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 3322) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3324) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 3326) | def __sub__(self, arg2: ShortArray | typing.Iterable[int], /) -> Any: ... method __sub__ (line 3328) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 3330) | def __sub__(self, arg2: tuple, /) -> ShortArray: ... method __sub__ (line 3332) | def __sub__(self, arg2: list, /) -> ShortArray: ... method __truediv__ (line 3334) | def __truediv__(self, arg2: ShortArray | typing.Iterable[int], /) -> A... method __truediv__ (line 3336) | def __truediv__(self, arg2: int, /) -> Any: ... class StringArray (line 3338) | class StringArray(Boost.Python.instance): method __init__ (line 3342) | def __init__(self) -> None: method __init__ (line 3353) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3364) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3375) | def __init__(self, size: int) -> None: method __add__ (line 3386) | def __add__(self, arg2: StringArray, /) -> Any: ... method __add__ (line 3388) | def __add__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __add__ (line 3390) | def __add__(self, arg2: tuple, /) -> StringArray: ... method __add__ (line 3392) | def __add__(self, arg2: list, /) -> StringArray: ... method __eq__ (line 3393) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3395) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3397) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3398) | def __iter__(self) -> Any: ... method __len__ (line 3399) | def __len__(self) -> int: ... method __ne__ (line 3400) | def __ne__(self, other: object) -> bool: ... method __radd__ (line 3402) | def __radd__(self, arg2: str | pxr.Ar.ResolvedPath, /) -> Any: ... method __radd__ (line 3404) | def __radd__(self, arg2: tuple, /) -> StringArray: ... method __radd__ (line 3406) | def __radd__(self, arg2: list, /) -> StringArray: ... method __setitem__ (line 3408) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3410) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class TokenArray (line 3412) | class TokenArray(Boost.Python.instance): method __init__ (line 3416) | def __init__(self) -> None: method __init__ (line 3427) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3438) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3449) | def __init__(self, size: int) -> None: method __eq__ (line 3459) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3461) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3463) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3464) | def __iter__(self) -> Any: ... method __len__ (line 3465) | def __len__(self) -> int: ... method __ne__ (line 3466) | def __ne__(self, other: object) -> bool: ... method __setitem__ (line 3468) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3470) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... class UCharArray (line 3472) | class UCharArray(Boost.Python.instance): method __init__ (line 3476) | def __init__(self) -> None: method __init__ (line 3487) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3498) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3509) | def __init__(self, size: int) -> None: method FromBuffer (line 3520) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3525) | def FromNumpy(*args, **kwargs): method __add__ (line 3530) | def __add__(self, arg2: UCharArray, /) -> Any: ... method __add__ (line 3532) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 3534) | def __add__(self, arg2: tuple, /) -> UCharArray: ... method __add__ (line 3536) | def __add__(self, arg2: list, /) -> UCharArray: ... method __div__ (line 3538) | def __div__(self, arg2: tuple, /) -> UCharArray: ... method __div__ (line 3540) | def __div__(self, arg2: list, /) -> UCharArray: ... method __eq__ (line 3541) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3543) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3545) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3546) | def __iter__(self) -> Any: ... method __len__ (line 3547) | def __len__(self) -> int: ... method __mod__ (line 3549) | def __mod__(self, arg2: UCharArray, /) -> Any: ... method __mod__ (line 3551) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 3553) | def __mod__(self, arg2: tuple, /) -> UCharArray: ... method __mod__ (line 3555) | def __mod__(self, arg2: list, /) -> UCharArray: ... method __mul__ (line 3557) | def __mul__(self, arg2: UCharArray, /) -> Any: ... method __mul__ (line 3559) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 3561) | def __mul__(self, arg2: tuple, /) -> UCharArray: ... method __mul__ (line 3563) | def __mul__(self, arg2: list, /) -> UCharArray: ... method __ne__ (line 3564) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3565) | def __neg__(self) -> Any: ... method __radd__ (line 3567) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 3569) | def __radd__(self, arg2: tuple, /) -> UCharArray: ... method __radd__ (line 3571) | def __radd__(self, arg2: list, /) -> UCharArray: ... method __rdiv__ (line 3573) | def __rdiv__(self, arg2: tuple, /) -> UCharArray: ... method __rdiv__ (line 3575) | def __rdiv__(self, arg2: list, /) -> UCharArray: ... method __rmod__ (line 3577) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 3579) | def __rmod__(self, arg2: tuple, /) -> UCharArray: ... method __rmod__ (line 3581) | def __rmod__(self, arg2: list, /) -> UCharArray: ... method __rmul__ (line 3583) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 3585) | def __rmul__(self, arg2: tuple, /) -> UCharArray: ... method __rmul__ (line 3587) | def __rmul__(self, arg2: list, /) -> UCharArray: ... method __rsub__ (line 3589) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 3591) | def __rsub__(self, arg2: tuple, /) -> UCharArray: ... method __rsub__ (line 3593) | def __rsub__(self, arg2: list, /) -> UCharArray: ... method __rtruediv__ (line 3594) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 3596) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3598) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 3600) | def __sub__(self, arg2: UCharArray, /) -> Any: ... method __sub__ (line 3602) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 3604) | def __sub__(self, arg2: tuple, /) -> UCharArray: ... method __sub__ (line 3606) | def __sub__(self, arg2: list, /) -> UCharArray: ... method __truediv__ (line 3608) | def __truediv__(self, arg2: UCharArray, /) -> Any: ... method __truediv__ (line 3610) | def __truediv__(self, arg2: int, /) -> Any: ... class UInt64Array (line 3612) | class UInt64Array(Boost.Python.instance): method __init__ (line 3616) | def __init__(self) -> None: method __init__ (line 3627) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3638) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3649) | def __init__(self, size: int) -> None: method FromBuffer (line 3660) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3665) | def FromNumpy(*args, **kwargs): method __add__ (line 3670) | def __add__(self, arg2: UInt64Array | typing.Iterable[int], /) -> Any:... method __add__ (line 3672) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 3674) | def __add__(self, arg2: tuple, /) -> UInt64Array: ... method __add__ (line 3676) | def __add__(self, arg2: list, /) -> UInt64Array: ... method __div__ (line 3678) | def __div__(self, arg2: tuple, /) -> UInt64Array: ... method __div__ (line 3680) | def __div__(self, arg2: list, /) -> UInt64Array: ... method __eq__ (line 3681) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3683) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3685) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3686) | def __iter__(self) -> Any: ... method __len__ (line 3687) | def __len__(self) -> int: ... method __mod__ (line 3689) | def __mod__(self, arg2: UInt64Array | typing.Iterable[int], /) -> Any:... method __mod__ (line 3691) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 3693) | def __mod__(self, arg2: tuple, /) -> UInt64Array: ... method __mod__ (line 3695) | def __mod__(self, arg2: list, /) -> UInt64Array: ... method __mul__ (line 3697) | def __mul__(self, arg2: UInt64Array | typing.Iterable[int], /) -> Any:... method __mul__ (line 3699) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 3701) | def __mul__(self, arg2: tuple, /) -> UInt64Array: ... method __mul__ (line 3703) | def __mul__(self, arg2: list, /) -> UInt64Array: ... method __ne__ (line 3704) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3705) | def __neg__(self) -> Any: ... method __radd__ (line 3707) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 3709) | def __radd__(self, arg2: tuple, /) -> UInt64Array: ... method __radd__ (line 3711) | def __radd__(self, arg2: list, /) -> UInt64Array: ... method __rdiv__ (line 3713) | def __rdiv__(self, arg2: tuple, /) -> UInt64Array: ... method __rdiv__ (line 3715) | def __rdiv__(self, arg2: list, /) -> UInt64Array: ... method __rmod__ (line 3717) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 3719) | def __rmod__(self, arg2: tuple, /) -> UInt64Array: ... method __rmod__ (line 3721) | def __rmod__(self, arg2: list, /) -> UInt64Array: ... method __rmul__ (line 3723) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 3725) | def __rmul__(self, arg2: tuple, /) -> UInt64Array: ... method __rmul__ (line 3727) | def __rmul__(self, arg2: list, /) -> UInt64Array: ... method __rsub__ (line 3729) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 3731) | def __rsub__(self, arg2: tuple, /) -> UInt64Array: ... method __rsub__ (line 3733) | def __rsub__(self, arg2: list, /) -> UInt64Array: ... method __rtruediv__ (line 3734) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 3736) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3738) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 3740) | def __sub__(self, arg2: UInt64Array | typing.Iterable[int], /) -> Any:... method __sub__ (line 3742) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 3744) | def __sub__(self, arg2: tuple, /) -> UInt64Array: ... method __sub__ (line 3746) | def __sub__(self, arg2: list, /) -> UInt64Array: ... method __truediv__ (line 3748) | def __truediv__(self, arg2: UInt64Array | typing.Iterable[int], /) -> ... method __truediv__ (line 3750) | def __truediv__(self, arg2: int, /) -> Any: ... class UIntArray (line 3752) | class UIntArray(Boost.Python.instance): method __init__ (line 3756) | def __init__(self) -> None: method __init__ (line 3767) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3778) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3789) | def __init__(self, size: int) -> None: method FromBuffer (line 3800) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3805) | def FromNumpy(*args, **kwargs): method __add__ (line 3810) | def __add__(self, arg2: UIntArray | typing.Iterable[int], /) -> Any: ... method __add__ (line 3812) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 3814) | def __add__(self, arg2: tuple, /) -> UIntArray: ... method __add__ (line 3816) | def __add__(self, arg2: list, /) -> UIntArray: ... method __div__ (line 3818) | def __div__(self, arg2: tuple, /) -> UIntArray: ... method __div__ (line 3820) | def __div__(self, arg2: list, /) -> UIntArray: ... method __eq__ (line 3821) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3823) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3825) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3826) | def __iter__(self) -> Any: ... method __len__ (line 3827) | def __len__(self) -> int: ... method __mod__ (line 3829) | def __mod__(self, arg2: UIntArray | typing.Iterable[int], /) -> Any: ... method __mod__ (line 3831) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 3833) | def __mod__(self, arg2: tuple, /) -> UIntArray: ... method __mod__ (line 3835) | def __mod__(self, arg2: list, /) -> UIntArray: ... method __mul__ (line 3837) | def __mul__(self, arg2: UIntArray | typing.Iterable[int], /) -> Any: ... method __mul__ (line 3839) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 3841) | def __mul__(self, arg2: tuple, /) -> UIntArray: ... method __mul__ (line 3843) | def __mul__(self, arg2: list, /) -> UIntArray: ... method __ne__ (line 3844) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3845) | def __neg__(self) -> Any: ... method __radd__ (line 3847) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 3849) | def __radd__(self, arg2: tuple, /) -> UIntArray: ... method __radd__ (line 3851) | def __radd__(self, arg2: list, /) -> UIntArray: ... method __rdiv__ (line 3853) | def __rdiv__(self, arg2: tuple, /) -> UIntArray: ... method __rdiv__ (line 3855) | def __rdiv__(self, arg2: list, /) -> UIntArray: ... method __rmod__ (line 3857) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 3859) | def __rmod__(self, arg2: tuple, /) -> UIntArray: ... method __rmod__ (line 3861) | def __rmod__(self, arg2: list, /) -> UIntArray: ... method __rmul__ (line 3863) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 3865) | def __rmul__(self, arg2: tuple, /) -> UIntArray: ... method __rmul__ (line 3867) | def __rmul__(self, arg2: list, /) -> UIntArray: ... method __rsub__ (line 3869) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 3871) | def __rsub__(self, arg2: tuple, /) -> UIntArray: ... method __rsub__ (line 3873) | def __rsub__(self, arg2: list, /) -> UIntArray: ... method __rtruediv__ (line 3874) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 3876) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 3878) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 3880) | def __sub__(self, arg2: UIntArray | typing.Iterable[int], /) -> Any: ... method __sub__ (line 3882) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 3884) | def __sub__(self, arg2: tuple, /) -> UIntArray: ... method __sub__ (line 3886) | def __sub__(self, arg2: list, /) -> UIntArray: ... method __truediv__ (line 3888) | def __truediv__(self, arg2: UIntArray | typing.Iterable[int], /) -> An... method __truediv__ (line 3890) | def __truediv__(self, arg2: int, /) -> Any: ... class UShortArray (line 3892) | class UShortArray(Boost.Python.instance): method __init__ (line 3896) | def __init__(self) -> None: method __init__ (line 3907) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 3918) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 3929) | def __init__(self, size: int) -> None: method FromBuffer (line 3940) | def FromBuffer(*args, **kwargs): method FromNumpy (line 3945) | def FromNumpy(*args, **kwargs): method __add__ (line 3950) | def __add__(self, arg2: UShortArray, /) -> Any: ... method __add__ (line 3952) | def __add__(self, arg2: int, /) -> Any: ... method __add__ (line 3954) | def __add__(self, arg2: tuple, /) -> UShortArray: ... method __add__ (line 3956) | def __add__(self, arg2: list, /) -> UShortArray: ... method __div__ (line 3958) | def __div__(self, arg2: tuple, /) -> UShortArray: ... method __div__ (line 3960) | def __div__(self, arg2: list, /) -> UShortArray: ... method __eq__ (line 3961) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 3963) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 3965) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 3966) | def __iter__(self) -> Any: ... method __len__ (line 3967) | def __len__(self) -> int: ... method __mod__ (line 3969) | def __mod__(self, arg2: UShortArray, /) -> Any: ... method __mod__ (line 3971) | def __mod__(self, arg2: int, /) -> Any: ... method __mod__ (line 3973) | def __mod__(self, arg2: tuple, /) -> UShortArray: ... method __mod__ (line 3975) | def __mod__(self, arg2: list, /) -> UShortArray: ... method __mul__ (line 3977) | def __mul__(self, arg2: UShortArray, /) -> Any: ... method __mul__ (line 3979) | def __mul__(self, arg2: int, /) -> Any: ... method __mul__ (line 3981) | def __mul__(self, arg2: tuple, /) -> UShortArray: ... method __mul__ (line 3983) | def __mul__(self, arg2: list, /) -> UShortArray: ... method __ne__ (line 3984) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 3985) | def __neg__(self) -> Any: ... method __radd__ (line 3987) | def __radd__(self, arg2: int, /) -> Any: ... method __radd__ (line 3989) | def __radd__(self, arg2: tuple, /) -> UShortArray: ... method __radd__ (line 3991) | def __radd__(self, arg2: list, /) -> UShortArray: ... method __rdiv__ (line 3993) | def __rdiv__(self, arg2: tuple, /) -> UShortArray: ... method __rdiv__ (line 3995) | def __rdiv__(self, arg2: list, /) -> UShortArray: ... method __rmod__ (line 3997) | def __rmod__(self, arg2: int, /) -> Any: ... method __rmod__ (line 3999) | def __rmod__(self, arg2: tuple, /) -> UShortArray: ... method __rmod__ (line 4001) | def __rmod__(self, arg2: list, /) -> UShortArray: ... method __rmul__ (line 4003) | def __rmul__(self, arg2: int, /) -> Any: ... method __rmul__ (line 4005) | def __rmul__(self, arg2: tuple, /) -> UShortArray: ... method __rmul__ (line 4007) | def __rmul__(self, arg2: list, /) -> UShortArray: ... method __rsub__ (line 4009) | def __rsub__(self, arg2: int, /) -> Any: ... method __rsub__ (line 4011) | def __rsub__(self, arg2: tuple, /) -> UShortArray: ... method __rsub__ (line 4013) | def __rsub__(self, arg2: list, /) -> UShortArray: ... method __rtruediv__ (line 4014) | def __rtruediv__(self, arg2: int, /) -> Any: ... method __setitem__ (line 4016) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4018) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4020) | def __sub__(self, arg2: UShortArray, /) -> Any: ... method __sub__ (line 4022) | def __sub__(self, arg2: int, /) -> Any: ... method __sub__ (line 4024) | def __sub__(self, arg2: tuple, /) -> UShortArray: ... method __sub__ (line 4026) | def __sub__(self, arg2: list, /) -> UShortArray: ... method __truediv__ (line 4028) | def __truediv__(self, arg2: UShortArray, /) -> Any: ... method __truediv__ (line 4030) | def __truediv__(self, arg2: int, /) -> Any: ... class Vec2dArray (line 4032) | class Vec2dArray(Boost.Python.instance): method __init__ (line 4036) | def __init__(self) -> None: method __init__ (line 4047) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4058) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4069) | def __init__(self, size: int) -> None: method FromBuffer (line 4080) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4085) | def FromNumpy(*args, **kwargs): method __add__ (line 4090) | def __add__(self, arg2: Vec2dArray | typing.Iterable[list[float]] | ty... method __add__ (line 4092) | def __add__(self, arg2: pxr.Gf.Vec2d | list[float] | tuple[float, floa... method __add__ (line 4094) | def __add__(self, arg2: tuple, /) -> Vec2dArray: ... method __add__ (line 4096) | def __add__(self, arg2: list, /) -> Vec2dArray: ... method __eq__ (line 4097) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4099) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4101) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4102) | def __iter__(self) -> Any: ... method __len__ (line 4103) | def __len__(self) -> int: ... method __mul__ (line 4104) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4105) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4106) | def __neg__(self) -> Any: ... method __radd__ (line 4108) | def __radd__(self, arg2: pxr.Gf.Vec2d | list[float] | tuple[float, flo... method __radd__ (line 4110) | def __radd__(self, arg2: tuple, /) -> Vec2dArray: ... method __radd__ (line 4112) | def __radd__(self, arg2: list, /) -> Vec2dArray: ... method __rmul__ (line 4113) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4115) | def __rsub__(self, arg2: pxr.Gf.Vec2d | list[float] | tuple[float, flo... method __rsub__ (line 4117) | def __rsub__(self, arg2: tuple, /) -> Vec2dArray: ... method __rsub__ (line 4119) | def __rsub__(self, arg2: list, /) -> Vec2dArray: ... method __setitem__ (line 4121) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4123) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4125) | def __sub__(self, arg2: Vec2dArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4127) | def __sub__(self, arg2: pxr.Gf.Vec2d | list[float] | tuple[float, floa... method __sub__ (line 4129) | def __sub__(self, arg2: tuple, /) -> Vec2dArray: ... method __sub__ (line 4131) | def __sub__(self, arg2: list, /) -> Vec2dArray: ... class Vec2fArray (line 4133) | class Vec2fArray(Boost.Python.instance): method __init__ (line 4137) | def __init__(self) -> None: method __init__ (line 4148) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4159) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4170) | def __init__(self, size: int) -> None: method FromBuffer (line 4181) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4186) | def FromNumpy(*args, **kwargs): method __add__ (line 4191) | def __add__(self, arg2: Vec2fArray | typing.Iterable[list[float]] | ty... method __add__ (line 4193) | def __add__(self, arg2: pxr.Gf.Vec2f | list[float] | tuple[float, floa... method __add__ (line 4195) | def __add__(self, arg2: tuple, /) -> Vec2fArray: ... method __add__ (line 4197) | def __add__(self, arg2: list, /) -> Vec2fArray: ... method __eq__ (line 4198) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4200) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4202) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4203) | def __iter__(self) -> Any: ... method __len__ (line 4204) | def __len__(self) -> int: ... method __mul__ (line 4205) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4206) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4207) | def __neg__(self) -> Any: ... method __radd__ (line 4209) | def __radd__(self, arg2: pxr.Gf.Vec2f | list[float] | tuple[float, flo... method __radd__ (line 4211) | def __radd__(self, arg2: tuple, /) -> Vec2fArray: ... method __radd__ (line 4213) | def __radd__(self, arg2: list, /) -> Vec2fArray: ... method __rmul__ (line 4214) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4216) | def __rsub__(self, arg2: pxr.Gf.Vec2f | list[float] | tuple[float, flo... method __rsub__ (line 4218) | def __rsub__(self, arg2: tuple, /) -> Vec2fArray: ... method __rsub__ (line 4220) | def __rsub__(self, arg2: list, /) -> Vec2fArray: ... method __setitem__ (line 4222) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4224) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4226) | def __sub__(self, arg2: Vec2fArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4228) | def __sub__(self, arg2: pxr.Gf.Vec2f | list[float] | tuple[float, floa... method __sub__ (line 4230) | def __sub__(self, arg2: tuple, /) -> Vec2fArray: ... method __sub__ (line 4232) | def __sub__(self, arg2: list, /) -> Vec2fArray: ... class Vec2hArray (line 4234) | class Vec2hArray(Boost.Python.instance): method __init__ (line 4238) | def __init__(self) -> None: method __init__ (line 4249) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4260) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4271) | def __init__(self, size: int) -> None: method FromBuffer (line 4282) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4287) | def FromNumpy(*args, **kwargs): method __add__ (line 4292) | def __add__(self, arg2: Vec2hArray | typing.Iterable[list[float]] | ty... method __add__ (line 4294) | def __add__(self, arg2: pxr.Gf.Vec2h | list[float] | tuple[float, floa... method __add__ (line 4296) | def __add__(self, arg2: tuple, /) -> Vec2hArray: ... method __add__ (line 4298) | def __add__(self, arg2: list, /) -> Vec2hArray: ... method __eq__ (line 4299) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4301) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4303) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4304) | def __iter__(self) -> Any: ... method __len__ (line 4305) | def __len__(self) -> int: ... method __mul__ (line 4306) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4307) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4308) | def __neg__(self) -> Any: ... method __radd__ (line 4310) | def __radd__(self, arg2: pxr.Gf.Vec2h | list[float] | tuple[float, flo... method __radd__ (line 4312) | def __radd__(self, arg2: tuple, /) -> Vec2hArray: ... method __radd__ (line 4314) | def __radd__(self, arg2: list, /) -> Vec2hArray: ... method __rmul__ (line 4315) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4317) | def __rsub__(self, arg2: pxr.Gf.Vec2h | list[float] | tuple[float, flo... method __rsub__ (line 4319) | def __rsub__(self, arg2: tuple, /) -> Vec2hArray: ... method __rsub__ (line 4321) | def __rsub__(self, arg2: list, /) -> Vec2hArray: ... method __setitem__ (line 4323) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4325) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4327) | def __sub__(self, arg2: Vec2hArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4329) | def __sub__(self, arg2: pxr.Gf.Vec2h | list[float] | tuple[float, floa... method __sub__ (line 4331) | def __sub__(self, arg2: tuple, /) -> Vec2hArray: ... method __sub__ (line 4333) | def __sub__(self, arg2: list, /) -> Vec2hArray: ... class Vec2iArray (line 4335) | class Vec2iArray(Boost.Python.instance): method __init__ (line 4339) | def __init__(self) -> None: method __init__ (line 4350) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4361) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4372) | def __init__(self, size: int) -> None: method FromBuffer (line 4383) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4388) | def FromNumpy(*args, **kwargs): method __add__ (line 4393) | def __add__(self, arg2: Vec2iArray | typing.Iterable[list[int]] | typi... method __add__ (line 4395) | def __add__(self, arg2: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size2 | tupl... method __add__ (line 4397) | def __add__(self, arg2: tuple, /) -> Vec2iArray: ... method __add__ (line 4399) | def __add__(self, arg2: list, /) -> Vec2iArray: ... method __eq__ (line 4400) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4402) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4404) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4405) | def __iter__(self) -> Any: ... method __len__ (line 4406) | def __len__(self) -> int: ... method __mul__ (line 4407) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4408) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4409) | def __neg__(self) -> Any: ... method __radd__ (line 4411) | def __radd__(self, arg2: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size2 | tup... method __radd__ (line 4413) | def __radd__(self, arg2: tuple, /) -> Vec2iArray: ... method __radd__ (line 4415) | def __radd__(self, arg2: list, /) -> Vec2iArray: ... method __rmul__ (line 4416) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4418) | def __rsub__(self, arg2: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size2 | tup... method __rsub__ (line 4420) | def __rsub__(self, arg2: tuple, /) -> Vec2iArray: ... method __rsub__ (line 4422) | def __rsub__(self, arg2: list, /) -> Vec2iArray: ... method __setitem__ (line 4424) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4426) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4428) | def __sub__(self, arg2: Vec2iArray | typing.Iterable[list[int]] | typi... method __sub__ (line 4430) | def __sub__(self, arg2: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size2 | tupl... method __sub__ (line 4432) | def __sub__(self, arg2: tuple, /) -> Vec2iArray: ... method __sub__ (line 4434) | def __sub__(self, arg2: list, /) -> Vec2iArray: ... class Vec3dArray (line 4436) | class Vec3dArray(Boost.Python.instance): method __init__ (line 4440) | def __init__(self) -> None: method __init__ (line 4451) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4462) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4473) | def __init__(self, size: int) -> None: method FromBuffer (line 4484) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4489) | def FromNumpy(*args, **kwargs): method __add__ (line 4494) | def __add__(self, arg2: Vec3dArray | typing.Iterable[list[float]] | ty... method __add__ (line 4496) | def __add__(self, arg2: pxr.Gf.Vec3d | list[float] | tuple[float, floa... method __add__ (line 4498) | def __add__(self, arg2: tuple, /) -> Vec3dArray: ... method __add__ (line 4500) | def __add__(self, arg2: list, /) -> Vec3dArray: ... method __eq__ (line 4501) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4503) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4505) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4506) | def __iter__(self) -> Any: ... method __len__ (line 4507) | def __len__(self) -> int: ... method __mul__ (line 4508) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4509) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4510) | def __neg__(self) -> Any: ... method __radd__ (line 4512) | def __radd__(self, arg2: pxr.Gf.Vec3d | list[float] | tuple[float, flo... method __radd__ (line 4514) | def __radd__(self, arg2: tuple, /) -> Vec3dArray: ... method __radd__ (line 4516) | def __radd__(self, arg2: list, /) -> Vec3dArray: ... method __rmul__ (line 4517) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4519) | def __rsub__(self, arg2: pxr.Gf.Vec3d | list[float] | tuple[float, flo... method __rsub__ (line 4521) | def __rsub__(self, arg2: tuple, /) -> Vec3dArray: ... method __rsub__ (line 4523) | def __rsub__(self, arg2: list, /) -> Vec3dArray: ... method __setitem__ (line 4525) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4527) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4529) | def __sub__(self, arg2: Vec3dArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4531) | def __sub__(self, arg2: pxr.Gf.Vec3d | list[float] | tuple[float, floa... method __sub__ (line 4533) | def __sub__(self, arg2: tuple, /) -> Vec3dArray: ... method __sub__ (line 4535) | def __sub__(self, arg2: list, /) -> Vec3dArray: ... class Vec3fArray (line 4537) | class Vec3fArray(Boost.Python.instance): method __init__ (line 4541) | def __init__(self) -> None: method __init__ (line 4552) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4563) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4574) | def __init__(self, size: int) -> None: method FromBuffer (line 4585) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4590) | def FromNumpy(*args, **kwargs): method __add__ (line 4595) | def __add__(self, arg2: Vec3fArray | typing.Iterable[list[float]] | ty... method __add__ (line 4597) | def __add__(self, arg2: pxr.Gf.Vec3f | list[float] | tuple[float, floa... method __add__ (line 4599) | def __add__(self, arg2: tuple, /) -> Vec3fArray: ... method __add__ (line 4601) | def __add__(self, arg2: list, /) -> Vec3fArray: ... method __eq__ (line 4602) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4604) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4606) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4607) | def __iter__(self) -> Any: ... method __len__ (line 4608) | def __len__(self) -> int: ... method __mul__ (line 4609) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4610) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4611) | def __neg__(self) -> Any: ... method __radd__ (line 4613) | def __radd__(self, arg2: pxr.Gf.Vec3f | list[float] | tuple[float, flo... method __radd__ (line 4615) | def __radd__(self, arg2: tuple, /) -> Vec3fArray: ... method __radd__ (line 4617) | def __radd__(self, arg2: list, /) -> Vec3fArray: ... method __rmul__ (line 4618) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4620) | def __rsub__(self, arg2: pxr.Gf.Vec3f | list[float] | tuple[float, flo... method __rsub__ (line 4622) | def __rsub__(self, arg2: tuple, /) -> Vec3fArray: ... method __rsub__ (line 4624) | def __rsub__(self, arg2: list, /) -> Vec3fArray: ... method __setitem__ (line 4626) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4628) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4630) | def __sub__(self, arg2: Vec3fArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4632) | def __sub__(self, arg2: pxr.Gf.Vec3f | list[float] | tuple[float, floa... method __sub__ (line 4634) | def __sub__(self, arg2: tuple, /) -> Vec3fArray: ... method __sub__ (line 4636) | def __sub__(self, arg2: list, /) -> Vec3fArray: ... class Vec3hArray (line 4638) | class Vec3hArray(Boost.Python.instance): method __init__ (line 4642) | def __init__(self) -> None: method __init__ (line 4653) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4664) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4675) | def __init__(self, size: int) -> None: method FromBuffer (line 4686) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4691) | def FromNumpy(*args, **kwargs): method __add__ (line 4696) | def __add__(self, arg2: Vec3hArray | typing.Iterable[list[float]] | ty... method __add__ (line 4698) | def __add__(self, arg2: pxr.Gf.Vec3h | list[float] | tuple[float, floa... method __add__ (line 4700) | def __add__(self, arg2: tuple, /) -> Vec3hArray: ... method __add__ (line 4702) | def __add__(self, arg2: list, /) -> Vec3hArray: ... method __eq__ (line 4703) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4705) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4707) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4708) | def __iter__(self) -> Any: ... method __len__ (line 4709) | def __len__(self) -> int: ... method __mul__ (line 4710) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4711) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4712) | def __neg__(self) -> Any: ... method __radd__ (line 4714) | def __radd__(self, arg2: pxr.Gf.Vec3h | list[float] | tuple[float, flo... method __radd__ (line 4716) | def __radd__(self, arg2: tuple, /) -> Vec3hArray: ... method __radd__ (line 4718) | def __radd__(self, arg2: list, /) -> Vec3hArray: ... method __rmul__ (line 4719) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4721) | def __rsub__(self, arg2: pxr.Gf.Vec3h | list[float] | tuple[float, flo... method __rsub__ (line 4723) | def __rsub__(self, arg2: tuple, /) -> Vec3hArray: ... method __rsub__ (line 4725) | def __rsub__(self, arg2: list, /) -> Vec3hArray: ... method __setitem__ (line 4727) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4729) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4731) | def __sub__(self, arg2: Vec3hArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4733) | def __sub__(self, arg2: pxr.Gf.Vec3h | list[float] | tuple[float, floa... method __sub__ (line 4735) | def __sub__(self, arg2: tuple, /) -> Vec3hArray: ... method __sub__ (line 4737) | def __sub__(self, arg2: list, /) -> Vec3hArray: ... class Vec3iArray (line 4739) | class Vec3iArray(Boost.Python.instance): method __init__ (line 4743) | def __init__(self) -> None: method __init__ (line 4754) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4765) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4776) | def __init__(self, size: int) -> None: method FromBuffer (line 4787) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4792) | def FromNumpy(*args, **kwargs): method __add__ (line 4797) | def __add__(self, arg2: Vec3iArray | typing.Iterable[list[int]] | typi... method __add__ (line 4799) | def __add__(self, arg2: pxr.Gf.Vec3i | list[int] | pxr.Gf.Size3 | tupl... method __add__ (line 4801) | def __add__(self, arg2: tuple, /) -> Vec3iArray: ... method __add__ (line 4803) | def __add__(self, arg2: list, /) -> Vec3iArray: ... method __eq__ (line 4804) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4806) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4808) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4809) | def __iter__(self) -> Any: ... method __len__ (line 4810) | def __len__(self) -> int: ... method __mul__ (line 4811) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4812) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4813) | def __neg__(self) -> Any: ... method __radd__ (line 4815) | def __radd__(self, arg2: pxr.Gf.Vec3i | list[int] | pxr.Gf.Size3 | tup... method __radd__ (line 4817) | def __radd__(self, arg2: tuple, /) -> Vec3iArray: ... method __radd__ (line 4819) | def __radd__(self, arg2: list, /) -> Vec3iArray: ... method __rmul__ (line 4820) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4822) | def __rsub__(self, arg2: pxr.Gf.Vec3i | list[int] | pxr.Gf.Size3 | tup... method __rsub__ (line 4824) | def __rsub__(self, arg2: tuple, /) -> Vec3iArray: ... method __rsub__ (line 4826) | def __rsub__(self, arg2: list, /) -> Vec3iArray: ... method __setitem__ (line 4828) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4830) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4832) | def __sub__(self, arg2: Vec3iArray | typing.Iterable[list[int]] | typi... method __sub__ (line 4834) | def __sub__(self, arg2: pxr.Gf.Vec3i | list[int] | pxr.Gf.Size3 | tupl... method __sub__ (line 4836) | def __sub__(self, arg2: tuple, /) -> Vec3iArray: ... method __sub__ (line 4838) | def __sub__(self, arg2: list, /) -> Vec3iArray: ... class Vec4dArray (line 4840) | class Vec4dArray(Boost.Python.instance): method __init__ (line 4844) | def __init__(self) -> None: method __init__ (line 4855) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4866) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4877) | def __init__(self, size: int) -> None: method FromBuffer (line 4888) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4893) | def FromNumpy(*args, **kwargs): method __add__ (line 4898) | def __add__(self, arg2: Vec4dArray | typing.Iterable[list[float]] | ty... method __add__ (line 4900) | def __add__(self, arg2: pxr.Gf.Vec4d | list[float] | tuple[float, floa... method __add__ (line 4902) | def __add__(self, arg2: tuple, /) -> Vec4dArray: ... method __add__ (line 4904) | def __add__(self, arg2: list, /) -> Vec4dArray: ... method __eq__ (line 4905) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 4907) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 4909) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 4910) | def __iter__(self) -> Any: ... method __len__ (line 4911) | def __len__(self) -> int: ... method __mul__ (line 4912) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 4913) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 4914) | def __neg__(self) -> Any: ... method __radd__ (line 4916) | def __radd__(self, arg2: pxr.Gf.Vec4d | list[float] | tuple[float, flo... method __radd__ (line 4918) | def __radd__(self, arg2: tuple, /) -> Vec4dArray: ... method __radd__ (line 4920) | def __radd__(self, arg2: list, /) -> Vec4dArray: ... method __rmul__ (line 4921) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 4923) | def __rsub__(self, arg2: pxr.Gf.Vec4d | list[float] | tuple[float, flo... method __rsub__ (line 4925) | def __rsub__(self, arg2: tuple, /) -> Vec4dArray: ... method __rsub__ (line 4927) | def __rsub__(self, arg2: list, /) -> Vec4dArray: ... method __setitem__ (line 4929) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 4931) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 4933) | def __sub__(self, arg2: Vec4dArray | typing.Iterable[list[float]] | ty... method __sub__ (line 4935) | def __sub__(self, arg2: pxr.Gf.Vec4d | list[float] | tuple[float, floa... method __sub__ (line 4937) | def __sub__(self, arg2: tuple, /) -> Vec4dArray: ... method __sub__ (line 4939) | def __sub__(self, arg2: list, /) -> Vec4dArray: ... class Vec4fArray (line 4941) | class Vec4fArray(Boost.Python.instance): method __init__ (line 4945) | def __init__(self) -> None: method __init__ (line 4956) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 4967) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 4978) | def __init__(self, size: int) -> None: method FromBuffer (line 4989) | def FromBuffer(*args, **kwargs): method FromNumpy (line 4994) | def FromNumpy(*args, **kwargs): method __add__ (line 4999) | def __add__(self, arg2: Vec4fArray | typing.Iterable[list[float]] | ty... method __add__ (line 5001) | def __add__(self, arg2: pxr.Gf.Vec4f | list[float] | tuple[float, floa... method __add__ (line 5003) | def __add__(self, arg2: tuple, /) -> Vec4fArray: ... method __add__ (line 5005) | def __add__(self, arg2: list, /) -> Vec4fArray: ... method __eq__ (line 5006) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 5008) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 5010) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 5011) | def __iter__(self) -> Any: ... method __len__ (line 5012) | def __len__(self) -> int: ... method __mul__ (line 5013) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 5014) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 5015) | def __neg__(self) -> Any: ... method __radd__ (line 5017) | def __radd__(self, arg2: pxr.Gf.Vec4f | list[float] | tuple[float, flo... method __radd__ (line 5019) | def __radd__(self, arg2: tuple, /) -> Vec4fArray: ... method __radd__ (line 5021) | def __radd__(self, arg2: list, /) -> Vec4fArray: ... method __rmul__ (line 5022) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 5024) | def __rsub__(self, arg2: pxr.Gf.Vec4f | list[float] | tuple[float, flo... method __rsub__ (line 5026) | def __rsub__(self, arg2: tuple, /) -> Vec4fArray: ... method __rsub__ (line 5028) | def __rsub__(self, arg2: list, /) -> Vec4fArray: ... method __setitem__ (line 5030) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 5032) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 5034) | def __sub__(self, arg2: Vec4fArray | typing.Iterable[list[float]] | ty... method __sub__ (line 5036) | def __sub__(self, arg2: pxr.Gf.Vec4f | list[float] | tuple[float, floa... method __sub__ (line 5038) | def __sub__(self, arg2: tuple, /) -> Vec4fArray: ... method __sub__ (line 5040) | def __sub__(self, arg2: list, /) -> Vec4fArray: ... class Vec4hArray (line 5042) | class Vec4hArray(Boost.Python.instance): method __init__ (line 5046) | def __init__(self) -> None: method __init__ (line 5057) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 5068) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 5079) | def __init__(self, size: int) -> None: method FromBuffer (line 5090) | def FromBuffer(*args, **kwargs): method FromNumpy (line 5095) | def FromNumpy(*args, **kwargs): method __add__ (line 5100) | def __add__(self, arg2: Vec4hArray | typing.Iterable[list[float]] | ty... method __add__ (line 5102) | def __add__(self, arg2: pxr.Gf.Vec4h | list[float] | tuple[float, floa... method __add__ (line 5104) | def __add__(self, arg2: tuple, /) -> Vec4hArray: ... method __add__ (line 5106) | def __add__(self, arg2: list, /) -> Vec4hArray: ... method __eq__ (line 5107) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 5109) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 5111) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 5112) | def __iter__(self) -> Any: ... method __len__ (line 5113) | def __len__(self) -> int: ... method __mul__ (line 5114) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 5115) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 5116) | def __neg__(self) -> Any: ... method __radd__ (line 5118) | def __radd__(self, arg2: pxr.Gf.Vec4h | list[float] | tuple[float, flo... method __radd__ (line 5120) | def __radd__(self, arg2: tuple, /) -> Vec4hArray: ... method __radd__ (line 5122) | def __radd__(self, arg2: list, /) -> Vec4hArray: ... method __rmul__ (line 5123) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 5125) | def __rsub__(self, arg2: pxr.Gf.Vec4h | list[float] | tuple[float, flo... method __rsub__ (line 5127) | def __rsub__(self, arg2: tuple, /) -> Vec4hArray: ... method __rsub__ (line 5129) | def __rsub__(self, arg2: list, /) -> Vec4hArray: ... method __setitem__ (line 5131) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 5133) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 5135) | def __sub__(self, arg2: Vec4hArray | typing.Iterable[list[float]] | ty... method __sub__ (line 5137) | def __sub__(self, arg2: pxr.Gf.Vec4h | list[float] | tuple[float, floa... method __sub__ (line 5139) | def __sub__(self, arg2: tuple, /) -> Vec4hArray: ... method __sub__ (line 5141) | def __sub__(self, arg2: list, /) -> Vec4hArray: ... class Vec4iArray (line 5143) | class Vec4iArray(Boost.Python.instance): method __init__ (line 5147) | def __init__(self) -> None: method __init__ (line 5158) | def __init__(self, array: typing.Iterable) -> None: method __init__ (line 5169) | def __init__(self, size: int, array: typing.Iterable) -> None: method __init__ (line 5180) | def __init__(self, size: int) -> None: method FromBuffer (line 5191) | def FromBuffer(*args, **kwargs): method FromNumpy (line 5196) | def FromNumpy(*args, **kwargs): method __add__ (line 5201) | def __add__(self, arg2: Vec4iArray | typing.Iterable[list[int]] | typi... method __add__ (line 5203) | def __add__(self, arg2: pxr.Gf.Vec4i | list[int] | tuple[int, int, int... method __add__ (line 5205) | def __add__(self, arg2: tuple, /) -> Vec4iArray: ... method __add__ (line 5207) | def __add__(self, arg2: list, /) -> Vec4iArray: ... method __eq__ (line 5208) | def __eq__(self, other: object) -> bool: ... method __getitem__ (line 5210) | def __getitem__(self, arg2: object, /) -> Any: ... method __getitem__ (line 5212) | def __getitem__(self, arg2: int, /) -> Any: ... # type: ignore[overlo... method __iter__ (line 5213) | def __iter__(self) -> Any: ... method __len__ (line 5214) | def __len__(self) -> int: ... method __mul__ (line 5215) | def __mul__(self, arg2: float, /) -> Any: ... method __ne__ (line 5216) | def __ne__(self, other: object) -> bool: ... method __neg__ (line 5217) | def __neg__(self) -> Any: ... method __radd__ (line 5219) | def __radd__(self, arg2: pxr.Gf.Vec4i | list[int] | tuple[int, int, in... method __radd__ (line 5221) | def __radd__(self, arg2: tuple, /) -> Vec4iArray: ... method __radd__ (line 5223) | def __radd__(self, arg2: list, /) -> Vec4iArray: ... method __rmul__ (line 5224) | def __rmul__(self, arg2: float, /) -> Any: ... method __rsub__ (line 5226) | def __rsub__(self, arg2: pxr.Gf.Vec4i | list[int] | tuple[int, int, in... method __rsub__ (line 5228) | def __rsub__(self, arg2: tuple, /) -> Vec4iArray: ... method __rsub__ (line 5230) | def __rsub__(self, arg2: list, /) -> Vec4iArray: ... method __setitem__ (line 5232) | def __setitem__(self, arg2: object, arg3: object, /) -> None: ... method __setitem__ (line 5234) | def __setitem__(self, arg2: int, arg3: object, /) -> None: ... # type... method __sub__ (line 5236) | def __sub__(self, arg2: Vec4iArray | typing.Iterable[list[int]] | typi... method __sub__ (line 5238) | def __sub__(self, arg2: pxr.Gf.Vec4i | list[int] | tuple[int, int, int... method __sub__ (line 5240) | def __sub__(self, arg2: tuple, /) -> Vec4iArray: ... method __sub__ (line 5242) | def __sub__(self, arg2: list, /) -> Vec4iArray: ... class _ValueWrapper (line 5244) | class _ValueWrapper(Boost.Python.instance): method __init__ (line 5245) | def __init__(self, *args, **kwargs) -> None: method __eq__ (line 5249) | def __eq__(self, other: object) -> bool: ... method __ne__ (line 5250) | def __ne__(self, other: object) -> bool: ... function AllTrue (line 5253) | def AllTrue(_a: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typi... function AllTrue (line 5269) | def AllTrue(arg1: DoubleArray | typing.Iterable[float], /) -> bool: ... function AllTrue (line 5271) | def AllTrue(arg1: FloatArray | typing.Iterable[float], /) -> bool: ... function AllTrue (line 5273) | def AllTrue(arg1: HalfArray | typing.Iterable[float], /) -> bool: ... function AllTrue (line 5275) | def AllTrue(arg1: BoolArray | typing.Iterable[bool], /) -> bool: ... function AllTrue (line 5277) | def AllTrue(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typ... function AllTrue (line 5279) | def AllTrue(arg1: UCharArray, /) -> bool: ... function AllTrue (line 5281) | def AllTrue(arg1: ShortArray | typing.Iterable[int], /) -> bool: ... function AllTrue (line 5283) | def AllTrue(arg1: UShortArray, /) -> bool: ... function AllTrue (line 5285) | def AllTrue(arg1: IntArray | typing.Iterable[int], /) -> bool: ... function AllTrue (line 5287) | def AllTrue(arg1: UIntArray | typing.Iterable[int], /) -> bool: ... function AllTrue (line 5289) | def AllTrue(arg1: Int64Array | typing.Iterable[int], /) -> bool: ... function AllTrue (line 5291) | def AllTrue(arg1: UInt64Array | typing.Iterable[int], /) -> bool: ... function AllTrue (line 5293) | def AllTrue(arg1: StringArray, /) -> bool: ... function AnyTrue (line 5295) | def AnyTrue(_a: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typi... function AnyTrue (line 5310) | def AnyTrue(arg1: DoubleArray | typing.Iterable[float], /) -> bool: ... function AnyTrue (line 5312) | def AnyTrue(arg1: FloatArray | typing.Iterable[float], /) -> bool: ... function AnyTrue (line 5314) | def AnyTrue(arg1: HalfArray | typing.Iterable[float], /) -> bool: ... function AnyTrue (line 5316) | def AnyTrue(arg1: BoolArray | typing.Iterable[bool], /) -> bool: ... function AnyTrue (line 5318) | def AnyTrue(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typ... function AnyTrue (line 5320) | def AnyTrue(arg1: UCharArray, /) -> bool: ... function AnyTrue (line 5322) | def AnyTrue(arg1: ShortArray | typing.Iterable[int], /) -> bool: ... function AnyTrue (line 5324) | def AnyTrue(arg1: UShortArray, /) -> bool: ... function AnyTrue (line 5326) | def AnyTrue(arg1: IntArray | typing.Iterable[int], /) -> bool: ... function AnyTrue (line 5328) | def AnyTrue(arg1: UIntArray | typing.Iterable[int], /) -> bool: ... function AnyTrue (line 5330) | def AnyTrue(arg1: Int64Array | typing.Iterable[int], /) -> bool: ... function AnyTrue (line 5332) | def AnyTrue(arg1: UInt64Array | typing.Iterable[int], /) -> bool: ... function AnyTrue (line 5334) | def AnyTrue(arg1: StringArray, /) -> bool: ... function Bool (line 5335) | def Bool(arg1: bool, /) -> _ValueWrapper: function BoolArrayFromBuffer (line 5341) | def BoolArrayFromBuffer(arg1: object, /) -> Any: ... function Cat (line 5343) | def Cat(_a0: Vec2dArray | typing.Iterable[list[float]] | typing.Iterable... function Cat (line 5352) | def Cat(arg1: DualQuathArray, /) -> DualQuathArray: ... function Cat (line 5354) | def Cat(arg1: DualQuathArray, arg2: DualQuathArray, /) -> DualQuathArray... function Cat (line 5356) | def Cat(arg1: DualQuathArray, arg2: DualQuathArray, arg3: DualQuathArray... function Cat (line 5358) | def Cat(arg1: DualQuathArray, arg2: DualQuathArray, arg3: DualQuathArray... function Cat (line 5360) | def Cat(arg1: DualQuathArray, arg2: DualQuathArray, arg3: DualQuathArray... function Cat (line 5362) | def Cat(arg1: DualQuatfArray, /) -> DualQuatfArray: ... function Cat (line 5364) | def Cat(arg1: DualQuatfArray, arg2: DualQuatfArray, /) -> DualQuatfArray... function Cat (line 5366) | def Cat(arg1: DualQuatfArray, arg2: DualQuatfArray, arg3: DualQuatfArray... function Cat (line 5368) | def Cat(arg1: DualQuatfArray, arg2: DualQuatfArray, arg3: DualQuatfArray... function Cat (line 5370) | def Cat(arg1: DualQuatfArray, arg2: DualQuatfArray, arg3: DualQuatfArray... function Cat (line 5372) | def Cat(arg1: DualQuatdArray, /) -> DualQuatdArray: ... function Cat (line 5374) | def Cat(arg1: DualQuatdArray, arg2: DualQuatdArray, /) -> DualQuatdArray... function Cat (line 5376) | def Cat(arg1: DualQuatdArray, arg2: DualQuatdArray, arg3: DualQuatdArray... function Cat (line 5378) | def Cat(arg1: DualQuatdArray, arg2: DualQuatdArray, arg3: DualQuatdArray... function Cat (line 5380) | def Cat(arg1: DualQuatdArray, arg2: DualQuatdArray, arg3: DualQuatdArray... function Cat (line 5382) | def Cat(arg1: DoubleArray | typing.Iterable[float], /) -> DoubleArray: ... function Cat (line 5384) | def Cat(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArray | ... function Cat (line 5386) | def Cat(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArray | ... function Cat (line 5388) | def Cat(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArray | ... function Cat (line 5390) | def Cat(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArray | ... function Cat (line 5392) | def Cat(arg1: FloatArray | typing.Iterable[float], /) -> FloatArray: ... function Cat (line 5394) | def Cat(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray | ty... function Cat (line 5396) | def Cat(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray | ty... function Cat (line 5398) | def Cat(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray | ty... function Cat (line 5400) | def Cat(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray | ty... function Cat (line 5402) | def Cat(arg1: HalfArray | typing.Iterable[float], /) -> HalfArray: ... function Cat (line 5404) | def Cat(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | typi... function Cat (line 5406) | def Cat(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | typi... function Cat (line 5408) | def Cat(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | typi... function Cat (line 5410) | def Cat(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | typi... function Cat (line 5412) | def Cat(arg1: BoolArray | typing.Iterable[bool], /) -> BoolArray: ... #... function Cat (line 5414) | def Cat(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | typin... function Cat (line 5416) | def Cat(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | typin... function Cat (line 5418) | def Cat(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | typin... function Cat (line 5420) | def Cat(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | typin... function Cat (line 5422) | def Cat(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing.... function Cat (line 5424) | def Cat(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing.... function Cat (line 5426) | def Cat(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing.... function Cat (line 5428) | def Cat(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing.... function Cat (line 5430) | def Cat(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing.... function Cat (line 5432) | def Cat(arg1: UCharArray, /) -> UCharArray: ... function Cat (line 5434) | def Cat(arg1: UCharArray, arg2: UCharArray, /) -> UCharArray: ... function Cat (line 5436) | def Cat(arg1: UCharArray, arg2: UCharArray, arg3: UCharArray, /) -> UCha... function Cat (line 5438) | def Cat(arg1: UCharArray, arg2: UCharArray, arg3: UCharArray, arg4: UCha... function Cat (line 5440) | def Cat(arg1: UCharArray, arg2: UCharArray, arg3: UCharArray, arg4: UCha... function Cat (line 5442) | def Cat(arg1: ShortArray | typing.Iterable[int], /) -> ShortArray: ... function Cat (line 5444) | def Cat(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | typi... function Cat (line 5446) | def Cat(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | typi... function Cat (line 5448) | def Cat(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | typi... function Cat (line 5450) | def Cat(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | typi... function Cat (line 5452) | def Cat(arg1: UShortArray, /) -> UShortArray: ... function Cat (line 5454) | def Cat(arg1: UShortArray, arg2: UShortArray, /) -> UShortArray: ... function Cat (line 5456) | def Cat(arg1: UShortArray, arg2: UShortArray, arg3: UShortArray, /) -> U... function Cat (line 5458) | def Cat(arg1: UShortArray, arg2: UShortArray, arg3: UShortArray, arg4: U... function Cat (line 5460) | def Cat(arg1: UShortArray, arg2: UShortArray, arg3: UShortArray, arg4: U... function Cat (line 5462) | def Cat(arg1: IntArray | typing.Iterable[int], /) -> IntArray: ... function Cat (line 5464) | def Cat(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typing.I... function Cat (line 5466) | def Cat(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typing.I... function Cat (line 5468) | def Cat(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typing.I... function Cat (line 5470) | def Cat(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typing.I... function Cat (line 5472) | def Cat(arg1: UIntArray | typing.Iterable[int], /) -> UIntArray: ... function Cat (line 5474) | def Cat(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | typing... function Cat (line 5476) | def Cat(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | typing... function Cat (line 5478) | def Cat(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | typing... function Cat (line 5480) | def Cat(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | typing... function Cat (line 5482) | def Cat(arg1: Int64Array | typing.Iterable[int], /) -> Int64Array: ... function Cat (line 5484) | def Cat(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | typi... function Cat (line 5486) | def Cat(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | typi... function Cat (line 5488) | def Cat(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | typi... function Cat (line 5490) | def Cat(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | typi... function Cat (line 5492) | def Cat(arg1: UInt64Array | typing.Iterable[int], /) -> UInt64Array: ... function Cat (line 5494) | def Cat(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array | ty... function Cat (line 5496) | def Cat(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array | ty... function Cat (line 5498) | def Cat(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array | ty... function Cat (line 5500) | def Cat(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array | ty... function Cat (line 5502) | def Cat(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], /) -> Ma... function Cat (line 5504) | def Cat(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: Ma... function Cat (line 5506) | def Cat(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: Ma... function Cat (line 5508) | def Cat(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: Ma... function Cat (line 5510) | def Cat(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: Ma... function Cat (line 5512) | def Cat(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], /) -> Ma... function Cat (line 5514) | def Cat(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: Ma... function Cat (line 5516) | def Cat(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: Ma... function Cat (line 5518) | def Cat(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: Ma... function Cat (line 5520) | def Cat(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: Ma... function Cat (line 5522) | def Cat(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], /) -> Ma... function Cat (line 5524) | def Cat(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: Ma... function Cat (line 5526) | def Cat(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: Ma... function Cat (line 5528) | def Cat(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: Ma... function Cat (line 5530) | def Cat(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: Ma... function Cat (line 5532) | def Cat(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], /) -> Ma... function Cat (line 5534) | def Cat(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: Ma... function Cat (line 5536) | def Cat(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: Ma... function Cat (line 5538) | def Cat(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: Ma... function Cat (line 5540) | def Cat(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: Ma... function Cat (line 5542) | def Cat(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], /) -> Ma... function Cat (line 5544) | def Cat(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: Ma... function Cat (line 5546) | def Cat(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: Ma... function Cat (line 5548) | def Cat(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: Ma... function Cat (line 5550) | def Cat(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: Ma... function Cat (line 5552) | def Cat(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], /) -> Ma... function Cat (line 5554) | def Cat(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: Ma... function Cat (line 5556) | def Cat(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: Ma... function Cat (line 5558) | def Cat(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: Ma... function Cat (line 5560) | def Cat(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: Ma... function Cat (line 5562) | def Cat(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], /) -> QuathArr... function Cat (line 5564) | def Cat(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: QuathArr... function Cat (line 5566) | def Cat(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: QuathArr... function Cat (line 5568) | def Cat(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: QuathArr... function Cat (line 5570) | def Cat(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: QuathArr... function Cat (line 5572) | def Cat(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iterab... function Cat (line 5574) | def Cat(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iterab... function Cat (line 5576) | def Cat(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iterab... function Cat (line 5578) | def Cat(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iterab... function Cat (line 5580) | def Cat(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iterab... function Cat (line 5582) | def Cat(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iterab... function Cat (line 5584) | def Cat(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iterab... function Cat (line 5586) | def Cat(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iterab... function Cat (line 5588) | def Cat(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iterab... function Cat (line 5590) | def Cat(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iterab... function Cat (line 5592) | def Cat(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], /) -... function Cat (line 5594) | def Cat(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], arg2... function Cat (line 5596) | def Cat(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], arg2... function Cat (line 5598) | def Cat(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], arg2... function Cat (line 5600) | def Cat(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], arg2... function Cat (line 5602) | def Cat(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5604) | def Cat(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5606) | def Cat(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5608) | def Cat(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5610) | def Cat(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5612) | def Cat(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5614) | def Cat(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5616) | def Cat(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5618) | def Cat(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5620) | def Cat(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5622) | def Cat(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5624) | def Cat(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5626) | def Cat(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5628) | def Cat(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5630) | def Cat(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5632) | def Cat(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5634) | def Cat(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5636) | def Cat(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5638) | def Cat(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5640) | def Cat(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Itera... function Cat (line 5642) | def Cat(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], /) -> Rang... function Cat (line 5644) | def Cat(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: Rang... function Cat (line 5646) | def Cat(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: Rang... function Cat (line 5648) | def Cat(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: Rang... function Cat (line 5650) | def Cat(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: Rang... function Cat (line 5652) | def Cat(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], /) -> Rang... function Cat (line 5654) | def Cat(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: Rang... function Cat (line 5656) | def Cat(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: Rang... function Cat (line 5658) | def Cat(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: Rang... function Cat (line 5660) | def Cat(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: Rang... function Cat (line 5662) | def Cat(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], /) -> In... function Cat (line 5664) | def Cat(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: In... function Cat (line 5666) | def Cat(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: In... function Cat (line 5668) | def Cat(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: In... function Cat (line 5670) | def Cat(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: In... function Cat (line 5672) | def Cat(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], /) -> Rect2i... function Cat (line 5674) | def Cat(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: Rect2i... function Cat (line 5676) | def Cat(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: Rect2i... function Cat (line 5678) | def Cat(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: Rect2i... function Cat (line 5680) | def Cat(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: Rect2i... function Cat (line 5682) | def Cat(arg1: StringArray, /) -> StringArray: ... function Cat (line 5684) | def Cat(arg1: StringArray, arg2: StringArray, /) -> StringArray: ... function Cat (line 5686) | def Cat(arg1: StringArray, arg2: StringArray, arg3: StringArray, /) -> S... function Cat (line 5688) | def Cat(arg1: StringArray, arg2: StringArray, arg3: StringArray, arg4: S... function Cat (line 5690) | def Cat(arg1: StringArray, arg2: StringArray, arg3: StringArray, arg4: S... function Cat (line 5692) | def Cat(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Cat (line 5694) | def Cat(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Cat (line 5696) | def Cat(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Cat (line 5698) | def Cat(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Cat (line 5700) | def Cat(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Cat (line 5702) | def Cat(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5704) | def Cat(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5706) | def Cat(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5708) | def Cat(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5710) | def Cat(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5712) | def Cat(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5714) | def Cat(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5716) | def Cat(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5718) | def Cat(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5720) | def Cat(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5722) | def Cat(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5724) | def Cat(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5726) | def Cat(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5728) | def Cat(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5730) | def Cat(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterable[... function Cat (line 5732) | def Cat(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5734) | def Cat(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5736) | def Cat(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5738) | def Cat(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5740) | def Cat(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5742) | def Cat(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5744) | def Cat(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5746) | def Cat(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5748) | def Cat(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5750) | def Cat(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5752) | def Cat(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5754) | def Cat(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5756) | def Cat(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5758) | def Cat(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5760) | def Cat(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5762) | def Cat(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5764) | def Cat(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5766) | def Cat(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5768) | def Cat(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5770) | def Cat(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5772) | def Cat(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5774) | def Cat(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5776) | def Cat(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5778) | def Cat(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5780) | def Cat(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5782) | def Cat(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5784) | def Cat(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5786) | def Cat(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5788) | def Cat(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5790) | def Cat(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5792) | def Cat(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5794) | def Cat(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5796) | def Cat(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5798) | def Cat(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5800) | def Cat(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5802) | def Cat(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5804) | def Cat(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5806) | def Cat(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5808) | def Cat(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5810) | def Cat(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5812) | def Cat(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5814) | def Cat(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5816) | def Cat(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Iterabl... function Cat (line 5818) | def Cat(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Iterabl... function CharArrayFromBuffer (line 5819) | def CharArrayFromBuffer(arg1: object, /) -> Any: ... function Double (line 5820) | def Double(arg1: float, /) -> _ValueWrapper: function DoubleArrayFromBuffer (line 5826) | def DoubleArrayFromBuffer(arg1: object, /) -> Any: ... function DualQuatdArrayFromBuffer (line 5827) | def DualQuatdArrayFromBuffer(arg1: object, /) -> Any: ... function DualQuatfArrayFromBuffer (line 5828) | def DualQuatfArrayFromBuffer(arg1: object, /) -> Any: ... function DualQuathArrayFromBuffer (line 5829) | def DualQuathArrayFromBuffer(arg1: object, /) -> Any: ... function Equal (line 5831) | def Equal(arg1: DualQuathArray, arg2: DualQuathArray, /) -> BoolArray: ... function Equal (line 5833) | def Equal(arg1: pxr.Gf.DualQuath, arg2: DualQuathArray, /) -> BoolArray:... function Equal (line 5835) | def Equal(arg1: DualQuathArray, arg2: pxr.Gf.DualQuath, /) -> BoolArray:... function Equal (line 5837) | def Equal(arg1: DualQuathArray, arg2: tuple, /) -> BoolArray: ... function Equal (line 5839) | def Equal(arg1: tuple, arg2: DualQuathArray, /) -> BoolArray: ... function Equal (line 5841) | def Equal(arg1: DualQuathArray, arg2: list, /) -> BoolArray: ... function Equal (line 5843) | def Equal(arg1: list, arg2: DualQuathArray, /) -> BoolArray: ... function Equal (line 5845) | def Equal(arg1: DualQuatfArray, arg2: DualQuatfArray, /) -> BoolArray: ... function Equal (line 5847) | def Equal(arg1: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, arg2: DualQuatfArra... function Equal (line 5849) | def Equal(arg1: DualQuatfArray, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQuat... function Equal (line 5851) | def Equal(arg1: DualQuatfArray, arg2: tuple, /) -> BoolArray: ... function Equal (line 5853) | def Equal(arg1: tuple, arg2: DualQuatfArray, /) -> BoolArray: ... function Equal (line 5855) | def Equal(arg1: DualQuatfArray, arg2: list, /) -> BoolArray: ... function Equal (line 5857) | def Equal(arg1: list, arg2: DualQuatfArray, /) -> BoolArray: ... function Equal (line 5859) | def Equal(arg1: DualQuatdArray, arg2: DualQuatdArray, /) -> BoolArray: ... function Equal (line 5861) | def Equal(arg1: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.DualQuath, ... function Equal (line 5863) | def Equal(arg1: DualQuatdArray, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQuat... function Equal (line 5865) | def Equal(arg1: DualQuatdArray, arg2: tuple, /) -> BoolArray: ... function Equal (line 5867) | def Equal(arg1: tuple, arg2: DualQuatdArray, /) -> BoolArray: ... function Equal (line 5869) | def Equal(arg1: DualQuatdArray, arg2: list, /) -> BoolArray: ... function Equal (line 5871) | def Equal(arg1: list, arg2: DualQuatdArray, /) -> BoolArray: ... function Equal (line 5873) | def Equal(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArray ... function Equal (line 5875) | def Equal(arg1: float, arg2: DoubleArray | typing.Iterable[float], /) ->... function Equal (line 5877) | def Equal(arg1: DoubleArray | typing.Iterable[float], arg2: float, /) ->... function Equal (line 5879) | def Equal(arg1: DoubleArray | typing.Iterable[float], arg2: tuple, /) ->... function Equal (line 5881) | def Equal(arg1: tuple, arg2: DoubleArray | typing.Iterable[float], /) ->... function Equal (line 5883) | def Equal(arg1: DoubleArray | typing.Iterable[float], arg2: list, /) -> ... function Equal (line 5885) | def Equal(arg1: list, arg2: DoubleArray | typing.Iterable[float], /) -> ... function Equal (line 5887) | def Equal(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray | ... function Equal (line 5889) | def Equal(arg1: float, arg2: FloatArray | typing.Iterable[float], /) -> ... function Equal (line 5891) | def Equal(arg1: FloatArray | typing.Iterable[float], arg2: float, /) -> ... function Equal (line 5893) | def Equal(arg1: FloatArray | typing.Iterable[float], arg2: tuple, /) -> ... function Equal (line 5895) | def Equal(arg1: tuple, arg2: FloatArray | typing.Iterable[float], /) -> ... function Equal (line 5897) | def Equal(arg1: FloatArray | typing.Iterable[float], arg2: list, /) -> B... function Equal (line 5899) | def Equal(arg1: list, arg2: FloatArray | typing.Iterable[float], /) -> B... function Equal (line 5901) | def Equal(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | ty... function Equal (line 5903) | def Equal(arg1: object, arg2: HalfArray | typing.Iterable[float], /) -> ... function Equal (line 5905) | def Equal(arg1: HalfArray | typing.Iterable[float], arg2: object, /) -> ... function Equal (line 5907) | def Equal(arg1: HalfArray | typing.Iterable[float], arg2: tuple, /) -> B... function Equal (line 5909) | def Equal(arg1: tuple, arg2: HalfArray | typing.Iterable[float], /) -> B... function Equal (line 5911) | def Equal(arg1: HalfArray | typing.Iterable[float], arg2: list, /) -> Bo... function Equal (line 5913) | def Equal(arg1: list, arg2: HalfArray | typing.Iterable[float], /) -> Bo... function Equal (line 5915) | def Equal(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | typ... function Equal (line 5917) | def Equal(arg1: bool, arg2: BoolArray | typing.Iterable[bool], /) -> Boo... function Equal (line 5919) | def Equal(arg1: BoolArray | typing.Iterable[bool], arg2: bool, /) -> Boo... function Equal (line 5921) | def Equal(arg1: BoolArray | typing.Iterable[bool], arg2: tuple, /) -> Bo... function Equal (line 5923) | def Equal(arg1: tuple, arg2: BoolArray | typing.Iterable[bool], /) -> Bo... function Equal (line 5925) | def Equal(arg1: BoolArray | typing.Iterable[bool], arg2: list, /) -> Boo... function Equal (line 5927) | def Equal(arg1: list, arg2: BoolArray | typing.Iterable[bool], /) -> Boo... function Equal (line 5929) | def Equal(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Equal (line 5931) | def Equal(arg1: str | pxr.Ar.ResolvedPath, arg2: CharArray | typing.Iter... function Equal (line 5933) | def Equal(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Equal (line 5935) | def Equal(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Equal (line 5937) | def Equal(arg1: tuple, arg2: CharArray | typing.Iterable[pxr.Ar.Resolved... function Equal (line 5939) | def Equal(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Equal (line 5941) | def Equal(arg1: list, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedP... function Equal (line 5943) | def Equal(arg1: UCharArray, arg2: UCharArray, /) -> BoolArray: ... function Equal (line 5945) | def Equal(arg1: int, arg2: UCharArray, /) -> BoolArray: ... function Equal (line 5947) | def Equal(arg1: UCharArray, arg2: int, /) -> BoolArray: ... function Equal (line 5949) | def Equal(arg1: UCharArray, arg2: tuple, /) -> BoolArray: ... function Equal (line 5951) | def Equal(arg1: tuple, arg2: UCharArray, /) -> BoolArray: ... function Equal (line 5953) | def Equal(arg1: UCharArray, arg2: list, /) -> BoolArray: ... function Equal (line 5955) | def Equal(arg1: list, arg2: UCharArray, /) -> BoolArray: ... function Equal (line 5957) | def Equal(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | ty... function Equal (line 5959) | def Equal(arg1: int, arg2: ShortArray | typing.Iterable[int], /) -> Bool... function Equal (line 5961) | def Equal(arg1: ShortArray | typing.Iterable[int], arg2: int, /) -> Bool... function Equal (line 5963) | def Equal(arg1: ShortArray | typing.Iterable[int], arg2: tuple, /) -> Bo... function Equal (line 5965) | def Equal(arg1: tuple, arg2: ShortArray | typing.Iterable[int], /) -> Bo... function Equal (line 5967) | def Equal(arg1: ShortArray | typing.Iterable[int], arg2: list, /) -> Boo... function Equal (line 5969) | def Equal(arg1: list, arg2: ShortArray | typing.Iterable[int], /) -> Boo... function Equal (line 5971) | def Equal(arg1: UShortArray, arg2: UShortArray, /) -> BoolArray: ... function Equal (line 5973) | def Equal(arg1: int, arg2: UShortArray, /) -> BoolArray: ... function Equal (line 5975) | def Equal(arg1: UShortArray, arg2: int, /) -> BoolArray: ... function Equal (line 5977) | def Equal(arg1: UShortArray, arg2: tuple, /) -> BoolArray: ... function Equal (line 5979) | def Equal(arg1: tuple, arg2: UShortArray, /) -> BoolArray: ... function Equal (line 5981) | def Equal(arg1: UShortArray, arg2: list, /) -> BoolArray: ... function Equal (line 5983) | def Equal(arg1: list, arg2: UShortArray, /) -> BoolArray: ... function Equal (line 5985) | def Equal(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typing... function Equal (line 5987) | def Equal(arg1: int, arg2: IntArray | typing.Iterable[int], /) -> BoolAr... function Equal (line 5989) | def Equal(arg1: IntArray | typing.Iterable[int], arg2: int, /) -> BoolAr... function Equal (line 5991) | def Equal(arg1: IntArray | typing.Iterable[int], arg2: tuple, /) -> Bool... function Equal (line 5993) | def Equal(arg1: tuple, arg2: IntArray | typing.Iterable[int], /) -> Bool... function Equal (line 5995) | def Equal(arg1: IntArray | typing.Iterable[int], arg2: list, /) -> BoolA... function Equal (line 5997) | def Equal(arg1: list, arg2: IntArray | typing.Iterable[int], /) -> BoolA... function Equal (line 5999) | def Equal(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | typi... function Equal (line 6001) | def Equal(arg1: int, arg2: UIntArray | typing.Iterable[int], /) -> BoolA... function Equal (line 6003) | def Equal(arg1: UIntArray | typing.Iterable[int], arg2: int, /) -> BoolA... function Equal (line 6005) | def Equal(arg1: UIntArray | typing.Iterable[int], arg2: tuple, /) -> Boo... function Equal (line 6007) | def Equal(arg1: tuple, arg2: UIntArray | typing.Iterable[int], /) -> Boo... function Equal (line 6009) | def Equal(arg1: UIntArray | typing.Iterable[int], arg2: list, /) -> Bool... function Equal (line 6011) | def Equal(arg1: list, arg2: UIntArray | typing.Iterable[int], /) -> Bool... function Equal (line 6013) | def Equal(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | ty... function Equal (line 6015) | def Equal(arg1: int, arg2: Int64Array | typing.Iterable[int], /) -> Bool... function Equal (line 6017) | def Equal(arg1: Int64Array | typing.Iterable[int], arg2: int, /) -> Bool... function Equal (line 6019) | def Equal(arg1: Int64Array | typing.Iterable[int], arg2: tuple, /) -> Bo... function Equal (line 6021) | def Equal(arg1: tuple, arg2: Int64Array | typing.Iterable[int], /) -> Bo... function Equal (line 6023) | def Equal(arg1: Int64Array | typing.Iterable[int], arg2: list, /) -> Boo... function Equal (line 6025) | def Equal(arg1: list, arg2: Int64Array | typing.Iterable[int], /) -> Boo... function Equal (line 6027) | def Equal(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array | ... function Equal (line 6029) | def Equal(arg1: int, arg2: UInt64Array | typing.Iterable[int], /) -> Boo... function Equal (line 6031) | def Equal(arg1: UInt64Array | typing.Iterable[int], arg2: int, /) -> Boo... function Equal (line 6033) | def Equal(arg1: UInt64Array | typing.Iterable[int], arg2: tuple, /) -> B... function Equal (line 6035) | def Equal(arg1: tuple, arg2: UInt64Array | typing.Iterable[int], /) -> B... function Equal (line 6037) | def Equal(arg1: UInt64Array | typing.Iterable[int], arg2: list, /) -> Bo... function Equal (line 6039) | def Equal(arg1: list, arg2: UInt64Array | typing.Iterable[int], /) -> Bo... function Equal (line 6041) | def Equal(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: ... function Equal (line 6043) | def Equal(arg1: pxr.Gf.Matrix4f, arg2: Matrix4fArray | typing.Iterable[p... function Equal (line 6045) | def Equal(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: ... function Equal (line 6047) | def Equal(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: ... function Equal (line 6049) | def Equal(arg1: tuple, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Matr... function Equal (line 6051) | def Equal(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg2: ... function Equal (line 6053) | def Equal(arg1: list, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Matri... function Equal (line 6055) | def Equal(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: ... function Equal (line 6057) | def Equal(arg1: pxr.Gf.Matrix3f, arg2: Matrix3fArray | typing.Iterable[p... function Equal (line 6059) | def Equal(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: ... function Equal (line 6061) | def Equal(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: ... function Equal (line 6063) | def Equal(arg1: tuple, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Matr... function Equal (line 6065) | def Equal(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg2: ... function Equal (line 6067) | def Equal(arg1: list, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Matri... function Equal (line 6069) | def Equal(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: ... function Equal (line 6071) | def Equal(arg1: pxr.Gf.Matrix2f, arg2: Matrix2fArray | typing.Iterable[p... function Equal (line 6073) | def Equal(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: ... function Equal (line 6075) | def Equal(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: ... function Equal (line 6077) | def Equal(arg1: tuple, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Matr... function Equal (line 6079) | def Equal(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg2: ... function Equal (line 6081) | def Equal(arg1: list, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Matri... function Equal (line 6083) | def Equal(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: ... function Equal (line 6085) | def Equal(arg1: pxr.Gf.Matrix4d, arg2: Matrix4dArray | typing.Iterable[p... function Equal (line 6087) | def Equal(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: ... function Equal (line 6089) | def Equal(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: ... function Equal (line 6091) | def Equal(arg1: tuple, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Matr... function Equal (line 6093) | def Equal(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg2: ... function Equal (line 6095) | def Equal(arg1: list, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Matri... function Equal (line 6097) | def Equal(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: ... function Equal (line 6099) | def Equal(arg1: pxr.Gf.Matrix3d, arg2: Matrix3dArray | typing.Iterable[p... function Equal (line 6101) | def Equal(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: ... function Equal (line 6103) | def Equal(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: ... function Equal (line 6105) | def Equal(arg1: tuple, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Matr... function Equal (line 6107) | def Equal(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg2: ... function Equal (line 6109) | def Equal(arg1: list, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Matri... function Equal (line 6111) | def Equal(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: ... function Equal (line 6113) | def Equal(arg1: pxr.Gf.Matrix2d, arg2: Matrix2dArray | typing.Iterable[p... function Equal (line 6115) | def Equal(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: ... function Equal (line 6117) | def Equal(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: ... function Equal (line 6119) | def Equal(arg1: tuple, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Matr... function Equal (line 6121) | def Equal(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg2: ... function Equal (line 6123) | def Equal(arg1: list, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Matri... function Equal (line 6125) | def Equal(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: QuathA... function Equal (line 6127) | def Equal(arg1: pxr.Gf.Quath, arg2: QuathArray | typing.Iterable[pxr.Gf.... function Equal (line 6129) | def Equal(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: pxr.Gf... function Equal (line 6131) | def Equal(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: tuple,... function Equal (line 6133) | def Equal(arg1: tuple, arg2: QuathArray | typing.Iterable[pxr.Gf.Quath],... function Equal (line 6135) | def Equal(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: list, ... function Equal (line 6137) | def Equal(arg1: list, arg2: QuathArray | typing.Iterable[pxr.Gf.Quath], ... function Equal (line 6139) | def Equal(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iter... function Equal (line 6141) | def Equal(arg1: pxr.Gf.Quatf | pxr.Gf.Quath, arg2: QuatfArray | typing.I... function Equal (line 6143) | def Equal(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iter... function Equal (line 6145) | def Equal(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iter... function Equal (line 6147) | def Equal(arg1: tuple, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quatf] ... function Equal (line 6149) | def Equal(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.Iter... function Equal (line 6151) | def Equal(arg1: list, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quatf] |... function Equal (line 6153) | def Equal(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iter... function Equal (line 6155) | def Equal(arg1: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, arg2: QuatdA... function Equal (line 6157) | def Equal(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iter... function Equal (line 6159) | def Equal(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iter... function Equal (line 6161) | def Equal(arg1: tuple, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quatd] ... function Equal (line 6163) | def Equal(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.Iter... function Equal (line 6165) | def Equal(arg1: list, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quatd] |... function Equal (line 6167) | def Equal(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], ar... function Equal (line 6169) | def Equal(arg1: pxr.Gf.Quaternion, arg2: QuaternionArray | typing.Iterab... function Equal (line 6171) | def Equal(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], ar... function Equal (line 6173) | def Equal(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], ar... function Equal (line 6175) | def Equal(arg1: tuple, arg2: QuaternionArray | typing.Iterable[pxr.Gf.Qu... function Equal (line 6177) | def Equal(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion], ar... function Equal (line 6179) | def Equal(arg1: list, arg2: QuaternionArray | typing.Iterable[pxr.Gf.Qua... function Equal (line 6181) | def Equal(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6183) | def Equal(arg1: pxr.Gf.Range3f | list[float] | tuple[float, float, float... function Equal (line 6185) | def Equal(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6187) | def Equal(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6189) | def Equal(arg1: tuple, arg2: Range3fArray | typing.Iterable[list[float]]... function Equal (line 6191) | def Equal(arg1: Range3fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6193) | def Equal(arg1: list, arg2: Range3fArray | typing.Iterable[list[float]] ... function Equal (line 6195) | def Equal(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6197) | def Equal(arg1: pxr.Gf.Range3d | list[float] | tuple[float, float, float... function Equal (line 6199) | def Equal(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6201) | def Equal(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6203) | def Equal(arg1: tuple, arg2: Range3dArray | typing.Iterable[list[float]]... function Equal (line 6205) | def Equal(arg1: Range3dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6207) | def Equal(arg1: list, arg2: Range3dArray | typing.Iterable[list[float]] ... function Equal (line 6209) | def Equal(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6211) | def Equal(arg1: pxr.Gf.Range2f | list[float] | tuple[float, float], arg2... function Equal (line 6213) | def Equal(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6215) | def Equal(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6217) | def Equal(arg1: tuple, arg2: Range2fArray | typing.Iterable[list[float]]... function Equal (line 6219) | def Equal(arg1: Range2fArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6221) | def Equal(arg1: list, arg2: Range2fArray | typing.Iterable[list[float]] ... function Equal (line 6223) | def Equal(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6225) | def Equal(arg1: pxr.Gf.Range2d | list[float] | tuple[float, float], arg2... function Equal (line 6227) | def Equal(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6229) | def Equal(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6231) | def Equal(arg1: tuple, arg2: Range2dArray | typing.Iterable[list[float]]... function Equal (line 6233) | def Equal(arg1: Range2dArray | typing.Iterable[list[float]] | typing.Ite... function Equal (line 6235) | def Equal(arg1: list, arg2: Range2dArray | typing.Iterable[list[float]] ... function Equal (line 6237) | def Equal(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: Ra... function Equal (line 6239) | def Equal(arg1: pxr.Gf.Range1f, arg2: Range1fArray | typing.Iterable[pxr... function Equal (line 6241) | def Equal(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: px... function Equal (line 6243) | def Equal(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: tu... function Equal (line 6245) | def Equal(arg1: tuple, arg2: Range1fArray | typing.Iterable[pxr.Gf.Range... function Equal (line 6247) | def Equal(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2: li... function Equal (line 6249) | def Equal(arg1: list, arg2: Range1fArray | typing.Iterable[pxr.Gf.Range1... function Equal (line 6251) | def Equal(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: Ra... function Equal (line 6253) | def Equal(arg1: pxr.Gf.Range1d, arg2: Range1dArray | typing.Iterable[pxr... function Equal (line 6255) | def Equal(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: px... function Equal (line 6257) | def Equal(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: tu... function Equal (line 6259) | def Equal(arg1: tuple, arg2: Range1dArray | typing.Iterable[pxr.Gf.Range... function Equal (line 6261) | def Equal(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2: li... function Equal (line 6263) | def Equal(arg1: list, arg2: Range1dArray | typing.Iterable[pxr.Gf.Range1... function Equal (line 6265) | def Equal(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: ... function Equal (line 6267) | def Equal(arg1: pxr.Gf.Interval, arg2: IntervalArray | typing.Iterable[p... function Equal (line 6269) | def Equal(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: ... function Equal (line 6271) | def Equal(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: ... function Equal (line 6273) | def Equal(arg1: tuple, arg2: IntervalArray | typing.Iterable[pxr.Gf.Inte... function Equal (line 6275) | def Equal(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg2: ... function Equal (line 6277) | def Equal(arg1: list, arg2: IntervalArray | typing.Iterable[pxr.Gf.Inter... function Equal (line 6279) | def Equal(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: Rect... function Equal (line 6281) | def Equal(arg1: pxr.Gf.Rect2i, arg2: Rect2iArray | typing.Iterable[pxr.G... function Equal (line 6283) | def Equal(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: pxr.... function Equal (line 6285) | def Equal(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: tupl... function Equal (line 6287) | def Equal(arg1: tuple, arg2: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i... function Equal (line 6289) | def Equal(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: list... function Equal (line 6291) | def Equal(arg1: list, arg2: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i]... function Equal (line 6293) | def Equal(arg1: StringArray, arg2: StringArray, /) -> BoolArray: ... function Equal (line 6295) | def Equal(arg1: str | pxr.Ar.ResolvedPath, arg2: StringArray, /) -> Bool... function Equal (line 6297) | def Equal(arg1: StringArray, arg2: str | pxr.Ar.ResolvedPath, /) -> Bool... function Equal (line 6299) | def Equal(arg1: StringArray, arg2: tuple, /) -> BoolArray: ... function Equal (line 6301) | def Equal(arg1: tuple, arg2: StringArray, /) -> BoolArray: ... function Equal (line 6303) | def Equal(arg1: StringArray, arg2: list, /) -> BoolArray: ... function Equal (line 6305) | def Equal(arg1: list, arg2: StringArray, /) -> BoolArray: ... function Equal (line 6307) | def Equal(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typi... function Equal (line 6309) | def Equal(arg1: object, arg2: TokenArray | typing.Iterable[pxr.Ar.Resolv... function Equal (line 6311) | def Equal(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typi... function Equal (line 6313) | def Equal(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typi... function Equal (line 6315) | def Equal(arg1: tuple, arg2: TokenArray | typing.Iterable[pxr.Ar.Resolve... function Equal (line 6317) | def Equal(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typi... function Equal (line 6319) | def Equal(arg1: list, arg2: TokenArray | typing.Iterable[pxr.Ar.Resolved... function Equal (line 6321) | def Equal(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6323) | def Equal(arg1: pxr.Gf.Vec4i | list[int] | tuple[int, int, int, int], ar... function Equal (line 6325) | def Equal(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6327) | def Equal(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6329) | def Equal(arg1: tuple, arg2: Vec4iArray | typing.Iterable[list[int]] | t... function Equal (line 6331) | def Equal(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6333) | def Equal(arg1: list, arg2: Vec4iArray | typing.Iterable[list[int]] | ty... function Equal (line 6335) | def Equal(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6337) | def Equal(arg1: pxr.Gf.Vec3i | list[int] | pxr.Gf.Size3 | tuple[int, int... function Equal (line 6339) | def Equal(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6341) | def Equal(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6343) | def Equal(arg1: tuple, arg2: Vec3iArray | typing.Iterable[list[int]] | t... function Equal (line 6345) | def Equal(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6347) | def Equal(arg1: list, arg2: Vec3iArray | typing.Iterable[list[int]] | ty... function Equal (line 6349) | def Equal(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6351) | def Equal(arg1: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size2 | tuple[int, int... function Equal (line 6353) | def Equal(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6355) | def Equal(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6357) | def Equal(arg1: tuple, arg2: Vec2iArray | typing.Iterable[list[int]] | t... function Equal (line 6359) | def Equal(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iterabl... function Equal (line 6361) | def Equal(arg1: list, arg2: Vec2iArray | typing.Iterable[list[int]] | ty... function Equal (line 6363) | def Equal(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6365) | def Equal(arg1: pxr.Gf.Vec4h | list[float] | tuple[float, float, float, ... function Equal (line 6367) | def Equal(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6369) | def Equal(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6371) | def Equal(arg1: tuple, arg2: Vec4hArray | typing.Iterable[list[float]] |... function Equal (line 6373) | def Equal(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6375) | def Equal(arg1: list, arg2: Vec4hArray | typing.Iterable[list[float]] | ... function Equal (line 6377) | def Equal(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6379) | def Equal(arg1: pxr.Gf.Vec3h | list[float] | tuple[float, float, float],... function Equal (line 6381) | def Equal(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6383) | def Equal(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6385) | def Equal(arg1: tuple, arg2: Vec3hArray | typing.Iterable[list[float]] |... function Equal (line 6387) | def Equal(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6389) | def Equal(arg1: list, arg2: Vec3hArray | typing.Iterable[list[float]] | ... function Equal (line 6391) | def Equal(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6393) | def Equal(arg1: pxr.Gf.Vec2h | list[float] | tuple[float, float], arg2: ... function Equal (line 6395) | def Equal(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6397) | def Equal(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6399) | def Equal(arg1: tuple, arg2: Vec2hArray | typing.Iterable[list[float]] |... function Equal (line 6401) | def Equal(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6403) | def Equal(arg1: list, arg2: Vec2hArray | typing.Iterable[list[float]] | ... function Equal (line 6405) | def Equal(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6407) | def Equal(arg1: pxr.Gf.Vec4f | list[float] | tuple[float, float, float, ... function Equal (line 6409) | def Equal(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6411) | def Equal(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6413) | def Equal(arg1: tuple, arg2: Vec4fArray | typing.Iterable[list[float]] |... function Equal (line 6415) | def Equal(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6417) | def Equal(arg1: list, arg2: Vec4fArray | typing.Iterable[list[float]] | ... function Equal (line 6419) | def Equal(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6421) | def Equal(arg1: pxr.Gf.Vec3f | list[float] | tuple[float, float, float],... function Equal (line 6423) | def Equal(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6425) | def Equal(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6427) | def Equal(arg1: tuple, arg2: Vec3fArray | typing.Iterable[list[float]] |... function Equal (line 6429) | def Equal(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6431) | def Equal(arg1: list, arg2: Vec3fArray | typing.Iterable[list[float]] | ... function Equal (line 6433) | def Equal(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6435) | def Equal(arg1: pxr.Gf.Vec2f | list[float] | tuple[float, float], arg2: ... function Equal (line 6437) | def Equal(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6439) | def Equal(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6441) | def Equal(arg1: tuple, arg2: Vec2fArray | typing.Iterable[list[float]] |... function Equal (line 6443) | def Equal(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6445) | def Equal(arg1: list, arg2: Vec2fArray | typing.Iterable[list[float]] | ... function Equal (line 6447) | def Equal(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6449) | def Equal(arg1: pxr.Gf.Vec4d | list[float] | tuple[float, float, float, ... function Equal (line 6451) | def Equal(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6453) | def Equal(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6455) | def Equal(arg1: tuple, arg2: Vec4dArray | typing.Iterable[list[float]] |... function Equal (line 6457) | def Equal(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6459) | def Equal(arg1: list, arg2: Vec4dArray | typing.Iterable[list[float]] | ... function Equal (line 6461) | def Equal(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6463) | def Equal(arg1: pxr.Gf.Vec3d | list[float] | tuple[float, float, float],... function Equal (line 6465) | def Equal(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6467) | def Equal(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6469) | def Equal(arg1: tuple, arg2: Vec3dArray | typing.Iterable[list[float]] |... function Equal (line 6471) | def Equal(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6473) | def Equal(arg1: list, arg2: Vec3dArray | typing.Iterable[list[float]] | ... function Equal (line 6475) | def Equal(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6477) | def Equal(arg1: pxr.Gf.Vec2d | list[float] | tuple[float, float], arg2: ... function Equal (line 6479) | def Equal(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6481) | def Equal(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6483) | def Equal(arg1: tuple, arg2: Vec2dArray | typing.Iterable[list[float]] |... function Equal (line 6485) | def Equal(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.Itera... function Equal (line 6487) | def Equal(arg1: list, arg2: Vec2dArray | typing.Iterable[list[float]] | ... function Float (line 6488) | def Float(arg1: float, /) -> _ValueWrapper: function FloatArrayFromBuffer (line 6494) | def FloatArrayFromBuffer(arg1: object, /) -> Any: ... function Greater (line 6496) | def Greater(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArra... function Greater (line 6498) | def Greater(arg1: float, arg2: DoubleArray | typing.Iterable[float], /) ... function Greater (line 6500) | def Greater(arg1: DoubleArray | typing.Iterable[float], arg2: float, /) ... function Greater (line 6502) | def Greater(arg1: DoubleArray | typing.Iterable[float], arg2: tuple, /) ... function Greater (line 6504) | def Greater(arg1: tuple, arg2: DoubleArray | typing.Iterable[float], /) ... function Greater (line 6506) | def Greater(arg1: DoubleArray | typing.Iterable[float], arg2: list, /) -... function Greater (line 6508) | def Greater(arg1: list, arg2: DoubleArray | typing.Iterable[float], /) -... function Greater (line 6510) | def Greater(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray ... function Greater (line 6512) | def Greater(arg1: float, arg2: FloatArray | typing.Iterable[float], /) -... function Greater (line 6514) | def Greater(arg1: FloatArray | typing.Iterable[float], arg2: float, /) -... function Greater (line 6516) | def Greater(arg1: FloatArray | typing.Iterable[float], arg2: tuple, /) -... function Greater (line 6518) | def Greater(arg1: tuple, arg2: FloatArray | typing.Iterable[float], /) -... function Greater (line 6520) | def Greater(arg1: FloatArray | typing.Iterable[float], arg2: list, /) ->... function Greater (line 6522) | def Greater(arg1: list, arg2: FloatArray | typing.Iterable[float], /) ->... function Greater (line 6524) | def Greater(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | ... function Greater (line 6526) | def Greater(arg1: object, arg2: HalfArray | typing.Iterable[float], /) -... function Greater (line 6528) | def Greater(arg1: HalfArray | typing.Iterable[float], arg2: object, /) -... function Greater (line 6530) | def Greater(arg1: HalfArray | typing.Iterable[float], arg2: tuple, /) ->... function Greater (line 6532) | def Greater(arg1: tuple, arg2: HalfArray | typing.Iterable[float], /) ->... function Greater (line 6534) | def Greater(arg1: HalfArray | typing.Iterable[float], arg2: list, /) -> ... function Greater (line 6536) | def Greater(arg1: list, arg2: HalfArray | typing.Iterable[float], /) -> ... function Greater (line 6538) | def Greater(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | t... function Greater (line 6540) | def Greater(arg1: bool, arg2: BoolArray | typing.Iterable[bool], /) -> B... function Greater (line 6542) | def Greater(arg1: BoolArray | typing.Iterable[bool], arg2: bool, /) -> B... function Greater (line 6544) | def Greater(arg1: BoolArray | typing.Iterable[bool], arg2: tuple, /) -> ... function Greater (line 6546) | def Greater(arg1: tuple, arg2: BoolArray | typing.Iterable[bool], /) -> ... function Greater (line 6548) | def Greater(arg1: BoolArray | typing.Iterable[bool], arg2: list, /) -> B... function Greater (line 6550) | def Greater(arg1: list, arg2: BoolArray | typing.Iterable[bool], /) -> B... function Greater (line 6552) | def Greater(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typ... function Greater (line 6554) | def Greater(arg1: str | pxr.Ar.ResolvedPath, arg2: CharArray | typing.It... function Greater (line 6556) | def Greater(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typ... function Greater (line 6558) | def Greater(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typ... function Greater (line 6560) | def Greater(arg1: tuple, arg2: CharArray | typing.Iterable[pxr.Ar.Resolv... function Greater (line 6562) | def Greater(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typ... function Greater (line 6564) | def Greater(arg1: list, arg2: CharArray | typing.Iterable[pxr.Ar.Resolve... function Greater (line 6566) | def Greater(arg1: UCharArray, arg2: UCharArray, /) -> BoolArray: ... function Greater (line 6568) | def Greater(arg1: int, arg2: UCharArray, /) -> BoolArray: ... function Greater (line 6570) | def Greater(arg1: UCharArray, arg2: int, /) -> BoolArray: ... function Greater (line 6572) | def Greater(arg1: UCharArray, arg2: tuple, /) -> BoolArray: ... function Greater (line 6574) | def Greater(arg1: tuple, arg2: UCharArray, /) -> BoolArray: ... function Greater (line 6576) | def Greater(arg1: UCharArray, arg2: list, /) -> BoolArray: ... function Greater (line 6578) | def Greater(arg1: list, arg2: UCharArray, /) -> BoolArray: ... function Greater (line 6580) | def Greater(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | ... function Greater (line 6582) | def Greater(arg1: int, arg2: ShortArray | typing.Iterable[int], /) -> Bo... function Greater (line 6584) | def Greater(arg1: ShortArray | typing.Iterable[int], arg2: int, /) -> Bo... function Greater (line 6586) | def Greater(arg1: ShortArray | typing.Iterable[int], arg2: tuple, /) -> ... function Greater (line 6588) | def Greater(arg1: tuple, arg2: ShortArray | typing.Iterable[int], /) -> ... function Greater (line 6590) | def Greater(arg1: ShortArray | typing.Iterable[int], arg2: list, /) -> B... function Greater (line 6592) | def Greater(arg1: list, arg2: ShortArray | typing.Iterable[int], /) -> B... function Greater (line 6594) | def Greater(arg1: UShortArray, arg2: UShortArray, /) -> BoolArray: ... function Greater (line 6596) | def Greater(arg1: int, arg2: UShortArray, /) -> BoolArray: ... function Greater (line 6598) | def Greater(arg1: UShortArray, arg2: int, /) -> BoolArray: ... function Greater (line 6600) | def Greater(arg1: UShortArray, arg2: tuple, /) -> BoolArray: ... function Greater (line 6602) | def Greater(arg1: tuple, arg2: UShortArray, /) -> BoolArray: ... function Greater (line 6604) | def Greater(arg1: UShortArray, arg2: list, /) -> BoolArray: ... function Greater (line 6606) | def Greater(arg1: list, arg2: UShortArray, /) -> BoolArray: ... function Greater (line 6608) | def Greater(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typi... function Greater (line 6610) | def Greater(arg1: int, arg2: IntArray | typing.Iterable[int], /) -> Bool... function Greater (line 6612) | def Greater(arg1: IntArray | typing.Iterable[int], arg2: int, /) -> Bool... function Greater (line 6614) | def Greater(arg1: IntArray | typing.Iterable[int], arg2: tuple, /) -> Bo... function Greater (line 6616) | def Greater(arg1: tuple, arg2: IntArray | typing.Iterable[int], /) -> Bo... function Greater (line 6618) | def Greater(arg1: IntArray | typing.Iterable[int], arg2: list, /) -> Boo... function Greater (line 6620) | def Greater(arg1: list, arg2: IntArray | typing.Iterable[int], /) -> Boo... function Greater (line 6622) | def Greater(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | ty... function Greater (line 6624) | def Greater(arg1: int, arg2: UIntArray | typing.Iterable[int], /) -> Boo... function Greater (line 6626) | def Greater(arg1: UIntArray | typing.Iterable[int], arg2: int, /) -> Boo... function Greater (line 6628) | def Greater(arg1: UIntArray | typing.Iterable[int], arg2: tuple, /) -> B... function Greater (line 6630) | def Greater(arg1: tuple, arg2: UIntArray | typing.Iterable[int], /) -> B... function Greater (line 6632) | def Greater(arg1: UIntArray | typing.Iterable[int], arg2: list, /) -> Bo... function Greater (line 6634) | def Greater(arg1: list, arg2: UIntArray | typing.Iterable[int], /) -> Bo... function Greater (line 6636) | def Greater(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | ... function Greater (line 6638) | def Greater(arg1: int, arg2: Int64Array | typing.Iterable[int], /) -> Bo... function Greater (line 6640) | def Greater(arg1: Int64Array | typing.Iterable[int], arg2: int, /) -> Bo... function Greater (line 6642) | def Greater(arg1: Int64Array | typing.Iterable[int], arg2: tuple, /) -> ... function Greater (line 6644) | def Greater(arg1: tuple, arg2: Int64Array | typing.Iterable[int], /) -> ... function Greater (line 6646) | def Greater(arg1: Int64Array | typing.Iterable[int], arg2: list, /) -> B... function Greater (line 6648) | def Greater(arg1: list, arg2: Int64Array | typing.Iterable[int], /) -> B... function Greater (line 6650) | def Greater(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array ... function Greater (line 6652) | def Greater(arg1: int, arg2: UInt64Array | typing.Iterable[int], /) -> B... function Greater (line 6654) | def Greater(arg1: UInt64Array | typing.Iterable[int], arg2: int, /) -> B... function Greater (line 6656) | def Greater(arg1: UInt64Array | typing.Iterable[int], arg2: tuple, /) ->... function Greater (line 6658) | def Greater(arg1: tuple, arg2: UInt64Array | typing.Iterable[int], /) ->... function Greater (line 6660) | def Greater(arg1: UInt64Array | typing.Iterable[int], arg2: list, /) -> ... function Greater (line 6662) | def Greater(arg1: list, arg2: UInt64Array | typing.Iterable[int], /) -> ... function Greater (line 6664) | def Greater(arg1: StringArray, arg2: StringArray, /) -> BoolArray: ... function Greater (line 6666) | def Greater(arg1: str | pxr.Ar.ResolvedPath, arg2: StringArray, /) -> Bo... function Greater (line 6668) | def Greater(arg1: StringArray, arg2: str | pxr.Ar.ResolvedPath, /) -> Bo... function Greater (line 6670) | def Greater(arg1: StringArray, arg2: tuple, /) -> BoolArray: ... function Greater (line 6672) | def Greater(arg1: tuple, arg2: StringArray, /) -> BoolArray: ... function Greater (line 6674) | def Greater(arg1: StringArray, arg2: list, /) -> BoolArray: ... function Greater (line 6676) | def Greater(arg1: list, arg2: StringArray, /) -> BoolArray: ... function Greater (line 6678) | def Greater(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function Greater (line 6680) | def Greater(arg1: object, arg2: TokenArray | typing.Iterable[pxr.Ar.Reso... function Greater (line 6682) | def Greater(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function Greater (line 6684) | def Greater(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function Greater (line 6686) | def Greater(arg1: tuple, arg2: TokenArray | typing.Iterable[pxr.Ar.Resol... function Greater (line 6688) | def Greater(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function Greater (line 6690) | def Greater(arg1: list, arg2: TokenArray | typing.Iterable[pxr.Ar.Resolv... function GreaterOrEqual (line 6692) | def GreaterOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: Dou... function GreaterOrEqual (line 6694) | def GreaterOrEqual(arg1: float, arg2: DoubleArray | typing.Iterable[floa... function GreaterOrEqual (line 6696) | def GreaterOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: flo... function GreaterOrEqual (line 6698) | def GreaterOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: tup... function GreaterOrEqual (line 6700) | def GreaterOrEqual(arg1: tuple, arg2: DoubleArray | typing.Iterable[floa... function GreaterOrEqual (line 6702) | def GreaterOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: lis... function GreaterOrEqual (line 6704) | def GreaterOrEqual(arg1: list, arg2: DoubleArray | typing.Iterable[float... function GreaterOrEqual (line 6706) | def GreaterOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: Floa... function GreaterOrEqual (line 6708) | def GreaterOrEqual(arg1: float, arg2: FloatArray | typing.Iterable[float... function GreaterOrEqual (line 6710) | def GreaterOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: floa... function GreaterOrEqual (line 6712) | def GreaterOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: tupl... function GreaterOrEqual (line 6714) | def GreaterOrEqual(arg1: tuple, arg2: FloatArray | typing.Iterable[float... function GreaterOrEqual (line 6716) | def GreaterOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: list... function GreaterOrEqual (line 6718) | def GreaterOrEqual(arg1: list, arg2: FloatArray | typing.Iterable[float]... function GreaterOrEqual (line 6720) | def GreaterOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: HalfA... function GreaterOrEqual (line 6722) | def GreaterOrEqual(arg1: object, arg2: HalfArray | typing.Iterable[float... function GreaterOrEqual (line 6724) | def GreaterOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: objec... function GreaterOrEqual (line 6726) | def GreaterOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: tuple... function GreaterOrEqual (line 6728) | def GreaterOrEqual(arg1: tuple, arg2: HalfArray | typing.Iterable[float]... function GreaterOrEqual (line 6730) | def GreaterOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: list,... function GreaterOrEqual (line 6732) | def GreaterOrEqual(arg1: list, arg2: HalfArray | typing.Iterable[float],... function GreaterOrEqual (line 6734) | def GreaterOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: BoolAr... function GreaterOrEqual (line 6736) | def GreaterOrEqual(arg1: bool, arg2: BoolArray | typing.Iterable[bool], ... function GreaterOrEqual (line 6738) | def GreaterOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: bool, ... function GreaterOrEqual (line 6740) | def GreaterOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: tuple,... function GreaterOrEqual (line 6742) | def GreaterOrEqual(arg1: tuple, arg2: BoolArray | typing.Iterable[bool],... function GreaterOrEqual (line 6744) | def GreaterOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: list, ... function GreaterOrEqual (line 6746) | def GreaterOrEqual(arg1: list, arg2: BoolArray | typing.Iterable[bool], ... function GreaterOrEqual (line 6748) | def GreaterOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath... function GreaterOrEqual (line 6750) | def GreaterOrEqual(arg1: str | pxr.Ar.ResolvedPath, arg2: CharArray | ty... function GreaterOrEqual (line 6752) | def GreaterOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath... function GreaterOrEqual (line 6754) | def GreaterOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath... function GreaterOrEqual (line 6756) | def GreaterOrEqual(arg1: tuple, arg2: CharArray | typing.Iterable[pxr.Ar... function GreaterOrEqual (line 6758) | def GreaterOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath... function GreaterOrEqual (line 6760) | def GreaterOrEqual(arg1: list, arg2: CharArray | typing.Iterable[pxr.Ar.... function GreaterOrEqual (line 6762) | def GreaterOrEqual(arg1: UCharArray, arg2: UCharArray, /) -> BoolArray: ... function GreaterOrEqual (line 6764) | def GreaterOrEqual(arg1: int, arg2: UCharArray, /) -> BoolArray: ... function GreaterOrEqual (line 6766) | def GreaterOrEqual(arg1: UCharArray, arg2: int, /) -> BoolArray: ... function GreaterOrEqual (line 6768) | def GreaterOrEqual(arg1: UCharArray, arg2: tuple, /) -> BoolArray: ... function GreaterOrEqual (line 6770) | def GreaterOrEqual(arg1: tuple, arg2: UCharArray, /) -> BoolArray: ... function GreaterOrEqual (line 6772) | def GreaterOrEqual(arg1: UCharArray, arg2: list, /) -> BoolArray: ... function GreaterOrEqual (line 6774) | def GreaterOrEqual(arg1: list, arg2: UCharArray, /) -> BoolArray: ... function GreaterOrEqual (line 6776) | def GreaterOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: ShortA... function GreaterOrEqual (line 6778) | def GreaterOrEqual(arg1: int, arg2: ShortArray | typing.Iterable[int], /... function GreaterOrEqual (line 6780) | def GreaterOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: int, /... function GreaterOrEqual (line 6782) | def GreaterOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: tuple,... function GreaterOrEqual (line 6784) | def GreaterOrEqual(arg1: tuple, arg2: ShortArray | typing.Iterable[int],... function GreaterOrEqual (line 6786) | def GreaterOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: list, ... function GreaterOrEqual (line 6788) | def GreaterOrEqual(arg1: list, arg2: ShortArray | typing.Iterable[int], ... function GreaterOrEqual (line 6790) | def GreaterOrEqual(arg1: UShortArray, arg2: UShortArray, /) -> BoolArray... function GreaterOrEqual (line 6792) | def GreaterOrEqual(arg1: int, arg2: UShortArray, /) -> BoolArray: ... function GreaterOrEqual (line 6794) | def GreaterOrEqual(arg1: UShortArray, arg2: int, /) -> BoolArray: ... function GreaterOrEqual (line 6796) | def GreaterOrEqual(arg1: UShortArray, arg2: tuple, /) -> BoolArray: ... function GreaterOrEqual (line 6798) | def GreaterOrEqual(arg1: tuple, arg2: UShortArray, /) -> BoolArray: ... function GreaterOrEqual (line 6800) | def GreaterOrEqual(arg1: UShortArray, arg2: list, /) -> BoolArray: ... function GreaterOrEqual (line 6802) | def GreaterOrEqual(arg1: list, arg2: UShortArray, /) -> BoolArray: ... function GreaterOrEqual (line 6804) | def GreaterOrEqual(arg1: IntArray | typing.Iterable[int], arg2: IntArray... function GreaterOrEqual (line 6806) | def GreaterOrEqual(arg1: int, arg2: IntArray | typing.Iterable[int], /) ... function GreaterOrEqual (line 6808) | def GreaterOrEqual(arg1: IntArray | typing.Iterable[int], arg2: int, /) ... function GreaterOrEqual (line 6810) | def GreaterOrEqual(arg1: IntArray | typing.Iterable[int], arg2: tuple, /... function GreaterOrEqual (line 6812) | def GreaterOrEqual(arg1: tuple, arg2: IntArray | typing.Iterable[int], /... function GreaterOrEqual (line 6814) | def GreaterOrEqual(arg1: IntArray | typing.Iterable[int], arg2: list, /)... function GreaterOrEqual (line 6816) | def GreaterOrEqual(arg1: list, arg2: IntArray | typing.Iterable[int], /)... function GreaterOrEqual (line 6818) | def GreaterOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: UIntArr... function GreaterOrEqual (line 6820) | def GreaterOrEqual(arg1: int, arg2: UIntArray | typing.Iterable[int], /)... function GreaterOrEqual (line 6822) | def GreaterOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: int, /)... function GreaterOrEqual (line 6824) | def GreaterOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: tuple, ... function GreaterOrEqual (line 6826) | def GreaterOrEqual(arg1: tuple, arg2: UIntArray | typing.Iterable[int], ... function GreaterOrEqual (line 6828) | def GreaterOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: list, /... function GreaterOrEqual (line 6830) | def GreaterOrEqual(arg1: list, arg2: UIntArray | typing.Iterable[int], /... function GreaterOrEqual (line 6832) | def GreaterOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: Int64A... function GreaterOrEqual (line 6834) | def GreaterOrEqual(arg1: int, arg2: Int64Array | typing.Iterable[int], /... function GreaterOrEqual (line 6836) | def GreaterOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: int, /... function GreaterOrEqual (line 6838) | def GreaterOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: tuple,... function GreaterOrEqual (line 6840) | def GreaterOrEqual(arg1: tuple, arg2: Int64Array | typing.Iterable[int],... function GreaterOrEqual (line 6842) | def GreaterOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: list, ... function GreaterOrEqual (line 6844) | def GreaterOrEqual(arg1: list, arg2: Int64Array | typing.Iterable[int], ... function GreaterOrEqual (line 6846) | def GreaterOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: UInt6... function GreaterOrEqual (line 6848) | def GreaterOrEqual(arg1: int, arg2: UInt64Array | typing.Iterable[int], ... function GreaterOrEqual (line 6850) | def GreaterOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: int, ... function GreaterOrEqual (line 6852) | def GreaterOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: tuple... function GreaterOrEqual (line 6854) | def GreaterOrEqual(arg1: tuple, arg2: UInt64Array | typing.Iterable[int]... function GreaterOrEqual (line 6856) | def GreaterOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: list,... function GreaterOrEqual (line 6858) | def GreaterOrEqual(arg1: list, arg2: UInt64Array | typing.Iterable[int],... function GreaterOrEqual (line 6860) | def GreaterOrEqual(arg1: StringArray, arg2: StringArray, /) -> BoolArray... function GreaterOrEqual (line 6862) | def GreaterOrEqual(arg1: str | pxr.Ar.ResolvedPath, arg2: StringArray, /... function GreaterOrEqual (line 6864) | def GreaterOrEqual(arg1: StringArray, arg2: str | pxr.Ar.ResolvedPath, /... function GreaterOrEqual (line 6866) | def GreaterOrEqual(arg1: StringArray, arg2: tuple, /) -> BoolArray: ... function GreaterOrEqual (line 6868) | def GreaterOrEqual(arg1: tuple, arg2: StringArray, /) -> BoolArray: ... function GreaterOrEqual (line 6870) | def GreaterOrEqual(arg1: StringArray, arg2: list, /) -> BoolArray: ... function GreaterOrEqual (line 6872) | def GreaterOrEqual(arg1: list, arg2: StringArray, /) -> BoolArray: ... function GreaterOrEqual (line 6874) | def GreaterOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPat... function GreaterOrEqual (line 6876) | def GreaterOrEqual(arg1: object, arg2: TokenArray | typing.Iterable[pxr.... function GreaterOrEqual (line 6878) | def GreaterOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPat... function GreaterOrEqual (line 6880) | def GreaterOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPat... function GreaterOrEqual (line 6882) | def GreaterOrEqual(arg1: tuple, arg2: TokenArray | typing.Iterable[pxr.A... function GreaterOrEqual (line 6884) | def GreaterOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPat... function GreaterOrEqual (line 6886) | def GreaterOrEqual(arg1: list, arg2: TokenArray | typing.Iterable[pxr.Ar... function Half (line 6887) | def Half(arg1: object, /) -> _ValueWrapper: function HalfArrayFromBuffer (line 6893) | def HalfArrayFromBuffer(arg1: object, /) -> Any: ... function Int (line 6894) | def Int(arg1: int, /) -> _ValueWrapper: function Int64 (line 6900) | def Int64(arg1: int, /) -> _ValueWrapper: function Int64ArrayFromBuffer (line 6906) | def Int64ArrayFromBuffer(arg1: object, /) -> Any: ... function IntArrayFromBuffer (line 6907) | def IntArrayFromBuffer(arg1: object, /) -> Any: ... function Less (line 6909) | def Less(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArray |... function Less (line 6911) | def Less(arg1: float, arg2: DoubleArray | typing.Iterable[float], /) -> ... function Less (line 6913) | def Less(arg1: DoubleArray | typing.Iterable[float], arg2: float, /) -> ... function Less (line 6915) | def Less(arg1: DoubleArray | typing.Iterable[float], arg2: tuple, /) -> ... function Less (line 6917) | def Less(arg1: tuple, arg2: DoubleArray | typing.Iterable[float], /) -> ... function Less (line 6919) | def Less(arg1: DoubleArray | typing.Iterable[float], arg2: list, /) -> B... function Less (line 6921) | def Less(arg1: list, arg2: DoubleArray | typing.Iterable[float], /) -> B... function Less (line 6923) | def Less(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray | t... function Less (line 6925) | def Less(arg1: float, arg2: FloatArray | typing.Iterable[float], /) -> B... function Less (line 6927) | def Less(arg1: FloatArray | typing.Iterable[float], arg2: float, /) -> B... function Less (line 6929) | def Less(arg1: FloatArray | typing.Iterable[float], arg2: tuple, /) -> B... function Less (line 6931) | def Less(arg1: tuple, arg2: FloatArray | typing.Iterable[float], /) -> B... function Less (line 6933) | def Less(arg1: FloatArray | typing.Iterable[float], arg2: list, /) -> Bo... function Less (line 6935) | def Less(arg1: list, arg2: FloatArray | typing.Iterable[float], /) -> Bo... function Less (line 6937) | def Less(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray | typ... function Less (line 6939) | def Less(arg1: object, arg2: HalfArray | typing.Iterable[float], /) -> B... function Less (line 6941) | def Less(arg1: HalfArray | typing.Iterable[float], arg2: object, /) -> B... function Less (line 6943) | def Less(arg1: HalfArray | typing.Iterable[float], arg2: tuple, /) -> Bo... function Less (line 6945) | def Less(arg1: tuple, arg2: HalfArray | typing.Iterable[float], /) -> Bo... function Less (line 6947) | def Less(arg1: HalfArray | typing.Iterable[float], arg2: list, /) -> Boo... function Less (line 6949) | def Less(arg1: list, arg2: HalfArray | typing.Iterable[float], /) -> Boo... function Less (line 6951) | def Less(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | typi... function Less (line 6953) | def Less(arg1: bool, arg2: BoolArray | typing.Iterable[bool], /) -> Bool... function Less (line 6955) | def Less(arg1: BoolArray | typing.Iterable[bool], arg2: bool, /) -> Bool... function Less (line 6957) | def Less(arg1: BoolArray | typing.Iterable[bool], arg2: tuple, /) -> Boo... function Less (line 6959) | def Less(arg1: tuple, arg2: BoolArray | typing.Iterable[bool], /) -> Boo... function Less (line 6961) | def Less(arg1: BoolArray | typing.Iterable[bool], arg2: list, /) -> Bool... function Less (line 6963) | def Less(arg1: list, arg2: BoolArray | typing.Iterable[bool], /) -> Bool... function Less (line 6965) | def Less(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Less (line 6967) | def Less(arg1: str | pxr.Ar.ResolvedPath, arg2: CharArray | typing.Itera... function Less (line 6969) | def Less(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Less (line 6971) | def Less(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Less (line 6973) | def Less(arg1: tuple, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedP... function Less (line 6975) | def Less(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | typing... function Less (line 6977) | def Less(arg1: list, arg2: CharArray | typing.Iterable[pxr.Ar.ResolvedPa... function Less (line 6979) | def Less(arg1: UCharArray, arg2: UCharArray, /) -> BoolArray: ... function Less (line 6981) | def Less(arg1: int, arg2: UCharArray, /) -> BoolArray: ... function Less (line 6983) | def Less(arg1: UCharArray, arg2: int, /) -> BoolArray: ... function Less (line 6985) | def Less(arg1: UCharArray, arg2: tuple, /) -> BoolArray: ... function Less (line 6987) | def Less(arg1: tuple, arg2: UCharArray, /) -> BoolArray: ... function Less (line 6989) | def Less(arg1: UCharArray, arg2: list, /) -> BoolArray: ... function Less (line 6991) | def Less(arg1: list, arg2: UCharArray, /) -> BoolArray: ... function Less (line 6993) | def Less(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray | typ... function Less (line 6995) | def Less(arg1: int, arg2: ShortArray | typing.Iterable[int], /) -> BoolA... function Less (line 6997) | def Less(arg1: ShortArray | typing.Iterable[int], arg2: int, /) -> BoolA... function Less (line 6999) | def Less(arg1: ShortArray | typing.Iterable[int], arg2: tuple, /) -> Boo... function Less (line 7001) | def Less(arg1: tuple, arg2: ShortArray | typing.Iterable[int], /) -> Boo... function Less (line 7003) | def Less(arg1: ShortArray | typing.Iterable[int], arg2: list, /) -> Bool... function Less (line 7005) | def Less(arg1: list, arg2: ShortArray | typing.Iterable[int], /) -> Bool... function Less (line 7007) | def Less(arg1: UShortArray, arg2: UShortArray, /) -> BoolArray: ... function Less (line 7009) | def Less(arg1: int, arg2: UShortArray, /) -> BoolArray: ... function Less (line 7011) | def Less(arg1: UShortArray, arg2: int, /) -> BoolArray: ... function Less (line 7013) | def Less(arg1: UShortArray, arg2: tuple, /) -> BoolArray: ... function Less (line 7015) | def Less(arg1: tuple, arg2: UShortArray, /) -> BoolArray: ... function Less (line 7017) | def Less(arg1: UShortArray, arg2: list, /) -> BoolArray: ... function Less (line 7019) | def Less(arg1: list, arg2: UShortArray, /) -> BoolArray: ... function Less (line 7021) | def Less(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typing.... function Less (line 7023) | def Less(arg1: int, arg2: IntArray | typing.Iterable[int], /) -> BoolArr... function Less (line 7025) | def Less(arg1: IntArray | typing.Iterable[int], arg2: int, /) -> BoolArr... function Less (line 7027) | def Less(arg1: IntArray | typing.Iterable[int], arg2: tuple, /) -> BoolA... function Less (line 7029) | def Less(arg1: tuple, arg2: IntArray | typing.Iterable[int], /) -> BoolA... function Less (line 7031) | def Less(arg1: IntArray | typing.Iterable[int], arg2: list, /) -> BoolAr... function Less (line 7033) | def Less(arg1: list, arg2: IntArray | typing.Iterable[int], /) -> BoolAr... function Less (line 7035) | def Less(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | typin... function Less (line 7037) | def Less(arg1: int, arg2: UIntArray | typing.Iterable[int], /) -> BoolAr... function Less (line 7039) | def Less(arg1: UIntArray | typing.Iterable[int], arg2: int, /) -> BoolAr... function Less (line 7041) | def Less(arg1: UIntArray | typing.Iterable[int], arg2: tuple, /) -> Bool... function Less (line 7043) | def Less(arg1: tuple, arg2: UIntArray | typing.Iterable[int], /) -> Bool... function Less (line 7045) | def Less(arg1: UIntArray | typing.Iterable[int], arg2: list, /) -> BoolA... function Less (line 7047) | def Less(arg1: list, arg2: UIntArray | typing.Iterable[int], /) -> BoolA... function Less (line 7049) | def Less(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array | typ... function Less (line 7051) | def Less(arg1: int, arg2: Int64Array | typing.Iterable[int], /) -> BoolA... function Less (line 7053) | def Less(arg1: Int64Array | typing.Iterable[int], arg2: int, /) -> BoolA... function Less (line 7055) | def Less(arg1: Int64Array | typing.Iterable[int], arg2: tuple, /) -> Boo... function Less (line 7057) | def Less(arg1: tuple, arg2: Int64Array | typing.Iterable[int], /) -> Boo... function Less (line 7059) | def Less(arg1: Int64Array | typing.Iterable[int], arg2: list, /) -> Bool... function Less (line 7061) | def Less(arg1: list, arg2: Int64Array | typing.Iterable[int], /) -> Bool... function Less (line 7063) | def Less(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array | t... function Less (line 7065) | def Less(arg1: int, arg2: UInt64Array | typing.Iterable[int], /) -> Bool... function Less (line 7067) | def Less(arg1: UInt64Array | typing.Iterable[int], arg2: int, /) -> Bool... function Less (line 7069) | def Less(arg1: UInt64Array | typing.Iterable[int], arg2: tuple, /) -> Bo... function Less (line 7071) | def Less(arg1: tuple, arg2: UInt64Array | typing.Iterable[int], /) -> Bo... function Less (line 7073) | def Less(arg1: UInt64Array | typing.Iterable[int], arg2: list, /) -> Boo... function Less (line 7075) | def Less(arg1: list, arg2: UInt64Array | typing.Iterable[int], /) -> Boo... function Less (line 7077) | def Less(arg1: StringArray, arg2: StringArray, /) -> BoolArray: ... function Less (line 7079) | def Less(arg1: str | pxr.Ar.ResolvedPath, arg2: StringArray, /) -> BoolA... function Less (line 7081) | def Less(arg1: StringArray, arg2: str | pxr.Ar.ResolvedPath, /) -> BoolA... function Less (line 7083) | def Less(arg1: StringArray, arg2: tuple, /) -> BoolArray: ... function Less (line 7085) | def Less(arg1: tuple, arg2: StringArray, /) -> BoolArray: ... function Less (line 7087) | def Less(arg1: StringArray, arg2: list, /) -> BoolArray: ... function Less (line 7089) | def Less(arg1: list, arg2: StringArray, /) -> BoolArray: ... function Less (line 7091) | def Less(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Less (line 7093) | def Less(arg1: object, arg2: TokenArray | typing.Iterable[pxr.Ar.Resolve... function Less (line 7095) | def Less(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Less (line 7097) | def Less(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Less (line 7099) | def Less(arg1: tuple, arg2: TokenArray | typing.Iterable[pxr.Ar.Resolved... function Less (line 7101) | def Less(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | typin... function Less (line 7103) | def Less(arg1: list, arg2: TokenArray | typing.Iterable[pxr.Ar.ResolvedP... function LessOrEqual (line 7105) | def LessOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: Double... function LessOrEqual (line 7107) | def LessOrEqual(arg1: float, arg2: DoubleArray | typing.Iterable[float],... function LessOrEqual (line 7109) | def LessOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: float,... function LessOrEqual (line 7111) | def LessOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: tuple,... function LessOrEqual (line 7113) | def LessOrEqual(arg1: tuple, arg2: DoubleArray | typing.Iterable[float],... function LessOrEqual (line 7115) | def LessOrEqual(arg1: DoubleArray | typing.Iterable[float], arg2: list, ... function LessOrEqual (line 7117) | def LessOrEqual(arg1: list, arg2: DoubleArray | typing.Iterable[float], ... function LessOrEqual (line 7119) | def LessOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: FloatAr... function LessOrEqual (line 7121) | def LessOrEqual(arg1: float, arg2: FloatArray | typing.Iterable[float], ... function LessOrEqual (line 7123) | def LessOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: float, ... function LessOrEqual (line 7125) | def LessOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: tuple, ... function LessOrEqual (line 7127) | def LessOrEqual(arg1: tuple, arg2: FloatArray | typing.Iterable[float], ... function LessOrEqual (line 7129) | def LessOrEqual(arg1: FloatArray | typing.Iterable[float], arg2: list, /... function LessOrEqual (line 7131) | def LessOrEqual(arg1: list, arg2: FloatArray | typing.Iterable[float], /... function LessOrEqual (line 7133) | def LessOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: HalfArra... function LessOrEqual (line 7135) | def LessOrEqual(arg1: object, arg2: HalfArray | typing.Iterable[float], ... function LessOrEqual (line 7137) | def LessOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: object, ... function LessOrEqual (line 7139) | def LessOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: tuple, /... function LessOrEqual (line 7141) | def LessOrEqual(arg1: tuple, arg2: HalfArray | typing.Iterable[float], /... function LessOrEqual (line 7143) | def LessOrEqual(arg1: HalfArray | typing.Iterable[float], arg2: list, /)... function LessOrEqual (line 7145) | def LessOrEqual(arg1: list, arg2: HalfArray | typing.Iterable[float], /)... function LessOrEqual (line 7147) | def LessOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray... function LessOrEqual (line 7149) | def LessOrEqual(arg1: bool, arg2: BoolArray | typing.Iterable[bool], /) ... function LessOrEqual (line 7151) | def LessOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: bool, /) ... function LessOrEqual (line 7153) | def LessOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: tuple, /)... function LessOrEqual (line 7155) | def LessOrEqual(arg1: tuple, arg2: BoolArray | typing.Iterable[bool], /)... function LessOrEqual (line 7157) | def LessOrEqual(arg1: BoolArray | typing.Iterable[bool], arg2: list, /) ... function LessOrEqual (line 7159) | def LessOrEqual(arg1: list, arg2: BoolArray | typing.Iterable[bool], /) ... function LessOrEqual (line 7161) | def LessOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] |... function LessOrEqual (line 7163) | def LessOrEqual(arg1: str | pxr.Ar.ResolvedPath, arg2: CharArray | typin... function LessOrEqual (line 7165) | def LessOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] |... function LessOrEqual (line 7167) | def LessOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] |... function LessOrEqual (line 7169) | def LessOrEqual(arg1: tuple, arg2: CharArray | typing.Iterable[pxr.Ar.Re... function LessOrEqual (line 7171) | def LessOrEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] |... function LessOrEqual (line 7173) | def LessOrEqual(arg1: list, arg2: CharArray | typing.Iterable[pxr.Ar.Res... function LessOrEqual (line 7175) | def LessOrEqual(arg1: UCharArray, arg2: UCharArray, /) -> BoolArray: ... function LessOrEqual (line 7177) | def LessOrEqual(arg1: int, arg2: UCharArray, /) -> BoolArray: ... function LessOrEqual (line 7179) | def LessOrEqual(arg1: UCharArray, arg2: int, /) -> BoolArray: ... function LessOrEqual (line 7181) | def LessOrEqual(arg1: UCharArray, arg2: tuple, /) -> BoolArray: ... function LessOrEqual (line 7183) | def LessOrEqual(arg1: tuple, arg2: UCharArray, /) -> BoolArray: ... function LessOrEqual (line 7185) | def LessOrEqual(arg1: UCharArray, arg2: list, /) -> BoolArray: ... function LessOrEqual (line 7187) | def LessOrEqual(arg1: list, arg2: UCharArray, /) -> BoolArray: ... function LessOrEqual (line 7189) | def LessOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: ShortArra... function LessOrEqual (line 7191) | def LessOrEqual(arg1: int, arg2: ShortArray | typing.Iterable[int], /) -... function LessOrEqual (line 7193) | def LessOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: int, /) -... function LessOrEqual (line 7195) | def LessOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: tuple, /)... function LessOrEqual (line 7197) | def LessOrEqual(arg1: tuple, arg2: ShortArray | typing.Iterable[int], /)... function LessOrEqual (line 7199) | def LessOrEqual(arg1: ShortArray | typing.Iterable[int], arg2: list, /) ... function LessOrEqual (line 7201) | def LessOrEqual(arg1: list, arg2: ShortArray | typing.Iterable[int], /) ... function LessOrEqual (line 7203) | def LessOrEqual(arg1: UShortArray, arg2: UShortArray, /) -> BoolArray: ... function LessOrEqual (line 7205) | def LessOrEqual(arg1: int, arg2: UShortArray, /) -> BoolArray: ... function LessOrEqual (line 7207) | def LessOrEqual(arg1: UShortArray, arg2: int, /) -> BoolArray: ... function LessOrEqual (line 7209) | def LessOrEqual(arg1: UShortArray, arg2: tuple, /) -> BoolArray: ... function LessOrEqual (line 7211) | def LessOrEqual(arg1: tuple, arg2: UShortArray, /) -> BoolArray: ... function LessOrEqual (line 7213) | def LessOrEqual(arg1: UShortArray, arg2: list, /) -> BoolArray: ... function LessOrEqual (line 7215) | def LessOrEqual(arg1: list, arg2: UShortArray, /) -> BoolArray: ... function LessOrEqual (line 7217) | def LessOrEqual(arg1: IntArray | typing.Iterable[int], arg2: IntArray | ... function LessOrEqual (line 7219) | def LessOrEqual(arg1: int, arg2: IntArray | typing.Iterable[int], /) -> ... function LessOrEqual (line 7221) | def LessOrEqual(arg1: IntArray | typing.Iterable[int], arg2: int, /) -> ... function LessOrEqual (line 7223) | def LessOrEqual(arg1: IntArray | typing.Iterable[int], arg2: tuple, /) -... function LessOrEqual (line 7225) | def LessOrEqual(arg1: tuple, arg2: IntArray | typing.Iterable[int], /) -... function LessOrEqual (line 7227) | def LessOrEqual(arg1: IntArray | typing.Iterable[int], arg2: list, /) ->... function LessOrEqual (line 7229) | def LessOrEqual(arg1: list, arg2: IntArray | typing.Iterable[int], /) ->... function LessOrEqual (line 7231) | def LessOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray ... function LessOrEqual (line 7233) | def LessOrEqual(arg1: int, arg2: UIntArray | typing.Iterable[int], /) ->... function LessOrEqual (line 7235) | def LessOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: int, /) ->... function LessOrEqual (line 7237) | def LessOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: tuple, /) ... function LessOrEqual (line 7239) | def LessOrEqual(arg1: tuple, arg2: UIntArray | typing.Iterable[int], /) ... function LessOrEqual (line 7241) | def LessOrEqual(arg1: UIntArray | typing.Iterable[int], arg2: list, /) -... function LessOrEqual (line 7243) | def LessOrEqual(arg1: list, arg2: UIntArray | typing.Iterable[int], /) -... function LessOrEqual (line 7245) | def LessOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: Int64Arra... function LessOrEqual (line 7247) | def LessOrEqual(arg1: int, arg2: Int64Array | typing.Iterable[int], /) -... function LessOrEqual (line 7249) | def LessOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: int, /) -... function LessOrEqual (line 7251) | def LessOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: tuple, /)... function LessOrEqual (line 7253) | def LessOrEqual(arg1: tuple, arg2: Int64Array | typing.Iterable[int], /)... function LessOrEqual (line 7255) | def LessOrEqual(arg1: Int64Array | typing.Iterable[int], arg2: list, /) ... function LessOrEqual (line 7257) | def LessOrEqual(arg1: list, arg2: Int64Array | typing.Iterable[int], /) ... function LessOrEqual (line 7259) | def LessOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Ar... function LessOrEqual (line 7261) | def LessOrEqual(arg1: int, arg2: UInt64Array | typing.Iterable[int], /) ... function LessOrEqual (line 7263) | def LessOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: int, /) ... function LessOrEqual (line 7265) | def LessOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: tuple, /... function LessOrEqual (line 7267) | def LessOrEqual(arg1: tuple, arg2: UInt64Array | typing.Iterable[int], /... function LessOrEqual (line 7269) | def LessOrEqual(arg1: UInt64Array | typing.Iterable[int], arg2: list, /)... function LessOrEqual (line 7271) | def LessOrEqual(arg1: list, arg2: UInt64Array | typing.Iterable[int], /)... function LessOrEqual (line 7273) | def LessOrEqual(arg1: StringArray, arg2: StringArray, /) -> BoolArray: ... function LessOrEqual (line 7275) | def LessOrEqual(arg1: str | pxr.Ar.ResolvedPath, arg2: StringArray, /) -... function LessOrEqual (line 7277) | def LessOrEqual(arg1: StringArray, arg2: str | pxr.Ar.ResolvedPath, /) -... function LessOrEqual (line 7279) | def LessOrEqual(arg1: StringArray, arg2: tuple, /) -> BoolArray: ... function LessOrEqual (line 7281) | def LessOrEqual(arg1: tuple, arg2: StringArray, /) -> BoolArray: ... function LessOrEqual (line 7283) | def LessOrEqual(arg1: StringArray, arg2: list, /) -> BoolArray: ... function LessOrEqual (line 7285) | def LessOrEqual(arg1: list, arg2: StringArray, /) -> BoolArray: ... function LessOrEqual (line 7287) | def LessOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] ... function LessOrEqual (line 7289) | def LessOrEqual(arg1: object, arg2: TokenArray | typing.Iterable[pxr.Ar.... function LessOrEqual (line 7291) | def LessOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] ... function LessOrEqual (line 7293) | def LessOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] ... function LessOrEqual (line 7295) | def LessOrEqual(arg1: tuple, arg2: TokenArray | typing.Iterable[pxr.Ar.R... function LessOrEqual (line 7297) | def LessOrEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] ... function LessOrEqual (line 7299) | def LessOrEqual(arg1: list, arg2: TokenArray | typing.Iterable[pxr.Ar.Re... function Long (line 7300) | def Long(arg1: int, /) -> _ValueWrapper: function Matrix2dArrayFromBuffer (line 7306) | def Matrix2dArrayFromBuffer(arg1: object, /) -> Any: ... function Matrix2fArrayFromBuffer (line 7307) | def Matrix2fArrayFromBuffer(arg1: object, /) -> Any: ... function Matrix3dArrayFromBuffer (line 7308) | def Matrix3dArrayFromBuffer(arg1: object, /) -> Any: ... function Matrix3fArrayFromBuffer (line 7309) | def Matrix3fArrayFromBuffer(arg1: object, /) -> Any: ... function Matrix4dArrayFromBuffer (line 7310) | def Matrix4dArrayFromBuffer(arg1: object, /) -> Any: ... function Matrix4fArrayFromBuffer (line 7311) | def Matrix4fArrayFromBuffer(arg1: object, /) -> Any: ... function NotEqual (line 7313) | def NotEqual(arg1: DualQuathArray, arg2: DualQuathArray, /) -> BoolArray... function NotEqual (line 7315) | def NotEqual(arg1: pxr.Gf.DualQuath, arg2: DualQuathArray, /) -> BoolArr... function NotEqual (line 7317) | def NotEqual(arg1: DualQuathArray, arg2: pxr.Gf.DualQuath, /) -> BoolArr... function NotEqual (line 7319) | def NotEqual(arg1: DualQuathArray, arg2: tuple, /) -> BoolArray: ... function NotEqual (line 7321) | def NotEqual(arg1: tuple, arg2: DualQuathArray, /) -> BoolArray: ... function NotEqual (line 7323) | def NotEqual(arg1: DualQuathArray, arg2: list, /) -> BoolArray: ... function NotEqual (line 7325) | def NotEqual(arg1: list, arg2: DualQuathArray, /) -> BoolArray: ... function NotEqual (line 7327) | def NotEqual(arg1: DualQuatfArray, arg2: DualQuatfArray, /) -> BoolArray... function NotEqual (line 7329) | def NotEqual(arg1: pxr.Gf.DualQuatf | pxr.Gf.DualQuath, arg2: DualQuatfA... function NotEqual (line 7331) | def NotEqual(arg1: DualQuatfArray, arg2: pxr.Gf.DualQuatf | pxr.Gf.DualQ... function NotEqual (line 7333) | def NotEqual(arg1: DualQuatfArray, arg2: tuple, /) -> BoolArray: ... function NotEqual (line 7335) | def NotEqual(arg1: tuple, arg2: DualQuatfArray, /) -> BoolArray: ... function NotEqual (line 7337) | def NotEqual(arg1: DualQuatfArray, arg2: list, /) -> BoolArray: ... function NotEqual (line 7339) | def NotEqual(arg1: list, arg2: DualQuatfArray, /) -> BoolArray: ... function NotEqual (line 7341) | def NotEqual(arg1: DualQuatdArray, arg2: DualQuatdArray, /) -> BoolArray... function NotEqual (line 7343) | def NotEqual(arg1: pxr.Gf.DualQuatd | pxr.Gf.DualQuatf | pxr.Gf.DualQuat... function NotEqual (line 7345) | def NotEqual(arg1: DualQuatdArray, arg2: pxr.Gf.DualQuatd | pxr.Gf.DualQ... function NotEqual (line 7347) | def NotEqual(arg1: DualQuatdArray, arg2: tuple, /) -> BoolArray: ... function NotEqual (line 7349) | def NotEqual(arg1: tuple, arg2: DualQuatdArray, /) -> BoolArray: ... function NotEqual (line 7351) | def NotEqual(arg1: DualQuatdArray, arg2: list, /) -> BoolArray: ... function NotEqual (line 7353) | def NotEqual(arg1: list, arg2: DualQuatdArray, /) -> BoolArray: ... function NotEqual (line 7355) | def NotEqual(arg1: DoubleArray | typing.Iterable[float], arg2: DoubleArr... function NotEqual (line 7357) | def NotEqual(arg1: float, arg2: DoubleArray | typing.Iterable[float], /)... function NotEqual (line 7359) | def NotEqual(arg1: DoubleArray | typing.Iterable[float], arg2: float, /)... function NotEqual (line 7361) | def NotEqual(arg1: DoubleArray | typing.Iterable[float], arg2: tuple, /)... function NotEqual (line 7363) | def NotEqual(arg1: tuple, arg2: DoubleArray | typing.Iterable[float], /)... function NotEqual (line 7365) | def NotEqual(arg1: DoubleArray | typing.Iterable[float], arg2: list, /) ... function NotEqual (line 7367) | def NotEqual(arg1: list, arg2: DoubleArray | typing.Iterable[float], /) ... function NotEqual (line 7369) | def NotEqual(arg1: FloatArray | typing.Iterable[float], arg2: FloatArray... function NotEqual (line 7371) | def NotEqual(arg1: float, arg2: FloatArray | typing.Iterable[float], /) ... function NotEqual (line 7373) | def NotEqual(arg1: FloatArray | typing.Iterable[float], arg2: float, /) ... function NotEqual (line 7375) | def NotEqual(arg1: FloatArray | typing.Iterable[float], arg2: tuple, /) ... function NotEqual (line 7377) | def NotEqual(arg1: tuple, arg2: FloatArray | typing.Iterable[float], /) ... function NotEqual (line 7379) | def NotEqual(arg1: FloatArray | typing.Iterable[float], arg2: list, /) -... function NotEqual (line 7381) | def NotEqual(arg1: list, arg2: FloatArray | typing.Iterable[float], /) -... function NotEqual (line 7383) | def NotEqual(arg1: HalfArray | typing.Iterable[float], arg2: HalfArray |... function NotEqual (line 7385) | def NotEqual(arg1: object, arg2: HalfArray | typing.Iterable[float], /) ... function NotEqual (line 7387) | def NotEqual(arg1: HalfArray | typing.Iterable[float], arg2: object, /) ... function NotEqual (line 7389) | def NotEqual(arg1: HalfArray | typing.Iterable[float], arg2: tuple, /) -... function NotEqual (line 7391) | def NotEqual(arg1: tuple, arg2: HalfArray | typing.Iterable[float], /) -... function NotEqual (line 7393) | def NotEqual(arg1: HalfArray | typing.Iterable[float], arg2: list, /) ->... function NotEqual (line 7395) | def NotEqual(arg1: list, arg2: HalfArray | typing.Iterable[float], /) ->... function NotEqual (line 7397) | def NotEqual(arg1: BoolArray | typing.Iterable[bool], arg2: BoolArray | ... function NotEqual (line 7399) | def NotEqual(arg1: bool, arg2: BoolArray | typing.Iterable[bool], /) -> ... function NotEqual (line 7401) | def NotEqual(arg1: BoolArray | typing.Iterable[bool], arg2: bool, /) -> ... function NotEqual (line 7403) | def NotEqual(arg1: BoolArray | typing.Iterable[bool], arg2: tuple, /) ->... function NotEqual (line 7405) | def NotEqual(arg1: tuple, arg2: BoolArray | typing.Iterable[bool], /) ->... function NotEqual (line 7407) | def NotEqual(arg1: BoolArray | typing.Iterable[bool], arg2: list, /) -> ... function NotEqual (line 7409) | def NotEqual(arg1: list, arg2: BoolArray | typing.Iterable[bool], /) -> ... function NotEqual (line 7411) | def NotEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function NotEqual (line 7413) | def NotEqual(arg1: str | pxr.Ar.ResolvedPath, arg2: CharArray | typing.I... function NotEqual (line 7415) | def NotEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function NotEqual (line 7417) | def NotEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function NotEqual (line 7419) | def NotEqual(arg1: tuple, arg2: CharArray | typing.Iterable[pxr.Ar.Resol... function NotEqual (line 7421) | def NotEqual(arg1: CharArray | typing.Iterable[pxr.Ar.ResolvedPath] | ty... function NotEqual (line 7423) | def NotEqual(arg1: list, arg2: CharArray | typing.Iterable[pxr.Ar.Resolv... function NotEqual (line 7425) | def NotEqual(arg1: UCharArray, arg2: UCharArray, /) -> BoolArray: ... function NotEqual (line 7427) | def NotEqual(arg1: int, arg2: UCharArray, /) -> BoolArray: ... function NotEqual (line 7429) | def NotEqual(arg1: UCharArray, arg2: int, /) -> BoolArray: ... function NotEqual (line 7431) | def NotEqual(arg1: UCharArray, arg2: tuple, /) -> BoolArray: ... function NotEqual (line 7433) | def NotEqual(arg1: tuple, arg2: UCharArray, /) -> BoolArray: ... function NotEqual (line 7435) | def NotEqual(arg1: UCharArray, arg2: list, /) -> BoolArray: ... function NotEqual (line 7437) | def NotEqual(arg1: list, arg2: UCharArray, /) -> BoolArray: ... function NotEqual (line 7439) | def NotEqual(arg1: ShortArray | typing.Iterable[int], arg2: ShortArray |... function NotEqual (line 7441) | def NotEqual(arg1: int, arg2: ShortArray | typing.Iterable[int], /) -> B... function NotEqual (line 7443) | def NotEqual(arg1: ShortArray | typing.Iterable[int], arg2: int, /) -> B... function NotEqual (line 7445) | def NotEqual(arg1: ShortArray | typing.Iterable[int], arg2: tuple, /) ->... function NotEqual (line 7447) | def NotEqual(arg1: tuple, arg2: ShortArray | typing.Iterable[int], /) ->... function NotEqual (line 7449) | def NotEqual(arg1: ShortArray | typing.Iterable[int], arg2: list, /) -> ... function NotEqual (line 7451) | def NotEqual(arg1: list, arg2: ShortArray | typing.Iterable[int], /) -> ... function NotEqual (line 7453) | def NotEqual(arg1: UShortArray, arg2: UShortArray, /) -> BoolArray: ... function NotEqual (line 7455) | def NotEqual(arg1: int, arg2: UShortArray, /) -> BoolArray: ... function NotEqual (line 7457) | def NotEqual(arg1: UShortArray, arg2: int, /) -> BoolArray: ... function NotEqual (line 7459) | def NotEqual(arg1: UShortArray, arg2: tuple, /) -> BoolArray: ... function NotEqual (line 7461) | def NotEqual(arg1: tuple, arg2: UShortArray, /) -> BoolArray: ... function NotEqual (line 7463) | def NotEqual(arg1: UShortArray, arg2: list, /) -> BoolArray: ... function NotEqual (line 7465) | def NotEqual(arg1: list, arg2: UShortArray, /) -> BoolArray: ... function NotEqual (line 7467) | def NotEqual(arg1: IntArray | typing.Iterable[int], arg2: IntArray | typ... function NotEqual (line 7469) | def NotEqual(arg1: int, arg2: IntArray | typing.Iterable[int], /) -> Boo... function NotEqual (line 7471) | def NotEqual(arg1: IntArray | typing.Iterable[int], arg2: int, /) -> Boo... function NotEqual (line 7473) | def NotEqual(arg1: IntArray | typing.Iterable[int], arg2: tuple, /) -> B... function NotEqual (line 7475) | def NotEqual(arg1: tuple, arg2: IntArray | typing.Iterable[int], /) -> B... function NotEqual (line 7477) | def NotEqual(arg1: IntArray | typing.Iterable[int], arg2: list, /) -> Bo... function NotEqual (line 7479) | def NotEqual(arg1: list, arg2: IntArray | typing.Iterable[int], /) -> Bo... function NotEqual (line 7481) | def NotEqual(arg1: UIntArray | typing.Iterable[int], arg2: UIntArray | t... function NotEqual (line 7483) | def NotEqual(arg1: int, arg2: UIntArray | typing.Iterable[int], /) -> Bo... function NotEqual (line 7485) | def NotEqual(arg1: UIntArray | typing.Iterable[int], arg2: int, /) -> Bo... function NotEqual (line 7487) | def NotEqual(arg1: UIntArray | typing.Iterable[int], arg2: tuple, /) -> ... function NotEqual (line 7489) | def NotEqual(arg1: tuple, arg2: UIntArray | typing.Iterable[int], /) -> ... function NotEqual (line 7491) | def NotEqual(arg1: UIntArray | typing.Iterable[int], arg2: list, /) -> B... function NotEqual (line 7493) | def NotEqual(arg1: list, arg2: UIntArray | typing.Iterable[int], /) -> B... function NotEqual (line 7495) | def NotEqual(arg1: Int64Array | typing.Iterable[int], arg2: Int64Array |... function NotEqual (line 7497) | def NotEqual(arg1: int, arg2: Int64Array | typing.Iterable[int], /) -> B... function NotEqual (line 7499) | def NotEqual(arg1: Int64Array | typing.Iterable[int], arg2: int, /) -> B... function NotEqual (line 7501) | def NotEqual(arg1: Int64Array | typing.Iterable[int], arg2: tuple, /) ->... function NotEqual (line 7503) | def NotEqual(arg1: tuple, arg2: Int64Array | typing.Iterable[int], /) ->... function NotEqual (line 7505) | def NotEqual(arg1: Int64Array | typing.Iterable[int], arg2: list, /) -> ... function NotEqual (line 7507) | def NotEqual(arg1: list, arg2: Int64Array | typing.Iterable[int], /) -> ... function NotEqual (line 7509) | def NotEqual(arg1: UInt64Array | typing.Iterable[int], arg2: UInt64Array... function NotEqual (line 7511) | def NotEqual(arg1: int, arg2: UInt64Array | typing.Iterable[int], /) -> ... function NotEqual (line 7513) | def NotEqual(arg1: UInt64Array | typing.Iterable[int], arg2: int, /) -> ... function NotEqual (line 7515) | def NotEqual(arg1: UInt64Array | typing.Iterable[int], arg2: tuple, /) -... function NotEqual (line 7517) | def NotEqual(arg1: tuple, arg2: UInt64Array | typing.Iterable[int], /) -... function NotEqual (line 7519) | def NotEqual(arg1: UInt64Array | typing.Iterable[int], arg2: list, /) ->... function NotEqual (line 7521) | def NotEqual(arg1: list, arg2: UInt64Array | typing.Iterable[int], /) ->... function NotEqual (line 7523) | def NotEqual(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg... function NotEqual (line 7525) | def NotEqual(arg1: pxr.Gf.Matrix4f, arg2: Matrix4fArray | typing.Iterabl... function NotEqual (line 7527) | def NotEqual(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg... function NotEqual (line 7529) | def NotEqual(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg... function NotEqual (line 7531) | def NotEqual(arg1: tuple, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.M... function NotEqual (line 7533) | def NotEqual(arg1: Matrix4fArray | typing.Iterable[pxr.Gf.Matrix4f], arg... function NotEqual (line 7535) | def NotEqual(arg1: list, arg2: Matrix4fArray | typing.Iterable[pxr.Gf.Ma... function NotEqual (line 7537) | def NotEqual(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg... function NotEqual (line 7539) | def NotEqual(arg1: pxr.Gf.Matrix3f, arg2: Matrix3fArray | typing.Iterabl... function NotEqual (line 7541) | def NotEqual(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg... function NotEqual (line 7543) | def NotEqual(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg... function NotEqual (line 7545) | def NotEqual(arg1: tuple, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.M... function NotEqual (line 7547) | def NotEqual(arg1: Matrix3fArray | typing.Iterable[pxr.Gf.Matrix3f], arg... function NotEqual (line 7549) | def NotEqual(arg1: list, arg2: Matrix3fArray | typing.Iterable[pxr.Gf.Ma... function NotEqual (line 7551) | def NotEqual(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg... function NotEqual (line 7553) | def NotEqual(arg1: pxr.Gf.Matrix2f, arg2: Matrix2fArray | typing.Iterabl... function NotEqual (line 7555) | def NotEqual(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg... function NotEqual (line 7557) | def NotEqual(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg... function NotEqual (line 7559) | def NotEqual(arg1: tuple, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.M... function NotEqual (line 7561) | def NotEqual(arg1: Matrix2fArray | typing.Iterable[pxr.Gf.Matrix2f], arg... function NotEqual (line 7563) | def NotEqual(arg1: list, arg2: Matrix2fArray | typing.Iterable[pxr.Gf.Ma... function NotEqual (line 7565) | def NotEqual(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg... function NotEqual (line 7567) | def NotEqual(arg1: pxr.Gf.Matrix4d, arg2: Matrix4dArray | typing.Iterabl... function NotEqual (line 7569) | def NotEqual(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg... function NotEqual (line 7571) | def NotEqual(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg... function NotEqual (line 7573) | def NotEqual(arg1: tuple, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.M... function NotEqual (line 7575) | def NotEqual(arg1: Matrix4dArray | typing.Iterable[pxr.Gf.Matrix4d], arg... function NotEqual (line 7577) | def NotEqual(arg1: list, arg2: Matrix4dArray | typing.Iterable[pxr.Gf.Ma... function NotEqual (line 7579) | def NotEqual(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg... function NotEqual (line 7581) | def NotEqual(arg1: pxr.Gf.Matrix3d, arg2: Matrix3dArray | typing.Iterabl... function NotEqual (line 7583) | def NotEqual(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg... function NotEqual (line 7585) | def NotEqual(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg... function NotEqual (line 7587) | def NotEqual(arg1: tuple, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.M... function NotEqual (line 7589) | def NotEqual(arg1: Matrix3dArray | typing.Iterable[pxr.Gf.Matrix3d], arg... function NotEqual (line 7591) | def NotEqual(arg1: list, arg2: Matrix3dArray | typing.Iterable[pxr.Gf.Ma... function NotEqual (line 7593) | def NotEqual(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg... function NotEqual (line 7595) | def NotEqual(arg1: pxr.Gf.Matrix2d, arg2: Matrix2dArray | typing.Iterabl... function NotEqual (line 7597) | def NotEqual(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg... function NotEqual (line 7599) | def NotEqual(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg... function NotEqual (line 7601) | def NotEqual(arg1: tuple, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.M... function NotEqual (line 7603) | def NotEqual(arg1: Matrix2dArray | typing.Iterable[pxr.Gf.Matrix2d], arg... function NotEqual (line 7605) | def NotEqual(arg1: list, arg2: Matrix2dArray | typing.Iterable[pxr.Gf.Ma... function NotEqual (line 7607) | def NotEqual(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: Qua... function NotEqual (line 7609) | def NotEqual(arg1: pxr.Gf.Quath, arg2: QuathArray | typing.Iterable[pxr.... function NotEqual (line 7611) | def NotEqual(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: pxr... function NotEqual (line 7613) | def NotEqual(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: tup... function NotEqual (line 7615) | def NotEqual(arg1: tuple, arg2: QuathArray | typing.Iterable[pxr.Gf.Quat... function NotEqual (line 7617) | def NotEqual(arg1: QuathArray | typing.Iterable[pxr.Gf.Quath], arg2: lis... function NotEqual (line 7619) | def NotEqual(arg1: list, arg2: QuathArray | typing.Iterable[pxr.Gf.Quath... function NotEqual (line 7621) | def NotEqual(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.I... function NotEqual (line 7623) | def NotEqual(arg1: pxr.Gf.Quatf | pxr.Gf.Quath, arg2: QuatfArray | typin... function NotEqual (line 7625) | def NotEqual(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.I... function NotEqual (line 7627) | def NotEqual(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.I... function NotEqual (line 7629) | def NotEqual(arg1: tuple, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quat... function NotEqual (line 7631) | def NotEqual(arg1: QuatfArray | typing.Iterable[pxr.Gf.Quatf] | typing.I... function NotEqual (line 7633) | def NotEqual(arg1: list, arg2: QuatfArray | typing.Iterable[pxr.Gf.Quatf... function NotEqual (line 7635) | def NotEqual(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.I... function NotEqual (line 7637) | def NotEqual(arg1: pxr.Gf.Quatd | pxr.Gf.Quatf | pxr.Gf.Quath, arg2: Qua... function NotEqual (line 7639) | def NotEqual(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.I... function NotEqual (line 7641) | def NotEqual(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.I... function NotEqual (line 7643) | def NotEqual(arg1: tuple, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quat... function NotEqual (line 7645) | def NotEqual(arg1: QuatdArray | typing.Iterable[pxr.Gf.Quatd] | typing.I... function NotEqual (line 7647) | def NotEqual(arg1: list, arg2: QuatdArray | typing.Iterable[pxr.Gf.Quatd... function NotEqual (line 7649) | def NotEqual(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion],... function NotEqual (line 7651) | def NotEqual(arg1: pxr.Gf.Quaternion, arg2: QuaternionArray | typing.Ite... function NotEqual (line 7653) | def NotEqual(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion],... function NotEqual (line 7655) | def NotEqual(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion],... function NotEqual (line 7657) | def NotEqual(arg1: tuple, arg2: QuaternionArray | typing.Iterable[pxr.Gf... function NotEqual (line 7659) | def NotEqual(arg1: QuaternionArray | typing.Iterable[pxr.Gf.Quaternion],... function NotEqual (line 7661) | def NotEqual(arg1: list, arg2: QuaternionArray | typing.Iterable[pxr.Gf.... function NotEqual (line 7663) | def NotEqual(arg1: Range3fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7665) | def NotEqual(arg1: pxr.Gf.Range3f | list[float] | tuple[float, float, fl... function NotEqual (line 7667) | def NotEqual(arg1: Range3fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7669) | def NotEqual(arg1: Range3fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7671) | def NotEqual(arg1: tuple, arg2: Range3fArray | typing.Iterable[list[floa... function NotEqual (line 7673) | def NotEqual(arg1: Range3fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7675) | def NotEqual(arg1: list, arg2: Range3fArray | typing.Iterable[list[float... function NotEqual (line 7677) | def NotEqual(arg1: Range3dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7679) | def NotEqual(arg1: pxr.Gf.Range3d | list[float] | tuple[float, float, fl... function NotEqual (line 7681) | def NotEqual(arg1: Range3dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7683) | def NotEqual(arg1: Range3dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7685) | def NotEqual(arg1: tuple, arg2: Range3dArray | typing.Iterable[list[floa... function NotEqual (line 7687) | def NotEqual(arg1: Range3dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7689) | def NotEqual(arg1: list, arg2: Range3dArray | typing.Iterable[list[float... function NotEqual (line 7691) | def NotEqual(arg1: Range2fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7693) | def NotEqual(arg1: pxr.Gf.Range2f | list[float] | tuple[float, float], a... function NotEqual (line 7695) | def NotEqual(arg1: Range2fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7697) | def NotEqual(arg1: Range2fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7699) | def NotEqual(arg1: tuple, arg2: Range2fArray | typing.Iterable[list[floa... function NotEqual (line 7701) | def NotEqual(arg1: Range2fArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7703) | def NotEqual(arg1: list, arg2: Range2fArray | typing.Iterable[list[float... function NotEqual (line 7705) | def NotEqual(arg1: Range2dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7707) | def NotEqual(arg1: pxr.Gf.Range2d | list[float] | tuple[float, float], a... function NotEqual (line 7709) | def NotEqual(arg1: Range2dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7711) | def NotEqual(arg1: Range2dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7713) | def NotEqual(arg1: tuple, arg2: Range2dArray | typing.Iterable[list[floa... function NotEqual (line 7715) | def NotEqual(arg1: Range2dArray | typing.Iterable[list[float]] | typing.... function NotEqual (line 7717) | def NotEqual(arg1: list, arg2: Range2dArray | typing.Iterable[list[float... function NotEqual (line 7719) | def NotEqual(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2:... function NotEqual (line 7721) | def NotEqual(arg1: pxr.Gf.Range1f, arg2: Range1fArray | typing.Iterable[... function NotEqual (line 7723) | def NotEqual(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2:... function NotEqual (line 7725) | def NotEqual(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2:... function NotEqual (line 7727) | def NotEqual(arg1: tuple, arg2: Range1fArray | typing.Iterable[pxr.Gf.Ra... function NotEqual (line 7729) | def NotEqual(arg1: Range1fArray | typing.Iterable[pxr.Gf.Range1f], arg2:... function NotEqual (line 7731) | def NotEqual(arg1: list, arg2: Range1fArray | typing.Iterable[pxr.Gf.Ran... function NotEqual (line 7733) | def NotEqual(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2:... function NotEqual (line 7735) | def NotEqual(arg1: pxr.Gf.Range1d, arg2: Range1dArray | typing.Iterable[... function NotEqual (line 7737) | def NotEqual(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2:... function NotEqual (line 7739) | def NotEqual(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2:... function NotEqual (line 7741) | def NotEqual(arg1: tuple, arg2: Range1dArray | typing.Iterable[pxr.Gf.Ra... function NotEqual (line 7743) | def NotEqual(arg1: Range1dArray | typing.Iterable[pxr.Gf.Range1d], arg2:... function NotEqual (line 7745) | def NotEqual(arg1: list, arg2: Range1dArray | typing.Iterable[pxr.Gf.Ran... function NotEqual (line 7747) | def NotEqual(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg... function NotEqual (line 7749) | def NotEqual(arg1: pxr.Gf.Interval, arg2: IntervalArray | typing.Iterabl... function NotEqual (line 7751) | def NotEqual(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg... function NotEqual (line 7753) | def NotEqual(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg... function NotEqual (line 7755) | def NotEqual(arg1: tuple, arg2: IntervalArray | typing.Iterable[pxr.Gf.I... function NotEqual (line 7757) | def NotEqual(arg1: IntervalArray | typing.Iterable[pxr.Gf.Interval], arg... function NotEqual (line 7759) | def NotEqual(arg1: list, arg2: IntervalArray | typing.Iterable[pxr.Gf.In... function NotEqual (line 7761) | def NotEqual(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: R... function NotEqual (line 7763) | def NotEqual(arg1: pxr.Gf.Rect2i, arg2: Rect2iArray | typing.Iterable[px... function NotEqual (line 7765) | def NotEqual(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: p... function NotEqual (line 7767) | def NotEqual(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: t... function NotEqual (line 7769) | def NotEqual(arg1: tuple, arg2: Rect2iArray | typing.Iterable[pxr.Gf.Rec... function NotEqual (line 7771) | def NotEqual(arg1: Rect2iArray | typing.Iterable[pxr.Gf.Rect2i], arg2: l... function NotEqual (line 7773) | def NotEqual(arg1: list, arg2: Rect2iArray | typing.Iterable[pxr.Gf.Rect... function NotEqual (line 7775) | def NotEqual(arg1: StringArray, arg2: StringArray, /) -> BoolArray: ... function NotEqual (line 7777) | def NotEqual(arg1: str | pxr.Ar.ResolvedPath, arg2: StringArray, /) -> B... function NotEqual (line 7779) | def NotEqual(arg1: StringArray, arg2: str | pxr.Ar.ResolvedPath, /) -> B... function NotEqual (line 7781) | def NotEqual(arg1: StringArray, arg2: tuple, /) -> BoolArray: ... function NotEqual (line 7783) | def NotEqual(arg1: tuple, arg2: StringArray, /) -> BoolArray: ... function NotEqual (line 7785) | def NotEqual(arg1: StringArray, arg2: list, /) -> BoolArray: ... function NotEqual (line 7787) | def NotEqual(arg1: list, arg2: StringArray, /) -> BoolArray: ... function NotEqual (line 7789) | def NotEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | t... function NotEqual (line 7791) | def NotEqual(arg1: object, arg2: TokenArray | typing.Iterable[pxr.Ar.Res... function NotEqual (line 7793) | def NotEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | t... function NotEqual (line 7795) | def NotEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | t... function NotEqual (line 7797) | def NotEqual(arg1: tuple, arg2: TokenArray | typing.Iterable[pxr.Ar.Reso... function NotEqual (line 7799) | def NotEqual(arg1: TokenArray | typing.Iterable[pxr.Ar.ResolvedPath] | t... function NotEqual (line 7801) | def NotEqual(arg1: list, arg2: TokenArray | typing.Iterable[pxr.Ar.Resol... function NotEqual (line 7803) | def NotEqual(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7805) | def NotEqual(arg1: pxr.Gf.Vec4i | list[int] | tuple[int, int, int, int],... function NotEqual (line 7807) | def NotEqual(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7809) | def NotEqual(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7811) | def NotEqual(arg1: tuple, arg2: Vec4iArray | typing.Iterable[list[int]] ... function NotEqual (line 7813) | def NotEqual(arg1: Vec4iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7815) | def NotEqual(arg1: list, arg2: Vec4iArray | typing.Iterable[list[int]] |... function NotEqual (line 7817) | def NotEqual(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7819) | def NotEqual(arg1: pxr.Gf.Vec3i | list[int] | pxr.Gf.Size3 | tuple[int, ... function NotEqual (line 7821) | def NotEqual(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7823) | def NotEqual(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7825) | def NotEqual(arg1: tuple, arg2: Vec3iArray | typing.Iterable[list[int]] ... function NotEqual (line 7827) | def NotEqual(arg1: Vec3iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7829) | def NotEqual(arg1: list, arg2: Vec3iArray | typing.Iterable[list[int]] |... function NotEqual (line 7831) | def NotEqual(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7833) | def NotEqual(arg1: pxr.Gf.Vec2i | list[int] | pxr.Gf.Size2 | tuple[int, ... function NotEqual (line 7835) | def NotEqual(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7837) | def NotEqual(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7839) | def NotEqual(arg1: tuple, arg2: Vec2iArray | typing.Iterable[list[int]] ... function NotEqual (line 7841) | def NotEqual(arg1: Vec2iArray | typing.Iterable[list[int]] | typing.Iter... function NotEqual (line 7843) | def NotEqual(arg1: list, arg2: Vec2iArray | typing.Iterable[list[int]] |... function NotEqual (line 7845) | def NotEqual(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7847) | def NotEqual(arg1: pxr.Gf.Vec4h | list[float] | tuple[float, float, floa... function NotEqual (line 7849) | def NotEqual(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7851) | def NotEqual(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7853) | def NotEqual(arg1: tuple, arg2: Vec4hArray | typing.Iterable[list[float]... function NotEqual (line 7855) | def NotEqual(arg1: Vec4hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7857) | def NotEqual(arg1: list, arg2: Vec4hArray | typing.Iterable[list[float]]... function NotEqual (line 7859) | def NotEqual(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7861) | def NotEqual(arg1: pxr.Gf.Vec3h | list[float] | tuple[float, float, floa... function NotEqual (line 7863) | def NotEqual(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7865) | def NotEqual(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7867) | def NotEqual(arg1: tuple, arg2: Vec3hArray | typing.Iterable[list[float]... function NotEqual (line 7869) | def NotEqual(arg1: Vec3hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7871) | def NotEqual(arg1: list, arg2: Vec3hArray | typing.Iterable[list[float]]... function NotEqual (line 7873) | def NotEqual(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7875) | def NotEqual(arg1: pxr.Gf.Vec2h | list[float] | tuple[float, float], arg... function NotEqual (line 7877) | def NotEqual(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7879) | def NotEqual(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7881) | def NotEqual(arg1: tuple, arg2: Vec2hArray | typing.Iterable[list[float]... function NotEqual (line 7883) | def NotEqual(arg1: Vec2hArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7885) | def NotEqual(arg1: list, arg2: Vec2hArray | typing.Iterable[list[float]]... function NotEqual (line 7887) | def NotEqual(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7889) | def NotEqual(arg1: pxr.Gf.Vec4f | list[float] | tuple[float, float, floa... function NotEqual (line 7891) | def NotEqual(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7893) | def NotEqual(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7895) | def NotEqual(arg1: tuple, arg2: Vec4fArray | typing.Iterable[list[float]... function NotEqual (line 7897) | def NotEqual(arg1: Vec4fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7899) | def NotEqual(arg1: list, arg2: Vec4fArray | typing.Iterable[list[float]]... function NotEqual (line 7901) | def NotEqual(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7903) | def NotEqual(arg1: pxr.Gf.Vec3f | list[float] | tuple[float, float, floa... function NotEqual (line 7905) | def NotEqual(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7907) | def NotEqual(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7909) | def NotEqual(arg1: tuple, arg2: Vec3fArray | typing.Iterable[list[float]... function NotEqual (line 7911) | def NotEqual(arg1: Vec3fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7913) | def NotEqual(arg1: list, arg2: Vec3fArray | typing.Iterable[list[float]]... function NotEqual (line 7915) | def NotEqual(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7917) | def NotEqual(arg1: pxr.Gf.Vec2f | list[float] | tuple[float, float], arg... function NotEqual (line 7919) | def NotEqual(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7921) | def NotEqual(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7923) | def NotEqual(arg1: tuple, arg2: Vec2fArray | typing.Iterable[list[float]... function NotEqual (line 7925) | def NotEqual(arg1: Vec2fArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7927) | def NotEqual(arg1: list, arg2: Vec2fArray | typing.Iterable[list[float]]... function NotEqual (line 7929) | def NotEqual(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7931) | def NotEqual(arg1: pxr.Gf.Vec4d | list[float] | tuple[float, float, floa... function NotEqual (line 7933) | def NotEqual(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7935) | def NotEqual(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7937) | def NotEqual(arg1: tuple, arg2: Vec4dArray | typing.Iterable[list[float]... function NotEqual (line 7939) | def NotEqual(arg1: Vec4dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7941) | def NotEqual(arg1: list, arg2: Vec4dArray | typing.Iterable[list[float]]... function NotEqual (line 7943) | def NotEqual(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7945) | def NotEqual(arg1: pxr.Gf.Vec3d | list[float] | tuple[float, float, floa... function NotEqual (line 7947) | def NotEqual(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7949) | def NotEqual(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7951) | def NotEqual(arg1: tuple, arg2: Vec3dArray | typing.Iterable[list[float]... function NotEqual (line 7953) | def NotEqual(arg1: Vec3dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7955) | def NotEqual(arg1: list, arg2: Vec3dArray | typing.Iterable[list[float]]... function NotEqual (line 7957) | def NotEqual(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7959) | def NotEqual(arg1: pxr.Gf.Vec2d | list[float] | tuple[float, float], arg... function NotEqual (line 7961) | def NotEqual(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7963) | def NotEqual(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7965) | def NotEqual(arg1: tuple, arg2: Vec2dArray | typing.Iterable[list[float]... function NotEqual (line 7967) | def NotEqual(arg1: Vec2dArray | typing.Iterable[list[float]] | typing.It... function NotEqual (line 7969) | def NotEqual(arg1: list, arg2: Vec2dArray | typing.Iterable[list[float]]... function QuatdArrayFromBuffer (line 7970) | def QuatdArrayFromBuffer(arg1: object, /) -> Any: ... function QuatfArrayFromBuffer (line 7971) | def QuatfArrayFromBuffer(arg1: object, /) -> Any: ... function QuathArrayFromBuffer (line 7972) | def QuathArrayFromBuffer(arg1: object, /) -> Any: ... function Range1dArrayFromBuffer (line 7973) | def Range1dArrayFromBuffer(arg1: object, /) -> Any: ... function Range1fArrayFromBuffer (line 7974) | def Range1fArrayFromBuffer(arg1: object, /) -> Any: ... function Range2dArrayFromBuffer (line 7975) | def Range2dArrayFromBuffer(arg1: object, /) -> Any: ... function Range2fArrayFromBuffer (line 7976) | def Range2fArrayFromBuffer(arg1: object, /) -> Any: ... function Range3dArrayFromBuffer (line 7977) | def Range3dArrayFromBuffer(arg1: object, /) -> Any: ... function Range3fArrayFromBuffer (line 7978) | def Range3fArrayFromBuffer(arg1: object, /) -> Any: ... function Rect2iArrayFromBuffer (line 7979) | def Rect2iArrayFromBuffer(arg1: object, /) -> Any: ... function Short (line 7980) | def Short(arg1: int, /) -> _ValueWrapper: function ShortArrayFromBuffer (line 7986) | def ShortArrayFromBuffer(arg1: object, /) -> Any: ... function Token (line 7987) | def Token(arg1: object, /) -> _ValueWrapper: function UChar (line 7993) | def UChar(arg1: int, /) -> _ValueWrapper: function UCharArrayFromBuffer (line 7999) | def UCharArrayFromBuffer(arg1: object, /) -> Any: ... function UInt (line 8000) | def UInt(arg1: int, /) -> _ValueWrapper: function UInt64 (line 8006) | def UInt64(arg1: int, /) -> _ValueWrapper: function UInt64ArrayFromBuffer (line 8012) | def UInt64ArrayFromBuffer(arg1: object, /) -> Any: ... function UIntArrayFromBuffer (line 8013) | def UIntArrayFromBuffer(arg1: object, /) -> Any: ... function ULong (line 8014) | def ULong(arg1: int, /) -> _ValueWrapper: function UShort (line 8020) | def UShort(arg1: int, /) -> _ValueWrapper: function UShortArrayFromBuffer (line 8026) | def UShortArrayFromBuffer(arg1: object, /) -> Any: ... function Vec2dArrayFromBuffer (line 8027) | def Vec2dArrayFromBuffer(arg1: object, /) -> Any: ... function Vec2fArrayFromBuffer (line 8028) | def Vec2fArrayFromBuffer(arg1: object, /) -> Any: ... function Vec2hArrayFromBuffer (line 8029) | def Vec2hArrayFromBuffer(arg1: object, /) -> Any: ... function Vec2iArrayFromBuffer (line 8030) | def Vec2iArrayFromBuffer(arg1: object, /) -> Any: ... function Vec3dArrayFromBuffer (line 8031) | def Vec3dArrayFromBuffer(arg1: object, /) -> Any: ... function Vec3fArrayFromBuffer (line 8032) | def Vec3fArrayFromBuffer(arg1: object, /) -> Any: ... function Vec3hArrayFromBuffer (line 8033) | def Vec3hArrayFromBuffer(arg1: object, /) -> Any: ... function Vec3iArrayFromBuffer (line 8034) | def Vec3iArrayFromBuffer(arg1: object, /) -> Any: ... function Vec4dArrayFromBuffer (line 8035) | def Vec4dArrayFromBuffer(arg1: object, /) -> Any: ... function Vec4fArrayFromBuffer (line 8036) | def Vec4fArrayFromBuffer(arg1: object, /) -> Any: ... function Vec4hArrayFromBuffer (line 8037) | def Vec4hArrayFromBuffer(arg1: object, /) -> Any: ... function Vec4iArrayFromBuffer (line 8038) | def Vec4iArrayFromBuffer(arg1: object, /) -> Any: ... function _ReturnDictionary (line 8039) | def _ReturnDictionary(arg1: object, /) -> Any: ... function _test_Ident (line 8040) | def _test_Ident(arg1: object, /) -> Any: ... function _test_Str (line 8041) | def _test_Str(arg1: object, /) -> str: ... function _test_ValueTypeName (line 8042) | def _test_ValueTypeName(arg1: object, /) -> str: ... FILE: usd/stubs/pxr-stubs/Work/__init__.pyi function GetConcurrencyLimit (line 3) | def GetConcurrencyLimit() -> int: function GetPhysicalConcurrencyLimit (line 21) | def GetPhysicalConcurrencyLimit() -> int: function HasConcurrency (line 31) | def HasConcurrency() -> bool: function SetConcurrencyLimit (line 37) | def SetConcurrencyLimit(_n: int, /) -> None: function SetConcurrencyLimitArgument (line 52) | def SetConcurrencyLimitArgument(_n: int, /) -> None: function SetMaximumConcurrencyLimit (line 74) | def SetMaximumConcurrencyLimit() -> None: FILE: usd/tests/test_asset_info.py function test (line 8) | def test(): FILE: usd/tests/test_batch_namespace_edit.py function test (line 11) | def test(): FILE: usd/tests/test_bounding_box.py function test (line 8) | def test(): FILE: usd/tests/test_cache_utils.py function add_to_cache_from_external_function (line 17) | def add_to_cache_from_external_function(): function get_stage_from_id (line 24) | def get_stage_from_id(stage_id): function test (line 30) | def test(): FILE: usd/tests/test_caching.py class StageTraversalWatcher (line 18) | class StageTraversalWatcher(threading.Thread): method __init__ (line 21) | def __init__(self, event, cache, stage_ids): method run (line 39) | def run(self): function using_contexts (line 48) | def using_contexts(): function using_explicit_inserts (line 81) | def using_explicit_inserts(): function threading_example (line 97) | def threading_example(): function test (line 155) | def test(): FILE: usd/tests/test_check.py function _print_invalids (line 13) | def _print_invalids(): function _print_valids (line 64) | def _print_valids(): function test (line 105) | def test(): FILE: usd/tests/test_comment.py function test (line 10) | def test(): FILE: usd/tests/test_debugging.py function test (line 16) | def test(): FILE: usd/tests/test_destination_forwarding.py function test (line 10) | def test(): FILE: usd/tests/test_edit.py function _make_target (line 7) | def _make_target(): function test (line 16) | def test(): FILE: usd/tests/test_explicit.py function test (line 10) | def test(): FILE: usd/tests/test_iter_contains.py class ImplementsIter (line 6) | class ImplementsIter: method __iter__ (line 7) | def __iter__(self) -> Iterator[str]: class ImplementsIter2 (line 11) | class ImplementsIter2: method __iter__ (line 12) | def __iter__(self) -> Iterable[str]: class ImplementsNext (line 16) | class ImplementsNext: method __init__ (line 17) | def __init__(self): method __next__ (line 20) | def __next__(self) -> str: class ImplementsIter3 (line 27) | class ImplementsIter3: method __iter__ (line 28) | def __iter__(self) -> ImplementsNext: class ProperIterator (line 32) | class ProperIterator: method __init__ (line 33) | def __init__(self): method __iter__ (line 36) | def __iter__(self) -> Iterator[str]: method __next__ (line 39) | def __next__(self) -> str: function test_contains (line 46) | def test_contains(): FILE: usd/tests/test_keyframe.py function as_sdf (line 7) | def as_sdf(): function as_usd (line 21) | def as_usd(): FILE: usd/tests/test_kind.py function test (line 8) | def test(): FILE: usd/tests/test_material.py function attach_billboard (line 20) | def attach_billboard( function attach_surface_shader (line 37) | def attach_surface_shader( function attach_texture (line 52) | def attach_texture( function test (line 80) | def test(): FILE: usd/tests/test_notice.py function update (line 11) | def update(notice: Usd.Notice.ObjectsChanged, sender: Usd.Stage): function objects_changed (line 21) | def objects_changed(notice, sender): function stage_changed (line 25) | def stage_changed(notice, sender): function target_changed (line 29) | def target_changed(notice, sender): function test (line 33) | def test(): FILE: usd/tests/test_notice_send_custom.py class Sender (line 13) | class Sender(object): method __init__ (line 20) | def __init__(self, stage: Usd.Stage): method get_stage (line 26) | def get_stage(self) -> Usd.Stage: class Callback (line 31) | class Callback(object): method __init__ (line 41) | def __init__( method callback (line 52) | def callback(self, notice: Tf.Notice, sender: Sender): function send_custom (line 65) | def send_custom(): function test (line 91) | def test(): FILE: usd/tests/test_notice_send_derived.py class Sender (line 19) | class Sender(object): class Callback (line 29) | class Callback(object): method __init__ (line 39) | def __init__(self, registered_type, notice, sender): method callback (line 48) | def callback(self, notice, sender): class PyNoticeBase (line 60) | class PyNoticeBase(Tf.Notice): method func (line 61) | def func(self): class PyNoticeDerived (line 65) | class PyNoticeDerived(PyNoticeBase): method func (line 66) | def func(self): function send_custom (line 70) | def send_custom(): function test (line 110) | def test(): FILE: usd/tests/test_notice_send_global.py function test (line 12) | def test(): FILE: usd/tests/test_orphaned_over.py function test (line 8) | def test(): FILE: usd/tests/test_purpose.py function test (line 10) | def test(): FILE: usd/tests/test_reference_into_prim.py function add_prim_from_target (line 9) | def add_prim_from_target(stage, target, prim_path=""): function create_basic_stage (line 39) | def create_basic_stage(): function test (line 67) | def test(): FILE: usd/tests/test_sdf_change_block.py function test (line 10) | def test(): FILE: usd/tests/test_shot.py function create_asset (line 27) | def create_asset() -> Usd.Stage: function create_sequence (line 39) | def create_sequence(asset: str) -> Usd.Stage: function create_shot (line 62) | def create_shot(sequence: str) -> Usd.Stage: function test (line 92) | def test(): FILE: usd/tests/test_source_forwarding.py function test (line 10) | def test(): FILE: usd/tests/test_specializes.py function test (line 8) | def test(): FILE: usd/tests/test_template_and_explicit.py function test (line 14) | def test(): FILE: usd/tests/test_uniquify.py function test (line 8) | def test(): FILE: usd/tests/test_usd_resolve_info.py function test (line 8) | def test(): FILE: usd/tests/test_usd_stubs.py function test_path (line 9) | def test_path() -> None: function test_arrays (line 18) | def test_arrays() -> None: class SizedItems (line 26) | class SizedItems(Protocol[T]): method __len__ (line 27) | def __len__(self) -> int: method __getitem__ (line 30) | def __getitem__(self, item: int) -> T: function is_float_seq (line 34) | def is_float_seq(arg: SizedItems[float]) -> None: function is_seq_of_float_seq (line 38) | def is_seq_of_float_seq(arg: SizedItems[SizedItems[float]]) -> None: function test_matrix (line 42) | def test_matrix() -> None: function test_named_arguments (line 54) | def test_named_arguments(): function test_implicit_conversion (line 72) | def test_implicit_conversion(): function test_allowed_tokens (line 78) | def test_allowed_tokens(): function test_vector_getitem (line 88) | def test_vector_getitem(): FILE: usd/tests/test_user.py function test (line 13) | def test(): FILE: usd/tests/test_value_caching.py function timeit (line 18) | def timeit(function, repeats): function _create_basic_scene (line 34) | def _create_basic_scene() -> Usd.Stage: function _create_basic_scene_with_more_values (line 47) | def _create_basic_scene_with_more_values() -> Usd.Stage: function _get_time_samples (line 57) | def _get_time_samples(attributes: Iterable[Usd.Attribute]): function test (line 62) | def test(): FILE: usd/tests/test_variant_set.py function create_basic_stage (line 19) | def create_basic_stage() -> Usd.Stage: function create_override_stage (line 45) | def create_override_stage(identifier: str) -> Usd.Stage: function test (line 65) | def test():